From a444ce31f326afedbd9705302495662b3a2265c7 Mon Sep 17 00:00:00 2001 From: TizenOpenSource Date: Tue, 21 Jan 2025 10:14:51 +0900 Subject: [PATCH] Bump to 3.13.1 Signed-off-by: TizenOpenSource --- .gitignore | 171 - packaging/Added-no_sanitize_hwaddress.patch | 61 + packaging/Avoid-ProcessPoolExecutor.patch | 13 + packaging/PACKAGING-NOTES | 58 + packaging/Skip_unittest.patch | 22 + packaging/add_path_environment.patch | 10 + packaging/add_pie_compile_option.patch | 13 + packaging/baselibs.conf | 3 + packaging/import_failed.map | 7 + packaging/import_failed.py | 26 + packaging/macros.python3.py | 31 + packaging/pre_checkin.sh | 122 + packaging/python3-base.spec | 640 + packaging/python3-rpmlintrc | 18 + packaging/python3.csh | 2 + packaging/python3.sh | 2 + packaging/python3.spec | 313 + packaging/python3start | 30 + packaging/skipped_tests.py | 72 + tags | 131626 +++++++++++++++++ 20 files changed, 133069 insertions(+), 171 deletions(-) delete mode 100644 .gitignore create mode 100644 packaging/Added-no_sanitize_hwaddress.patch create mode 100644 packaging/Avoid-ProcessPoolExecutor.patch create mode 100644 packaging/PACKAGING-NOTES create mode 100644 packaging/Skip_unittest.patch create mode 100644 packaging/add_path_environment.patch create mode 100644 packaging/add_pie_compile_option.patch create mode 100644 packaging/baselibs.conf create mode 100644 packaging/import_failed.map create mode 100644 packaging/import_failed.py create mode 100644 packaging/macros.python3.py create mode 100644 packaging/pre_checkin.sh create mode 100644 packaging/python3-base.spec create mode 100644 packaging/python3-rpmlintrc create mode 100644 packaging/python3.csh create mode 100644 packaging/python3.sh create mode 100644 packaging/python3.spec create mode 100644 packaging/python3start create mode 100644 packaging/skipped_tests.py create mode 100644 tags diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1248d6db..00000000 --- a/.gitignore +++ /dev/null @@ -1,171 +0,0 @@ -##### -# First, rules intended to apply in all subdirectories. -# These contain no slash, or only a trailing slash. - -*.cover -*.iml -*.o -*.lto -*.a -*.so -*.so.* -*.dylib -*.dSYM -*.dll -*.wasm -*.orig -*.pyc -*.pyd -*.pyo -*.rej -*.swp -*~ -*.gc?? -*.profclang? -*.profraw -# Copies of binaries before BOLT optimizations. -*.prebolt -# BOLT profile data. -*.fdata -*.dyn -.gdb_history -.purify -__pycache__ -.hg/ -.svn/ -.idea/ -tags -TAGS -.vs/ -.vscode/ -gmon.out -.coverage -.mypy_cache/ -.pytest_cache/ -.ruff_cache/ -.DS_Store - -*.exe - -# Ignore core dumps... but not Tools/msi/core/ or the like. -core -!core/ - - -##### -# Then, rules meant for a specific location relative to the repo root. -# These must contain a non-trailing slash (and may also have a trailing slash.) - -Doc/build/ -Doc/venv/ -Doc/.venv/ -Doc/env/ -Doc/.env/ -Include/pydtrace_probes.h -Lib/site-packages/* -!Lib/site-packages/README.txt -Lib/test/data/* -!Lib/test/data/README -/_bootstrap_python -/Makefile -/Makefile.pre -/iOSTestbed.* -iOS/Frameworks/ -iOS/Resources/Info.plist -iOS/testbed/build -iOS/testbed/Python.xcframework/ios-*/bin -iOS/testbed/Python.xcframework/ios-*/include -iOS/testbed/Python.xcframework/ios-*/lib -iOS/testbed/Python.xcframework/ios-*/Python.framework -iOS/testbed/iOSTestbed.xcodeproj/project.xcworkspace -iOS/testbed/iOSTestbed.xcodeproj/xcuserdata -iOS/testbed/iOSTestbed.xcodeproj/xcshareddata -Mac/Makefile -Mac/PythonLauncher/Info.plist -Mac/PythonLauncher/Makefile -Mac/PythonLauncher/Python Launcher -Mac/PythonLauncher/Python Launcher.app/* -Mac/Resources/app/Info.plist -Mac/Resources/framework/Info.plist -Mac/pythonw -/*.framework/ -Misc/python.pc -Misc/python-embed.pc -Misc/python-config.sh -Modules/Setup.bootstrap -Modules/Setup.config -Modules/Setup.local -Modules/Setup.stdlib -Modules/config.c -Modules/ld_so_aix -Programs/_freeze_module -Programs/_testembed -PC/python_nt*.h -PC/pythonnt_rc*.h -Modules/python.exp -PC/*/*.exp -PC/*/*.lib -PC/*/*.bsc -PC/*/*.dll -PC/*/*.pdb -PC/*/*.user -PC/*/*.ncb -PC/*/*.suo -PC/*/Win32-temp-* -PC/*/x64-temp-* -PC/*/amd64 -PCbuild/*.user -PCbuild/*.suo -PCbuild/*.*sdf -PCbuild/*-pgi -PCbuild/*-pgo -PCbuild/*.VC.db -PCbuild/*.VC.opendb -PCbuild/amd64/ -PCbuild/arm32/ -PCbuild/arm64/ -PCbuild/obj/ -PCbuild/win32/ -Tools/unicode/data/ -/autom4te.cache -/build/ -/builddir/ -/config.cache -/config.log -/config.status -/config.status.lineno -# hendrikmuhs/ccache-action@v1 -/.ccache -/cross-build/ -/jit_stencils.h -/platform -/profile-clean-stamp -/profile-run-stamp -/profile-bolt-stamp -/pybuilddir.txt -/pyconfig.h -/python-config -/python-config.py -/python.bat -/python-gdb.py -/python.exe-gdb.py -/reflog.txt -/coverage/ -/externals/ -/htmlcov/ -Tools/msi/obj -Tools/ssl/amd64 -Tools/ssl/win32 -Tools/freeze/test/outdir - -# The frozen modules are always generated by the build so we don't -# keep them in the repo. Also see Tools/build/freeze_modules.py. -Python/frozen_modules/*.h -# The manifest can be generated at any time with "make regen-frozen". -Python/frozen_modules/MANIFEST - -# Two-trick pony for OSX and other case insensitive file systems: -# Ignore ./python binary on Unix but still look into ./Python/ directory. -/python -!/Python/ - diff --git a/packaging/Added-no_sanitize_hwaddress.patch b/packaging/Added-no_sanitize_hwaddress.patch new file mode 100644 index 00000000..d6285048 --- /dev/null +++ b/packaging/Added-no_sanitize_hwaddress.patch @@ -0,0 +1,61 @@ +From bcf1b3584704e3fea441067afb5cc1c5c875f770 Mon Sep 17 00:00:00 2001 +From: Andrey Kazmin +Date: Tue, 8 Jun 2021 16:25:32 +0300 +Subject: [PATCH 3/3] Added no_sanitize_hwaddress attribute for + address_in_range + +Added new attribute for address_in_range to disable HWASan instrumentation. + +Change-Id: I4c446585f144f034dc79e4dc938ef4b8f8401199 +Signed-off-by: Andrey Kazmin +--- + Objects/obmalloc.c | 12 ++++++++++++ + 1 file changed, 12 insertions(+) + +diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c +index eb34f10b..9284c7ff 100644 +--- a/Objects/obmalloc.c ++++ b/Objects/obmalloc.c +@@ -34,6 +34,10 @@ static void _PyMem_SetupDebugHooksDomain(PyMemAllocatorDomain domain); + # define _Py_NO_SANITIZE_ADDRESS \ + __attribute__((no_sanitize("address"))) + # endif ++# if __has_feature(hwaddress_sanitizer) /* is ASAN enabled? */ ++# define _Py_NO_SANITIZE_HWADDRESS \ ++ __attribute__((no_sanitize("hwaddress"))) ++# endif + # if __has_feature(thread_sanitizer) /* is TSAN enabled? */ + # define _Py_NO_SANITIZE_THREAD __attribute__((no_sanitize_thread)) + # endif +@@ -44,6 +48,10 @@ static void _PyMem_SetupDebugHooksDomain(PyMemAllocatorDomain domain); + # if defined(__SANITIZE_ADDRESS__) /* GCC 4.8+, is ASAN enabled? */ + # define _Py_NO_SANITIZE_ADDRESS \ + __attribute__((no_sanitize_address)) ++# endif ++# if defined(__SANITIZE_HWADDRESS__) /* GCC 10+, is HWASAN enabled? */ ++# define _Py_NO_SANITIZE_HWADDRESS \ ++ __attribute__((no_sanitize_hwaddress)) + # endif + // TSAN is supported since GCC 5.1, but __SANITIZE_THREAD__ macro + // is provided only since GCC 7. +@@ -55,6 +63,9 @@ static void _PyMem_SetupDebugHooksDomain(PyMemAllocatorDomain domain); + #ifndef _Py_NO_SANITIZE_ADDRESS + # define _Py_NO_SANITIZE_ADDRESS + #endif ++#ifndef _Py_NO_SANITIZE_HWADDRESS ++# define _Py_NO_SANITIZE_HWADDRESS ++#endif + #ifndef _Py_NO_SANITIZE_THREAD + # define _Py_NO_SANITIZE_THREAD + #endif +@@ -1408,6 +1419,7 @@ extremely desirable that it be this fast. + */ + + static bool _Py_NO_SANITIZE_ADDRESS ++ _Py_NO_SANITIZE_HWADDRESS + _Py_NO_SANITIZE_THREAD + _Py_NO_SANITIZE_MEMORY + address_in_range(void *p, poolp pool) +-- +2.25.1 + diff --git a/packaging/Avoid-ProcessPoolExecutor.patch b/packaging/Avoid-ProcessPoolExecutor.patch new file mode 100644 index 00000000..a709d4df --- /dev/null +++ b/packaging/Avoid-ProcessPoolExecutor.patch @@ -0,0 +1,13 @@ +diff --git a/Makefile.pre.in b/Makefile.pre.in +index 03ca4cb6..0613c8b9 100644 +--- a/Makefile.pre.in ++++ b/Makefile.pre.in +@@ -2499,7 +2499,7 @@ TESTSUBDIRS= idlelib/idle_test \ + test/xmltestdata/c14n-20 \ + test/zipimport_data + +-COMPILEALL_OPTS=-j0 ++COMPILEALL_OPTS=-j1 + + TEST_MODULES=@TEST_MODULES@ + diff --git a/packaging/PACKAGING-NOTES b/packaging/PACKAGING-NOTES new file mode 100644 index 00000000..69e640fa --- /dev/null +++ b/packaging/PACKAGING-NOTES @@ -0,0 +1,58 @@ +Notes for packagers of Python3 +============================== + +I. python3 and python3-base naming confusion +-------------------------------------------- + +1. the important stuff first + +This is package "python3". However, master spec file for this package is "python3-base.spec". +That means that all important changes should be put into "python3-base.spec" and then submitted +against "python3" in OBS. + +Changelogs of python3-base and python3 will be merged at some point. Now they arent, +but feel free to enter changes in either or both. + +2. why is that? + +Technical reasons. python3-base was originally supposed to be a minimal package with no external +dependencies - so that it can build early in the distribution rebuild. There were also some +build loops involved. +Turns out, 90% of Python's standard library can be built without external dependencies. That's +what we do - in python3-base. python3 then only contains the remaining bits - dependency-heavy +subpackages, plus small bits depending on common packages (OpenSSL, expat, readline) +Logically, python3-base must be the master spec because it builds the important parts. + +3. why not rename the whole package to python3-base? + +Because that would be stupid. The package is called python3. + +4. so why not make python3 the minimal package and put the rest in python3-the-rest? + +Because other distributions use python3-base as the minimal package as well. Also, packages +that require python3 expect the whole deal, not a stripped-down version. + +5. alright, let's build python3-base from python3.spec and python3 from someother.spec + +Tried that, abandoned it. It is more trouble than it's worth. + + +II. pre_checkin.sh +------------------ + +Our pre_checkin.sh takes care of copying relevant portions of python3-base.spec to python3.spec. +The "relevant portions" are: +* list of patches +* list of macro definitions +* patch apply sequence in %prep + +That means that when you're adding a patch, you need only add it to python3-base.spec and it will appear +magically in python3.spec too. + +If you want to replicate another section from py3-base to py3, just mark the section with +NEW-SECTION-BEGIN and NEW-SECTION-END (in both py3-base and py3) and add NEW-SECTION to list of $sections +in pre_checkin.sh + +pre_checkin.sh also finds the newest python tarball in the source directory and updates versions +in all specfiles to match it. Therefore, you usually don't need to update version numbers in specs +when you update Python diff --git a/packaging/Skip_unittest.patch b/packaging/Skip_unittest.patch new file mode 100644 index 00000000..73396f22 --- /dev/null +++ b/packaging/Skip_unittest.patch @@ -0,0 +1,22 @@ +diff --git a/Makefile.pre.in b/Makefile.pre.in +index 03ca4cb6..72506a43 100644 +--- a/Makefile.pre.in ++++ b/Makefile.pre.in +@@ -749,13 +749,13 @@ profile-run-stamp: + @echo "Running code to generate profile data (this can take a while):" + # First, we need to create a clean build with profile generation + # enabled. +- $(MAKE) profile-gen-stamp ++ # $(MAKE) profile-gen-stamp + # Next, run the profile task to generate the profile information. + @ # FIXME: can't run for a cross build +- $(LLVM_PROF_FILE) $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK) +- $(LLVM_PROF_MERGER) ++ # $(LLVM_PROF_FILE) $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK) ++ # $(LLVM_PROF_MERGER) + # Remove profile generation binary since we are done with it. +- $(MAKE) clean-retain-profile ++ # $(MAKE) clean-retain-profile + # This is an expensive target to build and it does not have proper + # makefile dependency information. So, we create a "stamp" file + # to record its completion and avoid re-running it. diff --git a/packaging/add_path_environment.patch b/packaging/add_path_environment.patch new file mode 100644 index 00000000..f264b9a0 --- /dev/null +++ b/packaging/add_path_environment.patch @@ -0,0 +1,10 @@ +diff --git a/Misc/python-config.sh.in b/Misc/python-config.sh.in +index 2602fe24..3c1fd243 100644 +--- a/Misc/python-config.sh.in ++++ b/Misc/python-config.sh.in +@@ -1,4 +1,5 @@ + #!/bin/sh ++PATH=/bin:/usr/bin:/sbin:/usr/sbin + + # Keep this script in sync with python-config.in + diff --git a/packaging/add_pie_compile_option.patch b/packaging/add_pie_compile_option.patch new file mode 100644 index 00000000..04376e6b --- /dev/null +++ b/packaging/add_pie_compile_option.patch @@ -0,0 +1,13 @@ +diff --git a/configure.ac b/configure.ac +index 789df36e..ae403066 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -2755,7 +2755,7 @@ then + LINKFORSHARED="-Wl,-E -Wl,+s";; + # LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";; + Linux-android*) LINKFORSHARED="-pie -Xlinker -export-dynamic";; +- Linux*|GNU*) LINKFORSHARED="-Xlinker -export-dynamic";; ++ Linux*|GNU*) LINKFORSHARED="-pie -Xlinker -export-dynamic";; + # -u libsys_s pulls in all symbols in libsys + Darwin/*) + LINKFORSHARED="$extra_undefs -framework CoreFoundation" diff --git a/packaging/baselibs.conf b/packaging/baselibs.conf new file mode 100644 index 00000000..b94f2b02 --- /dev/null +++ b/packaging/baselibs.conf @@ -0,0 +1,3 @@ +python3 +python3-base +libpython3_91_0 diff --git a/packaging/import_failed.map b/packaging/import_failed.map new file mode 100644 index 00000000..9f6c9708 --- /dev/null +++ b/packaging/import_failed.map @@ -0,0 +1,7 @@ +python3-tools: turtledemo +python3-idle: idlelib +python3-testsuite: test _ctypes_test _testbuffer _testcapi _testimportmultiple _testmultiphase xxlimited +python3-tk: tkinter _tkinter +python3-curses: curses _curses _curses_panel +python3-dbm: dbm _dbm _gdbm +python3: ensurepip sqlite3 xml xmlrpc _hashlib pyexpat readline _sqlite3 _ssl diff --git a/packaging/import_failed.py b/packaging/import_failed.py new file mode 100644 index 00000000..801b175c --- /dev/null +++ b/packaging/import_failed.py @@ -0,0 +1,26 @@ +import sys, os +from sysconfig import get_path + +failed_map_path = os.path.join(get_path('stdlib'), '_import_failed', 'import_failed.map') + +if __spec__: + failed_name = __spec__.name +else: + failed_name = __name__ + +for line in open(failed_map_path): + words = line.strip().split() + if not words or words[0][0] == '#': + continue + assert words[0][-1] == ':' + package = words[0][:-1] + + if failed_name in words[1:]: + raise ImportError("""Module '{}' is not installed. +Use: + sudo zypper install {} +to install it.""".format(failed_name, package)) + +raise ImportError("""Module '{}' is not installed. +It is supposed to be part of python3 distribution, but missing from failed import map. +Please file a bug on the SUSE Bugzilla.""".format(failed_name)) diff --git a/packaging/macros.python3.py b/packaging/macros.python3.py new file mode 100644 index 00000000..46676d21 --- /dev/null +++ b/packaging/macros.python3.py @@ -0,0 +1,31 @@ +#!/usr/bin/python3 + +""" generate macros.python3 file from known values """ + +import sys,os +from sysconfig import get_path, get_config_var + +version = "{}.{}".format(*sys.version_info) + +macros = { + "py3_ver": version, + "python3_version": version, + "py3_prefix": sys.prefix, +# hack-fix for bnc#787526 - get_path can't be used this way in python build dir +# "py3_incdir": get_path("include"), + "py3_incdir": "/usr/include/python" + version , + "py3_soflags": get_config_var("SOABI"), + "python3_sitelib": get_path("purelib"), + "python3_sitearch": get_path("platlib"), + "py3_compile(O)": """ +find %1 -name '*.pyc' -exec rm -f {} ";" +python3 -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 +%{-O: +find %1 -name '*.pyo' -exec rm -f {} ";" +python3 -O -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 +}""", +} + +for (macro,definition) in macros.items(): + definition = "\\\n".join(definition.split("\n")) + print( "%{} {}".format(macro, definition)) diff --git a/packaging/pre_checkin.sh b/packaging/pre_checkin.sh new file mode 100644 index 00000000..c4c36c2a --- /dev/null +++ b/packaging/pre_checkin.sh @@ -0,0 +1,122 @@ +#!/bin/bash +# This script is called automatically during autobuild checkin. +# +# +# +# ...or is it? +# it really doesn't seem so, you know. go run it manually. + +master=python3-base.spec + +# calculate version number from newest tar name +VERSION=`ls *.tar.xz | grep '^Python-' | tail -n 1 | sed -r 's/^Python-([0-9]+\.[0-9]+.[0-9a-z]+)\.tar.*$/\1/'` +if echo $VERSION | grep -q Python; then + echo "Version is $VERSION and that's not right, fix the script." + exit 1 +fi +# VERSION = 3.3.0 + +Version=${VERSION/[a-z]*/} # 3.3.0 +tar_suffix=${VERSION#$Version} # b1 +a_version=(${Version//\./ }) # 3 3 0 + +python_version=${VERSION:0:3} # 3.3 +python_version_abitag=${python_version//./} # 33 +python_version_soname=${python_version//./_} # 3_3 + +if [ -n "$tar_suffix" ]; then + Version=$Version~$tar_suffix # 3.3.0~b1 + tarversion=$VERSION # 3.3.0b1 +else + tarversion="%{version}" +fi + +# set Version for every spec +sed -i -r 's/(^Version:[ \t]+).*/\1'"$Version"'/' python3*.spec +# set tarversion for every spec +sed -i -r 's/(^%define[ \t]+tarversion[ \t]+).*/\1'$tarversion'/' python3*.spec + +for varname in python_version{,_abitag,_soname}; do + eval varvalue=\$$varname + sed -i -r 's/(^%define[ \t]+'$varname'[ \t]+).*/\1'$varvalue'/' $master +done + + +# update baselibs +sed -i -r 's/^libpython.*$/libpython'$python_version_soname'm1_0/' baselibs.conf + + +# copy definition sections + + +sections="COMMON-PATCH COMMON-DEF COMMON-PREP" + +for slave in python3.spec python3-doc.spec; do +{ + prev=1 + for section in $sections; do + begin="/$section-BEGIN/" + end="/$section-END/" + sed -n -e "${prev},${begin}p" $slave + sed -n -e "${begin},${end}p" $master | head -n -1 | tail -n +2 + prev=$end + done + sed -n -e "${prev},\$p" $slave +} > $slave.tmp && mv $slave.tmp $slave +done + +osc service localrun format_spec_file + + +# create import_failed.map from package definitions + +MAPFILE=import_failed.map +function new_map_line () { + if [ -z "$1" -o -z "$2" ]; then + return + fi + if [ "$1" == "python3-base" ]; then + return + fi + echo "$1:$2" >> $MAPFILE.tmp +} + +for spec in *.spec; do + basename=${spec%.spec} + package= + modules= + while read line; do + case $line in + "%files -n "*) + new_map_line $package "$modules" + package=${line#"%files -n "} + modules= + ;; + "%files "*) + new_map_line $package "$modules" + package=$basename-${line#"%files "} + modules= + ;; + "%files") + new_map_line $package "$modules" + package=$basename + modules= + ;; + "%{sitedir}/"*) + word=${line#"%{sitedir}/"} + if ! echo $word | grep -q /; then + modules="$modules $word" + fi + ;; + "%{dynlib "*"}") + word=${line#"%{dynlib "} + word=${word%"}"} + modules="$modules $word" + ;; + esac + done < $spec + new_map_line $package "$modules" +done + +mv $MAPFILE.tmp $MAPFILE + diff --git a/packaging/python3-base.spec b/packaging/python3-base.spec new file mode 100644 index 00000000..2772d5a5 --- /dev/null +++ b/packaging/python3-base.spec @@ -0,0 +1,640 @@ +# +# spec file for package python3-base +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +# !!!! +# this is the master spec file, but changes should be submitted +# against python3, not python3-base +# +# see PACKAGING-NOTES for details +# !!!! +### COMMON-DEF-BEGIN ### +%define tarversion %{version} +%define tarname Python-%{tarversion} +# the versions are autogenerated from pre_checkin.sh +# based on the current source tarball +%define python_version 3.13 +%define python_version_abitag 313 +%define python_version_soname 3_13 + +%define sitedir %{_libdir}/python%{python_version} + +# three possible ABI kinds: m - pymalloc, d - debug build; see PEP 3149 +%define abi_kind %{nil} +# python ABI version - used in some file names +%define python_abi %{python_version}%{abi_kind} +# soname ABI tag defined in PEP 3149 +%define abi_tag %{python_version_abitag}%{abi_kind} +# version part of "libpython" package +%define so_version %{python_version_soname}%{abi_kind}1_0 + +# rpm and python have different ideas about what is an arch-dependent name, so: +%if %{__isa_name} == ppc +%define archname %(echo %{_arch} | sed s/ppc/powerpc/) +%else +%define archname %{_arch} +%endif + +%define dynlib() %{sitedir}/lib-dynload/%{1}.cpython-%{abi_tag}-%{archname}-%{_os}%{?_gnu}.so +%define __spec_check_pre exit 0 +### COMMON-DEF-END ### + +# that thing where "without" means "default=on" and vice versa +%bcond_without testsuite +%if 0%{?do_profiling} +%bcond_without profileopt +%else +%bcond_with profileopt +%endif + +Name: python3-base +Version: 3.13.1 +Release: 0 +Summary: Python 3 Interpreter and Stdlib Core +License: Python-2.0 +Group: Development/Languages/Python +Url: http://www.python.org/ + +##### SOURCE FILES ##### +Source0: %{version}/%{tarname}.tgz +Source3: baselibs.conf +Source5: python3start +Source6: python3.sh +Source7: python3.csh +Source8: macros.python3.py +Source9: import_failed.py +Source10: import_failed.map +Source11: add_pie_compile_option.patch +Source12: add_path_environment.patch +Source13: Skip_unittest.patch +Source14: Avoid-ProcessPoolExecutor.patch +Source15: Added-no_sanitize_hwaddress.patch + + +# The following files are not used in the build. +# They are listed here to work around missing functionality in rpmbuild, +# which would otherwise exclude them from distributed src.rpm files. +Source100: PACKAGING-NOTES +Source101: python3-rpmlintrc +Source102: pre_checkin.sh +Source103: skipped_tests.py + +##### REQURES, PROVIDES, OBSOLETES ##### +#Requires: python-rpm-macros +Recommends: python3 = %{version} +#Recommends: python3-ensurepip + +# python 3.1 didn't have a separate python-base, so it is wrongly +# not a conflict to have python3-3.1 and python3-base > 3.1 +Obsoletes: python3 < 3.2 +# no Provides, because python3 is obviously provided by package python3 + +# python 3.4 provides asyncio +Provides: python3-asyncio = %{version} +Obsoletes: python3-asyncio < %{version} + +# python 3.6 provides typing +Provides: python3-typing = %{version} +Obsoletes: python3-typing < %{version} + +##### BUILDREQUIRES ##### +# SECTION required for basic build +BuildRequires: automake +BuildRequires: autoconf-archive +BuildRequires: pkgconfig +# /SECTION +# SECTION required for core modules +# The compression-related ones could be moved to python3 if necessary, with the exception of zlib. +# _bz2 +BuildRequires: bzip2-devel +# _ctypes +BuildRequires: libffi-devel +# _lzma +BuildRequires: lzma-devel +# ssl +BuildRequires: pkgconfig(openssl3) +# zlib +BuildRequires: zlib-devel + +BuildRequires: libexpat-devel +BuildRequires: gdbm-devel +BuildRequires: gettext-tools +BuildRequires: gmp-devel +BuildRequires: intltool +BuildRequires: ncurses-devel +BuildRequires: readline-devel +BuildRequires: sqlite-devel +BuildRequires: xz + + +# /SECTION +# SECTION required for build and testsuite +BuildRequires: fdupes +# netcfg is needed *only* for /etc/services for one test in test_asyncio +# this could be moved to python3 if needed, it's just more convenient here +#BuildRequires: netcfg +BuildRequires: timezone +BuildRequires: xz +# /SECTION + + +%description +Python is an interpreted, object-oriented programming language, and is +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +package. + +This package contains the interpreter core and most commonly used modules +from the standard library. This is sufficient for many usecases, but it +excludes components that depend on external libraries, most notably XML, +database and UI toolkits support. + + +%package -n python3-tools +Summary: Python Utility and Demonstration Scripts +Group: Development/Languages/Python +Requires: %{name} = %{version} +Obsoletes: python3-demo < %{version} +Provides: python3-demo = %{version} +Obsoletes: python3-2to3 < %{version} +Provides: python3-2to3 = %{version} + +%description -n python3-tools +A number of scripts that are useful for building, testing or extending Python, +and a set of demonstration programs. + + +%package -n python3-idle +Summary: An Integrated Development Environment for Python +Group: Development/Languages/Python +Requires: %{name} = %{version} +Requires: python3-tk + +%description -n python3-idle +IDLE is a Tkinter based integrated development environment for Python. +It features a multi-window text editor with multiple undo, Python +colorizing, and many other things, as well as a Python shell window and +a debugger. + + +%package -n python3-devel +Summary: Include Files and Libraries Mandatory for Building Python Modules +Group: Development/Languages/Python +Requires: %{name} = %{version} + +%description -n python3-devel +The Python programming language's interpreter can be extended with +dynamically loaded extensions and can be embedded in other programs. + +This package contains header files, a static library, and development +tools for building Python modules, extending the Python interpreter or +embedding Python in applications. + +This also includes the Python distutils, which were in the Python +package up to version 2.2.2. + + +%package -n python3-testsuite +Summary: Unit tests for Python and its standard library +Group: Development/Languages/Python +Requires: python3 = %{version} +Requires: python3-tk = %{version} + +%description -n python3-testsuite +Unit tests that are useful for verifying integrity and functionality +of the installed Python interpreter and standard library. +They are a documented part of stdlib, as a module 'test'. + +%package -n libpython%{so_version} +Summary: Python Interpreter shared library +Group: Development/Languages/Python + +%description -n libpython%{so_version} +Python is an interpreted, object-oriented programming language, and is +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +(HTML) or python-doc-pdf (PDF) packages. + +This package contains libpython3.2 shared library for embedding in +other applications. + +%prep +%setup -q -n %{tarname} +%{__patch} -p1 < %{SOURCE11} +%{__patch} -p1 < %{SOURCE12} +%{__patch} -p1 < %{SOURCE13} +%{__patch} -p1 < %{SOURCE14} +%{__patch} -p1 < %{SOURCE15} + +### COMMON-PREP-BEGIN ### + +# drop Autoconf version requirement +sed -i 's/^AC_PREREQ/dnl AC_PREREQ/' configure.ac + +# fix shebangs - convert /usr/local/bin/python and /usr/bin/env/python to /usr/bin/python3 +for dir in Lib Tools; do + # find *.py, filter to files that contain bad shebangs + # break up "/""usr" like this to prevent replacing with %{_prefix} + find $dir -name '*.py' -type f -print0 \ + | xargs -0 grep -lE '^#! *(/''usr/.*bin/(env +)?)?python' \ + | xargs sed -r -i -e '1s@^#![[:space:]]*(/''usr/(local/)?bin/(env +)?)?python([0-9]+(\.[0-9]+)?)?@#!%{_bindir}/python3@' +done + +# drop in-tree libffi and expat +rm -fr Modules/_ctypes/libffi* Modules/_ctypes/darwin +rm -fr Modules/expat + +# drop duplicate README from site-packages +rm -f Lib/site-packages/README.txt + +### COMMON-PREP-END ### + +%build +export CFLAGS+=" -w" +export CXXFLAGS+=" -w" +### COMMON-CONFIG-BEGIN ### +# use rpm_opt_flags +export OPT="%{optflags} -DOPENSSL_LOAD_CONF $(pkg-config --cflags-only-I libffi)" + +touch -r %{SOURCE0} Makefile.pre.in + +autoreconf -fi + +%if 0%{?sles_version} +sed -e 's/-fprofile-correction//' -i Makefile.pre.in +%endif + +%{?asan: export ASAN_OPTIONS=use_sigaltstack=false:`cat /ASAN_OPTIONS` } + +%configure \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --mandir=%{_mandir} \ + --docdir=%{_docdir}/python \ + --with-platlibdir=%{_lib} \ + --enable-ipv6 \ + --enable-shared \ + --with-ensurepip=no \ + --with-system-expat \ + --enable-loadable-sqlite-extensions \ + --enable-optimizations \ + --with-lto + +### COMMON-CONFIG-END ### + +%if %{with profileopt} + target=profile-opt +%else + target=all +%endif +LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH \ + make %{?_smp_mflags} BASE_LIB=%{_lib} $target + +%check +# exclude test_gdb -- it doesn't run in buildservice anyway, and fails on missing debuginfos +# when you install gdb into your test env +EXCLUDE="test_gdb" + +%ifarch %{arm} +# test_multiprocessing_forkserver is racy +EXCLUDE="$EXCLUDE test_multiprocessing_forkserver" +%endif +%ifarch ppc ppc64 ppc64le +# exclue test_faulthandler due to bnc#831629 +EXCLUDE="$EXCLUDE test_faulthandler" +%endif +# some tests break in QEMU +%if 0%{?qemu_user_space_build} > 0 +EXCLUDE="$EXCLUDE test_multiprocessing_fork test_multiprocessing_forkserver test_multiprocessing_main_handling test_multiprocessing_spawn test_threading test_threadedtempfile test_io test_posix test_ioctl test_mmap test_openpty test_pty test_time test_subprocess test_asyncore test_asyncio test_os test_faulthandler" +# qemu bug (siginterrupt handling) +EXCLUDE="$EXCLUDE test_signal" +%endif + +# This test (part of test_uuid) requires real network interfaces +# so that ifconfig output has "HWaddr ". Some kvm instances +# done have any such interface breaking the uuid module. +EXCLUDE="$EXCLUDE test_uuid" + +# XML tests +EXCLUDE="$EXCLUDE test_docxmlrpc test_minidom test_pulldom test_pyexpat \ + test_xml_etree test_xml_etree_c test_xmlrpc test_xmlrpc_net" +# tests for components that require XML indirectly +EXCLUDE="$EXCLUDE test_plistlib test_venv \ + test_multiprocessing_fork test_multiprocessing_forkserver test_multiprocessing_spawn" + +# Limit virtual memory to avoid spurious failures +if test $(ulimit -v) = unlimited || test $(ulimit -v) -gt 10000000; then + ulimit -v 10000000 || : +fi + +%if %{with testsuite} +make -j1 test TESTOPTS="-u none -x $EXCLUDE" +# use network, be verbose: +#make test TESTOPTS="-l -u network -v" +%endif + +%install +rm -rf $RPM_BUILD_ROOT + +make \ + OPT="%{optflags} -fPIC" \ + DESTDIR=%{buildroot} \ + install + +# remove .a +find %{buildroot} -name "*.a" -exec rm {} ";" + +# install "site-packages" and __pycache__ for third parties +install -d -m 755 %{buildroot}%{sitedir}/site-packages +install -d -m 755 %{buildroot}%{sitedir}/site-packages/__pycache__ +# and their 32bit counterparts explicitly +mkdir -p %{buildroot}%{_prefix}/lib/python%{python_version}/site-packages/__pycache__ + +# cleanup parts that don't belong +for dir in curses dbm ensurepip sqlite3 tkinter xml xmlrpc; do + find %{buildroot}%{sitedir}/$dir/* -maxdepth 0 -name "test" -o -exec rm -rf {} ";" +done +rm -f $RPM_BUILD_ROOT%{dynlib _curses} +rm -f $RPM_BUILD_ROOT%{dynlib _curses_panel} + +# overwrite the copied binary with a link +ln -sf python%{python_version} %{buildroot}%{_bindir}/python3 + +# link shared library instead of static library that tools expect +#ln -s libpython%{python_abi}.so %{buildroot}%{_libdir}/python%{python_version}/config-%{python_abi}-%{archname}-%{_os}%{?_gnu}%{?armsuffix}/libpython%{python_abi}.so +ln -s libpython%{python_abi}.so %{buildroot}%{_libdir}/python%{python_version}/config-%{python_abi}-%{archname}-%{_os}%{?_gnu}/libpython%{python_abi}.so + +# replace duplicate .pyo/.pyc with hardlinks +%fdupes %{buildroot}/%{sitedir} + +# documentation +export PDOCS=%{buildroot}%{_docdir}/%{name} +install -d -m 755 $PDOCS +#install -c -m 644 %{SOURCE4} $PDOCS/ +install -c -m 644 LICENSE $PDOCS/ +install -c -m 644 README.rst $PDOCS/ + +# tools +for x in `find Tools/ \( -not -name Makefile \) -print | sort` ; do + test -d $x && ( install -c -m 755 -d $PDOCS/$x ) \ + || ( install -c -m 644 $x $PDOCS/$x ) +done +# clean up the bat files +find $PDOCS -name "*.bat" -exec rm {} ";" + +# install devel files to /config +#cp Makefile Makefile.pre.in Makefile.pre $RPM_BUILD_ROOT%{sitedir}/config-%{python_abi}/ + +# move idle config into /etc +install -d -m 755 %{buildroot}%{_sysconfdir}/idle3 +( + cd %{buildroot}/%{sitedir}/idlelib/ + for file in *.def ; do + mv $file %{buildroot}%{_sysconfdir}/idle3/ + ln -sf %{_sysconfdir}/idle3/$file %{buildroot}/%{sitedir}/idlelib/ + done +) + +# startup scripts +mkdir -p %{buildroot}%{_sysconfdir}/profile.d +install -m 644 %{SOURCE5} %{buildroot}%{_sysconfdir} # python3start +install -m 644 %{SOURCE6} %{SOURCE7} %{buildroot}%{_sysconfdir}/profile.d # python3.sh, python3.csh + +# RPM macros +mkdir -p %{buildroot}%{_sysconfdir}/rpm +LD_LIBRARY_PATH=. ./python %{S:8} > $RPM_BUILD_ROOT/etc/rpm/macros.python3 # macros.python3.py + +# import_failed hooks +FAILDIR=%{buildroot}/%{sitedir}/_import_failed +mkdir $FAILDIR +install -m 644 %{SOURCE9} %{SOURCE10} $FAILDIR # import_failed.* +LD_LIBRARY_PATH=. ./python -c "from py_compile import compile; compile('$FAILDIR/import_failed.py', dfile='%{sitedir}/_import_failed/import_failed.py')" +LD_LIBRARY_PATH=. ./python -O -c "from py_compile import compile; compile('$FAILDIR/import_failed.py', dfile='%{sitedir}/_import_failed/import_failed.py')" +( + cd $FAILDIR + while read package modules; do + for module in $modules; do + ln import_failed.py $module.py + pushd __pycache__ + for i in import_failed*; do + ln $i "$module${i#import_failed}" + done + popd + done + done < %{SOURCE10} +) +echo %{sitedir}/_import_failed > %{buildroot}/%{sitedir}/site-packages/zzzz-import-failed-hooks.pth + +%post -n libpython%{so_version} -p /sbin/ldconfig + +%postun -n libpython%{so_version} -p /sbin/ldconfig + +%files -n libpython%{so_version} +%defattr(644, root,root) +%{_libdir}/libpython%{python_abi}.so.* + +%files -n python3-tools +%defattr(644, root, root, 755) +%{sitedir}/turtledemo +%license LICENSE +%doc %{_docdir}/%{name}/Tools + +%files -n python3-idle +%defattr(644, root, root, 755) +%{sitedir}/idlelib +%dir %{_sysconfdir}/idle3 +%config %{_sysconfdir}/idle3/* +%doc Lib/idlelib/News3.txt +%doc Lib/idlelib/README.txt +%doc Lib/idlelib/TODO.txt +%doc Lib/idlelib/extend.txt +%doc Lib/idlelib/ChangeLog +%{_bindir}/idle3 +%attr(755, root, root) %{_bindir}/idle%{python_version} + +%files -n python3-devel +%defattr(644, root, root, 755) +%license LICENSE +%{_libdir}/libpython%{python_abi}.so +%{_libdir}/libpython3.so +%{_libdir}/pkgconfig/* +%{_includedir}/python%{python_abi} +%{sitedir}/config-%{python_abi}-* +%defattr(755, root, root) +%{_bindir}/python%{python_abi}-config +%{_bindir}/python%{python_version}-config +%{_bindir}/python3-config + +%files -n python3-testsuite +%defattr(644, root, root, 755) +%license LICENSE +%{sitedir}/test +%{dynlib _ctypes_test} +%{dynlib _testbuffer} +%{dynlib _testcapi} +%{dynlib _testinternalcapi} +%{dynlib _testimportmultiple} +%{dynlib _testmultiphase} +%{dynlib xxlimited} +# workaround for missing packages +%dir %{sitedir}/sqlite3 +%dir %{sitedir}/tkinter + +%files +%defattr(644, root, root, 755) +# profile files +%config %{_sysconfdir}/python3start +%config %{_sysconfdir}/profile.d/python3.* +%license LICENSE +# docs +%dir %{_docdir}/%{name} +%doc %{_docdir}/%{name}/README.rst +%doc %{_docdir}/%{name}/LICENSE + +%{_mandir}/man1/python3.1* +%{_mandir}/man1/python%{python_version}.1* +# license text, not a doc because the code can use it at run-time +%{sitedir}/LICENSE.txt +# RPM macros +%{_sysconfdir}/rpm/macros.python3 +# binary parts +%dir %{sitedir}/lib-dynload + +%{dynlib array} +%{dynlib _asyncio} +%{dynlib binascii} +%{dynlib _bisect} +%{dynlib _bz2} +%{dynlib cmath} +%{dynlib _codecs_cn} +%{dynlib _codecs_hk} +%{dynlib _codecs_iso2022} +%{dynlib _codecs_jp} +%{dynlib _codecs_kr} +%{dynlib _codecs_tw} +%{dynlib _contextvars} +%{dynlib _csv} +%{dynlib _ctypes} +%{dynlib _datetime} +%{dynlib _decimal} +%{dynlib _elementtree} +%{dynlib fcntl} +%{dynlib grp} +%{dynlib _hashlib} +%{dynlib _heapq} +%{dynlib _json} +%{dynlib _lsprof} +%{dynlib _lzma} +%{dynlib math} +%{dynlib mmap} +%{dynlib _multibytecodec} +%{dynlib _multiprocessing} +%{dynlib _opcode} +%{dynlib _pickle} +%{dynlib _posixsubprocess} +%{dynlib pyexpat} +%{dynlib _queue} +%{dynlib _random} +%{dynlib resource} +%{dynlib select} +%{dynlib _socket} +%{dynlib _ssl} +%{dynlib _struct} +%{dynlib syslog} +%{dynlib termios} +%{dynlib unicodedata} +%{dynlib _xxtestfuzz} +%{dynlib zlib} +# hashlib fallback modules +%{dynlib _blake2} +%{dynlib _md5} +%{dynlib _sha1} +%{dynlib _sha2} +%{dynlib _sha3} + +%{dynlib _gdbm} +%{dynlib _posixshmem} +%{dynlib _sqlite3} +%{dynlib _statistics} +%{dynlib _zoneinfo} +%{dynlib readline} + +%{dynlib _testclinic} +%{dynlib _testsinglephase} +%{dynlib xxlimited_35} +%{dynlib xxsubtype} + +%{dynlib _interpchannels} +%{dynlib _interpqueues} +%{dynlib _interpreters} +%{dynlib _testclinic_limited} +%{dynlib _testexternalinspection} +%{dynlib _testlimitedcapi} + +# python parts +%dir %{sitedir} +%dir %{sitedir}/site-packages +%dir %{sitedir}/site-packages/__pycache__ +%{sitedir}/*.py +%{sitedir}/asyncio +%{sitedir}/ctypes +%{sitedir}/collections +%{sitedir}/concurrent +%{sitedir}/email +%{sitedir}/encodings +%{sitedir}/html +%{sitedir}/http +%{sitedir}/importlib +%{sitedir}/json +%{sitedir}/logging +%{sitedir}/multiprocessing +%{sitedir}/pathlib +%{sitedir}/pydoc_data +%{sitedir}/sysconfig +%{sitedir}/unittest +%{sitedir}/urllib +%{sitedir}/venv +%{sitedir}/wsgiref +%{sitedir}/zoneinfo +%{sitedir}/_pyrepl +%{sitedir}/__pycache__ +%{sitedir}/__phello__ +%{sitedir}/re +%{sitedir}/tomllib +%{sitedir}/zipfile +# import-failed hooks +%{sitedir}/_import_failed +%{sitedir}/site-packages/zzzz-import-failed-hooks.pth +# symlinks +%{_bindir}/python3 +%{_bindir}/pydoc3 + +# === add additional === +%exclude %{sitedir}/curses +%exclude %{sitedir}/dbm +%exclude %{sitedir}/ensurepip +%exclude %{sitedir}/sqlite3 +%exclude %{sitedir}/tkinter +%exclude %{sitedir}/xml +%exclude %{sitedir}/xmlrpc + +# executables +%attr(755, root, root) %{_bindir}/pydoc%{python_version} +%attr(755, root, root) %{_bindir}/python%{python_abi} +%attr(755, root, root) %{_bindir}/python%{python_version} + +%changelog diff --git a/packaging/python3-rpmlintrc b/packaging/python3-rpmlintrc new file mode 100644 index 00000000..3bcb9a2a --- /dev/null +++ b/packaging/python3-rpmlintrc @@ -0,0 +1,18 @@ +# RPM macros are not configuration: +addFilter("non-conffile-in-etc /etc/rpm/macros.python3") +# Obviously, these files are meant to be empty: +addFilter("zero-length /usr/lib64/python3.3/test/nullcert.pem") +addFilter("zero-length /usr/lib64/python3.3/test/namespace_pkgs/module_and_namespace_package/a_test/empty") + +addFilter("W: zero-length"); +addFilter("W: strange-permission"); +addFilter("W: python-bytecode-inconsistent-mtime"); +addFilter("W: package-with-huge-docs"); +addFilter("W: obsolete-not-provided"); +addFilter("W: macro-in-comment"); +addFilter("W: non-executable-script"); +addFilter("W: incoherent-version-dependency-on"); +addFilter("W: file-contains-date-and-time"); + +addFilter("E: license-file-in-docs"); +addFilter("E: non-standard-group"); diff --git a/packaging/python3.csh b/packaging/python3.csh new file mode 100644 index 00000000..b94d8229 --- /dev/null +++ b/packaging/python3.csh @@ -0,0 +1,2 @@ +# add python startup script for interactive sessions +setenv PYTHONSTARTUP /etc/pythonstart diff --git a/packaging/python3.sh b/packaging/python3.sh new file mode 100644 index 00000000..887a8866 --- /dev/null +++ b/packaging/python3.sh @@ -0,0 +1,2 @@ +# add python startup script for interactive sessions +export PYTHONSTARTUP=/etc/pythonstart diff --git a/packaging/python3.spec b/packaging/python3.spec new file mode 100644 index 00000000..56c4b9f4 --- /dev/null +++ b/packaging/python3.spec @@ -0,0 +1,313 @@ +# +# spec file for package python3 +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +# do not add defs here, please edit python3-base.spec instead +# and run pre_checkin.sh +# +# see PACKAGING-NOTES for details +# +### COMMON-DEF-BEGIN ### +%define tarversion %{version} +%define tarname Python-%{tarversion} +# the versions are autogenerated from pre_checkin.sh +# based on the current source tarball +%define python_version 3.13 +%define python_version_abitag 313 +%define python_version_soname 3_13 + +%define sitedir %{_libdir}/python%{python_version} + +# three possible ABI kinds: m - pymalloc, d - debug build; see PEP 3149 +%define abi_kind %{nil} +# python ABI version - used in some file names +%define python_abi %{python_version}%{abi_kind} +# soname ABI tag defined in PEP 3149 +%define abi_tag %{python_version_abitag}%{abi_kind} +# version part of "libpython" package +%define so_version %{python_version_soname}%{abi_kind}1_0 + +# rpm and python have different ideas about what is an arch-dependent name, so: +%if %{__isa_name} == ppc +%define archname %(echo %{_arch} | sed s/ppc/powerpc/) +%else +%define archname %{_arch} +%endif + +%define dynlib() %{sitedir}/lib-dynload/%{1}.cpython-%{abi_tag}-%{archname}-%{_os}%{?_gnu}.so +%define __spec_check_pre exit 0 +### COMMON-DEF-END ### +# +Name: python3 +Version: 3.13.1 +Release: 1 +Summary: Python 3 Interpreter +License: Python-2.0 +Group: Development/Languages/Python +Url: http://www.python.org/ +Source0: %{tarname}.tgz +Source11: add_pie_compile_option.patch +Source12: add_path_environment.patch +Source13: Skip_unittest.patch +Source14: Avoid-ProcessPoolExecutor.patch +Source15: Added-no_sanitize_hwaddress.patch + +BuildRequires: automake +BuildRequires: autoconf-archive +BuildRequires: fdupes +BuildRequires: gcc-c++ +BuildRequires: gdbm-devel +BuildRequires: gettext-tools +BuildRequires: gmp-devel +BuildRequires: intltool +BuildRequires: bzip2-devel +BuildRequires: libexpat-devel +BuildRequires: libffi-devel +#BuildRequires: libnsl-devel +BuildRequires: lzma-devel +BuildRequires: ncurses-devel +#BuildRequires: netcfg +BuildRequires: pkgconfig(openssl1.1) +BuildRequires: pkgconfig +BuildRequires: readline-devel +BuildRequires: sqlite-devel +#BuildRequires: tk-devel +BuildRequires: xz +#BuildRequires: pkgconfig(x11) +Requires: python3-base = %{version} +Recommends: python3-curses +Recommends: python3-dbm +Recommends: python3-idle +Recommends: python3-pip +#Recommends: python3-tk +# some compatibility Provides +Provides: python3 = %{python_version} + +Provides: python3-xml = %{version} +Obsoletes: python3-xml < %{version} +# +# do not add patches here, please edit python3-base.spec instead +# and run pre_checkin.sh +# +# see PACKAGING-NOTES for details +# + + +%description +Python 3 is modern interpreted, object-oriented programming language, +often compared to Tcl, Perl, Scheme, or Java. You can find an overview +of Python in the documentation and tutorials included in the python-doc +package. + +This package supplies rich command line features provided by readline, +XML processing tools, "ensurepip" installer, and sqlite3 support for +the interpreter core, thus forming a so called "extended" runtime. +Installing "python3" is sufficient for the vast majority of usecases. +In addition, recommended packages provide UI toolkit support (python3-curses, +python3-tk), legacy UNIX database bindings (python3-dbm), and the IDLE +development environment (python3-idle). + +%package tk +Summary: TkInter - Python Tk Interface +Group: Development/Libraries/Python +Requires: %{name} = %{version} + +%description tk +Python interface to Tk. Tk is the GUI toolkit that comes with Tcl. The +"xrpm" package uses this Python interface. + +%package curses +Summary: Python Interface to the (N)Curses Library +Group: Development/Libraries/Python +Requires: %{name} = %{version} + +%description curses +An easy to use interface to the (n)curses CUI library. CUI stands for +Console User Interface. + +%prep +%setup -q -n %{tarname} +%{__patch} -p1 < %{SOURCE11} +%{__patch} -p1 < %{SOURCE12} +%{__patch} -p1 < %{SOURCE13} +%{__patch} -p1 < %{SOURCE14} +%{__patch} -p1 < %{SOURCE15} + +### COMMON-PREP-BEGIN ### + +# drop Autoconf version requirement +sed -i 's/^AC_PREREQ/dnl AC_PREREQ/' configure.ac + +# fix shebangs - convert /usr/local/bin/python and /usr/bin/env/python to /usr/bin/python3 +for dir in Lib Tools; do + # find *.py, filter to files that contain bad shebangs + # break up "/""usr" like this to prevent replacing with %{_prefix} + find $dir -name '*.py' -type f -print0 \ + | xargs -0 grep -lE '^#! *(/''usr/.*bin/(env +)?)?python' \ + | xargs sed -r -i -e '1s@^#![[:space:]]*(/''usr/(local/)?bin/(env +)?)?python([0-9]+(\.[0-9]+)?)?@#!%{_bindir}/python3@' +done + +# drop in-tree libffi and expat +rm -rf Modules/_ctypes/libffi* Modules/_ctypes/darwin +rm -rf Modules/expat + +# drop duplicate README from site-packages +rm Lib/site-packages/README.txt + +### COMMON-PREP-END ### + +%build +### COMMON-CONFIG-BEGIN ### +# use rpm_opt_flags +export OPT="%{optflags} -DOPENSSL_LOAD_CONF $(pkg-config --cflags-only-I libffi)" +export CFLAGS+=" -DNCURSES_INTERNALS" + +touch -r %{SOURCE0} Makefile.pre.in + +autoreconf -fi + +%if 0%{?sles_version} +sed -e 's/-fprofile-correction//' -i Makefile.pre.in +%endif + +%{?asan: export ASAN_OPTIONS=use_sigaltstack=false:`cat /ASAN_OPTIONS` } + +%configure \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --mandir=%{_mandir} \ + --docdir=%{_docdir}/python \ + --with-platlibdir=%{_lib} \ + --enable-ipv6 \ + --enable-shared \ + --with-ensurepip=no \ + --with-system-expat \ + --enable-loadable-sqlite-extensions \ + --with-lto + +### COMMON-CONFIG-END ### + +make %{?_smp_mflags} BASE_LIB=%{_lib} + +%check +## Limit virtual memory to avoid spurious failures +#if test $(ulimit -v) = unlimited || test $(ulimit -v) -gt 10000000; then +# ulimit -v 10000000 || : +#fi + +## only test the parts skipped in python3-base +#TESTS="test_curses test_dbm_gnu test_dbm_ndbm test_idle \ +# test_readline test_sqlite test_tcl test_tix test_tk \ +# test_ttk_textonly" +## redo tests with SSL parts +#%if !0%{?qemu_user_space_build} +#TESTS="$TESTS test_asyncio" +#%endif + +## XML tests +#TESTS="$TESTS test_docxmlrpc test_minidom test_pulldom test_pyexpat \ +# test_xml_etree test_xml_etree_c test_xmlrpc test_xmlrpc_net" +## XML-dependent tests +#TESTS="$TESTS test_plistlib test_venv \ +# test_multiprocessing_fork test_multiprocessing_forkserver test_multiprocessing_spawn" + +#make -j1 test TESTOPTS="-u curses $TESTS" + +%install +rm -rf $RPM_BUILD_ROOT +make \ + OPT="%{optflags} -fPIC" \ + DESTDIR=%{buildroot} \ + install + +# clean out stuff that is in python-base and subpackages + +rm %{buildroot}%{_bindir}/* +rm %{buildroot}%{_libdir}/lib* +rm -r %{buildroot}%{_libdir}/pkgconfig +rm -r %{buildroot}%{_mandir}/* +rm -r %{buildroot}%{_includedir}/* + +rm -r %{buildroot}%{sitedir}/config* +find %{buildroot}%{sitedir} -name "*.egg-info" -exec rm {} ";" +rm -r %{buildroot}%{sitedir}/__pycache__ +rm -r %{buildroot}%{sitedir}/site-packages +rm %{buildroot}%{sitedir}/*.* + +for module in \ + asyncio ctypes collections concurrent distutils email encodings \ + html http \ + importlib json logging multiprocessing pydoc_data unittest \ + urllib venv wsgiref lib2to3 test idlelib turtledemo zoneinfo \ + _pyrepl pathlib sysconfig +do + rm -rf %{buildroot}%{sitedir}/$module +done + +for library in \ + array _asyncio audioop binascii _bisect _bz2 cmath _codecs_* _crypt _csv \ + _contextvars _ctypes _datetime _decimal fcntl grp _hashlib _heapq _json _lsprof \ + _lzma math mmap _multibytecodec _multiprocessing _opcode ossaudiodev \ + parser _pickle _posixsubprocess _queue _random resource select _ssl _socket spwd \ + _struct syslog termios _testbuffer _testimportmultiple _testmultiphase \ + unicodedata zlib _ctypes_test _testcapi xxlimited \ + _xxtestfuzz _md5 _sha1 _sha256 _sha512 _blake2 _sha3 \ + _elementtree _posixshmem _sqlite3 _statistics _testinternalcapi \ + _xxsubinterpreters _zoneinfo pyexpat readline \ + _interpchannels _interpqueues _interpreters _testclinic_limited \ + _testexternalinspection _testlimitedcapi +do + eval rm -f "%{buildroot}%{sitedir}/lib-dynload/$library.*" +done + +rm -rf $RPM_BUILD_ROOT%{sitedir}/tkinter +rm -rf $RPM_BUILD_ROOT%{sitedir}/dbm +rm -f $RPM_BUILD_ROOT%{sitedir}/lib-dynload/_gdbm.* + +%fdupes %{buildroot}/%{_libdir}/python%{python_version} + +%files curses +%defattr(644, root, root, 755) +%license LICENSE +%{sitedir}/curses +%{dynlib _curses} +%{dynlib _curses_panel} + +%files +%defattr(644, root, root, 755) +%dir %{sitedir} +%dir %{sitedir}/lib-dynload +%license LICENSE + +%{dynlib _sha2} +%{dynlib _testclinic} +%{dynlib _testsinglephase} +%{dynlib xxlimited_35} +%{dynlib xxsubtype} + +%{sitedir}/ensurepip +%{sitedir}/sqlite3 +%exclude %{sitedir}/sqlite3/test +%{sitedir}/xml +%{sitedir}/xmlrpc +%{sitedir}/__phello__ +%{sitedir}/re +%{sitedir}/tomllib +%{sitedir}/zipfile + +%changelog + diff --git a/packaging/python3start b/packaging/python3start new file mode 100644 index 00000000..5ba053da --- /dev/null +++ b/packaging/python3start @@ -0,0 +1,30 @@ +# startup script for python to enable saving of interpreter history and +# enabling name completion + +# import needed modules +import atexit +import os +import readline +import rlcompleter + +# where is history saved +historyPath = os.path.expanduser("~/.py3history") + +# handler for saving history +def save_history(historyPath=historyPath): + import readline + readline.write_history_file(historyPath) + +# read history, if it exists +if os.path.exists(historyPath): + readline.set_history_length(10000) + readline.read_history_file(historyPath) + +# register saving handler +atexit.register(save_history) + +# enable completion +readline.parse_and_bind('tab: complete') + +# cleanup +del os, atexit, readline, rlcompleter, save_history, historyPath diff --git a/packaging/skipped_tests.py b/packaging/skipped_tests.py new file mode 100644 index 00000000..5b5a6788 --- /dev/null +++ b/packaging/skipped_tests.py @@ -0,0 +1,72 @@ +#!/usr/bin/python3 +""" +Simple regexp-based skipped test checker. +It lists tests that are mentioned (presumably for exclusion) +in BASE, and in MAIN (presumably for inclusion) +and reports discrepancies. + +This will have a number of +""" + +BASE = "python3-base.spec" +MAIN = "python3.spec" + +import glob +import re +from os.path import basename + +alltests = set() +qemu_exclusions = set() + +for item in glob.glob("Python-*/Lib/test/test_*"): + testname = basename(item) + if testname.endswith(".py"): + testname = testname[:-3] + alltests.add(testname) + +testre = re.compile(r'[\s"](test_\w+)\b') + +def find_tests_in_spec(specname): + global qemu_exclusions + + found_tests = set() + with open(specname) as spec: + in_qemu = False + for line in spec: + line = line.strip() + if "#" in line: + line = line[:line.index("#")] + tests = set(testre.findall(line)) + found_tests |= tests + if line == "%if 0%{?qemu_user_space_build} > 0": + in_qemu = True + if in_qemu: + if line == "%endif": + in_qemu = False + qemu_exclusions |= tests + return found_tests + +excluded = find_tests_in_spec(BASE) +included = find_tests_in_spec(MAIN) + +#print("--- excluded tests:", " ".join(sorted(excluded))) +#print("--- included tests:", " ".join(sorted(included))) + +mentioned = excluded | included +nonexistent = mentioned - alltests +missing = excluded - included - qemu_exclusions + +print("--- the following tests are excluded for QEMU and not tested in python") +print("--- (that probably means we don't need to worry about them)") +for test in sorted(qemu_exclusions - included): + print(test) + +print("--- the following tests might be excluded from python-base but not tested in python:") +for test in sorted(missing): + print(test) + +if nonexistent: + print("--- the following tests don't exist:") + for test in sorted(nonexistent): + print(test) + diff --git a/tags b/tags new file mode 100644 index 00000000..8e9ff908 --- /dev/null +++ b/tags @@ -0,0 +1,131626 @@ +!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ +!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ +!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ +!_TAG_PROGRAM_NAME Exuberant Ctags // +!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ +!_TAG_PROGRAM_VERSION 5.9~svn20110310 // +-directory Doc/Makefile /^ make info --directory=build\/texinfo$/;" m +<< Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun << (w n)$/;" f +<=-multiply-both-sides-by-z Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd <=-multiply-both-sides-by-z$/;" f +>> Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun >> (w n)$/;" f +A Lib/test/_test_multiprocessing.py /^ class A(object):$/;" c function:_TestPool.test_map_unplicklable +A Lib/test/audit-tests.py /^ class A:$/;" c function:test_monkeypatch +A Lib/test/crashers/mutation_inside_cyclegc.py /^class A(object):$/;" c +A Lib/test/crashers/underlying_dict.py /^class A(object):$/;" c +A Lib/test/datetimetester.py /^ class A(self.theclass):$/;" c function:TestDate.test_format +A Lib/test/datetimetester.py /^ class A(self.theclass):$/;" c function:TestDateTime.test_format +A Lib/test/datetimetester.py /^ class A(self.theclass):$/;" c function:TestTime.test_format +A Lib/test/mod_generics_cache.py /^ class A(Generic[T]):$/;" c class:B +A Lib/test/mod_generics_cache.py /^class A(Generic[T]):$/;" c +A Lib/test/pickletester.py /^ class A:$/;" c class:AbstractPickleTests.test_nested_names.Nested +A Lib/test/pydoc_mod.py /^class A:$/;" c +A Lib/test/support/__init__.py /^ class A(cls):$/;" c function:check_free_after_iterating +A Lib/test/test_abc.py /^ class A(metaclass=abc.ABCMeta):$/;" c function:test_factory.TestABC.test_subclasshook +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_all_new_methods_are_called +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_isinstance_invalidation +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_issubclass_bad_arguments +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_metaclass_abc +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_register_as_class_deco +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_register_non_class +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_registration_basics +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_registration_builtins +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_registration_edge_cases +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_registration_transitiveness +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_as_decorator +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_del +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_del_implementation +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_implementation +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_layered_implementation +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_multi_inheritance +A Lib/test/test_abc.py /^ class A(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_new_abstractmethods +A Lib/test/test_abc.py /^ class A: ...$/;" c function:test_factory.TestABC.test_tricky_new_works +A Lib/test/test_abc.py /^ class A:$/;" c function:test_factory.TestABC.test_update_non_abc +A Lib/test/test_abc.py /^ class A:$/;" c function:test_factory.TestABCWithInitSubclass.test_positional_only_and_kwonlyargs_with_init_subclass +A Lib/test/test_array.py /^ class A:$/;" c function:BaseTest.test_constructor_with_iterable_argument +A Lib/test/test_binop.py /^class A(OperationLogger):$/;" c +A Lib/test/test_bisect.py /^ class A:$/;" c function:TestBisect.test_lt_returns_non_bool +A Lib/test/test_bisect.py /^ class A:$/;" c function:TestBisect.test_lt_returns_notimplemented +A Lib/test/test_bool.py /^ class A:$/;" c function:BoolTest.test_sane_len +A Lib/test/test_bool.py /^ class A:$/;" c function:BoolTest.test_blocked +A Lib/test/test_buffer.py /^ class A(bytearray):$/;" c function:TestPythonBufferProtocol.test_inherit_but_return_something_else +A Lib/test/test_buffer.py /^ class A(bytearray):$/;" c function:TestPythonBufferProtocol.test_inheritance +A Lib/test/test_buffer.py /^ class A:$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last +A Lib/test/test_buffer.py /^ class A:$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising +A Lib/test/test_buffer.py /^ class A:$/;" c function:TestPythonBufferProtocol.test_release_buffer_with_exception_set +A Lib/test/test_builtin.py /^ class A(object):$/;" c function:BuiltinTest.test_format.classes_new +A Lib/test/test_builtin.py /^ class A:$/;" c function:BuiltinTest.test_format +A Lib/test/test_builtin.py /^ class A:$/;" c function:BuiltinTest.test_general_eval +A Lib/test/test_builtin.py /^ class A:$/;" c function:BuiltinTest.test_hasattr +A Lib/test/test_builtin.py /^ class A[T]:$/;" c function:TestType.test_type_typeparams +A Lib/test/test_bytes.py /^ class A(str):$/;" c function:BytesTest.test_custom +A Lib/test/test_bytes.py /^ class A: pass$/;" c function:BytesTest.test_custom +A Lib/test/test_bytes.py /^ class A:$/;" c function:BytesTest.test_custom +A Lib/test/test_call.py /^class A:$/;" c +A Lib/test/test_capi/test_misc.py /^ class A(_testcapi.HeapGcCType):$/;" c function:CAPITest.test_subclass_of_heap_gc_ctype_with_del_modifying_dunder_class_only_decrefs_once +A Lib/test/test_capi/test_misc.py /^ class A:$/;" c function:CAPITest.test_eval_get_func_desc +A Lib/test/test_capi/test_misc.py /^ class A:$/;" c function:CAPITest.test_eval_get_func_name +A Lib/test/test_class.py /^ class A(**d): pass$/;" c function:ClassTests.testClassWithExtCall +A Lib/test/test_class.py /^ class A(0, *range(1, 8), **d, foo='bar'): pass$/;" c function:ClassTests.testClassWithExtCall +A Lib/test/test_class.py /^ class A(0, 1, 2, 3, 4, 5, 6, 7, **d): pass$/;" c function:ClassTests.testClassWithExtCall +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testForExceptionsRaisedInInstanceGetattr2 +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testHasAttrString +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testHashComparisonOfMethods +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testObjectAttributeAccessErrorMessages +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testSFBug532646 +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testSetattrNonStringName +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testSetattrWrapperNameIntern +A Lib/test/test_class.py /^ class A:$/;" c function:ClassTests.testTypeAttributeAccessErrorMessages +A Lib/test/test_collections.py /^ class A(UserDict):$/;" c function:TestUserObjects.test_dict_missing +A Lib/test/test_compile.py /^ class A:$/;" c function:TestSpecifics.test_exec_with_general_mapping_for_locals +A Lib/test/test_compile.py /^ class A:$/;" c function:TestSpecifics.test_mangling +A Lib/test/test_contextlib.py /^ class A:$/;" c function:.test_nokeepref +A Lib/test/test_ctypes/test_as_parameter.py /^ class A:$/;" c function:BasicWrapTestCase.test_recursive_as_param +A Lib/test/test_ctypes/test_pointers.py /^ class A(POINTER(c_ulong)):$/;" c function:PointersTestCase.test_pointer_crash +A Lib/test/test_curses.py /^ class A:$/;" c function:TestCurses.test_userptr_segfault +A Lib/test/test_dataclasses.py /^ class A:$/;" c class:TestCase.test_no_unhashable_default.Unhashable +A Lib/test/test_dataclasses.py /^ class A:$/;" c class:TestKeywordArgs.test_KW_ONLY_twice.B +A Lib/test/test_dataclasses.py /^ class A:$/;" c class:TestKeywordArgs.test_defaults.A +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_KW_ONLY_twice +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_no_classvar_kwarg +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestSlots.test_weakref_slot_without_slot +A Lib/test/test_dataclasses.py /^ class A(Base):$/;" c function:TestSlots.test_slots_weakref_base_str +A Lib/test/test_dataclasses.py /^ class A(Base):$/;" c function:TestSlots.test_slots_weakref_base_tuple +A Lib/test/test_dataclasses.py /^ class A(Base):$/;" c function:TestSlots.test_weakref_slot_normal_base_weakref_slot +A Lib/test/test_dataclasses.py /^ class A(Base):$/;" c function:TestSlots.test_weakref_slot_subclass_no_weakref_slot +A Lib/test/test_dataclasses.py /^ class A(Base):$/;" c function:TestSlots.test_weakref_slot_subclass_weakref_slot +A Lib/test/test_dataclasses.py /^ class A(abc.ABC):$/;" c function:TestAbstract.test_maintain_abc +A Lib/test/test_dataclasses.py /^ class A(types.GenericAlias):$/;" c function:TestCase.test_is_dataclass_genericalias +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestCase.test_dataclasses_qualnames +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestCase.test_intermediate_non_dataclass +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestCase.test_is_dataclass_when_getattr_always_returns +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_KW_ONLY +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_KW_ONLY_as_string +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_KW_ONLY_twice +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_defaults +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_field_marked_as_kwonly +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestKeywordArgs.test_post_init +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestMatchArgs.test_match_args_argument +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestSlots.test_returns_new_class +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestSlots.test_slots_no_weakref +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestSlots.test_slots_weakref +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestSlots.test_slots_with_default_factory_no_init +A Lib/test/test_dataclasses.py /^ class A:$/;" c function:TestSlots.test_slots_with_default_no_init +A Lib/test/test_decimal.py /^ class A(self.decimal.Decimal):$/;" c function:FormatTest.test_decimal_from_float_argument_type +A Lib/test/test_decorators.py /^ class A:$/;" c class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2 +A Lib/test/test_decorators.py /^ class A:$/;" c function:TestDecorators.test_bound_function_inside_classmethod +A Lib/test/test_deque.py /^ class A:$/;" c function:TestBasic.test_contains_count_stop_crashes +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c class:MroTest.test_disappearing_custom_mro.M +A Lib/test/test_descr.py /^ class A(C):$/;" c function:.test_dir +A Lib/test/test_descr.py /^ class A(int):$/;" c function:.test_wrong_class_slot_wrapper +A Lib/test/test_descr.py /^ class A(metaclass=AMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +A Lib/test/test_descr.py /^ class A(metaclass=ANotMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_incomplete_extend +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_incomplete_set_bases_on_self +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_incomplete_super +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_reent_set_bases_on_base +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_reent_set_bases_on_direct_base +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_reent_set_bases_tp_base_cycle +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_tp_subclasses_cycle_error_return_path +A Lib/test/test_descr.py /^ class A(metaclass=M):$/;" c function:MroTest.test_tp_subclasses_cycle_in_update_slots +A Lib/test/test_descr.py /^ class A(metaclass=autoproperty):$/;" c function:ClassPropertiesAndMethods.test_metaclass +A Lib/test/test_descr.py /^ class A(metaclass=autosuper):$/;" c function:ClassPropertiesAndMethods.test_metaclass +A Lib/test/test_descr.py /^ class A(metaclass=multimetaclass):$/;" c function:ClassPropertiesAndMethods.test_metaclass +A Lib/test/test_descr.py /^ class A(object): pass$/;" c function:.test_mro_disagreement +A Lib/test/test_descr.py /^ class A(object): pass$/;" c function:ClassPropertiesAndMethods.test_ex5_from_c3_switch +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_altmro +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_getattr_hooks +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_mutable_bases_catch_mro_conflict +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_object_new +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_recursive_call +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_restored_object_new +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_set_class +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_slots_multiple_inheritance +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_subclass_propagation +A Lib/test/test_descr.py /^ class A(object):$/;" c function:.test_supers +A Lib/test/test_descr.py /^ class A(object):$/;" c function:ClassPropertiesAndMethods.test_diamond_inheritance +A Lib/test/test_descr.py /^ class A(type):$/;" c function:.test_carloverre_multi_inherit_invalid +A Lib/test/test_descr.py /^ class A(type):$/;" c function:.test_carloverre_multi_inherit_valid +A Lib/test/test_descr.py /^ class A(type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +A Lib/test/test_descr.py /^ class A:$/;" c function:.test_attr_raise_through_property +A Lib/test/test_descr.py /^ class A:$/;" c function:.test_ipow_returns_not_implemented +A Lib/test/test_descr.py /^ class A:$/;" c function:ClassPropertiesAndMethods.test_module_subclasses +A Lib/test/test_descr.py /^ class A:$/;" c function:PicklingTests.test_issue24097 +A Lib/test/test_descr.py /^ class A:$/;" c function:SharedKeyTests.test_subclasses +A Lib/test/test_descrtut.py /^class A(object):$/;" c +A Lib/test/test_dict.py /^ class A:$/;" c function:DictTest.test_copy_maintains_tracking +A Lib/test/test_dict.py /^ class A:$/;" c function:DictTest.test_reverse_iterator_for_shared_shared_dicts +A Lib/test/test_enum.py /^ A = 'a'$/;" v class:TestSpecial.test_init_exception.Base.MyEnum +A Lib/test/test_enum.py /^ A = 1$/;" v class:OldTestFlag.test_boundary.SkipFlag +A Lib/test/test_enum.py /^ A = 1$/;" v class:OldTestFlag.test_boundary.SkipIntFlag +A Lib/test/test_enum.py /^ A = 1$/;" v class:TestSpecial.test_inherited_data_type.MyEnum +A Lib/test/test_enum.py /^ A = 1$/;" v class:_EnumTests.test_multiple_superclasses_repr.E +A Lib/test/test_enum.py /^ A = 1$/;" v class:_FlagTests.test_closed_invert_expectations.ClosedAB +A Lib/test/test_enum.py /^ A = 1$/;" v class:_FlagTests.test_open_invert_expectations.OpenAB +A Lib/test/test_enum.py /^ A = 5$/;" v class:TestSpecial.setUp.Grades +A Lib/test/test_enum.py /^ A = 5$/;" v class:TestSpecial.test_ordered_mixin.Grade +A Lib/test/test_enum.py /^ A = TTuple(1, 2, [4])$/;" v class:TestSpecial.test_namedtuple_as_value.NTEnum +A Lib/test/test_enumerate.py /^ class A:$/;" c function:TestReversed.test_simple +A Lib/test/test_exceptions.py /^ class A(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle2 +A Lib/test/test_exceptions.py /^ class A(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle3 +A Lib/test/test_exceptions.py /^ class A(Exception):$/;" c function:ExceptionTests.test_raise_does_not_create_context_chain_cycle +A Lib/test/test_exceptions.py /^ class A:$/;" c function:AttributeErrorTests.test_getattr_has_name_and_obj +A Lib/test/test_exceptions.py /^ class A:$/;" c function:AttributeErrorTests.test_getattr_has_name_and_obj_for_method +A Lib/test/test_functools.py /^ class A:$/;" c function:TestTotalOrdering.test_no_operations_defined +A Lib/test/test_functools.py /^ class A(int):$/;" c function:TestTotalOrdering.test_total_ordering_no_overwrite +A Lib/test/test_functools.py /^ class A(metaclass=MetaA):$/;" c function:TestSingleDispatch.test_false_meta +A Lib/test/test_functools.py /^ class A(metaclass=SortableMeta):$/;" c function:TestTotalOrdering.test_total_ordering_for_metaclasses_issue_44605 +A Lib/test/test_functools.py /^ class A(object):$/;" c function:TestSingleDispatch.test_c3_abc +A Lib/test/test_functools.py /^ class A:$/;" c function:TestCachedProperty.test_reuse_same_name +A Lib/test/test_functools.py /^ class A:$/;" c function:TestLRU.test_lru_cache_weakrefable +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_callable_register +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_classmethod_register +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_classmethod_type_ann_register +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_method_register +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_method_wrapping_attributes +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_mro +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_staticmethod_register +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_staticmethod_type_ann_register +A Lib/test/test_functools.py /^ class A:$/;" c function:TestSingleDispatch.test_type_ann_register +A Lib/test/test_functools.py /^ class A:$/;" c function:TestTotalOrdering.test_total_ordering_ge +A Lib/test/test_functools.py /^ class A:$/;" c function:TestTotalOrdering.test_total_ordering_gt +A Lib/test/test_functools.py /^ class A:$/;" c function:TestTotalOrdering.test_total_ordering_le +A Lib/test/test_functools.py /^ class A:$/;" c function:TestTotalOrdering.test_total_ordering_lt +A Lib/test/test_functools.py /^ class A(object):$/;" c class:TestPartialMethod +A Lib/test/test_gc.py /^ class A(object):$/;" c function:GCTests.test_del_newclass +A Lib/test/test_gc.py /^ class A(object):$/;" c function:GCTests.test_legacy_finalizer_newclass +A Lib/test/test_gc.py /^ class A(object):$/;" c function:GCTests.test_newinstance +A Lib/test/test_gc.py /^ class A(object):$/;" c function:GCTests.test_newstyleclass +A Lib/test/test_gc.py /^ class A: # simple self-loop$/;" c function:GCTests.test_resurrection_does_not_block_cleanup_of_other_objects +A Lib/test/test_gc.py /^ class A: # simple self-loop$/;" c function:GCTests.test_resurrection_only_happens_once_per_object +A Lib/test/test_gc.py /^ class A:$/;" c function:GCTests.test_bug21435 +A Lib/test/test_gc.py /^ class A:$/;" c function:GCTests.test_class +A Lib/test/test_gc.py /^ class A:$/;" c function:GCTests.test_del +A Lib/test/test_gc.py /^ class A:$/;" c function:GCTests.test_instance +A Lib/test/test_gc.py /^ class A:$/;" c function:GCTests.test_legacy_finalizer +A Lib/test/test_gc.py /^ class A:$/;" c function:GCTests.test_method +A Lib/test/test_gc.py /^ class A:$/;" c function:GCTests.test_trash_weakref_clear +A Lib/test/test_genericclass.py /^ class A(dict):$/;" c function:TestClassGetitem.test_class_getitem_with_builtins +A Lib/test/test_genericclass.py /^ class A: ...$/;" c function:TestMROEntry.test_mro_entry +A Lib/test/test_genericclass.py /^ class A: ...$/;" c function:TestMROEntry.test_mro_entry_metaclass +A Lib/test/test_genericclass.py /^ class A: ...$/;" c function:TestMROEntry.test_mro_entry_none +A Lib/test/test_genericclass.py /^ class A: ...$/;" c function:TestMROEntry.test_mro_entry_with_builtins +A Lib/test/test_grammar.py /^ class A:$/;" c function:GrammarTests.test_annotations_inheritance +A Lib/test/test_http_cookiejar.py /^ class A:$/;" c function:FileCookieJarTests.test_constructor_with_other_types +A Lib/test/test_inspect.py /^ class A(Generic[T]):$/;" c function:TestSignatureObject.test_signature_on_generic_subclass +A Lib/test/test_inspect.py /^ class A(metaclass=M):$/;" c function:TestClassesAndFunctions.test_getmembers_VirtualAttribute +A Lib/test/test_inspect.py /^ class A(object): pass$/;" c function:TestClassesAndFunctions.test_newstyle_mro +A Lib/test/test_inspect.py /^ class A(object):$/;" c function:TestClassesAndFunctions.test_classify_newstyle +A Lib/test/test_inspect.py /^ class A(object):$/;" c function:TestClassesAndFunctions.test_getmembers_descriptors +A Lib/test/test_inspect.py /^ class A:$/;" c function:TestClassesAndFunctions.test_getmembers_static +A Lib/test/test_inspect.py /^ class A:$/;" c function:TestSignatureObject.test_signature_on_subclass +A Lib/test/test_inspect.py /^ class A:$/;" c function:TestSignatureObject.test_signature_without_self +A Lib/test/test_isinstance.py /^ class A:$/;" c function:TestIsInstanceIsSubclass.test_infinitely_many_bases.X.__getattr__ +A Lib/test/test_isinstance.py /^ class A:$/;" c function:TestIsInstanceIsSubclass.test_issubclass_refcount_handling +A Lib/test/test_operator.py /^ class A:$/;" c function:OperatorPickleTestCase.test_attrgetter +A Lib/test/test_operator.py /^ class A:$/;" c function:OperatorPickleTestCase.test_methodcaller +A Lib/test/test_operator.py /^ class A:$/;" c function:OperatorTestCase.test_attrgetter +A Lib/test/test_operator.py /^ class A:$/;" c function:OperatorTestCase.test_methodcaller +A Lib/test/test_ordered_dict.py /^ class A:$/;" c function:OrderedDictTests.test_reference_loop +A Lib/test/test_os.py /^ class A(os.PathLike):$/;" c function:TestPEP519.test_pathlike_subclasshook +A Lib/test/test_patma.py /^ class A:$/;" c function:TestPatma.test_patma_008 +A Lib/test/test_patma.py /^ class A:$/;" c function:TestPatma.test_patma_009 +A Lib/test/test_patma.py /^ class A:$/;" c function:TestPatma.test_patma_111 +A Lib/test/test_patma.py /^ class A:$/;" c function:TestPatma.test_patma_112 +A Lib/test/test_patma.py /^ class A:$/;" c function:TestPatma.test_patma_113 +A Lib/test/test_patma.py /^ class A:$/;" c function:TestPatma.test_patma_114 +A Lib/test/test_patma.py /^ class A:$/;" c function:TestPatma.test_patma_115 +A Lib/test/test_positional_only_arg.py /^ class A:$/;" c function:PositionalOnlyTestCase.test_super +A Lib/test/test_property.py /^ class A:$/;" c function:PropertyTests.test_class_property +A Lib/test/test_property.py /^ class A:$/;" c function:PropertyTests.test_class_property_override +A Lib/test/test_property.py /^ class A:$/;" c function:PropertyTests.test_property_setname_on_property_subclass +A Lib/test/test_pydoc.py /^ class A:$/;" c function:PydocDocTest.test_method_aliases +A Lib/test/test_pydoc.py /^ class A:$/;" c function:PydocDocTest.test_non_str_name +A Lib/test/test_rlcompleter.py /^ class A(dict):$/;" c function:TestRlcompleter.test_namespace +A Lib/test/test_set.py /^ class A:$/;" c function:TestJointOps.test_gc +A Lib/test/test_statistics.py /^ class A:$/;" c function:TestNormalDist.test_equality +A Lib/test/test_subclassinit.py /^ class A(BaseWithoutInit):$/;" c function:Test.test_init_subclass_skipped +A Lib/test/test_subclassinit.py /^ class A(Left, Middle, Right, middle="middle"):$/;" c function:Test.test_init_subclass_diamond +A Lib/test/test_subclassinit.py /^ class A(dict):$/;" c function:Test.test_init_subclass_dict +A Lib/test/test_subclassinit.py /^ class A(metaclass=Meta):$/;" c function:Test.test_set_name_metaclass +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_init_subclass +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_init_subclass_error +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_init_subclass_kwargs +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_init_subclass_wrong +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_set_name +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_set_name_init_subclass +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_set_name_lookup +A Lib/test/test_subclassinit.py /^ class A:$/;" c function:Test.test_set_name_modifying_dict +A Lib/test/test_super.py /^ class A(metaclass=Meta, cell=bad_cell):$/;" c function:TestSuper.test___classcell___overwrite.Meta.__new__ +A Lib/test/test_super.py /^ class A(metaclass=Meta):$/;" c class:TestSuper.test___classcell___wrong_cell.Meta +A Lib/test/test_super.py /^ class A(metaclass=Meta):$/;" c function:TestSuper.test___class___delayed +A Lib/test/test_super.py /^ class A(metaclass=Meta):$/;" c function:TestSuper.test___class___mro +A Lib/test/test_super.py /^ class A(metaclass=Meta):$/;" c function:TestSuper.test___class___new +A Lib/test/test_super.py /^ class A:$/;" c function:TestSuper.test_mixed_staticmethod_hierarchy +A Lib/test/test_super.py /^ class A:$/;" c function:TestSuper.test_reassigned_new +A Lib/test/test_super.py /^class A:$/;" c +A Lib/test/test_sys.py /^ class A:$/;" c function:UnraisableHookTest.test_original_unraisablehook_exception_qualname +A Lib/test/test_sys_setprofile.py /^ class A:$/;" c function:TestEdgeCases.test_reentrancy +A Lib/test/test_sys_settrace.py /^ class A:$/;" c function:TraceTestCase.test_implicit_return_in_class.func +A Lib/test/test_sys_settrace.py /^ class A:$/;" c function:TestEdgeCases.test_reentrancy +A Lib/test/test_traceback.py /^ class A: pass$/;" c function:TracebackErrorLocationCaretTestBase.test_decorator_application_lineno_correct.applydecs_class +A Lib/test/test_traceback.py /^ class A:$/;" c function:BaseExceptionReportingTests.test_exception_qualname +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_attribute_error_inside_nested_getattr +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_do_not_trigger_for_big_dicts +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_do_not_trigger_for_long_attributes +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_for_same_name +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_no_args +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_name_error_with_instance +A Lib/test/test_traceback.py /^ class A:$/;" c function:SuggestionFormattingTestBase.test_unbound_local_error_with_instance +A Lib/test/test_types.py /^ A = 0$/;" v class:UnionTests.test_or_type_operator_with_Literal.Ints +A Lib/test/test_types.py /^ class A(metaclass=self.Meta):$/;" c function:ClassCreationTests.test_metaclass_override_function +A Lib/test/test_types.py /^ class A(type):$/;" c function:ClassCreationTests.test_prepare_class +A Lib/test/test_types.py /^ class A: pass$/;" c function:ClassCreationTests.test_get_original_bases +A Lib/test/test_types.py /^ class A: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry +A Lib/test/test_types.py /^ class A: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_error +A Lib/test/test_types.py /^ class A: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_none +A Lib/test/test_types.py /^ class A: pass$/;" c function:ClassCreationTests.test_resolve_bases +A Lib/test/test_types.py /^ class A:$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple +A Lib/test/test_types.py /^ class A:$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +A Lib/test/test_typing.py /^ A = G[int]$/;" v class:NamedTupleTests.test_generic.Y +A Lib/test/test_typing.py /^ A = 'A'$/;" v class:LiteralTests.test_enum.My +A Lib/test/test_typing.py /^ A = 0$/;" v class:UnionTests.test_union_of_literals.Ints +A Lib/test/test_typing.py /^ A = 1$/;" v class:LiteralTests.test_does_not_flatten_enum.Ints +A Lib/test/test_typing.py /^ class A(Generic[T]):$/;" c class:GenericTests.test_generic_hashes.B +A Lib/test/test_typing.py /^ class A(self.bottom_type):$/;" c function:BottomTypeTestsMixin.test_cannot_subclass +A Lib/test/test_typing.py /^ class A(type(self.bottom_type)):$/;" c function:BottomTypeTestsMixin.test_cannot_subclass +A Lib/test/test_typing.py /^ class A(typing.Match):$/;" c function:RETests.test_cannot_subclass +A Lib/test/test_typing.py /^ class A(typing.Pattern):$/;" c function:RETests.test_cannot_subclass +A Lib/test/test_typing.py /^ class A:$/;" c function:ForwardRefTests.test_forward_equality_namespace.namespace2 +A Lib/test/test_typing.py /^ class A(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_args_are_correct +A Lib/test/test_typing.py /^ class A(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_repr_is_correct +A Lib/test/test_typing.py /^ class A(Generic[T, VT]):$/;" c function:GenericTests.test_multiple_inheritance +A Lib/test/test_typing.py /^ class A(Generic[T1, T2, *Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_2_typevars_accepts_2_or_more_args +A Lib/test/test_typing.py /^ class A(Generic[T]):$/;" c function:GenericTests.test_eq_2 +A Lib/test/test_typing.py /^ class A(Generic[T]):$/;" c function:GenericTests.test_generic_hashes +A Lib/test/test_typing.py /^ class A(Generic[T]):$/;" c function:GenericTests.test_new_no_args +A Lib/test/test_typing.py /^ class A(Generic[T]):$/;" c function:GenericTests.test_new_with_args +A Lib/test/test_typing.py /^ class A(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_alias_repr_is_correct +A Lib/test/test_typing.py /^ class A(NamedTuple):$/;" c function:NamedTupleTests.test_multiple_inheritance +A Lib/test/test_typing.py /^ class A(TypedDict, Generic[T]):$/;" c function:TypedDictTests.test_generic_inheritance +A Lib/test/test_typing.py /^ class A(TypedDict, Generic[T]):$/;" c function:TypedDictTests.test_implicit_any_inheritance +A Lib/test/test_typing.py /^ class A(collections.abc.Mapping, metaclass=abc.ABCMeta): ...$/;" c function:CollectionsAbcTests.test_collections_as_base +A Lib/test/test_typing.py /^ class A(typing.Container): ...$/;" c function:CollectionsAbcTests.test_subclassing_register +A Lib/test/test_typing.py /^ class A: ...$/;" c function:GetTypeHintTests.test_get_type_hints_for_object_with_annotations +A Lib/test/test_typing.py /^ class A: pass$/;" c function:ProtocolTests.test_collections_protocols_allowed +A Lib/test/test_typing.py /^ class A:$/;" c function:ForwardRefTests.test_forward_equality_namespace +A Lib/test/test_typing.py /^ class A:$/;" c function:ForwardRefTests.test_no_type_check_foreign_functions +A Lib/test/test_typing.py /^ class A:$/;" c function:ForwardRefTests.test_no_type_check_lambda +A Lib/test/test_typing.py /^ class A:$/;" c function:ForwardRefTests.test_no_type_check_nested_types +A Lib/test/test_typing.py /^ class A:$/;" c function:GenericTests.test_new_with_args2 +A Lib/test/test_typing.py /^ class A:$/;" c function:GenericTests.test_non_generic_subscript +A Lib/test/test_typing.py /^ class A:$/;" c function:GenericTests.test_parameter_detection +A Lib/test/test_typing.py /^ class A:$/;" c function:NamedTupleTests.test_multiple_inheritance +A Lib/test/test_typing.py /^ class A:$/;" c function:ProtocolTests.test_none_on_callable_blocks_implementation +A Lib/test/test_typing.py /^ class A:$/;" c function:ProtocolTests.test_none_on_non_callable_doesnt_block_implementation +A Lib/test/test_typing.py /^ class A:$/;" c function:TypeAliasTests.test_stringized_usage +A Lib/test/test_typing.py /^ class A[T](TypedDict):$/;" c function:TypedDictTests.test_pep695_generic_typeddict +A Lib/test/test_typing.py /^class A:$/;" c +A Lib/test/test_unittest/test_assertions.py /^ class A:$/;" c function:Test_Assertions.test_assertRaises_frames_survival +A Lib/test/test_unittest/testmock/testhelpers.py /^ class A(object):$/;" c function:SpecSignatureTest.test_recursive +A Lib/test/test_unittest/testmock/testmock.py /^ class A(object):$/;" c function:MockTest.test_autospec_mock +A Lib/test/test_weakref.py /^ class A(object):$/;" c function:ReferencesTestCase.test_classes +A Lib/test/test_weakref.py /^ class A:$/;" c function:ReferencesTestCase.check_gc_during_creation +A Lib/test/test_weakref.py /^ class A:$/;" c function:ReferencesTestCase.test_proxy_bad_next +A Lib/test/test_weakref.py /^ class A:$/;" c class:FinalizeTestCase +A Lib/test/typinganndata/ann_module9.py /^class A: ...$/;" c +A Lib/turtledemo/lindenmayer.py /^ def A():$/;" f function:main +A Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:2;$/;" m struct:__anon508 file: +A Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +A Modules/_ctypes/_ctypes_test.c /^ unsigned int A: 1, B:2, C:3, D:2;$/;" m struct:__anon509 file: +A Tools/scripts/var_access_benchmark.py /^class A(object):$/;" c +A0 Lib/test/test_dataclasses.py /^ class A0:$/;" c function:TestCase.test_post_init_not_auto_added +A1 Lib/test/test_abc.py /^ class A1(A):$/;" c function:test_factory.TestABC.test_registration_edge_cases +A1 Lib/test/test_dataclasses.py /^ class A1:$/;" c function:TestCase.test_post_init_not_auto_added +A1 Lib/test/test_descr.py /^ class A1(object, metaclass=M1):$/;" c function:.test_errors +A1 Lib/test/test_types.py /^ class A1: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple +A1 Lib/test/test_types.py /^ class A1: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +A2 Lib/test/test_descr.py /^ class A2(object, metaclass=M2):$/;" c function:.test_errors +A2 Lib/test/test_types.py /^ class A2: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple +A2 Lib/test/test_types.py /^ class A2: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +A2 Lib/test/test_typing.py /^ class A2(Generic[T], TypedDict):$/;" c function:TypedDictTests.test_generic_inheritance +A3 Lib/test/test_types.py /^ class A3: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +AA Lib/test/test_functools.py /^ class AA(A):$/;" c function:TestSingleDispatch.test_false_meta +AAA Lib/test/pickletester.py /^class AAA(object):$/;" c +AAAPTypesLongInitTest Lib/test/test_descr.py /^class AAAPTypesLongInitTest(unittest.TestCase):$/;" c +ABC Lib/abc.py /^class ABC(metaclass=ABCMeta):$/;" c +ABC Lib/test/test_typechecks.py /^class ABC(type):$/;" c +ABC Lib/test/test_unicode.py /^ ABC = 'abc'$/;" v class:UnicodeTest.test_formatting_with_enum.Str +ABCD_method Lib/test/pydocfodder.py /^ def ABCD_method(self):$/;" m class:A_new +ABCD_method Lib/test/pydocfodder.py /^ def ABCD_method(self):$/;" m class:B_new +ABCD_method Lib/test/pydocfodder.py /^ def ABCD_method(self):$/;" m class:C_new +ABCD_method Lib/test/pydocfodder.py /^ def ABCD_method(self):$/;" m class:D_new +ABCMeta Lib/_py_abc.py /^class ABCMeta(type):$/;" c +ABCMeta Lib/abc.py /^ class ABCMeta(type):$/;" c +ABCTestCase Lib/test/test_collections.py /^class ABCTestCase(unittest.TestCase):$/;" c +ABCTestHarness Lib/test/test_importlib/test_abc.py /^class ABCTestHarness:$/;" c +ABC_method Lib/test/pydocfodder.py /^ def ABC_method(self):$/;" m class:A_new +ABC_method Lib/test/pydocfodder.py /^ def ABC_method(self):$/;" m class:B_new +ABC_method Lib/test/pydocfodder.py /^ def ABC_method(self):$/;" m class:C_new +ABD_method Lib/test/pydocfodder.py /^ def ABD_method(self):$/;" m class:A_new +ABD_method Lib/test/pydocfodder.py /^ def ABD_method(self):$/;" m class:B_new +ABD_method Lib/test/pydocfodder.py /^ def ABD_method(self):$/;" m class:D_new +ABIItem Tools/build/stable_abi.py /^class ABIItem:$/;" c +ABORT Lib/tkinter/messagebox.py /^ABORT = "abort"$/;" v +ABORTRETRYIGNORE Lib/tkinter/messagebox.py /^ABORTRETRYIGNORE = "abortretryignore"$/;" v +ABSENT Python/specialize.c /^ ABSENT, \/* Attribute is not present on the class *\/$/;" e enum:__anon686 file: +ABSORB_PENDING Objects/longobject.c 4792;" d file: +ABSTFN Lib/test/test_posixpath.py /^ABSTFN = abspath(os_helper.TESTFN)$/;" v +AB_method Lib/test/pydocfodder.py /^ def AB_method(self):$/;" m class:A_new +AB_method Lib/test/pydocfodder.py /^ def AB_method(self):$/;" m class:B_new +ABase Lib/test/test_typing.py /^ class ABase(Generic[T]):$/;" c function:GetTypeHintTests.test_respect_no_type_check +AC Lib/test/test_enum.py /^ AC = 3$/;" v class:OldTestFlag.Open +AC Lib/test/test_enum.py /^ AC = 3$/;" v class:OldTestIntFlag.Open +ACCEPTED Lib/http/__init__.py /^ ACCEPTED = (202, 'Accepted',$/;" v class:HTTPStatus +ACCEPTED Lib/test/test_httplib.py /^ ACCEPTED = (202, 'Accepted',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +ACCEPT_RETRY_DELAY Lib/asyncio/constants.py /^ACCEPT_RETRY_DELAY = 1$/;" v +ACCESS_COPY Modules/mmapmodule.c /^ ACCESS_COPY$/;" e enum:__anon489 file: +ACCESS_DEFAULT Modules/mmapmodule.c /^ ACCESS_DEFAULT,$/;" e enum:__anon489 file: +ACCESS_DENIED Lib/ssl.py /^ ACCESS_DENIED = 49$/;" v class:_TLSAlertType +ACCESS_DENIED Lib/test/test_ssl.py /^ ACCESS_DENIED = 49$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +ACCESS_READ Modules/mmapmodule.c /^ ACCESS_READ,$/;" e enum:__anon489 file: +ACCESS_WRITE Modules/mmapmodule.c /^ ACCESS_WRITE,$/;" e enum:__anon489 file: +ACCOUNTING Modules/expat/xmlparse.c /^} ACCOUNTING;$/;" t typeref:struct:accounting file: +ACD_method Lib/test/pydocfodder.py /^ def ACD_method(self):$/;" m class:A_new +ACD_method Lib/test/pydocfodder.py /^ def ACD_method(self):$/;" m class:C_new +ACD_method Lib/test/pydocfodder.py /^ def ACD_method(self):$/;" m class:D_new +ACK Lib/curses/ascii.py /^ACK = 0x06 # ^F$/;" v +ACM Lib/test/test_typing.py /^class ACM:$/;" c +ACQUIRE_LOCK Modules/_bz2module.c 98;" d file: +ACQUIRE_LOCK Modules/_lzmamodule.c 72;" d file: +ACROSSTOP Lib/tkinter/tix.py /^ACROSSTOP = 'acrosstop'$/;" v +ACTIONS Lib/optparse.py /^ ACTIONS = ("store",$/;" v class:Option +ACTIONS Lib/test/test_optparse.py /^ ACTIONS = Option.ACTIONS + ("extend",)$/;" v class:TestExtendAddActions.MyOption +ACTION_APPEND_AS_CHILDREN Lib/xml/dom/xmlbuilder.py /^ ACTION_APPEND_AS_CHILDREN = 2$/;" v class:DOMBuilder +ACTION_INSERT_AFTER Lib/xml/dom/xmlbuilder.py /^ ACTION_INSERT_AFTER = 3$/;" v class:DOMBuilder +ACTION_INSERT_BEFORE Lib/xml/dom/xmlbuilder.py /^ ACTION_INSERT_BEFORE = 4$/;" v class:DOMBuilder +ACTION_REPLACE Lib/xml/dom/xmlbuilder.py /^ ACTION_REPLACE = 1$/;" v class:DOMBuilder +ACTIVE Lib/test/test_enum.py /^ ACTIVE = "active"$/;" v class:TestSpecial.test_multiple_mixin_with_common_data_type.JobStatus +ACTIVE Lib/tkinter/constants.py /^ACTIVE='active'$/;" v +AC_method Lib/test/pydocfodder.py /^ def AC_method(self):$/;" m class:A_new +AC_method Lib/test/pydocfodder.py /^ def AC_method(self):$/;" m class:C_new +AClass Lib/test/test_opcodes.py /^ class AClass(Exception): pass$/;" c function:OpcodeTest.test_raise_class_exceptions +ADAPTIVE_BACKOFF_BITS Include/internal/pycore_code.h 400;" d +ADAPTIVE_COOLDOWN_BACKOFF Include/internal/pycore_code.h 416;" d +ADAPTIVE_COOLDOWN_VALUE Include/internal/pycore_code.h 415;" d +ADAPTIVE_COUNTER_IS_MAX Python/ceval_macros.h 292;" d +ADAPTIVE_COUNTER_IS_ZERO Python/ceval_macros.h 289;" d +ADAPTIVE_WARMUP_BACKOFF Include/internal/pycore_code.h 407;" d +ADAPTIVE_WARMUP_DELAY Lib/test/test_call.py /^ADAPTIVE_WARMUP_DELAY = 2$/;" v +ADAPTIVE_WARMUP_DELAY Lib/test/test_dis.py /^ADAPTIVE_WARMUP_DELAY = 2$/;" v +ADAPTIVE_WARMUP_DELAY Lib/test/test_super.py /^ADAPTIVE_WARMUP_DELAY = 2$/;" v +ADAPTIVE_WARMUP_VALUE Include/internal/pycore_code.h 406;" d +ADD Modules/_xxinterpchannelsmodule.c 270;" d file: +ADD Modules/_xxinterpchannelsmodule.c 289;" d file: +ADD Modules/_xxsubinterpretersmodule.c 346;" d file: +ADD Modules/_xxsubinterpretersmodule.c 357;" d file: +ADDCH Modules/_csv.c 1085;" d file: +ADDCH Modules/_csv.c 1156;" d file: +ADDITEMS Lib/pickle.py /^ADDITEMS = b'\\x90' # modify set by adding topmost stack items$/;" v +ADDITEMS Modules/_pickle.c /^ ADDITEMS = '\\x90',$/;" e enum:opcode file: +ADDOP Python/compile.c 1145;" d file: +ADDOP_BINARY Python/compile.c 1187;" d file: +ADDOP_COMPARE Python/compile.c 1184;" d file: +ADDOP_I Python/compile.c 1178;" d file: +ADDOP_INPLACE Python/compile.c 1190;" d file: +ADDOP_IN_SCOPE Python/compile.c 1148;" d file: +ADDOP_JUMP Python/compile.c 1181;" d file: +ADDOP_LOAD_CONST Python/compile.c 1150;" d file: +ADDOP_LOAD_CONST_NEW Python/compile.c 1154;" d file: +ADDOP_N Python/compile.c 1166;" d file: +ADDOP_NAME Python/compile.c 1175;" d file: +ADDOP_YIELD Python/compile.c 1199;" d file: +ADDRESS_BITS Include/internal/pycore_obmalloc.h 577;" d +ADD_AD_CONSTANT Modules/_ssl.c 5822;" d file: +ADD_AD_CONSTANT Modules/_ssl.c 5867;" d file: +ADD_DEFINE PC/winsound.c 205;" d file: +ADD_DEFINE PC/winsound.c 231;" d file: +ADD_ERRNO Objects/exceptions.c 3719;" d file: +ADD_ERRNO Objects/exceptions.c 3766;" d file: +ADD_EVENT Modules/_testcapi/watchers.c 706;" d file: +ADD_EVENT Modules/_testcapi/watchers.c 712;" d file: +ADD_EXC Modules/socketmodule.c 7390;" d file: +ADD_EXC Modules/socketmodule.c 7403;" d file: +ADD_EXCEPTION Modules/_sqlite/module.c 660;" d file: +ADD_FIELD Modules/_lzmamodule.c 460;" d file: +ADD_FIELD Modules/_lzmamodule.c 505;" d file: +ADD_FLAG Modules/_multiprocessing/multiprocessing.c 241;" d file: +ADD_INT Modules/_blake2/blake2module.c 66;" d file: +ADD_INT Modules/_localemodule.c 826;" d file: +ADD_INT Modules/_localemodule.c 872;" d file: +ADD_INT Modules/_sqlite/module.c 441;" d file: +ADD_INT Modules/_sqlite/module.c 545;" d file: +ADD_INT Modules/gcmodule.c 2035;" d file: +ADD_INT Modules/gcmodule.c 2041;" d file: +ADD_INT Modules/resource.c 367;" d file: +ADD_INT Modules/resource.c 515;" d file: +ADD_INT PC/winreg.c 2080;" d file: +ADD_INT PC/winreg.c 2181;" d file: +ADD_INTERNED Modules/_sqlite/module.c 669;" d file: +ADD_INTERNED Modules/arraymodule.c 3048;" d file: +ADD_INT_CONST Modules/socketmodule.c 7458;" d file: +ADD_INT_CONST Modules/socketmodule.c 8874;" d file: +ADD_INT_MACRO Modules/_lzmamodule.c 1528;" d file: +ADD_INT_MACRO Modules/_stat.c 502;" d file: +ADD_INT_MACRO Modules/mmapmodule.c 1602;" d file: +ADD_INT_MACRO Modules/signalmodule.c 1408;" d file: +ADD_INT_MACRO Modules/signalmodule.c 1564;" d file: +ADD_INT_MACRO Modules/socketmodule.c 7452;" d file: +ADD_INT_MACRO Modules/socketmodule.c 8873;" d file: +ADD_INT_MACRO Modules/syslogmodule.c 336;" d file: +ADD_INT_PREFIX_MACRO Modules/_lzmamodule.c 1521;" d file: +ADD_ITEM Python/errors.c 1401;" d file: +ADD_ITEM Python/errors.c 1415;" d file: +ADD_KEY PC/winreg.c 2098;" d file: +ADD_MODULE Python/import.c 1849;" d file: +ADD_MODULE Python/import.c 1885;" d file: +ADD_NEW_EXCEPTION Modules/_xxinterpchannelsmodule.c 140;" d file: +ADD_NEW_EXCEPTION Modules/_xxsubinterpretersmodule.c 52;" d file: +ADD_OPTION Modules/_ssl.c 5889;" d file: +ADD_STATS Modules/_ssl.c 4293;" d file: +ADD_STATS Modules/_ssl.c 4315;" d file: +ADD_STAT_TO_DICT Python/specialize.c 23;" d file: +ADD_STAT_TO_DICT Python/specialize.c 73;" d file: +ADD_STR_CONST Modules/socketmodule.c 7464;" d file: +ADD_STR_CONST Modules/socketmodule.c 8875;" d file: +ADD_TO_ALL Python/bltinmodule.c 3103;" d file: +ADD_TO_ALL Python/bltinmodule.c 3152;" d file: +ADD_TRACE Python/tracemalloc.c 519;" d file: +ADD_TYPE Modules/_collectionsmodule.c 2543;" d file: +ADD_TYPE Modules/_collectionsmodule.c 2570;" d file: +ADD_TYPE Modules/_io/_iomodule.c 637;" d file: +ADD_TYPE Modules/_io/_iomodule.c 713;" d file: +ADD_TYPE Modules/_sqlite/module.c 653;" d file: +ADD_TYPE Modules/cjkcodecs/multibytecodec.c 2027;" d file: +ADD_TYPE Modules/cjkcodecs/multibytecodec.c 2056;" d file: +ADD_TYPE Modules/itertoolsmodule.c 4694;" d file: +ADD_ULONG_CONSTANT Modules/_sre/sre.c 3179;" d file: +ADD_YIELD_FROM Python/compile.c 1193;" d file: +ADJUST_INDICES Objects/bytes_methods.c 496;" d file: +ADJUST_INDICES Objects/unicodeobject.c 8838;" d file: +ADJUST_POSITION Modules/_io/bufferedio.c 374;" d file: +ADJUST_PTR Modules/_testbuffer.c 45;" d file: +ADJUST_PTR Objects/memoryobject.c 227;" d file: +ADVANCE_LINENO Parser/tokenizer.c 37;" d file: +AD_method Lib/test/pydocfodder.py /^ def AD_method(self):$/;" m class:A_new +AD_method Lib/test/pydocfodder.py /^ def AD_method(self):$/;" m class:D_new +AES_KEY Lib/test/test_lib2to3/data/infinite_recursion.py /^AES_KEY = aes_key_st$/;" v +AFMT_S16_NE Lib/test/test_ossaudiodev.py /^ AFMT_S16_NE = ossaudiodev.AFMT_S16_BE$/;" v +AFMT_S16_NE Lib/test/test_ossaudiodev.py /^ AFMT_S16_NE = ossaudiodev.AFMT_S16_LE$/;" v +AFTER_ESCAPED_CRNL Modules/_csv.c /^ EAT_CRNL,AFTER_ESCAPED_CRNL$/;" e enum:__anon621 file: +AF_ALG Modules/socketmodule.h 177;" d +AF_BLUETOOTH Modules/socketmodule.c 519;" d file: +AF_CAN Modules/socketmodule.h 144;" d +AF_HYPERV Modules/socketmodule.h 85;" d +AF_INET Lib/test/mock_socket.py /^AF_INET = socket_module.AF_INET$/;" v +AF_INET6 Lib/test/mock_socket.py /^AF_INET6 = socket_module.AF_INET6$/;" v +AF_NETLINK Modules/socketmodule.h 102;" d +AF_QIPCRTR Modules/socketmodule.h 111;" d +AF_UNIX Modules/socketmodule.h 93;" d +AF_VSOCK Modules/socketmodule.h 170;" d +AGEN_CLOSED Lib/inspect.py /^AGEN_CLOSED = 'AGEN_CLOSED'$/;" v +AGEN_CREATED Lib/inspect.py /^AGEN_CREATED = 'AGEN_CREATED'$/;" v +AGEN_RUNNING Lib/inspect.py /^AGEN_RUNNING = 'AGEN_RUNNING'$/;" v +AGEN_SUSPENDED Lib/inspect.py /^AGEN_SUSPENDED = 'AGEN_SUSPENDED'$/;" v +AI Lib/test/test_collections.py /^ class AI:$/;" c function:TestOneTrickPonyABCs.test_AsyncIterable +AI Lib/test/test_collections.py /^ class AI:$/;" c function:TestOneTrickPonyABCs.test_AsyncIterator +AI Lib/test/test_coroutines.py /^ class AI:$/;" c function:CoroutineTest.test_for_7 +AI Lib/test/test_coroutines.py /^ class AI:$/;" c function:CoroutineTest.test_for_8 +AIFCLowLevelTest Lib/test/test_aifc.py /^class AIFCLowLevelTest(unittest.TestCase):$/;" c +AIX Lib/test/test_socket.py /^AIX = platform.system() == "AIX"$/;" v +AIX_ABI Lib/ctypes/_aix.py /^AIX_ABI = sizeof(c_void_p) * 8$/;" v +AI_ADDRCONFIG Modules/addrinfo.h 83;" d +AI_ADDRCONFIG Modules/addrinfo.h 96;" d +AI_ALL Modules/addrinfo.h 81;" d +AI_ALL Modules/addrinfo.h 94;" d +AI_CANONNAME Modules/addrinfo.h 78;" d +AI_CANONNAME Modules/addrinfo.h 89;" d +AI_DEFAULT Modules/addrinfo.h 85;" d +AI_DEFAULT Modules/addrinfo.h 99;" d +AI_MASK Modules/addrinfo.h 80;" d +AI_MASK Modules/addrinfo.h 92;" d +AI_NUMERICHOST Modules/addrinfo.h 79;" d +AI_NUMERICHOST Modules/addrinfo.h 90;" d +AI_PASSIVE Modules/addrinfo.h 77;" d +AI_PASSIVE Modules/addrinfo.h 88;" d +AI_V4MAPPED Modules/addrinfo.h 84;" d +AI_V4MAPPED Modules/addrinfo.h 97;" d +AI_V4MAPPED_CFG Modules/addrinfo.h 82;" d +AI_V4MAPPED_CFG Modules/addrinfo.h 95;" d +AIter Lib/test/test_coroutines.py /^ class AIter(StopIteration):$/;" c function:CoroutineTest.test_for_stop_iteration +AIter Lib/test/test_coroutines.py /^ class AIter(tuple):$/;" c function:CoroutineTest.test_for_tuple +AIter Lib/test/test_grammar.py /^ class AIter:$/;" c function:GrammarTests.test_async_for +ALERT Lib/ssl.py /^ ALERT = 21$/;" v class:_TLSContentType +ALERT Lib/test/test_ssl.py /^ ALERT = 21$/;" v class:TestEnumerations.test_tlscontenttype.Checked_TLSContentType +ALG_OP_SIGN Modules/socketmodule.h 196;" d +ALG_OP_VERIFY Modules/socketmodule.h 199;" d +ALG_SET_AEAD_ASSOCLEN Modules/socketmodule.h 185;" d +ALG_SET_AEAD_AUTHSIZE Modules/socketmodule.h 188;" d +ALG_SET_PUBKEY Modules/socketmodule.h 192;" d +ALIASES Lib/email/charset.py /^ALIASES = {$/;" v +ALIGNMENT Include/internal/pycore_obmalloc.h 132;" d +ALIGNMENT Include/internal/pycore_obmalloc.h 135;" d +ALIGNMENT Python/pyarena.c 15;" d file: +ALIGNMENT_SHIFT Include/internal/pycore_obmalloc.h 133;" d +ALIGNMENT_SHIFT Include/internal/pycore_obmalloc.h 136;" d +ALIGNOF_LONG PC/pyconfig.h 368;" d +ALIGNOF_MAX_ALIGN_T Include/pyport.h 770;" d +ALIGNOF_MAX_ALIGN_T Include/pyport.h 771;" d +ALIGNOF_MAX_ALIGN_T PC/pyconfig.h 333;" d +ALIGNOF_MAX_ALIGN_T PC/pyconfig.h 355;" d +ALIGNOF_SIZE_T PC/pyconfig.h 332;" d +ALIGNOF_SIZE_T PC/pyconfig.h 348;" d +ALL Lib/test/test_enum.py /^ ALL = 2048 + 128 + 64 + 12$/;" v class:TestStdLib.test_test_simple_enum.CheckedMissing +ALL Lib/test/test_enum.py /^ ALL = 2048 + 128 + 64 + 12$/;" v class:TestStdLib.test_test_simple_enum.Missing +ALL Lib/test/test_enum.py /^ def ALL(cls):$/;" m class:OldTestFlag.test_multiple_mixin.AllMixin +ALL Lib/test/test_enum.py /^ def ALL(cls):$/;" m class:OldTestIntFlag.test_multiple_mixin.AllMixin +ALL Lib/tkinter/constants.py /^ALL='all' # e.g. Canvas.delete(ALL)$/;" v +ALLOCATORS_MUTEX Objects/obmalloc.c 206;" d file: +ALLOWED_PREFIXES Tools/build/smelly.py /^ALLOWED_PREFIXES = ('Py', '_Py')$/;" v +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('manager',)$/;" v class:_TestContainers +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('manager',)$/;" v class:_TestMyManager +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('manager',)$/;" v class:_TestRemoteManager +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes', 'manager', 'threads')$/;" v class:BaseTestCase +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes', 'threads')$/;" v class:_TestConnection +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes', 'threads')$/;" v class:_TestListenerClient +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes', 'threads')$/;" v class:_TestPoll +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes', 'threads')$/;" v class:_TestProcess +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes', )$/;" v class:_TestPoolWorkerErrors +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes', )$/;" v class:_TestPoolWorkerLifetime +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestArray +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestFinalize +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestHeap +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestListener +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestLogging +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestPicklingConnections +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestPollEintr +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestSharedCTypes +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestSharedMemory +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestSubclassingProcess +ALLOWED_TYPES Lib/test/_test_multiprocessing.py /^ ALLOWED_TYPES = ('processes',)$/;" v class:_TestValue +ALLSANFILE Lib/test/test_ssl.py /^ALLSANFILE = data_file("allsans.pem")$/;" v +ALLSPHINXOPTS Doc/Makefile /^ALLSPHINXOPTS = -b $(BUILDER) -d build\/doctrees $(PAPEROPT_$(PAPER)) -j $(JOBS) \\$/;" m +ALL_CJKENCODINGS Lib/test/test_multibytecodec.py /^ALL_CJKENCODINGS = [$/;" v +ALL_COMPLETED Lib/asyncio/tasks.py /^ALL_COMPLETED = concurrent.futures.ALL_COMPLETED$/;" v +ALL_COMPLETED Lib/concurrent/futures/_base.py /^ALL_COMPLETED = 'ALL_COMPLETED'$/;" v +ALL_FORMATS Lib/test/test_plistlib.py /^ALL_FORMATS=(plistlib.FMT_XML, plistlib.FMT_BINARY)$/;" v +ALL_RESOURCES Lib/test/libregrtest/cmdline.py /^ALL_RESOURCES = ('audio', 'curses', 'largefile', 'network',$/;" v +ALL_TOKENS Tools/peg_generator/pegen/testutil.py /^ALL_TOKENS = token.tok_name$/;" v +ALPHANUM_KEYS Lib/idlelib/config_key.py /^ALPHANUM_KEYS = tuple(string.ascii_lowercase + string.digits)$/;" v +ALPHA_MASK Objects/unicodectype.c 13;" d file: +ALPHA_MASK Tools/unicode/makeunicodedata.py /^ALPHA_MASK = 0x01$/;" v +ALREADY_REPORTED Lib/http/__init__.py /^ ALREADY_REPORTED = 208, 'Already Reported'$/;" v class:HTTPStatus +ALREADY_REPORTED Lib/test/test_httplib.py /^ ALREADY_REPORTED = 208, 'Already Reported'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +ALTSEP Include/osdefs.h 12;" d +ALTTABSIZE Parser/tokenizer.c 15;" d file: +ALT_IMPORT_MAPPING Lib/test/test_pickle.py /^ALT_IMPORT_MAPPING = {$/;" v +ALT_NAME_MAPPING Lib/test/test_pickle.py /^ALT_NAME_MAPPING = {$/;" v +ALWAYS_EQ Lib/test/support/__init__.py /^ALWAYS_EQ = _ALWAYS_EQ()$/;" v +ALWAYS_INLINE Modules/_decimal/libmpdec/mpdecimal.c 66;" d file: +ALWAYS_INLINE Modules/_decimal/libmpdec/mpdecimal.c 68;" d file: +ALWAYS_INLINE Modules/_decimal/libmpdec/mpdecimal.c 73;" d file: +ALWAYS_INLINE Modules/_decimal/libmpdec/mpdecimal.c 75;" d file: +ALWAYS_TYPED_ACTIONS Lib/optparse.py /^ ALWAYS_TYPED_ACTIONS = ("store",$/;" v class:Option +AMD64 Lib/msilib/__init__.py /^AMD64 = "AMD64" in sys.version$/;" v +AMPER Include/internal/pycore_token.h 35;" d +AMPER Lib/lib2to3/pgen2/token.py /^AMPER = 19$/;" v +AMPER Lib/token.py /^AMPER = 19$/;" v +AMPEREQUAL Include/internal/pycore_token.h 57;" d +AMPEREQUAL Lib/lib2to3/pgen2/token.py /^AMPEREQUAL = 42$/;" v +AMPEREQUAL Lib/token.py /^AMPEREQUAL = 41$/;" v +AMSLOT Objects/typeobject.c 9371;" d file: +AMSLOT Objects/typeobject.c 9392;" d file: +AMeta Lib/test/test_descr.py /^ class AMeta(type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +AMeta Lib/test/test_types.py /^ class AMeta(type):$/;" c function:ClassCreationTests.test_metaclass_derivation +ANCHOR Lib/tkinter/constants.py /^ANCHOR='anchor'$/;" v +AND Lib/ast.py /^ AND = auto() # 'and'$/;" v class:_Precedence +AND Lib/test/test_ast.py /^ AND = enum.auto() # 'and'$/;" v class:AST_Tests.test_precedence_enum._Precedence +AND Tools/cases_generator/lexer.py /^AND = r'&'$/;" v +ANNOTATION_NOT_ALLOWED Python/symtable.c 56;" d file: +ANON Lib/test/test_ctypes/test_anon.py /^ class ANON(Union):$/;" c function:AnonTest.test_anon +ANON_IDENTIFIER Tools/c-analyzer/c_parser/parser/_regexes.py /^ANON_IDENTIFIER = rf'(?: (?! {_KEYWORD} ) \\b {IDENTIFIER} (?: - \\d+ )? \\b )'$/;" v +ANON_S Lib/test/test_ctypes/test_anon.py /^ class ANON_S(Structure):$/;" c function:AnonTest.test_nested +ANON_U Lib/test/test_ctypes/test_anon.py /^ class ANON_U(Union):$/;" c function:AnonTest.test_nested +ANSI Modules/_decimal/libmpdec/mpdecimal.h 105;" d +ANSI Modules/_decimal/libmpdec/mpdecimal.h 108;" d +ANSI Modules/_decimal/libmpdec/mpdecimal.h 111;" d +ANSI Modules/_decimal/libmpdec/mpdecimal.h 117;" d +ANS_AUTO Objects/stringlib/unicode_format.h /^ ANS_AUTO,$/;" e enum:__anon704 +ANS_INIT Objects/stringlib/unicode_format.h /^ ANS_INIT,$/;" e enum:__anon704 +ANS_MANUAL Objects/stringlib/unicode_format.h /^ ANS_MANUAL$/;" e enum:__anon704 +ANY Lib/unittest/mock.py /^ANY = _ANY()$/;" v +ANY_CONTIGUOUS Lib/inspect.py /^ ANY_CONTIGUOUS = 0x80 | STRIDES$/;" v class:BufferFlags +ANotMeta Lib/test/test_descr.py /^ class ANotMeta:$/;" c function:ClassPropertiesAndMethods.test_metaclass +ANotMeta Lib/test/test_types.py /^ class ANotMeta:$/;" c function:ClassCreationTests.test_metaclass_override_callable +AO Lib/telnetlib.py /^AO = bytes([245]) # Abort output$/;" v +APER Doc/Makefile /^ make latex PAPER=a4$/;" m +APER Doc/Makefile /^ make latex PAPER=letter$/;" m +APIMismatchTest Lib/test/test_io.py /^class APIMismatchTest(unittest.TestCase):$/;" c +APITest Lib/test/test_importlib/import_/test_api.py /^class APITest:$/;" c +APITests Lib/test/test_importlib/test_metadata_api.py /^):$/;" c +API_COMPAT Lib/test/test_embed.py /^API_COMPAT = 1$/;" v +API_ISOLATED Lib/test/test_embed.py /^API_ISOLATED = 3$/;" v +API_PYTHON Lib/test/test_embed.py /^API_PYTHON = 2$/;" v +APPEND Lib/pickle.py /^APPEND = b'a' # append stack top to list below it$/;" v +APPEND Modules/_pickle.c /^ APPEND = 'a',$/;" e enum:opcode file: +APPEND Python/ast_unparse.c 67;" d file: +APPENDS Lib/pickle.py /^APPENDS = b'e' # extend list on stack by topmost stack slice$/;" v +APPENDS Modules/_pickle.c /^ APPENDS = 'e',$/;" e enum:opcode file: +APPEND_EXPR Python/ast_unparse.c 61;" d file: +APPEND_STR Python/ast_unparse.c 44;" d file: +APPEND_STR_FINISH Python/ast_unparse.c 40;" d file: +APPEND_STR_IF Python/ast_unparse.c 50;" d file: +APPEND_STR_IF_NOT_FIRST Python/ast_unparse.c 56;" d file: +APPLICATION_DATA Lib/ssl.py /^ APPLICATION_DATA = 23$/;" v class:_TLSContentType +APPLICATION_DATA Lib/test/test_ssl.py /^ APPLICATION_DATA = 23$/;" v class:TestEnumerations.test_tlscontenttype.Checked_TLSContentType +APPLICATION_ERROR Lib/xmlrpc/client.py /^APPLICATION_ERROR = -32500$/;" v +APPLICATION_GONE Lib/idlelib/multicall.py /^APPLICATION_GONE = "application has been destroyed"$/;" v +APPXMANIFEST_NS PC/layout/support/appxmanifest.py /^APPXMANIFEST_NS = {$/;" v +APPX_DATA PC/layout/support/appxmanifest.py /^APPX_DATA = dict($/;" v +APPX_PLATFORM_DATA PC/layout/support/appxmanifest.py /^APPX_PLATFORM_DATA = dict($/;" v +APPX_SEARCH PC/launcher2.c /^struct AppxSearchInfo APPX_SEARCH[] = {$/;" v typeref:struct:AppxSearchInfo +APRIL Lib/calendar.py /^ APRIL = 4$/;" v class:Month +APV Lib/test/test_dynamicclassattribute.py /^ class APV(ClassWithPropertyAbstractVirtual):$/;" c function:PropertyTests.test_abstract_virtual +APoint Lib/test/test_typing.py /^ class APoint:$/;" c function:ProtocolTests.test_protocols_isinstance_py36 +ARC Lib/tkinter/constants.py /^ARC='arc'$/;" v +ARCH PCbuild/prepare_libffi.bat /^ set ARCH=amd64$/;" v +ARCH PCbuild/prepare_libffi.bat /^ set ARCH=arm32$/;" v +ARCH PCbuild/prepare_libffi.bat /^ set ARCH=arm64$/;" v +ARCH PCbuild/prepare_libffi.bat /^ set ARCH=win32$/;" v +ARCHLIST Mac/BuildScript/build-installer.py /^ARCHLIST = universal_opts_map[UNIVERSALARCHS]$/;" v +AREGTYPE Lib/tarfile.py /^AREGTYPE = b"\\0" # regular file$/;" v +ARENAS_USE_MMAP Objects/obmalloc.c 125;" d file: +ARENA_BITS Include/internal/pycore_obmalloc.h 211;" d +ARENA_BITS Include/internal/pycore_obmalloc.h 213;" d +ARENA_SIZE Include/internal/pycore_obmalloc.h 215;" d +ARENA_SIZE_MASK Include/internal/pycore_obmalloc.h 216;" d +ARGS Lib/test/test_descr.py /^ ARGS = ("hello", "world", 1)$/;" v class:PicklingTests.test_reduce_copying.C4 +ARGS Lib/test/test_descr.py /^ ARGS = (1, 2)$/;" v class:PicklingTests.test_reduce_copying.C1 +ARGS Lib/test/test_descr.py /^ ARGS = (1, 2)$/;" v class:PicklingTests.test_reduce_copying.C2 +ARGS Lib/test/test_descr.py /^ ARGS = (1, 2)$/;" v class:PicklingTests.test_reduce_copying.C3 +ARGS Lib/test/test_descr.py /^ ARGS = (1, 2)$/;" v class:PicklingTests.test_reduce_copying.C5 +ARGSZ Modules/_tkinter.c 392;" d file: +ARITH Lib/ast.py /^ ARITH = auto() # '+', '-'$/;" v class:_Precedence +ARITH Lib/test/test_ast.py /^ ARITH = enum.auto() # '+', '-'$/;" v class:AST_Tests.test_precedence_enum._Precedence +ARITH Lib/test/test_decimal.py /^ARITH = None$/;" v +ARRAY Lib/ctypes/__init__.py /^def ARRAY(typ, len):$/;" f +ARRAY Lib/test/test_buffer.py /^ARRAY = NATIVE.copy()$/;" v +ARRAY_ARRAYITERATOR___REDUCE___METHODDEF Modules/clinic/arraymodule.c.h 659;" d +ARRAY_ARRAYITERATOR___SETSTATE___METHODDEF Modules/clinic/arraymodule.c.h 681;" d +ARRAY_ARRAY_APPEND_METHODDEF Modules/clinic/arraymodule.c.h 258;" d +ARRAY_ARRAY_BUFFER_INFO_METHODDEF Modules/clinic/arraymodule.c.h 240;" d +ARRAY_ARRAY_BYTESWAP_METHODDEF Modules/clinic/arraymodule.c.h 270;" d +ARRAY_ARRAY_COUNT_METHODDEF Modules/clinic/arraymodule.c.h 44;" d +ARRAY_ARRAY_EXTEND_METHODDEF Modules/clinic/arraymodule.c.h 153;" d +ARRAY_ARRAY_FROMBYTES_METHODDEF Modules/clinic/arraymodule.c.h 433;" d +ARRAY_ARRAY_FROMFILE_METHODDEF Modules/clinic/arraymodule.c.h 306;" d +ARRAY_ARRAY_FROMLIST_METHODDEF Modules/clinic/arraymodule.c.h 406;" d +ARRAY_ARRAY_FROMUNICODE_METHODDEF Modules/clinic/arraymodule.c.h 491;" d +ARRAY_ARRAY_INDEX_METHODDEF Modules/clinic/arraymodule.c.h 55;" d +ARRAY_ARRAY_INSERT_METHODDEF Modules/clinic/arraymodule.c.h 196;" d +ARRAY_ARRAY_POP_METHODDEF Modules/clinic/arraymodule.c.h 110;" d +ARRAY_ARRAY_REMOVE_METHODDEF Modules/clinic/arraymodule.c.h 99;" d +ARRAY_ARRAY_REVERSE_METHODDEF Modules/clinic/arraymodule.c.h 288;" d +ARRAY_ARRAY_TOBYTES_METHODDEF Modules/clinic/arraymodule.c.h 469;" d +ARRAY_ARRAY_TOFILE_METHODDEF Modules/clinic/arraymodule.c.h 363;" d +ARRAY_ARRAY_TOLIST_METHODDEF Modules/clinic/arraymodule.c.h 415;" d +ARRAY_ARRAY_TOUNICODE_METHODDEF Modules/clinic/arraymodule.c.h 527;" d +ARRAY_ARRAY___COPY___METHODDEF Modules/clinic/arraymodule.c.h 17;" d +ARRAY_ARRAY___DEEPCOPY___METHODDEF Modules/clinic/arraymodule.c.h 35;" d +ARRAY_ARRAY___REDUCE_EX___METHODDEF Modules/clinic/arraymodule.c.h 615;" d +ARRAY_ARRAY___SIZEOF___METHODDEF Modules/clinic/arraymodule.c.h 545;" d +ARRAY__ARRAY_RECONSTRUCTOR_METHODDEF Modules/clinic/arraymodule.c.h 564;" d +ARROW Tools/cases_generator/lexer.py /^ARROW = r'->'$/;" v +ARTIFACTS PCbuild/prepare_libffi.bat /^ set ARTIFACTS=%LIBFFI_SOURCE%\\aarch64-w64-cygwin$/;" v +ARTIFACTS PCbuild/prepare_libffi.bat /^ set ARTIFACTS=%LIBFFI_SOURCE%\\arm-w32-cygwin$/;" v +ARTIFACTS PCbuild/prepare_libffi.bat /^ set ARTIFACTS=%LIBFFI_SOURCE%\\i686-pc-cygwin$/;" v +ARTIFACTS PCbuild/prepare_libffi.bat /^ set ARTIFACTS=%LIBFFI_SOURCE%\\x86_64-w64-cygwin$/;" v +AResult Lib/test/test_unittest/test_runner.py /^ class AResult(unittest.TestResult):$/;" c function:Test_TextTestRunner.test_multiple_inheritance +ASCII Lib/tkinter/tix.py /^ASCII = 'ascii'$/;" v +ASCII Tools/build/umarshal.py /^ ASCII = ord('a')$/;" v class:Type +ASCIILETTERS Lib/re/_parser.py /^ASCIILETTERS = frozenset("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")$/;" v +ASCIITest Lib/test/test_codecs.py /^class ASCIITest(unittest.TestCase):$/;" c +ASCII_0 Modules/expat/ascii.h 90;" d +ASCII_1 Modules/expat/ascii.h 91;" d +ASCII_2 Modules/expat/ascii.h 92;" d +ASCII_3 Modules/expat/ascii.h 93;" d +ASCII_4 Modules/expat/ascii.h 94;" d +ASCII_5 Modules/expat/ascii.h 95;" d +ASCII_6 Modules/expat/ascii.h 96;" d +ASCII_7 Modules/expat/ascii.h 97;" d +ASCII_8 Modules/expat/ascii.h 98;" d +ASCII_9 Modules/expat/ascii.h 99;" d +ASCII_A Modules/expat/ascii.h 36;" d +ASCII_AMP Modules/expat/ascii.h 105;" d +ASCII_APOS Modules/expat/ascii.h 106;" d +ASCII_B Modules/expat/ascii.h 37;" d +ASCII_C Modules/expat/ascii.h 38;" d +ASCII_CHAR_MASK Objects/bytes_methods.c 106;" d file: +ASCII_CHAR_MASK Objects/bytes_methods.c 108;" d file: +ASCII_CHAR_MASK Objects/bytes_methods.c 144;" d file: +ASCII_CHAR_MASK Objects/stringlib/codecs.h 12;" d +ASCII_CHAR_MASK Objects/stringlib/codecs.h 14;" d +ASCII_CHAR_MASK Objects/stringlib/codecs.h 254;" d +ASCII_CHAR_MASK Objects/stringlib/find_max_char.h 44;" d +ASCII_CHAR_MASK Objects/unicodeobject.c 4563;" d file: +ASCII_CHAR_MASK Objects/unicodeobject.c 4565;" d file: +ASCII_COLON Modules/expat/ascii.h 109;" d +ASCII_COMMA Modules/expat/ascii.h 123;" d +ASCII_CTRL Lib/tomllib/_parser.py /^ASCII_CTRL = frozenset(chr(i) for i in range(32)) | frozenset(chr(127))$/;" v +ASCII_D Modules/expat/ascii.h 39;" d +ASCII_E Modules/expat/ascii.h 40;" d +ASCII_EQUALS Modules/expat/ascii.h 112;" d +ASCII_EXCL Modules/expat/ascii.h 103;" d +ASCII_F Modules/expat/ascii.h 41;" d +ASCII_FF Modules/expat/ascii.h 119;" d +ASCII_G Modules/expat/ascii.h 42;" d +ASCII_GT Modules/expat/ascii.h 113;" d +ASCII_H Modules/expat/ascii.h 43;" d +ASCII_HASH Modules/expat/ascii.h 121;" d +ASCII_I Modules/expat/ascii.h 44;" d +ASCII_INTERNED Tools/build/umarshal.py /^ ASCII_INTERNED = ord('A')$/;" v class:Type +ASCII_J Modules/expat/ascii.h 45;" d +ASCII_K Modules/expat/ascii.h 46;" d +ASCII_L Modules/expat/ascii.h 47;" d +ASCII_LPAREN Modules/expat/ascii.h 117;" d +ASCII_LSQB Modules/expat/ascii.h 114;" d +ASCII_LT Modules/expat/ascii.h 111;" d +ASCII_M Modules/expat/ascii.h 48;" d +ASCII_MINUS Modules/expat/ascii.h 107;" d +ASCII_N Modules/expat/ascii.h 49;" d +ASCII_O Modules/expat/ascii.h 50;" d +ASCII_P Modules/expat/ascii.h 51;" d +ASCII_PERIOD Modules/expat/ascii.h 108;" d +ASCII_PIPE Modules/expat/ascii.h 122;" d +ASCII_Q Modules/expat/ascii.h 52;" d +ASCII_QUOT Modules/expat/ascii.h 104;" d +ASCII_R Modules/expat/ascii.h 53;" d +ASCII_RPAREN Modules/expat/ascii.h 118;" d +ASCII_RSQB Modules/expat/ascii.h 115;" d +ASCII_S Modules/expat/ascii.h 54;" d +ASCII_SEMI Modules/expat/ascii.h 110;" d +ASCII_SLASH Modules/expat/ascii.h 120;" d +ASCII_SPACE Modules/expat/ascii.h 102;" d +ASCII_T Modules/expat/ascii.h 55;" d +ASCII_TAB Modules/expat/ascii.h 101;" d +ASCII_U Modules/expat/ascii.h 56;" d +ASCII_UNDERSCORE Modules/expat/ascii.h 116;" d +ASCII_V Modules/expat/ascii.h 57;" d +ASCII_W Modules/expat/ascii.h 58;" d +ASCII_X Modules/expat/ascii.h 59;" d +ASCII_Y Modules/expat/ascii.h 60;" d +ASCII_Z Modules/expat/ascii.h 61;" d +ASCII_a Modules/expat/ascii.h 63;" d +ASCII_b Modules/expat/ascii.h 64;" d +ASCII_c Modules/expat/ascii.h 65;" d +ASCII_d Modules/expat/ascii.h 66;" d +ASCII_e Modules/expat/ascii.h 67;" d +ASCII_f Modules/expat/ascii.h 68;" d +ASCII_g Modules/expat/ascii.h 69;" d +ASCII_h Modules/expat/ascii.h 70;" d +ASCII_i Modules/expat/ascii.h 71;" d +ASCII_j Modules/expat/ascii.h 72;" d +ASCII_k Modules/expat/ascii.h 73;" d +ASCII_l Modules/expat/ascii.h 74;" d +ASCII_m Modules/expat/ascii.h 75;" d +ASCII_n Modules/expat/ascii.h 76;" d +ASCII_o Modules/expat/ascii.h 77;" d +ASCII_p Modules/expat/ascii.h 78;" d +ASCII_q Modules/expat/ascii.h 79;" d +ASCII_r Modules/expat/ascii.h 80;" d +ASCII_s Modules/expat/ascii.h 81;" d +ASCII_t Modules/expat/ascii.h 82;" d +ASCII_u Modules/expat/ascii.h 83;" d +ASCII_v Modules/expat/ascii.h 84;" d +ASCII_w Modules/expat/ascii.h 85;" d +ASCII_x Modules/expat/ascii.h 86;" d +ASCII_y Modules/expat/ascii.h 87;" d +ASCII_z Modules/expat/ascii.h 88;" d +ASDLLexer Doc/tools/extensions/asdl_highlight.py /^class ASDLLexer(RegexLexer):$/;" c +ASDLParser Parser/asdl.py /^class ASDLParser:$/;" c +ASDLSyntaxError Parser/asdl.py /^class ASDLSyntaxError(Exception):$/;" c +ASM Modules/_decimal/libmpdec/mpdecimal.h 114;" d +ASN1_BIT_STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_BIT_STRING = asn1_string_st$/;" v +ASN1_BMPSTRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_BMPSTRING = asn1_string_st$/;" v +ASN1_BOOLEAN Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_BOOLEAN = c_int$/;" v +ASN1_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_CTX = asn1_ctx_st$/;" v +ASN1_ENCODING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_ENCODING = ASN1_ENCODING_st$/;" v +ASN1_ENCODING_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class ASN1_ENCODING_st(Structure):$/;" c +ASN1_ENUMERATED Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_ENUMERATED = asn1_string_st$/;" v +ASN1_GENERALIZEDTIME Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_GENERALIZEDTIME = asn1_string_st$/;" v +ASN1_GENERALSTRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_GENERALSTRING = asn1_string_st$/;" v +ASN1_HEADER Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_HEADER = asn1_header_st$/;" v +ASN1_IA5STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_IA5STRING = asn1_string_st$/;" v +ASN1_INTEGER Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_INTEGER = asn1_string_st$/;" v +ASN1_ITEM Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_ITEM = ASN1_ITEM_st$/;" v +ASN1_ITEM_EXP Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_ITEM_EXP = ASN1_ITEM$/;" v +ASN1_ITEM_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class ASN1_ITEM_st(Structure):$/;" c +ASN1_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_METHOD = asn1_method_st$/;" v +ASN1_NULL Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_NULL = c_int$/;" v +ASN1_OBJECT Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_OBJECT = asn1_object_st$/;" v +ASN1_OCTET_STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_OCTET_STRING = asn1_string_st$/;" v +ASN1_PRINTABLESTRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_PRINTABLESTRING = asn1_string_st$/;" v +ASN1_STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_STRING = asn1_string_st$/;" v +ASN1_STRING_TABLE Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_STRING_TABLE = asn1_string_table_st$/;" v +ASN1_T61STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_T61STRING = asn1_string_st$/;" v +ASN1_TEMPLATE Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_TEMPLATE = ASN1_TEMPLATE_st$/;" v +ASN1_TEMPLATE_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class ASN1_TEMPLATE_st(Structure):$/;" c +ASN1_TIME Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_TIME = asn1_string_st$/;" v +ASN1_TLC Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_TLC = ASN1_TLC_st$/;" v +ASN1_TLC_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class ASN1_TLC_st(Structure):$/;" c +ASN1_TYPE Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_TYPE = asn1_type_st$/;" v +ASN1_UNIVERSALSTRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_UNIVERSALSTRING = asn1_string_st$/;" v +ASN1_UTCTIME Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_UTCTIME = asn1_string_st$/;" v +ASN1_UTF8STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_UTF8STRING = asn1_string_st$/;" v +ASN1_VALUE Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_VALUE = ASN1_VALUE_st$/;" v +ASN1_VALUE_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class ASN1_VALUE_st(Structure):$/;" c +ASN1_VISIBLESTRING Lib/test/test_lib2to3/data/infinite_recursion.py /^ASN1_VISIBLESTRING = asn1_string_st$/;" v +ASPECIALS Lib/email/_header_value_parser.py /^ASPECIALS = TSPECIALS | set("*'%")$/;" v +ASSEMBLER PCbuild/prepare_libffi.bat /^ set ASSEMBLER=$/;" v +ASSEMBLER PCbuild/prepare_libffi.bat /^ set ASSEMBLER=-m64$/;" v +ASSEMBLER PCbuild/prepare_libffi.bat /^ set ASSEMBLER=-marm$/;" v +ASSEMBLER PCbuild/prepare_libffi.bat /^ set ASSEMBLER=-marm64$/;" v +ASSEMBLER PCbuild/prepare_libffi.bat /^set ASSEMBLER=$/;" v +ASSERT_CONSISTENT Objects/dictobject.c 480;" d file: +ASSERT_CONSISTENT Objects/dictobject.c 482;" d file: +ASSERT_VALID_BOUNDS Objects/codeobject.c 877;" d file: +ASSIGN_DOUBLE Modules/mathmodule.c 216;" d file: +ASSIGN_PTR Modules/_decimal/_decimal.c 5769;" d file: +AST Parser/asdl.py /^class AST:$/;" c +ASTGrammarPrinter Tools/peg_generator/pegen/grammar_visualizer.py /^class ASTGrammarPrinter:$/;" c +ASTHelpers_Test Lib/test/test_ast.py /^class ASTHelpers_Test(unittest.TestCase):$/;" c +ASTMainTests Lib/test/test_ast.py /^class ASTMainTests(unittest.TestCase):$/;" c +ASTModuleVisitor Parser/asdl_c.py /^class ASTModuleVisitor(PickleVisitor):$/;" c +ASTTestCase Lib/test/test_unparse.py /^class ASTTestCase(ASTTestMixin, unittest.TestCase):$/;" c +ASTTestMixin Lib/test/support/ast_helper.py /^class ASTTestMixin:$/;" c +ASTValidatorTests Lib/test/test_ast.py /^class ASTValidatorTests(unittest.TestCase):$/;" c +AST_Tests Lib/test/test_ast.py /^class AST_Tests(unittest.TestCase):$/;" c +AST_object Python/Python-ast.c /^} AST_object;$/;" t typeref:struct:__anon690 file: +AST_type Include/internal/pycore_ast_state.h /^ PyObject *AST_type;$/;" m struct:ast_state +AST_type_slots Python/Python-ast.c /^static PyType_Slot AST_type_slots[] = {$/;" v file: +AST_type_spec Python/Python-ast.c /^static PyType_Spec AST_type_spec = {$/;" v file: +ASYNC Include/internal/pycore_token.h 73;" d +ASYNC Lib/lib2to3/pgen2/token.py /^ASYNC = 57$/;" v +ASYNC Lib/token.py /^ASYNC = 57$/;" v +ASYNC_COMPREHENSION_GENERATOR Python/compile.c /^ EXCEPTION_GROUP_HANDLER, ASYNC_COMPREHENSION_GENERATOR };$/;" e enum:fblocktype file: +ASYNC_GEN_IGNORED_EXIT_MSG Objects/genobject.c /^static const char *ASYNC_GEN_IGNORED_EXIT_MSG =$/;" v file: +ASYNC_WITH Python/compile.c /^ WITH, ASYNC_WITH, HANDLER_CLEANUP, POP_VALUE, EXCEPTION_HANDLER,$/;" e enum:fblocktype file: +AS_GC Modules/gcmodule.c 72;" d file: +AS_NORMAL_ENCODING Modules/expat/xmltok.c 206;" d file: +AS_UINT Include/internal/pycore_obmalloc.h 602;" d +AS_UNKNOWN_ENCODING Modules/expat/xmltok.c 1322;" d file: +AT Include/internal/pycore_token.h 65;" d +AT Lib/lib2to3/pgen2/token.py /^AT = 50$/;" v +AT Lib/token.py /^AT = 49$/;" v +ATCODES Lib/re/_constants.py /^ATCODES = _makecodes($/;" v +ATEQUAL Include/internal/pycore_token.h 66;" d +ATEQUAL Lib/lib2to3/pgen2/token.py /^ATEQUAL = 51$/;" v +ATEQUAL Lib/token.py /^ATEQUAL = 50$/;" v +ATOM Lib/ast.py /^ ATOM = auto()$/;" v class:_Precedence +ATOM Lib/ctypes/wintypes.py /^ATOM = WORD$/;" v +ATOM Lib/test/test_ast.py /^ ATOM = enum.auto()$/;" v class:AST_Tests.test_precedence_enum._Precedence +ATOM_ENDS Lib/email/_header_value_parser.py /^ATOM_ENDS = SPECIALS | WSP$/;" v +ATTRIBUTE Modules/expat/xmltok.h /^} ATTRIBUTE;$/;" t typeref:struct:__anon618 +ATTRIBUTE_ENDS Lib/email/_header_value_parser.py /^ATTRIBUTE_ENDS = ASPECIALS | WSP$/;" v +ATTRIBUTE_ID Modules/expat/xmlparse.c /^} ATTRIBUTE_ID;$/;" t typeref:struct:attribute_id file: +ATTRIBUTE_NODE Lib/xml/dom/__init__.py /^ ATTRIBUTE_NODE = 2$/;" v class:Node +ATTRS Lib/optparse.py /^ ATTRS = ['action',$/;" v class:Option +AT_LOCALE Lib/re/_constants.py /^AT_LOCALE = {$/;" v +AT_MULTILINE Lib/re/_constants.py /^AT_MULTILINE = {$/;" v +AT_UNICODE Lib/re/_constants.py /^AT_UNICODE = {$/;" v +ATextResult Lib/test/test_unittest/test_runner.py /^ class ATextResult(unittest.TextTestResult, AResult):$/;" c function:Test_TextTestRunner.test_multiple_inheritance +AUDIOOP_ADD_METHODDEF Modules/clinic/audioop.c.h 730;" d +AUDIOOP_ADPCM2LIN_METHODDEF Modules/clinic/audioop.c.h 1278;" d +AUDIOOP_ALAW2LIN_METHODDEF Modules/clinic/audioop.c.h 1187;" d +AUDIOOP_AVGPP_METHODDEF Modules/clinic/audioop.c.h 408;" d +AUDIOOP_AVG_METHODDEF Modules/clinic/audioop.c.h 163;" d +AUDIOOP_BIAS_METHODDEF Modules/clinic/audioop.c.h 787;" d +AUDIOOP_BYTESWAP_METHODDEF Modules/clinic/audioop.c.h 880;" d +AUDIOOP_CROSS_METHODDEF Modules/clinic/audioop.c.h 496;" d +AUDIOOP_FINDFACTOR_METHODDEF Modules/clinic/audioop.c.h 303;" d +AUDIOOP_FINDFIT_METHODDEF Modules/clinic/audioop.c.h 251;" d +AUDIOOP_FINDMAX_METHODDEF Modules/clinic/audioop.c.h 355;" d +AUDIOOP_GETSAMPLE_METHODDEF Modules/clinic/audioop.c.h 17;" d +AUDIOOP_LIN2ADPCM_METHODDEF Modules/clinic/audioop.c.h 1231;" d +AUDIOOP_LIN2ALAW_METHODDEF Modules/clinic/audioop.c.h 1143;" d +AUDIOOP_LIN2LIN_METHODDEF Modules/clinic/audioop.c.h 924;" d +AUDIOOP_LIN2ULAW_METHODDEF Modules/clinic/audioop.c.h 1055;" d +AUDIOOP_MAXPP_METHODDEF Modules/clinic/audioop.c.h 452;" d +AUDIOOP_MAX_METHODDEF Modules/clinic/audioop.c.h 75;" d +AUDIOOP_MINMAX_METHODDEF Modules/clinic/audioop.c.h 119;" d +AUDIOOP_MUL_METHODDEF Modules/clinic/audioop.c.h 540;" d +AUDIOOP_RATECV_METHODDEF Modules/clinic/audioop.c.h 975;" d +AUDIOOP_REVERSE_METHODDEF Modules/clinic/audioop.c.h 836;" d +AUDIOOP_RMS_METHODDEF Modules/clinic/audioop.c.h 207;" d +AUDIOOP_TOMONO_METHODDEF Modules/clinic/audioop.c.h 596;" d +AUDIOOP_TOSTEREO_METHODDEF Modules/clinic/audioop.c.h 663;" d +AUDIOOP_ULAW2LIN_METHODDEF Modules/clinic/audioop.c.h 1099;" d +AUDIO_FILE_ENCODING_ADPCM_G721 Lib/sunau.py /^AUDIO_FILE_ENCODING_ADPCM_G721 = 23$/;" v +AUDIO_FILE_ENCODING_ADPCM_G722 Lib/sunau.py /^AUDIO_FILE_ENCODING_ADPCM_G722 = 24$/;" v +AUDIO_FILE_ENCODING_ADPCM_G723_3 Lib/sunau.py /^AUDIO_FILE_ENCODING_ADPCM_G723_3 = 25$/;" v +AUDIO_FILE_ENCODING_ADPCM_G723_5 Lib/sunau.py /^AUDIO_FILE_ENCODING_ADPCM_G723_5 = 26$/;" v +AUDIO_FILE_ENCODING_ALAW_8 Lib/sunau.py /^AUDIO_FILE_ENCODING_ALAW_8 = 27$/;" v +AUDIO_FILE_ENCODING_DOUBLE Lib/sunau.py /^AUDIO_FILE_ENCODING_DOUBLE = 7$/;" v +AUDIO_FILE_ENCODING_FLOAT Lib/sunau.py /^AUDIO_FILE_ENCODING_FLOAT = 6$/;" v +AUDIO_FILE_ENCODING_LINEAR_16 Lib/sunau.py /^AUDIO_FILE_ENCODING_LINEAR_16 = 3$/;" v +AUDIO_FILE_ENCODING_LINEAR_24 Lib/sunau.py /^AUDIO_FILE_ENCODING_LINEAR_24 = 4$/;" v +AUDIO_FILE_ENCODING_LINEAR_32 Lib/sunau.py /^AUDIO_FILE_ENCODING_LINEAR_32 = 5$/;" v +AUDIO_FILE_ENCODING_LINEAR_8 Lib/sunau.py /^AUDIO_FILE_ENCODING_LINEAR_8 = 2$/;" v +AUDIO_FILE_ENCODING_MULAW_8 Lib/sunau.py /^AUDIO_FILE_ENCODING_MULAW_8 = 1$/;" v +AUDIO_FILE_MAGIC Lib/sunau.py /^AUDIO_FILE_MAGIC = 0x2e736e64$/;" v +AUDIO_UNKNOWN_SIZE Lib/sunau.py /^AUDIO_UNKNOWN_SIZE = 0xFFFFFFFF # ((unsigned)(~0))$/;" v +AUDIT_TESTS_PY Lib/test/test_audit.py /^AUDIT_TESTS_PY = support.findfile("audit-tests.py")$/;" v +AUGUST Lib/calendar.py /^ AUGUST = 8$/;" v class:Month +AUTH Lib/test/test_smtplib.py /^ AUTH = 99 # Add protocol state to enable auth testing.$/;" v class:SimSMTPChannel +AUTHENTICATION Lib/telnetlib.py /^AUTHENTICATION = bytes([37]) # Authenticate$/;" v +AUTHORITY_KEYID_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class AUTHORITY_KEYID_st(Structure):$/;" c +AUTO Lib/tkinter/tix.py /^AUTO = 'auto'$/;" v +AUTOCOMMIT_DISABLED Modules/_sqlite/connection.h /^ AUTOCOMMIT_DISABLED = 0,$/;" e enum:autocommit_mode +AUTOCOMMIT_ENABLED Modules/_sqlite/connection.h /^ AUTOCOMMIT_ENABLED = 1,$/;" e enum:autocommit_mode +AUTOCOMMIT_LEGACY Modules/_sqlite/connection.h /^ AUTOCOMMIT_LEGACY = LEGACY_TRANSACTION_CONTROL,$/;" e enum:autocommit_mode +AUTOGEN_MESSAGE Parser/asdl_c.py /^AUTOGEN_MESSAGE = "\/\/ File automatically generated by {}.\\n\\n"$/;" v +AUTO_GENERATED_BY_SCRIPT Tools/build/generate_token.py /^AUTO_GENERATED_BY_SCRIPT = f'Auto-generated by {SCRIPT_NAME}'$/;" v +AUTUMN Lib/test/test_enum.py /^ AUTUMN = 3$/;" v class:TestSpecial.setUp.Season +AUTUMN Lib/test/test_enum.py /^ AUTUMN = 3$/;" v class:TestSpecial.test_iteration_order.Season +AUTUMN Lib/test/test_enum.py /^ AUTUMN = auto()$/;" v class:_EnumTests.test_attribute_deletion.Season +AVAILABLE_KEYS Lib/idlelib/config_key.py /^AVAILABLE_KEYS = (ALPHANUM_KEYS + PUNCTUATION_KEYS + FUNCTION_KEYS +$/;" v +AVAILABLE_START_METHODS Lib/test/test_multiprocessing_main_handling.py /^AVAILABLE_START_METHODS = set(multiprocessing.get_all_start_methods())$/;" v +AVAILABLE_TARGETS Lib/test/test_c_locale_coercion.py /^AVAILABLE_TARGETS = None$/;" v +AVP Lib/test/test_dynamicclassattribute.py /^ class AVP(ClassWithAbstractVirtualProperty):$/;" c function:PropertyTests.test_abstract_virtual +AWAIT Include/internal/pycore_token.h 72;" d +AWAIT Lib/ast.py /^ AWAIT = auto() # 'await'$/;" v class:_Precedence +AWAIT Lib/lib2to3/pgen2/token.py /^AWAIT = 56$/;" v +AWAIT Lib/test/test_ast.py /^ AWAIT = enum.auto() # 'await'$/;" v class:AST_Tests.test_precedence_enum._Precedence +AWAIT Lib/token.py /^AWAIT = 56$/;" v +AWAITABLE_STATE_CLOSED Objects/genobject.c /^ AWAITABLE_STATE_CLOSED, \/* closed *\/$/;" e enum:__anon731 file: +AWAITABLE_STATE_INIT Objects/genobject.c /^ AWAITABLE_STATE_INIT, \/* new awaitable, has not yet been iterated *\/$/;" e enum:__anon731 file: +AWAITABLE_STATE_ITER Objects/genobject.c /^ AWAITABLE_STATE_ITER, \/* being iterated *\/$/;" e enum:__anon731 file: +AYT Lib/telnetlib.py /^AYT = bytes([246]) # Are You There$/;" v +A_classmethod Lib/test/pydocfodder.py /^ A_classmethod = classmethod(A_classmethod)$/;" v class:A_new +A_classmethod Lib/test/pydocfodder.py /^ def A_classmethod(cls, x):$/;" m class:A_new +A_int_alias Lib/test/pydocfodder.py /^ A_int_alias = int$/;" v class:A_new +A_method Lib/test/pydocfodder.py /^ def A_method(self):$/;" m class:A_new +A_new Lib/test/pydocfodder.py /^class A_new:$/;" c +A_property Lib/test/pydocfodder.py /^ A_property = property(fdel=_delx, fget=_getx, fset=_setx,$/;" v class:A_new +A_staticmethod Lib/test/pydocfodder.py /^ A_staticmethod = staticmethod(A_staticmethod)$/;" v class:A_new +A_staticmethod Lib/test/pydocfodder.py /^ def A_staticmethod():$/;" m class:A_new +AbortingWriter Lib/test/test_wsgiref.py /^ class AbortingWriter:$/;" c function:HandlerTests.testClientConnectionTerminations +AbortingWriter Lib/test/test_wsgiref.py /^ class AbortingWriter:$/;" c function:HandlerTests.testDontResetInternalStateOnException +About Lib/idlelib/idle_test/test_help_about.py /^About = help_about.AboutDialog$/;" v +AboutDialog Lib/idlelib/help_about.py /^class AboutDialog(Toplevel):$/;" c +AboutDialog_spec Lib/idlelib/idle_test/htest.py /^AboutDialog_spec = {$/;" v +AbsClass Lib/test/test_builtin.py /^ class AbsClass(object):$/;" c function:BuiltinTest.test_abs +Absent Lib/http/cookiejar.py /^class Absent: pass$/;" c +AbsoluteLinkError Lib/tarfile.py /^class AbsoluteLinkError(FilterError):$/;" c +AbsolutePathError Lib/tarfile.py /^class AbsolutePathError(FilterError):$/;" c +Abstract Lib/test/test_functools.py /^ class Abstract(abc.ABCMeta):$/;" c function:TestPartialMethod.test_abstract +Abstract Lib/test/test_functools.py /^ class Abstract(metaclass=abc.ABCMeta):$/;" c function:TestSingleDispatch.test_abstractmethod_register +AbstractAsyncContextManager Lib/contextlib.py /^class AbstractAsyncContextManager(abc.ABC):$/;" c +AbstractBadCrcTests Lib/test/test_zipfile/test_core.py /^class AbstractBadCrcTests:$/;" c +AbstractBasicAuthHandler Lib/urllib/request.py /^class AbstractBasicAuthHandler:$/;" c +AbstractBuilder Tools/ssl/multissltests.py /^class AbstractBuilder(object):$/;" c +AbstractChecker Lib/test/test_inspect.py /^ class AbstractChecker(metaclass=ABCMeta):$/;" c function:TestPredicates.test_isabstract_during_init_subclass +AbstractChild Lib/test/test_inspect.py /^ class AbstractChild(AbstractClassExample):$/;" c function:TestPredicates.test_isabstract_during_init_subclass +AbstractChild Lib/test/test_isinstance.py /^AbstractChild = AbstractClass(bases=(AbstractSuper,))$/;" v +AbstractChildWatcher Lib/asyncio/unix_events.py /^class AbstractChildWatcher:$/;" c +AbstractChildWatcherTests Lib/test/test_asyncio/test_unix_events.py /^class AbstractChildWatcherTests(unittest.TestCase):$/;" c +AbstractClass Lib/test/test_isinstance.py /^class AbstractClass(object):$/;" c +AbstractClassExample Lib/test/test_inspect.py /^ class AbstractClassExample(AbstractChecker):$/;" c function:TestPredicates.test_isabstract_during_init_subclass +AbstractClassExample Lib/test/test_inspect.py /^ class AbstractClassExample(metaclass=ABCMeta):$/;" c function:TestPredicates.test_isabstract +AbstractContextManager Lib/contextlib.py /^class AbstractContextManager(abc.ABC):$/;" c +AbstractCustomPicklerClass Lib/test/pickletester.py /^class AbstractCustomPicklerClass:$/;" c +AbstractDefaultRootTest Lib/test/test_tkinter/support.py /^class AbstractDefaultRootTest:$/;" c +AbstractDigestAuthHandler Lib/urllib/request.py /^class AbstractDigestAuthHandler:$/;" c +AbstractDispatchTableTests Lib/test/pickletester.py /^class AbstractDispatchTableTests:$/;" c +AbstractEventLoop Lib/asyncio/events.py /^class AbstractEventLoop:$/;" c +AbstractEventLoopPolicy Lib/asyncio/events.py /^class AbstractEventLoopPolicy:$/;" c +AbstractEventLoopTests Lib/test/test_asyncio/test_events.py /^class AbstractEventLoopTests(unittest.TestCase):$/;" c +AbstractGrandchild Lib/test/test_inspect.py /^ class AbstractGrandchild(AbstractChild):$/;" c function:TestPredicates.test_isabstract_during_init_subclass +AbstractHTTPHandler Lib/urllib/request.py /^class AbstractHTTPHandler(BaseHandler):$/;" c +AbstractHookTests Lib/test/pickletester.py /^class AbstractHookTests:$/;" c +AbstractIdentityPersistentPicklerTests Lib/test/pickletester.py /^class AbstractIdentityPersistentPicklerTests:$/;" c +AbstractInstance Lib/test/test_isinstance.py /^class AbstractInstance(object):$/;" c +AbstractLabelTest Lib/test/test_tkinter/test_widgets.py /^class AbstractLabelTest(AbstractWidgetTest, IntegerSizeTests):$/;" c +AbstractLabelTest Lib/test/test_ttk/test_widgets.py /^class AbstractLabelTest(AbstractWidgetTest):$/;" c +AbstractMemoryTests Lib/test/test_memoryview.py /^class AbstractMemoryTests:$/;" c +AbstractPersistentPicklerTests Lib/test/pickletester.py /^class AbstractPersistentPicklerTests:$/;" c +AbstractPickleModuleTests Lib/test/pickletester.py /^class AbstractPickleModuleTests:$/;" c +AbstractPickleTests Lib/test/pickletester.py /^class AbstractPickleTests:$/;" c +AbstractPicklerUnpicklerObjectTests Lib/test/pickletester.py /^class AbstractPicklerUnpicklerObjectTests:$/;" c +AbstractReducer Lib/multiprocessing/reduction.py /^class AbstractReducer(metaclass=ABCMeta):$/;" c +AbstractServer Lib/asyncio/events.py /^class AbstractServer:$/;" c +AbstractSet Lib/typing.py /^AbstractSet = _alias(collections.abc.Set, 1, name='AbstractSet')$/;" v +AbstractSourceEncodingTest Lib/test/test_source_encoding.py /^class AbstractSourceEncodingTest:$/;" c +AbstractSuper Lib/test/test_isinstance.py /^AbstractSuper = AbstractClass(bases=())$/;" v +AbstractTestZip64InSmallFiles Lib/test/test_zipfile/test_core.py /^class AbstractTestZip64InSmallFiles:$/;" c +AbstractTestsWithRandomBinaryFiles Lib/test/test_zipfile/test_core.py /^class AbstractTestsWithRandomBinaryFiles:$/;" c +AbstractTestsWithSourceFile Lib/test/test_zipfile/test_core.py /^class AbstractTestsWithSourceFile:$/;" c +AbstractTkTest Lib/test/test_tkinter/support.py /^class AbstractTkTest:$/;" c +AbstractToplevelTest Lib/test/test_tkinter/test_widgets.py /^class AbstractToplevelTest(AbstractWidgetTest, PixelSizeTests):$/;" c +AbstractToplevelTest Lib/test/test_ttk/test_widgets.py /^class AbstractToplevelTest(AbstractWidgetTest, PixelSizeTests):$/;" c +AbstractUnpickleTests Lib/test/pickletester.py /^class AbstractUnpickleTests:$/;" c +AbstractWidgetTest Lib/test/test_tkinter/widget_tests.py /^class AbstractWidgetTest(AbstractTkTest):$/;" c +AbstractWriterTests Lib/test/test_zipfile/test_core.py /^class AbstractWriterTests:$/;" c +AclosingTestCase Lib/test/test_contextlib_async.py /^class AclosingTestCase(unittest.TestCase):$/;" c +AcquirerProxy Lib/multiprocessing/managers.py /^class AcquirerProxy(BaseProxy):$/;" c +Action Lib/argparse.py /^class Action(_AttributeHolder):$/;" c +Action Lib/test/test_argparse.py /^ class Action(object):$/;" c function:TestInvalidArgumentConstructors.test_user_defined_action +ActionText Lib/msilib/schema.py /^ActionText = Table('ActionText')$/;" v +ActionText Lib/msilib/text.py /^ActionText = [$/;" v +Activate Lib/test/test_tkinter/test_misc.py /^ Activate = '36'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Activate Lib/tkinter/__init__.py /^ Activate = '36'$/;" v class:EventType +ActiveExceptionTests Lib/test/test_sys.py /^class ActiveExceptionTests(unittest.TestCase):$/;" c +Adapter Lib/test/test_ctypes/test_parameters.py /^ class Adapter:$/;" c function:SimpleTypesTestCase.test_noctypes_argtype +Adapter Lib/test/test_logging.py /^ class Adapter(logging.LoggerAdapter):$/;" c function:LoggerAdapterTest.test_nested +Adata Lib/test/test_descr.py /^ Adata = 1$/;" v class:.test_dir.A +Add Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" e enum:_operator +AddCallersTestCase Lib/test/test_pstats.py /^class AddCallersTestCase(unittest.TestCase):$/;" c +AddCompilerOption Tools/freeze/checkextensions_win32.py /^ def AddCompilerOption(self, option):$/;" m class:CExtension +AddLinkerLib Tools/freeze/checkextensions_win32.py /^ def AddLinkerLib(self, lib):$/;" m class:CExtension +AddPackagePath Lib/modulefinder.py /^def AddPackagePath(packagename, path):$/;" f +AddSection Lib/idlelib/config.py /^ def AddSection(self, section):$/;" m class:IdleUserConfParser +AddTests Lib/test/test_argparse.py /^ class AddTests(object):$/;" c function:ParserTesterMetaclass.__init__ +AddTests Lib/test/test_argparse.py /^ class AddTests(object):$/;" c function:TestHelpFormattingMetaclass.__init__ +Add_singleton Include/internal/pycore_ast_state.h /^ PyObject *Add_singleton;$/;" m struct:ast_state +Add_type Include/internal/pycore_ast_state.h /^ PyObject *Add_type;$/;" m struct:ast_state +Adder Lib/test/test_scope.py /^ class Adder:$/;" c function:ScopeTests.testNestingThroughClass.make_adder5 +Addition Lib/test/test_traceback.py /^ class Addition:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions +Addition Lib/test/test_traceback.py /^ def Addition():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions +AddrSpec Lib/email/_header_value_parser.py /^class AddrSpec(TokenList):$/;" c +Address Lib/email/_header_value_parser.py /^class Address(TokenList):$/;" c +Address Lib/email/headerregistry.py /^class Address:$/;" c +AddressBookEntry Lib/test/test_descr.py /^ class AddressBookEntry:$/;" c function:.test_dict_constructors +AddressHeader Lib/email/headerregistry.py /^class AddressHeader:$/;" c +AddressList Lib/email/_header_value_parser.py /^class AddressList(TokenList):$/;" c +AddressList Lib/email/_parseaddr.py /^class AddressList(AddrlistClass):$/;" c +AddressTestCase_v4 Lib/test/test_ipaddress.py /^class AddressTestCase_v4(BaseTestCase, CommonTestMixin_v4):$/;" c +AddressTestCase_v6 Lib/test/test_ipaddress.py /^class AddressTestCase_v6(BaseTestCase, CommonTestMixin_v6):$/;" c +AddressValueError Lib/ipaddress.py /^class AddressValueError(ValueError):$/;" c +AddrlistClass Lib/email/_parseaddr.py /^class AddrlistClass:$/;" c +AdminExecuteSequence Lib/msilib/schema.py /^AdminExecuteSequence = Table('AdminExecuteSequence')$/;" v +AdminExecuteSequence Lib/msilib/sequence.py /^AdminExecuteSequence = [$/;" v +AdminUISequence Lib/msilib/schema.py /^AdminUISequence = Table('AdminUISequence')$/;" v +AdminUISequence Lib/msilib/sequence.py /^AdminUISequence = [$/;" v +AdvancedNamespace Lib/test/test_pprint.py /^ class AdvancedNamespace(types.SimpleNamespace): pass$/;" c function:QueryTestCase.test_simple_namespace_subclass +AdvtExecuteSequence Lib/msilib/schema.py /^AdvtExecuteSequence = Table('AdvtExecuteSequence')$/;" v +AdvtExecuteSequence Lib/msilib/sequence.py /^AdvtExecuteSequence = [$/;" v +AdvtUISequence Lib/msilib/schema.py /^AdvtUISequence = Table('AdvtUISequence')$/;" v +AfricanSwallow Lib/test/test_with.py /^ class AfricanSwallow:$/;" c function:ExitSwallowsExceptionTestCase.testExitTrueSwallowsException +Agg Lib/test/test_sqlite3/test_dbapi.py /^ class Agg:$/;" c function:ClosedConTests.test_closed_create_aggregate +AggrCheckType Lib/test/test_sqlite3/test_userfunctions.py /^class AggrCheckType:$/;" c +AggrCheckTypes Lib/test/test_sqlite3/test_userfunctions.py /^class AggrCheckTypes:$/;" c +AggrExceptionInFinalize Lib/test/test_sqlite3/test_userfunctions.py /^class AggrExceptionInFinalize:$/;" c +AggrExceptionInInit Lib/test/test_sqlite3/test_userfunctions.py /^class AggrExceptionInInit:$/;" c +AggrExceptionInStep Lib/test/test_sqlite3/test_userfunctions.py /^class AggrExceptionInStep:$/;" c +AggrNoFinalize Lib/test/test_sqlite3/test_userfunctions.py /^class AggrNoFinalize:$/;" c +AggrNoStep Lib/test/test_sqlite3/test_userfunctions.py /^class AggrNoStep:$/;" c +AggrSum Lib/test/test_sqlite3/test_userfunctions.py /^class AggrSum:$/;" c +AggrText Lib/test/test_sqlite3/test_userfunctions.py /^class AggrText:$/;" c +AggregateTests Lib/test/test_sqlite3/test_userfunctions.py /^class AggregateTests(unittest.TestCase):$/;" c +AifcALAWTest Lib/test/test_aifc.py /^class AifcALAWTest(AifcTest, unittest.TestCase):$/;" c +AifcMiscTest Lib/test/test_aifc.py /^class AifcMiscTest(unittest.TestCase):$/;" c +AifcPCM16Test Lib/test/test_aifc.py /^class AifcPCM16Test(AifcTest, unittest.TestCase):$/;" c +AifcPCM24Test Lib/test/test_aifc.py /^class AifcPCM24Test(AifcTest, unittest.TestCase):$/;" c +AifcPCM32Test Lib/test/test_aifc.py /^class AifcPCM32Test(AifcTest, unittest.TestCase):$/;" c +AifcPCM8Test Lib/test/test_aifc.py /^class AifcPCM8Test(AifcTest, unittest.TestCase):$/;" c +AifcTest Lib/test/test_aifc.py /^ audiotests.AudioTestsWithSourceFile):$/;" c +AifcULAWTest Lib/test/test_aifc.py /^class AifcULAWTest(AifcTest, unittest.TestCase):$/;" c +Aifc_read Lib/aifc.py /^class Aifc_read:$/;" c +Aifc_write Lib/aifc.py /^class Aifc_write:$/;" c +Alarm Lib/test/test_socket.py /^ class Alarm(Exception):$/;" c function:TCPTimeoutTest.testInterruptedTimeout +Alias Lib/test/test_symtable.py /^ Alias = find_block(top, "Alias")$/;" v class:SymtableTest +AllMixin Lib/test/test_enum.py /^ class AllMixin:$/;" c function:OldTestFlag.test_multiple_mixin +AllMixin Lib/test/test_enum.py /^ class AllMixin:$/;" c function:OldTestIntFlag.test_multiple_mixin +AllSnakesCreatedEqual Lib/test/test_unittest/test_case.py /^ def AllSnakesCreatedEqual(a, b, msg=None):$/;" f function:Test_TestCase.testAddTypeEqualityFunc +AllTest Lib/test/test___all__.py /^class AllTest(unittest.TestCase):$/;" c +AllTests Lib/test/test_class.py /^AllTests = type("AllTests", (object,), d)$/;" v +AllTests Lib/test/test_typing.py /^class AllTests(BaseTestCase):$/;" c +AllocNonRecursiveMutex Python/thread_nt.h /^AllocNonRecursiveMutex(void)$/;" f +AllocationSize Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER AllocationSize;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +AllowedVersions Lib/imaplib.py /^AllowedVersions = ('IMAP4REV1', 'IMAP4') # Most recent first$/;" v +Almost Lib/test/test_poll.py /^ class Almost:$/;" c function:PollTests.test_poll_unit_tests +Almost Lib/test/test_select.py /^ class Almost:$/;" c class:SelectTestCase +AlsoBogus Lib/test/datetimetester.py /^ class AlsoBogus(tzinfo):$/;" c function:TestDateTime.test_astimezone +Alt Tools/peg_generator/pegen/grammar.py /^class Alt:$/;" c +AlwaysAttributeError Lib/test/test_import/__init__.py /^ class AlwaysAttributeError:$/;" c function:ImportTests.test_from_import_AttributeError +AlwaysEqual Lib/test/test_dict_version.py /^ class AlwaysEqual:$/;" c function:DictVersionTests.test_setitem_equal +AlwaysEqualEG Lib/test/test_except_star.py /^ class AlwaysEqualEG(ExceptionGroup):$/;" c class:TestExceptStar_WeirdExceptionGroupSubclass +AlwaysEqualExc Lib/test/test_except_star.py /^ class AlwaysEqualExc(ValueError):$/;" c class:TestExceptStar_WeirdLeafExceptions +AmbiguousOptionError Lib/optparse.py /^class AmbiguousOptionError (BadOptionError):$/;" c +Amethod Lib/test/test_descr.py /^ def Amethod(self): pass$/;" m class:.test_dir.A +AmpersandTemplate Lib/test/test_string.py /^ class AmpersandTemplate(Template):$/;" c function:TestTemplate.test_delimiter_override +Analysis Tools/c-analyzer/c_analyzer/info.py /^class Analysis:$/;" c +Analysis Tools/c-analyzer/cpython/_analyzer.py /^class Analysis(_info.Analysis):$/;" c +Analyzed Tools/c-analyzer/c_analyzer/info.py /^class Analyzed:$/;" c +Analyzed Tools/c-analyzer/cpython/_analyzer.py /^class Analyzed(_info.Analyzed):$/;" c +Analyzer Tools/cases_generator/generate_cases.py /^class Analyzer:$/;" c +Anchor Lib/importlib/resources/_common.py /^Anchor = Package$/;" v +And Include/internal/pycore_ast.h /^typedef enum _boolop { And=1, Or=2 } boolop_ty;$/;" e enum:_boolop +And_singleton Include/internal/pycore_ast_state.h /^ PyObject *And_singleton;$/;" m struct:ast_state +And_type Include/internal/pycore_ast_state.h /^ PyObject *And_type;$/;" m struct:ast_state +AnextOnly Lib/test/test_collections.py /^ class AnextOnly:$/;" c function:TestOneTrickPonyABCs.test_AsyncIterator +AngleAddr Lib/email/_header_value_parser.py /^class AngleAddr(TokenList):$/;" c +Animal Lib/test/test_typing.py /^ class Animal(BaseAnimal, total=False):$/;" c function:TypedDictTests.test_keys_inheritance +AnnAssign Include/internal/pycore_ast.h /^ } AnnAssign;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon60 +AnnAssign_fields Python/Python-ast.c /^static const char * const AnnAssign_fields[]={$/;" v file: +AnnAssign_kind Include/internal/pycore_ast.h /^ TypeAlias_kind=7, AugAssign_kind=8, AnnAssign_kind=9,$/;" e enum:_stmt_kind +AnnAssign_type Include/internal/pycore_ast_state.h /^ PyObject *AnnAssign_type;$/;" m struct:ast_state +AnnotateBarrierDestroy Python/dynamic_annotations.c /^void AnnotateBarrierDestroy(const char *file, int line,$/;" f +AnnotateBarrierInit Python/dynamic_annotations.c /^void AnnotateBarrierInit(const char *file, int line,$/;" f +AnnotateBarrierWaitAfter Python/dynamic_annotations.c /^void AnnotateBarrierWaitAfter(const char *file, int line,$/;" f +AnnotateBarrierWaitBefore Python/dynamic_annotations.c /^void AnnotateBarrierWaitBefore(const char *file, int line,$/;" f +AnnotateBenignRace Python/dynamic_annotations.c /^void AnnotateBenignRace(const char *file, int line,$/;" f +AnnotateBenignRaceSized Python/dynamic_annotations.c /^void AnnotateBenignRaceSized(const char *file, int line,$/;" f +AnnotateCondVarSignal Python/dynamic_annotations.c /^void AnnotateCondVarSignal(const char *file, int line,$/;" f +AnnotateCondVarSignalAll Python/dynamic_annotations.c /^void AnnotateCondVarSignalAll(const char *file, int line,$/;" f +AnnotateCondVarWait Python/dynamic_annotations.c /^void AnnotateCondVarWait(const char *file, int line,$/;" f +AnnotateEnableRaceDetection Python/dynamic_annotations.c /^void AnnotateEnableRaceDetection(const char *file, int line, int enable){}$/;" f +AnnotateExpectRace Python/dynamic_annotations.c /^void AnnotateExpectRace(const char *file, int line,$/;" f +AnnotateFlushState Python/dynamic_annotations.c /^void AnnotateFlushState(const char *file, int line){}$/;" f +AnnotateIgnoreReadsBegin Python/dynamic_annotations.c /^void AnnotateIgnoreReadsBegin(const char *file, int line){}$/;" f +AnnotateIgnoreReadsEnd Python/dynamic_annotations.c /^void AnnotateIgnoreReadsEnd(const char *file, int line){}$/;" f +AnnotateIgnoreSyncBegin Python/dynamic_annotations.c /^void AnnotateIgnoreSyncBegin(const char *file, int line){}$/;" f +AnnotateIgnoreSyncEnd Python/dynamic_annotations.c /^void AnnotateIgnoreSyncEnd(const char *file, int line){}$/;" f +AnnotateIgnoreWritesBegin Python/dynamic_annotations.c /^void AnnotateIgnoreWritesBegin(const char *file, int line){}$/;" f +AnnotateIgnoreWritesEnd Python/dynamic_annotations.c /^void AnnotateIgnoreWritesEnd(const char *file, int line){}$/;" f +AnnotateMutexIsUsedAsCondVar Python/dynamic_annotations.c /^void AnnotateMutexIsUsedAsCondVar(const char *file, int line,$/;" f +AnnotateNewMemory Python/dynamic_annotations.c /^void AnnotateNewMemory(const char *file, int line,$/;" f +AnnotateNoOp Python/dynamic_annotations.c /^void AnnotateNoOp(const char *file, int line,$/;" f +AnnotatePCQCreate Python/dynamic_annotations.c /^void AnnotatePCQCreate(const char *file, int line,$/;" f +AnnotatePCQDestroy Python/dynamic_annotations.c /^void AnnotatePCQDestroy(const char *file, int line,$/;" f +AnnotatePCQGet Python/dynamic_annotations.c /^void AnnotatePCQGet(const char *file, int line,$/;" f +AnnotatePCQPut Python/dynamic_annotations.c /^void AnnotatePCQPut(const char *file, int line,$/;" f +AnnotatePublishMemoryRange Python/dynamic_annotations.c /^void AnnotatePublishMemoryRange(const char *file, int line,$/;" f +AnnotateRWLockAcquired Python/dynamic_annotations.c /^void AnnotateRWLockAcquired(const char *file, int line,$/;" f +AnnotateRWLockCreate Python/dynamic_annotations.c /^void AnnotateRWLockCreate(const char *file, int line,$/;" f +AnnotateRWLockDestroy Python/dynamic_annotations.c /^void AnnotateRWLockDestroy(const char *file, int line,$/;" f +AnnotateRWLockReleased Python/dynamic_annotations.c /^void AnnotateRWLockReleased(const char *file, int line,$/;" f +AnnotateThreadName Python/dynamic_annotations.c /^void AnnotateThreadName(const char *file, int line,$/;" f +AnnotateTraceMemory Python/dynamic_annotations.c /^void AnnotateTraceMemory(const char *file, int line,$/;" f +AnnotateUnpublishMemoryRange Python/dynamic_annotations.c /^void AnnotateUnpublishMemoryRange(const char *file, int line,$/;" f +Annotated Lib/typing.py /^class Annotated:$/;" c +AnnotatedButNotAProtocol Lib/test/test_typing.py /^ class AnnotatedButNotAProtocol:$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +AnnotatedMovie Lib/test/test_typing.py /^class AnnotatedMovie(TypedDict):$/;" c +AnnotatedTests Lib/test/test_typing.py /^class AnnotatedTests(BaseTestCase):$/;" c +AnnotationBlock Include/internal/pycore_symtable.h /^ AnnotationBlock,$/;" e enum:_block_type +Annotations Doc/tools/extensions/c_annotations.py /^class Annotations:$/;" c +AnnotationsFutureTestCase Lib/test/test_future.py /^class AnnotationsFutureTestCase(unittest.TestCase):$/;" c +AnonTest Lib/test/test_ctypes/test_anon.py /^class AnonTest(unittest.TestCase):$/;" c +AnotherDerived Lib/test/test_dataclasses.py /^ class AnotherDerived(Base):$/;" c function:TestSlots.test_generated_slots_value +AnotherEnum Lib/test/test_enum.py /^ class AnotherEnum(Enum):$/;" c function:TestSpecial.test_multiple_mixin +AnotherInvalidRequestRateTest Lib/test/test_robotparser.py /^class AnotherInvalidRequestRateTest(BaseRobotTest, unittest.TestCase):$/;" c +AnotherLeak Lib/test/test_ctypes/test_refcounts.py /^class AnotherLeak(unittest.TestCase):$/;" c +Answer Lib/test/test_enum.py /^ Answer = Enum('Answer', 'him this then there because')$/;" v +Answer Lib/test/test_enum.py /^ Answer = exc$/;" v +Any Lib/typing.py /^class Any(metaclass=_AnyMeta):$/;" c +AnyAttr Lib/test/test_string.py /^ class AnyAttr:$/;" c function:ModuleTest.test_name_lookup +AnyClass Lib/test/test_slice.py /^ class AnyClass:$/;" c function:SliceTest.test_members +AnyDBMTestCase Lib/test/test_dbm.py /^class AnyDBMTestCase:$/;" c +AnyInstruction Tools/cases_generator/generate_cases.py /^AnyInstruction = Instruction | SuperInstruction | MacroInstruction$/;" v +AnyStr Lib/typing.py /^AnyStr = TypeVar('AnyStr', bytes, str)$/;" v +AnyTest Lib/test/test_unittest/testmock/testhelpers.py /^class AnyTest(unittest.TestCase):$/;" c +AnyTests Lib/test/test_typing.py /^class AnyTests(BaseTestCase):$/;" c +Anything Lib/test/test_unittest/testmock/testmock.py /^ class Anything(object):$/;" c function:MockTest.test_mock_add_spec +AppId Lib/msilib/schema.py /^AppId = Table('AppId')$/;" v +AppListEntry PC/layout/support/appxmanifest.py /^ AppListEntry="none",$/;" v +AppProtocolState Lib/asyncio/sslproto.py /^class AppProtocolState(enum.Enum):$/;" c +AppSearch Lib/msilib/schema.py /^AppSearch = Table('AppSearch')$/;" v +AppendTest Lib/test/test_tarfile.py /^class AppendTest(AppendTestBase, unittest.TestCase):$/;" c +AppendTestBase Lib/test/test_tarfile.py /^class AppendTestBase:$/;" c +AppendTrue Lib/test/_test_multiprocessing.py /^class AppendTrue(object):$/;" c +Appender Tools/clinic/clinic.py /^Appender = Callable[[str], None]$/;" v +ApplyKeybindings Lib/idlelib/editor.py /^ def ApplyKeybindings(self):$/;" m class:EditorWindow +ApplyResult Lib/multiprocessing/pool.py /^class ApplyResult(object):$/;" c +ApplyResult Lib/test/test_genericalias.py /^ ApplyResult = None$/;" v +ApproxEqualExactTest Lib/test/test_statistics.py /^class ApproxEqualExactTest(unittest.TestCase):$/;" c +ApproxEqualInexactTest Lib/test/test_statistics.py /^class ApproxEqualInexactTest(unittest.TestCase):$/;" c +ApproxEqualSpecialsTest Lib/test/test_statistics.py /^class ApproxEqualSpecialsTest(unittest.TestCase):$/;" c +ApproxEqualSymmetryTest Lib/test/test_statistics.py /^class ApproxEqualSymmetryTest(unittest.TestCase):$/;" c +ApproxEqualUnequalTest Lib/test/test_statistics.py /^class ApproxEqualUnequalTest(unittest.TestCase):$/;" c +AppxSearchInfo PC/launcher2.c /^struct AppxSearchInfo {$/;" s file: +ArbitraryFunctionAttrTest Lib/test/test_funcattrs.py /^class ArbitraryFunctionAttrTest(FuncAttrsTest):$/;" c +ArchiveMaker Lib/test/test_tarfile.py /^class ArchiveMaker:$/;" c +Arena Lib/multiprocessing/heap.py /^ class Arena(object):$/;" c +ArgInfo Lib/inspect.py /^ArgInfo = namedtuple('ArgInfo', 'args varargs keywords locals')$/;" v +ArgList Lib/lib2to3/fixer_util.py /^def ArgList(args, lparen=LParen(), rparen=RParen()):$/;" f +ArgType Lib/test/test_ctypes/test_numbers.py /^ArgType = type(byref(c_int(0)))$/;" v +ArgsTestCase Lib/test/test_regrtest.py /^class ArgsTestCase(BaseTestCase):$/;" c +ArgumentDefaultsHelpFormatter Lib/argparse.py /^class ArgumentDefaultsHelpFormatter(HelpFormatter):$/;" c +ArgumentDescriptor Lib/pickletools.py /^class ArgumentDescriptor(object):$/;" c +ArgumentError Lib/argparse.py /^class ArgumentError(Exception):$/;" c +ArgumentParser Lib/argparse.py /^class ArgumentParser(_AttributeHolder, _ActionsContainer):$/;" c +ArgumentParserError Lib/test/test_argparse.py /^class ArgumentParserError(Exception):$/;" c +ArgumentTypeError Lib/argparse.py /^class ArgumentTypeError(Exception):$/;" c +Arguments Lib/inspect.py /^Arguments = namedtuple('Arguments', 'args, varargs, varkw')$/;" v +ArithmeticOperatorsTest Lib/test/test_decimal.py /^class ArithmeticOperatorsTest:$/;" c +Arm32Ssh Tools/buildbot/remoteDeploy.bat /^:Arm32Ssh$/;" l +Arm32Ssh Tools/buildbot/remotePythonInfo.bat /^:Arm32Ssh$/;" l +Arm32Ssh Tools/buildbot/test.bat /^:Arm32Ssh$/;" l +Arm32SshHelp Tools/buildbot/remoteDeploy.bat /^:Arm32SshHelp$/;" l +Arm32SshHelp Tools/buildbot/remotePythonInfo.bat /^:Arm32SshHelp$/;" l +Arm32SshHelp Tools/buildbot/test.bat /^:Arm32SshHelp$/;" l +Array Lib/multiprocessing/context.py /^ def Array(self, typecode_or_type, size_or_initializer, *, lock=True):$/;" m class:BaseContext +Array Lib/multiprocessing/dummy/__init__.py /^def Array(typecode, sequence, lock=True):$/;" f +Array Lib/multiprocessing/managers.py /^def Array(typecode, sequence, lock=True):$/;" f +Array Lib/multiprocessing/sharedctypes.py /^def Array(typecode_or_type, size_or_initializer, *, lock=True, ctx=None):$/;" f +Array Lib/test/_test_multiprocessing.py /^ Array = property(operator.attrgetter('manager.Array'))$/;" v class:ManagerMixin +Array Lib/test/_test_multiprocessing.py /^ Array = staticmethod(multiprocessing.Array)$/;" v class:ProcessesMixin +Array Lib/test/_test_multiprocessing.py /^ Array = staticmethod(multiprocessing.dummy.Array)$/;" v class:ThreadsMixin +Array Tools/unicode/makeunicodedata.py /^class Array:$/;" c +ArrayBinASCIITest Lib/test/test_binascii.py /^class ArrayBinASCIITest(BinASCIITest):$/;" c +ArrayIterType Modules/arraymodule.c /^ PyTypeObject *ArrayIterType;$/;" m struct:__anon649 file: +ArrayMemorySliceSliceTest Lib/test/test_memoryview.py /^ BaseMemorySliceSliceTests, BaseArrayMemoryTests):$/;" c +ArrayMemorySliceTest Lib/test/test_memoryview.py /^ BaseMemorySliceTests, BaseArrayMemoryTests):$/;" c +ArrayMemoryviewTest Lib/test/test_memoryview.py /^ BaseMemoryviewTests, BaseArrayMemoryTests):$/;" c +ArrayObject_Check Modules/_ctypes/ctypes.h 183;" d +ArrayProxy Lib/multiprocessing/managers.py /^ArrayProxy = MakeProxyType('ArrayProxy', ($/;" v +ArrayReconstructorTest Lib/test/test_array.py /^class ArrayReconstructorTest(unittest.TestCase):$/;" c +ArraySubclass Lib/test/test_array.py /^class ArraySubclass(array.array):$/;" c +ArraySubclassWithKwargs Lib/test/test_array.py /^class ArraySubclassWithKwargs(array.array):$/;" c +ArrayTest Lib/test/test_ctypes/test_prototypes.py /^class ArrayTest(unittest.TestCase):$/;" c +ArrayTestCase Lib/test/test_ctypes/test_arrays.py /^class ArrayTestCase(unittest.TestCase):$/;" c +ArrayTestCase Lib/test/test_ctypes/test_keeprefs.py /^class ArrayTestCase(unittest.TestCase):$/;" c +ArrayType Modules/arraymodule.c /^ PyTypeObject *ArrayType;$/;" m struct:__anon649 file: +Array_as_mapping Modules/_ctypes/_ctypes.c /^static PyMappingMethods Array_as_mapping = {$/;" v file: +Array_as_sequence Modules/_ctypes/_ctypes.c /^static PySequenceMethods Array_as_sequence = {$/;" v file: +Array_ass_item Modules/_ctypes/_ctypes.c /^Array_ass_item(PyObject *myself, Py_ssize_t index, PyObject *value)$/;" f file: +Array_ass_subscript Modules/_ctypes/_ctypes.c /^Array_ass_subscript(PyObject *myself, PyObject *item, PyObject *value)$/;" f file: +Array_init Modules/_ctypes/_ctypes.c /^Array_init(CDataObject *self, PyObject *args, PyObject *kw)$/;" f file: +Array_item Modules/_ctypes/_ctypes.c /^Array_item(PyObject *myself, Py_ssize_t index)$/;" f file: +Array_length Modules/_ctypes/_ctypes.c /^Array_length(PyObject *myself)$/;" f file: +Array_methods Modules/_ctypes/_ctypes.c /^static PyMethodDef Array_methods[] = {$/;" v file: +Array_subscript Modules/_ctypes/_ctypes.c /^Array_subscript(PyObject *myself, PyObject *item)$/;" f file: +ArticleInfo Lib/nntplib.py /^ArticleInfo = collections.namedtuple('ArticleInfo',$/;" v +AsCompletedTests Lib/test/test_concurrent_futures/test_as_completed.py /^class AsCompletedTests:$/;" c +AsObj Modules/_tkinter.c /^AsObj(PyObject *value)$/;" f file: +AsParamPropertyWrapper Lib/test/test_ctypes/test_as_parameter.py /^class AsParamPropertyWrapper:$/;" c +AsParamPropertyWrapperTestCase Lib/test/test_ctypes/test_as_parameter.py /^class AsParamPropertyWrapperTestCase(BasicWrapTestCase):$/;" c +AsParamWrapper Lib/test/test_ctypes/test_as_parameter.py /^class AsParamWrapper:$/;" c +AsParamWrapperTestCase Lib/test/test_ctypes/test_as_parameter.py /^class AsParamWrapperTestCase(BasicWrapTestCase):$/;" c +AssemblerTestCase Lib/test/support/bytecode_helper.py /^class AssemblerTestCase(CompilationStepTestCase):$/;" c +Assert Include/internal/pycore_ast.h /^ } Assert;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon71 +AssertErrorMessage Lib/test/test_logging.py /^class AssertErrorMessage:$/;" c +AssertNeverTests Lib/test/test_typing.py /^class AssertNeverTests(BaseTestCase):$/;" c +AssertTypeTests Lib/test/test_typing.py /^class AssertTypeTests(BaseTestCase):$/;" c +Assert_fields Python/Python-ast.c /^static const char * const Assert_fields[]={$/;" v file: +Assert_kind Include/internal/pycore_ast.h /^ Raise_kind=17, Try_kind=18, TryStar_kind=19, Assert_kind=20,$/;" e enum:_stmt_kind +Assert_type Include/internal/pycore_ast_state.h /^ PyObject *Assert_type;$/;" m struct:ast_state +Assign Include/internal/pycore_ast.h /^ } Assign;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon57 +Assign Lib/lib2to3/fixer_util.py /^def Assign(target, source):$/;" f +Assign_fields Python/Python-ast.c /^static const char * const Assign_fields[]={$/;" v file: +Assign_kind Include/internal/pycore_ast.h /^ Return_kind=4, Delete_kind=5, Assign_kind=6,$/;" e enum:_stmt_kind +Assign_type Include/internal/pycore_ast_state.h /^ PyObject *Assign_type;$/;" m struct:ast_state +AssignmentTargetTestCase Lib/test/test_with.py /^class AssignmentTargetTestCase(unittest.TestCase):$/;" c +AssortedBytesTest Lib/test/test_bytes.py /^class AssortedBytesTest(unittest.TestCase):$/;" c +AsyncArguments Lib/test/test_unittest/testmock/testasync.py /^class AsyncArguments(IsolatedAsyncioTestCase):$/;" c +AsyncAutospecTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncAutospecTest(unittest.TestCase):$/;" c +AsyncBadSyntaxTest Lib/test/test_coroutines.py /^class AsyncBadSyntaxTest(unittest.TestCase):$/;" c +AsyncClass Lib/test/test_unittest/testmock/testasync.py /^class AsyncClass:$/;" c +AsyncContextDecorator Lib/contextlib.py /^class AsyncContextDecorator(object):$/;" c +AsyncContextManager Lib/typing.py /^AsyncContextManager = _alias(contextlib.AbstractAsyncContextManager, 1, name='AsyncContextManager')$/;" v +AsyncContextManagerTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncContextManagerTest(unittest.TestCase):$/;" c +AsyncContextManagerTestCase Lib/test/test_contextlib_async.py /^class AsyncContextManagerTestCase(unittest.TestCase):$/;" c +AsyncExc Lib/test/test_threading.py /^ class AsyncExc(Exception):$/;" c function:ThreadTests.test_PyThreadState_SetAsyncExc +AsyncExitStack Lib/contextlib.py /^class AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager):$/;" c +AsyncFor Include/internal/pycore_ast.h /^ } AsyncFor;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon62 +AsyncFor_fields Python/Python-ast.c /^static const char * const AsyncFor_fields[]={$/;" v file: +AsyncFor_kind Include/internal/pycore_ast.h /^ For_kind=10, AsyncFor_kind=11, While_kind=12, If_kind=13,$/;" e enum:_stmt_kind +AsyncFor_type Include/internal/pycore_ast_state.h /^ PyObject *AsyncFor_type;$/;" m struct:ast_state +AsyncFunctionDef Include/internal/pycore_ast.h /^ } AsyncFunctionDef;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon53 +AsyncFunctionDef_fields Python/Python-ast.c /^static const char * const AsyncFunctionDef_fields[]={$/;" v file: +AsyncFunctionDef_kind Include/internal/pycore_ast.h /^enum _stmt_kind {FunctionDef_kind=1, AsyncFunctionDef_kind=2, ClassDef_kind=3,$/;" e enum:_stmt_kind +AsyncFunctionDef_type Include/internal/pycore_ast_state.h /^ PyObject *AsyncFunctionDef_type;$/;" m struct:ast_state +AsyncGenAsyncioTest Lib/test/test_asyncgen.py /^class AsyncGenAsyncioTest(unittest.TestCase):$/;" c +AsyncGenHooksType Python/sysmodule.c /^static PyTypeObject AsyncGenHooksType;$/;" v file: +AsyncGenSyntaxTest Lib/test/test_asyncgen.py /^class AsyncGenSyntaxTest(unittest.TestCase):$/;" c +AsyncGenTest Lib/test/test_asyncgen.py /^class AsyncGenTest(unittest.TestCase):$/;" c +AsyncGenerator Lib/_collections_abc.py /^class AsyncGenerator(AsyncIterator):$/;" c +AsyncGenerator Lib/typing.py /^AsyncGenerator = _alias(collections.abc.AsyncGenerator, 2)$/;" v +AsyncGeneratorType Lib/types.py /^AsyncGeneratorType = type(_ag)$/;" v +AsyncIOInteractiveConsole Lib/asyncio/__main__.py /^class AsyncIOInteractiveConsole(code.InteractiveConsole):$/;" c +AsyncIter Lib/test/test_coroutines.py /^ class AsyncIter:$/;" c function:CoroutineTest.test_for_1 +AsyncIterable Lib/_collections_abc.py /^class AsyncIterable(metaclass=ABCMeta):$/;" c +AsyncIterable Lib/typing.py /^AsyncIterable = _alias(collections.abc.AsyncIterable, 1)$/;" v +AsyncIterator Lib/_collections_abc.py /^class AsyncIterator(AsyncIterable):$/;" c +AsyncIterator Lib/typing.py /^AsyncIterator = _alias(collections.abc.AsyncIterator, 1)$/;" v +AsyncIteratorTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncIteratorTest(unittest.TestCase):$/;" c +AsyncIteratorWrapper Lib/test/test_sys_settrace.py /^ class AsyncIteratorWrapper:$/;" c function:TraceTestCase.test_20_async_for_loop +AsyncIteratorWrapper Lib/test/test_typing.py /^class AsyncIteratorWrapper(typing.AsyncIterator[T_a]):$/;" c +AsyncMagicMethods Lib/test/test_unittest/testmock/testasync.py /^class AsyncMagicMethods(unittest.TestCase):$/;" c +AsyncMagicMixin Lib/unittest/mock.py /^class AsyncMagicMixin(MagicMixin):$/;" c +AsyncMock Lib/unittest/mock.py /^class AsyncMock(AsyncMockMixin, AsyncMagicMixin, Mock):$/;" c +AsyncMockAssert Lib/test/test_unittest/testmock/testasync.py /^class AsyncMockAssert(unittest.TestCase):$/;" c +AsyncMockMixin Lib/unittest/mock.py /^class AsyncMockMixin(Base):$/;" c +AsyncMockTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncMockTest(unittest.TestCase):$/;" c +AsyncPatchCMTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncPatchCMTest(unittest.TestCase):$/;" c +AsyncPatchDecoratorTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncPatchDecoratorTest(unittest.TestCase):$/;" c +AsyncResult Lib/multiprocessing/pool.py /^AsyncResult = ApplyResult # create alias -- see #17805$/;" v +AsyncSpecSetTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncSpecSetTest(unittest.TestCase):$/;" c +AsyncSpecTest Lib/test/test_unittest/testmock/testasync.py /^class AsyncSpecTest(unittest.TestCase):$/;" c +AsyncTaskCounter Lib/test/test_asyncio/test_eager_task_factory.py /^class AsyncTaskCounter:$/;" c +AsyncWith Include/internal/pycore_ast.h /^ } AsyncWith;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon66 +AsyncWith_fields Python/Python-ast.c /^static const char * const AsyncWith_fields[]={$/;" v file: +AsyncWith_kind Include/internal/pycore_ast.h /^ With_kind=14, AsyncWith_kind=15, Match_kind=16,$/;" e enum:_stmt_kind +AsyncWith_type Include/internal/pycore_ast_state.h /^ PyObject *AsyncWith_type;$/;" m struct:ast_state +AsyncYield Lib/test/test_coroutines.py /^class AsyncYield:$/;" c +AsyncYieldFrom Lib/test/test_coroutines.py /^class AsyncYieldFrom:$/;" c +AsyncioWaitForTest Lib/test/test_asyncio/test_waitfor.py /^class AsyncioWaitForTest(unittest.IsolatedAsyncioTestCase):$/;" c +AsyncoreEchoServer Lib/test/test_ssl.py /^class AsyncoreEchoServer(threading.Thread):$/;" c +AtexitTests Lib/test/test_threading.py /^class AtexitTests(unittest.TestCase):$/;" c +Atom Lib/email/_header_value_parser.py /^class Atom(TokenList):$/;" c +AtomicObjectTreeItem Lib/idlelib/debugobj.py /^class AtomicObjectTreeItem(ObjectTreeItem):$/;" c +AtomicObjectTreeItemTest Lib/idlelib/idle_test/test_debugobj.py /^class AtomicObjectTreeItemTest(unittest.TestCase):$/;" c +AttlistDecl Modules/pyexpat.c /^ AttlistDecl,$/;" e enum:HandlerTypes file: +AttlistDeclHandler Lib/test/test_pyexpat.py /^ def AttlistDeclHandler(self, *args):$/;" m class:ParseTest.Outputter +Attr Lib/lib2to3/fixer_util.py /^def Attr(obj, attr):$/;" f +Attr Lib/xml/dom/minidom.py /^class Attr(Node):$/;" c +AttrGatherer Lib/test/test_sax.py /^ class AttrGatherer(ContentHandler):$/;" c class:ExpatReaderTest +Attribute Include/internal/pycore_ast.h /^ } Attribute;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon98 +Attribute Lib/email/_header_value_parser.py /^class Attribute(TokenList):$/;" c +Attribute Lib/inspect.py /^Attribute = namedtuple('Attribute', 'name kind defining_class object')$/;" v +AttributeErrorTests Lib/test/test_exceptions.py /^class AttributeErrorTests(unittest.TestCase):$/;" c +AttributeError_clear Objects/exceptions.c /^AttributeError_clear(PyAttributeErrorObject *self)$/;" f file: +AttributeError_dealloc Objects/exceptions.c /^AttributeError_dealloc(PyAttributeErrorObject *self)$/;" f file: +AttributeError_getstate Objects/exceptions.c /^AttributeError_getstate(PyAttributeErrorObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +AttributeError_init Objects/exceptions.c /^AttributeError_init(PyAttributeErrorObject *self, PyObject *args, PyObject *kwds)$/;" f file: +AttributeError_members Objects/exceptions.c /^static PyMemberDef AttributeError_members[] = {$/;" v file: +AttributeError_methods Objects/exceptions.c /^static PyMethodDef AttributeError_methods[] = {$/;" v file: +AttributeError_reduce Objects/exceptions.c /^AttributeError_reduce(PyAttributeErrorObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +AttributeError_traverse Objects/exceptions.c /^AttributeError_traverse(PyAttributeErrorObject *self, visitproc visit, void *arg)$/;" f file: +AttributeList Lib/xml/dom/minidom.py /^AttributeList = NamedNodeMap$/;" v +AttributeList Modules/_winapi.c /^} AttributeList;$/;" t typeref:struct:__anon536 file: +Attribute_fields Python/Python-ast.c /^static const char * const Attribute_fields[]={$/;" v file: +Attribute_kind Include/internal/pycore_ast.h /^ Attribute_kind=21, Subscript_kind=22, Starred_kind=23,$/;" e enum:_expr_kind +Attribute_type Include/internal/pycore_ast_state.h /^ PyObject *Attribute_type;$/;" m struct:ast_state +AttributesImpl Lib/xml/sax/expatreader.py /^AttributesImpl = xmlreader.AttributesImpl$/;" v +AttributesImpl Lib/xml/sax/xmlreader.py /^class AttributesImpl:$/;" c +AttributesNSImpl Lib/xml/sax/expatreader.py /^AttributesNSImpl = xmlreader.AttributesNSImpl$/;" v +AttributesNSImpl Lib/xml/sax/xmlreader.py /^class AttributesNSImpl(AttributesImpl):$/;" c +AttributesTest Lib/test/test_exception_hierarchy.py /^class AttributesTest(unittest.TestCase):$/;" c +AttributesTestCase Lib/test/test_htmlparser.py /^class AttributesTestCase(TestCaseBase):$/;" c +Au_read Lib/sunau.py /^class Au_read:$/;" c +Au_write Lib/sunau.py /^class Au_write:$/;" c +AudioTests Lib/test/audiotests.py /^class AudioTests:$/;" c +AudioTestsWithSourceFile Lib/test/audiotests.py /^class AudioTestsWithSourceFile(AudioTests):$/;" c +AudioWriteTests Lib/test/audiotests.py /^class AudioWriteTests(AudioTests):$/;" c +AudioopError Modules/audioop.c /^ PyObject *AudioopError;$/;" m struct:__anon558 file: +AuditEvent Doc/tools/extensions/pyspecific.py /^class AuditEvent(Directive):$/;" c +AuditEventListDirective Doc/tools/extensions/pyspecific.py /^class AuditEventListDirective(Directive):$/;" c +AuditRunCommandTest Programs/_testembed.c /^} AuditRunCommandTest;$/;" t typeref:struct:__anon752 file: +AuditTest Lib/test/test_audit.py /^class AuditTest(unittest.TestCase):$/;" c +AuditableBytesIO Lib/test/test_httpservers.py /^class AuditableBytesIO:$/;" c +AuditingTests Lib/test/test_embed.py /^class AuditingTests(EmbeddingTestsMixin, unittest.TestCase):$/;" c +AugAssign Include/internal/pycore_ast.h /^ } AugAssign;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon59 +AugAssignTest Lib/test/test_augassign.py /^class AugAssignTest(unittest.TestCase):$/;" c +AugAssign_fields Python/Python-ast.c /^static const char * const AugAssign_fields[]={$/;" v file: +AugAssign_kind Include/internal/pycore_ast.h /^ TypeAlias_kind=7, AugAssign_kind=8, AnnAssign_kind=9,$/;" e enum:_stmt_kind +AugAssign_type Include/internal/pycore_ast_state.h /^ PyObject *AugAssign_type;$/;" m struct:ast_state +AugLoad Lib/ast.py /^class AugLoad(expr_context):$/;" c +AugOperator Parser/pegen.h /^typedef struct { operator_ty kind; } AugOperator;$/;" t typeref:struct:__anon664 +AugStore Lib/ast.py /^class AugStore(expr_context):$/;" c +AuthHandler Lib/test/test_imaplib.py /^ class AuthHandler(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_login_cram_md5_bytes +AuthHandler Lib/test/test_imaplib.py /^ class AuthHandler(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_login_cram_md5_plain_text +AuthHandler Lib/test/test_imaplib.py /^ class AuthHandler(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_login_cram_md5 +AuthTests Lib/test/test_urllib2net.py /^class AuthTests(unittest.TestCase):$/;" c +AuthenticationError Lib/multiprocessing/context.py /^ AuthenticationError = AuthenticationError$/;" v class:BaseContext +AuthenticationError Lib/multiprocessing/context.py /^class AuthenticationError(ProcessError):$/;" c +AuthenticationString Lib/multiprocessing/process.py /^class AuthenticationString(bytes):$/;" c +AuthorizerIllegalTypeTests Lib/test/test_sqlite3/test_userfunctions.py /^class AuthorizerIllegalTypeTests(AuthorizerTests):$/;" c +AuthorizerLargeIntegerTests Lib/test/test_sqlite3/test_userfunctions.py /^class AuthorizerLargeIntegerTests(AuthorizerTests):$/;" c +AuthorizerRaiseExceptionTests Lib/test/test_sqlite3/test_userfunctions.py /^class AuthorizerRaiseExceptionTests(AuthorizerTests):$/;" c +AuthorizerTests Lib/test/test_sqlite3/test_userfunctions.py /^class AuthorizerTests(unittest.TestCase):$/;" c +Auto Lib/test/test_enum.py /^ class Auto(Enum):$/;" c function:TestVerify.test_continuous +AutoComplete Lib/idlelib/autocomplete.py /^class AutoComplete:$/;" c +AutoCompleteTest Lib/idlelib/idle_test/test_autocomplete.py /^class AutoCompleteTest(unittest.TestCase):$/;" c +AutoCompleteWindow Lib/idlelib/autocomplete_w.py /^class AutoCompleteWindow:$/;" c +AutoCompleteWindowTest Lib/idlelib/idle_test/test_autocomplete_w.py /^class AutoCompleteWindowTest(unittest.TestCase):$/;" c +AutoExpand Lib/idlelib/autoexpand.py /^class AutoExpand:$/;" c +AutoExpandTest Lib/idlelib/idle_test/test_autoexpand.py /^class AutoExpandTest(unittest.TestCase):$/;" c +AutoFileTests Lib/test/test_file.py /^class AutoFileTests:$/;" c +AutoFileTests Lib/test/test_fileio.py /^class AutoFileTests:$/;" c +AutoHideScrollbar Lib/idlelib/textview.py /^class AutoHideScrollbar(Scrollbar):$/;" c +AutoHideScrollbarTest Lib/idlelib/idle_test/test_textview.py /^class AutoHideScrollbarTest(unittest.TestCase):$/;" c +AutoIntEnum Lib/test/test_enum.py /^ class AutoIntEnum(IntEnum, metaclass=auto_enum):$/;" c function:TestSpecial.test_multiple_mixin_mro +AutoNameEnum Lib/test/test_enum.py /^ class AutoNameEnum(Enum):$/;" c function:TestInternals.test_auto_name_inherit +AutoNumber Lib/test/test_enum.py /^ class AutoNumber(Enum):$/;" c function:TestSpecial.test_duplicate_values_give_unique_enum_items +AutoNumber Lib/test/test_enum.py /^ class AutoNumber(Enum):$/;" c function:TestSpecial.test_inherited_new_from_enhanced_enum +AutoNumber Lib/test/test_enum.py /^ class AutoNumber(IntEnum):$/;" c function:TestSpecial.test_inherited_new_from_mixed_enum +AutoNumber Objects/stringlib/unicode_format.h /^} AutoNumber;$/;" t typeref:struct:__anon705 +AutoNumberInAList Lib/test/test_enum.py /^ class AutoNumberInAList(Enum):$/;" c function:TestSpecial.test_nonhash_value +AutoNumberState Objects/stringlib/unicode_format.h /^} AutoNumberState; \/* Keep track if we're auto-numbering fields *\/$/;" t typeref:enum:__anon704 +AutoNumber_Init Objects/stringlib/unicode_format.h /^AutoNumber_Init(AutoNumber *auto_number)$/;" f +AutoNumberedEnum Lib/test/test_enum.py /^ class AutoNumberedEnum(Enum, metaclass=auto_enum):$/;" c function:TestSpecial.test_multiple_mixin_mro +AutoProxy Lib/multiprocessing/managers.py /^def AutoProxy(token, serializer, manager=None, authkey=None,$/;" f +AutocommitAttribute Lib/test/test_sqlite3/test_transactions.py /^class AutocommitAttribute(unittest.TestCase):$/;" c +Availability Doc/tools/extensions/pyspecific.py /^class Availability(SphinxDirective):$/;" c +AverageMixin Lib/test/test_statistics.py /^class AverageMixin(UnivariateCommonMixin):$/;" c +Aw Lib/test/test_asyncio/test_tasks.py /^ class Aw:$/;" c function:BaseTaskTests.test_ensure_future_awaitable +Aw Lib/test/test_asyncio/test_tasks.py /^ class Aw:$/;" c function:BaseTaskTests.test_ensure_future_task_awaitable +Await Include/internal/pycore_ast.h /^ } Await;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon90 +AwaitException Lib/test/test_asyncgen.py /^class AwaitException(Exception):$/;" c +Await_fields Python/Python-ast.c /^static const char * const Await_fields[]={$/;" v file: +Await_kind Include/internal/pycore_ast.h /^ GeneratorExp_kind=12, Await_kind=13, Yield_kind=14,$/;" e enum:_expr_kind +Await_type Include/internal/pycore_ast_state.h /^ PyObject *Await_type;$/;" m struct:ast_state +Awaitable Lib/_collections_abc.py /^class Awaitable(metaclass=ABCMeta):$/;" c +Awaitable Lib/test/test_coroutines.py /^ class Awaitable:$/;" c function:CoroutineTest.test_await_12 +Awaitable Lib/test/test_coroutines.py /^ class Awaitable:$/;" c function:CoroutineTest.test_await_13 +Awaitable Lib/test/test_coroutines.py /^ class Awaitable:$/;" c function:CoroutineTest.test_await_5 +Awaitable Lib/test/test_coroutines.py /^ class Awaitable:$/;" c function:CoroutineTest.test_await_6 +Awaitable Lib/test/test_coroutines.py /^ class Awaitable:$/;" c function:CoroutineTest.test_await_7 +Awaitable Lib/test/test_coroutines.py /^ class Awaitable:$/;" c function:CoroutineTest.test_await_8 +Awaitable Lib/test/test_types.py /^ class Awaitable:$/;" c function:CoroutineTests.test_non_gen_values +Awaitable Lib/typing.py /^Awaitable = _alias(collections.abc.Awaitable, 1)$/;" v +AwaitableClass Lib/test/test_unittest/testmock/testasync.py /^class AwaitableClass:$/;" c +AwaitableState Objects/genobject.c /^} AwaitableState;$/;" t typeref:enum:__anon731 file: +AwaitableWrapper Lib/test/test_typing.py /^class AwaitableWrapper(typing.Awaitable[T_a]):$/;" c +B Lib/test/audit-tests.py /^ class B:$/;" c function:test_monkeypatch +B Lib/test/datetimetester.py /^ class B(self.theclass):$/;" c function:TestDate.test_format +B Lib/test/datetimetester.py /^ class B(self.theclass):$/;" c function:TestDateTime.test_format +B Lib/test/datetimetester.py /^ class B(self.theclass):$/;" c function:TestTime.test_format +B Lib/test/mod_generics_cache.py /^class B(Generic[T]):$/;" c +B Lib/test/pickletester.py /^ class B:$/;" c class:AbstractPickleTests.test_nested_names.Nested.A +B Lib/test/pyclbr_input.py /^class B (object):$/;" c +B Lib/test/pydoc_mod.py /^class B(object):$/;" c +B Lib/test/test_abc.py /^ class B(A):$/;" c function:test_factory.TestABC.test_registration_builtins +B Lib/test/test_abc.py /^ class B(A):$/;" c function:test_factory.TestABC.test_update_as_decorator +B Lib/test/test_abc.py /^ class B(A):$/;" c function:test_factory.TestABC.test_update_del_implementation +B Lib/test/test_abc.py /^ class B(A):$/;" c function:test_factory.TestABC.test_update_implementation +B Lib/test/test_abc.py /^ class B(A):$/;" c function:test_factory.TestABC.test_update_layered_implementation +B Lib/test/test_abc.py /^ class B(A, metaclass=abc_ABCMeta, name="test"):$/;" c function:test_factory.TestABCWithInitSubclass.test_positional_only_and_kwonlyargs_with_init_subclass +B Lib/test/test_abc.py /^ class B(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_registration_transitiveness +B Lib/test/test_abc.py /^ class B(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_update_multi_inheritance +B Lib/test/test_abc.py /^ class B(object):$/;" c function:test_factory.TestABC.test_all_new_methods_are_called +B Lib/test/test_abc.py /^ class B(object):$/;" c function:test_factory.TestABC.test_register_as_class_deco +B Lib/test/test_abc.py /^ class B(object):$/;" c function:test_factory.TestABC.test_registration_basics +B Lib/test/test_abc.py /^ class B(object):$/;" c function:test_factory.TestABC.test_registration_edge_cases +B Lib/test/test_abc.py /^ class B: ...$/;" c function:test_factory.TestABC.test_tricky_new_works +B Lib/test/test_abc.py /^ class B:$/;" c function:test_factory.TestABC.test_isinstance_invalidation +B Lib/test/test_abc.py /^ class B:$/;" c function:test_factory.TestABC.test_subclasshook +B Lib/test/test_array.py /^ def B():$/;" f function:BaseTest.test_constructor_with_iterable_argument +B Lib/test/test_binop.py /^class B(OperationLogger, metaclass=ABCMeta):$/;" c +B Lib/test/test_bool.py /^ class B:$/;" c function:BoolTest.test_blocked +B Lib/test/test_buffer.py /^ class B(A, bytearray):$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last +B Lib/test/test_buffer.py /^ class B(bytearray):$/;" c function:TestPythonBufferProtocol.test_inherit_but_return_something_else +B Lib/test/test_buffer.py /^ class B(bytearray):$/;" c function:TestPythonBufferProtocol.test_inheritance_releasebuffer +B Lib/test/test_buffer.py /^ class B(bytearray, A):$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising +B Lib/test/test_builtin.py /^ class B:$/;" c function:BuiltinTest.test_format +B Lib/test/test_builtin.py /^ class B:$/;" c function:BuiltinTest.test_hasattr +B Lib/test/test_builtin.py /^ class B:$/;" c function:TestType.test_bad_slots +B Lib/test/test_builtin.py /^ class B:$/;" c function:TestType.test_new_type +B Lib/test/test_bytes.py /^ class B(bytes):$/;" c function:BaseBytesTest.test_from_buffer +B Lib/test/test_capi/test_misc.py /^ class B(A):$/;" c function:CAPITest.test_subclass_of_heap_gc_ctype_with_del_modifying_dunder_class_only_decrefs_once +B Lib/test/test_class.py /^ class B(A):$/;" c function:ClassTests.testHashComparisonOfMethods +B Lib/test/test_class.py /^ class B:$/;" c function:ClassTests.testObjectAttributeAccessErrorMessages +B Lib/test/test_collections.py /^ class B(A):$/;" c function:TestNamedTuple.test_repr +B Lib/test/test_dataclasses.py /^ class B(A):$/;" c class:TestKeywordArgs.test_KW_ONLY_twice.B +B Lib/test/test_dataclasses.py /^ class B:$/;" c class:TestCase.test_two_fields_one_default.C +B Lib/test/test_dataclasses.py /^ class B(A):$/;" c function:TestCase.test_intermediate_non_dataclass +B Lib/test/test_dataclasses.py /^ class B(A):$/;" c function:TestKeywordArgs.test_KW_ONLY_twice +B Lib/test/test_dataclasses.py /^ class B(A):$/;" c function:TestMatchArgs.test_match_args_argument +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestCase.test_compare_subclasses +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestCase.test_field_order +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestCase.test_is_dataclass_when_getattr_always_returns +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestCase.test_post_init_super +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestFieldNoAnnotation.test_field_without_annotation_but_annotation_in_base +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestFieldNoAnnotation.test_field_without_annotation_but_annotation_in_base_not_dataclass +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestInit.test_base_has_init +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestKeywordArgs.test_KW_ONLY +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestKeywordArgs.test_post_init +B Lib/test/test_dataclasses.py /^ class B:$/;" c function:TestRepr.test_repr +B Lib/test/test_decorators.py /^ class B:$/;" c function:TestDecorators.test_bound_function_inside_classmethod +B Lib/test/test_descr.py /^ class B(A1, A2):$/;" c class:.test_errors.A2 +B Lib/test/test_descr.py /^ class B(A): pass$/;" c function:.test_mro_disagreement +B Lib/test/test_descr.py /^ class B(A):$/;" c function:.test_altmro +B Lib/test/test_descr.py /^ class B(A):$/;" c function:.test_ipow_returns_not_implemented +B Lib/test/test_descr.py /^ class B(A):$/;" c function:.test_restored_object_new +B Lib/test/test_descr.py /^ class B(A):$/;" c function:.test_subclass_propagation +B Lib/test/test_descr.py /^ class B(A):$/;" c function:.test_supers +B Lib/test/test_descr.py /^ class B(A):$/;" c function:ClassPropertiesAndMethods.test_diamond_inheritance +B Lib/test/test_descr.py /^ class B(A):$/;" c function:ClassPropertiesAndMethods.test_metaclass +B Lib/test/test_descr.py /^ class B(A):$/;" c function:MroTest.test_reent_set_bases_on_base +B Lib/test/test_descr.py /^ class B(A):$/;" c function:MroTest.test_reent_set_bases_on_direct_base +B Lib/test/test_descr.py /^ class B(A):$/;" c function:SharedKeyTests.test_subclasses +B Lib/test/test_descr.py /^ class B(int):$/;" c function:.test_subclass_right_op +B Lib/test/test_descr.py /^ class B(metaclass=BMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +B Lib/test/test_descr.py /^ class B(metaclass=BNotMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +B Lib/test/test_descr.py /^ class B(object): pass$/;" c function:ClassPropertiesAndMethods.test_ex5_from_c3_switch +B Lib/test/test_descr.py /^ class B(object):$/;" c function:.test_getattr_hooks +B Lib/test/test_descr.py /^ class B(object):$/;" c function:.test_mutable_bases_catch_mro_conflict +B Lib/test/test_descr.py /^ class B(object):$/;" c function:.test_overloading +B Lib/test/test_descr.py /^ class B(object):$/;" c function:.test_proxy_super +B Lib/test/test_descr.py /^ class B(object):$/;" c function:.test_slots_multiple_inheritance +B Lib/test/test_descr.py /^ class B(object):$/;" c function:ClassPropertiesAndMethods.test_metaclass +B Lib/test/test_descr.py /^ class B(object):$/;" c function:DictProxyTests.test_dict_type_with_metaclass +B Lib/test/test_descr.py /^ class B:$/;" c function:.test_attr_raise_through_property +B Lib/test/test_descr.py /^ class B:$/;" c function:.test_carloverre_multi_inherit_invalid +B Lib/test/test_descr.py /^ class B:$/;" c function:.test_carloverre_multi_inherit_valid +B Lib/test/test_descr.py /^ class B:$/;" c function:.test_no_ipow +B Lib/test/test_descr.py /^ class B:$/;" c function:MroTest.test_disappearing_custom_mro +B Lib/test/test_descrtut.py /^class B(A):$/;" c +B Lib/test/test_enum.py /^ B = 2$/;" v class:OldTestFlag.test_boundary.SkipFlag +B Lib/test/test_enum.py /^ B = 2$/;" v class:OldTestFlag.test_boundary.SkipIntFlag +B Lib/test/test_enum.py /^ B = 2$/;" v class:TestSpecial.test_inherited_data_type.MyEnum +B Lib/test/test_enum.py /^ B = 2$/;" v class:_FlagTests.test_closed_invert_expectations.ClosedAB +B Lib/test/test_enum.py /^ B = 2$/;" v class:_FlagTests.test_open_invert_expectations.OpenAB +B Lib/test/test_enum.py /^ B = 4$/;" v class:TestSpecial.setUp.Grades +B Lib/test/test_enum.py /^ B = 4$/;" v class:TestSpecial.test_ordered_mixin.Grade +B Lib/test/test_enum.py /^ B = TTuple(2, 4, [0, 1, 2])$/;" v class:TestSpecial.test_namedtuple_as_value.NTEnum +B Lib/test/test_exceptions.py /^ class B(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle2 +B Lib/test/test_exceptions.py /^ class B(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle3 +B Lib/test/test_exceptions.py /^ class B(Exception):$/;" c function:ExceptionTests.test_raise_does_not_create_context_chain_cycle +B Lib/test/test_functools.py /^ class B(object):$/;" c function:TestPartialMethod.test_invalid_args +B Lib/test/test_functools.py /^ class B:$/;" c function:TestPartialMethod.test_invalid_args +B Lib/test/test_functools.py /^ class B(A):$/;" c function:TestSingleDispatch.test_c3_abc +B Lib/test/test_functools.py /^ class B(A):$/;" c function:TestSingleDispatch.test_mro +B Lib/test/test_functools.py /^ class B(metaclass=SortableMeta):$/;" c function:TestTotalOrdering.test_total_ordering_for_metaclasses_issue_44605 +B Lib/test/test_functools.py /^ class B:$/;" c function:TestCachedProperty.test_reuse_same_name +B Lib/test/test_gc.py /^ class B(list):$/;" c function:GCTests.test_newinstance +B Lib/test/test_gc.py /^ class B(object):$/;" c function:GCTests.test_legacy_finalizer_newclass +B Lib/test/test_gc.py /^ class B:$/;" c function:GCTests.test_bug21435 +B Lib/test/test_gc.py /^ class B:$/;" c function:GCTests.test_legacy_finalizer +B Lib/test/test_genericclass.py /^ class B(A):$/;" c function:TestClassGetitem.test_class_getitem_with_builtins +B Lib/test/test_genericclass.py /^ class B: ...$/;" c function:TestMROEntry.test_mro_entry +B Lib/test/test_genericclass.py /^ class B: ...$/;" c function:TestMROEntry.test_mro_entry_none +B Lib/test/test_genericclass.py /^ class B: ...$/;" c function:TestMROEntry.test_mro_entry_signature +B Lib/test/test_grammar.py /^ class B(A):$/;" c function:GrammarTests.test_annotations_inheritance +B Lib/test/test_grammar.py /^ class B: pass$/;" c function:GrammarTests.test_classdef +B Lib/test/test_inspect.py /^ class B(A): pass$/;" c function:TestClassesAndFunctions.test_newstyle_mro +B Lib/test/test_inspect.py /^ class B(A):$/;" c function:TestClassesAndFunctions.test_classify_newstyle +B Lib/test/test_inspect.py /^ class B(A):$/;" c function:TestClassesAndFunctions.test_getmembers_descriptors +B Lib/test/test_inspect.py /^ class B(A):$/;" c function:TestSignatureObject.test_signature_on_subclass +B Lib/test/test_inspect.py /^ class B:$/;" c function:TestClassesAndFunctions.test_getmembers_VirtualAttribute +B Lib/test/test_inspect.py /^ class B:$/;" c function:TestClassesAndFunctions.test_getmembers_method +B Lib/test/test_inspect.py /^ class B:$/;" c function:TestSignatureObject.test_signature_on_derived_classes +B Lib/test/test_isinstance.py /^ class B:$/;" c function:TestIsInstanceIsSubclass.test_infinitely_many_bases.X.__getattr__ +B Lib/test/test_isinstance.py /^ class B: pass$/;" c function:TestIsSubclassExceptions.test_dont_mask_non_attribute_error_in_cls_arg +B Lib/test/test_isinstance.py /^ class B: pass$/;" c function:TestIsSubclassExceptions.test_mask_attribute_error_in_cls_arg +B Lib/test/test_isinstance.py /^ class B:$/;" c function:TestIsInstanceIsSubclass.test_issubclass_refcount_handling +B Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class B: pass$/;" c function:GrammarTests.testClassdef +B Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class B: pass$/;" c function:GrammarTests.testClassdef +B Lib/test/test_patma.py /^ B = 0$/;" v class:TestPatma.test_patma_009.A +B Lib/test/test_patma.py /^ B = 0$/;" v class:TestPatma.test_patma_111.A +B Lib/test/test_patma.py /^ class B:$/;" c class:TestPatma.test_patma_112.A +B Lib/test/test_patma.py /^ class B:$/;" c class:TestPatma.test_patma_113.A +B Lib/test/test_patma.py /^ class B:$/;" c class:TestPatma.test_patma_114.A +B Lib/test/test_patma.py /^ class B:$/;" c class:TestPatma.test_patma_115.A +B Lib/test/test_picklebuffer.py /^class B(bytes):$/;" c +B Lib/test/test_pydoc.py /^ class B(A):$/;" c function:PydocDocTest.test_method_aliases +B Lib/test/test_pydoc.py /^ class B:$/;" c function:PydocDocTest.test_non_str_name +B Lib/test/test_re.py /^class B(bytes):$/;" c +B Lib/test/test_rlcompleter.py /^ class B(list):$/;" c function:TestRlcompleter.test_namespace +B Lib/test/test_subclassinit.py /^ class B(A):$/;" c class:Test.test_init_subclass_error.A +B Lib/test/test_subclassinit.py /^ class B(A):$/;" c class:Test.test_init_subclass_wrong.A +B Lib/test/test_subclassinit.py /^ class B(A):$/;" c function:Test.test_init_subclass +B Lib/test/test_subclassinit.py /^ class B(A):$/;" c function:Test.test_init_subclass_dict +B Lib/test/test_subclassinit.py /^ class B(A, metaclass=Meta):$/;" c function:Test.test_set_name_init_subclass +B Lib/test/test_subclassinit.py /^ class B(A, x=3):$/;" c function:Test.test_init_subclass_kwargs +B Lib/test/test_super.py /^ class B(A):$/;" c function:TestSuper.test_mixed_staticmethod_hierarchy +B Lib/test/test_super.py /^ class B(A):$/;" c function:TestSuper.test_reassigned_new +B Lib/test/test_super.py /^class B(A):$/;" c +B Lib/test/test_sys.py /^ class B:$/;" c class:UnraisableHookTest.test_original_unraisablehook_exception_qualname.A +B Lib/test/test_traceback.py /^ class B:$/;" c class:BaseExceptionReportingTests.test_exception_qualname.A +B Lib/test/test_traceback.py /^ class B:$/;" c function:SuggestionFormattingTestBase.test_attribute_error_inside_nested_getattr +B Lib/test/test_traceback.py /^ class B:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args +B Lib/test/test_types.py /^ B = 1$/;" v class:UnionTests.test_or_type_operator_with_Literal.Ints +B Lib/test/test_types.py /^ class B(typing.Generic[T]): pass$/;" c function:ClassCreationTests.test_get_original_bases +B Lib/test/test_types.py /^ class B: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_none +B Lib/test/test_types.py /^ class B: pass$/;" c function:ClassCreationTests.test_resolve_bases +B Lib/test/test_types.py /^ class B:$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple +B Lib/test/test_types.py /^ class B:$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +B Lib/test/test_typing.py /^ B = 1$/;" v class:UnionTests.test_union_of_literals.Ints +B Lib/test/test_typing.py /^ B = 2$/;" v class:LiteralTests.test_does_not_flatten_enum.Ints +B Lib/test/test_typing.py /^ B = A[*Ts]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +B Lib/test/test_typing.py /^ B = A[T, *Ts, str, T2]$/;" v class:TypeVarTupleTests.test_bad_var_substitution.G2 +B Lib/test/test_typing.py /^ B = A[Ts]$/;" v class:TypeVarTupleTests.test_bad_var_substitution.G2 +B Lib/test/test_typing.py /^ class B:$/;" c class:ForwardRefTests.test_no_type_check_nested_types.A +B Lib/test/test_typing.py /^ class B(A): ...$/;" c function:CollectionsAbcTests.test_subclassing_register +B Lib/test/test_typing.py /^ class B(A):$/;" c function:ProtocolTests.test_none_on_callable_blocks_implementation +B Lib/test/test_typing.py /^ class B(A):$/;" c function:ProtocolTests.test_none_on_non_callable_doesnt_block_implementation +B Lib/test/test_typing.py /^ class B(A[KT], total=False):$/;" c function:TypedDictTests.test_generic_inheritance +B Lib/test/test_typing.py /^ class B(A[KT], total=False):$/;" c function:TypedDictTests.test_implicit_any_inheritance +B Lib/test/test_typing.py /^ class B(Generic[KT, T]):$/;" c function:GenericTests.test_multiple_inheritance +B Lib/test/test_typing.py /^ class B(Generic[S]): ...$/;" c function:GenericTests.test_multiple_inheritance_special +B Lib/test/test_typing.py /^ class B(Generic[T1, T2, Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_2_typevars_accepts_2_or_more_args +B Lib/test/test_typing.py /^ class B(Generic[T]):$/;" c function:GenericTests.test_dict +B Lib/test/test_typing.py /^ class B(Generic[T]):$/;" c function:GenericTests.test_eq_2 +B Lib/test/test_typing.py /^ class B(Generic[T]):$/;" c function:GenericTests.test_generic_hashes +B Lib/test/test_typing.py /^ class B(Generic[T]):$/;" c function:GenericTests.test_pickle +B Lib/test/test_typing.py /^ class B(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_args_are_correct +B Lib/test/test_typing.py /^ class B(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_repr_is_correct +B Lib/test/test_typing.py /^ class B(P):$/;" c function:ProtocolTests.test_cannot_instantiate_abstract +B Lib/test/test_typing.py /^ class B(object): pass$/;" c function:ProtocolTests.test_none_treated_correctly +B Lib/test/test_typing.py /^ class B: # Has the same `__name__`` as `A.B` and different `__qualname__`$/;" c function:ForwardRefTests.test_no_type_check_nested_types +B Lib/test/test_typing.py /^ class B: ...$/;" c function:CollectionsAbcTests.test_collections_as_base +B Lib/test/test_typing.py /^ class B: ...$/;" c function:GetTypeHintTests.test_get_type_hints_for_object_with_annotations +B Lib/test/test_typing.py /^ class B:$/;" c function:GenericTests.test_new_no_args +B Lib/test/test_typing.py /^ class B:$/;" c function:GenericTests.test_new_with_args +B Lib/test/test_typing.py /^ class B:$/;" c function:ProtocolTests.test_collections_protocols_allowed +B Lib/test/test_typing.py /^ class B:$/;" c function:ProtocolTests.test_init_called +B Lib/test/test_typing.py /^ class B:$/;" c function:ProtocolTests.test_supports_bytes +B Lib/test/test_typing.py /^class B(A):$/;" c +B Lib/test/test_unittest/testmock/testmock.py /^ class B(object):$/;" c class:MockTest.test_autospec_mock.A +B Lib/test/test_with.py /^ class B: pass$/;" c function:AssignmentTargetTestCase.testMultipleComplexTargets +B Lib/turtledemo/lindenmayer.py /^ def B():$/;" f function:main +B Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:2;$/;" m struct:__anon508 file: +B Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +B Modules/_ctypes/_ctypes_test.c /^ unsigned int A: 1, B:2, C:3, D:2;$/;" m struct:__anon509 file: +B Tools/scripts/var_access_benchmark.py /^class B(object):$/;" c +B0 Lib/test/test_dataclasses.py /^ class B0:$/;" c function:TestCase.test_post_init_not_auto_added +B1 Lib/test/test_abc.py /^ class B1(B):$/;" c function:test_factory.TestABC.test_registration_transitiveness +B1 Lib/test/test_capi/test_misc.py /^ class B1(C3, cls):$/;" c class:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict_and_other_builtin.C4 +B1 Lib/test/test_dataclasses.py /^ class B1:$/;" c function:TestCase.test_post_init_not_auto_added +B1 Lib/test/test_descr.py /^ class B1(A):$/;" c function:MroTest.test_reent_set_bases_tp_base_cycle +B1 Lib/test/test_descr.py /^ class B1(A):$/;" c function:MroTest.test_tp_subclasses_cycle_error_return_path +B1 Lib/test/test_descr.py /^ class B1(A):$/;" c function:MroTest.test_tp_subclasses_cycle_in_update_slots +B1 Lib/test/test_types.py /^ class B1: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple +B1 Lib/test/test_types.py /^ class B1: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +B2 Lib/test/test_capi/test_misc.py /^ class B2(C4, cls):$/;" c class:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict_and_other_builtin.C4 +B2 Lib/test/test_descr.py /^ class B2(A):$/;" c function:MroTest.test_reent_set_bases_tp_base_cycle +B2 Lib/test/test_descr.py /^ class B2(A):$/;" c function:MroTest.test_tp_subclasses_cycle_error_return_path +B2 Lib/test/test_descr.py /^ class B2(A):$/;" c function:MroTest.test_tp_subclasses_cycle_in_update_slots +B2 Lib/test/test_grammar.py /^ class B2(): pass$/;" c function:GrammarTests.test_classdef +B2 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class B2(): pass$/;" c function:GrammarTests.testClassdef +B2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class B2(): pass$/;" c function:GrammarTests.testClassdef +B2 Lib/test/test_types.py /^ class B2: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple +B2 Lib/test/test_types.py /^ class B2: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +BA Lib/test/test_sys.py /^ class BA(bytearray):$/;" c function:SizeofTest.test_slots +BACKQUOTE Lib/lib2to3/pgen2/token.py /^BACKQUOTE = 25$/;" v +BACKSLASH Lib/json/decoder.py /^BACKSLASH = {$/;" v +BACKSLASH Tools/cases_generator/lexer.py /^BACKSLASH = r'\\\\'$/;" v +BACKWARD_CYCLE Modules/_decimal/libmpdec/transpose.h /^enum {FORWARD_CYCLE, BACKWARD_CYCLE};$/;" e enum:__anon344 +BADCERT Lib/test/test_ssl.py /^BADCERT = data_file("badcert.pem")$/;" v +BADEXIT Python/dup2.c 18;" d file: +BADKEY Lib/test/test_ssl.py /^BADKEY = data_file("badkey.pem")$/;" v +BAD_CERTIFICATE Lib/ssl.py /^ BAD_CERTIFICATE = 42$/;" v class:_TLSAlertType +BAD_CERTIFICATE Lib/test/test_ssl.py /^ BAD_CERTIFICATE = 42$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +BAD_CERTIFICATE_HASH_VALUE Lib/ssl.py /^ BAD_CERTIFICATE_HASH_VALUE = 114$/;" v class:_TLSAlertType +BAD_CERTIFICATE_HASH_VALUE Lib/test/test_ssl.py /^ BAD_CERTIFICATE_HASH_VALUE = 114$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +BAD_CERTIFICATE_STATUS_RESPONSE Lib/ssl.py /^ BAD_CERTIFICATE_STATUS_RESPONSE = 113$/;" v class:_TLSAlertType +BAD_CERTIFICATE_STATUS_RESPONSE Lib/test/test_ssl.py /^ BAD_CERTIFICATE_STATUS_RESPONSE = 113$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +BAD_DATA Lib/test/test_bz2.py /^ BAD_DATA = b'this is not a valid bzip2 file'$/;" v class:BaseTest +BAD_DATA Lib/test/test_zlib.py /^ BAD_DATA = b"Not a valid deflate block"$/;" v class:ZlibDecompressorTest +BAD_GATEWAY Lib/http/__init__.py /^ BAD_GATEWAY = (502, 'Bad Gateway',$/;" v class:HTTPStatus +BAD_GATEWAY Lib/test/test_httplib.py /^ BAD_GATEWAY = (502, 'Bad Gateway',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +BAD_RECORD_MAC Lib/ssl.py /^ BAD_RECORD_MAC = 20$/;" v class:_TLSAlertType +BAD_RECORD_MAC Lib/test/test_ssl.py /^ BAD_RECORD_MAC = 20$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +BAD_REQUEST Lib/http/__init__.py /^ BAD_REQUEST = (400, 'Bad Request',$/;" v class:HTTPStatus +BAD_REQUEST Lib/test/test_httplib.py /^ BAD_REQUEST = (400, 'Bad Request',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +BALLOON Lib/tkinter/tix.py /^BALLOON = 'balloon'$/;" v +BANANA Lib/test/test_enum.py /^ BANANA = 2$/;" v class:.Fruit +BAND Lib/ast.py /^ BAND = auto() # '&'$/;" v class:_Precedence +BAND Lib/test/test_ast.py /^ BAND = enum.auto() # '&'$/;" v class:AST_Tests.test_precedence_enum._Precedence +BANDWIDTH_DURATION Tools/ccbench/ccbench.py /^BANDWIDTH_DURATION = 2.0$/;" v +BANDWIDTH_PACKET_SIZE Tools/ccbench/ccbench.py /^BANDWIDTH_PACKET_SIZE = 1024$/;" v +BARE_KEY_CHARS Lib/tomllib/_parser.py /^BARE_KEY_CHARS = frozenset(string.ascii_letters + string.digits + "-_")$/;" v +BARREL Lib/test/test_enum.py /^ BARREL = 3$/;" v class:TestSpecial.test_comparisons.Part +BASE Lib/test/test_long.py /^BASE = 2 ** SHIFT$/;" v +BASE Lib/test/test_pathlib.py /^BASE = os.path.realpath(TESTFN)$/;" v +BASE packaging/skipped_tests.py /^BASE = "python3-base.spec"$/;" v +BASE64 Lib/email/charset.py /^BASE64 = 2 # Base64$/;" v +BASE64_MAXBIN Modules/binascii.c 104;" d file: +BASE64_PAD Modules/binascii.c 101;" d file: +BASELINE Lib/tkinter/constants.py /^BASELINE='baseline'$/;" v +BASE_COLUMNS Tools/c-analyzer/c_parser/datafiles.py /^BASE_COLUMNS = [$/;" v +BASE_INACCESSIBLE Objects/memoryobject.c 178;" d file: +BASE_NODETYPES Tools/peg_generator/pegen/c_generator.py /^BASE_NODETYPES = {$/;" v +BASE_TIME Lib/test/test_timeit.py /^ BASE_TIME = 42.0$/;" v class:FakeTimer +BASIC_FORMAT Lib/logging/__init__.py /^BASIC_FORMAT = "%(levelname)s:%(name)s:%(message)s"$/;" v +BASIC_POP Python/ceval_macros.h 212;" d +BASIC_PUSH Python/ceval_macros.h 211;" d +BASIC_STACKADJ Python/ceval_macros.h 210;" d +BASIC_STR_ESCAPE_REPLACEMENTS Lib/tomllib/_parser.py /^BASIC_STR_ESCAPE_REPLACEMENTS = MappingProxyType($/;" v +BATCHSIZE Modules/_pickle.c /^ BATCHSIZE = 1000,$/;" e enum:__anon447 file: +BBB Lib/test/pickletester.py /^class BBB(object):$/;" c +BBControl Lib/msilib/schema.py /^BBControl = Table('BBControl')$/;" v +BB_HAS_FALLTHROUGH Include/internal/pycore_flowgraph.h 110;" d +BB_NO_FALLTHROUGH Include/internal/pycore_flowgraph.h 109;" d +BB_getitem Modules/arraymodule.c /^BB_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +BB_setitem Modules/arraymodule.c /^BB_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +BCD_method Lib/test/pydocfodder.py /^ def BCD_method(self):$/;" m class:B_new +BCD_method Lib/test/pydocfodder.py /^ def BCD_method(self):$/;" m class:C_new +BCD_method Lib/test/pydocfodder.py /^ def BCD_method(self):$/;" m class:D_new +BCPPCompiler Tools/c-analyzer/distutils/bcppcompiler.py /^class BCPPCompiler(CCompiler) :$/;" c +BC_method Lib/test/pydocfodder.py /^ def BC_method(self):$/;" m class:B_new +BC_method Lib/test/pydocfodder.py /^ def BC_method(self):$/;" m class:C_new +BCinfo Python/dtoa.c /^BCinfo {$/;" s file: +BCinfo Python/dtoa.c /^typedef struct BCinfo BCinfo;$/;" t typeref:struct:BCinfo file: +BClass Lib/test/test_opcodes.py /^ class BClass(AClass): pass$/;" c function:OpcodeTest.test_raise_class_exceptions +BDFL Lib/test/test_enum.py /^ BDFL = 'Guido van Rossum'$/;" v class:Name +BD_method Lib/test/pydocfodder.py /^ def BD_method(self):$/;" m class:B_new +BD_method Lib/test/pydocfodder.py /^ def BD_method(self):$/;" m class:D_new +BEETLE Lib/test/test_enum.py /^ BEETLE = ('small', 6)$/;" v class:TestSpecial.test_repr_with_dataclass.Creature +BEFORE_ASYNC_WITH Include/opcode.h 35;" d +BEFORE_WITH Include/opcode.h 36;" d +BEGIN_CODECS_LIST Modules/cjkcodecs/cjkcodecs.h 252;" d +BEGIN_MAPPINGS_LIST Modules/cjkcodecs/cjkcodecs.h 228;" d +BEGIN_MARKER Tools/cases_generator/generate_cases.py /^BEGIN_MARKER = "\/\/ BEGIN BYTECODES \/\/"$/;" v +BEL Lib/curses/ascii.py /^BEL = 0x07 # ^G$/;" v +BEPoint Lib/test/test_buffer.py /^ class BEPoint(ctypes.BigEndianStructure):$/;" c function:TestBufferProtocol.test_memoryview_cast_1D_ND +BEPoint Lib/test/test_buffer.py /^ class BEPoint(ctypes.BigEndianStructure):$/;" c function:TestBufferProtocol.test_memoryview_compare_special_cases +BEPoint Lib/test/test_buffer.py /^ class BEPoint(ctypes.BigEndianStructure):$/;" c function:TestBufferProtocol.test_memoryview_tobytes +BEPoint Lib/test/test_ctypes/test_pep3118.py /^class BEPoint(BigEndianStructure):$/;" c +BEVEL Lib/tkinter/constants.py /^BEVEL='bevel'$/;" v +BE_DOUBLE_INF Lib/test/test_float.py /^BE_DOUBLE_INF = b'\\x7f\\xf0\\x00\\x00\\x00\\x00\\x00\\x00'$/;" v +BE_DOUBLE_NAN Lib/test/test_float.py /^BE_DOUBLE_NAN = b'\\x7f\\xf8\\x00\\x00\\x00\\x00\\x00\\x00'$/;" v +BE_FLOAT_INF Lib/test/test_float.py /^BE_FLOAT_INF = b'\\x7f\\x80\\x00\\x00'$/;" v +BE_FLOAT_NAN Lib/test/test_float.py /^BE_FLOAT_NAN = b'\\x7f\\xc0\\x00\\x00'$/;" v +BE_MAGIC Lib/gettext.py /^ BE_MAGIC = 0xde120495$/;" v class:GNUTranslations +BF_KEY Lib/test/test_lib2to3/data/infinite_recursion.py /^BF_KEY = bf_key_st$/;" v +BH2S Modules/cjkcodecs/_codecs_hk.c 108;" d file: +BIAS Modules/audioop.c 61;" d file: +BIDIRECTIONAL_NAMES Tools/unicode/makeunicodedata.py /^BIDIRECTIONAL_NAMES = [ "", "L", "LRE", "LRO", "R", "AL", "RLE", "RLO",$/;" v +BIG Lib/test/test_deque.py /^BIG = 100000$/;" v +BIG Lib/test/test_enum.py /^ BIG = 389$/;" v class:.FlagStooges +BIG Lib/test/test_enum.py /^ BIG = 389$/;" v class:FlagStoogesWithZero +BIG Lib/test/test_enum.py /^ BIG = 389$/;" v class:IntFlagStooges +BIG Lib/test/test_enum.py /^ BIG = 389$/;" v class:IntFlagStoogesWithZero +BIG Lib/test/test_json/test_enum.py /^BIG = 1<<32$/;" v +BIG2_BYTE_TO_ASCII Modules/expat/xmltok.c 878;" d file: +BIG2_BYTE_TYPE Modules/expat/xmltok.c 874;" d file: +BIG2_CHAR_MATCHES Modules/expat/xmltok.c 879;" d file: +BIG2_IS_NAME_CHAR_MINBPC Modules/expat/xmltok.c 880;" d file: +BIG2_IS_NMSTRT_CHAR_MINBPC Modules/expat/xmltok.c 882;" d file: +BIG5HKSCS_C1 Tools/unicode/genmap_tchinese.py /^BIG5HKSCS_C1 = (0x87, 0xfe)$/;" v +BIG5HKSCS_C2 Tools/unicode/genmap_tchinese.py /^BIG5HKSCS_C2 = (0x40, 0xfe)$/;" v +BIG5_C1 Tools/unicode/genmap_tchinese.py /^BIG5_C1 = (0xa1, 0xfe)$/;" v +BIG5_C2 Tools/unicode/genmap_tchinese.py /^BIG5_C2 = (0x40, 0xfe)$/;" v +BIGNUM Lib/test/test_lib2to3/data/infinite_recursion.py /^BIGNUM = bignum_st$/;" v +BIG_DATA Lib/test/test_bz2.py /^ BIG_DATA = bz2.compress(BIG_TEXT, compresslevel=1)$/;" v class:BaseTest +BIG_DATA Lib/test/test_zlib.py /^ BIG_DATA = zlib.compress(BIG_TEXT)$/;" v class:ZlibDecompressorTest +BIG_ENDIAN Lib/test/test_float.py /^BIG_ENDIAN = 0$/;" v +BIG_TEXT Lib/test/test_bz2.py /^ BIG_TEXT = bytearray(128*1024)$/;" v class:BaseTest +BIG_TEXT Lib/test/test_zlib.py /^ BIG_TEXT = DATA * ((128 * 1024 \/\/ len(DATA)) + 1)$/;" v class:ZlibDecompressorTest +BINARY Lib/telnetlib.py /^BINARY = bytes([0]) # 8-bit data path$/;" v +BINARY_COMPLEX Tools/build/umarshal.py /^ BINARY_COMPLEX = ord('y')$/;" v class:Type +BINARY_FLOAT Tools/build/umarshal.py /^ BINARY_FLOAT = ord('g')$/;" v class:Type +BINARY_FUNC Objects/abstract.c 1045;" d file: +BINARY_IOP1 Objects/abstract.c 1195;" d file: +BINARY_IOP1 Objects/abstract.c 1197;" d file: +BINARY_OP Include/opcode.h 80;" d +BINARY_OP Lib/dis.py /^BINARY_OP = opmap['BINARY_OP']$/;" v +BINARY_OP1 Objects/abstract.c 901;" d file: +BINARY_OP1 Objects/abstract.c 903;" d file: +BINARY_OP_ADD_FLOAT Include/opcode.h 155;" d +BINARY_OP_ADD_INT Include/opcode.h 156;" d +BINARY_OP_ADD_UNICODE Include/opcode.h 157;" d +BINARY_OP_INPLACE_ADD_UNICODE Include/opcode.h 158;" d +BINARY_OP_MULTIPLY_FLOAT Include/opcode.h 159;" d +BINARY_OP_MULTIPLY_INT Include/opcode.h 160;" d +BINARY_OP_SUBTRACT_FLOAT Include/opcode.h 161;" d +BINARY_OP_SUBTRACT_INT Include/opcode.h 162;" d +BINARY_SLICE Include/opcode.h 23;" d +BINARY_SUBSCR Include/opcode.h 22;" d +BINARY_SUBSCR_DICT Include/opcode.h 163;" d +BINARY_SUBSCR_GETITEM Include/opcode.h 164;" d +BINARY_SUBSCR_LIST_INT Include/opcode.h 165;" d +BINARY_SUBSCR_TUPLE_INT Include/opcode.h 166;" d +BINASCII_A2B_BASE64_METHODDEF Modules/clinic/binascii.c.h 128;" d +BINASCII_A2B_HEX_METHODDEF Modules/clinic/binascii.c.h 569;" d +BINASCII_A2B_QP_METHODDEF Modules/clinic/binascii.c.h 633;" d +BINASCII_A2B_UU_METHODDEF Modules/clinic/binascii.c.h 17;" d +BINASCII_B2A_BASE64_METHODDEF Modules/clinic/binascii.c.h 199;" d +BINASCII_B2A_HEX_METHODDEF Modules/clinic/binascii.c.h 389;" d +BINASCII_B2A_QP_METHODDEF Modules/clinic/binascii.c.h 708;" d +BINASCII_B2A_UU_METHODDEF Modules/clinic/binascii.c.h 48;" d +BINASCII_CRC32_METHODDEF Modules/clinic/binascii.c.h 319;" d +BINASCII_CRC_HQX_METHODDEF Modules/clinic/binascii.c.h 275;" d +BINASCII_HEXLIFY_METHODDEF Modules/clinic/binascii.c.h 482;" d +BINASCII_UNHEXLIFY_METHODDEF Modules/clinic/binascii.c.h 602;" d +BINBYTES Lib/pickle.py /^BINBYTES = b'B' # push bytes; counted binary string argument$/;" v +BINBYTES Modules/_pickle.c /^ BINBYTES = 'B',$/;" e enum:opcode file: +BINBYTES8 Lib/pickle.py /^BINBYTES8 = b'\\x8e' # push very long bytes string$/;" v +BINBYTES8 Modules/_pickle.c /^ BINBYTES8 = '\\x8e',$/;" e enum:opcode file: +BINDING Modules/expat/xmlparse.c /^} BINDING;$/;" t typeref:struct:binding file: +BINFLOAT Lib/pickle.py /^BINFLOAT = b'G' # push float; arg is 8-byte float encoding$/;" v +BINFLOAT Modules/_pickle.c /^ BINFLOAT = 'G',$/;" e enum:opcode file: +BINGET Lib/pickle.py /^BINGET = b'h' # " " " " " " ; " " 1-byte arg$/;" v +BINGET Modules/_pickle.c /^ BINGET = 'h',$/;" e enum:opcode file: +BININT Lib/pickle.py /^BININT = b'J' # push four-byte signed int$/;" v +BININT Modules/_pickle.c /^ BININT = 'J',$/;" e enum:opcode file: +BININT1 Lib/pickle.py /^BININT1 = b'K' # push 1-byte unsigned int$/;" v +BININT1 Modules/_pickle.c /^ BININT1 = 'K',$/;" e enum:opcode file: +BININT2 Lib/pickle.py /^BININT2 = b'M' # push 2-byte unsigned int$/;" v +BININT2 Modules/_pickle.c /^ BININT2 = 'M',$/;" e enum:opcode file: +BINPERSID Lib/pickle.py /^BINPERSID = b'Q' # " " " ; " " " " stack$/;" v +BINPERSID Modules/_pickle.c /^ BINPERSID = 'Q',$/;" e enum:opcode file: +BINPUT Lib/pickle.py /^BINPUT = b'q' # " " " " " ; " " 1-byte arg$/;" v +BINPUT Modules/_pickle.c /^ BINPUT = 'q',$/;" e enum:opcode file: +BINSLOT Objects/typeobject.c 9378;" d file: +BINSLOT Objects/typeobject.c 9406;" d file: +BINSLOTNOTINFIX Objects/typeobject.c 9412;" d file: +BINSTRING Lib/pickle.py /^BINSTRING = b'T' # push string; counted binary string argument$/;" v +BINSTRING Modules/_pickle.c /^ BINSTRING = 'T',$/;" e enum:opcode file: +BINUNICODE Lib/pickle.py /^BINUNICODE = b'X' # " " " ; counted UTF-8 string argument$/;" v +BINUNICODE Modules/_pickle.c /^ BINUNICODE = 'X',$/;" e enum:opcode file: +BINUNICODE8 Lib/pickle.py /^BINUNICODE8 = b'\\x8d' # push very long string$/;" v +BINUNICODE8 Modules/_pickle.c /^ BINUNICODE8 = '\\x8d',$/;" e enum:opcode file: +BIN_STDERR_SENTINEL Lib/test/test_argparse.py /^BIN_STDERR_SENTINEL = object()$/;" v +BIN_STDOUT_SENTINEL Lib/test/test_argparse.py /^BIN_STDOUT_SENTINEL = object()$/;" v +BIO Lib/test/test_lib2to3/data/infinite_recursion.py /^BIO = bio_st$/;" v +BIO_F_BUFFER_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^BIO_F_BUFFER_CTX = bio_f_buffer_ctx_struct$/;" v +BIO_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^BIO_METHOD = bio_method_st$/;" v +BIO_dummy Lib/test/test_lib2to3/data/infinite_recursion.py /^BIO_dummy = bio_st$/;" v +BITS Lib/test/test_ctypes/test_bitfields.py /^class BITS(Structure):$/;" c +BITS Modules/_ctypes/_ctypes_test.c /^struct BITS {$/;" s file: +BITS_PER_BLOCK Objects/frameobject.c 165;" d file: +BITS_PER_CODE_UNIT Tools/cases_generator/generate_cases.py /^BITS_PER_CODE_UNIT = 16$/;" v +BITS_PER_DIGIT Tools/scripts/divmod_threshold.py /^BITS_PER_DIGIT = 30$/;" v +BIT_MASK Modules/_ctypes/cfield.c 389;" d file: +BIT_STRING_BITNAME Lib/test/test_lib2to3/data/infinite_recursion.py /^BIT_STRING_BITNAME = BIT_STRING_BITNAME_st$/;" v +BIT_STRING_BITNAME_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class BIT_STRING_BITNAME_st(Structure):$/;" c +BLACK Lib/test/test_enum.py /^ BLACK = 0$/;" v class:OldTestFlag.Color +BLACK Lib/test/test_enum.py /^ BLACK = 0$/;" v class:OldTestIntFlag.Color +BLAKE2 Modules/_blake2/blake2b2s.py /^BLAKE2 = os.path.join(HERE, 'impl')$/;" v +BLAKE2B_BLOCKBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2B_BLOCKBYTES = 128,$/;" e enum:blake2b_constant +BLAKE2B_KEYBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2B_KEYBYTES = 64,$/;" e enum:blake2b_constant +BLAKE2B_OUTBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2B_OUTBYTES = 64,$/;" e enum:blake2b_constant +BLAKE2B_PERSONALBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2B_PERSONALBYTES = 16$/;" e enum:blake2b_constant +BLAKE2B_SALTBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2B_SALTBYTES = 16,$/;" e enum:blake2b_constant +BLAKE2S_BLOCKBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2S_BLOCKBYTES = 64,$/;" e enum:blake2s_constant +BLAKE2S_KEYBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2S_KEYBYTES = 32,$/;" e enum:blake2s_constant +BLAKE2S_OUTBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2S_OUTBYTES = 32,$/;" e enum:blake2s_constant +BLAKE2S_PERSONALBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2S_PERSONALBYTES = 8$/;" e enum:blake2s_constant +BLAKE2S_SALTBYTES Modules/_blake2/impl/blake2.h /^ BLAKE2S_SALTBYTES = 8,$/;" e enum:blake2s_constant +BLAKE2_API Modules/_blake2/impl/blake2.h 36;" d +BLAKE2_API Modules/_blake2/impl/blake2.h 38;" d +BLAKE2_API Modules/_blake2/impl/blake2.h 42;" d +BLAKE2_DLL_EXPORT Modules/_blake2/impl/blake2.h 22;" d +BLAKE2_DLL_EXPORT Modules/_blake2/impl/blake2.h 26;" d +BLAKE2_DLL_EXPORT Modules/_blake2/impl/blake2.h 30;" d +BLAKE2_DLL_IMPORT Modules/_blake2/impl/blake2.h 21;" d +BLAKE2_DLL_IMPORT Modules/_blake2/impl/blake2.h 25;" d +BLAKE2_DLL_IMPORT Modules/_blake2/impl/blake2.h 29;" d +BLAKE2_DLL_PRIVATE Modules/_blake2/impl/blake2.h 23;" d +BLAKE2_DLL_PRIVATE Modules/_blake2/impl/blake2.h 27;" d +BLAKE2_DLL_PRIVATE Modules/_blake2/impl/blake2.h 31;" d +BLAKE2_IMPL_CAT Modules/_blake2/impl/blake2-impl.h 25;" d +BLAKE2_IMPL_EVAL Modules/_blake2/impl/blake2-impl.h 26;" d +BLAKE2_IMPL_NAME Modules/_blake2/impl/blake2-impl.h 27;" d +BLAKE2_PRIVATE Modules/_blake2/impl/blake2.h 40;" d +BLAKE2_PRIVATE Modules/_blake2/impl/blake2.h 43;" d +BLAKE2bObject Modules/_blake2/blake2b_impl.c /^} BLAKE2bObject;$/;" t typeref:struct:__anon539 file: +BLAKE2sObject Modules/_blake2/blake2s_impl.c /^} BLAKE2sObject;$/;" t typeref:struct:__anon537 file: +BLANCO Lib/test/test_enum.py /^ BLANCO = RED|GREEN|BLUE$/;" v class:OldTestFlag.Color +BLANCO Lib/test/test_enum.py /^ BLANCO = RED|GREEN|BLUE$/;" v class:OldTestIntFlag.Color +BLANKLINE_MARKER Lib/doctest.py /^BLANKLINE_MARKER = ''$/;" v +BLKTYPE Lib/tarfile.py /^BLKTYPE = b"4" # block special device$/;" v +BLOBOPEN_METHODDEF Modules/_sqlite/clinic/connection.c.h 226;" d +BLOB_CLOSE_METHODDEF Modules/_sqlite/clinic/blob.c.h 17;" d +BLOB_ENTER_METHODDEF Modules/_sqlite/clinic/blob.c.h 178;" d +BLOB_EXIT_METHODDEF Modules/_sqlite/clinic/blob.c.h 196;" d +BLOB_READ_METHODDEF Modules/_sqlite/clinic/blob.c.h 42;" d +BLOB_SEEK_CUR Modules/_sqlite/blob.h 9;" d +BLOB_SEEK_END Modules/_sqlite/blob.h 10;" d +BLOB_SEEK_METHODDEF Modules/_sqlite/clinic/blob.c.h 120;" d +BLOB_SEEK_START Modules/_sqlite/blob.h 8;" d +BLOB_TELL_METHODDEF Modules/_sqlite/clinic/blob.c.h 160;" d +BLOB_WRITE_METHODDEF Modules/_sqlite/clinic/blob.c.h 80;" d +BLOCK Modules/_collectionsmodule.c /^typedef struct BLOCK {$/;" s file: +BLOCK Modules/expat/xmlparse.c /^} BLOCK;$/;" t typeref:struct:block file: +BLOCKLEN Modules/_collectionsmodule.c 66;" d file: +BLOCKOPENERS Lib/idlelib/codecontext.py /^BLOCKOPENERS = {'class', 'def', 'if', 'elif', 'else', 'while', 'for',$/;" v +BLOCKSIZE Lib/tarfile.py /^BLOCKSIZE = 512 # length of processing blocks$/;" v +BLOCKSIZE Modules/_ctypes/malloc_closure.c 22;" d file: +BLOOM Objects/unicodeobject.c 790;" d file: +BLOOM_LINEBREAK Objects/unicodeobject.c 792;" d file: +BLOOM_MASK Objects/unicodeobject.c 786;" d file: +BLOOM_UPDATE Objects/unicodeobject.c 799;" d file: +BLOOM_UPDATE Objects/unicodeobject.c 831;" d file: +BLOOM_WIDTH Objects/unicodeobject.c 777;" d file: +BLOOM_WIDTH Objects/unicodeobject.c 779;" d file: +BLOOM_WIDTH Objects/unicodeobject.c 781;" d file: +BLUE Lib/test/test_enum.py /^ BLUE = 3$/;" v class:TestSpecial.test_default_missing_no_chained_exception.Color +BLUE Lib/test/test_enum.py /^ BLUE = 4$/;" v class:TestVerify.test_negative_alias.Color +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:OldTestFlag.test_multiple_mixin.Color +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:OldTestIntFlag.test_multiple_mixin.Color +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:TestSpecial.test_multiple_mixin.Color +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:TestSpecial.test_multiple_mixin.ConfusedColor +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolColor +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolerColor +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolestColor +BLUE Lib/test/test_enum.py /^ BLUE = auto()$/;" v class:TestSpecial.test_multiple_mixin.ReformedColor +BLUE Lib/test/test_enum.py /^ BLUE = 4$/;" v class:OldTestFlag.Color +BLUE Lib/test/test_enum.py /^ BLUE = 4$/;" v class:OldTestIntFlag.Color +BLUE Lib/test/test_patma.py /^ BLUE = 2$/;" v class:TestPatma.test_patma_198.Color +BLUE Lib/test/test_patma.py /^ BLUE = 2$/;" v class:TestPatma.test_patma_199.Color +BLURB Doc/Makefile /^BLURB = PATH=$(VENVDIR)\/bin:$$PATH blurb$/;" m +BLURB Doc/make.bat /^ set BLURB=%PYTHON% -m blurb$/;" v +BLuch Lib/test/test_traceback.py /^ BLuch = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.CaseChangeOverSubstitution +BM Lib/telnetlib.py /^BM = bytes([19]) # byte macro$/;" v +BMNode Lib/lib2to3/btm_matcher.py /^class BMNode(object):$/;" c +BM_compatible Lib/lib2to3/fixer_base.py /^ BM_compatible = False # Compatibility with the bottom matching$/;" v class:BaseFix +BM_compatible Lib/lib2to3/fixes/fix_apply.py /^ BM_compatible = True$/;" v class:FixApply +BM_compatible Lib/lib2to3/fixes/fix_basestring.py /^ BM_compatible = True$/;" v class:FixBasestring +BM_compatible Lib/lib2to3/fixes/fix_buffer.py /^ BM_compatible = True$/;" v class:FixBuffer +BM_compatible Lib/lib2to3/fixes/fix_dict.py /^ BM_compatible = True$/;" v class:FixDict +BM_compatible Lib/lib2to3/fixes/fix_except.py /^ BM_compatible = True$/;" v class:FixExcept +BM_compatible Lib/lib2to3/fixes/fix_exec.py /^ BM_compatible = True$/;" v class:FixExec +BM_compatible Lib/lib2to3/fixes/fix_execfile.py /^ BM_compatible = True$/;" v class:FixExecfile +BM_compatible Lib/lib2to3/fixes/fix_exitfunc.py /^ BM_compatible = True$/;" v class:FixExitfunc +BM_compatible Lib/lib2to3/fixes/fix_filter.py /^ BM_compatible = True$/;" v class:FixFilter +BM_compatible Lib/lib2to3/fixes/fix_funcattrs.py /^ BM_compatible = True$/;" v class:FixFuncattrs +BM_compatible Lib/lib2to3/fixes/fix_future.py /^ BM_compatible = True$/;" v class:FixFuture +BM_compatible Lib/lib2to3/fixes/fix_getcwdu.py /^ BM_compatible = True$/;" v class:FixGetcwdu +BM_compatible Lib/lib2to3/fixes/fix_has_key.py /^ BM_compatible = True$/;" v class:FixHasKey +BM_compatible Lib/lib2to3/fixes/fix_import.py /^ BM_compatible = True$/;" v class:FixImport +BM_compatible Lib/lib2to3/fixes/fix_imports.py /^ BM_compatible = True$/;" v class:FixImports +BM_compatible Lib/lib2to3/fixes/fix_input.py /^ BM_compatible = True$/;" v class:FixInput +BM_compatible Lib/lib2to3/fixes/fix_intern.py /^ BM_compatible = True$/;" v class:FixIntern +BM_compatible Lib/lib2to3/fixes/fix_isinstance.py /^ BM_compatible = True$/;" v class:FixIsinstance +BM_compatible Lib/lib2to3/fixes/fix_itertools.py /^ BM_compatible = True$/;" v class:FixItertools +BM_compatible Lib/lib2to3/fixes/fix_itertools_imports.py /^ BM_compatible = True$/;" v class:FixItertoolsImports +BM_compatible Lib/lib2to3/fixes/fix_long.py /^ BM_compatible = True$/;" v class:FixLong +BM_compatible Lib/lib2to3/fixes/fix_map.py /^ BM_compatible = True$/;" v class:FixMap +BM_compatible Lib/lib2to3/fixes/fix_metaclass.py /^ BM_compatible = True$/;" v class:FixMetaclass +BM_compatible Lib/lib2to3/fixes/fix_methodattrs.py /^ BM_compatible = True$/;" v class:FixMethodattrs +BM_compatible Lib/lib2to3/fixes/fix_next.py /^ BM_compatible = True$/;" v class:FixNext +BM_compatible Lib/lib2to3/fixes/fix_nonzero.py /^ BM_compatible = True$/;" v class:FixNonzero +BM_compatible Lib/lib2to3/fixes/fix_operator.py /^ BM_compatible = True$/;" v class:FixOperator +BM_compatible Lib/lib2to3/fixes/fix_paren.py /^ BM_compatible = True$/;" v class:FixParen +BM_compatible Lib/lib2to3/fixes/fix_print.py /^ BM_compatible = True$/;" v class:FixPrint +BM_compatible Lib/lib2to3/fixes/fix_raise.py /^ BM_compatible = True$/;" v class:FixRaise +BM_compatible Lib/lib2to3/fixes/fix_raw_input.py /^ BM_compatible = True$/;" v class:FixRawInput +BM_compatible Lib/lib2to3/fixes/fix_reduce.py /^ BM_compatible = True$/;" v class:FixReduce +BM_compatible Lib/lib2to3/fixes/fix_reload.py /^ BM_compatible = True$/;" v class:FixReload +BM_compatible Lib/lib2to3/fixes/fix_renames.py /^ BM_compatible = True$/;" v class:FixRenames +BM_compatible Lib/lib2to3/fixes/fix_repr.py /^ BM_compatible = True$/;" v class:FixRepr +BM_compatible Lib/lib2to3/fixes/fix_set_literal.py /^ BM_compatible = True$/;" v class:FixSetLiteral +BM_compatible Lib/lib2to3/fixes/fix_standarderror.py /^ BM_compatible = True$/;" v class:FixStandarderror +BM_compatible Lib/lib2to3/fixes/fix_sys_exc.py /^ BM_compatible = True$/;" v class:FixSysExc +BM_compatible Lib/lib2to3/fixes/fix_throw.py /^ BM_compatible = True$/;" v class:FixThrow +BM_compatible Lib/lib2to3/fixes/fix_tuple_params.py /^ BM_compatible = True$/;" v class:FixTupleParams +BM_compatible Lib/lib2to3/fixes/fix_types.py /^ BM_compatible = True$/;" v class:FixTypes +BM_compatible Lib/lib2to3/fixes/fix_unicode.py /^ BM_compatible = True$/;" v class:FixUnicode +BM_compatible Lib/lib2to3/fixes/fix_xrange.py /^ BM_compatible = True$/;" v class:FixXrange +BM_compatible Lib/lib2to3/fixes/fix_xreadlines.py /^ BM_compatible = True$/;" v class:FixXreadlines +BM_compatible Lib/lib2to3/fixes/fix_zip.py /^ BM_compatible = True$/;" v class:FixZip +BMeta Lib/test/test_descr.py /^ class BMeta(AMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +BMeta Lib/test/test_types.py /^ class BMeta(AMeta):$/;" c function:ClassCreationTests.test_metaclass_derivation +BN_BLINDING Lib/test/test_lib2to3/data/infinite_recursion.py /^BN_BLINDING = bn_blinding_st$/;" v +BN_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^BN_CTX = bignum_ctx$/;" v +BN_MONT_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^BN_MONT_CTX = bn_mont_ctx_st$/;" v +BN_RECP_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^BN_RECP_CTX = bn_recp_ctx_st$/;" v +BNotMeta Lib/test/test_descr.py /^ class BNotMeta(ANotMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +BNotMeta Lib/test/test_types.py /^ class BNotMeta(ANotMeta):$/;" c function:ClassCreationTests.test_metaclass_override_callable +BOFS Lib/test/datetimetester.py /^ class BOFS(DST):$/;" c function:TestDateTimeTZ.test_utctimetuple +BOLD Lib/tkinter/font.py /^BOLD = "bold"$/;" v +BOM Lib/test/test_codecs.py /^ BOM = b''$/;" v class:UTF8Test +BOM Lib/test/test_codecs.py /^ BOM = codecs.BOM_UTF8$/;" v class:UTF8SigTest +BOM PC/launcher.c /^} BOM;$/;" t typeref:struct:__anon289 file: +BOM32_BE Lib/codecs.py /^BOM32_BE = BOM_UTF16_BE$/;" v +BOM32_LE Lib/codecs.py /^BOM32_LE = BOM_UTF16_LE$/;" v +BOM64_BE Lib/codecs.py /^BOM64_BE = BOM_UTF32_BE$/;" v +BOM64_LE Lib/codecs.py /^BOM64_LE = BOM_UTF32_LE$/;" v +BOM_UTF32 Lib/codecs.py /^ BOM_UTF32 = BOM_UTF32_BE$/;" v +BOM_UTF32 Lib/codecs.py /^ BOM_UTF32 = BOM_UTF32_LE$/;" v +BOM_UTF32_BE Lib/codecs.py /^BOM_UTF32_BE = b'\\x00\\x00\\xfe\\xff'$/;" v +BOM_UTF32_LE Lib/codecs.py /^BOM_UTF32_LE = b'\\xff\\xfe\\x00\\x00'$/;" v +BOM_UTF8 Lib/codecs.py /^BOM_UTF8 = b'\\xef\\xbb\\xbf'$/;" v +BOMs PC/launcher.c /^static BOM BOMs[] = {$/;" v file: +BOOL Lib/ctypes/wintypes.py /^BOOL = ctypes.c_long$/;" v +BOOLEAN Lib/ctypes/wintypes.py /^BOOLEAN = BYTE$/;" v +BOOLEAN_STATES Lib/configparser.py /^ BOOLEAN_STATES = {'1': True, 'yes': True, 'true': True, 'on': True,$/;" v class:RawConfigParser +BOOL_ALIGN Modules/_struct.c 94;" d file: +BOOL_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 153;" d +BOOTSTRAP Tools/build/freeze_modules.py /^BOOTSTRAP = {$/;" v +BOR Lib/ast.py /^ BOR = EXPR # '|'$/;" v class:_Precedence +BOR Lib/test/test_ast.py /^ BOR = EXPR # '|'$/;" v class:AST_Tests.test_precedence_enum._Precedence +BORING Lib/test/test_logging.py /^BORING = 111$/;" v +BOTH Lib/tkinter/constants.py /^BOTH='both'$/;" v +BOTHSTRIP Objects/bytearrayobject.c 1863;" d file: +BOTHSTRIP Objects/bytesobject.c 1715;" d file: +BOTHSTRIP Objects/unicodeobject.c 11729;" d file: +BOTTOM Lib/tkinter/constants.py /^BOTTOM='bottom'$/;" v +BOUNDARY Lib/test/test_cgi.py /^BOUNDARY = "---------------------------721837373350705526688164684"$/;" v +BOUNDARY_W3 Lib/test/test_cgi.py /^BOUNDARY_W3 = "AaB03x"$/;" v +BOUNDS_CHECK Modules/_decimal/_decimal.c 61;" d file: +BP Lib/test/test_typing.py /^ class BP(Protocol): pass$/;" c function:ProtocolTests.test_no_inheritance_from_nominal +BPF Lib/random.py /^BPF = 53 # Number of bits in a float$/;" v +BPoint Lib/test/test_typing.py /^ class BPoint:$/;" c function:ProtocolTests.test_protocols_isinstance_py36 +BREAKPOINT_FN Lib/test/test_gdb.py /^BREAKPOINT_FN='builtin_id'$/;" v +BRK Lib/telnetlib.py /^BRK = bytes([243]) # Break$/;" v +BROKEN Lib/asyncio/locks.py /^ BROKEN = 'broken'$/;" v class:_BarrierState +BROWSE Lib/tkinter/constants.py /^BROWSE='browse'$/;" v +BS Lib/curses/ascii.py /^BS = 0x08 # ^H$/;" v +BSPACE Lib/email/header.py /^BSPACE = b' '$/;" v +BSTR Lib/test/test_ctypes/test_bytes.py /^ class BSTR(_SimpleCData):$/;" c function:BytesTest.test_BSTR +BSTR_get Modules/_ctypes/cfield.c /^BSTR_get(void *ptr, Py_ssize_t size)$/;" f file: +BSTR_set Modules/_ctypes/cfield.c /^BSTR_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +BTPROTO_HCI Modules/socketmodule.c 487;" d file: +BTPROTO_L2CAP Modules/socketmodule.c 485;" d file: +BTPROTO_RFCOMM Modules/socketmodule.c 486;" d file: +BTPROTO_RFCOMM Modules/socketmodule.c 520;" d file: +BT_AMP Modules/expat/xmltok_impl.h /^ BT_AMP, \/* ampersand = "&" *\/$/;" e enum:__anon605 +BT_APOS Modules/expat/xmltok_impl.h /^ BT_APOS, \/* apostrophe = "'" *\/$/;" e enum:__anon605 +BT_AST Modules/expat/xmltok_impl.h /^ BT_AST, \/* asterisk = "*" *\/$/;" e enum:__anon605 +BT_COLON Modules/expat/xmltok.c 1000;" d file: +BT_COLON Modules/expat/xmltok.c 1002;" d file: +BT_COLON Modules/expat/xmltok.c 472;" d file: +BT_COLON Modules/expat/xmltok.c 474;" d file: +BT_COLON Modules/expat/xmltok.c 494;" d file: +BT_COLON Modules/expat/xmltok.c 496;" d file: +BT_COLON Modules/expat/xmltok.c 552;" d file: +BT_COLON Modules/expat/xmltok.c 554;" d file: +BT_COLON Modules/expat/xmltok.c 587;" d file: +BT_COLON Modules/expat/xmltok.c 589;" d file: +BT_COLON Modules/expat/xmltok.c 841;" d file: +BT_COLON Modules/expat/xmltok.c 843;" d file: +BT_COLON Modules/expat/xmltok.c 865;" d file: +BT_COLON Modules/expat/xmltok.c 867;" d file: +BT_COLON Modules/expat/xmltok.c 976;" d file: +BT_COLON Modules/expat/xmltok.c 978;" d file: +BT_COLON Modules/expat/xmltok_impl.h /^ BT_COLON, \/* colon = ":" *\/$/;" e enum:__anon605 +BT_COMMA Modules/expat/xmltok_impl.h /^ BT_COMMA, \/* comma = "," *\/$/;" e enum:__anon605 +BT_CR Modules/expat/xmltok_impl.h /^ BT_CR, \/* carriage return = "\\r" *\/$/;" e enum:__anon605 +BT_DIGIT Modules/expat/xmltok_impl.h /^ BT_DIGIT, \/* digit = "0".."9" *\/$/;" e enum:__anon605 +BT_EQUALS Modules/expat/xmltok_impl.h /^ BT_EQUALS, \/* equal sign = "=" *\/$/;" e enum:__anon605 +BT_EXCL Modules/expat/xmltok_impl.h /^ BT_EXCL, \/* exclamation mark = "!" *\/$/;" e enum:__anon605 +BT_GT Modules/expat/xmltok_impl.h /^ BT_GT, \/* greater than = ">" *\/$/;" e enum:__anon605 +BT_HEX Modules/expat/xmltok_impl.h /^ BT_HEX, \/* hex letter = "A".."F" + "a".."f" *\/$/;" e enum:__anon605 +BT_LEAD2 Modules/expat/xmltok_impl.h /^ BT_LEAD2, \/* lead byte of a 2-byte UTF-8 character *\/$/;" e enum:__anon605 +BT_LEAD3 Modules/expat/xmltok_impl.h /^ BT_LEAD3, \/* lead byte of a 3-byte UTF-8 character *\/$/;" e enum:__anon605 +BT_LEAD4 Modules/expat/xmltok_impl.h /^ BT_LEAD4, \/* lead byte of a 4-byte UTF-8 character *\/$/;" e enum:__anon605 +BT_LF Modules/expat/xmltok_impl.h /^ BT_LF, \/* line feed = "\\n" *\/$/;" e enum:__anon605 +BT_LPAR Modules/expat/xmltok_impl.h /^ BT_LPAR, \/* left parenthesis = "(" *\/$/;" e enum:__anon605 +BT_LSQB Modules/expat/xmltok_impl.h /^ BT_LSQB, \/* left square bracket = "[" *\/$/;" e enum:__anon605 +BT_LT Modules/expat/xmltok_impl.h /^ BT_LT, \/* less than = "<" *\/$/;" e enum:__anon605 +BT_MALFORM Modules/expat/xmltok_impl.h /^ BT_MALFORM, \/* illegal, with regard to encoding *\/$/;" e enum:__anon605 +BT_MINUS Modules/expat/xmltok_impl.h /^ BT_MINUS, \/* minus = "-" *\/$/;" e enum:__anon605 +BT_NAME Modules/expat/xmltok_impl.h /^ BT_NAME, \/* dot and middle dot = "." + chr(0xb7) *\/$/;" e enum:__anon605 +BT_NMSTRT Modules/expat/xmltok_impl.h /^ BT_NMSTRT, \/* non-hex name start letter = "G".."Z" + "g".."z" + "_" *\/$/;" e enum:__anon605 +BT_NONASCII Modules/expat/xmltok_impl.h /^ BT_NONASCII, \/* might be a name or name start character *\/$/;" e enum:__anon605 +BT_NONXML Modules/expat/xmltok_impl.h /^ BT_NONXML, \/* e.g. noncharacter-FFFF *\/$/;" e enum:__anon605 +BT_NUM Modules/expat/xmltok_impl.h /^ BT_NUM, \/* number sign = "#" *\/$/;" e enum:__anon605 +BT_OTHER Modules/expat/xmltok_impl.h /^ BT_OTHER, \/* known not to be a name or name start character *\/$/;" e enum:__anon605 +BT_PERCNT Modules/expat/xmltok_impl.h /^ BT_PERCNT, \/* percent sign = "%" *\/$/;" e enum:__anon605 +BT_PLUS Modules/expat/xmltok_impl.h /^ BT_PLUS, \/* plus sign = "+" *\/$/;" e enum:__anon605 +BT_QUEST Modules/expat/xmltok_impl.h /^ BT_QUEST, \/* question mark = "?" *\/$/;" e enum:__anon605 +BT_QUOT Modules/expat/xmltok_impl.h /^ BT_QUOT, \/* quotation character = "\\"" *\/$/;" e enum:__anon605 +BT_RPAR Modules/expat/xmltok_impl.h /^ BT_RPAR, \/* right parenthesis = "(" *\/$/;" e enum:__anon605 +BT_RSQB Modules/expat/xmltok_impl.h /^ BT_RSQB, \/* right square bracket = "[" *\/$/;" e enum:__anon605 +BT_S Modules/expat/xmltok_impl.h /^ BT_S, \/* white space, e.g. "\\t", " "[, "\\r"] *\/$/;" e enum:__anon605 +BT_SEMI Modules/expat/xmltok_impl.h /^ BT_SEMI, \/* semicolon = ";" *\/$/;" e enum:__anon605 +BT_SOL Modules/expat/xmltok_impl.h /^ BT_SOL, \/* solidus, slash = "\/" *\/$/;" e enum:__anon605 +BT_TRAIL Modules/expat/xmltok_impl.h /^ BT_TRAIL, \/* trailing unit, e.g. second 16-bit unit of a 4-byte char. *\/$/;" e enum:__anon605 +BT_VERBAR Modules/expat/xmltok_impl.h /^ BT_VERBAR \/* vertical bar = "|" *\/$/;" e enum:__anon605 +BUCKETS_HEAD Python/hashtable.c 55;" d file: +BUFFER_BLOCK_SIZE Include/internal/pycore_blocks_output_buffer.h /^static const Py_ssize_t BUFFER_BLOCK_SIZE[] =$/;" v +BUFFER_SIZE Lib/_compression.py /^BUFFER_SIZE = io.DEFAULT_BUFFER_SIZE # Compressed data read chunk size$/;" v +BUFMAX Modules/_io/winconsoleio.c 44;" d file: +BUFSIZE Lib/asyncio/windows_utils.py /^BUFSIZE = 8192$/;" v +BUFSIZE Lib/filecmp.py /^BUFSIZE = 8*1024$/;" v +BUFSIZE Lib/idlelib/rpc.py /^BUFSIZE = 8*1024$/;" v +BUFSIZE Lib/multiprocessing/connection.py /^BUFSIZE = 8192$/;" v +BUFSIZE Lib/test/test_socket.py /^ BUFSIZE = 8192$/;" v class:SendfileUsingSendTest +BUFSIZE Modules/_decimal/libmpdec/transpose.c 43;" d file: +BUFSIZE Modules/xxlimited.c 70;" d file: +BUFSIZE PC/launcher.c 16;" d file: +BUFSLOT Objects/typeobject.c 9370;" d file: +BUFSLOT Objects/typeobject.c 9390;" d file: +BUF_MEM Lib/test/test_lib2to3/data/infinite_recursion.py /^BUF_MEM = buf_mem_st$/;" v +BUF_MULTIPLIER Lib/test/test_asyncio/test_ssl.py /^BUF_MULTIPLIER = 1024 if not MACOS else 64$/;" v +BUF_SIZE Lib/test/test_asyncio/test_sendfile.py /^ BUF_SIZE = 4 * 1024 # 4 KiB$/;" v class:SendfileBase +BUF_SIZE Modules/pyexpat.c 769;" d file: +BUILD Lib/pickle.py /^BUILD = b'b' # call __setstate__ or __dict__.update()$/;" v +BUILD Modules/_pickle.c /^ BUILD = 'b',$/;" e enum:opcode file: +BUILD PCbuild/prepare_libffi.bat /^set BUILD=%2$/;" v +BUILD Tools/msi/buildrelease.bat /^ set BUILD=%Py_OutDir%amd64\\$/;" v +BUILD Tools/msi/buildrelease.bat /^ set BUILD=%Py_OutDir%win32\\$/;" v +BUILD Tools/wasm/wasm_build.py /^BUILD = BuildProfile($/;" v +BUILDARM32 Tools/nuget/build.bat /^if "%~1" EQU "-arm32" (set BUILDARM32=1) && shift && goto CheckOpts$/;" v +BUILDARM32 Tools/nuget/build.bat /^set BUILDARM32=$/;" v +BUILDARM64 Tools/msi/build.bat /^if \/I "%~1" EQU "-arm64" (set BUILDARM64=1) && shift && goto CheckOpts$/;" v +BUILDARM64 Tools/msi/build.bat /^set BUILDARM64=$/;" v +BUILDARM64 Tools/msi/buildrelease.bat /^if \/I "%1" EQU "-arm64" (set BUILDARM64=1) && shift && goto CheckOpts$/;" v +BUILDARM64 Tools/msi/buildrelease.bat /^set BUILDARM64=$/;" v +BUILDDIR Doc/make.bat /^if not defined BUILDDIR set BUILDDIR=build$/;" v +BUILDDIR Tools/wasm/wasm_build.py /^BUILDDIR = SRCDIR \/ "builddir"$/;" v +BUILDDIR_TXT Modules/getpath.py /^ BUILDDIR_TXT = 'pybuilddir.txt'$/;" v +BUILDDOC Tools/msi/build.bat /^if "%~1" EQU "--doc" (set BUILDDOC=1) && shift && goto CheckOpts$/;" v +BUILDDOC Tools/msi/build.bat /^set BUILDDOC=$/;" v +BUILDER Doc/Makefile /^changes: BUILDER = changes$/;" m +BUILDER Doc/Makefile /^coverage: BUILDER = coverage$/;" m +BUILDER Doc/Makefile /^doctest: BUILDER = doctest$/;" m +BUILDER Doc/Makefile /^epub: BUILDER = epub$/;" m +BUILDER Doc/Makefile /^html: BUILDER = html$/;" m +BUILDER Doc/Makefile /^htmlhelp: BUILDER = htmlhelp$/;" m +BUILDER Doc/Makefile /^latex: BUILDER = latex$/;" m +BUILDER Doc/Makefile /^linkcheck: BUILDER = linkcheck$/;" m +BUILDER Doc/Makefile /^pydoc-topics: BUILDER = pydoc-topics$/;" m +BUILDER Doc/Makefile /^texinfo: BUILDER = texinfo$/;" m +BUILDER Doc/Makefile /^text: BUILDER = text$/;" m +BUILDMSI Tools/msi/buildrelease.bat /^if "%1" EQU "--skip-msi" (set BUILDMSI=) && shift && goto CheckOpts$/;" v +BUILDMSI Tools/msi/buildrelease.bat /^set BUILDMSI=1$/;" v +BUILDNUGET Tools/msi/buildrelease.bat /^if "%1" EQU "--skip-nuget" (set BUILDNUGET=) && shift && goto CheckOpts$/;" v +BUILDNUGET Tools/msi/buildrelease.bat /^set BUILDNUGET=1$/;" v +BUILDOPTS Tools/msi/buildrelease.bat /^set BUILDOPTS=\/p:Platform=%1 \/p:BuildForRelease=true \/p:DownloadUrl=%DOWNLOAD_URL% \/p:DownloadUrlBase=%DOWNLOAD_URL_BASE% \/p:ReleaseUri=%RELEASE_URI%$/;" v +BUILDPACK Tools/msi/build.bat /^if "%~1" EQU "--pack" (set BUILDPACK=1) && shift && goto CheckOpts$/;" v +BUILDPACK Tools/msi/build.bat /^set BUILDPACK=$/;" v +BUILDSTDLIB_LANDMARKS Modules/getpath.py /^ BUILDSTDLIB_LANDMARKS = ['Lib\/os.py']$/;" v +BUILDSTDLIB_LANDMARKS Modules/getpath.py /^ BUILDSTDLIB_LANDMARKS = ['Lib\\\\os.py']$/;" v +BUILDTEST Tools/msi/build.bat /^if "%~1" EQU "--no-test-marker" (set BUILDTEST=) && shift && goto CheckOpts$/;" v +BUILDTEST Tools/msi/build.bat /^if "%~1" EQU "--test-marker" (set BUILDTEST=--test-marker) && shift && goto CheckOpts$/;" v +BUILDTEST Tools/msi/build.bat /^set BUILDTEST=$/;" v +BUILDX64 Tools/msi/build.bat /^if \/I "%~1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts$/;" v +BUILDX64 Tools/msi/build.bat /^set BUILDX64=$/;" v +BUILDX64 Tools/msi/buildrelease.bat /^if \/I "%1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts$/;" v +BUILDX64 Tools/msi/buildrelease.bat /^set BUILDX64=$/;" v +BUILDX64 Tools/nuget/build.bat /^if "%~1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts$/;" v +BUILDX64 Tools/nuget/build.bat /^set BUILDX64=$/;" v +BUILDX86 Tools/msi/build.bat /^if \/I "%~1" EQU "-Win32" (set BUILDX86=1) && shift && goto CheckOpts$/;" v +BUILDX86 Tools/msi/build.bat /^if \/I "%~1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts$/;" v +BUILDX86 Tools/msi/build.bat /^if not defined BUILDX86 if not defined BUILDX64 if not defined BUILDARM64 (set BUILDX86=1) && (set BUILDX64=1)$/;" v +BUILDX86 Tools/msi/build.bat /^set BUILDX86=$/;" v +BUILDX86 Tools/msi/buildrelease.bat /^if \/I "%1" EQU "-Win32" (set BUILDX86=1) && shift && goto CheckOpts$/;" v +BUILDX86 Tools/msi/buildrelease.bat /^if \/I "%1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts$/;" v +BUILDX86 Tools/msi/buildrelease.bat /^if not defined BUILDX86 if not defined BUILDX64 if not defined BUILDARM64 (set BUILDX86=1) && (set BUILDX64=1)$/;" v +BUILDX86 Tools/msi/buildrelease.bat /^set BUILDX86=$/;" v +BUILDX86 Tools/nuget/build.bat /^if "%~1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts$/;" v +BUILDX86 Tools/nuget/build.bat /^if not defined BUILDX86 if not defined BUILDX64 if not defined BUILDARM32 (set BUILDX86=1) && (set BUILDX64=1) && (set BUILDARM32=1)$/;" v +BUILDX86 Tools/nuget/build.bat /^set BUILDX86=$/;" v +BUILDZIP Tools/msi/buildrelease.bat /^if "%1" EQU "--skip-zip" (set BUILDZIP=) && shift && goto CheckOpts$/;" v +BUILDZIP Tools/msi/buildrelease.bat /^set BUILDZIP=1$/;" v +BUILD_ARM32 PCbuild/prepare_libffi.bat /^ set BUILD_ARM32=0$/;" v +BUILD_ARM32 PCbuild/prepare_libffi.bat /^if \/I "%1"=="-arm32" (set BUILD_ARM32=1) & shift & goto :CheckOpts$/;" v +BUILD_ARM32 PCbuild/prepare_libffi.bat /^set BUILD_ARM32=$/;" v +BUILD_ARM64 PCbuild/prepare_libffi.bat /^ set BUILD_ARM64=1$/;" v +BUILD_ARM64 PCbuild/prepare_libffi.bat /^if \/I "%1"=="-arm64" (set BUILD_ARM64=1) & shift & goto :CheckOpts$/;" v +BUILD_ARM64 PCbuild/prepare_libffi.bat /^set BUILD_ARM64=$/;" v +BUILD_CMD Tools/msi/build.bat /^ set BUILD_CMD=%BUILD_CMD% \/p:Pack=true$/;" v +BUILD_CMD Tools/msi/build.bat /^ set BUILD_CMD=%BUILD_CMD% \/p:UseTestMarker=true$/;" v +BUILD_CMD Tools/msi/build.bat /^ set BUILD_CMD=%BUILD_CMD% \/t:Rebuild$/;" v +BUILD_CMD Tools/msi/build.bat /^set BUILD_CMD="%D%bundle\\snapshot.wixproj"$/;" v +BUILD_CONST_KEY_MAP Include/opcode.h 111;" d +BUILD_LANDMARK Modules/getpath.py /^ BUILD_LANDMARK = 'Modules\/Setup.local'$/;" v +BUILD_LANDMARK Modules/getpath.py /^ BUILD_LANDMARK = f'{VPATH}\\\\Modules\\\\Setup.local'$/;" v +BUILD_LIST Include/opcode.h 64;" d +BUILD_MAP Include/opcode.h 66;" d +BUILD_NOOPT PCbuild/prepare_libffi.bat /^if \/I "%1"=="-noopt" (set BUILD_NOOPT=CFLAGS='-Od -warn all') & shift & goto :CheckOpts$/;" v +BUILD_NOOPT PCbuild/prepare_libffi.bat /^set BUILD_NOOPT=$/;" v +BUILD_PDB PCbuild/prepare_libffi.bat /^if \/I "%1"=="-pdb" (set BUILD_PDB=-g) & shift & goto :CheckOpts$/;" v +BUILD_PDB PCbuild/prepare_libffi.bat /^set BUILD_PDB=$/;" v +BUILD_PLAT Tools/msi/buildrelease.bat /^ set BUILD_PLAT=ARM64$/;" v +BUILD_PLAT Tools/msi/buildrelease.bat /^ set BUILD_PLAT=Win32$/;" v +BUILD_PLAT Tools/msi/buildrelease.bat /^ set BUILD_PLAT=x64$/;" v +BUILD_SET Include/opcode.h 65;" d +BUILD_SLICE Include/opcode.h 91;" d +BUILD_STRING Include/opcode.h 112;" d +BUILD_TUPLE Include/opcode.h 63;" d +BUILD_WITH_NDEBUG Lib/test/test_gc.py /^ BUILD_WITH_NDEBUG = ('-DNDEBUG' in sysconfig.get_config_vars()['PY_CFLAGS'])$/;" v +BUILD_WITH_NDEBUG Lib/test/test_gc.py /^ BUILD_WITH_NDEBUG = (not hasattr(sys, 'gettotalrefcount'))$/;" v +BUILD_X64 PCbuild/prepare_libffi.bat /^ set BUILD_X64=1$/;" v +BUILD_X64 PCbuild/prepare_libffi.bat /^if \/I "%1"=="-x64" (set BUILD_X64=1) & shift & goto :CheckOpts$/;" v +BUILD_X64 PCbuild/prepare_libffi.bat /^set BUILD_X64=$/;" v +BUILD_X86 PCbuild/prepare_libffi.bat /^ set BUILD_X86=1$/;" v +BUILD_X86 PCbuild/prepare_libffi.bat /^if \/I "%1"=="-win32" (set BUILD_X86=1) & shift & goto :CheckOpts$/;" v +BUILD_X86 PCbuild/prepare_libffi.bat /^if \/I "%1"=="-x86" (set BUILD_X86=1) & shift & goto :CheckOpts$/;" v +BUILD_X86 PCbuild/prepare_libffi.bat /^set BUILD_X86=$/;" v +BUILTIN Tools/build/check_extension_modules.py /^ BUILTIN = "builtin"$/;" v class:ModuleState +BUILTINS Lib/test/test_importlib/util.py /^BUILTINS = types.SimpleNamespace()$/;" v +BUILTINS Python/ceval_macros.h 281;" d +BUILTIN_ABS_METHODDEF Python/clinic/bltinmodule.c.h 119;" d +BUILTIN_AITER_METHODDEF Python/clinic/bltinmodule.c.h 870;" d +BUILTIN_ALL_METHODDEF Python/clinic/bltinmodule.c.h 130;" d +BUILTIN_ANEXT_METHODDEF Python/clinic/bltinmodule.c.h 882;" d +BUILTIN_ANY_METHODDEF Python/clinic/bltinmodule.c.h 141;" d +BUILTIN_ASCII_METHODDEF Python/clinic/bltinmodule.c.h 155;" d +BUILTIN_BIN_METHODDEF Python/clinic/bltinmodule.c.h 167;" d +BUILTIN_CALLABLE_METHODDEF Python/clinic/bltinmodule.c.h 179;" d +BUILTIN_CHR_METHODDEF Python/clinic/bltinmodule.c.h 236;" d +BUILTIN_CLASSMETHOD Python/specialize.c /^ BUILTIN_CLASSMETHOD, \/* Builtin methods with METH_CLASS *\/$/;" e enum:__anon686 file: +BUILTIN_COMPILE_METHODDEF Python/clinic/bltinmodule.c.h 276;" d +BUILTIN_DELATTR_METHODDEF Python/clinic/bltinmodule.c.h 779;" d +BUILTIN_DIR_METHODDEF Python/clinic/bltinmodule.c.h 406;" d +BUILTIN_DIVMOD_METHODDEF Python/clinic/bltinmodule.c.h 438;" d +BUILTIN_EVAL_METHODDEF Python/clinic/bltinmodule.c.h 474;" d +BUILTIN_EXEC_METHODDEF Python/clinic/bltinmodule.c.h 522;" d +BUILTIN_FORMAT_METHODDEF Python/clinic/bltinmodule.c.h 195;" d +BUILTIN_GETATTR_METHODDEF Python/clinic/bltinmodule.c.h 602;" d +BUILTIN_GLOBALS_METHODDEF Python/clinic/bltinmodule.c.h 642;" d +BUILTIN_HASATTR_METHODDEF Python/clinic/bltinmodule.c.h 662;" d +BUILTIN_HASH_METHODDEF Python/clinic/bltinmodule.c.h 812;" d +BUILTIN_HEX_METHODDEF Python/clinic/bltinmodule.c.h 824;" d +BUILTIN_ID_METHODDEF Python/clinic/bltinmodule.c.h 695;" d +BUILTIN_INPUT_METHODDEF Python/clinic/bltinmodule.c.h 1140;" d +BUILTIN_ISINSTANCE_METHODDEF Python/clinic/bltinmodule.c.h 1353;" d +BUILTIN_ISSUBCLASS_METHODDEF Python/clinic/bltinmodule.c.h 1388;" d +BUILTIN_ITER_METHODDEF Python/clinic/bltinmodule.c.h 836;" d +BUILTIN_LEN_METHODDEF Python/clinic/bltinmodule.c.h 917;" d +BUILTIN_LOCALS_METHODDEF Python/clinic/bltinmodule.c.h 930;" d +BUILTIN_NEXT_METHODDEF Python/clinic/bltinmodule.c.h 707;" d +BUILTIN_OCT_METHODDEF Python/clinic/bltinmodule.c.h 951;" d +BUILTIN_ORD_METHODDEF Python/clinic/bltinmodule.c.h 960;" d +BUILTIN_POW_METHODDEF Python/clinic/bltinmodule.c.h 972;" d +BUILTIN_PRINT_METHODDEF Python/clinic/bltinmodule.c.h 1046;" d +BUILTIN_REPR_METHODDEF Python/clinic/bltinmodule.c.h 1174;" d +BUILTIN_ROUND_METHODDEF Python/clinic/bltinmodule.c.h 1186;" d +BUILTIN_SETATTR_METHODDEF Python/clinic/bltinmodule.c.h 744;" d +BUILTIN_SORTED_METHODDEF Python/bltinmodule.c 2411;" d file: +BUILTIN_SUM_METHODDEF Python/clinic/bltinmodule.c.h 1287;" d +BUILTIN_VARS_METHODDEF Python/clinic/bltinmodule.c.h 1251;" d +BUILTIN___IMPORT___METHODDEF Python/clinic/bltinmodule.c.h 32;" d +BUTT Lib/tkinter/constants.py /^BUTT='butt'$/;" v +BW_END Tools/ccbench/ccbench.py /^BW_END = "END"$/;" v +BXOR Lib/ast.py /^ BXOR = auto() # '^'$/;" v class:_Precedence +BXOR Lib/test/test_ast.py /^ BXOR = enum.auto() # '^'$/;" v class:AST_Tests.test_precedence_enum._Precedence +BYTE Lib/ctypes/wintypes.py /^BYTE = ctypes.c_ubyte$/;" v +BYTE Python/pylifecycle.c 53;" d file: +BYTE Python/pythonrun.c 35;" d file: +BYTEARRAY8 Lib/pickle.py /^BYTEARRAY8 = b'\\x96' # push bytearray$/;" v +BYTEARRAY8 Modules/_pickle.c /^ BYTEARRAY8 = '\\x96',$/;" e enum:opcode file: +BYTEARRAY_APPEND_METHODDEF Objects/clinic/bytearrayobject.c.h 704;" d +BYTEARRAY_CLEAR_METHODDEF Objects/clinic/bytearrayobject.c.h 109;" d +BYTEARRAY_COPY_METHODDEF Objects/clinic/bytearrayobject.c.h 127;" d +BYTEARRAY_DECODE_METHODDEF Objects/clinic/bytearrayobject.c.h 933;" d +BYTEARRAY_EXTEND_METHODDEF Objects/clinic/bytearrayobject.c.h 734;" d +BYTEARRAY_FROMHEX_METHODDEF Objects/clinic/bytearrayobject.c.h 1107;" d +BYTEARRAY_HEX_METHODDEF Objects/clinic/bytearrayobject.c.h 1156;" d +BYTEARRAY_INSERT_METHODDEF Objects/clinic/bytearrayobject.c.h 658;" d +BYTEARRAY_JOIN_METHODDEF Objects/clinic/bytearrayobject.c.h 1029;" d +BYTEARRAY_LSTRIP_METHODDEF Objects/clinic/bytearrayobject.c.h 858;" d +BYTEARRAY_MAKETRANS_METHODDEF Objects/clinic/bytearrayobject.c.h 299;" d +BYTEARRAY_PARTITION_METHODDEF Objects/clinic/bytearrayobject.c.h 520;" d +BYTEARRAY_POP_METHODDEF Objects/clinic/bytearrayobject.c.h 749;" d +BYTEARRAY_REDUCE_EX_METHODDEF Objects/clinic/bytearrayobject.c.h 1244;" d +BYTEARRAY_REDUCE_METHODDEF Objects/clinic/bytearrayobject.c.h 1226;" d +BYTEARRAY_REMOVEPREFIX_METHODDEF Objects/clinic/bytearrayobject.c.h 149;" d +BYTEARRAY_REMOVESUFFIX_METHODDEF Objects/clinic/bytearrayobject.c.h 189;" d +BYTEARRAY_REMOVE_METHODDEF Objects/clinic/bytearrayobject.c.h 795;" d +BYTEARRAY_REPLACE_METHODDEF Objects/clinic/bytearrayobject.c.h 357;" d +BYTEARRAY_REVERSE_METHODDEF Objects/clinic/bytearrayobject.c.h 635;" d +BYTEARRAY_RPARTITION_METHODDEF Objects/clinic/bytearrayobject.c.h 537;" d +BYTEARRAY_RSPLIT_METHODDEF Objects/clinic/bytearrayobject.c.h 556;" d +BYTEARRAY_RSTRIP_METHODDEF Objects/clinic/bytearrayobject.c.h 892;" d +BYTEARRAY_SIZEOF_METHODDEF Objects/clinic/bytearrayobject.c.h 1279;" d +BYTEARRAY_SPLITLINES_METHODDEF Objects/clinic/bytearrayobject.c.h 1041;" d +BYTEARRAY_SPLIT_METHODDEF Objects/clinic/bytearrayobject.c.h 434;" d +BYTEARRAY_STRIP_METHODDEF Objects/clinic/bytearrayobject.c.h 824;" d +BYTEARRAY_TRANSLATE_METHODDEF Objects/clinic/bytearrayobject.c.h 231;" d +BYTECODE_SUFFIXES Lib/importlib/_bootstrap_external.py /^BYTECODE_SUFFIXES = ['.pyc']$/;" v +BYTEFMT Lib/test/test_buffer.py /^BYTEFMT = NATIVE.copy()$/;" v +BYTEORDER Modules/expat/expat_config.h 10;" d +BYTEORDER Modules/expat/expat_config.h 12;" d +BYTES_CAPATH Lib/test/test_ssl.py /^BYTES_CAPATH = os.fsencode(CAPATH)$/;" v +BYTES_CERTFILE Lib/test/test_ssl.py /^BYTES_CERTFILE = os.fsencode(CERTFILE)$/;" v +BYTES_DECODE_METHODDEF Objects/clinic/bytesobject.c.h 701;" d +BYTES_DHFILE Lib/test/test_ssl.py /^BYTES_DHFILE = os.fsencode(DHFILE)$/;" v +BYTES_FROMHEX_METHODDEF Objects/clinic/bytesobject.c.h 862;" d +BYTES_HEX_METHODDEF Objects/clinic/bytesobject.c.h 911;" d +BYTES_JOIN_METHODDEF Objects/clinic/bytesobject.c.h 301;" d +BYTES_LSTRIP_METHODDEF Objects/clinic/bytesobject.c.h 346;" d +BYTES_MAKETRANS_METHODDEF Objects/clinic/bytesobject.c.h 486;" d +BYTES_OBJECT_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 66;" d +BYTES_ONLYCERT Lib/test/test_ssl.py /^BYTES_ONLYCERT = os.fsencode(ONLYCERT)$/;" v +BYTES_ONLYKEY Lib/test/test_ssl.py /^BYTES_ONLYKEY = os.fsencode(ONLYKEY)$/;" v +BYTES_PARTITION_METHODDEF Objects/clinic/bytesobject.c.h 128;" d +BYTES_REMOVEPREFIX_METHODDEF Objects/clinic/bytesobject.c.h 616;" d +BYTES_REMOVESUFFIX_METHODDEF Objects/clinic/bytesobject.c.h 656;" d +BYTES_REPLACE_METHODDEF Objects/clinic/bytesobject.c.h 544;" d +BYTES_RPARTITION_METHODDEF Objects/clinic/bytesobject.c.h 171;" d +BYTES_RSPLIT_METHODDEF Objects/clinic/bytesobject.c.h 217;" d +BYTES_RSTRIP_METHODDEF Objects/clinic/bytesobject.c.h 380;" d +BYTES_SPLITLINES_METHODDEF Objects/clinic/bytesobject.c.h 796;" d +BYTES_SPLIT_METHODDEF Objects/clinic/bytesobject.c.h 43;" d +BYTES_STRINGS Lib/test/test_codecs.py /^ BYTES_STRINGS = (b"blatin1:\\xa7\\xe9", b"b255:\\xff")$/;" v class:LocaleCodecTest +BYTES_STRIP_METHODDEF Objects/clinic/bytesobject.c.h 312;" d +BYTES_TRANSLATE_METHODDEF Objects/clinic/bytesobject.c.h 418;" d +BYTES___BYTES___METHODDEF Objects/clinic/bytesobject.c.h 17;" d +BYTE_ARRAY_OBJECT_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 94;" d +BYTE_TO_ASCII Modules/expat/xmltok.c 259;" d file: +BYTE_TO_ASCII Modules/expat/xmltok.c 266;" d file: +BYTE_TO_ASCII Modules/expat/xmltok.c 310;" d file: +BYTE_TO_ASCII Modules/expat/xmltok.c 926;" d file: +BYTE_TO_ASCII Modules/expat/xmltok.c 939;" d file: +BYTE_TYPE Modules/expat/xmltok.c 253;" d file: +BYTE_TYPE Modules/expat/xmltok.c 255;" d file: +BYTE_TYPE Modules/expat/xmltok.c 309;" d file: +BYTE_TYPE Modules/expat/xmltok.c 925;" d file: +BYTE_TYPE Modules/expat/xmltok.c 938;" d file: +BZ2Compressor Modules/_bz2module.c /^} BZ2Compressor;$/;" t typeref:struct:__anon465 file: +BZ2CompressorTest Lib/test/test_bz2.py /^class BZ2CompressorTest(BaseTest):$/;" c +BZ2Compressor_dealloc Modules/_bz2module.c /^BZ2Compressor_dealloc(BZ2Compressor *self)$/;" f file: +BZ2Compressor_methods Modules/_bz2module.c /^static PyMethodDef BZ2Compressor_methods[] = {$/;" v file: +BZ2Compressor_traverse Modules/_bz2module.c /^BZ2Compressor_traverse(BZ2Compressor *self, visitproc visit, void *arg)$/;" f file: +BZ2Decompressor Modules/_bz2module.c /^} BZ2Decompressor;$/;" t typeref:struct:__anon466 file: +BZ2DecompressorTest Lib/test/test_bz2.py /^class BZ2DecompressorTest(BaseTest):$/;" c +BZ2Decompressor_dealloc Modules/_bz2module.c /^BZ2Decompressor_dealloc(BZ2Decompressor *self)$/;" f file: +BZ2Decompressor_members Modules/_bz2module.c /^static PyMemberDef BZ2Decompressor_members[] = {$/;" v file: +BZ2Decompressor_methods Modules/_bz2module.c /^static PyMethodDef BZ2Decompressor_methods[] = {$/;" v file: +BZ2Decompressor_traverse Modules/_bz2module.c /^BZ2Decompressor_traverse(BZ2Decompressor *self, visitproc visit, void *arg)$/;" f file: +BZ2File Lib/bz2.py /^class BZ2File(_compression.BaseStream):$/;" c +BZ2FileTest Lib/test/test_bz2.py /^class BZ2FileTest(BaseTest):$/;" c +BZ2_Free Modules/_bz2module.c /^BZ2_Free(void* ctx, void *ptr)$/;" f file: +BZ2_Malloc Modules/_bz2module.c /^BZ2_Malloc(void* ctx, int items, int size)$/;" f file: +BZ2_bzCompress Modules/_bz2module.c 89;" d file: +BZ2_bzCompressEnd Modules/_bz2module.c 91;" d file: +BZ2_bzCompressInit Modules/_bz2module.c 90;" d file: +BZ2_bzDecompress Modules/_bz2module.c 92;" d file: +BZ2_bzDecompressEnd Modules/_bz2module.c 94;" d file: +BZ2_bzDecompressInit Modules/_bz2module.c 93;" d file: +BZIP2_VERSION Lib/zipfile/__init__.py /^BZIP2_VERSION = 46$/;" v +B_CRLF Lib/ftplib.py /^B_CRLF = b'\\r\\n'$/;" v +B_get Modules/_ctypes/cfield.c /^B_get(void *ptr, Py_ssize_t size)$/;" f file: +B_method Lib/test/pydocfodder.py /^ def B_method(self):$/;" m class:B_new +B_new Lib/test/pydocfodder.py /^class B_new(A_new):$/;" c +B_set Modules/_ctypes/cfield.c /^B_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +Babyl Lib/mailbox.py /^class Babyl(_singlefileMailbox):$/;" c +BabylMessage Lib/mailbox.py /^class BabylMessage(Message):$/;" c +BackgroundBrowser Lib/webbrowser.py /^class BackgroundBrowser(GenericBrowser):$/;" c +BackgroundBrowserCommandTest Lib/test/test_webbrowser.py /^class BackgroundBrowserCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +BackgroundColor PC/layout/support/appxmanifest.py /^ BackgroundColor="transparent",$/;" v +BackupTests Lib/test/test_sqlite3/test_backup.py /^class BackupTests(unittest.TestCase):$/;" c +Bad Lib/test/pickletester.py /^ class Bad:$/;" c function:AbstractPickleTests.test_evil_class_mutating_dict +Bad Lib/test/test_enum.py /^ class Bad(Enum):$/;" c function:TestSpecial.test_reserved_sunder_error +Bad Lib/test/test_genericalias.py /^ class Bad(GenericAlias):$/;" c function:BaseTest.test_subclassing_types_genericalias +Bad Lib/test/test_richcmp.py /^ class Bad:$/;" c function:ListTest.test_badentry +Bad Lib/test/test_richcmp.py /^ class Bad:$/;" c function:MiscTest.test_not +Bad Lib/test/test_set.py /^ class Bad:$/;" c function:TestOperationsMutating.make_sets_of_bad_objects +Bad Lib/test/test_typing.py /^ class Bad: pass$/;" c function:ProtocolTests.test_protocols_isinstance_py36 +BadArg Lib/test/test_capi/test_exceptions.py /^ class BadArg:$/;" c function:Test_ErrSetAndRestore.test_set_object_and_fetch +BadAwaitable Lib/test/test_asyncgen.py /^ class BadAwaitable:$/;" c function:AsyncGenAsyncioTest.test_anext_bad_await.bad_awaitable +BadBase Lib/test/test_typing.py /^ class BadBase:$/;" c function:GetTypeHintTests.test_get_type_hints_annotated_bad_module +BadBool Lib/test/test_json/test_speedups.py /^class BadBool:$/;" c +BadBool Lib/test/test_sqlite3/test_hooks.py /^ class BadBool:$/;" c function:ProgressTests.test_error_in_progress_handler_result +BadBytecodeTest Lib/test/test_importlib/source/test_file_loader.py /^class BadBytecodeTest:$/;" c +BadBytecodeTestPEP302 Lib/test/test_importlib/source/test_file_loader.py /^class BadBytecodeTestPEP302(BadBytecodeTest):$/;" c +BadBytecodeTestPEP451 Lib/test/test_importlib/source/test_file_loader.py /^class BadBytecodeTestPEP451(BadBytecodeTest):$/;" c +BadCase Lib/test/test_unittest/test_loader.py /^ class BadCase(int):$/;" c function:Test_TestLoader.test_getTestCaseNames__not_a_TestCase +BadClass Lib/test/test_typing.py /^ class BadClass:$/;" c function:ProtocolTests.test_custom_subclasshook +BadClassMethod Lib/test/test_unittest/testmock/testhelpers.py /^ class BadClassMethod:$/;" c function:TestCallablePredicate.test_non_callable_classmethod +BadCmp Lib/test/list_tests.py /^ class BadCmp:$/;" c function:CommonTest.test_remove +BadCmp Lib/test/mapping_tests.py /^ class BadCmp(object):$/;" c function:TestHashMappingProtocol.test_eq +BadCmp Lib/test/seq_tests.py /^ class BadCmp:$/;" c function:CommonTest.test_count +BadCmp Lib/test/seq_tests.py /^ class BadCmp:$/;" c function:CommonTest.test_index +BadCmp Lib/test/test_deque.py /^class BadCmp:$/;" c +BadCmp Lib/test/test_dict.py /^ class BadCmp(object):$/;" c function:DictTest.test_eq +BadCmp Lib/test/test_functools.py /^ class BadCmp:$/;" c function:TestCmpToKey.test_bad_cmp +BadCmp Lib/test/test_range.py /^ class BadCmp:$/;" c function:RangeTest.test_index +BadCmp Lib/test/test_set.py /^class BadCmp:$/;" c +BadCmp Lib/test/test_slice.py /^ class BadCmp(object):$/;" c function:SliceTest.test_cmp +BadCmp2 Lib/test/list_tests.py /^ class BadCmp2:$/;" c function:CommonTest.test_remove +BadCompare Lib/test/test_deque.py /^ class BadCompare:$/;" c function:TestBasic.test_count +BadComplex Lib/test/test_capi/test_getargs.py /^class BadComplex:$/;" c +BadComplex2 Lib/test/test_capi/test_getargs.py /^class BadComplex2:$/;" c +BadComplex3 Lib/test/test_capi/test_getargs.py /^class BadComplex3(complex):$/;" c +BadConform Lib/test/test_sqlite3/test_types.py /^ class BadConform:$/;" c class:DeclTypesTests +BadConstructorArgs Lib/test/test_exception_group.py /^class BadConstructorArgs(unittest.TestCase):$/;" c +BadDecoder Lib/test/test_io.py /^ class BadDecoder:$/;" c function:TextIOWrapperTest.test_illegal_decoder._make_very_illegal_wrapper +BadDictKey Lib/test/test_dict.py /^ class BadDictKey:$/;" c function:DictTest.test_bad_key +BadElementPath Lib/test/test_xml_etree.py /^class BadElementPath(str):$/;" c +BadElementPathTest Lib/test/test_xml_etree.py /^class BadElementPathTest(ElementTestCase, unittest.TestCase):$/;" c +BadElementTest Lib/test/test_xml_etree.py /^class BadElementTest(ElementTestCase, unittest.TestCase):$/;" c +BadEnv Lib/test/test_subprocess.py /^ class BadEnv(dict):$/;" c function:Win32ProcessTestCase.test_issue31471 +BadEq Lib/test/mapping_tests.py /^ class BadEq(object):$/;" c function:TestHashMappingProtocol.test_getitem +BadEq Lib/test/test_dict.py /^ class BadEq(object):$/;" c function:DictTest.test_getitem +BadEq Lib/test/test_dict.py /^ class BadEq:$/;" c function:CAPITest.test_getitem_knownhash +BadEq Lib/test/test_dictviews.py /^ class BadEq:$/;" c function:DictSetTest.test_compare_error +BadExc Lib/test/list_tests.py /^ class BadExc(Exception):$/;" c function:CommonTest.test_remove +BadExc Lib/test/seq_tests.py /^ class BadExc(Exception):$/;" c function:CommonTest.test_count +BadExc Lib/test/seq_tests.py /^ class BadExc(Exception):$/;" c function:CommonTest.test_index +BadExc Lib/test/test_range.py /^ class BadExc(Exception):$/;" c function:RangeTest.test_index +BadException Lib/test/test_exceptions.py /^ class BadException(Exception):$/;" c function:ExceptionTests.testSettingException +BadFile Lib/test/test_fcntl.py /^class BadFile:$/;" c +BadFile Lib/test/test_tarfile.py /^ class BadFile(io.BytesIO):$/;" c function:WriteTest.test_open_nonwritable_fileobj +BadFileZipImportTestCase Lib/test/test_zipimport.py /^class BadFileZipImportTestCase(unittest.TestCase):$/;" c +BadFloat Lib/test/datetimetester.py /^ class BadFloat(float):$/;" c function:TestTimeDelta.test_issue31293.get_bad_float +BadFloat Lib/test/test_capi/test_getargs.py /^class BadFloat:$/;" c +BadFloat2 Lib/test/test_capi/test_getargs.py /^class BadFloat2:$/;" c +BadFloat3 Lib/test/test_capi/test_getargs.py /^class BadFloat3(float):$/;" c +BadFormatResult Lib/test/test_builtin.py /^ class BadFormatResult:$/;" c function:BuiltinTest.test_format +BadGetattr Lib/test/pickletester.py /^class BadGetattr:$/;" c +BadGzipFile Lib/gzip.py /^class BadGzipFile(OSError):$/;" c +BadHELOServerTests Lib/test/test_smtplib.py /^class BadHELOServerTests(unittest.TestCase):$/;" c +BadHandler Lib/test/test_socketserver.py /^class BadHandler(socketserver.BaseRequestHandler):$/;" c +BadHash Lib/test/mapping_tests.py /^ class BadHash(object):$/;" c function:TestHashMappingProtocol.test_getitem +BadHash Lib/test/mapping_tests.py /^ class BadHash(object):$/;" c function:TestHashMappingProtocol.test_pop +BadHash Lib/test/mapping_tests.py /^ class BadHash(object):$/;" c function:TestHashMappingProtocol.test_setdefault +BadHash Lib/test/test_dict.py /^ class BadHash(object):$/;" c function:DictTest.test_getitem +BadHash Lib/test/test_dict.py /^ class BadHash(object):$/;" c function:DictTest.test_pop +BadHash Lib/test/test_dict.py /^ class BadHash(object):$/;" c function:DictTest.test_setdefault +BadIndex Lib/test/test_capi/test_getargs.py /^class BadIndex:$/;" c +BadIndex Lib/test/test_int.py /^ class BadIndex(int):$/;" c function:IntTestCases.test_int_subclass_with_index +BadIndex Lib/test/test_int.py /^ class BadIndex:$/;" c function:IntTestCases.test_int_returns_int_subclass +BadIndex Lib/test/test_struct.py /^ class BadIndex(object):$/;" c function:StructTest.test_integers.IntTester.run +BadIndex2 Lib/test/test_capi/test_getargs.py /^class BadIndex2:$/;" c +BadIndex2 Lib/test/test_int.py /^ class BadIndex2(int):$/;" c function:IntTestCases.test_int_returns_int_subclass +BadIndex3 Lib/test/test_capi/test_getargs.py /^class BadIndex3(int):$/;" c +BadInt Lib/test/datetimetester.py /^ class BadInt(int):$/;" c function:TestTimeDelta.test_issue31752 +BadInt Lib/test/test_bytes.py /^ class BadInt:$/;" c function:BaseBytesTest.test_constructor_exceptions +BadInt Lib/test/test_capi/test_getargs.py /^class BadInt:$/;" c +BadInt Lib/test/test_index.py /^ class BadInt:$/;" c function:BaseTestCase.test_index_returns_int_subclass +BadInt Lib/test/test_int.py /^ class BadInt(trunc_result_base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +BadInt Lib/test/test_int.py /^ class BadInt(int):$/;" c function:IntTestCases.test_int_subclass_with_int +BadInt Lib/test/test_int.py /^ class BadInt:$/;" c function:IntTestCases.test_int_returns_int_subclass +BadInt Lib/test/test_os.py /^ class BadInt:$/;" c function:UtimeTests.test_issue31577.get_bad_int +BadInt Lib/test/test_random.py /^ class BadInt(int):$/;" c function:MersenneTwister_TestBasicOps.test_bug_31478 +BadInt Lib/test/test_subprocess.py /^ class BadInt:$/;" c function:POSIXProcessTestCase.test_fork_exec_sorted_fd_sanity_check +BadInt2 Lib/test/test_capi/test_getargs.py /^class BadInt2:$/;" c +BadInt2 Lib/test/test_index.py /^ class BadInt2(int):$/;" c function:BaseTestCase.test_index_returns_int_subclass +BadInt2 Lib/test/test_int.py /^ class BadInt2(int):$/;" c function:IntTestCases.test_int_returns_int_subclass +BadInt3 Lib/test/test_capi/test_getargs.py /^class BadInt3(int):$/;" c +BadItem Lib/test/test_csv.py /^ class BadItem:$/;" c function:Test_Csv.test_write_arg_valid +BadIterable Lib/test/test_builtin.py /^ class BadIterable:$/;" c function:BuiltinTest.test_zip_bad_iterable +BadIterable Lib/test/test_bytes.py /^ class BadIterable:$/;" c function:BaseBytesTest.test_constructor_exceptions +BadIterable Lib/test/test_coroutines.py /^ class BadIterable:$/;" c function:CoroutineTest.test_for_assign_raising_stop_async_iteration_2 +BadIterable Lib/test/test_csv.py /^class BadIterable:$/;" c +BadIterable Lib/test/test_itertools.py /^ class BadIterable:$/;" c function:TestBasicOps.test_zip_longest_bad_iterable +BadIterable Lib/test/test_operator.py /^class BadIterable:$/;" c +BadIterableClass Lib/test/test_iter.py /^class BadIterableClass:$/;" c +BadIterator Lib/test/test_iter.py /^ class BadIterator(object):$/;" c function:TestCase.test_3720 +BadLen Lib/test/test_iterlen.py /^class BadLen(object):$/;" c +BadLengthHint Lib/test/test_iterlen.py /^class BadLengthHint(object):$/;" c +BadList Lib/test/test_csv.py /^ class BadList:$/;" c function:Test_Csv.test_write_arg_valid +BadList Lib/test/test_kqueue.py /^ class BadList:$/;" c function:TestKQueue.test_issue30058 +BadLoader Lib/test/test_warnings/__init__.py /^ class BadLoader:$/;" c function:_WarningsTests.test_issue31285.get_bad_loader +BadLoaderFinder Lib/test/test_importlib/import_/test_api.py /^class BadLoaderFinder:$/;" c +BadMapping Lib/test/test_capi/test_abstract.py /^ class BadMapping:$/;" c function:CAPITest.test_mapping_keys_valuesitems_bad_arg +BadMapping Lib/test/test_capi/test_dict.py /^ class BadMapping(dict):$/;" c function:CAPITest.test_mapping_keys_valuesitems +BadMapping Lib/test/test_unicode.py /^ class BadMapping:$/;" c function:UnicodeTest.test_format_map +BadMeta Lib/test/test_types.py /^ class BadMeta(type):$/;" c function:ClassCreationTests.test_bad___prepare__ +BadMeta Lib/test/test_types.py /^ class BadMeta(type):$/;" c function:UnionTests.test_bad_instancecheck +BadMeta Lib/test/test_types.py /^ class BadMeta(type):$/;" c function:UnionTests.test_bad_subclasscheck +BadMeta Lib/test/test_types.py /^ class BadMeta(type):$/;" c function:UnionTests.test_or_type_operator_with_bad_module +BadMeta Lib/test/test_types.py /^ class BadMeta:$/;" c function:ClassCreationTests.test_bad___prepare__ +BadModule Lib/test/test_typing.py /^ class BadModule:$/;" c function:GetTypeHintTests.test_get_type_hints_bad_module +BadMultiply Lib/test/test_math.py /^ class BadMultiply:$/;" c function:MathTests.testSumProd +BadNewlineHandler Lib/test/test_imaplib.py /^ class BadNewlineHandler(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_line_termination +BadNewlineHandler Lib/test/test_imaplib.py /^ class BadNewlineHandler(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_line_termination +BadObjectUnicodeDecodeError Lib/test/test_codeccallbacks.py /^class BadObjectUnicodeDecodeError(UnicodeDecodeError):$/;" c +BadObjectUnicodeEncodeError Lib/test/test_codeccallbacks.py /^class BadObjectUnicodeEncodeError(UnicodeEncodeError):$/;" c +BadOptionError Lib/optparse.py /^class BadOptionError (OptParseError):$/;" c +BadP Lib/test/test_typing.py /^ class BadP(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance +BadP Lib/test/test_typing.py /^ class BadP(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +BadP Lib/test/test_typing.py /^ class BadP(Protocol):$/;" c function:ProtocolTests.test_protocols_issubclass +BadP1 Lib/test/test_typing.py /^ class BadP1(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +BadPG Lib/test/test_typing.py /^ class BadPG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance +BadPG Lib/test/test_typing.py /^ class BadPG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +BadPG Lib/test/test_typing.py /^ class BadPG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_issubclass +BadPG1 Lib/test/test_typing.py /^ class BadPG1(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +BadPattern Lib/test/test_string.py /^ class BadPattern(Template):$/;" c function:TestTemplate.test_get_identifiers +BadPattern Lib/test/test_string.py /^ class BadPattern(Template):$/;" c function:TestTemplate.test_is_valid +BadPattern Lib/test/test_string.py /^ class BadPattern(Template):$/;" c function:TestTemplate.test_pattern_override +BadPickler Lib/test/pickletester.py /^ class BadPickler(self.Pickler):$/;" c function:AbstractPickleModuleTests.test_bad_init +BadReader Lib/test/test_io.py /^ class BadReader(self.io.BufferedIOBase):$/;" c function:CMiscIOTest.test_readinto_buffer_overflow +BadReader Lib/test/test_marshal.py /^ class BadReader(io.BytesIO):$/;" c function:BugsTestCase.test_bad_reader +BadRepr Lib/test/mapping_tests.py /^ class BadRepr(object):$/;" c function:TestHashMappingProtocol.test_repr +BadRepr Lib/test/test_dict.py /^ class BadRepr(object):$/;" c function:DictTest.test_repr +BadSeq Lib/test/mapping_tests.py /^ class BadSeq(object):$/;" c function:TestMappingProtocol.test_fromkeys +BadSeq Lib/test/test_builtin.py /^ class BadSeq(object):$/;" c function:BuiltinTest.test_filter +BadSeq Lib/test/test_builtin.py /^ class BadSeq:$/;" c function:BuiltinTest.test_len +BadSeq Lib/test/test_builtin.py /^ class BadSeq:$/;" c function:BuiltinTest.test_map +BadSeq Lib/test/test_builtin.py /^ class BadSeq:$/;" c function:BuiltinTest.test_max +BadSeq Lib/test/test_builtin.py /^ class BadSeq:$/;" c function:BuiltinTest.test_min +BadSeq Lib/test/test_builtin.py /^ class BadSeq:$/;" c function:BuiltinTest.test_sum +BadSeq Lib/test/test_builtin.py /^ class BadSeq:$/;" c function:BuiltinTest.test_zip +BadSeq Lib/test/test_dict.py /^ class BadSeq(object):$/;" c function:DictTest.test_fromkeys +BadSeq Lib/test/test_functools.py /^ class BadSeq:$/;" c function:TestReduce.test_reduce +BadSeq Lib/test/test_resource.py /^ class BadSeq:$/;" c function:ResourceTest.test_prlimit_refcount +BadSeq1 Lib/test/string_tests.py /^class BadSeq1(Sequence):$/;" c +BadSeq2 Lib/test/string_tests.py /^class BadSeq2(Sequence):$/;" c +BadSequence Lib/test/test_ctypes/test_returnfuncptrs.py /^ class BadSequence(tuple):$/;" c function:ReturnFuncPtrTestCase.test_from_dll_refcount +BadSequence Lib/test/test_functools.py /^ class BadSequence:$/;" c function:TestPartial.test_setstate_refcount +BadSequence Lib/test/test_resource.py /^ class BadSequence:$/;" c function:ResourceTest.test_setrusage_refcount +BadSizeof Lib/test/test_sys.py /^ class BadSizeof:$/;" c function:SizeofTest.test_errors +BadSource Lib/test/test_warnings/__init__.py /^ class BadSource(str):$/;" c function:_WarningsTests.test_issue31285.get_bad_loader.BadLoader.get_source +BadSpecFinderLoader Lib/test/test_importlib/import_/test_api.py /^class BadSpecFinderLoader:$/;" c +BadStartUnicodeEncodeError Lib/test/test_codeccallbacks.py /^class BadStartUnicodeEncodeError(UnicodeEncodeError):$/;" c +BadStaticMethod Lib/test/test_unittest/testmock/testhelpers.py /^ class BadStaticMethod:$/;" c function:TestCallablePredicate.test_non_callable_staticmethod +BadStatusLine Lib/http/client.py /^class BadStatusLine(HTTPException):$/;" c +BadStr Lib/test/test_call.py /^class BadStr(str):$/;" c +BadStr Lib/test/test_capi/test_getargs.py /^ class BadStr(str):$/;" c function:KeywordOnly_TestCase.test_weird_str_subclass +BadStr Lib/test/test_capi/test_getargs.py /^ class BadStr(str):$/;" c function:KeywordOnly_TestCase.test_weird_str_subclass2 +BadStrWarning Lib/test/test_warnings/__init__.py /^ class BadStrWarning(Warning):$/;" c function:WarnTests.test_bad_str +BadStream Lib/test/test_logging.py /^class BadStream(object):$/;" c +BadStruct Lib/test/test_ctypes/test_parameters.py /^ class BadStruct(Structure):$/;" c function:SimpleTypesTestCase.test_issue31311 +BadSuper Lib/test/test_enum.py /^ class BadSuper(self.enum_type):$/;" c function:_EnumTests.test_bad_new_super +BadTarget Lib/test/test_coroutines.py /^ class BadTarget:$/;" c function:CoroutineTest.test_for_assign_raising_stop_async_iteration +BadThing Lib/test/test_traceback.py /^ class BadThing:$/;" c function:BaseExceptionReportingTests.test_exception_with_invalid_notes +BadTuple Lib/test/test_functools.py /^class BadTuple(tuple):$/;" c +BadType Lib/test/test_types.py /^ class BadType(type):$/;" c function:UnionTests.test_or_type_operator_with_genericalias +BadType Lib/test/test_typing.py /^ class BadType(BadBase):$/;" c function:GetTypeHintTests.test_get_type_hints_annotated_bad_module +BadTypeClass Lib/test/test_class.py /^ class BadTypeClass:$/;" c function:ClassTests.testBadTypeReturned +BadUnicode_NoDeclaration Lib/test/test_linecache.py /^class BadUnicode_NoDeclaration(GetLineTestsBadData, unittest.TestCase):$/;" c +BadUnicode_WithDeclaration Lib/test/test_linecache.py /^class BadUnicode_WithDeclaration(GetLineTestsBadData, unittest.TestCase):$/;" c +BadUnpickler Lib/test/pickletester.py /^ class BadUnpickler(self.Unpickler):$/;" c function:AbstractPickleModuleTests.test_bad_init +BadUpperStr Lib/test/test_sqlite3/test_hooks.py /^ class BadUpperStr(str):$/;" c function:CollationTests.test_create_collation_bad_upper +BadUsage Lib/pydoc.py /^ class BadUsage(Exception): pass$/;" c function:cli +BadWindow Lib/test/test_sqlite3/test_userfunctions.py /^class BadWindow(Exception):$/;" c +BadWriter Lib/test/test_csv.py /^ class BadWriter:$/;" c function:Test_Csv.test_writer_arg_valid +BadZipFile Lib/zipfile/__init__.py /^class BadZipFile(Exception):$/;" c +Badtzname Lib/test/datetimetester.py /^ class Badtzname(tzinfo):$/;" c function:TestTimeTZ.test_zones +Bag Lib/test/test_string.py /^class Bag:$/;" c +Bag Lib/test/test_unicode.py /^ class Bag:$/;" c function:StringModuleTest.test_str_subclass_attr +Balloc Python/dtoa.c /^Balloc(int k)$/;" f file: +Balloon Lib/tkinter/tix.py /^class Balloon(TixWidget):$/;" c +Bar Lib/test/dataclass_textanno.py /^class Bar:$/;" c +Bar Lib/test/test_bool.py /^ class Bar(object):$/;" c function:BoolTest.test_convert_to_bool +Bar Lib/test/test_collections.py /^ class Bar:$/;" c function:TestOneTrickPonyABCs.test_Awaitable +Bar Lib/test/test_collections.py /^ class Bar:$/;" c function:TestOneTrickPonyABCs.test_Coroutine +Bar Lib/test/test_dataclasses.py /^ class Bar(Foo):$/;" c function:TestCase.test_default_factory_derived +Bar Lib/test/test_enum.py /^ class Bar:$/;" c function:TestSpecial.test_enum_of_types +Bar Lib/test/test_enum.py /^ class Bar:$/;" c function:TestSpecial.test_enum_of_types_with_nonmember +Bar Lib/test/test_inspect.py /^ class Bar(Spam, Foo):$/;" c function:TestSignatureObject.test_signature_on_callable_objects +Bar Lib/test/test_inspect.py /^ class Bar(dict):$/;" c function:TestGetattrStatic.test_mutated_mro +Bar Lib/test/test_sqlite3/test_types.py /^ class Bar: pass$/;" c function:DeclTypesTests.test_unsupported_dict +Bar Lib/test/test_sqlite3/test_types.py /^ class Bar: pass$/;" c function:DeclTypesTests.test_unsupported_seq +Bar Lib/test/test_types.py /^ class Bar(metaclass=BadMeta()):$/;" c class:ClassCreationTests.test_bad___prepare__.BadMeta +Bar Lib/test/test_typing.py /^ class Bar(Literal): pass$/;" c function:LiteralTests.test_no_subclassing +Bar Lib/test/test_typing.py /^ class Bar(typing.ByteString, typing.Awaitable): ...$/;" c function:CollectionsAbcTests.test_bytestring +Bar Lib/test/test_typing.py /^ class Bar: ...$/;" c function:CollectionsAbcTests.test_subclassing_subclasshook +Bar Lib/test/test_typing.py /^ class Bar[T]:$/;" c function:ProtocolTests.test_pep695_generic_protocol_callable_members +Bar Lib/test/test_typing.py /^ class Bar[T]:$/;" c function:ProtocolTests.test_pep695_generics_can_be_runtime_checkable +Bar Lib/test/test_typing.py /^class Bar(_typed_dict_helper.Foo, total=False):$/;" c +Bar Lib/test/test_unittest/test_case.py /^ class Bar(Foo):$/;" c class:Test +Bar Lib/test/test_unittest/test_skipping.py /^ class Bar(Foo):$/;" c function:Test_TestSkipping.test_expected_failure_with_wrapped_subclass +Bar Lib/test/test_unittest/testmock/testhelpers.py /^ class Bar(object):$/;" c class:SpecSignatureTest.test_spec_inheritance_for_classes.Foo +Bar Lib/test/test_unittest/testmock/testhelpers.py /^ class Bar(Foo): pass$/;" c function:SpecSignatureTest.test_descriptors +Bar Lib/test/test_unittest/testmock/testpatch.py /^ class Bar(object):$/;" c class:PatchTest.test_autospec.Boo +Bar Lib/test/test_unittest/testmock/testpatch.py /^ class Bar(Foo):$/;" c function:PatchTest.test_autospec_with_object +Bar Lib/test/test_unittest/testmock/testpatch.py /^ class Bar(object):$/;" c function:PatchTest.test_new_callable_keyword_arguments +Bar Lib/test/test_unittest/testmock/testpatch.py /^ class Bar(object):$/;" c function:PatchTest.test_new_callable_spec +Bar Lib/test/test_unittest/testmock/testpatch.py /^ class Bar(object):$/;" c class:Foo +BarFormatter Lib/test/test_string.py /^ class BarFormatter(string.Formatter):$/;" c function:ModuleTest.test_override_parse +BarGeneric Lib/test/test_typing.py /^ class BarGeneric(TypedDict, Generic[T]):$/;" c function:TypedDictTests.test_is_typeddict +BarGeneric Lib/test/test_typing.py /^class BarGeneric(_typed_dict_helper.FooGeneric[T], total=False):$/;" c +BarHandler Lib/test/test_urllib2.py /^ class BarHandler(urllib.request.BaseHandler):$/;" c function:MiscTests.test_build_opener +BareLoader Lib/test/test_module/__init__.py /^class BareLoader:$/;" c +BareQuotedString Lib/email/_header_value_parser.py /^class BareQuotedString(QuotedString):$/;" c +Barrier Lib/asyncio/locks.py /^class Barrier(mixins._LoopBoundMixin):$/;" c +Barrier Lib/multiprocessing/context.py /^ def Barrier(self, parties, action=None, timeout=None):$/;" m class:BaseContext +Barrier Lib/multiprocessing/synchronize.py /^class Barrier(threading.Barrier):$/;" c +Barrier Lib/test/_test_multiprocessing.py /^ Barrier = property(operator.attrgetter('manager.Barrier'))$/;" v class:ManagerMixin +Barrier Lib/test/_test_multiprocessing.py /^ Barrier = staticmethod(multiprocessing.Barrier)$/;" v class:ProcessesMixin +Barrier Lib/test/_test_multiprocessing.py /^ Barrier = staticmethod(multiprocessing.dummy.Barrier)$/;" v class:ThreadsMixin +Barrier Lib/test/test_thread.py /^class Barrier:$/;" c +Barrier Lib/threading.py /^class Barrier:$/;" c +BarrierProxy Lib/multiprocessing/managers.py /^class BarrierProxy(BaseProxy):$/;" c +BarrierTest Lib/test/test_thread.py /^class BarrierTest(BasicThreadTest):$/;" c +BarrierTests Lib/test/lock_tests.py /^class BarrierTests(BaseTestCase):$/;" c +BarrierTests Lib/test/test_asyncio/test_locks.py /^class BarrierTests(unittest.IsolatedAsyncioTestCase):$/;" c +BarrierTests Lib/test/test_threading.py /^class BarrierTests(lock_tests.BarrierTests):$/;" c +Base Lib/lib2to3/pytree.py /^class Base(object):$/;" c +Base Lib/test/test_capi/test_misc.py /^ class Base(metaclass=metaclass):$/;" c function:CAPITest.test_heaptype_with_custom_metaclass_deprecation +Base Lib/test/test_compare.py /^ class Base:$/;" c function:ComparisonSimpleTest.test_ne_low_priority +Base Lib/test/test_dataclasses.py /^ class Base(Generic[T, S]):$/;" c function:TestCase.test_generic_extending +Base Lib/test/test_dataclasses.py /^ class Base(Root4):$/;" c function:TestSlots.test_generated_slots_value +Base Lib/test/test_dataclasses.py /^ class Base(metaclass=Meta):$/;" c function:TestDocString.test_docstring_with_no_signature +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestCase.test_init_var_inheritance +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestCase.test_overwrite_fields_in_derived_class +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestHash.test_hash_no_args +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestSlots.test_derived_added_field +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestSlots.test_slots_weakref_base_str +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestSlots.test_slots_weakref_base_tuple +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestSlots.test_weakref_slot_normal_base_weakref_slot +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestSlots.test_weakref_slot_subclass_no_weakref_slot +Base Lib/test/test_dataclasses.py /^ class Base:$/;" c function:TestSlots.test_weakref_slot_subclass_weakref_slot +Base Lib/test/test_descr.py /^ class Base(object):$/;" c function:.test_set_dict +Base Lib/test/test_descr.py /^ class Base(object):$/;" c function:.test_supers +Base Lib/test/test_descr.py /^ class Base(object):$/;" c function:MiscTests.test_type_lookup_mro_reference +Base Lib/test/test_descr.py /^ class Base:$/;" c function:.test_bound_method_repr +Base Lib/test/test_descr.py /^ class Base:$/;" c function:.test_subclassing_does_not_duplicate_dict_descriptors +Base Lib/test/test_enum.py /^ class Base(Enum):$/;" c function:TestSpecial.test_subclass_duplicate_name +Base Lib/test/test_enum.py /^ class Base(Enum):$/;" c function:TestSpecial.test_subclass_duplicate_name_dynamic +Base Lib/test/test_enum.py /^ class Base:$/;" c function:TestSpecial.test_init_exception +Base Lib/test/test_inspect.py /^ class Base(object):$/;" c function:TestGetattrStatic.test_class_as_property +Base Lib/test/test_inspect.py /^ class Base(object):$/;" c function:TestGetattrStatic.test_mro_as_property +Base Lib/test/test_subclassinit.py /^ class Base:$/;" c function:Test.test_init_subclass_diamond +Base Lib/test/test_type_params.py /^ class Base:$/;" c function:TypeParamsAccessTest.test_super +Base Lib/test/test_type_params.py /^ class Base:$/;" c function:TypeParamsComplexCallsTest.test_complex_base +Base Lib/test/test_type_params.py /^ class Base[T]: ...$/;" c function:TypeParamsAccessTest.test_class_base_containing_lambda +Base Lib/test/test_type_params.py /^ class Base:$/;" c function:make_base +Base Lib/test/test_typing.py /^ class Base(Generic[P]):$/;" c function:ParamSpecTests.test_type_var_subst_for_other_type_vars +Base Lib/test/test_typing.py /^ class Base(Generic[T_co]):$/;" c function:GenericTests.test_complex_subclasses +Base Lib/test/test_typing.py /^ class Base(typing.Iterable):$/;" c function:CollectionsAbcTests.test_subclassing_subclasshook +Base Lib/test/test_typing.py /^ class Base: ...$/;" c function:GenericTests.test_extended_generic_rules_eq +Base Lib/test/test_typing.py /^ class Base:$/;" c function:OverrideDecoratorTests.test_override +Base Lib/test/test_typing.py /^ class Base:$/;" c function:OverrideDecoratorTests.test_property +Base Lib/unittest/mock.py /^class Base(object):$/;" c +Base1 Lib/test/test_dataclasses.py /^ class Base1:$/;" c function:TestMakeDataclass.test_base +Base1 Lib/test/test_dataclasses.py /^ class Base1:$/;" c function:TestMakeDataclass.test_base_dataclass +Base2 Lib/test/test_dataclasses.py /^ class Base2:$/;" c function:TestMakeDataclass.test_base +Base2 Lib/test/test_dataclasses.py /^ class Base2:$/;" c function:TestMakeDataclass.test_base_dataclass +Base2 Lib/test/test_descr.py /^ class Base2(object):$/;" c function:MiscTests.test_type_lookup_mro_reference +Base2 Lib/test/test_enum.py /^ class Base2(Enum):$/;" c function:TestSpecial.test_subclass_duplicate_name_dynamic +BaseAnimal Lib/test/test_typing.py /^ class BaseAnimal(TypedDict):$/;" c function:TypedDictTests.test_keys_inheritance +BaseArrayMemoryTests Lib/test/test_memoryview.py /^class BaseArrayMemoryTests(AbstractMemoryTests):$/;" c +BaseBrowser Lib/webbrowser.py /^class BaseBrowser(object):$/;" c +BaseBytesMemoryTests Lib/test/test_memoryview.py /^class BaseBytesMemoryTests(AbstractMemoryTests):$/;" c +BaseBytesTest Lib/test/test_bytes.py /^class BaseBytesTest:$/;" c +BaseCGIHandler Lib/wsgiref/handlers.py /^class BaseCGIHandler(SimpleHandler):$/;" c +BaseCallableTests Lib/test/test_typing.py /^class BaseCallableTests:$/;" c +BaseChildWatcher Lib/asyncio/unix_events.py /^class BaseChildWatcher(AbstractChildWatcher):$/;" c +BaseChildWatcherTests Lib/test/test_asyncio/test_unix_events.py /^class BaseChildWatcherTests(unittest.TestCase):$/;" c +BaseClass Lib/test/test_dynamicclassattribute.py /^class BaseClass(object):$/;" c +BaseClass Lib/test/test_property.py /^class BaseClass(object):$/;" c +BaseCompressTestCase Lib/test/test_zlib.py /^class BaseCompressTestCase(object):$/;" c +BaseConfigurator Lib/logging/config.py /^class BaseConfigurator(object):$/;" c +BaseContext Lib/multiprocessing/context.py /^class BaseContext(object):$/;" c +BaseCookedTest Lib/test/test_locale.py /^class BaseCookedTest(unittest.TestCase):$/;" c +BaseCookie Lib/http/cookies.py /^class BaseCookie(dict):$/;" c +BaseCurrentLoopTests Lib/test/test_asyncio/test_tasks.py /^class BaseCurrentLoopTests:$/;" c +BaseDefaultEventLoopPolicy Lib/asyncio/events.py /^class BaseDefaultEventLoopPolicy(AbstractEventLoopPolicy):$/;" c +BaseDelocalizeTest Lib/test/test_locale.py /^class BaseDelocalizeTest(BaseLocalizedTest):$/;" c +BaseDummyBuilder Lib/test/test_xml_etree.py /^ class BaseDummyBuilder:$/;" c function:TreeBuilderTest.test_dummy_builder +BaseEagerTaskFactoryTests Lib/test/test_asyncio/test_eager_task_factory.py /^class BaseEagerTaskFactoryTests(BaseTaskCountingTests):$/;" c +BaseEnum Lib/test/test_enum.py /^ class BaseEnum(self.enum_type):$/;" c function:_EnumTests.setUp +BaseErrorTestServer Lib/test/test_socketserver.py /^class BaseErrorTestServer(socketserver.TCPServer):$/;" c +BaseEventLoop Lib/asyncio/base_events.py /^class BaseEventLoop(events.AbstractEventLoop):$/;" c +BaseEventLoopTests Lib/test/test_asyncio/test_base_events.py /^class BaseEventLoopTests(test_utils.TestCase):$/;" c +BaseEventLoopWithSelectorTests Lib/test/test_asyncio/test_base_events.py /^class BaseEventLoopWithSelectorTests(test_utils.TestCase):$/;" c +BaseEventTests Lib/test/test_asyncio/test_base_events.py /^class BaseEventTests(test_utils.TestCase):$/;" c +BaseExceptionGroup_clear Objects/exceptions.c /^BaseExceptionGroup_clear(PyBaseExceptionGroupObject *self)$/;" f file: +BaseExceptionGroup_dealloc Objects/exceptions.c /^BaseExceptionGroup_dealloc(PyBaseExceptionGroupObject *self)$/;" f file: +BaseExceptionGroup_derive Objects/exceptions.c /^BaseExceptionGroup_derive(PyObject *self_, PyObject *args)$/;" f file: +BaseExceptionGroup_init Objects/exceptions.c /^BaseExceptionGroup_init(PyBaseExceptionGroupObject *self,$/;" f file: +BaseExceptionGroup_members Objects/exceptions.c /^static PyMemberDef BaseExceptionGroup_members[] = {$/;" v file: +BaseExceptionGroup_methods Objects/exceptions.c /^static PyMethodDef BaseExceptionGroup_methods[] = {$/;" v file: +BaseExceptionGroup_new Objects/exceptions.c /^BaseExceptionGroup_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +BaseExceptionGroup_split Objects/exceptions.c /^BaseExceptionGroup_split(PyObject *self, PyObject *args)$/;" f file: +BaseExceptionGroup_str Objects/exceptions.c /^BaseExceptionGroup_str(PyBaseExceptionGroupObject *self)$/;" f file: +BaseExceptionGroup_subgroup Objects/exceptions.c /^BaseExceptionGroup_subgroup(PyObject *self, PyObject *args)$/;" f file: +BaseExceptionGroup_traverse Objects/exceptions.c /^BaseExceptionGroup_traverse(PyBaseExceptionGroupObject *self,$/;" f file: +BaseExceptionReportingTests Lib/test/test_traceback.py /^class BaseExceptionReportingTests:$/;" c +BaseException_add_note Objects/exceptions.c /^BaseException_add_note(PyObject *self, PyObject *note)$/;" f file: +BaseException_clear Objects/exceptions.c /^BaseException_clear(PyBaseExceptionObject *self)$/;" f file: +BaseException_dealloc Objects/exceptions.c /^BaseException_dealloc(PyBaseExceptionObject *self)$/;" f file: +BaseException_get_args Objects/exceptions.c /^BaseException_get_args(PyBaseExceptionObject *self, void *Py_UNUSED(ignored))$/;" f file: +BaseException_get_cause Objects/exceptions.c /^BaseException_get_cause(PyObject *self, void *Py_UNUSED(ignored))$/;" f file: +BaseException_get_context Objects/exceptions.c /^BaseException_get_context(PyObject *self, void *Py_UNUSED(ignored))$/;" f file: +BaseException_get_tb Objects/exceptions.c /^BaseException_get_tb(PyBaseExceptionObject *self, void *Py_UNUSED(ignored))$/;" f file: +BaseException_getset Objects/exceptions.c /^static PyGetSetDef BaseException_getset[] = {$/;" v file: +BaseException_init Objects/exceptions.c /^BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds)$/;" f file: +BaseException_members Objects/exceptions.c /^static struct PyMemberDef BaseException_members[] = {$/;" v typeref:struct:PyMemberDef file: +BaseException_methods Objects/exceptions.c /^static PyMethodDef BaseException_methods[] = {$/;" v file: +BaseException_new Objects/exceptions.c /^BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +BaseException_reduce Objects/exceptions.c /^BaseException_reduce(PyBaseExceptionObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +BaseException_repr Objects/exceptions.c /^BaseException_repr(PyBaseExceptionObject *self)$/;" f file: +BaseException_set_args Objects/exceptions.c /^BaseException_set_args(PyBaseExceptionObject *self, PyObject *val, void *Py_UNUSED(ignored))$/;" f file: +BaseException_set_cause Objects/exceptions.c /^BaseException_set_cause(PyObject *self, PyObject *arg, void *Py_UNUSED(ignored))$/;" f file: +BaseException_set_context Objects/exceptions.c /^BaseException_set_context(PyObject *self, PyObject *arg, void *Py_UNUSED(ignored))$/;" f file: +BaseException_set_tb Objects/exceptions.c /^BaseException_set_tb(PyBaseExceptionObject *self, PyObject *tb, void *Py_UNUSED(ignored))$/;" f file: +BaseException_setstate Objects/exceptions.c /^BaseException_setstate(PyObject *self, PyObject *state)$/;" f file: +BaseException_str Objects/exceptions.c /^BaseException_str(PyBaseExceptionObject *self)$/;" f file: +BaseException_traverse Objects/exceptions.c /^BaseException_traverse(PyBaseExceptionObject *self, visitproc visit, void *arg)$/;" f file: +BaseException_with_traceback Objects/exceptions.c /^BaseException_with_traceback(PyObject *self, PyObject *tb) {$/;" f file: +BaseFileInputGlobalMethodsTest Lib/test/test_fileinput.py /^class BaseFileInputGlobalMethodsTest(unittest.TestCase):$/;" c +BaseFileTest Lib/test/test_logging.py /^class BaseFileTest(BaseTest):$/;" c +BaseFilter Lib/tracemalloc.py /^class BaseFilter:$/;" c +BaseFix Lib/lib2to3/fixer_base.py /^class BaseFix(object):$/;" c +BaseFormattingTest Lib/test/test_locale.py /^class BaseFormattingTest(object):$/;" c +BaseFutureDoneCallbackTests Lib/test/test_asyncio/test_futures.py /^class BaseFutureDoneCallbackTests():$/;" c +BaseFutureInheritanceTests Lib/test/test_asyncio/test_futures.py /^class BaseFutureInheritanceTests:$/;" c +BaseFutureTests Lib/test/test_asyncio/test_futures.py /^class BaseFutureTests:$/;" c +BaseGUITestRunner Tools/unittestgui/unittestgui.py /^class BaseGUITestRunner(object):$/;" c +BaseHTTPRequestHandler Lib/http/server.py /^class BaseHTTPRequestHandler(socketserver.StreamRequestHandler):$/;" c +BaseHTTPRequestHandlerTestCase Lib/test/test_httpservers.py /^class BaseHTTPRequestHandlerTestCase(unittest.TestCase):$/;" c +BaseHTTPServerTestCase Lib/test/test_httpservers.py /^class BaseHTTPServerTestCase(BaseTestCase):$/;" c +BaseHandler Lib/urllib/request.py /^class BaseHandler:$/;" c +BaseHandler Lib/wsgiref/handlers.py /^class BaseHandler:$/;" c +BaseHeader Lib/email/headerregistry.py /^class BaseHeader(str):$/;" c +BaseKeepaliveServerTestCase Lib/test/test_xmlrpc.py /^class BaseKeepaliveServerTestCase(BaseServerTestCase):$/;" c +BaseListProxy Lib/multiprocessing/managers.py /^BaseListProxy = MakeProxyType('BaseListProxy', ($/;" v +BaseLocalTest Lib/test/test_threading_local.py /^class BaseLocalTest:$/;" c +BaseLocalizeTest Lib/test/test_locale.py /^class BaseLocalizeTest(BaseLocalizedTest):$/;" c +BaseLocalizedTest Lib/test/test_locale.py /^class BaseLocalizedTest(unittest.TestCase):$/;" c +BaseLockTests Lib/test/lock_tests.py /^class BaseLockTests(BaseTestCase):$/;" c +BaseLoopSockSendfileTests Lib/test/test_asyncio/test_base_events.py /^class BaseLoopSockSendfileTests(test_utils.TestCase):$/;" c +BaseManager Lib/multiprocessing/managers.py /^class BaseManager(object):$/;" c +BaseMemorySliceSliceTests Lib/test/test_memoryview.py /^class BaseMemorySliceSliceTests:$/;" c +BaseMemorySliceTests Lib/test/test_memoryview.py /^class BaseMemorySliceTests:$/;" c +BaseMemoryviewTests Lib/test/test_memoryview.py /^class BaseMemoryviewTests:$/;" c +BaseMixin Lib/test/_test_multiprocessing.py /^class BaseMixin(object):$/;" c +BaseNodeVisitorCases Lib/test/test_ast.py /^class BaseNodeVisitorCases:$/;" c +BaseNonEagerTaskFactoryTests Lib/test/test_asyncio/test_eager_task_factory.py /^class BaseNonEagerTaskFactoryTests(BaseTaskCountingTests):$/;" c +BasePattern Lib/lib2to3/pytree.py /^class BasePattern(object):$/;" c +BasePoolProxy Lib/multiprocessing/managers.py /^BasePoolProxy = MakeProxyType('PoolProxy', ($/;" v +BaseProactorEventLoop Lib/asyncio/proactor_events.py /^class BaseProactorEventLoop(base_events.BaseEventLoop):$/;" c +BaseProactorEventLoopTests Lib/test/test_asyncio/test_proactor_events.py /^class BaseProactorEventLoopTests(test_utils.TestCase):$/;" c +BaseProcess Lib/multiprocessing/process.py /^class BaseProcess(object):$/;" c +BaseProtocol Lib/asyncio/protocols.py /^class BaseProtocol:$/;" c +BaseProxy Lib/multiprocessing/managers.py /^class BaseProxy(object):$/;" c +BaseQueueTestMixin Lib/test/test_queue.py /^class BaseQueueTestMixin(BlockingTestMixin):$/;" c +BaseRequestHandler Lib/socketserver.py /^class BaseRequestHandler:$/;" c +BaseRequestRateTest Lib/test/test_robotparser.py /^class BaseRequestRateTest(BaseRobotTest):$/;" c +BaseRobotTest Lib/test/test_robotparser.py /^class BaseRobotTest:$/;" c +BaseRotatingHandler Lib/logging/handlers.py /^class BaseRotatingHandler(logging.FileHandler):$/;" c +BaseSelector Lib/selectors.py /^class BaseSelector(metaclass=ABCMeta):$/;" c +BaseSelectorEventLoop Lib/asyncio/selector_events.py /^class BaseSelectorEventLoop(base_events.BaseEventLoop):$/;" c +BaseSelectorEventLoopTests Lib/test/test_asyncio/test_selector_events.py /^class BaseSelectorEventLoopTests(test_utils.TestCase):$/;" c +BaseSelectorTestCase Lib/test/test_selectors.py /^class BaseSelectorTestCase:$/;" c +BaseSemaphoreTests Lib/test/lock_tests.py /^class BaseSemaphoreTests(BaseTestCase):$/;" c +BaseServer Lib/socketserver.py /^class BaseServer:$/;" c +BaseServerTestCase Lib/test/test_xmlrpc.py /^class BaseServerTestCase(unittest.TestCase):$/;" c +BaseSideBar Lib/idlelib/sidebar.py /^class BaseSideBar:$/;" c +BaseSimpleQueueTest Lib/test/test_queue.py /^class BaseSimpleQueueTest:$/;" c +BaseSockTestsMixin Lib/test/test_asyncio/test_sock_lowlevel.py /^class BaseSockTestsMixin:$/;" c +BaseStartServer Lib/test/test_asyncio/test_server.py /^class BaseStartServer(func_tests.FunctionalTestCaseMixin):$/;" c +BaseStartTLS Lib/test/test_asyncio/test_sslproto.py /^class BaseStartTLS(func_tests.FunctionalTestCaseMixin):$/;" c +BaseStrTest Lib/test/test_bigmem.py /^class BaseStrTest:$/;" c +BaseStream Lib/_compression.py /^class BaseStream(io.BufferedIOBase):$/;" c +BaseSubprocessTransport Lib/asyncio/base_subprocess.py /^class BaseSubprocessTransport(transports.SubprocessTransport):$/;" c +BaseTaskCountingTests Lib/test/test_asyncio/test_eager_task_factory.py /^class BaseTaskCountingTests:$/;" c +BaseTaskIntrospectionTests Lib/test/test_asyncio/test_tasks.py /^class BaseTaskIntrospectionTests:$/;" c +BaseTaskTests Lib/test/test_asyncio/test_tasks.py /^class BaseTaskTests:$/;" c +BaseTest Lib/test/string_tests.py /^class BaseTest:$/;" c +BaseTest Lib/test/test_array.py /^class BaseTest:$/;" c +BaseTest Lib/test/test_asyncio/test_pep492.py /^class BaseTest(test_utils.TestCase):$/;" c +BaseTest Lib/test/test_asyncio/test_runners.py /^class BaseTest(unittest.TestCase):$/;" c +BaseTest Lib/test/test_bz2.py /^class BaseTest(unittest.TestCase):$/;" c +BaseTest Lib/test/test_genericalias.py /^class BaseTest(unittest.TestCase):$/;" c +BaseTest Lib/test/test_gzip.py /^class BaseTest(unittest.TestCase):$/;" c +BaseTest Lib/test/test_logging.py /^class BaseTest(unittest.TestCase):$/;" c +BaseTest Lib/test/test_optparse.py /^class BaseTest(unittest.TestCase):$/;" c +BaseTest Lib/test/test_shutil.py /^class BaseTest:$/;" c +BaseTest Lib/test/test_venv.py /^class BaseTest(unittest.TestCase):$/;" c +BaseTest Lib/test/test_warnings/__init__.py /^class BaseTest:$/;" c +BaseTestBufferedProtocol Lib/test/test_asyncio/test_buffered_proto.py /^class BaseTestBufferedProtocol(func_tests.FunctionalTestCaseMixin):$/;" c +BaseTestBytesGeneratorIdempotent Lib/test/test_email/test_email.py /^class BaseTestBytesGeneratorIdempotent:$/;" c +BaseTestCase Lib/test/_test_multiprocessing.py /^class BaseTestCase(object):$/;" c +BaseTestCase Lib/test/lock_tests.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_bdb.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_concurrent_futures/util.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_httpservers.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_index.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_ipaddress.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_regrtest.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_subprocess.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_tempfile.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_textwrap.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_threading.py /^class BaseTestCase(unittest.TestCase):$/;" c +BaseTestCase Lib/test/test_typing.py /^class BaseTestCase(TestCase):$/;" c +BaseTestInternals Lib/test/test_uuid.py /^class BaseTestInternals:$/;" c +BaseTestSuite Lib/unittest/suite.py /^class BaseTestSuite(object):$/;" c +BaseTestUUID Lib/test/test_uuid.py /^class BaseTestUUID:$/;" c +BaseTests Lib/test/test_fileinput.py /^class BaseTests:$/;" c +BaseThing Lib/test/test_email/test_contentmanager.py /^ class BaseThing(str):$/;" c class:TestContentManager +BaseTransport Lib/asyncio/transports.py /^class BaseTransport:$/;" c +BaseTypeAdapted Modules/_sqlite/module.h /^ int BaseTypeAdapted;$/;" m struct:__anon355 +BaseWidget Lib/tkinter/__init__.py /^class BaseWidget(Misc):$/;" c +BaseWinregTests Lib/test/test_winreg.py /^class BaseWinregTests(unittest.TestCase):$/;" c +BaseWithInit Lib/test/test_subclassinit.py /^ class BaseWithInit:$/;" c function:Test.test_init_subclass_skipped +BaseWithoutInit Lib/test/test_subclassinit.py /^ class BaseWithoutInit(BaseWithInit):$/;" c function:Test.test_init_subclass_skipped +BaseXYTestCase Lib/test/test_base64.py /^class BaseXYTestCase(unittest.TestCase):$/;" c +Basic Lib/idlelib/idle_test/test_config_key.py /^ class Basic(config_key.GetKeysFrame):$/;" c class:KeySelectionTest +BasicAuthHandler Lib/test/test_urllib2_localnet.py /^class BasicAuthHandler(http.server.BaseHTTPRequestHandler):$/;" c +BasicAuthTests Lib/test/test_urllib2_localnet.py /^class BasicAuthTests(unittest.TestCase):$/;" c +BasicBluetoothTest Lib/test/test_socket.py /^class BasicBluetoothTest(unittest.TestCase):$/;" c +BasicCANTest Lib/test/test_socket.py /^class BasicCANTest(unittest.TestCase):$/;" c +BasicConfigTest Lib/test/test_logging.py /^class BasicConfigTest(unittest.TestCase):$/;" c +BasicContext Lib/_pydecimal.py /^BasicContext = Context($/;" v +BasicElementTest Lib/test/test_xml_etree.py /^class BasicElementTest(ElementTestCase, unittest.TestCase):$/;" c +BasicFilterTest Lib/test/test_logging.py /^class BasicFilterTest(BaseTest):$/;" c +BasicHyperVTest Lib/test/test_socket.py /^class BasicHyperVTest(unittest.TestCase):$/;" c +BasicInterpolation Lib/configparser.py /^class BasicInterpolation(Interpolation):$/;" c +BasicIterClass Lib/test/test_iter.py /^class BasicIterClass:$/;" c +BasicQIPCRTRTest Lib/test/test_socket.py /^class BasicQIPCRTRTest(unittest.TestCase):$/;" c +BasicRDSTest Lib/test/test_socket.py /^class BasicRDSTest(unittest.TestCase):$/;" c +BasicSocketPairTest Lib/test/test_socket.py /^class BasicSocketPairTest(SocketPairTest):$/;" c +BasicSocketTests Lib/test/test_ssl.py /^class BasicSocketTests(unittest.TestCase):$/;" c +BasicStaticTypes Modules/_testcapimodule.c /^static PyTypeObject BasicStaticTypes[NUM_BASIC_STATIC_TYPES] = {$/;" v file: +BasicTCPTest Lib/test/test_socket.py /^class BasicTCPTest(SocketConnectedTest):$/;" c +BasicTCPTest2 Lib/test/test_socket.py /^class BasicTCPTest2(NetworkConnectionTest, BasicTCPTest):$/;" c +BasicTest Lib/test/test_httplib.py /^class BasicTest(TestCase):$/;" c +BasicTest Lib/test/test_venv.py /^class BasicTest(BaseTest):$/;" c +BasicTestCase Lib/test/test_configparser.py /^class BasicTestCase(CfgParserTestCaseClass):$/;" c +BasicTestMappingProtocol Lib/test/mapping_tests.py /^class BasicTestMappingProtocol(unittest.TestCase):$/;" c +BasicTests Lib/test/test_importlib/test_main.py /^class BasicTests(fixtures.DistInfoPkg, unittest.TestCase):$/;" c +BasicThreadTest Lib/test/test_thread.py /^class BasicThreadTest(unittest.TestCase):$/;" c +BasicUDPLITETest Lib/test/test_socket.py /^class BasicUDPLITETest(ThreadedUDPLITESocketTest):$/;" c +BasicUDPTest Lib/test/test_socket.py /^class BasicUDPTest(ThreadedUDPSocketTest):$/;" c +BasicUnicodeTest Lib/test/test_codecs.py /^class BasicUnicodeTest(unittest.TestCase, MixInCheckStateHandling):$/;" c +BasicUser Lib/test/test_typing.py /^ class BasicUser(User): pass$/;" c function:TypeTests.test_type_basic +BasicUser Lib/test/test_typing.py /^ class BasicUser(User): pass$/;" c function:TypeTests.test_type_typevar +BasicVSOCKTest Lib/test/test_socket.py /^class BasicVSOCKTest(unittest.TestCase):$/;" c +BasicWrapTestCase Lib/test/test_ctypes/test_as_parameter.py /^class BasicWrapTestCase(unittest.TestCase):$/;" c +Baz Lib/test/test_bool.py /^ class Baz(int):$/;" c function:BoolTest.test_convert_to_bool +Baz Lib/test/test_dataclasses.py /^ class Baz(Foo):$/;" c function:TestCase.test_default_factory_derived +Baz Lib/test/test_inspect.py /^ class Baz(Bar): pass$/;" c function:TestGetattrStatic.test_mutated_mro +Baz Lib/test/test_unittest/testmock/testhelpers.py /^ class Baz(SomeClass, Bar): pass$/;" c function:SpecSignatureTest.test_descriptors +Baz Lib/test/test_unittest/testmock/testsealable.py /^ class Baz:$/;" c class:TestSealable.test_seal_with_autospec.Foo +Bcopy Python/dtoa.c 437;" d file: +Bdb Lib/bdb.py /^class Bdb:$/;" c +Bdb Lib/test/test_bdb.py /^class Bdb(_bdb.Bdb):$/;" c +BdbException Lib/test/test_bdb.py /^class BdbException(Exception): pass$/;" c +BdbQuit Lib/bdb.py /^class BdbQuit(Exception):$/;" c +Bearish Lib/test/test_importlib/test_util.py /^ class Bearish:$/;" c function:PEP3147Tests.test_cache_from_source_override +BeepTest Lib/test/test_winsound.py /^class BeepTest(unittest.TestCase):$/;" c +BenchTimer Tools/stringbench/stringbench.py /^class BenchTimer(timeit.Timer):$/;" c +BetterTry Lib/test/datetimetester.py /^ class BetterTry(tzinfo):$/;" c function:TZInfoBase.test_bad_tzinfo_classes +Bfree Python/dtoa.c /^Bfree(Bigint *v)$/;" f file: +Bias Python/dtoa.c 243;" d file: +Big Lib/test/test_ctypes/test_bitfields.py /^ class Big(BigEndianStructure):$/;" c function:BitFieldTest.test_uint32_swap_big_endian +Big0 Python/dtoa.c 273;" d file: +Big1 Python/dtoa.c 274;" d file: +BigEndianStructure Lib/ctypes/_endian.py /^ BigEndianStructure = Structure$/;" v class:_swapped_union_meta +BigEndianStructure Lib/ctypes/_endian.py /^ class BigEndianStructure(Structure, metaclass=_swapped_struct_meta):$/;" c class:_swapped_union_meta +BigEndianUnion Lib/ctypes/_endian.py /^ BigEndianUnion = Union$/;" v class:_swapped_union_meta +BigEndianUnion Lib/ctypes/_endian.py /^ class BigEndianUnion(Union, metaclass=_swapped_union_meta):$/;" c class:_swapped_union_meta +BigNum Lib/test/test_json/test_enum.py /^class BigNum(IntEnum):$/;" c +BigPoint Lib/test/test_ctypes/test_byteswap.py /^ class BigPoint(BigEndianStructure):$/;" c function:Test.test_slots +Bigint Include/internal/pycore_dtoa.h /^Bigint {$/;" s +Bigint Python/dtoa.c /^typedef struct Bigint Bigint;$/;" t typeref:struct:Bigint file: +Bigint_Kmax Include/internal/pycore_dtoa.h 36;" d +Bigint_PREALLOC_SIZE Include/internal/pycore_dtoa.h 41;" d +BigmemPickleTests Lib/test/pickletester.py /^class BigmemPickleTests:$/;" c +BigmemTclTest Lib/test/test_tcl.py /^class BigmemTclTest(unittest.TestCase):$/;" c +BignumType Modules/_tkinter.c /^ const Tcl_ObjType *BignumType;$/;" m struct:__anon334 file: +Billboard Lib/msilib/schema.py /^Billboard = Table('Billboard')$/;" v +BinASCIITest Lib/test/test_binascii.py /^class BinASCIITest(unittest.TestCase):$/;" c +BinData Lib/idlelib/idle_test/test_debugger_r.py /^ class BinData:$/;" c function:IdbAdapterTest.test_dict_item_noattr +BinOp Include/internal/pycore_ast.h /^ } BinOp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon80 +BinOp_fields Python/Python-ast.c /^static const char * const BinOp_fields[]={$/;" v file: +BinOp_kind Include/internal/pycore_ast.h /^enum _expr_kind {BoolOp_kind=1, NamedExpr_kind=2, BinOp_kind=3, UnaryOp_kind=4,$/;" e enum:_expr_kind +BinOp_type Include/internal/pycore_ast_state.h /^ PyObject *BinOp_type;$/;" m struct:ast_state +Binary Lib/msilib/__init__.py /^class Binary:$/;" c +Binary Lib/msilib/schema.py /^Binary = Table('Binary')$/;" v +Binary Lib/sqlite3/dbapi2.py /^Binary = memoryview$/;" v +Binary Lib/xmlrpc/client.py /^class Binary:$/;" c +BinaryConverterTests Lib/test/test_sqlite3/test_types.py /^class BinaryConverterTests(unittest.TestCase):$/;" c +BinaryIO Lib/typing.py /^ BinaryIO = BinaryIO$/;" v class:io +BinaryIO Lib/typing.py /^class BinaryIO(IO[bytes]):$/;" c +BinaryInteger Lib/test/test_pydoc.py /^ class BinaryInteger(enum.IntEnum):$/;" c function:PydocDocTest.test_text_enum_member_with_value_zero +BinaryRestricted Modules/_decimal/tests/deccheck.py /^BinaryRestricted = ['__round__']$/;" v +BinaryTestCase Lib/test/test_xmlrpc.py /^class BinaryTestCase(unittest.TestCase):$/;" c +BindImage Lib/msilib/schema.py /^BindImage = Table('BindImage')$/;" v +Binnumber Lib/lib2to3/pgen2/tokenize.py /^Binnumber = r'0[bB]_?[01]+(?:_[01]+)*'$/;" v +Binnumber Lib/tokenize.py /^Binnumber = r'0[bB](?:_?[01])+'$/;" v +BitAnd Include/internal/pycore_ast.h /^ LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12,$/;" e enum:_operator +BitAnd_singleton Include/internal/pycore_ast_state.h /^ PyObject *BitAnd_singleton;$/;" m struct:ast_state +BitAnd_type Include/internal/pycore_ast_state.h /^ PyObject *BitAnd_type;$/;" m struct:ast_state +BitBucket Lib/test/test_builtin.py /^class BitBucket:$/;" c +BitFieldTest Lib/test/test_ctypes/test_bitfields.py /^class BitFieldTest(unittest.TestCase):$/;" c +BitOr Include/internal/pycore_ast.h /^ LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12,$/;" e enum:_operator +BitOr_singleton Include/internal/pycore_ast_state.h /^ PyObject *BitOr_singleton;$/;" m struct:ast_state +BitOr_type Include/internal/pycore_ast_state.h /^ PyObject *BitOr_type;$/;" m struct:ast_state +BitXor Include/internal/pycore_ast.h /^ LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12,$/;" e enum:_operator +BitXor_singleton Include/internal/pycore_ast_state.h /^ PyObject *BitXor_singleton;$/;" m struct:ast_state +BitXor_type Include/internal/pycore_ast_state.h /^ PyObject *BitXor_type;$/;" m struct:ast_state +BitmapImage Lib/tkinter/__init__.py /^class BitmapImage(Image):$/;" c +BitmapImageTest Lib/test/test_tkinter/test_images.py /^class BitmapImageTest(AbstractTkTest, unittest.TestCase):$/;" c +Bizarre Lib/test/test_enum.py /^ class Bizarre(Flag):$/;" c class:TestVerify.test_composite.Bizarre +Bizarre Lib/test/test_enum.py /^ class Bizarre(IntFlag):$/;" c class:TestVerify.test_composite.Bizarre +Bizarre Lib/test/test_enum.py /^ class Bizarre(Flag):$/;" c function:TestVerify.test_composite +Bizarre Lib/test/test_enum.py /^ class Bizarre(Flag, boundary=KEEP):$/;" c function:OldTestFlag.test_boundary +Bizarre Lib/test/test_enum.py /^ class Bizarre(IntFlag):$/;" c function:TestVerify.test_composite +Bizarre Lib/test/test_enum.py /^ class Bizarre(IntFlag, boundary=KEEP):$/;" c function:OldTestIntFlag.test_boundary +Blake2State Modules/_blake2/blake2module.c /^} Blake2State;$/;" t typeref:struct:__anon538 file: +BlankLine Lib/lib2to3/fixer_util.py /^def BlankLine():$/;" f +BlatantOverrideConvertersTestCase Lib/test/test_configparser.py /^class BlatantOverrideConvertersTestCase(unittest.TestCase):$/;" c +Bletch Python/dtoa.c 253;" d file: +BlobTests Lib/test/test_sqlite3/test_dbapi.py /^class BlobTests(unittest.TestCase):$/;" c +BlobType Modules/_sqlite/module.h /^ PyTypeObject *BlobType;$/;" m struct:__anon355 +Block Lib/turtledemo/sorting_animate.py /^class Block(Turtle):$/;" c +Block Tools/cases_generator/parser.py /^class Block(Node):$/;" c +Block Tools/clinic/clinic.py /^class Block:$/;" c +BlockContains Lib/test/test_contains.py /^ class BlockContains(ByContains):$/;" c function:TestContains.test_block_fallback +BlockFinder Lib/inspect.py /^class BlockFinder:$/;" c +BlockParser Tools/clinic/clinic.py /^class BlockParser:$/;" c +BlockPrinter Tools/clinic/clinic.py /^class BlockPrinter:$/;" c +Blocked Lib/test/test_enumerate.py /^ class Blocked(object):$/;" c function:TestReversed.test_objmethods +BlockingIOError Lib/_pyio.py /^BlockingIOError = BlockingIOError$/;" v +BlockingIOError Lib/test/test_io.py /^ BlockingIOError = io.BlockingIOError$/;" v class:CMockNonBlockWriterIO +BlockingIOError Lib/test/test_io.py /^ BlockingIOError = pyio.BlockingIOError$/;" v class:PyMockNonBlockWriterIO +BlockingTestMixin Lib/test/test_queue.py /^class BlockingTestMixin:$/;" c +BlockingTests Lib/test/test_os.py /^class BlockingTests(unittest.TestCase):$/;" c +Bndry_mask Python/dtoa.c 254;" d file: +Bndry_mask1 Python/dtoa.c 255;" d file: +Boat Lib/test/test_descr.py /^ class Boat(object): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +Bob Lib/test/test_struct.py /^ class Bob(struct.Struct):$/;" c function:StructTest.test__struct_Struct_subclassing +BogonIter Lib/test/mapping_tests.py /^ class BogonIter:$/;" c function:BasicTestMappingProtocol.test_update.FailingUserDict.keys +BogonIter Lib/test/test_dict.py /^ class BogonIter:$/;" c function:DictTest.test_update.FailingUserDict.keys +Bogus Lib/test/datetimetester.py /^ class Bogus(tzinfo):$/;" c function:TestDateTime.test_astimezone +Bogus Lib/test/datetimetester.py /^ class Bogus(tzinfo):$/;" c function:TestDateTimeTZ.test_even_more_compare +BogusError Lib/test/test_weakref.py /^ class BogusError(Exception):$/;" c function:ReferencesTestCase.test_callbacks_protected +BomTest Lib/test/test_codecs.py /^class BomTest(unittest.TestCase):$/;" c +Boo Lib/test/test_unittest/testmock/testpatch.py /^ class Boo(object):$/;" c function:PatchTest.test_autospec +Book Lib/test/test_enum.py /^ class Book(StrEnum):$/;" c function:TestStrEnumClass.test_shadowed_attr +Bool Lib/test/test_with.py /^ class Bool:$/;" c function:ExceptionalTestCase.testErrorsInBool.cm.__init__ +BoolOp Include/internal/pycore_ast.h /^ } BoolOp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon78 +BoolOp_fields Python/Python-ast.c /^static const char * const BoolOp_fields[]={$/;" v file: +BoolOp_kind Include/internal/pycore_ast.h /^enum _expr_kind {BoolOp_kind=1, NamedExpr_kind=2, BinOp_kind=3, UnaryOp_kind=4,$/;" e enum:_expr_kind +BoolOp_type Include/internal/pycore_ast_state.h /^ PyObject *BoolOp_type;$/;" m struct:ast_state +BoolTest Lib/test/test_bool.py /^class BoolTest(unittest.TestCase):$/;" c +BoolTest Lib/test/test_xml_etree.py /^class BoolTest(unittest.TestCase):$/;" c +Boolean Lib/test/test_iter.py /^ class Boolean:$/;" c function:TestCase.test_builtin_filter +BooleanOptionalAction Lib/argparse.py /^class BooleanOptionalAction(Action):$/;" c +BooleanTarget Lib/test/test_threading.py /^ class BooleanTarget(object):$/;" c function:ThreadTests.test_boolean_target +BooleanType Modules/_tkinter.c /^ const Tcl_ObjType *BooleanType;$/;" m struct:__anon334 file: +BooleanVar Lib/tkinter/__init__.py /^class BooleanVar(Variable):$/;" c +Boolean_TestCase Lib/test/test_capi/test_getargs.py /^class Boolean_TestCase(unittest.TestCase):$/;" c +Boom Lib/test/test_bytes.py /^ class Boom:$/;" c function:ByteArrayTest.test_mutating_index +Boom Lib/test/test_gc.py /^ class Boom:$/;" c function:GCTests.test_boom +Boom2 Lib/test/test_gc.py /^ class Boom2:$/;" c function:GCTests.test_boom2 +BootstrapTest Lib/test/test_warnings/__init__.py /^class BootstrapTest(unittest.TestCase):$/;" c +BootstrapperApplicationCreate Tools/msi/bundle/bootstrap/pythonba.cpp /^extern "C" HRESULT WINAPI BootstrapperApplicationCreate($/;" f +BootstrapperApplicationDestroy Tools/msi/bundle/bootstrap/pythonba.cpp /^extern "C" void WINAPI BootstrapperApplicationDestroy()$/;" f +Both Lib/test/test_collections.py /^ class Both(Collection):$/;" c function:TestCollectionABCs.test_illegal_patma_flags +Both1 Lib/test/test_capi/test_misc.py /^ class Both1(_testcapi.HeapCTypeWithWeakref, _testcapi.HeapCTypeWithDict):$/;" c function:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict +Both2 Lib/test/test_capi/test_misc.py /^ class Both2(_testcapi.HeapCTypeWithDict, _testcapi.HeapCTypeWithWeakref):$/;" c function:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict +BottomMatcher Lib/lib2to3/btm_matcher.py /^class BottomMatcher(object):$/;" c +BottomTypeTestsMixin Lib/test/test_typing.py /^class BottomTypeTestsMixin:$/;" c +BoundArguments Lib/inspect.py /^class BoundArguments:$/;" c +BoundWrapper Lib/test/test_decorators.py /^ class BoundWrapper:$/;" c function:TestDecorators.test_wrapped_descriptor_inside_classmethod +BoundaryError Lib/email/errors.py /^class BoundaryError(MessageParseError):$/;" c +BoundedSemaphore Lib/asyncio/locks.py /^class BoundedSemaphore(Semaphore):$/;" c +BoundedSemaphore Lib/multiprocessing/context.py /^ def BoundedSemaphore(self, value=1):$/;" m class:BaseContext +BoundedSemaphore Lib/multiprocessing/synchronize.py /^class BoundedSemaphore(Semaphore):$/;" c +BoundedSemaphore Lib/test/_test_multiprocessing.py /^ BoundedSemaphore = property(operator.attrgetter('manager.BoundedSemaphore'))$/;" v class:ManagerMixin +BoundedSemaphore Lib/test/_test_multiprocessing.py /^ BoundedSemaphore = staticmethod(multiprocessing.BoundedSemaphore)$/;" v class:ProcessesMixin +BoundedSemaphore Lib/test/_test_multiprocessing.py /^ BoundedSemaphore = staticmethod(multiprocessing.dummy.BoundedSemaphore)$/;" v class:ThreadsMixin +BoundedSemaphore Lib/threading.py /^class BoundedSemaphore(Semaphore):$/;" c +BoundedSemaphoreTests Lib/test/lock_tests.py /^class BoundedSemaphoreTests(BaseSemaphoreTests):$/;" c +BoundedSemaphoreTests Lib/test/test_threading.py /^class BoundedSemaphoreTests(lock_tests.BoundedSemaphoreTests):$/;" c +BraceMessage PC/layout/support/logging.py /^class BraceMessage:$/;" c +Bracket Lib/lib2to3/pgen2/tokenize.py /^Bracket = '[][(){}]'$/;" v +BracketFlagHandler Lib/test/test_imaplib.py /^ class BracketFlagHandler(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_bracket_flags +BranchRecorder Lib/test/test_monitoring.py /^class BranchRecorder(JumpRecorder):$/;" c +Break_kind Include/internal/pycore_ast.h /^ Nonlocal_kind=24, Expr_kind=25, Pass_kind=26, Break_kind=27,$/;" e enum:_stmt_kind +Break_type Include/internal/pycore_ast_state.h /^ PyObject *Break_type;$/;" m struct:ast_state +Breakpoint Lib/bdb.py /^class Breakpoint:$/;" c +BreakpointTestCase Lib/test/test_bdb.py /^class BreakpointTestCase(BaseTestCase):$/;" c +Broken Lib/test/datetimetester.py /^ class Broken(tzinfo):$/;" c function:TestDateTime.test_astimezone +Broken Lib/test/test_capi/test_exceptions.py /^ class Broken(Exception):$/;" c function:Test_ErrSetAndRestore.test_set_object_and_fetch +Broken Lib/test/test_capi/test_exceptions.py /^ class Broken(Exception, metaclass=Meta):$/;" c function:Test_ErrSetAndRestore.test_set_object +Broken Lib/test/test_yield_from.py /^ class Broken:$/;" c function:TestPEP380Operation.test_broken_getattr_handling +BrokenBarrierError Lib/asyncio/exceptions.py /^class BrokenBarrierError(RuntimeError):$/;" c +BrokenBarrierError Lib/threading.py /^class BrokenBarrierError(RuntimeError):$/;" c +BrokenDel Lib/test/test_exceptions.py /^ class BrokenDel:$/;" c function:ExceptionTests.test_unraisable +BrokenDel Lib/test/test_sys.py /^ class BrokenDel:$/;" c function:UnraisableHookTest.test_original_unraisablehook_err +BrokenDispatcher Lib/test/test_xmlrpc.py /^ class BrokenDispatcher:$/;" c function:http_multi_server +BrokenEqualEG Lib/test/test_except_star.py /^ class BrokenEqualEG(ExceptionGroup):$/;" c class:TestExceptStar_WeirdExceptionGroupSubclass +BrokenEqualExc Lib/test/test_except_star.py /^ class BrokenEqualExc(ValueError):$/;" c class:TestExceptStar_WeirdLeafExceptions +BrokenExceptionDel Lib/test/test_sys.py /^ class BrokenExceptionDel:$/;" c function:UnraisableHookTest.test_original_unraisablehook_err +BrokenExecutor Lib/concurrent/futures/_base.py /^class BrokenExecutor(RuntimeError):$/;" c +BrokenFile Lib/test/test_csv.py /^ class BrokenFile:$/;" c function:Test_Csv.test_writerows +BrokenFile Lib/test/test_zipfile/test_core.py /^ class BrokenFile(io.BytesIO):$/;" c function:AbstractTestsWithSourceFile.test_writing_errors +BrokenProcessPool Lib/concurrent/futures/process.py /^class BrokenProcessPool(_base.BrokenExecutor):$/;" c +BrokenStrException Lib/test/test_exceptions.py /^class BrokenStrException(Exception):$/;" c +BrokenStrException Lib/test/test_sys.py /^ class BrokenStrException(Exception):$/;" c function:UnraisableHookTest.test_original_unraisablehook_err +BrokenStructure Lib/test/test_ctypes/test_struct_fields.py /^ class BrokenStructure(Structure):$/;" c function:StructFieldsTestCase.test_gh99275 +BrokenTest Lib/test/test_unittest/test_setups.py /^ class BrokenTest(unittest.TestCase):$/;" c function:TestSetups.test_error_in_setupclass +BrokenThreadPool Lib/concurrent/futures/thread.py /^class BrokenThreadPool(_base.BrokenExecutor):$/;" c +BrowserRegistrationTest Lib/test/test_webbrowser.py /^class BrowserRegistrationTest(unittest.TestCase):$/;" c +BsdDbShelf Lib/shelve.py /^class BsdDbShelf(Shelf):$/;" c +Buffer Lib/_collections_abc.py /^class Buffer(metaclass=ABCMeta):$/;" c +BufferBlocked Lib/test/test_bytes.py /^ class BufferBlocked(bytearray):$/;" c function:BytesTest.test_bytes_blocking +BufferFlags Lib/inspect.py /^class BufferFlags(enum.IntFlag):$/;" c +BufferIOTest Lib/test/test_socket.py /^class BufferIOTest(SocketConnectedTest):$/;" c +BufferSeries Tools/clinic/clinic.py /^class BufferSeries:$/;" c +BufferSizeTest Lib/test/test_bufio.py /^class BufferSizeTest:$/;" c +BufferSizesTests Lib/test/test_fileinput.py /^class BufferSizesTests(BaseTests, unittest.TestCase):$/;" c +BufferTestCase Lib/test/test_marshal.py /^class BufferTestCase(unittest.TestCase, HelperMixin):$/;" c +BufferTextTest Lib/test/test_pyexpat.py /^class BufferTextTest(unittest.TestCase):$/;" c +BufferTooShort Lib/multiprocessing/context.py /^ BufferTooShort = BufferTooShort$/;" v class:BaseContext +BufferTooShort Lib/multiprocessing/context.py /^class BufferTooShort(ProcessError):$/;" c +BufferWrapper Lib/multiprocessing/heap.py /^class BufferWrapper(object):$/;" c +BufferedFiller Tools/unicode/genmap_support.py /^class BufferedFiller:$/;" c +BufferedIOBase Lib/_pyio.py /^class BufferedIOBase(IOBase):$/;" c +BufferedIOBase Lib/io.py /^class BufferedIOBase(_io._BufferedIOBase, IOBase):$/;" c +BufferedIncrementalDecoder Lib/codecs.py /^class BufferedIncrementalDecoder(IncrementalDecoder):$/;" c +BufferedIncrementalEncoder Lib/codecs.py /^class BufferedIncrementalEncoder(IncrementalEncoder):$/;" c +BufferedProtocol Lib/asyncio/protocols.py /^class BufferedProtocol(BaseProtocol):$/;" c +BufferedProtocolProactorTests Lib/test/test_asyncio/test_buffered_proto.py /^ unittest.TestCase):$/;" c +BufferedProtocolSelectorTests Lib/test/test_asyncio/test_buffered_proto.py /^ unittest.TestCase):$/;" c +BufferedRWPair Lib/_pyio.py /^class BufferedRWPair(BufferedIOBase):$/;" c +BufferedRWPairTest Lib/test/test_io.py /^class BufferedRWPairTest(unittest.TestCase):$/;" c +BufferedRandom Lib/_pyio.py /^class BufferedRandom(BufferedWriter, BufferedReader):$/;" c +BufferedRandomTest Lib/test/test_io.py /^class BufferedRandomTest(BufferedReaderTest, BufferedWriterTest):$/;" c +BufferedReader Lib/_pyio.py /^class BufferedReader(_BufferedIOMixin):$/;" c +BufferedReader Lib/test/ann_module7.py /^class BufferedReader(object):$/;" c +BufferedReaderTest Lib/test/test_io.py /^class BufferedReaderTest(unittest.TestCase, CommonBufferedTests):$/;" c +BufferedSubFile Lib/email/feedparser.py /^class BufferedSubFile(object):$/;" c +BufferedWriter Lib/_pyio.py /^class BufferedWriter(_BufferedIOMixin):$/;" c +BufferedWriter Lib/test/test_io.py /^ class BufferedWriter(self.BufferedWriter):$/;" c function:TextIOWrapperTest.test_bufio_write_through +BufferedWriter Lib/test/test_unittest/support.py /^class BufferedWriter:$/;" c +BufferedWriterTest Lib/test/test_io.py /^class BufferedWriterTest(unittest.TestCase, CommonBufferedTests):$/;" c +BufferingFormatter Lib/logging/__init__.py /^class BufferingFormatter(object):$/;" c +BufferingFormatterTest Lib/test/test_logging.py /^class BufferingFormatterTest(unittest.TestCase):$/;" c +BufferingHandler Lib/logging/handlers.py /^class BufferingHandler(logging.Handler):$/;" c +Bug Python/dtoa.c 172;" d file: +BugsTest Lib/test/test_xml_etree.py /^class BugsTest(unittest.TestCase):$/;" c +BugsTestCase Lib/test/test_marshal.py /^class BugsTestCase(unittest.TestCase):$/;" c +Build PCbuild/build.bat /^:Build$/;" l +Build PCbuild/prepare_ssl.bat /^:Build$/;" l +Build PCbuild/prepare_tcltk.bat /^:Build$/;" l +BuildLibreSSL Tools/ssl/multissltests.py /^class BuildLibreSSL(AbstractBuilder):$/;" c +BuildOne PCbuild/prepare_libffi.bat /^:BuildOne$/;" l +BuildOpenSSL Tools/ssl/multissltests.py /^class BuildOpenSSL(AbstractBuilder):$/;" c +BuildProfile Tools/wasm/wasm_build.py /^class BuildProfile:$/;" c +Builder Lib/test/test_xml_etree.py /^ class Builder(list):$/;" c function:ElementTreeTest.test_custom_builder +Builder Lib/test/test_xml_etree.py /^ class Builder(list):$/;" c function:ElementTreeTest.test_custom_builder_only_end_ns +BuiltInFunctionProxy Tools/gdb/libpython.py /^class BuiltInFunctionProxy(object):$/;" c +BuiltInMethodProxy Tools/gdb/libpython.py /^class BuiltInMethodProxy(object):$/;" c +BuiltinCompileTests Lib/test/test_utf8source.py /^class BuiltinCompileTests(unittest.TestCase):$/;" c +BuiltinFunctionPropertiesTest Lib/test/test_funcattrs.py /^class BuiltinFunctionPropertiesTest(unittest.TestCase):$/;" c +BuiltinFunctionType Lib/types.py /^BuiltinFunctionType = type(len)$/;" v +BuiltinImporter Lib/importlib/_bootstrap.py /^class BuiltinImporter:$/;" c +BuiltinLevelsTest Lib/test/test_logging.py /^class BuiltinLevelsTest(BaseTest):$/;" c +BuiltinMethodType Lib/types.py /^BuiltinMethodType = type([].append) # Same as BuiltinFunctionType$/;" v +BuiltinStaticTypesTests Lib/test/test_capi/test_misc.py /^class BuiltinStaticTypesTests(unittest.TestCase):$/;" c +BuiltinSubclass Lib/test/test_unittest/testmock/testhelpers.py /^ class BuiltinSubclass(list):$/;" c function:SpecSignatureTest.test_builtin_functions_types +BuiltinSubclass Lib/test/test_unittest/testmock/testhelpers.py /^ class BuiltinSubclass(list):$/;" c function:SpecSignatureTest.test_magic_methods +BuiltinTest Lib/test/test_builtin.py /^class BuiltinTest(unittest.TestCase):$/;" c +BuiltinTypeDecl Tools/c-analyzer/cpython/_builtin_types.py /^class BuiltinTypeDecl(namedtuple('BuiltinTypeDecl', 'file lno name kind')):$/;" c +BuiltinTypeInfo Tools/c-analyzer/cpython/_builtin_types.py /^class BuiltinTypeInfo(namedtuple('BuiltinTypeInfo', 'file lno name static decl')):$/;" c +Bunch Lib/test/_test_multiprocessing.py /^class Bunch(object):$/;" c +Bunch Lib/test/lock_tests.py /^class Bunch(object):$/;" c +BusyGNV Lib/test/test_enum.py /^ class BusyGNV(self.enum_type):$/;" c function:_EnumTests.setUp +Button Lib/test/test_tkinter/test_misc.py /^ Button = ButtonPress$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Button Lib/tkinter/__init__.py /^ Button = ButtonPress$/;" v class:EventType +Button Lib/tkinter/__init__.py /^class Button(Widget):$/;" c +Button Lib/tkinter/ttk.py /^class Button(Widget):$/;" c +ButtonBox Lib/tkinter/tix.py /^class ButtonBox(TixWidget):$/;" c +ButtonClickTest Lib/idlelib/idle_test/test_textview.py /^class ButtonClickTest(unittest.TestCase):$/;" c +ButtonPress Lib/test/test_tkinter/test_misc.py /^ ButtonPress = '4'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +ButtonPress Lib/tkinter/__init__.py /^ ButtonPress = '4'$/;" v class:EventType +ButtonRelease Lib/test/test_tkinter/test_misc.py /^ ButtonRelease = '5'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +ButtonRelease Lib/tkinter/__init__.py /^ ButtonRelease = '5'$/;" v class:EventType +ButtonTest Lib/idlelib/idle_test/test_configdialog.py /^class ButtonTest(unittest.TestCase):$/;" c +ButtonTest Lib/test/test_tkinter/test_widgets.py /^class ButtonTest(AbstractLabelTest, unittest.TestCase):$/;" c +ButtonTest Lib/test/test_ttk/test_widgets.py /^class ButtonTest(AbstractLabelTest, unittest.TestCase):$/;" c +ByContains Lib/test/test_contains.py /^ class ByContains(object):$/;" c function:TestContains.test_block_fallback +ByMakeDataClass Lib/test/test_dataclasses.py /^ByMakeDataClass = make_dataclass('ByMakeDataClass', [('x', int)])$/;" v +ByteArrayTest Lib/test/test_bytes.py /^class ByteArrayTest(BaseBytesTest, unittest.TestCase):$/;" c +ByteArrayTestCase Lib/test/test_index.py /^class ByteArrayTestCase(SeqTestCase, unittest.TestCase):$/;" c +ByteArrayType Modules/_tkinter.c /^ const Tcl_ObjType *ByteArrayType;$/;" m struct:__anon334 file: +ByteString Lib/_collections_abc.py /^class ByteString(Sequence, metaclass=_DeprecateByteStringMeta):$/;" c +ByteString Lib/typing.py /^ByteString = _DeprecatedGenericAlias($/;" v +ByteTest Lib/test/test_array.py /^class ByteTest(SignedNumberTest, unittest.TestCase):$/;" c +BytearrayBinASCIITest Lib/test/test_binascii.py /^class BytearrayBinASCIITest(BinASCIITest):$/;" c +BytearrayTest Lib/test/test_bigmem.py /^class BytearrayTest(unittest.TestCase, BaseStrTest):$/;" c +Bytecode Lib/dis.py /^class Bytecode:$/;" c +BytecodeTestCase Lib/test/support/bytecode_helper.py /^class BytecodeTestCase(unittest.TestCase):$/;" c +BytecodeTests Lib/test/test_dis.py /^class BytecodeTests(InstructionTestCase, DisTestBase):$/;" c +Bytes Lib/ast.py /^class Bytes(Constant, metaclass=_ABC):$/;" c +BytesFeedParser Lib/email/feedparser.py /^class BytesFeedParser(FeedParser):$/;" c +BytesFwalkTests Lib/test/test_os.py /^class BytesFwalkTests(FwalkTests):$/;" c +BytesGenerator Lib/email/generator.py /^class BytesGenerator(Generator):$/;" c +BytesHashRandomizationTests Lib/test/test_hash.py /^ unittest.TestCase):$/;" c +BytesHeaderParser Lib/email/parser.py /^class BytesHeaderParser(BytesParser):$/;" c +BytesIO Lib/_pyio.py /^class BytesIO(BufferedIOBase):$/;" c +BytesMemorySliceSliceTest Lib/test/test_memoryview.py /^ BaseMemorySliceSliceTests, BaseBytesMemoryTests):$/;" c +BytesMemorySliceTest Lib/test/test_memoryview.py /^ BaseMemorySliceTests, BaseBytesMemoryTests):$/;" c +BytesMemoryviewTest Lib/test/test_memoryview.py /^ BaseMemoryviewTests, BaseBytesMemoryTests):$/;" c +BytesParser Lib/email/parser.py /^class BytesParser:$/;" c +BytesPath Lib/test/test_winsound.py /^class BytesPath(pathlib.WindowsPath):$/;" c +BytesSourceEncodingTest Lib/test/test_source_encoding.py /^class BytesSourceEncodingTest(AbstractSourceEncodingTest, unittest.TestCase):$/;" c +BytesSubclassBlocked Lib/test/test_bytes.py /^ class BytesSubclassBlocked(bytes):$/;" c function:BytesTest.test_bytes_blocking +BytesTest Lib/test/test_bigaddrspace.py /^class BytesTest(unittest.TestCase):$/;" c +BytesTest Lib/test/test_bigmem.py /^class BytesTest(unittest.TestCase, BaseStrTest):$/;" c +BytesTest Lib/test/test_bytes.py /^class BytesTest(BaseBytesTest, unittest.TestCase):$/;" c +BytesTest Lib/test/test_ctypes/test_bytes.py /^class BytesTest(unittest.TestCase):$/;" c +BytesTestCase Lib/test/test_index.py /^class BytesTestCase(SeqTestCase, unittest.TestCase):$/;" c +BytesWalkTests Lib/test/test_os.py /^class BytesWalkTests(WalkTests):$/;" c +BytesXmlgenTest Lib/test/test_sax.py /^class BytesXmlgenTest(XmlgenTest, unittest.TestCase):$/;" c +Bytes_TestCase Lib/test/test_capi/test_getargs.py /^class Bytes_TestCase(unittest.TestCase):$/;" c +Bz2AppendTest Lib/test/test_tarfile.py /^class Bz2AppendTest(Bz2Test, AppendTestBase, unittest.TestCase):$/;" c +Bz2CompressStreamWriteTest Lib/test/test_tarfile.py /^ unittest.TestCase):$/;" c +Bz2CompressWriteTest Lib/test/test_tarfile.py /^class Bz2CompressWriteTest(Bz2Test, _CompressedWriteTest, unittest.TestCase):$/;" c +Bz2CreateTest Lib/test/test_tarfile.py /^class Bz2CreateTest(Bz2Test, CreateTest):$/;" c +Bz2DetectReadTest Lib/test/test_tarfile.py /^class Bz2DetectReadTest(Bz2Test, DetectReadTest):$/;" c +Bz2ListTest Lib/test/test_tarfile.py /^class Bz2ListTest(Bz2Test, ListTest):$/;" c +Bz2MiscReadTest Lib/test/test_tarfile.py /^class Bz2MiscReadTest(Bz2Test, MiscReadTestBase, unittest.TestCase):$/;" c +Bz2PartialReadTest Lib/test/test_tarfile.py /^class Bz2PartialReadTest(Bz2Test, unittest.TestCase):$/;" c +Bz2StreamReadTest Lib/test/test_tarfile.py /^class Bz2StreamReadTest(Bz2Test, StreamReadTest):$/;" c +Bz2StreamWriteTest Lib/test/test_tarfile.py /^class Bz2StreamWriteTest(Bz2Test, StreamWriteTest):$/;" c +Bz2Test Lib/test/test_tarfile.py /^class Bz2Test:$/;" c +Bz2UstarReadTest Lib/test/test_tarfile.py /^class Bz2UstarReadTest(Bz2Test, UstarReadTest):$/;" c +Bz2WriteTest Lib/test/test_tarfile.py /^class Bz2WriteTest(Bz2Test, WriteTest):$/;" c +Bzip2BadCrcTests Lib/test/test_zipfile/test_core.py /^class Bzip2BadCrcTests(AbstractBadCrcTests, unittest.TestCase):$/;" c +Bzip2TestZip64InSmallFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +Bzip2TestsWithRandomBinaryFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +Bzip2TestsWithSourceFile Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +Bzip2WriterTests Lib/test/test_zipfile/test_core.py /^class Bzip2WriterTests(AbstractWriterTests, unittest.TestCase):$/;" c +C Lib/idlelib/idle_test/test_calltip.py /^ class C:$/;" c function:.test_invalid_method_get_spec +C Lib/idlelib/idle_test/test_calltip.py /^ class C:$/;" c function:.test_starred_parameter +C Lib/test/ann_module.py /^class C:$/;" c +C Lib/test/ann_module2.py /^ class C: ...$/;" c function:f +C Lib/test/ann_module2.py /^class C:$/;" c +C Lib/test/audit-tests.py /^ class C(A):$/;" c function:test_monkeypatch +C Lib/test/datetimetester.py /^ class C(self.theclass):$/;" c function:TestDate.test_subclass_date +C Lib/test/datetimetester.py /^ class C(self.theclass):$/;" c function:TestDateTime.test_subclass_datetime +C Lib/test/datetimetester.py /^ class C(self.theclass):$/;" c function:TestDateTimeTZ.test_subclass_datetimetz +C Lib/test/datetimetester.py /^ class C(self.theclass):$/;" c function:TestTime.test_subclass_time +C Lib/test/datetimetester.py /^ class C(self.theclass):$/;" c function:TestTimeTZ.test_subclass_timetz +C Lib/test/final_a.py /^class C:$/;" c +C Lib/test/final_b.py /^class C:$/;" c +C Lib/test/pickletester.py /^ class C:$/;" c class:AbstractPickleTests.test_nested_names.Nested.A.B +C Lib/test/pickletester.py /^ class C(object):$/;" c function:AbstractPickleTests.test_reduce_bad_iterator +C Lib/test/pickletester.py /^class C:$/;" c +C Lib/test/profilee.py /^class C:$/;" c +C Lib/test/pyclbr_input.py /^class C (B):$/;" c +C Lib/test/pydoc_mod.py /^class C(object):$/;" c +C Lib/test/shadowed_super.py /^class C:$/;" c +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_abstractmethod_integration +C Lib/test/test_abc.py /^ class C(A):$/;" c function:test_factory.TestABC.test_registration_edge_cases +C Lib/test/test_abc.py /^ class C(A, B):$/;" c function:test_factory.TestABC.test_all_new_methods_are_called +C Lib/test/test_abc.py /^ class C(B):$/;" c function:test_factory.TestABC.test_register_as_class_deco +C Lib/test/test_abc.py /^ class C(B):$/;" c function:test_factory.TestABC.test_registration_basics +C Lib/test/test_abc.py /^ class C(B):$/;" c function:test_factory.TestABC.test_update_layered_implementation +C Lib/test/test_abc.py /^ class C(B, A):$/;" c function:test_factory.TestABC.test_update_multi_inheritance +C Lib/test/test_abc.py /^ class C(abc.ABC):$/;" c function:test_factory.TestABC.test_ABC_helper +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_abstractclassmethod_basics +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_abstractproperty_basics +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_abstractstaticmethod_basics +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_customdescriptors_with_abstractmethod +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_descriptors_with_abstractmethod +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_object_new_with_many_abstractmethods +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_object_new_with_one_abstractmethod +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_registration_transitiveness +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestLegacyAPI.test_abstractclassmethod_basics +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestLegacyAPI.test_abstractproperty_basics +C Lib/test/test_abc.py /^ class C(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestLegacyAPI.test_abstractstaticmethod_basics +C Lib/test/test_abc.py /^ class C(metaclass=meta):$/;" c function:test_factory.TestABC.test_metaclass_abc +C Lib/test/test_abc.py /^ class C(str): pass$/;" c function:test_factory.TestABC.test_registration_builtins +C Lib/test/test_abc.py /^ class C(with_metaclass(abc_ABCMeta, A, B)):$/;" c function:test_factory.TestABC.test_tricky_new_works +C Lib/test/test_abc.py /^ class C:$/;" c function:test_factory.TestABC.test_issubclass_bad_arguments +C Lib/test/test_abc.py /^ class C:$/;" c function:test_factory.TestABC.test_subclasshook +C Lib/test/test_argparse.py /^ class C:$/;" c class:TestTypeClassicClass +C Lib/test/test_binop.py /^class C(B):$/;" c +C Lib/test/test_bool.py /^ class C(bool):$/;" c function:BoolTest.test_subclass +C Lib/test/test_buffer.py /^ class C(Releaser, bytearray):$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last +C Lib/test/test_buffer.py /^ class C(bytearray):$/;" c function:TestPythonBufferProtocol.test_override_only_release +C Lib/test/test_buffer.py /^ class C(bytearray):$/;" c function:TestPythonBufferProtocol.test_release_saves_reference +C Lib/test/test_buffer.py /^ class C(bytearray, Releaser):$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising +C Lib/test/test_buffer.py /^ class C:$/;" c function:TestPythonBufferProtocol.test_release_saves_reference_no_subclassing +C Lib/test/test_builtin.py /^ class C(object):$/;" c function:BuiltinTest.test_format +C Lib/test/test_builtin.py /^ class C:$/;" c function:BuiltinTest.test_general_eval +C Lib/test/test_builtin.py /^ class C:$/;" c function:BuiltinTest.test_isinstance +C Lib/test/test_builtin.py /^ class C:$/;" c function:BuiltinTest.test_issubclass +C Lib/test/test_bytes.py /^ class C:$/;" c function:BaseBytesTest.test_constructor_type_errors +C Lib/test/test_capi/test_misc.py /^ class C(_testcapi.HeapCTypeWithManagedDict):$/;" c function:CAPITest.test_sublclassing_managed_dict +C Lib/test/test_capi/test_misc.py /^ class C(_testcapi.HeapCTypeWithManagedWeakref):$/;" c function:CAPITest.test_sublclassing_managed_weakref +C Lib/test/test_capi/test_misc.py /^ class C:$/;" c function:CAPITest.test_clear_managed_dict +C Lib/test/test_capi/test_misc.py /^ class C:$/;" c function:Test_Pep523API.test_inlined_binary_subscr +C Lib/test/test_capi/test_misc.py /^ class C:$/;" c function:Test_Pep523API.test_inlined_load_attr +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_all_watchers +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_clear_watcher +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_error +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_event_aggregation +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_lookup_resets_aggregation +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_unwatch_out_of_range_watcher_id +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_unwatch_type +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_unwatch_unassigned_watcher_id +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_watch_out_of_range_watcher_id +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_watch_type +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_watch_type_subclass +C Lib/test/test_capi/test_watchers.py /^ class C: pass$/;" c function:TestTypeWatchers.test_watch_unassigned_watcher_id +C Lib/test/test_class.py /^ class C:$/;" c function:ClassTests.testConstructorErrorMessages +C Lib/test/test_collections.py /^ class C(B):$/;" c function:TestOneTrickPonyABCs.test_direct_subclassing +C Lib/test/test_collections.py /^ class C:$/;" c function:TestOneTrickPonyABCs.test_registration +C Lib/test/test_compare.py /^ class C:$/;" c function:ComparisonSimpleTest.test_other_delegation +C Lib/test/test_contextlib.py /^ class C:$/;" c function:ClosingTestCase.test_closing +C Lib/test/test_contextlib.py /^ class C:$/;" c function:ClosingTestCase.test_closing_error +C Lib/test/test_contextlib.py /^ class C:$/;" c function:NullcontextTestCase.test_nullcontext +C Lib/test/test_contextlib_async.py /^ class C:$/;" c function:AclosingTestCase.test_aclosing +C Lib/test/test_contextlib_async.py /^ class C:$/;" c function:AclosingTestCase.test_aclosing_error +C Lib/test/test_contextlib_async.py /^ class C:$/;" c function:TestAsyncNullcontext.test_async_nullcontext +C Lib/test/test_copy.py /^ class C(dict):$/;" c function:TestCopy.test_deepcopy_dict_subclass +C Lib/test/test_copy.py /^ class C(dict):$/;" c function:TestCopy.test_reduce_5tuple +C Lib/test/test_copy.py /^ class C(int):$/;" c function:TestCopy.test_copy_inst_getnewargs +C Lib/test/test_copy.py /^ class C(int):$/;" c function:TestCopy.test_copy_inst_getnewargs_ex +C Lib/test/test_copy.py /^ class C(int):$/;" c function:TestCopy.test_deepcopy_inst_getnewargs +C Lib/test/test_copy.py /^ class C(int):$/;" c function:TestCopy.test_deepcopy_inst_getnewargs_ex +C Lib/test/test_copy.py /^ class C(list):$/;" c function:TestCopy.test_copy_list_subclass +C Lib/test/test_copy.py /^ class C(list):$/;" c function:TestCopy.test_deepcopy_list_subclass +C Lib/test/test_copy.py /^ class C(list):$/;" c function:TestCopy.test_reduce_4tuple +C Lib/test/test_copy.py /^ class C(metaclass=Meta):$/;" c function:TestCopy.test_deepcopy_issubclass +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy._check_copy_weakdict +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy._check_weakref +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_copy_cant +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_copy_copy +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_copy_reduce +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_copy_reduce_ex +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_copy_registry +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_copy_slots +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_cant +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_deepcopy +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_reduce +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_reduce_ex +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_registry +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_slots +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_weakkeydict +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_deepcopy_weakvaluedict +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_reconstruct_nostate +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_reconstruct_reflexive +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_reconstruct_state +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_reconstruct_state_setstate +C Lib/test/test_copy.py /^ class C(object):$/;" c function:TestCopy.test_reconstruct_string +C Lib/test/test_copy.py /^ class C(tuple):$/;" c function:TestCopy.test_copy_tuple_subclass +C Lib/test/test_copy.py /^ class C(tuple):$/;" c function:TestCopy.test_deepcopy_tuple_subclass +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_copy_inst_copy +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_copy_inst_getinitargs +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_copy_inst_getstate +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_copy_inst_getstate_setstate +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_copy_inst_setstate +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_copy_inst_vanilla +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_deepcopy_inst_deepcopy +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_deepcopy_inst_getinitargs +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_deepcopy_inst_getstate +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_deepcopy_inst_getstate_setstate +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_deepcopy_inst_setstate +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_deepcopy_inst_vanilla +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_deepcopy_reflexive_inst +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_reduce_6tuple +C Lib/test/test_copy.py /^ class C:$/;" c function:TestCopy.test_reduce_6tuple_none +C Lib/test/test_copyreg.py /^class C:$/;" c +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_eq_order +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestHash.test_hash_rules.test +C Lib/test/test_dataclasses.py /^ class C(base):$/;" c function:TestHash.test_hash_no_args.Base.__hash__ +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_eq_order +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_disallowed_mutable_defaults +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_hash_field_rules +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_inherit_from_normal_class +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_inherit_frozen_from_nonfrozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_inherit_nonfrozen_from_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestStringAnnotations.test_classvar +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestStringAnnotations.test_initvar +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestStringAnnotations.test_isnt_classvar +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestStringAnnotations.test_isnt_initvar +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c class:TestCase.test_two_fields_one_default.C +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c class:TestFieldNoAnnotation.test_field_without_annotation_but_annotation_in_base.B +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c class:TestFieldNoAnnotation.test_field_without_annotation_but_annotation_in_base_not_dataclass.B +C Lib/test/test_dataclasses.py /^ class C(Root2):$/;" c class:TestSlots.test_cant_inherit_from_iterator_slots.Root2 +C Lib/test/test_dataclasses.py /^ class C:$/;" c class:TestCase.test_overwrite_hash.C +C Lib/test/test_dataclasses.py /^ class C:$/;" c class:TestCase.test_two_fields_one_default.C +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_class_var_default_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_classvar_default_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_default_default_factory_error +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_metadata_mapping +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_init_var_default_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFieldNoAnnotation.test_field_without_annotation +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_overwriting_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestOrdering.test_overwriting_order +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestSlots.test_add_slots_when_slots_exists +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c function:TestCase.test_compare_subclasses +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c function:TestCase.test_field_order +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c function:TestCase.test_intermediate_non_dataclass +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c function:TestCase.test_post_init_super +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c function:TestInit.test_base_has_init +C Lib/test/test_dataclasses.py /^ class C(B):$/;" c function:TestRepr.test_repr +C Lib/test/test_dataclasses.py /^ class C(Base):$/;" c function:TestCase.test_init_var_inheritance +C Lib/test/test_dataclasses.py /^ class C(Base):$/;" c function:TestDocString.test_docstring_with_no_signature +C Lib/test/test_dataclasses.py /^ class C(P):$/;" c function:TestInit.test_inherit_from_protocol +C Lib/test/test_dataclasses.py /^ class C: pass$/;" c function:TestCase.test_helper_fields_exception +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_0_field_compare +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_1_field_compare +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_alternate_classmethod_constructor +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_class_attrs +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_class_marker +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_class_var +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_class_var_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_class_var_no_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_class_var_with_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_default_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_default_factory_not_called_if_value_given +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_default_factory_with_no_init +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_deliberately_mutable_defaults +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_dont_include_other_annotations +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_metadata_custom_mapping +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_metadata_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_metadata_mapping +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_named_BUILTINS_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_named_object +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_named_object_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_named_self +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_field_no_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_function_annotations +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict_copy_values +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict_defaultdict +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict_namedtuple +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict_namedtuple_derived +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict_namedtuple_key +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_asdict_raises_on_classes +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_astuple +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_astuple_copy_values +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_astuple_defaultdict +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_astuple_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_astuple_namedtuple +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_astuple_raises_on_classes +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_helper_fields_with_class_instance +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_init_false_no_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_init_in_order +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_init_var +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_init_var_no_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_init_var_with_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_is_dataclass +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_items_in_dicts +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_missing_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_missing_default_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_named_init_params +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_no_fields +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_no_fields_but_member_variable +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_no_options +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_not_in_compare +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_not_in_repr +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_not_tuple +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_one_field_no_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_overwrite_hash +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_post_init +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_post_init_classmethod +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_post_init_staticmethod +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_recursive_annotation +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_simple_compare +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestCase.test_two_fields_one_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_default_value +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_getting_field_calls_get +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_init_calls_set +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_lookup_on_class +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_lookup_on_instance +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_no_default_value +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_non_descriptor +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_set_name +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_setting_field_calls_set +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDescriptors.test_setting_uninitialized_descriptor_field +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_deque_field +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_deque_field_with_default_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_list_field +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_list_field_with_default_factory +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_no_fields +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_one_field +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_one_field_with_default +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_one_field_with_default_none +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_three_fields +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_docstring_two_fields +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestDocString.test_existing_docstring_not_overridden +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestEq.test_no_eq +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestEq.test_overwriting_eq +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_frozen_empty +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_frozen_hash +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_inherit +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_inherit_nonfrozen_from_empty +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_inherit_nonfrozen_from_empty_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestFrozen.test_overwriting_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestHash.test_0_field_hash +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestHash.test_1_field_hash +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestHash.test_eq_only +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestHash.test_unsafe_hash +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestInit.test_no_init +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestInit.test_overwriting_init +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestKeywordArgs.test_KW_ONLY +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestKeywordArgs.test_match_args +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestMatchArgs.test_explicit_match_args +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestMatchArgs.test_match_args +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestOrdering.test_functools_total_ordering +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestOrdering.test_no_order +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_classvar +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_frozen +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_initvar_is_specified +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_initvar_with_default_value +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_invalid_field_name +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_invalid_object +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_no_init +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_recursive_repr +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_recursive_repr_indirection +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_recursive_repr_indirection_two +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_recursive_repr_misc_attrs +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestReplace.test_recursive_repr_two_attrs +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestRepr.test_no_repr +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestRepr.test_overwriting_repr +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestRepr.test_repr +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestSlots.test_generated_slots +C Lib/test/test_dataclasses.py /^ class C:$/;" c function:TestSlots.test_simple +C Lib/test/test_decimal.py /^C = import_fresh_module('decimal', fresh=['_decimal'])$/;" v +C Lib/test/test_decorators.py /^ class C(object): pass$/;" c function:TestClassDecorators.test_double +C Lib/test/test_decorators.py /^ class C(object): pass$/;" c function:TestClassDecorators.test_order +C Lib/test/test_decorators.py /^ class C(object): pass$/;" c function:TestClassDecorators.test_simple +C Lib/test/test_decorators.py /^ class C(object):$/;" c function:TestDecorators.test_double +C Lib/test/test_decorators.py /^ class C(object):$/;" c function:TestDecorators.test_single +C Lib/test/test_deque.py /^ class C(object):$/;" c function:TestBasic.test_container_iterator +C Lib/test/test_descr.py /^ class C(base):$/;" c class:.test_classic_comparisons.classic +C Lib/test/test_descr.py /^ class C(base):$/;" c class:.test_rich_comparisons.classic +C Lib/test/test_descr.py /^ class C(list, dict):$/;" c function:.test_errors +C Lib/test/test_descr.py /^ class C(object):$/;" c class:.test_errors.Classic +C Lib/test/test_descr.py /^ class C(object):$/;" c class:.test_slots.C +C Lib/test/test_descr.py /^ class C(object):$/;" c class:.test_slots.C4 +C Lib/test/test_descr.py /^ class C(object, None):$/;" c function:.test_errors +C Lib/test/test_descr.py /^ class C(type(len)):$/;" c class:.test_errors.Classic +C Lib/test/test_descr.py /^ class C(A):$/;" c function:.test_altmro +C Lib/test/test_descr.py /^ class C(A):$/;" c function:.test_ipow_returns_not_implemented +C Lib/test/test_descr.py /^ class C(A):$/;" c function:.test_subclass_propagation +C Lib/test/test_descr.py /^ class C(A):$/;" c function:.test_supers +C Lib/test/test_descr.py /^ class C(A):$/;" c function:ClassPropertiesAndMethods.test_diamond_inheritance +C Lib/test/test_descr.py /^ class C(A):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(A):$/;" c function:MroTest.test_tp_subclasses_cycle_error_return_path +C Lib/test/test_descr.py /^ class C(A):$/;" c function:MroTest.test_tp_subclasses_cycle_in_update_slots +C Lib/test/test_descr.py /^ class C(A, B):$/;" c function:.test_mutable_bases_catch_mro_conflict +C Lib/test/test_descr.py /^ class C(A, B):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(A,B) :$/;" c function:.test_slots_multiple_inheritance +C Lib/test/test_descr.py /^ class C(B):$/;" c function:.test_overloading +C Lib/test/test_descr.py /^ class C(B):$/;" c function:.test_proxy_super +C Lib/test/test_descr.py /^ class C(B):$/;" c function:MroTest.test_reent_set_bases_on_direct_base +C Lib/test/test_descr.py /^ class C(B, A):$/;" c function:.test_carloverre_multi_inherit_invalid +C Lib/test/test_descr.py /^ class C(B, A):$/;" c function:.test_carloverre_multi_inherit_valid +C Lib/test/test_descr.py /^ class C(dict):$/;" c function:ClassPropertiesAndMethods.test_python_dicts +C Lib/test/test_descr.py /^ class C(int):$/;" c function:OperatorsTest.test_ints +C Lib/test/test_descr.py /^ class C(list):$/;" c function:.test_bad_new +C Lib/test/test_descr.py /^ class C(list):$/;" c function:.test_newslots +C Lib/test/test_descr.py /^ class C(list):$/;" c function:ClassPropertiesAndMethods.test_python_lists +C Lib/test/test_descr.py /^ class C(metaclass=M):$/;" c function:DictProxyTests.test_dict_type_with_metaclass +C Lib/test/test_descr.py /^ class C(metaclass=M1):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(metaclass=M2):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(metaclass=T):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(metaclass=type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(object): pass$/;" c function:.test_mro_disagreement +C Lib/test/test_descr.py /^ class C(object): pass$/;" c function:.test_set_class +C Lib/test/test_descr.py /^ class C(object): pass$/;" c function:.test_set_dict +C Lib/test/test_descr.py /^ class C(object): pass$/;" c function:ClassPropertiesAndMethods.test_ex5_from_c3_switch +C Lib/test/test_descr.py /^ class C(object): pass$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_assign_slice +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_bad_new +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_builtin_bases +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_classmethods +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_compattr +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_copy_setstate +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_delete_hook +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_dir +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_dynamics +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_funny_new +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_getattr_hooks +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_imul_bug +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_ipow +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_isinst_isclass +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_methods +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_mutable_bases +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_mutable_bases_with_failing_mro +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_mutable_names +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_properties +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_properties_plus +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_rmul +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_slots +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_specials +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_staticmethods +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_subclass_right_op +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_subtype_resurrection +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_vicious_descriptor_nonsense +C Lib/test/test_descr.py /^ class C(object):$/;" c function:.test_weakrefs +C Lib/test/test_descr.py /^ class C(object):$/;" c function:ClassPropertiesAndMethods.test_multiple_inheritance +C Lib/test/test_descr.py /^ class C(object):$/;" c function:DictProxyTests.setUp +C Lib/test/test_descr.py /^ class C(object, metaclass=A):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C Lib/test/test_descr.py /^ class C(spam.spamdict):$/;" c function:OperatorsTest.test_spam_dicts +C Lib/test/test_descr.py /^ class C(spam.spamlist):$/;" c function:OperatorsTest.test_spam_lists +C Lib/test/test_descr.py /^ class C:$/;" c function:.test_classic +C Lib/test/test_descr.py /^ class C:$/;" c function:.test_evil_type_name +C Lib/test/test_descr.py /^ class C:$/;" c function:.test_isinst_isclass +C Lib/test/test_descr.py /^ class C:$/;" c function:PicklingTests.test_pickle_slots +C Lib/test/test_descrtut.py /^class C(A):$/;" c +C Lib/test/test_dict.py /^ class C(object):$/;" c function:DictTest.test_container_iterator +C Lib/test/test_dict.py /^ class C:$/;" c function:DictTest.make_shared_key_dict +C Lib/test/test_dict.py /^ class C:$/;" c function:DictTest.test_errors_in_view_containment_check +C Lib/test/test_dict.py /^ class C:$/;" c function:DictTest.test_splittable_to_generic_combinedtable +C Lib/test/test_dict.py /^ class C:$/;" c function:DictTest.test_splittable_update +C Lib/test/test_doctest2.py /^class C(object):$/;" c +C Lib/test/test_dynamic.py /^ class C:$/;" c function:TestTracing.test_after_specialization +C Lib/test/test_dynamicclassattribute.py /^ class C(object):$/;" c class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool +C Lib/test/test_dynamicclassattribute.py /^ class C(object):$/;" c function:PropertyTests.test_property___isabstractmethod__descriptor +C Lib/test/test_enum.py /^ C = 3$/;" v class:TestSpecial.setUp.Grades +C Lib/test/test_enum.py /^ C = 3$/;" v class:TestSpecial.test_inherited_data_type.MyEnum +C Lib/test/test_enum.py /^ C = 3$/;" v class:TestSpecial.test_ordered_mixin.Grade +C Lib/test/test_enum.py /^ C = 4 | B$/;" v class:OldTestFlag.test_boundary.SkipFlag +C Lib/test/test_enum.py /^ C = 4 | B$/;" v class:OldTestFlag.test_boundary.SkipIntFlag +C Lib/test/test_exceptions.py /^ class C(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle2 +C Lib/test/test_exceptions.py /^ class C(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle3 +C Lib/test/test_exceptions.py /^ class C(Exception):$/;" c function:ExceptionTests.test_raise_does_not_create_context_chain_cycle +C Lib/test/test_exceptions.py /^ class C(object):$/;" c function:ExceptionTests.test_exception_with_doc +C Lib/test/test_exceptions.py /^ class C:$/;" c function:ExceptionTests.test_memory_error_cleanup +C Lib/test/test_exceptions.py /^ class C:$/;" c function:ExceptionTests.test_recursion_error_cleanup +C Lib/test/test_finalization.py /^ class C(object):$/;" c function:with_tp_del +C Lib/test/test_finalization.py /^ class C:$/;" c function:without_gc +C Lib/test/test_frame.py /^ class C:$/;" c function:ClearTest.test_clear_refcycles +C Lib/test/test_frame.py /^ class C:$/;" c function:ClearTest.test_clear_does_not_clear_specials +C Lib/test/test_frame.py /^ class C:$/;" c function:ClearTest.test_clear_locals +C Lib/test/test_frame.py /^ class C:$/;" c function:TestIncompleteFrameAreInvisible.test_entry_frames_are_invisible_during_teardown +C Lib/test/test_fstring.py /^ class C:$/;" c function:.test_debug_conversion +C Lib/test/test_functools.py /^ class C(A):$/;" c function:TestSingleDispatch.test_mro +C Lib/test/test_functools.py /^ class C(collections.defaultdict):$/;" c function:TestSingleDispatch.test_compose_mro +C Lib/test/test_functools.py /^ class C(object):$/;" c function:TestSingleDispatch.test_c3_abc +C Lib/test/test_gc.py /^ class C(B, A):$/;" c function:GCTests.test_newinstance +C Lib/test/test_gc.py /^ class C(list):$/;" c function:GCTests.test_trashcan_threads +C Lib/test/test_gc.py /^ class C(object):$/;" c function:with_tp_del +C Lib/test/test_genericalias.py /^ class C(list[int]):$/;" c function:BaseTest.test_subclassing +C Lib/test/test_genericclass.py /^ class C(IntGeneric):$/;" c function:CAPITest.test_c_class +C Lib/test/test_genericclass.py /^ class C(metaclass=Meta):$/;" c function:TestClassGetitem.test_class_getitem_metaclass_first +C Lib/test/test_genericclass.py /^ class C(metaclass=Meta):$/;" c function:TestClassGetitem.test_class_getitem_with_metaclass +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestClassGetitem.test_class_getitem +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestClassGetitem.test_class_getitem_classmethod +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestClassGetitem.test_class_getitem_errors_2 +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestClassGetitem.test_class_getitem_format +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestClassGetitem.test_class_getitem_inheritance +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestClassGetitem.test_class_getitem_inheritance_2 +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestClassGetitem.test_class_getitem_patched +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestMROEntry.test_mro_entry +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestMROEntry.test_mro_entry_metaclass +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestMROEntry.test_mro_entry_none +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestMROEntry.test_mro_entry_signature +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestMROEntry.test_mro_entry_type_call +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestMROEntry.test_mro_entry_with_builtins +C Lib/test/test_genericclass.py /^ class C:$/;" c function:TestMROEntry.test_mro_entry_with_builtins_2 +C Lib/test/test_grammar.py /^ class C(A):$/;" c function:GrammarTests.test_annotations_inheritance +C Lib/test/test_grammar.py /^ class C:$/;" c function:GrammarTests.test_classdef +C Lib/test/test_grammar.py /^ class C:$/;" c function:GrammarTests.test_var_annot_basic_semantics +C Lib/test/test_inspect.py /^ class C(A): pass$/;" c function:TestClassesAndFunctions.test_newstyle_mro +C Lib/test/test_inspect.py /^ class C(A):$/;" c function:TestClassesAndFunctions.test_classify_newstyle +C Lib/test/test_inspect.py /^ class C(A):$/;" c function:TestSignatureObject.test_signature_on_subclass +C Lib/test/test_inspect.py /^ class C(metaclass=CM):$/;" c function:TestRetrievingSourceCode.test_getfile_class_without_module +C Lib/test/test_inspect.py /^ class C(metaclass=CM):$/;" c function:TestSignatureObject.test_signature_on_class +C Lib/test/test_inspect.py /^ class C(metaclass=M):$/;" c function:TestClassesAndFunctions.test_classify_class_attrs_with_buggy_dir +C Lib/test/test_inspect.py /^ class C(metaclass=M):$/;" c function:TestClassesAndFunctions.test_getmembers_with_buggy_dir +C Lib/test/test_inspect.py /^ class C(object):$/;" c function:TestPredicates.test_get_slot_members +C Lib/test/test_inspect.py /^ class C(type): pass$/;" c function:TestSignatureObject.test_signature_on_class_without_init +C Lib/test/test_inspect.py /^ class C: pass$/;" c function:TestSignatureObject.test_signature_on_class_without_init +C Lib/test/test_inspect.py /^ class C:$/;" c function:TestGetClosureVars.test_method_closure +C Lib/test/test_inspect.py /^ class C:$/;" c function:TestSignatureObject.test_signature_on_class +C Lib/test/test_inspect.py /^ class C:$/;" c function:TestUnwrap.test_unhashable +C Lib/test/test_io.py /^ class C(str):$/;" c function:MiscIOTest.test_blockingioerror +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsInstanceExceptions.test_class_has_no_bases +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsInstanceExceptions.test_dont_mask_non_attribute_error +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsInstanceExceptions.test_isinstance_dont_mask_non_attribute_error +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsInstanceExceptions.test_mask_attribute_error +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsSubclassExceptions.test_dont_mask_non_attribute_error +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsSubclassExceptions.test_dont_mask_non_attribute_error_in_cls_arg +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsSubclassExceptions.test_mask_attribute_error +C Lib/test/test_isinstance.py /^ class C(object):$/;" c function:TestIsSubclassExceptions.test_mask_attribute_error_in_cls_arg +C Lib/test/test_iter.py /^ class C(object):$/;" c function:TestCase.test_ref_counting_behavior +C Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class C:$/;" c function:GrammarTests.testClassdef +C Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class C:$/;" c function:GrammarTests.testClassdef +C Lib/test/test_listcomps.py /^ class C:$/;" c function:ListComprehensionTest.test_class_scope_free_var_with_class_cell +C Lib/test/test_opcache.py /^ class C:$/;" c function:TestLoadAttrCache.test_descriptor_added_after_optimization +C Lib/test/test_opcache.py /^ class C:$/;" c function:TestLoadSuperAttrCache.test_descriptor_not_double_executed_on_spec_fail +C Lib/test/test_opcodes.py /^ class C:$/;" c function:OpcodeTest.test_do_not_recreate_annotations +C Lib/test/test_opcodes.py /^ class C: pass$/;" c function:OpcodeTest.test_default_annotations_exist +C Lib/test/test_operator.py /^ class C(object):$/;" c function:OperatorTestCase.test_attrgetter +C Lib/test/test_operator.py /^ class C(object):$/;" c function:OperatorTestCase.test_eq +C Lib/test/test_operator.py /^ class C(object):$/;" c function:OperatorTestCase.test_inplace +C Lib/test/test_operator.py /^ class C(object):$/;" c function:OperatorTestCase.test_itemgetter +C Lib/test/test_operator.py /^ class C(object):$/;" c function:OperatorTestCase.test_ne +C Lib/test/test_operator.py /^ class C(object):$/;" c function:OperatorTestCase.test_truth +C Lib/test/test_patma.py /^ C = 0$/;" v class:TestPatma.test_patma_112.A.B +C Lib/test/test_patma.py /^ C = 0$/;" v class:TestPatma.test_patma_113.A.B +C Lib/test/test_patma.py /^ class C:$/;" c class:TestPatma.test_patma_114.A.B +C Lib/test/test_patma.py /^ class C:$/;" c class:TestPatma.test_patma_115.A.B +C Lib/test/test_patma.py /^ class C(dict):$/;" c function:TestPatma.test_patma_248 +C Lib/test/test_patma.py /^ class C:$/;" c function:TestInheritance.test_multiple_inheritance_mapping +C Lib/test/test_patma.py /^ class C:$/;" c function:TestInheritance.test_multiple_inheritance_sequence +C Lib/test/test_patma.py /^ class C:$/;" c function:TestPatma.test_patma_249 +C Lib/test/test_positional_only_arg.py /^ class C(A):$/;" c function:PositionalOnlyTestCase.test_super +C Lib/test/test_property.py /^ class C(object):$/;" c class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool +C Lib/test/test_property.py /^ class C(object):$/;" c function:PropertyTests.test_property___isabstractmethod__descriptor +C Lib/test/test_pydoc.py /^ class C(metaclass=M):$/;" c function:PydocWithMetaClasses.test_buggy_dir +C Lib/test/test_pydoc.py /^ class C(typing.Generic[T], typing.Mapping[int, str]): ...$/;" c function:TestDescriptions.test_typing_pydoc +C Lib/test/test_pydoc.py /^ class C: "New-style class"$/;" c function:TestDescriptions.test_class +C Lib/test/test_queue.py /^ class C:$/;" c function:BaseSimpleQueueTest.test_references +C Lib/test/test_raise.py /^ class C:$/;" c function:TestContext.test_3611 +C Lib/test/test_reprlib.py /^ class C:$/;" c function:ReprTests.test_descriptors +C Lib/test/test_scope.py /^ class C:$/;" c function:ScopeTests.testBoundAndFree.f +C Lib/test/test_scope.py /^ class C:$/;" c function:ScopeTests.testLocalsClass.f +C Lib/test/test_scope.py /^ class C:$/;" c function:ScopeTests.testLocalsClass_WithTrace +C Lib/test/test_set.py /^ class C(object):$/;" c function:TestJointOps.test_container_iterator +C Lib/test/test_sort.py /^ class C:$/;" c function:TestBugs.test_bug453523 +C Lib/test/test_structseq.py /^ class C:$/;" c function:StructSeqTest.test_eviltuple +C Lib/test/test_super.py /^ class C(B):$/;" c function:TestSuper.test_mixed_staticmethod_hierarchy +C Lib/test/test_super.py /^ class C(B):$/;" c function:TestSuper.test_reassigned_new +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_attribute_error +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_bad_first_arg +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_obscure_super_errors +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_shadowed_dynamic +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_shadowed_dynamic_two_arg +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_shadowed_local +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_super___class__ +C Lib/test/test_super.py /^ class C:$/;" c function:TestSuper.test_super_subclass___class__ +C Lib/test/test_super.py /^class C(A):$/;" c +C Lib/test/test_sys.py /^ class C(object): pass$/;" c function:SizeofTest.test_objecttypes +C Lib/test/test_sys.py /^ class C(object):$/;" c function:SizeofTest.test_objecttypes +C Lib/test/test_sys_settrace.py /^ class C:$/;" c function:TraceTestCase.test_early_exit_with +C Lib/test/test_sys_settrace.py /^ class C:$/;" c function:TraceTestCase.test_if_false_in_with +C Lib/test/test_traceback.py /^ class C:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args +C Lib/test/test_type_annotations.py /^ class C:$/;" c function:TypeAnnotationTests.test_annotations_are_created_correctly +C Lib/test/test_type_annotations.py /^ class C:$/;" c function:TypeAnnotationTests.test_descriptor_still_works +C Lib/test/test_type_cache.py /^ class C:$/;" c function:TypeCacheTests.test_type_assign_version +C Lib/test/test_type_params.py /^ class C[T](Base, a=1, b=2, **kwargs):$/;" c function:TypeParamsComplexCallsTest.test_complex_base +C Lib/test/test_types.py /^ class C(B[int]): pass$/;" c function:ClassCreationTests.test_get_original_bases +C Lib/test/test_types.py /^ class C: pass$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_multiple_2 +C Lib/test/test_types.py /^ class C: pass$/;" c function:TypesTests.test_truth_values +C Lib/test/test_types.py /^ class C:$/;" c function:ClassCreationTests.test_new_class_with_mro_entry +C Lib/test/test_types.py /^ class C:$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_error +C Lib/test/test_types.py /^ class C:$/;" c function:ClassCreationTests.test_new_class_with_mro_entry_none +C Lib/test/test_types.py /^ class C:$/;" c function:ClassCreationTests.test_resolve_bases +C Lib/test/test_typing.py /^ class C:$/;" c class:ForwardRefTests.test_no_type_check_nested_types.A.B +C Lib/test/test_typing.py /^ C = A[T, T2]$/;" v class:TypeVarTupleTests.test_bad_var_substitution.G2 +C Lib/test/test_typing.py /^ C = A[T, Unpack[Ts], str, T2]$/;" v class:TypeVarTupleTests.test_bad_var_substitution.G2 +C Lib/test/test_typing.py /^ C = A[Unpack[Ts]]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +C Lib/test/test_typing.py /^ class C(*Ts): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Annotated):$/;" c function:AnnotatedTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(ClassVar):$/;" c function:ClassVarTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(ClassVar[int]):$/;" c function:ClassVarTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Final):$/;" c function:FinalTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Final[int]):$/;" c function:FinalTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Generic[*Ts1, *Ts1]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_duplicate_typevartuples_fails +C Lib/test/test_typing.py /^ class C(Generic[*Ts1, *Ts2, *Ts1]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_duplicate_typevartuples_fails +C Lib/test/test_typing.py /^ class C(Generic[B]):$/;" c function:GenericTests.test_errors +C Lib/test/test_typing.py /^ class C(Generic[T], Generic[T]): ...$/;" c function:GenericTests.test_generic_errors +C Lib/test/test_typing.py /^ class C(Generic[Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_definition_using_packed_typevartuple_fails +C Lib/test/test_typing.py /^ class C(Generic[Unpack[Ts1], Unpack[Ts1]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_duplicate_typevartuples_fails +C Lib/test/test_typing.py /^ class C(Generic[Unpack[Ts1], Unpack[Ts2], Unpack[Ts1]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_duplicate_typevartuples_fails +C Lib/test/test_typing.py /^ class C(LiteralString):$/;" c function:LiteralStringTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(NotRequired):$/;" c function:NotRequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(NotRequired[int]):$/;" c function:NotRequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(P): pass$/;" c function:ParamSpecTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(P.args): pass$/;" c function:ParamSpecTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(P.kwargs): pass$/;" c function:ParamSpecTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(ParamSpec): pass$/;" c function:ParamSpecTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(ParamSpecArgs): pass$/;" c function:ParamSpecTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(ParamSpecKwargs): pass$/;" c function:ParamSpecTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Required):$/;" c function:RequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Required[int]):$/;" c function:RequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Self):$/;" c function:SelfTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Ts): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(TypeAlias):$/;" c function:TypeAliasTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(TypeGuard):$/;" c function:TypeGuardTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(TypeGuard[int]):$/;" c function:TypeGuardTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(TypeVarTuple): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Union):$/;" c function:UnionTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Union[int, str]):$/;" c function:UnionTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Unpack): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(Unpack[Ts]): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(*Ts)): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(ClassVar)):$/;" c function:ClassVarTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(ClassVar[int])):$/;" c function:ClassVarTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Final)):$/;" c function:FinalTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Final[int])):$/;" c function:FinalTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(LiteralString)):$/;" c function:LiteralStringTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(NotRequired)):$/;" c function:NotRequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(NotRequired[int])):$/;" c function:NotRequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Required)):$/;" c function:RequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Required[int])):$/;" c function:RequiredTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Self)):$/;" c function:SelfTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(TypeAlias)):$/;" c function:TypeAliasTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(TypeGuard)):$/;" c function:TypeGuardTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(TypeGuard[int])):$/;" c function:TypeGuardTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Union)):$/;" c function:UnionTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Unpack)): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C(type(Unpack[Ts])): pass$/;" c function:TypeVarTupleTests.test_cannot_subclass +C Lib/test/test_typing.py /^ class C: pass$/;" c function:ProtocolTests.test_no_runtime_deco_on_nominal +C Lib/test/test_typing.py /^ class C(A, B):$/;" c function:GenericTests.test_new_no_args +C Lib/test/test_typing.py /^ class C(A, B):$/;" c function:GenericTests.test_new_with_args +C Lib/test/test_typing.py /^ class C(A[T, VT], Generic[VT, T, KT], B[KT, T]):$/;" c function:GenericTests.test_multiple_inheritance +C Lib/test/test_typing.py /^ class C(B):$/;" c function:ProtocolTests.test_cannot_instantiate_abstract +C Lib/test/test_typing.py /^ class C(B[int]):$/;" c function:GenericTests.test_dict +C Lib/test/test_typing.py /^ class C(B[int]):$/;" c function:GenericTests.test_pickle +C Lib/test/test_typing.py /^ class C(B[int]):$/;" c function:TypedDictTests.test_generic_inheritance +C Lib/test/test_typing.py /^ class C(Base): ...$/;" c function:CollectionsAbcTests.test_subclassing_subclasshook +C Lib/test/test_typing.py /^ class C(Generic[*Ts]): pass$/;" c function:GenericAliasSubstitutionTests.test_variadic_parameters +C Lib/test/test_typing.py /^ class C(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_arg_ordering_matters +C Lib/test/test_typing.py /^ class C(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_arg_typevartuple_identity_matters +C Lib/test/test_typing.py /^ class C(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_origin_is_correct +C Lib/test/test_typing.py /^ class C(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_same_args_results_in_equalty +C Lib/test/test_typing.py /^ class C(Generic[P]):$/;" c function:ParamSpecTests.test_stringized +C Lib/test/test_typing.py /^ class C(Generic[T1, *Ts, T2]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_2_typevars_accepts_2_or_more_args +C Lib/test/test_typing.py /^ class C(Generic[T1, T2, T3]): pass$/;" c function:GenericAliasSubstitutionTests.test_three_parameters +C Lib/test/test_typing.py /^ class C(Generic[T1, T2]): pass$/;" c function:GenericAliasSubstitutionTests.test_two_parameters +C Lib/test/test_typing.py /^ class C(Generic[T]): pass$/;" c function:GenericAliasSubstitutionTests.test_one_parameter +C Lib/test/test_typing.py /^ class C(Generic[T]): pass$/;" c function:GenericTests.test_generic_errors +C Lib/test/test_typing.py /^ class C(Generic[T]): pass$/;" c function:GetUtilitiesTestCase.test_get_args +C Lib/test/test_typing.py /^ class C(Generic[T]): pass$/;" c function:GetUtilitiesTestCase.test_get_origin +C Lib/test/test_typing.py /^ class C(Generic[T]):$/;" c function:GenericTests.test_chain_repr +C Lib/test/test_typing.py /^ class C(Generic[T]):$/;" c function:GenericTests.test_copy_generic_instances +C Lib/test/test_typing.py /^ class C(Generic[T]):$/;" c function:GenericTests.test_implicit_any +C Lib/test/test_typing.py /^ class C(Generic[T]):$/;" c function:GenericTests.test_parameterized_slots +C Lib/test/test_typing.py /^ class C(Generic[T]):$/;" c function:GenericTests.test_repr_2 +C Lib/test/test_typing.py /^ class C(Generic[T]):$/;" c function:GenericTests.test_subscripted_generics_as_proxies +C Lib/test/test_typing.py /^ class C(Generic[T], A):$/;" c function:GenericTests.test_new_with_args2 +C Lib/test/test_typing.py /^ class C(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_type_concatenation_in_variadic_class_argument_list_succeeds +C Lib/test/test_typing.py /^ class C(List[T][U][V]): ...$/;" c function:GenericTests.test_multi_subscr_base +C Lib/test/test_typing.py /^ class C(List[int]): ...$/;" c function:GenericTests.test_naive_runtime_checks +C Lib/test/test_typing.py /^ class C(List[int], B): ...$/;" c function:GenericTests.test_multiple_inheritance_special +C Lib/test/test_typing.py /^ class C(P): pass$/;" c function:ProtocolTests.test_concrete_class_inheriting_init_from_protocol +C Lib/test/test_typing.py /^ class C(P): pass$/;" c function:ProtocolTests.test_no_instantiation +C Lib/test/test_typing.py /^ class C(P):$/;" c function:ProtocolTests.test_custom_subclasshook +C Lib/test/test_typing.py /^ class C(PR[int, T]): pass$/;" c function:ProtocolTests.test_defining_generic_protocols +C Lib/test/test_typing.py /^ class C(P[T]): pass$/;" c function:ProtocolTests.test_protocol_checks_after_subscript +C Lib/test/test_typing.py /^ class C(P[T]):$/;" c function:ProtocolTests.test_init_called +C Lib/test/test_typing.py /^ class C(P[T]):$/;" c function:ProtocolTests.test_new_called +C Lib/test/test_typing.py /^ class C(collections.abc.Mapping, Generic[T]): ...$/;" c function:GenericTests.test_abc_registry_kept +C Lib/test/test_typing.py /^ class C(metaclass=abc.ABCMeta):$/;" c function:ProtocolTests.test_non_protocol_subclasses +C Lib/test/test_typing.py /^ class C(typing.Counter[T]): ...$/;" c function:CollectionsAbcTests.test_counter_instantiation +C Lib/test/test_typing.py /^ class C(typing.Dict[Any, Any]): ...$/;" c function:GenericTests.test_new_repr_bare +C Lib/test/test_typing.py /^ class C(typing.Dict[str, T]): ...$/;" c function:GenericTests.test_orig_bases +C Lib/test/test_typing.py /^ class C: ...$/;" c function:CollectionsAbcTests.test_subclassing_register +C Lib/test/test_typing.py /^ class C: pass$/;" c function:ProtocolTests.test_basic_protocol +C Lib/test/test_typing.py /^ class C: pass$/;" c function:ProtocolTests.test_collections_protocols_allowed +C Lib/test/test_typing.py /^ class C: pass$/;" c function:ProtocolTests.test_issubclass_fails_correctly +C Lib/test/test_typing.py /^ class C: pass$/;" c function:ProtocolTests.test_no_inheritance_from_nominal +C Lib/test/test_typing.py /^ class C: pass$/;" c function:ProtocolTests.test_protocol_defining_init_does_not_get_overridden +C Lib/test/test_typing.py /^ class C: pass$/;" c function:ProtocolTests.test_protocols_support_register +C Lib/test/test_typing.py /^ class C:$/;" c function:AnnotatedTests.test_attr_passthrough +C Lib/test/test_typing.py /^ class C:$/;" c function:AnnotatedTests.test_instantiate +C Lib/test/test_typing.py /^ class C:$/;" c function:AnnotatedTests.test_special_form_containment +C Lib/test/test_typing.py /^ class C:$/;" c function:ForwardRefTests.test_forward_equality_gth +C Lib/test/test_typing.py /^ class C:$/;" c function:ForwardRefTests.test_meta_no_type_check +C Lib/test/test_typing.py /^ class C:$/;" c function:ForwardRefTests.test_no_type_check_class +C Lib/test/test_typing.py /^ class C:$/;" c function:ForwardRefTests.test_no_type_check_forward_ref_as_string +C Lib/test/test_typing.py /^ class C:$/;" c function:ForwardRefTests.test_no_type_check_no_bases +C Lib/test/test_typing.py /^ class C:$/;" c function:ForwardRefTests.test_special_forms_forward +C Lib/test/test_typing.py /^ class C:$/;" c function:ForwardRefTests.test_union_forward_recursion +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_everything_implements_empty_protocol +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_issubclass_and_isinstance_on_Protocol_itself +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_none_on_callable_blocks_implementation +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_none_on_non_callable_doesnt_block_implementation +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_none_treated_correctly +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_protocols_isinstance +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_protocols_isinstance_init +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_protocols_isinstance_py36 +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_protocols_issubclass +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_protocols_issubclass_non_callable +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_subprotocols_extending +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_subprotocols_merging +C Lib/test/test_typing.py /^ class C:$/;" c function:ProtocolTests.test_supports_complex +C Lib/test/test_unicode.py /^ class C:$/;" c function:UnicodeTest.test_format +C Lib/test/test_unicode.py /^ class C:$/;" c function:UnicodeTest.test_format_auto_numbering +C Lib/test/test_unicode.py /^ class C:$/;" c function:UnicodeTest.test_format_map +C Lib/test/test_unittest/testmock/testmock.py /^ C = None$/;" v class:MockTest.test_autospec_mock.A.B +C Lib/test/test_unittest/testmock/testwith.py /^ class C:$/;" c function:WithTest.test_double_patch_instance_method +C Lib/test/test_weakref.py /^ class C(Object):$/;" c function:WeakMethodTestCase._subclass +C Lib/test/test_weakref.py /^ class C(object):$/;" c function:MappingTestCase.test_weak_keyed_cascading_deletes +C Lib/test/test_weakref.py /^ class C(object):$/;" c function:ReferencesTestCase.test_callback_different_classes +C Lib/test/test_weakref.py /^ class C(object):$/;" c function:ReferencesTestCase.test_callback_in_cycle_resurrection +C Lib/test/test_weakref.py /^ class C(object):$/;" c function:ReferencesTestCase.test_callbacks_on_callback +C Lib/test/test_weakref.py /^ class C(object):$/;" c function:ReferencesTestCase.test_proxy_unicode +C Lib/test/test_weakref.py /^ class C(object):$/;" c function:ReferencesTestCase.test_sf_bug_840829 +C Lib/test/test_weakref.py /^ class C:$/;" c function:ReferencesTestCase.test_callback_reachable_one_way +C Lib/test/test_weakref.py /^ class C:$/;" c function:ReferencesTestCase.test_proxy_div +C Lib/test/test_weakref.py /^ class C:$/;" c function:ReferencesTestCase.test_proxy_index +C Lib/test/test_weakref.py /^ class C:$/;" c function:ReferencesTestCase.test_proxy_matmul +C Lib/test/test_weakref.py /^ class C:$/;" c function:ReferencesTestCase.test_trashcan_16602 +C Lib/test/test_weakref.py /^class C:$/;" c +C Lib/test/test_with.py /^ class C: pass$/;" c function:AssignmentTargetTestCase.testSingleComplexTarget +C Lib/test/test_with.py /^ class C:$/;" c function:AssignmentTargetTestCase.testMultipleComplexTargets +C Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:2;$/;" m struct:__anon508 file: +C Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +C Modules/_ctypes/_ctypes_test.c /^ unsigned int A: 1, B:2, C:3, D:2;$/;" m struct:__anon509 file: +C Modules/_decimal/tests/bench.py /^C = import_fresh_module('decimal', fresh=['_decimal'])$/;" v +C Modules/_decimal/tests/deccheck.py /^C = import_fresh_module('decimal', fresh=['_decimal'])$/;" v +C Modules/_decimal/tests/formathelper.py /^C = import_fresh_module('decimal', fresh=['_decimal'])$/;" v +C Modules/cmathmodule.c 1248;" d file: +C Tools/scripts/var_access_benchmark.py /^class C(object):$/;" c +C0 Lib/idlelib/idle_test/test_browser.py /^C0 = mb.Class(module, 'C0', ['base'], fname, 1, end_lineno=9)$/;" v +C0 Lib/test/test_class.py /^ class C0:$/;" c function:ClassTests.testHashStuff +C0 Lib/test/test_dataclasses.py /^ class C0(A0, B0):$/;" c function:TestCase.test_post_init_not_auto_added +C0 Lib/test/test_dataclasses.py /^ class C0:$/;" c function:TestCase.test_0_field_compare +C0 Lib/test/test_dataclasses.py /^ class C0:$/;" c function:TestCase.test_1_field_compare +C0 Lib/test/test_dataclasses.py /^ class C0:$/;" c function:TestCase.test_simple_compare +C0 Lib/test/test_descr.py /^ class C0(object):$/;" c function:.test_slots +C1 Lib/idlelib/idle_test/test_browser.py /^C1 = mb._nest_class(C0, 'C1', 6, 9, [''])$/;" v +C1 Lib/test/datetimetester.py /^ class C1(tzinfo):$/;" c function:TZInfoBase.test_tzinfo_classes +C1 Lib/test/test_abc.py /^ class C1(C):$/;" c function:test_factory.TestABC.test_registration_transitiveness +C1 Lib/test/test_builtin.py /^ class C1:$/;" c function:BuiltinTest.test_callable +C1 Lib/test/test_capi/test_misc.py /^ class C1(_testcapi.HeapCTypeWithDict, list):$/;" c function:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict_and_other_builtin +C1 Lib/test/test_capi/test_misc.py /^ class C1(_testcapi.HeapCTypeWithManagedWeakref, _testcapi.HeapCTypeWithManagedDict):$/;" c function:CAPITest.test_sublclassing_managed_both +C1 Lib/test/test_capi/test_watchers.py /^ class C1: pass$/;" c function:TestTypeWatchers.test_two_watchers +C1 Lib/test/test_dataclasses.py /^ class C1(A1, B1):$/;" c function:TestCase.test_post_init_not_auto_added +C1 Lib/test/test_dataclasses.py /^ class C1(Base):$/;" c function:TestCase.test_overwrite_fields_in_derived_class +C1 Lib/test/test_dataclasses.py /^ class C1:$/;" c function:TestCase.test_0_field_compare +C1 Lib/test/test_dataclasses.py /^ class C1:$/;" c function:TestCase.test_1_field_compare +C1 Lib/test/test_dataclasses.py /^ class C1:$/;" c function:TestCase.test_simple_compare +C1 Lib/test/test_descr.py /^ class C1(W, D):$/;" c function:.test_slots_special +C1 Lib/test/test_descr.py /^ class C1(object):$/;" c function:.test_slots +C1 Lib/test/test_descr.py /^ class C1:$/;" c function:.test_slots_special2 +C1 Lib/test/test_descr.py /^ class C1:$/;" c function:PicklingTests.test_reduce +C1 Lib/test/test_descr.py /^ class C1:$/;" c function:PicklingTests.test_reduce_copying +C1 Lib/test/test_grammar.py /^ class C1(B): pass$/;" c function:GrammarTests.test_classdef +C1 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class C1(B): pass$/;" c function:GrammarTests.testClassdef +C1 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class C1(B): pass$/;" c function:GrammarTests.testClassdef +C1 Lib/test/test_typing.py /^ class C1(Callable):$/;" c function:BaseCallableTests.test_type_erasure +C1 Lib/test/test_typing.py /^ class C1(typing.Container[T]):$/;" c function:GenericTests.test_extended_generic_rules_subclassing +C1 Lib/test/test_typing.py /^ class C1(typing.SupportsInt):$/;" c function:ProtocolTests.test_bundled_protocol_instance_works +C1 Lib/test/test_typing.py /^ class C1:$/;" c function:GenericTests.test_generic_pep585_forward_ref +C1 Lib/test/test_typing.py /^ class C1:$/;" c function:ProtocolTests.test_subprotocols_extending +C1 Lib/test/test_typing.py /^ class C1:$/;" c function:ProtocolTests.test_subprotocols_merging +C10 Lib/test/test_descr.py /^ class C10:$/;" c function:PicklingTests.test_reduce +C1055820 Lib/test/test_gc.py /^class C1055820(object):$/;" c +C11 Lib/test/test_descr.py /^ class C11:$/;" c function:PicklingTests.test_reduce +C12 Lib/test/test_descr.py /^ class C12:$/;" c function:PicklingTests.test_reduce +C13 Lib/test/test_descr.py /^ class C13:$/;" c function:PicklingTests.test_reduce +C14 Lib/test/test_descr.py /^ class C14:$/;" c function:PicklingTests.test_reduce +C14NTest Lib/test/test_xml_etree.py /^class C14NTest(unittest.TestCase):$/;" c +C14NWriterTarget Lib/xml/etree/ElementTree.py /^class C14NWriterTarget:$/;" c +C15 Lib/test/test_descr.py /^ class C15(dict):$/;" c function:PicklingTests.test_reduce +C16 Lib/test/test_descr.py /^ class C16(list):$/;" c function:PicklingTests.test_reduce +C2 Lib/idlelib/idle_test/test_browser.py /^C2 = mb._nest_class(C1, 'C2', 7, 9)$/;" v +C2 Lib/test/test_builtin.py /^ class C2(object):$/;" c function:BuiltinTest.test_callable +C2 Lib/test/test_capi/test_misc.py /^ class C2(_testcapi.HeapCTypeWithWeakref, list):$/;" c function:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict_and_other_builtin +C2 Lib/test/test_capi/test_misc.py /^ class C2(_testcapi.HeapCTypeWithManagedDict, _testcapi.HeapCTypeWithManagedWeakref):$/;" c function:CAPITest.test_sublclassing_managed_both +C2 Lib/test/test_capi/test_watchers.py /^ class C2: pass$/;" c function:TestTypeWatchers.test_two_watchers +C2 Lib/test/test_class.py /^ class C2:$/;" c function:ClassTests.testHashStuff +C2 Lib/test/test_descr.py /^ class C2(B, A):$/;" c function:ClassPropertiesAndMethods.test_metaclass +C2 Lib/test/test_descr.py /^ class C2(C1, metaclass=Meta, attr="__classcell__"):$/;" c function:.test_slots_special2 +C2 Lib/test/test_descr.py /^ class C2(D, W):$/;" c function:.test_slots_special +C2 Lib/test/test_descr.py /^ class C2(list):$/;" c function:PicklingTests.test_reduce_copying +C2 Lib/test/test_descr.py /^ class C2(object):$/;" c function:.test_mutable_bases +C2 Lib/test/test_descr.py /^ class C2(object):$/;" c function:.test_mutable_bases_with_failing_mro +C2 Lib/test/test_descr.py /^ class C2:$/;" c function:PicklingTests.test_reduce +C2 Lib/test/test_grammar.py /^ class C2(B): pass$/;" c function:GrammarTests.test_classdef +C2 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class C2(B): pass$/;" c function:GrammarTests.testClassdef +C2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class C2(B): pass$/;" c function:GrammarTests.testClassdef +C2 Lib/test/test_range.py /^ class C2:$/;" c function:RangeTest.test_types +C2 Lib/test/test_type_params.py /^ class C2[T](*bases, **kwargs):$/;" c function:TypeParamsComplexCallsTest.test_complex_base +C2 Lib/test/test_typing.py /^ class C2(C1):$/;" c function:ProtocolTests.test_bundled_protocol_instance_works +C2 Lib/test/test_typing.py /^ class C2:$/;" c function:GenericTests.test_generic_pep585_forward_ref +C2 Lib/test/test_typing.py /^ class C2:$/;" c function:ProtocolTests.test_protocols_isinstance +C2 Lib/test/test_typing.py /^ class C2:$/;" c function:ProtocolTests.test_subprotocols_extending +C2 Lib/test/test_typing.py /^ class C2:$/;" c function:ProtocolTests.test_subprotocols_merging +C3 Lib/test/datetimetester.py /^ class C3(tzinfo):$/;" c function:TZInfoBase.test_tzinfo_classes +C3 Lib/test/test_builtin.py /^ class C3(C2): pass$/;" c function:BuiltinTest.test_callable +C3 Lib/test/test_capi/test_misc.py /^ class C3(_testcapi.HeapCTypeWithManagedDict, list):$/;" c function:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict_and_other_builtin +C3 Lib/test/test_descr.py /^ class C3:$/;" c class:.test_slots_special2.C2 +C3 Lib/test/test_descr.py /^ class C3(list):$/;" c function:PicklingTests.test_reduce_copying +C3 Lib/test/test_descr.py /^ class C3(object):$/;" c function:.test_slots +C3 Lib/test/test_descr.py /^ class C3:$/;" c function:PicklingTests.test_reduce +C3 Lib/test/test_range.py /^ class C3(int):$/;" c function:RangeTest.test_types +C4 Lib/test/datetimetester.py /^ class C4(tzinfo):$/;" c function:TZInfoBase.test_tzinfo_classes +C4 Lib/test/test_capi/test_misc.py /^ class C4(_testcapi.HeapCTypeWithManagedWeakref, list):$/;" c function:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict_and_other_builtin +C4 Lib/test/test_descr.py /^ class C4(int):$/;" c function:PicklingTests.test_reduce_copying +C4 Lib/test/test_descr.py /^ class C4(object):$/;" c function:.test_slots +C4 Lib/test/test_descr.py /^ class C4:$/;" c function:PicklingTests.test_reduce +C5 Lib/test/test_descr.py /^ class C5(int):$/;" c function:PicklingTests.test_reduce_copying +C5 Lib/test/test_descr.py /^ class C5:$/;" c function:PicklingTests.test_reduce +C6 Lib/test/datetimetester.py /^ class C6(tzinfo):$/;" c function:TZInfoBase.test_tzinfo_classes +C6 Lib/test/test_descr.py /^ class C6:$/;" c function:PicklingTests.test_reduce +C7 Lib/test/datetimetester.py /^ class C7(tzinfo):$/;" c function:TZInfoBase.test_tzinfo_classes +C7 Lib/test/test_descr.py /^ class C7:$/;" c function:PicklingTests.test_reduce +C9 Lib/test/test_descr.py /^ class C9:$/;" c function:PicklingTests.test_reduce +CAB Lib/msilib/__init__.py /^class CAB:$/;" c +CACHE Include/opcode.h 11;" d +CACHE Lib/dis.py /^CACHE = opmap["CACHE"]$/;" v +CACHED_KEYS Objects/dictobject.c 5335;" d file: +CACHE_ENTRIES Include/internal/pycore_code.h 18;" d +CAFILE Lib/test/test_ftplib.py /^ CAFILE = os.path.join(os.path.dirname(__file__), "pycacert.pem")$/;" v +CAFILE Lib/test/test_imaplib.py /^CAFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "pycacert.pem")$/;" v +CAFILE Lib/test/test_poplib.py /^ CAFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "pycacert.pem")$/;" v +CAFILE_CACERT Lib/test/test_ssl.py /^CAFILE_CACERT = data_file("capath", "5ed36f99.0")$/;" v +CAFILE_NEURONIO Lib/test/test_ssl.py /^CAFILE_NEURONIO = data_file("capath", "4e1295a3.0")$/;" v +CALCSIZE_METHODDEF Modules/clinic/_struct.c.h 241;" d +CALL Include/opcode.h 117;" d +CALL Python/ast_opt.c 1101;" d file: +CALL Python/ast_opt.c 647;" d file: +CALLBACK_FUNCTYPE Lib/test/test_ctypes/test_as_parameter.py /^ CALLBACK_FUNCTYPE = CFUNCTYPE$/;" v +CALLBACK_FUNCTYPE Lib/test/test_ctypes/test_as_parameter.py /^ CALLBACK_FUNCTYPE = WINFUNCTYPE$/;" v +CALLS Lib/pstats.py /^ CALLS = 'calls', 'ncalls'$/;" v class:SortKey +CALLS Lib/test/test_pstats.py /^ CALLS = 'calls', 'ncalls'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +CALLS_KWARGS Lib/test/test_call.py /^ CALLS_KWARGS = [$/;" v class:FastCallTests +CALLS_POSARGS Lib/test/test_call.py /^ CALLS_POSARGS = [$/;" v class:FastCallTests +CALL_BOUND_METHOD_EXACT_ARGS Include/opcode.h 169;" d +CALL_BUILTIN_CLASS Include/opcode.h 170;" d +CALL_BUILTIN_FAST_WITH_KEYWORDS Include/opcode.h 171;" d +CALL_FUNCTION_EX Include/opcode.h 100;" d +CALL_INTRINSIC_1 Include/opcode.h 119;" d +CALL_INTRINSIC_1 Lib/dis.py /^CALL_INTRINSIC_1 = opmap['CALL_INTRINSIC_1']$/;" v +CALL_INTRINSIC_2 Include/opcode.h 120;" d +CALL_INTRINSIC_2 Lib/dis.py /^CALL_INTRINSIC_2 = opmap['CALL_INTRINSIC_2']$/;" v +CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS Include/opcode.h 172;" d +CALL_NO_KW_BUILTIN_FAST Include/opcode.h 173;" d +CALL_NO_KW_BUILTIN_O Include/opcode.h 174;" d +CALL_NO_KW_ISINSTANCE Include/opcode.h 175;" d +CALL_NO_KW_LEN Include/opcode.h 176;" d +CALL_NO_KW_LIST_APPEND Include/opcode.h 177;" d +CALL_NO_KW_METHOD_DESCRIPTOR_FAST Include/opcode.h 178;" d +CALL_NO_KW_METHOD_DESCRIPTOR_NOARGS Include/opcode.h 179;" d +CALL_NO_KW_METHOD_DESCRIPTOR_O Include/opcode.h 180;" d +CALL_NO_KW_STR_1 Include/opcode.h 181;" d +CALL_NO_KW_TUPLE_1 Include/opcode.h 182;" d +CALL_NO_KW_TYPE_1 Include/opcode.h 183;" d +CALL_OPT Python/ast_opt.c 1102;" d file: +CALL_OPT Python/ast_opt.c 651;" d file: +CALL_PY_EXACT_ARGS Include/opcode.h 167;" d +CALL_PY_WITH_DEFAULTS Include/opcode.h 168;" d +CALL_SEQ Python/ast_opt.c 1103;" d file: +CALL_SEQ Python/ast_opt.c 655;" d file: +CALL_STAT_INC Include/internal/pycore_code.h 261;" d +CALL_STAT_INC Include/internal/pycore_code.h 276;" d +CAN Lib/curses/ascii.py /^CAN = 0x18 # ^X$/;" v +CANCEL Lib/tkinter/messagebox.py /^CANCEL = "cancel"$/;" v +CANCELLED Lib/concurrent/futures/_base.py /^CANCELLED = 'CANCELLED'$/;" v +CANCELLED_AND_NOTIFIED Lib/concurrent/futures/_base.py /^CANCELLED_AND_NOTIFIED = 'CANCELLED_AND_NOTIFIED'$/;" v +CANCELLED_AND_NOTIFIED_FUTURE Lib/test/test_concurrent_futures/util.py /^CANCELLED_AND_NOTIFIED_FUTURE = create_future(state=CANCELLED_AND_NOTIFIED)$/;" v +CANCELLED_FUTURE Lib/test/test_concurrent_futures/util.py /^CANCELLED_FUTURE = create_future(state=CANCELLED)$/;" v +CANNOT_CATCH_MSG Python/ceval.c 2570;" d file: +CANNOT_EXCEPT_STAR_EG Python/ceval.c 2573;" d file: +CANNOT_SUBCLASS_INSTANCE Lib/test/test_typing.py /^CANNOT_SUBCLASS_INSTANCE = 'Cannot subclass an instance of %s'$/;" v +CANNOT_SUBCLASS_TYPE Lib/test/test_typing.py /^CANNOT_SUBCLASS_TYPE = 'Cannot subclass special typing classes'$/;" v +CANTest Lib/test/test_socket.py /^class CANTest(ThreadedCANSocketTest):$/;" c +CAPAS Lib/test/test_poplib.py /^ CAPAS = {'UIDL': [], 'IMPLEMENTATION': ['python-testlib-pop-server']}$/;" v class:DummyPOP3Handler +CAPATH Lib/test/test_ssl.py /^CAPATH = data_file("capath")$/;" v +CAPIExceptionFormattingLegacyMixin Lib/test/test_traceback.py /^class CAPIExceptionFormattingLegacyMixin(CAPIExceptionFormattingMixin):$/;" c +CAPIExceptionFormattingMixin Lib/test/test_traceback.py /^class CAPIExceptionFormattingMixin:$/;" c +CAPIItem Tools/c-analyzer/cpython/_capi.py /^class CAPIItem(namedtuple('CAPIItem', 'file lno name kind level')):$/;" c +CAPITest Lib/test/test_capi/test_abstract.py /^class CAPITest(unittest.TestCase):$/;" c +CAPITest Lib/test/test_capi/test_codecs.py /^class CAPITest(unittest.TestCase):$/;" c +CAPITest Lib/test/test_capi/test_dict.py /^class CAPITest(unittest.TestCase):$/;" c +CAPITest Lib/test/test_capi/test_misc.py /^class CAPITest(unittest.TestCase):$/;" c +CAPITest Lib/test/test_capi/test_unicode.py /^class CAPITest(unittest.TestCase):$/;" c +CAPITest Lib/test/test_coroutines.py /^class CAPITest(unittest.TestCase):$/;" c +CAPITest Lib/test/test_dict.py /^class CAPITest(unittest.TestCase):$/;" c +CAPITest Lib/test/test_genericclass.py /^class CAPITest(unittest.TestCase):$/;" c +CAPI_PREFIX Tools/c-analyzer/cpython/_builtin_types.py /^CAPI_PREFIX = os.path.join('Include', '')$/;" v +CAPI_TestCase Lib/test/test_marshal.py /^class CAPI_TestCase(unittest.TestCase, HelperMixin):$/;" c +CAPSULE_NAME Python/compile.c 508;" d file: +CASCADE Lib/tkinter/constants.py /^CASCADE='cascade'$/;" v +CASE Objects/codeobject.c 19;" d file: +CASE Objects/codeobject.c 23;" d file: +CASE Objects/dictobject.c 5813;" d file: +CASE Objects/dictobject.c 5817;" d file: +CASE Objects/funcobject.c 16;" d file: +CASE Objects/funcobject.c 20;" d file: +CASED_MASK Objects/unicodectype.c 24;" d file: +CASED_MASK Tools/unicode/makeunicodedata.py /^CASED_MASK = 0x2000$/;" v +CASEOKTestBase Lib/test/test_importlib/util.py /^class CASEOKTestBase:$/;" c +CASES Lib/test/test_json/test_encode_basestring_ascii.py /^CASES = [$/;" v +CASES Lib/test/test_textwrap.py /^ CASES = ROUNDTRIP_CASES + ($/;" v class:IndentTestCase +CASE_COST Python/suggestions.c 14;" d file: +CASE_FOLDING Tools/unicode/makeunicodedata.py /^CASE_FOLDING = "CaseFolding%s.txt"$/;" v +CASE_IGNORABLE_MASK Objects/unicodectype.c 23;" d file: +CASE_IGNORABLE_MASK Tools/unicode/makeunicodedata.py /^CASE_IGNORABLE_MASK = 0x1000$/;" v +CASE_INSENSITIVE_FS Lib/test/test_importlib/util.py /^CASE_INSENSITIVE_FS = True$/;" v +CAST_KEY Lib/test/test_lib2to3/data/infinite_recursion.py /^CAST_KEY = cast_key_st$/;" v +CATEGORIES Lib/re/_parser.py /^CATEGORIES = {$/;" v +CATEGORY_NAMES Tools/unicode/makeunicodedata.py /^CATEGORY_NAMES = [ "Cn", "Lu", "Ll", "Lt", "Mn", "Mc", "Me", "Nd",$/;" v +CAT_FILES PC/layout/main.py /^CAT_FILES = FileSuffixSet(".cat")$/;" v +CArithmeticOperatorsTest Lib/test/test_decimal.py /^class CArithmeticOperatorsTest(ArithmeticOperatorsTest, unittest.TestCase):$/;" c +CAutoFileTests Lib/test/test_file.py /^class CAutoFileTests(AutoFileTests, unittest.TestCase):$/;" c +CAutoFileTests Lib/test/test_fileio.py /^class CAutoFileTests(AutoFileTests, unittest.TestCase):$/;" c +CB_TYPE Modules/_winapi.c 1996;" d file: +CB_TYPE Modules/_winapi.c 2083;" d file: +CBad Lib/test/test_grammar.py /^ class CBad:$/;" c class:GrammarTests.test_var_annot_basic_semantics.C +CBufferSizeTest Lib/test/test_bufio.py /^class CBufferSizeTest(BufferSizeTest, unittest.TestCase):$/;" c +CBufferedRWPairTest Lib/test/test_io.py /^class CBufferedRWPairTest(BufferedRWPairTest):$/;" c +CBufferedRandomTest Lib/test/test_io.py /^class CBufferedRandomTest(BufferedRandomTest, SizeofTest):$/;" c +CBufferedReaderTest Lib/test/test_io.py /^class CBufferedReaderTest(BufferedReaderTest, SizeofTest):$/;" c +CBufferedWriterTest Lib/test/test_io.py /^class CBufferedWriterTest(BufferedWriterTest, SizeofTest):$/;" c +CBytesIOTest Lib/test/test_memoryio.py /^class CBytesIOTest(PyBytesIOTest):$/;" c +CC Lib/test/test_grammar.py /^ class CC(metaclass=CMeta):$/;" c function:GrammarTests.test_var_annot_metaclass_semantics +CC Lib/test/test_typing.py /^ class CC: ...$/;" c function:GenericTests.test_generic_forward_ref +CC Lib/tty.py /^CC = 6$/;" v +CCHARP Lib/test/test_ctypes/test_parameters.py /^ class CCHARP(c_char_p):$/;" c function:SimpleTypesTestCase.test_subclasses +CCH_EXT Modules/_winapi.c 1995;" d file: +CCH_EXT Modules/_winapi.c 2082;" d file: +CCOperatorPickleTestCase Lib/test/test_operator.py /^class CCOperatorPickleTestCase(OperatorPickleTestCase, unittest.TestCase):$/;" c +CCPSearch Lib/msilib/schema.py /^CCPSearch = Table('CCPSearch')$/;" v +CCallMakerVisitor Tools/peg_generator/pegen/c_generator.py /^class CCallMakerVisitor(GrammarVisitor):$/;" c +CCallingConventionTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CCallingConventionTest(CallingConventionTest):$/;" c +CCatchWarningTests Lib/test/test_warnings/__init__.py /^class CCatchWarningTests(CatchWarningTests, unittest.TestCase):$/;" c +CChainDispatchTableTests Lib/test/test_pickle.py /^ class CChainDispatchTableTests(AbstractDispatchTableTests, unittest.TestCase):$/;" c +CClass Lib/test/test_opcodes.py /^ class CClass(Exception): pass$/;" c function:OpcodeTest.test_raise_class_exceptions +CCloseFailureIO Lib/test/test_io.py /^class CCloseFailureIO(CloseFailureIO, io.RawIOBase):$/;" c +CCompiler Tools/c-analyzer/distutils/ccompiler.py /^class CCompiler:$/;" c +CCompilerError Tools/c-analyzer/distutils/errors.py /^class CCompilerError (Exception):$/;" c +CContextAPItests Lib/test/test_decimal.py /^class CContextAPItests(ContextAPItests, unittest.TestCase):$/;" c +CContextFlags Lib/test/test_decimal.py /^class CContextFlags(ContextFlags, unittest.TestCase):$/;" c +CContextInputValidation Lib/test/test_decimal.py /^class CContextInputValidation(ContextInputValidation, unittest.TestCase):$/;" c +CContextSubclassing Lib/test/test_decimal.py /^class CContextSubclassing(ContextSubclassing, unittest.TestCase):$/;" c +CContextWithStatement Lib/test/test_decimal.py /^class CContextWithStatement(ContextWithStatement, unittest.TestCase):$/;" c +CConverter Tools/clinic/clinic.py /^class CConverter(metaclass=CConverterAutoRegister):$/;" c +CConverterAutoRegister Tools/clinic/clinic.py /^class CConverterAutoRegister(type):$/;" c +CCookedTest Lib/test/test_locale.py /^class CCookedTest(BaseCookedTest):$/;" c +CCoverage Lib/test/test_decimal.py /^class CCoverage(Coverage, unittest.TestCase):$/;" c +CCurrentLoopTests Lib/test/test_asyncio/test_tasks.py /^class CCurrentLoopTests(BaseCurrentLoopTests, test_utils.TestCase):$/;" c +CDATAHandlerTest Lib/test/test_sax.py /^class CDATAHandlerTest(unittest.TestCase):$/;" c +CDATASection Lib/xml/dom/minidom.py /^class CDATASection(Text):$/;" c +CDATA_CONTENT_ELEMENTS Lib/html/parser.py /^ CDATA_CONTENT_ELEMENTS = ("script", "style")$/;" v class:HTMLParser +CDATA_SECTION_NODE Lib/xml/dom/__init__.py /^ CDATA_SECTION_NODE = 4$/;" v class:Node +CDATA_SECTION_NODE Lib/xml/dom/expatbuilder.py /^CDATA_SECTION_NODE = Node.CDATA_SECTION_NODE$/;" v +CDF_FILES PC/layout/main.py /^CDF_FILES = FileSuffixSet(".cdf")$/;" v +CDLL Lib/ctypes/__init__.py /^class CDLL(object):$/;" c +CD_method Lib/test/pydocfodder.py /^ def CD_method(self):$/;" m class:C_new +CD_method Lib/test/pydocfodder.py /^ def CD_method(self):$/;" m class:D_new +CDataObject Modules/_ctypes/ctypes.h /^typedef struct tagCDataObject CDataObject;$/;" t typeref:struct:tagCDataObject +CDataObject_Check Modules/_ctypes/ctypes.h 155;" d +CDataObject_CheckExact Modules/_ctypes/ctypes.h 154;" d +CDataType_as_sequence Modules/_ctypes/_ctypes.c /^static PySequenceMethods CDataType_as_sequence = {$/;" v file: +CDataType_clear Modules/_ctypes/_ctypes.c /^CDataType_clear(PyTypeObject *self)$/;" f file: +CDataType_from_address Modules/_ctypes/_ctypes.c /^CDataType_from_address(PyObject *type, PyObject *value)$/;" f file: +CDataType_from_buffer Modules/_ctypes/_ctypes.c /^CDataType_from_buffer(PyObject *type, PyObject *args)$/;" f file: +CDataType_from_buffer_copy Modules/_ctypes/_ctypes.c /^CDataType_from_buffer_copy(PyObject *type, PyObject *args)$/;" f file: +CDataType_from_param Modules/_ctypes/_ctypes.c /^CDataType_from_param(PyObject *type, PyObject *value)$/;" f file: +CDataType_in_dll Modules/_ctypes/_ctypes.c /^CDataType_in_dll(PyObject *type, PyObject *args)$/;" f file: +CDataType_methods Modules/_ctypes/_ctypes.c /^static PyMethodDef CDataType_methods[] = {$/;" v file: +CDataType_repeat Modules/_ctypes/_ctypes.c /^CDataType_repeat(PyObject *self, Py_ssize_t length)$/;" f file: +CDataType_traverse Modules/_ctypes/_ctypes.c /^CDataType_traverse(PyTypeObject *self, visitproc visit, void *arg)$/;" f file: +CDispatchTableTests Lib/test/test_pickle.py /^ class CDispatchTableTests(AbstractDispatchTableTests, unittest.TestCase):$/;" c +CDumpPickle_LoadPickle Lib/test/test_pickle.py /^ class CDumpPickle_LoadPickle(PyPicklerTests):$/;" c +CE Lib/test/test_enum.py /^ CE = 1<<19$/;" v class:OldTestFlag.Open +CE Lib/test/test_enum.py /^ CE = 1<<19$/;" v class:OldTestIntFlag.Open +CELL Include/internal/pycore_symtable.h 138;" d +CELL Lib/tkinter/tix.py /^CELL = 'cell'$/;" v +CENTER Lib/tkinter/constants.py /^CENTER='center'$/;" v +CENTER Modules/_collectionsmodule.c 67;" d file: +CERTFILE Lib/test/ssl_servers.py /^CERTFILE = os.path.join(here, 'keycert.pem')$/;" v +CERTFILE Lib/test/test_ftplib.py /^ CERTFILE = os.path.join(os.path.dirname(__file__), "keycert3.pem")$/;" v +CERTFILE Lib/test/test_imaplib.py /^CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert3.pem")$/;" v +CERTFILE Lib/test/test_poplib.py /^ CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert3.pem")$/;" v +CERTFILE Lib/test/test_ssl.py /^CERTFILE = data_file("keycert.pem")$/;" v +CERTFILE_INFO Lib/test/test_ssl.py /^CERTFILE_INFO = {$/;" v +CERTFILE_PROTECTED Lib/test/test_ssl.py /^CERTFILE_PROTECTED = data_file("keycert.passwd.pem")$/;" v +CERTIFICATE Lib/ssl.py /^ CERTIFICATE = 11$/;" v class:_TLSMessageType +CERTIFICATE Lib/test/test_ssl.py /^ CERTIFICATE = 11$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CERTIFICATE_EXPIRED Lib/ssl.py /^ CERTIFICATE_EXPIRED = 45$/;" v class:_TLSAlertType +CERTIFICATE_EXPIRED Lib/test/test_ssl.py /^ CERTIFICATE_EXPIRED = 45$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +CERTIFICATE_REQUEST Lib/ssl.py /^ CERTIFICATE_REQUEST = 13$/;" v class:_TLSMessageType +CERTIFICATE_REQUEST Lib/test/test_ssl.py /^ CERTIFICATE_REQUEST = 13$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CERTIFICATE_REQUIRED Lib/ssl.py /^ CERTIFICATE_REQUIRED = 116$/;" v class:_TLSAlertType +CERTIFICATE_REQUIRED Lib/test/test_ssl.py /^ CERTIFICATE_REQUIRED = 116$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +CERTIFICATE_REVOKED Lib/ssl.py /^ CERTIFICATE_REVOKED = 44$/;" v class:_TLSAlertType +CERTIFICATE_REVOKED Lib/test/test_ssl.py /^ CERTIFICATE_REVOKED = 44$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +CERTIFICATE_STATUS Lib/ssl.py /^ CERTIFICATE_STATUS = 22$/;" v class:_TLSMessageType +CERTIFICATE_STATUS Lib/test/test_ssl.py /^ CERTIFICATE_STATUS = 22$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CERTIFICATE_UNKNOWN Lib/ssl.py /^ CERTIFICATE_UNKNOWN = 46$/;" v class:_TLSAlertType +CERTIFICATE_UNKNOWN Lib/test/test_ssl.py /^ CERTIFICATE_UNKNOWN = 46$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +CERTIFICATE_UNOBTAINABLE Lib/ssl.py /^ CERTIFICATE_UNOBTAINABLE = 111$/;" v class:_TLSAlertType +CERTIFICATE_UNOBTAINABLE Lib/test/test_ssl.py /^ CERTIFICATE_UNOBTAINABLE = 111$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +CERTIFICATE_URL Lib/ssl.py /^ CERTIFICATE_URL = 21$/;" v class:_TLSMessageType +CERTIFICATE_URL Lib/test/test_ssl.py /^ CERTIFICATE_URL = 21$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CERTIFICATE_VERIFY Lib/ssl.py /^ CERTIFICATE_VERIFY = 15$/;" v class:_TLSMessageType +CERTIFICATE_VERIFY Lib/test/test_ssl.py /^ CERTIFICATE_VERIFY = 15$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CERTNAME Tools/msi/buildrelease.bat /^if "%1" EQU "--certificate" (set CERTNAME=%~2) && shift && shift && goto CheckOpts$/;" v +CERTNAME Tools/msi/buildrelease.bat /^if "%1" EQU "-c" (set CERTNAME=%~2) && shift && shift && goto CheckOpts$/;" v +CERTOPTS Tools/msi/buildrelease.bat /^ set CERTOPTS="\/p:SigningCertificate=%CERTNAME%"$/;" v +CERTOPTS Tools/msi/buildrelease.bat /^ set CERTOPTS=$/;" v +CERT_SETTING PCbuild/prepare_tcltk.bat /^set CERT_SETTING=$/;" v +CERT_fakehostname Lib/test/test_httplib.py /^CERT_fakehostname = os.path.join(here, 'keycert2.pem')$/;" v +CERT_fakehostname Lib/test/test_urllib2_localnet.py /^CERT_fakehostname = os.path.join(here, 'keycert2.pem')$/;" v +CERT_localhost Lib/test/test_httplib.py /^CERT_localhost = os.path.join(here, 'keycert.pem')$/;" v +CERT_localhost Lib/test/test_urllib2_localnet.py /^CERT_localhost = os.path.join(here, 'keycert.pem')$/;" v +CERT_selfsigned_pythontestdotnet Lib/test/test_httplib.py /^CERT_selfsigned_pythontestdotnet = os.path.join(here, 'selfsigned_pythontestdotnet.pem')$/;" v +CET_PROTECTION Lib/test/test_gdb.py /^CET_PROTECTION = cet_protection()$/;" v +CEagerTaskFactoryLoopTests Lib/test/test_asyncio/test_eager_task_factory.py /^class CEagerTaskFactoryLoopTests(EagerTaskFactoryLoopTests, test_utils.TestCase):$/;" c +CEnvironmentVariableTests Lib/test/test_warnings/__init__.py /^class CEnvironmentVariableTests(EnvironmentVariableTests, unittest.TestCase):$/;" c +CEventRecorder Lib/test/test_monitoring.py /^class CEventRecorder:$/;" c +CExcReportingTests Lib/test/test_traceback.py /^class CExcReportingTests(BaseExceptionReportingTests, unittest.TestCase):$/;" c +CExplicitConstructionTest Lib/test/test_decimal.py /^class CExplicitConstructionTest(ExplicitConstructionTest, unittest.TestCase):$/;" c +CExtension Tools/freeze/checkextensions_win32.py /^class CExtension:$/;" c +CF Lib/test/test_typing.py /^ class CF:$/;" c function:ForwardRefTests.test_special_forms_forward +CFLAG Lib/tty.py /^CFLAG = 2$/;" v +CFUNCTYPE Lib/ctypes/__init__.py /^def CFUNCTYPE(restype, *argtypes, **kw):$/;" f +CFWSList Lib/email/_header_value_parser.py /^class CFWSList(WhiteSpaceTokenList):$/;" c +CFWS_LEADER Lib/email/_header_value_parser.py /^CFWS_LEADER = WSP | set('(')$/;" v +CFailingQueueTest Lib/test/test_queue.py /^class CFailingQueueTest(FailingQueueTest, unittest.TestCase):$/;" c +CFieldObject Modules/_ctypes/ctypes.h /^} CFieldObject;$/;" t typeref:struct:__anon494 +CFilterTests Lib/test/test_warnings/__init__.py /^class CFilterTests(FilterTests, unittest.TestCase):$/;" c +CFormatTest Lib/test/test_decimal.py /^class CFormatTest(FormatTest, unittest.TestCase):$/;" c +CFuncPtrTestCase Lib/test/test_ctypes/test_funcptr.py /^class CFuncPtrTestCase(unittest.TestCase):$/;" c +CFunctionCallsErrorMessages Lib/test/test_call.py /^class CFunctionCallsErrorMessages(unittest.TestCase):$/;" c +CFunctionType Lib/ctypes/__init__.py /^ class CFunctionType(_CFuncPtr):$/;" c function:CFUNCTYPE +CFunctionType Lib/ctypes/__init__.py /^ class CFunctionType(_CFuncPtr):$/;" c function:PYFUNCTYPE +CFunctionality Lib/test/test_decimal.py /^class CFunctionality(unittest.TestCase):$/;" c +CFunctions Lib/test/test_ctypes/test_cfuncs.py /^class CFunctions(unittest.TestCase):$/;" c +CFutureDoneCallbackTests Lib/test/test_asyncio/test_futures.py /^ test_utils.TestCase):$/;" c +CFutureInheritanceTests Lib/test/test_asyncio/test_futures.py /^ test_utils.TestCase):$/;" c +CFutureTests Lib/test/test_asyncio/test_futures.py /^class CFutureTests(BaseFutureTests, test_utils.TestCase):$/;" c +CFutureTests Lib/test/test_asyncio/test_futures2.py /^class CFutureTests(FutureTests, unittest.IsolatedAsyncioTestCase):$/;" c +CG Lib/test/test_typing.py /^ class CG(PG[T]): pass$/;" c function:ProtocolTests.test_no_instantiation +CGIHTTPRequestHandler Lib/http/server.py /^class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):$/;" c +CGIHTTPServerTestCase Lib/test/test_httpservers.py /^class CGIHTTPServerTestCase(BaseTestCase):$/;" c +CGIHandler Lib/wsgiref/handlers.py /^class CGIHandler(BaseCGIHandler):$/;" c +CGIHandlerTestCase Lib/test/test_xmlrpc.py /^class CGIHandlerTestCase(unittest.TestCase):$/;" c +CGIXMLRPCRequestHandler Lib/xmlrpc/server.py /^class CGIXMLRPCRequestHandler(SimpleXMLRPCDispatcher):$/;" c +CHANGE_CIPHER_SPEC Lib/ssl.py /^ CHANGE_CIPHER_SPEC = 0x0101$/;" v class:_TLSMessageType +CHANGE_CIPHER_SPEC Lib/ssl.py /^ CHANGE_CIPHER_SPEC = 20$/;" v class:_TLSContentType +CHANGE_CIPHER_SPEC Lib/test/test_ssl.py /^ CHANGE_CIPHER_SPEC = 0x0101$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CHANGE_CIPHER_SPEC Lib/test/test_ssl.py /^ CHANGE_CIPHER_SPEC = 20$/;" v class:TestEnumerations.test_tlscontenttype.Checked_TLSContentType +CHANNEL_BINDING_TYPES Lib/ssl.py /^CHANNEL_BINDING_TYPES = ['tls-unique']$/;" v +CHANNEL_BOTH Modules/_xxinterpchannelsmodule.c 248;" d file: +CHANNEL_RECV Modules/_xxinterpchannelsmodule.c 249;" d file: +CHANNEL_SEND Modules/_xxinterpchannelsmodule.c 247;" d file: +CHAR Lib/ctypes/wintypes.py /^CHAR = ctypes.c_char$/;" v +CHAR Lib/tkinter/constants.py /^CHAR='char'$/;" v +CHARACTER Objects/bytesobject.c 41;" d file: +CHARACTER Tools/cases_generator/lexer.py /^CHARACTER = 'CHARACTER'$/;" v +CHARACTERS Lib/xml/dom/pulldom.py /^CHARACTERS = "CHARACTERS"$/;" v +CHARACTERS Objects/bytesobject.c 40;" d file: +CHARACTER_DATA_BUFFER_SIZE Modules/pyexpat.c 85;" d file: +CHARSET Lib/telnetlib.py /^CHARSET = bytes([42]) # CHARSET$/;" v +CHARSETS Lib/email/charset.py /^CHARSETS = {$/;" v +CHARSET_ASCII Modules/cjkcodecs/_codecs_iso2022.c 64;" d file: +CHARSET_CNS11643_1 Modules/cjkcodecs/_codecs_iso2022.c 74;" d file: +CHARSET_CNS11643_2 Modules/cjkcodecs/_codecs_iso2022.c 75;" d file: +CHARSET_DBCS Modules/cjkcodecs/_codecs_iso2022.c 81;" d file: +CHARSET_GB2312 Modules/cjkcodecs/_codecs_iso2022.c 69;" d file: +CHARSET_GB2312_8565 Modules/cjkcodecs/_codecs_iso2022.c 73;" d file: +CHARSET_ISO8859_1 Modules/cjkcodecs/_codecs_iso2022.c 63;" d file: +CHARSET_ISO8859_7 Modules/cjkcodecs/_codecs_iso2022.c 65;" d file: +CHARSET_JISX0201_K Modules/cjkcodecs/_codecs_iso2022.c 66;" d file: +CHARSET_JISX0201_R Modules/cjkcodecs/_codecs_iso2022.c 67;" d file: +CHARSET_JISX0208 Modules/cjkcodecs/_codecs_iso2022.c 70;" d file: +CHARSET_JISX0208_O Modules/cjkcodecs/_codecs_iso2022.c 79;" d file: +CHARSET_JISX0212 Modules/cjkcodecs/_codecs_iso2022.c 72;" d file: +CHARSET_JISX0213_2 Modules/cjkcodecs/_codecs_iso2022.c 77;" d file: +CHARSET_JISX0213_2000_1 Modules/cjkcodecs/_codecs_iso2022.c 76;" d file: +CHARSET_JISX0213_2004_1 Modules/cjkcodecs/_codecs_iso2022.c 78;" d file: +CHARSET_KSX1001 Modules/cjkcodecs/_codecs_iso2022.c 71;" d file: +CHAR_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 205;" d +CHAR_MATCHES Modules/expat/xmltok.c 291;" d file: +CHAR_MATCHES Modules/expat/xmltok.c 300;" d file: +CHAR_MATCHES Modules/expat/xmltok.c 311;" d file: +CHAR_MATCHES Modules/expat/xmltok.c 927;" d file: +CHAR_MATCHES Modules/expat/xmltok.c 940;" d file: +CHATTERBOX Lib/test/test_logging.py /^CHATTERBOX = 112$/;" v +CHCODES Lib/re/_constants.py /^CHCODES = _makecodes($/;" v +CHECK Lib/test/test_traceback.py /^ def CHECK(a, b, expected):$/;" f function:MiscTest.test_levenshtein_distance +CHECK Modules/_testinternalcapi.c 156;" d file: +CHECK Modules/_testinternalcapi.c 173;" d file: +CHECK Modules/_testinternalcapi.c 196;" d file: +CHECK Modules/_testinternalcapi.c 212;" d file: +CHECK Modules/_testinternalcapi.c 414;" d file: +CHECK Modules/_testinternalcapi.c 440;" d file: +CHECK Modules/_testinternalcapi.c 509;" d file: +CHECK Modules/_testinternalcapi.c 533;" d file: +CHECK Objects/dictobject.c 513;" d file: +CHECK Objects/dictobject.c 598;" d file: +CHECK Objects/object.c 38;" d file: +CHECK Objects/object.c 54;" d file: +CHECK Objects/typeobject.c 532;" d file: +CHECK Objects/typeobject.c 560;" d file: +CHECK Objects/unicodeobject.c 516;" d file: +CHECK Objects/unicodeobject.c 596;" d file: +CHECK Parser/pegen.h 219;" d +CHECK Python/instrumentation.c 419;" d file: +CHECK Python/instrumentation.c 536;" d file: +CHECKBUTTON Lib/tkinter/constants.py /^CHECKBUTTON='checkbutton'$/;" v +CHECKED Lib/test/test_ctypes/test_checkretval.py /^class CHECKED(c_int):$/;" c +CHECKED_HASH Lib/py_compile.py /^ CHECKED_HASH = 2$/;" v class:PycInvalidationMode +CHECKED_SPEC_ATTRIBUTES Lib/test/test_runpy.py /^ CHECKED_SPEC_ATTRIBUTES = ["name", "parent", "origin", "cached",$/;" v class:CodeExecutionMixin +CHECKHIDE_EVENT Lib/idlelib/calltip_w.py /^CHECKHIDE_EVENT = "<>"$/;" v +CHECKHIDE_SEQUENCES Lib/idlelib/calltip_w.py /^CHECKHIDE_SEQUENCES = ("", "")$/;" v +CHECKHIDE_TIME Lib/idlelib/calltip_w.py /^CHECKHIDE_TIME = 100 # milliseconds$/;" v +CHECKS Tools/c-analyzer/c_analyzer/__main__.py /^CHECKS = {$/;" v +CHECKS Tools/c-analyzer/cpython/__main__.py /^CHECKS = dict(c_analyzer.CHECKS, **{$/;" v +CHECK_ATTACHED Modules/_io/textio.c 1486;" d file: +CHECK_ATTACHED_INT Modules/_io/textio.c 1494;" d file: +CHECK_BINOP Objects/longobject.c 1505;" d file: +CHECK_CALL Parser/pegen.h /^CHECK_CALL(Parser *p, void *result)$/;" f +CHECK_CALL_NULL_ALLOWED Parser/pegen.h /^CHECK_CALL_NULL_ALLOWED(Parser *p, void *result)$/;" f +CHECK_CLOSED Modules/_io/bufferedio.c 362;" d file: +CHECK_CLOSED Modules/_io/bytesio.c 55;" d file: +CHECK_CLOSED Modules/_io/stringio.c 58;" d file: +CHECK_CLOSED Modules/_io/textio.c 1453;" d file: +CHECK_CTX Modules/_testcapi/mem.c 217;" d file: +CHECK_CTX Modules/_testcapi/mem.c 336;" d file: +CHECK_DELAY Lib/idlelib/parenmatch.py /^CHECK_DELAY = 100 # milliseconds$/;" v +CHECK_DESTRUCTOR Modules/_testcapimodule.c 957;" d file: +CHECK_EG_MATCH Include/opcode.h 31;" d +CHECK_END Modules/_collectionsmodule.c 149;" d file: +CHECK_END Modules/_collectionsmodule.c 153;" d file: +CHECK_ERRNO Modules/socketmodule.c 636;" d file: +CHECK_ERRNO Modules/socketmodule.c 639;" d file: +CHECK_EVAL_BREAKER Python/ceval_macros.h 117;" d +CHECK_EXC_MATCH Include/opcode.h 30;" d +CHECK_EXPORTS Modules/_io/bytesio.c 60;" d file: +CHECK_FORMAT_0 Modules/_testcapi/unicode.c 1573;" d file: +CHECK_FORMAT_0 Modules/_testcapi/unicode.c 1966;" d file: +CHECK_FORMAT_1 Modules/_testcapi/unicode.c 1570;" d file: +CHECK_FORMAT_1 Modules/_testcapi/unicode.c 1965;" d file: +CHECK_FORMAT_2 Modules/_testcapi/unicode.c 1552;" d file: +CHECK_FORMAT_2 Modules/_testcapi/unicode.c 1964;" d file: +CHECK_INITIALIZED Modules/_io/bufferedio.c 332;" d file: +CHECK_INITIALIZED Modules/_io/stringio.c 51;" d file: +CHECK_INITIALIZED Modules/_io/textio.c 1479;" d file: +CHECK_INITIALIZED_DECODER Modules/_io/textio.c 298;" d file: +CHECK_INITIALIZED_INT Modules/_io/bufferedio.c 344;" d file: +CHECK_INT Modules/_decimal/_decimal.c 5767;" d file: +CHECK_INT_ARG Objects/codeobject.c 2003;" d file: +CHECK_INT_ARG Objects/codeobject.c 2018;" d file: +CHECK_INVALID Modules/_testcapimodule.c 877;" d file: +CHECK_INVALID Modules/_testcapimodule.c 906;" d file: +CHECK_LIST_OR_TUPLE Modules/_testbuffer.c 29;" d file: +CHECK_LIST_OR_TUPLE Objects/memoryobject.c 215;" d file: +CHECK_METHODS Lib/optparse.py /^ CHECK_METHODS = None$/;" v class:Option +CHECK_METHODS Lib/optparse.py /^ CHECK_METHODS = [_check_action,$/;" v class:Option +CHECK_NAME_CASE Modules/expat/xmltok_impl.c 1814;" d file: +CHECK_NAME_CASE Modules/expat/xmltok_impl.c 69;" d file: +CHECK_NAME_CASES Modules/expat/xmltok_impl.c 1815;" d file: +CHECK_NAME_CASES Modules/expat/xmltok_impl.c 80;" d file: +CHECK_NMSTRT_CASE Modules/expat/xmltok_impl.c 1816;" d file: +CHECK_NMSTRT_CASE Modules/expat/xmltok_impl.c 98;" d file: +CHECK_NMSTRT_CASES Modules/expat/xmltok_impl.c 109;" d file: +CHECK_NMSTRT_CASES Modules/expat/xmltok_impl.c 1817;" d file: +CHECK_NOT_END Modules/_collectionsmodule.c 150;" d file: +CHECK_NOT_END Modules/_collectionsmodule.c 154;" d file: +CHECK_NULL_ALLOWED Parser/pegen.h 220;" d +CHECK_PTR Modules/_decimal/_decimal.c 5771;" d file: +CHECK_RELEASED Objects/memoryobject.c 182;" d file: +CHECK_RELEASED_AGAIN Objects/memoryobject.c 212;" d file: +CHECK_RELEASED_INT Objects/memoryobject.c 189;" d file: +CHECK_RELEASED_INT_AGAIN Objects/memoryobject.c 213;" d file: +CHECK_RESTRICTED Objects/memoryobject.c 196;" d file: +CHECK_RESTRICTED_INT Objects/memoryobject.c 203;" d file: +CHECK_SIGNESS Modules/_testcapimodule.c 152;" d file: +CHECK_SIGNNESS Modules/_testcapimodule.c 114;" d file: +CHECK_SIZE Modules/_tkinter.c 41;" d file: +CHECK_SIZEOF Modules/_testcapimodule.c 106;" d file: +CHECK_SIZEOF Modules/_testcapimodule.c 153;" d file: +CHECK_SIZEOF Modules/_testcapimodule.c 83;" d file: +CHECK_SIZEOF Modules/_testcapimodule.c 94;" d file: +CHECK_STATUS Python/thread_pthread.h 187;" d +CHECK_STATUS_PTHREAD Python/thread_pthread.h 188;" d +CHECK_STRING Modules/_testcapimodule.c 868;" d file: +CHECK_STRING Modules/_testcapimodule.c 905;" d file: +CHECK_STRING_LENGTH Modules/_tkinter.c 850;" d file: +CHECK_STRING_LENGTH Modules/_tkinter.c 856;" d file: +CHECK_TCL_APPARTMENT Modules/_tkinter.c 289;" d file: +CHECK_TIMINGS Lib/test/_test_multiprocessing.py /^CHECK_TIMINGS = False # making true makes tests take a lot longer$/;" v +CHECK_TSS_API Modules/_testcapimodule.c 2083;" d file: +CHECK_TSS_API Modules/_testcapimodule.c 2091;" d file: +CHECK_VALID Modules/mmapmodule.c 223;" d file: +CHECK_VALID Modules/mmapmodule.c 241;" d file: +CHECK_VALID_OR_RELEASE Modules/mmapmodule.c 230;" d file: +CHECK_VALID_OR_RELEASE Modules/mmapmodule.c 248;" d file: +CHECK_VALUE Python/initconfig.c 1313;" d file: +CHECK_VALUE Python/initconfig.c 1430;" d file: +CHECK_VERSION Parser/pegen.h 293;" d +CHERRY Lib/test/test_enum.py /^ CHERRY = 3$/;" v class:.Fruit +CHILD Lib/pty.py /^CHILD = 0$/;" v +CHILD_PROCESS_SCRIPT Lib/test/test_c_locale_coercion.py /^ CHILD_PROCESS_SCRIPT = ";".join([$/;" v class:EncodingDetails +CHORD Lib/tkinter/constants.py /^CHORD='chord'$/;" v +CHRTYPE Lib/tarfile.py /^CHRTYPE = b"3" # character special device$/;" v +CH_LOCALE Lib/re/_constants.py /^CH_LOCALE = {$/;" v +CH_UNICODE Lib/re/_constants.py /^CH_UNICODE = {$/;" v +CI Lib/test/test_typing.py /^ class CI:$/;" c function:ProtocolTests.test_none_treated_correctly +CIOTest Lib/test/test_io.py /^class CIOTest(IOTest):$/;" c +CIRCUMFLEX Include/internal/pycore_token.h 48;" d +CIRCUMFLEX Lib/lib2to3/pgen2/token.py /^CIRCUMFLEX = 33$/;" v +CIRCUMFLEX Lib/token.py /^CIRCUMFLEX = 32$/;" v +CIRCUMFLEXEQUAL Include/internal/pycore_token.h 59;" d +CIRCUMFLEXEQUAL Lib/lib2to3/pgen2/token.py /^CIRCUMFLEXEQUAL = 44$/;" v +CIRCUMFLEXEQUAL Lib/token.py /^CIRCUMFLEXEQUAL = 43$/;" v +CIdPersPicklerTests Lib/test/test_pickle.py /^ class CIdPersPicklerTests(PyIdPersPicklerTests):$/;" c +CImplicitConstructionTest Lib/test/test_decimal.py /^class CImplicitConstructionTest(ImplicitConstructionTest, unittest.TestCase):$/;" c +CIncrementalNewlineDecoderTest Lib/test/test_io.py /^class CIncrementalNewlineDecoderTest(IncrementalNewlineDecoderTest):$/;" c +CIntrospectionTests Lib/test/test_asyncio/test_tasks.py /^class CIntrospectionTests(test_utils.TestCase, BaseTaskIntrospectionTests):$/;" c +CJK_MOD_SPECIFIC_STATE Modules/cjkcodecs/_codecs_hk.c 9;" d file: +CJK_MOD_SPECIFIC_STATE Modules/cjkcodecs/_codecs_iso2022.c 13;" d file: +CJK_MOD_SPECIFIC_STATE Modules/cjkcodecs/cjkcodecs.h 64;" d +CLASS_GUID PC/pyshellext.cpp 21;" d file: +CLASS_NAMES Lib/test/test_ttk/test_style.py /^CLASS_NAMES = [$/;" v +CLASS_PREFIX Lib/lib2to3/refactor.py /^ CLASS_PREFIX = "Fix" # The prefix for fixer classes$/;" v class:RefactoringTool +CLASS_SUBKEY PC/pyshellext.cpp /^static const LPCWSTR CLASS_SUBKEY = L"Software\\\\Classes\\\\CLSID\\\\" CLASS_GUID;$/;" v file: +CLEANUP Modules/_datetimemodule.c 2528;" d file: +CLEANUP Modules/_datetimemodule.c 2604;" d file: +CLEANUP_THROW Include/opcode.h 38;" d +CLEAR Programs/_bootstrap_python.c 95;" d file: +CLEAR Python/initconfig.c 717;" d file: +CLEAR Python/initconfig.c 753;" d file: +CLEAR Python/pathconfig.c 62;" d file: +CLEAR Python/pathconfig.c 78;" d file: +CLEAR_MODULE Python/pylifecycle.c 1401;" d file: +CLEAR_MODULE Python/pylifecycle.c 1442;" d file: +CLIArgSpec Tools/c-analyzer/c_common/scriptutil.py /^class CLIArgSpec(tuple):$/;" c +CLIENT_AUTH Lib/ssl.py /^ CLIENT_AUTH = '1.3.6.1.5.5.7.3.2'$/;" v class:Purpose +CLIENT_HELLO Lib/ssl.py /^ CLIENT_HELLO = 1$/;" v class:_TLSMessageType +CLIENT_HELLO Lib/test/test_ssl.py /^ CLIENT_HELLO = 1$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CLIENT_KEY_EXCHANGE Lib/ssl.py /^ CLIENT_KEY_EXCHANGE = 16$/;" v class:_TLSMessageType +CLIENT_KEY_EXCHANGE Lib/test/test_ssl.py /^ CLIENT_KEY_EXCHANGE = 16$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +CLINIC_PREFIX Tools/clinic/clinic.py /^CLINIC_PREFIX = "__clinic_"$/;" v +CLINIC_PREFIXED_ARGS Tools/clinic/clinic.py /^CLINIC_PREFIXED_ARGS = {$/;" v +CLIP Lib/test/test_enum.py /^ CLIP = 2$/;" v class:TestSpecial.test_comparisons.Part +CLIP Modules/audioop.c 62;" d file: +CLI_COERCION_TARGET Lib/test/test_c_locale_coercion.py /^CLI_COERCION_TARGET = None$/;" v +CLI_COERCION_WARNING Lib/test/test_c_locale_coercion.py /^CLI_COERCION_WARNING = None$/;" v +CLI_COERCION_WARNING_FMT Lib/test/test_c_locale_coercion.py /^CLI_COERCION_WARNING_FMT = ($/;" v +CLOCKS_PER_SEC Modules/timemodule.c 186;" d file: +CLOCKS_PER_SEC Modules/timemodule.c 188;" d file: +CLONED_METHODDEF Lib/test/clinic.test.c 79;" d file: +CLONE_F1_METHODDEF Modules/clinic/_testclinic.c.h 2826;" d +CLONE_F2_METHODDEF Modules/clinic/_testclinic.c.h 2892;" d +CLONE_WITH_CONV_F1_METHODDEF Modules/clinic/_testclinic.c.h 2958;" d +CLONE_WITH_CONV_F2_METHODDEF Modules/clinic/_testclinic.c.h 3021;" d +CLOSE Lib/multiprocessing/pool.py /^CLOSE = "CLOSE"$/;" v +CLOSED Lib/asyncio/runners.py /^ CLOSED = "closed"$/;" v class:_State +CLOSE_NOTIFY Lib/ssl.py /^ CLOSE_NOTIFY = 0$/;" v class:_TLSAlertType +CLOSE_NOTIFY Lib/test/test_ssl.py /^ CLOSE_NOTIFY = 0$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +CLanguage Tools/clinic/clinic.py /^class CLanguage(Language):$/;" c +CLargeFileTest Lib/test/test_largefile.py /^class CLargeFileTest(TestFileMethods, unittest.TestCase):$/;" c +CLifoQueueTest Lib/test/test_queue.py /^class CLifoQueueTest(LifoQueueTest, unittest.TestCase):$/;" c +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroAsyncIOCompatTest.test_asyncio_1 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_10 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_11 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_12 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_13 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_2 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_3 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_4 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_5 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_6 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_7 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_8 +CM Lib/test/test_coroutines.py /^ class CM:$/;" c function:CoroutineTest.test_with_9 +CM Lib/test/test_inspect.py /^ class CM(type):$/;" c function:TestRetrievingSourceCode.test_getfile_class_without_module +CM Lib/test/test_inspect.py /^ class CM(type):$/;" c function:TestSignatureObject.test_signature_on_class +CM Lib/test/test_inspect.py /^ class CM(type, metaclass=CMM):$/;" c function:TestSignatureObject.test_signature_on_class +CM Lib/test/test_typing.py /^ class CM(typing.ChainMap[KT, VT]): ...$/;" c function:CollectionsAbcTests.test_chainmap_instantiation +CMATH_ACOSH_METHODDEF Modules/clinic/cmathmodule.c.h 59;" d +CMATH_ACOS_METHODDEF Modules/clinic/cmathmodule.c.h 17;" d +CMATH_ASINH_METHODDEF Modules/clinic/cmathmodule.c.h 143;" d +CMATH_ASIN_METHODDEF Modules/clinic/cmathmodule.c.h 101;" d +CMATH_ATANH_METHODDEF Modules/clinic/cmathmodule.c.h 227;" d +CMATH_ATAN_METHODDEF Modules/clinic/cmathmodule.c.h 185;" d +CMATH_COSH_METHODDEF Modules/clinic/cmathmodule.c.h 311;" d +CMATH_COS_METHODDEF Modules/clinic/cmathmodule.c.h 269;" d +CMATH_EXP_METHODDEF Modules/clinic/cmathmodule.c.h 353;" d +CMATH_ISCLOSE_METHODDEF Modules/clinic/cmathmodule.c.h 891;" d +CMATH_ISFINITE_METHODDEF Modules/clinic/cmathmodule.c.h 792;" d +CMATH_ISINF_METHODDEF Modules/clinic/cmathmodule.c.h 848;" d +CMATH_ISNAN_METHODDEF Modules/clinic/cmathmodule.c.h 820;" d +CMATH_LOG10_METHODDEF Modules/clinic/cmathmodule.c.h 395;" d +CMATH_LOG_METHODDEF Modules/clinic/cmathmodule.c.h 649;" d +CMATH_PHASE_METHODDEF Modules/clinic/cmathmodule.c.h 686;" d +CMATH_POLAR_METHODDEF Modules/clinic/cmathmodule.c.h 716;" d +CMATH_RECT_METHODDEF Modules/clinic/cmathmodule.c.h 744;" d +CMATH_SINH_METHODDEF Modules/clinic/cmathmodule.c.h 479;" d +CMATH_SIN_METHODDEF Modules/clinic/cmathmodule.c.h 437;" d +CMATH_SQRT_METHODDEF Modules/clinic/cmathmodule.c.h 521;" d +CMATH_TANH_METHODDEF Modules/clinic/cmathmodule.c.h 605;" d +CMATH_TAN_METHODDEF Modules/clinic/cmathmodule.c.h 563;" d +CMD_NAME Lib/test/test_webbrowser.py /^CMD_NAME = 'test'$/;" v +CMM Lib/test/test_inspect.py /^ class CMM(type):$/;" c function:TestSignatureObject.test_signature_on_class +CMP Lib/ast.py /^ CMP = auto() # '<', '>', '==', '>=', '<=', '!=',$/;" v class:_Precedence +CMP Lib/lib2to3/fixes/fix_idioms.py /^CMP = "(n='!=' | '==' | 'is' | n=comp_op< 'is' 'not' >)"$/;" v +CMP Lib/test/test_ast.py /^ CMP = enum.auto() # '<', '>', '==', '>=', '<=', '!=',$/;" v class:AST_Tests.test_precedence_enum._Precedence +CMP Modules/selectmodule.c 1900;" d file: +CMP Modules/selectmodule.c 1908;" d file: +CMP_EQUAL_OR_RETURN Modules/_decimal/libmpdec/mpdecimal.c 2143;" d file: +CMP_SINGLE Objects/memoryobject.c 2794;" d file: +CMSG_LEN Modules/socketmodule.h 61;" d +CM_LARGE_DOUBLE Modules/cmathmodule.c 70;" d file: +CM_LOG_LARGE_DOUBLE Modules/cmathmodule.c 72;" d file: +CM_SCALE_DOWN Modules/cmathmodule.c 88;" d file: +CM_SCALE_UP Modules/cmathmodule.c 84;" d file: +CM_SCALE_UP Modules/cmathmodule.c 86;" d file: +CM_SQRT_DBL_MIN Modules/cmathmodule.c 73;" d file: +CM_SQRT_LARGE_DOUBLE Modules/cmathmodule.c 71;" d file: +CMathTests Lib/test/test_cmath.py /^class CMathTests(unittest.TestCase):$/;" c +CMeta Lib/test/test_grammar.py /^ class CMeta(type):$/;" c function:GrammarTests.test_var_annot_metaclass_semantics +CMisbehavedRawIO Lib/test/test_io.py /^class CMisbehavedRawIO(MisbehavedRawIO, io.RawIOBase):$/;" c +CMiscIOTest Lib/test/test_io.py /^class CMiscIOTest(MiscIOTest):$/;" c +CMockFileIO Lib/test/test_io.py /^class CMockFileIO(MockFileIO, io.BytesIO):$/;" c +CMockNonBlockWriterIO Lib/test/test_io.py /^class CMockNonBlockWriterIO(MockNonBlockWriterIO, io.RawIOBase):$/;" c +CMockRawIO Lib/test/test_io.py /^class CMockRawIO(MockRawIO, io.RawIOBase):$/;" c +CMockRawIOWithoutRead Lib/test/test_io.py /^class CMockRawIOWithoutRead(MockRawIOWithoutRead, io.RawIOBase):$/;" c +CMockUnseekableIO Lib/test/test_io.py /^class CMockUnseekableIO(MockUnseekableIO, io.BytesIO):$/;" c +CNS Lib/test/test_grammar.py /^class CNS:$/;" c +CNS2 Lib/test/test_grammar.py /^ class CNS2:$/;" c function:GrammarTests.test_var_annot_custom_maps +CNS2 Lib/test/test_grammar.py /^ class CNS2:$/;" c function:GrammarTests.test_var_annot_refleak +CNT Lib/test/test_typing.py /^ class CNT(NamedTuple):$/;" c function:NamedTupleTests.test_empty_namedtuple +CN_STATE_OFFSET Modules/cjkcodecs/_codecs_cn.c 58;" d file: +CODE Tools/build/umarshal.py /^ CODE = ord('c')$/;" v class:Type +CODEC_CAPSULE Modules/cjkcodecs/multibytecodec.h 144;" d +CODEC_CUSTOM Modules/cjkcodecs/_codecs_jp.c 750;" d file: +CODEC_CUSTOM Modules/cjkcodecs/_codecs_jp.c 763;" d file: +CODEC_INIT Modules/cjkcodecs/_codecs_hk.c /^CODEC_INIT(big5hkscs)$/;" f +CODEC_INIT Modules/cjkcodecs/_codecs_iso2022.c /^CODEC_INIT(iso2022)$/;" f +CODEC_INIT Modules/cjkcodecs/cjkcodecs.h 84;" d +CODEC_MAP Lib/email/charset.py /^CODEC_MAP = {$/;" v +CODEC_STATEFUL Modules/cjkcodecs/cjkcodecs.h 278;" d +CODEC_STATELESS Modules/cjkcodecs/cjkcodecs.h 280;" d +CODEC_STATELESS_WINIT Modules/cjkcodecs/cjkcodecs.h 282;" d +CODESET Include/pyport.h 646;" d +CODE_MAX_WATCHERS Include/internal/pycore_code.h 7;" d +CODE_REPLACE_METHODDEF Objects/clinic/codeobject.c.h 171;" d +CODE__VARNAME_FROM_OPARG_METHODDEF Objects/clinic/codeobject.c.h 434;" d +CODING_RE Lib/test/test_importlib/source/test_source_encoding.py /^CODING_RE = re.compile(r'^[ \\t\\f]*#.*?coding[:=][ \\t]*([-\\w.]+)', re.ASCII)$/;" v +COLLECTION_FLAGS Modules/_abc.c 419;" d file: +COLLECTION_FLAGS Objects/typeobject.c 6974;" d file: +COLON Include/internal/pycore_token.h 27;" d +COLON Lib/lib2to3/fixes/fix_ws_comma.py /^ COLON = pytree.Leaf(token.COLON, ":")$/;" v class:FixWsComma +COLON Lib/lib2to3/pgen2/token.py /^COLON = 11$/;" v +COLON Lib/token.py /^COLON = 11$/;" v +COLON Tools/cases_generator/lexer.py /^COLON = r':'$/;" v +COLONEQUAL Include/internal/pycore_token.h 69;" d +COLONEQUAL Lib/lib2to3/pgen2/token.py /^COLONEQUAL = 59$/;" v +COLONEQUAL Lib/token.py /^COLONEQUAL = 53$/;" v +COLOR Lib/turtledemo/nim.py /^COLOR = (204, 204, 255)$/;" v +COLORREF Lib/ctypes/wintypes.py /^COLORREF = DWORD$/;" v +COLUMN Lib/tkinter/tix.py /^COLUMN = 'column'$/;" v +COMMA Include/internal/pycore_token.h 28;" d +COMMA Lib/lib2to3/fixes/fix_ws_comma.py /^ COMMA = pytree.Leaf(token.COMMA, ",")$/;" v class:FixWsComma +COMMA Lib/lib2to3/pgen2/token.py /^COMMA = 12$/;" v +COMMA Lib/token.py /^COMMA = 12$/;" v +COMMA Tools/cases_generator/lexer.py /^COMMA = r','$/;" v +COMMAND Lib/test/smtpd.py /^ COMMAND = 0$/;" v class:SMTPChannel +COMMAND Lib/test/test_dtrace.py /^ COMMAND = None$/;" v class:TraceBackend +COMMAND Lib/test/test_dtrace.py /^ COMMAND = ["dtrace", "-q", "-s"]$/;" v class:DTraceBackend +COMMAND Lib/test/test_dtrace.py /^ COMMAND = ["stap", "-g"]$/;" v class:SystemTapBackend +COMMAND Lib/tkinter/constants.py /^COMMAND='command'$/;" v +COMMAND PC/launcher.c /^} COMMAND;$/;" t typeref:struct:__anon288 file: +COMMANDS Tools/c-analyzer/c_analyzer/__main__.py /^COMMANDS = {$/;" v +COMMANDS Tools/c-analyzer/c_parser/__main__.py /^COMMANDS = {$/;" v +COMMANDS Tools/c-analyzer/c_parser/preprocessor/__main__.py /^COMMANDS = {$/;" v +COMMANDS Tools/c-analyzer/cpython/__main__.py /^COMMANDS = {$/;" v +COMMAND_ARGS Lib/test/test_dtrace.py /^ COMMAND_ARGS = []$/;" v class:TraceBackend +COMMASPACE Lib/email/_parseaddr.py /^COMMASPACE = ', '$/;" v +COMMASPACE Lib/email/utils.py /^COMMASPACE = ', '$/;" v +COMMASPACE Lib/test/smtpd.py /^COMMASPACE = ', '$/;" v +COMMENT Include/internal/pycore_token.h 80;" d +COMMENT Lib/lib2to3/pgen2/token.py /^COMMENT = 53$/;" v +COMMENT Lib/token.py /^COMMENT = 64$/;" v +COMMENT Lib/xml/dom/pulldom.py /^COMMENT = "COMMENT"$/;" v +COMMENT Tools/cases_generator/lexer.py /^COMMENT = 'COMMENT'$/;" v +COMMENT_NODE Lib/xml/dom/__init__.py /^ COMMENT_NODE = 8$/;" v class:Node +COMMON_CLI Tools/c-analyzer/c_common/scriptutil.py /^COMMON_CLI = [$/;" v +COMMON_CODEC_TESTS Lib/test/test_codecencodings_iso2022.py /^COMMON_CODEC_TESTS = ($/;" v +COMMON_FIELDS Include/cpython/funcobject.h 11;" d +COMP Python/ast.c 302;" d file: +COMP Python/ast.c 310;" d file: +COMPARE Objects/unicodeobject.c 10433;" d file: +COMPARE Objects/unicodeobject.c 10543;" d file: +COMPARE_OP Include/opcode.h 68;" d +COMPARE_OP_FLOAT Include/opcode.h 184;" d +COMPARE_OP_INT Include/opcode.h 185;" d +COMPARE_OP_STR Include/opcode.h 186;" d +COMPARISON_BIT Include/internal/pycore_code.h 469;" d +COMPARISON_EQUALS Include/internal/pycore_code.h 482;" d +COMPARISON_FLAGS Lib/doctest.py /^COMPARISON_FLAGS = (DONT_ACCEPT_TRUE_FOR_1 |$/;" v +COMPARISON_GREATER_THAN Include/internal/pycore_code.h 481;" d +COMPARISON_LESS_THAN Include/internal/pycore_code.h 480;" d +COMPARISON_NOT_EQUALS Include/internal/pycore_code.h 484;" d +COMPARISON_UNORDERED Include/internal/pycore_code.h 478;" d +COMPILE Tools/peg_generator/scripts/test_parse_directory.py /^COMPILE = 2$/;" v +COMPILER PC/pyconfig.h 143;" d +COMPILER PC/pyconfig.h 146;" d +COMPILER PC/pyconfig.h 149;" d +COMPILER PC/pyconfig.h 154;" d +COMPILER PC/pyconfig.h 158;" d +COMPILER PC/pyconfig.h 205;" d +COMPILER PC/pyconfig.h 208;" d +COMPILER PC/pyconfig.h 211;" d +COMPILER PC/pyconfig.h 216;" d +COMPILER PC/pyconfig.h 220;" d +COMPILER PC/pyconfig.h 258;" d +COMPILER PC/pyconfig.h 271;" d +COMPILER Python/getcompiler.c 11;" d file: +COMPILER Python/getcompiler.c 13;" d file: +COMPILER Python/getcompiler.c 16;" d file: +COMPILER Python/getcompiler.c 18;" d file: +COMPILER_FLAG_NAMES Lib/dis.py /^COMPILER_FLAG_NAMES = {$/;" v +COMPILER_SCOPE_ASYNC_FUNCTION Python/compile.c /^ COMPILER_SCOPE_ASYNC_FUNCTION,$/;" e enum:__anon671 file: +COMPILER_SCOPE_CLASS Python/compile.c /^ COMPILER_SCOPE_CLASS,$/;" e enum:__anon671 file: +COMPILER_SCOPE_COMPREHENSION Python/compile.c /^ COMPILER_SCOPE_COMPREHENSION,$/;" e enum:__anon671 file: +COMPILER_SCOPE_FUNCTION Python/compile.c /^ COMPILER_SCOPE_FUNCTION,$/;" e enum:__anon671 file: +COMPILER_SCOPE_LAMBDA Python/compile.c /^ COMPILER_SCOPE_LAMBDA,$/;" e enum:__anon671 file: +COMPILER_SCOPE_MODULE Python/compile.c /^ COMPILER_SCOPE_MODULE,$/;" e enum:__anon671 file: +COMPILER_SCOPE_TYPEPARAMS Python/compile.c /^ COMPILER_SCOPE_TYPEPARAMS,$/;" e enum:__anon671 file: +COMPILER_STACK_FRAME_SCALE Python/ast.c 1037;" d file: +COMPILER_STACK_FRAME_SCALE Python/ast_opt.c 1106;" d file: +COMPILER_STACK_FRAME_SCALE Python/symtable.c 288;" d file: +COMPLEX Tools/build/umarshal.py /^ COMPLEX = ord('x')$/;" v class:Type +COMPLEX_A Lib/test/test_enum.py /^COMPLEX_A = 2j$/;" v +COMPLEX_B Lib/test/test_enum.py /^COMPLEX_B = 3j$/;" v +COMPLEX_C Lib/test/test_enum.py /^COMPLEX_C = 1j$/;" v +COMPLEX_CONJUGATE_METHODDEF Objects/clinic/complexobject.c.h 17;" d +COMPLEX___COMPLEX___METHODDEF Objects/clinic/complexobject.c.h 84;" d +COMPLEX___FORMAT___METHODDEF Objects/clinic/complexobject.c.h 52;" d +COMPLEX___GETNEWARGS___METHODDEF Objects/clinic/complexobject.c.h 34;" d +COMPOSITION_EXCLUSIONS Tools/unicode/makeunicodedata.py /^COMPOSITION_EXCLUSIONS = "CompositionExclusions%s.txt"$/;" v +COMPOUND_TYPE_KIND Tools/c-analyzer/c_parser/parser/_regexes.py /^COMPOUND_TYPE_KIND = r'(?: \\b (?: struct | union | enum ) \\b )'$/;" v +COMPRESSED_ALONE Lib/test/test_lzma.py /^COMPRESSED_ALONE = ($/;" v +COMPRESSED_BOGUS Lib/test/test_lzma.py /^COMPRESSED_BOGUS = b"this is not a valid lzma stream"$/;" v +COMPRESSED_RAW_1 Lib/test/test_lzma.py /^COMPRESSED_RAW_1 = ($/;" v +COMPRESSED_RAW_2 Lib/test/test_lzma.py /^COMPRESSED_RAW_2 = ($/;" v +COMPRESSED_RAW_3 Lib/test/test_lzma.py /^COMPRESSED_RAW_3 = ($/;" v +COMPRESSED_RAW_4 Lib/test/test_lzma.py /^COMPRESSED_RAW_4 = ($/;" v +COMPRESSED_XZ Lib/test/test_lzma.py /^COMPRESSED_XZ = ($/;" v +COMPUTED_LINE Python/instrumentation.c 246;" d file: +COMPUTE_EVAL_BREAKER Python/ceval_gil.c /^COMPUTE_EVAL_BREAKER(PyInterpreterState *interp,$/;" f file: +COMP_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^COMP_CTX = comp_ctx_st$/;" v +COMP_DICTCOMP Python/compile.c 48;" d file: +COMP_GENEXP Python/compile.c 45;" d file: +COMP_LISTCOMP Python/compile.c 46;" d file: +COMP_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^COMP_METHOD = comp_method_st$/;" v +COMP_OFF Modules/zlibmodule.c 1801;" d file: +COMP_SETCOMP Python/compile.c 47;" d file: +COMP_SHIFT Modules/unicodedata_db.h 5557;" d +COM_PORT_OPTION Lib/telnetlib.py /^COM_PORT_OPTION = bytes([44]) # Com Port Control Option$/;" v +CONDATTR_MONOTONIC Include/internal/pycore_pythread.h 42;" d +CONDOP Tools/cases_generator/lexer.py /^CONDOP = r'\\?'$/;" v +COND_FINI Python/ceval_gil.c 204;" d file: +COND_INIT Python/ceval_gil.c 201;" d file: +COND_SIGNAL Python/ceval_gil.c 207;" d file: +COND_TIMED_WAIT Python/ceval_gil.c 213;" d file: +COND_WAIT Python/ceval_gil.c 210;" d file: +CONFIGDEF Modules/cjkcodecs/_codecs_iso2022.c 1077;" d file: +CONFIGURE Tools/wasm/wasm_build.py /^CONFIGURE = SRCDIR \/ "configure"$/;" v +CONFIG_32 Modules/_decimal/libmpdec/mpdecimal.h 104;" d +CONFIG_32 Modules/_decimal/libmpdec/mpdecimal.h 110;" d +CONFIG_64 Modules/_decimal/libmpdec/mpdecimal.h 107;" d +CONFIG_64 Modules/_decimal/libmpdec/mpdecimal.h 113;" d +CONFIG_64 Modules/_decimal/libmpdec/mpdecimal.h 116;" d +CONFIG_COMPAT Lib/test/test_embed.py /^ CONFIG_COMPAT = {$/;" v class:InitConfigTests +CONFIG_DESIGNATIONS Modules/cjkcodecs/_codecs_iso2022.c 116;" d file: +CONFIG_GET_ENV_DUP Python/initconfig.c 1483;" d file: +CONFIG_H_NOTOK Tools/c-analyzer/distutils/cygwinccompiler.py /^CONFIG_H_NOTOK = "not ok"$/;" v +CONFIG_H_OK Tools/c-analyzer/distutils/cygwinccompiler.py /^CONFIG_H_OK = "ok"$/;" v +CONFIG_H_UNCERTAIN Tools/c-analyzer/distutils/cygwinccompiler.py /^CONFIG_H_UNCERTAIN = "uncertain"$/;" v +CONFIG_ISOLATED Lib/test/test_embed.py /^ CONFIG_ISOLATED = dict(CONFIG_COMPAT,$/;" v class:InitConfigTests +CONFIG_ISSET Modules/cjkcodecs/_codecs_iso2022.c 115;" d file: +CONFIG_PYTHON Lib/test/test_embed.py /^ CONFIG_PYTHON = dict(CONFIG_COMPAT,$/;" v class:InitConfigTests +CONFIG_SET_BYTES_STR Python/initconfig.c 921;" d file: +CONFLICT Lib/http/__init__.py /^ CONFLICT = 409, 'Conflict', 'Request conflict'$/;" v class:HTTPStatus +CONFLICT Lib/test/test_httplib.py /^ CONFLICT = 409, 'Conflict', 'Request conflict'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +CONFORM Lib/enum.py /^ CONFORM = auto()$/;" v class:FlagBoundary +CONNECT Lib/http/__init__.py /^ CONNECT = 'CONNECT', 'Establish a connection to the server.'$/;" v class:HTTPMethod +CONNECTION_TIMEOUT Lib/multiprocessing/connection.py /^CONNECTION_TIMEOUT = 20.$/;" v +CONNECTION_TIMEOUT Lib/test/test_sqlite3/test_dbapi.py /^ CONNECTION_TIMEOUT = 0 # Disable the busy timeout.$/;" v class:MultiprocessTests +CONNECT_PIPE_INIT_DELAY Lib/asyncio/windows_events.py /^CONNECT_PIPE_INIT_DELAY = 0.001$/;" v +CONNECT_PIPE_MAX_DELAY Lib/asyncio/windows_events.py /^CONNECT_PIPE_MAX_DELAY = 0.100$/;" v +CONN_MAX_SIZE Lib/test/_test_multiprocessing.py /^ CONN_MAX_SIZE = max(support.PIPE_MAX_SIZE, support.SOCK_MAX_SIZE)$/;" v class:TestIgnoreEINTR +CONST_ACTIONS Lib/optparse.py /^ CONST_ACTIONS = ("store_const",$/;" v class:Option +CONTAINS_OP Include/opcode.h 76;" d +CONTENT_SCAFFOLD Modules/expat/xmlparse.c /^} CONTENT_SCAFFOLD;$/;" t typeref:struct:__anon612 file: +CONTEXT Lib/gettext.py /^ CONTEXT = "%s\\x04%s"$/;" v class:GNUTranslations +CONTEXT_CHECK Modules/_decimal/_decimal.c 1513;" d file: +CONTEXT_CHECK_VA Modules/_decimal/_decimal.c 1520;" d file: +CONTEXT_SEP Modules/expat/xmlparse.c 6533;" d file: +CONTIG Lib/inspect.py /^ CONTIG = ND | WRITABLE$/;" v class:BufferFlags +CONTIG_RO Lib/inspect.py /^ CONTIG_RO = ND$/;" v class:BufferFlags +CONTINUATION_BIT Python/assemble.c 90;" d file: +CONTINUE Lib/http/__init__.py /^ CONTINUE = 100, 'Continue', 'Request received, please continue'$/;" v class:HTTPStatus +CONTINUE Lib/test/test_httplib.py /^ CONTINUE = 100, 'Continue', 'Request received, please continue'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +CONTINUOUS Lib/enum.py /^ CONTINUOUS = "no skipped integer values"$/;" v class:EnumCheck +CONTROL_ID Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^enum CONTROL_ID {$/;" g file: +CONTROL_ID_NAMES Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static THEME_ASSIGN_CONTROL_ID CONTROL_ID_NAMES[] = {$/;" v file: +CONTTYPE Lib/tarfile.py /^CONTTYPE = b"7" # contiguous file$/;" v +CONT_BITFIELD Modules/_ctypes/cfield.c 61;" d file: +CONVERT Modules/_ssl.c 5226;" d file: +CONVERT Modules/_ssl.c 5239;" d file: +CONVERTER Modules/expat/xmltok.h /^typedef int(XMLCALL *CONVERTER)(void *userData, const char *p);$/;" t +CONVERTTOCHTYPE Modules/_cursesmodule.c 1092;" d file: +CONVERTTOCHTYPE Modules/_cursesmodule.c 1105;" d file: +CONVERT_BINOP Modules/_decimal/_decimal.c 2897;" d file: +CONVERT_BINOP_CMP Modules/_decimal/_decimal.c 3108;" d file: +CONVERT_BINOP_RAISE Modules/_decimal/_decimal.c 2926;" d file: +CONVERT_OP Modules/_decimal/_decimal.c 2892;" d file: +CONVERT_OP_RAISE Modules/_decimal/_decimal.c 2921;" d file: +CONVERT_PATTERN Lib/logging/config.py /^ CONVERT_PATTERN = re.compile(r'^(?P[a-z]+):\/\/(?P.*)$')$/;" v class:BaseConfigurator +CONVERT_STRING_TEST_NAME_A Lib/test/test_enum.py /^CONVERT_STRING_TEST_NAME_A = 5 # This one should sort first.$/;" v +CONVERT_STRING_TEST_NAME_B Lib/test/test_enum.py /^CONVERT_STRING_TEST_NAME_B = 5$/;" v +CONVERT_STRING_TEST_NAME_C Lib/test/test_enum.py /^CONVERT_STRING_TEST_NAME_C = 5$/;" v +CONVERT_STRING_TEST_NAME_D Lib/test/test_enum.py /^CONVERT_STRING_TEST_NAME_D = 5$/;" v +CONVERT_STRING_TEST_NAME_E Lib/test/test_enum.py /^CONVERT_STRING_TEST_NAME_E = 5$/;" v +CONVERT_STRING_TEST_NAME_F Lib/test/test_enum.py /^CONVERT_STRING_TEST_NAME_F = 5$/;" v +CONVERT_STR_TEST_1 Lib/test/test_enum.py /^CONVERT_STR_TEST_1 = 'hello'$/;" v +CONVERT_STR_TEST_2 Lib/test/test_enum.py /^CONVERT_STR_TEST_2 = 'goodbye'$/;" v +CONVERT_TERNOP Modules/_decimal/_decimal.c 2906;" d file: +CONVERT_TERNOP_RAISE Modules/_decimal/_decimal.c 2935;" d file: +CONVERT_TEST_NAME_A Lib/test/test_enum.py /^CONVERT_TEST_NAME_A = 5 # This one should sort first.$/;" v +CONVERT_TEST_NAME_B Lib/test/test_enum.py /^CONVERT_TEST_NAME_B = 5$/;" v +CONVERT_TEST_NAME_C Lib/test/test_enum.py /^CONVERT_TEST_NAME_C = 5$/;" v +CONVERT_TEST_NAME_D Lib/test/test_enum.py /^CONVERT_TEST_NAME_D = 5$/;" v +CONVERT_TEST_NAME_E Lib/test/test_enum.py /^CONVERT_TEST_NAME_E = 5$/;" v +CONVERT_TEST_NAME_F Lib/test/test_enum.py /^CONVERT_TEST_NAME_F = 5$/;" v +CONVERT_TO_DOUBLE Objects/floatobject.c 353;" d file: +CONV_UNICODE Python/getargs.c 644;" d file: +COOKIE_BUF_LEN Modules/_io/textio.c 2323;" d file: +COPY Include/opcode.h 78;" d +COPY Python/pathconfig.c 120;" d file: +COPY Python/pathconfig.c 134;" d file: +COPY Python/pathconfig.c 166;" d file: +COPY Python/pathconfig.c 88;" d file: +COPY2 Python/pathconfig.c 121;" d file: +COPY2 Python/pathconfig.c 143;" d file: +COPY2 Python/pathconfig.c 167;" d file: +COPY2 Python/pathconfig.c 96;" d file: +COPYASYNC Objects/typeobject.c 6794;" d file: +COPYBUF Objects/typeobject.c 6785;" d file: +COPYBUF Objects/typeobject.c 6798;" d file: +COPYMAP Objects/typeobject.c 6784;" d file: +COPYMAP Objects/typeobject.c 6797;" d file: +COPYNUM Objects/typeobject.c 6782;" d file: +COPYNUM Objects/typeobject.c 6795;" d file: +COPYRIGHT Lib/idlelib/pyshell.py /^ 'Type "help", "copyright", "credits" or "license()" for more information.'$/;" v class:PyShell +COPYRIGHT Modules/main.c 24;" d file: +COPYSEQ Objects/typeobject.c 6783;" d file: +COPYSEQ Objects/typeobject.c 6796;" d file: +COPYSLOT Objects/typeobject.c 6781;" d file: +COPYSLOT Objects/typeobject.c 6791;" d file: +COPYVAL Objects/typeobject.c 6718;" d file: +COPYVAL Objects/typeobject.c 6725;" d file: +COPY_ATTR Objects/funcobject.c 963;" d file: +COPY_ATTR Objects/funcobject.c 977;" d file: +COPY_ATTR Python/initconfig.c 1030;" d file: +COPY_ATTR Python/initconfig.c 943;" d file: +COPY_ATTR Python/preconfig.c 133;" d file: +COPY_ATTR Python/preconfig.c 142;" d file: +COPY_ATTR Python/preconfig.c 149;" d file: +COPY_ATTR Python/preconfig.c 156;" d file: +COPY_ATTR Python/preconfig.c 163;" d file: +COPY_ATTR Python/preconfig.c 177;" d file: +COPY_ATTR Python/preconfig.c 381;" d file: +COPY_ATTR Python/preconfig.c 397;" d file: +COPY_ATTR Python/preconfig.c 450;" d file: +COPY_ATTR Python/preconfig.c 460;" d file: +COPY_BUFSIZE Lib/shutil.py /^COPY_BUFSIZE = 1024 * 1024 if _WINDOWS else 64 * 1024$/;" v +COPY_FILE_REQUEST_COMPRESSED_TRAFFIC Modules/_winapi.c 2359;" d file: +COPY_FLAG Python/initconfig.c 1497;" d file: +COPY_FLAG Python/initconfig.c 1525;" d file: +COPY_FLAG Python/initconfig.c 1537;" d file: +COPY_FLAG Python/initconfig.c 1569;" d file: +COPY_FLAG Python/preconfig.c 472;" d file: +COPY_FLAG Python/preconfig.c 493;" d file: +COPY_FLAG Python/preconfig.c 501;" d file: +COPY_FLAG Python/preconfig.c 520;" d file: +COPY_FREE_VARS Include/opcode.h 106;" d +COPY_FREE_VARS Lib/test/test_code.py /^COPY_FREE_VARS = opmap['COPY_FREE_VARS']$/;" v +COPY_GLOBAL_CONFIG Lib/test/test_embed.py /^ COPY_GLOBAL_CONFIG = [$/;" v class:InitConfigTests +COPY_GLOBAL_PRE_CONFIG Lib/test/test_embed.py /^ COPY_GLOBAL_PRE_CONFIG = [$/;" v class:InitConfigTests +COPY_INT Python/pathconfig.c 104;" d file: +COPY_INT Python/pathconfig.c 122;" d file: +COPY_INT Python/pathconfig.c 152;" d file: +COPY_INT Python/pathconfig.c 168;" d file: +COPY_LICENSE PCbuild/prepare_libffi.bat /^ set COPY_LICENSE=1$/;" v +COPY_LICENSE PCbuild/prepare_libffi.bat /^if \/I "%1"=="-license" (set COPY_LICENSE=1) & shift & goto :CheckOpts$/;" v +COPY_LICENSE PCbuild/prepare_libffi.bat /^set COPY_LICENSE=$/;" v +COPY_LIST Python/sysmodule.c 3443;" d file: +COPY_LIST Python/sysmodule.c 3487;" d file: +COPY_NODE Python/ast_opt.c 32;" d file: +COPY_NOT_FLAG Python/initconfig.c 1501;" d file: +COPY_NOT_FLAG Python/initconfig.c 1526;" d file: +COPY_NOT_FLAG Python/initconfig.c 1541;" d file: +COPY_NOT_FLAG Python/initconfig.c 1570;" d file: +COPY_NOT_FLAG Python/preconfig.c 476;" d file: +COPY_NOT_FLAG Python/preconfig.c 494;" d file: +COPY_NOT_FLAG Python/preconfig.c 505;" d file: +COPY_NOT_FLAG Python/preconfig.c 521;" d file: +COPY_PRE_CONFIG Lib/test/test_embed.py /^ COPY_PRE_CONFIG = [$/;" v class:InitConfigTests +COPY_SYS_ATTR Python/sysmodule.c 3257;" d file: +COPY_SYS_ATTR Python/sysmodule.c 3265;" d file: +COPY_WSTR Python/sysmodule.c 3449;" d file: +COPY_WSTR Python/sysmodule.c 3488;" d file: +COPY_WSTRLIST Python/initconfig.c 1032;" d file: +COPY_WSTRLIST Python/initconfig.c 951;" d file: +COPY_WSTR_ATTR Python/initconfig.c 1031;" d file: +COPY_WSTR_ATTR Python/initconfig.c 944;" d file: +CORE_MODULES Tools/build/check_extension_modules.py /^CORE_MODULES = {$/;" v +CORE_PATH PC/launcher.c 196;" d file: +CORE_VENV_DEPS Lib/venv/__init__.py /^CORE_VENV_DEPS = ('pip',)$/;" v +CORO_CLOSED Lib/inspect.py /^CORO_CLOSED = 'CORO_CLOSED'$/;" v +CORO_CREATED Lib/inspect.py /^CORO_CREATED = 'CORO_CREATED'$/;" v +CORO_RUNNING Lib/inspect.py /^CORO_RUNNING = 'CORO_RUNNING'$/;" v +CORO_SUSPENDED Lib/inspect.py /^CORO_SUSPENDED = 'CORO_SUSPENDED'$/;" v +COUNT Lib/test/test_weakref.py /^ COUNT = 10$/;" v class:MappingTestCase +COUNT_PAGE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ COUNT_PAGE,$/;" e enum:PAGE file: +CO_ASYNC_GENERATOR Include/cpython/code.h 189;" d +CO_COROUTINE Include/cpython/code.h 187;" d +CO_FAST_CELL Include/internal/pycore_code.h 133;" d +CO_FAST_CELL Tools/build/deepfreeze.py /^CO_FAST_CELL = 0x40$/;" v +CO_FAST_CELL Tools/build/umarshal.py /^CO_FAST_CELL = 0x40$/;" v +CO_FAST_FREE Include/internal/pycore_code.h 134;" d +CO_FAST_FREE Tools/build/deepfreeze.py /^CO_FAST_FREE = 0x80$/;" v +CO_FAST_FREE Tools/build/umarshal.py /^CO_FAST_FREE = 0x80$/;" v +CO_FAST_HIDDEN Include/internal/pycore_code.h 131;" d +CO_FAST_LOCAL Include/internal/pycore_code.h 132;" d +CO_FAST_LOCAL Tools/build/deepfreeze.py /^CO_FAST_LOCAL = 0x20$/;" v +CO_FAST_LOCAL Tools/build/umarshal.py /^CO_FAST_LOCAL = 0x20$/;" v +CO_FUTURE_ABSOLUTE_IMPORT Include/cpython/code.h 196;" d +CO_FUTURE_ABSOLUTE_IMPORT Lib/__future__.py /^CO_FUTURE_ABSOLUTE_IMPORT = 0x40000 # perform absolute imports by default$/;" v +CO_FUTURE_ANNOTATIONS Include/cpython/code.h 203;" d +CO_FUTURE_ANNOTATIONS Lib/__future__.py /^CO_FUTURE_ANNOTATIONS = 0x1000000 # annotations become strings at runtime$/;" v +CO_FUTURE_BARRY_AS_BDFL Include/cpython/code.h 201;" d +CO_FUTURE_BARRY_AS_BDFL Lib/__future__.py /^CO_FUTURE_BARRY_AS_BDFL = 0x400000$/;" v +CO_FUTURE_DIVISION Include/cpython/code.h 195;" d +CO_FUTURE_DIVISION Lib/__future__.py /^CO_FUTURE_DIVISION = 0x20000 # division$/;" v +CO_FUTURE_GENERATOR_STOP Include/cpython/code.h 202;" d +CO_FUTURE_GENERATOR_STOP Lib/__future__.py /^CO_FUTURE_GENERATOR_STOP = 0x800000 # StopIteration becomes RuntimeError in generators$/;" v +CO_FUTURE_PRINT_FUNCTION Include/cpython/code.h 198;" d +CO_FUTURE_PRINT_FUNCTION Lib/__future__.py /^CO_FUTURE_PRINT_FUNCTION = 0x100000 # print function$/;" v +CO_FUTURE_UNICODE_LITERALS Include/cpython/code.h 199;" d +CO_FUTURE_UNICODE_LITERALS Lib/__future__.py /^CO_FUTURE_UNICODE_LITERALS = 0x200000 # unicode string literals$/;" v +CO_FUTURE_WITH_STATEMENT Include/cpython/code.h 197;" d +CO_FUTURE_WITH_STATEMENT Lib/__future__.py /^CO_FUTURE_WITH_STATEMENT = 0x80000 # with statement$/;" v +CO_GENERATOR Include/cpython/code.h 183;" d +CO_GENERATOR_ALLOWED Lib/__future__.py /^CO_GENERATOR_ALLOWED = 0 # generators (obsolete, was 0x1000)$/;" v +CO_ITERABLE_COROUTINE Include/cpython/code.h 188;" d +CO_MAXBLOCKS Include/cpython/code.h 210;" d +CO_NESTED Include/cpython/code.h 182;" d +CO_NESTED Lib/__future__.py /^CO_NESTED = 0x0010 # nested_scopes$/;" v +CO_NEWLOCALS Include/cpython/code.h 179;" d +CO_OPTIMIZED Include/cpython/code.h 178;" d +CO_VARARGS Include/cpython/code.h 180;" d +CO_VARKEYWORDS Include/cpython/code.h 181;" d +CObjView Lib/tkinter/tix.py /^class CObjView(TixWidget):$/;" c +COperatorTestCase Lib/test/test_operator.py /^class COperatorTestCase(OperatorTestCase, unittest.TestCase):$/;" c +COtherFileTests Lib/test/test_file.py /^class COtherFileTests(OtherFileTests, unittest.TestCase):$/;" c +COtherFileTests Lib/test/test_fileio.py /^class COtherFileTests(OtherFileTests, unittest.TestCase):$/;" c +CP Lib/test/test_typing.py /^ class CP(P[int]):$/;" c function:ProtocolTests.test_protocols_pickleable +CP932P0_C1 Tools/unicode/genmap_japanese.py /^CP932P0_C1 = (0x81, 0x81) # patches between shift-jis and cp932$/;" v +CP932P0_C2 Tools/unicode/genmap_japanese.py /^CP932P0_C2 = (0x5f, 0xca)$/;" v +CP932P1_C1 Tools/unicode/genmap_japanese.py /^CP932P1_C1 = (0x87, 0x87) # CP932 P1$/;" v +CP932P1_C2 Tools/unicode/genmap_japanese.py /^CP932P1_C2 = (0x40, 0x9c)$/;" v +CP932P2_C1 Tools/unicode/genmap_japanese.py /^CP932P2_C1 = (0xed, 0xfc) # CP932 P2$/;" v +CP932P2_C2 Tools/unicode/genmap_japanese.py /^CP932P2_C2 = (0x40, 0xfc)$/;" v +CPINFOEXW Lib/test/test_codecs.py /^ class CPINFOEXW(ctypes.Structure):$/;" c function:is_code_page_present +CPPFLAGS Lib/test/test_cppext/setup.py /^ CPPFLAGS = [$/;" v +CPPFLAGS Lib/test/test_cppext/setup.py /^ CPPFLAGS = []$/;" v +CPUCountTests Lib/test/test_os.py /^class CPUCountTests(unittest.TestCase):$/;" c +CPYTHON Tools/peg_generator/Makefile /^CPYTHON ?= ..\/..\/Lib$/;" m +CPYTHON_ROOT Doc/tools/extensions/asdl_highlight.py /^CPYTHON_ROOT = Path(__file__).resolve().parent.parent.parent.parent$/;" v +CP_UTF16BE PC/launcher.c 1118;" d file: +CP_UTF16LE PC/launcher.c 1117;" d file: +CP_UTF32BE PC/launcher.c 1120;" d file: +CP_UTF32LE PC/launcher.c 1119;" d file: +CP_UTF8 Lib/test/test_codecs.py /^ CP_UTF8 = 65001$/;" v class:CodePageTest +CParserGenerator Tools/peg_generator/pegen/c_generator.py /^class CParserGenerator(ParserGenerator, GrammarVisitor):$/;" c +CPartialSubclass Lib/test/test_functools.py /^ class CPartialSubclass(c_functools.partial):$/;" c +CPersPicklerTests Lib/test/test_pickle.py /^ class CPersPicklerTests(PyPersPicklerTests):$/;" c +CPickleTests Lib/test/test_pickle.py /^ class CPickleTests(AbstractPickleModuleTests, unittest.TestCase):$/;" c +CPicklerHookTests Lib/test/test_pickle.py /^ class CPicklerHookTests(AbstractHookTests, unittest.TestCase):$/;" c +CPicklerTests Lib/test/test_pickle.py /^ class CPicklerTests(PyPicklerTests):$/;" c +CPicklerUnpicklerObjectTests Lib/test/test_pickle.py /^ class CPicklerUnpicklerObjectTests(AbstractPicklerUnpicklerObjectTests, unittest.TestCase):$/;" c +CPriorityQueueTest Lib/test/test_queue.py /^class CPriorityQueueTest(PriorityQueueTest, unittest.TestCase):$/;" c +CProfileTest Lib/test/test_cprofile.py /^class CProfileTest(ProfileTest):$/;" c +CPublicAPITests Lib/test/test_warnings/__init__.py /^class CPublicAPITests(PublicAPITests, unittest.TestCase):$/;" c +CPyOperatorPickleTestCase Lib/test/test_operator.py /^class CPyOperatorPickleTestCase(OperatorPickleTestCase, unittest.TestCase):$/;" c +CPyTimeTestCase Lib/test/test_time.py /^class CPyTimeTestCase:$/;" c +CPythonAPItests Lib/test/test_decimal.py /^class CPythonAPItests(PythonAPItests, unittest.TestCase):$/;" c +CPythonBuiltinDictTests Lib/test/test_ordered_dict.py /^class CPythonBuiltinDictTests(unittest.TestCase):$/;" c +CPythonGeneralMappingTests Lib/test/test_ordered_dict.py /^class CPythonGeneralMappingTests(mapping_tests.BasicTestMappingProtocol):$/;" c +CPythonOrderedDictSubclassTests Lib/test/test_ordered_dict.py /^class CPythonOrderedDictSubclassTests(CPythonOrderedDictTests):$/;" c +CPythonOrderedDictTests Lib/test/test_ordered_dict.py /^class CPythonOrderedDictTests(OrderedDictTests, unittest.TestCase):$/;" c +CPythonOrderedDictWithSlotsCopyingTests Lib/test/test_ordered_dict.py /^class CPythonOrderedDictWithSlotsCopyingTests(unittest.TestCase):$/;" c +CPythonSubclassMappingTests Lib/test/test_ordered_dict.py /^class CPythonSubclassMappingTests(mapping_tests.BasicTestMappingProtocol):$/;" c +CPythonSuggestionFormattingTests Lib/test/test_traceback.py /^):$/;" c +CPythonTracebackErrorCaretTests Lib/test/test_traceback.py /^):$/;" c +CPythonTracebackLegacyErrorCaretTests Lib/test/test_traceback.py /^):$/;" c +CQueueTest Lib/test/test_queue.py /^class CQueueTest(QueueTest, unittest.TestCase):$/;" c +CR Lib/curses/ascii.py /^CR = 0x0d # ^M$/;" v +CR Lib/poplib.py /^CR = b'\\r'$/;" v +CRASHER_DIR Lib/test/test_crashers.py /^CRASHER_DIR = os.path.join(os.path.dirname(__file__), "crashers")$/;" v +CRASHER_FILES Lib/test/test_crashers.py /^CRASHER_FILES = os.path.join(glob.escape(CRASHER_DIR), "*.py")$/;" v +CREATE Lib/test/test_sqlite3/test_transactions.py /^ CREATE = "create table t(t)"$/;" v class:IsolationLevelFromInit +CREATED Lib/asyncio/runners.py /^ CREATED = "created"$/;" v class:_State +CREATED Lib/asyncio/timeouts.py /^ CREATED = "created"$/;" v class:_State +CREATED Lib/http/__init__.py /^ CREATED = 201, 'Created', 'Document created, URL follows'$/;" v class:HTTPStatus +CREATED Lib/test/test_httplib.py /^ CREATED = 201, 'Created', 'Document created, URL follows'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +CREATED Lib/turtledemo/nim.py /^ CREATED = 0$/;" v class:Nim +CREATE_TYPE Modules/_asynciomodule.c 3749;" d file: +CREATE_TYPE Modules/_asynciomodule.c 3763;" d file: +CREATE_TYPE Modules/_ctypes/_ctypes.c 5660;" d file: +CREATE_TYPE Modules/_ctypes/_ctypes.c 5726;" d file: +CREATE_TYPE Modules/_elementtree.c 4318;" d file: +CREATE_TYPE Modules/_pickle.c 7893;" d file: +CREATE_TYPE Modules/_pickle.c 7907;" d file: +CREATE_TYPE Modules/_sre/sre.c 3171;" d file: +CREATE_TYPE Modules/arraymodule.c 3040;" d file: +CREATE_TYPE Modules/cjkcodecs/multibytecodec.c 2019;" d file: +CREATE_TYPE Modules/cjkcodecs/multibytecodec.c 2055;" d file: +CREATE_WAITABLE_TIMER_HIGH_RESOLUTION Modules/timemodule.c 467;" d file: +CREATE_WINDOW_FUNCTION_METHODDEF Modules/_sqlite/clinic/connection.c.h 1650;" d +CREATE_WINDOW_FUNCTION_METHODDEF Modules/_sqlite/clinic/connection.c.h 499;" d +CRITICAL Lib/logging/__init__.py /^CRITICAL = 50$/;" v +CRLF Lib/email/base64mime.py /^CRLF = '\\r\\n'$/;" v +CRLF Lib/email/quoprimime.py /^CRLF = '\\r\\n'$/;" v +CRLF Lib/email/utils.py /^CRLF = '\\r\\n'$/;" v +CRLF Lib/ftplib.py /^CRLF = '\\r\\n'$/;" v +CRLF Lib/imaplib.py /^CRLF = b'\\r\\n'$/;" v +CRLF Lib/poplib.py /^CRLF = CR+LF$/;" v +CRLF Lib/smtplib.py /^CRLF = "\\r\\n"$/;" v +CRLFILE Lib/test/test_ssl.py /^CRLFILE = data_file("revocation.crl")$/;" v +CRLockTests Lib/test/test_threading.py /^class CRLockTests(lock_tests.RLockTests):$/;" c +CRYPTO_EX_DATA Lib/test/test_lib2to3/data/infinite_recursion.py /^CRYPTO_EX_DATA = crypto_ex_data_st$/;" v +CRYPTO_EX_DATA_FUNCS Lib/test/test_lib2to3/data/infinite_recursion.py /^CRYPTO_EX_DATA_FUNCS = crypto_ex_data_func_st$/;" v +CRYPTO_EX_DATA_IMPL Lib/test/test_lib2to3/data/infinite_recursion.py /^CRYPTO_EX_DATA_IMPL = st_CRYPTO_EX_DATA_IMPL$/;" v +CRYPTO_EX_dup Lib/test/test_lib2to3/data/infinite_recursion.py /^CRYPTO_EX_dup = CFUNCTYPE(c_int, POINTER(CRYPTO_EX_DATA), POINTER(CRYPTO_EX_DATA), c_void_p, c_int, c_long, c_void_p)$/;" v +CRYPTO_EX_free Lib/test/test_lib2to3/data/infinite_recursion.py /^CRYPTO_EX_free = CFUNCTYPE(None, c_void_p, c_void_p, POINTER(CRYPTO_EX_DATA), c_int, c_long, c_void_p)$/;" v +CRYPTO_EX_new Lib/test/test_lib2to3/data/infinite_recursion.py /^CRYPTO_EX_new = CFUNCTYPE(c_int, c_void_p, c_void_p, POINTER(CRYPTO_EX_DATA), c_int, c_long, c_void_p)$/;" v +CRYPTO_MEM_LEAK_CB Lib/test/test_lib2to3/data/infinite_recursion.py /^CRYPTO_MEM_LEAK_CB = CFUNCTYPE(c_void_p, c_ulong, STRING, c_int, c_int, c_void_p)$/;" v +CRYPTO_dynlock Lib/test/test_lib2to3/data/infinite_recursion.py /^class CRYPTO_dynlock(Structure):$/;" c +CRYPTO_dynlock_value Lib/test/test_lib2to3/data/infinite_recursion.py /^class CRYPTO_dynlock_value(Structure):$/;" c +CRYPT_CRYPT_METHODDEF Modules/clinic/_cryptmodule.c.h 22;" d +CRaiseRecorder Lib/test/test_monitoring.py /^class CRaiseRecorder(CEventRecorder):$/;" c +CRenderData Tools/clinic/clinic.py /^class CRenderData:$/;" c +CReturnConverter Tools/clinic/clinic.py /^class CReturnConverter(metaclass=CReturnConverterAutoRegister):$/;" c +CReturnConverterAutoRegister Tools/clinic/clinic.py /^class CReturnConverterAutoRegister(type):$/;" c +CReturnRecorder Lib/test/test_monitoring.py /^class CReturnRecorder(CEventRecorder):$/;" c +CSignalsTest Lib/test/test_io.py /^class CSignalsTest(SignalsTest):$/;" c +CSimpleLRUCacheTests Lib/test/test_ordered_dict.py /^class CSimpleLRUCacheTests(SimpleLRUCacheTests, unittest.TestCase):$/;" c +CSimpleQueueTest Lib/test/test_queue.py /^class CSimpleQueueTest(BaseSimpleQueueTest, unittest.TestCase):$/;" c +CSlowFlushRawIO Lib/test/test_io.py /^class CSlowFlushRawIO(SlowFlushRawIO, io.RawIOBase):$/;" c +CSpecialContexts Lib/test/test_decimal.py /^class CSpecialContexts(SpecialContexts, unittest.TestCase):$/;" c +CStringIOPickleTest Lib/test/test_memoryio.py /^class CStringIOPickleTest(PyStringIOPickleTest):$/;" c +CStringIOTest Lib/test/test_memoryio.py /^class CStringIOTest(PyStringIOTest):$/;" c +CSub Lib/test/test_typing.py /^class CSub(B):$/;" c +CSubFuture Lib/test/test_asyncio/test_futures.py /^ class CSubFuture(futures._CFuture):$/;" c class:CSubFutureTests +CSubFuture Lib/test/test_asyncio/test_futures.py /^ class CSubFuture(futures._CFuture):$/;" c function:CSubFutureDoneCallbackTests._new_future +CSubFutureDoneCallbackTests Lib/test/test_asyncio/test_futures.py /^ test_utils.TestCase):$/;" c +CSubFutureTests Lib/test/test_asyncio/test_futures.py /^class CSubFutureTests(BaseFutureTests, test_utils.TestCase):$/;" c +CTRL Modules/termios.c 8;" d file: +CTX Modules/_decimal/_decimal.c 101;" d file: +CTX Modules/_decimal/_decimal.c 113;" d file: +CTYPES_CAPSULE_NAME_PYMEM Modules/_ctypes/callproc.c 102;" d file: +CTYPES_CFIELD_CAPSULE_NAME_PYMEM Modules/_ctypes/cfield.c 18;" d file: +CTYPES_MAX_ARGCOUNT Modules/_ctypes/ctypes.h 23;" d +CTYPES_MAX_ARGCOUNT Modules/_ctypes/ctypes.h 25;" d +CTYPES_PASS_BY_REF_HACK Modules/_ctypes/callproc.c 1137;" d file: +CTZDataTests Lib/test/test_zoneinfo/test_zoneinfo.py /^class CTZDataTests(TZDataTests):$/;" c +CTZStrTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CTZStrTest(TZStrTest):$/;" c +CT_co Lib/typing.py /^CT_co = TypeVar('CT_co', covariant=True, bound=type)$/;" v +CTaskSubclass_PyFuture_Tests Lib/test/test_asyncio/test_tasks.py /^class CTaskSubclass_PyFuture_Tests(BaseTaskTests, test_utils.TestCase):$/;" c +CTask_CFuture_SubclassTests Lib/test/test_asyncio/test_tasks.py /^class CTask_CFuture_SubclassTests(BaseTaskTests, test_utils.TestCase):$/;" c +CTask_CFuture_Tests Lib/test/test_asyncio/test_tasks.py /^ test_utils.TestCase):$/;" c +CTask_Future_Tests Lib/test/test_asyncio/test_tasks.py /^class CTask_Future_Tests(test_utils.TestCase):$/;" c +CTask_PyFuture_Tests Lib/test/test_asyncio/test_tasks.py /^class CTask_PyFuture_Tests(BaseTaskTests, test_utils.TestCase):$/;" c +CTest Lib/test/test_json/__init__.py /^class CTest(unittest.TestCase):$/;" c +CTest Lib/test/test_univnewlines.py /^class CTest:$/;" c +CTestBufferedIOSignalInterrupt Lib/test/test_file_eintr.py /^class CTestBufferedIOSignalInterrupt(TestBufferedIOSignalInterrupt, unittest.TestCase):$/;" c +CTestCRLFNewlines Lib/test/test_univnewlines.py /^class CTestCRLFNewlines(CTest, TestCRLFNewlines, unittest.TestCase): pass$/;" c +CTestCRNewlines Lib/test/test_univnewlines.py /^class CTestCRNewlines(CTest, TestCRNewlines, unittest.TestCase): pass$/;" c +CTestFileIOSignalInterrupt Lib/test/test_file_eintr.py /^class CTestFileIOSignalInterrupt(TestFileIOSignalInterrupt, unittest.TestCase):$/;" c +CTestLFNewlines Lib/test/test_univnewlines.py /^class CTestLFNewlines(CTest, TestLFNewlines, unittest.TestCase): pass$/;" c +CTestMixedNewlines Lib/test/test_univnewlines.py /^class CTestMixedNewlines(CTest, TestMixedNewlines, unittest.TestCase): pass$/;" c +CTestModule Lib/test/test_zoneinfo/test_zoneinfo.py /^class CTestModule(TestModule):$/;" c +CTestTextIOSignalInterrupt Lib/test/test_file_eintr.py /^class CTestTextIOSignalInterrupt(TestTextIOSignalInterrupt, unittest.TestCase):$/;" c +CTextIOWrapperTest Lib/test/test_io.py /^class CTextIOWrapperTest(TextIOWrapperTest):$/;" c +CThreadingTest Lib/test/test_decimal.py /^class CThreadingTest(ThreadingTest, unittest.TestCase):$/;" c +CThunkObject Modules/_ctypes/ctypes.h /^} CThunkObject;$/;" t typeref:struct:__anon492 +CThunkObject_clear Modules/_ctypes/callbacks.c /^CThunkObject_clear(PyObject *myself)$/;" f file: +CThunkObject_dealloc Modules/_ctypes/callbacks.c /^CThunkObject_dealloc(PyObject *myself)$/;" f file: +CThunkObject_new Modules/_ctypes/callbacks.c /^static CThunkObject* CThunkObject_new(Py_ssize_t nargs)$/;" f file: +CThunkObject_traverse Modules/_ctypes/callbacks.c /^CThunkObject_traverse(PyObject *myself, visitproc visit, void *arg)$/;" f file: +CThunk_CheckExact Modules/_ctypes/ctypes.h 110;" d +CTypesTestPathLikeCls Lib/test/test_ctypes/test_loading.py /^ class CTypesTestPathLikeCls:$/;" c function:LoaderTest.test_load +CTzPathTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CTzPathTest(TzPathTest):$/;" c +CUMULATIVE Lib/pstats.py /^ CUMULATIVE = 'cumulative', 'cumtime'$/;" v class:SortKey +CUMULATIVE Lib/test/test_pstats.py /^ CUMULATIVE = 'cumulative', 'cumtime'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +CURLY Lib/test/test_enum.py /^ CURLY = 2$/;" v class:.FlagStooges +CURLY Lib/test/test_enum.py /^ CURLY = 2$/;" v class:.IntStooges +CURLY Lib/test/test_enum.py /^ CURLY = 2$/;" v class:.Stooges +CURLY Lib/test/test_enum.py /^ CURLY = 2.72$/;" v class:.FloatStooges +CURLY Lib/test/test_enum.py /^ CURLY = 2$/;" v class:FlagStoogesWithZero +CURLY Lib/test/test_enum.py /^ CURLY = 2$/;" v class:IntFlagStooges +CURLY Lib/test/test_enum.py /^ CURLY = 2$/;" v class:IntFlagStoogesWithZero +CURRDIR Lib/idlelib/idle.bat /^set CURRDIR=%~dp0$/;" v +CURRENT Lib/tkinter/constants.py /^CURRENT='current'$/;" v +CURRENT_CONTEXT Modules/_decimal/_decimal.c 1606;" d file: +CURRENT_CONTEXT Modules/_decimal/_decimal.c 1701;" d file: +CURRENT_POS Parser/pegen.h 27;" d +CURSES_MODULE Modules/_cursesmodule.c 117;" d file: +CUT_OPERATOR Tools/peg_generator/pegen/c_generator.py /^ CUT_OPERATOR = 6$/;" v class:NodeTypes +CUnpicklerTests Lib/test/test_pickle.py /^ class CUnpicklerTests(PyUnpicklerTests):$/;" c +CUsabilityTest Lib/test/test_decimal.py /^class CUsabilityTest(UsabilityTest, unittest.TestCase):$/;" c +CV Lib/test/ann_module2.py /^class CV:$/;" c +CV Lib/test/dataclass_module_1.py /^class CV:$/;" c +CV Lib/test/dataclass_module_1_str.py /^class CV:$/;" c +CV Lib/test/dataclass_module_2.py /^class CV:$/;" c +CV Lib/test/dataclass_module_2_str.py /^class CV:$/;" c +CVOIDP Lib/test/test_ctypes/test_parameters.py /^ class CVOIDP(c_void_p):$/;" c function:SimpleTypesTestCase.test_subclasses +CWCHARP Lib/test/test_ctypes/test_parameters.py /^ class CWCHARP(c_wchar_p):$/;" c function:SimpleTypesTestCase.test_subclasses_c_wchar_p +CWCmdLineTests Lib/test/test_warnings/__init__.py /^class CWCmdLineTests(WCmdLineTests, unittest.TestCase):$/;" c +CWarnTests Lib/test/test_warnings/__init__.py /^class CWarnTests(WarnTests, unittest.TestCase):$/;" c +CWarningsDisplayTests Lib/test/test_warnings/__init__.py /^class CWarningsDisplayTests(WarningsDisplayTests, unittest.TestCase):$/;" c +CWeirdZoneTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CWeirdZoneTest(WeirdZoneTest):$/;" c +CWhitebox Lib/test/test_decimal.py /^class CWhitebox(unittest.TestCase):$/;" c +CYAN Lib/test/test_enum.py /^ CYAN = 1$/;" v class:TestStdLib.test_test_simple_enum.CheckedColor +CYAN Lib/test/test_enum.py /^ CYAN = 1$/;" v class:TestStdLib.test_test_simple_enum.SimpleColor +CYAN Lib/test/test_enum.py /^ CYAN = 1$/;" v class:TestStdLib.Color +CYG_CACHE PCbuild/prepare_libffi.bat /^if NOT DEFINED CYG_CACHE (set CYG_CACHE=C:\/cygwin\/var\/cache\/setup)$/;" v +CYG_MIRROR PCbuild/prepare_libffi.bat /^if NOT DEFINED CYG_MIRROR (set CYG_MIRROR=http:\/\/mirrors.kernel.org\/sourceware\/cygwin\/)$/;" v +CYG_ROOT PCbuild/prepare_libffi.bat /^if NOT DEFINED CYG_ROOT (set CYG_ROOT=c:\/cygwin)$/;" v +CZoneInfoCacheTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CZoneInfoCacheTest(ZoneInfoCacheTest):$/;" c +CZoneInfoCacheTest Lib/test/test_zoneinfo/test_zoneinfo_property.py /^class CZoneInfoCacheTest(ZoneInfoCacheTest):$/;" c +CZoneInfoDatetimeSubclassTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CZoneInfoDatetimeSubclassTest(DatetimeSubclassMixin, CZoneInfoTest):$/;" c +CZoneInfoPickleTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CZoneInfoPickleTest(ZoneInfoPickleTest):$/;" c +CZoneInfoPickleTest Lib/test/test_zoneinfo/test_zoneinfo_property.py /^class CZoneInfoPickleTest(ZoneInfoPickleTest):$/;" c +CZoneInfoSubclassTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CZoneInfoSubclassTest(ZoneInfoSubclassTest):$/;" c +CZoneInfoTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CZoneInfoTest(ZoneInfoTest):$/;" c +CZoneInfoTest Lib/test/test_zoneinfo/test_zoneinfo_property.py /^class CZoneInfoTest(ZoneInfoTest):$/;" c +CZoneInfoV1Test Lib/test/test_zoneinfo/test_zoneinfo.py /^class CZoneInfoV1Test(ZoneInfoV1Test):$/;" c +C_CALL_EVENTS Python/instrumentation.c 1671;" d file: +C_CONTIGUOUS Lib/inspect.py /^ C_CONTIGUOUS = 0x20 | STRIDES$/;" v class:BufferFlags +C_HMAC Lib/test/test_hmac.py /^ C_HMAC = None$/;" v +C_LOCALE_COERCION_WARNING Python/pylifecycle.c /^static const char C_LOCALE_COERCION_WARNING[] =$/;" v file: +C_OK Lib/test/ann_module3.py /^class C_OK:$/;" c +C_RECURSION_LIMIT Include/cpython/pystate.h 256;" d +C_RECURSION_LIMIT Include/cpython/pystate.h 259;" d +C_RECURSION_LIMIT Lib/test/support/__init__.py /^C_RECURSION_LIMIT = 1500$/;" v +C_RETURN_EVENTS Python/instrumentation.c 1667;" d file: +C_SOURCE_SUFFIXES Tools/c-analyzer/c_common/fsutil.py /^C_SOURCE_SUFFIXES = ('.c', '.h')$/;" v +C_Test Lib/test/test_ctypes/test_bitfields.py /^class C_Test(unittest.TestCase):$/;" c +C_get_vars Lib/test/test_builtin.py /^ class C_get_vars(object):$/;" c class:BuiltinTest +C_is_none Lib/test/test_genericclass.py /^ class C_is_none(tuple):$/;" c function:TestClassGetitem.test_class_getitem_errors_2 +C_method Lib/test/pydocfodder.py /^ def C_method(self):$/;" m class:C_new +C_new Lib/test/pydocfodder.py /^class C_new(A_new):$/;" c +C_not_callable Lib/test/test_genericclass.py /^ class C_not_callable:$/;" c function:TestClassGetitem.test_class_getitem_errors_2 +C_not_callable Lib/test/test_genericclass.py /^ class C_not_callable:$/;" c function:TestMROEntry.test_mro_entry_errors_2 +C_not_tuple Lib/test/test_genericclass.py /^ class C_not_tuple:$/;" c function:TestMROEntry.test_mro_entry_errors_2 +C_too_few Lib/test/test_genericclass.py /^ class C_too_few:$/;" c function:TestClassGetitem.test_class_getitem_errors +C_too_few Lib/test/test_genericclass.py /^ class C_too_few:$/;" c function:TestMROEntry.test_mro_entry_errors +C_too_many Lib/test/test_genericclass.py /^ class C_too_many:$/;" c function:TestClassGetitem.test_class_getitem_errors +C_too_many Lib/test/test_genericclass.py /^ class C_too_many:$/;" c function:TestMROEntry.test_mro_entry_errors +C_went_away Lib/test/test_weakref.py /^ def C_went_away(ignore):$/;" f function:ReferencesTestCase.test_callback_in_cycle_resurrection +CacheEffect Tools/cases_generator/parser.py /^class CacheEffect(Node):$/;" c +CacheFTPHandler Lib/urllib/request.py /^class CacheFTPHandler(FTPHandler):$/;" c +CacheTests Lib/test/test_strptime.py /^class CacheTests(unittest.TestCase):$/;" c +CachedCostItem Lib/test/test_functools.py /^class CachedCostItem:$/;" c +CachedCostItemWithSlots Lib/test/test_functools.py /^class CachedCostItemWithSlots:$/;" c +CalculationTests Lib/test/test_strptime.py /^class CalculationTests(unittest.TestCase):$/;" c +Calendar Lib/calendar.py /^class Calendar(object):$/;" c +CalendarRule Modules/_zoneinfo.c /^} CalendarRule;$/;" t typeref:struct:__anon639 file: +CalendarTestCase Lib/test/test_calendar.py /^class CalendarTestCase(unittest.TestCase):$/;" c +Call Include/internal/pycore_ast.h /^ } Call;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon94 +Call Lib/lib2to3/fixer_util.py /^def Call(func_name, args=None, prefix=None):$/;" f +CallA Lib/idlelib/idle_test/test_calltip.py /^ class CallA(NoCall):$/;" c function:.test_buggy_getattr_class +CallB Lib/idlelib/idle_test/test_calltip.py /^ class CallB(NoCall):$/;" c function:.test_buggy_getattr_class +CallExternalTimer Modules/_lsprof.c /^static _PyTime_t CallExternalTimer(ProfilerObject *pObj)$/;" f file: +CallFormatter Lib/test/test_string.py /^ class CallFormatter(string.Formatter):$/;" c function:ModuleTest.test_override_format_field +CallModuleDllMain PC/frozen_dllmain.c /^BOOL CallModuleDllMain(char *modName, DWORD dwReason)$/;" f +CallRecorder Lib/test/test_monitoring.py /^class CallRecorder:$/;" c +CallSignature Lib/test/test_importlib/import_/test_meta_path.py /^class CallSignature:$/;" c +CallSignaturePEP451 Lib/test/test_importlib/import_/test_meta_path.py /^class CallSignaturePEP451(CallSignature):$/;" c +CallSignoreSuppressImportWarning Lib/test/test_importlib/import_/test_meta_path.py /^class CallSignoreSuppressImportWarning(CallSignature):$/;" c +CallStats Include/pystats.h /^} CallStats;$/;" t typeref:struct:_call_stats +CallTest Lib/test/test_unittest/testmock/testhelpers.py /^class CallTest(unittest.TestCase):$/;" c +CallTipWindowTest Lib/idlelib/idle_test/test_calltip_w.py /^class CallTipWindowTest(unittest.TestCase):$/;" c +CallWrapper Lib/tkinter/__init__.py /^class CallWrapper:$/;" c +Call_CanUnloadNow Modules/_ctypes/callbacks.c /^long Call_CanUnloadNow(void)$/;" f +Call_GetClassObject Modules/_ctypes/callbacks.c /^long Call_GetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)$/;" f +Call_fields Python/Python-ast.c /^static const char * const Call_fields[]={$/;" v file: +Call_kind Include/internal/pycore_ast.h /^ YieldFrom_kind=15, Compare_kind=16, Call_kind=17,$/;" e enum:_expr_kind +Call_type Include/internal/pycore_ast_state.h /^ PyObject *Call_type;$/;" m struct:ast_state +Callable Lib/_collections_abc.py /^class Callable(metaclass=ABCMeta):$/;" c +Callable Lib/test/inspect_fodder.py /^class Callable:$/;" c +Callable Lib/test/test_typing.py /^ Callable = collections.abc.Callable$/;" v class:CollectionsCallableTests +Callable Lib/test/test_typing.py /^ Callable = typing.Callable$/;" v class:TypingCallableTests +Callable Lib/test/test_unittest/testmock/testhelpers.py /^ class Callable(object):$/;" c function:SpecSignatureTest.test_signature_callable +Callable Lib/test/test_unittest/testmock/testhelpers.py /^ class Callable:$/;" c function:TestCallablePredicate.test_call_magic_method +Callable Lib/test/test_weakref.py /^class Callable:$/;" c +Callable Lib/typing.py /^Callable = _CallableType(collections.abc.Callable, 2)$/;" v +CallableIterClass Lib/test/test_iter.py /^class CallableIterClass:$/;" c +CallableMembersProto Lib/test/test_typing.py /^ class CallableMembersProto(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +CallableMixin Lib/unittest/mock.py /^class CallableMixin(Base):$/;" c +CallableX Lib/test/test_unittest/testmock/testcallable.py /^ class CallableX(X):$/;" c function:TestCallable.test_patch_spec_callable_class +CallbackTracbackTestCase Lib/test/test_ctypes/test_random_things.py /^class CallbackTracbackTestCase(unittest.TestCase):$/;" c +Callbacks Lib/test/test_ctypes/test_callbacks.py /^class Callbacks(unittest.TestCase):$/;" c +Called Lib/test/test_shutil.py /^ class Called(Exception): pass$/;" c function:TestRmTree.test_rmtree_uses_safe_fd_version_if_available +CalledProcessError Lib/subprocess.py /^class CalledProcessError(SubprocessError):$/;" c +CallingConventionTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class CallingConventionTest(ZoneInfoTestBase):$/;" c +CallingOrder Lib/test/test_importlib/import_/test_meta_path.py /^class CallingOrder:$/;" c +Calltip Lib/idlelib/calltip.py /^class Calltip:$/;" c +CalltipTest Lib/idlelib/idle_test/test_calltip.py /^class CalltipTest(unittest.TestCase):$/;" c +CalltipWindow Lib/idlelib/calltip_w.py /^class CalltipWindow(TooltipBase):$/;" c +CancelWindowTest Lib/idlelib/idle_test/test_config_key.py /^class CancelWindowTest(unittest.TestCase):$/;" c +CancelledError Lib/asyncio/exceptions.py /^class CancelledError(BaseException):$/;" c +CancelledError Lib/concurrent/futures/_base.py /^class CancelledError(Error):$/;" c +CannotSendHeader Lib/http/client.py /^class CannotSendHeader(ImproperConnectionState):$/;" c +CannotSendRequest Lib/http/client.py /^class CannotSendRequest(ImproperConnectionState):$/;" c +Canvas Lib/tkinter/__init__.py /^class Canvas(Widget, XView, YView):$/;" c +Canvas Lib/turtle.py /^Canvas = TK.Canvas$/;" v +CanvasTest Lib/test/test_tkinter/test_widgets.py /^class CanvasTest(AbstractWidgetTest, unittest.TestCase):$/;" c +CapiTest Lib/test/datetimetester.py /^class CapiTest(unittest.TestCase):$/;" c +CapsAfterLoginNNTPv2Handler Lib/test/test_nntplib.py /^class CapsAfterLoginNNTPv2Handler(NNTPv2Handler):$/;" c +CapsAfterLoginNNTPv2Tests Lib/test/test_nntplib.py /^class CapsAfterLoginNNTPv2Tests(MockedNNTPTestsMixin, unittest.TestCase):$/;" c +CapturePolicy Lib/test/test_email/test_defect_handling.py /^ class CapturePolicy(policy.EmailPolicy):$/;" c class:TestDefectCapture +Capybara Lib/test/test_typing.py /^ class Capybara[T]:$/;" c function:ProtocolTests.test_pep695_generics_can_be_runtime_checkable +Cargo Lib/test/test_gc.py /^ class Cargo:$/;" c function:GCTests.test_resurrection_is_transitive +CaseChangeOverSubstitution Lib/test/test_traceback.py /^ class CaseChangeOverSubstitution:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions +CaseInsensitiveStrEnum Lib/test/test_enum.py /^ class CaseInsensitiveStrEnum(str, Enum):$/;" c function:TestSpecial.test_multiple_mixin_with_common_data_type +CaseSensitivityTest Lib/test/test_importlib/source/test_case_sensitivity.py /^class CaseSensitivityTest(util.CASEOKTestBase):$/;" c +CaseSensitivityTestPEP451 Lib/test/test_importlib/source/test_case_sensitivity.py /^class CaseSensitivityTestPEP451(CaseSensitivityTest):$/;" c +CastTests Lib/test/test_typing.py /^class CastTests(BaseTestCase):$/;" c +Cat Lib/test/test_typing.py /^ class Cat(Animal):$/;" c function:TypedDictTests.test_keys_inheritance +Catalog Lib/gettext.py /^Catalog = translation$/;" v +CatchWarningTests Lib/test/test_warnings/__init__.py /^class CatchWarningTests(BaseTest):$/;" c +Cbad2 Lib/test/test_grammar.py /^ class Cbad2(C):$/;" c class:GrammarTests.test_var_annot_basic_semantics.C +Cc Tools/unicode/mkstringprep.py /^Cc = set(gen_category(["Cc"]))$/;" v +Cc_ascii Tools/unicode/mkstringprep.py /^Cc_ascii = Cc & set(range(128))$/;" v +Cc_nonascii Tools/unicode/mkstringprep.py /^Cc_nonascii = Cc - Cc_ascii$/;" v +Cdata Lib/test/test_descr.py /^ Cdata = 1$/;" v class:.test_dir.C +Cdict Lib/test/test_descr.py /^ class Cdict(object):$/;" c function:.test_object_class +CellTest Lib/test/test_funcattrs.py /^class CellTest(unittest.TestCase):$/;" c +CellType Lib/types.py /^CellType = type(_cell_factory())$/;" v +Central Doc/includes/tzinfo_examples.py /^Central = USTimeZone(-6, "Central", "CST", "CDT")$/;" v +Central Lib/test/datetimetester.py /^Central = USTimeZone(-6, "Central", "CST", "CDT")$/;" v +Central2 Lib/test/datetimetester.py /^Central2 = USTimeZone2(-6, "Central2", "CST", "CDT")$/;" v +CertificateError Lib/ssl.py /^CertificateError = SSLCertVerificationError$/;" v +CfgOptimizationTestCase Lib/test/support/bytecode_helper.py /^class CfgOptimizationTestCase(CompilationStepTestCase):$/;" c +CfgParserTestCaseClass Lib/test/test_configparser.py /^class CfgParserTestCaseClass:$/;" c +CgiTests Lib/test/test_cgi.py /^class CgiTests(unittest.TestCase):$/;" c +ChainMap Lib/collections/__init__.py /^class ChainMap(_collections_abc.MutableMapping):$/;" c +ChainMap Lib/typing.py /^ChainMap = _alias(collections.ChainMap, 2)$/;" v +ChainOfVisitors Parser/asdl_c.py /^class ChainOfVisitors:$/;" c +ChainedBase Lib/test/test_finalization.py /^class ChainedBase:$/;" c +ChainedResurrector Lib/test/test_finalization.py /^class ChainedResurrector(ChainedBase, SimpleResurrector):$/;" c +ChallengeResponseTest Lib/test/_test_multiprocessing.py /^class ChallengeResponseTest(unittest.TestCase):$/;" c +ChangeTime Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER ChangeTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +ChangesTest Lib/idlelib/idle_test/test_config.py /^class ChangesTest(unittest.TestCase):$/;" c +ChannelAction Lib/test/test__xxinterpchannels.py /^class ChannelAction(namedtuple('ChannelAction', 'action end interp')):$/;" c +ChannelCloseFixture Lib/test/test__xxinterpchannels.py /^ 'end interp other extra creator')):$/;" c +ChannelClosedError Modules/_xxinterpchannelsmodule.c /^ PyObject *ChannelClosedError;$/;" m struct:__anon366 file: +ChannelEmptyError Modules/_xxinterpchannelsmodule.c /^ PyObject *ChannelEmptyError;$/;" m struct:__anon366 file: +ChannelError Modules/_xxinterpchannelsmodule.c /^ PyObject *ChannelError;$/;" m struct:__anon366 file: +ChannelIDTests Lib/test/test__xxinterpchannels.py /^class ChannelIDTests(TestBase):$/;" c +ChannelIDType Modules/_xxinterpchannelsmodule.c /^ PyTypeObject *ChannelIDType;$/;" m struct:__anon366 file: +ChannelIDType_slots Modules/_xxinterpchannelsmodule.c /^static PyType_Slot ChannelIDType_slots[] = {$/;" v file: +ChannelIDType_spec Modules/_xxinterpchannelsmodule.c /^static PyType_Spec ChannelIDType_spec = {$/;" v file: +ChannelNotEmptyError Modules/_xxinterpchannelsmodule.c /^ PyObject *ChannelNotEmptyError;$/;" m struct:__anon366 file: +ChannelNotFoundError Modules/_xxinterpchannelsmodule.c /^ PyObject *ChannelNotFoundError;$/;" m struct:__anon366 file: +ChannelReleaseTests Lib/test/test__xxinterpchannels.py /^class ChannelReleaseTests(TestBase):$/;" c +ChannelState Lib/test/test__xxinterpchannels.py /^class ChannelState(namedtuple('ChannelState', 'pending closed')):$/;" c +ChannelTests Lib/test/test__xxinterpchannels.py /^class ChannelTests(TestBase):$/;" c +CharArray_get_raw Modules/_ctypes/_ctypes.c /^CharArray_get_raw(CDataObject *self, void *Py_UNUSED(ignored))$/;" f file: +CharArray_get_value Modules/_ctypes/_ctypes.c /^CharArray_get_value(CDataObject *self, void *Py_UNUSED(ignored))$/;" f file: +CharArray_getsets Modules/_ctypes/_ctypes.c /^static PyGetSetDef CharArray_getsets[] = {$/;" v file: +CharArray_set_raw Modules/_ctypes/_ctypes.c /^CharArray_set_raw(CDataObject *self, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +CharArray_set_value Modules/_ctypes/_ctypes.c /^CharArray_set_value(CDataObject *self, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +CharPointersTestCase Lib/test/test_ctypes/test_prototypes.py /^class CharPointersTestCase(unittest.TestCase):$/;" c +CharacterData Lib/xml/dom/minidom.py /^class CharacterData(Childless, Node):$/;" c +CharacterData Modules/pyexpat.c /^ CharacterData,$/;" e enum:HandlerTypes file: +CharacterDataHandler Lib/test/test_pyexpat.py /^ def CharacterDataHandler(self, data):$/;" m class:ParseTest.Outputter +CharacterDataHandler Lib/test/test_pyexpat.py /^ def CharacterDataHandler(self, text):$/;" m class:BufferTextTest +ChardataBufferTest Lib/test/test_pyexpat.py /^class ChardataBufferTest(unittest.TestCase):$/;" c +CharmapCodecTest Lib/test/test_charmapcodec.py /^class CharmapCodecTest(unittest.TestCase):$/;" c +CharmapTest Lib/test/test_codecs.py /^class CharmapTest(unittest.TestCase):$/;" c +Charset Lib/email/charset.py /^class Charset:$/;" c +Charset Lib/email/header.py /^Charset = _charset.Charset$/;" v +Charset Lib/email/message.py /^Charset = _charset.Charset$/;" v +CharsetError Lib/email/errors.py /^class CharsetError(MessageError):$/;" c +CharsetMock Lib/test/test_email/test_email.py /^ class CharsetMock:$/;" c function:TestMiscellaneous.test_accepts_any_charset_like_object +Check Lib/test/test_ctypes/test_callbacks.py /^ class Check: pass$/;" c function:SampleCallbacksTestCase.test_callback_large_struct +Check Parser/asdl.py /^class Check(VisitorBase):$/;" c +CheckActualTests Lib/test/test_regrtest.py /^class CheckActualTests(BaseTestCase):$/;" c +CheckAllUsedFormatter Lib/test/test_string.py /^ class CheckAllUsedFormatter(string.Formatter):$/;" c function:ModuleTest.test_check_unused_args +CheckAttributes Lib/test/test_decimal.py /^class CheckAttributes(unittest.TestCase):$/;" c +CheckBox Lib/msilib/schema.py /^CheckBox = Table('CheckBox')$/;" v +CheckDtraceProbes Lib/test/test_dtrace.py /^class CheckDtraceProbes(unittest.TestCase):$/;" c +CheckEvents Lib/test/test_monitoring.py /^class CheckEvents(MonitoringTestBase, unittest.TestCase):$/;" c +CheckList Lib/tkinter/tix.py /^class CheckList(TixWidget):$/;" c +CheckLoadModuleApi Lib/test/test_modulefinder.py /^ class CheckLoadModuleApi(modulefinder.ModuleFinder):$/;" c function:ModuleFinderTest.test_load_module_api +CheckOpts PCbuild/build.bat /^:CheckOpts$/;" l +CheckOpts PCbuild/get_externals.bat /^:CheckOpts$/;" l +CheckOpts PCbuild/idle.bat /^:CheckOpts$/;" l +CheckOpts PCbuild/prepare_libffi.bat /^:CheckOpts$/;" l +CheckOpts PCbuild/prepare_ssl.bat /^:CheckOpts$/;" l +CheckOpts PCbuild/prepare_tcltk.bat /^:CheckOpts$/;" l +CheckOpts PCbuild/rt.bat /^:CheckOpts$/;" l +CheckOpts Tools/buildbot/remoteDeploy.bat /^:CheckOpts$/;" l +CheckOpts Tools/buildbot/remotePythonInfo.bat /^:CheckOpts$/;" l +CheckOpts Tools/buildbot/test.bat /^:CheckOpts$/;" l +CheckOpts Tools/msi/build.bat /^:CheckOpts$/;" l +CheckOpts Tools/msi/buildrelease.bat /^:CheckOpts$/;" l +CheckOpts Tools/msi/get_externals.bat /^:CheckOpts$/;" l +CheckOpts Tools/msi/testrelease.bat /^:CheckOpts$/;" l +CheckOpts Tools/msi/uploadrelease.bat /^:CheckOpts$/;" l +CheckOpts Tools/nuget/build.bat /^:CheckOpts$/;" l +CheckOptsDone PCbuild/prepare_libffi.bat /^:CheckOptsDone$/;" l +Checkbutton Lib/tkinter/__init__.py /^class Checkbutton(Widget):$/;" c +Checkbutton Lib/tkinter/ttk.py /^class Checkbutton(Widget):$/;" c +CheckbuttonTest Lib/test/test_tkinter/test_widgets.py /^class CheckbuttonTest(AbstractLabelTest, unittest.TestCase):$/;" c +CheckbuttonTest Lib/test/test_ttk/test_widgets.py /^class CheckbuttonTest(AbstractLabelTest, unittest.TestCase):$/;" c +CheckedColor Lib/test/test_enum.py /^ class CheckedColor(Enum):$/;" c function:TestStdLib.test_test_simple_enum +CheckedEventType Lib/test/test_tkinter/test_misc.py /^ class CheckedEventType(enum.StrEnum):$/;" c function:MiscTest.test_eventtype_enum +CheckedHTTPStatus Lib/test/test_httplib.py /^ class CheckedHTTPStatus(enum.IntEnum):$/;" c function:BasicTest.test_simple_httpstatus +CheckedMissing Lib/test/test_enum.py /^ class CheckedMissing(IntFlag, boundary=KEEP):$/;" c function:TestStdLib.test_test_simple_enum +CheckedSafeUUID Lib/test/test_uuid.py /^ class CheckedSafeUUID(enum.Enum):$/;" c function:BaseTestUUID.test_safe_uuid_enum +CheckedSortKey Lib/test/test_pstats.py /^ class CheckedSortKey(StrEnum):$/;" c function:StatsTestCase.test_sort_stats_enum +CheckedTLSVersion Lib/test/test_ssl.py /^ class CheckedTLSVersion(enum.IntEnum):$/;" c function:TestEnumerations.test_tlsversion +Checked_TLSAlertType Lib/test/test_ssl.py /^ class Checked_TLSAlertType(enum.IntEnum):$/;" c function:TestEnumerations.test_tlsalerttype +Checked_TLSContentType Lib/test/test_ssl.py /^ class Checked_TLSContentType(enum.IntEnum):$/;" c function:TestEnumerations.test_tlscontenttype +Checked_TLSMessageType Lib/test/test_ssl.py /^ class Checked_TLSMessageType(enum.IntEnum):$/;" c function:TestEnumerations.test_tlsmessagetype +Checker Lib/test/test_descr.py /^ class Checker(object):$/;" c function:.test_special_method_lookup +CheckingFilter Lib/test/test_logging.py /^ class CheckingFilter(logging.Filter):$/;" c function:LogRecordFactoryTest.setUp +ChecklineTests Lib/test/test_pdb.py /^class ChecklineTests(unittest.TestCase):$/;" c +ChecksumBigBufferTestCase Lib/test/test_binascii.py /^class ChecksumBigBufferTestCase(unittest.TestCase):$/;" c +ChecksumBigBufferTestCase Lib/test/test_zlib.py /^class ChecksumBigBufferTestCase(unittest.TestCase):$/;" c +ChecksumTestCase Lib/test/test_zlib.py /^class ChecksumTestCase(unittest.TestCase):$/;" c +Cheese Lib/test/test__xxsubinterpreters.py /^ class Cheese:$/;" c function:IsShareableTests.test_not_shareable +Cheese Lib/test/test_interpreters.py /^ class Cheese:$/;" c function:TestIsShareable.test_not_shareable +Child Lib/test/test_dataclasses.py /^ class Child:$/;" c function:TestCase.test_helper_asdict_builtin_object_containers +Child Lib/test/test_dataclasses.py /^ class Child:$/;" c function:TestCase.test_helper_astuple_builtin_object_containers +Child Lib/test/test_descr.py /^ class Child(Parent):$/;" c function:.test_remove_subclass +Child Lib/test/test_isinstance.py /^class Child(Super):$/;" c +Child Lib/test/test_patma.py /^ class Child(Parent):$/;" c function:TestPatma.test_patma_202 +Child Lib/test/test_patma.py /^ class Child(Parent):$/;" c function:TestPatma.test_patma_203 +Child Lib/test/test_type_params.py /^ class Child(Base):$/;" c function:TypeParamsAccessTest.test_super +Child Lib/test/test_type_params.py /^ class Child[T](Base[lambda: (int, outer_var, T)]): ...$/;" c function:TypeParamsAccessTest.test_class_base_containing_lambda +Child Lib/test/test_typing.py /^ class Child(Base):$/;" c function:OverrideDecoratorTests.test_property +Child Lib/test/test_typing.py /^ class Child(D):$/;" c function:ForwardRefTests.test_no_type_check_no_bases +Child Lib/test/test_typing.py /^ class Child(One, Two):$/;" c function:TypedDictTests.test_multiple_inheritance +Child Lib/test/test_typing.py /^ class Child(Parent):$/;" c function:TypedDictTests.test_orig_bases +ChildBrowserTreeItem Lib/idlelib/browser.py /^class ChildBrowserTreeItem(TreeItem):$/;" c +ChildBrowserTreeItemTest Lib/idlelib/idle_test/test_browser.py /^class ChildBrowserTreeItemTest(unittest.TestCase):$/;" c +ChildDeeplyAnnotatedMovie Lib/test/test_typing.py /^class ChildDeeplyAnnotatedMovie(ParentDeeplyAnnotatedMovie):$/;" c +ChildLoggerTest Lib/test/test_logging.py /^class ChildLoggerTest(BaseTest):$/;" c +ChildPath Lib/importlib/resources/_adapters.py /^ class ChildPath(abc.Traversable):$/;" c class:CompatibilityFiles +ChildPost Lib/test/test_patma.py /^ class ChildPost(Parent):$/;" c function:TestInheritance.test_late_registration_mapping +ChildPost Lib/test/test_patma.py /^ class ChildPost(Parent):$/;" c function:TestInheritance.test_late_registration_sequence +ChildPre Lib/test/test_patma.py /^ class ChildPre(Parent):$/;" c function:TestInheritance.test_late_registration_mapping +ChildPre Lib/test/test_patma.py /^ class ChildPre(Parent):$/;" c function:TestInheritance.test_late_registration_sequence +ChildTotalMovie Lib/test/test_typing.py /^class ChildTotalMovie(ParentNontotalMovie):$/;" c +ChildWatcherTestsMixin Lib/test/test_asyncio/test_unix_events.py /^class ChildWatcherTestsMixin:$/;" c +ChildWithInlineAndOptional Lib/test/test_typing.py /^ class ChildWithInlineAndOptional(Untotal, Inline):$/;" c function:TypedDictTests.test_multiple_inheritance +ChildWithOptional Lib/test/test_typing.py /^ class ChildWithOptional(One, Untotal):$/;" c function:TypedDictTests.test_multiple_inheritance +ChildWithTotalFalse Lib/test/test_typing.py /^ class ChildWithTotalFalse(One, Untotal, total=False):$/;" c function:TypedDictTests.test_multiple_inheritance +Childless Lib/xml/dom/minidom.py /^class Childless:$/;" c +Chooser Lib/tkinter/colorchooser.py /^class Chooser(Dialog):$/;" c +ChooserTest Lib/test/test_tkinter/test_colorchooser.py /^class ChooserTest(AbstractTkTest, unittest.TestCase):$/;" c +ChownFileTests Lib/test/test_os.py /^class ChownFileTests(unittest.TestCase):$/;" c +Chrome Lib/webbrowser.py /^class Chrome(UnixBrowser):$/;" c +ChromeCommandTest Lib/test/test_webbrowser.py /^class ChromeCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +Chromium Lib/webbrowser.py /^Chromium = Chrome$/;" v +Chunk Lib/chunk.py /^class Chunk:$/;" c +ChunkAccumulator Lib/test/pickletester.py /^ class ChunkAccumulator:$/;" c function:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer +Circular Lib/test/test_queue.py /^ class Circular(object):$/;" c function:CSimpleQueueTest.test_reentrancy +CircularImportTests Lib/test/test_import/__init__.py /^class CircularImportTests(unittest.TestCase):$/;" c +Circulate Lib/test/test_tkinter/test_misc.py /^ Circulate = '26'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Circulate Lib/tkinter/__init__.py /^ Circulate = '26'$/;" v class:EventType +CirculateRequest Lib/test/test_tkinter/test_misc.py /^ CirculateRequest = '27'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +CirculateRequest Lib/tkinter/__init__.py /^ CirculateRequest = '27'$/;" v class:EventType +Cl Lib/test/test_inspect.py /^ class Cl:$/;" c function:TestPredicates.test_iscoroutine +Cl2 Lib/test/test_inspect.py /^ class Cl2:$/;" c function:TestPredicates.test_iscoroutine +Cl3 Lib/test/test_inspect.py /^ class Cl3:$/;" c function:TestPredicates.test_iscoroutine +Clamped Lib/_pydecimal.py /^class Clamped(DecimalException):$/;" c +Class Lib/msilib/schema.py /^Class = Table('Class')$/;" v +Class Lib/pyclbr.py /^class Class(_Object):$/;" c +Class Lib/symtable.py /^class Class(SymbolTable):$/;" c +Class Lib/test/test_decorators.py /^ class Class:$/;" c function:TestDecorators.test_wrapped_descriptor_inside_classmethod +Class Lib/test/test_inspect.py /^ class Class(metaclass=Meta):$/;" c function:TestClassesAndFunctions.test_classify_VirtualAttribute +Class Lib/test/test_inspect.py /^ class Class(metaclass=Meta):$/;" c function:TestClassesAndFunctions.test_classify_metaclass_class_attribute +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadAttrCache.test_metaclass_del_descriptor_after_optimization +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadAttrCache.test_metaclass_descriptor_shadows_class_attribute +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadAttrCache.test_metaclass_getattribute +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadAttrCache.test_metaclass_set_descriptor_after_optimization +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadMethodCache.test_metaclass_del_descriptor_after_optimization +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadMethodCache.test_metaclass_descriptor_shadows_class_attribute +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadMethodCache.test_metaclass_getattribute +Class Lib/test/test_opcache.py /^ class Class(metaclass=Metaclass):$/;" c function:TestLoadMethodCache.test_metaclass_set_descriptor_after_optimization +Class Lib/test/test_opcache.py /^ class Class(metaclass=OldMetaclass):$/;" c function:TestLoadAttrCache.test_metaclass_swap +Class Lib/test/test_opcache.py /^ class Class(metaclass=OldMetaclass):$/;" c function:TestLoadMethodCache.test_metaclass_swap +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadAttrCache.test_load_borrowed_slot_should_not_crash +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadAttrCache.test_load_shadowing_slot_should_raise_type_error +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadAttrCache.test_store_borrowed_slot_should_not_crash +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadAttrCache.test_store_shadowing_slot_should_raise_type_error +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadAttrCache.test_type_descriptor_shadows_attribute_getset +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadAttrCache.test_type_descriptor_shadows_attribute_member +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadAttrCache.test_type_descriptor_shadows_attribute_method +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadMethodCache.test_descriptor_added_after_optimization +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadMethodCache.test_type_descriptor_shadows_attribute_member +Class Lib/test/test_opcache.py /^ class Class:$/;" c function:TestLoadMethodCache.test_type_descriptor_shadows_attribute_method +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestPatma.test_patma_200 +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestPatma.test_patma_201 +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestTypeErrors.test_accepts_positional_subpatterns_0 +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestTypeErrors.test_got_multiple_subpatterns_for_attribute_0 +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestTypeErrors.test_got_multiple_subpatterns_for_attribute_1 +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestTypeErrors.test_match_args_elements_must_be_strings +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestTypeErrors.test_match_args_must_be_a_tuple_0 +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestTypeErrors.test_match_args_must_be_a_tuple_1 +Class Lib/test/test_patma.py /^ class Class:$/;" c function:TestTypeErrors.test_match_args_must_be_a_tuple_2 +Class Lib/test/test_pydoc.py /^ class Class(metaclass=Meta):$/;" c function:PydocWithMetaClasses.test_virtualClassAttributeWithOneMeta +Class Tools/clinic/clinic.py /^class Class:$/;" c +Class1 Lib/test/test_enum.py /^ class Class1:$/;" c function:TestSpecial.test_missing_exceptions_reset +Class1 Lib/test/test_inspect.py /^ class Class1(metaclass=Meta1):$/;" c function:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes +Class1 Lib/test/test_pydoc.py /^ class Class1(metaclass=Meta1):$/;" c function:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta +Class1 Lib/test/test_type_params.py /^class Class1[X]: ...$/;" c +Class2 Lib/test/test_enum.py /^ class Class2:$/;" c function:TestSpecial.test_missing_exceptions_reset +Class2 Lib/test/test_inspect.py /^ class Class2(Class1, metaclass=Meta3):$/;" c function:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes +Class2 Lib/test/test_pydoc.py /^ class Class2(Class1, metaclass=Meta3):$/;" c function:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta +Class2 Lib/test/test_type_params.py /^class Class2[X, Y]: ...$/;" c +Class3 Lib/test/test_type_params.py /^class Class3[X, *Y, **Z]: ...$/;" c +Class4 Lib/test/test_type_params.py /^class Class4[X: int, Y: (bytes, str)]: ...$/;" c +ClassA Lib/test/test_type_params.py /^ class ClassA[T](dict[T, S]): ...$/;" c function:TypeParamsTraditionalTypeVarsTest.test_traditional_02 +ClassA Lib/test/test_type_params.py /^ class ClassA:$/;" c function:TypeParamsTypeParamsDunder.test_typeparams_dunder_class_02 +ClassBasedNamedTuple Lib/test/test_types.py /^ class ClassBasedNamedTuple(typing.NamedTuple):$/;" c function:ClassCreationTests.test_get_original_bases +ClassBasedTypedDict Lib/test/test_types.py /^ class ClassBasedTypedDict(typing.TypedDict):$/;" c function:ClassCreationTests.test_get_original_bases +ClassBlock Include/internal/pycore_symtable.h /^ FunctionBlock, ClassBlock, ModuleBlock,$/;" e enum:_block_type +ClassCreationTests Lib/test/test_types.py /^class ClassCreationTests(unittest.TestCase):$/;" c +ClassDef Include/internal/pycore_ast.h /^ } ClassDef;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon54 +ClassDef_fields Python/Python-ast.c /^static const char * const ClassDef_fields[]={$/;" v file: +ClassDef_kind Include/internal/pycore_ast.h /^enum _stmt_kind {FunctionDef_kind=1, AsyncFunctionDef_kind=2, ClassDef_kind=3,$/;" e enum:_stmt_kind +ClassDef_type Include/internal/pycore_ast_state.h /^ PyObject *ClassDef_type;$/;" m struct:ast_state +ClassDict Tools/clinic/clinic.py /^ClassDict = dict[str, "Class"]$/;" v +ClassExample Lib/test/test_inspect.py /^ class ClassExample(AbstractClassExample):$/;" c function:TestPredicates.test_isabstract +ClassExample Lib/test/test_inspect.py /^ class ClassExample(AbstractClassExample):$/;" c function:TestPredicates.test_isabstract_during_init_subclass +ClassFoundException Lib/inspect.py /^class ClassFoundException(Exception):$/;" c +ClassMethodDescriptorType Lib/types.py /^ClassMethodDescriptorType = type(dict.__dict__['fromkeys'])$/;" v +ClassMethodType Lib/test/test_pyclbr.py /^ClassMethodType = type(classmethod(lambda c: None))$/;" v +ClassPropertiesAndMethods Lib/test/test_descr.py /^class ClassPropertiesAndMethods(unittest.TestCase):$/;" c +ClassTests Lib/test/test_class.py /^class ClassTests(unittest.TestCase):$/;" c +ClassTreeItem Lib/idlelib/debugobj.py /^class ClassTreeItem(ObjectTreeItem):$/;" c +ClassTreeItemTest Lib/idlelib/idle_test/test_debugobj.py /^class ClassTreeItemTest(unittest.TestCase):$/;" c +ClassVar Lib/typing.py /^def ClassVar(self, parameters):$/;" f +ClassVarTests Lib/test/test_typing.py /^class ClassVarTests(BaseTestCase):$/;" c +ClassWithAbstractVirtualProperty Lib/test/test_dynamicclassattribute.py /^class ClassWithAbstractVirtualProperty(metaclass=abc.ABCMeta):$/;" c +ClassWithAnnotation Lib/test/test_docxmlrpc.py /^ class ClassWithAnnotation:$/;" c function:make_server +ClassWithDocstring Lib/test/doctest_lineno.py /^class ClassWithDocstring:$/;" c +ClassWithDoctest Lib/test/doctest_lineno.py /^class ClassWithDoctest:$/;" c +ClassWithFailingRepr Lib/test/test_reprlib.py /^class ClassWithFailingRepr:$/;" c +ClassWithMethod Lib/test/inspect_fodder2.py /^class ClassWithMethod:$/;" c +ClassWithPropertyAbstractVirtual Lib/test/test_dynamicclassattribute.py /^class ClassWithPropertyAbstractVirtual(metaclass=abc.ABCMeta):$/;" c +ClassWithRepr Lib/test/test_reprlib.py /^class ClassWithRepr:$/;" c +ClassWith__str__ Lib/test/test_print.py /^class ClassWith__str__:$/;" c +ClassWithoutDocstring Lib/test/doctest_lineno.py /^class ClassWithoutDocstring:$/;" c +Class_1 Lib/test/test_sys_settrace.py /^ class Class_1:$/;" c function:TraceTestCase.test_class_creation_with_docstrings.func +Classic Lib/test/test_descr.py /^ class Classic:$/;" c function:.test_errors +Classic Lib/test/test_int.py /^ class Classic:$/;" c function:IntTestCases.test_intconversion +ClassicMissingMethods Lib/test/test_int.py /^ class ClassicMissingMethods:$/;" c function:IntTestCases.test_intconversion +Clean Lib/test/test_enum.py /^ class Clean(Enum):$/;" c function:TestUnique.test_unique_clean +Clean Lib/test/test_enum.py /^ class Clean(Enum):$/;" c function:TestVerify.test_unique_clean +CleanImport Lib/test/support/import_helper.py /^class CleanImport(object):$/;" c +Cleaner Lib/test/test_enum.py /^ class Cleaner(IntEnum):$/;" c function:TestUnique.test_unique_clean +Cleaner Lib/test/test_enum.py /^ class Cleaner(IntEnum):$/;" c function:TestVerify.test_unique_clean +ClearTest Lib/test/test_frame.py /^class ClearTest(unittest.TestCase):$/;" c +Clearer Lib/test/pickletester.py /^ class Clearer:$/;" c function:AbstractPickleTests.test_evil_pickler_mutating_collection +Client Lib/multiprocessing/connection.py /^def Client(address, family=None, authkey=None):$/;" f +Client Lib/multiprocessing/dummy/connection.py /^def Client(address):$/;" f +ClientMessage Lib/test/test_tkinter/test_misc.py /^ ClientMessage = '33' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +ClientMessage Lib/tkinter/__init__.py /^ ClientMessage = '33' # undocumented$/;" v class:EventType +ClientProto Lib/test/test_asyncio/test_ssl.py /^ class ClientProto(asyncio.Protocol):$/;" c function:TestSSL.test_create_connection_memory_leak +ClientProto Lib/test/test_asyncio/test_ssl.py /^ class ClientProto(asyncio.Protocol):$/;" c function:TestSSL.test_ssl_handshake_connection_lost +ClientProto Lib/test/test_asyncio/test_ssl.py /^ class ClientProto(asyncio.Protocol):$/;" c function:TestSSL.test_start_tls_client_reg_proto_1 +ClientProto Lib/test/test_asyncio/test_ssl.py /^ class ClientProto(asyncio.Protocol):$/;" c function:TestSSL.test_start_tls_slow_client_cancel +ClientProto Lib/test/test_asyncio/test_sslproto.py /^ class ClientProto(asyncio.Protocol):$/;" c function:BaseStartTLS.test_create_connection_memory_leak +ClientProto Lib/test/test_asyncio/test_sslproto.py /^ class ClientProto(asyncio.Protocol):$/;" c function:BaseStartTLS.test_start_tls_client_reg_proto_1 +ClientProto Lib/test/test_asyncio/test_sslproto.py /^ class ClientProto(asyncio.Protocol):$/;" c function:BaseStartTLS.test_start_tls_slow_client_cancel +ClientProtoFirst Lib/test/test_asyncio/test_ssl.py /^ class ClientProtoFirst(asyncio.BufferedProtocol):$/;" c function:TestSSL.test_start_tls_client_buf_proto_1 +ClientProtoFirst Lib/test/test_asyncio/test_sslproto.py /^ class ClientProtoFirst(asyncio.BufferedProtocol):$/;" c function:BaseStartTLS.test_start_tls_client_buf_proto_1 +ClientProtoSecond Lib/test/test_asyncio/test_ssl.py /^ class ClientProtoSecond(asyncio.Protocol):$/;" c function:TestSSL.test_start_tls_client_buf_proto_1 +ClientProtoSecond Lib/test/test_asyncio/test_sslproto.py /^ class ClientProtoSecond(asyncio.Protocol):$/;" c function:BaseStartTLS.test_start_tls_client_buf_proto_1 +Clinic Tools/clinic/clinic.py /^class Clinic:$/;" c +ClinicBlockParserTest Lib/test/test_clinic.py /^class ClinicBlockParserTest(TestCase):$/;" c +ClinicExternalTest Lib/test/test_clinic.py /^class ClinicExternalTest(TestCase):$/;" c +ClinicFunctionalTest Lib/test/test_clinic.py /^class ClinicFunctionalTest(unittest.TestCase):$/;" c +ClinicGroupPermuterTest Lib/test/test_clinic.py /^class ClinicGroupPermuterTest(TestCase):$/;" c +ClinicLinearFormatTest Lib/test/test_clinic.py /^class ClinicLinearFormatTest(TestCase):$/;" c +ClinicParserTest Lib/test/test_clinic.py /^class ClinicParserTest(_ParserBase):$/;" c +ClinicWholeFileTest Lib/test/test_clinic.py /^class ClinicWholeFileTest(_ParserBase):$/;" c +Close Lib/subprocess.py /^ def Close(self, CloseHandle=_winapi.CloseHandle):$/;" m class:.Handle +CloseBoundaryNotFoundDefect Lib/email/errors.py /^class CloseBoundaryNotFoundDefect(MessageDefect):$/;" c +CloseFailureIO Lib/test/test_io.py /^class CloseFailureIO(MockRawIO):$/;" c +CloseKey Lib/test/test_getpath.py /^ def CloseKey(self, hkey):$/;" m class:MockWinreg +CloseSocketTest Lib/test/test_urllib2net.py /^class CloseSocketTest(unittest.TestCase):$/;" c +CloseTest Lib/idlelib/idle_test/test_help_about.py /^class CloseTest(unittest.TestCase):$/;" c +ClosedAB Lib/test/test_enum.py /^ class ClosedAB(self.enum_type):$/;" c function:_FlagTests.test_closed_invert_expectations +ClosedConTests Lib/test/test_sqlite3/test_dbapi.py /^class ClosedConTests(unittest.TestCase):$/;" c +ClosedCurTests Lib/test/test_sqlite3/test_dbapi.py /^class ClosedCurTests(unittest.TestCase):$/;" c +ClosedFD Lib/test/test_fileio.py /^ def ClosedFD(func):$/;" m class:AutoFileTests +ClosedFDRaises Lib/test/test_fileio.py /^ def ClosedFDRaises(func):$/;" m class:AutoFileTests +ClosedXYZ Lib/test/test_enum.py /^ class ClosedXYZ(self.enum_type):$/;" c function:_FlagTests.test_closed_invert_expectations +ClosingTestCase Lib/test/test_contextlib.py /^class ClosingTestCase(unittest.TestCase):$/;" c +ClosureVars Lib/inspect.py /^ClosureVars = namedtuple('ClosureVars', 'nonlocals globals builtins unbound')$/;" v +Cls Lib/test/test_typing.py /^ class Cls: ...$/;" c function:FinalDecoratorTests.test_dunder_final +Cmd Lib/cmd.py /^class Cmd:$/;" c +CmdLineTest Lib/test/test_cmd_line.py /^class CmdLineTest(unittest.TestCase):$/;" c +CmdLineTest Lib/test/test_cmd_line_script.py /^class CmdLineTest(unittest.TestCase):$/;" c +Cmethod Lib/test/test_descr.py /^ def Cmethod(self): pass$/;" m class:.test_dir.C +Cmp Lib/test/test_compare.py /^ class Cmp:$/;" c class:ComparisonSimpleTest +CmpErr Lib/test/test_bisect.py /^class CmpErr:$/;" c +CmpErr Lib/test/test_heapq.py /^class CmpErr:$/;" c +CmpopExprPair Parser/pegen.h /^} CmpopExprPair;$/;" t typeref:struct:__anon658 +CmsgMacroTests Lib/test/test_socket.py /^class CmsgMacroTests(unittest.TestCase):$/;" c +Cn Tools/unicode/mkstringprep.py /^Cn = set(gen_category(["Cn"]))$/;" v +Co Tools/unicode/mkstringprep.py /^Co = set(gen_category(["Co"]))$/;" v +CoExtra Lib/test/test_code.py /^ class CoExtra(unittest.TestCase):$/;" c class:CodeLocationTest +Code Tools/build/umarshal.py /^class Code:$/;" c +CodeConstsTest Lib/test/test_code.py /^class CodeConstsTest(unittest.TestCase):$/;" c +CodeContext Lib/idlelib/codecontext.py /^class CodeContext:$/;" c +CodeContextTest Lib/idlelib/idle_test/test_codecontext.py /^class CodeContextTest(unittest.TestCase):$/;" c +CodeExecutionMixin Lib/test/test_runpy.py /^class CodeExecutionMixin:$/;" c +CodeInfoTests Lib/test/test_dis.py /^class CodeInfoTests(unittest.TestCase):$/;" c +CodeLocationTest Lib/test/test_code.py /^class CodeLocationTest(unittest.TestCase):$/;" c +CodePageTest Lib/test/test_codecs.py /^class CodePageTest(unittest.TestCase):$/;" c +CodePickler Lib/idlelib/rpc.py /^class CodePickler(pickle.Pickler):$/;" c +CodePicklerTest Lib/idlelib/idle_test/test_rpc.py /^class CodePicklerTest(unittest.TestCase):$/;" c +CodeProxy Lib/idlelib/debugger_r.py /^class CodeProxy:$/;" c +CodeTest Lib/test/test_code.py /^class CodeTest(unittest.TestCase):$/;" c +CodeTestCase Lib/test/test_marshal.py /^class CodeTestCase(unittest.TestCase):$/;" c +CodeType Lib/types.py /^CodeType = type(_f.__code__)$/;" v +CodeWeakRefTest Lib/test/test_code.py /^class CodeWeakRefTest(unittest.TestCase):$/;" c +Codec Lib/codecs.py /^class Codec:$/;" c +Codec Lib/encodings/ascii.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/base64_codec.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/big5.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/big5hkscs.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/bz2_codec.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/charmap.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp037.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1006.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1026.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1125.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1140.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1250.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1251.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1252.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1253.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1254.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1255.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1256.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1257.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp1258.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp273.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp424.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp437.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp500.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp720.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp737.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp775.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp850.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp852.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp855.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp856.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp857.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp858.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp860.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp861.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp862.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp863.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp864.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp865.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp866.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp869.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp874.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp875.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp932.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp949.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/cp950.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/euc_jis_2004.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/euc_jisx0213.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/euc_jp.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/euc_kr.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/gb18030.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/gb2312.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/gbk.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/hex_codec.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/hp_roman8.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/hz.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/idna.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso2022_jp.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso2022_jp_1.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso2022_jp_2.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso2022_jp_2004.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso2022_jp_3.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso2022_jp_ext.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso2022_kr.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_1.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_10.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_11.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_13.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_14.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_15.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_16.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_2.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_3.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_4.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_5.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_6.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_7.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_8.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/iso8859_9.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/johab.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/koi8_r.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/koi8_t.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/koi8_u.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/kz1048.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/latin_1.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_arabic.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_croatian.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_cyrillic.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_farsi.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_greek.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_iceland.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_latin2.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_roman.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_romanian.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/mac_turkish.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/palmos.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/ptcp154.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/punycode.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/quopri_codec.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/raw_unicode_escape.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/rot_13.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/shift_jis.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/shift_jis_2004.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/shift_jisx0213.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/tis_620.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/undefined.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/unicode_escape.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/uu_codec.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/encodings/zlib_codec.py /^class Codec(codecs.Codec):$/;" c +Codec Lib/test/testcodec.py /^class Codec(codecs.Codec):$/;" c +CodecCallbackTest Lib/test/test_codeccallbacks.py /^class CodecCallbackTest(unittest.TestCase):$/;" c +CodecInfo Lib/codecs.py /^class CodecInfo(tuple):$/;" c +CodecNameNormalizationTest Lib/test/test_codecs.py /^class CodecNameNormalizationTest(unittest.TestCase):$/;" c +CodecRegistryError Lib/encodings/__init__.py /^class CodecRegistryError(LookupError, SystemError):$/;" c +CodecsModuleTest Lib/test/test_codecs.py /^class CodecsModuleTest(unittest.TestCase):$/;" c +CodegenTestCase Lib/test/support/bytecode_helper.py /^class CodegenTestCase(CompilationStepTestCase):$/;" c +CodeopTests Lib/test/test_codeop.py /^class CodeopTests(unittest.TestCase):$/;" c +CoerceTest Lib/test/test_statistics.py /^class CoerceTest(unittest.TestCase):$/;" c +Col Lib/test/test_collections.py /^ class Col(Collection):$/;" c function:TestOneTrickPonyABCs.test_Collection +ColImpl Lib/test/test_collections.py /^ class ColImpl:$/;" c function:TestOneTrickPonyABCs.test_Collection +ColNamesTests Lib/test/test_sqlite3/test_types.py /^class ColNamesTests(unittest.TestCase):$/;" c +ColNoCont Lib/test/test_collections.py /^ class ColNoCont:$/;" c function:TestOneTrickPonyABCs.test_Collection +ColNoIter Lib/test/test_collections.py /^ class ColNoIter:$/;" c function:TestOneTrickPonyABCs.test_Collection +ColNoSize Lib/test/test_collections.py /^ class ColNoSize:$/;" c function:TestOneTrickPonyABCs.test_Collection +CollationTests Lib/test/test_sqlite3/test_hooks.py /^class CollationTests(unittest.TestCase):$/;" c +CollectInit Lib/test/test_importlib/test_lazy.py /^class CollectInit:$/;" c +CollectObjectIDs Lib/test/test_marshal.py /^def CollectObjectIDs(ids, obj):$/;" f +Collection Lib/_collections_abc.py /^class Collection(Sized, Iterable, Container):$/;" c +Collection Lib/typing.py /^Collection = _alias(collections.abc.Collection, 1)$/;" v +CollectionsAbcTests Lib/test/test_typing.py /^class CollectionsAbcTests(BaseTestCase):$/;" c +CollectionsCallableTests Lib/test/test_typing.py /^class CollectionsCallableTests(BaseCallableTests, BaseTestCase):$/;" c +Collector Lib/test/test_htmlparser.py /^ class Collector(EventCollector):$/;" c function:.test_cdata_with_closing_tags +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_garbage_corrected_fail +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_garbage_corrected_ok +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_garbage_fail +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_garbage_ok +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_order +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestOrder.test_enum_has_extra_members +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestOrder.test_enum_has_extra_members_with_aliases +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestOrder.test_order_has_extra_members +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestOrder.test_order_has_extra_members_with_aliases +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestOrder.test_same_members_wrong_order +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestSpecial.test_duplicate_name_error +Color Lib/test/test_enum.py /^ class Color(Flag):$/;" c function:OldTestFlag.test_auto_number_garbage +Color Lib/test/test_enum.py /^ class Color(UniqueEnum):$/;" c class:TestSpecial.test_no_duplicates.Color +Color Lib/test/test_enum.py /^ class Color(AllMixin, Flag):$/;" c function:OldTestFlag.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(AllMixin, IntFlag):$/;" c function:OldTestIntFlag.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(AllMixin, StrMixin, Flag):$/;" c function:OldTestFlag.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(AllMixin, StrMixin, IntFlag):$/;" c function:OldTestIntFlag.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(AutoNameEnum):$/;" c function:TestInternals.test_auto_name_inherit +Color Lib/test/test_enum.py /^ class Color(AutoNumber):$/;" c function:TestSpecial.test_inherited_new_from_enhanced_enum +Color Lib/test/test_enum.py /^ class Color(AutoNumber):$/;" c function:TestSpecial.test_inherited_new_from_mixed_enum +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_name +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_number +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_order_wierd +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestInternals.test_auto_with_aliases +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestOrder.test_same_members +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestOrder.test_same_members_with_aliases +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestSpecial.test_default_missing_no_chained_exception +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestSpecial.test_extending +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestSpecial.test_missing_override +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c function:TestSpecial.test_no_such_enum_member +Color Lib/test/test_enum.py /^ class Color(Flag):$/;" c function:OldTestFlag.test_auto_number +Color Lib/test/test_enum.py /^ class Color(Flag):$/;" c function:TestVerify.test_negative_alias +Color Lib/test/test_enum.py /^ class Color(MaxMixin, Enum):$/;" c function:TestSpecial.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(MaxMixin, StrMixin, Enum):$/;" c function:TestSpecial.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(Shade):$/;" c function:TestSpecial.test_extending2 +Color Lib/test/test_enum.py /^ class Color(Shade):$/;" c function:TestSpecial.test_extending3 +Color Lib/test/test_enum.py /^ class Color(StrMixin, AllMixin, Flag):$/;" c function:OldTestFlag.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(StrMixin, AllMixin, IntFlag):$/;" c function:OldTestIntFlag.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(StrMixin, MaxMixin, Enum):$/;" c function:TestSpecial.test_multiple_mixin +Color Lib/test/test_enum.py /^ class Color(UniqueEnum):$/;" c function:TestSpecial.test_no_duplicates +Color Lib/test/test_enum.py /^ class Color(Enum):$/;" c class:TestStdLib +Color Lib/test/test_enum.py /^ class Color(Flag):$/;" c class:OldTestFlag +Color Lib/test/test_enum.py /^ class Color(IntFlag):$/;" c class:OldTestIntFlag +Color Lib/test/test_patma.py /^ class Color(enum.Enum):$/;" c function:TestPatma.test_patma_198 +Color Lib/test/test_patma.py /^ class Color(int, enum.Enum):$/;" c function:TestPatma.test_patma_199 +ColorConfigTest Lib/idlelib/idle_test/test_colorizer.py /^class ColorConfigTest(unittest.TestCase):$/;" c +ColorDelegator Lib/idlelib/colorizer.py /^class ColorDelegator(Delegator):$/;" c +ColorDelegator Lib/idlelib/pyshell.py /^ ColorDelegator = ModifiedColorDelegator$/;" v class:PyShell +ColorDelegatorInstantiationTest Lib/idlelib/idle_test/test_colorizer.py /^class ColorDelegatorInstantiationTest(unittest.TestCase):$/;" c +ColorDelegatorTest Lib/idlelib/idle_test/test_colorizer.py /^class ColorDelegatorTest(unittest.TestCase):$/;" c +ColorInAList Lib/test/test_enum.py /^ class ColorInAList(AutoNumberInAList):$/;" c function:TestSpecial.test_nonhash_value +ColorTurtle Lib/turtledemo/colormixer.py /^class ColorTurtle(Turtle):$/;" c +Colormap Lib/test/test_tkinter/test_misc.py /^ Colormap = '32'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Colormap Lib/tkinter/__init__.py /^ Colormap = '32'$/;" v class:EventType +ColorsysTest Lib/test/test_colorsys.py /^class ColorsysTest(unittest.TestCase):$/;" c +ColumnSpec Tools/c-analyzer/c_common/tables.py /^class ColumnSpec(namedtuple('ColumnSpec', 'field label fmt')):$/;" c +Combined Lib/test/test_enum.py /^ class Combined(str, Enum):$/;" c function:TestSpecial.test_missing_value_error +CombinedNamespacePackages Lib/test/test_importlib/test_namespace_pkgs.py /^class CombinedNamespacePackages(NamespacePackageTest):$/;" c +ComboBox Lib/msilib/schema.py /^ComboBox = Table('ComboBox')$/;" v +ComboBox Lib/tkinter/tix.py /^class ComboBox(TixWidget):$/;" c +Combobox Lib/tkinter/ttk.py /^class Combobox(Entry):$/;" c +ComboboxTest Lib/test/test_ttk/test_widgets.py /^class ComboboxTest(EntryTest, unittest.TestCase):$/;" c +Comma Lib/lib2to3/fixer_util.py /^def Comma():$/;" f +Command Lib/idlelib/undo.py /^class Command:$/;" c +CommandCompiler Lib/codeop.py /^class CommandCompiler:$/;" c +CommandEvent Modules/_tkinter.c /^typedef struct CommandEvent{$/;" s file: +CommandEvent Modules/_tkinter.c /^} CommandEvent;$/;" t typeref:struct:CommandEvent file: +CommandLineInterface Lib/test/test_sqlite3/test_cli.py /^class CommandLineInterface(unittest.TestCase):$/;" c +CommandLineTest Lib/test/test_tarfile.py /^class CommandLineTest(unittest.TestCase):$/;" c +CommandLineTest Lib/test/test_zipfile/test_core.py /^class CommandLineTest(unittest.TestCase):$/;" c +CommandLineTestCase Lib/test/test_calendar.py /^class CommandLineTestCase(unittest.TestCase):$/;" c +CommandLineTestsBase Lib/test/test_compileall.py /^class CommandLineTestsBase:$/;" c +CommandLineTestsNoSourceEpoch Lib/test/test_compileall.py /^ source_date_epoch=False):$/;" c +CommandLineTestsWithSourceEpoch Lib/test/test_compileall.py /^ source_date_epoch=True):$/;" c +CommandSequence Lib/idlelib/undo.py /^class CommandSequence(Command):$/;" c +CommandTestMixin Lib/test/test_webbrowser.py /^class CommandTestMixin:$/;" c +Commands Lib/imaplib.py /^Commands = {$/;" v +CommandsWithSpaces Lib/test/test_subprocess.py /^class CommandsWithSpaces (BaseTestCase):$/;" c +Comment Lib/email/_header_value_parser.py /^class Comment(WhiteSpaceTokenList):$/;" c +Comment Lib/lib2to3/pgen2/tokenize.py /^Comment = r'#[^\\r\\n]*'$/;" v +Comment Lib/tokenize.py /^Comment = r'#[^\\r\\n]*'$/;" v +Comment Lib/xml/dom/minidom.py /^class Comment(CharacterData):$/;" c +Comment Lib/xml/etree/ElementTree.py /^def Comment(text=None):$/;" f +Comment Modules/pyexpat.c /^ Comment,$/;" e enum:HandlerTypes file: +CommentHandler Lib/test/test_pyexpat.py /^ def CommentHandler(self, text):$/;" m class:ParseTest.Outputter +CommentHandler Lib/test/test_pyexpat.py /^ def CommentHandler(self, data):$/;" m class:BufferTextTest +CommonBinaryTests Lib/test/test_importlib/resources/test_open.py /^class CommonBinaryTests(util.CommonTests, unittest.TestCase):$/;" c +CommonBinaryTests Lib/test/test_importlib/resources/test_read.py /^class CommonBinaryTests(util.CommonTests, unittest.TestCase):$/;" c +CommonBufferedTests Lib/test/test_io.py /^class CommonBufferedTests:$/;" c +CommonFuture Lib/test/test_asyncio/test_tasks.py /^ class CommonFuture:$/;" c function:add_subclass_tests +CommonReadTest Lib/test/test_tarfile.py /^class CommonReadTest(ReadTest):$/;" c +CommonTableExpressionTests Lib/test/test_sqlite3/test_types.py /^class CommonTableExpressionTests(unittest.TestCase):$/;" c +CommonTest Lib/test/list_tests.py /^class CommonTest(seq_tests.CommonTest):$/;" c +CommonTest Lib/test/seq_tests.py /^class CommonTest(unittest.TestCase):$/;" c +CommonTest Lib/test/string_tests.py /^class CommonTest(BaseTest):$/;" c +CommonTest Lib/test/test_genericpath.py /^class CommonTest(GenericTest):$/;" c +CommonTestMixin Lib/test/test_ipaddress.py /^class CommonTestMixin:$/;" c +CommonTestMixin_v4 Lib/test/test_ipaddress.py /^class CommonTestMixin_v4(CommonTestMixin):$/;" c +CommonTestMixin_v6 Lib/test/test_ipaddress.py /^class CommonTestMixin_v6(CommonTestMixin):$/;" c +CommonTests Lib/test/test_importlib/resources/test_path.py /^class CommonTests(util.CommonTests, unittest.TestCase):$/;" c +CommonTests Lib/test/test_importlib/resources/util.py /^class CommonTests(metaclass=abc.ABCMeta):$/;" c +CommonTests Lib/test/test_xxlimited.py /^class CommonTests:$/;" c +CommonTextTests Lib/test/test_importlib/resources/test_open.py /^class CommonTextTests(util.CommonTests, unittest.TestCase):$/;" c +CommonTextTests Lib/test/test_importlib/resources/test_read.py /^class CommonTextTests(util.CommonTests, unittest.TestCase):$/;" c +CompBase Lib/test/test_compare.py /^ class CompBase:$/;" c class:ComparisonFullTest +CompEq Lib/test/test_compare.py /^ class CompEq(CompBase):$/;" c class:ComparisonFullTest +CompEqNe Lib/test/test_compare.py /^ class CompEqNe(CompBase):$/;" c class:ComparisonFullTest +CompGe Lib/test/test_compare.py /^ class CompGe(CompBase):$/;" c class:ComparisonFullTest +CompGt Lib/test/test_compare.py /^ class CompGt(CompBase):$/;" c class:ComparisonFullTest +CompLe Lib/test/test_compare.py /^ class CompLe(CompBase):$/;" c class:ComparisonFullTest +CompLeGe Lib/test/test_compare.py /^ class CompLeGe(CompBase):$/;" c class:ComparisonFullTest +CompLocator Lib/msilib/schema.py /^CompLocator = Table('CompLocator')$/;" v +CompLt Lib/test/test_compare.py /^ class CompLt(CompBase):$/;" c class:ComparisonFullTest +CompLtGt Lib/test/test_compare.py /^ class CompLtGt(CompBase):$/;" c class:ComparisonFullTest +CompNe Lib/test/test_compare.py /^ class CompNe(CompBase):$/;" c class:ComparisonFullTest +CompNone Lib/test/test_compare.py /^ class CompNone(CompBase):$/;" c class:ComparisonFullTest +Comp_dealloc Modules/zlibmodule.c /^Comp_dealloc(compobject *self)$/;" f file: +ComparableException Lib/test/test_cgi.py /^class ComparableException:$/;" c +ComparatorNotImplemented Lib/test/test_functools.py /^ class ComparatorNotImplemented:$/;" c function:TestTotalOrdering.test_type_error_when_not_implemented +Compare Include/internal/pycore_ast.h /^ } Compare;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon93 +CompareDigestTestCase Lib/test/test_hmac.py /^class CompareDigestTestCase(unittest.TestCase):$/;" c +Compare_Digest_Tests Lib/test/test_secrets.py /^class Compare_Digest_Tests(unittest.TestCase):$/;" c +Compare_fields Python/Python-ast.c /^static const char * const Compare_fields[]={$/;" v file: +Compare_kind Include/internal/pycore_ast.h /^ YieldFrom_kind=15, Compare_kind=16, Call_kind=17,$/;" e enum:_expr_kind +Compare_type Include/internal/pycore_ast_state.h /^ PyObject *Compare_type;$/;" m struct:ast_state +ComparisonFullTest Lib/test/test_compare.py /^class ComparisonFullTest(unittest.TestCase):$/;" c +ComparisonSimpleTest Lib/test/test_compare.py /^class ComparisonSimpleTest(unittest.TestCase):$/;" c +ComparisonTest Lib/test/test_numeric_tower.py /^class ComparisonTest(unittest.TestCase):$/;" c +ComparisonTests Lib/test/test_ipaddress.py /^class ComparisonTests(unittest.TestCase):$/;" c +Compat32 Lib/email/_policybase.py /^class Compat32(Policy):$/;" c +CompatPath Lib/test/test_pathlib.py /^ class CompatPath:$/;" c class:CompatiblePathTest +CompatPickleTests Lib/test/test_pickle.py /^class CompatPickleTests(unittest.TestCase):$/;" c +CompatibilityFiles Lib/importlib/resources/_adapters.py /^class CompatibilityFiles:$/;" c +CompatibilityFilesNoReaderTests Lib/test/test_importlib/resources/test_compatibilty_files.py /^class CompatibilityFilesNoReaderTests(unittest.TestCase):$/;" c +CompatibilityFilesTests Lib/test/test_importlib/resources/test_compatibilty_files.py /^class CompatibilityFilesTests(unittest.TestCase):$/;" c +CompatibilityTestCase Lib/test/test_marshal.py /^class CompatibilityTestCase(unittest.TestCase):$/;" c +CompatibilityTests Lib/test/test_asyncio/test_tasks.py /^class CompatibilityTests(test_utils.TestCase):$/;" c +CompatiblePathTest Lib/test/test_pathlib.py /^class CompatiblePathTest(unittest.TestCase):$/;" c +CompatibleTestCase Lib/test/test_configparser.py /^class CompatibleTestCase(CfgParserTestCaseClass, unittest.TestCase):$/;" c +CompilationStepTestCase Lib/test/support/bytecode_helper.py /^class CompilationStepTestCase(unittest.TestCase):$/;" c +Compile Lib/codeop.py /^class Compile:$/;" c +CompileError Tools/c-analyzer/distutils/errors.py /^class CompileError (CCompilerError):$/;" c +CompileallTestsBase Lib/test/test_compileall.py /^class CompileallTestsBase:$/;" c +CompileallTestsWithSourceEpoch Lib/test/test_compileall.py /^ source_date_epoch=True):$/;" c +CompileallTestsWithoutSourceEpoch Lib/test/test_compileall.py /^ source_date_epoch=False):$/;" c +Complains Lib/test/test_sort.py /^ class Complains(object):$/;" c function:TestBase.testStressfully +Complete Lib/test/test_ctypes/test_pep3118.py /^class Complete(Structure):$/;" c +CompleteDirs Lib/zipfile/_path/__init__.py /^class CompleteDirs(InitializedState, zipfile.ZipFile):$/;" c +CompleteMe Lib/test/test_rlcompleter.py /^class CompleteMe:$/;" c +CompletedProcess Lib/subprocess.py /^class CompletedProcess(object):$/;" c +Completer Lib/rlcompleter.py /^class Completer:$/;" c +CompletionPort Modules/overlapped.c /^ HANDLE CompletionPort;$/;" m struct:PostCallbackData file: +Complex Lib/numbers.py /^class Complex(Number):$/;" c +Complex Lib/test/test_capi/test_getargs.py /^class Complex:$/;" c +ComplexExtendsException Objects/exceptions.c 527;" d file: +ComplexNewObj Lib/test/pickletester.py /^class ComplexNewObj(SimpleNewObj):$/;" c +ComplexNewObjEx Lib/test/pickletester.py /^class ComplexNewObjEx(SimpleNewObj):$/;" c +ComplexSubclass Lib/test/test_capi/test_getargs.py /^class ComplexSubclass(complex):$/;" c +ComplexSubclass2 Lib/test/test_capi/test_getargs.py /^class ComplexSubclass2(complex):$/;" c +ComplexTest Lib/test/test_complex.py /^class ComplexTest(unittest.TestCase):$/;" c +Complus Lib/msilib/schema.py /^Complus = Table('Complus')$/;" v +Component Lib/msilib/schema.py /^Component = Table('Component')$/;" v +Component Tools/cases_generator/generate_cases.py /^class Component:$/;" c +CompressDecompressFunctionTestCase Lib/test/test_lzma.py /^class CompressDecompressFunctionTestCase(unittest.TestCase):$/;" c +CompressDecompressTest Lib/test/test_bz2.py /^class CompressDecompressTest(BaseTest):$/;" c +CompressLevelRaises Lib/test/test_tarfile.py /^class CompressLevelRaises(unittest.TestCase):$/;" c +CompressObjectTestCase Lib/test/test_zlib.py /^class CompressObjectTestCase(BaseCompressTestCase, unittest.TestCase):$/;" c +CompressTestCase Lib/test/test_zlib.py /^class CompressTestCase(BaseCompressTestCase, unittest.TestCase):$/;" c +CompressedZipImportTestCase Lib/test/test_zipimport.py /^class CompressedZipImportTestCase(UncompressedZipImportTestCase):$/;" c +CompressionError Lib/tarfile.py /^class CompressionError(TarError):$/;" c +Compressor Modules/_lzmamodule.c /^} Compressor;$/;" t typeref:struct:__anon295 file: +CompressorDecompressorTestCase Lib/test/test_lzma.py /^class CompressorDecompressorTestCase(unittest.TestCase):$/;" c +Compressor_dealloc Modules/_lzmamodule.c /^Compressor_dealloc(Compressor *self)$/;" f file: +Compressor_init_alone Modules/_lzmamodule.c /^Compressor_init_alone(_lzma_state *state, lzma_stream *lzs, uint32_t preset, PyObject *filterspecs)$/;" f file: +Compressor_init_raw Modules/_lzmamodule.c /^Compressor_init_raw(_lzma_state *state, lzma_stream *lzs, PyObject *filterspecs)$/;" f file: +Compressor_init_xz Modules/_lzmamodule.c /^Compressor_init_xz(_lzma_state *state, lzma_stream *lzs,$/;" f file: +Compressor_methods Modules/_lzmamodule.c /^static PyMethodDef Compressor_methods[] = {$/;" v file: +Compressor_new Modules/_lzmamodule.c /^Compressor_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f file: +Compressor_traverse Modules/_lzmamodule.c /^Compressor_traverse(Compressor *self, visitproc visit, void *arg)$/;" f file: +Comptype Modules/zlibmodule.c /^ PyTypeObject *Comptype;$/;" m struct:__anon305 file: +Comptype_slots Modules/zlibmodule.c /^static PyType_Slot Comptype_slots[] = {$/;" v file: +Comptype_spec Modules/zlibmodule.c /^static PyType_Spec Comptype_spec = {$/;" v file: +ConIO Lib/test/test_winconsoleio.py /^ConIO = io._WindowsConsoleIO$/;" v +Concatenate Lib/typing.py /^def Concatenate(self, parameters):$/;" f +ConcatenateTests Lib/test/test_typing.py /^class ConcatenateTests(BaseTestCase):$/;" c +Concrete Lib/test/test_typing.py /^ class Concrete(Proto):$/;" c class:ProtocolTests.test_no_runtime_deco_on_nominal.Proto +Concrete Lib/test/test_typing.py /^class Concrete(Proto):$/;" c +ConcreteGrandchild Lib/test/test_inspect.py /^ class ConcreteGrandchild(ClassExample):$/;" c function:TestPredicates.test_isabstract_during_init_subclass +CondMap Modules/_decimal/tests/deccheck.py /^CondMap = {$/;" v +Condition Lib/asyncio/locks.py /^class Condition(_ContextManagerMixin, mixins._LoopBoundMixin):$/;" c +Condition Lib/msilib/schema.py /^Condition = Table('Condition')$/;" v +Condition Lib/multiprocessing/context.py /^ def Condition(self, lock=None):$/;" m class:BaseContext +Condition Lib/multiprocessing/synchronize.py /^class Condition(object):$/;" c +Condition Lib/test/_test_multiprocessing.py /^ Condition = property(operator.attrgetter('manager.Condition'))$/;" v class:ManagerMixin +Condition Lib/test/_test_multiprocessing.py /^ Condition = staticmethod(multiprocessing.Condition)$/;" v class:ProcessesMixin +Condition Lib/test/_test_multiprocessing.py /^ Condition = staticmethod(multiprocessing.dummy.Condition)$/;" v class:ThreadsMixin +Condition Lib/test/test_math.py /^ def Condition(x, y):$/;" f function:MathTests.test_sumprod_extended_precision_accuracy +Condition Lib/threading.py /^class Condition:$/;" c +ConditionAsRLockTests Lib/test/test_threading.py /^class ConditionAsRLockTests(lock_tests.RLockTests):$/;" c +ConditionError Tools/wasm/wasm_build.py /^class ConditionError(ValueError):$/;" c +ConditionProxy Lib/multiprocessing/managers.py /^class ConditionProxy(AcquirerProxy):$/;" c +ConditionTests Lib/test/lock_tests.py /^class ConditionTests(BaseTestCase):$/;" c +ConditionTests Lib/test/test_asyncio/test_locks.py /^class ConditionTests(unittest.IsolatedAsyncioTestCase):$/;" c +ConditionTests Lib/test/test_threading.py /^class ConditionTests(lock_tests.ConditionTests):$/;" c +ConditionalFix Lib/lib2to3/fixer_base.py /^class ConditionalFix(BaseFix):$/;" c +ConfigChanges Lib/idlelib/config.py /^class ConfigChanges(dict):$/;" c +ConfigDialog Lib/idlelib/configdialog.py /^class ConfigDialog(Toplevel):$/;" c +ConfigDialogTest Lib/idlelib/idle_test/test_configdialog.py /^class ConfigDialogTest(unittest.TestCase):$/;" c +ConfigDialog_spec Lib/idlelib/idle_test/htest.py /^ConfigDialog_spec = {$/;" v +ConfigDictTest Lib/test/test_logging.py /^class ConfigDictTest(BaseTest):$/;" c +ConfigFileTest Lib/test/test_logging.py /^class ConfigFileTest(BaseTest):$/;" c +ConfigParser Lib/configparser.py /^class ConfigParser(RawConfigParser):$/;" c +ConfigParserTestCase Lib/test/test_configparser.py /^class ConfigParserTestCase(BasicTestCase, unittest.TestCase):$/;" c +ConfigParserTestCaseExtendedInterpolation Lib/test/test_configparser.py /^class ConfigParserTestCaseExtendedInterpolation(BasicTestCase, unittest.TestCase):$/;" c +ConfigParserTestCaseInvalidInterpolationType Lib/test/test_configparser.py /^class ConfigParserTestCaseInvalidInterpolationType(unittest.TestCase):$/;" c +ConfigParserTestCaseLegacyInterpolation Lib/test/test_configparser.py /^class ConfigParserTestCaseLegacyInterpolation(ConfigParserTestCase):$/;" c +ConfigParserTestCaseNoInterpolation Lib/test/test_configparser.py /^class ConfigParserTestCaseNoInterpolation(BasicTestCase, unittest.TestCase):$/;" c +ConfigParserTestCaseNoValue Lib/test/test_configparser.py /^class ConfigParserTestCaseNoValue(ConfigParserTestCase):$/;" c +ConfigParserTestCaseNonStandardDefaultSection Lib/test/test_configparser.py /^class ConfigParserTestCaseNonStandardDefaultSection(ConfigParserTestCase):$/;" c +ConfigParserTestCaseNonStandardDelimiters Lib/test/test_configparser.py /^class ConfigParserTestCaseNonStandardDelimiters(ConfigParserTestCase):$/;" c +ConfigParserTestCaseTrickyFile Lib/test/test_configparser.py /^class ConfigParserTestCaseTrickyFile(CfgParserTestCaseClass, unittest.TestCase):$/;" c +ConfigSocketReceiver Lib/logging/config.py /^ class ConfigSocketReceiver(ThreadingTCPServer):$/;" c function:listen +ConfigStreamHandler Lib/logging/config.py /^ class ConfigStreamHandler(StreamRequestHandler):$/;" c function:listen +Configure Lib/test/test_tkinter/test_misc.py /^ Configure = '22'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Configure Lib/tkinter/__init__.py /^ Configure = '22'$/;" v class:EventType +ConfigureRequest Lib/test/test_tkinter/test_misc.py /^ ConfigureRequest = '23'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +ConfigureRequest Lib/tkinter/__init__.py /^ ConfigureRequest = '23'$/;" v class:EventType +ConflictBase Lib/test/test_optparse.py /^class ConflictBase(BaseTest):$/;" c +Confused Lib/test/test_enum.py /^ class Confused(Flag):$/;" c function:OldTestFlag.test_number_reset_and_order_cleanup +ConfusedColor Lib/test/test_enum.py /^ class ConfusedColor(StrMixin, AnotherEnum, SomeEnum):$/;" c function:TestSpecial.test_multiple_mixin +ConnectedStreamTestMixin Lib/test/test_socket.py /^ ThreadedSocketTestMixin):$/;" c +Connection Lib/multiprocessing/connection.py /^class Connection(_ConnectionBase):$/;" c +Connection Lib/multiprocessing/dummy/connection.py /^class Connection(object):$/;" c +Connection Lib/test/test_sqlite3/test_regression.py /^ class Connection(sqlite.Connection):$/;" c function:RegressionTests.test_connection_constructor_call_check +ConnectionFactoryTests Lib/test/test_sqlite3/test_factory.py /^class ConnectionFactoryTests(unittest.TestCase):$/;" c +ConnectionHandler Lib/test/test_ssl.py /^ class ConnectionHandler(asyncore.dispatcher_with_send):$/;" c class:AsyncoreEchoServer.EchoServer +ConnectionHandler Lib/test/test_ssl.py /^ class ConnectionHandler(threading.Thread):$/;" c class:ThreadedEchoServer +ConnectionTests Lib/test/test_sqlite3/test_dbapi.py /^class ConnectionTests(unittest.TestCase):$/;" c +ConnectionType Modules/_sqlite/module.h /^ PyTypeObject *ConnectionType;$/;" m struct:__anon355 +ConnectionWrapper Lib/multiprocessing/connection.py /^class ConnectionWrapper(object):$/;" c +Constant Include/internal/pycore_ast.h /^ } Constant;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon97 +ConstantTests Lib/test/test_ast.py /^class ConstantTests(unittest.TestCase):$/;" c +Constant_fields Python/Python-ast.c /^static const char * const Constant_fields[]={$/;" v file: +Constant_kind Include/internal/pycore_ast.h /^ FormattedValue_kind=18, JoinedStr_kind=19, Constant_kind=20,$/;" e enum:_expr_kind +Constant_type Include/internal/pycore_ast_state.h /^ PyObject *Constant_type;$/;" m struct:ast_state +Constructor Parser/asdl.py /^class Constructor(AST):$/;" c +ConstructorTestCase Lib/test/test_hmac.py /^class ConstructorTestCase(unittest.TestCase):$/;" c +ConstructorTests Lib/test/test_sqlite3/test_dbapi.py /^class ConstructorTests(unittest.TestCase):$/;" c +ContStr Lib/lib2to3/pgen2/tokenize.py /^ContStr = group(_litprefix + r"'[^\\n'\\\\]*(?:\\\\.[^\\n'\\\\]*)*" +$/;" v +ContStr Lib/tokenize.py /^ContStr = group(StringPrefix + r"'[^\\n'\\\\]*(?:\\\\.[^\\n'\\\\]*)*" +$/;" v +Container Lib/_collections_abc.py /^class Container(metaclass=ABCMeta):$/;" c +Container Lib/test/test_ctypes/test_array_in_pointer.py /^class Container(Structure):$/;" c +Container Lib/test/test_unittest/testmock/testpatch.py /^class Container(object):$/;" c +Container Lib/typing.py /^Container = _alias(collections.abc.Container, 1)$/;" v +ContainerNoGC Lib/test/test_gc.py /^ ContainerNoGC = None$/;" v +ContainerNoGC_dealloc Modules/_testcapimodule.c /^ContainerNoGC_dealloc(ContainerNoGCobject *self)$/;" f file: +ContainerNoGC_members Modules/_testcapimodule.c /^static PyMemberDef ContainerNoGC_members[] = {$/;" v file: +ContainerNoGC_new Modules/_testcapimodule.c /^ContainerNoGC_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f file: +ContainerNoGC_type Modules/_testcapimodule.c /^static PyTypeObject ContainerNoGC_type = {$/;" v file: +ContainerNoGCobject Modules/_testcapimodule.c /^} ContainerNoGCobject;$/;" t typeref:struct:__anon596 file: +ContainerTestCase Lib/test/test_marshal.py /^class ContainerTestCase(unittest.TestCase, HelperMixin):$/;" c +ContentDisposition Lib/email/_header_value_parser.py /^class ContentDisposition(ParameterizedHeaderValue):$/;" c +ContentDispositionHeader Lib/email/headerregistry.py /^class ContentDispositionHeader(ParameterizedMIMEHeader):$/;" c +ContentHandler Lib/xml/sax/handler.py /^class ContentHandler:$/;" c +ContentLengthChecker Lib/test/test_httplib.py /^ class ContentLengthChecker(list):$/;" c function:HeaderTests.test_content_length_0 +ContentManager Lib/email/contentmanager.py /^class ContentManager:$/;" c +ContentTooShortError Lib/urllib/error.py /^class ContentTooShortError(URLError):$/;" c +ContentTransferEncoding Lib/email/_header_value_parser.py /^class ContentTransferEncoding(TokenList):$/;" c +ContentTransferEncodingHeader Lib/email/headerregistry.py /^class ContentTransferEncodingHeader:$/;" c +ContentType Lib/email/_header_value_parser.py /^class ContentType(ParameterizedHeaderValue):$/;" c +ContentTypeHeader Lib/email/headerregistry.py /^class ContentTypeHeader(ParameterizedMIMEHeader):$/;" c +ContentsDiskTests Lib/test/test_importlib/resources/test_contents.py /^class ContentsDiskTests(ContentsTests, unittest.TestCase):$/;" c +ContentsNamespaceTests Lib/test/test_importlib/resources/test_contents.py /^class ContentsNamespaceTests(ContentsTests, unittest.TestCase):$/;" c +ContentsTests Lib/test/test_importlib/resources/test_contents.py /^class ContentsTests:$/;" c +ContentsZipTests Lib/test/test_importlib/resources/test_contents.py /^class ContentsZipTests(ContentsTests, util.ZipSetup, unittest.TestCase):$/;" c +Context Lib/_pydecimal.py /^class Context(object):$/;" c +Context Lib/importlib/metadata/__init__.py /^ class Context:$/;" c class:DistributionFinder +Context Lib/test/test_exceptions.py /^ class Context:$/;" c function:ExceptionTests.testExceptionCleanupState +Context Lib/test/test_raise.py /^class Context:$/;" c +Context Modules/_decimal/tests/deccheck.py /^class Context(object):$/;" c +Context Tools/cases_generator/parser.py /^class Context(NamedTuple):$/;" c +ContextAPItests Lib/test/test_decimal.py /^class ContextAPItests:$/;" c +ContextDecorator Lib/contextlib.py /^class ContextDecorator(object):$/;" c +ContextFlags Lib/test/test_decimal.py /^class ContextFlags:$/;" c +ContextFunctions Modules/_decimal/tests/deccheck.py /^ContextFunctions = {$/;" v +ContextInputValidation Lib/test/test_decimal.py /^class ContextInputValidation:$/;" c +ContextManager Lib/test/test_raise.py /^ class ContextManager:$/;" c function:TestContext.test_context_manager +ContextManager Lib/typing.py /^ContextManager = _alias(contextlib.AbstractContextManager, 1, name='ContextManager')$/;" v +ContextManagerTest Lib/test/test_tarfile.py /^class ContextManagerTest(unittest.TestCase):$/;" c +ContextManagerTestCase Lib/test/test_contextlib.py /^class ContextManagerTestCase(unittest.TestCase):$/;" c +ContextManagerTests Lib/test/test_subprocess.py /^class ContextManagerTests(BaseTestCase):$/;" c +ContextManagersTest Lib/test/test_socket.py /^class ContextManagersTest(ThreadedTCPSocketTest):$/;" c +ContextSubclassing Lib/test/test_decimal.py /^class ContextSubclassing:$/;" c +ContextTest Lib/test/test_context.py /^class ContextTest(unittest.TestCase):$/;" c +ContextTests Lib/test/test_ssl.py /^class ContextTests(unittest.TestCase):$/;" c +ContextWithStatement Lib/test/test_decimal.py /^class ContextWithStatement:$/;" c +ContextmanagerAssertionMixin Lib/test/test_with.py /^class ContextmanagerAssertionMixin(object):$/;" c +Continuation Lib/imaplib.py /^Continuation = re.compile(br'\\+( (?P.*))?')$/;" v +Continue_kind Include/internal/pycore_ast.h /^ Continue_kind=28};$/;" e enum:_stmt_kind +Continue_type Include/internal/pycore_ast_state.h /^ PyObject *Continue_type;$/;" m struct:ast_state +Control Lib/msilib/__init__.py /^class Control:$/;" c +Control Lib/msilib/schema.py /^Control = Table('Control')$/;" v +Control Lib/tkinter/tix.py /^class Control(TixWidget):$/;" c +ControlCondition Lib/msilib/schema.py /^ControlCondition = Table('ControlCondition')$/;" v +ControlEvent Lib/msilib/schema.py /^ControlEvent = Table('ControlEvent')$/;" v +ControlMixin Lib/test/test_logging.py /^class ControlMixin(object):$/;" c +ConvParam Modules/_ctypes/callproc.c /^static int ConvParam(PyObject *obj, Py_ssize_t index, struct argument *pa)$/;" f file: +ConversionError Lib/xdrlib.py /^class ConversionError(Error):$/;" c +ConversionErrorTest Lib/test/test_xdrlib.py /^class ConversionErrorTest(unittest.TestCase):$/;" c +ConversionSyntax Lib/_pydecimal.py /^class ConversionSyntax(InvalidOperation):$/;" c +ConvertTest Lib/test/test_statistics.py /^class ConvertTest(unittest.TestCase):$/;" c +Converter Lib/lib2to3/pgen2/conv.py /^class Converter(grammar.Grammar):$/;" c +ConverterArgs Tools/clinic/clinic.py /^ConverterArgs = dict[str, Any]$/;" v +ConverterDict Tools/clinic/clinic.py /^ConverterDict = dict[str, ConverterType]$/;" v +ConverterKeywordDict Tools/clinic/clinic.py /^ConverterKeywordDict = dict[str, TypeSet | bool]$/;" v +ConverterMapping Lib/configparser.py /^class ConverterMapping(MutableMapping):$/;" c +ConverterType Tools/clinic/clinic.py /^ConverterType = Callable[..., CConverter]$/;" v +ConvertersTestCase Lib/test/test_configparser.py /^class ConvertersTestCase(BasicTestCase, unittest.TestCase):$/;" c +ConvertingDict Lib/logging/config.py /^class ConvertingDict(dict, ConvertingMixin):$/;" c +ConvertingList Lib/logging/config.py /^class ConvertingList(list, ConvertingMixin):$/;" c +ConvertingMixin Lib/logging/config.py /^class ConvertingMixin(object):$/;" c +ConvertingTuple Lib/logging/config.py /^class ConvertingTuple(tuple, ConvertingMixin):$/;" c +Cookie Lib/http/cookiejar.py /^class Cookie:$/;" c +CookieError Lib/http/cookies.py /^class CookieError(Exception):$/;" c +CookieJar Lib/http/cookiejar.py /^class CookieJar:$/;" c +CookiePolicy Lib/http/cookiejar.py /^class CookiePolicy:$/;" c +CookieTests Lib/test/test_http_cookiejar.py /^class CookieTests(unittest.TestCase):$/;" c +CookieTests Lib/test/test_http_cookies.py /^class CookieTests(unittest.TestCase):$/;" c +CoolColor Lib/test/test_enum.py /^ class CoolColor(StrMixin, SomeEnum, Enum):$/;" c function:TestSpecial.test_multiple_mixin +CoolEmployee Lib/test/test_typing.py /^class CoolEmployee(NamedTuple):$/;" c +CoolEmployeeWithDefault Lib/test/test_typing.py /^class CoolEmployeeWithDefault(NamedTuple):$/;" c +CoolerColor Lib/test/test_enum.py /^ class CoolerColor(StrMixin, AnotherEnum, Enum):$/;" c function:TestSpecial.test_multiple_mixin +CoolestColor Lib/test/test_enum.py /^ class CoolestColor(StrMixin, SomeEnum, AnotherEnum):$/;" c function:TestSpecial.test_multiple_mixin +Coordinate Lib/test/test_typing.py /^class Coordinate(Protocol):$/;" c +CopyParser Lib/test/test_clinic.py /^class CopyParser:$/;" c +CopyRegTestCase Lib/test/test_copyreg.py /^class CopyRegTestCase(unittest.TestCase):$/;" c +CopyTestCase Lib/test/test_configparser.py /^class CopyTestCase(BasicTestCase, unittest.TestCase):$/;" c +CopyTestCase Lib/test/test_hmac.py /^class CopyTestCase(unittest.TestCase):$/;" c +CoroAsyncIOCompatTest Lib/test/test_coroutines.py /^class CoroAsyncIOCompatTest(unittest.TestCase):$/;" c +CoroGenLike Lib/test/test_types.py /^ class CoroGenLike:$/;" c function:CoroutineTests.test_duck_corogen +CoroLike Lib/test/test_asyncio/test_events.py /^class CoroLike:$/;" c +CoroLike Lib/test/test_collections.py /^ class CoroLike: pass$/;" c function:TestOneTrickPonyABCs.test_Awaitable +CoroLike Lib/test/test_collections.py /^ class CoroLike:$/;" c function:TestOneTrickPonyABCs.test_Coroutine +CoroLike Lib/test/test_types.py /^ class CoroLike:$/;" c function:CoroutineTests.test_duck_coro +CoroLikeObject Lib/test/test_asyncio/test_tasks.py /^class CoroLikeObject:$/;" c +Coroutine Lib/_collections_abc.py /^class Coroutine(Awaitable):$/;" c +Coroutine Lib/typing.py /^Coroutine = _alias(collections.abc.Coroutine, 3)$/;" v +CoroutineGatherTests Lib/test/test_asyncio/test_tasks.py /^class CoroutineGatherTests(GatherTestsBase, test_utils.TestCase):$/;" c +CoroutineTest Lib/test/test_coroutines.py /^class CoroutineTest(unittest.TestCase):$/;" c +CoroutineTests Lib/test/test_asyncio/test_pep492.py /^class CoroutineTests(BaseTest):$/;" c +CoroutineTests Lib/test/test_types.py /^class CoroutineTests(unittest.TestCase):$/;" c +CoroutineType Lib/types.py /^CoroutineType = type(_c)$/;" v +CosmeticTestCase Lib/test/test_unparse.py /^class CosmeticTestCase(ASTTestCase):$/;" c +CountLinesTest Lib/idlelib/idle_test/test_squeezer.py /^class CountLinesTest(unittest.TestCase):$/;" c +Counted Lib/test/test_descr.py /^ class Counted(object):$/;" c function:.test_slots +CountedObject Lib/test/_test_multiprocessing.py /^class CountedObject(object):$/;" c +Counter Lib/collections/__init__.py /^class Counter(dict):$/;" c +Counter Lib/test/test_monitoring.py /^ class Counter:$/;" c function:MonitoringCountTest.check_event_count +Counter Lib/test/test_threading.py /^class Counter(object):$/;" c +Counter Lib/test/test_zipfile/_path/_itertools.py /^class Counter:$/;" c +Counter Lib/test/test_zipfile/_path/test_path.py /^ Counter = Counter$/;" v class:jaraco.itertools +Counter Lib/typing.py /^Counter = _alias(collections.Counter, 1)$/;" v +CounterSubclassWithGet Lib/test/test_collections.py /^class CounterSubclassWithGet(Counter):$/;" c +CounterSubclassWithSetItem Lib/test/test_collections.py /^class CounterSubclassWithSetItem(Counter):$/;" c +CounterWithDisable Lib/test/test_monitoring.py /^class CounterWithDisable:$/;" c +CountingTask Lib/test/test_asyncio/test_eager_task_factory.py /^ def CountingTask(*args, eager_start=False, **kwargs):$/;" f function:AsyncTaskCounter.__init__ +Coverage Lib/test/test_decimal.py /^class Coverage:$/;" c +CoverageOneHundredTestCase Lib/test/test_configparser.py /^class CoverageOneHundredTestCase(unittest.TestCase):$/;" c +CoverageResults Lib/trace.py /^class CoverageResults:$/;" c +CrashAtPickle Lib/test/test_concurrent_futures/test_deadlock.py /^class CrashAtPickle(object):$/;" c +CrashAtUnpickle Lib/test/test_concurrent_futures/test_deadlock.py /^class CrashAtUnpickle(object):$/;" c +CrasherTest Lib/test/test_crashers.py /^class CrasherTest(unittest.TestCase):$/;" c +CrashyIterable Lib/test/test_wsgiref.py /^ class CrashyIterable(object):$/;" c function:HandlerTests.testCloseOnError.error_app +CrawlDelayAndCustomAgentTest Lib/test/test_robotparser.py /^class CrawlDelayAndCustomAgentTest(BaseRobotTest, unittest.TestCase):$/;" c +CrawlDelayAndRequestRateTest Lib/test/test_robotparser.py /^class CrawlDelayAndRequestRateTest(BaseRequestRateTest, unittest.TestCase):$/;" c +CrazyClass Lib/test/test_unittest/testmock/testhelpers.py /^ class CrazyClass(object):$/;" c function:SpecSignatureTest.test_spec_has_function_not_in_bases +CrazyDescriptor Lib/test/test_unittest/testmock/testhelpers.py /^ class CrazyDescriptor(object):$/;" c function:SpecSignatureTest.test_spec_has_descriptor_returning_function +Create Lib/test/test_tkinter/test_misc.py /^ Create = '16'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Create Lib/tkinter/__init__.py /^ Create = '16'$/;" v class:EventType +CreateBootstrapperApplication Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^HRESULT CreateBootstrapperApplication($/;" f +CreateConfigHandlers Lib/idlelib/config.py /^ def CreateConfigHandlers(self):$/;" m class:IdleConf +CreateFolder Lib/msilib/schema.py /^CreateFolder = Table('CreateFolder')$/;" v +CreateMainWindow Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT CreateMainWindow() {$/;" f class:PythonBootstrapperApplication file: +CreateServerFunctionalTest Lib/test/test_socket.py /^class CreateServerFunctionalTest(unittest.TestCase):$/;" c +CreateServerTest Lib/test/test_socket.py /^class CreateServerTest(unittest.TestCase):$/;" c +CreateSwappedType Modules/_ctypes/_ctypes.c /^static PyObject *CreateSwappedType(PyTypeObject *type, PyObject *args, PyObject *kwds,$/;" f file: +CreateTest Lib/test/test_tarfile.py /^class CreateTest(WriteTestBase, unittest.TestCase):$/;" c +CreateTests Lib/test/test__xxsubinterpreters.py /^class CreateTests(TestBase):$/;" c +CreateTests Lib/test/test_interpreters.py /^class CreateTests(TestBase):$/;" c +CreateWithXModeTest Lib/test/test_tarfile.py /^class CreateWithXModeTest(CreateTest):$/;" c +CreationTestCase Lib/test/test_timeout.py /^class CreationTestCase(unittest.TestCase):$/;" c +CreationTime Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER CreationTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +Creature Lib/test/test_enum.py /^ class Creature(CreatureDataMixin, Enum):$/;" c function:TestSpecial.test_repr_with_dataclass +CreatureDataMixin Lib/test/test_enum.py /^ class CreatureDataMixin(Huh):$/;" c function:TestSpecial.test_repr_with_dataclass +CreatureDataMixin Lib/test/test_enum.py /^ class CreatureDataMixin:$/;" c function:TestSpecial.test_repr_with_dataclass +CryptTestCase Lib/test/test_crypt.py /^class CryptTestCase(unittest.TestCase):$/;" c +Cs Tools/unicode/mkstringprep.py /^Cs = set(gen_category(["Cs"]))$/;" v +CtxCaps Modules/_decimal/_decimal.c 114;" d file: +CurrentColorKeysTest Lib/idlelib/idle_test/test_config.py /^class CurrentColorKeysTest(unittest.TestCase):$/;" c +CurrentKeys Lib/idlelib/config.py /^ def CurrentKeys(self):$/;" m class:IdleConf +CurrentTheme Lib/idlelib/config.py /^ def CurrentTheme(self):$/;" m class:IdleConf +Cursor Lib/test/test_sqlite3/test_regression.py /^ class Cursor(sqlite.Cursor):$/;" c function:RegressionTests.test_cursor_constructor_call_check +CursorFactoryTests Lib/test/test_sqlite3/test_factory.py /^class CursorFactoryTests(unittest.TestCase):$/;" c +CursorTests Lib/test/test_sqlite3/test_dbapi.py /^class CursorTests(unittest.TestCase):$/;" c +CursorType Modules/_sqlite/module.h /^ PyTypeObject *CursorType;$/;" m struct:__anon355 +CurvesTurtle Lib/turtledemo/fractalcurves.py /^class CurvesTurtle(Pen):$/;" c +Custom Lib/test/test_capi/test_abstract.py /^ class Custom:$/;" c function:CAPITest.test_sequence_delslice +Custom Lib/test/test_capi/test_abstract.py /^ class Custom:$/;" c function:CAPITest.test_sequence_setslice +Custom Lib/test/test_dict.py /^ class Custom(dict):$/;" c function:DictTest.test_invalid_keyword_arguments +Custom Lib/test/test_inspect.py /^ class Custom(dict):$/;" c function:TestGetattrStatic.test_custom_object_dict +Custom Lib/test/test_typing.py /^ class Custom(collections.abc.Iterable, Protocol):$/;" c function:ProtocolTests.test_collections_protocols_allowed +Custom1Page_Show Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void Custom1Page_Show() {$/;" f class:PythonBootstrapperApplication file: +Custom2Page_Show Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void Custom2Page_Show() {$/;" f class:PythonBootstrapperApplication file: +CustomAction Lib/msilib/schema.py /^CustomAction = Table('CustomAction')$/;" v +CustomByteArray Lib/test/test_float.py /^ class CustomByteArray(bytearray): pass$/;" c function:GeneralFloatCases.test_non_numeric_input_types +CustomByteArray Lib/test/test_int.py /^ class CustomByteArray(bytearray): pass$/;" c function:IntTestCases.test_non_numeric_input_types +CustomBytes Lib/test/test_float.py /^ class CustomBytes(bytes): pass$/;" c function:GeneralFloatCases.test_non_numeric_input_types +CustomBytes Lib/test/test_int.py /^ class CustomBytes(bytes): pass$/;" c function:IntTestCases.test_non_numeric_input_types +CustomCPicklerClass Lib/test/test_pickle.py /^ class CustomCPicklerClass(_pickle.Pickler, AbstractCustomPicklerClass):$/;" c class:.CPicklerHookTests +CustomCallable Lib/test/test_typing.py /^ class CustomCallable:$/;" c function:ProtocolTests.test_protocols_isinstance +CustomConfigParser Lib/test/test_configparser.py /^ class CustomConfigParser(configparser.ConfigParser):$/;" c function:ConfigParserTestCaseNoInterpolation.test_none_as_default_interpolation +CustomContextManager Lib/test/test_typing.py /^ class CustomContextManager(typing.ContextManager, Protocol):$/;" c function:ProtocolTests.test_builtin_protocol_allowlist +CustomDescriptor Lib/test/test_typing.py /^ class CustomDescriptor:$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +CustomDescriptor Lib/test/test_typing.py /^ class CustomDescriptor:$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +CustomDict Lib/test/test_dict.py /^ class CustomDict(dict):$/;" c function:DictTest.test_dict_copy_order +CustomDirWithX Lib/test/test_typing.py /^ class CustomDirWithX:$/;" c function:ProtocolTests.test_protocols_isinstance_not_fooled_by_custom_dir +CustomDirWithoutX Lib/test/test_typing.py /^ class CustomDirWithoutX:$/;" c function:ProtocolTests.test_protocols_isinstance_not_fooled_by_custom_dir +CustomError Lib/test/test_abc.py /^ class CustomError(Exception): ...$/;" c function:test_factory.TestABC.test_issubclass_bad_arguments +CustomError Lib/test/test_dataclasses.py /^class CustomError(Exception): pass$/;" c +CustomError Lib/test/test_email/test_message.py /^ class CustomError(Exception):$/;" c class:TestEmailMessageBase._TestSetRaisingContentManager +CustomError Lib/test/test_mailbox.py /^ class CustomError(Exception): ...$/;" c function:TestMailbox.test_add_that_raises_leaves_mailbox_empty +CustomError Lib/test/test_unittest/test_runner.py /^class CustomError(Exception):$/;" c +CustomError Lib/test/test_unittest/testmock/testasync.py /^ class CustomError(Exception): pass$/;" c function:AsyncArguments.test_add_side_effect_exception +CustomException Lib/test/test_asyncio/test_taskgroups.py /^ class CustomException(Exception):$/;" c function:TestTaskGroup.test_taskgroup_context_manager_exit_raises +CustomException Lib/test/test_dict.py /^ class CustomException(Exception):$/;" c function:DictTest.test_bad_key +CustomException Lib/test/test_wsgiref.py /^ class CustomException(ValueError):$/;" c function:HandlerTests.testDontResetInternalStateOnException +CustomFormat Lib/test/test_fstring.py /^ class CustomFormat:$/;" c function:.test_custom_format_specifier +CustomGetattr Lib/test/test_inspect.py /^ class CustomGetattr(object):$/;" c function:TestPredicates.test_isclass +CustomHTMLCal Lib/test/test_calendar.py /^ class CustomHTMLCal(calendar.HTMLCalendar):$/;" c function:TestSubClassingCase.setUp +CustomHandler Lib/test/test_logging.py /^class CustomHandler(logging.StreamHandler):$/;" c +CustomInit Lib/test/test_codecs.py /^ class CustomInit(RuntimeError):$/;" c function:ExceptionNotesTest.test_init_override +CustomInt Lib/test/test_fractions.py /^ class CustomInt(int):$/;" c function:FractionTest.testIntGuaranteesIntReturn +CustomInt Lib/test/test_zlib.py /^class CustomInt:$/;" c +CustomIter Lib/test/list_tests.py /^ class CustomIter:$/;" c function:CommonTest.test_extend +CustomLevelsAndFiltersTest Lib/test/test_logging.py /^class CustomLevelsAndFiltersTest(BaseTest):$/;" c +CustomListener Lib/test/test_logging.py /^class CustomListener(logging.handlers.QueueListener):$/;" c +CustomModule Lib/test/test_importlib/test_util.py /^ class CustomModule(types.ModuleType):$/;" c function:ModuleFromSpecTests.test_create_module +CustomNew Lib/test/test_codecs.py /^ class CustomNew(RuntimeError):$/;" c function:ExceptionNotesTest.test_new_override +CustomObject Doc/includes/newtypes/custom.c /^} CustomObject;$/;" t typeref:struct:__anon272 file: +CustomObject Doc/includes/newtypes/custom2.c /^} CustomObject;$/;" t typeref:struct:__anon273 file: +CustomObject Doc/includes/newtypes/custom3.c /^} CustomObject;$/;" t typeref:struct:__anon276 file: +CustomObject Doc/includes/newtypes/custom4.c /^} CustomObject;$/;" t typeref:struct:__anon274 file: +CustomOpenHook Lib/test/test_fileinput.py /^ class CustomOpenHook:$/;" c function:FileInputTests.test_file_opening_hook +CustomProp Lib/test/test_typing.py /^ class CustomProp:$/;" c function:OverrideDecoratorTests.test_silent_failure +CustomProto Lib/test/test_sqlite3/test_types.py /^ class CustomProto():$/;" c function:ObjectAdaptationTests.test_custom_proto +CustomProtocol Lib/test/test_typing.py /^ class CustomProtocol(TestCase, Protocol):$/;" c function:ProtocolTests.test_builtin_protocol_allowlist +CustomPyPicklerClass Lib/test/test_pickle.py /^ AbstractCustomPicklerClass):$/;" c class:PyPicklerHookTests +CustomQueue Lib/test/test_logging.py /^class CustomQueue(queue.Queue):$/;" c +CustomReversedDict Lib/test/test_dict.py /^ class CustomReversedDict(dict):$/;" c function:DictTest.test_dict_copy_order +CustomRun Lib/idlelib/query.py /^class CustomRun(Query):$/;" c +CustomRunCLIargsokTest Lib/idlelib/idle_test/test_query.py /^class CustomRunCLIargsokTest(unittest.TestCase):$/;" c +CustomRunEntryokTest Lib/idlelib/idle_test/test_query.py /^class CustomRunEntryokTest(unittest.TestCase):$/;" c +CustomRunGuiTest Lib/idlelib/idle_test/test_query.py /^class CustomRunGuiTest(unittest.TestCase):$/;" c +CustomRun_spec Lib/idlelib/idle_test/htest.py /^CustomRun_spec = {$/;" v +CustomSequence Lib/test/test_collections.py /^ class CustomSequence(Sequence):$/;" c function:TestCollectionABCs.test_issue26915 +CustomSet Lib/test/test_dictviews.py /^ class CustomSet(set):$/;" c function:DictSetTest.test_keys_set_operations +CustomStackSummary Lib/test/test_traceback.py /^ class CustomStackSummary(traceback.StackSummary):$/;" c function:TestStack.test_custom_format_frame +CustomStr Lib/test/test_float.py /^ class CustomStr(str): pass$/;" c function:GeneralFloatCases.test_non_numeric_input_types +CustomStr Lib/test/test_int.py /^ class CustomStr(str): pass$/;" c function:IntTestCases.test_non_numeric_input_types +CustomStr Lib/test/test_iter.py /^ class CustomStr:$/;" c function:TestCase.test_reduce_mutating_builtins_iter.run +CustomStr Lib/test/test_sqlite3/test_regression.py /^ class CustomStr(str):$/;" c function:RegressionTests.test_set_isolation_level +CustomStrEnum Lib/test/test_enum.py /^ class CustomStrEnum(str, Enum):$/;" c function:TestSpecial.test_custom_strenum +CustomTraversableResourcesTests Lib/test/test_importlib/resources/test_custom.py /^class CustomTraversableResourcesTests(unittest.TestCase):$/;" c +CustomType Doc/includes/newtypes/custom.c /^static PyTypeObject CustomType = {$/;" v file: +CustomType Doc/includes/newtypes/custom2.c /^static PyTypeObject CustomType = {$/;" v file: +CustomType Doc/includes/newtypes/custom3.c /^static PyTypeObject CustomType = {$/;" v file: +CustomType Doc/includes/newtypes/custom4.c /^static PyTypeObject CustomType = {$/;" v file: +CustomValue Lib/test/test_fractions.py /^ class CustomValue:$/;" c function:FractionTest.testBoolGuarateesBoolReturn +CustomVariadic Lib/test/test_typing.py /^ class CustomVariadic(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_get_type_hints_on_unpack_args +CustomVariadic Lib/test/test_typing.py /^ class CustomVariadic(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_get_type_hints_on_unpack_args_string +CustomVisitor Lib/test/test_asdl_parser.py /^ class CustomVisitor(self.asdl.VisitorBase):$/;" c function:TestAsdlParser.test_visitor +Custom_clear Doc/includes/newtypes/custom4.c /^Custom_clear(CustomObject *self)$/;" f file: +Custom_dealloc Doc/includes/newtypes/custom2.c /^Custom_dealloc(CustomObject *self)$/;" f file: +Custom_dealloc Doc/includes/newtypes/custom3.c /^Custom_dealloc(CustomObject *self)$/;" f file: +Custom_dealloc Doc/includes/newtypes/custom4.c /^Custom_dealloc(CustomObject *self)$/;" f file: +Custom_getfirst Doc/includes/newtypes/custom3.c /^Custom_getfirst(CustomObject *self, void *closure)$/;" f file: +Custom_getfirst Doc/includes/newtypes/custom4.c /^Custom_getfirst(CustomObject *self, void *closure)$/;" f file: +Custom_getlast Doc/includes/newtypes/custom3.c /^Custom_getlast(CustomObject *self, void *closure)$/;" f file: +Custom_getlast Doc/includes/newtypes/custom4.c /^Custom_getlast(CustomObject *self, void *closure)$/;" f file: +Custom_getsetters Doc/includes/newtypes/custom3.c /^static PyGetSetDef Custom_getsetters[] = {$/;" v file: +Custom_getsetters Doc/includes/newtypes/custom4.c /^static PyGetSetDef Custom_getsetters[] = {$/;" v file: +Custom_init Doc/includes/newtypes/custom2.c /^Custom_init(CustomObject *self, PyObject *args, PyObject *kwds)$/;" f file: +Custom_init Doc/includes/newtypes/custom3.c /^Custom_init(CustomObject *self, PyObject *args, PyObject *kwds)$/;" f file: +Custom_init Doc/includes/newtypes/custom4.c /^Custom_init(CustomObject *self, PyObject *args, PyObject *kwds)$/;" f file: +Custom_members Doc/includes/newtypes/custom2.c /^static PyMemberDef Custom_members[] = {$/;" v file: +Custom_members Doc/includes/newtypes/custom3.c /^static PyMemberDef Custom_members[] = {$/;" v file: +Custom_members Doc/includes/newtypes/custom4.c /^static PyMemberDef Custom_members[] = {$/;" v file: +Custom_methods Doc/includes/newtypes/custom2.c /^static PyMethodDef Custom_methods[] = {$/;" v file: +Custom_methods Doc/includes/newtypes/custom3.c /^static PyMethodDef Custom_methods[] = {$/;" v file: +Custom_methods Doc/includes/newtypes/custom4.c /^static PyMethodDef Custom_methods[] = {$/;" v file: +Custom_name Doc/includes/newtypes/custom2.c /^Custom_name(CustomObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +Custom_name Doc/includes/newtypes/custom3.c /^Custom_name(CustomObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +Custom_name Doc/includes/newtypes/custom4.c /^Custom_name(CustomObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +Custom_new Doc/includes/newtypes/custom2.c /^Custom_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +Custom_new Doc/includes/newtypes/custom3.c /^Custom_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +Custom_new Doc/includes/newtypes/custom4.c /^Custom_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +Custom_setfirst Doc/includes/newtypes/custom3.c /^Custom_setfirst(CustomObject *self, PyObject *value, void *closure)$/;" f file: +Custom_setfirst Doc/includes/newtypes/custom4.c /^Custom_setfirst(CustomObject *self, PyObject *value, void *closure)$/;" f file: +Custom_setlast Doc/includes/newtypes/custom3.c /^Custom_setlast(CustomObject *self, PyObject *value, void *closure)$/;" f file: +Custom_setlast Doc/includes/newtypes/custom4.c /^Custom_setlast(CustomObject *self, PyObject *value, void *closure)$/;" f file: +Custom_traverse Doc/includes/newtypes/custom4.c /^Custom_traverse(CustomObject *self, visitproc visit, void *arg)$/;" f file: +CustomerModel Lib/test/test_typing.py /^ class CustomerModel(Decorated, frozen=True):$/;" c function:DataclassTransformTests.test_base_class +CustomerModel Lib/test/test_typing.py /^ class CustomerModel(ModelBase, init=False):$/;" c function:DataclassTransformTests.test_metaclass +CustomerModel Lib/test/test_typing.py /^ class CustomerModel:$/;" c function:DataclassTransformTests.test_decorator +Cut Tools/peg_generator/pegen/grammar.py /^class Cut:$/;" c +CycleChainFinalizationTest Lib/test/test_finalization.py /^class CycleChainFinalizationTest(TestBase, unittest.TestCase):$/;" c +CycleError Lib/graphlib.py /^class CycleError(ValueError):$/;" c +CygwinCCompiler Tools/c-analyzer/distutils/cygwinccompiler.py /^class CygwinCCompiler(UnixCCompiler):$/;" c +D Lib/test/ann_module.py /^class D(C):$/;" c +D Lib/test/pickletester.py /^ class D(object):$/;" c function:AbstractPickleTests.test_reduce_bad_iterator +D Lib/test/pickletester.py /^class D(C):$/;" c +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestABC.test_abstractmethod_integration +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestABC.test_ABC_helper +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestABC.test_abstractclassmethod_basics +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestABC.test_abstractproperty_basics +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestABC.test_abstractstaticmethod_basics +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestABC.test_customdescriptors_with_abstractmethod +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestABC.test_descriptors_with_abstractmethod +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestLegacyAPI.test_abstractclassmethod_basics +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestLegacyAPI.test_abstractproperty_basics +D Lib/test/test_abc.py /^ class D(C):$/;" c function:test_factory.TestLegacyAPI.test_abstractstaticmethod_basics +D Lib/test/test_builtin.py /^ class D(C):$/;" c function:BuiltinTest.test_isinstance +D Lib/test/test_builtin.py /^ class D(C):$/;" c function:BuiltinTest.test_issubclass +D Lib/test/test_builtin.py /^ class D(dict):$/;" c function:BuiltinTest.test_general_eval +D Lib/test/test_capi/test_misc.py /^ class D:$/;" c function:Test_Pep523API.test_inlined_load_attr +D Lib/test/test_capi/test_watchers.py /^ class D(C): pass$/;" c function:TestTypeWatchers.test_watch_type_subclass +D Lib/test/test_class.py /^ class D:$/;" c function:ClassTests.testConstructorErrorMessages +D Lib/test/test_codeccallbacks.py /^ class D(dict):$/;" c function:CodecCallbackTest.test_decodehelper +D Lib/test/test_codeccallbacks.py /^ class D(dict):$/;" c function:CodecCallbackTest.test_encodehelper +D Lib/test/test_codeccallbacks.py /^ class D(dict):$/;" c function:CodecCallbackTest.test_translatehelper +D Lib/test/test_compile.py /^ class D(dict):$/;" c function:TestSpecifics.test_exec_with_general_mapping_for_locals +D Lib/test/test_dataclasses.py /^ class D(I):$/;" c class:TestFrozen.test_inherit_frozen_from_nonfrozen.C +D Lib/test/test_dataclasses.py /^ class D(I):$/;" c class:TestFrozen.test_inherit_nonfrozen_from_frozen.C +D Lib/test/test_dataclasses.py /^ class D(I):$/;" c function:TestFrozen.test_inherit_from_normal_class +D Lib/test/test_dataclasses.py /^ class D(C):$/;" c class:TestFrozen.test_inherit_nonfrozen_from_empty_frozen.C +D Lib/test/test_dataclasses.py /^ class D:$/;" c class:TestRepr.test_repr.C +D Lib/test/test_dataclasses.py /^ class D(B):$/;" c function:TestCase.test_field_order +D Lib/test/test_dataclasses.py /^ class D(C):$/;" c function:TestCase.test_intermediate_non_dataclass +D Lib/test/test_dataclasses.py /^ class D(C):$/;" c function:TestFrozen.test_inherit +D Lib/test/test_dataclasses.py /^ class D(C):$/;" c function:TestFrozen.test_inherit_nonfrozen_from_empty +D Lib/test/test_dataclasses.py /^ class D(C):$/;" c function:TestRepr.test_repr +D Lib/test/test_dataclasses.py /^ class D(P):$/;" c function:TestInit.test_inherit_from_protocol +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestCase.test_is_dataclass +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestCase.test_missing_default +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestCase.test_missing_default_factory +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestCase.test_recursive_annotation +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_default_value +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_getting_field_calls_get +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_init_calls_set +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_lookup_on_class +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_lookup_on_instance +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_no_default_value +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_non_descriptor +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_set_name +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_setting_field_calls_set +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestDescriptors.test_setting_uninitialized_descriptor_field +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestFrozen.test_non_frozen_normal_derived +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestFrozen.test_non_frozen_normal_derived_from_empty_frozen +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestReplace.test_recursive_repr_indirection +D Lib/test/test_dataclasses.py /^ class D:$/;" c function:TestReplace.test_recursive_repr_indirection_two +D Lib/test/test_decimal.py /^ class D(Decimal, H):$/;" c function:UsabilityTest.test_hash_method_nan +D Lib/test/test_descr.py /^ class D(C, metaclass=type):$/;" c class:ClassPropertiesAndMethods.test_metaclass.C2 +D Lib/test/test_descr.py /^ class D(A, B):$/;" c function:.test_mutable_bases_catch_mro_conflict +D Lib/test/test_descr.py /^ class D(B, C): pass$/;" c function:ClassPropertiesAndMethods.test_diamond_inheritance +D Lib/test/test_descr.py /^ class D(B, C):$/;" c function:.test_altmro +D Lib/test/test_descr.py /^ class D(B, C):$/;" c function:.test_subclass_propagation +D Lib/test/test_descr.py /^ class D(B, C):$/;" c function:ClassPropertiesAndMethods.test_metaclass +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_builtin_bases +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_classic +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_classmethods +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_dynamics +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_funny_new +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_isinst_isclass +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_methods +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_mutable_bases +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_mutable_bases_with_failing_mro +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_newslots +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_properties_plus +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_slots +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_staticmethods +D Lib/test/test_descr.py /^ class D(C):$/;" c function:.test_subclass_right_op +D Lib/test/test_descr.py /^ class D(C):$/;" c function:PicklingTests.test_pickle_slots +D Lib/test/test_descr.py /^ class D(C, B):$/;" c function:.test_supers +D Lib/test/test_descr.py /^ class D(C, B):$/;" c function:ClassPropertiesAndMethods.test_metaclass +D Lib/test/test_descr.py /^ class D(C, metaclass=type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +D Lib/test/test_descr.py /^ class D(dict, C):$/;" c function:ClassPropertiesAndMethods.test_multiple_inheritance +D Lib/test/test_descr.py /^ class D(metaclass=_metaclass):$/;" c function:ClassPropertiesAndMethods.test_metaclass +D Lib/test/test_descr.py /^ class D(object): pass$/;" c function:.test_delete_hook +D Lib/test/test_descr.py /^ class D(object): pass$/;" c function:.test_set_class +D Lib/test/test_descr.py /^ class D(object):$/;" c function:.test_dynamics +D Lib/test/test_descr.py /^ class D(object):$/;" c function:.test_properties +D Lib/test/test_descr.py /^ class D(object):$/;" c function:.test_slots_special +D Lib/test/test_descr.py /^ class D(object):$/;" c function:.test_specials +D Lib/test/test_descr.py /^ class D(object, metaclass=Meta1):$/;" c function:.test_set_dict +D Lib/test/test_descrtut.py /^class D(C, B):$/;" c +D Lib/test/test_dict.py /^ class D(dict):$/;" c function:DictTest.test_missing +D Lib/test/test_doctest2.py /^ class D(object):$/;" c class:C +D Lib/test/test_enum.py /^ D = 2$/;" v class:TestSpecial.setUp.Grades +D Lib/test/test_enum.py /^ D = 2$/;" v class:TestSpecial.test_ordered_mixin.Grade +D Lib/test/test_enum.py /^ D = 4$/;" v class:TestSpecial.test_inherited_data_type.MyOtherEnum +D Lib/test/test_exceptions.py /^ class D(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle3 +D Lib/test/test_functools.py /^ class D(C, B):$/;" c function:TestSingleDispatch.test_mro +D Lib/test/test_functools.py /^ class D(collections.defaultdict):$/;" c function:TestSingleDispatch.test_compose_mro +D Lib/test/test_functools.py /^ class D(object):$/;" c function:TestSingleDispatch.test_c3_abc +D Lib/test/test_gc.py /^ class D(C1055820):$/;" c function:GCTogglingTests.test_bug1055820d +D Lib/test/test_genericclass.py /^ class D(c): ...$/;" c class:TestMROEntry.test_mro_entry_errors.C_too_many +D Lib/test/test_genericclass.py /^ class D(c): ...$/;" c class:TestMROEntry.test_mro_entry_errors_2.C_not_callable +D Lib/test/test_genericclass.py /^ class D(c): ...$/;" c class:TestMROEntry.test_mro_entry_errors_2.C_not_tuple +D Lib/test/test_genericclass.py /^ class D(d): ...$/;" c class:TestMROEntry.test_mro_entry_errors.C_too_few +D Lib/test/test_genericclass.py /^ class D(A, c): ...$/;" c function:TestMROEntry.test_mro_entry_with_builtins +D Lib/test/test_genericclass.py /^ class D(A, c, B): ...$/;" c function:TestMROEntry.test_mro_entry +D Lib/test/test_genericclass.py /^ class D(A, c, B): ...$/;" c function:TestMROEntry.test_mro_entry_none +D Lib/test/test_genericclass.py /^ class D(B, c): ...$/;" c function:TestMROEntry.test_mro_entry_signature +D Lib/test/test_genericclass.py /^ class D(C): ...$/;" c function:TestClassGetitem.test_class_getitem_classmethod +D Lib/test/test_genericclass.py /^ class D(C): ...$/;" c function:TestClassGetitem.test_class_getitem_inheritance +D Lib/test/test_genericclass.py /^ class D(C): ...$/;" c function:TestClassGetitem.test_class_getitem_patched +D Lib/test/test_genericclass.py /^ class D(C):$/;" c function:TestClassGetitem.test_class_getitem_inheritance_2 +D Lib/test/test_genericclass.py /^ class D(c, dict): ...$/;" c function:TestMROEntry.test_mro_entry_with_builtins_2 +D Lib/test/test_genericclass.py /^ class D(c, metaclass=Meta):$/;" c function:TestMROEntry.test_mro_entry_metaclass +D Lib/test/test_grammar.py /^ class D(C1, C2, B): pass$/;" c function:GrammarTests.test_classdef +D Lib/test/test_grammar.py /^ class D:$/;" c function:GrammarTests.test_annotations_inheritance +D Lib/test/test_inspect.py /^ class D(A):$/;" c function:TestSignatureObject.test_signature_on_subclass +D Lib/test/test_inspect.py /^ class D(B, C): pass$/;" c function:TestClassesAndFunctions.test_newstyle_mro +D Lib/test/test_inspect.py /^ class D(B, C):$/;" c function:TestClassesAndFunctions.test_classify_newstyle +D Lib/test/test_inspect.py /^ class D(C): pass$/;" c function:TestSignatureObject.test_signature_on_class_without_init +D Lib/test/test_isinstance.py /^ class D: pass$/;" c function:TestIsInstanceExceptions.test_isinstance_dont_mask_non_attribute_error +D Lib/test/test_json/test_dump.py /^ class D(dict):$/;" c function:TestDump.test_encode_evil_dict +D Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class D(C1, C2, B): pass$/;" c function:GrammarTests.testClassdef +D Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class D(C1, C2, B): pass$/;" c function:GrammarTests.testClassdef +D Lib/test/test_opcache.py /^ class D(C):$/;" c function:TestLoadSuperAttrCache.test_descriptor_not_double_executed_on_spec_fail +D Lib/test/test_patma.py /^ D = 0$/;" v class:TestPatma.test_patma_114.A.B.C +D Lib/test/test_patma.py /^ D = 0$/;" v class:TestPatma.test_patma_115.A.B.C +D Lib/test/test_patma.py /^ D = 1$/;" v class:TestPatma.test_patma_113.A.B +D Lib/test/test_sqlite3/test_dbapi.py /^ class D(dict):$/;" c function:CursorTests.test_execute_dict_mapping_mapping +D Lib/test/test_super.py /^class D(C, B):$/;" c +D Lib/test/test_sys.py /^ class D(dict):$/;" c function:SizeofTest.test_slots +D Lib/test/test_type_annotations.py /^ class D(metaclass=C):$/;" c function:TypeAnnotationTests.test_descriptor_still_works +D Lib/test/test_types.py /^ D = types.new_class("D", (C,), {"metaclass": type})$/;" v class:ClassCreationTests.test_metaclass_override_callable.BNotMeta +D Lib/test/test_types.py /^ class D(B[str], float): pass$/;" c function:ClassCreationTests.test_get_original_bases +D Lib/test/test_typing.py /^ D = list[A[*Ts]]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +D Lib/test/test_typing.py /^ D = pickle.loads(s)$/;" v class:ProtocolTests.test_protocols_pickleable.CP +D Lib/test/test_typing.py /^ class D(UserId):$/;" c function:NewTypeTests.test_errors +D Lib/test/test_typing.py /^ class D:$/;" c class:ForwardRefTests.test_no_type_check_nested_types.A +D Lib/test/test_typing.py /^ class D(BP, C): pass$/;" c function:ProtocolTests.test_no_inheritance_from_nominal +D Lib/test/test_typing.py /^ class D(C):$/;" c function:ForwardRefTests.test_no_type_check_no_bases +D Lib/test/test_typing.py /^ class D(C):$/;" c function:GenericTests.test_implicit_any +D Lib/test/test_typing.py /^ class D(C, List[T][U][V]): ...$/;" c function:GenericTests.test_multi_subscr_base +D Lib/test/test_typing.py /^ class D(C[T]):$/;" c function:GenericTests.test_subscripted_generics_as_proxies +D Lib/test/test_typing.py /^ class D(Generic[T1, Unpack[Ts], T2]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_2_typevars_accepts_2_or_more_args +D Lib/test/test_typing.py /^ class D(Generic[T]):$/;" c function:GenericTests.test_parameterized_slots_dict +D Lib/test/test_typing.py /^ class D(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_arg_ordering_matters +D Lib/test/test_typing.py /^ class D(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_arg_typevartuple_identity_matters +D Lib/test/test_typing.py /^ class D(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_origin_is_correct +D Lib/test/test_typing.py /^ class D(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_same_args_results_in_equalty +D Lib/test/test_typing.py /^ class D(PM): pass$/;" c function:ProtocolTests.test_protocols_support_register +D Lib/test/test_typing.py /^ class D(PNonCall): ...$/;" c function:ProtocolTests.test_protocols_issubclass_non_callable +D Lib/test/test_typing.py /^ class D(metaclass=abc.ABCMeta):$/;" c function:ProtocolTests.test_non_protocol_subclasses +D Lib/test/test_typing.py /^ class D(typing.Deque[T]): ...$/;" c function:CollectionsAbcTests.test_deque_instantiation +D Lib/test/test_typing.py /^ class D: ...$/;" c function:CollectionsAbcTests.test_subclassing_register +D Lib/test/test_typing.py /^ class D:$/;" c function:ForwardRefTests.test_no_type_check_forward_ref_as_string +D Lib/test/test_typing.py /^ class D:$/;" c function:ForwardRefTests.test_union_forward_recursion +D Lib/test/test_typing.py /^ class D:$/;" c function:ProtocolTests.test_basic_protocol +D Lib/test/test_typing.py /^ class D:$/;" c function:ProtocolTests.test_collections_protocols_allowed +D Lib/test/test_typing.py /^ class D:$/;" c function:ProtocolTests.test_none_treated_correctly +D Lib/test/test_typing.py /^ class D:$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +D Lib/test/test_typing.py /^ class D:$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +D Lib/test/test_unicode.py /^ class D:$/;" c function:UnicodeTest.test_format +D Lib/test/test_userdict.py /^ class D(collections.UserDict):$/;" c function:UserDictTest.test_missing +D Lib/test/test_weakref.py /^ class D:$/;" c function:ReferencesTestCase.test_callback_different_classes +D Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:2;$/;" m struct:__anon508 file: +D Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +D Modules/_ctypes/_ctypes_test.c /^ unsigned int A: 1, B:2, C:3, D:2;$/;" m struct:__anon509 file: +D Modules/_ctypes/callproc.c /^ long double D;$/;" m union:result file: +D Modules/_ctypes/ctypes.h /^ long double D;$/;" m union:value +D Modules/_ctypes/ctypes.h /^ long double D;$/;" m union:tagPyCArgObject::__anon496 +D Modules/_decimal/libmpdec/literature/fnt.py /^D = [2**25 * 3**2 * 7,$/;" v +D Modules/_decimal/libmpdec/literature/fnt.py /^D = [2**32 * 3 * (5 * 17 * 257 * 65537),$/;" v +D Modules/cjkcodecs/cjkcodecs.h 27;" d +D Parser/parser.c 5;" d file: +D Parser/parser.c 7;" d file: +D Tools/msi/build.bat /^set D=%~dp0$/;" v +D Tools/msi/buildrelease.bat /^set D=%~dp0$/;" v +D Tools/msi/testrelease.bat /^set D=%~dp0$/;" v +D Tools/msi/uploadrelease.bat /^set D=%~dp0$/;" v +D Tools/nuget/build.bat /^set D=%~dp0$/;" v +D1 Lib/test/test_inspect.py /^ class D1(B):$/;" c function:TestSignatureObject.test_signature_on_derived_classes +D1 Lib/test/test_typing.py /^ class D1(B, P[T]):$/;" c function:ProtocolTests.test_init_called +D1 Lib/test/test_typing.py /^ class D1(C[Any]): pass$/;" c function:ProtocolTests.test_protocol_checks_after_subscript +D2 Lib/test/test_inspect.py /^ class D2(D1):$/;" c function:TestSignatureObject.test_signature_on_derived_classes +D2 Lib/test/test_typing.py /^ class D2(C[Any]): pass$/;" c function:ProtocolTests.test_protocol_checks_after_subscript +D2 Lib/test/test_typing.py /^ class D2(P[T], B):$/;" c function:ProtocolTests.test_init_called +DA Lib/test/test_pydoc.py /^ class DA(metaclass=Meta):$/;" c function:PydocWithMetaClasses.test_DynamicClassAttribute +DALS Lib/test/test_importlib/fixtures.py /^def DALS(str):$/;" f +DATA Lib/test/smtpd.py /^ DATA = 1$/;" v class:SMTPChannel +DATA Lib/test/test_asyncio/test_base_events.py /^ DATA = b"12345abcde" * 16 * 1024 # 160 KiB$/;" v class:BaseLoopSockSendfileTests +DATA Lib/test/test_asyncio/test_proactor_events.py /^ DATA = b"12345abcde" * 16 * 1024 # 160 KiB$/;" v class:ProactorEventLoopUnixSockSendfileTests +DATA Lib/test/test_asyncio/test_sendfile.py /^ DATA = b"x" * (1024 * 256 + 1)$/;" v class:SendfileBase +DATA Lib/test/test_asyncio/test_streams.py /^ DATA = b'line1\\nline2\\nline3\\n'$/;" v class:StreamTests +DATA Lib/test/test_asyncio/test_unix_events.py /^ DATA = b"12345abcde" * 16 * 1024 # 160 KiB$/;" v class:SelectorEventLoopUnixSockSendfileTests +DATA Lib/test/test_bz2.py /^ DATA = b'BZh91AY&SY.\\xc8N\\x18\\x00\\x01>_\\x80\\x00\\x10@\\x02\\xff\\xf0\\x01\\x07n\\x00?\\xe7\\xff\\xe00\\x01\\x99\\xaa\\x00\\xc0\\x03F\\x86\\x8c#&\\x83F\\x9a\\x03\\x06\\xa6\\xd0\\xa6\\x93M\\x0fQ\\xa7\\xa8\\x06\\x804hh\\x12$\\x11\\xa4i4\\xf14S\\xd2\\x88\\xe5\\xcd9gd6\\x0b\\n\\xe9\\x9b\\xd5\\x8a\\x99\\xf7\\x08.K\\x8ev\\xfb\\xf7xw\\xbb\\xdf\\xa1\\x92\\xf1\\xdd|\/";\\xa2\\xba\\x9f\\xd5\\xb1#A\\xb6\\xf6\\xb3o\\xc9\\xc5y\\\\\\xebO\\xe7\\x85\\x9a\\xbc\\xb6f8\\x952\\xd5\\xd7"%\\x89>V,\\xf7\\xa6z\\xe2\\x9f\\xa3\\xdf\\x11\\x11"\\xd6E)I\\xa9\\x13^\\xca\\xf3r\\xd0\\x03U\\x922\\xf26\\xec\\xb6\\xed\\x8b\\xc3U\\x13\\x9d\\xc5\\x170\\xa4\\xfa^\\x92\\xacDF\\x8a\\x97\\xd6\\x19\\xfe\\xdd\\xb8\\xbd\\x1a\\x9a\\x19\\xa3\\x80ankR\\x8b\\xe5\\xd83]\\xa9\\xc6\\x08\\x82f\\xf6\\xb9"6l$\\xb8j@\\xc0\\x8a\\xb0l1..\\xbak\\x83ls\\x15\\xbc\\xf4\\xc1\\x13\\xbe\\xf8E\\xb8\\x9d\\r\\xa8\\x9dk\\x84\\xd3n\\xfa\\xacQ\\x07\\xb1%y\\xaav\\xb4\\x08\\xe0z\\x1b\\x16\\xf5\\x04\\xe9\\xcc\\xb9\\x08z\\x1en7.G\\xfc]\\xc9\\x14\\xe1B@\\xbb!8`'$/;" v class:BaseTest +DATA Lib/test/test_os.py /^ DATA = b"12345abcde" * 16 * 1024 # 160 KiB$/;" v class:TestSendfile +DATA Lib/test/test_univnewlines.py /^ DATA = DATA_CR$/;" v class:TestCRNewlines +DATA Lib/test/test_univnewlines.py /^ DATA = DATA_CRLF$/;" v class:TestCRLFNewlines +DATA Lib/test/test_univnewlines.py /^ DATA = DATA_LF$/;" v class:TestLFNewlines +DATA Lib/test/test_univnewlines.py /^ DATA = DATA_MIXED$/;" v class:TestMixedNewlines +DATA Lib/test/test_zlib.py /^ DATA = zlib.compress(HAMLET_SCENE)$/;" v class:ZlibDecompressorTest +DATA0 Lib/test/pickletester.py /^DATA0 = ($/;" v +DATA1 Lib/test/pickletester.py /^DATA1 = ($/;" v +DATA2 Lib/test/pickletester.py /^DATA2 = ($/;" v +DATA3 Lib/test/pickletester.py /^DATA3 = ($/;" v +DATA4 Lib/test/pickletester.py /^DATA4 = ($/;" v +DATAFILES_DIR Lib/test/test_zipfile/test_core.py /^DATAFILES_DIR = 'zipfile_datafiles'$/;" v +DATA_ALLOC Modules/_sre/sre_lib.h 446;" d +DATA_COOKIE Lib/test/pickletester.py /^DATA_COOKIE = (b'\\x80\\x02cCookie\\nSimpleCookie\\nq\\x00)\\x81q\\x01U\\x03key'$/;" v +DATA_CR Lib/test/test_univnewlines.py /^DATA_CR = "\\r".join(DATA_TEMPLATE) + "\\r"$/;" v +DATA_CRLF Lib/test/test_univnewlines.py /^DATA_CRLF = "\\r\\n".join(DATA_TEMPLATE) + "\\r\\n"$/;" v +DATA_DIR Lib/test/test_tomllib/test_data.py /^DATA_DIR = Path(__file__).parent \/ "data"$/;" v +DATA_DIR Lib/test/test_zoneinfo/test_zoneinfo.py /^DATA_DIR = pathlib.Path(__file__).parent \/ "data"$/;" v +DATA_DIR Tools/unicode/makeunicodedata.py /^DATA_DIR = os.path.join('Tools', 'unicode', 'data')$/;" v +DATA_DIRS PC/layout/main.py /^DATA_DIRS = FileNameSet("data")$/;" v +DATA_FMT_UNIT Modules/selectmodule.c 1825;" d file: +DATA_FMT_UNIT Modules/selectmodule.c 1828;" d file: +DATA_LF Lib/test/test_univnewlines.py /^DATA_LF = "\\n".join(DATA_TEMPLATE) + "\\n"$/;" v +DATA_LOOKUP_AT Modules/_sre/sre_lib.h 448;" d +DATA_MIXED Lib/test/test_univnewlines.py /^DATA_MIXED = "\\n".join(DATA_TEMPLATE) + "\\r"$/;" v +DATA_POP Modules/_sre/sre_lib.h 442;" d +DATA_POP_DISCARD Modules/_sre/sre_lib.h 444;" d +DATA_PUSH Modules/_sre/sre_lib.h 440;" d +DATA_SET Lib/test/pickletester.py /^DATA_SET = b'\\x80\\x02c__builtin__\\nset\\nq\\x00]q\\x01(K\\x01K\\x02e\\x85q\\x02Rq\\x03.'$/;" v +DATA_SET2 Lib/test/pickletester.py /^DATA_SET2 = b'\\x80\\x02c__builtin__\\nset\\nq\\x00]q\\x01K\\x03a\\x85q\\x02Rq\\x03.'$/;" v +DATA_SIZE_DEFAULT Lib/test/smtpd.py /^DATA_SIZE_DEFAULT = 33554432$/;" v +DATA_SPLIT Lib/test/test_univnewlines.py /^DATA_SPLIT = [x + "\\n" for x in DATA_TEMPLATE]$/;" v +DATA_STACK_ALLOC Modules/_sre/sre_lib.h 386;" d +DATA_STACK_CHUNK_SIZE Python/pystate.c 1235;" d file: +DATA_STACK_LOOKUP_AT Modules/_sre/sre_lib.h 401;" d +DATA_STACK_POP Modules/_sre/sre_lib.h 424;" d +DATA_STACK_POP_DISCARD Modules/_sre/sre_lib.h 433;" d +DATA_STACK_PUSH Modules/_sre/sre_lib.h 407;" d +DATA_TEMPLATE Lib/test/test_univnewlines.py /^DATA_TEMPLATE = [$/;" v +DATA_TYPE Modules/selectmodule.c 1824;" d file: +DATA_TYPE Modules/selectmodule.c 1827;" d file: +DATA_UEERR Lib/test/pickletester.py /^DATA_UEERR = (b'\\x80\\x02cexceptions\\nUnicodeEncodeError\\n'$/;" v +DATA_XRANGE Lib/test/pickletester.py /^DATA_XRANGE = b'\\x80\\x02c__builtin__\\nxrange\\nq\\x00K\\x00K\\x05K\\x01\\x87q\\x01Rq\\x02.'$/;" v +DATE Modules/getbuildinfo.c 11;" d file: +DATE Modules/getbuildinfo.c 9;" d file: +DATETIME_ADD_MACRO Modules/_datetimemodule.c 6741;" d file: +DATETIME_DATETIME_NOW_METHODDEF Modules/clinic/_datetimemodule.c.h 96;" d +DATETIME_DATE_FROMTIMESTAMP_METHODDEF Modules/clinic/_datetimemodule.c.h 20;" d +DATETIME_H Include/datetime.h 5;" d +DATE_GET_FOLD Modules/_datetimemodule.c 81;" d file: +DATE_GET_HOUR Modules/_datetimemodule.c 77;" d file: +DATE_GET_MICROSECOND Modules/_datetimemodule.c 80;" d file: +DATE_GET_MINUTE Modules/_datetimemodule.c 78;" d file: +DATE_GET_SECOND Modules/_datetimemodule.c 79;" d file: +DATE_SET_FOLD Modules/_datetimemodule.c 97;" d file: +DATE_SET_HOUR Modules/_datetimemodule.c 90;" d file: +DATE_SET_MICROSECOND Modules/_datetimemodule.c 93;" d file: +DATE_SET_MINUTE Modules/_datetimemodule.c 91;" d file: +DATE_SET_SECOND Modules/_datetimemodule.c 92;" d file: +DAY Lib/test/datetimetester.py /^DAY = timedelta(days=1)$/;" v +DAYS Lib/http/cookiejar.py /^DAYS = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]$/;" v +DAYS_BEFORE_MONTH Modules/_zoneinfo.c /^static int DAYS_BEFORE_MONTH[] = {$/;" v file: +DAYS_IN_MONTH Modules/_zoneinfo.c /^static int DAYS_IN_MONTH[] = {$/;" v file: +DB Lib/test/test_coroutines.py /^ class DB:$/;" c function:CoroutineTest.test_await_9.foo +DBCHAR Modules/cjkcodecs/multibytecodec.h /^typedef uint16_t ucs2_t, DBCHAR;$/;" t +DBCHAR Modules/cjkcodecs/multibytecodec.h /^typedef unsigned short ucs2_t, DBCHAR;$/;" t +DBCINV Modules/cjkcodecs/cjkcodecs.h 21;" d +DBL_MANT_DIG Lib/test/test_long.py /^DBL_MANT_DIG = sys.float_info.mant_dig$/;" v +DBL_MAX Lib/test/test_long.py /^DBL_MAX = sys.float_info.max$/;" v +DBL_MAX_EXP Lib/test/test_capi/test_getargs.py /^DBL_MAX_EXP = sys.float_info.max_exp$/;" v +DBL_MAX_EXP Lib/test/test_long.py /^DBL_MAX_EXP = sys.float_info.max_exp$/;" v +DBL_MIN_EXP Lib/test/test_long.py /^DBL_MIN_EXP = sys.float_info.min_exp$/;" v +DBL_MIN_OVERFLOW Lib/test/test_long.py /^DBL_MIN_OVERFLOW = 2**DBL_MAX_EXP - 2**(DBL_MAX_EXP - DBL_MANT_DIG - 1)$/;" v +DBMOPEN_METHODDEF Modules/clinic/_dbmmodule.c.h 155;" d +DBMOPEN_METHODDEF Modules/clinic/_gdbmmodule.c.h 277;" d +DBPickler Doc/includes/dbpickle.py /^class DBPickler(pickle.Pickler):$/;" c +DBUnpickler Doc/includes/dbpickle.py /^class DBUnpickler(pickle.Unpickler):$/;" c +DB_DBM_HSEARCH Modules/_dbmmodule.c 29;" d file: +DB_members Modules/unicodedata.c /^static PyMemberDef DB_members[] = {$/;" v file: +DC1 Lib/curses/ascii.py /^DC1 = 0x11 # ^Q$/;" v +DC2 Lib/curses/ascii.py /^DC2 = 0x12 # ^R$/;" v +DC3 Lib/curses/ascii.py /^DC3 = 0x13 # ^S$/;" v +DC4 Lib/curses/ascii.py /^DC4 = 0x14 # ^T$/;" v +DClass Lib/test/test_opcodes.py /^ class DClass(AClass):$/;" c function:OpcodeTest.test_raise_class_exceptions +DDD_EXACT_MATCH_ON_REMOVE Lib/test/support/os_helper.py /^ DDD_EXACT_MATCH_ON_REMOVE = 4$/;" v +DDD_NO_BROADCAST_SYSTEM Lib/test/support/os_helper.py /^ DDD_NO_BROADCAST_SYSTEM = 8$/;" v +DDD_REMOVE_DEFINITION Lib/test/support/os_helper.py /^ DDD_REMOVE_DEFINITION = 2$/;" v +DDWM_UPDATEWINDOW PC/pyshellext.cpp 15;" d file: +DDbase Lib/test/test_descr.py /^ class DDbase(object):$/;" c function:.test_supers +DDsub Lib/test/test_descr.py /^ class DDsub(DDbase):$/;" c function:.test_supers +DEADLOCK_ERRORS Lib/test/test_importlib/test_locks.py /^DEADLOCK_ERRORS = {kind: splitinit._bootstrap._DeadlockError$/;" v +DEBUG Lib/idlelib/colorizer.py /^DEBUG = False$/;" v +DEBUG Lib/logging/__init__.py /^DEBUG = 10$/;" v +DEBUG Lib/multiprocessing/util.py /^DEBUG = 10$/;" v +DEBUG Lib/re/__init__.py /^ DEBUG = _compiler.SRE_FLAG_DEBUG # dump pattern after compilation$/;" v class:RegexFlag +DEBUG Lib/test/test_decimal.py /^DEBUG = False$/;" v +DEBUG PC/launcher2.c 500;" d file: +DEBUG PC/launcher2.c 522;" d file: +DEBUG Python/dtoa.c 164;" d file: +DEBUG Python/dtoa.c 166;" d file: +DEBUG Tools/c-analyzer/distutils/debug.py /^DEBUG = os.environ.get('DISTUTILS_DEBUG')$/;" v +DEBUG Tools/c-analyzer/distutils/log.py /^DEBUG = 1$/;" v +DEBUGLEVEL Lib/telnetlib.py /^DEBUGLEVEL = 0$/;" v +DEBUGNAME PC/launcher2.c 496;" d file: +DEBUGNAME PC/launcher2.c 523;" d file: +DEBUGSTREAM Lib/test/smtpd.py /^DEBUGSTREAM = Devnull()$/;" v +DEBUG_2 PC/launcher2.c 501;" d file: +DEBUG_2 PC/launcher2.c 521;" d file: +DEBUG_BOOL PC/launcher2.c 502;" d file: +DEBUG_BOOL PC/launcher2.c 520;" d file: +DEBUG_BUILD Lib/importlib/_bootstrap_external.py /^ DEBUG_BUILD = (_MS_WINDOWS and '_d.pyd' in EXTENSION_SUFFIXES)$/;" v class:WindowsRegistryFinder +DEBUG_COLLECTABLE Modules/gcmodule.c 121;" d file: +DEBUG_LEAK Modules/gcmodule.c 124;" d file: +DEBUG_SAVEALL Modules/gcmodule.c 123;" d file: +DEBUG_STACK_DEPTH Lib/asyncio/constants.py /^DEBUG_STACK_DEPTH = 10$/;" v +DEBUG_STATS Modules/gcmodule.c 120;" d file: +DEBUG_UNCOLLECTABLE Modules/gcmodule.c 122;" d file: +DECEMBER Lib/calendar.py /^ DECEMBER = 12$/;" v class:Month +DECIMAL_MASK Objects/unicodectype.c 14;" d file: +DECIMAL_MASK Tools/unicode/makeunicodedata.py /^DECIMAL_MASK = 0x02$/;" v +DECLARE_ERROR_CODE Modules/_sqlite/module.c 266;" d file: +DECLARE_ERROR_CODE Modules/_sqlite/module.c 410;" d file: +DECL_BODY_PARSERS Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^DECL_BODY_PARSERS = {$/;" v +DECODER Modules/cjkcodecs/_codecs_cn.c /^DECODER(gb18030)$/;" f +DECODER Modules/cjkcodecs/_codecs_cn.c /^DECODER(gb2312)$/;" f +DECODER Modules/cjkcodecs/_codecs_cn.c /^DECODER(gbk)$/;" f +DECODER Modules/cjkcodecs/_codecs_cn.c /^DECODER(hz)$/;" f +DECODER Modules/cjkcodecs/_codecs_hk.c /^DECODER(big5hkscs)$/;" f +DECODER Modules/cjkcodecs/_codecs_iso2022.c /^DECODER(iso2022)$/;" f +DECODER Modules/cjkcodecs/_codecs_jp.c /^DECODER(cp932)$/;" f +DECODER Modules/cjkcodecs/_codecs_jp.c /^DECODER(euc_jis_2004)$/;" f +DECODER Modules/cjkcodecs/_codecs_jp.c /^DECODER(euc_jp)$/;" f +DECODER Modules/cjkcodecs/_codecs_jp.c /^DECODER(shift_jis)$/;" f +DECODER Modules/cjkcodecs/_codecs_jp.c /^DECODER(shift_jis_2004)$/;" f +DECODER Modules/cjkcodecs/_codecs_kr.c /^DECODER(cp949)$/;" f +DECODER Modules/cjkcodecs/_codecs_kr.c /^DECODER(euc_kr)$/;" f +DECODER Modules/cjkcodecs/_codecs_kr.c /^DECODER(johab)$/;" f +DECODER Modules/cjkcodecs/_codecs_tw.c /^DECODER(big5)$/;" f +DECODER Modules/cjkcodecs/_codecs_tw.c /^DECODER(cp950)$/;" f +DECODER Modules/cjkcodecs/cjkcodecs.h 104;" d +DECODER_DECODE Modules/_io/textio.c 2766;" d file: +DECODER_GETSTATE Modules/_io/textio.c 2736;" d file: +DECODER_INIT Modules/cjkcodecs/_codecs_cn.c /^DECODER_INIT(hz)$/;" f +DECODER_INIT Modules/cjkcodecs/_codecs_iso2022.c /^DECODER_INIT(iso2022)$/;" f +DECODER_INIT Modules/cjkcodecs/cjkcodecs.h 101;" d +DECODER_RESET Modules/cjkcodecs/_codecs_cn.c /^DECODER_RESET(hz)$/;" f +DECODER_RESET Modules/cjkcodecs/_codecs_iso2022.c /^DECODER_RESET(iso2022)$/;" f +DECODER_RESET Modules/cjkcodecs/cjkcodecs.h 109;" d +DECODE_DIRECT Objects/unicodeobject.c 4166;" d file: +DECODE_DIRECT Objects/unicodeobject.c 4531;" d file: +DECODE_ERROR Lib/ssl.py /^ DECODE_ERROR = 50$/;" v class:_TLSAlertType +DECODE_ERROR Lib/test/test_ssl.py /^ DECODE_ERROR = 50$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +DECODE_ERROR Python/fileutils.c /^static const size_t DECODE_ERROR = ((size_t)-1);$/;" v file: +DECODE_LOCALE_ERR Include/internal/pycore_fileutils.h 181;" d +DECODING_CHUNK_SIZE Objects/unicodeobject.c 6897;" d file: +DECOMPRESSION_FAILURE Lib/ssl.py /^ DECOMPRESSION_FAILURE = 30$/;" v class:_TLSAlertType +DECOMPRESSION_FAILURE Lib/test/test_ssl.py /^ DECOMPRESSION_FAILURE = 30$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +DECOMP_SHIFT Modules/unicodedata_db.h 4350;" d +DECORATE PC/python3dll.c 6;" d file: +DECORATE PC/python3dll.c 8;" d file: +DECREASING Lib/tkinter/tix.py /^DECREASING = 'decreasing'$/;" v +DECREF_INPUTS_AND_REUSE_FLOAT Python/ceval_macros.h 312;" d +DECREMENT_ADAPTIVE_COUNTER Python/ceval_macros.h 295;" d +DECRYPTION_FAILED Lib/ssl.py /^ DECRYPTION_FAILED = 21$/;" v class:_TLSAlertType +DECRYPTION_FAILED Lib/test/test_ssl.py /^ DECRYPTION_FAILED = 21$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +DECRYPT_ERROR Lib/ssl.py /^ DECRYPT_ERROR = 51$/;" v class:_TLSAlertType +DECRYPT_ERROR Lib/test/test_ssl.py /^ DECRYPT_ERROR = 51$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +DEC_DFLT_EMAX Modules/_decimal/_decimal.c 1252;" d file: +DEC_DFLT_EMIN Modules/_decimal/_decimal.c 1253;" d file: +DEC_ERRORS Modules/_decimal/_decimal.c 150;" d file: +DEC_ERR_OCCURRED Modules/_decimal/_decimal.c 149;" d file: +DEC_INVALID_SIGNALS Modules/_decimal/_decimal.c 148;" d file: +DEDENT Include/internal/pycore_token.h 22;" d +DEDENT Lib/lib2to3/pgen2/token.py /^DEDENT = 6$/;" v +DEDENT Lib/token.py /^DEDENT = 6$/;" v +DEEPFROZEN_MODULES_DIR Tools/build/freeze_modules.py /^DEEPFROZEN_MODULES_DIR = os.path.join(ROOT_DIR, 'Python', 'deepfreeze')$/;" v +DEFAULT Lib/unittest/mock.py /^DEFAULT = sentinel.DEFAULT$/;" v +DEFAULTKEYWORDS Tools/i18n/pygettext.py /^DEFAULTKEYWORDS = ', '.join(default_keywords)$/;" v +DEFAULTSECT Lib/configparser.py /^DEFAULTSECT = "DEFAULT"$/;" v +DEFAULT_ANGLEOFFSET Lib/turtle.py /^ DEFAULT_ANGLEOFFSET = 0$/;" v class:TNavigator +DEFAULT_ANGLEORIENT Lib/turtle.py /^ DEFAULT_ANGLEORIENT = 1$/;" v class:TNavigator +DEFAULT_ATTRIBUTE Modules/expat/xmlparse.c /^} DEFAULT_ATTRIBUTE;$/;" t typeref:struct:__anon614 file: +DEFAULT_BLOCK_SIZE Python/flowgraph.c 25;" d file: +DEFAULT_BLOCK_SIZE Python/pyarena.c 14;" d file: +DEFAULT_BUFFER_SIZE Lib/_pyio.py /^DEFAULT_BUFFER_SIZE = 8 * 1024 # bytes$/;" v +DEFAULT_BUFFER_SIZE Lib/test/ann_module7.py /^DEFAULT_BUFFER_SIZE = 8192$/;" v +DEFAULT_BUFFER_SIZE Modules/_io/_iomodule.h 81;" d +DEFAULT_BUFFER_SIZE Modules/grpmodule.c 51;" d file: +DEFAULT_BUFFER_SIZE Modules/pwdmodule.c 64;" d file: +DEFAULT_CHARSET Lib/email/charset.py /^DEFAULT_CHARSET = 'us-ascii'$/;" v +DEFAULT_CNOTAB_SIZE Python/assemble.c 12;" d file: +DEFAULT_CNOTAB_SIZE Python/compile.c 43;" d file: +DEFAULT_CODE_SIZE Python/assemble.c 10;" d file: +DEFAULT_CODE_SIZE Python/compile.c 41;" d file: +DEFAULT_CONFIG Lib/test/test_getpath.py /^DEFAULT_CONFIG = dict($/;" v +DEFAULT_DIR Tools/scripts/summarize_stats.py /^ DEFAULT_DIR = "\/tmp\/py_stats\/"$/;" v +DEFAULT_DIR Tools/scripts/summarize_stats.py /^ DEFAULT_DIR = "c:\\\\temp\\\\py_stats\\\\"$/;" v +DEFAULT_DIR_FD Modules/posixmodule.c 943;" d file: +DEFAULT_DIR_FD Modules/posixmodule.c 945;" d file: +DEFAULT_DOMAIN Python/tracemalloc.c 46;" d file: +DEFAULT_ENCODING Lib/test/test_ftplib.py /^DEFAULT_ENCODING = 'utf-8'$/;" v +DEFAULT_ENTROPY Lib/secrets.py /^DEFAULT_ENTROPY = 32 # number of bytes to return by default$/;" v +DEFAULT_ENV Lib/test/test_utf8_mode.py /^ DEFAULT_ENV = {$/;" v class:UTF8ModeTests +DEFAULT_FORMAT Lib/tarfile.py /^DEFAULT_FORMAT = PAX_FORMAT$/;" v +DEFAULT_FRAMEWORK_FALLBACK Lib/ctypes/macholib/dyld.py /^DEFAULT_FRAMEWORK_FALLBACK = [$/;" v +DEFAULT_GLOBAL_CONFIG Lib/test/test_embed.py /^ DEFAULT_GLOBAL_CONFIG = {$/;" v class:InitConfigTests +DEFAULT_HTTP_LOGGING_PORT Lib/logging/handlers.py /^DEFAULT_HTTP_LOGGING_PORT = 9022$/;" v +DEFAULT_HTTP_PORT Lib/http/cookiejar.py /^DEFAULT_HTTP_PORT = str(http.client.HTTP_PORT)$/;" v +DEFAULT_IGNORES Lib/filecmp.py /^DEFAULT_IGNORES = [$/;" v +DEFAULT_INPUT Tools/cases_generator/generate_cases.py /^DEFAULT_INPUT = os.path.relpath(os.path.join(ROOT, "Python\/bytecodes.c"))$/;" v +DEFAULT_INTERVAL Python/ceval_gil.c 225;" d file: +DEFAULT_LIBRARY_FALLBACK Lib/ctypes/macholib/dyld.py /^DEFAULT_LIBRARY_FALLBACK = [$/;" v +DEFAULT_LNOTAB_SIZE Python/assemble.c 11;" d file: +DEFAULT_LNOTAB_SIZE Python/compile.c 42;" d file: +DEFAULT_LOGGING_CONFIG_PORT Lib/logging/config.py /^DEFAULT_LOGGING_CONFIG_PORT = 9030$/;" v +DEFAULT_LOGGING_FORMAT Lib/multiprocessing/util.py /^DEFAULT_LOGGING_FORMAT = '[%(levelname)s\/%(processName)s] %(message)s'$/;" v +DEFAULT_MAX_INCLUSION_DEPTH Lib/xml/etree/ElementInclude.py /^DEFAULT_MAX_INCLUSION_DEPTH = 6$/;" v +DEFAULT_METADATA_OUTPUT Tools/cases_generator/generate_cases.py /^DEFAULT_METADATA_OUTPUT = os.path.relpath($/;" v +DEFAULT_MODE Lib/ctypes/__init__.py /^ DEFAULT_MODE = RTLD_GLOBAL$/;" v +DEFAULT_MODE Lib/ctypes/__init__.py /^DEFAULT_MODE = RTLD_LOCAL$/;" v +DEFAULT_MODE Lib/turtle.py /^ DEFAULT_MODE = "standard"$/;" v class:TNavigator +DEFAULT_NAMESPACE Lib/test/test_getpath.py /^DEFAULT_NAMESPACE = dict($/;" v +DEFAULT_NUMBER Lib/test/test_timeit.py /^DEFAULT_NUMBER = 1000000$/;" v +DEFAULT_OUTPUT Tools/cases_generator/generate_cases.py /^DEFAULT_OUTPUT = os.path.relpath(os.path.join(ROOT, "Python\/generated_cases.c.h"))$/;" v +DEFAULT_PROGRAM_NAME Modules/getpath.py /^ DEFAULT_PROGRAM_NAME = f'python'$/;" v +DEFAULT_PROGRAM_NAME Modules/getpath.py /^ DEFAULT_PROGRAM_NAME = f'python{VERSION_MAJOR}'$/;" v +DEFAULT_PROTOCOL Lib/pickle.py /^DEFAULT_PROTOCOL = 4$/;" v +DEFAULT_PROTOCOL Modules/_pickle.c /^ DEFAULT_PROTOCOL = 4$/;" e enum:__anon446 file: +DEFAULT_REPEAT Lib/test/test_timeit.py /^DEFAULT_REPEAT = 5$/;" v +DEFAULT_SOAP_LOGGING_PORT Lib/logging/handlers.py /^DEFAULT_SOAP_LOGGING_PORT = 9023$/;" v +DEFAULT_TCP_LOGGING_PORT Lib/logging/handlers.py /^DEFAULT_TCP_LOGGING_PORT = 9020$/;" v +DEFAULT_UDP_LOGGING_PORT Lib/logging/handlers.py /^DEFAULT_UDP_LOGGING_PORT = 9021$/;" v +DEFAULT_VERSION Lib/zipfile/__init__.py /^DEFAULT_VERSION = 20$/;" v +DEFERRED_ADDRESS Modules/_collectionsmodule.c 2209;" d file: +DEFERRED_ADDRESS Modules/xxsubtype.c 17;" d file: +DEFINE Tools/build/generate_opcode_h.py /^DEFINE = "#define {:<38} {:>3}\\n"$/;" v +DEFINE_COMPAREITEMS Modules/arraymodule.c 532;" d file: +DEFINE_UTF16_TO_UTF16 Modules/expat/xmltok.c 697;" d file: +DEFINE_UTF16_TO_UTF8 Modules/expat/xmltok.c 620;" d file: +DEFLATED Modules/zlibmodule.c 181;" d file: +DEF_ANNOT Include/internal/pycore_symtable.h 120;" d +DEF_BOUND Include/internal/pycore_symtable.h 125;" d +DEF_BUF_SIZE Modules/zlibmodule.c 189;" d file: +DEF_COMP_CELL Include/internal/pycore_symtable.h 123;" d +DEF_COMP_ITER Include/internal/pycore_symtable.h 121;" d +DEF_FREE Include/internal/pycore_symtable.h 117;" d +DEF_FREE_CLASS Include/internal/pycore_symtable.h 118;" d +DEF_GLOBAL Include/internal/pycore_symtable.h 112;" d +DEF_IMPORT Include/internal/pycore_symtable.h 119;" d +DEF_LOCAL Include/internal/pycore_symtable.h 113;" d +DEF_MAX_INITIAL_BUF_SIZE Modules/zlibmodule.c 190;" d file: +DEF_MEM_LEVEL Modules/zlibmodule.c 183;" d file: +DEF_MEM_LEVEL Modules/zlibmodule.c 185;" d file: +DEF_NONLOCAL Include/internal/pycore_symtable.h 115;" d +DEF_PARAM Include/internal/pycore_symtable.h 114;" d +DEF_TYPE_PARAM Include/internal/pycore_symtable.h 122;" d +DEL Lib/curses/ascii.py /^DEL = 0x7f # delete$/;" v +DELETE Lib/http/__init__.py /^ DELETE = 'DELETE', 'Remove the target.'$/;" v class:HTTPMethod +DELETE_ATTR Include/opcode.h 57;" d +DELETE_DEREF Include/opcode.h 97;" d +DELETE_FAST Include/opcode.h 84;" d +DELETE_GLOBAL Include/opcode.h 59;" d +DELETE_NAME Include/opcode.h 52;" d +DELETE_SUBSCR Include/opcode.h 40;" d +DELIM Include/osdefs.h 14;" d +DELIM Include/osdefs.h 18;" d +DELIM Include/osdefs.h 45;" d +DELIM Modules/getpath.py /^ DELIM = ':'$/;" v +DELIM Modules/getpath.py /^ DELIM = ';'$/;" v +DELTA Lib/test/_test_multiprocessing.py /^DELTA = 0.1$/;" v +DEL_TARGETS Parser/pegen.h /^ DEL_TARGETS,$/;" e enum:__anon667 +DEOPT_IF Python/bytecodes.c 43;" d file: +DEOPT_IF Python/ceval_macros.h 271;" d +DEPSRC Mac/BuildScript/build-installer.py /^DEPSRC = os.path.expanduser('~\/Universal\/other-sources')$/;" v +DEPSRC Mac/BuildScript/build-installer.py /^DEPSRC = os.path.join(WORKDIR, 'third-party')$/;" v +DEPTARGET Mac/BuildScript/build-installer.py /^DEPTARGET = '10.5'$/;" v +DERIVEDNORMALIZATION_PROPS Tools/unicode/makeunicodedata.py /^DERIVEDNORMALIZATION_PROPS = "DerivedNormalizationProps%s.txt"$/;" v +DERIVED_CORE_PROPERTIES Tools/unicode/makeunicodedata.py /^DERIVED_CORE_PROPERTIES = "DerivedCoreProperties%s.txt"$/;" v +DER_cert_to_PEM_cert Lib/ssl.py /^def DER_cert_to_PEM_cert(der_cert_bytes):$/;" f +DESC Lib/test/test_nntplib.py /^ DESC = 'Python'$/;" v class:NetworkedNNTPTests +DESC Lib/test/test_nntplib.py /^ DESC = 'test'$/;" v class:NetworkedNNTP_SSLTests +DESERIALIZE_METHODDEF Modules/_sqlite/clinic/connection.c.h 1346;" d +DESERIALIZE_METHODDEF Modules/_sqlite/clinic/connection.c.h 1666;" d +DES_cblock Lib/test/test_lib2to3/data/infinite_recursion.py /^DES_cblock = c_ubyte * 8$/;" v +DES_key_schedule Lib/test/test_lib2to3/data/infinite_recursion.py /^DES_key_schedule = DES_ks$/;" v +DES_ks Lib/test/test_lib2to3/data/infinite_recursion.py /^class DES_ks(Structure):$/;" c +DET Lib/telnetlib.py /^DET = bytes([20]) # data entry terminal$/;" v +DEVNULL Lib/asyncio/subprocess.py /^DEVNULL = subprocess.DEVNULL$/;" v +DEVNULL Lib/subprocess.py /^DEVNULL = -3$/;" v +DEV_PTY_FILE Modules/posixmodule.c 8169;" d file: +DEV_PTY_FILE Modules/posixmodule.c 8172;" d file: +DE_INSTRUMENT Python/instrumentation.c /^static const uint8_t DE_INSTRUMENT[256] = {$/;" v file: +DFAState Lib/lib2to3/pgen2/pgen.py /^class DFAState(object):$/;" c +DH Lib/test/test_lib2to3/data/infinite_recursion.py /^DH = dh_st$/;" v +DHFILE Lib/test/test_ssl.py /^DHFILE = data_file("ffdh3072.pem")$/;" v +DH_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^DH_METHOD = dh_method$/;" v +DI Lib/test/test_typing.py /^ class DI:$/;" c function:ProtocolTests.test_none_treated_correctly +DI100Y Modules/_datetimemodule.c 274;" d file: +DI400Y Modules/_datetimemodule.c 275;" d file: +DI4Y Modules/_datetimemodule.c 273;" d file: +DIAGONALIZE Modules/_blake2/impl/blake2b-round.h 117;" d +DIAGONALIZE Modules/_blake2/impl/blake2b-round.h 86;" d +DIAGONALIZE Modules/_blake2/impl/blake2s-round.h 60;" d +DIALECT_GETATTR Modules/_csv.c 467;" d file: +DIALOG_ICON Lib/tkinter/dialog.py /^DIALOG_ICON = 'questhead'$/;" v +DIASET Modules/_csv.c 486;" d file: +DICT Lib/pickle.py /^DICT = b'd' # build a dict from stack items$/;" v +DICT Modules/_pickle.c /^ DICT = 'd',$/;" e enum:opcode file: +DICT Tools/build/umarshal.py /^ DICT = ord('{')$/;" v class:Type +DICTFLAG_FINAL Modules/_ctypes/ctypes.h 332;" d +DICT_FROMKEYS_METHODDEF Objects/clinic/dictobject.c.h 17;" d +DICT_GET_METHODDEF Objects/clinic/dictobject.c.h 60;" d +DICT_KEYS_GENERAL Include/internal/pycore_dict.h /^ DICT_KEYS_GENERAL = 0,$/;" e enum:__anon146 +DICT_KEYS_SPLIT Include/internal/pycore_dict.h /^ DICT_KEYS_SPLIT = 2$/;" e enum:__anon146 +DICT_KEYS_UNICODE Include/internal/pycore_dict.h /^ DICT_KEYS_UNICODE = 1,$/;" e enum:__anon146 +DICT_KEY_STRUCT_FORMAT Lib/test/test_sys.py /^DICT_KEY_STRUCT_FORMAT = 'n2BI2n'$/;" v +DICT_MAX_WATCHERS Include/internal/pycore_dict_state.h 21;" d +DICT_MERGE Include/opcode.h 115;" d +DICT_NEXT_VERSION Include/internal/pycore_dict.h 152;" d +DICT_POPITEM_METHODDEF Objects/clinic/dictobject.c.h 171;" d +DICT_POP_METHODDEF Objects/clinic/dictobject.c.h 134;" d +DICT_SETDEFAULT_METHODDEF Objects/clinic/dictobject.c.h 96;" d +DICT_UPDATE Include/opcode.h 116;" d +DICT_VERSION_INCREMENT Include/internal/pycore_dict.h 149;" d +DICT_VERSION_MASK Include/internal/pycore_dict.h 150;" d +DICT___CONTAINS___METHODDEF Objects/clinic/dictobject.c.h 51;" d +DICT___REVERSED___METHODDEF Objects/clinic/dictobject.c.h 189;" d +DID_NOT_RUN Lib/test/libregrtest/runtest.py /^ DID_NOT_RUN = "DID_NOT_RUN"$/;" v class:State +DIFF_OMITTED Lib/unittest/case.py /^DIFF_OMITTED = ('\\nDiff is %s characters long. '$/;" v +DIFF_PATTERN Doc/tools/check-warnings.py /^DIFF_PATTERN = re.compile($/;" v +DIGITS Lib/re/_parser.py /^DIGITS = frozenset("0123456789")$/;" v +DIGIT_MASK Objects/unicodectype.c 15;" d file: +DIGIT_MASK Tools/unicode/makeunicodedata.py /^DIGIT_MASK = 0x04$/;" v +DIGIT_PATTERN Lib/logging/config.py /^ DIGIT_PATTERN = re.compile(r'^\\d+$')$/;" v class:BaseConfigurator +DIR Misc/coverity_model.c /^typedef struct {} DIR;$/;" t typeref:struct:__anon280 file: +DIR Tools/freeze/regen_frozen.py /^DIR = os.path.dirname(sys.argv[0])$/;" v +DIRECTORIES Tools/msi/csv_to_wxs.py /^DIRECTORIES = set()$/;" v +DIRTYPE Lib/tarfile.py /^DIRTYPE = b"5" # directory$/;" v +DISABLED Lib/tkinter/constants.py /^DISABLED='disabled'$/;" v +DISABLED Tools/build/check_extension_modules.py /^ DISABLED = "disabled"$/;" v class:ModuleState +DISABLED_SETUP Tools/build/check_extension_modules.py /^ DISABLED_SETUP = "disabled_setup"$/;" v class:ModuleState +DISCARD_FOUND Objects/setobject.c 322;" d file: +DISCARD_NOTFOUND Objects/setobject.c 321;" d file: +DISPATCH Modules/_sre/sre_lib.h 547;" d +DISPATCH Modules/_sre/sre_lib.h 554;" d +DISPATCH Python/ceval_macros.h 92;" d +DISPATCH_GOTO Python/ceval_macros.h 76;" d +DISPATCH_GOTO Python/ceval_macros.h 79;" d +DISPATCH_INLINED Python/ceval_macros.h 106;" d +DISPATCH_SAME_OPARG Python/ceval_macros.h 99;" d +DISTVERSION Doc/Makefile /^DISTVERSION = $(shell $(PYTHON) tools\/extensions\/patchlevel.py)$/;" m +DISTVERSION Doc/make.bat /^if not defined DISTVERSION for \/f "usebackq" %%v in (`%PYTHON% tools\/extensions\/patchlevel.py`) do set DISTVERSION=%%v$/;" v +DITTO Lib/test/test_email/test_headerregistry.py /^DITTO = object()$/;" v +DIVIDE Tools/cases_generator/lexer.py /^DIVIDE = r'\/'$/;" v +DIVIDER Lib/doctest.py /^ DIVIDER = "*" * 70$/;" v class:DocTestRunner +DIVMOD Modules/_decimal/libmpdec/typearith.h 256;" d +DIVMOD Modules/_decimal/libmpdec/typearith.h 534;" d +DKIX_DUMMY Include/internal/pycore_dict.h 61;" d +DKIX_EMPTY Include/internal/pycore_dict.h 60;" d +DKIX_ERROR Include/internal/pycore_dict.h 62;" d +DKIX_KEY_CHANGED Include/internal/pycore_dict.h 63;" d +DK_ENTRIES Include/internal/pycore_dict.h /^static inline PyDictKeyEntry* DK_ENTRIES(PyDictKeysObject *dk) {$/;" f +DK_IS_UNICODE Include/internal/pycore_dict.h 147;" d +DK_LOG_SIZE Include/internal/pycore_dict.h 126;" d +DK_MASK Objects/dictobject.c 299;" d file: +DK_SIZE Include/internal/pycore_dict.h 128;" d +DK_SIZE Include/internal/pycore_dict.h 130;" d +DK_UNICODE_ENTRIES Include/internal/pycore_dict.h /^static inline PyDictUnicodeEntry* DK_UNICODE_ENTRIES(PyDictKeysObject *dk) {$/;" f +DLE Lib/curses/ascii.py /^DLE = 0x10 # ^P$/;" v +DLOPENFLAGS Python/import.c 79;" d file: +DLOPENFLAGS_INIT Include/internal/pycore_import.h 89;" d +DLOPENFLAGS_INIT Include/internal/pycore_import.h 92;" d +DM Lib/telnetlib.py /^DM = bytes([242]) # Data Mark$/;" v +DO Lib/telnetlib.py /^DO = bytes([253])$/;" v +DOCSTRINGS_H Modules/_decimal/docstrings.h 8;" d +DOCUMENT_FRAGMENT_NODE Lib/xml/dom/__init__.py /^ DOCUMENT_FRAGMENT_NODE = 11$/;" v class:Node +DOCUMENT_NODE Lib/xml/dom/__init__.py /^ DOCUMENT_NODE = 9$/;" v class:Node +DOCUMENT_NODE Lib/xml/dom/expatbuilder.py /^DOCUMENT_NODE = Node.DOCUMENT_NODE$/;" v +DOCUMENT_TYPE_NODE Lib/xml/dom/__init__.py /^ DOCUMENT_TYPE_NODE = 10$/;" v class:Node +DOG Lib/test/test_enum.py /^ DOG = ('medium', 4)$/;" v class:TestSpecial.test_repr_with_dataclass.Creature +DOMBuilder Lib/xml/dom/xmlbuilder.py /^class DOMBuilder:$/;" c +DOMBuilderFilter Lib/xml/dom/xmlbuilder.py /^class DOMBuilderFilter:$/;" c +DOMEntityResolver Lib/xml/dom/xmlbuilder.py /^class DOMEntityResolver(object):$/;" c +DOMEventStream Lib/xml/dom/pulldom.py /^class DOMEventStream:$/;" c +DOMException Lib/xml/dom/__init__.py /^class DOMException(Exception):$/;" c +DOMImplementation Lib/xml/dom/minidom.py /^class DOMImplementation(DOMImplementationLS):$/;" c +DOMImplementationLS Lib/xml/dom/xmlbuilder.py /^class DOMImplementationLS:$/;" c +DOMInputSource Lib/xml/dom/xmlbuilder.py /^class DOMInputSource(object):$/;" c +DOMSTRING_SIZE_ERR Lib/xml/dom/__init__.py /^DOMSTRING_SIZE_ERR = 2$/;" v +DONE Lib/turtledemo/__main__.py /^DONE = 4$/;" v +DONT Lib/telnetlib.py /^DONT = bytes([254])$/;" v +DONT_ACCEPT_BLANKLINE Lib/doctest.py /^DONT_ACCEPT_BLANKLINE = register_optionflag('DONT_ACCEPT_BLANKLINE')$/;" v +DONT_ACCEPT_TRUE_FOR_1 Lib/doctest.py /^DONT_ACCEPT_TRUE_FOR_1 = register_optionflag('DONT_ACCEPT_TRUE_FOR_1')$/;" v +DONT_HAVE_SIG_ALARM PC/pyconfig.h 62;" d +DONT_HAVE_SIG_PAUSE PC/pyconfig.h 63;" d +DONT_USE_SEH Modules/_ctypes/callproc.c 96;" d file: +DOS Lib/test/test_enum.py /^ DOS = 2$/;" v class:OldTestFlag.test_number_reset_and_order_cleanup.Confused +DOT Include/internal/pycore_token.h 39;" d +DOT Lib/email/_header_value_parser.py /^DOT = ValueTerminal('.', 'dot')$/;" v +DOT Lib/lib2to3/pgen2/token.py /^DOT = 23$/;" v +DOT Lib/token.py /^DOT = 23$/;" v +DOTBOX Lib/tkinter/constants.py /^DOTBOX='dotbox'$/;" v +DOT_ATOM_ENDS Lib/email/_header_value_parser.py /^DOT_ATOM_ENDS = ATOM_ENDS - set('.')$/;" v +DOT_PATTERN Lib/logging/config.py /^ DOT_PATTERN = re.compile(r'^\\.\\s*(\\w+)\\s*')$/;" v class:BaseConfigurator +DOUBLE Lib/ctypes/wintypes.py /^DOUBLE = ctypes.c_double$/;" v +DOUBLECLICK_SEQUENCE Lib/idlelib/autocomplete_w.py /^DOUBLECLICK_SEQUENCE = ""$/;" v +DOUBLESLASH Include/internal/pycore_token.h 63;" d +DOUBLESLASH Lib/lib2to3/pgen2/token.py /^DOUBLESLASH = 48$/;" v +DOUBLESLASH Lib/token.py /^DOUBLESLASH = 47$/;" v +DOUBLESLASHEQUAL Include/internal/pycore_token.h 64;" d +DOUBLESLASHEQUAL Lib/lib2to3/pgen2/token.py /^DOUBLESLASHEQUAL = 49$/;" v +DOUBLESLASHEQUAL Lib/token.py /^DOUBLESLASHEQUAL = 48$/;" v +DOUBLESTAR Include/internal/pycore_token.h 51;" d +DOUBLESTAR Lib/lib2to3/pgen2/token.py /^DOUBLESTAR = 36$/;" v +DOUBLESTAR Lib/token.py /^DOUBLESTAR = 35$/;" v +DOUBLESTAREQUAL Include/internal/pycore_token.h 62;" d +DOUBLESTAREQUAL Lib/lib2to3/pgen2/token.py /^DOUBLESTAREQUAL = 47$/;" v +DOUBLESTAREQUAL Lib/token.py /^DOUBLESTAREQUAL = 46$/;" v +DOUBLE_ALIGN Modules/_struct.c 91;" d file: +DOUBLE_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 1075;" d +DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754 Include/pymacconfig.h 22;" d +DOUBLE_IS_BIG_ENDIAN_IEEE754 Include/pymacconfig.h 23;" d +DOUBLE_IS_BIG_ENDIAN_IEEE754 Include/pymacconfig.h 78;" d +DOUBLE_IS_LITTLE_ENDIAN_IEEE754 Include/pymacconfig.h 24;" d +DOUBLE_IS_LITTLE_ENDIAN_IEEE754 Include/pymacconfig.h 80;" d +DOUBLE_IS_LITTLE_ENDIAN_IEEE754 PC/pyconfig.h 705;" d +DOUBLE_IS_ODD_INTEGER Objects/floatobject.c 737;" d file: +DOUBLE_IS_ODD_INTEGER Objects/floatobject.c 859;" d file: +DOUBLE_ROUND Python/pyhash.c 371;" d file: +DOWNLOAD_URL Tools/msi/buildrelease.bat /^if "%1" EQU "--download" (set DOWNLOAD_URL=%~2) && shift && shift && goto CheckOpts$/;" v +DOWNLOAD_URL Tools/msi/buildrelease.bat /^set DOWNLOAD_URL=https:\/\/www.python.org\/ftp\/python\/{version}\/{arch}{releasename}\/{msi}$/;" v +DOWN_EVENTS Lib/test/test_monitoring.py /^DOWN_EVENTS = (E.PY_START, E.PY_RESUME)$/;" v +DO_CLEAN PCbuild/get_externals.bat /^if "%~1"=="--clean" (set DO_CLEAN=true) & shift & goto CheckOpts$/;" v +DO_CLEAN PCbuild/get_externals.bat /^if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts$/;" v +DO_CLEAN PCbuild/get_externals.bat /^set DO_CLEAN=false$/;" v +DO_CLEAN Tools/msi/get_externals.bat /^if "%~1"=="--clean" (set DO_CLEAN=true) & shift & goto CheckOpts$/;" v +DO_CLEAN Tools/msi/get_externals.bat /^if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts$/;" v +DO_CLEAN Tools/msi/get_externals.bat /^set DO_CLEAN=false$/;" v +DO_FETCH PCbuild/get_externals.bat /^if "%~1"=="--clean-only" (set DO_FETCH=false) & goto clean$/;" v +DO_FETCH PCbuild/get_externals.bat /^set DO_FETCH=true$/;" v +DO_FETCH Tools/msi/get_externals.bat /^if "%~1"=="--clean-only" (set DO_FETCH=false) & goto clean$/;" v +DO_FETCH Tools/msi/get_externals.bat /^set DO_FETCH=true$/;" v +DO_FINALIZE Modules/_decimal/libmpdec/mpdecimal.c /^enum {SKIP_FINALIZE, DO_FINALIZE};$/;" e enum:__anon346 file: +DO_HANDSHAKE Lib/asyncio/sslproto.py /^ DO_HANDSHAKE = "DO_HANDSHAKE"$/;" v class:SSLProtocolState +DO_JUMP Modules/_sre/sre_lib.h 506;" d +DO_JUMP0 Modules/_sre/sre_lib.h 509;" d +DO_JUMPX Modules/_sre/sre_lib.h 490;" d +DO_LEAD_CASE Modules/expat/xmltok_impl.c 1811;" d file: +DRAG_MESSAGE PC/pyshellext.cpp /^static const LPCWSTR DRAG_MESSAGE = L"Open with %1";$/;" v file: +DRAINING Lib/asyncio/locks.py /^ DRAINING = 'draining'$/;" v class:_BarrierState +DRYRUN Tools/msi/uploadrelease.bat /^if "%1" EQU "--dry-run" (set DRYRUN=true) && shift && goto CheckOpts$/;" v +DRYRUN Tools/msi/uploadrelease.bat /^set DRYRUN=false$/;" v +DSA Lib/test/test_lib2to3/data/infinite_recursion.py /^DSA = dsa_st$/;" v +DSA_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^DSA_METHOD = dsa_method$/;" v +DSA_SIG Lib/test/test_lib2to3/data/infinite_recursion.py /^DSA_SIG = DSA_SIG_st$/;" v +DSA_SIG_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class DSA_SIG_st(Structure):$/;" c +DSLParser Tools/clinic/clinic.py /^class DSLParser:$/;" c +DST Lib/test/datetimetester.py /^ class DST(tzinfo):$/;" c function:TestDateTimeTZ.test_tzinfo_timetuple +DST Lib/test/datetimetester.py /^ class DST(tzinfo):$/;" c function:TestDateTimeTZ.test_utctimetuple +DSTDIFF Doc/includes/tzinfo_examples.py /^DSTDIFF = DSTOFFSET - STDOFFSET$/;" v +DSTEND Lib/test/datetimetester.py /^DSTEND = datetime(1, 10, 25, 1)$/;" v +DSTEND_1967_1986 Doc/includes/tzinfo_examples.py /^DSTEND_1967_1986 = DSTEND_1987_2006$/;" v +DSTEND_1987_2006 Doc/includes/tzinfo_examples.py /^DSTEND_1987_2006 = datetime(1, 10, 25, 2)$/;" v +DSTEND_2007 Doc/includes/tzinfo_examples.py /^DSTEND_2007 = datetime(1, 11, 1, 2)$/;" v +DSTOFFSET Doc/includes/tzinfo_examples.py /^ DSTOFFSET = STDOFFSET$/;" v +DSTOFFSET Doc/includes/tzinfo_examples.py /^ DSTOFFSET = timedelta(seconds = -_time.altzone)$/;" v +DSTSTART Lib/test/datetimetester.py /^DSTSTART = datetime(1, 4, 1, 2)$/;" v +DSTSTART_1967_1986 Doc/includes/tzinfo_examples.py /^DSTSTART_1967_1986 = datetime(1, 4, 24, 2)$/;" v +DSTSTART_1987_2006 Doc/includes/tzinfo_examples.py /^DSTSTART_1987_2006 = datetime(1, 4, 1, 2)$/;" v +DSTSTART_2007 Doc/includes/tzinfo_examples.py /^DSTSTART_2007 = datetime(1, 3, 8, 2)$/;" v +DTD Modules/expat/xmlparse.c /^} DTD;$/;" t typeref:struct:__anon617 file: +DTDHandler Lib/xml/sax/handler.py /^class DTDHandler:$/;" c +DTRACE_FUNCTION_ENTRY Python/ceval_macros.h 284;" d +DTraceBackend Lib/test/test_dtrace.py /^class DTraceBackend(TraceBackend):$/;" c +DTraceNormalTests Lib/test/test_dtrace.py /^class DTraceNormalTests(TraceTests, unittest.TestCase):$/;" c +DTraceOptimizedTests Lib/test/test_dtrace.py /^class DTraceOptimizedTests(TraceTests, unittest.TestCase):$/;" c +DUMMY_SIZE_IDX Include/internal/pycore_obmalloc.h 311;" d +DUMP_CONFIG Python/initconfig.c 3150;" d file: +DUMP_CONFIG Python/initconfig.c 3168;" d file: +DUMP_SYS Python/initconfig.c 3170;" d file: +DUMP_SYS Python/initconfig.c 3191;" d file: +DUNDER_CLASS Python/specialize.c /^ DUNDER_CLASS, \/* __class__ attribute *\/$/;" e enum:__anon686 file: +DUP Lib/pickle.py /^DUP = b'2' # duplicate top stack item$/;" v +DUP Modules/_pickle.c /^ DUP = '2',$/;" e enum:opcode file: +DUPLICATE_ARGUMENT Python/symtable.c 256;" d file: +DUPLICATE_TYPE_PARAM Python/symtable.c 68;" d file: +DWORD Lib/ctypes/wintypes.py /^DWORD = ctypes.c_ulong$/;" v +DWORD_AT Python/dynload_win.c 55;" d file: +DYNAMIC_ANNOTATIONS_ENABLED Include/dynamic_annotations.h 60;" d +D_OFF Modules/_csv.c 340;" d file: +D_bad_ann Lib/test/ann_module3.py /^class D_bad_ann:$/;" c +D_method Lib/test/pydocfodder.py /^ def D_method(self):$/;" m class:D_new +D_new Lib/test/pydocfodder.py /^class D_new(B_new, C_new):$/;" c +Data Lib/test/test_capi/test_misc.py /^ class Data(_testcapi.ObjExtraData):$/;" c function:CAPITest.test_unstable_gc_new_with_extra_data +DataBuffer Modules/winreparse.h /^ UCHAR DataBuffer[1];$/;" m struct:__anon316::__anon317::__anon320 +DataDerived Lib/test/test_dataclasses.py /^ class DataDerived(Base[int, T]):$/;" c function:TestCase.test_generic_extending +DataDescriptor0 Lib/test/test_inspect.py /^ class DataDescriptor0:$/;" c function:TestIsDataDescriptor.test_custom_descriptors +DataDescriptor1 Lib/test/test_inspect.py /^ class DataDescriptor1:$/;" c function:TestIsDataDescriptor.test_custom_descriptors +DataDescriptor2 Lib/test/test_inspect.py /^ class DataDescriptor2:$/;" c function:TestIsDataDescriptor.test_custom_descriptors +DataError Modules/_sqlite/connection.h /^ PyObject* DataError;$/;" m struct:__anon359 +DataError Modules/_sqlite/module.h /^ PyObject *DataError;$/;" m struct:__anon355 +DataHandler Lib/urllib/request.py /^class DataHandler(BaseHandler):$/;" c +DatabaseError Modules/_sqlite/connection.h /^ PyObject* DatabaseError;$/;" m struct:__anon359 +DatabaseError Modules/_sqlite/module.h /^ PyObject *DatabaseError;$/;" m struct:__anon355 +DataclassTransformTests Lib/test/test_typing.py /^class DataclassTransformTests(BaseTestCase):$/;" c +DatagramHandler Lib/logging/handlers.py /^class DatagramHandler(SocketHandler):$/;" c +DatagramHandlerTest Lib/test/test_logging.py /^class DatagramHandlerTest(BaseTest):$/;" c +DatagramProtocol Lib/asyncio/protocols.py /^class DatagramProtocol(BaseProtocol):$/;" c +DatagramRequestHandler Lib/socketserver.py /^class DatagramRequestHandler(BaseRequestHandler):$/;" c +DatagramTransport Lib/asyncio/transports.py /^class DatagramTransport(BaseTransport):$/;" c +Date Lib/sqlite3/dbapi2.py /^Date = datetime.date$/;" v +Date Lib/test/test_dataclasses.py /^ class Date(A):$/;" c function:TestAbstract.test_maintain_abc +Date Lib/test/test_dataclasses.py /^ class Date(Ordered):$/;" c function:TestAbstract.test_abc_implementation +Date Lib/test/test_dataclasses.py /^ class Date:$/;" c function:TestCase.test_not_other_dataclass +DateFromTicks Lib/sqlite3/dbapi2.py /^def DateFromTicks(ticks):$/;" f +DateHeader Lib/email/headerregistry.py /^class DateHeader:$/;" c +DateSubclass Lib/test/datetimetester.py /^ class DateSubclass(date):$/;" c function:CapiTest.test_PyDateTime_GET +DateSubclass Lib/test/datetimetester.py /^ class DateSubclass(date):$/;" c function:CapiTest.test_check_date +DateSubclass Lib/test/datetimetester.py /^ class DateSubclass(date):$/;" c function:TestTimeDelta.test_subclass_date +DateSubclass Lib/test/datetimetester.py /^ class DateSubclass(self.theclass):$/;" c function:TestDate.test_fromisoformat_subclass +DateSubclass Lib/test/datetimetester.py /^ class DateSubclass(self.theclass):$/;" c function:TestDate.test_subclass_alternate_constructors +DateSubclass Lib/test/datetimetester.py /^ class DateSubclass(self.theclass):$/;" c function:TestDate.test_subclass_replace +DateTime Lib/xmlrpc/client.py /^class DateTime:$/;" c +DateTimeSubclass Lib/test/datetimetester.py /^ class DateTimeSubclass(datetime):$/;" c function:CapiTest.test_PyDateTime_DATE_GET +DateTimeSubclass Lib/test/datetimetester.py /^ class DateTimeSubclass(datetime):$/;" c function:CapiTest.test_check_datetime +DateTimeSubclass Lib/test/datetimetester.py /^ class DateTimeSubclass(datetime):$/;" c function:TestTimeDelta.test_subclass_datetime +DateTimeSubclass Lib/test/datetimetester.py /^ class DateTimeSubclass(self.theclass):$/;" c function:TestDateTime.test_fromisoformat_subclass +DateTimeSubclass Lib/test/datetimetester.py /^ class DateTimeSubclass(self.theclass):$/;" c function:TestDateTime.test_subclass_alternate_constructors_datetime +DateTimeSubclass Lib/test/datetimetester.py /^ class DateTimeSubclass(self.theclass):$/;" c function:TestDateTime.test_subclass_now +DateTimeTestCase Lib/test/test_xmlrpc.py /^class DateTimeTestCase(unittest.TestCase):$/;" c +DateTimeTests Lib/test/test_email/test_utils.py /^class DateTimeTests(unittest.TestCase):$/;" c +DateTimeTests Lib/test/test_http_cookiejar.py /^class DateTimeTests(unittest.TestCase):$/;" c +DateTimeTests Lib/test/test_sqlite3/test_types.py /^class DateTimeTests(unittest.TestCase):$/;" c +DateTimeType Include/datetime.h /^ PyTypeObject *DateTimeType;$/;" m struct:__anon270 +DateTime_FromDateAndTime Include/datetime.h /^ PyObject *(*DateTime_FromDateAndTime)(int, int, int, int, int, int, int,$/;" m struct:__anon270 +DateTime_FromDateAndTimeAndFold Include/datetime.h /^ PyObject *(*DateTime_FromDateAndTimeAndFold)(int, int, int, int, int, int, int,$/;" m struct:__anon270 +DateTime_FromTimestamp Include/datetime.h /^ PyObject *(*DateTime_FromTimestamp)(PyObject*, PyObject*, PyObject*);$/;" m struct:__anon270 +DateType Include/datetime.h /^ PyTypeObject *DateType;$/;" m struct:__anon270 +Date_FromDate Include/datetime.h /^ PyObject *(*Date_FromDate)(int, int, int, PyTypeObject*);$/;" m struct:__anon270 +Date_FromTimestamp Include/datetime.h /^ PyObject *(*Date_FromTimestamp)(PyObject*, PyObject*);$/;" m struct:__anon270 +DatetimeDateTests Lib/test/test_hash.py /^class DatetimeDateTests(DatetimeTests, unittest.TestCase):$/;" c +DatetimeDatetimeTests Lib/test/test_hash.py /^class DatetimeDatetimeTests(DatetimeTests, unittest.TestCase):$/;" c +DatetimeSubclass Lib/test/test_zoneinfo/test_zoneinfo.py /^ class DatetimeSubclass(datetime):$/;" c class:DatetimeSubclassMixin +DatetimeSubclassMixin Lib/test/test_zoneinfo/test_zoneinfo.py /^class DatetimeSubclassMixin:$/;" c +DatetimeTests Lib/test/test_hash.py /^class DatetimeTests(HashRandomizationTests):$/;" c +DatetimeTimeTests Lib/test/test_hash.py /^class DatetimeTimeTests(DatetimeTests, unittest.TestCase):$/;" c +Day Lib/calendar.py /^class Day(IntEnum):$/;" c +DayBoat Lib/test/test_descr.py /^ class DayBoat(Boat): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +DayRule Modules/_zoneinfo.c /^} DayRule;$/;" t typeref:struct:__anon640 file: +DbcheckError Lib/test/test_decorators.py /^class DbcheckError (Exception):$/;" c +DbfilenameShelf Lib/shelve.py /^class DbfilenameShelf(Shelf):$/;" c +DbmTestCase Lib/test/test_dbm_ndbm.py /^class DbmTestCase(unittest.TestCase):$/;" c +Deactivate Lib/test/test_tkinter/test_misc.py /^ Deactivate = '37'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Deactivate Lib/tkinter/__init__.py /^ Deactivate = '37'$/;" v class:EventType +DeadlockAvoidanceTests Lib/test/test_importlib/test_locks.py /^class DeadlockAvoidanceTests:$/;" c +Dealloc Modules/zlibmodule.c /^Dealloc(compobject *self)$/;" f file: +Debug Lib/imaplib.py /^ Debug = int(val)$/;" v +Debug Lib/imaplib.py /^Debug = 0$/;" v +DebugHelperMeta Lib/test/test_descr.py /^class DebugHelperMeta(type):$/;" c +DebugRunner Lib/doctest.py /^class DebugRunner(DocTestRunner):$/;" c +DebugTests Lib/test/test_re.py /^class DebugTests(unittest.TestCase):$/;" c +Debugger Lib/idlelib/debugger.py /^class Debugger:$/;" c +DebuggerTests Lib/test/test_gdb.py /^class DebuggerTests(unittest.TestCase):$/;" c +DebuggingServer Lib/test/smtpd.py /^class DebuggingServer(SMTPServer):$/;" c +DebuggingServerTests Lib/test/test_smtplib.py /^class DebuggingServerTests(unittest.TestCase):$/;" c +DecCondMap Modules/_decimal/_decimal.c /^} DecCondMap;$/;" t typeref:struct:__anon353 file: +DecCtx_BinaryFunc Modules/_decimal/_decimal.c 5084;" d file: +DecCtx_BinaryFunc_NO_CTX Modules/_decimal/_decimal.c 5120;" d file: +DecCtx_BoolFunc Modules/_decimal/_decimal.c 5029;" d file: +DecCtx_BoolFunc_NO_CTX Modules/_decimal/_decimal.c 5044;" d file: +DecCtx_TernaryFunc Modules/_decimal/_decimal.c 5148;" d file: +DecCtx_UnaryFunc Modules/_decimal/_decimal.c 5059;" d file: +Dec_BinaryFuncVA Modules/_decimal/_decimal.c 4032;" d file: +Dec_BinaryFuncVA_NO_CTX Modules/_decimal/_decimal.c 4070;" d file: +Dec_BinaryNumberMethod Modules/_decimal/_decimal.c 3948;" d file: +Dec_BoolFunc Modules/_decimal/_decimal.c 3978;" d file: +Dec_BoolFuncVA Modules/_decimal/_decimal.c 3986;" d file: +Dec_CONTEXT_GET_SSIZE Modules/_decimal/_decimal.c 749;" d file: +Dec_CONTEXT_GET_ULONG Modules/_decimal/_decimal.c 756;" d file: +Dec_TernaryFuncVA Modules/_decimal/_decimal.c 4101;" d file: +Dec_UnaryFuncVA Modules/_decimal/_decimal.c 4003;" d file: +Dec_UnaryNumberMethod Modules/_decimal/_decimal.c 3925;" d file: +Decimal Lib/_pydecimal.py /^class Decimal(object):$/;" c +DecimalContextTest Lib/test/test_asyncio/test_context.py /^class DecimalContextTest(unittest.TestCase):$/;" c +DecimalException Lib/_pydecimal.py /^class DecimalException(ArithmeticError):$/;" c +DecimalException Modules/_decimal/_decimal.c /^static PyObject *DecimalException = NULL;$/;" v file: +DecimalToRatioTest Lib/test/test_statistics.py /^class DecimalToRatioTest(unittest.TestCase):$/;" c +DecimalTuple Lib/_pydecimal.py /^ DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent', module='decimal')$/;" v +DecimalTuple Lib/_pydecimal.py /^ DecimalTuple = lambda *args: args$/;" v +DecimalTuple Modules/_decimal/_decimal.c /^static PyTypeObject *DecimalTuple = NULL;$/;" v file: +Decision1 Lib/test/test_enum.py /^ class Decision1(StrEnum):$/;" c function:TestSpecial.test_multiple_inherited_mixin +Decision2 Lib/test/test_enum.py /^ class Decision2(MyEnum):$/;" c function:TestSpecial.test_multiple_inherited_mixin +DeclID Tools/c-analyzer/c_parser/info.py /^class DeclID(namedtuple('DeclID', 'filename funcname name')):$/;" c +DeclTypesTests Lib/test/test_sqlite3/test_types.py /^class DeclTypesTests(unittest.TestCase):$/;" c +Declaration Tools/c-analyzer/c_parser/info.py /^class Declaration(HighlevelParsedItem):$/;" c +Declarations Tools/c-analyzer/c_parser/info.py /^class Declarations:$/;" c +Decnumber Lib/lib2to3/pgen2/tokenize.py /^Decnumber = group(r'[1-9]\\d*(?:_\\d+)*[lL]?', '0[lL]?')$/;" v +Decnumber Lib/tokenize.py /^Decnumber = r'(?:0(?:_?0)*|[1-9](?:_?[0-9])*)'$/;" v +DecodeMapWriter Tools/unicode/genmap_support.py /^class DecodeMapWriter:$/;" c +DecodeSourceBytesTests Lib/test/test_importlib/test_util.py /^class DecodeSourceBytesTests:$/;" c +DecodedGenerator Lib/email/generator.py /^class DecodedGenerator(Generator):$/;" c +Decomp_dealloc Modules/zlibmodule.c /^Decomp_dealloc(compobject *self)$/;" f file: +Decomp_members Modules/zlibmodule.c /^static PyMemberDef Decomp_members[] = {$/;" v file: +Decomp_methods Modules/zlibmodule.c /^static PyMethodDef Decomp_methods[] =$/;" v file: +DecompressReader Lib/_compression.py /^class DecompressReader(io.RawIOBase):$/;" c +Decompressor Modules/_lzmamodule.c /^} Decompressor;$/;" t typeref:struct:__anon296 file: +Decompressor_dealloc Modules/_lzmamodule.c /^Decompressor_dealloc(Decompressor *self)$/;" f file: +Decompressor_init_raw Modules/_lzmamodule.c /^Decompressor_init_raw(_lzma_state *state, lzma_stream *lzs, PyObject *filterspecs)$/;" f file: +Decompressor_members Modules/_lzmamodule.c /^static PyMemberDef Decompressor_members[] = {$/;" v file: +Decompressor_methods Modules/_lzmamodule.c /^static PyMethodDef Decompressor_methods[] = {$/;" v file: +Decompressor_traverse Modules/_lzmamodule.c /^Decompressor_traverse(Decompressor *self, visitproc visit, void *arg)$/;" f file: +Decomptype Modules/zlibmodule.c /^ PyTypeObject *Decomptype;$/;" m struct:__anon305 file: +Decomptype_slots Modules/zlibmodule.c /^static PyType_Slot Decomptype_slots[] = {$/;" v file: +Decomptype_spec Modules/zlibmodule.c /^static PyType_Spec Decomptype_spec = {$/;" v file: +DecryptionTests Lib/test/test_zipfile/test_core.py /^class DecryptionTests(unittest.TestCase):$/;" c +DedentTestCase Lib/test/test_textwrap.py /^class DedentTestCase(unittest.TestCase):$/;" c +DeepRecursionInSplitAndSubgroup Lib/test/test_exception_group.py /^class DeepRecursionInSplitAndSubgroup(unittest.TestCase):$/;" c +DeeplyAnnotatedMovie Lib/test/test_typing.py /^class DeeplyAnnotatedMovie(TypedDict):$/;" c +Default Modules/pyexpat.c /^ Default,$/;" e enum:HandlerTypes file: +DefaultArgumentsTests Lib/test/test_smtplib.py /^class DefaultArgumentsTests(unittest.TestCase):$/;" c +DefaultChainMap Lib/test/test_collections.py /^ class DefaultChainMap(ChainMap):$/;" c function:TestChainMap.test_missing +DefaultContext Lib/_pydecimal.py /^DefaultContext = Context($/;" v +DefaultContext Lib/multiprocessing/context.py /^class DefaultContext(BaseContext):$/;" c +DefaultCookiePolicy Lib/http/cookiejar.py /^class DefaultCookiePolicy(CookiePolicy):$/;" c +DefaultDict Lib/typing.py /^DefaultDict = _alias(collections.defaultdict, 2, name='DefaultDict')$/;" v +DefaultEnter Lib/test/test_contextlib.py /^ class DefaultEnter(AbstractContextManager):$/;" c function:TestAbstractContextManager.test_enter +DefaultEnter Lib/test/test_contextlib.py /^ class DefaultEnter(AbstractContextManager):$/;" c function:TestAbstractContextManager.test_structural_subclassing +DefaultEnter Lib/test/test_contextlib_async.py /^ class DefaultEnter(AbstractAsyncContextManager):$/;" c function:TestAbstractAsyncContextManager.test_enter +DefaultEnter Lib/test/test_contextlib_async.py /^ class DefaultEnter(AbstractAsyncContextManager):$/;" c function:TestAbstractAsyncContextManager.test_structural_subclassing +DefaultEntryTest Lib/test/test_robotparser.py /^class DefaultEntryTest(BaseRequestRateTest, unittest.TestCase):$/;" c +DefaultEventLoopPolicy Lib/asyncio/unix_events.py /^DefaultEventLoopPolicy = _UnixDefaultEventLoopPolicy$/;" v +DefaultEventLoopPolicy Lib/asyncio/windows_events.py /^DefaultEventLoopPolicy = WindowsProactorEventLoopPolicy$/;" v +DefaultHandler Lib/test/test_pyexpat.py /^ def DefaultHandler(self, userData):$/;" m class:ParseTest.Outputter +DefaultHandlerExpand Lib/test/test_pyexpat.py /^ def DefaultHandlerExpand(self, userData):$/;" m class:ParseTest.Outputter +DefaultHandlerExpand Modules/pyexpat.c /^ DefaultHandlerExpand,$/;" e enum:HandlerTypes file: +DefaultHash Lib/test/test_hash.py /^class DefaultHash(object): pass$/;" c +DefaultIterClass Lib/test/test_iter.py /^class DefaultIterClass:$/;" c +DefaultIterSeq Lib/test/test_hash.py /^class DefaultIterSeq(object):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_colorchooser.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_font.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_images.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_messagebox.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_misc.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_simpledialog.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_variables.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_tkinter/test_widgets.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_ttk/test_extensions.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultRootTest Lib/test/test_ttk/test_widgets.py /^class DefaultRootTest(AbstractDefaultRootTest, unittest.TestCase):$/;" c +DefaultSelector Lib/selectors.py /^ DefaultSelector = DevpollSelector$/;" v +DefaultSelector Lib/selectors.py /^ DefaultSelector = EpollSelector$/;" v +DefaultSelector Lib/selectors.py /^ DefaultSelector = KqueueSelector$/;" v +DefaultSelector Lib/selectors.py /^ DefaultSelector = PollSelector$/;" v +DefaultSelector Lib/selectors.py /^ DefaultSelector = SelectSelector$/;" v +DefaultSelectorTestCase Lib/test/test_selectors.py /^class DefaultSelectorTestCase(BaseSelectorTestCase, unittest.TestCase):$/;" c +DefaultTitleTest Lib/idlelib/idle_test/test_help_about.py /^class DefaultTitleTest(unittest.TestCase):$/;" c +DefaultUnknownEncodingHandler Include/pyexpat.h /^ int (*DefaultUnknownEncodingHandler)($/;" m struct:PyExpat_CAPI +DefaultVerifyPaths Lib/ssl.py /^DefaultVerifyPaths = namedtuple("DefaultVerifyPaths",$/;" v +Default_commandTest Lib/idlelib/idle_test/test_grep.py /^class Default_commandTest(unittest.TestCase):$/;" c +DefectFactory Lib/test/test_sqlite3/test_factory.py /^ class DefectFactory(sqlite.Connection):$/;" c function:ConnectionFactoryTests.test_connection_factories +DefectProto Lib/test/test_sqlite3/test_types.py /^ class DefectProto():$/;" c function:ObjectAdaptationTests.test_defect_proto +DefectSelfAdapt Lib/test/test_sqlite3/test_types.py /^ class DefectSelfAdapt(float):$/;" c function:ObjectAdaptationTests.test_defect_self_adapt +DeflateBadCrcTests Lib/test/test_zipfile/test_core.py /^class DeflateBadCrcTests(AbstractBadCrcTests, unittest.TestCase):$/;" c +DeflateTestZip64InSmallFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +DeflateTestsWithRandomBinaryFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +DeflateTestsWithSourceFile Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +DeflateWriterTests Lib/test/test_zipfile/test_core.py /^class DeflateWriterTests(AbstractWriterTests, unittest.TestCase):$/;" c +DefragResult Lib/urllib/parse.py /^class DefragResult(_DefragResultBase, _ResultMixinStr):$/;" c +DefragResultBytes Lib/urllib/parse.py /^class DefragResultBytes(_DefragResultBase, _ResultMixinBytes):$/;" c +Del Include/internal/pycore_ast.h /^typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;$/;" e enum:_expr_context +DelTest Lib/test/test_class.py /^ class DelTest:$/;" c function:ClassTests.testDel +Del_singleton Include/internal/pycore_ast_state.h /^ PyObject *Del_singleton;$/;" m struct:ast_state +Del_type Include/internal/pycore_ast_state.h /^ PyObject *Del_type;$/;" m struct:ast_state +DelegatingHTTPRequestHandler Lib/test/test_logging.py /^ class DelegatingHTTPRequestHandler(BaseHTTPRequestHandler):$/;" c function:TestHTTPServer.__init__ +DelegatingTCPRequestHandler Lib/test/test_logging.py /^ class DelegatingTCPRequestHandler(StreamRequestHandler):$/;" c function:TestTCPServer.__init__ +DelegatingUDPRequestHandler Lib/test/test_logging.py /^ class DelegatingUDPRequestHandler(DatagramRequestHandler):$/;" c function:TestUDPServer.__init__ +Delegator Lib/idlelib/delegator.py /^class Delegator:$/;" c +DelegatorTest Lib/idlelib/idle_test/test_delegator.py /^class DelegatorTest(unittest.TestCase):$/;" c +Delete Include/internal/pycore_ast.h /^ } Delete;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon56 +DeleteCommand Lib/idlelib/undo.py /^class DeleteCommand(Command):$/;" c +DeleteFHCD Modules/_tkinter.c /^DeleteFHCD(int id)$/;" f file: +Delete_fields Python/Python-ast.c /^static const char * const Delete_fields[]={$/;" v file: +Delete_kind Include/internal/pycore_ast.h /^ Return_kind=4, Delete_kind=5, Assign_kind=6,$/;" e enum:_stmt_kind +Delete_type Include/internal/pycore_ast_state.h /^ PyObject *Delete_type;$/;" m struct:ast_state +DeletingZipsTest Lib/test/test_importlib/resources/test_resource.py /^class DeletingZipsTest(unittest.TestCase):$/;" c +DeltaType Include/datetime.h /^ PyTypeObject *DeltaType;$/;" m struct:__anon270 +Delta_FromDelta Include/datetime.h /^ PyObject *(*Delta_FromDelta)(int, int, int, int, PyTypeObject*);$/;" m struct:__anon270 +DemoWindow Lib/turtledemo/__main__.py /^class DemoWindow(object):$/;" c +DeprecatedNonAbstract Lib/importlib/metadata/__init__.py /^class DeprecatedNonAbstract:$/;" c +DeprecatedRemoved Doc/tools/extensions/pyspecific.py /^class DeprecatedRemoved(Directive):$/;" c +DeprecatedTuple Lib/importlib/metadata/__init__.py /^class DeprecatedTuple:$/;" c +DeprecationTest Lib/test/test_urlparse.py /^class DeprecationTest(unittest.TestCase):$/;" c +Deque Lib/test/test_deque.py /^class Deque(deque):$/;" c +Deque Lib/typing.py /^Deque = _alias(collections.deque, 1, name='Deque')$/;" v +DequeWithBadIter Lib/test/test_deque.py /^class DequeWithBadIter(deque):$/;" c +DequeWithSlots Lib/test/test_deque.py /^class DequeWithSlots(deque):$/;" c +Der Lib/test/test_typing.py /^ class Der(ABase): ...$/;" c function:GetTypeHintTests.test_respect_no_type_check +DerCol Lib/test/test_collections.py /^ class DerCol(Col): pass$/;" c function:TestOneTrickPonyABCs.test_Collection +Derived Lib/test/test_compare.py /^ class Derived(Base): # Subclassing forces higher priority$/;" c function:ComparisonSimpleTest.test_ne_low_priority +Derived Lib/test/test_dataclasses.py /^ class Derived(Base):$/;" c function:TestSlots.test_derived_added_field +Derived Lib/test/test_dataclasses.py /^ class Derived(Base):$/;" c function:TestSlots.test_generated_slots_value +Derived Lib/test/test_typing.py /^ class Derived(Base): ...$/;" c function:GenericTests.test_extended_generic_rules_eq +Derived Lib/test/test_typing.py /^ class Derived(Base):$/;" c function:OverrideDecoratorTests.test_override +Derived1 Lib/test/test_descr.py /^ class Derived1(Base):$/;" c function:.test_bound_method_repr +Derived2 Lib/test/test_descr.py /^ class Derived2(Base):$/;" c function:.test_bound_method_repr +DerivedException Lib/test/test_exceptions.py /^ class DerivedException(BaseException):$/;" c function:ExceptionTests.testKeywordArgs +DerivedFromA Lib/test/test_builtin.py /^ class DerivedFromA(A):$/;" c function:BuiltinTest.test_format.classes_new +DerivedFromSimple Lib/test/test_builtin.py /^ class DerivedFromSimple(Simple):$/;" c function:BuiltinTest.test_format.classes_new +DerivedFromSimple2 Lib/test/test_builtin.py /^ class DerivedFromSimple2(DerivedFromSimple): pass$/;" c function:BuiltinTest.test_format.classes_new +DerivedFromStr Lib/test/test_builtin.py /^ class DerivedFromStr(str): pass$/;" c function:BuiltinTest.test_format +DerivedLogRecord Lib/test/test_logging.py /^class DerivedLogRecord(logging.LogRecord):$/;" c +DerivedType Lib/test/test_call.py /^ class DerivedType(SuperType):$/;" c function:TestPEP590.test_vectorcall_override_with_subclass +Descr Lib/test/test_descr.py /^ class Descr(object):$/;" c function:.test_set_and_no_get +Descr Lib/test/test_descr.py /^ class Descr(object):$/;" c function:.test_vicious_descriptor_nonsense +Descr Lib/test/test_descr.py /^ class Descr:$/;" c function:.test_bpo25750 +Descr Lib/test/test_module/__init__.py /^ class Descr:$/;" c function:ModuleTests.test_descriptor_errors_propagate +Descr Lib/test/test_pydoc.py /^ class Descr:$/;" c function:TestDescriptions.test_custom_data_descriptor +Descr Lib/test/test_pydoc.py /^ class Descr:$/;" c function:TestDescriptions.test_custom_non_data_descriptor +Description PC/layout/support/appxmanifest.py /^ Description="IDLE editor for Python {}".format(VER_DOT),$/;" v +Description PC/layout/support/appxmanifest.py /^ Description="Python interactive console",$/;" v +Description PC/layout/support/appxmanifest.py /^ Description="Python windowed app launcher",$/;" v +Description PC/layout/support/appxmanifest.py /^ Description="The Python {} runtime and console.".format(VER_DOT),$/;" v +Description PC/layout/support/appxmanifest.py /^ Description="pip package manager for Python {}".format(VER_DOT),$/;" v +Descriptor Lib/test/test_abc.py /^ class Descriptor:$/;" c function:test_factory.TestABC.test_customdescriptors_with_abstractmethod +Descriptor Lib/test/test_descr.py /^ class Descriptor(object):$/;" c function:.test_getattr_hooks +Descriptor Lib/test/test_opcache.py /^ class Descriptor:$/;" c function:TestLoadAttrCache.test_descriptor_added_after_optimization +Descriptor Lib/test/test_opcache.py /^ class Descriptor:$/;" c function:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization +Descriptor Lib/test/test_opcache.py /^ class Descriptor:$/;" c function:TestLoadMethodCache.test_descriptor_added_after_optimization +Descriptor Lib/test/test_opcache.py /^ class Descriptor:$/;" c function:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization +Descriptor Lib/test/test_opcache.py /^ class Descriptor:$/;" c function:TestLoadSuperAttrCache.test_descriptor_not_double_executed_on_spec_fail +Descriptor Lib/test/test_subclassinit.py /^ class Descriptor:$/;" c function:Test.test_set_name +Descriptor Lib/test/test_subclassinit.py /^ class Descriptor:$/;" c function:Test.test_set_name_error +Descriptor Lib/test/test_subclassinit.py /^ class Descriptor:$/;" c function:Test.test_set_name_init_subclass +Descriptor Lib/test/test_subclassinit.py /^ class Descriptor:$/;" c function:Test.test_set_name_metaclass +Descriptor Lib/test/test_subclassinit.py /^ class Descriptor:$/;" c function:Test.test_set_name_modifying_dict +Descriptor Lib/test/test_subclassinit.py /^ class Descriptor:$/;" c function:Test.test_set_name_wrong +Descriptor Lib/test/test_unittest/testmock/testhelpers.py /^ class Descriptor(object):$/;" c function:SpecSignatureTest.test_autospec_data_descriptor +DescriptorClassification Python/specialize.c /^} DescriptorClassification;$/;" t typeref:enum:__anon686 file: +Designer Lib/turtledemo/bytedesign.py /^class Designer(Turtle):$/;" c +Destination Tools/clinic/clinic.py /^class Destination:$/;" c +DestinationDict Tools/clinic/clinic.py /^DestinationDict = dict[str, Destination]$/;" v +Destroy Lib/test/test_tkinter/test_misc.py /^ Destroy = '17'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Destroy Lib/tkinter/__init__.py /^ Destroy = '17'$/;" v class:EventType +DestroyMainWindow Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void DestroyMainWindow() {$/;" f class:PythonBootstrapperApplication file: +DestroyTests Lib/test/test__xxsubinterpreters.py /^class DestroyTests(TestBase):$/;" c +Detach Lib/subprocess.py /^ def Detach(self):$/;" m class:.Handle +DetectBadNodes Tools/clinic/clinic.py /^ class DetectBadNodes(ast.NodeVisitor):$/;" c function:DSLParser.state_parameter +DetectReadTest Lib/test/test_tarfile.py /^class DetectReadTest(TarTest, unittest.TestCase):$/;" c +DeterminePageId Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void DeterminePageId(__in PYBA_STATE state, __out DWORD* pdwPageId) {$/;" f class:PythonBootstrapperApplication file: +DevNullTests Lib/test/test_os.py /^class DevNullTests(unittest.TestCase):$/;" c +DevPollTests Lib/test/test_devpoll.py /^class DevPollTests(unittest.TestCase):$/;" c +Deviant1 Lib/test/test_contains.py /^ class Deviant1:$/;" c function:TestContains.test_builtin_sequence_types +DeviceCharacteristics Include/internal/pycore_fileutils_windows.h /^ ULONG DeviceCharacteristics;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +DeviceEncodingTests Lib/test/test_os.py /^class DeviceEncodingTests(unittest.TestCase):$/;" c +DeviceHeaderTest Lib/test/test_tarfile.py /^class DeviceHeaderTest(WriteTestBase, unittest.TestCase):$/;" c +DeviceType Include/internal/pycore_fileutils_windows.h /^ ULONG DeviceType;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +Devnull Lib/test/smtpd.py /^class Devnull:$/;" c +DevpollSelector Lib/selectors.py /^ class DevpollSelector(_PollLikeSelector):$/;" c class:_PollLikeSelector +DevpollSelectorTestCase Lib/test/test_selectors.py /^ unittest.TestCase):$/;" c +Di Lib/test/test_enum.py /^ class Di(Enum):$/;" c function:TestSpecial.test_member_from_member_access +Dialect Lib/csv.py /^class Dialect:$/;" c +DialectObj Modules/_csv.c /^} DialectObj;$/;" t typeref:struct:__anon624 file: +Dialect_Type_slots Modules/_csv.c /^static PyType_Slot Dialect_Type_slots[] = {$/;" v file: +Dialect_Type_spec Modules/_csv.c /^PyType_Spec Dialect_Type_spec = {$/;" v +Dialect_clear Modules/_csv.c /^Dialect_clear(DialectObj *self)$/;" f file: +Dialect_dealloc Modules/_csv.c /^Dialect_dealloc(DialectObj *self)$/;" f file: +Dialect_get_delimiter Modules/_csv.c /^Dialect_get_delimiter(DialectObj *self, void *Py_UNUSED(ignored))$/;" f file: +Dialect_get_escapechar Modules/_csv.c /^Dialect_get_escapechar(DialectObj *self, void *Py_UNUSED(ignored))$/;" f file: +Dialect_get_lineterminator Modules/_csv.c /^Dialect_get_lineterminator(DialectObj *self, void *Py_UNUSED(ignored))$/;" f file: +Dialect_get_quotechar Modules/_csv.c /^Dialect_get_quotechar(DialectObj *self, void *Py_UNUSED(ignored))$/;" f file: +Dialect_get_quoting Modules/_csv.c /^Dialect_get_quoting(DialectObj *self, void *Py_UNUSED(ignored))$/;" f file: +Dialect_getsetlist Modules/_csv.c /^static PyGetSetDef Dialect_getsetlist[] = {$/;" v file: +Dialect_memberlist Modules/_csv.c /^static struct PyMemberDef Dialect_memberlist[] = {$/;" v typeref:struct:PyMemberDef file: +Dialect_reduce Modules/_csv.c /^Dialect_reduce(PyObject *self, PyObject *args) {$/;" f file: +Dialect_traverse Modules/_csv.c /^Dialect_traverse(DialectObj *self, visitproc visit, void *arg)$/;" f file: +Dialog Lib/msilib/__init__.py /^class Dialog:$/;" c +Dialog Lib/msilib/schema.py /^Dialog = Table('Dialog')$/;" v +Dialog Lib/tkinter/commondialog.py /^class Dialog:$/;" c +Dialog Lib/tkinter/dialog.py /^class Dialog(Widget):$/;" c +Dialog Lib/tkinter/simpledialog.py /^class Dialog(Toplevel):$/;" c +DialogShell Lib/tkinter/tix.py /^class DialogShell(TixWidget):$/;" c +Dict Include/internal/pycore_ast.h /^ } Dict;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon84 +Dict Lib/test/test_dict.py /^ class Dict(dict):$/;" c function:DictTest.test_views_mapping +Dict Lib/test/test_dict.py /^class Dict(dict):$/;" c +Dict Lib/test/test_dict_version.py /^class Dict(dict):$/;" c +Dict Lib/typing.py /^Dict = _alias(dict, 2, inst=False, name='Dict')$/;" v +DictComp Include/internal/pycore_ast.h /^ } DictComp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon88 +DictComp_fields Python/Python-ast.c /^static const char * const DictComp_fields[]={$/;" v file: +DictComp_kind Include/internal/pycore_ast.h /^ ListComp_kind=9, SetComp_kind=10, DictComp_kind=11,$/;" e enum:_expr_kind +DictComp_type Include/internal/pycore_ast_state.h /^ PyObject *DictComp_type;$/;" m struct:ast_state +DictComprehension Include/internal/pycore_symtable.h /^ DictComprehension = 2,$/;" e enum:_comprehension_type +DictComprehensionTest Lib/test/test_dictcomps.py /^class DictComprehensionTest(unittest.TestCase):$/;" c +DictConfigurator Lib/logging/config.py /^class DictConfigurator(BaseConfigurator):$/;" c +DictKeysKind Include/internal/pycore_dict.h /^} DictKeysKind;$/;" t typeref:enum:__anon146 +DictProxy Lib/idlelib/debugger_r.py /^class DictProxy:$/;" c +DictProxy Lib/multiprocessing/managers.py /^DictProxy = MakeProxyType('DictProxy', ($/;" v +DictProxyTests Lib/test/test_descr.py /^class DictProxyTests(unittest.TestCase):$/;" c +DictReader Lib/csv.py /^class DictReader:$/;" c +DictRemoverObject Modules/_ctypes/_ctypes.c /^} DictRemoverObject;$/;" t typeref:struct:__anon497 file: +DictRemover_Type Modules/_ctypes/ctypes.h /^ PyTypeObject *DictRemover_Type;$/;" m struct:__anon491 +DictSetTest Lib/test/test_dictviews.py /^class DictSetTest(unittest.TestCase):$/;" c +DictSub Lib/test/test_descr.py /^ class DictSub(checker.__class__, dict):$/;" c function:.test_special_method_lookup.do_dict_missing +DictSubclass Lib/test/test_capi/test_dict.py /^class DictSubclass(dict):$/;" c +DictSubclass Lib/test/test_capi/test_getargs.py /^class DictSubclass(dict):$/;" c +DictSubtypeVersionTests Lib/test/test_dict_version.py /^class DictSubtypeVersionTests(DictVersionTests):$/;" c +DictTest Lib/test/test_bigmem.py /^class DictTest(unittest.TestCase):$/;" c +DictTest Lib/test/test_dict.py /^class DictTest(unittest.TestCase):$/;" c +DictTest Lib/test/test_richcmp.py /^class DictTest(unittest.TestCase):$/;" c +DictTreeItem Lib/idlelib/debugobj.py /^class DictTreeItem(SequenceTreeItem):$/;" c +DictTreeItemTest Lib/idlelib/idle_test/test_debugobj.py /^class DictTreeItemTest(unittest.TestCase):$/;" c +DictVersionTests Lib/test/test_dict_version.py /^class DictVersionTests(unittest.TestCase):$/;" c +DictWithGetItem Lib/test/test_collections.py /^ class DictWithGetItem(UserDict):$/;" c function:TestChainMap.test_iter_not_calling_getitem_on_maps +DictWriter Lib/csv.py /^class DictWriter:$/;" c +Dict_fields Python/Python-ast.c /^static const char * const Dict_fields[]={$/;" v file: +Dict_kind Include/internal/pycore_ast.h /^ Lambda_kind=5, IfExp_kind=6, Dict_kind=7, Set_kind=8,$/;" e enum:_expr_kind +Dict_type Include/internal/pycore_ast_state.h /^ PyObject *Dict_type;$/;" m struct:ast_state +Differ Lib/difflib.py /^class Differ:$/;" c +Difference Tools/unicode/makeunicodedata.py /^ class Difference(Exception):pass$/;" c function:merge_old_version +DifferentAgentTest Lib/test/test_robotparser.py /^class DifferentAgentTest(CrawlDelayAndRequestRateTest):$/;" c +DigestAuthHandler Lib/test/test_urllib2_localnet.py /^class DigestAuthHandler:$/;" c +DigitsOnly Lib/test/test_enum.py /^ DigitsOnly = 0x01$/;" v class:OldTestFlag.test_boundary.MethodHint +DirBrowserTreeItem Lib/idlelib/pathbrowser.py /^class DirBrowserTreeItem(TreeItem):$/;" c +DirBrowserTreeItemTest Lib/idlelib/idle_test/test_pathbrowser.py /^class DirBrowserTreeItemTest(unittest.TestCase):$/;" c +DirCompareTestCase Lib/test/test_filecmp.py /^class DirCompareTestCase(unittest.TestCase):$/;" c +DirEntry Modules/posixmodule.c /^} DirEntry;$/;" t typeref:struct:__anon480 file: +DirEntryType Modules/posixmodule.c /^ PyObject *DirEntryType;$/;" m struct:__anon477 file: +DirEntryType_slots Modules/posixmodule.c /^static PyType_Slot DirEntryType_slots[] = {$/;" v file: +DirEntryType_spec Modules/posixmodule.c /^static PyType_Spec DirEntryType_spec = {$/;" v file: +DirEntry_dealloc Modules/posixmodule.c /^DirEntry_dealloc(DirEntry *entry)$/;" f file: +DirEntry_fetch_stat Modules/posixmodule.c /^DirEntry_fetch_stat(PyObject *module, DirEntry *self, int follow_symlinks)$/;" f file: +DirEntry_from_find_data Modules/posixmodule.c /^DirEntry_from_find_data(PyObject *module, path_t *path, WIN32_FIND_DATAW *dataW)$/;" f file: +DirEntry_from_posix_info Modules/posixmodule.c /^DirEntry_from_posix_info(PyObject *module, path_t *path, const char *name,$/;" f file: +DirEntry_get_lstat Modules/posixmodule.c /^DirEntry_get_lstat(PyTypeObject *defining_class, DirEntry *self)$/;" f file: +DirEntry_members Modules/posixmodule.c /^static PyMemberDef DirEntry_members[] = {$/;" v file: +DirEntry_methods Modules/posixmodule.c /^static PyMethodDef DirEntry_methods[] = {$/;" v file: +DirEntry_repr Modules/posixmodule.c /^DirEntry_repr(DirEntry *self)$/;" f file: +DirEntry_test_mode Modules/posixmodule.c /^DirEntry_test_mode(PyTypeObject *defining_class, DirEntry *self,$/;" f file: +DirList Lib/tkinter/tix.py /^class DirList(TixWidget):$/;" c +DirSelectBox Lib/tkinter/tix.py /^class DirSelectBox(TixWidget):$/;" c +DirSelectDialog Lib/tkinter/tix.py /^class DirSelectDialog(TixWidget):$/;" c +DirTree Lib/tkinter/tix.py /^class DirTree(TixWidget):$/;" c +DirectCfgOptimizerTests Lib/test/test_peepholer.py /^class DirectCfgOptimizerTests(CfgOptimizationTestCase):$/;" c +Directional Lib/test/test_enum.py /^ class Directional(str, Enum):$/;" c function:TestSpecial.setUp +Directory Lib/msilib/__init__.py /^class Directory:$/;" c +Directory Lib/msilib/schema.py /^Directory = Table('Directory')$/;" v +Directory Lib/tkinter/filedialog.py /^class Directory(commondialog.Dialog):$/;" c +DirectoryTest Lib/test/test_importlib/test_main.py /^class DirectoryTest(fixtures.OnSysPath, fixtures.SiteDir, unittest.TestCase):$/;" c +DirectoryTestCase Lib/test/test_unparse.py /^class DirectoryTestCase(ASTTestCase):$/;" c +DirsOnSysPath Lib/test/support/import_helper.py /^class DirsOnSysPath(object):$/;" c +Dirtier Lib/test/test_enum.py /^ class Dirtier(IntEnum):$/;" c function:TestUnique.test_unique_dirty +Dirtier Lib/test/test_enum.py /^ class Dirtier(IntEnum):$/;" c function:TestVerify.test_unique_dirty +Dirty Lib/test/test_enum.py /^ class Dirty(Enum):$/;" c function:TestUnique.test_unique_dirty +Dirty Lib/test/test_enum.py /^ class Dirty(Enum):$/;" c function:TestVerify.test_unique_dirty +DirtySourceDirectory Tools/wasm/wasm_build.py /^class DirtySourceDirectory(ConditionError):$/;" c +DisTestBase Lib/test/test_dis.py /^class DisTestBase(unittest.TestCase):$/;" c +DisTests Lib/test/test_dis.py /^class DisTests(DisTestBase):$/;" c +DisWithFileTests Lib/test/test_dis.py /^class DisWithFileTests(DisTests):$/;" c +DisableEventHook Modules/_tkinter.c /^DisableEventHook(void)$/;" f file: +DisallowQueryStringTest Lib/test/test_robotparser.py /^class DisallowQueryStringTest(BaseRobotTest, unittest.TestCase):$/;" c +Disc Lib/turtledemo/minimal_hanoi.py /^class Disc(Turtle):$/;" c +DiscoverSettingsDialog Tools/unittestgui/unittestgui.py /^class DiscoverSettingsDialog(simpledialog.Dialog):$/;" c +DiscoveryTests Lib/test/test_importlib/test_main.py /^):$/;" c +DispatchExc Lib/test/test_xmlrpc.py /^ class DispatchExc(Exception):$/;" c class:SimpleXMLRPCDispatcherTestCase +DispatchTable Lib/test/test_pickle.py /^ class DispatchTable:$/;" c function:PyIdPersPicklerTests.test_custom_pickler_dispatch_table_memleak +DispatchedClass Lib/test/test_xmlrpc.py /^ class DispatchedClass:$/;" c function:SimpleXMLRPCDispatcherTestCase.test_call_instance_func +DisplayFileTest Lib/idlelib/idle_test/test_help_about.py /^class DisplayFileTest(unittest.TestCase):$/;" c +DisplayHookTest Lib/test/test_sys.py /^class DisplayHookTest(unittest.TestCase):$/;" c +DisplayName Lib/email/_header_value_parser.py /^class DisplayName(Phrase):$/;" c +DisplayName PC/layout/support/appxmanifest.py /^ DisplayName="IDLE (Python {})".format(VER_DOT),$/;" v +DisplayName PC/layout/support/appxmanifest.py /^ DisplayName="Python {} (Windowed)".format(VER_DOT),$/;" v +DisplayName PC/layout/support/appxmanifest.py /^ DisplayName="Python {}".format(VER_DOT),$/;" v +DisplayName PC/layout/support/appxmanifest.py /^ DisplayName="pip (Python {})".format(VER_DOT),$/;" v +DisplayStyle Lib/tkinter/tix.py /^class DisplayStyle:$/;" c +DistInfoPkg Lib/test/test_importlib/fixtures.py /^class DistInfoPkg(OnSysPath, SiteDir):$/;" c +DistInfoPkgOffPath Lib/test/test_importlib/fixtures.py /^class DistInfoPkgOffPath(SiteDir):$/;" c +DistInfoPkgWithDot Lib/test/test_importlib/fixtures.py /^class DistInfoPkgWithDot(OnSysPath, SiteDir):$/;" c +DistInfoPkgWithDotLegacy Lib/test/test_importlib/fixtures.py /^class DistInfoPkgWithDotLegacy(OnSysPath, SiteDir):$/;" c +Distribution Lib/importlib/metadata/__init__.py /^class Distribution(DeprecatedNonAbstract):$/;" c +DistributionFinder Lib/importlib/metadata/__init__.py /^class DistributionFinder(MetaPathFinder):$/;" c +DistutilsError Tools/c-analyzer/distutils/errors.py /^class DistutilsError (Exception):$/;" c +DistutilsExecError Tools/c-analyzer/distutils/errors.py /^class DistutilsExecError (DistutilsError):$/;" c +DistutilsFileError Tools/c-analyzer/distutils/errors.py /^class DistutilsFileError (DistutilsError):$/;" c +DistutilsModuleError Tools/c-analyzer/distutils/errors.py /^class DistutilsModuleError (DistutilsError):$/;" c +DistutilsPlatformError Tools/c-analyzer/distutils/errors.py /^class DistutilsPlatformError (DistutilsError):$/;" c +Div Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" e enum:_operator +Div0 Lib/test/test_struct.py /^ class Div0:$/;" c function:StructTest.test_issue98248_error_propagation +Div_singleton Include/internal/pycore_ast_state.h /^ PyObject *Div_singleton;$/;" m struct:ast_state +Div_type Include/internal/pycore_ast_state.h /^ PyObject *Div_type;$/;" m struct:ast_state +DivisionByZero Lib/_pydecimal.py /^class DivisionByZero(DecimalException, ZeroDivisionError):$/;" c +DivisionImpossible Lib/_pydecimal.py /^class DivisionImpossible(InvalidOperation):$/;" c +DivisionUndefined Lib/_pydecimal.py /^class DivisionUndefined(InvalidOperation, ZeroDivisionError):$/;" c +DllCanUnloadNow Lib/ctypes/__init__.py /^ def DllCanUnloadNow():$/;" f +DllCanUnloadNow Modules/_ctypes/callbacks.c /^STDAPI DllCanUnloadNow(void)$/;" f +DllCanUnloadNow PC/pyshellext.cpp /^STDAPI DllCanUnloadNow() {$/;" f +DllGetClassObject Lib/ctypes/__init__.py /^ def DllGetClassObject(rclsid, riid, ppv):$/;" f +DllGetClassObject Modules/_ctypes/callbacks.c /^STDAPI DllGetClassObject(REFCLSID rclsid,$/;" f +DllGetClassObject PC/pyshellext.cpp /^STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, _COM_Outptr_ void** ppv) {$/;" f +DllMain Modules/_ctypes/callbacks.c /^BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvRes)$/;" f +DllMain PC/dl_nt.c /^BOOL WINAPI DllMain (HANDLE hInst,$/;" f +DllMain PC/frozen_dllmain.c /^BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)$/;" f +DllMain PC/pyshellext.cpp /^STDAPI_(BOOL) DllMain(_In_opt_ HINSTANCE hinst, DWORD reason, _In_opt_ void*) {$/;" f +DllMain Tools/msi/bundle/bootstrap/pythonba.cpp /^extern "C" BOOL WINAPI DllMain($/;" f +DllRegisterServer PC/pyshellext.cpp /^STDAPI DllRegisterServer() {$/;" f +DllUnregisterServer PC/pyshellext.cpp /^STDAPI DllUnregisterServer() {$/;" f +DndHandler Lib/tkinter/dnd.py /^class DndHandler:$/;" c +DoNotTestEq Lib/test/seq_tests.py /^ class DoNotTestEq(Exception):$/;" c function:CommonTest.test_contains_order +Doc Lib/pydoc.py /^class Doc:$/;" c +DocCGIXMLRPCRequestHandler Lib/xmlrpc/server.py /^ XMLRPCDocGenerator):$/;" c +DocDescr Lib/test/test_descr.py /^ class DocDescr(object):$/;" c function:.test_doc_descriptor +DocFileCase Lib/doctest.py /^class DocFileCase(DocTestCase):$/;" c +DocFileSuite Lib/doctest.py /^def DocFileSuite(*paths, **kw):$/;" f +DocFileTest Lib/doctest.py /^def DocFileTest(path, module_relative=True, package=None,$/;" f +DocHandler Lib/pydoc.py /^ class DocHandler(http.server.BaseHTTPRequestHandler):$/;" c function:_start_server +DocServer Lib/pydoc.py /^ class DocServer(http.server.HTTPServer):$/;" c function:_start_server +DocTest Lib/doctest.py /^class DocTest:$/;" c +DocTestCase Lib/doctest.py /^class DocTestCase(unittest.TestCase):$/;" c +DocTestFailure Lib/doctest.py /^class DocTestFailure(Exception):$/;" c +DocTestFinder Lib/doctest.py /^class DocTestFinder:$/;" c +DocTestParser Lib/doctest.py /^class DocTestParser:$/;" c +DocTestRunner Lib/doctest.py /^class DocTestRunner:$/;" c +DocTestSuite Lib/doctest.py /^def DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None,$/;" f +DocTests Lib/test/test_statistics.py /^class DocTests(unittest.TestCase):$/;" c +DocXMLRPCHTTPGETServer Lib/test/test_docxmlrpc.py /^class DocXMLRPCHTTPGETServer(unittest.TestCase):$/;" c +DocXMLRPCRequestHandler Lib/xmlrpc/server.py /^class DocXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):$/;" c +DocXMLRPCServer Lib/xmlrpc/server.py /^ XMLRPCDocGenerator):$/;" c +DoctypeParser Lib/test/test_xml_etree.py /^ class DoctypeParser:$/;" c class:XMLParserTest.test_subclass_doctype.MyParserWithDoctype +DoctypeParser Lib/test/test_xml_etree.py /^ class DoctypeParser:$/;" c function:TreeBuilderTest.test_doctype +Document Lib/xml/dom/minidom.py /^class Document(Node, DocumentLS):$/;" c +DocumentFragment Lib/xml/dom/minidom.py /^class DocumentFragment(Node):$/;" c +DocumentLS Lib/xml/dom/xmlbuilder.py /^class DocumentLS:$/;" c +DocumentType Lib/xml/dom/minidom.py /^class DocumentType(Identified, Childless, Node):$/;" c +Domain Lib/email/_header_value_parser.py /^class Domain(TokenList):$/;" c +DomainFilter Lib/tracemalloc.py /^class DomainFilter(BaseFilter):$/;" c +DomainLiberal Lib/http/cookiejar.py /^ DomainLiberal = 0$/;" v class:DefaultCookiePolicy +DomainLiteral Lib/email/_header_value_parser.py /^class DomainLiteral(TokenList):$/;" c +DomainRFC2965Match Lib/http/cookiejar.py /^ DomainRFC2965Match = 4$/;" v class:DefaultCookiePolicy +DomainStrict Lib/http/cookiejar.py /^ DomainStrict = DomainStrictNoDots|DomainStrictNonDomain$/;" v class:DefaultCookiePolicy +DomainStrictNoDots Lib/http/cookiejar.py /^ DomainStrictNoDots = 1$/;" v class:DefaultCookiePolicy +DomainStrictNonDomain Lib/http/cookiejar.py /^ DomainStrictNonDomain = 2$/;" v class:DefaultCookiePolicy +DomstringSizeErr Lib/xml/dom/__init__.py /^class DomstringSizeErr(DOMException):$/;" c +Done Lib/test/test_coroutines.py /^ class Done(Exception): pass$/;" c function:CoroutineTest.test_for_stop_iteration +Done Lib/test/test_coroutines.py /^ class Done(Exception): pass$/;" c function:CoroutineTest.test_for_tuple +Done Lib/test/test_grammar.py /^ class Done(Exception): pass$/;" c function:GrammarTests.test_async_for +Done Lib/test/test_grammar.py /^ class Done(Exception): pass$/;" c function:GrammarTests.test_async_with +DoneAndNotDoneFutures Lib/concurrent/futures/_base.py /^DoneAndNotDoneFutures = collections.namedtuple($/;" v +Dot Lib/lib2to3/fixer_util.py /^def Dot():$/;" f +DotAtom Lib/email/_header_value_parser.py /^class DotAtom(TokenList):$/;" c +DotAtomText Lib/email/_header_value_parser.py /^class DotAtomText(TokenList):$/;" c +DotExact Lib/test/test_math.py /^ def DotExact(x, y):$/;" f function:MathTests.test_sumprod_extended_precision_accuracy +DottedPrettyPrinter Lib/test/test_pprint.py /^class DottedPrettyPrinter(pprint.PrettyPrinter):$/;" c +Double Lib/lib2to3/pgen2/tokenize.py /^Double = r'[^"\\\\]*(?:\\\\.[^"\\\\]*)*"'$/;" v +Double Lib/test/test_enum.py /^ class Double(Enum):$/;" c function:MiscTestCase.test_doc_2 +Double Lib/tokenize.py /^Double = r'[^"\\\\]*(?:\\\\.[^"\\\\]*)*"'$/;" v +Double3 Lib/lib2to3/pgen2/tokenize.py /^Double3 = r'[^"\\\\]*(?:(?:\\\\.|"(?!""))[^"\\\\]*)*"""'$/;" v +Double3 Lib/tokenize.py /^Double3 = r'[^"\\\\]*(?:(?:\\\\.|"(?!""))[^"\\\\]*)*"""'$/;" v +DoubleEq Lib/test/test_functools.py /^ class DoubleEq:$/;" c function:TestLRU.test_need_for_rlock +DoubleLength Modules/mathmodule.c /^typedef struct{ double hi; double lo; } DoubleLength;$/;" t typeref:struct:__anon302 file: +DoubleP Lib/test/test_typing.py /^ class DoubleP(Generic[P, P2]):$/;" c function:ParamSpecTests.test_type_var_subst_for_other_type_vars +DoubleSpec Lib/test/test_typing.py /^ class DoubleSpec(Generic[P, P2, T]):$/;" c function:GenericTests.test_repr_3 +DoubleTest Lib/test/test_array.py /^class DoubleTest(FPTest, unittest.TestCase):$/;" c +DoubleType Modules/_tkinter.c /^ const Tcl_ObjType *DoubleType;$/;" m struct:__anon334 file: +DoubleVar Lib/tkinter/__init__.py /^class DoubleVar(Variable):$/;" c +DrLocator Lib/msilib/schema.py /^DrLocator = Table('DrLocator')$/;" v +Driver Lib/lib2to3/pgen2/driver.py /^class Driver(object):$/;" c +DualStackServer Lib/http/server.py /^ class DualStackServer(ThreadingHTTPServer):$/;" c +DuckFuture Lib/test/test_asyncio/test_futures.py /^class DuckFuture:$/;" c +DuckTests Lib/test/test_asyncio/test_futures.py /^class DuckTests(test_utils.TestCase):$/;" c +DumbDBMTestCase Lib/test/test_dbm_dumb.py /^class DumbDBMTestCase(unittest.TestCase):$/;" c +DumbMixin Lib/test/test_enum.py /^ class DumbMixin:$/;" c function:TestSpecial.test_custom_strenum +DumbMixin Lib/test/test_enum.py /^ class DumbMixin:$/;" c function:TestSpecial.test_strenum +DumbStrEnum Lib/test/test_enum.py /^ class DumbStrEnum(DumbMixin, CustomStrEnum):$/;" c function:TestSpecial.test_custom_strenum +DumbStrEnum Lib/test/test_enum.py /^ class DumbStrEnum(DumbMixin, StrEnum):$/;" c function:TestSpecial.test_strenum +Dummy Lib/test/test_asyncio/test_tasks.py /^class Dummy:$/;" c +Dummy Lib/test/test_ctypes/test_bitfields.py /^ class Dummy(Structure):$/;" c function:BitFieldTest.test_nonint_types +Dummy Lib/test/test_email/test_policy.py /^ class Dummy:$/;" c function:PolicyAPITests.test_register_defect +Dummy Lib/test/test_with.py /^ class Dummy(object):$/;" c class:NestedWith +Dummy Lib/test/test_xml_etree.py /^ class Dummy:$/;" c function:BasicElementTest.test_cyclic_gc +Dummy Lib/typing.py /^ class Dummy:$/;" c function:NewType.__mro_entries__ +DummyBuilder Lib/test/test_xml_etree.py /^ class DummyBuilder(BaseDummyBuilder):$/;" c function:TreeBuilderTest.test_dummy_builder +DummyCallable Lib/test/_test_multiprocessing.py /^class DummyCallable:$/;" c +DummyCmp Lib/test/test_itertools.py /^ class DummyCmp:$/;" c function:TestBasicOps.test_groupby +DummyDTPHandler Lib/test/test_ftplib.py /^class DummyDTPHandler(asynchat.async_chat):$/;" c +DummyEditwin Lib/idlelib/idle_test/test_autocomplete.py /^class DummyEditwin:$/;" c +DummyEditwin Lib/idlelib/idle_test/test_autoexpand.py /^class DummyEditwin:$/;" c +DummyEditwin Lib/idlelib/idle_test/test_codecontext.py /^class DummyEditwin:$/;" c +DummyEditwin Lib/idlelib/idle_test/test_format.py /^class DummyEditwin:$/;" c +DummyEditwin Lib/idlelib/idle_test/test_hyperparser.py /^class DummyEditwin:$/;" c +DummyEditwin Lib/idlelib/idle_test/test_parenmatch.py /^class DummyEditwin:$/;" c +DummyEditwin Lib/idlelib/idle_test/test_zzdummy.py /^class DummyEditwin:$/;" c +DummyException Lib/test/test_sqlite3/test_dbapi.py /^ class DummyException(Exception):$/;" c function:BlobTests.test_blob_context_manager_reraise_exceptions +DummyExecutor Lib/test/test_asyncio/test_base_events.py /^ class DummyExecutor(concurrent.futures.ThreadPoolExecutor):$/;" c function:BaseEventLoopTests.test_set_default_executor +DummyFTPHandler Lib/test/test_ftplib.py /^class DummyFTPHandler(asynchat.async_chat):$/;" c +DummyFTPServer Lib/test/test_ftplib.py /^class DummyFTPServer(asyncore.dispatcher, threading.Thread):$/;" c +DummyFloat Lib/test/test_fractions.py /^class DummyFloat(object):$/;" c +DummyFraction Lib/test/test_fractions.py /^class DummyFraction(fractions.Fraction):$/;" c +DummyGNUTranslations Lib/test/test_gettext.py /^class DummyGNUTranslations(gettext.GNUTranslations):$/;" c +DummyIntegral Lib/test/test_numeric_tower.py /^class DummyIntegral(int):$/;" c +DummyIter Lib/test/test_xml_etree.py /^ class DummyIter:$/;" c function:XMLPullParserTest.test_events_sequence +DummyKey Lib/test/test_weakref.py /^ class DummyKey:$/;" c function:MappingTestCase.check_threaded_weak_dict_copy +DummyList Lib/test/_test_multiprocessing.py /^ def DummyList(self):$/;" m class:_TestBarrier +DummyLocator Lib/test/test_sax.py /^ class DummyLocator:$/;" c class:ErrorReportingTest +DummyPOP3Handler Lib/test/test_poplib.py /^class DummyPOP3Handler(asynchat.async_chat):$/;" c +DummyPOP3Server Lib/test/test_poplib.py /^class DummyPOP3Server(asyncore.dispatcher, threading.Thread):$/;" c +DummyPOP3_SSLHandler Lib/test/test_poplib.py /^ class DummyPOP3_SSLHandler(SSLConnection, DummyPOP3Handler):$/;" c class:TestPOP3Class +DummyProcess Lib/multiprocessing/dummy/__init__.py /^class DummyProcess(threading.Thread):$/;" c +DummyRMenu Lib/idlelib/idle_test/test_editor.py /^ class DummyRMenu:$/;" c class:RMenuTest +DummyRational Lib/test/test_fractions.py /^class DummyRational(object):$/;" c +DummyTLS_DTPHandler Lib/test/test_ftplib.py /^ class DummyTLS_DTPHandler(SSLConnection, DummyDTPHandler):$/;" c +DummyTLS_FTPHandler Lib/test/test_ftplib.py /^ class DummyTLS_FTPHandler(SSLConnection, DummyFTPHandler):$/;" c +DummyTLS_FTPServer Lib/test/test_ftplib.py /^ class DummyTLS_FTPServer(DummyFTPServer):$/;" c +DummyURLopener Lib/test/test_urllib.py /^ class DummyURLopener(urllib.request.URLopener):$/;" c function:URLopener_Tests.test_local_file_open +DummyURLopener Lib/test/test_urllib.py /^ class DummyURLopener(urllib.request.URLopener):$/;" c function:URLopener_Tests.test_quoted_open +DummyValue Lib/test/test_weakref.py /^ class DummyValue:$/;" c function:MappingTestCase.check_threaded_weak_dict_copy +Dummy_CustomRun Lib/idlelib/idle_test/test_query.py /^ class Dummy_CustomRun:$/;" c class:CustomRunCLIargsokTest +Dummy_CustomRun Lib/idlelib/idle_test/test_query.py /^ class Dummy_CustomRun:$/;" c class:CustomRunEntryokTest +Dummy_HelpSource Lib/idlelib/idle_test/test_query.py /^ class Dummy_HelpSource:$/;" c class:HelpsourceBrowsefileTest +Dummy_HelpSource Lib/idlelib/idle_test/test_query.py /^ class Dummy_HelpSource:$/;" c class:HelpsourceEntryokTest +Dummy_HelpSource Lib/idlelib/idle_test/test_query.py /^ class Dummy_HelpSource:$/;" c class:HelpsourcePathokTest +Dummy_ModuleName Lib/idlelib/idle_test/test_query.py /^ class Dummy_ModuleName:$/;" c class:GotoTest +Dummy_ModuleName Lib/idlelib/idle_test/test_query.py /^ class Dummy_ModuleName:$/;" c class:ModuleNameTest +Dummy_Query Lib/idlelib/idle_test/test_query.py /^ class Dummy_Query:$/;" c class:QueryTest +Dummy_SectionName Lib/idlelib/idle_test/test_query.py /^ class Dummy_SectionName:$/;" c class:SectionNameTest +Dummy_about_dialog Lib/idlelib/idle_test/test_help_about.py /^class Dummy_about_dialog:$/;" c +Dummy_editwin Lib/idlelib/idle_test/test_sidebar.py /^class Dummy_editwin:$/;" c +Dummy_grep Lib/idlelib/idle_test/test_grep.py /^class Dummy_grep:$/;" c +Dummy_searchengine Lib/idlelib/idle_test/test_grep.py /^class Dummy_searchengine:$/;" c +DumpPickle_CLoadPickle Lib/test/test_pickle.py /^ class DumpPickle_CLoadPickle(PyPicklerTests):$/;" c +DumpTests Lib/test/test_sqlite3/test_dump.py /^class DumpTests(unittest.TestCase):$/;" c +DupFd Lib/multiprocessing/popen_forkserver.py /^ DupFd = _DupFd$/;" v class:Popen +DupFd Lib/multiprocessing/popen_spawn_posix.py /^ DupFd = _DupFd$/;" v class:Popen +DupFd Lib/multiprocessing/reduction.py /^ DupFd = DupFd$/;" v class:AbstractReducer +DupFd Lib/multiprocessing/reduction.py /^ def DupFd(fd):$/;" f function:dump +DupFd Lib/multiprocessing/resource_sharer.py /^ class DupFd(object):$/;" c +DupHandle Lib/multiprocessing/reduction.py /^ DupHandle = DupHandle$/;" v class:AbstractReducer +DupHandle Lib/multiprocessing/reduction.py /^ class DupHandle(object):$/;" c function:dump +DupSocket Lib/multiprocessing/resource_sharer.py /^ class DupSocket(object):$/;" c +Dupes Lib/test/test_enum.py /^ class Dupes(Enum):$/;" c function:OldTestFlag.test_duplicate_auto +Dupes Lib/test/test_enum.py /^ class Dupes(Enum):$/;" c function:TestInternals.test_duplicate_auto +DuplicateFile Lib/msilib/schema.py /^DuplicateFile = Table('DuplicateFile')$/;" v +DuplicateOptionError Lib/configparser.py /^class DuplicateOptionError(Error):$/;" c +DuplicateSectionError Lib/configparser.py /^class DuplicateSectionError(Error):$/;" c +DurationOption Lib/test/test_optparse.py /^class DurationOption(Option):$/;" c +DynOptionMenu Lib/idlelib/dynoption.py /^class DynOptionMenu(OptionMenu):$/;" c +DynamicClassAttribute Lib/types.py /^class DynamicClassAttribute:$/;" c +DynamicPathCalculation Lib/test/test_importlib/test_namespace_pkgs.py /^class DynamicPathCalculation(NamespacePackageTest):$/;" c +DynamicPathNamespacePackage Lib/test/test_importlib/test_namespace_pkgs.py /^class DynamicPathNamespacePackage(NamespacePackageTest):$/;" c +E Lib/test/pickletester.py /^class E(C):$/;" c +E Lib/test/test_abc.py /^ class E(D):$/;" c function:test_factory.TestABC.test_abstractmethod_integration +E Lib/test/test_abc.py /^ class E(D):$/;" c function:test_factory.TestABC.test_customdescriptors_with_abstractmethod +E Lib/test/test_abc.py /^ class E(D):$/;" c function:test_factory.TestABC.test_descriptors_with_abstractmethod +E Lib/test/test_builtin.py /^ class E:$/;" c function:BuiltinTest.test_isinstance +E Lib/test/test_builtin.py /^ class E:$/;" c function:BuiltinTest.test_issubclass +E Lib/test/test_class.py /^ class E:$/;" c function:ClassTests.testConstructorErrorMessages +E Lib/test/test_class.py /^ class E:$/;" c function:ClassTests.testForExceptionsRaisedInInstanceGetattr2 +E Lib/test/test_dataclasses.py /^ class E:$/;" c class:TestRepr.test_repr.C +E Lib/test/test_dataclasses.py /^ class E(D):$/;" c function:TestCase.test_field_order +E Lib/test/test_dataclasses.py /^ class E:$/;" c function:TestReplace.test_recursive_repr_indirection_two +E Lib/test/test_decimal.py /^ class E:$/;" c function:ImplicitConstructionTest.test_rop +E Lib/test/test_descr.py /^ class E(B, C):$/;" c function:ClassPropertiesAndMethods.test_metaclass +E Lib/test/test_descr.py /^ class E(C):$/;" c function:.test_subclass_right_op +E Lib/test/test_descr.py /^ class E(C):$/;" c function:PicklingTests.test_pickle_slots +E Lib/test/test_descr.py /^ class E(C, B): pass$/;" c function:ClassPropertiesAndMethods.test_diamond_inheritance +E Lib/test/test_descr.py /^ class E(C, D):$/;" c function:.test_mutable_bases_catch_mro_conflict +E Lib/test/test_descr.py /^ class E(C, metaclass=AMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +E Lib/test/test_descr.py /^ class E(C, metaclass=ANotMeta):$/;" c function:ClassPropertiesAndMethods.test_metaclass +E Lib/test/test_descr.py /^ class E(D):$/;" c function:.test_dynamics +E Lib/test/test_descr.py /^ class E(D):$/;" c function:.test_mutable_bases +E Lib/test/test_descr.py /^ class E(D):$/;" c function:.test_mutable_bases_with_failing_mro +E Lib/test/test_descr.py /^ class E(D):$/;" c function:.test_slots +E Lib/test/test_descr.py /^ class E(D):$/;" c function:.test_supers +E Lib/test/test_descr.py /^ class E(Exception):$/;" c function:MroTest.test_tp_subclasses_cycle_error_return_path +E Lib/test/test_descr.py /^ class E(object): pass$/;" c function:.test_set_class +E Lib/test/test_descr.py /^ class E(object):$/;" c function:.test_methods +E Lib/test/test_descr.py /^ class E(object):$/;" c function:.test_properties_doc_attrib +E Lib/test/test_descr.py /^ class E(object):$/;" c function:.test_properties_plus +E Lib/test/test_descr.py /^ class E(object, metaclass=Meta2):$/;" c function:.test_set_dict +E Lib/test/test_descr.py /^ class E: # *not* subclassing from C$/;" c function:.test_classic +E Lib/test/test_dict.py /^ class E(dict):$/;" c function:DictTest.test_missing +E Lib/test/test_enum.py /^ E = 5$/;" v class:TestSpecial.test_inherited_data_type.MyOtherEnum +E Lib/test/test_enum.py /^ class E(Enum):$/;" c function:TestSpecial.test_enum_of_generic_aliases +E Lib/test/test_enum.py /^ class E(_EnumSuperClass, Enum):$/;" c function:_EnumTests.test_multiple_superclasses_repr +E Lib/test/test_enumerate.py /^class E:$/;" c +E Lib/test/test_exceptions.py /^ class E(Exception):$/;" c function:ExceptionTests.test_no_hang_on_context_chain_cycle3 +E Lib/test/test_generators.py /^ class E(Exception):$/;" c function:ExceptionTest.test_except_throw_bad_exception +E Lib/test/test_genericclass.py /^ class E(c): ...$/;" c function:TestMROEntry.test_mro_entry_none +E Lib/test/test_genericclass.py /^ class E(d): ...$/;" c function:TestMROEntry.test_mro_entry +E Lib/test/test_genericclass.py /^ class E: ...$/;" c function:TestClassGetitem.test_class_getitem_errors_2 +E Lib/test/test_grammar.py /^ class E(A, D):$/;" c function:GrammarTests.test_annotations_inheritance +E Lib/test/test_heapq.py /^class E:$/;" c +E Lib/test/test_isinstance.py /^ class E(object):$/;" c function:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error +E Lib/test/test_itertools.py /^class E:$/;" c +E Lib/test/test_json/test_enum.py /^E = 2.718281$/;" v +E Lib/test/test_monitoring.py /^E = sys.monitoring.events$/;" v +E Lib/test/test_patma.py /^ E = 1$/;" v class:TestPatma.test_patma_115.A.B.C +E Lib/test/test_set.py /^class E:$/;" c +E Lib/test/test_super.py /^ class E(A):$/;" c function:TestSuper.test_super_with_closure +E Lib/test/test_super.py /^class E(D):$/;" c +E Lib/test/test_types.py /^ class E(list[T]): pass$/;" c function:ClassCreationTests.test_get_original_bases +E Lib/test/test_typing.py /^ E = List[A[Unpack[Ts]]]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +E Lib/test/test_typing.py /^ class E(Generic[Unpack[Ts], int]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_definition_using_concrete_types_fails +E Lib/test/test_typing.py /^ class E:$/;" c class:ProtocolTests.test_protocols_pickleable.CP +E Lib/test/test_typing.py /^ class E(C): ...$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +E Lib/test/test_typing.py /^ class E(C): ...$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +E Lib/test/test_typing.py /^ class E(C, BP): pass$/;" c function:ProtocolTests.test_no_inheritance_from_nominal +E Lib/test/test_typing.py /^ class E(Generic[*Ts, T1, T2]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_2_typevars_accepts_2_or_more_args +E Lib/test/test_typing.py /^ class E:$/;" c function:ForwardRefTests.test_nested_classvar_fails_forward_ref_check +E Lib/test/test_typing.py /^ class E:$/;" c function:ForwardRefTests.test_no_type_check_forward_ref_as_string +E Lib/test/test_typing.py /^ class E:$/;" c function:ForwardRefTests.test_union_forward_recursion +E Lib/test/test_unicode.py /^ class E:$/;" c function:UnicodeTest.test_format +E Lib/test/test_userdict.py /^ class E(collections.UserDict):$/;" c function:UserDictTest.test_missing +E Lib/test/test_xml_etree.py /^ class E(ET.Element):$/;" c function:BasicElementTest.test_augmentation_type_errors +E Lib/tkinter/constants.py /^E='e'$/;" v +E Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +E Modules/_decimal/libmpdec/literature/fnt.py /^E = [(25,2,1), (27,1,1), (26,3)]$/;" v +E Modules/_decimal/libmpdec/literature/fnt.py /^E = [(32,1,1,1,1,1), (34,2,1,1,1,1,1), (40,2,1,1,1,1,1)]$/;" v +E2 Lib/test/test_itertools.py /^class E2:$/;" c +EADDRINUSE Modules/errnomodule.c 14;" d file: +EADDRINUSE Objects/exceptions.c 3529;" d file: +EADDRNOTAVAIL Modules/errnomodule.c 15;" d file: +EADDRNOTAVAIL Objects/exceptions.c 3530;" d file: +EAFNOSUPPORT Modules/errnomodule.c 16;" d file: +EAFNOSUPPORT Modules/socketmodule.c 474;" d file: +EAFNOSUPPORT Modules/socketmodule.c 475;" d file: +EAFNOSUPPORT Objects/exceptions.c 3531;" d file: +EAGAIN Lib/socket.py /^EAGAIN = getattr(errno, 'EAGAIN', 11)$/;" v +EAI_ADDRFAMILY Modules/addrinfo.h 40;" d +EAI_ADDRFAMILY Modules/addrinfo.h 58;" d +EAI_AGAIN Modules/addrinfo.h 41;" d +EAI_AGAIN Modules/addrinfo.h 59;" d +EAI_BADFLAGS Modules/addrinfo.h 42;" d +EAI_BADFLAGS Modules/addrinfo.h 60;" d +EAI_BADHINTS Modules/addrinfo.h 51;" d +EAI_BADHINTS Modules/addrinfo.h 69;" d +EAI_FAIL Modules/addrinfo.h 43;" d +EAI_FAIL Modules/addrinfo.h 61;" d +EAI_FAMILY Modules/addrinfo.h 44;" d +EAI_FAMILY Modules/addrinfo.h 62;" d +EAI_MAX Modules/addrinfo.h 53;" d +EAI_MAX Modules/addrinfo.h 71;" d +EAI_MEMORY Modules/addrinfo.h 45;" d +EAI_MEMORY Modules/addrinfo.h 63;" d +EAI_NODATA Modules/addrinfo.h 46;" d +EAI_NODATA Modules/addrinfo.h 64;" d +EAI_NONAME Modules/addrinfo.h 47;" d +EAI_NONAME Modules/addrinfo.h 65;" d +EAI_PROTOCOL Modules/addrinfo.h 52;" d +EAI_PROTOCOL Modules/addrinfo.h 70;" d +EAI_SERVICE Modules/addrinfo.h 48;" d +EAI_SERVICE Modules/addrinfo.h 66;" d +EAI_SOCKTYPE Modules/addrinfo.h 49;" d +EAI_SOCKTYPE Modules/addrinfo.h 67;" d +EAI_SYSTEM Modules/addrinfo.h 50;" d +EAI_SYSTEM Modules/addrinfo.h 68;" d +EALREADY Modules/errnomodule.c 17;" d file: +EALREADY Objects/exceptions.c 3532;" d file: +EALREADY Objects/exceptions.c 3556;" d file: +EARLY_HINTS Lib/http/__init__.py /^ EARLY_HINTS = 103, 'Early Hints'$/;" v class:HTTPStatus +EARLY_HINTS Lib/test/test_httplib.py /^ EARLY_HINTS = 103, 'Early Hints'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +EARTH Lib/test/test_enum.py /^ EARTH = (5.976e+24, 6.37814e6)$/;" v class:TestSpecial.test_init.Planet +EAST Lib/test/test_enum.py /^ EAST = 'east'$/;" v class:TestSpecial.setUp.Directional +EASTASIANWIDTH_NAMES Tools/unicode/makeunicodedata.py /^EASTASIANWIDTH_NAMES = [ "N", "H", "W", "Na", "A", "F" ]$/;" v +EASTASIAN_WIDTH Tools/unicode/makeunicodedata.py /^EASTASIAN_WIDTH = "EastAsianWidth%s.txt"$/;" v +EAT_CRNL Modules/_csv.c /^ EAT_CRNL,AFTER_ESCAPED_CRNL$/;" e enum:__anon621 file: +EBADF Lib/socket.py /^EBADF = getattr(errno, 'EBADF', 9)$/;" v +EC Lib/telnetlib.py /^EC = bytes([247]) # Erase Character$/;" v +ECHO Lib/telnetlib.py /^ECHO = bytes([1]) # echo$/;" v +ECONNABORTED Modules/errnomodule.c 18;" d file: +ECONNABORTED Objects/exceptions.c 3533;" d file: +ECONNABORTED Objects/exceptions.c 3559;" d file: +ECONNREFUSED Modules/errnomodule.c 19;" d file: +ECONNREFUSED Objects/exceptions.c 3534;" d file: +ECONNREFUSED Objects/exceptions.c 3562;" d file: +ECONNRESET Modules/errnomodule.c 20;" d file: +ECONNRESET Objects/exceptions.c 3535;" d file: +ECONNRESET Objects/exceptions.c 3565;" d file: +EDESTADDRREQ Modules/errnomodule.c 21;" d file: +EDESTADDRREQ Objects/exceptions.c 3536;" d file: +EDIT_KEYS Lib/idlelib/config_key.py /^EDIT_KEYS = ('BackSpace', 'Delete', 'Insert')$/;" v +EFFUSIVE Lib/test/test_logging.py /^EFFUSIVE = 117$/;" v +EG Lib/test/test_except_star.py /^ class EG(ExceptionGroup):$/;" c function:TestExceptStarExceptionGroupSubclass.test_except_star_EG_subclass +EG Lib/test/test_exception_group.py /^ class EG(BaseExceptionGroup):$/;" c function:NestedExceptionGroupSubclassSplitTest.test_split_BaseExceptionGroup_subclass_no_derive_new_override +EG Lib/test/test_exception_group.py /^ class EG(ExceptionGroup):$/;" c function:NestedExceptionGroupSubclassSplitTest.test_split_ExceptionGroup_subclass_derive_and_new_overrides +EG Lib/test/test_exception_group.py /^ class EG(ExceptionGroup):$/;" c function:NestedExceptionGroupSubclassSplitTest.test_split_ExceptionGroup_subclass_no_derive_no_new_override +EGG Modules/_ctypes/_ctypes_test.c /^} EGG;$/;" t typeref:struct:__anon513 file: +EGGS Lib/test/test_importlib/test_spec.py /^ EGGS = 1$/;" v class:NewLoader +EHOSTUNREACH Modules/errnomodule.c 22;" d file: +EHOSTUNREACH Objects/exceptions.c 3537;" d file: +EIGHT Lib/test/test_enum.py /^ EIGHT = 8$/;" v class:OldTestFlag.test_boundary.Iron +EIGHT Lib/test/test_enum.py /^ EIGHT = 8$/;" v class:OldTestFlag.test_boundary.Space +EIGHT Lib/test/test_enum.py /^ EIGHT = 8$/;" v class:OldTestFlag.test_boundary.Water +EIGHT Lib/test/test_enum.py /^ EIGHT = 8$/;" v class:OldTestIntFlag.test_boundary.Iron +EIGHT Lib/test/test_enum.py /^ EIGHT = 8$/;" v class:OldTestIntFlag.test_boundary.Space +EIGHT Lib/test/test_enum.py /^ EIGHT = 8$/;" v class:OldTestIntFlag.test_boundary.Water +EIGHT Lib/test/test_enum.py /^ EIGHT = auto()$/;" v class:OldTestFlag.test_number_reset_and_order_cleanup.Confused +EIGHTH Lib/test/test_enum.py /^ EIGHTH = 8$/;" v class:OldTestIntFlag.Skip +EINPROGRESS Modules/errnomodule.c 23;" d file: +EINPROGRESS Objects/exceptions.c 3538;" d file: +EINPROGRESS Objects/exceptions.c 3568;" d file: +EINTRBaseTest Lib/test/_test_eintr.py /^class EINTRBaseTest(unittest.TestCase):$/;" c +EINTRTests Lib/test/test_eintr.py /^class EINTRTests(unittest.TestCase):$/;" c +EISCONN Modules/errnomodule.c 24;" d file: +EISCONN Objects/exceptions.c 3539;" d file: +EJECT Lib/enum.py /^ EJECT = auto()$/;" v class:FlagBoundary +EL Lib/telnetlib.py /^EL = bytes([248]) # Erase Line$/;" v +ELEMENT_NODE Lib/xml/dom/__init__.py /^ ELEMENT_NODE = 1$/;" v class:Node +ELEMENT_TYPE Modules/expat/xmlparse.c /^} ELEMENT_TYPE;$/;" t typeref:struct:__anon616 file: +ELLIPSIS Include/internal/pycore_token.h 68;" d +ELLIPSIS Lib/doctest.py /^ELLIPSIS = register_optionflag('ELLIPSIS')$/;" v +ELLIPSIS Lib/token.py /^ELLIPSIS = 52$/;" v +ELLIPSIS Tools/build/umarshal.py /^ ELLIPSIS = ord('.')$/;" v class:Type +ELLIPSIS Tools/cases_generator/lexer.py /^ELLIPSIS = r'\\.\\.\\.'$/;" v +ELLIPSIS_MARKER Lib/doctest.py /^ELLIPSIS_MARKER = '...'$/;" v +ELOOP Modules/errnomodule.c 25;" d file: +ELOOP Objects/exceptions.c 3540;" d file: +ELinksCommandTest Lib/test/test_webbrowser.py /^class ELinksCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +EM Lib/curses/ascii.py /^EM = 0x19 # ^Y$/;" v +EMBEDDED_EXT_NAME Programs/_testembed.c 142;" d file: +EMPBASE Modules/cjkcodecs/_codecs_jp.c 8;" d file: +EMPTY Lib/test/test_linecache.py /^EMPTY = ''$/;" v +EMPTY Objects/bytesobject.c 43;" d file: +EMPTY Python/ceval_macros.h 201;" d +EMPTY Tools/c-analyzer/c_common/tables.py /^EMPTY = '-'$/;" v +EMPTYCERT Lib/test/test_ssl.py /^EMPTYCERT = data_file("nullcert.pem")$/;" v +EMPTYSTRING Lib/email/_parseaddr.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Lib/email/base64mime.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Lib/email/charset.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Lib/email/feedparser.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Lib/email/header.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Lib/email/quoprimime.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Lib/email/utils.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Lib/quopri.py /^EMPTYSTRING = b''$/;" v +EMPTYSTRING Lib/test/test_email/test_email.py /^EMPTYSTRING = ''$/;" v +EMPTYSTRING Tools/i18n/pygettext.py /^EMPTYSTRING = ''$/;" v +EMPTY_DATA Lib/test/test_bz2.py /^ EMPTY_DATA = b'BZh9\\x17rE8P\\x90\\x00\\x00\\x00\\x00'$/;" v class:BaseTest +EMPTY_DICT Lib/pickle.py /^EMPTY_DICT = b'}' # push empty dict$/;" v +EMPTY_DICT Modules/_pickle.c /^ EMPTY_DICT = '}',$/;" e enum:opcode file: +EMPTY_LIST Lib/pickle.py /^EMPTY_LIST = b']' # push empty list$/;" v +EMPTY_LIST Modules/_pickle.c /^ EMPTY_LIST = ']',$/;" e enum:opcode file: +EMPTY_NAMESPACE Lib/xml/dom/__init__.py /^EMPTY_NAMESPACE = None$/;" v +EMPTY_PREFIX Lib/xml/dom/__init__.py /^EMPTY_PREFIX = None$/;" v +EMPTY_ROTATING_TREE Modules/rotatingtree.h 13;" d +EMPTY_SET Lib/pickle.py /^EMPTY_SET = b'\\x8f' # push empty set on the stack$/;" v +EMPTY_SET Modules/_pickle.c /^ EMPTY_SET = '\\x8f',$/;" e enum:opcode file: +EMPTY_STACK Objects/frameobject.c 173;" d file: +EMPTY_STRING_SIZE Lib/test/test_tracemalloc.py /^EMPTY_STRING_SIZE = sys.getsizeof(b'')$/;" v +EMPTY_TUPLE Lib/pickle.py /^EMPTY_TUPLE = b')' # push empty tuple$/;" v +EMPTY_TUPLE Modules/_pickle.c /^ EMPTY_TUPLE = ')',$/;" e enum:opcode file: +EMSCRIPTEN Tools/wasm/wasm_build.py /^EMSCRIPTEN = Platform($/;" v +EMSDK_BROKEN_VERSION Tools/wasm/wasm_build.py /^EMSDK_BROKEN_VERSION = {$/;" v +EMSDK_MIN_VERSION Tools/wasm/wasm_build.py /^EMSDK_MIN_VERSION = (3, 1, 19)$/;" v +EMSGSIZE Modules/errnomodule.c 26;" d file: +EMSGSIZE Objects/exceptions.c 3541;" d file: +EMULATE_JISX0213_2000_DECODE_INVALID Modules/cjkcodecs/_codecs_iso2022.c 11;" d file: +EMULATE_JISX0213_2000_DECODE_INVALID Modules/cjkcodecs/emu_jisx0213_2000.h 27;" d +EMULATE_JISX0213_2000_DECODE_PLANE1 Modules/cjkcodecs/emu_jisx0213_2000.h 30;" d +EMULATE_JISX0213_2000_DECODE_PLANE2 Modules/cjkcodecs/emu_jisx0213_2000.h 45;" d +EMULATE_JISX0213_2000_DECODE_PLANE2_CHAR Modules/cjkcodecs/emu_jisx0213_2000.h 50;" d +EMULATE_JISX0213_2000_ENCODE_BMP Modules/cjkcodecs/emu_jisx0213_2000.h 8;" d +EMULATE_JISX0213_2000_ENCODE_EMP Modules/cjkcodecs/emu_jisx0213_2000.h 21;" d +EMULATE_JISX0213_2000_ENCODE_INVALID Modules/cjkcodecs/_codecs_iso2022.c 10;" d file: +EMULATE_JISX0213_2000_ENCODE_INVALID Modules/cjkcodecs/emu_jisx0213_2000.h 5;" d +EM_CONFIG Tools/wasm/wasm_build.py /^EM_CONFIG = pathlib.Path(os.environ.setdefault("EM_CONFIG", "\/opt\/emsdk\/.emscripten"))$/;" v +ENABLE_IPV6 Modules/socketmodule.h 75;" d +ENABLE_SPECIALIZATION Include/opcode.h 264;" d +ENABLE_SPECIALIZATION Lib/opcode.py /^ENABLE_SPECIALIZATION = True$/;" v +ENABLE_USER_SITE Lib/site.py /^ENABLE_USER_SITE = None$/;" v +ENCODED_AUTH Lib/test/test_urllib2_localnet.py /^ ENCODED_AUTH = base64.b64encode(USER_PASSWD.encode('ascii')).decode('ascii')$/;" v class:BasicAuthHandler +ENCODER Modules/cjkcodecs/_codecs_cn.c /^ENCODER(gb18030)$/;" f +ENCODER Modules/cjkcodecs/_codecs_cn.c /^ENCODER(gb2312)$/;" f +ENCODER Modules/cjkcodecs/_codecs_cn.c /^ENCODER(gbk)$/;" f +ENCODER Modules/cjkcodecs/_codecs_cn.c /^ENCODER(hz)$/;" f +ENCODER Modules/cjkcodecs/_codecs_hk.c /^ENCODER(big5hkscs)$/;" f +ENCODER Modules/cjkcodecs/_codecs_iso2022.c /^ENCODER(iso2022)$/;" f +ENCODER Modules/cjkcodecs/_codecs_jp.c /^ENCODER(cp932)$/;" f +ENCODER Modules/cjkcodecs/_codecs_jp.c /^ENCODER(euc_jis_2004)$/;" f +ENCODER Modules/cjkcodecs/_codecs_jp.c /^ENCODER(euc_jp)$/;" f +ENCODER Modules/cjkcodecs/_codecs_jp.c /^ENCODER(shift_jis)$/;" f +ENCODER Modules/cjkcodecs/_codecs_jp.c /^ENCODER(shift_jis_2004)$/;" f +ENCODER Modules/cjkcodecs/_codecs_kr.c /^ENCODER(cp949)$/;" f +ENCODER Modules/cjkcodecs/_codecs_kr.c /^ENCODER(euc_kr)$/;" f +ENCODER Modules/cjkcodecs/_codecs_kr.c /^ENCODER(johab)$/;" f +ENCODER Modules/cjkcodecs/_codecs_tw.c /^ENCODER(big5)$/;" f +ENCODER Modules/cjkcodecs/_codecs_tw.c /^ENCODER(cp950)$/;" f +ENCODER Modules/cjkcodecs/cjkcodecs.h 90;" d +ENCODER_INIT Modules/cjkcodecs/_codecs_cn.c /^ENCODER_INIT(hz)$/;" f +ENCODER_INIT Modules/cjkcodecs/_codecs_iso2022.c /^ENCODER_INIT(iso2022)$/;" f +ENCODER_INIT Modules/cjkcodecs/cjkcodecs.h 87;" d +ENCODER_RESET Modules/cjkcodecs/_codecs_cn.c /^ENCODER_RESET(hz)$/;" f +ENCODER_RESET Modules/cjkcodecs/_codecs_iso2022.c /^ENCODER_RESET(iso2022)$/;" f +ENCODER_RESET Modules/cjkcodecs/cjkcodecs.h 96;" d +ENCODE_DIRECT Objects/unicodeobject.c 4209;" d file: +ENCODE_DIRECT Objects/unicodeobject.c 4532;" d file: +ENCODE_OUTPUT Modules/_json.c 257;" d file: +ENCODE_OUTPUT Modules/_json.c 297;" d file: +ENCODING Lib/tarfile.py /^ ENCODING = "utf-8"$/;" v +ENCODING Lib/tarfile.py /^ ENCODING = sys.getfilesystemencoding()$/;" v +ENCODING Lib/test/test_codecs.py /^ ENCODING = sys.getfilesystemencoding()$/;" v class:LocaleCodecTest +ENCODING Lib/token.py /^ENCODING = 67$/;" v +ENCODING Modules/expat/xmltok.h /^typedef struct encoding ENCODING;$/;" t typeref:struct:encoding +ENCODING Tools/gdb/libpython.py /^ENCODING = locale.getpreferredencoding()$/;" v +ENCODINGMAP_SIZE_METHODDEF Objects/clinic/unicodeobject.c.h 17;" d +ENCODING_MAX Modules/expat/xmltok_ns.c 95;" d file: +ENCRYPT Lib/telnetlib.py /^ENCRYPT = bytes([38]) # Encryption option$/;" v +ENCRYPTED_EXTENSIONS Lib/ssl.py /^ ENCRYPTED_EXTENSIONS = 8$/;" v class:_TLSMessageType +ENCRYPTED_EXTENSIONS Lib/test/test_ssl.py /^ ENCRYPTED_EXTENSIONS = 8$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +ENC_UNKNOWN Python/codecs.c 1033;" d file: +ENC_UTF16BE Python/codecs.c 1035;" d file: +ENC_UTF16LE Python/codecs.c 1036;" d file: +ENC_UTF32BE Python/codecs.c 1037;" d file: +ENC_UTF32LE Python/codecs.c 1038;" d file: +ENC_UTF8 Python/codecs.c 1034;" d file: +END Lib/tkinter/constants.py /^END='end'$/;" v +END Lib/venv/scripts/nt/activate.bat /^:END$/;" l +END Lib/venv/scripts/nt/deactivate.bat /^:END$/;" l +END Tools/build/generate_global_objects.py /^END = '\/* End auto-generated code *\/'$/;" v +ENDC Tools/peg_generator/scripts/find_max_nesting.py /^ENDC = "\\033[0m"$/;" v +ENDC Tools/peg_generator/scripts/test_parse_directory.py /^ENDC = "\\033[0m"$/;" v +ENDMARKER Include/internal/pycore_token.h 16;" d +ENDMARKER Lib/lib2to3/pgen2/token.py /^ENDMARKER = 0$/;" v +ENDMARKER Lib/token.py /^ENDMARKER = 0$/;" v +END_ASYNC_FOR Include/opcode.h 37;" d +END_CENTRAL_DIR_SIZE Lib/zipimport.py /^END_CENTRAL_DIR_SIZE = 22$/;" v +END_CODECS_LIST Modules/cjkcodecs/cjkcodecs.h 285;" d +END_COLUMNS Tools/c-analyzer/c_parser/datafiles.py /^END_COLUMNS = {$/;" v +END_DOCUMENT Lib/xml/dom/pulldom.py /^END_DOCUMENT = "END_DOCUMENT"$/;" v +END_ELEMENT Lib/xml/dom/pulldom.py /^END_ELEMENT = "END_ELEMENT"$/;" v +END_FOR Include/opcode.h 15;" d +END_MAPPINGS_LIST Modules/cjkcodecs/cjkcodecs.h 247;" d +END_MARKER Tools/cases_generator/generate_cases.py /^END_MARKER = "\/\/ END BYTECODES \/\/"$/;" v +END_OF_EARLY_DATA Lib/ssl.py /^ END_OF_EARLY_DATA = 5$/;" v class:_TLSMessageType +END_OF_EARLY_DATA Lib/test/test_ssl.py /^ END_OF_EARLY_DATA = 5$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +END_SEND Include/opcode.h 16;" d +ENETDOWN Modules/errnomodule.c 27;" d file: +ENETDOWN Objects/exceptions.c 3542;" d file: +ENETRESET Modules/errnomodule.c 28;" d file: +ENETRESET Objects/exceptions.c 3543;" d file: +ENETUNREACH Modules/errnomodule.c 29;" d file: +ENETUNREACH Objects/exceptions.c 3544;" d file: +ENGINE Lib/test/test_lib2to3/data/infinite_recursion.py /^ENGINE = engine_st$/;" v +ENI_FAMILY Modules/getnameinfo.c 84;" d file: +ENI_MEMORY Modules/getnameinfo.c 82;" d file: +ENI_NOHOSTNAME Modules/getnameinfo.c 81;" d file: +ENI_NOSERVNAME Modules/getnameinfo.c 80;" d file: +ENI_NOSOCKET Modules/getnameinfo.c 79;" d file: +ENI_SALEN Modules/getnameinfo.c 85;" d file: +ENI_SYSTEM Modules/getnameinfo.c 83;" d file: +ENOBUFS Modules/errnomodule.c 30;" d file: +ENOBUFS Objects/exceptions.c 3545;" d file: +ENOPROTOOPT Modules/errnomodule.c 31;" d file: +ENOPROTOOPT Objects/exceptions.c 3546;" d file: +ENOTCONN Modules/errnomodule.c 32;" d file: +ENOTCONN Objects/exceptions.c 3547;" d file: +ENOTSOCK Modules/errnomodule.c 33;" d file: +ENOTSOCK Objects/exceptions.c 3548;" d file: +ENQ Lib/curses/ascii.py /^ENQ = 0x05 # ^E$/;" v +ENSURE_Context Python/context.c 20;" d file: +ENSURE_ContextToken Python/context.c 34;" d file: +ENSURE_ContextVar Python/context.c 27;" d file: +ENSURE_FUTURE_ALIVE Modules/_asynciomodule.c 420;" d file: +ENSURE_INFO_TYPE Python/sysmodule.c 3302;" d file: +ENSURE_INFO_TYPE Python/sysmodule.c 3329;" d file: +ENSURE_PIP_INIT_PY_TEXT Tools/build/verify_ensurepip_wheels.py /^ENSURE_PIP_INIT_PY_TEXT = (ENSURE_PIP_ROOT \/ "__init__.py").read_text(encoding="utf-8")$/;" v +ENSURE_PIP_ROOT Tools/build/verify_ensurepip_wheels.py /^ENSURE_PIP_ROOT = Path(__file__).parent.parent.parent \/ "Lib\/ensurepip"$/;" v +ENSURE_REALIZED Modules/_io/stringio.c 65;" d file: +ENTERED Lib/asyncio/timeouts.py /^ ENTERED = "active"$/;" v class:_State +ENTER_BUFFERED Modules/_io/bufferedio.c 321;" d file: +ENTER_HASHLIB Modules/hashlib.h 50;" d +ENTER_OVERLAP Modules/_tkinter.c 272;" d file: +ENTER_PYTHON Modules/_tkinter.c 278;" d file: +ENTER_TCL Modules/_tkinter.c 261;" d file: +ENTER_ZLIB Modules/zlibmodule.c 171;" d file: +ENTITIES_URL Tools/build/parse_html5_entities.py /^ENTITIES_URL = 'https:\/\/html.spec.whatwg.org\/entities.json'$/;" v +ENTITY Modules/expat/xmlparse.c /^} ENTITY;$/;" t typeref:struct:__anon611 file: +ENTITY_NODE Lib/xml/dom/__init__.py /^ ENTITY_NODE = 6$/;" v class:Node +ENTITY_REFERENCE_NODE Lib/xml/dom/__init__.py /^ ENTITY_REFERENCE_NODE = 5$/;" v class:Node +ENTITY_STATS Modules/expat/xmlparse.c /^} ENTITY_STATS;$/;" t typeref:struct:entity_stats file: +ENTROPY_DEBUG Modules/expat/xmlparse.c /^ENTROPY_DEBUG(const char *label, unsigned long entropy) {$/;" f file: +ENTRY1 Lib/test/test_enum.py /^ ENTRY1 = 1$/;" v class:TestSpecial.test_repr_and_str_with_no_init_mixin.Entries +ENTRY1 Lib/test/test_enum.py /^ ENTRY1 = 1$/;" v class:TestSpecial.test_repr_with_dataclass.Entries +ENTRY1 Lib/test/test_enum.py /^ ENTRY1 = 1$/;" v class:TestSpecial.test_repr_with_init_mixin.Entries +ENTRY_NEXT Python/hashtable.c 59;" d file: +ENUM Tools/c-analyzer/c_parser/info.py /^ ENUM = 'enum'$/;" v class:KIND +ENUM_MEMBER_DECL Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^ENUM_MEMBER_DECL = set_capture_groups(_ENUM_MEMBER_DECL, ($/;" v +ENUM_MEMBER_RE Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^ENUM_MEMBER_RE = re.compile(rf'{ENUM_MEMBER_DECL}', re.VERBOSE)$/;" v +ENV_CHANGED Lib/test/libregrtest/runtest.py /^ ENV_CHANGED = "ENV_CHANGED"$/;" v class:State +ENV_PATH Lib/test/test_getpath.py /^ ENV_PATH="",$/;" v class:MockGetPathTests +ENV_PYTHONEXECUTABLE Lib/test/test_getpath.py /^ ENV_PYTHONEXECUTABLE="",$/;" v class:MockGetPathTests +ENV_PYTHONHOME Lib/test/test_getpath.py /^ ENV_PYTHONHOME="",$/;" v class:MockGetPathTests +ENV_PYTHONPATH Modules/getpath.py /^ENV_PYTHONPATH = config['pythonpath_env']$/;" v +ENV___PYVENV_LAUNCHER__ Lib/test/test_getpath.py /^ ENV___PYVENV_LAUNCHER__="",$/;" v class:MockGetPathTests +EOF Lib/test/test_memoryio.py /^ EOF = ""$/;" v class:PyStringIOPickleTest +EOF Lib/test/test_memoryio.py /^ EOF = ""$/;" v class:PyStringIOTest +EOF Lib/test/test_memoryio.py /^ EOF = b""$/;" v class:PyBytesIOTest +EOFHandler Lib/test/test_imaplib.py /^ class EOFHandler(socketserver.StreamRequestHandler):$/;" c function:NewIMAPTestsMixin.test_EOF_without_complete_welcome_message +EOFHandler Lib/test/test_imaplib.py /^ class EOFHandler(socketserver.StreamRequestHandler):$/;" c function:ThreadedNetworkedTests.test_issue5949 +EOFHeaderError Lib/tarfile.py /^class EOFHeaderError(HeaderError):$/;" c +EOFTestCase Lib/test/test_eof.py /^class EOFTestCase(unittest.TestCase):$/;" c +EOF_ERRORS Lib/test/test_nntplib.py /^EOF_ERRORS = (EOFError,)$/;" v +EOFhook Lib/idlelib/rpc.py /^ def EOFhook(self):$/;" m class:SocketIO +EOFhook Lib/idlelib/run.py /^ def EOFhook(self):$/;" m class:MyHandler +EOL Modules/_csv.c 24;" d file: +EOPNOTSUPP Modules/errnomodule.c 34;" d file: +EOPNOTSUPP Objects/exceptions.c 3549;" d file: +EOR Lib/telnetlib.py /^EOR = bytes([25]) # end or record$/;" v +EOT Lib/curses/ascii.py /^EOT = 0x04 # ^D$/;" v +EPOCH Lib/calendar.py /^EPOCH = 1970$/;" v +EPOCH Lib/zoneinfo/_zoneinfo.py /^EPOCH = datetime(1970, 1, 1)$/;" v +EPOCHORDINAL Lib/test/datetimetester.py /^ EPOCHORDINAL = date(1970, 1, 1).toordinal()$/;" v class:ZoneInfo +EPOCHORDINAL Lib/zoneinfo/_zoneinfo.py /^EPOCHORDINAL = datetime(1970, 1, 1).toordinal()$/;" v +EPOCHORDINAL Modules/_zoneinfo.c /^static const int EPOCHORDINAL = 719163;$/;" v file: +EPOCH_NAIVE Lib/test/datetimetester.py /^EPOCH_NAIVE = datetime(1970, 1, 1, 0, 0) # For calculating transitions$/;" v +EPOCH_SECONDS Modules/_datetimemodule.c 6370;" d file: +EPOCH_YEAR Lib/http/cookiejar.py /^EPOCH_YEAR = 1970$/;" v +EPROTONOSUPPORT Modules/errnomodule.c 35;" d file: +EPROTONOSUPPORT Objects/exceptions.c 3550;" d file: +EPROTOTYPE Modules/errnomodule.c 36;" d file: +EPROTOTYPE Objects/exceptions.c 3551;" d file: +EPS Lib/test/test_float.py /^ EPS = fromHex('0x0.0000000000001p0') # diff between 1.0 and next float up$/;" v class:HexFloatTestCase +EPSILON Lib/test/test_float.py /^EPSILON = {$/;" v +EPipeSocket Lib/test/test_httplib.py /^class EPipeSocket(FakeSocket):$/;" c +EPollEventLoopTests Lib/test/test_asyncio/test_events.py /^ test_utils.TestCase):$/;" c class:SubprocessTestsMixin.UnixEventLoopTestsMixin +EPollEventLoopTests Lib/test/test_asyncio/test_sendfile.py /^ test_utils.TestCase):$/;" c class:SendfileTestsBase.ProactorEventLoopTests +EPollEventLoopTests Lib/test/test_asyncio/test_sock_lowlevel.py /^ test_utils.TestCase):$/;" c class:BaseSockTestsMixin.ProactorEventLoopTests +EQEQUAL Include/internal/pycore_token.h 43;" d +EQEQUAL Lib/lib2to3/pgen2/token.py /^EQEQUAL = 28$/;" v +EQEQUAL Lib/token.py /^EQEQUAL = 27$/;" v +EQUAL Include/internal/pycore_token.h 38;" d +EQUAL Lib/lib2to3/pgen2/token.py /^EQUAL = 22$/;" v +EQUAL Lib/token.py /^EQUAL = 22$/;" v +ERASED_SIZE Objects/obmalloc.c 2181;" d file: +ERR Modules/getaddrinfo.c 202;" d file: +ERR Tools/buildbot/test.bat /^set ERR=%ERRORLEVEL%$/;" v +ERROR Lib/logging/__init__.py /^ERROR = 40$/;" v +ERROR Lib/test/test_capi/test_watchers.py /^ ERROR = 1 # unconditionally sets and signals a RuntimeException$/;" v class:TestDictWatchers +ERROR Lib/test/test_capi/test_watchers.py /^ ERROR = 1 # unconditionally sets and signals a RuntimeException$/;" v class:TestTypeWatchers +ERROR Lib/test/test_importlib/test_util.py /^ ERROR = re.compile("^: module (.*) does not support loading in subinterpreters")$/;" v class:IncompatibleExtensionModuleRestrictionsTests +ERROR Lib/tkinter/messagebox.py /^ERROR = "error"$/;" v +ERROR Python/assemble.c 15;" d file: +ERROR Python/assemble.c 17;" d file: +ERROR Python/compile.c 60;" d file: +ERROR Python/compile.c 62;" d file: +ERROR Python/flowgraph.c 16;" d file: +ERROR Python/flowgraph.c 18;" d file: +ERROR Tools/c-analyzer/distutils/log.py /^ERROR = 4$/;" v +ERRORTOKEN Include/internal/pycore_token.h 82;" d +ERRORTOKEN Lib/lib2to3/pgen2/token.py /^ERRORTOKEN = 58$/;" v +ERRORTOKEN Lib/token.py /^ERRORTOKEN = 66$/;" v +ERROR_CONNECTION_ABORTED Lib/asyncio/windows_events.py /^ERROR_CONNECTION_ABORTED = 1236$/;" v +ERROR_CONNECTION_REFUSED Lib/asyncio/windows_events.py /^ERROR_CONNECTION_REFUSED = 1225$/;" v +ERROR_DECREF Modules/cjkcodecs/multibytecodec.h 129;" d +ERROR_FILE_NOT_FOUND Lib/test/support/os_helper.py /^ ERROR_FILE_NOT_FOUND = 2$/;" v +ERROR_IF Python/bytecodes.c 44;" d file: +ERROR_IGNORE Modules/cjkcodecs/multibytecodec.h 126;" d +ERROR_ISCUSTOM Modules/cjkcodecs/multibytecodec.h 128;" d +ERROR_NEED_PY_SSIZE_T_CLEAN Python/modsupport.c 280;" d file: +ERROR_NEED_PY_SSIZE_T_CLEAN Python/modsupport.c 503;" d file: +ERROR_REPLACE Modules/cjkcodecs/multibytecodec.h 127;" d +ERROR_STRICT Modules/cjkcodecs/multibytecodec.h 125;" d +ERRSTR Modules/_ssl.c 379;" d file: +ERRSTR1 Modules/_ssl.c 378;" d file: +ERR_CHANNELS_MUTEX_INIT Modules/_xxinterpchannelsmodule.c 259;" d file: +ERR_CHANNEL_CLOSED Modules/_xxinterpchannelsmodule.c 254;" d file: +ERR_CHANNEL_EMPTY Modules/_xxinterpchannelsmodule.c 256;" d file: +ERR_CHANNEL_INTERP_CLOSED Modules/_xxinterpchannelsmodule.c 255;" d file: +ERR_CHANNEL_MUTEX_INIT Modules/_xxinterpchannelsmodule.c 258;" d file: +ERR_CHANNEL_NOT_EMPTY Modules/_xxinterpchannelsmodule.c 257;" d file: +ERR_CHANNEL_NOT_FOUND Modules/_xxinterpchannelsmodule.c 253;" d file: +ERR_NO_NEXT_CHANNEL_ID Modules/_xxinterpchannelsmodule.c 260;" d file: +ESC Lib/curses/ascii.py /^ESC = 0x1b # ^[$/;" v +ESC Modules/cjkcodecs/_codecs_iso2022.c 56;" d file: +ESCAPE Lib/json/encoder.py /^ESCAPE = re.compile(r'[\\x00-\\x1f\\\\"\\b\\f\\n\\r\\t]')$/;" v +ESCAPED_CHAR Modules/_csv.c /^ START_RECORD, START_FIELD, ESCAPED_CHAR, IN_FIELD,$/;" e enum:__anon621 file: +ESCAPED_CHAR_RE Lib/http/cookiejar.py /^ESCAPED_CHAR_RE = re.compile(r"%([0-9a-fA-F][0-9a-fA-F])")$/;" v +ESCAPES Lib/re/_parser.py /^ESCAPES = {$/;" v +ESCAPE_ASCII Lib/json/encoder.py /^ESCAPE_ASCII = re.compile(r'([\\\\"]|[^\\ -~])')$/;" v +ESCAPE_DCT Lib/json/encoder.py /^ESCAPE_DCT = {$/;" v +ESCAPE_IN_QUOTED_FIELD Modules/_csv.c /^ IN_QUOTED_FIELD, ESCAPE_IN_QUOTED_FIELD, QUOTE_IN_QUOTED_FIELD,$/;" e enum:__anon621 file: +ESCMARK Modules/cjkcodecs/_codecs_iso2022.c 82;" d file: +ESHUTDOWN Modules/errnomodule.c 290;" d file: +ESHUTDOWN Objects/exceptions.c 3571;" d file: +ESTRINGS Lib/test/test_quopri.py /^ ESTRINGS = ($/;" v +ET Lib/test/test_xml_etree.py /^ET = None$/;" v +ETB Lib/curses/ascii.py /^ETB = 0x17 # ^W$/;" v +ETIMEDOUT Modules/errnomodule.c 37;" d file: +ETIMEDOUT Objects/exceptions.c 3552;" d file: +ETIMEDOUT Objects/exceptions.c 3574;" d file: +ETSLOT Objects/typeobject.c 9372;" d file: +ETSLOT Objects/typeobject.c 9387;" d file: +ETX Lib/curses/ascii.py /^ETX = 0x03 # ^C$/;" v +EUCKR_JAMO_FILLER Modules/cjkcodecs/_codecs_kr.c 15;" d file: +EUCKR_JAMO_FIRSTBYTE Modules/cjkcodecs/_codecs_kr.c 14;" d file: +EVALFRAME Tools/gdb/libpython.py /^EVALFRAME = '_PyEval_EvalFrameDefault'$/;" v +EVAL_CALL_API Include/pystats.h 22;" d +EVAL_CALL_BUILD_CLASS Include/pystats.h 19;" d +EVAL_CALL_FUNCTION_EX Include/pystats.h 21;" d +EVAL_CALL_FUNCTION_VECTORCALL Include/pystats.h 18;" d +EVAL_CALL_GENERATOR Include/pystats.h 16;" d +EVAL_CALL_KINDS Include/pystats.h 25;" d +EVAL_CALL_LEGACY Include/pystats.h 17;" d +EVAL_CALL_METHOD Include/pystats.h 23;" d +EVAL_CALL_SLOT Include/pystats.h 20;" d +EVAL_CALL_STAT_INC Include/internal/pycore_code.h 265;" d +EVAL_CALL_STAT_INC Include/internal/pycore_code.h 279;" d +EVAL_CALL_STAT_INC_IF_FUNCTION Include/internal/pycore_code.h 266;" d +EVAL_CALL_STAT_INC_IF_FUNCTION Include/internal/pycore_code.h 280;" d +EVAL_CALL_TOTAL Include/pystats.h 14;" d +EVAL_CALL_VECTOR Include/pystats.h 15;" d +EVENTDRIVEN Lib/turtledemo/__main__.py /^EVENTDRIVEN = 5$/;" v +EVENTS Lib/test/test_capi/test_watchers.py /^ EVENTS = 0 # appends dict events as strings to global event list$/;" v class:TestDictWatchers +EVENT_FOR_OPCODE Python/instrumentation.c /^static const int8_t EVENT_FOR_OPCODE[256] = {$/;" v file: +EVENT_NAMES Lib/test/test_sys_settrace.py /^EVENT_NAMES = [$/;" v +EVENT_READ Lib/selectors.py /^EVENT_READ = (1 << 0)$/;" v +EVENT_WRITE Lib/selectors.py /^EVENT_WRITE = (1 << 1)$/;" v +EVPXOF_DIGEST_METHODDEF Modules/clinic/_hashopenssl.c.h 1820;" d +EVPXOF_DIGEST_METHODDEF Modules/clinic/_hashopenssl.c.h 82;" d +EVPXOF_HEXDIGEST_METHODDEF Modules/clinic/_hashopenssl.c.h 152;" d +EVPXOF_HEXDIGEST_METHODDEF Modules/clinic/_hashopenssl.c.h 1824;" d +EVPXOF_digest Modules/clinic/_hashopenssl.c.h /^EVPXOF_digest(EVPobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +EVPXOF_digest_impl Modules/_hashopenssl.c /^EVPXOF_digest_impl(EVPobject *self, Py_ssize_t length)$/;" f file: +EVPXOF_get_digest_size Modules/_hashopenssl.c /^EVPXOF_get_digest_size(EVPobject *self, void *closure)$/;" f file: +EVPXOF_getseters Modules/_hashopenssl.c /^static PyGetSetDef EVPXOF_getseters[] = {$/;" v file: +EVPXOF_hexdigest Modules/clinic/_hashopenssl.c.h /^EVPXOF_hexdigest(EVPobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +EVPXOF_hexdigest_impl Modules/_hashopenssl.c /^EVPXOF_hexdigest_impl(EVPobject *self, Py_ssize_t length)$/;" f file: +EVPXOF_methods Modules/_hashopenssl.c /^static PyMethodDef EVPXOF_methods[] = {$/;" v file: +EVPXOFtype Modules/_hashopenssl.c /^ PyTypeObject *EVPXOFtype;$/;" m struct:__anon561 file: +EVPXOFtype_slots Modules/_hashopenssl.c /^static PyType_Slot EVPXOFtype_slots[] = {$/;" v file: +EVPXOFtype_spec Modules/_hashopenssl.c /^static PyType_Spec EVPXOFtype_spec = {$/;" v file: +EVP_CIPHER Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_CIPHER = evp_cipher_st$/;" v +EVP_CIPHER_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_CIPHER_CTX = evp_cipher_ctx_st$/;" v +EVP_CIPHER_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_CIPHER_INFO = evp_cipher_info_st$/;" v +EVP_COPY_METHODDEF Modules/clinic/_hashopenssl.c.h 17;" d +EVP_DIGEST_METHODDEF Modules/clinic/_hashopenssl.c.h 35;" d +EVP_ENCODE_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_ENCODE_CTX = evp_Encode_Ctx_st$/;" v +EVP_HEXDIGEST_METHODDEF Modules/clinic/_hashopenssl.c.h 53;" d +EVP_MD Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_MD = env_md_st$/;" v +EVP_MD_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_MD_CTX = env_md_ctx_st$/;" v +EVP_NEW_METHODDEF Modules/clinic/_hashopenssl.c.h 225;" d +EVP_PBE_KEYGEN Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_PBE_KEYGEN = CFUNCTYPE(c_int, POINTER(EVP_CIPHER_CTX), STRING, c_int, POINTER(ASN1_TYPE), POINTER(EVP_CIPHER), POINTER(EVP_MD), c_int)$/;" v +EVP_PKEY Lib/test/test_lib2to3/data/infinite_recursion.py /^EVP_PKEY = evp_pkey_st$/;" v +EVP_UPDATE_METHODDEF Modules/clinic/_hashopenssl.c.h 71;" d +EVP_copy Modules/clinic/_hashopenssl.c.h /^EVP_copy(EVPobject *self, PyObject *Py_UNUSED(ignored))$/;" f +EVP_copy_impl Modules/_hashopenssl.c /^EVP_copy_impl(EVPobject *self)$/;" f file: +EVP_dealloc Modules/_hashopenssl.c /^EVP_dealloc(EVPobject *self)$/;" f file: +EVP_digest Modules/clinic/_hashopenssl.c.h /^EVP_digest(EVPobject *self, PyObject *Py_UNUSED(ignored))$/;" f +EVP_digest_impl Modules/_hashopenssl.c /^EVP_digest_impl(EVPobject *self)$/;" f file: +EVP_functions Modules/_hashopenssl.c /^static struct PyMethodDef EVP_functions[] = {$/;" v typeref:struct:PyMethodDef file: +EVP_get_block_size Modules/_hashopenssl.c /^EVP_get_block_size(EVPobject *self, void *closure)$/;" f file: +EVP_get_digest_size Modules/_hashopenssl.c /^EVP_get_digest_size(EVPobject *self, void *closure)$/;" f file: +EVP_get_name Modules/_hashopenssl.c /^EVP_get_name(EVPobject *self, void *closure)$/;" f file: +EVP_getseters Modules/_hashopenssl.c /^static PyGetSetDef EVP_getseters[] = {$/;" v file: +EVP_hash Modules/_hashopenssl.c /^EVP_hash(EVPobject *self, const void *vp, Py_ssize_t len)$/;" f file: +EVP_hexdigest Modules/clinic/_hashopenssl.c.h /^EVP_hexdigest(EVPobject *self, PyObject *Py_UNUSED(ignored))$/;" f +EVP_hexdigest_impl Modules/_hashopenssl.c /^EVP_hexdigest_impl(EVPobject *self)$/;" f file: +EVP_methods Modules/_hashopenssl.c /^static PyMethodDef EVP_methods[] = {$/;" v file: +EVP_new Modules/clinic/_hashopenssl.c.h /^EVP_new(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +EVP_new_impl Modules/_hashopenssl.c /^EVP_new_impl(PyObject *module, PyObject *name_obj, PyObject *data_obj,$/;" f file: +EVP_repr Modules/_hashopenssl.c /^EVP_repr(EVPobject *self)$/;" f file: +EVP_update Modules/_hashopenssl.c /^EVP_update(EVPobject *self, PyObject *obj)$/;" f file: +EVPobject Modules/_hashopenssl.c /^} EVPobject;$/;" t typeref:struct:__anon562 file: +EVPtype Modules/_hashopenssl.c /^ PyTypeObject *EVPtype;$/;" m struct:__anon561 file: +EVPtype_slots Modules/_hashopenssl.c /^static PyType_Slot EVPtype_slots[] = {$/;" v file: +EVPtype_spec Modules/_hashopenssl.c /^static PyType_Spec EVPtype_spec = {$/;" v file: +EW Lib/tkinter/constants.py /^EW='ew'$/;" v +EWOULDBLOCK Lib/socket.py /^EWOULDBLOCK = getattr(errno, 'EWOULDBLOCK', 11)$/;" v +EWOULDBLOCK Modules/errnomodule.c 38;" d file: +EWOULDBLOCK Objects/exceptions.c 3553;" d file: +EWOULDBLOCK Objects/exceptions.c 3577;" d file: +EWWhiteSpaceTerminal Lib/email/_header_value_parser.py /^class EWWhiteSpaceTerminal(WhiteSpaceTerminal):$/;" c +EXACT_TOKENS Tools/peg_generator/pegen/testutil.py /^EXACT_TOKENS = token.EXACT_TOKEN_TYPES$/;" v +EXACT_TOKEN_TYPES Lib/token.py /^EXACT_TOKEN_TYPES = {$/;" v +EXCEEDS_RECURSION_LIMIT Lib/test/support/__init__.py /^EXCEEDS_RECURSION_LIMIT = 5000$/;" v +EXCEPTION Lib/tkinter/__init__.py /^EXCEPTION = _tkinter.EXCEPTION$/;" v +EXCEPTION_FUTURE Lib/test/test_concurrent_futures/util.py /^EXCEPTION_FUTURE = create_future(state=FINISHED, exception=OSError())$/;" v +EXCEPTION_GROUP_HANDLER Python/compile.c /^ EXCEPTION_GROUP_HANDLER, ASYNC_COMPREHENSION_GENERATOR };$/;" e enum:fblocktype file: +EXCEPTION_GROUP_MATCH_BY_PREDICATE Objects/exceptions.c /^ EXCEPTION_GROUP_MATCH_BY_PREDICATE = 1,$/;" e enum:__anon734 file: +EXCEPTION_GROUP_MATCH_BY_TYPE Objects/exceptions.c /^ EXCEPTION_GROUP_MATCH_BY_TYPE = 0,$/;" e enum:__anon734 file: +EXCEPTION_GROUP_MATCH_INSTANCE_IDS Objects/exceptions.c /^ EXCEPTION_GROUP_MATCH_INSTANCE_IDS = 2$/;" e enum:__anon734 file: +EXCEPTION_GROUP_TB_HEADER Include/internal/pycore_traceback.h 88;" d +EXCEPTION_HANDLER Python/compile.c /^ WITH, ASYNC_WITH, HANDLER_CLEANUP, POP_VALUE, EXCEPTION_HANDLER,$/;" e enum:fblocktype file: +EXCEPTION_TB_HEADER Include/internal/pycore_traceback.h 87;" d +EXCEPT_EVENTS Lib/test/test_monitoring.py /^EXCEPT_EVENTS = [$/;" v +EXCLAMATION Include/internal/pycore_token.h 70;" d +EXCLAMATION Lib/token.py /^EXCLAMATION = 54$/;" v +EXCLUDED_ATTRIBUTES Lib/typing.py /^EXCLUDED_ATTRIBUTES = _TYPING_INTERNALS | _SPECIAL_NAMES | {'_MutableMapping__marker'}$/;" v +EXCLUDED_HEADERS Tools/build/stable_abi.py /^EXCLUDED_HEADERS = {$/;" v +EXCLUDE_DIRS Tools/patchcheck/patchcheck.py /^EXCLUDE_DIRS = [$/;" v +EXCLUDE_FILES Doc/tools/check-warnings.py /^EXCLUDE_FILES = {$/;" v +EXCLUDE_FROM_CATALOG PC/layout/main.py /^EXCLUDE_FROM_CATALOG = FileSuffixSet(".exe", ".pyd", ".dll")$/;" v +EXCLUDE_FROM_COMPILE PC/layout/main.py /^EXCLUDE_FROM_COMPILE = FileNameSet("badsyntax_*", "bad_*")$/;" v +EXCLUDE_FROM_LIB PC/layout/main.py /^EXCLUDE_FROM_LIB = FileNameSet("*.pyc", "__pycache__", "*.pickle")$/;" v +EXCLUDE_FROM_PACKAGED_LIB PC/layout/main.py /^EXCLUDE_FROM_PACKAGED_LIB = FileNameSet("readme.txt")$/;" v +EXCLUDE_FROM_PYDS PC/layout/main.py /^EXCLUDE_FROM_PYDS = FileStemSet("python*", "pyshellext", "vcruntime*")$/;" v +EXCLUDE_SUBDIRS Doc/tools/check-warnings.py /^EXCLUDE_SUBDIRS = {$/;" v +EXC_INDENT Python/pythonrun.c 865;" d file: +EXC_MARGIN Python/pythonrun.c 864;" d file: +EXE Tools/msi/testrelease.bat /^@set EXE=%~1$/;" v +EXECUTABLEPATH_VALUE PC/launcher.c 159;" d file: +EXECUTABLEPATH_VALUE PC/launcher.c 164;" d file: +EXECV_CHAR Modules/posixmodule.c 6373;" d file: +EXECV_CHAR Modules/posixmodule.c 6375;" d file: +EXEC_PREFIX Lib/test/test_getpath.py /^ EXEC_PREFIX="",$/;" v class:MockGetPathTests +EXE_SUFFIX Lib/test/test_getpath.py /^ EXE_SUFFIX=None,$/;" v class:MockGetPathTests +EXE_SUFFIX Modules/getpath.c 48;" d file: +EXE_SUFFIX Modules/getpath.c 50;" d file: +EXITCODE Lib/test/test_asyncio/test_unix_events.py /^def EXITCODE(exitcode):$/;" f +EXITCODE Tools/msi/testrelease.bat /^@set EXITCODE=%ERRORLEVEL%$/;" v +EXITCODE Tools/msi/testrelease.bat /^@set EXITCODE=0$/;" v +EXITCODE_BAD_TEST Lib/test/libregrtest/main.py /^EXITCODE_BAD_TEST = 2$/;" v +EXITCODE_BAD_TEST Lib/test/test_regrtest.py /^EXITCODE_BAD_TEST = 2$/;" v +EXITCODE_ENV_CHANGED Lib/test/libregrtest/main.py /^EXITCODE_ENV_CHANGED = 3$/;" v +EXITCODE_ENV_CHANGED Lib/test/test_regrtest.py /^EXITCODE_ENV_CHANGED = 3$/;" v +EXITCODE_INTERRUPTED Lib/test/libregrtest/main.py /^EXITCODE_INTERRUPTED = 130$/;" v +EXITCODE_INTERRUPTED Lib/test/test_regrtest.py /^EXITCODE_INTERRUPTED = 130$/;" v +EXITCODE_NO_TESTS_RAN Lib/test/libregrtest/main.py /^EXITCODE_NO_TESTS_RAN = 4$/;" v +EXITCODE_NO_TESTS_RAN Lib/test/test_regrtest.py /^EXITCODE_NO_TESTS_RAN = 4$/;" v +EXITCODE_RERUN_FAIL Lib/test/libregrtest/main.py /^EXITCODE_RERUN_FAIL = 5$/;" v +EXITCODE_RERUN_FAIL Lib/test/test_regrtest.py /^EXITCODE_RERUN_FAIL = 5$/;" v +EXITED Lib/asyncio/timeouts.py /^ EXITED = "finished"$/;" v class:_State +EXIT_STATUS Modules/_decimal/tests/deccheck.py /^EXIT_STATUS = 0$/;" v +EXIT_TIMEOUT Lib/test/libregrtest/main.py /^EXIT_TIMEOUT = 120.0$/;" v +EXOPL Lib/telnetlib.py /^EXOPL = bytes([255]) # Extended-Options-List$/;" v +EXP2_DBL_MANT_DIG Objects/longobject.c 3089;" d file: +EXP2_DBL_MANT_DIG Objects/longobject.c 3091;" d file: +EXPAND_BITFIELD Modules/_ctypes/cfield.c 62;" d file: +EXPAND_SPARE Modules/expat/xmlparse.c 246;" d file: +EXPAT Modules/_elementtree.c 3040;" d file: +EXPAT_BILLION_LAUGHS_ATTACK_PROTECTION_ACTIVATION_THRESHOLD_DEFAULT Modules/expat/internal.h 144;" d +EXPAT_BILLION_LAUGHS_ATTACK_PROTECTION_MAXIMUM_AMPLIFICATION_DEFAULT Modules/expat/internal.h 142;" d +EXPAT_CONFIG_H Modules/expat/expat_config.h 6;" d +EXPAT_FMT_PTRDIFF_T Modules/expat/internal.h 115;" d +EXPAT_FMT_PTRDIFF_T Modules/expat/internal.h 118;" d +EXPAT_FMT_PTRDIFF_T Modules/expat/internal.h 126;" d +EXPAT_FMT_PTRDIFF_T Modules/expat/internal.h 129;" d +EXPAT_FMT_SIZE_T Modules/expat/internal.h 116;" d +EXPAT_FMT_SIZE_T Modules/expat/internal.h 119;" d +EXPAT_FMT_SIZE_T Modules/expat/internal.h 127;" d +EXPAT_FMT_SIZE_T Modules/expat/internal.h 130;" d +EXPAT_FMT_ULL Modules/expat/internal.h 113;" d +EXPAT_FMT_ULL Modules/expat/internal.h 122;" d +EXPAT_SAFE_PTR_DIFF Modules/expat/xmlparse.c 197;" d file: +EXPECTATION_FAILED Lib/http/__init__.py /^ EXPECTATION_FAILED = (417, 'Expectation Failed',$/;" v class:HTTPStatus +EXPECTATION_FAILED Lib/test/test_httplib.py /^ EXPECTATION_FAILED = (417, 'Expectation Failed',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +EXPECTED_CODE Lib/test/test_runpy.py /^ EXPECTED_CODE = ($/;" v class:TestExit +EXPECTED_CONFIG Lib/test/test_embed.py /^ EXPECTED_CONFIG = None$/;" v class:InitConfigTests +EXPECTED_C_LOCALE_EQUIVALENTS Lib/test/test_c_locale_coercion.py /^EXPECTED_C_LOCALE_EQUIVALENTS = ["C", "invalid.ascii"]$/;" v +EXPECTED_C_LOCALE_FS_ENCODING Lib/test/test_c_locale_coercion.py /^ EXPECTED_C_LOCALE_FS_ENCODING = "utf-8"$/;" v +EXPECTED_C_LOCALE_FS_ENCODING Lib/test/test_c_locale_coercion.py /^ EXPECTED_C_LOCALE_FS_ENCODING = "iso8859-1"$/;" v +EXPECTED_C_LOCALE_FS_ENCODING Lib/test/test_c_locale_coercion.py /^ EXPECTED_C_LOCALE_FS_ENCODING = "utf-8"$/;" v +EXPECTED_C_LOCALE_FS_ENCODING Lib/test/test_c_locale_coercion.py /^EXPECTED_C_LOCALE_FS_ENCODING = "ascii"$/;" v +EXPECTED_C_LOCALE_STREAM_ENCODING Lib/test/test_c_locale_coercion.py /^ EXPECTED_C_LOCALE_STREAM_ENCODING = "utf-8"$/;" v +EXPECTED_C_LOCALE_STREAM_ENCODING Lib/test/test_c_locale_coercion.py /^ EXPECTED_C_LOCALE_STREAM_ENCODING = "iso8859-1"$/;" v +EXPECTED_C_LOCALE_STREAM_ENCODING Lib/test/test_c_locale_coercion.py /^ EXPECTED_C_LOCALE_STREAM_ENCODING = "utf-8"$/;" v +EXPECTED_C_LOCALE_STREAM_ENCODING Lib/test/test_c_locale_coercion.py /^EXPECTED_C_LOCALE_STREAM_ENCODING = "ascii"$/;" v +EXPECTED_FEATURE_MACROS Lib/test/test_stable_abi_ctypes.py /^EXPECTED_FEATURE_MACROS = set(['HAVE_FORK',$/;" v +EXPECTED_INVALID_MESSAGE Lib/test/test_argparse.py /^ EXPECTED_INVALID_MESSAGE = "invalid nargs value"$/;" v class:TestInvalidNargs +EXPECTED_MESSAGE Lib/test/test_argparse.py /^ EXPECTED_MESSAGE = "length of metavar tuple does not match nargs"$/;" v class:TestAddArgumentMetavar +EXPECTED_RANGE_MESSAGE Lib/test/test_argparse.py /^ EXPECTED_RANGE_MESSAGE = ("nargs for store actions must be != 0; if you "$/;" v class:TestInvalidNargs +EXPECTED_RESPONSE Lib/test/test_smtplib.py /^EXPECTED_RESPONSE = encode_base64(b'\\0psu\\0doesnotexist', eol='')$/;" v +EXPECTED_SHARED_LIBS Mac/BuildScript/build-installer.py /^EXPECTED_SHARED_LIBS = {}$/;" v +EXPECTED_VERSION_OUTPUT Lib/test/test_ensurepip.py /^EXPECTED_VERSION_OUTPUT = "pip " + ensurepip.version()$/;" v +EXPECT_COERCION_IN_DEFAULT_LOCALE Lib/test/test_c_locale_coercion.py /^ EXPECT_COERCION_IN_DEFAULT_LOCALE = False$/;" v +EXPECT_COERCION_IN_DEFAULT_LOCALE Lib/test/test_c_locale_coercion.py /^EXPECT_COERCION_IN_DEFAULT_LOCALE = True$/;" v +EXPIRED Lib/asyncio/timeouts.py /^ EXPIRED = "expired"$/;" v class:_State +EXPIRING Lib/asyncio/timeouts.py /^ EXPIRING = "expiring"$/;" v class:_State +EXPLICIT_NEST Lib/tomllib/_parser.py /^ EXPLICIT_NEST = 1$/;" v class:Flags +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT (HRESULT) KeepObject(IUnknown *punk)$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(RECT) ReturnRect(int i, RECT ar, RECT* br, POINT cp, RECT dr,$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(S2H) __stdcall s_ret_2h_func(S2H inp) { return ret_2h_func(inp); }$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(S2H) ret_2h_func(S2H inp)$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(S8I) __stdcall s_ret_8i_func(S8I inp) { return ret_8i_func(inp); }$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(S8I) ret_8i_func(S8I inp)$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size1) TestSize1() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size10) TestSize10() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size2) TestSize2() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size3) TestSize3() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size4) TestSize4() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size5) TestSize5() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size6) TestSize6() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size7) TestSize7() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size8) TestSize8() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(Size9) TestSize9() {$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(size_t) my_wcslen(wchar_t *src)$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c /^EXPORT(xxx_library) *library_get(void)$/;" f +EXPORT Modules/_ctypes/_ctypes_test.c 9;" d file: +EXPORT_DATA PC/python3dll.c 13;" d file: +EXPORT_FUNC PC/python3dll.c 11;" d file: +EXPORT_RESTRICTION Lib/ssl.py /^ EXPORT_RESTRICTION = 60$/;" v class:_TLSAlertType +EXPORT_RESTRICTION Lib/test/test_ssl.py /^ EXPORT_RESTRICTION = 60$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +EXPORT_TYPE Modules/_typingmodule.c 49;" d file: +EXPORT_TYPE Modules/_typingmodule.c 61;" d file: +EXPR Lib/ast.py /^ EXPR = auto()$/;" v class:_Precedence +EXPR Lib/test/test_ast.py /^ EXPR = enum.auto()$/;" v class:AST_Tests.test_precedence_enum._Precedence +EXP_TABLE_LEN Objects/longobject.c 84;" d file: +EXP_WINDOW_SIZE Objects/longobject.c 83;" d file: +EXT1 Lib/pickle.py /^EXT1 = b'\\x82' # push object from extension registry; 1-byte index$/;" v +EXT1 Modules/_pickle.c /^ EXT1 = '\\x82',$/;" e enum:opcode file: +EXT2 Lib/pickle.py /^EXT2 = b'\\x83' # ditto, but 2-byte index$/;" v +EXT2 Modules/_pickle.c /^ EXT2 = '\\x83',$/;" e enum:opcode file: +EXT4 Lib/pickle.py /^EXT4 = b'\\x84' # ditto, but 4-byte index$/;" v +EXT4 Modules/_pickle.c /^ EXT4 = '\\x84',$/;" e enum:opcode file: +EXTENDED Lib/tkinter/constants.py /^EXTENDED='extended'$/;" v +EXTENDEDERRORTEST Lib/test/test_decimal.py /^EXTENDEDERRORTEST = False$/;" v +EXTENDED_ARG Include/opcode.h 102;" d +EXTENDED_ARG Lib/opcode.py /^EXTENDED_ARG = 144$/;" v +EXTENDED_ATTRIBUTE_ENDS Lib/email/_header_value_parser.py /^EXTENDED_ATTRIBUTE_ENDS = ATTRIBUTE_ENDS - set('%')$/;" v +EXTENDED_CASE_MASK Objects/unicodectype.c 25;" d file: +EXTENDED_CASE_MASK Tools/unicode/makeunicodedata.py /^EXTENDED_CASE_MASK = 0x4000$/;" v +EXTENSION Lib/test/test_dtrace.py /^ EXTENSION = ".d"$/;" v class:DTraceBackend +EXTENSION Lib/test/test_dtrace.py /^ EXTENSION = ".stp"$/;" v class:SystemTapBackend +EXTENSION Lib/test/test_dtrace.py /^ EXTENSION = None$/;" v class:TraceBackend +EXTENSIONS Lib/test/test_importlib/util.py /^EXTENSIONS = types.SimpleNamespace()$/;" v +EXTENSIONS Python/import.c 59;" d file: +EXTENSION_SUFFIXES Lib/importlib/_bootstrap_external.py /^EXTENSION_SUFFIXES = _imp.extension_suffixes()$/;" v +EXTERNALS Tools/msi/buildrelease.bat /^set EXTERNALS=%D%..\\..\\externals\\windows-installer\\$/;" v +EXTERNALS_DIR PCbuild/get_externals.bat /^if NOT DEFINED EXTERNALS_DIR (set EXTERNALS_DIR=%PCBUILD%\\..\\externals)$/;" v +EXTERNALS_DIR PCbuild/prepare_ssl.bat /^if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\\..\\externals)$/;" v +EXTERNALS_DIR PCbuild/prepare_tcltk.bat /^if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\\..\\externals)$/;" v +EXTERNALS_DIR Tools/msi/get_externals.bat /^if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%HERE%..\\..\\externals\\windows-installer)$/;" v +EXTERN_JISX0213_PAIR Modules/cjkcodecs/_codecs_iso2022.c 9;" d file: +EXTINLINE Modules/_decimal/libmpdec/mpdecimal.h 67;" d +EXTINLINE Modules/_decimal/libmpdec/mpdecimal.h 69;" d +EXTRA Parser/pegen.h 255;" d +EXTRACT_DIGIT Modules/_decimal/libmpdec/io.c 347;" d file: +EXTRA_CASES Include/internal/pycore_opcode.h 518;" d +EXTRA_COLUMNS Tools/c-analyzer/c_analyzer/datafiles.py /^EXTRA_COLUMNS = [$/;" v +EXTRA_EXPR Parser/pegen.h 254;" d +EXTRA_FUNCTIONALITY Lib/test/test_decimal.py /^EXTRA_FUNCTIONALITY = True if hasattr(C, 'DecClamped') else False$/;" v +EXTRA_KEYWORDS Tools/peg_generator/pegen/keywordgen.py /^EXTRA_KEYWORDS = ["async", "await"]$/;" v +EXTRA_QUEUED_CALLS Lib/concurrent/futures/process.py /^EXTRA_QUEUED_CALLS = 1$/;" v +EX_OK Modules/posixmodule.c 49;" d file: +E_BADSINGLE Include/errcode.h 32;" d +E_DECODE Include/errcode.h 28;" d +E_DEDENT Include/errcode.h 27;" d +E_DONE Include/errcode.h 22;" d +E_EOF Include/errcode.h 17;" d +E_EOFS Include/errcode.h 29;" d +E_EOLS Include/errcode.h 30;" d +E_ERROR Include/errcode.h 23;" d +E_INTERACT_STOP Include/errcode.h 33;" d +E_INTR Include/errcode.h 18;" d +E_LINECONT Include/errcode.h 31;" d +E_NOMEM Include/errcode.h 21;" d +E_OK Include/errcode.h 16;" d +E_OVERFLOW Include/errcode.h 25;" d +E_SYNTAX Include/errcode.h 20;" d +E_TABSPACE Include/errcode.h 24;" d +E_TOKEN Include/errcode.h 19;" d +E_TOODEEP Include/errcode.h 26;" d +EagerCTaskTests Lib/test/test_asyncio/test_eager_task_factory.py /^class EagerCTaskTests(BaseEagerTaskFactoryTests, test_utils.TestCase):$/;" c +EagerPyTaskTests Lib/test/test_asyncio/test_eager_task_factory.py /^class EagerPyTaskTests(BaseEagerTaskFactoryTests, test_utils.TestCase):$/;" c +EagerTaskFactoryLoopTests Lib/test/test_asyncio/test_eager_task_factory.py /^class EagerTaskFactoryLoopTests:$/;" c +EagerTests Lib/test/test_asyncio/test_eager_task_factory.py /^class EagerTests(BaseEagerTaskFactoryTests, test_utils.TestCase):$/;" c +Eastern Doc/includes/tzinfo_examples.py /^Eastern = USTimeZone(-5, "Eastern", "EST", "EDT")$/;" v +Eastern Lib/test/datetimetester.py /^Eastern = USTimeZone(-5, "Eastern", "EST", "EDT")$/;" v +Eastern2 Lib/test/datetimetester.py /^Eastern2 = USTimeZone2(-5, "Eastern2", "EST", "EDT")$/;" v +Ebits Python/dtoa.c 249;" d file: +EchoServer Lib/test/test_ssl.py /^ class EchoServer (asyncore.dispatcher):$/;" c class:AsyncoreEchoServer +EchoTarget Lib/test/test_xml_etree.py /^ class EchoTarget:$/;" c function:BugsTest.test_bug_200708_close +Edge Lib/webbrowser.py /^class Edge(UnixBrowser):$/;" c +EdgeCommandTest Lib/test/test_webbrowser.py /^class EdgeCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +Edgy Lib/test/datetimetester.py /^ class Edgy(tzinfo):$/;" c function:TZInfoBase.test_utc_offset_out_of_bounds +EditablePane Lib/test/test_descr.py /^ class EditablePane(Pane,EditingMixin): pass$/;" c function:ClassPropertiesAndMethods.test_consistency_with_epg +EditableScrollablePane Lib/test/test_descr.py /^ class EditableScrollablePane(ScrollablePane,EditablePane): pass$/;" c function:ClassPropertiesAndMethods.test_consistency_with_epg +EditingMixin Lib/test/test_descr.py /^ class EditingMixin(object): pass$/;" c function:ClassPropertiesAndMethods.test_consistency_with_epg +Editor Lib/idlelib/idle_test/mock_idle.py /^class Editor:$/;" c +Editor Lib/idlelib/idle_test/test_editor.py /^Editor = editor.EditorWindow$/;" v +Editor Lib/idlelib/idle_test/test_format.py /^class Editor:$/;" c +EditorWindow Lib/idlelib/editor.py /^class EditorWindow:$/;" c +EditorWindow Lib/idlelib/pyshell.py /^ EditorWindow = PyShellEditorWindow$/;" v class:PyShellFileList +EditorWindowTest Lib/idlelib/idle_test/test_editor.py /^class EditorWindowTest(unittest.TestCase):$/;" c +EggInfoFile Lib/test/test_importlib/fixtures.py /^class EggInfoFile(OnSysPath, SiteDir):$/;" c +EggInfoPkg Lib/test/test_importlib/fixtures.py /^class EggInfoPkg(OnSysPath, SiteDir):$/;" c +EggInfoPkgPipInstalledNoModules Lib/test/test_importlib/fixtures.py /^class EggInfoPkgPipInstalledNoModules(OnSysPath, SiteDir):$/;" c +EggInfoPkgPipInstalledNoToplevel Lib/test/test_importlib/fixtures.py /^class EggInfoPkgPipInstalledNoToplevel(OnSysPath, SiteDir):$/;" c +EggInfoPkgSourcesFallback Lib/test/test_importlib/fixtures.py /^class EggInfoPkgSourcesFallback(OnSysPath, SiteDir):$/;" c +Eggs Lib/test/test_bool.py /^ class Eggs:$/;" c function:BoolTest.test_convert_to_bool +Eggs Lib/test/test_typing.py /^ class Eggs: ...$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_2 +Eggs Lib/test/test_typing.py /^ class Eggs:$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance +Eggs Lib/test/test_typing.py /^ class Eggs:$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_3 +Eggs Lib/test/test_typing.py /^ class Eggs[T]:$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_pep695 +Elem Lib/test/test_typing.py /^ def Elem(*args):$/;" f function:UnionTests.test_etree +Element Lib/xml/dom/minidom.py /^class Element(Node):$/;" c +Element Lib/xml/etree/ElementTree.py /^class Element:$/;" c +ElementDecl Modules/pyexpat.c /^ ElementDecl,$/;" e enum:HandlerTypes file: +ElementDeclHandler Lib/test/test_pyexpat.py /^ def ElementDeclHandler(self, *args):$/;" m class:ParseTest.Outputter +ElementFindTest Lib/test/test_xml_etree.py /^class ElementFindTest(unittest.TestCase):$/;" c +ElementInfo Lib/xml/dom/expatbuilder.py /^class ElementInfo(object):$/;" c +ElementInfo Lib/xml/dom/minidom.py /^class ElementInfo(object):$/;" c +ElementIterObject Modules/_elementtree.c /^} ElementIterObject;$/;" t typeref:struct:__anon384 file: +ElementIterTest Lib/test/test_xml_etree.py /^class ElementIterTest(unittest.TestCase):$/;" c +ElementIter_Type Modules/_elementtree.c /^ PyTypeObject *ElementIter_Type;$/;" m struct:__anon381 file: +ElementObject Modules/_elementtree.c /^} ElementObject;$/;" t typeref:struct:__anon383 file: +ElementObjectExtra Modules/_elementtree.c /^} ElementObjectExtra;$/;" t typeref:struct:__anon382 file: +ElementSlicingTest Lib/test/test_xml_etree.py /^class ElementSlicingTest(unittest.TestCase):$/;" c +ElementTestCase Lib/test/test_xml_etree.py /^class ElementTestCase:$/;" c +ElementTree Lib/xml/etree/ElementTree.py /^class ElementTree:$/;" c +ElementTreeTest Lib/test/test_xml_etree.py /^class ElementTreeTest(unittest.TestCase):$/;" c +ElementTreeTypeTest Lib/test/test_xml_etree.py /^class ElementTreeTypeTest(unittest.TestCase):$/;" c +Element_Check Modules/_elementtree.c 253;" d file: +Element_CheckExact Modules/_elementtree.c 252;" d file: +Element_Type Modules/_elementtree.c /^ PyTypeObject *Element_Type;$/;" m struct:__anon381 file: +Elimination Lib/test/test_traceback.py /^ class Elimination:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions +Elimination Lib/test/test_traceback.py /^ def Elimination():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions +EliminationOverAddition Lib/test/test_traceback.py /^ class EliminationOverAddition:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions +EliminationOverAddition Lib/test/test_traceback.py /^ def EliminationOverAddition():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions +Elinks Lib/webbrowser.py /^class Elinks(UnixBrowser):$/;" c +Ellipsis Lib/ast.py /^class Ellipsis(Constant, metaclass=_ABC):$/;" c +EllipsisType Lib/_collections_abc.py /^EllipsisType = type(...)$/;" v +EllipsisType Lib/types.py /^EllipsisType = type(Ellipsis)$/;" v +EmailMessage Lib/email/message.py /^class EmailMessage(MIMEPart):$/;" c +EmailPolicy Lib/email/policy.py /^class EmailPolicy(Policy):$/;" c +Emax Lib/_pydecimal.py /^ Emax=999999,$/;" v +Emax Modules/_decimal/tests/deccheck.py /^ Emax = property(getemax, setemax)$/;" v class:Context +Emax Modules/_decimal/tests/deccheck.py /^ Emax=C.MAX_EMAX,$/;" v +Emax Python/dtoa.c 244;" d file: +EmbeddingTests Lib/test/test_embed.py /^class EmbeddingTests(EmbeddingTestsMixin, unittest.TestCase):$/;" c +EmbeddingTestsMixin Lib/test/test_embed.py /^class EmbeddingTestsMixin:$/;" c +Emin Lib/_pydecimal.py /^ Emin=-999999,$/;" v +Emin Modules/_decimal/tests/deccheck.py /^ Emin = property(getemin, setemin)$/;" v class:Context +Emin Modules/_decimal/tests/deccheck.py /^ Emin=C.MIN_EMIN,$/;" v +Emin Python/dtoa.c 245;" d file: +EmitVisitor Parser/asdl_c.py /^class EmitVisitor(asdl.VisitorBase):$/;" c +Employee Lib/test/test_typing.py /^class Employee:$/;" c +Empty Lib/queue.py /^ class Empty(Exception):$/;" c +Empty Lib/test/test_class.py /^ class Empty: pass$/;" c function:ClassTests.testListAndDictOps +Empty Lib/test/test_compare.py /^ class Empty:$/;" c class:ComparisonSimpleTest +Empty Lib/test/test_enum.py /^ class Empty(self.enum_type):$/;" c function:_EnumTests.test_bool_is_true +Empty Lib/test/test_inspect.py /^ class Empty(object):$/;" c function:TestClassesAndFunctions.test_getmembers_descriptors.pred_wrapper +Empty Lib/test/test_typing.py /^ class Empty(Protocol):$/;" c function:ProtocolTests.test_everything_implements_empty_protocol +Empty Lib/test/test_typing.py /^ class Empty: ...$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +Empty Lib/test/test_typing.py /^ class Empty: pass$/;" c function:ProtocolTests.test_custom_subclasshook_2 +Empty Lib/test/test_unittest/test_program.py /^ class Empty(unittest.TestCase):$/;" c class:Test_TestProgram +EmptyArray Lib/test/test_ctypes/test_arrays.py /^ class EmptyArray(Array):$/;" c function:ArrayTestCase.test_empty_element_array +EmptyError Modules/_queuemodule.c /^ PyObject *EmptyError;$/;" m struct:__anon291 file: +EmptyFile Lib/test/test_linecache.py /^class EmptyFile(GetLineTestsGoodData, unittest.TestCase):$/;" c +EmptyFileTest Lib/test/test_robotparser.py /^class EmptyFileTest(BaseRequestRateTest, unittest.TestCase):$/;" c +EmptyHeaderError Lib/tarfile.py /^class EmptyHeaderError(HeaderError):$/;" c +EmptyIterClass Lib/test/test_iter.py /^class EmptyIterClass:$/;" c +EmptyNodeList Lib/xml/dom/minicompat.py /^class EmptyNodeList(tuple):$/;" c +EmptyNodeListTestCase Lib/test/test_xml_dom_minicompat.py /^class EmptyNodeListTestCase(unittest.TestCase):$/;" c +EmptyProtocol Lib/test/test_typing.py /^ class EmptyProtocol(Protocol): ...$/;" c function:ProtocolTests.test_empty_protocol_decorated_with_final +EmptyProtocol Lib/test/test_typing.py /^ class EmptyProtocol(Protocol): ...$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +EmptyProtocol Lib/test/test_typing.py /^ class EmptyProtocol(Protocol): pass$/;" c function:ProtocolTests.test_issubclass_and_isinstance_on_Protocol_itself +EmptyQueryStringTest Lib/test/test_robotparser.py /^class EmptyQueryStringTest(BaseRobotTest, unittest.TestCase):$/;" c +EmptyStruct Lib/test/test_ctypes/test_arrays.py /^ class EmptyStruct(Structure):$/;" c function:ArrayTestCase.test_empty_element_struct +EmptyStruct Lib/test/test_ctypes/test_pep3118.py /^class EmptyStruct(Structure):$/;" c +EmptyStruct Lib/test/test_io.py /^ class EmptyStruct(ctypes.Structure):$/;" c +EmptyTest Lib/test/test_unittest/test_runner.py /^ class EmptyTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_run_empty_suite_error_message +EmptyTrait Lib/test/test_inspect.py /^ class EmptyTrait: pass$/;" c function:TestSignatureObject.test_signature_on_builtin_class +EmscriptenInfoType Python/sysmodule.c /^static PyTypeObject *EmscriptenInfoType;$/;" v file: +EmscriptenTarget Tools/wasm/wasm_build.py /^class EmscriptenTarget(enum.Enum):$/;" c +EnUSCookedTest Lib/test/test_locale.py /^class EnUSCookedTest(BaseCookedTest):$/;" c +EnUSNumberFormatting Lib/test/test_locale.py /^class EnUSNumberFormatting(BaseFormattingTest):$/;" c +EnableEventHook Modules/_tkinter.c /^EnableEventHook(void)$/;" f file: +EnableHandler Lib/test/test_imaplib.py /^ class EnableHandler(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_enable_raises_error_if_not_AUTH +EnableMaxPathSupport Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static void EnableMaxPathSupport() {$/;" f class:PythonBootstrapperApplication file: +EncodeMapWriter Tools/unicode/genmap_support.py /^class EncodeMapWriter:$/;" c +EncodeTestResult Lib/test/libregrtest/runtest_mp.py /^class EncodeTestResult(json.JSONEncoder):$/;" c +EncodedFile Lib/codecs.py /^def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):$/;" f +EncodedFileTest Lib/test/test_codecs.py /^class EncodedFileTest(unittest.TestCase):$/;" c +EncodedMetadataTests Lib/test/test_zipfile/test_core.py /^class EncodedMetadataTests(unittest.TestCase):$/;" c +EncodedWord Lib/email/_header_value_parser.py /^class EncodedWord(TokenList):$/;" c +EncodingDetails Lib/test/test_c_locale_coercion.py /^class EncodingDetails(_EncodingDetails):$/;" c +EncodingMapType Objects/unicodeobject.c /^static PyTypeObject EncodingMapType = {$/;" v file: +EncodingMap_size Objects/clinic/unicodeobject.c.h /^EncodingMap_size(struct encoding_map *self, PyObject *Py_UNUSED(ignored))$/;" f +EncodingMap_size_impl Objects/unicodeobject.c /^EncodingMap_size_impl(struct encoding_map *self)$/;" f file: +EncodingTest Lib/test/test_compileall.py /^class EncodingTest(unittest.TestCase):$/;" c +EncodingTest Lib/test/test_importlib/source/test_source_encoding.py /^class EncodingTest:$/;" c +EncodingTest Lib/test/test_logging.py /^class EncodingTest(BaseTest):$/;" c +EncodingTestPEP302 Lib/test/test_importlib/source/test_source_encoding.py /^class EncodingTestPEP302(EncodingTest):$/;" c +EncodingTestPEP451 Lib/test/test_importlib/source/test_source_encoding.py /^class EncodingTestPEP451(EncodingTest):$/;" c +EndCdataSection Modules/pyexpat.c /^ EndCdataSection,$/;" e enum:HandlerTypes file: +EndCdataSectionHandler Lib/test/test_pyexpat.py /^ def EndCdataSectionHandler(self):$/;" m class:ParseTest.Outputter +EndDoctypeDecl Modules/pyexpat.c /^ EndDoctypeDecl,$/;" e enum:HandlerTypes file: +EndDoctypeDeclHandler Lib/test/test_pyexpat.py /^ def EndDoctypeDeclHandler(self):$/;" m class:ParseTest.Outputter +EndElement Modules/pyexpat.c /^ EndElement,$/;" e enum:HandlerTypes file: +EndElementHandler Lib/test/test_pyexpat.py /^ def EndElementHandler(self, name):$/;" m class:ParseTest.Outputter +EndElementHandler Lib/test/test_pyexpat.py /^ def EndElementHandler(self, name):$/;" m class:BufferTextTest +EndElementHandler Lib/test/test_pyexpat.py /^ def EndElementHandler(self, name):$/;" m class:PositionTest +EndLineDelegator Lib/idlelib/sidebar.py /^class EndLineDelegator(Delegator):$/;" c +EndNamespaceDecl Modules/pyexpat.c /^ EndNamespaceDecl,$/;" e enum:HandlerTypes file: +EndNamespaceDeclHandler Lib/test/test_pyexpat.py /^ def EndNamespaceDeclHandler(self, prefix):$/;" m class:ParseTest.Outputter +EndOfBlock Lib/inspect.py /^class EndOfBlock(Exception): pass$/;" c +EndOfFile Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER EndOfFile;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +EndPositionTests Lib/test/test_ast.py /^class EndPositionTests(unittest.TestCase):$/;" c +EndlessJSONEncoder Lib/test/test_json/test_recursion.py /^ class EndlessJSONEncoder(self.json.JSONEncoder):$/;" c function:TestRecursion.test_endless_recursion +EngineLess Lib/test/test_descr.py /^ class EngineLess(DayBoat): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +EnsurePipTest Lib/test/test_venv.py /^class EnsurePipTest(BaseTest):$/;" c +EnsureTargetDir Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT EnsureTargetDir() {$/;" f class:PythonBootstrapperApplication file: +EnsurepipMixin Lib/test/test_ensurepip.py /^class EnsurepipMixin:$/;" c +Enter Lib/test/test_tkinter/test_misc.py /^ Enter = '7'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Enter Lib/tkinter/__init__.py /^ Enter = '7'$/;" v class:EventType +EnterNonRecursiveMutex Python/thread_nt.h /^EnterNonRecursiveMutex(PNRMUTEX mutex, DWORD milliseconds)$/;" f +EnterRaises Lib/test/test_with.py /^ class EnterRaises(object):$/;" c class:NestedWith +EnterThrows Lib/test/test_with.py /^ class EnterThrows(object):$/;" c function:FailureTestCase.testEnterThrows +Entity Lib/xml/dom/minidom.py /^class Entity(Identified, Node):$/;" c +EntityDecl Modules/pyexpat.c /^ EntityDecl,$/;" e enum:HandlerTypes file: +EntityDeclHandler Lib/test/test_pyexpat.py /^ def EntityDeclHandler(self, *args):$/;" m class:ParseTest.Outputter +EntityResolver Lib/xml/sax/handler.py /^class EntityResolver:$/;" c +Entries Lib/test/test_enum.py /^ class Entries(Foo, Enum):$/;" c function:TestSpecial.test_repr_and_str_with_no_init_mixin +Entries Lib/test/test_enum.py /^ class Entries(Foo, Enum):$/;" c function:TestSpecial.test_repr_with_dataclass +Entries Lib/test/test_enum.py /^ class Entries(Foo, Enum):$/;" c function:TestSpecial.test_repr_with_init_mixin +Entry Lib/idlelib/idle_test/mock_tk.py /^class Entry:$/;" c +Entry Lib/tkinter/__init__.py /^class Entry(Widget, XView):$/;" c +Entry Lib/tkinter/ttk.py /^class Entry(Widget, tkinter.Entry):$/;" c +Entry Lib/urllib/robotparser.py /^class Entry:$/;" c +EntryPoint Lib/importlib/metadata/__init__.py /^class EntryPoint(DeprecatedTuple):$/;" c +EntryPoints Lib/importlib/metadata/__init__.py /^class EntryPoints(tuple):$/;" c +EntryTest Lib/test/test_tkinter/test_widgets.py /^class EntryTest(AbstractWidgetTest, unittest.TestCase):$/;" c +EntryTest Lib/test/test_ttk/test_widgets.py /^class EntryTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Enum Lib/enum.py /^class Enum(metaclass=EnumType):$/;" c +Enum Tools/c-analyzer/c_parser/info.py /^class Enum(TypeDeclaration):$/;" c +EnumCheck Lib/enum.py /^class EnumCheck:$/;" c +EnumKey Lib/test/test_getpath.py /^ def EnumKey(self, hkey, i):$/;" m class:MockWinreg +EnumMeta Lib/enum.py /^EnumMeta = EnumType$/;" v +EnumMixin Lib/test/test_enum.py /^ class EnumMixin(Enum):$/;" c function:TestSpecial.test_custom_strenum +EnumMixin Lib/test/test_enum.py /^ class EnumMixin(Enum):$/;" c function:TestSpecial.test_strenum +EnumType Lib/enum.py /^class EnumType(type):$/;" c +EnumWindowsCallbackFunc Lib/test/test_ctypes/test_callbacks.py /^ def EnumWindowsCallbackFunc(hwnd, lParam):$/;" f function:SampleCallbacksTestCase.test_issue_8959_b +EnumerateStartTestCase Lib/test/test_enumerate.py /^class EnumerateStartTestCase(EnumerateTestCase):$/;" c +EnumerateTestCase Lib/test/test_enumerate.py /^class EnumerateTestCase(unittest.TestCase, PickleTest):$/;" c +EnvBuilder Lib/venv/__init__.py /^class EnvBuilder:$/;" c +EnvironTests Lib/test/test_os.py /^class EnvironTests(mapping_tests.BasicTestMappingProtocol):$/;" c +Environment Lib/msilib/schema.py /^Environment = Table('Environment')$/;" v +EnvironmentInfo PC/launcher2.c /^typedef struct EnvironmentInfo {$/;" s file: +EnvironmentInfo PC/launcher2.c /^} EnvironmentInfo;$/;" t typeref:struct:EnvironmentInfo file: +EnvironmentVarGuard Lib/test/support/os_helper.py /^class EnvironmentVarGuard(collections.abc.MutableMapping):$/;" c +EnvironmentVariableTests Lib/test/test_warnings/__init__.py /^class EnvironmentVariableTests(BaseTest):$/;" c +Epiphany Lib/webbrowser.py /^class Epiphany(UnixBrowser):$/;" c +EpiphanyCommandTest Lib/test/test_webbrowser.py /^class EpiphanyCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +EpollSelector Lib/selectors.py /^ class EpollSelector(_PollLikeSelector):$/;" c class:_PollLikeSelector +EpollSelectorTestCase Lib/test/test_selectors.py /^ unittest.TestCase):$/;" c +Eq Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +Eq Lib/test/test_patma.py /^ class Eq:$/;" c function:TestPatma.test_patma_232 +EqError Lib/test/test_context.py /^class EqError(Exception):$/;" c +Eq_singleton Include/internal/pycore_ast_state.h /^ PyObject *Eq_singleton;$/;" m struct:ast_state +Eq_type Include/internal/pycore_ast_state.h /^ PyObject *Eq_type;$/;" m struct:ast_state +EqualEnum Lib/test/test_enum.py /^ class EqualEnum(self.enum_type):$/;" c class:_EnumTests.test_contains_tf.OtherEnum +Err Lib/test/test_asyncio/test_base_events.py /^ class Err(OSError):$/;" c function:BaseEventLoopWithSelectorTests.test_create_datagram_endpoint_cant_bind +Err Lib/test/test_asyncio/test_base_events.py /^ class Err(OSError):$/;" c function:BaseEventLoopWithSelectorTests.test_create_server_cant_bind +Err Lib/test/test_asyncio/test_unix_events.py /^ class Err(OSError):$/;" c function:SelectorEventLoopSignalTests.test_add_signal_handler_install_error +Err Lib/test/test_asyncio/test_unix_events.py /^ class Err(OSError):$/;" c function:SelectorEventLoopSignalTests.test_add_signal_handler_install_error2 +Err Lib/test/test_asyncio/test_unix_events.py /^ class Err(OSError):$/;" c function:SelectorEventLoopSignalTests.test_add_signal_handler_install_error3 +Err Lib/test/test_asyncio/test_unix_events.py /^ class Err(OSError):$/;" c function:SelectorEventLoopSignalTests.test_remove_signal_handler_error2 +ErrDescr Lib/test/test_descr.py /^ class ErrDescr(object):$/;" c function:.test_special_method_lookup +ErrnoAttributeTests Lib/test/test_errno.py /^class ErrnoAttributeTests(unittest.TestCase):$/;" c +Error Lib/aifc.py /^class Error(Exception):$/;" c +Error Lib/concurrent/futures/_base.py /^class Error(Exception):$/;" c +Error Lib/configparser.py /^class Error(Exception):$/;" c +Error Lib/copy.py /^class Error(Exception):$/;" c +Error Lib/ftplib.py /^class Error(Exception): pass$/;" c +Error Lib/mailbox.py /^class Error(Exception):$/;" c +Error Lib/msilib/schema.py /^Error = Table('Error')$/;" v +Error Lib/shutil.py /^class Error(OSError):$/;" c +Error Lib/sunau.py /^class Error(Exception):$/;" c +Error Lib/test/support/__init__.py /^class Error(Exception):$/;" c +Error Lib/test/test_builtin.py /^ class Error(Exception):$/;" c function:BuiltinTest.test_zip_strict_error_handling +Error Lib/uu.py /^class Error(Exception):$/;" c +Error Lib/wave.py /^class Error(Exception):$/;" c +Error Lib/webbrowser.py /^class Error(Exception):$/;" c +Error Lib/xdrlib.py /^class Error(Exception):$/;" c +Error Lib/xmlrpc/client.py /^class Error(Exception):$/;" c +Error Modules/_localemodule.c /^ PyObject *Error;$/;" m struct:_locale_state file: +Error Modules/_sqlite/connection.h /^ PyObject* Error;$/;" m struct:__anon359 +Error Modules/_sqlite/module.h /^ PyObject *Error;$/;" m struct:__anon355 +Error Modules/binascii.c /^ PyObject *Error;$/;" m struct:binascii_state file: +ErrorAtPickle Lib/test/test_concurrent_futures/test_deadlock.py /^class ErrorAtPickle(object):$/;" c +ErrorAtUnpickle Lib/test/test_concurrent_futures/test_deadlock.py /^class ErrorAtUnpickle(object):$/;" c +ErrorDirectiveError Tools/c-analyzer/c_parser/preprocessor/errors.py /^class ErrorDirectiveError(PreprocessorFailure):$/;" c +ErrorDuringImport Lib/pydoc.py /^class ErrorDuringImport(Exception):$/;" c +ErrorHandler Lib/test/test_wsgiref.py /^class ErrorHandler(BaseCGIHandler):$/;" c +ErrorHandler Lib/xml/dom/pulldom.py /^class ErrorHandler:$/;" c +ErrorHandler Lib/xml/sax/handler.py /^class ErrorHandler:$/;" c +ErrorHandlerTest Lib/test/test_socketserver.py /^class ErrorHandlerTest(unittest.TestCase):$/;" c +ErrorInfo Modules/pyexpat.c /^struct ErrorInfo {$/;" s file: +ErrorMessageTest Lib/test/test_pyexpat.py /^class ErrorMessageTest(unittest.TestCase):$/;" c +ErrorObject Modules/xxlimited_35.c /^static PyObject *ErrorObject;$/;" v file: +ErrorObject Modules/xxmodule.c /^static PyObject *ErrorObject;$/;" v file: +ErrorRaisingArgumentParser Lib/test/test_argparse.py /^class ErrorRaisingArgumentParser(argparse.ArgumentParser):$/;" c +ErrorReportingTest Lib/test/test_sax.py /^class ErrorReportingTest(unittest.TestCase):$/;" c +ErrorRepr Lib/test/test_inspect.py /^ class ErrorRepr:$/;" c function:TestRetrievingSourceCode.test_getfile_broken_repr +ErrorStream Lib/wsgiref/types.py /^class ErrorStream(Protocol):$/;" c +ErrorString Include/pyexpat.h /^ const XML_LChar * (*ErrorString)(enum XML_Error code);$/;" m struct:PyExpat_CAPI +ErrorValueReturn Lib/test/test_sqlite3/test_userfunctions.py /^ class ErrorValueReturn:$/;" c function:WindowFunctionTests.test_win_error_value_return +ErrorWrapper Lib/wsgiref/validate.py /^class ErrorWrapper:$/;" c +Error_Type Modules/xxlimited.c /^ PyObject *Error_Type; \/\/ Error class$/;" m struct:__anon390 file: +ErrorcodeTests Lib/test/test_errno.py /^class ErrorcodeTests(unittest.TestCase):$/;" c +EscapeDecodeTest Lib/test/test_codecs.py /^class EscapeDecodeTest(unittest.TestCase):$/;" c +EscapeEncodeTest Lib/test/test_codecs.py /^class EscapeEncodeTest(unittest.TestCase):$/;" c +EscapedExcel Lib/test/test_csv.py /^class EscapedExcel(csv.excel):$/;" c +Etiny Lib/_pydecimal.py /^ def Etiny(self):$/;" m class:Context +Etiny Python/dtoa.c 246;" d file: +Etop Lib/_pydecimal.py /^ def Etop(self):$/;" m class:Context +Europe_Vilnius_1941 Lib/test/datetimetester.py /^class Europe_Vilnius_1941(tzinfo):$/;" c +EuropeanSwallow Lib/test/test_with.py /^ class EuropeanSwallow:$/;" c function:ExitSwallowsExceptionTestCase.testExitFalseDoesntSwallowException +EvaluateConditions Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT EvaluateConditions() {$/;" f class:PythonBootstrapperApplication file: +EvenMoreColor Lib/test/test_enum.py /^ class EvenMoreColor(Color, IntEnum):$/;" c class:TestSpecial.test_extending.Color +Event Lib/asyncio/locks.py /^class Event(mixins._LoopBoundMixin):$/;" c +Event Lib/idlelib/idle_test/mock_tk.py /^class Event:$/;" c +Event Lib/multiprocessing/context.py /^ def Event(self):$/;" m class:BaseContext +Event Lib/multiprocessing/synchronize.py /^class Event(object):$/;" c +Event Lib/sched.py /^Event = namedtuple('Event', 'time, priority, sequence, action, argument, kwargs')$/;" v +Event Lib/test/_test_multiprocessing.py /^ Event = property(operator.attrgetter('manager.Event'))$/;" v class:ManagerMixin +Event Lib/test/_test_multiprocessing.py /^ Event = staticmethod(multiprocessing.Event)$/;" v class:ProcessesMixin +Event Lib/test/_test_multiprocessing.py /^ Event = staticmethod(multiprocessing.dummy.Event)$/;" v class:ThreadsMixin +Event Lib/threading.py /^class Event:$/;" c +Event Lib/tkinter/__init__.py /^class Event:$/;" c +EventCollector Lib/test/test_htmlparser.py /^class EventCollector(html.parser.HTMLParser):$/;" c +EventCollectorCharrefs Lib/test/test_htmlparser.py /^class EventCollectorCharrefs(EventCollector):$/;" c +EventCollectorExtra Lib/test/test_htmlparser.py /^class EventCollectorExtra(EventCollector):$/;" c +EventFunc Modules/_tkinter.c /^typedef PyObject* (*EventFunc)(TkappObject *, PyObject *, int);$/;" t file: +EventHook Modules/_tkinter.c /^EventHook(void)$/;" f file: +EventLoop Lib/test/test_asyncio/test_base_events.py /^ class EventLoop(base_events.BaseEventLoop):$/;" c function:BaseEventLoopTests.test_create_task +EventLoop Lib/test/test_asyncio/test_selector_events.py /^ class EventLoop(BaseSelectorEventLoop):$/;" c function:BaseSelectorEventLoopTests.test_close +EventLoopTestsMixin Lib/test/test_asyncio/test_events.py /^class EventLoopTestsMixin:$/;" c +EventMapping Lib/msilib/schema.py /^EventMapping = Table('EventMapping')$/;" v +EventProxy Lib/multiprocessing/managers.py /^class EventProxy(BaseProxy):$/;" c +EventTests Lib/test/lock_tests.py /^class EventTests(BaseTestCase):$/;" c +EventTests Lib/test/test_asyncio/test_locks.py /^class EventTests(unittest.IsolatedAsyncioTestCase):$/;" c +EventTests Lib/test/test_threading.py /^class EventTests(lock_tests.EventTests):$/;" c +EventType Lib/tkinter/__init__.py /^class EventType:$/;" c +EventfdTests Lib/test/test_os.py /^class EventfdTests(unittest.TestCase):$/;" c +EventfulGCObj Lib/test/test_concurrent_futures/test_process_pool.py /^class EventfulGCObj():$/;" c +Evil Lib/test/test_asyncio/test_futures.py /^ class Evil:$/;" c function:BaseFutureTests.test_future_del_collect +Evil Lib/test/test_asyncio/test_tasks.py /^ class Evil:$/;" c function:BaseTaskTests.test_task_del_collect +Evil Lib/test/test_descr.py /^ class Evil(object):$/;" c function:.test_vicious_descriptor_nonsense +EvilClass Lib/test/test_heapq.py /^ class EvilClass(int):$/;" c function:TestErrorHandling.test_comparison_operator_modifiying_heap +EvilCmp Lib/test/list_tests.py /^ class EvilCmp:$/;" c function:CommonTest.test_index +EvilExc Lib/test/test_complex.py /^ class EvilExc(Exception):$/;" c function:ComplexTest.test_constructor +EvilGetattribute Lib/test/test_descr.py /^ class EvilGetattribute(object):$/;" c function:.test_getattr_hooks +EvilPickler Lib/test/pickletester.py /^ class EvilPickler(self.pickler):$/;" c function:AbstractPickleTests.test_evil_pickler_mutating_collection.check +EvilState Lib/test/test_copy.py /^ class EvilState(object):$/;" c function:TestCopy.test_getstate_exc +ExFileObject Lib/tarfile.py /^class ExFileObject(io.BufferedReader):$/;" c +ExFileSelectBox Lib/tkinter/tix.py /^class ExFileSelectBox(TixWidget):$/;" c +ExFileSelectDialog Lib/tkinter/tix.py /^class ExFileSelectDialog(TixWidget):$/;" c +ExactRatioTest Lib/test/test_statistics.py /^class ExactRatioTest(unittest.TestCase):$/;" c +ExaggeratingArray Lib/test/test_array.py /^ class ExaggeratingArray(array.array):$/;" c function:NumberTest.test_subclassing +Example Lib/doctest.py /^class Example:$/;" c +Example Lib/test/test_contextlib.py /^ class Example(object): pass$/;" c function:TestBaseExitStack.test_instance_bypass +Example Lib/test/test_contextlib_async.py /^ class Example(object): pass$/;" c function:TestAsyncExitStack.test_instance_bypass_async +Example Lib/test/test_keywordonlyarg.py /^ class Example:$/;" c function:KeywordOnlyArgTestCase.test_kwonly_methods +Example Lib/test/test_positional_only_arg.py /^ class Example:$/;" c function:PositionalOnlyTestCase.test_posonly_methods +Example Lib/test/test_types.py /^class Example:$/;" c +ExampleBrowser Lib/test/test_webbrowser.py /^ class ExampleBrowser:$/;" c function:BrowserRegistrationTest._check_registration +ExampleBrowser Lib/test/test_webbrowser.py /^ class ExampleBrowser:$/;" c function:ImportTest.test_register +ExampleObject Modules/_testmultiphase.c /^} ExampleObject;$/;" t typeref:struct:__anon424 file: +ExampleService Lib/xmlrpc/server.py /^ class ExampleService:$/;" c +Example_Type_slots Modules/_testmultiphase.c /^static PyType_Slot Example_Type_slots[] = {$/;" v file: +Example_Type_spec Modules/_testmultiphase.c /^static PyType_Spec Example_Type_spec = {$/;" v file: +Example_demo Modules/_testmultiphase.c /^Example_demo(ExampleObject *self, PyObject *args)$/;" f file: +Example_finalize Modules/_testmultiphase.c /^Example_finalize(ExampleObject *self)$/;" f file: +Example_getattro Modules/_testmultiphase.c /^Example_getattro(ExampleObject *self, PyObject *name)$/;" f file: +Example_methods Modules/_testmultiphase.c /^static PyMethodDef Example_methods[] = {$/;" v file: +Example_setattr Modules/_testmultiphase.c /^Example_setattr(ExampleObject *self, const char *name, PyObject *v)$/;" f file: +Example_traverse Modules/_testmultiphase.c /^Example_traverse(ExampleObject *self, visitproc visit, void *arg)$/;" f file: +Exc Lib/test/mapping_tests.py /^ class Exc(Exception): pass$/;" c function:BasicTestMappingProtocol.test_update +Exc Lib/test/mapping_tests.py /^ class Exc(Exception): pass$/;" c function:TestHashMappingProtocol.test_eq +Exc Lib/test/mapping_tests.py /^ class Exc(Exception): pass$/;" c function:TestHashMappingProtocol.test_getitem +Exc Lib/test/mapping_tests.py /^ class Exc(Exception): pass$/;" c function:TestHashMappingProtocol.test_pop +Exc Lib/test/mapping_tests.py /^ class Exc(Exception): pass$/;" c function:TestHashMappingProtocol.test_repr +Exc Lib/test/mapping_tests.py /^ class Exc(Exception): pass$/;" c function:TestHashMappingProtocol.test_setdefault +Exc Lib/test/mapping_tests.py /^ class Exc(Exception): pass$/;" c function:TestMappingProtocol.test_fromkeys +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:CAPITest.test_getitem_knownhash +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:DictTest.test_eq +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:DictTest.test_fromkeys +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:DictTest.test_getitem +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:DictTest.test_pop +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:DictTest.test_repr +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:DictTest.test_setdefault +Exc Lib/test/test_dict.py /^ class Exc(Exception): pass$/;" c function:DictTest.test_update +Exc Lib/test/test_dictviews.py /^ class Exc(Exception):$/;" c function:DictSetTest.test_compare_error +Exc Lib/test/test_richcmp.py /^ class Exc(Exception):$/;" c function:ListTest.test_badentry +Exc Lib/test/test_richcmp.py /^ class Exc(Exception):$/;" c function:MiscTest.test_not +Exc Lib/test/test_slice.py /^ class Exc(Exception):$/;" c function:SliceTest.test_cmp +Exc Lib/test/test_structseq.py /^ class Exc(Exception):$/;" c function:StructSeqTest.test_eviltuple +ExcStr Lib/test/libregrtest/runtest_mp.py /^ExcStr = str$/;" v +Except Objects/frameobject.c /^ Except = 2,$/;" e enum:kind file: +ExceptHandler Include/internal/pycore_ast.h /^ } ExceptHandler;$/;" m union:_excepthandler::__anon105 typeref:struct:_excepthandler::__anon105::__anon106 +ExceptHandler_fields Python/Python-ast.c /^static const char * const ExceptHandler_fields[]={$/;" v file: +ExceptHandler_kind Include/internal/pycore_ast.h /^enum _excepthandler_kind {ExceptHandler_kind=1};$/;" e enum:_excepthandler_kind +ExceptHandler_type Include/internal/pycore_ast_state.h /^ PyObject *ExceptHandler_type;$/;" m struct:ast_state +ExceptHookArgs Lib/threading.py /^ def ExceptHookArgs(args):$/;" f +ExceptHookArgs_desc Modules/_threadmodule.c /^static PyStructSequence_Desc ExceptHookArgs_desc = {$/;" v file: +ExceptHookArgs_fields Modules/_threadmodule.c /^static PyStructSequence_Field ExceptHookArgs_fields[] = {$/;" v file: +ExceptHookTest Lib/test/test_sys.py /^class ExceptHookTest(unittest.TestCase):$/;" c +ExceptHookTests Lib/test/test_threading.py /^class ExceptHookTests(BaseTestCase):$/;" c +ExceptStack Python/flowgraph.c /^typedef _PyCfgExceptStack ExceptStack;$/;" t file: +ExceptStarTest Lib/test/test_except_star.py /^class ExceptStarTest(ExceptionIsLikeMixin, unittest.TestCase):$/;" c +ExceptStarTestCases Lib/test/test_exception_variations.py /^class ExceptStarTestCases(unittest.TestCase):$/;" c +ExceptTestCases Lib/test/test_exception_variations.py /^class ExceptTestCases(unittest.TestCase):$/;" c +Exception1 Lib/test/test_descr.py /^ class Exception1(Exception, Base):$/;" c function:.test_set_dict +Exception2 Lib/test/test_descr.py /^ class Exception2(Base, Exception):$/;" c function:.test_set_dict +ExceptionClassTests Lib/test/test_baseexception.py /^class ExceptionClassTests(unittest.TestCase):$/;" c +ExceptionContextTestCase Lib/test/test_configparser.py /^class ExceptionContextTestCase(unittest.TestCase):$/;" c +ExceptionFile Lib/test/test_xml_etree.py /^ class ExceptionFile:$/;" c function:BugsTest.test_bug_xmltoolkit60 +ExceptionFormatter Lib/test/test_logging.py /^class ExceptionFormatter(logging.Formatter):$/;" c +ExceptionGroupFields Lib/test/test_exception_group.py /^class ExceptionGroupFields(unittest.TestCase):$/;" c +ExceptionGroupSplitTestBase Lib/test/test_exception_group.py /^class ExceptionGroupSplitTestBase(ExceptionGroupTestBase):$/;" c +ExceptionGroupSplitTests Lib/test/test_exception_group.py /^class ExceptionGroupSplitTests(ExceptionGroupTestBase):$/;" c +ExceptionGroupSubgroupTests Lib/test/test_exception_group.py /^class ExceptionGroupSubgroupTests(ExceptionGroupTestBase):$/;" c +ExceptionGroupTestBase Lib/test/test_exception_group.py /^class ExceptionGroupTestBase(unittest.TestCase):$/;" c +ExceptionHandledRecorder Lib/test/test_monitoring.py /^class ExceptionHandledRecorder(ExceptionRecorder):$/;" c +ExceptionIsLikeMixin Lib/test/support/testcase.py /^class ExceptionIsLikeMixin:$/;" c +ExceptionMock Lib/test/test_unittest/test_case.py /^ class ExceptionMock(Exception):$/;" c function:.testAssertRaisesCallable +ExceptionMock Lib/test/test_unittest/test_case.py /^ class ExceptionMock(Exception):$/;" c function:.testAssertRaisesContext +ExceptionMock Lib/test/test_unittest/test_case.py /^ class ExceptionMock(Exception):$/;" c function:.testAssertRaisesExcValue +ExceptionMock Lib/test/test_unittest/test_case.py /^ class ExceptionMock(Exception):$/;" c function:.testAssertRaisesRegex +ExceptionMonitoringTest Lib/test/test_monitoring.py /^class ExceptionMonitoringTest(CheckEvents):$/;" c +ExceptionNotesTest Lib/test/test_codecs.py /^class ExceptionNotesTest(unittest.TestCase):$/;" c +ExceptionPicklingTestCase Lib/test/test_configparser.py /^class ExceptionPicklingTestCase(unittest.TestCase):$/;" c +ExceptionRecorder Lib/test/test_monitoring.py /^class ExceptionRecorder:$/;" c +ExceptionTest Lib/idlelib/idle_test/test_run.py /^class ExceptionTest(unittest.TestCase):$/;" c +ExceptionTest Lib/test/test_generators.py /^class ExceptionTest(unittest.TestCase):$/;" c +ExceptionTest Lib/test/test_logging.py /^class ExceptionTest(BaseTest):$/;" c +ExceptionTestCase Lib/test/test_marshal.py /^class ExceptionTestCase(unittest.TestCase):$/;" c +ExceptionTestCase Lib/test/test_zlib.py /^class ExceptionTestCase(unittest.TestCase):$/;" c +ExceptionTests Lib/test/test_exceptions.py /^class ExceptionTests(unittest.TestCase):$/;" c +ExceptionWithTraceback Lib/multiprocessing/pool.py /^class ExceptionWithTraceback:$/;" c +ExceptionalTestCase Lib/test/test_with.py /^class ExceptionalTestCase(ContextmanagerAssertionMixin, unittest.TestCase):$/;" c +ExceptionalTrunc Lib/test/test_int.py /^ class ExceptionalTrunc(base):$/;" c class:IntTestCases.test_intconversion.Classic +ExecError Lib/shutil.py /^class ExecError(OSError):$/;" c +ExecModuleTests Lib/test/test_importlib/frozen/test_loader.py /^class ExecModuleTests(abc.LoaderTests):$/;" c +ExecRuncodeTest Lib/idlelib/idle_test/test_run.py /^class ExecRuncodeTest(unittest.TestCase):$/;" c +ExecTests Lib/test/test_os.py /^class ExecTests(unittest.TestCase):$/;" c +ExecutionLayerTestCase Lib/test/test_runpy.py /^class ExecutionLayerTestCase(unittest.TestCase, CodeExecutionMixin):$/;" c +ExecutionLoader Lib/importlib/abc.py /^class ExecutionLoader(InspectLoader):$/;" c +ExecutionLoader Lib/test/test_importlib/test_abc.py /^class ExecutionLoader(InheritanceTests):$/;" c +ExecutionLoader Lib/test/test_importlib/test_abc.py /^class ExecutionLoader(InspectLoader):$/;" c +ExecutionLoaderDefaultsTests Lib/test/test_importlib/test_abc.py /^class ExecutionLoaderDefaultsTests(ABCTestHarness):$/;" c +ExecutionLoaderGetCodeTests Lib/test/test_importlib/test_abc.py /^class ExecutionLoaderGetCodeTests:$/;" c +Executive Lib/idlelib/run.py /^class Executive:$/;" c +Executor Lib/concurrent/futures/_base.py /^class Executor(object):$/;" c +ExecutorDeadlockTest Lib/test/test_concurrent_futures/test_deadlock.py /^class ExecutorDeadlockTest:$/;" c +ExecutorMixin Lib/test/test_concurrent_futures/util.py /^class ExecutorMixin:$/;" c +ExecutorShutdownTest Lib/test/test_concurrent_futures/test_shutdown.py /^class ExecutorShutdownTest:$/;" c +ExecutorTest Lib/test/test_concurrent_futures/executor.py /^class ExecutorTest:$/;" c +ExhaustiveChannelTests Lib/test/test__xxinterpchannels.py /^class ExhaustiveChannelTests(TestBase):$/;" c +ExitAtPickle Lib/test/test_concurrent_futures/test_deadlock.py /^class ExitAtPickle(object):$/;" c +ExitAtUnpickle Lib/test/test_concurrent_futures/test_deadlock.py /^class ExitAtUnpickle(object):$/;" c +ExitCM Lib/test/test_contextlib.py /^ class ExitCM(object):$/;" c function:TestBaseExitStack.test_push +ExitCM Lib/test/test_contextlib_async.py /^ class ExitCM(object):$/;" c function:TestAsyncExitStack.test_async_push +ExitFails Lib/test/test_exceptions.py /^ class ExitFails:$/;" c function:PEP626Tests.test_lineno_after_raise_in_with_exit +ExitNow Lib/test/support/asyncore.py /^class ExitNow(Exception):$/;" c +ExitRaises Lib/test/test_with.py /^ class ExitRaises(object):$/;" c class:NestedWith +ExitStack Lib/contextlib.py /^class ExitStack(_BaseExitStack, AbstractContextManager):$/;" c +ExitSwallowsExceptionTestCase Lib/test/test_with.py /^class ExitSwallowsExceptionTestCase(unittest.TestCase):$/;" c +ExitThread Lib/test/libregrtest/runtest_mp.py /^class ExitThread(Exception):$/;" c +ExitThrows Lib/test/test_with.py /^ class ExitThrows(object):$/;" c function:FailureTestCase.testExitThrows +Exp_1 Python/dtoa.c 247;" d file: +Exp_11 Python/dtoa.c 248;" d file: +Exp_mask Python/dtoa.c 240;" d file: +Exp_msk1 Python/dtoa.c 238;" d file: +Exp_msk11 Python/dtoa.c 239;" d file: +Exp_shift Python/dtoa.c 236;" d file: +Exp_shift1 Python/dtoa.c 237;" d file: +ExpandingButton Lib/idlelib/squeezer.py /^class ExpandingButton(tk.Button):$/;" c +ExpandingButtonTest Lib/idlelib/idle_test/test_squeezer.py /^class ExpandingButtonTest(unittest.TestCase):$/;" c +ExpatBuilder Lib/xml/dom/expatbuilder.py /^class ExpatBuilder:$/;" c +ExpatBuilderNS Lib/xml/dom/expatbuilder.py /^class ExpatBuilderNS(Namespaces, ExpatBuilder):$/;" c +ExpatLocator Lib/xml/sax/expatreader.py /^class ExpatLocator(xmlreader.Locator):$/;" c +ExpatMemoryHandler Modules/_elementtree.c /^static XML_Memory_Handling_Suite ExpatMemoryHandler = {$/;" v file: +ExpatMemoryHandler Modules/pyexpat.c /^static XML_Memory_Handling_Suite ExpatMemoryHandler = {$/;" v file: +ExpatParser Lib/xml/sax/expatreader.py /^class ExpatParser(xmlreader.IncrementalParser, xmlreader.Locator):$/;" c +ExpatParser Lib/xmlrpc/client.py /^class ExpatParser:$/;" c +ExpatReaderTest Lib/test/test_sax.py /^class ExpatReaderTest(XmlTestBase):$/;" c +Expat_External_INCLUDED Modules/expat/expat_external.h 41;" d +Expat_INCLUDED Modules/expat/expat.h 42;" d +ExpectAndReadTestCase Lib/test/test_telnetlib.py /^class ExpectAndReadTestCase(unittest.TestCase):$/;" c +ExpectTests Lib/test/test_telnetlib.py /^class ExpectTests(ExpectAndReadTestCase):$/;" c +ExpectedError Lib/test/test_itertools.py /^ class ExpectedError(Exception):$/;" c function:TestBasicOps.test_groupby +Expfloat Lib/lib2to3/pgen2/tokenize.py /^Expfloat = r'\\d+(?:_\\d+)*' + Exponent$/;" v +Expfloat Lib/tokenize.py /^Expfloat = r'[0-9](?:_?[0-9])*' + Exponent$/;" v +ExplicitConstructionTest Lib/test/test_decimal.py /^class ExplicitConstructionTest:$/;" c +ExplicitSubclassingTest Lib/test/test_exception_hierarchy.py /^class ExplicitSubclassingTest(unittest.TestCase):$/;" c +ExplodingBool Lib/test/test_struct.py /^ class ExplodingBool(object):$/;" c function:StructTest.test_bool +Exponent Lib/lib2to3/pgen2/tokenize.py /^Exponent = r'[eE][-+]?\\d+(?:_\\d+)*'$/;" v +Exponent Lib/tokenize.py /^Exponent = r'[eE][-+]?[0-9](?:_?[0-9])*'$/;" v +ExportsTests Lib/test/test_os.py /^class ExportsTests(unittest.TestCase):$/;" c +Expose Lib/test/test_tkinter/test_misc.py /^ Expose = '12'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Expose Lib/tkinter/__init__.py /^ Expose = '12'$/;" v class:EventType +Expr Include/internal/pycore_ast.h /^ } Expr;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon76 +Expr_fields Python/Python-ast.c /^static const char * const Expr_fields[]={$/;" v file: +Expr_kind Include/internal/pycore_ast.h /^ Nonlocal_kind=24, Expr_kind=25, Pass_kind=26, Break_kind=27,$/;" e enum:_stmt_kind +Expr_type Include/internal/pycore_ast_state.h /^ PyObject *Expr_type;$/;" m struct:ast_state +Expression Include/internal/pycore_ast.h /^ } Expression;$/;" m union:_mod::__anon46 typeref:struct:_mod::__anon46::__anon49 +Expression Tools/cases_generator/parser.py /^class Expression(Node):$/;" c +Expression_fields Python/Python-ast.c /^static const char * const Expression_fields[]={$/;" v file: +Expression_kind Include/internal/pycore_ast.h /^enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,$/;" e enum:_mod_kind +Expression_type Include/internal/pycore_ast_state.h /^ PyObject *Expression_type;$/;" m struct:ast_state +ExtPage Lib/idlelib/configdialog.py /^class ExtPage(Frame):$/;" c +ExtPageTest Lib/idlelib/idle_test/test_configdialog.py /^class ExtPageTest(unittest.TestCase):$/;" c +ExtSlice Lib/ast.py /^class ExtSlice(slice):$/;" c +ExtendKeywords Lib/test/test_ast.py /^ class ExtendKeywords(ast.NodeTransformer):$/;" c function:NodeTransformerTests.test_node_return_list +ExtendPathTests Lib/test/test_pkgutil.py /^class ExtendPathTests(unittest.TestCase):$/;" c +ExtendedAttributeTests Lib/test/test_os.py /^class ExtendedAttributeTests(unittest.TestCase):$/;" c +ExtendedContext Lib/_pydecimal.py /^ExtendedContext = Context($/;" v +ExtendedInterpolation Lib/configparser.py /^class ExtendedInterpolation(Interpolation):$/;" c +ExtendedReadTest Lib/test/test_httplib.py /^class ExtendedReadTest(TestCase):$/;" c +ExtendedReadTestChunked Lib/test/test_httplib.py /^class ExtendedReadTestChunked(ExtendedReadTest):$/;" c +Extension Lib/msilib/schema.py /^Extension = Table('Extension')$/;" v +ExtensionBuiltTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class ExtensionBuiltTest(unittest.TestCase):$/;" c +ExtensionFileLoader Lib/importlib/_bootstrap_external.py /^class ExtensionFileLoader(FileLoader, _LoaderBasics):$/;" c +ExtensionModuleCaseSensitivityTest Lib/test/test_importlib/extension/test_case_sensitivity.py /^class ExtensionModuleCaseSensitivityTest(util.CASEOKTestBase):$/;" c +ExtensionSaver Lib/test/pickletester.py /^class ExtensionSaver:$/;" c +ExtensionTests Lib/test/test_sqlite3/test_dbapi.py /^class ExtensionTests(unittest.TestCase):$/;" c +ExternalClashError Lib/mailbox.py /^class ExternalClashError(Error):$/;" c +ExternalEntityRef Modules/pyexpat.c /^ ExternalEntityRef,$/;" e enum:HandlerTypes file: +ExternalEntityRefHandler Lib/test/test_pyexpat.py /^ def ExternalEntityRefHandler(self, context, base, sysId, pubId):$/;" m class:InterningTest.test_issue9402.ExternalOutputter +ExternalEntityRefHandler Lib/test/test_pyexpat.py /^ def ExternalEntityRefHandler(self, *args):$/;" m class:ParseTest.Outputter +ExternalOutputter Lib/test/test_pyexpat.py /^ class ExternalOutputter:$/;" c function:InterningTest.test_issue9402 +ExternalTests Lib/test/test_re.py /^class ExternalTests(unittest.TestCase):$/;" c +ExtraTests Lib/test/test_class.py /^ class ExtraTests(AllTests):$/;" c function:ClassTests.testGetSetAndDel +ExtractError Lib/tarfile.py /^class ExtractError(TarError):$/;" c +ExtractTests Lib/test/test_zipfile/test_core.py /^class ExtractTests(unittest.TestCase):$/;" c +F Lib/test/ann_module.py /^class F():$/;" c +F Lib/test/list_tests.py /^ class F(object):$/;" c function:CommonTest.test_constructor_exception_handling +F Lib/test/test_abc.py /^ class F(C):$/;" c class:test_factory.TestABC.test_descriptors_with_abstractmethod.NotBool +F Lib/test/test_abc.py /^ class F(E):$/;" c function:test_factory.TestABC.test_abstractmethod_integration +F Lib/test/test_binop.py /^class F(object):$/;" c +F Lib/test/test_coroutines.py /^ class F:$/;" c function:CoroutineTest.test_for_11 +F Lib/test/test_dataclasses.py /^ class F:$/;" c function:TestCase.test_function_annotations +F Lib/test/test_descr.py /^ class F(D, E): pass$/;" c class:ClassPropertiesAndMethods.test_diamond_inheritance.E +F Lib/test/test_descr.py /^ class F(D):$/;" c function:.test_dynamics +F Lib/test/test_descr.py /^ class F(D, E): pass$/;" c function:.test_set_class +F Lib/test/test_descr.py /^ class F(D, metaclass=WorkOnce):$/;" c function:.test_mutable_bases_with_failing_mro +F Lib/test/test_descr.py /^ class F(E):$/;" c function:.test_properties_plus +F Lib/test/test_descr.py /^ class F(E):$/;" c function:.test_supers +F Lib/test/test_descr.py /^ class F(object(), C):$/;" c function:ClassPropertiesAndMethods.test_metaclass +F Lib/test/test_descr.py /^ class F(object):$/;" c function:.test_slots +F Lib/test/test_dict.py /^ class F(dict):$/;" c function:DictTest.test_missing +F Lib/test/test_enum.py /^ F = 0$/;" v class:TestSpecial.setUp.Grades +F Lib/test/test_enum.py /^ F = 1$/;" v class:TestSpecial.test_ordered_mixin.Grade +F Lib/test/test_enum.py /^ F = 6$/;" v class:TestSpecial.test_inherited_data_type.MyOtherEnum +F Lib/test/test_float.py /^ class F(float):$/;" c function:HexFloatTestCase.test_subclass +F Lib/test/test_float.py /^ class F(float, H):$/;" c function:GeneralFloatCases.test_hash_nan +F Lib/test/test_float.py /^ class F:$/;" c function:GeneralFloatCases.test_floatconversion +F Lib/test/test_fractions.py /^F = fractions.Fraction$/;" v +F Lib/test/test_funcattrs.py /^ class F:$/;" c function:FuncAttrsTest.setUp +F Lib/test/test_grammar.py /^ class F(C, A):$/;" c function:GrammarTests.test_annotations_inheritance +F Lib/test/test_io.py /^ class F(object):$/;" c function:TextIOWrapperTest.test_issue22849 +F Lib/test/test_math.py /^ class F:$/;" c function:MathTests.test_issue39871 +F Lib/test/test_select.py /^ class F:$/;" c function:SelectTestCase.test_select_mutated +F Lib/test/test_super.py /^class F(E):$/;" c +F Lib/test/test_types.py /^ class F(list[int]): pass$/;" c function:ClassCreationTests.test_get_original_bases +F Lib/test/test_typing.py /^ F = A[T, *Ts, T2]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +F Lib/test/test_typing.py /^ class F(Generic[*Ts, int]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_definition_using_concrete_types_fails +F Lib/test/test_typing.py /^ class F(D): ...$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +F Lib/test/test_typing.py /^ class F(D): ...$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +F Lib/test/test_typing.py /^ class F(Generic[Unpack[Ts], T1, T2]): pass$/;" c function:TypeVarTupleTests.test_variadic_class_with_2_typevars_accepts_2_or_more_args +F Lib/test/test_typing.py /^ class F:$/;" c function:ForwardRefTests.test_nested_classvar_fails_forward_ref_check +F Lib/test/test_typing.py /^ class F:$/;" c function:ForwardRefTests.test_no_type_check_forward_ref_as_string +F Lib/test/test_typing.py /^ class F:$/;" c function:ForwardRefTests.test_union_forward_recursion +F Lib/test/test_unicode.py /^ class F:$/;" c function:UnicodeTest.test_format +F Lib/test/test_userdict.py /^ class F(collections.UserDict):$/;" c function:UserDictTest.test_missing +F Lib/test/test_weakref.py /^ class F(float):$/;" c function:ReferencesTestCase.test_newstyle_number_ops +F Lib/turtledemo/lindenmayer.py /^ def F():$/;" f function:main +F Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +F Modules/_decimal/libmpdec/literature/fnt.py /^F = [(2,3,5,17,257,65537), (2,3,7,11,31,151,331), (2,3,5,7,13,17,241)]$/;" v +F Modules/_decimal/libmpdec/literature/fnt.py /^F = [(2,3,7), (2,3,5), (2,3)]$/;" v +F Tools/peg_generator/pegen/parser.py /^F = TypeVar("F", bound=Callable[..., Any])$/;" v +F1 Lib/idlelib/idle_test/test_browser.py /^F1 = mb._nest_function(C0, 'F1', 3, 5)$/;" v +F2 Lib/test/test_descr.py /^ class F2(C, object()):$/;" c function:ClassPropertiesAndMethods.test_metaclass +F2 Lib/test/test_float.py /^ class F2(float):$/;" c function:HexFloatTestCase.test_subclass +F3 Lib/idlelib/idle_test/test_browser.py /^F3 = mb._nest_function(C2, 'F3', 9, 9)$/;" v +FACCESSAT_DIR_FD_CONVERTER Modules/posixmodule.c 2690;" d file: +FACCESSAT_DIR_FD_CONVERTER Modules/posixmodule.c 2692;" d file: +FACTOR Lib/ast.py /^ FACTOR = auto() # unary '+', '-', '~'$/;" v class:_Precedence +FACTOR Lib/test/test_ast.py /^ FACTOR = enum.auto() # unary '+', '-', '~'$/;" v class:AST_Tests.test_precedence_enum._Precedence +FAIL Modules/_sre/sre.c 1616;" d file: +FAIL Modules/_testcapimodule.c 1006;" d file: +FAIL Modules/_testcapimodule.c 1007;" d file: +FAIL Modules/_testcapimodule.c 1058;" d file: +FAIL Modules/_testcapimodule.c 955;" d file: +FAIL Tools/c-analyzer/c_parser/preprocessor/__main__.py /^FAIL = {$/;" v +FAIL Tools/peg_generator/scripts/find_max_nesting.py /^FAIL = "\\033[91m"$/;" v +FAIL Tools/peg_generator/scripts/test_parse_directory.py /^FAIL = "\\033[91m"$/;" v +FAILED Lib/test/libregrtest/runtest.py /^ FAILED = "FAILED"$/;" v class:State +FAILED_DEPENDENCY Lib/http/__init__.py /^ FAILED_DEPENDENCY = 424, 'Failed Dependency'$/;" v class:HTTPStatus +FAILED_DEPENDENCY Lib/test/test_httplib.py /^ FAILED_DEPENDENCY = 424, 'Failed Dependency'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +FAIL_DEFAULT Tools/c-analyzer/c_parser/preprocessor/__main__.py /^FAIL_DEFAULT = tuple(v for v in FAIL if v != 'os')$/;" v +FAIL_FAST Lib/doctest.py /^FAIL_FAST = register_optionflag('FAIL_FAST')$/;" v +FAITH Modules/getaddrinfo.c 61;" d file: +FALLBACK Lib/asyncio/constants.py /^ FALLBACK = enum.auto()$/;" v class:_SendfileMode +FALSE Lib/pickle.py /^FALSE = b'I00\\n' # not an opcode; see INT docs in pickletools.py$/;" v +FALSE Tools/build/umarshal.py /^ FALSE = ord('F')$/;" v class:Type +FASTCALL Modules/expat/internal.h 66;" d +FASTCALL Modules/expat/internal.h 81;" d +FASTSEARCH Objects/bytearrayobject.c 1101;" d file: +FASTSEARCH Objects/bytes_methods.c 433;" d file: +FASTSEARCH Objects/stringlib/asciilib.h 6;" d +FASTSEARCH Objects/stringlib/fastsearch.h /^FASTSEARCH(const STRINGLIB_CHAR* s, Py_ssize_t n,$/;" f +FASTSEARCH Objects/stringlib/stringdefs.h 9;" d +FASTSEARCH Objects/stringlib/ucs1lib.h 6;" d +FASTSEARCH Objects/stringlib/ucs2lib.h 6;" d +FASTSEARCH Objects/stringlib/ucs4lib.h 6;" d +FASTSEARCH Objects/stringlib/undef.h 1;" d +FAST_CHAR_MASK Objects/stringlib/codecs.h 488;" d +FAST_CHAR_MASK Objects/stringlib/codecs.h 495;" d +FAST_CHAR_MASK Objects/stringlib/codecs.h 617;" d +FAST_COUNT Objects/stringlib/fastsearch.h 24;" d +FAST_NESTING_LIMIT Modules/_pickle.c /^ FAST_NESTING_LIMIT = 50,$/;" e enum:__anon447 file: +FAST_RSEARCH Objects/stringlib/fastsearch.h 26;" d +FAST_SEARCH Objects/stringlib/fastsearch.h 25;" d +FATAL Lib/logging/__init__.py /^FATAL = CRITICAL$/;" v +FATAL Tools/c-analyzer/distutils/log.py /^FATAL = 5$/;" v +FATX Lib/test/test_univnewlines.py /^FATX = 'x' * (2**14)$/;" v +FAULTHANDLER_STACK_OVERFLOW Modules/faulthandler.c 1097;" d file: +FAULTHANDLER_USER Include/internal/pycore_faulthandler.h 20;" d +FAULTHANDLER_USE_ALT_STACK Include/internal/pycore_faulthandler.h 28;" d +FAVORITE_NUMBER Lib/test/ziptestdata/testdata_module_inside_zip.py /^FAVORITE_NUMBER = 5$/;" v +FCHMODAT_DIR_FD_CONVERTER Modules/posixmodule.c 2696;" d file: +FCHMODAT_DIR_FD_CONVERTER Modules/posixmodule.c 2698;" d file: +FCHOWNAT_DIR_FD_CONVERTER Modules/posixmodule.c 2702;" d file: +FCHOWNAT_DIR_FD_CONVERTER Modules/posixmodule.c 2704;" d file: +FCNTL_FCNTL_METHODDEF Modules/clinic/fcntlmodule.c.h 27;" d +FCNTL_FLOCK_METHODDEF Modules/clinic/fcntlmodule.c.h 148;" d +FCNTL_IOCTL_METHODDEF Modules/clinic/fcntlmodule.c.h 95;" d +FCNTL_LOCKF_METHODDEF Modules/clinic/fcntlmodule.c.h 204;" d +FDInheritanceTests Lib/test/test_os.py /^class FDInheritanceTests(unittest.TestCase):$/;" c +FD_DIR Modules/_posixsubprocess.c 64;" d file: +FD_DIR Modules/_posixsubprocess.c 66;" d file: +FD_SETSIZE Modules/selectmodule.c 41;" d file: +FEBRUARY Lib/calendar.py /^ FEBRUARY = 2$/;" v class:Month +FF Lib/curses/ascii.py /^FF = 0x0c # ^L$/;" v +FFFFFFFF Python/dtoa.c 289;" d file: +FFLAGS_FMT_UNIT Modules/selectmodule.c 1813;" d file: +FFLAGS_FMT_UNIT Modules/selectmodule.c 1820;" d file: +FFLAGS_TYPE Modules/selectmodule.c 1812;" d file: +FFLAGS_TYPE Modules/selectmodule.c 1819;" d file: +FHANDLETYPE Modules/_tkinter.c 96;" d file: +FHANDLETYPE Modules/_tkinter.c 98;" d file: +FIELDS Tools/c-analyzer/c_parser/info.py /^ FIELDS = ('file', 'parent', 'name', 'data')$/;" v class:HighlevelParsedItem +FIFOTYPE Lib/tarfile.py /^FIFOTYPE = b"6" # fifo special device$/;" v +FILE Lib/test/test_lib2to3/data/infinite_recursion.py /^FILE = __sFILE$/;" v +FILE Tools/freeze/regen_frozen.py /^FILE = os.path.join(DIR, 'flag.py')$/;" v +FILEDATA Lib/test/test_shutil.py /^ FILEDATA = b""$/;" v class:_ZeroCopyFileTest +FILEDATA Lib/test/test_socket.py /^ FILEDATA = b""$/;" v class:SendfileUsingSendTest +FILEIN_FILEOUT Lib/pipes.py /^FILEIN_FILEOUT = 'ff' # Must read & write real files$/;" v +FILEIN_STDOUT Lib/pipes.py /^FILEIN_STDOUT = 'f-' # Must read a real file$/;" v +FILENAME Lib/pstats.py /^ FILENAME = 'filename', 'module'$/;" v class:SortKey +FILENAME Lib/test/test_linecache.py /^FILENAME = linecache.__file__$/;" v +FILENAME Lib/test/test_pstats.py /^ FILENAME = 'filename', 'module'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +FILENAME PCbuild/urlretrieve.py /^ FILENAME = sys.argv[2]$/;" v +FILES Tools/msi/purge.py /^FILES = [$/;" v +FILESIZE Lib/test/test_shutil.py /^ FILESIZE = (10 * 1024 * 1024) # 10 MiB$/;" v class:_ZeroCopyFileTest +FILESIZE Lib/test/test_shutil.py /^ FILESIZE = 2 * 1024 * 1024$/;" v class:TestCopyFileObj +FILESIZE Lib/test/test_socket.py /^ FILESIZE = (10 * 1024 * 1024) # 10 MiB$/;" v class:SendfileUsingSendTest +FILES_KWARGS Tools/c-analyzer/cpython/__main__.py /^FILES_KWARGS = dict(excluded=_parser.EXCLUDED, nargs='*')$/;" v +FILES_PER_THREAD Lib/test/test_threadedtempfile.py /^FILES_PER_THREAD = 50$/;" v +FILETIME Lib/ctypes/wintypes.py /^class FILETIME(ctypes.Structure):$/;" c +FILE_ATTRIBUTE_ARCHIVE Lib/stat.py /^FILE_ATTRIBUTE_ARCHIVE = 32$/;" v +FILE_ATTRIBUTE_COMPRESSED Lib/stat.py /^FILE_ATTRIBUTE_COMPRESSED = 2048$/;" v +FILE_ATTRIBUTE_DEVICE Lib/stat.py /^FILE_ATTRIBUTE_DEVICE = 64$/;" v +FILE_ATTRIBUTE_DIRECTORY Lib/stat.py /^FILE_ATTRIBUTE_DIRECTORY = 16$/;" v +FILE_ATTRIBUTE_ENCRYPTED Lib/stat.py /^FILE_ATTRIBUTE_ENCRYPTED = 16384$/;" v +FILE_ATTRIBUTE_HIDDEN Lib/stat.py /^FILE_ATTRIBUTE_HIDDEN = 2$/;" v +FILE_ATTRIBUTE_INTEGRITY_STREAM Lib/stat.py /^FILE_ATTRIBUTE_INTEGRITY_STREAM = 32768$/;" v +FILE_ATTRIBUTE_INTEGRITY_STREAM Modules/_stat.c 36;" d file: +FILE_ATTRIBUTE_NORMAL Lib/stat.py /^FILE_ATTRIBUTE_NORMAL = 128$/;" v +FILE_ATTRIBUTE_NOT_CONTENT_INDEXED Lib/stat.py /^FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = 8192$/;" v +FILE_ATTRIBUTE_NO_SCRUB_DATA Lib/stat.py /^FILE_ATTRIBUTE_NO_SCRUB_DATA = 131072$/;" v +FILE_ATTRIBUTE_NO_SCRUB_DATA Modules/_stat.c 40;" d file: +FILE_ATTRIBUTE_OFFLINE Lib/stat.py /^FILE_ATTRIBUTE_OFFLINE = 4096$/;" v +FILE_ATTRIBUTE_READONLY Lib/stat.py /^FILE_ATTRIBUTE_READONLY = 1$/;" v +FILE_ATTRIBUTE_REPARSE_POINT Lib/stat.py /^FILE_ATTRIBUTE_REPARSE_POINT = 1024$/;" v +FILE_ATTRIBUTE_SPARSE_FILE Lib/stat.py /^FILE_ATTRIBUTE_SPARSE_FILE = 512$/;" v +FILE_ATTRIBUTE_SYSTEM Lib/stat.py /^FILE_ATTRIBUTE_SYSTEM = 4$/;" v +FILE_ATTRIBUTE_TEMPORARY Lib/stat.py /^FILE_ATTRIBUTE_TEMPORARY = 256$/;" v +FILE_ATTRIBUTE_VIRTUAL Lib/stat.py /^FILE_ATTRIBUTE_VIRTUAL = 65536$/;" v +FILE_INFO_BY_NAME_CLASS Include/internal/pycore_fileutils_windows.h /^} FILE_INFO_BY_NAME_CLASS;$/;" t typeref:enum:_FILE_INFO_BY_NAME_CLASS +FILE_PREFIX Lib/lib2to3/refactor.py /^ FILE_PREFIX = "fix_" # The prefix for modules with a fixer within$/;" v class:RefactoringTool +FILE_STAT_BASIC_INFORMATION Include/internal/pycore_fileutils_windows.h /^} FILE_STAT_BASIC_INFORMATION;$/;" t typeref:struct:_FILE_STAT_BASIC_INFORMATION +FILE_TIME_to_time_t_nsec Python/fileutils.c /^FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, time_t *time_out, int* nsec_out)$/;" f file: +FILL Modules/cjkcodecs/_codecs_kr.c 320;" d file: +FILL Modules/cjkcodecs/_codecs_kr.c 453;" d file: +FILLING Lib/asyncio/locks.py /^ FILLING = 'filling'$/;" v class:_BarrierState +FILTERS_RAW_1 Lib/test/test_lzma.py /^FILTERS_RAW_1 = [{"id": lzma.FILTER_LZMA2, "preset": 3}]$/;" v +FILTERS_RAW_2 Lib/test/test_lzma.py /^FILTERS_RAW_2 = [{"id": lzma.FILTER_DELTA, "dist": 2},$/;" v +FILTERS_RAW_3 Lib/test/test_lzma.py /^FILTERS_RAW_3 = [{"id": lzma.FILTER_IA64, "start_offset": 0x100},$/;" v +FILTERS_RAW_4 Lib/test/test_lzma.py /^FILTERS_RAW_4 = [{"id": lzma.FILTER_DELTA, "dist": 4},$/;" v +FILTER_ACCEPT Lib/xml/dom/NodeFilter.py /^ FILTER_ACCEPT = 1$/;" v class:NodeFilter +FILTER_ACCEPT Lib/xml/dom/expatbuilder.py /^FILTER_ACCEPT = xmlbuilder.DOMBuilderFilter.FILTER_ACCEPT$/;" v +FILTER_ACCEPT Lib/xml/dom/xmlbuilder.py /^ FILTER_ACCEPT = 1$/;" v class:DOMBuilderFilter +FILTER_DIR Lib/unittest/mock.py /^FILTER_DIR = True$/;" v +FILTER_FMT_UNIT Modules/selectmodule.c 1809;" d file: +FILTER_FMT_UNIT Modules/selectmodule.c 1816;" d file: +FILTER_INTERRUPT Lib/xml/dom/expatbuilder.py /^FILTER_INTERRUPT = xmlbuilder.DOMBuilderFilter.FILTER_INTERRUPT$/;" v +FILTER_INTERRUPT Lib/xml/dom/xmlbuilder.py /^ FILTER_INTERRUPT = 4$/;" v class:DOMBuilderFilter +FILTER_REJECT Lib/xml/dom/NodeFilter.py /^ FILTER_REJECT = 2$/;" v class:NodeFilter +FILTER_REJECT Lib/xml/dom/expatbuilder.py /^FILTER_REJECT = xmlbuilder.DOMBuilderFilter.FILTER_REJECT$/;" v +FILTER_REJECT Lib/xml/dom/xmlbuilder.py /^ FILTER_REJECT = 2$/;" v class:DOMBuilderFilter +FILTER_SKIP Lib/xml/dom/NodeFilter.py /^ FILTER_SKIP = 3$/;" v class:NodeFilter +FILTER_SKIP Lib/xml/dom/expatbuilder.py /^FILTER_SKIP = xmlbuilder.DOMBuilderFilter.FILTER_SKIP$/;" v +FILTER_SKIP Lib/xml/dom/xmlbuilder.py /^ FILTER_SKIP = 3$/;" v class:DOMBuilderFilter +FILTER_TYPE Modules/selectmodule.c 1808;" d file: +FILTER_TYPE Modules/selectmodule.c 1815;" d file: +FINALLY_END Python/compile.c /^enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END,$/;" e enum:fblocktype file: +FINALLY_TRY Python/compile.c /^enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END,$/;" e enum:fblocktype file: +FIND_AND_LOAD Python/import.c 92;" d file: +FINISHED Lib/concurrent/futures/_base.py /^FINISHED = 'FINISHED'$/;" v +FINISHED Lib/ssl.py /^ FINISHED = 20$/;" v class:_TLSMessageType +FINISHED Lib/test/test_ssl.py /^ FINISHED = 20$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +FIRST Lib/test/test_enum.py /^ FIRST = 3$/;" v class:TestVerify.test_continuous.Manual.Missing +FIRST Lib/test/test_enum.py /^ FIRST = 4$/;" v class:TestVerify.test_continuous.Manual.Incomplete +FIRST Lib/test/test_enum.py /^ FIRST = 4$/;" v class:TestVerify.test_continuous.Manual.StillIncomplete +FIRST Lib/test/test_enum.py /^ FIRST = 3$/;" v class:TestVerify.test_continuous.Manual +FIRST Lib/test/test_enum.py /^ FIRST = auto()$/;" v class:TestVerify.test_continuous.Auto +FIRST Lib/test/test_enum.py /^ FIRST = 1$/;" v class:OldTestIntFlag.Skip +FIRST Lib/tkinter/constants.py /^FIRST='first'$/;" v +FIRST_COMPLETED Lib/asyncio/tasks.py /^FIRST_COMPLETED = concurrent.futures.FIRST_COMPLETED$/;" v +FIRST_COMPLETED Lib/concurrent/futures/_base.py /^FIRST_COMPLETED = 'FIRST_COMPLETED'$/;" v +FIRST_EXCEPTION Lib/asyncio/tasks.py /^FIRST_EXCEPTION = concurrent.futures.FIRST_EXCEPTION$/;" v +FIRST_EXCEPTION Lib/concurrent/futures/_base.py /^FIRST_EXCEPTION = 'FIRST_EXCEPTION'$/;" v +FIXEDTEST_SIZE Lib/test/test_zipfile/test_core.py /^FIXEDTEST_SIZE = 1000$/;" v +FIXED_TYPE Tools/c-analyzer/c_parser/info.py /^FIXED_TYPE = _misc.Labeled('FIXED_TYPE')$/;" v +FIXER_DIR Lib/test/test_lib2to3/test_refactor.py /^FIXER_DIR = os.path.join(TEST_DATA_DIR, "fixers")$/;" v +FIX_FORMAT Modules/_testbuffer.c 19;" d file: +FIX_PREALLOC_SIZE Objects/stringlib/split.h 51;" d +FI_FREELIST_MAXLEN Modules/_asynciomodule.c 20;" d file: +FLAGS Lib/json/decoder.py /^FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL$/;" v +FLAGS Lib/re/_parser.py /^FLAGS = {$/;" v +FLAGS_FMT_UNIT Modules/selectmodule.c 1811;" d file: +FLAGS_FMT_UNIT Modules/selectmodule.c 1818;" d file: +FLAGS_TYPE Modules/selectmodule.c 1810;" d file: +FLAGS_TYPE Modules/selectmodule.c 1817;" d file: +FLAG_COMPAT Python/getargs.c 51;" d file: +FLAG_REF Python/marshal.c 70;" d file: +FLAG_REF Tools/build/umarshal.py /^FLAG_REF = 0x80 # with a type, add obj to index$/;" v +FLAG_SIZE_T Python/getargs.c 52;" d file: +FLAG_SIZE_T Python/modsupport.c 8;" d file: +FLAT Lib/tkinter/constants.py /^FLAT='flat'$/;" v +FLOAT Lib/ctypes/wintypes.py /^FLOAT = ctypes.c_float$/;" v +FLOAT Lib/pickle.py /^FLOAT = b'F' # push float object; decimal string argument$/;" v +FLOAT Modules/_pickle.c /^ FLOAT = 'F',$/;" e enum:opcode file: +FLOAT Modules/_pickle.c 42;" d file: +FLOAT Tools/build/umarshal.py /^ FLOAT = ord('f')$/;" v class:Type +FLOAT_ALIGN Modules/_struct.c 90;" d file: +FLOAT_AS_INTEGER_RATIO_METHODDEF Objects/clinic/floatobject.c.h 188;" d +FLOAT_CONJUGATE_METHODDEF Objects/clinic/floatobject.c.h 123;" d +FLOAT_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 1035;" d +FLOAT_FORMATBUFLEN Python/pystrtod.c 652;" d file: +FLOAT_FROMHEX_METHODDEF Objects/clinic/floatobject.c.h 169;" d +FLOAT_HEX_METHODDEF Objects/clinic/floatobject.c.h 146;" d +FLOAT_IS_INTEGER_METHODDEF Objects/clinic/floatobject.c.h 17;" d +FLOAT_MAX Lib/test/test_math.py /^FLOAT_MAX = sys.float_info.max$/;" v +FLOAT_MIN Lib/test/test_math.py /^FLOAT_MIN = sys.float_info.min$/;" v +FLOAT___CEIL___METHODDEF Objects/clinic/floatobject.c.h 71;" d +FLOAT___FLOOR___METHODDEF Objects/clinic/floatobject.c.h 53;" d +FLOAT___FORMAT___METHODDEF Objects/clinic/floatobject.c.h 303;" d +FLOAT___GETFORMAT___METHODDEF Objects/clinic/floatobject.c.h 266;" d +FLOAT___GETNEWARGS___METHODDEF Objects/clinic/floatobject.c.h 239;" d +FLOAT___ROUND___METHODDEF Objects/clinic/floatobject.c.h 91;" d +FLOAT___TRUNC___METHODDEF Objects/clinic/floatobject.c.h 35;" d +FLOCKFILE Objects/fileobject.c 11;" d file: +FLOCKFILE Objects/fileobject.c 15;" d file: +FLOW_AND_LINE_RECORDERS Lib/test/test_monitoring.py /^FLOW_AND_LINE_RECORDERS = JumpRecorder, BranchRecorder, LineRecorder, ExceptionRecorder, ReturnRecorder$/;" v +FLOW_CONTROL_HIGH_WATER_SSL_READ Lib/asyncio/constants.py /^FLOW_CONTROL_HIGH_WATER_SSL_READ = 256 # KiB$/;" v +FLOW_CONTROL_HIGH_WATER_SSL_WRITE Lib/asyncio/constants.py /^FLOW_CONTROL_HIGH_WATER_SSL_WRITE = 512 # KiB$/;" v +FLSLOT Objects/typeobject.c 9369;" d file: +FLSLOT Objects/typeobject.c 9384;" d file: +FLUFL Lib/test/test_enum.py /^ FLUFL = 'Barry Warsaw'$/;" v class:Name +FLUFLTests Lib/test/test_flufl.py /^class FLUFLTests(unittest.TestCase):$/;" c +FLUSHING Lib/asyncio/sslproto.py /^ FLUSHING = "FLUSHING"$/;" v class:SSLProtocolState +FNFCIALLOC PC/_msi.c /^static FNFCIALLOC(cb_alloc)$/;" f file: +FNFCICLOSE PC/_msi.c /^static FNFCICLOSE(cb_close)$/;" f file: +FNFCIDELETE PC/_msi.c /^static FNFCIDELETE(cb_delete)$/;" f file: +FNFCIFILEPLACED PC/_msi.c /^static FNFCIFILEPLACED(cb_fileplaced)$/;" f file: +FNFCIFREE PC/_msi.c /^static FNFCIFREE(cb_free)$/;" f file: +FNFCIGETNEXTCABINET PC/_msi.c /^static FNFCIGETNEXTCABINET(cb_getnextcabinet)$/;" f file: +FNFCIGETOPENINFO PC/_msi.c /^static FNFCIGETOPENINFO(cb_getopeninfo)$/;" f file: +FNFCIGETTEMPFILE PC/_msi.c /^static FNFCIGETTEMPFILE(cb_gettempfile)$/;" f file: +FNFCIOPEN PC/_msi.c /^static FNFCIOPEN(cb_open)$/;" f file: +FNFCIREAD PC/_msi.c /^static FNFCIREAD(cb_read)$/;" f file: +FNFCISEEK PC/_msi.c /^static FNFCISEEK(cb_seek)$/;" f file: +FNFCISTATUS PC/_msi.c /^static FNFCISTATUS(cb_status)$/;" f file: +FNFCIWRITE PC/_msi.c /^static FNFCIWRITE(cb_write)$/;" f file: +FNTLEINTRTest Lib/test/_test_eintr.py /^class FNTLEINTRTest(EINTRBaseTest):$/;" c +FOG_C Lib/test/test_enum.py /^ FOG_C = auto()$/;" v class:HeadlightsC +FOG_K Lib/test/test_enum.py /^ FOG_K = auto()$/;" v class:HeadlightsK +FOLD Lib/test/test_zoneinfo/test_zoneinfo.py /^ FOLD = 1$/;" v class:TZStrTest +FORBIDDEN Lib/http/__init__.py /^ FORBIDDEN = (403, 'Forbidden',$/;" v class:HTTPStatus +FORBIDDEN Lib/test/test_httplib.py /^ FORBIDDEN = (403, 'Forbidden',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +FORCE Lib/idlelib/autocomplete.py /^FORCE = True, False, True, None # Control-Space.$/;" v +FORCE_SWITCHING Include/internal/pycore_gil.h 20;" d +FORCE_SWITCHING Include/internal/pycore_gil.h 21;" d +FORMAT Lib/inspect.py /^ FORMAT = 0x4$/;" v class:BufferFlags +FORMATS Mac/Tools/plistlib_generate_testdata.py /^FORMATS=[$/;" v +FORMATS Tools/c-analyzer/c_analyzer/__main__.py /^FORMATS = {$/;" v +FORMATS Tools/c-analyzer/c_parser/__main__.py /^FORMATS = {$/;" v +FORMAT_ALONE Modules/_lzmamodule.c /^ FORMAT_ALONE,$/;" e enum:__anon294 file: +FORMAT_AUTO Modules/_lzmamodule.c /^ FORMAT_AUTO,$/;" e enum:__anon294 file: +FORMAT_BUFFER_SIZE Objects/stringlib/find.h 119;" d +FORMAT_BUFFER_SIZE Objects/stringlib/find.h 83;" d +FORMAT_EXCEPTION Modules/posixmodule.c 1161;" d file: +FORMAT_RAW Modules/_lzmamodule.c /^ FORMAT_RAW,$/;" e enum:__anon294 file: +FORMAT_READ Objects/unicodeobject.c 13873;" d file: +FORMAT_READ Objects/unicodeobject.c 14039;" d file: +FORMAT_VALUE Include/opcode.h 110;" d +FORMAT_VALUE Lib/dis.py /^FORMAT_VALUE = opmap['FORMAT_VALUE']$/;" v +FORMAT_VALUE_CONVERTERS Lib/dis.py /^FORMAT_VALUE_CONVERTERS = ($/;" v +FORMAT_XZ Modules/_lzmamodule.c /^ FORMAT_XZ,$/;" e enum:__anon294 file: +FORTH Lib/test/test_enum.py /^ FORTH = 13$/;" v class:TestVerify.test_continuous.Manual.Missing +FORTH Lib/test/test_enum.py /^ FORTH = 32$/;" v class:TestVerify.test_continuous.Manual.StillIncomplete +FORTH Lib/test/test_enum.py /^ FORTH = 64$/;" v class:TestVerify.test_continuous.Manual.Incomplete +FORTH Lib/test/test_enum.py /^ FORTH = 6$/;" v class:TestVerify.test_continuous.Manual +FORTH Lib/test/test_enum.py /^ FORTH = auto()$/;" v class:TestVerify.test_continuous.Auto +FORWARD_CYCLE Modules/_decimal/libmpdec/transpose.h /^enum {FORWARD_CYCLE, BACKWARD_CYCLE};$/;" e enum:__anon344 +FORWARD_X Lib/telnetlib.py /^FORWARD_X = bytes([49]) # FORWARD_X$/;" v +FOR_ITER Include/opcode.h 54;" d +FOR_ITER Lib/dis.py /^FOR_ITER = opmap['FOR_ITER']$/;" v +FOR_ITER_GEN Include/opcode.h 190;" d +FOR_ITER_LIST Include/opcode.h 187;" d +FOR_ITER_RANGE Include/opcode.h 189;" d +FOR_ITER_TUPLE Include/opcode.h 188;" d +FOR_LOOP Python/compile.c /^enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END,$/;" e enum:fblocktype file: +FOR_TARGETS Parser/pegen.h /^ FOR_TARGETS$/;" e enum:__anon667 +FOUND Lib/http/__init__.py /^ FOUND = 302, 'Found', 'Object moved temporarily -- see URI list'$/;" v class:HTTPStatus +FOUND Lib/test/test_httplib.py /^ FOUND = 302, 'Found', 'Object moved temporarily -- see URI list'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +FOUND_GARBAGE Lib/test/libregrtest/runtest.py /^FOUND_GARBAGE = []$/;" v +FOUND_METHOD Modules/_decimal/tests/deccheck.py /^ FOUND_METHOD = False$/;" v +FOUR Lib/test/test_enum.py /^ FOUR = 4$/;" v class:MiscTestCase.test_doc_4.Quadruple +FOUR Lib/test/test_enum.py /^ FOUR = 4$/;" v class:TestSpecial.test_custom_flag_bitwise.MyIntFlag +FOUR Lib/test/test_enum.py /^ FOUR = 4$/;" v class:TestSpecial.test_int_flags_copy.MyIntFlag +FOUR Lib/test/test_enum.py /^ FOUR = auto()$/;" v class:OldTestFlag.test_number_reset_and_order_cleanup.Confused +FOURTH Python/ceval_macros.h 205;" d +FPTest Lib/test/test_array.py /^class FPTest(NumberTest):$/;" c +FRAME Lib/pickle.py /^FRAME = b'\\x95' # indicate the beginning of a new frame$/;" v +FRAME Modules/_pickle.c /^ FRAME = '\\x95',$/;" e enum:opcode file: +FRAME_CLEARED Include/internal/pycore_frame.h /^ FRAME_CLEARED = 4$/;" e enum:_framestate +FRAME_COMPLETED Include/internal/pycore_frame.h /^ FRAME_COMPLETED = 1,$/;" e enum:_framestate +FRAME_CREATED Include/internal/pycore_frame.h /^ FRAME_CREATED = -2,$/;" e enum:_framestate +FRAME_EXECUTING Include/internal/pycore_frame.h /^ FRAME_EXECUTING = 0,$/;" e enum:_framestate +FRAME_HEADER_SIZE Modules/_pickle.c /^ FRAME_HEADER_SIZE = 9$/;" e enum:__anon447 file: +FRAME_INFO_OPTIMIZED_OUT Tools/gdb/libpython.py /^FRAME_INFO_OPTIMIZED_OUT = '(frame information optimized out)'$/;" v +FRAME_OWNED_BY_CSTACK Include/internal/pycore_frame.h /^ FRAME_OWNED_BY_CSTACK = 3,$/;" e enum:_frameowner +FRAME_OWNED_BY_CSTACK Tools/gdb/libpython.py /^FRAME_OWNED_BY_CSTACK = 3$/;" v +FRAME_OWNED_BY_FRAME_OBJECT Include/internal/pycore_frame.h /^ FRAME_OWNED_BY_FRAME_OBJECT = 2,$/;" e enum:_frameowner +FRAME_OWNED_BY_GENERATOR Include/internal/pycore_frame.h /^ FRAME_OWNED_BY_GENERATOR = 1,$/;" e enum:_frameowner +FRAME_OWNED_BY_THREAD Include/internal/pycore_frame.h /^ FRAME_OWNED_BY_THREAD = 0,$/;" e enum:_frameowner +FRAME_SIZE_MIN Lib/test/pickletester.py /^ FRAME_SIZE_MIN = 4$/;" v class:AbstractPickleTests +FRAME_SIZE_MIN Modules/_pickle.c /^ FRAME_SIZE_MIN = 4,$/;" e enum:__anon447 file: +FRAME_SIZE_TARGET Lib/test/pickletester.py /^ FRAME_SIZE_TARGET = 64 * 1024$/;" v class:AbstractPickleTests +FRAME_SIZE_TARGET Modules/_pickle.c /^ FRAME_SIZE_TARGET = 64 * 1024,$/;" e enum:__anon447 file: +FRAME_SPECIALS_SIZE Include/internal/pycore_frame.h 99;" d +FRAME_SUSPENDED Include/internal/pycore_frame.h /^ FRAME_SUSPENDED = -1,$/;" e enum:_framestate +FREE Include/internal/pycore_symtable.h 137;" d +FREE Modules/expat/xmlparse.c 714;" d file: +FREE Python/dtoa.c 132;" d file: +FREECAST Modules/_tkinter.c 298;" d file: +FREELIST_FINALIZED Objects/tupleobject.c 1127;" d file: +FREELIST_FINALIZED Objects/tupleobject.c 1231;" d file: +FREEZE Tools/freeze/test/freeze.py /^FREEZE = os.path.join(TOOL_ROOT, 'freeze.py')$/;" v +FREE_FUNC Lib/test/test_code.py /^ FREE_FUNC = freefunc(myfree)$/;" v class:CodeLocationTest +FREE_INDEX Lib/test/test_code.py /^ FREE_INDEX = RequestCodeExtraIndex(FREE_FUNC)$/;" v class:CodeLocationTest +FREE_LOCK Python/pystate.c 515;" d file: +FREE_LOCK Python/pystate.c 526;" d file: +FRIDAY Lib/calendar.py /^ FRIDAY = 4$/;" v class:Day +FRIDAY Lib/test/test_enum.py /^ FRIDAY = auto()$/;" v class:TestInternals.test_multiple_auto_on_line.Hah +FROM_ Lib/test/test_mailbox.py /^FROM_ = "From some.body@dummy.domain Sat Jul 24 13:43:35 2004\\n"$/;" v +FROM_BASE64 Objects/unicodeobject.c 4150;" d file: +FROM_BASE64 Objects/unicodeobject.c 4529;" d file: +FROM_GC Modules/gcmodule.c 75;" d file: +FROM_PTR Modules/_testinternalcapi.c 217;" d file: +FROM_PTR Python/tracemalloc.c 27;" d file: +FROM_STRING Python/initconfig.c 250;" d file: +FROM_STRING Python/initconfig.c 291;" d file: +FROM_WSTRING Python/initconfig.c 1061;" d file: +FROM_WSTRING Python/initconfig.c 1143;" d file: +FROZEN Lib/tomllib/_parser.py /^ FROZEN = 0$/;" v class:Flags +FROZEN Tools/build/freeze_modules.py /^FROZEN = [$/;" v +FROZENSET Lib/pickle.py /^FROZENSET = b'\\x91' # build frozenset from topmost stack items$/;" v +FROZENSET Modules/_pickle.c /^ FROZENSET = '\\x91',$/;" e enum:opcode file: +FROZENSET Tools/build/umarshal.py /^ FROZENSET = ord('>')$/;" v class:Type +FROZEN_BAD_NAME Python/import.c /^ FROZEN_BAD_NAME, \/\/ The given module name wasn't valid.$/;" e enum:__anon685 file: +FROZEN_COMMENT_C Tools/build/deepfreeze.py /^FROZEN_COMMENT_C = "\/* Auto-generated by Programs\/_freeze_module.c *\/"$/;" v +FROZEN_COMMENT_PY Tools/build/deepfreeze.py /^FROZEN_COMMENT_PY = "\/* Auto-generated by Programs\/_freeze_module.py *\/"$/;" v +FROZEN_DATA_LINE Tools/build/deepfreeze.py /^FROZEN_DATA_LINE = r"\\s*(\\d+,\\s*)+\\s*"$/;" v +FROZEN_DISABLED Python/import.c /^ FROZEN_DISABLED, \/\/ -X frozen_modules=off (and not essential)$/;" e enum:__anon685 file: +FROZEN_EXCLUDED Python/import.c /^ FROZEN_EXCLUDED, \/* The PyImport_FrozenModules entry has NULL "code"$/;" e enum:__anon685 file: +FROZEN_FILE Tools/build/freeze_modules.py /^FROZEN_FILE = os.path.join(ROOT_DIR, 'Python', 'frozen.c')$/;" v +FROZEN_INVALID Python/import.c /^ FROZEN_INVALID, \/* The PyImport_FrozenModules entry is bogus$/;" e enum:__anon685 file: +FROZEN_MODULES_DIR Tools/build/freeze_modules.py /^FROZEN_MODULES_DIR = os.path.join(ROOT_DIR, 'Python', 'frozen_modules')$/;" v +FROZEN_NOT_FOUND Python/import.c /^ FROZEN_NOT_FOUND, \/\/ It wasn't in PyImport_FrozenModules.$/;" e enum:__anon685 file: +FROZEN_OKAY Python/import.c /^ FROZEN_OKAY,$/;" e enum:__anon685 file: +FROZEN_ONLY Tools/build/freeze_modules.py /^FROZEN_ONLY = os.path.join(ROOT_DIR, 'Tools', 'freeze', 'flag.py')$/;" v +FS Lib/curses/ascii.py /^GS = 0x1d # ^]$/;" v +FS Lib/test/test_sys.py /^ class FS(frozenset):$/;" c function:SizeofTest.test_slots +FSEncodingTests Lib/test/test_os.py /^class FSEncodingTests(unittest.TestCase):$/;" c +FSTAR_UINT128_STRUCT_ENDIANNESS_H Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h 5;" d +FSTAT Modules/posixmodule.c 489;" d file: +FSTAT Modules/posixmodule.c 494;" d file: +FSTAT Modules/posixmodule.c 499;" d file: +FSTATAT_DIR_FD_CONVERTER Modules/posixmodule.c 2708;" d file: +FSTATAT_DIR_FD_CONVERTER Modules/posixmodule.c 2710;" d file: +FSTRING_END Include/internal/pycore_token.h 79;" d +FSTRING_END Lib/token.py /^FSTRING_END = 63$/;" v +FSTRING_MIDDLE Include/internal/pycore_token.h 78;" d +FSTRING_MIDDLE Lib/token.py /^FSTRING_MIDDLE = 62$/;" v +FSTRING_START Include/internal/pycore_token.h 77;" d +FSTRING_START Lib/token.py /^FSTRING_START = 61$/;" v +FS_NONASCII Lib/test/support/os_helper.py /^ FS_NONASCII = character$/;" v +FS_NONASCII Lib/test/support/os_helper.py /^FS_NONASCII = ''$/;" v +FStar_UInt128_add Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_add(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_add_mod Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_add_mod(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_add_u64_shift_left Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_add_u64_shift_left(uint64_t hi, uint64_t lo, uint32_t s)$/;" f +FStar_UInt128_add_u64_shift_left_respec Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_add_u64_shift_left_respec(uint64_t hi, uint64_t lo, uint32_t s)$/;" f +FStar_UInt128_add_u64_shift_right Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_add_u64_shift_right(uint64_t hi, uint64_t lo, uint32_t s)$/;" f +FStar_UInt128_add_u64_shift_right_respec Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_add_u64_shift_right_respec(uint64_t hi, uint64_t lo, uint32_t s)$/;" f +FStar_UInt128_add_underspec Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_add_underspec(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_carry Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_carry(uint64_t a, uint64_t b)$/;" f +FStar_UInt128_constant_time_carry Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_constant_time_carry(uint64_t a, uint64_t b)$/;" f +FStar_UInt128_eq Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline bool FStar_UInt128_eq(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_eq_mask Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_eq_mask(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_gt Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline bool FStar_UInt128_gt(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_gte Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline bool FStar_UInt128_gte(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_gte_mask Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_gte_mask(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_logand Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_logand(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_lognot Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline FStar_UInt128_uint128 FStar_UInt128_lognot(FStar_UInt128_uint128 a)$/;" f +FStar_UInt128_logor Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_logor(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_logxor Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_logxor(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_lt Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline bool FStar_UInt128_lt(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_lte Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline bool FStar_UInt128_lte(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_mul32 Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline FStar_UInt128_uint128 FStar_UInt128_mul32(uint64_t x, uint32_t y)$/;" f +FStar_UInt128_mul_wide Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline FStar_UInt128_uint128 FStar_UInt128_mul_wide(uint64_t x, uint64_t y)$/;" f +FStar_UInt128_shift_left Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_shift_left(FStar_UInt128_uint128 a, uint32_t s)$/;" f +FStar_UInt128_shift_left_large Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_shift_left_large(FStar_UInt128_uint128 a, uint32_t s)$/;" f +FStar_UInt128_shift_left_small Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_shift_left_small(FStar_UInt128_uint128 a, uint32_t s)$/;" f +FStar_UInt128_shift_right Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_shift_right(FStar_UInt128_uint128 a, uint32_t s)$/;" f +FStar_UInt128_shift_right_large Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_shift_right_large(FStar_UInt128_uint128 a, uint32_t s)$/;" f +FStar_UInt128_shift_right_small Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_shift_right_small(FStar_UInt128_uint128 a, uint32_t s)$/;" f +FStar_UInt128_sub Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_sub(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_sub_mod Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_sub_mod(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_sub_mod_impl Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_sub_mod_impl(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_sub_underspec Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^FStar_UInt128_sub_underspec(FStar_UInt128_uint128 a, FStar_UInt128_uint128 b)$/;" f +FStar_UInt128_u32_32 Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static uint32_t FStar_UInt128_u32_32 = (uint32_t)32U;$/;" v +FStar_UInt128_u32_64 Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static uint32_t FStar_UInt128_u32_64 = (uint32_t)64U;$/;" v +FStar_UInt128_u32_combine Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_u32_combine(uint64_t hi, uint64_t lo)$/;" f +FStar_UInt128_u32_combine_ Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_u32_combine_(uint64_t hi, uint64_t lo)$/;" f +FStar_UInt128_u64_mod_32 Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_u64_mod_32(uint64_t a)$/;" f +FStar_UInt128_uint128 Modules/_hacl/include/krml/types.h /^} FStar_UInt128_uint128, uint128_t;$/;" t typeref:struct:FStar_UInt128_uint128_s +FStar_UInt128_uint128_s Modules/_hacl/include/krml/types.h /^typedef struct FStar_UInt128_uint128_s {$/;" s +FStar_UInt128_uint128_to_uint64 Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline uint64_t FStar_UInt128_uint128_to_uint64(FStar_UInt128_uint128 a)$/;" f +FStar_UInt128_uint64_to_uint128 Modules/_hacl/include/krml/FStar_UInt128_Verified.h /^static inline FStar_UInt128_uint128 FStar_UInt128_uint64_to_uint128(uint64_t a)$/;" f +FStar_UInt16_eq_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint16_t FStar_UInt16_eq_mask(uint16_t a, uint16_t b)$/;" f +FStar_UInt16_gte_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint16_t FStar_UInt16_gte_mask(uint16_t a, uint16_t b)$/;" f +FStar_UInt32_eq_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint32_t FStar_UInt32_eq_mask(uint32_t a, uint32_t b)$/;" f +FStar_UInt32_gte_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint32_t FStar_UInt32_gte_mask(uint32_t a, uint32_t b)$/;" f +FStar_UInt64_eq_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint64_t FStar_UInt64_eq_mask(uint64_t a, uint64_t b)$/;" f +FStar_UInt64_gte_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint64_t FStar_UInt64_gte_mask(uint64_t a, uint64_t b)$/;" f +FStar_UInt8_eq_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint8_t FStar_UInt8_eq_mask(uint8_t a, uint8_t b)$/;" f +FStar_UInt8_gte_mask Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h /^static inline uint8_t FStar_UInt8_gte_mask(uint8_t a, uint8_t b)$/;" f +FTP Lib/ftplib.py /^class FTP:$/;" c +FTPHandler Lib/urllib/request.py /^class FTPHandler(BaseHandler):$/;" c +FTP_HOST Lib/test/test_urllib2net.py /^ FTP_HOST = 'ftp:\/\/www.pythontest.net\/'$/;" v class:TimeoutTest +FTP_PORT Lib/ftplib.py /^FTP_PORT = 21$/;" v +FTP_TLS Lib/ftplib.py /^ class FTP_TLS(FTP):$/;" c +FULL Lib/inspect.py /^ FULL = INDIRECT | WRITABLE | FORMAT$/;" v class:BufferFlags +FULL_RO Lib/inspect.py /^ FULL_RO = INDIRECT | FORMAT$/;" v class:BufferFlags +FUNC1 Modules/mathmodule.c 1065;" d file: +FUNC1A Modules/mathmodule.c 1071;" d file: +FUNC2 Modules/mathmodule.c 1077;" d file: +FUNCFLAG_CDECL Modules/_ctypes/ctypes.h 321;" d +FUNCFLAG_HRESULT Modules/_ctypes/ctypes.h 322;" d +FUNCFLAG_PYTHONAPI Modules/_ctypes/ctypes.h 323;" d +FUNCFLAG_STDCALL Modules/_ctypes/ctypes.h 320;" d +FUNCFLAG_USE_ERRNO Modules/_ctypes/ctypes.h 324;" d +FUNCFLAG_USE_LASTERROR Modules/_ctypes/ctypes.h 325;" d +FUNCNAME_PATTERN Python/dynload_hpux.c 11;" d file: +FUNCNAME_PATTERN Python/dynload_hpux.c 13;" d file: +FUNCS Modules/_ctypes/_ctypes_test.c /^} FUNCS;$/;" t typeref:struct:__anon511 file: +FUNCTION Tools/c-analyzer/c_parser/info.py /^ FUNCTION = 'function'$/;" v class:KIND +FUNCTION_KEYS Lib/idlelib/config_key.py /^FUNCTION_KEYS = ('F1', 'F2' ,'F3' ,'F4' ,'F5' ,'F6',$/;" v +FUNC_MAX_WATCHERS Include/internal/pycore_function.h 11;" d +FUNC_NAME Lib/test/test_cppext/extension.cpp 254;" d file: +FUNLOCKFILE Objects/fileobject.c 12;" d file: +FUNLOCKFILE Objects/fileobject.c 16;" d file: +FUTIMENSAT_DIR_FD_CONVERTER Modules/posixmodule.c 6017;" d file: +FUTIMENSAT_DIR_FD_CONVERTER Modules/posixmodule.c 6019;" d file: +FUTURE_ABSOLUTE_IMPORT Include/cpython/compile.h 59;" d +FUTURE_ANNOTATIONS Include/cpython/compile.h 65;" d +FUTURE_BARRY_AS_BDFL Include/cpython/compile.h 63;" d +FUTURE_COMMON_GETSETLIST Modules/_asynciomodule.c 1509;" d file: +FUTURE_DIVISION Include/cpython/compile.h 58;" d +FUTURE_GENERATORS Include/cpython/compile.h 57;" d +FUTURE_GENERATOR_STOP Include/cpython/compile.h 64;" d +FUTURE_NESTED_SCOPES Include/cpython/compile.h 56;" d +FUTURE_PRINT_FUNCTION Include/cpython/compile.h 61;" d +FUTURE_UNICODE_LITERALS Include/cpython/compile.h 62;" d +FUTURE_WITH_STATEMENT Include/cpython/compile.h 60;" d +FVC_ASCII Include/ceval.h 155;" d +FVC_MASK Include/ceval.h 151;" d +FVC_NONE Include/ceval.h 152;" d +FVC_REPR Include/ceval.h 154;" d +FVC_STR Include/ceval.h 153;" d +FVS_HAVE_SPEC Include/ceval.h 157;" d +FVS_MASK Include/ceval.h 156;" d +FWS Lib/email/header.py /^FWS = ' \\t'$/;" v +FW_PREFIX Mac/BuildScript/build-installer.py /^FW_PREFIX = ["Library", "Frameworks", "Python.framework"]$/;" v +FW_SSL_DIRECTORY Mac/BuildScript/build-installer.py /^FW_SSL_DIRECTORY = "--undefined--" # initialized in parseOptions$/;" v +FW_VERSION_PREFIX Mac/BuildScript/build-installer.py /^FW_VERSION_PREFIX = "--undefined--" # initialized in parseOptions$/;" v +F_ALT Include/internal/pycore_format.h 21;" d +F_BLANK Include/internal/pycore_format.h 20;" d +F_BOOL Modules/overlapped.c 29;" d file: +F_CONTIGUOUS Lib/inspect.py /^ F_CONTIGUOUS = 0x40 | STRIDES$/;" v class:BufferFlags +F_DWORD Modules/_winapi.c 65;" d file: +F_DWORD Modules/overlapped.c 28;" d file: +F_ERROR Python/hamt.c /^typedef enum {F_ERROR, F_NOT_FOUND, F_FOUND} hamt_find_t;$/;" e enum:__anon677 file: +F_ESCTHROUGHOUT Modules/cjkcodecs/_codecs_iso2022.c 95;" d file: +F_FOUND Python/hamt.c /^typedef enum {F_ERROR, F_NOT_FOUND, F_FOUND} hamt_find_t;$/;" e enum:__anon677 file: +F_HANDLE Modules/_multiprocessing/multiprocessing.h 67;" d +F_HANDLE Modules/_multiprocessing/multiprocessing.h 72;" d +F_HANDLE Modules/_winapi.c 64;" d file: +F_HANDLE Modules/overlapped.c 26;" d file: +F_INTMAX Objects/unicodeobject.c 2397;" d file: +F_LJUST Include/internal/pycore_format.h 18;" d +F_LONG Objects/unicodeobject.c 2393;" d file: +F_LONGLONG Objects/unicodeobject.c 2394;" d file: +F_NOT_FOUND Python/hamt.c /^typedef enum {F_ERROR, F_NOT_FOUND, F_FOUND} hamt_find_t;$/;" e enum:__anon677 file: +F_OK Modules/posixmodule.c 3124;" d file: +F_POINTER Modules/_multiprocessing/multiprocessing.h 57;" d +F_POINTER Modules/_multiprocessing/multiprocessing.h 60;" d +F_POINTER Modules/_winapi.c 54;" d file: +F_POINTER Modules/_winapi.c 60;" d file: +F_POINTER Modules/overlapped.c 19;" d file: +F_POINTER Modules/overlapped.c 22;" d file: +F_PTRDIFF Objects/unicodeobject.c 2396;" d file: +F_PY_TO_S Modules/_testcapi/long.c 37;" d file: +F_PY_TO_S Modules/_testcapi/long.c 52;" d file: +F_PY_TO_S Modules/_testcapi/long.c 65;" d file: +F_PY_TO_S Modules/_testcapi/long.c 80;" d file: +F_PY_TO_U Modules/_testcapi/long.c 39;" d file: +F_PY_TO_U Modules/_testcapi/long.c 54;" d file: +F_PY_TO_U Modules/_testcapi/long.c 67;" d file: +F_PY_TO_U Modules/_testcapi/long.c 82;" d file: +F_SEM_HANDLE Modules/_multiprocessing/multiprocessing.h 69;" d +F_SEM_HANDLE Modules/_multiprocessing/multiprocessing.h 74;" d +F_SHIFTED Modules/cjkcodecs/_codecs_iso2022.c 94;" d file: +F_SIGN Include/internal/pycore_format.h 19;" d +F_SIZE Objects/unicodeobject.c 2395;" d file: +F_STRING_CHUNK Tools/peg_generator/pegen/c_generator.py /^ F_STRING_CHUNK = 7$/;" v class:NodeTypes +F_S_TO_PY Modules/_testcapi/long.c 36;" d file: +F_S_TO_PY Modules/_testcapi/long.c 51;" d file: +F_S_TO_PY Modules/_testcapi/long.c 64;" d file: +F_S_TO_PY Modules/_testcapi/long.c 79;" d file: +F_UINT Modules/overlapped.c 30;" d file: +F_ULONG_PTR Modules/overlapped.c 27;" d file: +F_U_TO_PY Modules/_testcapi/long.c 38;" d file: +F_U_TO_PY Modules/_testcapi/long.c 53;" d file: +F_U_TO_PY Modules/_testcapi/long.c 66;" d file: +F_U_TO_PY Modules/_testcapi/long.c 81;" d file: +F_ZERO Include/internal/pycore_format.h 22;" d +Factory Lib/test/test_sqlite3/test_factory.py /^ class Factory(sqlite.Connection):$/;" c function:ConnectionFactoryTests.test_connection_factory_as_positional_arg +Factory Lib/test/test_sqlite3/test_factory.py /^ class Factory(sqlite.Connection):$/;" c function:ConnectionFactoryTests.test_connection_factory_relayed_call +FactoryFunctionErrors Lib/test/test_ipaddress.py /^class FactoryFunctionErrors(BaseTestCase):$/;" c +FactoryTests Lib/test/test_importlib/test_spec.py /^class FactoryTests:$/;" c +FailNegTest Lib/test/test_statistics.py /^class FailNegTest(unittest.TestCase):$/;" c +FailOnClose Lib/test/test_collections.py /^ class FailOnClose(AsyncGenerator):$/;" c function:TestOneTrickPonyABCs.test_AsyncGenerator +FailOnClose Lib/test/test_collections.py /^ class FailOnClose(Generator):$/;" c function:TestOneTrickPonyABCs.test_Generator +FailedImport Lib/test/test___all__.py /^class FailedImport(RuntimeError):$/;" c +FailedLoader Lib/test/test_importlib/test_spec.py /^ class FailedLoader(TestLoader):$/;" c function:ModuleSpecMethodsTests.test_load_failed +FailedLoader Lib/test/test_importlib/test_spec.py /^ class FailedLoader(TestLoader):$/;" c function:ModuleSpecMethodsTests.test_load_failed_removed +FailingForkProcess Lib/test/_test_multiprocessing.py /^ class FailingForkProcess:$/;" c function:TestPoolNotLeakOnFailure.test_release_unused_processes +FailingInitializerMixin Lib/test/test_concurrent_futures/test_init.py /^class FailingInitializerMixin(ExecutorMixin):$/;" c +FailingMessageClass Lib/test/test_xmlrpc.py /^class FailingMessageClass(http.client.HTTPMessage):$/;" c +FailingQueue Lib/test/test_queue.py /^ class FailingQueue(Queue):$/;" c function:FailingQueueTest.setUp +FailingQueueException Lib/test/test_queue.py /^class FailingQueueException(Exception): pass$/;" c +FailingQueueTest Lib/test/test_queue.py /^class FailingQueueTest(BlockingTestMixin):$/;" c +FailingServerTestCase Lib/test/test_xmlrpc.py /^class FailingServerTestCase(unittest.TestCase):$/;" c +FailingUserDict Lib/test/mapping_tests.py /^ class FailingUserDict:$/;" c function:BasicTestMappingProtocol.test_update +FailingUserDict Lib/test/test_dict.py /^ class FailingUserDict:$/;" c function:DictTest.test_update +Failure Lib/test/test_isinstance.py /^ class Failure(object):$/;" c function:TestIsInstanceIsSubclass.test_infinite_recursion_via_bases_tuple +FailurePage_Show Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void FailurePage_Show() {$/;" f class:PythonBootstrapperApplication file: +FailureTestCase Lib/test/test_with.py /^class FailureTestCase(unittest.TestCase):$/;" c +FakeBytes Lib/test/test_format.py /^ class FakeBytes(object):$/;" c function:FormatTest.test_bytes_and_bytearray_format +FakeClinic Lib/test/test_clinic.py /^class FakeClinic:$/;" c +FakeCompressor Lib/test/test_gzip.py /^ class FakeCompressor:$/;" c function:TestGzip.test_flush_modes +FakeConverter Lib/test/test_clinic.py /^class FakeConverter:$/;" c +FakeConverterFactory Lib/test/test_clinic.py /^class FakeConverterFactory:$/;" c +FakeConvertersDict Lib/test/test_clinic.py /^class FakeConvertersDict:$/;" c +FakeCoro Lib/test/test_asyncio/test_pep492.py /^class FakeCoro:$/;" c +FakeCursor Lib/test/test_sqlite3/test_factory.py /^ class FakeCursor(str):$/;" c function:RowFactoryTests.test_fake_cursor_class +FakeFTPMixin Lib/test/test_urllib.py /^class FakeFTPMixin(object):$/;" c +FakeFile Lib/test/test_configparser.py /^class FakeFile:$/;" c +FakeFileLikeObject Lib/test/test_mailbox.py /^class FakeFileLikeObject:$/;" c +FakeFilter Lib/test/test_logging.py /^ class FakeFilter:$/;" c function:ConfigDictTest.test_config_filter_method_works +FakeFinder Lib/test/test_importlib/import_/test_path.py /^ class FakeFinder:$/;" c function:FinderTests.test_invalidate_caches_clear_out_relative_path +FakeFinder Lib/test/test_importlib/import_/test_path.py /^ class FakeFinder:$/;" c function:FinderTests.test_invalidate_caches_finders +FakeFtpWrapper Lib/test/test_urllib.py /^ class FakeFtpWrapper(object):$/;" c function:FakeFTPMixin.fakeftp +FakeHTTPConnection Lib/test/test_urllib.py /^ class FakeHTTPConnection(http.client.HTTPConnection):$/;" c function:fakehttp +FakeHTTPMixin Lib/test/test_urllib.py /^class FakeHTTPMixin(object):$/;" c +FakeHTTPRequestHandler Lib/test/test_urllib2_localnet.py /^ class FakeHTTPRequestHandler(http.server.BaseHTTPRequestHandler):$/;" c function:GetRequestHandler +FakeHandler Lib/test/test_logging.py /^class FakeHandler:$/;" c +FakeIO Lib/test/test_uu.py /^class FakeIO(io.TextIOWrapper):$/;" c +FakeMailBox Lib/test/test_mailbox.py /^class FakeMailBox(mailbox.Mailbox):$/;" c +FakeMessage Lib/test/test_mailbox.py /^ class FakeMessage(mailbox.MaildirMessage):$/;" c function:TestMaildir.test_consistent_factory +FakeMetaFinder Lib/test/test_importlib/test_api.py /^ FakeMetaFinder = None$/;" v class:FindLoaderTests +FakeMetaFinder Lib/test/test_importlib/test_api.py /^ class FakeMetaFinder:$/;" c class:FindLoaderPEP451Tests +FakeMetaFinder Lib/test/test_importlib/test_util.py /^ class FakeMetaFinder:$/;" c class:FindSpecTests +FakeMethod Lib/test/test_urllib2.py /^class FakeMethod:$/;" c +FakePath Lib/test/support/os_helper.py /^class FakePath:$/;" c +FakePip Lib/test/test_ensurepip.py /^ class FakePip():$/;" c function:fake_pip +FakeProxyHandler Lib/test/test_urllib2_localnet.py /^class FakeProxyHandler(http.server.BaseHTTPRequestHandler):$/;" c +FakeRepr Tools/gdb/libpython.py /^ class FakeRepr(object):$/;" c function:PyObjectPtr.proxyval +FakeResponse Lib/test/test_http_cookiejar.py /^class FakeResponse:$/;" c +FakeRunner Lib/test/test_unittest/test_break.py /^ class FakeRunner(object):$/;" c function:TestBreak.testMainInstallsHandler +FakeRunner Lib/test/test_unittest/test_program.py /^ class FakeRunner(object):$/;" c function:Test_TestProgram.testNoExit +FakeRunner Lib/test/test_unittest/test_program.py /^ class FakeRunner(object):$/;" c function:Test_TestProgram.test_defaultTest_with_iterable +FakeRunner Lib/test/test_unittest/test_program.py /^ class FakeRunner(object):$/;" c function:Test_TestProgram.test_defaultTest_with_string +FakeRunner Lib/test/test_unittest/test_program.py /^class FakeRunner(object):$/;" c +FakeSimpleNamespace Lib/test/test_types.py /^ class FakeSimpleNamespace(str):$/;" c function:SimpleNamespaceTests.test_fake_namespace_compare +FakeSock Lib/test/test_asyncio/test_base_events.py /^ class FakeSock:$/;" c function:BaseEventLoopWithSelectorTests.test_create_datagram_endpoint_sock_sockopts +FakeSocket Lib/test/test_httplib.py /^class FakeSocket:$/;" c +FakeSocket Lib/test/test_urllib.py /^ class FakeSocket(io.BytesIO):$/;" c function:fakehttp +FakeSocketHTTPConnection Lib/test/test_httplib.py /^class FakeSocketHTTPConnection(client.HTTPConnection):$/;" c +FakeSpec Lib/test/test_importlib/import_/test___package__.py /^class FakeSpec:$/;" c +FakeStr Lib/test/test_descr.py /^ class FakeStr:$/;" c function:.test_proxy_call +FakeTP Lib/test/test_unittest/test_program.py /^ class FakeTP(unittest.TestProgram):$/;" c function:TestCommandLineArgs.testWarning +FakeTimer Lib/test/test_timeit.py /^class FakeTimer:$/;" c +FakeUnicodeError Lib/test/test_codeccallbacks.py /^ class FakeUnicodeError(Exception):$/;" c function:CodecCallbackTest.test_fake_error_class +FakeUnicodeError Lib/test/test_codeccallbacks.py /^ class FakeUnicodeError(str):$/;" c function:CodecCallbackTest.test_fake_error_class +FallbackBlockingTests Lib/test/test_binop.py /^class FallbackBlockingTests(unittest.TestCase):$/;" c +FalsyEG Lib/test/test_except_star.py /^ class FalsyEG(ExceptionGroup):$/;" c function:TestExceptStarExceptionGroupSubclass.test_falsy_exception_group_subclass +Family Tools/cases_generator/parser.py /^class Family(Node):$/;" c +FancyExit Lib/test/test_asyncio/test_runners.py /^ class FancyExit(Exception):$/;" c function:RunTests.test_asyncio_run_closes_gens_after_hanging_tasks_errors +FancyURLopener Lib/test/test_urllib.py /^def FancyURLopener():$/;" f +FancyURLopener Lib/urllib/request.py /^class FancyURLopener(URLopener):$/;" c +FastCallTests Lib/test/test_call.py /^class FastCallTests(unittest.TestCase):$/;" c +FastChildWatcher Lib/asyncio/unix_events.py /^class FastChildWatcher(BaseChildWatcher):$/;" c +FastChildWatcherTests Lib/test/test_asyncio/test_unix_events.py /^class FastChildWatcherTests (ChildWatcherTestsMixin, test_utils.TestCase):$/;" c +FastLookup Lib/zipfile/_path/__init__.py /^class FastLookup(CompleteDirs):$/;" c +FastPath Lib/importlib/metadata/__init__.py /^class FastPath:$/;" c +FatalIncludeError Lib/xml/etree/ElementInclude.py /^class FatalIncludeError(SyntaxError):$/;" c +Fault Lib/xmlrpc/client.py /^class Fault(Error):$/;" c +FaultHandlerTests Lib/test/test_faulthandler.py /^class FaultHandlerTests(unittest.TestCase):$/;" c +FaultTestCase Lib/test/test_xmlrpc.py /^class FaultTestCase(unittest.TestCase):$/;" c +Faux Lib/test/test_shutil.py /^ class Faux(object):$/;" c class:TestCopyFile +FauxUSTimeZone Lib/test/datetimetester.py /^ class FauxUSTimeZone(USTimeZone):$/;" c function:TestTimezoneConversions.test_fromutc +Feature Lib/msilib/__init__.py /^class Feature:$/;" c +Feature Lib/msilib/schema.py /^Feature = Table('Feature')$/;" v +FeatureComponents Lib/msilib/schema.py /^FeatureComponents = Table('FeatureComponents')$/;" v +FeatureMacro Tools/build/stable_abi.py /^class FeatureMacro(ABIItem):$/;" c +Fee Lib/test/test_enum.py /^ class Fee(MyIntEnum):$/;" c function:TestSpecial.test_multiple_mixin_inherited +FeedParser Lib/email/feedparser.py /^class FeedParser:$/;" c +FesteringGob Lib/test/inspect_fodder.py /^class FesteringGob(MalodorousPervert, ParrotDroppings):$/;" c +FetchTest Lib/idlelib/idle_test/test_history.py /^class FetchTest(unittest.TestCase):$/;" c +Field Lib/dataclasses.py /^class Field:$/;" c +Field Lib/test/test_typing.py /^ class Field: ...$/;" c function:DataclassTransformTests.test_metaclass +Field Parser/asdl.py /^class Field(AST):$/;" c +FieldNameIterator Objects/stringlib/unicode_format.h /^} FieldNameIterator;$/;" t typeref:struct:__anon706 +FieldNameIterator_init Objects/stringlib/unicode_format.h /^FieldNameIterator_init(FieldNameIterator *self, PyObject *s,$/;" f +FieldNameIterator_next Objects/stringlib/unicode_format.h /^FieldNameIterator_next(FieldNameIterator *self, int *is_attribute,$/;" f +FieldStorage Lib/cgi.py /^class FieldStorage:$/;" c +FieldStorageClass Lib/cgi.py /^ FieldStorageClass = None$/;" v class:FieldStorage +File Lib/msilib/schema.py /^File = Table('File')$/;" v +File Lib/test/test_socket.py /^ class File:$/;" c function:GeneralModuleTests.test__sendfile_use_sendfile +FileAttributes Include/internal/pycore_fileutils_windows.h /^ ULONG FileAttributes;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +FileBuilder Lib/test/test_importlib/fixtures.py /^class FileBuilder:$/;" c +FileCaseSensitiveByNameInfo Include/internal/pycore_fileutils_windows.h /^ FileCaseSensitiveByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS +FileCompareTestCase Lib/test/test_filecmp.py /^class FileCompareTestCase(unittest.TestCase):$/;" c +FileContextTestCase Lib/test/test_contextlib.py /^class FileContextTestCase(unittest.TestCase):$/;" c +FileCookieJar Lib/http/cookiejar.py /^class FileCookieJar(CookieJar):$/;" c +FileCookieJarTests Lib/test/test_http_cookiejar.py /^class FileCookieJarTests(unittest.TestCase):$/;" c +FileDialog Lib/tkinter/filedialog.py /^class FileDialog:$/;" c +FileEntry Lib/tkinter/tix.py /^class FileEntry(TixWidget):$/;" c +FileFinder Lib/importlib/_bootstrap_external.py /^class FileFinder:$/;" c +FileHandler Lib/logging/__init__.py /^class FileHandler(StreamHandler):$/;" c +FileHandler Lib/urllib/request.py /^class FileHandler(BaseHandler):$/;" c +FileHandler Modules/_tkinter.c /^FileHandler(ClientData clientData, int mask)$/;" f file: +FileHandlerTest Lib/test/test_logging.py /^class FileHandlerTest(BaseFileTest):$/;" c +FileHandler_ClientData Modules/_tkinter.c /^} FileHandler_ClientData;$/;" t typeref:struct:_fhcdata file: +FileHash Lib/importlib/metadata/__init__.py /^class FileHash:$/;" c +FileHeader Lib/zipfile/__init__.py /^ def FileHeader(self, zip64=None):$/;" m class:ZipInfo +FileIO Lib/_pyio.py /^class FileIO(RawIOBase):$/;" c +FileIO Lib/test/test_fileio.py /^ FileIO = _io.FileIO$/;" v class:CAutoFileTests +FileIO Lib/test/test_fileio.py /^ FileIO = _io.FileIO$/;" v class:COtherFileTests +FileIO Lib/test/test_fileio.py /^ FileIO = _pyio.FileIO$/;" v class:PyAutoFileTests +FileIO Lib/test/test_fileio.py /^ FileIO = _pyio.FileIO$/;" v class:PyOtherFileTests +FileId Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER FileId;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +FileId128 Include/internal/pycore_fileutils_windows.h /^ FILE_ID_128 FileId128;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +FileInfo Tools/c-analyzer/c_parser/info.py /^class FileInfo(namedtuple('FileInfo', 'filename lno')):$/;" c +FileInput Lib/fileinput.py /^class FileInput:$/;" c +FileInputFix Lib/test/test_lib2to3/test_refactor.py /^ class FileInputFix(fixer_base.BaseFix):$/;" c function:TestRefactoringTool.test_get_headnode_dict +FileInputTests Lib/test/test_fileinput.py /^class FileInputTests(BaseTests, unittest.TestCase):$/;" c +FileList Lib/idlelib/filelist.py /^class FileList:$/;" c +FileListTest Lib/idlelib/idle_test/test_filelist.py /^class FileListTest(unittest.TestCase):$/;" c +FileLoader Lib/importlib/_bootstrap_external.py /^class FileLoader:$/;" c +FileLoader Lib/importlib/abc.py /^class FileLoader(_bootstrap_external.FileLoader, ResourceLoader, ExecutionLoader):$/;" c +FileLoader Lib/test/test_importlib/test_abc.py /^class FileLoader(InheritanceTests):$/;" c +FileNameSet PC/layout/support/filesets.py /^class FileNameSet(FileStemSet):$/;" c +FileObjectClassTestCase Lib/test/test_socket.py /^class FileObjectClassTestCase(SocketConnectedTest):$/;" c +FilePermissionTests Lib/test/test_import/__init__.py /^class FilePermissionTests(unittest.TestCase):$/;" c +FileReader Lib/importlib/resources/readers.py /^class FileReader(abc.TraversableResources):$/;" c +FileSFPCatalog Lib/msilib/schema.py /^FileSFPCatalog = Table('FileSFPCatalog')$/;" v +FileSelectBox Lib/tkinter/tix.py /^class FileSelectBox(TixWidget):$/;" c +FileSelectDialog Lib/tkinter/tix.py /^class FileSelectDialog(TixWidget):$/;" c +FileSourceEncodingTest Lib/test/test_source_encoding.py /^class FileSourceEncodingTest(AbstractSourceEncodingTest, unittest.TestCase):$/;" c +FileStatBasicByNameInfo Include/internal/pycore_fileutils_windows.h /^ FileStatBasicByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS +FileStatByNameInfo Include/internal/pycore_fileutils_windows.h /^ FileStatByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS +FileStatLxByNameInfo Include/internal/pycore_fileutils_windows.h /^ FileStatLxByNameInfo,$/;" e enum:_FILE_INFO_BY_NAME_CLASS +FileStemSet PC/layout/support/filesets.py /^class FileStemSet:$/;" c +FileSuffixSet PC/layout/support/filesets.py /^class FileSuffixSet:$/;" c +FileSystem Lib/test/test_importlib/test_main.py /^):$/;" c +FileTestCase Lib/test/test_lzma.py /^class FileTestCase(unittest.TestCase):$/;" c +FileTests Lib/test/test_os.py /^class FileTests(unittest.TestCase):$/;" c +FileTreeItem Lib/idlelib/tree.py /^class FileTreeItem(TreeItem):$/;" c +FileType Lib/argparse.py /^class FileType(object):$/;" c +FileTypeList Lib/tkinter/tix.py /^def FileTypeList(dict):$/;" f +FileWrapper Lib/wsgiref/types.py /^class FileWrapper(Protocol):$/;" c +FileWrapper Lib/wsgiref/util.py /^class FileWrapper:$/;" c +FilenameListCchCopyA PC/pyshellext.cpp /^HRESULT FilenameListCchCopyA(STRSAFE_LPSTR pszDest, size_t cchDest, LPCSTR pszSource, LPCSTR pszSeparator) {$/;" f +FilenameListCchCopyW PC/pyshellext.cpp /^HRESULT FilenameListCchCopyW(STRSAFE_LPWSTR pszDest, size_t cchDest, LPCWSTR pszSource, LPCWSTR pszSeparator) {$/;" f +FilenameListCchLengthA PC/pyshellext.cpp /^HRESULT FilenameListCchLengthA(LPCSTR pszSource, size_t cchMax, size_t *pcchLength, size_t *pcchCount) {$/;" f +FilenameListCchLengthW PC/pyshellext.cpp /^HRESULT FilenameListCchLengthW(LPCWSTR pszSource, size_t cchMax, size_t *pcchLength, size_t *pcchCount) {$/;" f +FilenoRaisesValueError Lib/test/test_fileinput.py /^ class FilenoRaisesValueError(UnconditionallyRaise):$/;" c function:FileInputTests.test_fileno_when_ValueError_raised +FilesSpec Lib/test/test_importlib/_path.py /^FilesSpec = Dict[str, Union[str, bytes, 'FilesSpec']] # type: ignore$/;" v +FilesSpec Lib/test/test_importlib/resources/_path.py /^FilesSpec = Dict[str, Union[str, bytes, 'FilesSpec']] # type: ignore$/;" v +FilesTests Lib/test/test_importlib/resources/test_files.py /^class FilesTests:$/;" c +FiletypesTest Lib/idlelib/idle_test/test_iomenu.py /^class FiletypesTest(unittest.TestCase):$/;" c +Filter Lib/logging/__init__.py /^class Filter(object):$/;" c +Filter Lib/tracemalloc.py /^class Filter(BaseFilter):$/;" c +FilterCrutch Lib/xml/dom/expatbuilder.py /^class FilterCrutch(object):$/;" c +FilterError Lib/tarfile.py /^class FilterError(TarError):$/;" c +FilterTestCase Lib/test/test_fnmatch.py /^class FilterTestCase(unittest.TestCase):$/;" c +FilterTests Lib/test/test_warnings/__init__.py /^class FilterTests(BaseTest):$/;" c +FilterVisibilityController Lib/xml/dom/expatbuilder.py /^class FilterVisibilityController(object):$/;" c +Filterer Lib/logging/__init__.py /^class Filterer(object):$/;" c +Final Lib/test/test_typing.py /^ class Final:$/;" c function:GenericTests.test_init_subclass_super_called +Final Lib/typing.py /^def Final(self, parameters):$/;" f +FinalDecoratorTests Lib/test/test_typing.py /^class FinalDecoratorTests(BaseTestCase):$/;" c +FinalException Lib/test/test_typing.py /^ class FinalException(Exception):$/;" c function:GenericTests.test_init_subclass_super_called +FinalTests Lib/test/test_typing.py /^class FinalTests(BaseTestCase):$/;" c +FinalizationTest Lib/test/test_generators.py /^class FinalizationTest(unittest.TestCase):$/;" c +FinalizationTest Lib/test/test_warnings/__init__.py /^class FinalizationTest(unittest.TestCase):$/;" c +Finalize Lib/multiprocessing/util.py /^class Finalize(object):$/;" c +FinalizeTestCase Lib/test/test_weakref.py /^class FinalizeTestCase(unittest.TestCase):$/;" c +FindAddress Modules/_ctypes/_ctypes.c /^static PPROC FindAddress(void *handle, const char *name, PyObject *type)$/;" f file: +FindLibraryLinux Lib/test/test_ctypes/test_find.py /^class FindLibraryLinux(unittest.TestCase):$/;" c +FindLoaderPEP451Tests Lib/test/test_importlib/test_api.py /^class FindLoaderPEP451Tests(FindLoaderTests):$/;" c +FindLoaderTests Lib/test/test_importlib/test_api.py /^class FindLoaderTests:$/;" c +FindModuleTests Lib/test/test_importlib/import_/test_path.py /^class FindModuleTests(FinderTests):$/;" c +FindSpecTests Lib/test/test_importlib/builtin/test_finder.py /^class FindSpecTests(abc.FinderTests):$/;" c +FindSpecTests Lib/test/test_importlib/frozen/test_finder.py /^class FindSpecTests(abc.FinderTests):$/;" c +FindSpecTests Lib/test/test_importlib/import_/test_path.py /^class FindSpecTests(FinderTests):$/;" c +FindSpecTests Lib/test/test_importlib/test_util.py /^class FindSpecTests:$/;" c +FindTest Lib/idlelib/idle_test/test_format.py /^class FindTest(unittest.TestCase):$/;" c +Finder Lib/test/test_importlib/import_/test_path.py /^ class Finder:$/;" c function:PathEntryFinderTests.test_finder_with_failing_find_spec +Finder Lib/test/test_importlib/test_threaded_import.py /^class Finder:$/;" c +FinderTests Lib/test/test_importlib/abc.py /^class FinderTests(metaclass=abc.ABCMeta):$/;" c +FinderTests Lib/test/test_importlib/extension/test_finder.py /^class FinderTests(abc.FinderTests):$/;" c +FinderTests Lib/test/test_importlib/import_/test_path.py /^class FinderTests:$/;" c +FinderTests Lib/test/test_importlib/source/test_finder.py /^class FinderTests(abc.FinderTests):$/;" c +FinderTestsPEP420 Lib/test/test_importlib/source/test_finder.py /^class FinderTestsPEP420(FinderTests):$/;" c +FinderTestsPEP451 Lib/test/test_importlib/source/test_finder.py /^class FinderTestsPEP451(FinderTests):$/;" c +FindfilesTest Lib/idlelib/idle_test/test_grep.py /^class FindfilesTest(unittest.TestCase):$/;" c +FindmatchTest Lib/test/test_mailcap.py /^class FindmatchTest(unittest.TestCase):$/;" c +First Lib/test/test_ctypes/test_structures.py /^ class First(Structure):$/;" c function:TestRecursiveStructure.test_vice_versa +First Lib/test/test_types.py /^ class First(FirstBase[int]): pass$/;" c function:ClassCreationTests.test_get_original_bases +FirstBase Lib/test/test_types.py /^ class FirstBase(typing.Generic[T]): pass$/;" c function:ClassCreationTests.test_get_original_bases +FirstFailedStrEnum Lib/test/test_enum.py /^ class FirstFailedStrEnum(StrEnum):$/;" c class:TestSpecial.test_strenum.GoodbyeEnum +FirstFailedStrEnum Lib/test/test_enum.py /^ class FirstFailedStrEnum(CustomStrEnum):$/;" c function:TestSpecial.test_custom_strenum +FirstHeaderLineIsContinuationDefect Lib/email/errors.py /^class FirstHeaderLineIsContinuationDefect(MessageDefect):$/;" c +FirstSetCalculator Tools/peg_generator/pegen/first_sets.py /^class FirstSetCalculator(GrammarVisitor):$/;" c +First_ Lib/test/test_types.py /^ class First_(typing.Generic[T]): pass$/;" c function:ClassCreationTests.test_get_original_bases +FixApply Lib/lib2to3/fixes/fix_apply.py /^class FixApply(fixer_base.BaseFix):$/;" c +FixAsserts Lib/lib2to3/fixes/fix_asserts.py /^class FixAsserts(BaseFix):$/;" c +FixBadOrder Lib/test/test_lib2to3/data/fixers/bad_order.py /^class FixBadOrder(BaseFix):$/;" c +FixBasestring Lib/lib2to3/fixes/fix_basestring.py /^class FixBasestring(fixer_base.BaseFix):$/;" c +FixBuffer Lib/lib2to3/fixes/fix_buffer.py /^class FixBuffer(fixer_base.BaseFix):$/;" c +FixDict Lib/lib2to3/fixes/fix_dict.py /^class FixDict(fixer_base.BaseFix):$/;" c +FixExcept Lib/lib2to3/fixes/fix_except.py /^class FixExcept(fixer_base.BaseFix):$/;" c +FixExec Lib/lib2to3/fixes/fix_exec.py /^class FixExec(fixer_base.BaseFix):$/;" c +FixExecfile Lib/lib2to3/fixes/fix_execfile.py /^class FixExecfile(fixer_base.BaseFix):$/;" c +FixExitfunc Lib/lib2to3/fixes/fix_exitfunc.py /^class FixExitfunc(fixer_base.BaseFix):$/;" c +FixExplicit Lib/test/test_lib2to3/data/fixers/myfixes/fix_explicit.py /^class FixExplicit(BaseFix):$/;" c +FixFilter Lib/lib2to3/fixes/fix_filter.py /^class FixFilter(fixer_base.ConditionalFix):$/;" c +FixFirst Lib/test/test_lib2to3/data/fixers/myfixes/fix_first.py /^class FixFirst(BaseFix):$/;" c +FixFuncattrs Lib/lib2to3/fixes/fix_funcattrs.py /^class FixFuncattrs(fixer_base.BaseFix):$/;" c +FixFuture Lib/lib2to3/fixes/fix_future.py /^class FixFuture(fixer_base.BaseFix):$/;" c +FixGetcwdu Lib/lib2to3/fixes/fix_getcwdu.py /^class FixGetcwdu(fixer_base.BaseFix):$/;" c +FixHasKey Lib/lib2to3/fixes/fix_has_key.py /^class FixHasKey(fixer_base.BaseFix):$/;" c +FixIdioms Lib/lib2to3/fixes/fix_idioms.py /^class FixIdioms(fixer_base.BaseFix):$/;" c +FixImport Lib/lib2to3/fixes/fix_import.py /^class FixImport(fixer_base.BaseFix):$/;" c +FixImports Lib/lib2to3/fixes/fix_imports.py /^class FixImports(fixer_base.BaseFix):$/;" c +FixImports2 Lib/lib2to3/fixes/fix_imports2.py /^class FixImports2(fix_imports.FixImports):$/;" c +FixInput Lib/lib2to3/fixes/fix_input.py /^class FixInput(fixer_base.BaseFix):$/;" c +FixIntern Lib/lib2to3/fixes/fix_intern.py /^class FixIntern(fixer_base.BaseFix):$/;" c +FixIsinstance Lib/lib2to3/fixes/fix_isinstance.py /^class FixIsinstance(fixer_base.BaseFix):$/;" c +FixItertools Lib/lib2to3/fixes/fix_itertools.py /^class FixItertools(fixer_base.BaseFix):$/;" c +FixItertoolsImports Lib/lib2to3/fixes/fix_itertools_imports.py /^class FixItertoolsImports(fixer_base.BaseFix):$/;" c +FixLast Lib/test/test_lib2to3/data/fixers/myfixes/fix_last.py /^class FixLast(BaseFix):$/;" c +FixLong Lib/lib2to3/fixes/fix_long.py /^class FixLong(fixer_base.BaseFix):$/;" c +FixMap Lib/lib2to3/fixes/fix_map.py /^class FixMap(fixer_base.ConditionalFix):$/;" c +FixMetaclass Lib/lib2to3/fixes/fix_metaclass.py /^class FixMetaclass(fixer_base.BaseFix):$/;" c +FixMethodattrs Lib/lib2to3/fixes/fix_methodattrs.py /^class FixMethodattrs(fixer_base.BaseFix):$/;" c +FixNe Lib/lib2to3/fixes/fix_ne.py /^class FixNe(fixer_base.BaseFix):$/;" c +FixNext Lib/lib2to3/fixes/fix_next.py /^class FixNext(fixer_base.BaseFix):$/;" c +FixNonzero Lib/lib2to3/fixes/fix_nonzero.py /^class FixNonzero(fixer_base.BaseFix):$/;" c +FixNumliterals Lib/lib2to3/fixes/fix_numliterals.py /^class FixNumliterals(fixer_base.BaseFix):$/;" c +FixOperator Lib/lib2to3/fixes/fix_operator.py /^class FixOperator(fixer_base.BaseFix):$/;" c +FixParen Lib/lib2to3/fixes/fix_paren.py /^class FixParen(fixer_base.BaseFix):$/;" c +FixParrot Lib/test/test_lib2to3/data/fixers/myfixes/fix_parrot.py /^class FixParrot(BaseFix):$/;" c +FixPreorder Lib/test/test_lib2to3/data/fixers/myfixes/fix_preorder.py /^class FixPreorder(BaseFix):$/;" c +FixPrint Lib/lib2to3/fixes/fix_print.py /^class FixPrint(fixer_base.BaseFix):$/;" c +FixQuotes Lib/test/test_decimal.py /^ def FixQuotes(val):$/;" f function:IBMTestCases.eval_equation +FixRaise Lib/lib2to3/fixes/fix_raise.py /^class FixRaise(fixer_base.BaseFix):$/;" c +FixRawInput Lib/lib2to3/fixes/fix_raw_input.py /^class FixRawInput(fixer_base.BaseFix):$/;" c +FixReduce Lib/lib2to3/fixes/fix_reduce.py /^class FixReduce(fixer_base.BaseFix):$/;" c +FixReload Lib/lib2to3/fixes/fix_reload.py /^class FixReload(fixer_base.BaseFix):$/;" c +FixRenames Lib/lib2to3/fixes/fix_renames.py /^class FixRenames(fixer_base.BaseFix):$/;" c +FixRepr Lib/lib2to3/fixes/fix_repr.py /^class FixRepr(fixer_base.BaseFix):$/;" c +FixSetLiteral Lib/lib2to3/fixes/fix_set_literal.py /^class FixSetLiteral(fixer_base.BaseFix):$/;" c +FixStandarderror Lib/lib2to3/fixes/fix_standarderror.py /^class FixStandarderror(fixer_base.BaseFix):$/;" c +FixSysExc Lib/lib2to3/fixes/fix_sys_exc.py /^class FixSysExc(fixer_base.BaseFix):$/;" c +FixThrow Lib/lib2to3/fixes/fix_throw.py /^class FixThrow(fixer_base.BaseFix):$/;" c +FixTupleParams Lib/lib2to3/fixes/fix_tuple_params.py /^class FixTupleParams(fixer_base.BaseFix):$/;" c +FixTypes Lib/lib2to3/fixes/fix_types.py /^class FixTypes(fixer_base.BaseFix):$/;" c +FixUnicode Lib/lib2to3/fixes/fix_unicode.py /^class FixUnicode(fixer_base.BaseFix):$/;" c +FixUpModuleTests Lib/test/test_importlib/import_/test_helpers.py /^class FixUpModuleTests:$/;" c +FixUrllib Lib/lib2to3/fixes/fix_urllib.py /^class FixUrllib(FixImports):$/;" c +FixWsComma Lib/lib2to3/fixes/fix_ws_comma.py /^class FixWsComma(fixer_base.BaseFix):$/;" c +FixXrange Lib/lib2to3/fixes/fix_xrange.py /^class FixXrange(fixer_base.BaseFix):$/;" c +FixXreadlines Lib/lib2to3/fixes/fix_xreadlines.py /^class FixXreadlines(fixer_base.BaseFix):$/;" c +FixZip Lib/lib2to3/fixes/fix_zip.py /^class FixZip(fixer_base.ConditionalFix):$/;" c +FixedHash Lib/test/test_hash.py /^class FixedHash(object):$/;" c +FixedOffset Lib/test/datetimetester.py /^class FixedOffset(tzinfo):$/;" c +FixerError Lib/lib2to3/refactor.py /^class FixerError(Exception):$/;" c +FixerTestCase Lib/test/test_lib2to3/test_fixers.py /^class FixerTestCase(support.TestCase):$/;" c +Fixture Lib/test/test_xmlrpc.py /^ class Fixture:$/;" c class:http_server.TestInstanceClass +Fixtures Lib/test/test_importlib/fixtures.py /^class Fixtures:$/;" c +Flag Lib/enum.py /^class Flag(Enum, boundary=STRICT):$/;" c +FlagBoundary Lib/enum.py /^class FlagBoundary(StrEnum):$/;" c +FlagFromChar Lib/test/test_enum.py /^ class FlagFromChar(Flag):$/;" c function:TestSpecial.test_flag_with_custom_new +FlagFromChar Lib/test/test_enum.py /^ class FlagFromChar(IntFlag):$/;" c function:TestSpecial.test_flag_with_custom_new +FlagFromChar Lib/test/test_enum.py /^ class FlagFromChar(int, Flag, boundary=KEEP):$/;" c function:TestSpecial.test_flag_with_custom_new +FlagRuntimeInfo Modules/socketmodule.c /^} FlagRuntimeInfo;$/;" t typeref:struct:__anon389 file: +FlagStooges Lib/test/test_enum.py /^ FlagStooges = exc$/;" v +FlagStooges Lib/test/test_enum.py /^ class FlagStooges(Flag):$/;" c +FlagStoogesWithZero Lib/test/test_enum.py /^class FlagStoogesWithZero(Flag):$/;" c +Flags Lib/imaplib.py /^Flags = re.compile(br'.*FLAGS \\((?P[^\\)]*)\\)')$/;" v +Flags Lib/tomllib/_parser.py /^class Flags:$/;" c +Flags Modules/winreparse.h /^ ULONG Flags;$/;" m struct:__anon316::__anon317::__anon318 +FlagsType Python/sysmodule.c /^static PyTypeObject FlagsType;$/;" v file: +FlattenContext Modules/_tkinter.c /^} FlattenContext;$/;" t typeref:struct:__anon338 file: +Float Lib/test/datetimetester.py /^ class Float(float):$/;" c function:Oddballs.test_check_arg_types +Float Lib/test/test_capi/test_getargs.py /^class Float:$/;" c +Float Lib/test/test_unicode.py /^ class Float(float, enum.Enum):$/;" c function:UnicodeTest.test_formatting_with_enum +FloatAndComplex Lib/test/test_cmath.py /^ class FloatAndComplex:$/;" c function:CMathTests.test_user_object +FloatCeil Lib/test/test_math.py /^ class FloatCeil(float):$/;" c function:MathTests.testCeil +FloatFloor Lib/test/test_math.py /^ class FloatFloor(float):$/;" c function:MathTests.testFloor +FloatInfoType Objects/floatobject.c /^static PyTypeObject FloatInfoType;$/;" v file: +FloatLen Lib/test/test_builtin.py /^ class FloatLen:$/;" c function:BuiltinTest.test_len +FloatLike Lib/test/test_ctypes/test_numbers.py /^ class FloatLike:$/;" c function:NumberTestCase.test_floats +FloatLike Lib/test/test_ctypes/test_numbers.py /^ class FloatLike:$/;" c function:NumberTestCase.test_integers +FloatLike Lib/test/test_math.py /^class FloatLike:$/;" c +FloatNum Lib/test/test_json/test_enum.py /^class FloatNum(float, Enum):$/;" c +FloatOperation Lib/_pydecimal.py /^class FloatOperation(DecimalException, TypeError):$/;" c +FloatSizeof Lib/test/test_sys.py /^ class FloatSizeof:$/;" c function:SizeofTest.test_errors +FloatStooges Lib/test/test_enum.py /^ FloatStooges = exc$/;" v +FloatStooges Lib/test/test_enum.py /^ class FloatStooges(float, Enum):$/;" c +FloatSubclass Lib/test/test_capi/test_getargs.py /^class FloatSubclass(float):$/;" c +FloatSubclass Lib/test/test_float.py /^class FloatSubclass(float):$/;" c +FloatSubclass2 Lib/test/test_capi/test_getargs.py /^class FloatSubclass2(float):$/;" c +FloatTest Lib/test/test_array.py /^class FloatTest(FPTest, unittest.TestCase):$/;" c +FloatTestCase Lib/test/test_marshal.py /^class FloatTestCase(unittest.TestCase, HelperMixin):$/;" c +FloatTrunc Lib/test/test_math.py /^ class FloatTrunc(float):$/;" c function:MathTests.test_trunc +Float_TestCase Lib/test/test_capi/test_getargs.py /^class Float_TestCase(unittest.TestCase):$/;" c +Floatnumber Lib/lib2to3/pgen2/tokenize.py /^Floatnumber = group(Pointfloat, Expfloat)$/;" v +Floatnumber Lib/tokenize.py /^Floatnumber = group(Pointfloat, Expfloat)$/;" v +FloorDiv Include/internal/pycore_ast.h /^ FloorDiv=13 } operator_ty;$/;" e enum:_operator +FloorDiv_singleton Include/internal/pycore_ast_state.h /^ PyObject *FloorDiv_singleton;$/;" m struct:ast_state +FloorDiv_type Include/internal/pycore_ast_state.h /^ PyObject *FloorDiv_type;$/;" m struct:ast_state +FlowControlMixin Lib/asyncio/streams.py /^class FlowControlMixin(protocols.Protocol):$/;" c +Flt Lib/test/test_math.py /^ class Flt(float):$/;" c function:MathTests.test_sumprod_stress +Flt_Rounds Python/dtoa.c 265;" d file: +Flt_Rounds Python/dtoa.c 267;" d file: +Fluflnum Lib/test/test_enum.py /^ class Fluflnum(Enum):$/;" c function:TestSpecial.test_flufl_enum +FlushingFinder Lib/test/test_importlib/test_threaded_import.py /^class FlushingFinder:$/;" c +FmData Modules/_testcapi/mem.c /^} FmData;$/;" v typeref:struct:__anon557 file: +FmHook Modules/_testcapi/mem.c /^} FmHook;$/;" v typeref:struct:__anon556 file: +FnmatchTestCase Lib/test/test_fnmatch.py /^class FnmatchTestCase(unittest.TestCase):$/;" c +FocusIn Lib/test/test_tkinter/test_misc.py /^ FocusIn = '9'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +FocusIn Lib/tkinter/__init__.py /^ FocusIn = '9'$/;" v class:EventType +FocusOut Lib/test/test_tkinter/test_misc.py /^ FocusOut = '10'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +FocusOut Lib/tkinter/__init__.py /^ FocusOut = '10'$/;" v class:EventType +FoldedCase Lib/importlib/metadata/_text.py /^class FoldedCase(str):$/;" c +Font Lib/msilib/schema.py /^Font = Table('Font')$/;" v +Font Lib/tkinter/font.py /^class Font:$/;" c +FontPage Lib/idlelib/configdialog.py /^class FontPage(Frame):$/;" c +FontPageTest Lib/idlelib/idle_test/test_configdialog.py /^class FontPageTest(unittest.TestCase):$/;" c +FontTest Lib/test/test_tkinter/test_font.py /^class FontTest(AbstractTkTest, unittest.TestCase):$/;" c +Foo Doc/includes/mp_newtype.py /^class Foo:$/;" c +Foo Lib/test/_test_multiprocessing.py /^ class Foo(object):$/;" c function:_TestFinalize._test_finalize +Foo Lib/test/_test_multiprocessing.py /^ class Foo(object):$/;" c function:_TestFinalize.test_thread_safety +Foo Lib/test/_typed_dict_helper.py /^class Foo(TypedDict):$/;" c +Foo Lib/test/dataclass_textanno.py /^class Foo:$/;" c +Foo Lib/test/sample_doctest_no_docstrings.py /^class Foo(object):$/;" c +Foo Lib/test/sample_doctest_no_doctests.py /^class Foo(object):$/;" c +Foo Lib/test/test_bool.py /^ class Foo(object):$/;" c function:BoolTest.test_convert_to_bool +Foo Lib/test/test_builtin.py /^ class Foo(object):$/;" c function:BuiltinTest.test_dir +Foo Lib/test/test_builtin.py /^ class Foo(types.ModuleType):$/;" c function:BuiltinTest.test_dir +Foo Lib/test/test_copy.py /^ class Foo(object):$/;" c function:TestCopy.test_deepcopy_bound_method +Foo Lib/test/test_csv.py /^ class Foo(csv.Error): ...$/;" c function:MiscTestCase.test_subclassable +Foo Lib/test/test_dataclasses.py /^ class Foo:$/;" c function:TestCase.test_default_factory_derived +Foo Lib/test/test_descr.py /^ class Foo(object):$/;" c function:.test_init +Foo Lib/test/test_descr.py /^ class Foo:$/;" c function:.test_bound_method_repr +Foo Lib/test/test_descr.py /^ class Foo:$/;" c function:.test_repr_as_str +Foo Lib/test/test_dict.py /^ class Foo: pass$/;" c function:DictTest.test_object_set_item_single_instance_non_str_key +Foo Lib/test/test_dict.py /^ class Foo:$/;" c function:DictTest.test_instance_dict_getattr_str_subclass +Foo Lib/test/test_dynamicclassattribute.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_slots_docstring_copy_exception +Foo Lib/test/test_dynamicclassattribute.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_docstring_copy +Foo Lib/test/test_dynamicclassattribute.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_property_new_getter_new_docstring +Foo Lib/test/test_dynamicclassattribute.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_property_setter_copies_getter_docstring +Foo Lib/test/test_email/test_policy.py /^ class Foo:$/;" c class:PolicyAPITests +Foo Lib/test/test_enum.py /^ class Foo(Enum):$/;" c function:TestSpecial.test_dynamic_members_with_static_methods +Foo Lib/test/test_enum.py /^ class Foo(MyIntEnum):$/;" c function:TestSpecial.test_multiple_mixin_inherited +Foo Lib/test/test_enum.py /^ class Foo:$/;" c function:TestSpecial.test_enum_of_types +Foo Lib/test/test_enum.py /^ class Foo:$/;" c function:TestSpecial.test_enum_of_types_with_nonmember +Foo Lib/test/test_enum.py /^ class Foo:$/;" c function:TestSpecial.test_repr_and_str_with_no_init_mixin +Foo Lib/test/test_enum.py /^ class Foo:$/;" c function:TestSpecial.test_repr_with_dataclass +Foo Lib/test/test_enum.py /^ class Foo:$/;" c function:TestSpecial.test_repr_with_init_mixin +Foo Lib/test/test_functools.py /^ class Foo:$/;" c function:TestCachedProperty.test_set_name_not_called +Foo Lib/test/test_inspect.py /^ class Foo(dict):$/;" c function:TestGetattrStatic.test_dict_as_property +Foo Lib/test/test_inspect.py /^ class Foo(dict):$/;" c function:TestGetattrStatic.test_mutated_mro +Foo Lib/test/test_inspect.py /^ class Foo(object):$/;" c function:TestGetattrStatic.test_custom_object_dict +Foo Lib/test/test_inspect.py /^ class Foo(object):$/;" c function:TestGetattrStatic.test_descriptor +Foo Lib/test/test_inspect.py /^ class Foo(object):$/;" c function:TestGetcallargsMethods.setUp +Foo Lib/test/test_inspect.py /^ class Foo: ...$/;" c function:TestSignatureObject.test_signature_annotations_with_local_namespaces +Foo Lib/test/test_inspect.py /^ class Foo:$/;" c function:TestGetattrStatic.test_custom___getattr__ +Foo Lib/test/test_inspect.py /^ class Foo:$/;" c function:TestGetattrStatic.test_custom___getattribute__ +Foo Lib/test/test_inspect.py /^ class Foo:$/;" c function:TestSignatureObject.test_signature_on_callable_objects +Foo Lib/test/test_inspect.py /^ class Foo:$/;" c function:TestSignatureObject.test_signature_on_decorated +Foo Lib/test/test_keywordonlyarg.py /^class Foo:$/;" c +Foo Lib/test/test_monitoring.py /^ class Foo:$/;" c function:TestBranchAndJumpEvents.test_except_star +Foo Lib/test/test_monitoring.py /^ class Foo:$/;" c function:TestRegressions.test_108390 +Foo Lib/test/test_property.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_slots_docstring_copy_exception +Foo Lib/test/test_property.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_docstring_copy +Foo Lib/test/test_property.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_property_new_getter_new_docstring +Foo Lib/test/test_property.py /^ class Foo(object):$/;" c function:PropertySubclassTests.test_property_setter_copies_getter_docstring +Foo Lib/test/test_rlcompleter.py /^ class Foo:$/;" c function:TestRlcompleter.test_excessive_getattr +Foo Lib/test/test_rlcompleter.py /^ class Foo:$/;" c function:TestRlcompleter.test_property_method_not_called +Foo Lib/test/test_rlcompleter.py /^ class Foo:$/;" c function:TestRlcompleter.test_uncreated_attr +Foo Lib/test/test_scope.py /^ class Foo:$/;" c function:ScopeTests.testLeaks +Foo Lib/test/test_sqlite3/test_dbapi.py /^ class Foo: pass$/;" c function:CursorTests.test_cursor_wrong_class +Foo Lib/test/test_sqlite3/test_types.py /^ class Foo:$/;" c class:DeclTypesTests +Foo Lib/test/test_type_params.py /^ class Foo[T: Foo, U: (Foo, Foo)]:$/;" c function:TypeParamsLazyEvaluationTest.test_recursive_class +Foo Lib/test/test_type_params.py /^ class Foo[T: Undefined, U: (Undefined,)]:$/;" c function:TypeParamsLazyEvaluationTest.test_evaluation_error +Foo Lib/test/test_type_params.py /^ class Foo[T]:$/;" c function:TypeParamsLazyEvaluationTest.test_qualname +Foo Lib/test/test_type_params.py /^ class Foo[__T]:$/;" c function:TypeParamsManglingTest.test_mangling +Foo Lib/test/test_types.py /^ class Foo(metaclass=BadMeta):$/;" c class:ClassCreationTests.test_bad___prepare__.BadMeta +Foo Lib/test/test_typing.py /^ class Foo(obj):$/;" c function:GenericTests.test_subclass_special_form +Foo Lib/test/test_typing.py /^ class Foo(Literal[1]): pass$/;" c function:LiteralTests.test_no_subclassing +Foo Lib/test/test_typing.py /^ class Foo(collections.abc.Mapping, Protocol):$/;" c function:ProtocolTests.test_isinstance_checks_not_at_whim_of_gc +Foo Lib/test/test_typing.py /^ class Foo(typing.ByteString): ...$/;" c function:CollectionsAbcTests.test_bytestring +Foo Lib/test/test_typing.py /^ class Foo[T]: ...$/;" c function:ProtocolTests.test_runtime_checkable_generic_non_protocol +Foo Lib/test/test_typing.py /^ class Foo(Generic[T]):$/;" c function:SpecialAttrsTests.test_genericalias_dir +Foo Lib/test/test_typing.py /^ class Foo(P):$/;" c function:ProtocolTests.test_super_call_init +Foo Lib/test/test_typing.py /^ class Foo(collections.abc.Sized, Protocol): pass$/;" c function:ProtocolTests.test_interaction_with_isinstance_checks_on_superclasses_with_ABCMeta +Foo Lib/test/test_typing.py /^ class Foo(typing.Sized, Protocol): pass$/;" c function:ProtocolTests.test_interaction_with_isinstance_checks_on_superclasses_with_ABCMeta_2 +Foo Lib/test/test_typing.py /^ class Foo: ...$/;" c function:CollectionsAbcTests.test_subclassing_subclasshook +Foo Lib/test/test_typing.py /^ class Foo: ...$/;" c function:ProtocolTests.test_protocols_isinstance_monkeypatching +Foo Lib/test/test_typing.py /^ class Foo:$/;" c function:GetTypeHintTests.test_get_type_hints_classes_str_annotations +Foo Lib/test/test_typing.py /^ class Foo:$/;" c function:LiteralStringTests.test_basics +Foo Lib/test/test_typing.py /^ class Foo:$/;" c function:ProtocolTests.test_protocol_decorated_with_final_mixed_members +Foo Lib/test/test_typing.py /^ class Foo:$/;" c function:ProtocolTests.test_protocol_decorated_with_final_noncallable_members +Foo Lib/test/test_typing.py /^ class Foo:$/;" c function:SelfTests.test_basics +Foo Lib/test/test_typing.py /^ class Foo[T](Protocol):$/;" c function:ProtocolTests.test_pep695_generic_protocol_callable_members +Foo Lib/test/test_typing.py /^ class Foo[T](Protocol):$/;" c function:ProtocolTests.test_runtime_checkable_generic +Foo Lib/test/test_unittest/test_assertions.py /^ class Foo(unittest.TestCase):$/;" c function:Test_Assertions.test_assertRaises_frames_survival +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase._check_call_order__subtests +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase._check_call_order__subtests_success +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__error_in_setUp +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__error_in_setUp_default_result +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__error_in_tearDown +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__error_in_tearDown_default_result +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__error_in_test +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__error_in_test_default_result +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__failure_in_test +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__failure_in_test_default_result +Foo Lib/test/test_unittest/test_case.py /^ class Foo(Test.LoggingTestCase):$/;" c function:Test_TestCase.test_run_call_order__subtests_failfast +Foo Lib/test/test_unittest/test_case.py /^ class Foo(types.ModuleType):$/;" c function:.testAssertWarnsModifySysModules +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_call__invoking_an_instance_delegates_to_run +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_countTestCases +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_defaultTestResult +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_deprecation_of_return_val_from_test +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_failureException__default +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_failureException__subclassing__explicit_raise +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_failureException__subclassing__implicit_raise +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_id +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_run__returns_given_result +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_run__uses_defaultTestResult +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_run_call_order_default_result +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_setUp +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_subtests_debug +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_subtests_failfast +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestCase.test_tearDown +Foo Lib/test/test_unittest/test_case.py /^ class Foo(unittest.TestCase):$/;" c class:Test +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromNames__callable__call_staticmethod +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromTestCase +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromTestCase__default_method_name +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromTestCase__no_matches +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_partial_functions +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_sortTestMethodsUsing__None +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_sortTestMethodsUsing__default_value +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_sortTestMethodsUsing__getTestCaseNames +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromModule +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromName +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromNames +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromTestCase +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_suiteClass__loadTestsFromModule +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_suiteClass__loadTestsFromName +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_suiteClass__loadTestsFromNames +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_suiteClass__loadTestsFromTestCase +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_testMethodPrefix__loadTestsFromModule +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_testMethodPrefix__loadTestsFromName +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_testMethodPrefix__loadTestsFromNames +Foo Lib/test/test_unittest/test_loader.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestLoader.test_testMethodPrefix__loadTestsFromTestCase +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferDoClassCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferDoCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferDoModuleCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferSetUp +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferSetUpModule +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferSetUpModule_DoModuleCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferSetUp_DoCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferSetupClass +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferSetupClass_DoClassCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferTearDown +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferTearDownClass +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferTearDownClass_DoClassCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferTearDownModule +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferTearDownModule_DoModuleCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:TestOutputBuffering.testBufferTearDown_DoCleanups +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addError +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addError_locals +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addFailure +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addFailure_filter_traceback_frames +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addFailure_filter_traceback_frames_chained_exception_cycle +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addFailure_filter_traceback_frames_chained_exception_self_loop +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addFailure_filter_traceback_frames_context +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addSubTest +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_addSuccess +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_startTest +Foo Lib/test/test_unittest/test_result.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestResult.test_stopTest +Foo Lib/test/test_unittest/test_runner.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TextTestRunner.test_durations +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skipping_decorators +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(Mixin, unittest.TestCase):$/;" c function:Test_TestSkipping.test_skip_non_unittest_class +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_debug_skipping +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_debug_skipping_class +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_debug_skipping_subtests +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_decorated_skip +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_expected_failure +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_expected_failure_and_fail_in_cleanup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_expected_failure_and_skip_in_cleanup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_expected_failure_subtests +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_expected_failure_with_wrapped_class +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_expected_failure_with_wrapped_subclass +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_failure_and_skip_in_cleanup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skip_class +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skip_doesnt_run_setup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skip_in_cleanup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skip_in_setup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skip_without_reason +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skipping +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skipping_and_fail_in_cleanup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_skipping_subtests +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_unexpected_success +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_unexpected_success_and_fail_in_cleanup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_unexpected_success_and_skip_in_cleanup +Foo Lib/test/test_unittest/test_skipping.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSkipping.test_unexpected_success_subtests +Foo Lib/test/test_unittest/test_suite.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSuite.assert_garbage_collect_test_after_run +Foo Lib/test/test_unittest/test_suite.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSuite.test_addTest__TestCase +Foo Lib/test/test_unittest/test_suite.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSuite.test_addTest__TestSuite +Foo Lib/test/test_unittest/test_suite.py /^ class Foo(unittest.TestCase):$/;" c function:Test_TestSuite.test_addTests +Foo Lib/test/test_unittest/test_suite.py /^ class Foo(unittest.TestCase):$/;" c class:Test +Foo Lib/test/test_unittest/testmock/testasync.py /^ class Foo:$/;" c function:AsyncMockAssert.test_awaits_asserts_with_any +Foo Lib/test/test_unittest/testmock/testasync.py /^ class Foo:$/;" c function:AsyncMockAssert.test_awaits_asserts_with_spec_and_any +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:AnyTest.test_any_mock_calls_comparison_order +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_autospec_data_descriptor +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_autospec_functions_with_self_in_odd_place +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_class_with_no_init +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_create_autospec_keyword_arguments +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_create_autospec_none +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_create_autospec_return_value +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_descriptors +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_inherit +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_mocking_unbound_methods +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_signature_class +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_spec_as_list +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo(object):$/;" c function:SpecSignatureTest.test_spec_inheritance_for_classes +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo:$/;" c function:AnyTest.test_any_and_spec_set +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo:$/;" c function:AnyTest.test_any_no_spec +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo:$/;" c function:SpecSignatureTest.test_autospec_getattr_partial_function +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo:$/;" c function:SpecSignatureTest.test_autospec_signature_classmethod +Foo Lib/test/test_unittest/testmock/testhelpers.py /^ class Foo:$/;" c function:SpecSignatureTest.test_autospec_signature_staticmethod +Foo Lib/test/test_unittest/testmock/testmagicmethods.py /^ class Foo(MagicMock):$/;" c function:TestMockingMagicMethods.test_magic_method_type +Foo Lib/test/test_unittest/testmock/testmock.py /^ class Foo:$/;" c class:MockTest.test_assert_has_calls_nested_spec.Something +Foo Lib/test/test_unittest/testmock/testmock.py /^ class Foo():$/;" c function:MockTest.test_misspelled_arguments +Foo Lib/test/test_unittest/testmock/testmock.py /^ class Foo(object):$/;" c function:MockTest.test_manager_mock +Foo Lib/test/test_unittest/testmock/testmock.py /^ class Foo(object):$/;" c function:MockTest.test_mock_safe_with_spec +Foo Lib/test/test_unittest/testmock/testmock.py /^ class Foo(object):$/;" c function:MockTest.test_mock_unsafe +Foo Lib/test/test_unittest/testmock/testmock.py /^ class Foo(object):$/;" c function:MockTest.test_side_effect_iterator +Foo Lib/test/test_unittest/testmock/testmock.py /^ class Foo:$/;" c function:MockTest.test_magic_method_wraps_class +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo(object):$/;" c function:PatchTest.test_patch_class_decorator +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo(object):$/;" c function:PatchTest.test_patch_dict_test_prefix +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo(object):$/;" c function:PatchTest.test_patch_slots +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo(object):$/;" c function:PatchTest.test_patch_test_prefix +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo(object):$/;" c function:PatchTest.test_patch_with_static_methods +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo(object):$/;" c function:PatchTest.test_patchobject_class_decorator +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo:$/;" c function:PatchTest.test_autospec_classmethod_signature +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo:$/;" c function:PatchTest.test_autospec_staticmethod_signature +Foo Lib/test/test_unittest/testmock/testpatch.py /^ class Foo:$/;" c function:PatchTest.test_invalid_target +Foo Lib/test/test_unittest/testmock/testpatch.py /^class Foo(object):$/;" c +Foo Lib/test/test_unittest/testmock/testsealable.py /^ class Foo:$/;" c function:TestSealable.test_seal_with_autospec +Foo Lib/test/test_unittest/testmock/testwith.py /^ class Foo(object):$/;" c function:WithTest.test_patch_object_with_statement +Foo Lib/test/test_weakref.py /^ class Foo:$/;" c function:ReferencesTestCase.test_proxy_deletion +Foo Lib/test/test_weakset.py /^class Foo:$/;" c +Foo0 Lib/test/test_int.py /^ class Foo0:$/;" c function:IntTestCases.test_intconversion +Foo1 Lib/test/test_float.py /^ class Foo1(object):$/;" c function:GeneralFloatCases.test_floatconversion +Foo2 Lib/test/test_dynamicclassattribute.py /^ class Foo2(FooBase):$/;" c function:PropertySubclassTests.test_property_new_getter_new_docstring +Foo2 Lib/test/test_float.py /^ class Foo2(float):$/;" c function:GeneralFloatCases.test_floatconversion +Foo2 Lib/test/test_property.py /^ class Foo2(FooBase):$/;" c function:PropertySubclassTests.test_property_new_getter_new_docstring +Foo3 Lib/test/test_float.py /^ class Foo3(float):$/;" c function:GeneralFloatCases.test_floatconversion +Foo4 Lib/test/test_float.py /^ class Foo4(float):$/;" c function:GeneralFloatCases.test_floatconversion +Foo5 Lib/test/test_float.py /^ class Foo5:$/;" c function:GeneralFloatCases.test_floatconversion +FooBar Lib/test/_test_multiprocessing.py /^class FooBar(object):$/;" c +FooBar Lib/test/test_enum.py /^ class FooBar(Enum):$/;" c class:TestSpecial.test_dynamic_members_with_static_methods.Foo +FooBar Lib/test/test_unittest/test_program.py /^ class FooBar(unittest.TestCase):$/;" c class:Test_TestProgram +FooBarGeneric Lib/test/test_typing.py /^ class FooBarGeneric(BarGeneric[int]):$/;" c function:TypedDictTests.test_get_type_hints_generic +FooBase Lib/test/test_dynamicclassattribute.py /^ class FooBase(object):$/;" c function:PropertySubclassTests.test_property_new_getter_new_docstring +FooBase Lib/test/test_email/test_headerregistry.py /^ class FooBase:$/;" c class:TestHeaderRegistry +FooBase Lib/test/test_property.py /^ class FooBase(object):$/;" c function:PropertySubclassTests.test_property_new_getter_new_docstring +FooDefault Lib/test/test_email/test_headerregistry.py /^ class FooDefault:$/;" c class:TestHeaderRegistry +FooEr Lib/test/test_asyncgen.py /^ class FooEr(Exception):$/;" c function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_01 +FooEr Lib/test/test_asyncgen.py /^ class FooEr(Exception):$/;" c function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_02 +FooException Lib/test/test_asyncio/test_waitfor.py /^ class FooException(Exception):$/;" c function:AsyncioWaitForTest.test_wait_for_reraises_exception_during_cancellation +FooGeneric Lib/test/_typed_dict_helper.py /^class FooGeneric(TypedDict, Generic[T]):$/;" c +FooHandler Lib/test/test_urllib2.py /^ class FooHandler(urllib.request.BaseHandler):$/;" c function:MiscTests.test_build_opener +FooStr Lib/test/test_float.py /^ class FooStr(str):$/;" c function:GeneralFloatCases.test_floatconversion +FooStr Lib/test/test_typing.py /^ class FooStr:$/;" c function:LiteralStringTests.test_basics +FooStr Lib/test/test_typing.py /^ class FooStr:$/;" c function:SelfTests.test_basics +FooStrTyping Lib/test/test_typing.py /^ class FooStrTyping:$/;" c function:LiteralStringTests.test_basics +FooStrTyping Lib/test/test_typing.py /^ class FooStrTyping:$/;" c function:SelfTests.test_basics +FooSub Lib/test/test_dynamicclassattribute.py /^ class FooSub(Foo):$/;" c function:PropertySubclassTests.test_property_setter_copies_getter_docstring +FooSub Lib/test/test_property.py /^ class FooSub(Foo):$/;" c function:PropertySubclassTests.test_property_setter_copies_getter_docstring +For Include/internal/pycore_ast.h /^ } For;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon61 +ForRefExample Lib/test/test_typing.py /^class ForRefExample:$/;" c +For_fields Python/Python-ast.c /^static const char * const For_fields[]={$/;" v file: +For_kind Include/internal/pycore_ast.h /^ For_kind=10, AsyncFor_kind=11, While_kind=12, If_kind=13,$/;" e enum:_stmt_kind +For_type Include/internal/pycore_ast_state.h /^ PyObject *For_type;$/;" m struct:ast_state +Forced Tools/peg_generator/pegen/grammar.py /^class Forced:$/;" c +ForeignDTDTests Lib/test/test_pyexpat.py /^class ForeignDTDTests(unittest.TestCase):$/;" c +ForkAwareLocal Lib/multiprocessing/util.py /^class ForkAwareLocal(threading.local):$/;" c +ForkAwareThreadLock Lib/multiprocessing/util.py /^class ForkAwareThreadLock(object):$/;" c +ForkCmdLineTest Lib/test/test_multiprocessing_main_handling.py /^class ForkCmdLineTest(MultiProcessingCmdLineMixin, unittest.TestCase):$/;" c +ForkContext Lib/multiprocessing/context.py /^ class ForkContext(BaseContext):$/;" c +ForkProcess Lib/multiprocessing/context.py /^ class ForkProcess(process.BaseProcess):$/;" c +ForkServer Lib/multiprocessing/forkserver.py /^class ForkServer(object):$/;" c +ForkServerCmdLineTest Lib/test/test_multiprocessing_main_handling.py /^class ForkServerCmdLineTest(MultiProcessingCmdLineMixin, unittest.TestCase):$/;" c +ForkServerContext Lib/multiprocessing/context.py /^ class ForkServerContext(BaseContext):$/;" c +ForkServerProcess Lib/multiprocessing/context.py /^ class ForkServerProcess(process.BaseProcess):$/;" c +ForkTest Lib/test/test_fork1.py /^class ForkTest(ForkWait):$/;" c +ForkTests Lib/test/test_os.py /^class ForkTests(unittest.TestCase):$/;" c +ForkWait Lib/test/fork_wait.py /^class ForkWait(unittest.TestCase):$/;" c +ForkingErrorTestServer Lib/test/test_socketserver.py /^ class ForkingErrorTestServer(socketserver.ForkingMixIn, BaseErrorTestServer):$/;" c +ForkingMixIn Lib/socketserver.py /^ class ForkingMixIn:$/;" c +ForkingPickler Lib/multiprocessing/reduction.py /^ ForkingPickler = ForkingPickler$/;" v class:AbstractReducer +ForkingPickler Lib/multiprocessing/reduction.py /^class ForkingPickler(pickle.Pickler):$/;" c +ForkingTCPServer Lib/socketserver.py /^ class ForkingTCPServer(ForkingMixIn, TCPServer): pass$/;" c +ForkingUDPServer Lib/socketserver.py /^ class ForkingUDPServer(ForkingMixIn, UDPServer): pass$/;" c +ForkingUnixDatagramServer Lib/socketserver.py /^ class ForkingUnixDatagramServer(ForkingMixIn, UnixDatagramServer): pass$/;" c class:ThreadingTCPServer.ThreadingUnixDatagramServer +ForkingUnixStreamServer Lib/socketserver.py /^ class ForkingUnixStreamServer(ForkingMixIn, UnixStreamServer): pass$/;" c class:ThreadingTCPServer.ThreadingUnixDatagramServer +Form Lib/tkinter/tix.py /^class Form:$/;" c +FormatClassTest Lib/idlelib/idle_test/test_format.py /^class FormatClassTest(unittest.TestCase):$/;" c +FormatCounterFormatter Tools/clinic/clinic.py /^class FormatCounterFormatter(string.Formatter):$/;" c +FormatDateTests Lib/test/test_email/test_utils.py /^class FormatDateTests(unittest.TestCase):$/;" c +FormatError Lib/mailbox.py /^class FormatError(Error):$/;" c +FormatError Modules/_ctypes/callproc.c /^static WCHAR *FormatError(DWORD code)$/;" f file: +FormatEventTest Lib/idlelib/idle_test/test_format.py /^class FormatEventTest(unittest.TestCase):$/;" c +FormatFunctionsTestCase Lib/test/test_float.py /^class FormatFunctionsTestCase(unittest.TestCase):$/;" c +FormatHelperTests Lib/test/test_clinic.py /^class FormatHelperTests(unittest.TestCase):$/;" c +FormatParagraph Lib/idlelib/format.py /^class FormatParagraph:$/;" c +FormatRegion Lib/idlelib/format.py /^class FormatRegion:$/;" c +FormatRegionTest Lib/idlelib/idle_test/test_format.py /^class FormatRegionTest(unittest.TestCase):$/;" c +FormatTest Lib/test/test_decimal.py /^class FormatTest:$/;" c +FormatTest Lib/test/test_format.py /^class FormatTest(unittest.TestCase):$/;" c +FormatTestCase Lib/test/test_float.py /^class FormatTestCase(unittest.TestCase):$/;" c +FormattedValue Include/internal/pycore_ast.h /^ } FormattedValue;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon95 +FormattedValue_fields Python/Python-ast.c /^static const char * const FormattedValue_fields[]={$/;" v file: +FormattedValue_kind Include/internal/pycore_ast.h /^ FormattedValue_kind=18, JoinedStr_kind=19, Constant_kind=20,$/;" e enum:_expr_kind +FormattedValue_type Include/internal/pycore_ast_state.h /^ PyObject *FormattedValue_type;$/;" m struct:ast_state +Formatter Lib/logging/__init__.py /^class Formatter(object):$/;" c +Formatter Lib/string.py /^class Formatter:$/;" c +Formatter Tools/cases_generator/generate_cases.py /^class Formatter:$/;" c +FormatterTest Lib/test/test_logging.py /^class FormatterTest(unittest.TestCase, AssertErrorMessage):$/;" c +Forward Lib/test/test_types.py /^class Forward: ...$/;" c +ForwardBackwardTest Lib/idlelib/idle_test/test_searchengine.py /^class ForwardBackwardTest(unittest.TestCase):$/;" c +ForwardRef Lib/typing.py /^class ForwardRef(_Final, _root=True):$/;" c +ForwardRefTests Lib/test/test_typing.py /^class ForwardRefTests(BaseTestCase):$/;" c +Founder Lib/test/test_typing.py /^class Founder(Employee):$/;" c +FrFRCookedTest Lib/test/test_locale.py /^class FrFRCookedTest(BaseCookedTest):$/;" c +Frac_mask Python/dtoa.c 250;" d file: +Frac_mask1 Python/dtoa.c 251;" d file: +Fraction Lib/fractions.py /^class Fraction(numbers.Rational):$/;" c +FractionTest Lib/test/test_fractions.py /^class FractionTest(unittest.TestCase):$/;" c +Frag Lib/test/test_descr.py /^ class Frag(Node, list):$/;" c function:ClassPropertiesAndMethods.test_multiple_inheritance +FragmentBuilder Lib/xml/dom/expatbuilder.py /^class FragmentBuilder(ExpatBuilder):$/;" c +FragmentBuilderNS Lib/xml/dom/expatbuilder.py /^class FragmentBuilderNS(Namespaces, FragmentBuilder):$/;" c +Frame Lib/test/test_unittest/test_result.py /^ class Frame(object):$/;" c function:Test_TestResult.testStackFrameTrimming +Frame Lib/tkinter/__init__.py /^class Frame(Widget):$/;" c +Frame Lib/tkinter/ttk.py /^class Frame(Widget):$/;" c +Frame Lib/tracemalloc.py /^class Frame:$/;" c +Frame Tools/gdb/libpython.py /^class Frame(object):$/;" c +FrameAttrsTest Lib/test/test_frame.py /^class FrameAttrsTest(unittest.TestCase):$/;" c +FrameInfo Lib/inspect.py /^class FrameInfo(_FrameInfo):$/;" c +FrameProxy Lib/idlelib/debugger_r.py /^class FrameProxy:$/;" c +FrameSummary Lib/traceback.py /^class FrameSummary:$/;" c +FrameTest Lib/test/test_tkinter/test_widgets.py /^class FrameTest(AbstractToplevelTest, unittest.TestCase):$/;" c +FrameTest Lib/test/test_ttk/test_widgets.py /^class FrameTest(AbstractToplevelTest, unittest.TestCase):$/;" c +FrameTreeItem Lib/idlelib/stackviewer.py /^class FrameTreeItem(TreeItem):$/;" c +FrameType Lib/types.py /^ FrameType = type(exc.__traceback__.tb_frame)$/;" v +FreeNonRecursiveMutex Python/thread_nt.h /^FreeNonRecursiveMutex(PNRMUTEX mutex)$/;" f +FreezableDefaultDict Lib/importlib/metadata/_collections.py /^class FreezableDefaultDict(collections.defaultdict):$/;" c +FromFileConverterArgumentParser Lib/test/test_argparse.py /^ class FromFileConverterArgumentParser(ErrorRaisingArgumentParser):$/;" c class:TestArgumentsFromFileConverter +FromImport Lib/lib2to3/fixer_util.py /^def FromImport(package_name, name_leafs):$/;" f +FromObj Modules/_tkinter.c /^FromObj(TkappObject *tkapp, Tcl_Obj *value)$/;" f file: +FrozenImporter Lib/importlib/_bootstrap.py /^class FrozenImporter:$/;" c +FrozenImportlibTests Lib/test/test_importlib/test_api.py /^class FrozenImportlibTests(unittest.TestCase):$/;" c +FrozenInstanceError Lib/dataclasses.py /^class FrozenInstanceError(AttributeError): pass$/;" c +FrozenModule Tools/build/freeze_modules.py /^class FrozenModule(namedtuple('FrozenModule', 'name ispkg section source')):$/;" c +FrozenSet Lib/typing.py /^FrozenSet = _alias(frozenset, 1, inst=False, name='FrozenSet')$/;" v +FrozenSetSubclass Lib/test/test_set.py /^class FrozenSetSubclass(frozenset):$/;" c +FrozenSetSubclassWithSlots Lib/test/test_set.py /^class FrozenSetSubclassWithSlots(frozenset):$/;" c +FrozenSlotsAllStateClass Lib/test/test_dataclasses.py /^ class FrozenSlotsAllStateClass:$/;" c class:TestSlots +FrozenSlotsClass Lib/test/test_dataclasses.py /^ class FrozenSlotsClass:$/;" c class:TestSlots +FrozenSlotsGetStateClass Lib/test/test_dataclasses.py /^ class FrozenSlotsGetStateClass:$/;" c class:TestSlots +FrozenSlotsSetStateClass Lib/test/test_dataclasses.py /^ class FrozenSlotsSetStateClass:$/;" c class:TestSlots +FrozenSource Tools/build/freeze_modules.py /^class FrozenSource(namedtuple('FrozenSource', 'id pyfile frozenfile deepfreezefile')):$/;" c +FrozenWithoutSlotsClass Lib/test/test_dataclasses.py /^ class FrozenWithoutSlotsClass:$/;" c class:TestSlots +Fruit Lib/test/test_enum.py /^ class Fruit(Enum):$/;" c +Full Lib/queue.py /^class Full(Exception):$/;" c +FullArgSpec Lib/inspect.py /^FullArgSpec = namedtuple('FullArgSpec',$/;" v +FullLoader Lib/test/test_module/__init__.py /^class FullLoader:$/;" c +Func Lib/idlelib/idle_test/mock_idle.py /^class Func:$/;" c +FuncAttrsTest Lib/test/test_funcattrs.py /^class FuncAttrsTest(unittest.TestCase):$/;" c +FuncPtr Tools/c-analyzer/c_parser/info.py /^class FuncPtr(TypeDeclaration):$/;" c +Function Lib/pyclbr.py /^class Function(_Object):$/;" c +Function Lib/symtable.py /^class Function(SymbolTable):$/;" c +Function Tools/c-analyzer/c_parser/info.py /^class Function(Declaration):$/;" c +Function Tools/clinic/clinic.py /^class Function:$/;" c +FunctionBlock Include/internal/pycore_symtable.h /^ FunctionBlock, ClassBlock, ModuleBlock,$/;" e enum:_block_type +FunctionCall Tools/peg_generator/pegen/c_generator.py /^class FunctionCall:$/;" c +FunctionCallTestCase Lib/test/test_ctypes/test_win32.py /^class FunctionCallTestCase(unittest.TestCase):$/;" c +FunctionCalls Lib/test/test_call.py /^class FunctionCalls(unittest.TestCase):$/;" c +FunctionDef Include/internal/pycore_ast.h /^ } FunctionDef;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon52 +FunctionDef_fields Python/Python-ast.c /^static const char * const FunctionDef_fields[]={$/;" v file: +FunctionDef_kind Include/internal/pycore_ast.h /^enum _stmt_kind {FunctionDef_kind=1, AsyncFunctionDef_kind=2, ClassDef_kind=3,$/;" e enum:_stmt_kind +FunctionDef_type Include/internal/pycore_ast_state.h /^ PyObject *FunctionDef_type;$/;" m struct:ast_state +FunctionDictsTest Lib/test/test_funcattrs.py /^class FunctionDictsTest(FuncAttrsTest):$/;" c +FunctionDocstringTest Lib/test/test_funcattrs.py /^class FunctionDocstringTest(FuncAttrsTest):$/;" c +FunctionProfile Lib/pstats.py /^class FunctionProfile:$/;" c +FunctionPropertiesTest Lib/test/test_funcattrs.py /^class FunctionPropertiesTest(FuncAttrsTest):$/;" c +FunctionTest Lib/idlelib/idle_test/test_colorizer.py /^class FunctionTest(unittest.TestCase):$/;" c +FunctionTest Lib/idlelib/idle_test/test_pyshell.py /^class FunctionTest(unittest.TestCase):$/;" c +FunctionTestCase Lib/test/test_ctypes/test_functions.py /^class FunctionTestCase(unittest.TestCase):$/;" c +FunctionTestCase Lib/unittest/case.py /^class FunctionTestCase(TestCase):$/;" c +FunctionTests Lib/test/test_sqlite3/test_userfunctions.py /^class FunctionTests(unittest.TestCase):$/;" c +FunctionType Include/internal/pycore_ast.h /^ } FunctionType;$/;" m union:_mod::__anon46 typeref:struct:_mod::__anon46::__anon50 +FunctionType Lib/_collections_abc.py /^FunctionType = type(_f)$/;" v +FunctionType Lib/types.py /^FunctionType = type(_f)$/;" v +FunctionType_fields Python/Python-ast.c /^static const char * const FunctionType_fields[]={$/;" v file: +FunctionType_kind Include/internal/pycore_ast.h /^ FunctionType_kind=4};$/;" e enum:_mod_kind +FunctionType_type Include/internal/pycore_ast_state.h /^ PyObject *FunctionType_type;$/;" m struct:ast_state +FunctionTypes Lib/unittest/mock.py /^FunctionTypes = ($/;" v +FunctionVisitor Parser/asdl_c.py /^class FunctionVisitor(PrototypeVisitor):$/;" c +FunctionalTest Lib/test/test_atexit.py /^class FunctionalTest(unittest.TestCase):$/;" c +FunctionalTestCaseMixin Lib/test/test_asyncio/functional.py /^class FunctionalTestCaseMixin:$/;" c +Functions Modules/_decimal/tests/deccheck.py /^Functions = {$/;" v +FunkyProperties Lib/test/pydocfodder.py /^class FunkyProperties(object):$/;" c +Funny Lib/lib2to3/pgen2/tokenize.py /^Funny = group(Operator, Bracket, Special)$/;" v +Funny Lib/tokenize.py /^Funny = group(r'\\r?\\n', Special)$/;" v +Fut Lib/test/test_asyncio/test_tasks.py /^ class Fut(asyncio.Future):$/;" c function:BaseTaskTests.test_step_result_future +Fut Lib/test/test_asyncio/test_tasks.py /^ class Fut(asyncio.Future):$/;" c function:CTask_Future_Tests.test_foobar +Future Lib/asyncio/futures.py /^class Future:$/;" c +Future Lib/concurrent/futures/_base.py /^class Future(object):$/;" c +Future Lib/test/test_asyncio/test_tasks.py /^ Future = None$/;" v class:BaseTaskTests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = futures._PyFuture$/;" v class:CTaskSubclass_PyFuture_Tests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = futures._PyFuture$/;" v class:CTask_PyFuture_Tests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = futures._PyFuture$/;" v class:PyTask_PyFuture_SubclassTests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = futures._PyFuture$/;" v class:PyTask_PyFuture_Tests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = getattr(futures, '_CFuture', None)$/;" v class:CTask_CFuture_SubclassTests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = getattr(futures, '_CFuture', None)$/;" v class:CTask_CFuture_Tests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = getattr(futures, '_CFuture', None)$/;" v class:PyTask_CFutureSubclass_Tests +Future Lib/test/test_asyncio/test_tasks.py /^ Future = getattr(futures, '_CFuture', None)$/;" v class:PyTask_CFuture_Tests +Future Lib/test/test_asyncio/test_tasks.py /^ class Future(CommonFuture, BaseFuture):$/;" c function:add_subclass_tests +Future Lib/test/test_inspect.py /^ class Future:$/;" c function:TestPredicates.test_isawaitable +FutureGatherTests Lib/test/test_asyncio/test_tasks.py /^class FutureGatherTests(GatherTestsBase, test_utils.TestCase):$/;" c +FutureIterType Modules/_asynciomodule.c /^ PyTypeObject *FutureIterType;$/;" m struct:__anon308 file: +FutureIter_am_send Modules/_asynciomodule.c /^FutureIter_am_send(futureiterobject *it,$/;" f file: +FutureIter_clear Modules/_asynciomodule.c /^FutureIter_clear(futureiterobject *it)$/;" f file: +FutureIter_close Modules/_asynciomodule.c /^FutureIter_close(futureiterobject *self, PyObject *arg)$/;" f file: +FutureIter_dealloc Modules/_asynciomodule.c /^FutureIter_dealloc(futureiterobject *it)$/;" f file: +FutureIter_iternext Modules/_asynciomodule.c /^FutureIter_iternext(futureiterobject *it)$/;" f file: +FutureIter_methods Modules/_asynciomodule.c /^static PyMethodDef FutureIter_methods[] = {$/;" v file: +FutureIter_send Modules/_asynciomodule.c /^FutureIter_send(futureiterobject *self, PyObject *unused)$/;" f file: +FutureIter_slots Modules/_asynciomodule.c /^static PyType_Slot FutureIter_slots[] = {$/;" v file: +FutureIter_spec Modules/_asynciomodule.c /^static PyType_Spec FutureIter_spec = {$/;" v file: +FutureIter_throw Modules/_asynciomodule.c /^FutureIter_throw(futureiterobject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +FutureIter_traverse Modules/_asynciomodule.c /^FutureIter_traverse(futureiterobject *it, visitproc visit, void *arg)$/;" f file: +FutureLike Lib/test/test_coroutines.py /^ class FutureLike:$/;" c function:CoroutineTest.test_await_14 +FutureObj Modules/_asynciomodule.c /^} FutureObj;$/;" t typeref:struct:__anon310 file: +FutureObj_HEAD Modules/_asynciomodule.c 111;" d file: +FutureObj_clear Modules/_asynciomodule.c /^FutureObj_clear(FutureObj *fut)$/;" f file: +FutureObj_dealloc Modules/_asynciomodule.c /^FutureObj_dealloc(PyObject *self)$/;" f file: +FutureObj_finalize Modules/_asynciomodule.c /^FutureObj_finalize(FutureObj *fut)$/;" f file: +FutureObj_get_blocking Modules/_asynciomodule.c /^FutureObj_get_blocking(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_callbacks Modules/_asynciomodule.c /^FutureObj_get_callbacks(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_cancel_message Modules/_asynciomodule.c /^FutureObj_get_cancel_message(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_exception Modules/_asynciomodule.c /^FutureObj_get_exception(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_log_traceback Modules/_asynciomodule.c /^FutureObj_get_log_traceback(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_loop Modules/_asynciomodule.c /^FutureObj_get_loop(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_result Modules/_asynciomodule.c /^FutureObj_get_result(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_source_traceback Modules/_asynciomodule.c /^FutureObj_get_source_traceback(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_get_state Modules/_asynciomodule.c /^FutureObj_get_state(FutureObj *fut, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_repr Modules/_asynciomodule.c /^FutureObj_repr(FutureObj *fut)$/;" f file: +FutureObj_set_blocking Modules/_asynciomodule.c /^FutureObj_set_blocking(FutureObj *fut, PyObject *val, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_set_cancel_message Modules/_asynciomodule.c /^FutureObj_set_cancel_message(FutureObj *fut, PyObject *msg,$/;" f file: +FutureObj_set_log_traceback Modules/_asynciomodule.c /^FutureObj_set_log_traceback(FutureObj *fut, PyObject *val, void *Py_UNUSED(ignored))$/;" f file: +FutureObj_traverse Modules/_asynciomodule.c /^FutureObj_traverse(FutureObj *fut, visitproc visit, void *arg)$/;" f file: +FutureReprTests Lib/test/test_asyncio/test_futures2.py /^class FutureReprTests(unittest.IsolatedAsyncioTestCase):$/;" c +FutureTest Lib/test/test___future__.py /^class FutureTest(unittest.TestCase):$/;" c +FutureTest Lib/test/test_future.py /^class FutureTest(unittest.TestCase):$/;" c +FutureTests Lib/test/test_asyncio/test_futures2.py /^class FutureTests:$/;" c +FutureTests Lib/test/test_concurrent_futures/test_future.py /^class FutureTests(BaseTestCase):$/;" c +FutureType Modules/_asynciomodule.c /^ PyTypeObject *FutureType;$/;" m struct:__anon308 file: +FutureType_getsetlist Modules/_asynciomodule.c /^static PyGetSetDef FutureType_getsetlist[] = {$/;" v file: +FutureType_members Modules/_asynciomodule.c /^static PyMemberDef FutureType_members[] = {$/;" v file: +FutureType_methods Modules/_asynciomodule.c /^static PyMethodDef FutureType_methods[] = {$/;" v file: +Future_Check Modules/_asynciomodule.c 154;" d file: +Future_CheckExact Modules/_asynciomodule.c 151;" d file: +Future_slots Modules/_asynciomodule.c /^static PyType_Slot Future_slots[] = {$/;" v file: +Future_spec Modules/_asynciomodule.c /^static PyType_Spec Future_spec = {$/;" v file: +FwalkTests Lib/test/test_os.py /^class FwalkTests(WalkTests):$/;" c +G Lib/test/test_builtin.py /^ class G:$/;" c function:BuiltinTest.test_zip +G Lib/test/test_descr.py /^ class G(E, D): pass$/;" c class:ClassPropertiesAndMethods.test_diamond_inheritance.E +G Lib/test/test_descr.py /^ class G(object):$/;" c class:.test_slots.F +G Lib/test/test_descr.py /^ class G(D, metaclass=WorkAlways):$/;" c function:.test_mutable_bases_with_failing_mro +G Lib/test/test_descr.py /^ class G(object):$/;" c function:.test_set_class +G Lib/test/test_dict.py /^ class G(dict):$/;" c function:DictTest.test_missing +G Lib/test/test_enum.py /^ G = 7$/;" v class:TestSpecial.test_inherited_data_type.MyUnBrokenEnum +G Lib/test/test_enumerate.py /^class G:$/;" c +G Lib/test/test_grammar.py /^ class G: pass$/;" c function:GrammarTests.test_classdef +G Lib/test/test_heapq.py /^class G:$/;" c +G Lib/test/test_itertools.py /^class G:$/;" c +G Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class G:$/;" c function:GrammarTests.testClassdef +G Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class G: pass$/;" c function:GrammarTests.testClassdef +G Lib/test/test_set.py /^class G:$/;" c +G Lib/test/test_super.py /^class G(A):$/;" c +G Lib/test/test_types.py /^ class G(First, Second): pass$/;" c function:ClassCreationTests.test_get_original_bases +G Lib/test/test_typing.py /^ G = A[T, Unpack[Ts], T2]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +G Lib/test/test_typing.py /^ class G(Generic[T]):$/;" c function:GenericTests.test_non_generic_subscript +G Lib/test/test_typing.py /^ class G(typing.AsyncGenerator[int, int]):$/;" c function:CollectionsAbcTests.test_subclassing_async_generator +G Lib/test/test_typing.py /^ class G(typing.Generator[int, int, int]): ...$/;" c function:CollectionsAbcTests.test_subclassing +G Lib/test/test_typing.py /^class G(Generic[T]):$/;" c +G Lib/test/test_unicode.py /^ class G:$/;" c function:UnicodeTest.test_format +G Lib/test/test_userdict.py /^ class G(collections.UserDict):$/;" c function:UserDictTest.test_missing +G Lib/turtledemo/planet_and_moon.py /^G = 8$/;" v +G Modules/_blake2/impl/blake2b-ref.c 250;" d file: +G Modules/_blake2/impl/blake2b-ref.c 288;" d file: +G Modules/_blake2/impl/blake2s-ref.c 242;" d file: +G Modules/_blake2/impl/blake2s-ref.c 278;" d file: +G Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +G1 Lib/test/test_typing.py /^ class G1(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_bad_var_substitution +G1 Lib/test/test_typing.py /^ class G1(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_repr_is_correct +G1 Lib/test/test_typing.py /^ class G1(Generic[*Ts]): pass$/;" c function:TypeVarTupleTests.test_var_substitution +G1 Modules/_blake2/impl/blake2b-round.h 47;" d +G1 Modules/_blake2/impl/blake2s-round.h 44;" d +G2 Lib/test/test_typing.py /^ class G2(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_bad_var_substitution +G2 Lib/test/test_typing.py /^ class G2(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_repr_is_correct +G2 Lib/test/test_typing.py /^ class G2(Generic[Unpack[Ts]]): pass$/;" c function:TypeVarTupleTests.test_var_substitution +G2 Modules/_blake2/impl/blake2b-round.h 66;" d +G2 Modules/_blake2/impl/blake2s-round.h 52;" d +GA Lib/telnetlib.py /^GA = bytes([249]) # Go Ahead$/;" v +GAI_ANY Modules/getaddrinfo.c 68;" d file: +GAP Lib/test/test_zoneinfo/test_zoneinfo.py /^ GAP = 2$/;" v class:TZStrTest +GARRULOUS Lib/test/test_logging.py /^GARRULOUS = 113$/;" v +GATEWAY_TIMEOUT Lib/http/__init__.py /^ GATEWAY_TIMEOUT = (504, 'Gateway Timeout',$/;" v class:HTTPStatus +GATEWAY_TIMEOUT Lib/test/test_httplib.py /^ GATEWAY_TIMEOUT = (504, 'Gateway Timeout',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +GB18030EXTP1_C1 Tools/unicode/genmap_schinese.py /^GB18030EXTP1_C1 = (0xa1, 0xa9)$/;" v +GB18030EXTP1_C2 Tools/unicode/genmap_schinese.py /^GB18030EXTP1_C2 = (0x40, 0xfe)$/;" v +GB18030EXTP2_C1 Tools/unicode/genmap_schinese.py /^GB18030EXTP2_C1 = (0xaa, 0xaf)$/;" v +GB18030EXTP2_C2 Tools/unicode/genmap_schinese.py /^GB18030EXTP2_C2 = (0xa1, 0xfe)$/;" v +GB18030EXTP3_C1 Tools/unicode/genmap_schinese.py /^GB18030EXTP3_C1 = (0xd7, 0xd7)$/;" v +GB18030EXTP3_C2 Tools/unicode/genmap_schinese.py /^GB18030EXTP3_C2 = (0xfa, 0xfe)$/;" v +GB18030EXTP4_C1 Tools/unicode/genmap_schinese.py /^GB18030EXTP4_C1 = (0xf8, 0xfd)$/;" v +GB18030EXTP4_C2 Tools/unicode/genmap_schinese.py /^GB18030EXTP4_C2 = (0xa1, 0xfe)$/;" v +GB18030EXTP5_C1 Tools/unicode/genmap_schinese.py /^GB18030EXTP5_C1 = (0xfe, 0xfe)$/;" v +GB18030EXTP5_C2 Tools/unicode/genmap_schinese.py /^GB18030EXTP5_C2 = (0x50, 0xfe)$/;" v +GB2312_C1 Tools/unicode/genmap_schinese.py /^GB2312_C1 = (0x21, 0x7e)$/;" v +GB2312_C2 Tools/unicode/genmap_schinese.py /^GB2312_C2 = (0x21, 0x7e)$/;" v +GBKL1_C1 Tools/unicode/genmap_schinese.py /^GBKL1_C1 = (0x81, 0xa8)$/;" v +GBKL1_C2 Tools/unicode/genmap_schinese.py /^GBKL1_C2 = (0x40, 0xfe)$/;" v +GBKL2_C1 Tools/unicode/genmap_schinese.py /^GBKL2_C1 = (0xa9, 0xfe)$/;" v +GBKL2_C2 Tools/unicode/genmap_schinese.py /^GBKL2_C2 = (0x40, 0xa0)$/;" v +GBK_DECODE Modules/cjkcodecs/_codecs_cn.c 26;" d file: +GBK_ENCODE Modules/cjkcodecs/_codecs_cn.c 43;" d file: +GCCallbackTests Lib/test/test_gc.py /^class GCCallbackTests(unittest.TestCase):$/;" c +GCState Modules/gcmodule.c /^typedef struct _gc_runtime_state GCState;$/;" t typeref:struct:_gc_runtime_state file: +GCTests Lib/test/test_gc.py /^class GCTests(unittest.TestCase):$/;" c +GCTogglingTests Lib/test/test_gc.py /^class GCTogglingTests(unittest.TestCase):$/;" c +GC_COLLECT_METHODDEF Modules/clinic/gcmodule.c.h 87;" d +GC_DEBUG Modules/gcmodule.c 44;" d file: +GC_DISABLE_METHODDEF Modules/clinic/gcmodule.c.h 35;" d +GC_Detector Lib/test/test_gc.py /^class GC_Detector(object):$/;" c +GC_ENABLE_METHODDEF Modules/clinic/gcmodule.c.h 17;" d +GC_FREEZE_METHODDEF Modules/clinic/gcmodule.c.h 368;" d +GC_GET_COUNT_METHODDEF Modules/clinic/gcmodule.c.h 240;" d +GC_GET_DEBUG_METHODDEF Modules/clinic/gcmodule.c.h 194;" d +GC_GET_FREEZE_COUNT_METHODDEF Modules/clinic/gcmodule.c.h 406;" d +GC_GET_OBJECTS_METHODDEF Modules/clinic/gcmodule.c.h 264;" d +GC_GET_STATS_METHODDEF Modules/clinic/gcmodule.c.h 326;" d +GC_GET_THRESHOLD_METHODDEF Modules/clinic/gcmodule.c.h 222;" d +GC_ISENABLED_METHODDEF Modules/clinic/gcmodule.c.h 53;" d +GC_IS_FINALIZED_METHODDEF Modules/clinic/gcmodule.c.h 355;" d +GC_IS_TRACKED_METHODDEF Modules/clinic/gcmodule.c.h 346;" d +GC_NEXT Modules/gcmodule.c 47;" d file: +GC_PREV Modules/gcmodule.c 48;" d file: +GC_SET_DEBUG_METHODDEF Modules/clinic/gcmodule.c.h 166;" d +GC_UNFREEZE_METHODDEF Modules/clinic/gcmodule.c.h 388;" d +GENERATE_ASDL_SEQ_CONSTRUCTOR Include/internal/pycore_asdl.h 52;" d +GENERATOR Include/internal/pycore_symtable.h 140;" d +GENERATOR_AND_COROUTINE_FLAGS Lib/bdb.py /^GENERATOR_AND_COROUTINE_FLAGS = CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR$/;" v +GENERATOR_EXPRESSION Include/internal/pycore_symtable.h 141;" d +GENERIC_TOKEN Tools/peg_generator/pegen/c_generator.py /^ GENERIC_TOKEN = 3$/;" v class:NodeTypes +GEN_CLOSED Lib/inspect.py /^GEN_CLOSED = 'GEN_CLOSED'$/;" v +GEN_CREATED Lib/inspect.py /^GEN_CREATED = 'GEN_CREATED'$/;" v +GEN_HEAD Modules/gcmodule.c 128;" d file: +GEN_RUNNING Lib/inspect.py /^GEN_RUNNING = 'GEN_RUNNING'$/;" v +GEN_SESSION_CB Lib/test/test_lib2to3/data/infinite_recursion.py /^GEN_SESSION_CB = CFUNCTYPE(c_int, POINTER(SSL), POINTER(c_ubyte), POINTER(c_uint))$/;" v +GEN_SUSPENDED Lib/inspect.py /^GEN_SUSPENDED = 'GEN_SUSPENDED'$/;" v +GET Lib/http/__init__.py /^ GET = 'GET', 'Retrieve the target.'$/;" v class:HTTPMethod +GET Lib/pickle.py /^GET = b'g' # push item from memo on stack; index is string arg$/;" v +GET Modules/_pickle.c /^ GET = 'g',$/;" e enum:opcode file: +GETATTRIBUTE_IS_PYTHON_FUNCTION Python/specialize.c /^ GETATTRIBUTE_IS_PYTHON_FUNCTION \/* Descriptor requires calling a Python __getattribute__ *\/$/;" e enum:__anon686 file: +GETC Objects/fileobject.c 10;" d file: +GETC Objects/fileobject.c 14;" d file: +GETCONFIG_METHODDEF Modules/_sqlite/clinic/connection.c.h 1622;" d +GETFUNC Modules/_ctypes/ctypes.h /^typedef PyObject *(* GETFUNC)(void *, Py_ssize_t size);$/;" t +GETINT16 Modules/audioop.c 316;" d file: +GETINT24 Modules/audioop.c 320;" d file: +GETINT24 Modules/audioop.c 325;" d file: +GETINT32 Modules/audioop.c 317;" d file: +GETINT8 Modules/audioop.c 315;" d file: +GETINTX Modules/audioop.c 309;" d file: +GETITEM Python/ceval_macros.h /^GETITEM(PyObject *v, Py_ssize_t i) {$/;" f +GETITEM Python/ceval_macros.h 127;" d +GETLIMIT_METHODDEF Modules/_sqlite/clinic/connection.c.h 1548;" d +GETLOCAL Python/ceval_macros.h 239;" d +GETRAWSAMPLE Modules/audioop.c 351;" d file: +GETSAMPLE32 Modules/audioop.c 369;" d file: +GETSET_OVERRIDDEN Python/specialize.c /^ GETSET_OVERRIDDEN, \/* __getattribute__ or __setattr__ has been overridden *\/$/;" e enum:__anon686 file: +GETTERCRE Lib/configparser.py /^ GETTERCRE = re.compile(r"^get(?P.+)$")$/;" v class:ConverterMapping +GET_AI Modules/getaddrinfo.c 171;" d file: +GET_AI Modules/getaddrinfo.c 186;" d file: +GET_AITER Include/opcode.h 33;" d +GET_ANEXT Include/opcode.h 34;" d +GET_ARG Modules/_sre/sre.c 1626;" d file: +GET_AWAITABLE Include/opcode.h 89;" d +GET_BITFIELD Modules/_ctypes/cfield.c 394;" d file: +GET_BUFFER_VIEW_OR_ERROR Modules/hashlib.h 8;" d +GET_BUFFER_VIEW_OR_ERROUT Modules/hashlib.h 30;" d +GET_CANONNAME Modules/getaddrinfo.c 160;" d file: +GET_CODE Python/frozen.c 69;" d file: +GET_DAY Modules/_datetimemodule.c 76;" d file: +GET_DEFAULT_CONFIG Lib/test/test_embed.py /^ GET_DEFAULT_CONFIG = object()$/;" v class:InitConfigTests +GET_DT_TZINFO Modules/_datetimemodule.c 125;" d file: +GET_DT_TZINFO Modules/_zoneinfo.c 608;" d file: +GET_HI Modules/expat/xmltok.c 720;" d file: +GET_HI Modules/expat/xmltok.c 727;" d file: +GET_HI Modules/expat/xmltok.c 731;" d file: +GET_HI Modules/expat/xmltok.c 738;" d file: +GET_INT Python/initconfig.c 1325;" d file: +GET_INT Python/initconfig.c 1432;" d file: +GET_ITER Include/opcode.h 41;" d +GET_LEN Include/opcode.h 25;" d +GET_LO Modules/expat/xmltok.c 719;" d file: +GET_LO Modules/expat/xmltok.c 726;" d file: +GET_LO Modules/expat/xmltok.c 730;" d file: +GET_LO Modules/expat/xmltok.c 737;" d file: +GET_LOCALE_STRING Modules/_localemodule.c 196;" d file: +GET_LOCALE_STRING Modules/_localemodule.c 223;" d file: +GET_LOCALE_STRING Modules/_localemodule.c 275;" d file: +GET_LOCALE_STRING Modules/_localemodule.c 342;" d file: +GET_LOCALE_STRING Python/fileutils.c 2830;" d file: +GET_LOCALE_STRING Python/fileutils.c 2859;" d file: +GET_MOD_ATTR Modules/_asynciomodule.c 3674;" d file: +GET_MOD_ATTR Modules/_asynciomodule.c 3723;" d file: +GET_MONTH Modules/_datetimemodule.c 75;" d file: +GET_MSVCC PCbuild/prepare_libffi.bat /^set GET_MSVCC=%SH% -lc "cd $OLDPWD; export MSVCC=`\/usr\/bin\/find $PWD -name msvcc.sh`; echo ${MSVCC};"$/;" v +GET_OP Modules/_sre/sre.c 1619;" d file: +GET_SKIP Modules/_sre/sre.c 1644;" d file: +GET_SKIP_ADJ Modules/_sre/sre.c 1633;" d file: +GET_SOCKET Modules/_ssl.c 382;" d file: +GET_SOCKET_TIMEOUT Modules/_ssl.c 386;" d file: +GET_SOCK_ERROR Modules/socketmodule.c 644;" d file: +GET_SOCK_ERROR Modules/socketmodule.c 649;" d file: +GET_TD_DAYS Modules/_datetimemodule.c 115;" d file: +GET_TD_MICROSECONDS Modules/_datetimemodule.c 117;" d file: +GET_TD_SECONDS Modules/_datetimemodule.c 116;" d file: +GET_TIME_TZINFO Modules/_datetimemodule.c 124;" d file: +GET_UINT Python/initconfig.c 1318;" d file: +GET_UINT Python/initconfig.c 1431;" d file: +GET_WARNINGS_ATTR Python/_warnings.c 188;" d file: +GET_WEAKREFS_LISTPTR Modules/_weakref.c 5;" d file: +GET_WEAKREFS_LISTPTR Objects/weakrefobject.c 6;" d file: +GET_WSA_POINTER Modules/overlapped.c 163;" d file: +GET_WSTR Python/initconfig.c 1331;" d file: +GET_WSTR Python/initconfig.c 1433;" d file: +GET_WSTRLIST Python/initconfig.c 1344;" d file: +GET_WSTR_OPT Python/initconfig.c 1338;" d file: +GET_WSTR_OPT Python/initconfig.c 1434;" d file: +GET_YEAR Modules/_datetimemodule.c 74;" d file: +GET_YIELD_FROM_ITER Include/opcode.h 42;" d +GFF3_example Tools/stringbench/stringbench.py /^GFF3_example = "\\t".join([$/;" v +GH_32092_KW_PASS_METHODDEF Modules/clinic/_testclinic.c.h 2693;" d +GH_32092_OOB_METHODDEF Modules/clinic/_testclinic.c.h 2618;" d +GH_99233_REFCOUNT_METHODDEF Modules/clinic/_testclinic.c.h 2759;" d +GH_99240_DOUBLE_FREE_METHODDEF Modules/clinic/_testclinic.c.h 2794;" d +GH_ISSUE_URI Doc/tools/extensions/pyspecific.py /^GH_ISSUE_URI = 'https:\/\/github.com\/python\/cpython\/issues\/%s'$/;" v +GID_OVERFLOW Lib/test/test_os.py /^ GID_OVERFLOW = (1 << 32)$/;" v class:PosixUidGidTests +GIL_THRESHOLD Objects/stringlib/join.h 162;" d +GIL_THRESHOLD Objects/stringlib/join.h 21;" d +GITBRANCH Modules/getbuildinfo.c 31;" d file: +GITHUB_ACTIONS Tools/build/verify_ensurepip_wheels.py /^GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"$/;" v +GITProperty PCbuild/build.bat /^if exist "%GIT%" set GITProperty=\/p:GIT="%GIT%"$/;" v +GITProperty PCbuild/build.bat /^if not exist "%GIT%" echo Cannot find Git on PATH & set GITProperty=$/;" v +GITTAG Modules/getbuildinfo.c 28;" d file: +GITVERSION Modules/getbuildinfo.c 25;" d file: +GLOBAL Lib/pickle.py /^GLOBAL = b'c' # push self.find_class(modname, name); 2 string args$/;" v +GLOBAL Modules/_pickle.c /^ GLOBAL = 'c',$/;" e enum:opcode file: +GLOBAL Tools/c-analyzer/c_parser/parser/_global.py /^GLOBAL = set_capture_groups(_GLOBAL, ($/;" v +GLOBALS Python/ceval_macros.h 280;" d +GLOBAL_AFTER_ASSIGN Python/symtable.c 15;" d file: +GLOBAL_AFTER_USE Python/symtable.c 21;" d file: +GLOBAL_ANNOT Python/symtable.c 27;" d file: +GLOBAL_EXPLICIT Include/internal/pycore_symtable.h 135;" d +GLOBAL_FLAGS Lib/re/_parser.py /^GLOBAL_FLAGS = SRE_FLAG_DEBUG | SRE_FLAG_TEMPLATE$/;" v +GLOBAL_FREE Modules/_xxinterpchannelsmodule.c 76;" d file: +GLOBAL_IMPLICIT Include/internal/pycore_symtable.h 136;" d +GLOBAL_MALLOC Modules/_xxinterpchannelsmodule.c 74;" d file: +GLOBAL_PARAM Python/symtable.c 9;" d file: +GLOBAL_RE Tools/c-analyzer/c_parser/parser/_global.py /^GLOBAL_RE = re.compile(rf'^ \\s* {GLOBAL}', re.VERBOSE)$/;" v +GLOBAL_STATE Modules/_ctypes/ctypes.h 48;" d +GLOBAL_VAR Lib/test/test_named_expressions.py /^GLOBAL_VAR = None$/;" v +GLOBS Tools/c-analyzer/cpython/_files.py /^GLOBS = [$/;" v +GLOB_ALL Tools/c-analyzer/cpython/_parser.py /^GLOB_ALL = '**\/*'$/;" v +GNU Tools/i18n/pygettext.py /^ GNU = 1$/;" v class:main.Options +GNUReadTest Lib/test/test_tarfile.py /^class GNUReadTest(LongnameTest, ReadTest, unittest.TestCase):$/;" c +GNUTYPE_LONGLINK Lib/tarfile.py /^GNUTYPE_LONGLINK = b"K" # GNU tar longlink$/;" v +GNUTYPE_LONGNAME Lib/tarfile.py /^GNUTYPE_LONGNAME = b"L" # GNU tar longname$/;" v +GNUTYPE_SPARSE Lib/tarfile.py /^GNUTYPE_SPARSE = b"S" # GNU tar sparse file$/;" v +GNUTranslationParsingTest Lib/test/test_gettext.py /^class GNUTranslationParsingTest(GettextBaseTest):$/;" c +GNUTranslations Lib/gettext.py /^class GNUTranslations(NullTranslations):$/;" c +GNUUnicodeTest Lib/test/test_tarfile.py /^class GNUUnicodeTest(UnicodeTest, unittest.TestCase):$/;" c +GNUWriteTest Lib/test/test_tarfile.py /^class GNUWriteTest(unittest.TestCase):$/;" c +GNU_FORMAT Lib/tarfile.py /^GNU_FORMAT = 1 # GNU tar format$/;" v +GNU_MAGIC Lib/tarfile.py /^GNU_MAGIC = b"ustar \\0" # magic gnu tar string$/;" v +GNU_TYPES Lib/tarfile.py /^GNU_TYPES = (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK,$/;" v +GONE Lib/http/__init__.py /^ GONE = (410, 'Gone',$/;" v class:HTTPStatus +GONE Lib/test/test_httplib.py /^ GONE = (410, 'Gone',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +GOOD_SERIALS Lib/test/test___future__.py /^GOOD_SERIALS = ("alpha", "beta", "candidate", "final")$/;" v +GO_TO_INSTRUCTION Python/bytecodes.c 45;" d file: +GO_TO_INSTRUCTION Python/ceval_macros.h 251;" d +GPG Tools/msi/uploadrelease.bat /^ set GPG=$/;" v +GRAMMAR Tools/peg_generator/Makefile /^GRAMMAR = ..\/..\/Grammar\/python.gram$/;" m +GRAMMAR_FILE Tools/peg_generator/scripts/find_max_nesting.py /^GRAMMAR_FILE = "data\/python.gram"$/;" v +GREATER Include/internal/pycore_token.h 37;" d +GREATER Lib/lib2to3/pgen2/token.py /^GREATER = 21$/;" v +GREATER Lib/token.py /^GREATER = 21$/;" v +GREATEREQUAL Include/internal/pycore_token.h 46;" d +GREATEREQUAL Lib/lib2to3/pgen2/token.py /^GREATEREQUAL = 31$/;" v +GREATEREQUAL Lib/token.py /^GREATEREQUAL = 30$/;" v +GREEN Lib/test/test_enum.py /^ GREEN = 2$/;" v class:TestSpecial.test_default_missing_no_chained_exception.Color +GREEN Lib/test/test_enum.py /^ GREEN = 2$/;" v class:TestVerify.test_negative_alias.Color +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:OldTestFlag.test_multiple_mixin.Color +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:OldTestIntFlag.test_multiple_mixin.Color +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:TestSpecial.test_multiple_mixin.Color +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:TestSpecial.test_multiple_mixin.ConfusedColor +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolColor +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolerColor +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolestColor +GREEN Lib/test/test_enum.py /^ GREEN = auto()$/;" v class:TestSpecial.test_multiple_mixin.ReformedColor +GREEN Lib/test/test_enum.py /^ GREEN = 2$/;" v class:OldTestFlag.Color +GREEN Lib/test/test_enum.py /^ GREEN = 2$/;" v class:OldTestIntFlag.Color +GREEN Lib/test/test_patma.py /^ GREEN = 1$/;" v class:TestPatma.test_patma_198.Color +GREEN Lib/test/test_patma.py /^ GREEN = 1$/;" v class:TestPatma.test_patma_199.Color +GRND_NONBLOCK Modules/expat/xmlparse.c 111;" d file: +GROOVE Lib/tkinter/constants.py /^GROOVE='groove'$/;" v +GROUPINGS Tools/c-analyzer/cpython/_capi.py /^GROUPINGS = {$/;" v +GROUP_NAME Lib/test/test_nntplib.py /^ GROUP_NAME = 'aioe.test'$/;" v class:NetworkedNNTP_SSLTests +GROUP_NAME Lib/test/test_nntplib.py /^ GROUP_NAME = 'fr.comp.lang.python'$/;" v class:NetworkedNNTPTests +GROUP_PAT Lib/test/test_nntplib.py /^ GROUP_PAT = 'aioe.*'$/;" v class:NetworkedNNTP_SSLTests +GROUP_PAT Lib/test/test_nntplib.py /^ GROUP_PAT = 'fr.comp.lang.*'$/;" v class:NetworkedNNTPTests +GROWTH_RATE Objects/dictobject.c 457;" d file: +GRP_GETGRALL_METHODDEF Modules/clinic/grpmodule.c.h 141;" d +GRP_GETGRGID_METHODDEF Modules/clinic/grpmodule.c.h 19;" d +GRP_GETGRNAM_METHODDEF Modules/clinic/grpmodule.c.h 76;" d +GT Tools/cases_generator/lexer.py /^GT = r'>'$/;" v +GUIAdapter Lib/idlelib/debugger_r.py /^class GUIAdapter:$/;" c +GUIProxy Lib/idlelib/debugger_r.py /^class GUIProxy:$/;" c +GUITestResult Tools/unittestgui/unittestgui.py /^class GUITestResult(unittest.TestResult):$/;" c +GarrulousFilter Lib/test/test_logging.py /^class GarrulousFilter(logging.Filter):$/;" c +Gather Tools/peg_generator/pegen/grammar.py /^class Gather(Repeat):$/;" c +GatherTestsBase Lib/test/test_asyncio/test_tasks.py /^class GatherTestsBase:$/;" c +GcMethods Modules/gcmodule.c /^static PyMethodDef GcMethods[] = {$/;" v file: +Gen Lib/test/test_asyncgen.py /^ class Gen:$/;" c function:AsyncGenAsyncioTest.test_async_gen_aiter_class +Gen Lib/test/test_asyncgen.py /^ class Gen:$/;" c function:AsyncGenAsyncioTest.test_async_gen_asyncio_03 +Gen Lib/test/test_collections.py /^ class Gen:$/;" c function:TestOneTrickPonyABCs.test_AsyncGenerator +Gen Lib/test/test_collections.py /^ class Gen:$/;" c function:TestOneTrickPonyABCs.test_Generator +GenDot Lib/test/test_math.py /^ def GenDot(n, c):$/;" f function:MathTests.test_sumprod_extended_precision_accuracy +GenLike Lib/test/test_types.py /^ class GenLike:$/;" c function:CoroutineTests.test_duck_gen +Gender Lib/test/test_enum.py /^ class Gender(Enum):$/;" c function:TestSpecial.test_wrong_enum_in_call +Gender Lib/test/test_enum.py /^ class Gender(Enum):$/;" c function:TestSpecial.test_wrong_enum_in_mixed_call +Gender Lib/test/test_enum.py /^ class Gender(IntEnum):$/;" c function:TestSpecial.test_mixed_enum_in_call_1 +Gender Lib/test/test_enum.py /^ class Gender(IntEnum):$/;" c function:TestSpecial.test_mixed_enum_in_call_2 +GeneralFloatCases Lib/test/test_float.py /^class GeneralFloatCases(unittest.TestCase):$/;" c +GeneralMappingTests Lib/test/test_dict.py /^class GeneralMappingTests(mapping_tests.BasicTestMappingProtocol):$/;" c +GeneralModuleTests Lib/test/test_socket.py /^class GeneralModuleTests(unittest.TestCase):$/;" c +GeneralTest Lib/test/_test_atexit.py /^class GeneralTest(unittest.TestCase):$/;" c +GeneralTest Lib/test/test_atexit.py /^class GeneralTest(unittest.TestCase):$/;" c +GeneralTests Lib/test/test_smtplib.py /^class GeneralTests:$/;" c +GeneralTests Lib/test/test_telnetlib.py /^class GeneralTests(unittest.TestCase):$/;" c +GeneratedParser Tools/peg_generator/pegen/grammar_parser.py /^class GeneratedParser(Parser):$/;" c +Generator Lib/_collections_abc.py /^class Generator(Iterator):$/;" c +Generator Lib/email/generator.py /^class Generator:$/;" c +Generator Lib/test/test_types.py /^ class Generator:$/;" c function:CoroutineTests.test_duck_functional_gen +Generator Lib/typing.py /^Generator = _alias(collections.abc.Generator, 3)$/;" v +GeneratorExp Include/internal/pycore_ast.h /^ } GeneratorExp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon89 +GeneratorExp_fields Python/Python-ast.c /^static const char * const GeneratorExp_fields[]={$/;" v file: +GeneratorExp_kind Include/internal/pycore_ast.h /^ GeneratorExp_kind=12, Await_kind=13, Yield_kind=14,$/;" e enum:_expr_kind +GeneratorExp_type Include/internal/pycore_ast_state.h /^ PyObject *GeneratorExp_type;$/;" m struct:ast_state +GeneratorExpression Include/internal/pycore_symtable.h /^ GeneratorExpression = 4 } _Py_comprehension_ty;$/;" e enum:_comprehension_type +GeneratorProxy Doc/includes/mp_newtype.py /^class GeneratorProxy(BaseProxy):$/;" c +GeneratorStackTraceTest Lib/test/test_generators.py /^class GeneratorStackTraceTest(unittest.TestCase):$/;" c +GeneratorTest Lib/test/test_generators.py /^class GeneratorTest(unittest.TestCase):$/;" c +GeneratorThrowTest Lib/test/test_generators.py /^class GeneratorThrowTest(unittest.TestCase):$/;" c +GeneratorType Lib/types.py /^GeneratorType = type(_g())$/;" v +Generic Lib/test/test_enum.py /^ class Generic(self.enum_type):$/;" c function:_EnumTests.test_object_str_override +Generic Lib/test/test_enum.py /^ class Generic(self.enum_type):$/;" c function:_EnumTests.test_repr_override +GenericAlias Lib/_collections_abc.py /^GenericAlias = type(list[int])$/;" v +GenericAlias Lib/os.py /^GenericAlias = type(list[int])$/;" v +GenericAlias Lib/test/test_symtable.py /^ GenericAlias = find_block(top, "GenericAlias")$/;" v class:SymtableTest +GenericAlias Lib/types.py /^GenericAlias = type(list[int])$/;" v +GenericAliasSubstitutionTests Lib/test/test_typing.py /^class GenericAliasSubstitutionTests(BaseTestCase):$/;" c +GenericAlias_Type Modules/_testcapimodule.c /^static PyTypeObject GenericAlias_Type = {$/;" v file: +GenericAlias_inner Lib/test/test_symtable.py /^ GenericAlias_inner = find_block(GenericAlias, "GenericAlias")$/;" v class:SymtableTest +GenericBrowser Lib/webbrowser.py /^class GenericBrowser(BaseBrowser):$/;" c +GenericBrowserCommandTest Lib/test/test_webbrowser.py /^class GenericBrowserCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +GenericChild Lib/test/test_typing.py /^ class GenericChild(GenericParent[int]):$/;" c function:TypedDictTests.test_orig_bases +GenericMine Lib/test/test_symtable.py /^ GenericMine = find_block(top, "GenericMine")$/;" v class:SymtableTest +GenericMine_inner Lib/test/test_symtable.py /^ GenericMine_inner = find_block(GenericMine, "GenericMine")$/;" v class:SymtableTest +GenericNamedTuple Lib/test/test_types.py /^ class GenericNamedTuple(typing.NamedTuple, typing.Generic[T]):$/;" c function:ClassCreationTests.test_get_original_bases +GenericNamedTuple Lib/test/test_typing.py /^ class GenericNamedTuple(NamedTuple, Generic[T]):$/;" c function:NamedTupleTests.test_orig_bases +GenericParent Lib/test/test_typing.py /^ class GenericParent(TypedDict, Generic[T]):$/;" c function:TypedDictTests.test_orig_bases +GenericPyCData_new Modules/_ctypes/_ctypes.c /^GenericPyCData_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +GenericReparseBuffer Modules/winreparse.h /^ } GenericReparseBuffer;$/;" m union:__anon316::__anon317 typeref:struct:__anon316::__anon317::__anon320 +GenericTaskTests Lib/test/test_asyncio/test_tasks.py /^class GenericTaskTests(test_utils.TestCase):$/;" c +GenericTest Lib/test/test_genericpath.py /^class GenericTest:$/;" c +GenericTests Lib/test/test_signal.py /^class GenericTests(unittest.TestCase):$/;" c +GenericTests Lib/test/test_typing.py /^class GenericTests(BaseTestCase):$/;" c +GenericTypedDict Lib/test/test_types.py /^ class GenericTypedDict(typing.TypedDict, typing.Generic[T]):$/;" c function:ClassCreationTests.test_get_original_bases +GenericWatcherTests Lib/test/test_asyncio/test_subprocess.py /^ class GenericWatcherTests(test_utils.TestCase):$/;" c class:SubprocessMixin +Generic_Type Modules/_testcapimodule.c /^static PyTypeObject Generic_Type = {$/;" v file: +Get Lib/idlelib/config.py /^ def Get(self, section, option, type=None, default=None, raw=False):$/;" m class:IdleConfParser +GetAllExtraHelpSourcesList Lib/idlelib/config.py /^ def GetAllExtraHelpSourcesList(self):$/;" m class:IdleConf +GetBundleFileVersion Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT GetBundleFileVersion() {$/;" f class:PythonBootstrapperApplication file: +GetComError Modules/_ctypes/callproc.c /^GetComError(HRESULT errcode, GUID *riid, IUnknown *pIunk)$/;" f file: +GetCompilerOptions Tools/freeze/checkextensions_win32.py /^ def GetCompilerOptions(self):$/;" m class:CExtension +GetCoreKeys Lib/idlelib/config.py /^ def GetCoreKeys(self, keySetName=None):$/;" m class:IdleConf +GetCurrentKeySet Lib/idlelib/config.py /^ def GetCurrentKeySet(self):$/;" m class:IdleConf +GetCurrentTests Lib/test/test__xxsubinterpreters.py /^class GetCurrentTests(TestBase):$/;" c +GetCurrentTests Lib/test/test_interpreters.py /^class GetCurrentTests(TestBase):$/;" c +GetErrorCode Include/pyexpat.h /^ enum XML_Error (*GetErrorCode)(XML_Parser parser);$/;" m struct:PyExpat_CAPI typeref:enum:PyExpat_CAPI::GetErrorCode +GetErrorColumnNumber Include/pyexpat.h /^ XML_Size (*GetErrorColumnNumber)(XML_Parser parser);$/;" m struct:PyExpat_CAPI +GetErrorLineNumber Include/pyexpat.h /^ XML_Size (*GetErrorLineNumber)(XML_Parser parser);$/;" m struct:PyExpat_CAPI +GetEventLoopTestsMixin Lib/test/test_asyncio/test_events.py /^class GetEventLoopTestsMixin:$/;" c +GetExtensionBindings Lib/idlelib/config.py /^ def GetExtensionBindings(self, extensionName):$/;" m class:IdleConf +GetExtensionKeys Lib/idlelib/config.py /^ def GetExtensionKeys(self, extensionName):$/;" m class:IdleConf +GetExtensions Lib/idlelib/config.py /^ def GetExtensions(self, active_only=True,$/;" m class:IdleConf +GetExtnNameForEvent Lib/idlelib/config.py /^ def GetExtnNameForEvent(self, virtualEvent):$/;" m class:IdleConf +GetExtra Lib/test/test_code.py /^ GetExtra = py.PyUnstable_Code_GetExtra$/;" v class:CodeLocationTest +GetExtraHelpSourceList Lib/idlelib/config.py /^ def GetExtraHelpSourceList(self, configSet):$/;" m class:IdleConf +GetFont Lib/idlelib/config.py /^ def GetFont(self, root, configType, section):$/;" m class:IdleConf +GetHighlight Lib/idlelib/config.py /^ def GetHighlight(self, theme, element):$/;" m class:IdleConf +GetIconName Lib/idlelib/browser.py /^ def GetIconName(self):$/;" m class:ChildBrowserTreeItem +GetIconName Lib/idlelib/browser.py /^ def GetIconName(self):$/;" m class:ModuleBrowserTreeItem +GetIconName Lib/idlelib/debugobj.py /^ def GetIconName(self):$/;" m class:ObjectTreeItem +GetIconName Lib/idlelib/tree.py /^ def GetIconName(self):$/;" m class:FileTreeItem +GetIconName Lib/idlelib/tree.py /^ def GetIconName(self):$/;" m class:TreeItem +GetItem Lib/test/test_index.py /^ class GetItem:$/;" c function:OverflowTestCase.test_getitem +GetKeepedObjects Modules/_ctypes/_ctypes.c /^GetKeepedObjects(CDataObject *target)$/;" f file: +GetKeyBinding Lib/idlelib/config.py /^ def GetKeyBinding(self, keySetName, eventStr):$/;" m class:IdleConf +GetKeySet Lib/idlelib/config.py /^ def GetKeySet(self, keySetName):$/;" m class:IdleConf +GetKeysDialog_spec Lib/idlelib/idle_test/htest.py /^GetKeysDialog_spec = {$/;" v +GetKeysFrame Lib/idlelib/config_key.py /^class GetKeysFrame(Frame):$/;" c +GetKeysWindow Lib/idlelib/config_key.py /^class GetKeysWindow(Toplevel):$/;" c +GetLabelText Lib/idlelib/debugobj.py /^ def GetLabelText(self):$/;" m class:ObjectTreeItem +GetLabelText Lib/idlelib/stackviewer.py /^ def GetLabelText(self):$/;" m class:VariablesTreeItem +GetLabelText Lib/idlelib/tree.py /^ def GetLabelText(self):$/;" m class:TreeItem +GetLastError Lib/ctypes/__init__.py /^ GetLastError = windll.kernel32.GetLastError$/;" v +GetLineColTest Lib/idlelib/idle_test/test_searchengine.py /^class GetLineColTest(unittest.TestCase):$/;" c +GetLineIndentTest Lib/idlelib/idle_test/test_editor.py /^class GetLineIndentTest(unittest.TestCase):$/;" c +GetLineTestsBadData Lib/test/test_linecache.py /^class GetLineTestsBadData(TempFile):$/;" c +GetLineTestsGoodData Lib/test/test_linecache.py /^class GetLineTestsGoodData(TempFile):$/;" c +GetLinkerLibs Tools/freeze/checkextensions_win32.py /^ def GetLinkerLibs(self):$/;" m class:CExtension +GetMainTests Lib/test/test__xxsubinterpreters.py /^class GetMainTests(TestBase):$/;" c +GetOnly Lib/test/test_bisect.py /^class GetOnly:$/;" c +GetOption Lib/idlelib/config.py /^ def GetOption(self, configType, section, option, default=None, type=None,$/;" m class:IdleConf +GetOptionList Lib/idlelib/config.py /^ def GetOptionList(self, section):$/;" m class:IdleConfParser +GetPassCallable Lib/test/test_ssl.py /^ class GetPassCallable:$/;" c function:ContextTests.test_load_cert_chain +GetPassWarning Lib/getpass.py /^class GetPassWarning(UserWarning): pass$/;" c +GetPythonImport Python/dynload_win.c /^static char *GetPythonImport (HINSTANCE hModule)$/;" f file: +GetRandomTests Lib/test/test_os.py /^class GetRandomTests(unittest.TestCase):$/;" c +GetRectangle Modules/_ctypes/_ctypes_test.c /^EXPORT(int) GetRectangle(int flag, RECT *prect)$/;" f +GetRequestHandler Lib/test/test_urllib2_localnet.py /^def GetRequestHandler(responses):$/;" f +GetResult Modules/_ctypes/callproc.c /^static PyObject *GetResult(PyObject *restype, void *result, PyObject *checker)$/;" f file: +GetRunningOnValgrind Python/dynamic_annotations.c /^static int GetRunningOnValgrind(void) {$/;" f file: +GetSectionList Lib/idlelib/config.py /^ def GetSectionList(self, configSet, configType):$/;" m class:IdleConf +GetSelectedIconName Lib/idlelib/tree.py /^ def GetSelectedIconName(self):$/;" m class:TreeItem +GetSelectionTest Lib/idlelib/idle_test/test_searchengine.py /^class GetSelectionTest(unittest.TestCase):$/;" c +GetSetDescriptorType Lib/types.py /^GetSetDescriptorType = type(FunctionType.__code__)$/;" v +GetSourceBase Lib/test/test_inspect.py /^class GetSourceBase(unittest.TestCase):$/;" c +GetSourceFiles Tools/freeze/checkextensions_win32.py /^ def GetSourceFiles(self):$/;" m class:CExtension +GetSourcefileTests Lib/test/test_import/__init__.py /^class GetSourcefileTests(unittest.TestCase):$/;" c +GetString Modules/_ctypes/_ctypes_test.c /^EXPORT(void) GetString(BSTR *pbstr)$/;" f +GetSubList Lib/idlelib/browser.py /^ def GetSubList(self):$/;" m class:ChildBrowserTreeItem +GetSubList Lib/idlelib/browser.py /^ def GetSubList(self):$/;" m class:ModuleBrowserTreeItem +GetSubList Lib/idlelib/debugobj.py /^ def GetSubList(self):$/;" m class:ClassTreeItem +GetSubList Lib/idlelib/debugobj.py /^ def GetSubList(self):$/;" m class:ObjectTreeItem +GetSubList Lib/idlelib/debugobj.py /^ def GetSubList(self):$/;" m class:SequenceTreeItem +GetSubList Lib/idlelib/pathbrowser.py /^ def GetSubList(self):$/;" m class:DirBrowserTreeItem +GetSubList Lib/idlelib/pathbrowser.py /^ def GetSubList(self):$/;" m class:PathBrowserTreeItem +GetSubList Lib/idlelib/stackviewer.py /^ def GetSubList(self):$/;" m class:FrameTreeItem +GetSubList Lib/idlelib/stackviewer.py /^ def GetSubList(self):$/;" m class:StackTreeItem +GetSubList Lib/idlelib/stackviewer.py /^ def GetSubList(self):$/;" m class:VariablesTreeItem +GetSubList Lib/idlelib/tree.py /^ def GetSubList(self):$/;" m class:FileTreeItem +GetSubList Lib/idlelib/tree.py /^ def GetSubList(self):$/;" m class:TreeItem +GetTest Lib/idlelib/idle_test/test_searchengine.py /^class GetTest(unittest.TestCase):$/;" c +GetText Lib/idlelib/browser.py /^ def GetText(self):$/;" m class:ChildBrowserTreeItem +GetText Lib/idlelib/browser.py /^ def GetText(self):$/;" m class:ModuleBrowserTreeItem +GetText Lib/idlelib/debugobj.py /^ def GetText(self):$/;" m class:ObjectTreeItem +GetText Lib/idlelib/pathbrowser.py /^ def GetText(self):$/;" m class:DirBrowserTreeItem +GetText Lib/idlelib/pathbrowser.py /^ def GetText(self):$/;" m class:PathBrowserTreeItem +GetText Lib/idlelib/stackviewer.py /^ def GetText(self): # Titlecase names are overrides.$/;" m class:StackTreeItem +GetText Lib/idlelib/stackviewer.py /^ def GetText(self):$/;" m class:FrameTreeItem +GetText Lib/idlelib/stackviewer.py /^ def GetText(self):$/;" m class:VariablesTreeItem +GetText Lib/idlelib/tree.py /^ def GetText(self):$/;" m class:FileTreeItem +GetText Lib/idlelib/tree.py /^ def GetText(self):$/;" m class:TreeItem +GetThemeDict Lib/idlelib/config.py /^ def GetThemeDict(self, type, themeName):$/;" m class:IdleConf +GetTypeHintTests Lib/test/test_typing.py /^class GetTypeHintTests(BaseTestCase):$/;" c +GetUserCfgDir Lib/idlelib/config.py /^ def GetUserCfgDir(self):$/;" m class:IdleConf +GetUtilitiesTestCase Lib/test/test_typing.py /^class GetUtilitiesTestCase(TestCase):$/;" c +GetVar Modules/_tkinter.c /^GetVar(TkappObject *self, PyObject *args, int flags)$/;" f file: +Get_argspecTest Lib/idlelib/idle_test/test_calltip.py /^class Get_argspecTest(unittest.TestCase):$/;" c +Get_entityTest Lib/idlelib/idle_test/test_calltip.py /^class Get_entityTest(unittest.TestCase):$/;" c +GetcapsTest Lib/test/test_mailcap.py /^class GetcapsTest(unittest.TestCase):$/;" c +GetoptError Lib/getopt.py /^class GetoptError(Exception):$/;" c +GetoptTests Lib/test/test_getopt.py /^class GetoptTests(unittest.TestCase):$/;" c +GetpassGetuserTest Lib/test/test_getpass.py /^class GetpassGetuserTest(unittest.TestCase):$/;" c +GetpassRawinputTest Lib/test/test_getpass.py /^class GetpassRawinputTest(unittest.TestCase):$/;" c +GettextBaseTest Lib/test/test_gettext.py /^class GettextBaseTest(unittest.TestCase):$/;" c +GettextCacheTestCase Lib/test/test_gettext.py /^class GettextCacheTestCase(GettextBaseTest):$/;" c +GettextTestCase1 Lib/test/test_gettext.py /^class GettextTestCase1(GettextBaseTest):$/;" c +GettextTestCase2 Lib/test/test_gettext.py /^class GettextTestCase2(GettextBaseTest):$/;" c +GlobTests Lib/test/test_glob.py /^class GlobTests(unittest.TestCase):$/;" c +Global Include/internal/pycore_ast.h /^ } Global;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon74 +GlobalGenericClass Lib/test/test_type_params.py /^class GlobalGenericClass[T]:$/;" c +GlobalTests Lib/test/test_global.py /^class GlobalTests(unittest.TestCase):$/;" c +Global_fields Python/Python-ast.c /^static const char * const Global_fields[]={$/;" v file: +Global_kind Include/internal/pycore_ast.h /^ Import_kind=21, ImportFrom_kind=22, Global_kind=23,$/;" e enum:_stmt_kind +Global_type Include/internal/pycore_ast_state.h /^ PyObject *Global_type;$/;" m struct:ast_state +GlobalsTest Lib/test/test_statistics.py /^class GlobalsTest(unittest.TestCase):$/;" c +GoToPage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void GoToPage(__in PAGE page) {$/;" f class:PythonBootstrapperApplication file: +Good Lib/test/test_richcmp.py /^ class Good:$/;" c function:ListTest.test_goodentry +GoodStrEnum Lib/test/test_enum.py /^ class GoodStrEnum(StrEnum):$/;" c function:TestSpecial.test_strenum +GoodUnicode Lib/test/test_linecache.py /^class GoodUnicode(GetLineTestsGoodData, unittest.TestCase):$/;" c +GoodbyeEnum Lib/test/test_enum.py /^ class GoodbyeEnum(GoodbyeMixin, EnumMixin, CustomStrEnum):$/;" c function:TestSpecial.test_custom_strenum +GoodbyeEnum Lib/test/test_enum.py /^ class GoodbyeEnum(GoodbyeMixin, EnumMixin, StrEnum):$/;" c function:TestSpecial.test_strenum +GoodbyeMixin Lib/test/test_enum.py /^ class GoodbyeMixin:$/;" c function:TestSpecial.test_custom_strenum +GoodbyeMixin Lib/test/test_enum.py /^ class GoodbyeMixin:$/;" c function:TestSpecial.test_strenum +GoogleURLOrderingTest Lib/test/test_robotparser.py /^class GoogleURLOrderingTest(BaseRobotTest, unittest.TestCase):$/;" c +Goto Lib/idlelib/query.py /^class Goto(Query):$/;" c +GotoGuiTest Lib/idlelib/idle_test/test_query.py /^class GotoGuiTest(unittest.TestCase):$/;" c +GotoTest Lib/idlelib/idle_test/test_query.py /^class GotoTest(unittest.TestCase):$/;" c +Grade Lib/test/test_enum.py /^ class Grade(OrderedEnum):$/;" c function:TestSpecial.test_ordered_mixin +Grades Lib/test/test_enum.py /^ class Grades(IntEnum):$/;" c function:TestSpecial.setUp +Grammar Lib/lib2to3/pgen2/grammar.py /^class Grammar(object):$/;" c +Grammar Tools/peg_generator/pegen/grammar.py /^class Grammar:$/;" c +GrammarError Tools/peg_generator/pegen/grammar.py /^class GrammarError(Exception):$/;" c +GrammarTest Lib/test/test_lib2to3/test_parser.py /^class GrammarTest(support.TestCase):$/;" c +GrammarTests Lib/test/test_grammar.py /^class GrammarTests(unittest.TestCase):$/;" c +GrammarTests Lib/test/test_lib2to3/data/py2_test_grammar.py /^class GrammarTests(unittest.TestCase):$/;" c +GrammarTests Lib/test/test_lib2to3/data/py3_test_grammar.py /^class GrammarTests(unittest.TestCase):$/;" c +GrammarValidator Tools/peg_generator/pegen/validator.py /^class GrammarValidator(GrammarVisitor):$/;" c +GrammarVisitor Tools/peg_generator/pegen/grammar.py /^class GrammarVisitor:$/;" c +GrandchildPost Lib/test/test_patma.py /^ class GrandchildPost(ChildPost):$/;" c function:TestInheritance.test_late_registration_mapping +GrandchildPost Lib/test/test_patma.py /^ class GrandchildPost(ChildPost):$/;" c function:TestInheritance.test_late_registration_sequence +GrandchildPre Lib/test/test_patma.py /^ class GrandchildPre(ChildPre):$/;" c function:TestInheritance.test_late_registration_mapping +GrandchildPre Lib/test/test_patma.py /^ class GrandchildPre(ChildPre):$/;" c function:TestInheritance.test_late_registration_sequence +GraphicsExpose Lib/test/test_tkinter/test_misc.py /^ GraphicsExpose = '13' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +GraphicsExpose Lib/tkinter/__init__.py /^ GraphicsExpose = '13' # undocumented$/;" v class:EventType +GravSys Lib/turtledemo/planet_and_moon.py /^class GravSys(object):$/;" c +Gravity Lib/test/test_tkinter/test_misc.py /^ Gravity = '24'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Gravity Lib/tkinter/__init__.py /^ Gravity = '24'$/;" v class:EventType +GrepDialog Lib/idlelib/grep.py /^class GrepDialog(SearchDialogBase):$/;" c +Grep_itTest Lib/idlelib/idle_test/test_grep.py /^class Grep_itTest(unittest.TestCase):$/;" c +Grid Lib/tkinter/__init__.py /^class Grid:$/;" c +Grid Lib/tkinter/tix.py /^class Grid(TixWidget, XView, YView):$/;" c +GridLayout Lib/test/test_descr.py /^ class GridLayout(object): pass$/;" c function:.test_mro_disagreement +GridTest Lib/test/test_tkinter/test_geometry_managers.py /^class GridTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Group Lib/email/_header_value_parser.py /^class Group(TokenList):$/;" c +Group Lib/email/headerregistry.py /^class Group:$/;" c +Group Lib/test/test_typing.py /^ class Group(NamedTuple):$/;" c function:NamedTupleTests.test_non_generic_subscript +Group Tools/peg_generator/pegen/grammar.py /^class Group:$/;" c +GroupDatabaseTestCase Lib/test/test_grp.py /^class GroupDatabaseTestCase(unittest.TestCase):$/;" c +GroupDict Lib/test/test_dataclasses.py /^ class GroupDict:$/;" c function:TestCase.test_helper_asdict_builtin_containers +GroupDict Lib/test/test_dataclasses.py /^ class GroupDict:$/;" c function:TestCase.test_helper_astuple_builtin_containers +GroupGenerator Objects/stringlib/localeutil.h /^} GroupGenerator;$/;" t typeref:struct:__anon702 +GroupGenerator_init Objects/stringlib/localeutil.h /^GroupGenerator_init(GroupGenerator *self, const char *grouping)$/;" f +GroupGenerator_next Objects/stringlib/localeutil.h /^GroupGenerator_next(GroupGenerator *self)$/;" f +GroupInfo Lib/nntplib.py /^GroupInfo = collections.namedtuple('GroupInfo',$/;" v +GroupList Lib/email/_header_value_parser.py /^class GroupList(TokenList):$/;" c +GroupList Lib/test/test_dataclasses.py /^ class GroupList:$/;" c function:TestCase.test_helper_asdict_builtin_containers +GroupList Lib/test/test_dataclasses.py /^ class GroupList:$/;" c function:TestCase.test_helper_astuple_builtin_containers +GroupTuple Lib/test/test_dataclasses.py /^ class GroupTuple:$/;" c function:TestCase.test_helper_asdict_builtin_containers +GroupTuple Lib/test/test_dataclasses.py /^ class GroupTuple:$/;" c function:TestCase.test_helper_astuple_builtin_containers +Gt Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +GtE Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +GtE_singleton Include/internal/pycore_ast_state.h /^ PyObject *GtE_singleton;$/;" m struct:ast_state +GtE_type Include/internal/pycore_ast_state.h /^ PyObject *GtE_type;$/;" m struct:ast_state +Gt_singleton Include/internal/pycore_ast_state.h /^ PyObject *Gt_singleton;$/;" m struct:ast_state +Gt_type Include/internal/pycore_ast_state.h /^ PyObject *Gt_type;$/;" m struct:ast_state +Guess30Len5 Lib/test/test_iter.py /^ class Guess30Len5(NoGuessLen5):$/;" c function:TestCase.test_builtin_zip +Guess3Len5 Lib/test/test_iter.py /^ class Guess3Len5(NoGuessLen5):$/;" c function:TestCase.test_builtin_zip +Gulp Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class Gulp:$/;" c function:GrammarTests.testPrintStmt +GzCompressStreamWriteTest Lib/test/test_tarfile.py /^ unittest.TestCase):$/;" c +GzCompressWriteTest Lib/test/test_tarfile.py /^class GzCompressWriteTest(GzipTest, _CompressedWriteTest, unittest.TestCase):$/;" c +GzipAppendTest Lib/test/test_tarfile.py /^class GzipAppendTest(GzipTest, AppendTestBase, unittest.TestCase):$/;" c +GzipBrokenHeaderCorrectException Lib/test/test_tarfile.py /^class GzipBrokenHeaderCorrectException(GzipTest, unittest.TestCase):$/;" c +GzipCreateTest Lib/test/test_tarfile.py /^class GzipCreateTest(GzipTest, CreateTest):$/;" c +GzipDecodedResponse Lib/xmlrpc/client.py /^class GzipDecodedResponse(gzip.GzipFile if gzip else object):$/;" c +GzipDetectReadTest Lib/test/test_tarfile.py /^class GzipDetectReadTest(GzipTest, DetectReadTest):$/;" c +GzipFile Lib/gzip.py /^class GzipFile(_compression.BaseStream):$/;" c +GzipListTest Lib/test/test_tarfile.py /^class GzipListTest(GzipTest, ListTest):$/;" c +GzipMiscReadTest Lib/test/test_tarfile.py /^class GzipMiscReadTest(GzipTest, MiscReadTestBase, unittest.TestCase):$/;" c +GzipServerTestCase Lib/test/test_xmlrpc.py /^class GzipServerTestCase(BaseServerTestCase):$/;" c +GzipStreamReadTest Lib/test/test_tarfile.py /^class GzipStreamReadTest(GzipTest, StreamReadTest):$/;" c +GzipStreamWriteTest Lib/test/test_tarfile.py /^class GzipStreamWriteTest(GzipTest, StreamWriteTest):$/;" c +GzipTest Lib/test/test_tarfile.py /^class GzipTest:$/;" c +GzipUstarReadTest Lib/test/test_tarfile.py /^class GzipUstarReadTest(GzipTest, UstarReadTest):$/;" c +GzipUtilTestCase Lib/test/test_xmlrpc.py /^class GzipUtilTestCase(unittest.TestCase):$/;" c +GzipWriteTest Lib/test/test_tarfile.py /^class GzipWriteTest(GzipTest, WriteTest):$/;" c +H Lib/test/test_collections.py /^ class H(Hashable):$/;" c function:TestOneTrickPonyABCs.test_Hashable +H Lib/test/test_decimal.py /^ class H:$/;" c function:UsabilityTest.test_hash_method_nan +H Lib/test/test_descr.py /^ class H(object):$/;" c function:.test_set_class +H Lib/test/test_descr.py /^ class H(object):$/;" c function:.test_slots +H Lib/test/test_enum.py /^ H = 8$/;" v class:TestSpecial.test_inherited_data_type.MyUnBrokenEnum +H Lib/test/test_float.py /^ class H:$/;" c function:GeneralFloatCases.test_hash_nan +H Lib/test/test_grammar.py /^ class H: pass$/;" c function:GrammarTests.test_classdef +H Lib/test/test_set.py /^ class H(self.thetype):$/;" c function:TestJointOps.test_subclass_with_custom_hash +H Lib/test/test_types.py /^ class H(First_, Second_): pass$/;" c function:ClassCreationTests.test_get_original_bases +H Lib/test/test_typing.py /^ H = tuple[list[T], A[*Ts], list[T2]]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +H Lib/test/test_weakset.py /^ class H(WeakSet):$/;" c function:TestWeakSet.test_subclass_with_custom_hash +H Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +HACCEL Lib/ctypes/wintypes.py /^HACCEL = HANDLE$/;" v +HALF_ROUND Python/pyhash.c 361;" d file: +HAMT_ARRAY_NODE_SIZE Python/hamt.c 312;" d file: +HANDLE Lib/ctypes/wintypes.py /^HANDLE = ctypes.c_void_p # in the header files: void *$/;" v +HANDLER_CLEANUP Python/compile.c /^ WITH, ASYNC_WITH, HANDLER_CLEANUP, POP_VALUE, EXCEPTION_HANDLER,$/;" e enum:fblocktype file: +HANDLER_INFO Modules/pyexpat.c 2117;" d file: +HANDLER_INFO Modules/pyexpat.c 2145;" d file: +HANDLE_FLAG_INHERIT Modules/posixmodule.c 14396;" d file: +HANDLE_FLAG_INHERIT Modules/socketmodule.c 2924;" d file: +HANDLE_FLAG_INHERIT Python/fileutils.c 1392;" d file: +HANDLE_TO_PYNUM Modules/_winapi.c 51;" d file: +HANDLE_TO_PYNUM Modules/_winapi.c 57;" d file: +HANDSHAKE Lib/ssl.py /^ HANDSHAKE = 22$/;" v class:_TLSContentType +HANDSHAKE Lib/test/test_ssl.py /^ HANDSHAKE = 22$/;" v class:TestEnumerations.test_tlscontenttype.Checked_TLSContentType +HANDSHAKE_FAILURE Lib/ssl.py /^ HANDSHAKE_FAILURE = 40$/;" v class:_TLSAlertType +HANDSHAKE_FAILURE Lib/test/test_ssl.py /^ HANDSHAKE_FAILURE = 40$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +HASH Lib/test/test_hashlib.py /^ HASH = None$/;" v +HASHLIB_GIL_MINSIZE Modules/hashlib.h 65;" d +HASHTABLE_HIGH Python/hashtable.c 51;" d file: +HASHTABLE_LOW Python/hashtable.c 52;" d file: +HASHTABLE_MIN_SIZE Python/hashtable.c 50;" d file: +HASHTABLE_REHASH_FACTOR Python/hashtable.c 53;" d file: +HASHXOF Lib/test/test_hashlib.py /^ HASHXOF = None$/;" v +HASH_TABLE Modules/expat/xmlparse.c /^} HASH_TABLE;$/;" t typeref:struct:__anon608 file: +HASH_TABLE_ITER Modules/expat/xmlparse.c /^} HASH_TABLE_ITER;$/;" t typeref:struct:__anon609 file: +HASTZINFO Modules/_datetimemodule.c 123;" d file: +HAS_ARG Include/opcode.h 220;" d +HAS_ARG Lib/test/support/bytecode_helper.py /^ HAS_ARG = set(dis.hasarg)$/;" v class:CompilationStepTestCase +HAS_ARG_OR_TARGET Lib/test/support/bytecode_helper.py /^ HAS_ARG_OR_TARGET = HAS_ARG.union(HAS_TARGET)$/;" v class:CompilationStepTestCase +HAS_CCACHE Tools/wasm/wasm_build.py /^HAS_CCACHE = shutil.which("ccache") is not None$/;" v +HAS_CHAR Modules/expat/xmltok_impl.c 131;" d file: +HAS_CHARS Modules/expat/xmltok_impl.c 128;" d file: +HAS_CONST Include/opcode.h 230;" d +HAS_ERROR PC/layout/support/logging.py /^HAS_ERROR = False$/;" v +HAS_KEYLOG Lib/test/test_ssl.py /^HAS_KEYLOG = hasattr(ssl.SSLContext, 'keylog_filename')$/;" v +HAS_NEVER_CHECK_COMMON_NAME Lib/ssl.py /^HAS_NEVER_CHECK_COMMON_NAME = hasattr(_ssl, 'HOSTFLAG_NEVER_CHECK_SUBJECT')$/;" v +HAS_PYUP_PYDOWN Lib/test/test_gdb.py /^HAS_PYUP_PYDOWN = gdb_has_frame_select()$/;" v +HAS_REDUCTION Lib/test/_test_multiprocessing.py /^ HAS_REDUCTION = False$/;" v +HAS_REDUCTION Lib/test/_test_multiprocessing.py /^ HAS_REDUCTION = reduction.HAVE_SEND_HANDLE$/;" v +HAS_REFLECTION Lib/test/test_winreg.py /^HAS_REFLECTION = True if WIN_VER < (6, 1) else False$/;" v +HAS_SHAREDCTYPES Lib/test/_test_multiprocessing.py /^ HAS_SHAREDCTYPES = False$/;" v +HAS_SHAREDCTYPES Lib/test/_test_multiprocessing.py /^ HAS_SHAREDCTYPES = True$/;" v +HAS_SHMEM Lib/multiprocessing/managers.py /^ HAS_SHMEM = False$/;" v +HAS_SHMEM Lib/multiprocessing/managers.py /^ HAS_SHMEM = True$/;" v +HAS_SHMEM Lib/test/_test_multiprocessing.py /^ HAS_SHMEM = False$/;" v +HAS_SHMEM Lib/test/_test_multiprocessing.py /^ HAS_SHMEM = True$/;" v +HAS_TARGET Include/internal/pycore_opcode_utils.h 28;" d +HAS_TARGET Lib/test/support/bytecode_helper.py /^ HAS_TARGET = set(dis.hasjrel + dis.hasjabs + dis.hasexc)$/;" v class:CompilationStepTestCase +HAS_TZDATA_PKG Lib/test/test_zoneinfo/test_zoneinfo.py /^ HAS_TZDATA_PKG = False$/;" v +HAS_TZDATA_PKG Lib/test/test_zoneinfo/test_zoneinfo.py /^ HAS_TZDATA_PKG = True$/;" v +HAS_USER_BASE Lib/test/test_sysconfig.py /^HAS_USER_BASE = sysconfig._HAS_USER_BASE$/;" v +HAS_USER_SITE Lib/test/test_site.py /^HAS_USER_SITE = (site.USER_SITE is not None)$/;" v +HAS_UTF8 Lib/json/encoder.py /^HAS_UTF8 = re.compile(b'[\\x80-\\xff]')$/;" v +HAVE_ACCEPT PC/pyconfig.h 723;" d +HAVE_ADDRINFO Modules/socketmodule.h 71;" d +HAVE_AF_HYPERV Modules/socketmodule.h 254;" d +HAVE_ARGUMENT Include/opcode.h 50;" d +HAVE_ARGUMENT Lib/opcode.py /^HAVE_ARGUMENT = 90 # real opcodes from here have an argument:$/;" v +HAVE_ASYNC_SAFE_CLOSE_RANGE Modules/_posixsubprocess.c 476;" d file: +HAVE_AVX Modules/_blake2/impl/blake2-config.h 30;" d +HAVE_AVX Modules/_blake2/impl/blake2-config.h 40;" d +HAVE_AVX Modules/_blake2/impl/blake2-config.h 46;" d +HAVE_BIND PC/pyconfig.h 724;" d +HAVE_BLAKE2B Modules/_blake2/blake2b_impl.c 36;" d file: +HAVE_BLAKE2S Modules/_blake2/blake2s_impl.c 36;" d file: +HAVE_BROKEN_POLL Modules/selectmodule.c 31;" d file: +HAVE_BROKEN_POSIX_SEMAPHORES Python/thread_pthread.h 87;" d +HAVE_BUILTIN_AVAILABLE Modules/_ctypes/ctypes.h 31;" d +HAVE_BUILTIN_AVAILABLE Modules/posixmodule.c 83;" d file: +HAVE_CLOCK PC/pyconfig.h 56;" d +HAVE_CLOCK_GETTIME_RUNTIME Modules/timemodule.c 56;" d file: +HAVE_CLOCK_GETTIME_RUNTIME Modules/timemodule.c 60;" d file: +HAVE_CLOCK_GETTIME_RUNTIME Python/pytime.c 11;" d file: +HAVE_CONFIG_H Modules/readline.c 38;" d file: +HAVE_CONIO_H PC/pyconfig.h 409;" d +HAVE_CONNECT PC/pyconfig.h 725;" d +HAVE_CONTEXTVAR Lib/_pydecimal.py /^HAVE_CONTEXTVAR = True$/;" v +HAVE_CREATEFILEHANDLER Modules/_tkinter.c 75;" d file: +HAVE_CURSES_IS_PAD Include/py_curses.h 46;" d +HAVE_CWAIT Modules/posixmodule.c 359;" d file: +HAVE_DECLSPEC_DLL Include/pyport.h 503;" d +HAVE_DECLSPEC_DLL PC/pyconfig.h 300;" d +HAVE_DECL_TZNAME PC/pyconfig.h 416;" d +HAVE_DEV_PTMX Modules/posixmodule.c 8170;" d file: +HAVE_DIRECT_H PC/pyconfig.h 412;" d +HAVE_DIRFD Modules/_posixsubprocess.c 59;" d file: +HAVE_DOCSTRINGS Lib/test/support/__init__.py /^HAVE_DOCSTRINGS = (_check_docstrings.__doc__ is not None and$/;" v +HAVE_DOUBLE_ROUNDING Lib/test/test_builtin.py /^HAVE_DOUBLE_ROUNDING = (x + y == 1e16 + 4)$/;" v +HAVE_DOUBLE_ROUNDING Lib/test/test_math.py /^HAVE_DOUBLE_ROUNDING = (x + y == 1e16 + 4)$/;" v +HAVE_DUP PC/pyconfig.h 734;" d +HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH_RUNTIME Modules/_ctypes/callproc.c 1462;" d file: +HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH_RUNTIME Modules/_ctypes/callproc.c 1465;" d file: +HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH_RUNTIME Modules/_ctypes/callproc.c 1485;" d file: +HAVE_DYNAMIC_LOADING PC/pyconfig.h 521;" d +HAVE_ERF PC/pyconfig.h 708;" d +HAVE_ERFC PC/pyconfig.h 711;" d +HAVE_ERRNO_H PC/pyconfig.h 610;" d +HAVE_EXECV Modules/posixmodule.c 355;" d file: +HAVE_FACCESSAT Modules/posixmodule.c 55;" d file: +HAVE_FACCESSAT_RUNTIME Modules/posixmodule.c 123;" d file: +HAVE_FACCESSAT_RUNTIME Modules/posixmodule.c 195;" d file: +HAVE_FACCESSAT_RUNTIME Modules/posixmodule.c 89;" d file: +HAVE_FALLBACK_LOGIN_TTY Modules/posixmodule.c 8297;" d file: +HAVE_FCHMODAT_RUNTIME Modules/posixmodule.c 127;" d file: +HAVE_FCHMODAT_RUNTIME Modules/posixmodule.c 196;" d file: +HAVE_FCHMODAT_RUNTIME Modules/posixmodule.c 90;" d file: +HAVE_FCHOWNAT_RUNTIME Modules/posixmodule.c 131;" d file: +HAVE_FCHOWNAT_RUNTIME Modules/posixmodule.c 197;" d file: +HAVE_FCHOWNAT_RUNTIME Modules/posixmodule.c 91;" d file: +HAVE_FCNTL_H PC/pyconfig.h 613;" d +HAVE_FDOPENDIR_RUNTIME Modules/posixmodule.c 139;" d file: +HAVE_FDOPENDIR_RUNTIME Modules/posixmodule.c 199;" d file: +HAVE_FDOPENDIR_RUNTIME Modules/posixmodule.c 93;" d file: +HAVE_FFI_PREP_CIF_VAR_RUNTIME Modules/_ctypes/callproc.c 842;" d file: +HAVE_FFI_PREP_CLOSURE_LOC_RUNTIME Modules/_ctypes/callbacks.c 401;" d file: +HAVE_FORKING Lib/test/test_socketserver.py /^HAVE_FORKING = test.support.has_fork_support$/;" v +HAVE_FSTATAT_RUNTIME Modules/posixmodule.c 119;" d file: +HAVE_FSTATAT_RUNTIME Modules/posixmodule.c 194;" d file: +HAVE_FSTATAT_RUNTIME Modules/posixmodule.c 88;" d file: +HAVE_FSYNC Modules/posixmodule.c 362;" d file: +HAVE_FTIME PC/pyconfig.h 524;" d +HAVE_FTRUNCATE Modules/_io/fileio.c 39;" d file: +HAVE_FUTIMENS_RUNTIME Modules/posixmodule.c 100;" d file: +HAVE_FUTIMENS_RUNTIME Modules/posixmodule.c 171;" d file: +HAVE_FUTIMENS_RUNTIME Modules/posixmodule.c 206;" d file: +HAVE_GCC_ASM_FOR_X87 Include/pymacconfig.h 25;" d +HAVE_GCC_ASM_FOR_X87 Include/pymacconfig.h 84;" d +HAVE_GETADDRINFO Modules/getaddrinfo.c 65;" d file: +HAVE_GETADDRINFO Modules/socketmodule.c 225;" d file: +HAVE_GETADDRINFO Modules/socketmodule.c 446;" d file: +HAVE_GETADDRINFO Modules/socketmodule.h 73;" d +HAVE_GETENTRYPY_GETRANDOM_RUNTIME Python/bootstrap_hash.c 31;" d file: +HAVE_GETENTRYPY_GETRANDOM_RUNTIME Python/bootstrap_hash.c 35;" d file: +HAVE_GETFINALPATHNAME Lib/test/test_ntpath.py /^ HAVE_GETFINALPATHNAME = False$/;" v +HAVE_GETFINALPATHNAME Lib/test/test_ntpath.py /^ HAVE_GETFINALPATHNAME = True$/;" v +HAVE_GETHOSTBYADDR PC/pyconfig.h 715;" d +HAVE_GETHOSTBYNAME PC/pyconfig.h 716;" d +HAVE_GETHOSTBYNAME_R Modules/socketmodule.c 184;" d file: +HAVE_GETHOSTBYNAME_R Modules/socketmodule.c 197;" d file: +HAVE_GETHOSTBYNAME_R_3_ARG Modules/socketmodule.c 174;" d file: +HAVE_GETHOSTBYNAME_R_3_ARG Modules/socketmodule.c 189;" d file: +HAVE_GETHOSTBYNAME_R_5_ARG Modules/socketmodule.c 175;" d file: +HAVE_GETHOSTBYNAME_R_5_ARG Modules/socketmodule.c 191;" d file: +HAVE_GETHOSTBYNAME_R_6_ARG Modules/socketmodule.c 176;" d file: +HAVE_GETHOSTBYNAME_R_6_ARG Modules/socketmodule.c 195;" d file: +HAVE_GETHOSTNAME PC/pyconfig.h 714;" d +HAVE_GETLOGIN Modules/posixmodule.c 351;" d file: +HAVE_GETNAMEINFO Modules/getnameinfo.c 52;" d file: +HAVE_GETNAMEINFO Modules/socketmodule.c 226;" d file: +HAVE_GETNAMEINFO Modules/socketmodule.h 74;" d +HAVE_GETPEERNAME PC/pyconfig.h 527;" d +HAVE_GETPID PC/pyconfig.h 533;" d +HAVE_GETPPID Modules/posixmodule.c 348;" d file: +HAVE_GETPROTOBYNAME PC/pyconfig.h 717;" d +HAVE_GETSERVBYNAME PC/pyconfig.h 718;" d +HAVE_GETSERVBYPORT PC/pyconfig.h 719;" d +HAVE_GETSHORTPATHNAME Lib/test/test_ntpath.py /^ HAVE_GETSHORTPATHNAME = False$/;" v +HAVE_GETSHORTPATHNAME Lib/test/test_ntpath.py /^ HAVE_GETSHORTPATHNAME = True$/;" v +HAVE_GETSOCKNAME PC/pyconfig.h 726;" d +HAVE_GETVALUE Lib/test/_test_multiprocessing.py /^HAVE_GETVALUE = not getattr(_multiprocessing,$/;" v +HAVE_IEEE_754 Lib/test/test_float.py /^HAVE_IEEE_754 = float.__getformat__("double").startswith("IEEE")$/;" v +HAVE_INET_NTOA PC/pyconfig.h 722;" d +HAVE_INET_PTON Modules/socketmodule.c 229;" d file: +HAVE_INET_PTON PC/pyconfig.h 721;" d +HAVE_INTPTR_T PC/pyconfig.h 380;" d +HAVE_IO_H PC/pyconfig.h 51;" d +HAVE_KILL Modules/posixmodule.c 8875;" d file: +HAVE_LANGINFO_H Include/pyport.h 645;" d +HAVE_LARGEFILE_SUPPORT Include/pymacconfig.h 32;" d +HAVE_LARGEFILE_SUPPORT Include/pymacconfig.h 34;" d +HAVE_LARGEFILE_SUPPORT PC/pyconfig.h 339;" d +HAVE_LARGEFILE_SUPPORT PC/pyconfig.h 342;" d +HAVE_LIBNSL PC/pyconfig.h 679;" d +HAVE_LIBSOCKET PC/pyconfig.h 685;" d +HAVE_LINK Modules/posixmodule.c 3979;" d file: +HAVE_LINKAT_RUNTIME Modules/posixmodule.c 135;" d file: +HAVE_LINKAT_RUNTIME Modules/posixmodule.c 198;" d file: +HAVE_LINKAT_RUNTIME Modules/posixmodule.c 92;" d file: +HAVE_LISTEN PC/pyconfig.h 727;" d +HAVE_LONG_LONG Include/pyport.h 90;" d +HAVE_MEMMOVE Modules/expat/expat_config.h 15;" d +HAVE_MKDIRAT_RUNTIME Modules/posixmodule.c 143;" d file: +HAVE_MKDIRAT_RUNTIME Modules/posixmodule.c 200;" d file: +HAVE_MKDIRAT_RUNTIME Modules/posixmodule.c 94;" d file: +HAVE_MKFIFOAT_RUNTIME Modules/posixmodule.c 103;" d file: +HAVE_MKFIFOAT_RUNTIME Modules/posixmodule.c 179;" d file: +HAVE_MKFIFOAT_RUNTIME Modules/posixmodule.c 209;" d file: +HAVE_MKNODAT_RUNTIME Modules/posixmodule.c 104;" d file: +HAVE_MKNODAT_RUNTIME Modules/posixmodule.c 183;" d file: +HAVE_MKNODAT_RUNTIME Modules/posixmodule.c 210;" d file: +HAVE_MKTIME PC/pyconfig.h 545;" d +HAVE_MP_SEMAPHORE Modules/_multiprocessing/multiprocessing.h 26;" d +HAVE_MP_SEMAPHORE Modules/_multiprocessing/multiprocessing.h 30;" d +HAVE_OPENAT_RUNTIME Modules/posixmodule.c 155;" d file: +HAVE_OPENAT_RUNTIME Modules/posixmodule.c 203;" d file: +HAVE_OPENAT_RUNTIME Modules/posixmodule.c 97;" d file: +HAVE_OPENDIR Modules/posixmodule.c 342;" d file: +HAVE_PIPE Modules/posixmodule.c 361;" d file: +HAVE_POSIX_SPAWN_SETSID_RUNTIME Modules/posixmodule.c 106;" d file: +HAVE_PROCESS_H PC/pyconfig.h 616;" d +HAVE_PROTOTYPES PC/pyconfig.h 492;" d +HAVE_PTR Modules/_testbuffer.c 43;" d file: +HAVE_PTR Objects/memoryobject.c 225;" d file: +HAVE_PUTENV PC/pyconfig.h 489;" d +HAVE_PWRITEV_RUNTIME Modules/posixmodule.c 102;" d file: +HAVE_PWRITEV_RUNTIME Modules/posixmodule.c 175;" d file: +HAVE_PWRITEV_RUNTIME Modules/posixmodule.c 208;" d file: +HAVE_PY_SET_53BIT_PRECISION Include/internal/pycore_pymath.h 114;" d +HAVE_PY_SET_53BIT_PRECISION Include/internal/pycore_pymath.h 144;" d +HAVE_PY_SET_53BIT_PRECISION Include/internal/pycore_pymath.h 87;" d +HAVE_PY_SSIZE_T PC/pyconfig.h 200;" d +HAVE_READLINKAT_RUNTIME Modules/posixmodule.c 159;" d file: +HAVE_READLINKAT_RUNTIME Modules/posixmodule.c 204;" d file: +HAVE_READLINKAT_RUNTIME Modules/posixmodule.c 98;" d file: +HAVE_RECVFROM PC/pyconfig.h 728;" d +HAVE_RENAMEAT_RUNTIME Modules/posixmodule.c 147;" d file: +HAVE_RENAMEAT_RUNTIME Modules/posixmodule.c 201;" d file: +HAVE_RENAMEAT_RUNTIME Modules/posixmodule.c 95;" d file: +HAVE_SCHED_SETAFFINITY Modules/posixmodule.c 286;" d file: +HAVE_SENDTO PC/pyconfig.h 729;" d +HAVE_SEND_HANDLE Lib/multiprocessing/reduction.py /^HAVE_SEND_HANDLE = (sys.platform == 'win32' or$/;" v +HAVE_SETSOCKOPT PC/pyconfig.h 730;" d +HAVE_SETVBUF PC/pyconfig.h 563;" d +HAVE_SHUTDOWN PC/pyconfig.h 569;" d +HAVE_SIGNAL_H PC/pyconfig.h 619;" d +HAVE_SIGSET_T Modules/posixmodule.h 23;" d +HAVE_SOCKADDR_STORAGE Modules/socketmodule.h 72;" d +HAVE_SOCKET PC/pyconfig.h 731;" d +HAVE_SOCKET_ALG Lib/test/test_socket.py /^HAVE_SOCKET_ALG = _have_socket_alg()$/;" v +HAVE_SOCKET_BLUETOOTH Lib/test/test_socket.py /^HAVE_SOCKET_BLUETOOTH = _have_socket_bluetooth()$/;" v +HAVE_SOCKET_CAN Lib/test/test_socket.py /^HAVE_SOCKET_CAN = _have_socket_can()$/;" v +HAVE_SOCKET_CAN_ISOTP Lib/test/test_socket.py /^HAVE_SOCKET_CAN_ISOTP = _have_socket_can_isotp()$/;" v +HAVE_SOCKET_CAN_J1939 Lib/test/test_socket.py /^HAVE_SOCKET_CAN_J1939 = _have_socket_can_j1939()$/;" v +HAVE_SOCKET_HYPERV Lib/test/test_socket.py /^HAVE_SOCKET_HYPERV = _have_socket_hyperv()$/;" v +HAVE_SOCKET_QIPCRTR Lib/test/test_socket.py /^HAVE_SOCKET_QIPCRTR = _have_socket_qipcrtr()$/;" v +HAVE_SOCKET_RDS Lib/test/test_socket.py /^HAVE_SOCKET_RDS = _have_socket_rds()$/;" v +HAVE_SOCKET_UDPLITE Lib/test/test_socket.py /^HAVE_SOCKET_UDPLITE = hasattr(socket, "IPPROTO_UDPLITE")$/;" v +HAVE_SOCKET_VSOCK Lib/test/test_socket.py /^HAVE_SOCKET_VSOCK = _have_socket_vsock()$/;" v +HAVE_SPAWNV Modules/posixmodule.c 354;" d file: +HAVE_SSE2 Modules/_blake2/impl/blake2-config.h 18;" d +HAVE_SSE2 Modules/_blake2/impl/blake2-config.h 63;" d +HAVE_SSE4_1 Modules/_blake2/impl/blake2-config.h 26;" d +HAVE_SSE4_1 Modules/_blake2/impl/blake2-config.h 52;" d +HAVE_SSL Lib/imaplib.py /^ HAVE_SSL = False$/;" v +HAVE_SSL Lib/imaplib.py /^ HAVE_SSL = True$/;" v +HAVE_SSL Lib/poplib.py /^ HAVE_SSL = False$/;" v +HAVE_SSL Lib/poplib.py /^ HAVE_SSL = True$/;" v +HAVE_SSSE3 Modules/_blake2/impl/blake2-config.h 22;" d +HAVE_SSSE3 Modules/_blake2/impl/blake2-config.h 58;" d +HAVE_STAT_NSEC Modules/posixmodule.c 1775;" d file: +HAVE_STDDEF_H PC/pyconfig.h 622;" d +HAVE_STRERROR PC/pyconfig.h 57;" d +HAVE_STRFTIME PC/pyconfig.h 61;" d +HAVE_STRUCT_STAT_ST_FILE_ATTRIBUTES Modules/posixmodule.c 1776;" d file: +HAVE_STRUCT_STAT_ST_FSTYPE Modules/posixmodule.c 526;" d file: +HAVE_STRUCT_STAT_ST_REPARSE_TAG Modules/posixmodule.c 1777;" d file: +HAVE_SUBOFFSETS_IN_LAST_DIM Objects/memoryobject.c 266;" d file: +HAVE_SYMLINK Modules/posixmodule.c 36;" d file: +HAVE_SYMLINKAT_RUNTIME Modules/posixmodule.c 163;" d file: +HAVE_SYMLINKAT_RUNTIME Modules/posixmodule.c 205;" d file: +HAVE_SYMLINKAT_RUNTIME Modules/posixmodule.c 99;" d file: +HAVE_SYSTEM Modules/posixmodule.c 343;" d file: +HAVE_SYSTEM Modules/posixmodule.c 358;" d file: +HAVE_SYS_STAT_H PC/pyconfig.h 634;" d +HAVE_SYS_TYPES_H PC/pyconfig.h 643;" d +HAVE_SYS_UTIME_H PC/pyconfig.h 52;" d +HAVE_TEMPNAM PC/pyconfig.h 53;" d +HAVE_THREADS Lib/_pydecimal.py /^HAVE_THREADS = True$/;" v +HAVE_THREAD_LOCAL Include/pyport.h 665;" d +HAVE_THREAD_LOCAL Include/pyport.h 676;" d +HAVE_THREAD_TIME Modules/timemodule.c 1415;" d file: +HAVE_THREAD_TIME Modules/timemodule.c 1455;" d file: +HAVE_THREAD_TIME Modules/timemodule.c 1479;" d file: +HAVE_THREAD_TIME Modules/timemodule.c 1498;" d file: +HAVE_TIMES Modules/posixmodule.c 9941;" d file: +HAVE_TMPFILE PC/pyconfig.h 54;" d +HAVE_TMPNAM PC/pyconfig.h 55;" d +HAVE_TRACE_V2 Modules/_sqlite/connection.c 36;" d file: +HAVE_TZNAME PC/pyconfig.h 433;" d +HAVE_UINTPTR_T PC/pyconfig.h 379;" d +HAVE_UMASK PC/pyconfig.h 584;" d +HAVE_UNIX_SOCKETS Lib/test/test_socketserver.py /^HAVE_UNIX_SOCKETS = hasattr(socket, "AF_UNIX")$/;" v +HAVE_UNLINKAT_RUNTIME Modules/posixmodule.c 151;" d file: +HAVE_UNLINKAT_RUNTIME Modules/posixmodule.c 202;" d file: +HAVE_UNLINKAT_RUNTIME Modules/posixmodule.c 96;" d file: +HAVE_UTIMENSAT_RUNTIME Modules/posixmodule.c 101;" d file: +HAVE_UTIMENSAT_RUNTIME Modules/posixmodule.c 167;" d file: +HAVE_UTIMENSAT_RUNTIME Modules/posixmodule.c 207;" d file: +HAVE_UTIME_H Modules/posixmodule.c 404;" d file: +HAVE_WCHAR_H Include/unicodeobject.h 92;" d +HAVE_WCHAR_H PC/pyconfig.h 661;" d +HAVE_WCSCOLL PC/pyconfig.h 598;" d +HAVE_WCSFTIME Modules/timemodule.c 756;" d file: +HAVE_WCSFTIME PC/pyconfig.h 594;" d +HAVE_WCSXFRM PC/pyconfig.h 601;" d +HAVE_WEXECV Modules/posixmodule.c 357;" d file: +HAVE_WHEEL_GROUP Lib/test/test_os.py /^HAVE_WHEEL_GROUP = sys.platform.startswith('freebsd') and os.getgid() == 0$/;" v +HAVE_WINDOWS_CONSOLE_IO PC/pyconfig.h 93;" d +HAVE_WINDOW_FUNCTIONS Modules/_sqlite/connection.c 40;" d file: +HAVE_WSPAWNV Modules/posixmodule.c 356;" d file: +HAVE_X509_VERIFY_PARAM_SET1_HOST PC/pyconfig.h 740;" d +HAVE_XOP Modules/_blake2/impl/blake2-config.h 34;" d +HAVE_ZLIB_COPY PC/pyconfig.h 604;" d +HBITMAP Lib/ctypes/wintypes.py /^HBITMAP = HANDLE$/;" v +HBRUSH Lib/ctypes/wintypes.py /^HBRUSH = HANDLE$/;" v +HCI_DATA_DIR Modules/socketmodule.c 502;" d file: +HCI_FILTER Modules/socketmodule.c 489;" d file: +HCOLOR Lib/turtledemo/nim.py /^HCOLOR = (255, 204, 204)$/;" v +HCOLORSPACE Lib/ctypes/wintypes.py /^HCOLORSPACE = HANDLE$/;" v +HDC Lib/ctypes/wintypes.py /^HDC = HANDLE$/;" v +HDESK Lib/ctypes/wintypes.py /^HDESK = HANDLE$/;" v +HDWP Lib/ctypes/wintypes.py /^HDWP = HANDLE$/;" v +HEAD Lib/http/__init__.py /^ HEAD = 'HEAD', 'Same as GET, but only retrieve the status line and header section.'$/;" v class:HTTPMethod +HEADER Lib/ssl.py /^ HEADER = 0x100$/;" v class:_TLSContentType +HEADER Lib/test/test_ssl.py /^ HEADER = 0x100$/;" v class:TestEnumerations.test_tlscontenttype.Checked_TLSContentType +HEADER_ESCAPE_RE Lib/http/cookiejar.py /^HEADER_ESCAPE_RE = re.compile(r"\\\\(.)")$/;" v +HEADER_JOIN_ESCAPE_RE Lib/http/cookiejar.py /^HEADER_JOIN_ESCAPE_RE = re.compile(r"([\\"\\\\])")$/;" v +HEADER_QUOTED_VALUE_RE Lib/http/cookiejar.py /^HEADER_QUOTED_VALUE_RE = re.compile(r"^\\s*=\\s*\\"([^\\"\\\\]*(?:\\\\.[^\\"\\\\]*)*)\\"")$/;" v +HEADER_TOKEN_RE Lib/http/cookiejar.py /^HEADER_TOKEN_RE = re.compile(r"^\\s*([^=\\s;,]+)")$/;" v +HEADER_VALUE_RE Lib/http/cookiejar.py /^HEADER_VALUE_RE = re.compile(r"^\\s*=\\s*([^\\s;,]*)")$/;" v +HEAD_LOCK Include/internal/pycore_pystate.h 154;" d +HEAD_UNLOCK Include/internal/pycore_pystate.h 156;" d +HELLO_REQUEST Lib/ssl.py /^ HELLO_REQUEST = 0$/;" v class:_TLSMessageType +HELLO_REQUEST Lib/test/test_ssl.py /^ HELLO_REQUEST = 0$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +HELLO_RETRY_REQUEST Lib/ssl.py /^ HELLO_RETRY_REQUEST = 6$/;" v class:_TLSMessageType +HELLO_RETRY_REQUEST Lib/test/test_ssl.py /^ HELLO_RETRY_REQUEST = 6$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +HELLO_VERIFY_REQUEST Lib/ssl.py /^ HELLO_VERIFY_REQUEST = 3$/;" v class:_TLSMessageType +HELLO_VERIFY_REQUEST Lib/test/test_ssl.py /^ HELLO_VERIFY_REQUEST = 3$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +HENHMETAFILE Lib/ctypes/wintypes.py /^HENHMETAFILE = HANDLE$/;" v +HERE Modules/_blake2/blake2b2s.py /^HERE = os.path.dirname(os.path.abspath(__file__))$/;" v +HERE Tools/cases_generator/generate_cases.py /^HERE = os.path.dirname(__file__)$/;" v +HERE Tools/msi/get_externals.bat /^set HERE=%~dp0$/;" v +HERE Tools/peg_generator/scripts/test_pypi_packages.py /^HERE = pathlib.Path(__file__).resolve().parent$/;" v +HERE Tools/ssl/multissltests.py /^HERE = os.path.dirname(os.path.abspath(__file__))$/;" v +HEX Lib/quopri.py /^HEX = b'0123456789ABCDEF'$/;" v +HEX Tools/c-analyzer/c_parser/parser/_regexes.py /^HEX = r'(?: [0-9a-zA-Z] )'$/;" v +HEXDIGITS Lib/re/_parser.py /^HEXDIGITS = frozenset("0123456789abcdefABCDEF")$/;" v +HEXDIGIT_CHARS Lib/tomllib/_parser.py /^HEXDIGIT_CHARS = frozenset(string.hexdigits)$/;" v +HEX_DIGIT Objects/floatobject.c 1439;" d file: +HFONT Lib/ctypes/wintypes.py /^HFONT = HANDLE$/;" v +HGDIOBJ Lib/ctypes/wintypes.py /^HGDIOBJ = HANDLE$/;" v +HGLOBAL Lib/ctypes/wintypes.py /^HGLOBAL = HANDLE$/;" v +HHOOK Lib/ctypes/wintypes.py /^HHOOK = HANDLE$/;" v +HH_getitem Modules/arraymodule.c /^HH_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +HH_setitem Modules/arraymodule.c /^HH_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +HICON Lib/ctypes/wintypes.py /^HICON = HANDLE$/;" v +HIDDEN Lib/tkinter/constants.py /^HIDDEN='hidden'$/;" v +HIDE_EVENT Lib/idlelib/calltip_w.py /^HIDE_EVENT = "<>"$/;" v +HIDE_FOCUS_OUT_SEQUENCE Lib/idlelib/autocomplete_w.py /^HIDE_FOCUS_OUT_SEQUENCE = ""$/;" v +HIDE_SEQUENCES Lib/idlelib/autocomplete_w.py /^HIDE_SEQUENCES = (HIDE_FOCUS_OUT_SEQUENCE, "")$/;" v +HIDE_SEQUENCES Lib/idlelib/calltip_w.py /^HIDE_SEQUENCES = ("", "")$/;" v +HIDE_VIRTUAL_EVENT_NAME Lib/idlelib/autocomplete_w.py /^HIDE_VIRTUAL_EVENT_NAME = "<>"$/;" v +HIERARCHY_REQUEST_ERR Lib/xml/dom/__init__.py /^HIERARCHY_REQUEST_ERR = 3$/;" v +HIGH64_OF Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h 11;" d +HIGHEST_PROTOCOL Lib/pickle.py /^HIGHEST_PROTOCOL = 5$/;" v +HIGHEST_PROTOCOL Modules/_pickle.c /^ HIGHEST_PROTOCOL = 5,$/;" e enum:__anon446 file: +HIGH_BEAM_C Lib/test/test_enum.py /^ HIGH_BEAM_C = auto()$/;" v class:HeadlightsC +HIGH_BEAM_K Lib/test/test_enum.py /^ HIGH_BEAM_K = auto()$/;" v class:HeadlightsK +HIGH_BITS Include/internal/pycore_obmalloc.h 611;" d +HIGH_BITS Include/internal/pycore_obmalloc.h 613;" d +HINSTANCE Lib/ctypes/wintypes.py /^HINSTANCE = HANDLE$/;" v +HKEY Lib/ctypes/wintypes.py /^HKEY = HANDLE$/;" v +HKEYS Tools/c-analyzer/distutils/msvc9compiler.py /^HKEYS = (winreg.HKEY_USERS,$/;" v +HKEYS Tools/c-analyzer/distutils/msvccompiler.py /^ HKEYS = (hkey_mod.HKEY_USERS,$/;" v +HKEY_CURRENT_USER Lib/test/test_getpath.py /^ HKEY_CURRENT_USER = "HKCU"$/;" v class:MockWinreg +HKEY_LOCAL_MACHINE Lib/test/test_getpath.py /^ HKEY_LOCAL_MACHINE = "HKLM"$/;" v class:MockWinreg +HKL Lib/ctypes/wintypes.py /^HKL = HANDLE$/;" v +HKSCS_VERSION Tools/unicode/genmap_tchinese.py /^HKSCS_VERSION = '2004'$/;" v +HLOCAL Lib/ctypes/wintypes.py /^HLOCAL = HANDLE$/;" v +HList Lib/tkinter/tix.py /^class HList(TixWidget, XView, YView):$/;" c +HMAC Lib/hmac.py /^class HMAC:$/;" c +HMAC_getset Modules/_hashopenssl.c /^static PyGetSetDef HMAC_getset[] = {$/;" v file: +HMAC_methods Modules/_hashopenssl.c /^static PyMethodDef HMAC_methods[] = {$/;" v file: +HMACobject Modules/_hashopenssl.c /^} HMACobject;$/;" t typeref:struct:__anon563 file: +HMACtype Modules/_hashopenssl.c /^ PyTypeObject *HMACtype;$/;" m struct:__anon561 file: +HMACtype_slots Modules/_hashopenssl.c /^static PyType_Slot HMACtype_slots[] = {$/;" v file: +HMACtype_spec Modules/_hashopenssl.c /^PyType_Spec HMACtype_spec = {$/;" v +HMENU Lib/ctypes/wintypes.py /^HMENU = HANDLE$/;" v +HMETAFILE Lib/ctypes/wintypes.py /^HMETAFILE = HANDLE$/;" v +HMODULE Lib/ctypes/wintypes.py /^HMODULE = HANDLE$/;" v +HMONITOR Lib/ctypes/wintypes.py /^HMONITOR = HANDLE$/;" v +HORIZONTAL Lib/tkinter/constants.py /^HORIZONTAL='horizontal'$/;" v +HOST Lib/idlelib/pyshell.py /^HOST = '127.0.0.1' # python execution server on localhost loopback$/;" v +HOST Lib/test/ssl_servers.py /^HOST = socket_helper.HOST$/;" v +HOST Lib/test/support/socket_helper.py /^HOST = "localhost"$/;" v +HOST Lib/test/test_httplib.py /^HOST = socket_helper.HOST$/;" v +HOST Lib/test/test_poplib.py /^HOST = socket_helper.HOST$/;" v +HOST Lib/test/test_smtplib.py /^HOST = socket_helper.HOST$/;" v +HOST Lib/test/test_socket.py /^HOST = socket_helper.HOST$/;" v +HOST Lib/test/test_socketserver.py /^HOST = socket_helper.HOST$/;" v +HOST Lib/test/test_ssl.py /^HOST = socket_helper.HOST$/;" v +HOST Lib/test/test_telnetlib.py /^HOST = socket_helper.HOST$/;" v +HOST PCbuild/prepare_libffi.bat /^set HOST=%3$/;" v +HOST Tools/msi/uploadrelease.bat /^if "%1" EQU "--host" (set HOST=%~2) && shift && shift && goto CheckOpts$/;" v +HOST Tools/msi/uploadrelease.bat /^if "%1" EQU "-o" (set HOST=%~2) && shift && shift && goto CheckOpts$/;" v +HOST Tools/msi/uploadrelease.bat /^set HOST=$/;" v +HOSTv4 Lib/test/support/socket_helper.py /^HOSTv4 = "127.0.0.1"$/;" v +HOSTv6 Lib/test/support/socket_helper.py /^HOSTv6 = "::1"$/;" v +HOUR Doc/includes/tzinfo_examples.py /^HOUR = timedelta(hours=1)$/;" v +HOUR Lib/test/datetimetester.py /^HOUR = timedelta(hours=1)$/;" v +HPALETTE Lib/ctypes/wintypes.py /^HPALETTE = HANDLE$/;" v +HPEN Lib/ctypes/wintypes.py /^HPEN = HANDLE$/;" v +HRESULT Lib/ctypes/__init__.py /^ class HRESULT(_SimpleCData):$/;" c +HRGN Lib/ctypes/wintypes.py /^HRGN = HANDLE$/;" v +HRSRC Lib/ctypes/wintypes.py /^HRSRC = HANDLE$/;" v +HSTR Lib/ctypes/wintypes.py /^HSTR = HANDLE$/;" v +HSTRINGS Lib/test/test_quopri.py /^ HSTRINGS = ($/;" v +HT Lib/curses/ascii.py /^HT = 0x09 # ^I$/;" v +HTASK Lib/ctypes/wintypes.py /^HTASK = HANDLE$/;" v +HTML5_SECTION_START Tools/build/parse_html5_entities.py /^HTML5_SECTION_START = '# HTML5 named character references'$/;" v +HTMLCalendar Lib/calendar.py /^class HTMLCalendar(Calendar):$/;" c +HTMLDoc Lib/pydoc.py /^class HTMLDoc(Doc):$/;" c +HTMLHELP Doc/make.bat /^set HTMLHELP=$/;" v +HTMLParser Lib/html/parser.py /^class HTMLParser(_markupbase.ParserBase):$/;" c +HTMLParserTestCase Lib/test/test_htmlparser.py /^class HTMLParserTestCase(TestCaseBase):$/;" c +HTMLRepr Lib/pydoc.py /^class HTMLRepr(Repr):$/;" c +HTML_EMPTY Lib/xml/etree/ElementTree.py /^HTML_EMPTY = {"area", "base", "basefont", "br", "col", "embed", "frame", "hr",$/;" v +HTSEP Python/import.c 1102;" d file: +HTSEP Python/import.c 961;" d file: +HTTP Lib/email/policy.py /^HTTP = default.clone(linesep='\\r\\n', max_line_length=None)$/;" v +HTTPBasicAuthHandler Lib/urllib/request.py /^class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):$/;" c +HTTPConnection Lib/http/client.py /^class HTTPConnection:$/;" c +HTTPCookieProcessor Lib/urllib/request.py /^class HTTPCookieProcessor(BaseHandler):$/;" c +HTTPDefaultErrorHandler Lib/urllib/request.py /^class HTTPDefaultErrorHandler(BaseHandler):$/;" c +HTTPDigestAuthHandler Lib/urllib/request.py /^class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):$/;" c +HTTPError Lib/urllib/error.py /^class HTTPError(URLError, urllib.response.addinfourl):$/;" c +HTTPErrorProcessor Lib/urllib/request.py /^class HTTPErrorProcessor(BaseHandler):$/;" c +HTTPException Lib/http/client.py /^class HTTPException(Exception):$/;" c +HTTPHandler Lib/logging/handlers.py /^class HTTPHandler(logging.Handler):$/;" c +HTTPHandler Lib/urllib/request.py /^class HTTPHandler(AbstractHTTPHandler):$/;" c +HTTPHandlerTest Lib/test/test_logging.py /^class HTTPHandlerTest(BaseTest):$/;" c +HTTPMessage Lib/http/client.py /^class HTTPMessage(email.message.Message):$/;" c +HTTPMethod Lib/http/__init__.py /^class HTTPMethod:$/;" c +HTTPONLY_ATTR Lib/http/cookiejar.py /^HTTPONLY_ATTR = "HTTPOnly"$/;" v +HTTPONLY_PREFIX Lib/http/cookiejar.py /^HTTPONLY_PREFIX = "#HttpOnly_"$/;" v +HTTPPasswordMgr Lib/urllib/request.py /^class HTTPPasswordMgr:$/;" c +HTTPPasswordMgrWithDefaultRealm Lib/urllib/request.py /^class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):$/;" c +HTTPPasswordMgrWithPriorAuth Lib/urllib/request.py /^class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm):$/;" c +HTTPRedirectHandler Lib/urllib/request.py /^class HTTPRedirectHandler(BaseHandler):$/;" c +HTTPResponse Lib/http/client.py /^class HTTPResponse(io.BufferedIOBase):$/;" c +HTTPResponseMatch Lib/test/test_httpservers.py /^ HTTPResponseMatch = re.compile(b'HTTP\/1.[0-9]+ 200 OK')$/;" v class:BaseHTTPRequestHandlerTestCase +HTTPResponseTest Lib/test/test_httplib.py /^class HTTPResponseTest(TestCase):$/;" c +HTTPSConnection Lib/http/client.py /^ class HTTPSConnection(HTTPConnection):$/;" c class:HTTPConnection +HTTPSHandler Lib/urllib/request.py /^ class HTTPSHandler(AbstractHTTPHandler):$/;" c +HTTPSServer Lib/test/ssl_servers.py /^class HTTPSServer(_HTTPServer):$/;" c +HTTPSServerThread Lib/test/ssl_servers.py /^class HTTPSServerThread(threading.Thread):$/;" c +HTTPSTest Lib/test/test_httplib.py /^class HTTPSTest(TestCase):$/;" c +HTTPS_PORT Lib/http/client.py /^HTTPS_PORT = 443$/;" v +HTTPServer Lib/http/server.py /^class HTTPServer(socketserver.TCPServer):$/;" c +HTTPStatus Lib/http/__init__.py /^class HTTPStatus:$/;" c +HTTP_PORT Lib/http/client.py /^HTTP_PORT = 80$/;" v +HTTP_VERSION_NOT_SUPPORTED Lib/http/__init__.py /^ HTTP_VERSION_NOT_SUPPORTED = (505, 'HTTP Version Not Supported',$/;" v class:HTTPStatus +HTTP_VERSION_NOT_SUPPORTED Lib/test/test_httplib.py /^ HTTP_VERSION_NOT_SUPPORTED = (505, 'HTTP Version Not Supported',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +HUGE Lib/lib2to3/pytree.py /^HUGE = 0x7FFFFFFF # maximum repeat count, default max$/;" v +HUGE Lib/test/test_json/test_enum.py /^HUGE = 1<<64$/;" v +HUGE_EXP_CUTOFF Objects/longobject.c 104;" d file: +HUGE_ZIPFILE_NUM_ENTRIES Lib/test/test_zipfile/_path/test_path.py /^ HUGE_ZIPFILE_NUM_ENTRIES = 2**13$/;" v class:TestPath +HUNIT Lib/turtledemo/nim.py /^HUNIT = SCREENHEIGHT \/\/ 12$/;" v +HVGrid Lib/test/test_descr.py /^ class HVGrid(HorizontalGrid, VerticalGrid): pass$/;" c function:.test_mro_disagreement +HWINSTA Lib/ctypes/wintypes.py /^HWINSTA = HANDLE$/;" v +HWND Lib/ctypes/wintypes.py /^HWND = HANDLE$/;" v +H_get Modules/_ctypes/cfield.c /^H_get(void *ptr, Py_ssize_t size)$/;" f file: +H_get_sw Modules/_ctypes/cfield.c /^H_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +H_set Modules/_ctypes/cfield.c /^H_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +H_set_sw Modules/_ctypes/cfield.c /^H_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +HackedSysModule Lib/test/test_cgi.py /^class HackedSysModule:$/;" c +Hacl_Hash_Core_MD5_legacy_finish Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Hash_Core_MD5_legacy_finish(uint32_t *s, uint8_t *dst)$/;" f +Hacl_Hash_Core_MD5_legacy_init Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Hash_Core_MD5_legacy_init(uint32_t *s)$/;" f +Hacl_Hash_Core_SHA1_legacy_finish Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Hash_Core_SHA1_legacy_finish(uint32_t *s, uint8_t *dst)$/;" f +Hacl_Hash_Core_SHA1_legacy_init Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Hash_Core_SHA1_legacy_init(uint32_t *s)$/;" f +Hacl_Hash_MD5_legacy_hash Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Hash_MD5_legacy_hash(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Hash_MD5_legacy_update_last Modules/_hacl/Hacl_Hash_MD5.c /^Hacl_Hash_MD5_legacy_update_last($/;" f +Hacl_Hash_MD5_legacy_update_multi Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Hash_MD5_legacy_update_multi(uint32_t *s, uint8_t *blocks, uint32_t n_blocks)$/;" f +Hacl_Hash_SHA1_legacy_hash Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Hash_SHA1_legacy_hash(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Hash_SHA1_legacy_update_last Modules/_hacl/Hacl_Hash_SHA1.c /^Hacl_Hash_SHA1_legacy_update_last($/;" f +Hacl_Hash_SHA1_legacy_update_multi Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Hash_SHA1_legacy_update_multi(uint32_t *s, uint8_t *blocks, uint32_t n_blocks)$/;" f +Hacl_Hash_SHA3_update_last_sha3 Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Hash_SHA3_update_last_sha3($/;" f +Hacl_Hash_SHA3_update_last_sha3 Modules/_hacl/python_hacl_namespaces.h 62;" d +Hacl_Hash_SHA3_update_multi_sha3 Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Hash_SHA3_update_multi_sha3($/;" f +Hacl_Hash_SHA3_update_multi_sha3 Modules/_hacl/python_hacl_namespaces.h 63;" d +Hacl_Impl_SHA2_Generic_h224 Modules/_hacl/internal/Hacl_Hash_SHA2.h /^Hacl_Impl_SHA2_Generic_h224[8U] =$/;" v +Hacl_Impl_SHA2_Generic_h256 Modules/_hacl/internal/Hacl_Hash_SHA2.h /^Hacl_Impl_SHA2_Generic_h256[8U] =$/;" v +Hacl_Impl_SHA2_Generic_h384 Modules/_hacl/internal/Hacl_Hash_SHA2.h /^Hacl_Impl_SHA2_Generic_h384[8U] =$/;" v +Hacl_Impl_SHA2_Generic_h512 Modules/_hacl/internal/Hacl_Hash_SHA2.h /^Hacl_Impl_SHA2_Generic_h512[8U] =$/;" v +Hacl_Impl_SHA2_Generic_k224_256 Modules/_hacl/internal/Hacl_Hash_SHA2.h /^Hacl_Impl_SHA2_Generic_k224_256[64U] =$/;" v +Hacl_Impl_SHA2_Generic_k384_512 Modules/_hacl/internal/Hacl_Hash_SHA2.h /^Hacl_Impl_SHA2_Generic_k384_512[80U] =$/;" v +Hacl_Impl_SHA3_absorb_inner Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_Impl_SHA3_absorb_inner(uint32_t rateInBytes, uint8_t *block, uint64_t *s)$/;" f +Hacl_Impl_SHA3_absorb_inner Modules/_hacl/python_hacl_namespaces.h 64;" d +Hacl_Impl_SHA3_keccak Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Impl_SHA3_keccak($/;" f +Hacl_Impl_SHA3_keccak Modules/_hacl/python_hacl_namespaces.h 65;" d +Hacl_Impl_SHA3_loadState Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_Impl_SHA3_loadState(uint32_t rateInBytes, uint8_t *input, uint64_t *s)$/;" f +Hacl_Impl_SHA3_loadState Modules/_hacl/python_hacl_namespaces.h 66;" d +Hacl_Impl_SHA3_squeeze Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Impl_SHA3_squeeze($/;" f +Hacl_Impl_SHA3_squeeze Modules/_hacl/python_hacl_namespaces.h 67;" d +Hacl_Impl_SHA3_state_permute Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_Impl_SHA3_state_permute(uint64_t *s)$/;" f +Hacl_Impl_SHA3_state_permute Modules/_hacl/python_hacl_namespaces.h 68;" d +Hacl_SHA2_Scalar32_sha224_finish Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha224_finish(uint32_t *st, uint8_t *h)$/;" f +Hacl_SHA2_Scalar32_sha224_init Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha224_init(uint32_t *hash)$/;" f +Hacl_SHA2_Scalar32_sha224_update_last Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_SHA2_Scalar32_sha224_update_last(uint64_t totlen, uint32_t len, uint8_t *b, uint32_t *st)$/;" f +Hacl_SHA2_Scalar32_sha256_finish Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha256_finish(uint32_t *st, uint8_t *h)$/;" f +Hacl_SHA2_Scalar32_sha256_init Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha256_init(uint32_t *hash)$/;" f +Hacl_SHA2_Scalar32_sha256_update_last Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_SHA2_Scalar32_sha256_update_last($/;" f +Hacl_SHA2_Scalar32_sha256_update_nblocks Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha256_update_nblocks(uint32_t len, uint8_t *b, uint32_t *st)$/;" f +Hacl_SHA2_Scalar32_sha384_finish Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha384_finish(uint64_t *st, uint8_t *h)$/;" f +Hacl_SHA2_Scalar32_sha384_init Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha384_init(uint64_t *hash)$/;" f +Hacl_SHA2_Scalar32_sha384_update_last Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_SHA2_Scalar32_sha384_update_last($/;" f +Hacl_SHA2_Scalar32_sha384_update_nblocks Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha384_update_nblocks(uint32_t len, uint8_t *b, uint64_t *st)$/;" f +Hacl_SHA2_Scalar32_sha512_finish Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha512_finish(uint64_t *st, uint8_t *h)$/;" f +Hacl_SHA2_Scalar32_sha512_init Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha512_init(uint64_t *hash)$/;" f +Hacl_SHA2_Scalar32_sha512_init Modules/_hacl/python_hacl_namespaces.h 28;" d +Hacl_SHA2_Scalar32_sha512_update_last Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_SHA2_Scalar32_sha512_update_last($/;" f +Hacl_SHA2_Scalar32_sha512_update_nblocks Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_SHA2_Scalar32_sha512_update_nblocks(uint32_t len, uint8_t *b, uint64_t *st)$/;" f +Hacl_SHA3_sha3_224 Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_SHA3_sha3_224(uint32_t inputByteLen, uint8_t *input, uint8_t *output)$/;" f +Hacl_SHA3_sha3_224 Modules/_hacl/python_hacl_namespaces.h 69;" d +Hacl_SHA3_sha3_256 Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_SHA3_sha3_256(uint32_t inputByteLen, uint8_t *input, uint8_t *output)$/;" f +Hacl_SHA3_sha3_256 Modules/_hacl/python_hacl_namespaces.h 70;" d +Hacl_SHA3_sha3_384 Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_SHA3_sha3_384(uint32_t inputByteLen, uint8_t *input, uint8_t *output)$/;" f +Hacl_SHA3_sha3_384 Modules/_hacl/python_hacl_namespaces.h 71;" d +Hacl_SHA3_sha3_512 Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_SHA3_sha3_512(uint32_t inputByteLen, uint8_t *input, uint8_t *output)$/;" f +Hacl_SHA3_sha3_512 Modules/_hacl/python_hacl_namespaces.h 72;" d +Hacl_SHA3_shake128_hacl Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_SHA3_shake128_hacl($/;" f +Hacl_SHA3_shake128_hacl Modules/_hacl/python_hacl_namespaces.h 73;" d +Hacl_SHA3_shake256_hacl Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_SHA3_shake256_hacl($/;" f +Hacl_SHA3_shake256_hacl Modules/_hacl/python_hacl_namespaces.h 74;" d +Hacl_Streaming_Keccak_block_len Modules/_hacl/Hacl_Hash_SHA3.c /^uint32_t Hacl_Streaming_Keccak_block_len(Hacl_Streaming_Keccak_state *s)$/;" f +Hacl_Streaming_Keccak_block_len Modules/_hacl/python_hacl_namespaces.h 75;" d +Hacl_Streaming_Keccak_copy Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Streaming_Keccak_state *Hacl_Streaming_Keccak_copy(Hacl_Streaming_Keccak_state *s0)$/;" f +Hacl_Streaming_Keccak_copy Modules/_hacl/python_hacl_namespaces.h 76;" d +Hacl_Streaming_Keccak_finish Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Streaming_Keccak_finish(Hacl_Streaming_Keccak_state *s, uint8_t *dst)$/;" f +Hacl_Streaming_Keccak_finish Modules/_hacl/python_hacl_namespaces.h 77;" d +Hacl_Streaming_Keccak_free Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_Streaming_Keccak_free(Hacl_Streaming_Keccak_state *s)$/;" f +Hacl_Streaming_Keccak_free Modules/_hacl/python_hacl_namespaces.h 78;" d +Hacl_Streaming_Keccak_get_alg Modules/_hacl/Hacl_Hash_SHA3.c /^Spec_Hash_Definitions_hash_alg Hacl_Streaming_Keccak_get_alg(Hacl_Streaming_Keccak_state *s)$/;" f +Hacl_Streaming_Keccak_get_alg Modules/_hacl/python_hacl_namespaces.h 79;" d +Hacl_Streaming_Keccak_hash_buf Modules/_hacl/Hacl_Hash_SHA3.h /^Hacl_Streaming_Keccak_hash_buf;$/;" t typeref:struct:Hacl_Streaming_Keccak_hash_buf_s +Hacl_Streaming_Keccak_hash_buf_s Modules/_hacl/Hacl_Hash_SHA3.h /^typedef struct Hacl_Streaming_Keccak_hash_buf_s$/;" s +Hacl_Streaming_Keccak_hash_len Modules/_hacl/Hacl_Hash_SHA3.c /^uint32_t Hacl_Streaming_Keccak_hash_len(Hacl_Streaming_Keccak_state *s)$/;" f +Hacl_Streaming_Keccak_hash_len Modules/_hacl/python_hacl_namespaces.h 80;" d +Hacl_Streaming_Keccak_is_shake Modules/_hacl/Hacl_Hash_SHA3.c /^bool Hacl_Streaming_Keccak_is_shake(Hacl_Streaming_Keccak_state *s)$/;" f +Hacl_Streaming_Keccak_is_shake Modules/_hacl/python_hacl_namespaces.h 81;" d +Hacl_Streaming_Keccak_malloc Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Streaming_Keccak_state *Hacl_Streaming_Keccak_malloc(Spec_Hash_Definitions_hash_alg a)$/;" f +Hacl_Streaming_Keccak_malloc Modules/_hacl/python_hacl_namespaces.h 82;" d +Hacl_Streaming_Keccak_reset Modules/_hacl/Hacl_Hash_SHA3.c /^void Hacl_Streaming_Keccak_reset(Hacl_Streaming_Keccak_state *s)$/;" f +Hacl_Streaming_Keccak_reset Modules/_hacl/python_hacl_namespaces.h 83;" d +Hacl_Streaming_Keccak_squeeze Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Streaming_Keccak_squeeze(Hacl_Streaming_Keccak_state *s, uint8_t *dst, uint32_t l)$/;" f +Hacl_Streaming_Keccak_state Modules/_hacl/Hacl_Hash_SHA3.h /^Hacl_Streaming_Keccak_state;$/;" t typeref:struct:Hacl_Streaming_Keccak_state_s +Hacl_Streaming_Keccak_state_s Modules/_hacl/Hacl_Hash_SHA3.h /^typedef struct Hacl_Streaming_Keccak_state_s$/;" s +Hacl_Streaming_Keccak_update Modules/_hacl/Hacl_Hash_SHA3.c /^Hacl_Streaming_Keccak_update(Hacl_Streaming_Keccak_state *p, uint8_t *data, uint32_t len)$/;" f +Hacl_Streaming_Keccak_update Modules/_hacl/python_hacl_namespaces.h 84;" d +Hacl_Streaming_MD5_legacy_copy Modules/_hacl/Hacl_Hash_MD5.c /^Hacl_Streaming_MD_state_32 *Hacl_Streaming_MD5_legacy_copy(Hacl_Streaming_MD_state_32 *s0)$/;" f +Hacl_Streaming_MD5_legacy_copy Modules/_hacl/python_hacl_namespaces.h 51;" d +Hacl_Streaming_MD5_legacy_create_in Modules/_hacl/Hacl_Hash_MD5.c /^Hacl_Streaming_MD_state_32 *Hacl_Streaming_MD5_legacy_create_in(void)$/;" f +Hacl_Streaming_MD5_legacy_create_in Modules/_hacl/python_hacl_namespaces.h 46;" d +Hacl_Streaming_MD5_legacy_finish Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Streaming_MD5_legacy_finish(Hacl_Streaming_MD_state_32 *p, uint8_t *dst)$/;" f +Hacl_Streaming_MD5_legacy_finish Modules/_hacl/python_hacl_namespaces.h 49;" d +Hacl_Streaming_MD5_legacy_free Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Streaming_MD5_legacy_free(Hacl_Streaming_MD_state_32 *s)$/;" f +Hacl_Streaming_MD5_legacy_free Modules/_hacl/python_hacl_namespaces.h 50;" d +Hacl_Streaming_MD5_legacy_hash Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Streaming_MD5_legacy_hash(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Streaming_MD5_legacy_hash Modules/_hacl/python_hacl_namespaces.h 52;" d +Hacl_Streaming_MD5_legacy_init Modules/_hacl/Hacl_Hash_MD5.c /^void Hacl_Streaming_MD5_legacy_init(Hacl_Streaming_MD_state_32 *s)$/;" f +Hacl_Streaming_MD5_legacy_init Modules/_hacl/python_hacl_namespaces.h 47;" d +Hacl_Streaming_MD5_legacy_update Modules/_hacl/Hacl_Hash_MD5.c /^Hacl_Streaming_MD5_legacy_update(Hacl_Streaming_MD_state_32 *p, uint8_t *data, uint32_t len)$/;" f +Hacl_Streaming_MD5_legacy_update Modules/_hacl/python_hacl_namespaces.h 48;" d +Hacl_Streaming_MD5_state Modules/_hacl/Hacl_Hash_MD5.h /^typedef Hacl_Streaming_MD_state_32 Hacl_Streaming_MD5_state;$/;" t +Hacl_Streaming_MD_state_32 Modules/_hacl/Hacl_Streaming_Types.h /^Hacl_Streaming_MD_state_32;$/;" t typeref:struct:Hacl_Streaming_MD_state_32_s +Hacl_Streaming_MD_state_32_s Modules/_hacl/Hacl_Streaming_Types.h /^typedef struct Hacl_Streaming_MD_state_32_s$/;" s +Hacl_Streaming_MD_state_64 Modules/_hacl/Hacl_Streaming_Types.h /^Hacl_Streaming_MD_state_64;$/;" t typeref:struct:Hacl_Streaming_MD_state_64_s +Hacl_Streaming_MD_state_64_s Modules/_hacl/Hacl_Streaming_Types.h /^typedef struct Hacl_Streaming_MD_state_64_s$/;" s +Hacl_Streaming_SHA1_legacy_copy Modules/_hacl/Hacl_Hash_SHA1.c /^Hacl_Streaming_MD_state_32 *Hacl_Streaming_SHA1_legacy_copy(Hacl_Streaming_MD_state_32 *s0)$/;" f +Hacl_Streaming_SHA1_legacy_copy Modules/_hacl/python_hacl_namespaces.h 59;" d +Hacl_Streaming_SHA1_legacy_create_in Modules/_hacl/Hacl_Hash_SHA1.c /^Hacl_Streaming_MD_state_32 *Hacl_Streaming_SHA1_legacy_create_in(void)$/;" f +Hacl_Streaming_SHA1_legacy_create_in Modules/_hacl/python_hacl_namespaces.h 54;" d +Hacl_Streaming_SHA1_legacy_finish Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Streaming_SHA1_legacy_finish(Hacl_Streaming_MD_state_32 *p, uint8_t *dst)$/;" f +Hacl_Streaming_SHA1_legacy_finish Modules/_hacl/python_hacl_namespaces.h 57;" d +Hacl_Streaming_SHA1_legacy_free Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Streaming_SHA1_legacy_free(Hacl_Streaming_MD_state_32 *s)$/;" f +Hacl_Streaming_SHA1_legacy_free Modules/_hacl/python_hacl_namespaces.h 58;" d +Hacl_Streaming_SHA1_legacy_hash Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Streaming_SHA1_legacy_hash(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Streaming_SHA1_legacy_hash Modules/_hacl/python_hacl_namespaces.h 60;" d +Hacl_Streaming_SHA1_legacy_init Modules/_hacl/Hacl_Hash_SHA1.c /^void Hacl_Streaming_SHA1_legacy_init(Hacl_Streaming_MD_state_32 *s)$/;" f +Hacl_Streaming_SHA1_legacy_init Modules/_hacl/python_hacl_namespaces.h 55;" d +Hacl_Streaming_SHA1_legacy_update Modules/_hacl/Hacl_Hash_SHA1.c /^Hacl_Streaming_SHA1_legacy_update(Hacl_Streaming_MD_state_32 *p, uint8_t *data, uint32_t len)$/;" f +Hacl_Streaming_SHA1_legacy_update Modules/_hacl/python_hacl_namespaces.h 56;" d +Hacl_Streaming_SHA1_state Modules/_hacl/Hacl_Hash_SHA1.h /^typedef Hacl_Streaming_MD_state_32 Hacl_Streaming_SHA1_state;$/;" t +Hacl_Streaming_SHA2_copy_224 Modules/_hacl/python_hacl_namespaces.h 21;" d +Hacl_Streaming_SHA2_copy_256 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_MD_state_32 *Hacl_Streaming_SHA2_copy_256(Hacl_Streaming_MD_state_32 *s0)$/;" f +Hacl_Streaming_SHA2_copy_256 Modules/_hacl/python_hacl_namespaces.h 20;" d +Hacl_Streaming_SHA2_copy_384 Modules/_hacl/python_hacl_namespaces.h 23;" d +Hacl_Streaming_SHA2_copy_512 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_MD_state_64 *Hacl_Streaming_SHA2_copy_512(Hacl_Streaming_MD_state_64 *s0)$/;" f +Hacl_Streaming_SHA2_copy_512 Modules/_hacl/python_hacl_namespaces.h 22;" d +Hacl_Streaming_SHA2_create_in_224 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_MD_state_32 *Hacl_Streaming_SHA2_create_in_224(void)$/;" f +Hacl_Streaming_SHA2_create_in_224 Modules/_hacl/python_hacl_namespaces.h 17;" d +Hacl_Streaming_SHA2_create_in_256 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_MD_state_32 *Hacl_Streaming_SHA2_create_in_256(void)$/;" f +Hacl_Streaming_SHA2_create_in_256 Modules/_hacl/python_hacl_namespaces.h 16;" d +Hacl_Streaming_SHA2_create_in_384 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_MD_state_64 *Hacl_Streaming_SHA2_create_in_384(void)$/;" f +Hacl_Streaming_SHA2_create_in_384 Modules/_hacl/python_hacl_namespaces.h 19;" d +Hacl_Streaming_SHA2_create_in_512 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_MD_state_64 *Hacl_Streaming_SHA2_create_in_512(void)$/;" f +Hacl_Streaming_SHA2_create_in_512 Modules/_hacl/python_hacl_namespaces.h 18;" d +Hacl_Streaming_SHA2_finish_224 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_finish_224(Hacl_Streaming_MD_state_32 *p, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_finish_224 Modules/_hacl/python_hacl_namespaces.h 34;" d +Hacl_Streaming_SHA2_finish_256 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_finish_256(Hacl_Streaming_MD_state_32 *p, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_finish_256 Modules/_hacl/python_hacl_namespaces.h 33;" d +Hacl_Streaming_SHA2_finish_384 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_finish_384(Hacl_Streaming_MD_state_64 *p, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_finish_384 Modules/_hacl/python_hacl_namespaces.h 36;" d +Hacl_Streaming_SHA2_finish_512 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_finish_512(Hacl_Streaming_MD_state_64 *p, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_finish_512 Modules/_hacl/python_hacl_namespaces.h 35;" d +Hacl_Streaming_SHA2_free_224 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_free_224(Hacl_Streaming_MD_state_32 *p)$/;" f +Hacl_Streaming_SHA2_free_224 Modules/_hacl/python_hacl_namespaces.h 38;" d +Hacl_Streaming_SHA2_free_256 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_free_256(Hacl_Streaming_MD_state_32 *s)$/;" f +Hacl_Streaming_SHA2_free_256 Modules/_hacl/python_hacl_namespaces.h 37;" d +Hacl_Streaming_SHA2_free_384 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_free_384(Hacl_Streaming_MD_state_64 *p)$/;" f +Hacl_Streaming_SHA2_free_384 Modules/_hacl/python_hacl_namespaces.h 40;" d +Hacl_Streaming_SHA2_free_512 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_free_512(Hacl_Streaming_MD_state_64 *s)$/;" f +Hacl_Streaming_SHA2_free_512 Modules/_hacl/python_hacl_namespaces.h 39;" d +Hacl_Streaming_SHA2_hash_224 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_hash_224(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_hash_256 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_hash_256(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_hash_384 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_hash_384(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_hash_512 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_hash_512(uint8_t *input, uint32_t input_len, uint8_t *dst)$/;" f +Hacl_Streaming_SHA2_init_224 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_init_224(Hacl_Streaming_MD_state_32 *s)$/;" f +Hacl_Streaming_SHA2_init_224 Modules/_hacl/python_hacl_namespaces.h 25;" d +Hacl_Streaming_SHA2_init_256 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_init_256(Hacl_Streaming_MD_state_32 *s)$/;" f +Hacl_Streaming_SHA2_init_256 Modules/_hacl/python_hacl_namespaces.h 24;" d +Hacl_Streaming_SHA2_init_384 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_init_384(Hacl_Streaming_MD_state_64 *s)$/;" f +Hacl_Streaming_SHA2_init_384 Modules/_hacl/python_hacl_namespaces.h 27;" d +Hacl_Streaming_SHA2_init_512 Modules/_hacl/Hacl_Hash_SHA2.c /^void Hacl_Streaming_SHA2_init_512(Hacl_Streaming_MD_state_64 *s)$/;" f +Hacl_Streaming_SHA2_init_512 Modules/_hacl/python_hacl_namespaces.h 26;" d +Hacl_Streaming_SHA2_sha224 Modules/_hacl/python_hacl_namespaces.h 42;" d +Hacl_Streaming_SHA2_sha256 Modules/_hacl/python_hacl_namespaces.h 41;" d +Hacl_Streaming_SHA2_sha384 Modules/_hacl/python_hacl_namespaces.h 44;" d +Hacl_Streaming_SHA2_sha512 Modules/_hacl/python_hacl_namespaces.h 43;" d +Hacl_Streaming_SHA2_state_sha2_224 Modules/_hacl/Hacl_Hash_SHA2.h /^typedef Hacl_Streaming_MD_state_32 Hacl_Streaming_SHA2_state_sha2_224;$/;" t +Hacl_Streaming_SHA2_state_sha2_224 Modules/_hacl/python_hacl_namespaces.h 11;" d +Hacl_Streaming_SHA2_state_sha2_224_s Modules/_hacl/python_hacl_namespaces.h 10;" d +Hacl_Streaming_SHA2_state_sha2_256 Modules/_hacl/Hacl_Hash_SHA2.h /^typedef Hacl_Streaming_MD_state_32 Hacl_Streaming_SHA2_state_sha2_256;$/;" t +Hacl_Streaming_SHA2_state_sha2_256 Modules/_hacl/python_hacl_namespaces.h 12;" d +Hacl_Streaming_SHA2_state_sha2_384 Modules/_hacl/Hacl_Hash_SHA2.h /^typedef Hacl_Streaming_MD_state_64 Hacl_Streaming_SHA2_state_sha2_384;$/;" t +Hacl_Streaming_SHA2_state_sha2_384 Modules/_hacl/python_hacl_namespaces.h 14;" d +Hacl_Streaming_SHA2_state_sha2_384_s Modules/_hacl/python_hacl_namespaces.h 13;" d +Hacl_Streaming_SHA2_state_sha2_512 Modules/_hacl/Hacl_Hash_SHA2.h /^typedef Hacl_Streaming_MD_state_64 Hacl_Streaming_SHA2_state_sha2_512;$/;" t +Hacl_Streaming_SHA2_state_sha2_512 Modules/_hacl/python_hacl_namespaces.h 15;" d +Hacl_Streaming_SHA2_update_224 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_SHA2_update_224($/;" f +Hacl_Streaming_SHA2_update_224 Modules/_hacl/python_hacl_namespaces.h 30;" d +Hacl_Streaming_SHA2_update_256 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_SHA2_update_256($/;" f +Hacl_Streaming_SHA2_update_256 Modules/_hacl/python_hacl_namespaces.h 29;" d +Hacl_Streaming_SHA2_update_384 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_SHA2_update_384($/;" f +Hacl_Streaming_SHA2_update_384 Modules/_hacl/python_hacl_namespaces.h 32;" d +Hacl_Streaming_SHA2_update_512 Modules/_hacl/Hacl_Hash_SHA2.c /^Hacl_Streaming_SHA2_update_512($/;" f +Hacl_Streaming_SHA2_update_512 Modules/_hacl/python_hacl_namespaces.h 31;" d +Hacl_Streaming_Types_InvalidAlgorithm Modules/_hacl/Hacl_Streaming_Types.h 56;" d +Hacl_Streaming_Types_InvalidLength Modules/_hacl/Hacl_Streaming_Types.h 57;" d +Hacl_Streaming_Types_MaximumLengthExceeded Modules/_hacl/Hacl_Streaming_Types.h 58;" d +Hacl_Streaming_Types_Success Modules/_hacl/Hacl_Streaming_Types.h 55;" d +Hacl_Streaming_Types_error_code Modules/_hacl/Hacl_Streaming_Types.h /^typedef uint8_t Hacl_Streaming_Types_error_code;$/;" t +Hah Lib/test/test_enum.py /^ class Hah(Enum):$/;" c function:TestInternals.test_multiple_auto_on_line +HalibutProxy Lib/test/test_numeric_tower.py /^ class HalibutProxy:$/;" c function:HashTest.test_hash_normalization +Ham Lib/test/test_grammar.py /^ class Ham(Spam): pass$/;" c function:GrammarTests.test_funcdef +Ham Lib/test/test_inspect.py /^ class Ham(Spam):$/;" c function:TestSignatureObject.test_signature_on_mangled_parameters +HamtTest Lib/test/test_context.py /^class HamtTest(unittest.TestCase):$/;" c +Handle Lib/asyncio/events.py /^class Handle:$/;" c +Handle Lib/subprocess.py /^ class Handle(int):$/;" c +HandleErrorTest Lib/idlelib/idle_test/test_run.py /^class HandleErrorTest(unittest.TestCase):$/;" c +HandleException Modules/_ctypes/callproc.c /^static DWORD HandleException(EXCEPTION_POINTERS *ptrs,$/;" f file: +HandleTests Lib/test/test_asyncio/test_events.py /^class HandleTests(test_utils.TestCase):$/;" c +Handler Lib/logging/__init__.py /^class Handler(Filterer):$/;" c +Handler Lib/test/test_minidom.py /^ class Handler:$/;" c function:MinidomTest.check_clone_node_entity +Handler Lib/test/test_nntplib.py /^ class Handler(NNTPv1Handler):$/;" c function:MockSocketTests.test_bad_capabilities +Handler Lib/test/test_nntplib.py /^ class Handler(NNTPv1Handler):$/;" c function:MockSocketTests.test_bad_welcome +Handler Lib/test/test_nntplib.py /^ class Handler(NNTPv1Handler):$/;" c function:MockSocketTests.test_login_aborted +Handler Lib/test/test_nntplib.py /^ class Handler(NNTPv1Handler):$/;" c function:MockSocketTests.test_service_permanently_unavailable +Handler Lib/test/test_nntplib.py /^ class Handler(NNTPv1Handler):$/;" c function:MockSocketTests.test_service_temporarily_unavailable +Handler Lib/test/test_socketserver.py /^ class Handler(socketserver.StreamRequestHandler):$/;" c function:SocketWriterTest.test_basics +Handler Lib/test/test_socketserver.py /^ class Handler(socketserver.StreamRequestHandler):$/;" c function:SocketWriterTest.test_write +Handler Lib/test/test_urllib2.py /^ class Handler(urllib.request.HTTPHandler):$/;" c function:HandlerTests.test_redirect_encoding +HandlerClass Lib/http/server.py /^ HandlerClass=handler_class,$/;" v class:.DualStackServer +HandlerExceptionTest Lib/test/test_pyexpat.py /^class HandlerExceptionTest(unittest.TestCase):$/;" c +HandlerInfo Modules/pyexpat.c /^struct HandlerInfo {$/;" s file: +HandlerRoutine Lib/test/win_console_handler.py /^HandlerRoutine = WINFUNCTYPE(wintypes.BOOL, wintypes.DWORD)$/;" v +HandlerTest Lib/test/test_logging.py /^class HandlerTest(BaseTest):$/;" c +HandlerTests Lib/test/test_urllib2.py /^class HandlerTests(unittest.TestCase):$/;" c +HandlerTests Lib/test/test_wsgiref.py /^class HandlerTests(TestCase):$/;" c +HandlerTypes Modules/pyexpat.c /^enum HandlerTypes {$/;" g file: +HandlerWithNamerAndRotator Lib/test/test_logging.py /^ class HandlerWithNamerAndRotator(logging.handlers.RotatingFileHandler):$/;" c function:RotatingFileHandlerTest.test_namer_rotator_inheritance +Handlers Modules/signalmodule.c 102;" d file: +HandlingFromlist Lib/test/test_importlib/import_/test_fromlist.py /^class HandlingFromlist:$/;" c +HardlinkDedupTestsBase Lib/test/test_compileall.py /^class HardlinkDedupTestsBase:$/;" c +HardlinkDedupTestsNoSourceEpoch Lib/test/test_compileall.py /^ source_date_epoch=False):$/;" c +HardlinkDedupTestsWithSourceEpoch Lib/test/test_compileall.py /^ source_date_epoch=True):$/;" c +HardlinkTest Lib/test/test_tarfile.py /^class HardlinkTest(unittest.TestCase):$/;" c +HarmlessMixedComparison Lib/test/datetimetester.py /^class HarmlessMixedComparison:$/;" c +HasCallProtocol Lib/test/test_typing.py /^class HasCallProtocol(Protocol):$/;" c +HasForeignBaseClass Lib/test/test_typing.py /^class HasForeignBaseClass(mod_generics_cache.A):$/;" c +HasNB Lib/test/test_inspect.py /^ class HasNB(object):$/;" c function:TestClassesAndFunctions.test_classify_overrides_bool +HasNothingButSlots Lib/test/test_typing.py /^ class HasNothingButSlots:$/;" c function:ProtocolTests.test_protocols_isinstance___slots__ +HasX Lib/test/test_typing.py /^ class HasX(Protocol):$/;" c function:ProtocolTests.test_custom_subclasshook_2 +HasX Lib/test/test_typing.py /^ class HasX(Protocol):$/;" c function:ProtocolTests.test_pep695_generics_can_be_runtime_checkable +HasX Lib/test/test_typing.py /^ class HasX(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance___slots__ +HasX Lib/test/test_typing.py /^ class HasX(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_monkeypatching +HasX Lib/test/test_typing.py /^ class HasX(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_not_fooled_by_custom_dir +Hash Tools/unicode/makeunicodedata.py /^class Hash:$/;" c +HashBuiltinsTestCase Lib/test/test_hash.py /^class HashBuiltinsTestCase(unittest.TestCase):$/;" c +HashCountingInt Lib/test/test_set.py /^class HashCountingInt(int):$/;" c +HashDistributionTestCase Lib/test/test_hash.py /^class HashDistributionTestCase(unittest.TestCase):$/;" c +HashEqualityTestCase Lib/test/test_hash.py /^class HashEqualityTestCase(unittest.TestCase):$/;" c +HashInheritanceTestCase Lib/test/test_hash.py /^class HashInheritanceTestCase(unittest.TestCase):$/;" c +HashKey Lib/test/test_context.py /^class HashKey:$/;" c +HashLibTestCase Lib/test/test_hashlib.py /^class HashLibTestCase(unittest.TestCase):$/;" c +HashRandomizationTests Lib/test/test_hash.py /^class HashRandomizationTests:$/;" c +HashTest Lib/test/test_numeric_tower.py /^class HashTest(unittest.TestCase):$/;" c +HashThisKeyWillClearTheDict Lib/test/test_baseexception.py /^ class HashThisKeyWillClearTheDict(str):$/;" c function:ExceptionClassTests.test_setstate_refcount_no_crash +Hash_InfoType Python/sysmodule.c /^static PyTypeObject Hash_InfoType;$/;" v file: +Hashable Lib/_collections_abc.py /^class Hashable(metaclass=ABCMeta):$/;" c +Hashable Lib/typing.py /^Hashable = _alias(collections.abc.Hashable, 0) # Not generic.$/;" v +HashableDict Lib/test/test_types.py /^ class HashableDict(dict):$/;" c function:MappingProxyTests.test_hash +Hashed Lib/test/test_dict.py /^ class Hashed(object):$/;" c function:DictTest.test_setdefault_atomic +Hashed Lib/test/test_dict.py /^ class Hashed(object):$/;" c function:DictTest.test_setitem_atomic_at_resize +HashingError Lib/test/test_context.py /^class HashingError(Exception):$/;" c +HaskKeyCrasher Lib/test/test_context.py /^class HaskKeyCrasher:$/;" c +HeadFHCD Modules/_tkinter.c /^static FileHandler_ClientData *HeadFHCD;$/;" v file: +Header Lib/email/_header_value_parser.py /^class Header(TokenList):$/;" c +Header Lib/email/header.py /^class Header:$/;" c +HeaderCountingBuffer Lib/test/test_httplib.py /^ class HeaderCountingBuffer(list):$/;" c function:HeaderTests.test_auto_headers +HeaderDefect Lib/email/errors.py /^class HeaderDefect(MessageDefect):$/;" c +HeaderError Lib/tarfile.py /^class HeaderError(TarError):$/;" c +HeaderLabel Lib/email/_header_value_parser.py /^class HeaderLabel(TokenList):$/;" c +HeaderMissingRequiredValue Lib/email/errors.py /^class HeaderMissingRequiredValue(HeaderDefect):$/;" c +HeaderParseError Lib/email/errors.py /^class HeaderParseError(MessageParseError):$/;" c +HeaderParser Lib/email/parser.py /^class HeaderParser(Parser):$/;" c +HeaderRegistry Lib/email/headerregistry.py /^class HeaderRegistry:$/;" c +HeaderTests Lib/test/test_http_cookiejar.py /^class HeaderTests(unittest.TestCase):$/;" c +HeaderTests Lib/test/test_httplib.py /^class HeaderTests(TestCase):$/;" c +HeaderTests Lib/test/test_wsgiref.py /^class HeaderTests(TestCase):$/;" c +Headers Lib/wsgiref/headers.py /^class Headers:$/;" c +HeadersServerTestCase Lib/test/test_xmlrpc.py /^class HeadersServerTestCase(BaseServerTestCase):$/;" c +HeadlightsC Lib/test/test_enum.py /^class HeadlightsC(IntFlag, boundary=enum.CONFORM):$/;" c +HeadlightsK Lib/test/test_enum.py /^class HeadlightsK(IntFlag, boundary=enum.KEEP):$/;" c +HealthCheck Lib/test/support/_hypothesis_stubs/__init__.py /^class HealthCheck(Enum):$/;" c +Heap Lib/multiprocessing/heap.py /^class Heap(object):$/;" c +HeapCCollection_clear Modules/_testcapi/heaptype.c /^HeapCCollection_clear(PyObject *self)$/;" f file: +HeapCCollection_dealloc Modules/_testcapi/heaptype.c /^HeapCCollection_dealloc(PyObject *self)$/;" f file: +HeapCCollection_item Modules/_testcapi/heaptype.c /^HeapCCollection_item(PyObject *self, Py_ssize_t i)$/;" f file: +HeapCCollection_length Modules/_testcapi/heaptype.c /^HeapCCollection_length(PyVarObject *self)$/;" f file: +HeapCCollection_new Modules/_testcapi/heaptype.c /^HeapCCollection_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds)$/;" f file: +HeapCCollection_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCCollection_slots[] = {$/;" v file: +HeapCCollection_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCCollection_spec = {$/;" v file: +HeapCCollection_traverse Modules/_testcapi/heaptype.c /^HeapCCollection_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +HeapCTypeMetaclassCustomNew_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeMetaclassCustomNew_slots[] = {$/;" v file: +HeapCTypeMetaclassCustomNew_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeMetaclassCustomNew_spec = {$/;" v file: +HeapCTypeMetaclassNullNew_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeMetaclassNullNew_spec = {$/;" v file: +HeapCTypeMetaclass_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeMetaclass_slots[] = {$/;" v file: +HeapCTypeMetaclass_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeMetaclass_spec = {$/;" v file: +HeapCTypeObject Modules/_testcapi/heaptype.c /^} HeapCTypeObject;$/;" t typeref:struct:__anon548 file: +HeapCTypeSetattrObject Modules/_testcapi/heaptype.c /^} HeapCTypeSetattrObject;$/;" t typeref:struct:__anon553 file: +HeapCTypeSetattr_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeSetattr_slots[] = {$/;" v file: +HeapCTypeSetattr_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeSetattr_spec = {$/;" v file: +HeapCTypeSubclassObject Modules/_testcapi/heaptype.c /^} HeapCTypeSubclassObject;$/;" t typeref:struct:__anon549 file: +HeapCTypeSubclassWithFinalizer_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeSubclassWithFinalizer_slots[] = {$/;" v file: +HeapCTypeSubclassWithFinalizer_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeSubclassWithFinalizer_spec = {$/;" v file: +HeapCTypeSubclass_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeSubclass_slots[] = {$/;" v file: +HeapCTypeSubclass_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeSubclass_spec = {$/;" v file: +HeapCTypeWithBufferObject Modules/_testcapi/heaptype.c /^} HeapCTypeWithBufferObject;$/;" t typeref:struct:__anon550 file: +HeapCTypeWithBuffer_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeWithBuffer_slots[] = {$/;" v file: +HeapCTypeWithBuffer_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithBuffer_spec = {$/;" v file: +HeapCTypeWithDataObject Modules/_testcapi/heaptype.c /^} HeapCTypeWithDataObject;$/;" t typeref:struct:__anon545 file: +HeapCTypeWithDict2_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithDict2_spec = {$/;" v file: +HeapCTypeWithDictObject Modules/_testcapi/heaptype.c /^} HeapCTypeWithDictObject;$/;" t typeref:struct:__anon551 file: +HeapCTypeWithDict_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeWithDict_slots[] = {$/;" v file: +HeapCTypeWithDict_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithDict_spec = {$/;" v file: +HeapCTypeWithManagedDict_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeWithManagedDict_slots[] = {$/;" v file: +HeapCTypeWithManagedDict_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithManagedDict_spec = {$/;" v file: +HeapCTypeWithManagedWeakref_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeWithManagedWeakref_slots[] = {$/;" v file: +HeapCTypeWithManagedWeakref_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithManagedWeakref_spec = {$/;" v file: +HeapCTypeWithNegativeDict_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeWithNegativeDict_slots[] = {$/;" v file: +HeapCTypeWithNegativeDict_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithNegativeDict_spec = {$/;" v file: +HeapCTypeWithWeakref2_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithWeakref2_spec = {$/;" v file: +HeapCTypeWithWeakrefObject Modules/_testcapi/heaptype.c /^} HeapCTypeWithWeakrefObject;$/;" t typeref:struct:__anon552 file: +HeapCTypeWithWeakref_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCTypeWithWeakref_slots[] = {$/;" v file: +HeapCTypeWithWeakref_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCTypeWithWeakref_spec = {$/;" v file: +HeapCType_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapCType_slots[] = {$/;" v file: +HeapCType_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapCType_spec = {$/;" v file: +HeapDocCTypeObject Modules/_testcapi/heaptype.c /^} HeapDocCTypeObject;$/;" t typeref:struct:__anon546 file: +HeapDocCType_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapDocCType_slots[] = {$/;" v file: +HeapDocCType_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapDocCType_spec = {$/;" v file: +HeapGcCTypeSubclass Lib/test/test_capi/test_misc.py /^ class HeapGcCTypeSubclass(_testcapi.HeapGcCType):$/;" c function:CAPITest.test_subclass_of_heap_gc_ctype_with_tpdealloc_decrefs_once +HeapGcCType_slots Modules/_testcapi/heaptype.c /^static PyType_Slot HeapGcCType_slots[] = {$/;" v file: +HeapGcCType_spec Modules/_testcapi/heaptype.c /^static PyType_Spec HeapGcCType_spec = {$/;" v file: +HeapTypeNameType_Spec Modules/_testcapimodule.c /^static PyType_Spec HeapTypeNameType_Spec = {$/;" v file: +HeapTypeNameType_slots Modules/_testcapimodule.c /^static PyType_Slot HeapTypeNameType_slots[] = {$/;" v file: +HeapTypeObjectPtr Tools/gdb/libpython.py /^class HeapTypeObjectPtr(PyObjectPtr):$/;" c +HeapTypeTests Lib/test/test_winreg.py /^class HeapTypeTests(unittest.TestCase):$/;" c +HeapTypesTests Lib/test/test_pickle.py /^ class HeapTypesTests(unittest.TestCase):$/;" c +HeapqMergeDocTestFinder Lib/test/test_heapq.py /^ class HeapqMergeDocTestFinder:$/;" c function:load_tests +HelloEnum Lib/test/test_enum.py /^ class HelloEnum(EnumMixin, CustomStrEnum):$/;" c function:TestSpecial.test_custom_strenum +HelloEnum Lib/test/test_enum.py /^ class HelloEnum(EnumMixin, StrEnum):$/;" c function:TestSpecial.test_strenum +Help Tools/msi/build.bat /^:Help$/;" l +Help Tools/msi/buildrelease.bat /^:Help$/;" l +Help Tools/msi/testrelease.bat /^:Help$/;" l +Help Tools/msi/uploadrelease.bat /^:Help$/;" l +Help Tools/nuget/build.bat /^:Help$/;" l +HelpFormatter Lib/argparse.py /^class HelpFormatter(object):$/;" c +HelpFormatter Lib/optparse.py /^class HelpFormatter:$/;" c +HelpFrame Lib/idlelib/configdialog.py /^class HelpFrame(LabelFrame):$/;" c +HelpFrame Lib/idlelib/help.py /^class HelpFrame(Frame):$/;" c +HelpFrameTest Lib/idlelib/idle_test/test_help.py /^class HelpFrameTest(unittest.TestCase):$/;" c +HelpParser Lib/idlelib/help.py /^class HelpParser(HTMLParser):$/;" c +HelpSource Lib/idlelib/query.py /^class HelpSource(Query):$/;" c +HelpSourceTest Lib/idlelib/idle_test/test_configdialog.py /^class HelpSourceTest(unittest.TestCase):$/;" c +HelpSource_spec Lib/idlelib/idle_test/htest.py /^HelpSource_spec = {$/;" v +HelpTestCase Lib/test/test_argparse.py /^HelpTestCase = TestHelpFormattingMetaclass('HelpTestCase', bases, {})$/;" v +HelpText Lib/idlelib/help.py /^class HelpText(Text):$/;" c +HelpWindow Lib/idlelib/help.py /^class HelpWindow(Toplevel):$/;" c +Helper Lib/pydoc.py /^class Helper:$/;" c +HelperFunctionTest Lib/test/test_mailcap.py /^class HelperFunctionTest(unittest.TestCase):$/;" c +HelperFunctionText Lib/idlelib/idle_test/test_codecontext.py /^class HelperFunctionText(unittest.TestCase):$/;" c +HelperFunctionsTests Lib/test/test_site.py /^class HelperFunctionsTests(unittest.TestCase):$/;" c +HelperMixin Lib/test/test_marshal.py /^class HelperMixin:$/;" c +HelperTest Lib/idlelib/idle_test/test_config_key.py /^class HelperTest(unittest.TestCase):$/;" c +HelperTestCase Lib/test/test_xmlrpc.py /^class HelperTestCase(unittest.TestCase):$/;" c +HelpsourceBrowsefileTest Lib/idlelib/idle_test/test_query.py /^class HelpsourceBrowsefileTest(unittest.TestCase):$/;" c +HelpsourceEntryokTest Lib/idlelib/idle_test/test_query.py /^class HelpsourceEntryokTest(unittest.TestCase):$/;" c +HelpsourceGuiTest Lib/idlelib/idle_test/test_query.py /^class HelpsourceGuiTest(unittest.TestCase):$/;" c +HelpsourcePathokTest Lib/idlelib/idle_test/test_query.py /^class HelpsourcePathokTest(unittest.TestCase):$/;" c +HexFloatTestCase Lib/test/test_float.py /^class HexFloatTestCase(unittest.TestCase):$/;" c +HexInt Lib/test/test_enum.py /^ class HexInt(int):$/;" c function:TestSpecial.test_inherited_data_type +HexMixin Lib/test/test_enum.py /^ class HexMixin:$/;" c function:TestSpecial.test_multiple_mixin_inherited +Hexnumber Lib/lib2to3/pgen2/tokenize.py /^Hexnumber = r'0[xX]_?[\\da-fA-F]+(?:_[\\da-fA-F]+)*[lL]?'$/;" v +Hexnumber Lib/tokenize.py /^Hexnumber = r'0[xX](?:_?[0-9a-fA-F])+'$/;" v +HiddenText Lib/test/test_enum.py /^ HiddenText = 0x10$/;" v class:OldTestFlag.test_boundary.MethodHint +HierarchyRequestErr Lib/xml/dom/__init__.py /^class HierarchyRequestErr(DOMException):$/;" c +HierarchyTest Lib/test/test_exception_hierarchy.py /^class HierarchyTest(unittest.TestCase):$/;" c +HighPage Lib/idlelib/configdialog.py /^class HighPage(Frame):$/;" c +HighPageTest Lib/idlelib/idle_test/test_configdialog.py /^class HighPageTest(unittest.TestCase):$/;" c +HighlevelParsedItem Tools/c-analyzer/c_parser/info.py /^class HighlevelParsedItem:$/;" c +HintsWriter Tools/unicode/genmap_tchinese.py /^class HintsWriter:$/;" c +History Lib/idlelib/history.py /^class History:$/;" c +Holiday Lib/test/test_enum.py /^ class Holiday(date, Enum):$/;" c function:TestSpecial.setUp +Hook Lib/cgitb.py /^class Hook:$/;" c +HookWatcher Lib/test/test_sys_setprofile.py /^class HookWatcher:$/;" c +HorizontalGrid Lib/test/test_descr.py /^ class HorizontalGrid(GridLayout): pass$/;" c function:.test_mro_disagreement +HorizontalRule Lib/pydoc.py /^ class HorizontalRule:$/;" c function:.docclass +HorizontalRule Lib/pydoc.py /^ class HorizontalRule:$/;" c function:TextDoc.docclass +Host Tools/wasm/wasm_build.py /^class Host(enum.Enum):$/;" c +Hovertip Lib/idlelib/tooltip.py /^class Hovertip(OnHoverTooltipBase):$/;" c +HovertipTest Lib/idlelib/idle_test/test_tooltip.py /^class HovertipTest(unittest.TestCase):$/;" c +HtmlDiff Lib/difflib.py /^class HtmlDiff(object):$/;" c +HtmlTests Lib/test/test_html.py /^class HtmlTests(unittest.TestCase):$/;" c +HttpMethodTests Lib/test/test_httplib.py /^class HttpMethodTests(TestCase):$/;" c +HugeLen Lib/test/test_builtin.py /^ class HugeLen:$/;" c function:BuiltinTest.test_len +HugeNegativeLen Lib/test/test_builtin.py /^ class HugeNegativeLen:$/;" c function:BuiltinTest.test_len +Huh Lib/test/test_enum.py /^ class Huh(MyStr, MyInt, Enum):$/;" c class:TestSpecial.test_too_many_data_types.MyInt +Huh Lib/test/test_enum.py /^ class Huh(str, int, Enum):$/;" c function:TestSpecial.test_too_many_data_types +Huh Lib/test/test_enum.py /^ class Huh(Enum):$/;" c function:TestInternals.test_multiple_auto_on_line +Huh Lib/test/test_enum.py /^ class Huh(Enum):$/;" c function:TestSpecial.test_enum_with_value_name +Huh Lib/test/test_enum.py /^ class Huh:$/;" c function:TestSpecial.test_repr_with_dataclass +HyperParser Lib/idlelib/hyperparser.py /^class HyperParser:$/;" c +HyperParserTest Lib/idlelib/idle_test/test_hyperparser.py /^class HyperParserTest(unittest.TestCase):$/;" c +I Lib/pickletools.py /^I = OpcodeInfo$/;" v +I Lib/test/test_builtin.py /^ class I:$/;" c function:BuiltinTest.test_zip +I Lib/test/test_class.py /^ class I:$/;" c function:ClassTests.testForExceptionsRaisedInInstanceGetattr2 +I Lib/test/test_collections.py /^ class I(Iterable):$/;" c function:TestOneTrickPonyABCs.test_Iterable +I Lib/test/test_coroutines.py /^ class I:$/;" c function:CoroutineTest.test_for_3 +I Lib/test/test_coroutines.py /^ class I:$/;" c function:CoroutineTest.test_for_4 +I Lib/test/test_dataclasses.py /^ I = C$/;" v class:TestFrozen.test_inherit_from_normal_class.C +I Lib/test/test_dataclasses.py /^ I = C$/;" v class:TestFrozen.test_inherit_frozen_from_nonfrozen.C +I Lib/test/test_dataclasses.py /^ I = C$/;" v class:TestFrozen.test_inherit_nonfrozen_from_frozen.C +I Lib/test/test_dataclasses.py /^ class I(C): pass$/;" c class:TestFrozen.test_inherit_from_normal_class.C +I Lib/test/test_dataclasses.py /^ class I(C): pass$/;" c class:TestFrozen.test_inherit_frozen_from_nonfrozen.C +I Lib/test/test_dataclasses.py /^ class I(C): pass$/;" c class:TestFrozen.test_inherit_nonfrozen_from_frozen.C +I Lib/test/test_decimal.py /^ class I(int):$/;" c function:CWhitebox.test_internal_use_of_overridden_methods +I Lib/test/test_descr.py /^ class I(int):$/;" c function:.test_binary_operator_override +I Lib/test/test_descr.py /^ class I(int):$/;" c function:.test_dynamics +I Lib/test/test_descr.py /^ class I(object):$/;" c function:.test_set_class +I Lib/test/test_enum.py /^ I = 9$/;" v class:TestSpecial.test_inherited_data_type.MyUnBrokenEnum +I Lib/test/test_enumerate.py /^class I:$/;" c +I Lib/test/test_grammar.py /^ class I: pass$/;" c function:GrammarTests.test_classdef +I Lib/test/test_heapq.py /^class I:$/;" c +I Lib/test/test_isinstance.py /^ class I(object):$/;" c function:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error +I Lib/test/test_isinstance.py /^ class I(object):$/;" c function:TestIsInstanceExceptions.test_class_has_no_bases +I Lib/test/test_isinstance.py /^ class I: pass$/;" c function:TestIsInstanceExceptions.test_dont_mask_non_attribute_error +I Lib/test/test_isinstance.py /^ class I: pass$/;" c function:TestIsInstanceExceptions.test_mask_attribute_error +I Lib/test/test_itertools.py /^ class I:$/;" c function:TestBasicOps.test_tee_concurrent +I Lib/test/test_itertools.py /^ class I:$/;" c function:TestBasicOps.test_tee_reenter +I Lib/test/test_itertools.py /^class I:$/;" c +I Lib/test/test_range.py /^ class I:$/;" c function:RangeTest.test_user_index_method +I Lib/test/test_set.py /^class I:$/;" c +I Lib/test/test_typing.py /^ I = Tuple[List[T], A[Unpack[Ts]], List[T2]]$/;" v class:TypeVarTupleTests.test_var_substitution.G2 +I Lib/test/test_typing.py /^ class I(collections.abc.Iterable): ...$/;" c function:CollectionsAbcTests.test_collections_as_base +I Lib/test/test_typing.py /^ class I(typing.Iterable): ...$/;" c function:CollectionsAbcTests.test_subclassing +I Lib/test/test_unicode.py /^ class I(datetime.date):$/;" c function:UnicodeTest.test_format +I Modules/_ctypes/_ctypes_test.c /^ signed int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;$/;" m struct:BITS file: +IAC Lib/telnetlib.py /^IAC = bytes([255]) # "Interpret As Command"$/;" v +IBMTestCases Lib/test/test_decimal.py /^class IBMTestCases:$/;" c +IBSLOT Objects/typeobject.c 9377;" d file: +IBSLOT Objects/typeobject.c 9403;" d file: +ICHAR Modules/expat/xmlparse.c /^typedef char ICHAR;$/;" t file: +ICHAR Modules/expat/xmlparse.c /^typedef unsigned short ICHAR;$/;" t file: +ICONDIR Lib/idlelib/tree.py /^ ICONDIR = _icondir$/;" v +ICONDIR Lib/idlelib/tree.py /^ICONDIR = "Icons"$/;" v +ID Include/internal/pycore_global_strings.h 763;" d +IDC_STATIC Tools/msi/bundle/bootstrap/resource.h 13;" d +IDENTCHARS Lib/cmd.py /^IDENTCHARS = string.ascii_letters + string.digits + '_'$/;" v +IDENTCHARS Lib/idlelib/editor.py /^ IDENTCHARS = string.ascii_letters + string.digits + "_"$/;" v class:EditorWindow +IDENTIFIER Lib/logging/config.py /^IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I)$/;" v +IDENTIFIER Tools/c-analyzer/c_parser/parser/_regexes.py /^IDENTIFIER = r'(?: [a-zA-Z_][a-zA-Z0-9_]* )'$/;" v +IDENTIFIER Tools/cases_generator/lexer.py /^IDENTIFIER = 'IDENTIFIER'$/;" v +IDENTIFIERS Tools/build/generate_global_objects.py /^IDENTIFIERS = [$/;" v +IDES Lib/test/test_unicode.py /^ IDES = 15$/;" v class:UnicodeTest.test_formatting_with_enum.Int +IDES_OF_MARCH Lib/test/test_enum.py /^ IDES_OF_MARCH = 2013, 3, 15$/;" v class:TestSpecial.setUp.Holiday +IDLE_DIRS_ONLY PC/layout/main.py /^IDLE_DIRS_ONLY = FileNameSet("idlelib")$/;" v +IDLE_VE_DATA PC/layout/support/appxmanifest.py /^IDLE_VE_DATA = dict($/;" v +IDNACodecTest Lib/test/test_codecs.py /^class IDNACodecTest(unittest.TestCase):$/;" c +IDNSANSFILE Lib/test/test_ssl.py /^IDNSANSFILE = data_file("idnsans.pem")$/;" v +IDX Lib/test/test_buffer.py /^ class IDX(object):$/;" c function:TestBufferProtocol.test_memoryview_struct_module +IDX Lib/test/test_capi/test_misc.py /^ class IDX:$/;" c function:CAPITest.test_pynumber_tobase +ID_CACHE_PROGRESS_BAR Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CACHE_PROGRESS_BAR,$/;" e enum:CONTROL_ID file: +ID_CACHE_PROGRESS_PACKAGE_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CACHE_PROGRESS_PACKAGE_TEXT,$/;" e enum:CONTROL_ID file: +ID_CACHE_PROGRESS_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CACHE_PROGRESS_TEXT,$/;" e enum:CONTROL_ID file: +ID_CHARS Lib/idlelib/autocomplete.py /^ID_CHARS = string.ascii_letters + string.digits + "_"$/;" v +ID_CHAR_SUBS Tools/msi/csv_to_wxs.py /^ID_CHAR_SUBS = {$/;" v +ID_CLOSE_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CLOSE_BUTTON = THEME_FIRST_ASSIGN_CONTROL_ID,$/;" e enum:CONTROL_ID file: +ID_CUSTOM1_BACK_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM1_BACK_BUTTON,$/;" e enum:CONTROL_ID file: +ID_CUSTOM1_CANCEL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM1_CANCEL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_CUSTOM2_BACK_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM2_BACK_BUTTON,$/;" e enum:CONTROL_ID file: +ID_CUSTOM2_CANCEL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM2_CANCEL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_ASSOCIATE_FILES_CHECKBOX Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_ASSOCIATE_FILES_CHECKBOX,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_BROWSE_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_BROWSE_BUTTON,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_BROWSE_BUTTON_LABEL Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_BROWSE_BUTTON_LABEL,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_COMPILE_ALL_CHECKBOX Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_COMPILE_ALL_CHECKBOX,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_INCLUDE_LAUNCHER_HELP_LABEL Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_INCLUDE_LAUNCHER_HELP_LABEL,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_INSTALL_ALL_USERS_CHECKBOX Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_INSTALL_ALL_USERS_CHECKBOX,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_INSTALL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_INSTALL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_INSTALL_LAUNCHER_ALL_USERS_CHECKBOX Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_INSTALL_LAUNCHER_ALL_USERS_CHECKBOX,$/;" e enum:CONTROL_ID file: +ID_CUSTOM_NEXT_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_CUSTOM_NEXT_BUTTON,$/;" e enum:CONTROL_ID file: +ID_EXECUTE_PROGRESS_ACTIONDATA_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_EXECUTE_PROGRESS_ACTIONDATA_TEXT,$/;" e enum:CONTROL_ID file: +ID_EXECUTE_PROGRESS_BAR Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_EXECUTE_PROGRESS_BAR,$/;" e enum:CONTROL_ID file: +ID_EXECUTE_PROGRESS_PACKAGE_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_EXECUTE_PROGRESS_PACKAGE_TEXT,$/;" e enum:CONTROL_ID file: +ID_EXECUTE_PROGRESS_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_EXECUTE_PROGRESS_TEXT,$/;" e enum:CONTROL_ID file: +ID_FAILURE_CANCEL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_FAILURE_CANCEL_BUTTON$/;" e enum:CONTROL_ID file: +ID_FAILURE_LOGFILE_LINK Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_FAILURE_LOGFILE_LINK,$/;" e enum:CONTROL_ID file: +ID_FAILURE_MESSAGE_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_FAILURE_MESSAGE_TEXT,$/;" e enum:CONTROL_ID file: +ID_FAILURE_RESTART_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_FAILURE_RESTART_BUTTON,$/;" e enum:CONTROL_ID file: +ID_FAILURE_RESTART_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_FAILURE_RESTART_TEXT,$/;" e enum:CONTROL_ID file: +ID_INSTALL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_INSTALL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_INSTALL_CANCEL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_INSTALL_CANCEL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_INSTALL_CUSTOM_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_INSTALL_CUSTOM_BUTTON,$/;" e enum:CONTROL_ID file: +ID_INSTALL_LAUNCHER_ALL_USERS_CHECKBOX Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_INSTALL_LAUNCHER_ALL_USERS_CHECKBOX,$/;" e enum:CONTROL_ID file: +ID_INSTALL_SIMPLE_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_INSTALL_SIMPLE_BUTTON,$/;" e enum:CONTROL_ID file: +ID_INSTALL_UPGRADE_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_INSTALL_UPGRADE_BUTTON,$/;" e enum:CONTROL_ID file: +ID_INSTALL_UPGRADE_CUSTOM_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_INSTALL_UPGRADE_CUSTOM_BUTTON,$/;" e enum:CONTROL_ID file: +ID_MINIMIZE_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_MINIMIZE_BUTTON,$/;" e enum:CONTROL_ID file: +ID_MODIFY_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_MODIFY_BUTTON,$/;" e enum:CONTROL_ID file: +ID_MODIFY_CANCEL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_MODIFY_CANCEL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_OVERALL_CALCULATED_PROGRESS_BAR Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_OVERALL_CALCULATED_PROGRESS_BAR,$/;" e enum:CONTROL_ID file: +ID_OVERALL_PROGRESS_BAR Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_OVERALL_PROGRESS_BAR,$/;" e enum:CONTROL_ID file: +ID_OVERALL_PROGRESS_PACKAGE_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_OVERALL_PROGRESS_PACKAGE_TEXT,$/;" e enum:CONTROL_ID file: +ID_OVERALL_PROGRESS_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_OVERALL_PROGRESS_TEXT,$/;" e enum:CONTROL_ID file: +ID_PROGRESS_CANCEL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_PROGRESS_CANCEL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_REPAIR_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_REPAIR_BUTTON,$/;" e enum:CONTROL_ID file: +ID_SUCCESS_CANCEL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_SUCCESS_CANCEL_BUTTON,$/;" e enum:CONTROL_ID file: +ID_SUCCESS_MAX_PATH_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_SUCCESS_MAX_PATH_BUTTON,$/;" e enum:CONTROL_ID file: +ID_SUCCESS_RESTART_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_SUCCESS_RESTART_BUTTON,$/;" e enum:CONTROL_ID file: +ID_SUCCESS_RESTART_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_SUCCESS_RESTART_TEXT,$/;" e enum:CONTROL_ID file: +ID_SUCCESS_TEXT Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_SUCCESS_TEXT,$/;" e enum:CONTROL_ID file: +ID_TARGETDIR_EDITBOX Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_TARGETDIR_EDITBOX,$/;" e enum:CONTROL_ID file: +ID_UNINSTALL_BUTTON Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ID_UNINSTALL_BUTTON,$/;" e enum:CONTROL_ID file: +IEEEFormatTestCase Lib/test/test_float.py /^class IEEEFormatTestCase(unittest.TestCase):$/;" c +IEEE_754_DOUBLE_BE Lib/test/test_array.py /^IEEE_754_DOUBLE_BE = 17$/;" v +IEEE_754_DOUBLE_BE Modules/arraymodule.c /^ IEEE_754_DOUBLE_BE = 17,$/;" e enum:machine_format_code file: +IEEE_754_DOUBLE_LE Lib/test/test_array.py /^IEEE_754_DOUBLE_LE = 16$/;" v +IEEE_754_DOUBLE_LE Modules/arraymodule.c /^ IEEE_754_DOUBLE_LE = 16,$/;" e enum:machine_format_code file: +IEEE_754_FLOAT_BE Lib/test/test_array.py /^IEEE_754_FLOAT_BE = 15$/;" v +IEEE_754_FLOAT_BE Modules/arraymodule.c /^ IEEE_754_FLOAT_BE = 15,$/;" e enum:machine_format_code file: +IEEE_754_FLOAT_LE Lib/test/test_array.py /^IEEE_754_FLOAT_LE = 14$/;" v +IEEE_754_FLOAT_LE Modules/arraymodule.c /^ IEEE_754_FLOAT_LE = 14,$/;" e enum:machine_format_code file: +IEEE_8087 Python/dtoa.c 138;" d file: +IEEE_MC68k Python/dtoa.c 142;" d file: +IFLAG Lib/tty.py /^IFLAG = 0$/;" v +IFLT Objects/listobject.c 1147;" d file: +IFLT Objects/listobject.c 2510;" d file: +IGNORABLE_WHITESPACE Lib/xml/dom/pulldom.py /^IGNORABLE_WHITESPACE = "IGNORABLE_WHITESPACE"$/;" v +IGNORE Lib/tkinter/messagebox.py /^IGNORE = "ignore"$/;" v +IGNORE Tools/build/generate_stdlib_module_names.py /^IGNORE = {$/;" v +IGNORED Tools/build/generate_global_objects.py /^IGNORED = {$/;" v +IGNORED Tools/c-analyzer/c_analyzer/info.py /^IGNORED = _misc.Labeled('IGNORED')$/;" v +IGNORED_COLUMNS Tools/c-analyzer/c_analyzer/datafiles.py /^IGNORED_COLUMNS = [$/;" v +IGNORED_EXTENSION Tools/build/smelly.py /^IGNORED_EXTENSION = "_ctypes_test"$/;" v +IGNORED_FILE Tools/c-analyzer/cpython/_analyzer.py /^IGNORED_FILE = os.path.join(_DATA_DIR, 'ignored.tsv')$/;" v +IGNORED_HEADER Tools/c-analyzer/c_analyzer/datafiles.py /^IGNORED_HEADER = '\\t'.join(IGNORED_COLUMNS)$/;" v +IGNORED_SYMBOLS Tools/build/smelly.py /^IGNORED_SYMBOLS = {'_init', '_fini'}$/;" v +IGNORE_BITS Include/internal/pycore_obmalloc.h 554;" d +IGNORE_BITS Include/internal/pycore_obmalloc.h 562;" d +IGNORE_CONFIG Lib/test/test_embed.py /^ IGNORE_CONFIG = object()$/;" v class:InitConfigTests +IGNORE_EXCEPTION_DETAIL Lib/doctest.py /^IGNORE_EXCEPTION_DETAIL = register_optionflag('IGNORE_EXCEPTION_DETAIL')$/;" v +IGNORE_SECTION_TOK_VTABLE Modules/expat/xmltok.c 63;" d file: +IGNORE_SECTION_TOK_VTABLE Modules/expat/xmltok.c 65;" d file: +II Lib/test/test_weakref.py /^ class II(object):$/;" c function:ReferencesTestCase.test_callback_in_cycle +IISCGIHandler Lib/wsgiref/handlers.py /^class IISCGIHandler(BaseCGIHandler):$/;" c +II_getitem Modules/arraymodule.c /^II_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +II_setitem Modules/arraymodule.c /^II_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +ILLEGAL_BASIC_STR_CHARS Lib/tomllib/_parser.py /^ILLEGAL_BASIC_STR_CHARS = ASCII_CTRL - frozenset("\\t")$/;" v +ILLEGAL_COMMENT_CHARS Lib/tomllib/_parser.py /^ILLEGAL_COMMENT_CHARS = ILLEGAL_BASIC_STR_CHARS$/;" v +ILLEGAL_LITERAL_STR_CHARS Lib/tomllib/_parser.py /^ILLEGAL_LITERAL_STR_CHARS = ILLEGAL_BASIC_STR_CHARS$/;" v +ILLEGAL_MULTILINE_BASIC_STR_CHARS Lib/tomllib/_parser.py /^ILLEGAL_MULTILINE_BASIC_STR_CHARS = ASCII_CTRL - frozenset("\\t\\n")$/;" v +ILLEGAL_MULTILINE_LITERAL_STR_CHARS Lib/tomllib/_parser.py /^ILLEGAL_MULTILINE_LITERAL_STR_CHARS = ILLEGAL_MULTILINE_BASIC_STR_CHARS$/;" v +ILLEGAL_PARAMETER Lib/ssl.py /^ ILLEGAL_PARAMETER = 47$/;" v class:_TLSAlertType +ILLEGAL_PARAMETER Lib/test/test_ssl.py /^ ILLEGAL_PARAMETER = 47$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +IMAGE Lib/tkinter/tix.py /^IMAGE = 'image'$/;" v +IMAGETEXT Lib/tkinter/tix.py /^IMAGETEXT = 'imagetext'$/;" v +IMAP4 Lib/imaplib.py /^class IMAP4:$/;" c +IMAP4_PORT Lib/imaplib.py /^IMAP4_PORT = 143$/;" v +IMAP4_SSL Lib/imaplib.py /^ class IMAP4_SSL(IMAP4):$/;" c class:IMAP4 +IMAP4_SSL Lib/test/test_imaplib.py /^ IMAP4_SSL = None$/;" v +IMAP4_SSL Lib/test/test_imaplib.py /^ IMAP4_SSL = imaplib.IMAP4_SSL$/;" v class:TestImaplib +IMAP4_SSL_PORT Lib/imaplib.py /^IMAP4_SSL_PORT = 993$/;" v +IMAP4_stream Lib/imaplib.py /^class IMAP4_stream(IMAP4):$/;" c +IMMEDIATE Lib/tkinter/tix.py /^IMMEDIATE = 'immediate'$/;" v +IMMORTALS Lib/test/test_builtin.py /^ IMMORTALS = (None, True, False, Ellipsis, NotImplemented, *range(-5, 257))$/;" v class:ImmortalTests +IMMORTAL_REFCOUNT Lib/test/test_builtin.py /^ IMMORTAL_REFCOUNT = (1 << 30) - 1$/;" v class:ImmortalTests +IMMORTAL_REFCOUNT Lib/test/test_builtin.py /^ IMMORTAL_REFCOUNT = (1 << 32) - 1$/;" v class:ImmortalTests +IMO_OFF Objects/classobject.c 374;" d file: +IMPORTLIB Python/import.c 72;" d file: +IMPORTS_INIT Include/internal/pycore_import.h 95;" d +IMPORT_ERROR Lib/test/test_crypt.py /^ IMPORT_ERROR = None$/;" v +IMPORT_ERROR Lib/test/test_crypt.py /^ IMPORT_ERROR = str(ex)$/;" v +IMPORT_FROM Include/opcode.h 70;" d +IMPORT_FUNC Python/import.c 82;" d file: +IMPORT_LOCK Python/import.c 85;" d file: +IMPORT_LOCK_LEVEL Python/import.c 89;" d file: +IMPORT_LOCK_THREAD Python/import.c 87;" d file: +IMPORT_MAP Modules/cjkcodecs/cjkcodecs.h 443;" d +IMPORT_MAPPING Lib/_compat_pickle.py /^IMPORT_MAPPING = {$/;" v +IMPORT_NAME Include/opcode.h 69;" d +IMPORT_STAR_WARNING Python/symtable.c 33;" d file: +IM_A_TEAPOT Lib/http/__init__.py /^ IM_A_TEAPOT = (418, 'I\\'m a Teapot',$/;" v class:HTTPStatus +IM_A_TEAPOT Lib/test/test_httplib.py /^ IM_A_TEAPOT = (418, 'I\\'m a Teapot',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +IM_USED Lib/http/__init__.py /^ IM_USED = 226, 'IM Used'$/;" v class:HTTPStatus +IM_USED Lib/test/test_httplib.py /^ IM_USED = 226, 'IM Used'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +IMapIterator Lib/multiprocessing/pool.py /^class IMapIterator(object):$/;" c +IMapUnorderedIterator Lib/multiprocessing/pool.py /^class IMapUnorderedIterator(IMapIterator):$/;" c +IN Lib/test/test_range.py /^ class IN:$/;" c function:RangeTest.test_user_index_method +INADDR_NONE Modules/socketmodule.c 542;" d file: +INAPPROPRIATE_FALLBACK Lib/ssl.py /^ INAPPROPRIATE_FALLBACK = 86$/;" v class:_TLSAlertType +INAPPROPRIATE_FALLBACK Lib/test/test_ssl.py /^ INAPPROPRIATE_FALLBACK = 86$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +INBYTE1 Modules/cjkcodecs/cjkcodecs.h 145;" d +INBYTE2 Modules/cjkcodecs/cjkcodecs.h 146;" d +INBYTE3 Modules/cjkcodecs/cjkcodecs.h 147;" d +INBYTE4 Modules/cjkcodecs/cjkcodecs.h 148;" d +INCHAR1 Modules/cjkcodecs/cjkcodecs.h 150;" d +INCHAR2 Modules/cjkcodecs/cjkcodecs.h 151;" d +INCLEN Modules/_csv.c 1077;" d file: +INCLEN Modules/_csv.c 1157;" d file: +INCLUDE_CPYTHON Tools/c-analyzer/cpython/_capi.py /^INCLUDE_CPYTHON = os.path.join(INCLUDE_ROOT, 'cpython')$/;" v +INCLUDE_DIRS Tools/c-analyzer/cpython/__init__.py /^INCLUDE_DIRS = [os.path.join(REPO_ROOT, name) for name in [$/;" v +INCLUDE_INTERNAL Tools/c-analyzer/cpython/_capi.py /^INCLUDE_INTERNAL = os.path.join(INCLUDE_ROOT, 'internal')$/;" v +INCLUDE_ROOT Tools/c-analyzer/cpython/_capi.py /^INCLUDE_ROOT = os.path.join(REPO_ROOT, 'Include')$/;" v +INCLUDE_TIMESTAMP Mac/BuildScript/build-installer.py /^INCLUDE_TIMESTAMP = 1$/;" v +INCOMPLETE_CHARACTER Python/fileutils.c /^static const size_t INCOMPLETE_CHARACTER = (size_t)-2;$/;" v file: +INCORRECT_PASSWD Lib/test/test_urllib2_localnet.py /^ INCORRECT_PASSWD = "Incorrect"$/;" v class:BasicAuthTests +INCREASING Lib/tkinter/tix.py /^INCREASING = 'increasing'$/;" v +INCREMENT_ADAPTIVE_COUNTER Python/ceval_macros.h 301;" d +INDENT Include/internal/pycore_token.h 21;" d +INDENT Lib/lib2to3/pgen2/token.py /^INDENT = 5$/;" v +INDENT Lib/token.py /^INDENT = 5$/;" v +INDEX2SIZE Include/internal/pycore_obmalloc.h 140;" d +INDEX_PATTERN Lib/logging/config.py /^ INDEX_PATTERN = re.compile(r'^\\[\\s*(\\w+)\\s*\\]\\s*')$/;" v class:BaseConfigurator +INDEX_SIZE_ERR Lib/xml/dom/__init__.py /^INDEX_SIZE_ERR = 1$/;" v +INDIRECT Lib/inspect.py /^ INDIRECT = 0x100 | STRIDES$/;" v class:BufferFlags +INET_ADDRSTRLEN Modules/socketmodule.c 235;" d file: +INEXACT Modules/_decimal/_decimal.c 164;" d file: +INF Lib/test/datetimetester.py /^INF = float("inf")$/;" v +INF Lib/test/test_capi/test_getargs.py /^INF = float('inf')$/;" v +INF Lib/test/test_cmath.py /^INF = float('inf')$/;" v +INF Lib/test/test_complex.py /^INF = float("inf")$/;" v +INF Lib/test/test_float.py /^INF = float("inf")$/;" v +INF Lib/test/test_json/test_enum.py /^INF = float('inf')$/;" v +INF Lib/test/test_math.py /^INF = float('inf')$/;" v +INF Modules/cmathmodule.c 152;" d file: +INFINITE Lib/asyncio/windows_events.py /^INFINITE = _winapi.INFINITE$/;" v +INFINITY Lib/json/encoder.py /^INFINITY = float('inf')$/;" v +INFO Lib/logging/__init__.py /^INFO = 20$/;" v +INFO Lib/multiprocessing/util.py /^INFO = 20$/;" v +INFO Lib/tkinter/messagebox.py /^INFO = "info"$/;" v +INFO Tools/c-analyzer/distutils/log.py /^INFO = 2$/;" v +INIT Lib/multiprocessing/pool.py /^INIT = "INIT"$/;" v +INITFUNC Modules/posixmodule.c /^INITFUNC(void)$/;" f +INITFUNC Modules/posixmodule.c 515;" d file: +INITFUNC Modules/posixmodule.c 519;" d file: +INITIAL Lib/multiprocessing/managers.py /^ INITIAL = 0$/;" v class:State +INITIALIZED Lib/asyncio/runners.py /^ INITIALIZED = "initialized"$/;" v class:_State +INITIALIZED_COUNT_METHODDEF Modules/_testsinglephase.c 228;" d file: +INITIALIZER_STATUS Lib/test/test_concurrent_futures/test_init.py /^INITIALIZER_STATUS = 'uninitialized'$/;" v +INITIAL_ARENA_OBJECTS Include/internal/pycore_obmalloc.h 475;" d +INITIAL_INSTR_SEQUENCE_LABELS_MAP_SIZE Python/compile.c 168;" d file: +INITIAL_INSTR_SEQUENCE_SIZE Python/compile.c 167;" d file: +INITIAL_NESTING_DEPTH Tools/peg_generator/scripts/find_max_nesting.py /^INITIAL_NESTING_DEPTH = 10$/;" v +INITTAB Python/import.c 57;" d file: +INIT_ALIAS Objects/exceptions.c 3795;" d file: +INIT_ALIAS Objects/exceptions.c 3809;" d file: +INIT_ATTS_SIZE Modules/expat/xmlparse.c 241;" d file: +INIT_ATTS_VERSION Modules/expat/xmlparse.c 242;" d file: +INIT_BASIC_STATIC_TYPE Modules/_testcapimodule.c 2529;" d file: +INIT_BASIC_STATIC_TYPE Modules/_testcapimodule.c 2537;" d file: +INIT_BLOCK_SIZE Modules/expat/xmlparse.c 243;" d file: +INIT_BUFFER_SIZE Modules/expat/xmlparse.c 244;" d file: +INIT_DATA_BUF_SIZE Modules/expat/xmlparse.c 240;" d file: +INIT_ENCODING Modules/expat/xmltok.h /^} INIT_ENCODING;$/;" t typeref:struct:__anon619 +INIT_ENC_INDEX Modules/expat/xmltok.c 1526;" d file: +INIT_HEAD Modules/gcmodule.c 142;" d file: +INIT_HEAD Modules/gcmodule.c 155;" d file: +INIT_ID Include/internal/pycore_runtime_init.h 176;" d +INIT_LOOPS Lib/test/test_embed.py /^INIT_LOOPS = 4$/;" v +INIT_LOOPS Programs/_testembed.c 32;" d file: +INIT_PARENT_STACK_SIZE Modules/_elementtree.c 2298;" d file: +INIT_POWER Modules/expat/xmlparse.c 7004;" d file: +INIT_SCAFFOLD_ELEMENTS Modules/expat/xmlparse.c 319;" d file: +INIT_SPECIAL_VALUES Modules/cmathmodule.c 1247;" d file: +INIT_STR Include/internal/pycore_runtime_init.h 174;" d +INIT_TAG_BUF_SIZE Modules/expat/xmlparse.c 239;" d file: +INLINE_CACHE_ENTRIES_BINARY_OP Include/internal/pycore_code.h 33;" d +INLINE_CACHE_ENTRIES_BINARY_SUBSCR Include/internal/pycore_code.h 52;" d +INLINE_CACHE_ENTRIES_CALL Include/internal/pycore_code.h 84;" d +INLINE_CACHE_ENTRIES_COMPARE_OP Include/internal/pycore_code.h 46;" d +INLINE_CACHE_ENTRIES_FOR_ITER Include/internal/pycore_code.h 96;" d +INLINE_CACHE_ENTRIES_LOAD_ATTR Include/internal/pycore_code.h 75;" d +INLINE_CACHE_ENTRIES_LOAD_GLOBAL Include/internal/pycore_code.h 27;" d +INLINE_CACHE_ENTRIES_LOAD_SUPER_ATTR Include/internal/pycore_code.h 58;" d +INLINE_CACHE_ENTRIES_SEND Include/internal/pycore_code.h 102;" d +INLINE_CACHE_ENTRIES_STORE_ATTR Include/internal/pycore_code.h 77;" d +INLINE_CACHE_ENTRIES_STORE_SUBSCR Include/internal/pycore_code.h 90;" d +INLINE_CACHE_ENTRIES_UNPACK_SEQUENCE Include/internal/pycore_code.h 39;" d +INNER_CONTENT_TYPE Lib/ssl.py /^ INNER_CONTENT_TYPE = 0x101$/;" v class:_TLSContentType +INNER_CONTENT_TYPE Lib/test/test_ssl.py /^ INNER_CONTENT_TYPE = 0x101$/;" v class:TestEnumerations.test_tlscontenttype.Checked_TLSContentType +INPLACE_BINOP Objects/abstract.c 1230;" d file: +INSERT Lib/test/test_sqlite3/test_transactions.py /^ INSERT = "insert into t values(1)"$/;" v class:IsolationLevelFromInit +INSERT Lib/tkinter/constants.py /^INSERT='insert'$/;" v +INSERTINT PC/msvcrtmodule.c 579;" d file: +INSERTINT PC/msvcrtmodule.c 625;" d file: +INSERTPTR PC/msvcrtmodule.c 585;" d file: +INSERTPTR PC/msvcrtmodule.c 626;" d file: +INSERTSTR PC/msvcrtmodule.c 591;" d file: +INSERTSTR PC/msvcrtmodule.c 640;" d file: +INSIDE Lib/tkinter/constants.py /^INSIDE='inside'$/;" v +INSIDE_FSTRING Parser/tokenizer.c 41;" d file: +INSIDE_FSTRING_EXPR Parser/tokenizer.c 42;" d file: +INST Lib/pickle.py /^INST = b'i' # build & push class instance$/;" v +INST Modules/_pickle.c /^ INST = 'i',$/;" e enum:opcode file: +INSTALLED_PYTHON PC/launcher.c /^} INSTALLED_PYTHON;$/;" t typeref:struct:__anon286 file: +INSTALL_CYGWIN PCbuild/prepare_libffi.bat /^if \/I "%1"=="--install-cygwin" (set INSTALL_CYGWIN=1) & shift & goto :CheckOpts$/;" v +INSTALL_CYGWIN PCbuild/prepare_libffi.bat /^set INSTALL_CYGWIN=$/;" v +INSTRUCTION_START Python/ceval_macros.h 63;" d +INSTRUCTION_START Python/ceval_macros.h 71;" d +INSTRUMENTED_CALL Include/opcode.h 128;" d +INSTRUMENTED_CALL_FUNCTION_EX Include/opcode.h 131;" d +INSTRUMENTED_END_FOR Include/opcode.h 138;" d +INSTRUMENTED_END_SEND Include/opcode.h 139;" d +INSTRUMENTED_EVENTS Lib/test/test_monitoring.py /^INSTRUMENTED_EVENTS = [$/;" v +INSTRUMENTED_FOR_ITER Include/opcode.h 135;" d +INSTRUMENTED_INSTRUCTION Include/opcode.h 140;" d +INSTRUMENTED_JUMP Python/ceval_macros.h 335;" d +INSTRUMENTED_JUMP_BACKWARD Include/opcode.h 133;" d +INSTRUMENTED_JUMP_FORWARD Include/opcode.h 132;" d +INSTRUMENTED_LINE Include/opcode.h 141;" d +INSTRUMENTED_LOAD_SUPER_ATTR Include/opcode.h 124;" d +INSTRUMENTED_OPCODES Python/instrumentation.c /^static const uint8_t INSTRUMENTED_OPCODES[256] = {$/;" v file: +INSTRUMENTED_POP_JUMP_IF_FALSE Include/opcode.h 136;" d +INSTRUMENTED_POP_JUMP_IF_NONE Include/opcode.h 125;" d +INSTRUMENTED_POP_JUMP_IF_NOT_NONE Include/opcode.h 126;" d +INSTRUMENTED_POP_JUMP_IF_TRUE Include/opcode.h 137;" d +INSTRUMENTED_RESUME Include/opcode.h 127;" d +INSTRUMENTED_RETURN_CONST Include/opcode.h 134;" d +INSTRUMENTED_RETURN_VALUE Include/opcode.h 129;" d +INSTRUMENTED_YIELD_VALUE Include/opcode.h 130;" d +INSTR_FMT_IB Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IBC Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IBC00 Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IBC000 Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IBC00000000 Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IBIB Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IX Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IXC Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_IXC000 Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" e enum:InstructionFormat +INSTR_FMT_PREFIX Tools/cases_generator/generate_cases.py /^INSTR_FMT_PREFIX = "INSTR_FMT_"$/;" v +INSTR_OFFSET Python/ceval_macros.h 141;" d +INSTR_SEQUENCE Python/compile.c 426;" d file: +INSTR_SET_OP0 Python/flowgraph.c 61;" d file: +INSTR_SET_OP1 Python/flowgraph.c 52;" d file: +INSUFFICIENT_SECURITY Lib/ssl.py /^ INSUFFICIENT_SECURITY = 71$/;" v class:_TLSAlertType +INSUFFICIENT_SECURITY Lib/test/test_ssl.py /^ INSUFFICIENT_SECURITY = 71$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +INSUFFICIENT_STORAGE Lib/http/__init__.py /^ INSUFFICIENT_STORAGE = 507, 'Insufficient Storage'$/;" v class:HTTPStatus +INSUFFICIENT_STORAGE Lib/test/test_httplib.py /^ INSUFFICIENT_STORAGE = 507, 'Insufficient Storage'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +INT Lib/ctypes/wintypes.py /^INT = ctypes.c_int$/;" v +INT Lib/pickle.py /^INT = b'I' # push integer or bool; decimal string argument$/;" v +INT Lib/test/test_buffer.py /^ class INT(object):$/;" c function:TestBufferProtocol.test_memoryview_struct_module +INT Modules/_pickle.c /^ INT = 'I',$/;" e enum:opcode file: +INT Modules/_pickle.c 43;" d file: +INT Tools/build/umarshal.py /^ INT = ord('i')$/;" v class:Type +INT64 Tools/build/umarshal.py /^ INT64 = ord('I')$/;" v class:Type +INT64_FMT_UNIT Modules/selectmodule.c 1780;" d file: +INT64_FMT_UNIT Modules/selectmodule.c 1783;" d file: +INT64_FMT_UNIT Modules/selectmodule.c 1786;" d file: +INT64_FMT_UNIT Modules/selectmodule.c 1788;" d file: +INTEGER Lib/tkinter/tix.py /^INTEGER = 'integer'$/;" v +INTERIOR_BITS Include/internal/pycore_obmalloc.h 581;" d +INTERIOR_BITS Include/internal/pycore_obmalloc.h 583;" d +INTERNAL Tools/build/generate_global_objects.py /^INTERNAL = os.path.join(ROOT, 'Include', 'internal')$/;" v +INTERNAL_ERROR Lib/ssl.py /^ INTERNAL_ERROR = 80$/;" v class:_TLSAlertType +INTERNAL_ERROR Lib/test/test_ssl.py /^ INTERNAL_ERROR = 80$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +INTERNAL_ERROR Lib/xmlrpc/client.py /^INTERNAL_ERROR = -32603$/;" v +INTERNAL_ERROR_INT Modules/_decimal/_decimal.c 269;" d file: +INTERNAL_ERROR_PTR Modules/_decimal/_decimal.c 278;" d file: +INTERNAL_PREFIX Tools/c-analyzer/cpython/_builtin_types.py /^INTERNAL_PREFIX = os.path.join('Include', 'internal', '')$/;" v +INTERNAL_SERVER_ERROR Lib/http/__init__.py /^ INTERNAL_SERVER_ERROR = (500, 'Internal Server Error',$/;" v class:HTTPStatus +INTERNAL_SERVER_ERROR Lib/test/test_httplib.py /^ INTERNAL_SERVER_ERROR = (500, 'Internal Server Error',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +INTERNED Tools/build/umarshal.py /^ INTERNED = ord('t')$/;" v class:Type +INTERNET_TIMEOUT Lib/test/support/__init__.py /^INTERNET_TIMEOUT = 60.0$/;" v +INTERN_NUMRUNS Lib/test/test_sys.py /^INTERN_NUMRUNS = 0$/;" v +INTERPRETER_EXIT Include/opcode.h 14;" d +INTERPRETER_TRAMPOLINE_CODEDEF Python/pylifecycle.c /^static const _PyShimCodeDef INTERPRETER_TRAMPOLINE_CODEDEF = {$/;" v file: +INTERPRETER_TRAMPOLINE_INSTRUCTIONS Python/pylifecycle.c /^static const uint8_t INTERPRETER_TRAMPOLINE_INSTRUCTIONS[] = {$/;" v file: +INTERRUPTED Lib/test/libregrtest/runtest.py /^ INTERRUPTED = "INTERRUPTED"$/;" v class:State +INTPTRT_FMT_UNIT Modules/selectmodule.c 1763;" d file: +INTPTRT_FMT_UNIT Modules/selectmodule.c 1768;" d file: +INTPTRT_FMT_UNIT Modules/selectmodule.c 1773;" d file: +INTRINSIC_1_INVALID Include/internal/pycore_intrinsics.h 4;" d +INTRINSIC_2_INVALID Include/internal/pycore_intrinsics.h 21;" d +INTRINSIC_ASYNC_GEN_WRAP Include/internal/pycore_intrinsics.h 8;" d +INTRINSIC_IMPORT_STAR Include/internal/pycore_intrinsics.h 6;" d +INTRINSIC_LIST_TO_TUPLE Include/internal/pycore_intrinsics.h 10;" d +INTRINSIC_PARAMSPEC Include/internal/pycore_intrinsics.h 12;" d +INTRINSIC_PREP_RERAISE_STAR Include/internal/pycore_intrinsics.h 22;" d +INTRINSIC_PRINT Include/internal/pycore_intrinsics.h 5;" d +INTRINSIC_SET_FUNCTION_TYPE_PARAMS Include/internal/pycore_intrinsics.h 25;" d +INTRINSIC_STOPITERATION_ERROR Include/internal/pycore_intrinsics.h 7;" d +INTRINSIC_SUBSCRIPT_GENERIC Include/internal/pycore_intrinsics.h 14;" d +INTRINSIC_TYPEALIAS Include/internal/pycore_intrinsics.h 15;" d +INTRINSIC_TYPEVAR Include/internal/pycore_intrinsics.h 11;" d +INTRINSIC_TYPEVARTUPLE Include/internal/pycore_intrinsics.h 13;" d +INTRINSIC_TYPEVAR_WITH_BOUND Include/internal/pycore_intrinsics.h 23;" d +INTRINSIC_TYPEVAR_WITH_CONSTRAINTS Include/internal/pycore_intrinsics.h 24;" d +INTRINSIC_UNARY_POSITIVE Include/internal/pycore_intrinsics.h 9;" d +INT_ALIGN Modules/_struct.c 88;" d file: +INT_AS_INTEGER_RATIO_METHODDEF Objects/clinic/longobject.c.h 245;" d +INT_BIT_COUNT_METHODDEF Objects/clinic/longobject.c.h 218;" d +INT_BIT_LENGTH_METHODDEF Objects/clinic/longobject.c.h 193;" d +INT_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 613;" d +INT_FROM_BYTES_METHODDEF Objects/clinic/longobject.c.h 392;" d +INT_GETTER Modules/pyexpat.c 1293;" d file: +INT_GETTER Modules/pyexpat.c 1307;" d file: +INT_HANDLER Modules/pyexpat.c 463;" d file: +INT_IS_INTEGER_METHODDEF Objects/clinic/longobject.c.h 476;" d +INT_MAX Include/pyport.h 559;" d +INT_TO_BYTES_METHODDEF Objects/clinic/longobject.c.h 278;" d +INT_TYPE_CONVERTER_FUNC Modules/_lzmamodule.c 201;" d file: +INT_TYPE_CONVERTER_FUNC Modules/_lzmamodule.c 224;" d file: +INT___FORMAT___METHODDEF Objects/clinic/longobject.c.h 94;" d +INT___GETNEWARGS___METHODDEF Objects/clinic/longobject.c.h 76;" d +INT___ROUND___METHODDEF Objects/clinic/longobject.c.h 128;" d +INT___SIZEOF___METHODDEF Objects/clinic/longobject.c.h 160;" d +INUSE_ATTRIBUTE_ERR Lib/xml/dom/__init__.py /^INUSE_ATTRIBUTE_ERR = 10$/;" v +INVALID_ACCESS_ERR Lib/xml/dom/__init__.py /^INVALID_ACCESS_ERR = 15$/;" v +INVALID_BINARY_PLISTS Lib/test/test_plistlib.py /^INVALID_BINARY_PLISTS = [$/;" v +INVALID_CASES Modules/expat/xmltok_impl.c 1813;" d file: +INVALID_CASES Modules/expat/xmltok_impl.c 59;" d file: +INVALID_CHARACTER_ERR Lib/xml/dom/__init__.py /^INVALID_CHARACTER_ERR = 5$/;" v +INVALID_DATA Lib/test/test_audioop.py /^INVALID_DATA = [$/;" v +INVALID_ENCODING_CHAR Lib/xmlrpc/client.py /^INVALID_ENCODING_CHAR = -32702$/;" v +INVALID_FD Include/internal/pycore_signal.h 35;" d +INVALID_FILES Lib/test/test_tomllib/test_data.py /^INVALID_FILES = tuple((DATA_DIR \/ "invalid").glob("**\/*.toml"))$/;" v +INVALID_LEAD_CASE Modules/expat/xmltok_impl.c 48;" d file: +INVALID_METHOD_PARAMS Lib/xmlrpc/client.py /^INVALID_METHOD_PARAMS = -32602$/;" v +INVALID_MODIFICATION_ERR Lib/xml/dom/__init__.py /^INVALID_MODIFICATION_ERR = 13$/;" v +INVALID_NAME Lib/test/test_linecache.py /^INVALID_NAME = '!@$)(!@#_1'$/;" v +INVALID_NFRAME Lib/test/test_tracemalloc.py /^INVALID_NFRAME = (-1, 2**30)$/;" v +INVALID_SIGNALDICT_ERROR_MSG Modules/_decimal/_decimal.c /^static const char *INVALID_SIGNALDICT_ERROR_MSG = "invalid signal dict";$/;" v file: +INVALID_SOCKET Modules/_ssl.c 144;" d file: +INVALID_SOCKET Modules/socketmodule.c 538;" d file: +INVALID_STATE_ERR Lib/xml/dom/__init__.py /^INVALID_STATE_ERR = 11$/;" v +INVALID_UNDERSCORE_LITERALS Lib/test/test_grammar.py /^INVALID_UNDERSCORE_LITERALS = [$/;" v +INVALID_VERSION_CHECK Parser/pegen.h /^INVALID_VERSION_CHECK(Parser *p, int version, char *msg, void *node)$/;" f +INVALID_XMLRPC Lib/xmlrpc/client.py /^INVALID_XMLRPC = -32600$/;" v +INV_P1P2_MOD_P3 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t INV_P1P2_MOD_P3 = 287064143708160ULL;$/;" v +INV_P1P2_MOD_P3 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t INV_P1P2_MOD_P3 = 54UL;$/;" v +INV_P1_MOD_P2 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t INV_P1_MOD_P2 = 18446744055098026669ULL;$/;" v +INV_P1_MOD_P2 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t INV_P1_MOD_P2 = 2013265901UL;$/;" v +IN_EXPERIMENTAL Modules/getaddrinfo.c 128;" d file: +IN_FIELD Modules/_csv.c /^ START_RECORD, START_FIELD, ESCAPED_CHAR, IN_FIELD,$/;" e enum:__anon621 file: +IN_LOOPBACKNET Modules/getaddrinfo.c 132;" d file: +IN_MULTICAST Modules/getaddrinfo.c 124;" d file: +IN_QUOTED_FIELD Modules/_csv.c /^ IN_QUOTED_FIELD, ESCAPE_IN_QUOTED_FIELD, QUOTE_IN_QUOTED_FIELD,$/;" e enum:__anon621 file: +IO Lib/typing.py /^ IO = IO$/;" v class:io +IO Lib/typing.py /^class IO(Generic[AnyStr]):$/;" c +IOBASE_EMITS_UNRAISABLE Lib/test/test_io.py /^IOBASE_EMITS_UNRAISABLE = (support.Py_DEBUG or sys.flags.dev_mode)$/;" v +IOBase Lib/_pyio.py /^class IOBase(metaclass=abc.ABCMeta):$/;" c +IOBase Lib/io.py /^class IOBase(_io._IOBase, metaclass=abc.ABCMeta):$/;" c +IOBinding Lib/idlelib/iomenu.py /^class IOBinding:$/;" c +IOBindingTest Lib/idlelib/idle_test/test_iomenu.py /^class IOBindingTest(unittest.TestCase):$/;" c +IOCTL_BUFSZ Modules/fcntlmodule.c 151;" d file: +IOCTL_BUFSZ Modules/fcntlmodule.c 269;" d file: +IOTest Lib/test/test_io.py /^class IOTest(unittest.TestCase):$/;" c +IOTest Lib/test/test_xml_etree.py /^class IOTest(unittest.TestCase):$/;" c +IOTests Lib/test/test_typing.py /^class IOTests(BaseTestCase):$/;" c +IO_REPARSE_TAG_APPEXECLINK Modules/_stat.c 44;" d file: +IP Lib/telnetlib.py /^IP = bytes([244]) # Interrupt process$/;" v +IPPROTO_AH Modules/socketmodule.c 301;" d file: +IPPROTO_CBT Modules/socketmodule.c 309;" d file: +IPPROTO_DSTOPTS Modules/socketmodule.c 304;" d file: +IPPROTO_EGP Modules/socketmodule.c 305;" d file: +IPPROTO_ESP Modules/socketmodule.c 300;" d file: +IPPROTO_FRAGMENT Modules/socketmodule.c 299;" d file: +IPPROTO_GGP Modules/socketmodule.c 287;" d file: +IPPROTO_HOPOPTS Modules/socketmodule.c 295;" d file: +IPPROTO_ICLFXBM Modules/socketmodule.c 307;" d file: +IPPROTO_ICMP Modules/socketmodule.c 285;" d file: +IPPROTO_ICMPV6 Modules/socketmodule.c 302;" d file: +IPPROTO_IDP Modules/socketmodule.c 291;" d file: +IPPROTO_IGMP Modules/socketmodule.c 286;" d file: +IPPROTO_IGP Modules/socketmodule.c 310;" d file: +IPPROTO_IPV4 Modules/socketmodule.c 296;" d file: +IPPROTO_IPV6 Modules/socketmodule.c 297;" d file: +IPPROTO_L2TP Modules/socketmodule.c 313;" d file: +IPPROTO_MAX Modules/socketmodule.c 294;" d file: +IPPROTO_ND Modules/socketmodule.c 292;" d file: +IPPROTO_NONE Modules/socketmodule.c 303;" d file: +IPPROTO_PGM Modules/socketmodule.c 312;" d file: +IPPROTO_PIM Modules/socketmodule.c 306;" d file: +IPPROTO_PUP Modules/socketmodule.c 289;" d file: +IPPROTO_RAW Modules/socketmodule.c 293;" d file: +IPPROTO_RDP Modules/socketmodule.c 311;" d file: +IPPROTO_ROUTING Modules/socketmodule.c 298;" d file: +IPPROTO_SCTP Modules/socketmodule.c 314;" d file: +IPPROTO_SCTP Modules/socketmodule.h 208;" d +IPPROTO_ST Modules/socketmodule.c 308;" d file: +IPPROTO_TCP Modules/socketmodule.c 288;" d file: +IPPROTO_UDP Modules/socketmodule.c 290;" d file: +IPV4LENGTH Lib/ipaddress.py /^IPV4LENGTH = 32$/;" v +IPV4_RE Lib/http/cookiejar.py /^IPV4_RE = re.compile(r"\\.\\d+$", re.ASCII)$/;" v +IPV6LENGTH Lib/ipaddress.py /^IPV6LENGTH = 128$/;" v +IPV6_ENABLED Lib/test/support/socket_helper.py /^IPV6_ENABLED = _is_ipv6_enabled()$/;" v +IP_BASE_SIZE PC/launcher.c 193;" d file: +IP_SIZE PC/launcher.c 195;" d file: +IP_VERSION_SIZE PC/launcher.c 194;" d file: +IPv4Address Lib/ipaddress.py /^class IPv4Address(_BaseV4, _BaseAddress):$/;" c +IPv4Interface Lib/ipaddress.py /^class IPv4Interface(IPv4Address):$/;" c +IPv4Network Lib/ipaddress.py /^class IPv4Network(_BaseV4, _BaseNetwork):$/;" c +IPv6Address Lib/ipaddress.py /^class IPv6Address(_BaseV6, _BaseAddress):$/;" c +IPv6Interface Lib/ipaddress.py /^class IPv6Interface(IPv6Address):$/;" c +IPv6Network Lib/ipaddress.py /^class IPv6Network(_BaseV6, _BaseNetwork):$/;" c +IPv6SysLogHandlerTest Lib/test/test_logging.py /^class IPv6SysLogHandlerTest(SysLogHandlerTest):$/;" c +IPv7Address Lib/test/test_ipaddress.py /^ class IPv7Address(ipaddress.IPv6Address):$/;" c function:IpaddrUnitTest.testSummarizing +IS Lib/test/test_ctypes/test_structures.py /^ class IS(Structure):$/;" c function:StructureTestCase.test_struct_alignment +ISEOF Include/internal/pycore_token.h 90;" d +ISEOF Lib/lib2to3/pgen2/token.py /^def ISEOF(x):$/;" f +ISEOF Lib/token.py /^def ISEOF(x):$/;" f +ISLT Objects/listobject.c 1141;" d file: +ISLT Objects/listobject.c 2511;" d file: +ISMINE Modules/_multiprocessing/semaphore.c 42;" d file: +ISNONTERMINAL Include/internal/pycore_token.h 89;" d +ISNONTERMINAL Lib/lib2to3/pgen2/token.py /^def ISNONTERMINAL(x):$/;" f +ISNONTERMINAL Lib/token.py /^def ISNONTERMINAL(x):$/;" f +ISO2022_CODEC Modules/cjkcodecs/_codecs_iso2022.c 1129;" d file: +ISO2022_CONFIG Modules/cjkcodecs/_codecs_iso2022.c 114;" d file: +ISO8859_7_DECODE Modules/cjkcodecs/_codecs_iso2022.c 400;" d file: +ISOLATED Lib/test/test_import/__init__.py /^ ISOLATED = dict($/;" v class:SubinterpImportTests +ISOTPTest Lib/test/test_socket.py /^class ISOTPTest(unittest.TestCase):$/;" c +ISO_8859_1_ENC Modules/expat/xmltok.c /^ ISO_8859_1_ENC = 0,$/;" e enum:__anon604 file: +ISO_DATE_RE Lib/http/cookiejar.py /^ISO_DATE_RE = re.compile($/;" v +ISPEED Lib/tty.py /^ISPEED = 4$/;" v +ISSTRINGLIT Include/internal/pycore_token.h 95;" d +ISSUE_21872_DAT Lib/test/test_lzma.py /^ISSUE_21872_DAT = ($/;" v +ISTERMINAL Include/internal/pycore_token.h 88;" d +ISTERMINAL Lib/lib2to3/pgen2/token.py /^def ISTERMINAL(x):$/;" f +ISTERMINAL Lib/token.py /^def ISTERMINAL(x):$/;" f +ISWHITESPACE Include/internal/pycore_token.h 91;" d +IS_64BIT Lib/test/test_hash.py /^IS_64BIT = sys.maxsize > 2**32$/;" v +IS_ALIAS Modules/unicodedata.c 1050;" d file: +IS_ARRAY_NODE Python/hamt.c 278;" d file: +IS_ASSEMBLER_OPCODE Include/internal/pycore_opcode_utils.h 36;" d +IS_BACKWARDS_JUMP_OPCODE Include/internal/pycore_opcode_utils.h 41;" d +IS_BASE64 Objects/unicodeobject.c 4142;" d file: +IS_BASE64 Objects/unicodeobject.c 4528;" d file: +IS_BITMAP_NODE Python/hamt.c 279;" d file: +IS_BLOCK_PUSH_OPCODE Include/internal/pycore_opcode_utils.h 23;" d +IS_BYTE_FORMAT Objects/memoryobject.c 1183;" d file: +IS_CHARACTER_JUNK Lib/difflib.py /^def IS_CHARACTER_JUNK(ch, ws=" \\t"):$/;" f +IS_CLOSED Modules/_io/bufferedio.c 356;" d file: +IS_COLLISION_NODE Python/hamt.c 280;" d file: +IS_CONTINUATION_BYTE Objects/stringlib/codecs.h 20;" d +IS_END Python/fileutils.c 2398;" d file: +IS_END Python/fileutils.c 2504;" d file: +IS_END_OF_FORMAT Python/getargs.c 1563;" d file: +IS_ESCEND Modules/cjkcodecs/_codecs_iso2022.c 84;" d file: +IS_INTRESOURCE Modules/_ctypes/_ctypes.c 120;" d file: +IS_INVALID_CHAR Modules/expat/xmltok.c 272;" d file: +IS_INVALID_CHAR Modules/expat/xmltok.c 276;" d file: +IS_INVALID_CHAR Modules/expat/xmltok.c 316;" d file: +IS_INVALID_CHAR Modules/expat/xmltok.c 945;" d file: +IS_INVALID_CHAR Modules/expat/xmltok_impl.c 45;" d file: +IS_ISO2022ESC Modules/cjkcodecs/_codecs_iso2022.c 85;" d file: +IS_JUMP_OPCODE Include/internal/pycore_opcode_utils.h 20;" d +IS_LABEL Python/compile.c 111;" d file: +IS_LABEL Python/flowgraph.c 36;" d file: +IS_LINE_JUNK Lib/difflib.py /^def IS_LINE_JUNK(line, pat=re.compile(r"\\s*(?:#\\s*)?$").match):$/;" f +IS_LITTLE_ENDIAN Modules/_sqlite/util.c 138;" d file: +IS_LITTLE_ENDIAN Modules/_sqlite/util.c 140;" d file: +IS_NAMED_SEQ Modules/unicodedata.c 1051;" d file: +IS_NAME_CHAR Modules/expat/xmltok.c 269;" d file: +IS_NAME_CHAR Modules/expat/xmltok.c 312;" d file: +IS_NAME_CHAR Modules/expat/xmltok.c 928;" d file: +IS_NAME_CHAR Modules/expat/xmltok.c 941;" d file: +IS_NAME_CHAR_MINBPC Modules/expat/xmltok.c 281;" d file: +IS_NAME_CHAR_MINBPC Modules/expat/xmltok.c 286;" d file: +IS_NAME_CHAR_MINBPC Modules/expat/xmltok.c 313;" d file: +IS_NAME_CHAR_MINBPC Modules/expat/xmltok.c 929;" d file: +IS_NAME_CHAR_MINBPC Modules/expat/xmltok.c 942;" d file: +IS_NMSTRT_CHAR Modules/expat/xmltok.c 270;" d file: +IS_NMSTRT_CHAR Modules/expat/xmltok.c 314;" d file: +IS_NMSTRT_CHAR Modules/expat/xmltok.c 930;" d file: +IS_NMSTRT_CHAR Modules/expat/xmltok.c 943;" d file: +IS_NMSTRT_CHAR_MINBPC Modules/expat/xmltok.c 283;" d file: +IS_NMSTRT_CHAR_MINBPC Modules/expat/xmltok.c 287;" d file: +IS_NMSTRT_CHAR_MINBPC Modules/expat/xmltok.c 315;" d file: +IS_NMSTRT_CHAR_MINBPC Modules/expat/xmltok.c 931;" d file: +IS_NMSTRT_CHAR_MINBPC Modules/expat/xmltok.c 944;" d file: +IS_OP Include/opcode.h 75;" d +IS_PASS_BY_REF Modules/_ctypes/callproc.c 1139;" d file: +IS_PSEUDO_OPCODE Include/opcode.h 266;" d +IS_SCOPE_EXIT_OPCODE Include/internal/pycore_opcode_utils.h 52;" d +IS_SELECTABLE Modules/socketmodule.c 617;" d file: +IS_SELECTABLE Modules/socketmodule.c 622;" d file: +IS_SEP Python/fileutils.c 2400;" d file: +IS_SEP Python/fileutils.c 2503;" d file: +IS_SIGNED Modules/_testcapimodule.c 113;" d file: +IS_SIGNED Modules/_testcapimodule.c 151;" d file: +IS_SMALL_INT Objects/longobject.c 26;" d file: +IS_SMALL_UINT Objects/longobject.c 27;" d file: +IS_SUPERINSTRUCTION_OPCODE Include/internal/pycore_opcode_utils.h 58;" d +IS_TERMINATOR_OPCODE Include/internal/pycore_opcode_utils.h 32;" d +IS_TOP_LEVEL_AWAIT Python/compile.c 84;" d file: +IS_UNCONDITIONAL_JUMP_OPCODE Include/internal/pycore_opcode_utils.h 45;" d +IS_WHITESPACE Modules/_json.c 104;" d file: +IS_WHITESPACE Python/traceback.c 595;" d file: +IS_WITHIN_OPCODE_RANGE Include/internal/pycore_opcode_utils.h 16;" d +ITALIC Lib/tkinter/font.py /^ITALIC = "italic"$/;" v +ITEM Modules/_ctypes/malloc_closure.c /^} ITEM;$/;" t typeref:union:_tagITEM file: +ITEM Objects/exceptions.c 3587;" d file: +ITEM Objects/exceptions.c 3674;" d file: +ITERATIONS Lib/test/test_buffer.py /^ ITERATIONS = 10$/;" v +ITERATIONS Lib/test/test_buffer.py /^ITERATIONS = 100$/;" v +ITERATOR_TYPE_SHARED_SLOTS Python/hamt.c 2536;" d file: +ITERTOOLS_CHAIN_FROM_ITERABLE_METHODDEF Modules/clinic/itertoolsmodule.c.h 469;" d +ITERTOOLS_TEE_METHODDEF Modules/clinic/itertoolsmodule.c.h 296;" d +ITERTOOL_PICKLE_DEPRECATION Modules/itertoolsmodule.c 98;" d file: +ITER_UNPACK_METHODDEF Modules/clinic/_struct.c.h 425;" d +IUNDERFLOW_NORMAL Parser/tokenizer.h /^ IUNDERFLOW_NORMAL,$/;" e enum:interactive_underflow_t +IUNDERFLOW_STOP Parser/tokenizer.h /^ IUNDERFLOW_STOP,$/;" e enum:interactive_underflow_t +IV Lib/test/dataclass_module_1.py /^class IV:$/;" c +IV Lib/test/dataclass_module_1_str.py /^class IV:$/;" c +IV Lib/test/dataclass_module_2.py /^class IV:$/;" c +IV Lib/test/dataclass_module_2_str.py /^class IV:$/;" c +IX Lib/test/test_range.py /^ class IX:$/;" c function:RangeTest.test_user_index_method +I_AM_A_MODULE_FOR Modules/cjkcodecs/cjkcodecs.h 509;" d +I_END Python/hamt.c /^typedef enum {I_ITEM, I_END} hamt_iter_t;$/;" e enum:__anon679 file: +I_ITEM Python/hamt.c /^typedef enum {I_ITEM, I_END} hamt_iter_t;$/;" e enum:__anon679 file: +I_get Modules/_ctypes/cfield.c /^I_get(void *ptr, Py_ssize_t size)$/;" f file: +I_get_sw Modules/_ctypes/cfield.c /^I_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +I_set Modules/_ctypes/cfield.c /^I_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +I_set_sw Modules/_ctypes/cfield.c /^I_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +Icon Lib/msilib/schema.py /^Icon = Table('Icon')$/;" v +Icon Lib/tkinter/dnd.py /^class Icon:$/;" c +Idb Lib/idlelib/debugger.py /^class Idb(bdb.Bdb):$/;" c +IdbAdapter Lib/idlelib/debugger_r.py /^class IdbAdapter:$/;" c +IdbAdapterTest Lib/idlelib/idle_test/test_debugger_r.py /^class IdbAdapterTest(unittest.TestCase):$/;" c +IdbProxy Lib/idlelib/debugger_r.py /^class IdbProxy:$/;" c +IdenticalProto Lib/test/test_typing.py /^ class IdenticalProto(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +Identified Lib/xml/dom/minidom.py /^class Identified:$/;" c +IdleConf Lib/idlelib/config.py /^class IdleConf:$/;" c +IdleConfParser Lib/idlelib/config.py /^class IdleConfParser(ConfigParser):$/;" c +IdleConfParserTest Lib/idlelib/idle_test/test_config.py /^class IdleConfParserTest(unittest.TestCase):$/;" c +IdleConfTest Lib/idlelib/idle_test/test_config.py /^class IdleConfTest(unittest.TestCase):$/;" c +IdleUserConfParser Lib/idlelib/config.py /^class IdleUserConfParser(IdleConfParser):$/;" c +IdleUserConfParserTest Lib/idlelib/idle_test/test_config.py /^class IdleUserConfParserTest(unittest.TestCase):$/;" c +If Include/internal/pycore_ast.h /^ } If;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon64 +IfExp Include/internal/pycore_ast.h /^ } IfExp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon83 +IfExp_fields Python/Python-ast.c /^static const char * const IfExp_fields[]={$/;" v file: +IfExp_kind Include/internal/pycore_ast.h /^ Lambda_kind=5, IfExp_kind=6, Dict_kind=7, Set_kind=8,$/;" e enum:_expr_kind +IfExp_type Include/internal/pycore_ast_state.h /^ PyObject *IfExp_type;$/;" m struct:ast_state +If_fields Python/Python-ast.c /^static const char * const If_fields[]={$/;" v file: +If_kind Include/internal/pycore_ast.h /^ For_kind=10, AsyncFor_kind=11, While_kind=12, If_kind=13,$/;" e enum:_stmt_kind +If_type Include/internal/pycore_ast_state.h /^ PyObject *If_type;$/;" m struct:ast_state +Ig Lib/test/test_enumerate.py /^class Ig:$/;" c +Ig Lib/test/test_heapq.py /^class Ig:$/;" c +Ig Lib/test/test_itertools.py /^class Ig:$/;" c +Ig Lib/test/test_set.py /^class Ig:$/;" c +Ignore Lib/lib2to3/pgen2/tokenize.py /^Ignore = Whitespace + any(r'\\\\\\r?\\n' + Whitespace) + maybe(Comment)$/;" v +Ignore Lib/tokenize.py /^Ignore = Whitespace + any(r'\\\\\\r?\\n' + Whitespace) + maybe(Comment)$/;" v +IgnoreEnvironmentTest Lib/test/test_cmd_line.py /^class IgnoreEnvironmentTest(unittest.TestCase):$/;" c +IgnoreGeneratorExit Lib/test/test_collections.py /^ class IgnoreGeneratorExit(AsyncGenerator):$/;" c function:TestOneTrickPonyABCs.test_AsyncGenerator +IgnoreGeneratorExit Lib/test/test_collections.py /^ class IgnoreGeneratorExit(Generator):$/;" c function:TestOneTrickPonyABCs.test_Generator +IllegalMonthError Lib/calendar.py /^class IllegalMonthError(ValueError):$/;" c +IllegalWeekdayError Lib/calendar.py /^class IllegalWeekdayError(ValueError):$/;" c +Image Lib/tkinter/__init__.py /^class Image:$/;" c +Imagnumber Lib/lib2to3/pgen2/tokenize.py /^Imagnumber = group(r'\\d+(?:_\\d+)*[jJ]', Floatnumber + r'[jJ]')$/;" v +Imagnumber Lib/tokenize.py /^Imagnumber = group(r'[0-9](?:_?[0-9])*[jJ]', Floatnumber + r'[jJ]')$/;" v +ImmortalTests Lib/test/test_builtin.py /^class ImmortalTests(unittest.TestCase):$/;" c +ImmutableLoader Lib/test/test_importlib/test_spec.py /^ class ImmutableLoader(TestLoader):$/;" c function:ModuleSpecMethodsTests.test_load_legacy_attributes_immutable +ImmutableSubclass Lib/test/test_capi/test_misc.py /^ ImmutableSubclass = _testcapi.make_immutable_type_with_base($/;" v class:CAPITest.test_immutable_type_with_mutable_base.MutableBase +Impl Lib/test/test_typing.py /^ class Impl:$/;" c function:ProtocolTests.test_runtime_checkable_generic +ImplementationDetail Doc/tools/extensions/pyspecific.py /^class ImplementationDetail(Directive):$/;" c +ImplementationTest Lib/test/test_re.py /^class ImplementationTest(unittest.TestCase):$/;" c +ImplementsGreaterThan Lib/test/test_functools.py /^ class ImplementsGreaterThan:$/;" c function:TestTotalOrdering.test_notimplemented +ImplementsGreaterThan Lib/test/test_functools.py /^ class ImplementsGreaterThan:$/;" c function:TestTotalOrdering.test_type_error_when_not_implemented +ImplementsGreaterThanEqualTo Lib/test/test_functools.py /^ class ImplementsGreaterThanEqualTo:$/;" c function:TestTotalOrdering.test_notimplemented +ImplementsGreaterThanEqualTo Lib/test/test_functools.py /^ class ImplementsGreaterThanEqualTo:$/;" c function:TestTotalOrdering.test_type_error_when_not_implemented +ImplementsHasX Lib/test/test_typing.py /^ class ImplementsHasX:$/;" c function:ProtocolTests.test_custom_subclasshook_2 +ImplementsLessThan Lib/test/test_functools.py /^ class ImplementsLessThan:$/;" c function:TestTotalOrdering.test_notimplemented +ImplementsLessThan Lib/test/test_functools.py /^ class ImplementsLessThan:$/;" c function:TestTotalOrdering.test_type_error_when_not_implemented +ImplementsLessThanEqualTo Lib/test/test_functools.py /^ class ImplementsLessThanEqualTo:$/;" c function:TestTotalOrdering.test_notimplemented +ImplementsLessThanEqualTo Lib/test/test_functools.py /^ class ImplementsLessThanEqualTo:$/;" c function:TestTotalOrdering.test_type_error_when_not_implemented +ImplicitConstructionTest Lib/test/test_decimal.py /^class ImplicitConstructionTest:$/;" c +ImplicitContextFilesTests Lib/test/test_importlib/resources/test_files.py /^class ImplicitContextFilesTests(SiteDir, unittest.TestCase):$/;" c +Import Include/internal/pycore_ast.h /^ } Import;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon72 +ImportAndCall Lib/lib2to3/fixer_util.py /^def ImportAndCall(node, results, names):$/;" f +ImportErrorTests Lib/test/test_exceptions.py /^class ImportErrorTests(unittest.TestCase):$/;" c +ImportError_clear Objects/exceptions.c /^ImportError_clear(PyImportErrorObject *self)$/;" f file: +ImportError_dealloc Objects/exceptions.c /^ImportError_dealloc(PyImportErrorObject *self)$/;" f file: +ImportError_getstate Objects/exceptions.c /^ImportError_getstate(PyImportErrorObject *self)$/;" f file: +ImportError_init Objects/exceptions.c /^ImportError_init(PyImportErrorObject *self, PyObject *args, PyObject *kwds)$/;" f file: +ImportError_members Objects/exceptions.c /^static PyMemberDef ImportError_members[] = {$/;" v file: +ImportError_methods Objects/exceptions.c /^static PyMethodDef ImportError_methods[] = {$/;" v file: +ImportError_reduce Objects/exceptions.c /^ImportError_reduce(PyImportErrorObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +ImportError_str Objects/exceptions.c /^ImportError_str(PyImportErrorObject *self)$/;" f file: +ImportError_traverse Objects/exceptions.c /^ImportError_traverse(PyImportErrorObject *self, visitproc visit, void *arg)$/;" f file: +ImportFrom Include/internal/pycore_ast.h /^ } ImportFrom;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon73 +ImportFrom_fields Python/Python-ast.c /^static const char * const ImportFrom_fields[]={$/;" v file: +ImportFrom_kind Include/internal/pycore_ast.h /^ Import_kind=21, ImportFrom_kind=22, Global_kind=23,$/;" e enum:_stmt_kind +ImportFrom_type Include/internal/pycore_ast_state.h /^ PyObject *ImportFrom_type;$/;" m struct:ast_state +ImportHooksBaseTestCase Lib/test/test_zipimport.py /^class ImportHooksBaseTestCase(unittest.TestCase):$/;" c +ImportModuleTests Lib/test/test_importlib/test_api.py /^class ImportModuleTests:$/;" c +ImportSideEffectTests Lib/test/test_site.py /^class ImportSideEffectTests(unittest.TestCase):$/;" c +ImportTest Lib/test/test_webbrowser.py /^class ImportTest(unittest.TestCase):$/;" c +ImportTests Lib/test/test_import/__init__.py /^class ImportTests(unittest.TestCase):$/;" c +ImportTests Lib/test/test_importlib/test_main.py /^class ImportTests(fixtures.DistInfoPkg, unittest.TestCase):$/;" c +ImportTracebackTests Lib/test/test_import/__init__.py /^class ImportTracebackTests(unittest.TestCase):$/;" c +Import_fields Python/Python-ast.c /^static const char * const Import_fields[]={$/;" v file: +Import_kind Include/internal/pycore_ast.h /^ Import_kind=21, ImportFrom_kind=22, Global_kind=23,$/;" e enum:_stmt_kind +Import_type Include/internal/pycore_ast_state.h /^ PyObject *Import_type;$/;" m struct:ast_state +ImportlibBootstrapTests Lib/test/test_import/__init__.py /^class ImportlibBootstrapTests(unittest.TestCase):$/;" c +ImportlibMigrationTests Lib/test/test_pkgutil.py /^class ImportlibMigrationTests(unittest.TestCase):$/;" c +ImportlibUseCache Lib/test/test_importlib/import_/test_caching.py /^class ImportlibUseCache(UseCache, unittest.TestCase):$/;" c +ImportsFixerTests Lib/test/test_lib2to3/test_fixers.py /^class ImportsFixerTests:$/;" c +ImproperConnectionState Lib/http/client.py /^class ImproperConnectionState(HTTPException):$/;" c +In Include/internal/pycore_ast.h /^ In=9, NotIn=10 } cmpop_ty;$/;" e enum:_cmpop +InMemoryPickleTests Lib/test/test_pickle.py /^ BigmemPickleTests, unittest.TestCase):$/;" c +In_singleton Include/internal/pycore_ast_state.h /^ PyObject *In_singleton;$/;" m struct:ast_state +In_type Include/internal/pycore_ast_state.h /^ PyObject *In_type;$/;" m struct:ast_state +InaccessibleSysPath Lib/test/test_importlib/test_main.py /^class InaccessibleSysPath(fixtures.OnSysPath, ffs.TestCase):$/;" c +IncludeCTypes PCbuild/build.bat /^if "%IncludeCTypes%"=="" set IncludeCTypes=true$/;" v +IncludeCTypes PCbuild/build.bat /^if "%~1"=="--no-ctypes" (set IncludeCTypes=false) & shift & goto CheckOpts$/;" v +IncludeExternals PCbuild/build.bat /^if "%IncludeExternals%"=="" set IncludeExternals=true$/;" v +IncludeExternals PCbuild/build.bat /^if "%~1"=="-E" (set IncludeExternals=false) & shift & goto CheckOpts$/;" v +IncludeExternals PCbuild/build.bat /^if "%~1"=="-e" (set IncludeExternals=true) & shift & goto CheckOpts$/;" v +IncludeLibffi PCbuild/get_externals.bat /^if "%~1"=="--no-libffi" (set IncludeLibffi=false) & shift & goto CheckOpts$/;" v +IncludeLibffiSrc PCbuild/get_externals.bat /^if "%~1"=="--libffi-src" (set IncludeLibffiSrc=true) & shift & goto CheckOpts$/;" v +IncludeLibffiSrc PCbuild/get_externals.bat /^set IncludeLibffiSrc=false$/;" v +IncludeSSL PCbuild/build.bat /^if "%IncludeSSL%"=="" set IncludeSSL=true$/;" v +IncludeSSL PCbuild/build.bat /^if "%~1"=="--no-ssl" (set IncludeSSL=false) & shift & goto CheckOpts$/;" v +IncludeSSL PCbuild/get_externals.bat /^if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts$/;" v +IncludeSSLSrc PCbuild/get_externals.bat /^if "%~1"=="--openssl-src" (set IncludeSSLSrc=true) & shift & goto CheckOpts$/;" v +IncludeSSLSrc PCbuild/get_externals.bat /^set IncludeSSLSrc=false$/;" v +IncludeTkinter PCbuild/build.bat /^if "%IncludeTkinter%"=="" set IncludeTkinter=true$/;" v +IncludeTkinter PCbuild/build.bat /^if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts$/;" v +IncludeTkinter PCbuild/get_externals.bat /^if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts$/;" v +IncludeTkinterSrc PCbuild/get_externals.bat /^if "%~1"=="--tkinter-src" (set IncludeTkinterSrc=true) & shift & goto CheckOpts$/;" v +IncludeTkinterSrc PCbuild/get_externals.bat /^set IncludeTkinterSrc=false$/;" v +IncompatibleExtensionModuleRestrictionsTests Lib/test/test_importlib/test_util.py /^class IncompatibleExtensionModuleRestrictionsTests(unittest.TestCase):$/;" c +Incomplete Lib/test/test_ctypes/test_pep3118.py /^class Incomplete(Structure):$/;" c +Incomplete Lib/test/test_enum.py /^ class Incomplete(Flag):$/;" c class:TestVerify.test_continuous.Manual +Incomplete Modules/binascii.c /^ PyObject *Incomplete;$/;" m struct:binascii_state file: +IncompleteRead Lib/http/client.py /^class IncompleteRead(HTTPException):$/;" c +IncompleteReadError Lib/asyncio/exceptions.py /^class IncompleteReadError(EOFError):$/;" c +IncrementalDecoder Lib/codecs.py /^class IncrementalDecoder(object):$/;" c +IncrementalDecoder Lib/encodings/ascii.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/base64_codec.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/big5.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/big5hkscs.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/bz2_codec.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/charmap.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp037.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1006.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1026.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1125.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1140.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1250.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1251.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1252.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1253.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1254.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1255.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1256.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1257.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp1258.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp273.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp424.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp437.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp500.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp720.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp737.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp775.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp850.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp852.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp855.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp856.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp857.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp858.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp860.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp861.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp862.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp863.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp864.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp865.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp866.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp869.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp874.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp875.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp932.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp949.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/cp950.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/euc_jis_2004.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/euc_jisx0213.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/euc_jp.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/euc_kr.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/gb18030.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/gb2312.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/gbk.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/hex_codec.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/hp_roman8.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/hz.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/idna.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso2022_jp.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso2022_jp_1.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso2022_jp_2.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso2022_jp_2004.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso2022_jp_3.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso2022_jp_ext.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso2022_kr.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_1.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_10.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_11.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_13.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_14.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_15.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_16.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_2.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_3.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_4.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_5.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_6.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_7.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_8.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/iso8859_9.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/johab.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/koi8_r.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/koi8_t.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/koi8_u.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/kz1048.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/latin_1.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_arabic.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_croatian.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_cyrillic.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_farsi.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_greek.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_iceland.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_latin2.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_roman.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_romanian.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mac_turkish.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/mbcs.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/oem.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/palmos.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/ptcp154.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/punycode.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/quopri_codec.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/raw_unicode_escape.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/rot_13.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/shift_jis.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/shift_jis_2004.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/shift_jisx0213.py /^ codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/tis_620.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/undefined.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/unicode_escape.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_16.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_16_be.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_16_le.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_32.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_32_be.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_32_le.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_7.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_8.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/utf_8_sig.py /^class IncrementalDecoder(codecs.BufferedIncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/uu_codec.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalDecoder Lib/encodings/zlib_codec.py /^class IncrementalDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalEncoder Lib/codecs.py /^class IncrementalEncoder(object):$/;" c +IncrementalEncoder Lib/encodings/ascii.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/base64_codec.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/big5.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/big5hkscs.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/bz2_codec.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/charmap.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp037.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1006.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1026.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1125.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1140.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1250.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1251.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1252.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1253.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1254.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1255.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1256.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1257.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp1258.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp273.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp424.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp437.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp500.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp720.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp737.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp775.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp850.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp852.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp855.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp856.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp857.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp858.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp860.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp861.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp862.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp863.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp864.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp865.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp866.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp869.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp874.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp875.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp932.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp949.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/cp950.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/euc_jis_2004.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/euc_jisx0213.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/euc_jp.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/euc_kr.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/gb18030.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/gb2312.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/gbk.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/hex_codec.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/hp_roman8.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/hz.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/idna.py /^class IncrementalEncoder(codecs.BufferedIncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso2022_jp.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso2022_jp_1.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso2022_jp_2.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso2022_jp_2004.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso2022_jp_3.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso2022_jp_ext.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso2022_kr.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_1.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_10.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_11.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_13.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_14.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_15.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_16.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_2.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_3.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_4.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_5.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_6.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_7.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_8.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/iso8859_9.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/johab.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/koi8_r.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/koi8_t.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/koi8_u.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/kz1048.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/latin_1.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_arabic.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_croatian.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_cyrillic.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_farsi.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_greek.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_iceland.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_latin2.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_roman.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_romanian.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mac_turkish.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/mbcs.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/oem.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/palmos.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/ptcp154.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/punycode.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/quopri_codec.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/raw_unicode_escape.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/rot_13.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/shift_jis.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/shift_jis_2004.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/shift_jisx0213.py /^ codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/tis_620.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/undefined.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/unicode_escape.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_16.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_16_be.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_16_le.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_32.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_32_be.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_32_le.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_7.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_8.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/utf_8_sig.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/uu_codec.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalEncoder Lib/encodings/zlib_codec.py /^class IncrementalEncoder(codecs.IncrementalEncoder):$/;" c +IncrementalNewlineDecoder Lib/_pyio.py /^class IncrementalNewlineDecoder(codecs.IncrementalDecoder):$/;" c +IncrementalNewlineDecoderTest Lib/test/test_io.py /^class IncrementalNewlineDecoderTest(unittest.TestCase):$/;" c +IncrementalParser Lib/xml/sax/xmlreader.py /^class IncrementalParser(XMLReader):$/;" c +IndentAndNewlineTest Lib/idlelib/idle_test/test_editor.py /^class IndentAndNewlineTest(unittest.TestCase):$/;" c +IndentSearcher Lib/idlelib/editor.py /^class IndentSearcher:$/;" c +IndentSearcherTest Lib/idlelib/idle_test/test_editor.py /^class IndentSearcherTest(unittest.TestCase):$/;" c +IndentStack Tools/clinic/clinic.py /^class IndentStack:$/;" c +IndentTestCase Lib/test/test_textwrap.py /^class IndentTestCase(unittest.TestCase):$/;" c +IndentTestCases Lib/test/test_textwrap.py /^class IndentTestCases(BaseTestCase):$/;" c +IndentedHelpFormatter Lib/optparse.py /^class IndentedHelpFormatter (HelpFormatter):$/;" c +Indents Lib/idlelib/format.py /^class Indents:$/;" c +IndentsTest Lib/idlelib/idle_test/test_format.py /^class IndentsTest(unittest.TestCase):$/;" c +Index Lib/ast.py /^class Index(slice):$/;" c +Index Lib/test/test_capi/test_getargs.py /^class Index:$/;" c +Index Lib/test/test_cmath.py /^ class Index:$/;" c function:CMathTests.test_user_object +Index Lib/test/test_int.py /^ class Index(trunc_result_base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +Index Lib/test/test_re.py /^ class Index:$/;" c function:ReTests.test_group +IndexIntSubclass Lib/test/test_capi/test_getargs.py /^class IndexIntSubclass(int):$/;" c +IndexLike Lib/test/test_ctypes/test_numbers.py /^ class IndexLike:$/;" c function:NumberTestCase.test_integers +IndexSizeErr Lib/xml/dom/__init__.py /^class IndexSizeErr(DOMException):$/;" c +Indexable Lib/test/test_bytes.py /^class Indexable:$/;" c +Indexable Lib/test/test_struct.py /^ class Indexable(object):$/;" c function:StructTest.test_integers.IntTester.run +InertParser Lib/test/test_clinic.py /^class InertParser:$/;" c +Inet6TestBase Lib/test/test_socket.py /^class Inet6TestBase(InetTestBase):$/;" c +InetTestBase Lib/test/test_socket.py /^class InetTestBase(SocketTestBase):$/;" c +Inexact Lib/_pydecimal.py /^class Inexact(DecimalException):$/;" c +InfNanTest Lib/test/test_float.py /^class InfNanTest(unittest.TestCase):$/;" c +InheritanceTest Lib/test/test_socket.py /^class InheritanceTest(unittest.TestCase):$/;" c +InheritanceTests Lib/test/test_importlib/test_abc.py /^class InheritanceTests:$/;" c +InheritedHashWithEquality Lib/test/test_hash.py /^class InheritedHashWithEquality(FixedHash, OnlyEquality): pass$/;" c +InheritedHashWithInequality Lib/test/test_hash.py /^class InheritedHashWithInequality(FixedHash, OnlyInequality): pass$/;" c +IniFile Lib/msilib/schema.py /^IniFile = Table('IniFile')$/;" v +IniLocator Lib/msilib/schema.py /^IniLocator = Table('IniLocator')$/;" v +InitCloseTest Lib/idlelib/idle_test/test_redirector.py /^class InitCloseTest(unittest.TestCase):$/;" c +InitConfigTests Lib/test/test_embed.py /^class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):$/;" c +InitRaises Lib/test/test_with.py /^ class InitRaises(object):$/;" c class:NestedWith +InitTest Lib/test/test_ctypes/test_init.py /^class InitTest(unittest.TestCase):$/;" c +InitTktypeTest Lib/idlelib/idle_test/test_macosx.py /^class InitTktypeTest(unittest.TestCase):$/;" c +InitVar Lib/dataclasses.py /^class InitVar:$/;" c +InitialNamesVisitor Tools/peg_generator/pegen/parser_generator.py /^class InitialNamesVisitor(GrammarVisitor):$/;" c +InitialisableProgram Lib/test/test_unittest/test_program.py /^class InitialisableProgram(unittest.TestProgram):$/;" c +InitializeData Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT InitializeData() {$/;" f class:PythonBootstrapperApplication file: +InitializeTaskbarButton Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void InitializeTaskbarButton() {$/;" f class:PythonBootstrapperApplication file: +InitializedState Lib/zipfile/_path/__init__.py /^class InitializedState:$/;" c +InitializerMixin Lib/test/test_concurrent_futures/test_init.py /^class InitializerMixin(ExecutorMixin):$/;" c +InlineCommentStrippingTestCase Lib/test/test_configparser.py /^class InlineCommentStrippingTestCase(unittest.TestCase):$/;" c +Inn Lib/test/test_typing.py /^ class Inn:$/;" c class:GetTypeHintTests.test_respect_no_type_check.NoTpCheck +Inner Lib/test/ann_module8.py /^ class Inner:$/;" c class:NoTypeCheck_Outer +Inner Lib/test/test_enum.py /^ class Inner(Enum):$/;" c class:TestSpecial.test_nested_classes_in_enum_are_members.Outer +Inner Lib/test/test_enum.py /^ class Inner(Enum):$/;" c class:TestSpecial.test_nested_classes_in_enum_are_not_members.Outer +Inner Lib/test/test_enum.py /^ class Inner(Enum):$/;" c class:TestSpecial.test_nested_classes_in_enum_with_member.Outer +Inner Lib/test/test_enum.py /^ class Inner(Enum):$/;" c class:TestSpecial.test_nested_classes_in_enum_with_nonmember.Outer +Inner Lib/test/test_type_params.py /^ class Inner[C, D]:$/;" c class:TypeParamsTypeParamsDunder.test_typeparams_dunder_class_01.Outer +Inner Lib/test/test_typing.py /^ Inner = ann_module8.NoTypeCheck_Outer.Inner$/;" v class:NoTypeCheck_Outer +InnerTest Lib/test/test_unittest/test_runner.py /^ class InnerTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_run_nested_test +InputEffect Tools/cases_generator/parser.py /^InputEffect = StackEffect | CacheEffect$/;" v +InputOnly Lib/tkinter/tix.py /^class InputOnly(TixWidget):$/;" c +InputSource Lib/xml/sax/xmlreader.py /^class InputSource:$/;" c +InputStream Lib/wsgiref/types.py /^class InputStream(Protocol):$/;" c +InputWrapper Lib/wsgiref/validate.py /^class InputWrapper:$/;" c +InsertCommand Lib/idlelib/undo.py /^class InsertCommand(Command):$/;" c +InsertThousandsGrouping_fill Objects/stringlib/localeutil.h /^InsertThousandsGrouping_fill(_PyUnicodeWriter *writer, Py_ssize_t *buffer_pos,$/;" f +Inside Lib/test/test_descr.py /^ class Inside:$/;" c class:.test_qualname.Y +InspectLoader Lib/importlib/abc.py /^class InspectLoader(Loader):$/;" c +InspectLoader Lib/test/test_importlib/test_abc.py /^class InspectLoader(InheritanceTests):$/;" c +InspectLoader Lib/test/test_importlib/test_abc.py /^class InspectLoader(Loader):$/;" c +InspectLoaderDefaultsTests Lib/test/test_importlib/test_abc.py /^class InspectLoaderDefaultsTests(ABCTestHarness):$/;" c +InspectLoaderGetCodeTests Lib/test/test_importlib/test_abc.py /^class InspectLoaderGetCodeTests:$/;" c +InspectLoaderLoadModuleTests Lib/test/test_importlib/test_abc.py /^class InspectLoaderLoadModuleTests:$/;" c +InspectLoaderSourceToCodeTests Lib/test/test_importlib/test_abc.py /^class InspectLoaderSourceToCodeTests:$/;" c +InspectLoaderTests Lib/test/test_importlib/builtin/test_loader.py /^class InspectLoaderTests:$/;" c +InspectLoaderTests Lib/test/test_importlib/frozen/test_loader.py /^class InspectLoaderTests:$/;" c +InstDef Tools/cases_generator/parser.py /^class InstDef(Node):$/;" c +InstHeader Tools/cases_generator/parser.py /^class InstHeader(Node):$/;" c +InstallCygwin PCbuild/prepare_libffi.bat /^:InstallCygwin$/;" l +InstallExecuteSequence Lib/msilib/schema.py /^InstallExecuteSequence = Table('InstallExecuteSequence')$/;" v +InstallExecuteSequence Lib/msilib/sequence.py /^InstallExecuteSequence = [$/;" v +InstallPage_Show Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void InstallPage_Show() {$/;" f class:PythonBootstrapperApplication file: +InstallUISequence Lib/msilib/schema.py /^InstallUISequence = Table('InstallUISequence')$/;" v +InstallUISequence Lib/msilib/sequence.py /^InstallUISequence = [$/;" v +InstanceCreation Lib/test/test_exception_group.py /^class InstanceCreation(unittest.TestCase):$/;" c +InstanceMethod Lib/test/test_capi/test_misc.py /^class InstanceMethod:$/;" c +InstanceProxy Tools/gdb/libpython.py /^class InstanceProxy(object):$/;" c +InstancemethodAttrTest Lib/test/test_funcattrs.py /^class InstancemethodAttrTest(FuncAttrsTest):$/;" c +InstancingTestCase Lib/test/test_marshal.py /^class InstancingTestCase(unittest.TestCase, HelperMixin):$/;" c +Instruction Lib/dis.py /^class Instruction(_Instruction):$/;" c +Instruction Lib/test/test_dis.py /^Instruction = dis.Instruction$/;" v +Instruction Tools/cases_generator/generate_cases.py /^class Instruction:$/;" c +InstructionFormat Python/opcode_metadata.h /^enum InstructionFormat { INSTR_FMT_IB, INSTR_FMT_IBC, INSTR_FMT_IBC00, INSTR_FMT_IBC000, INSTR_FMT_IBC00000000, INSTR_FMT_IBIB, INSTR_FMT_IX, INSTR_FMT_IXC, INSTR_FMT_IXC000 };$/;" g +InstructionOrCacheEffect Tools/cases_generator/generate_cases.py /^InstructionOrCacheEffect = Instruction | parser.CacheEffect$/;" v +InstructionRecorder Lib/test/test_monitoring.py /^class InstructionRecorder:$/;" c +InstructionTestCase Lib/test/test_dis.py /^class InstructionTestCase(BytecodeTestCase):$/;" c +InstructionTests Lib/test/test_dis.py /^class InstructionTests(InstructionTestCase):$/;" c +Int Lib/test/test__xxinterpchannels.py /^ class Int(str):$/;" c function:ChannelIDTests.test_coerce_id +Int Lib/test/test__xxsubinterpreters.py /^ class Int(str):$/;" c function:InterpreterIDTests.test_coerce_id +Int Lib/test/test_capi/test_getargs.py /^class Int:$/;" c +Int Lib/test/test_descr.py /^ class Int(int): __slots__ = []$/;" c function:.test_set_class +Int Lib/test/test_heapq.py /^ class Int(int):$/;" c function:TestHeap.test_merge_stability +Int Lib/test/test_math.py /^ class Int(int):$/;" c function:MathTests.test_sumprod_stress +Int Lib/test/test_unicode.py /^ class Int(enum.IntEnum):$/;" c function:UnicodeTest.test_formatting_with_enum +Int2AP Lib/imaplib.py /^def Int2AP(num):$/;" f +IntBlocked Lib/test/test_bytes.py /^ class IntBlocked(int):$/;" c function:BytesTest.test_bytes_blocking +IntEnum Lib/enum.py /^class IntEnum(int, ReprEnum):$/;" c +IntEnum1 Lib/test/test_enum.py /^ class IntEnum1(IntEnum):$/;" c function:TestSpecial.test_contains_different_types_same_members +IntEnum1 Lib/test/test_enum.py /^ class IntEnum1(IntEnum):$/;" c function:TestSpecial.test_contains_name_and_value_overlap +IntEnum2 Lib/test/test_enum.py /^ class IntEnum2(IntEnum):$/;" c function:TestSpecial.test_contains_name_and_value_overlap +IntEnum3 Lib/test/test_enum.py /^ class IntEnum3(IntEnum):$/;" c function:TestSpecial.test_contains_name_and_value_overlap +IntEnum4 Lib/test/test_enum.py /^ class IntEnum4(IntEnum):$/;" c function:TestSpecial.test_contains_name_and_value_overlap +IntFlag Lib/enum.py /^class IntFlag(int, ReprEnum, Flag, boundary=KEEP):$/;" c +IntFlag1 Lib/test/test_enum.py /^ class IntFlag1(IntFlag):$/;" c function:TestSpecial.test_contains_different_types_same_members +IntFlagStooges Lib/test/test_enum.py /^class IntFlagStooges(IntFlag):$/;" c +IntFlagStoogesWithZero Lib/test/test_enum.py /^class IntFlagStoogesWithZero(IntFlag):$/;" c +IntLike Lib/test/test_ctypes/test_numbers.py /^ class IntLike:$/;" c function:NumberTestCase.test_integers +IntLike Lib/test/test_itertools.py /^ class IntLike(object):$/;" c function:TestBasicOps.test_islice +IntLike Lib/test/test_memoryio.py /^class IntLike:$/;" c +IntListVisitor Lib/test/test_typing.py /^ class IntListVisitor(V):$/;" c function:GenericTests.test_nested +IntLogic Lib/test/test_enum.py /^ class IntLogic(int, Enum):$/;" c function:TestSpecial.test_bool +IntOverridesTrunc Lib/test/test_int.py /^ class IntOverridesTrunc(base):$/;" c class:IntTestCases.test_intconversion.Classic +IntStooges Lib/test/test_enum.py /^ IntStooges = exc$/;" v +IntStooges Lib/test/test_enum.py /^ class IntStooges(int, Enum):$/;" c +IntStrDigitLimitsTests Lib/test/test_int.py /^class IntStrDigitLimitsTests(unittest.TestCase):$/;" c +IntSubclass Lib/test/test_capi/test_getargs.py /^class IntSubclass(int):$/;" c +IntSubclass Lib/test/test_int.py /^class IntSubclass(int):$/;" c +IntSubclass Lib/test/test_math.py /^class IntSubclass(int):$/;" c +IntSubclassStrDigitLimitsTests Lib/test/test_int.py /^class IntSubclassStrDigitLimitsTests(IntStrDigitLimitsTests):$/;" c +IntTest Lib/test/test_array.py /^class IntTest(SignedNumberTest, unittest.TestCase):$/;" c +IntTestCase Lib/test/test_marshal.py /^class IntTestCase(unittest.TestCase, HelperMixin):$/;" c +IntTestCases Lib/test/test_int.py /^class IntTestCases(unittest.TestCase):$/;" c +IntTester Lib/test/test_struct.py /^ class IntTester(unittest.TestCase):$/;" c function:StructTest.test_integers +IntType Modules/_tkinter.c /^ const Tcl_ObjType *IntType;$/;" m struct:__anon334 file: +IntVar Lib/tkinter/__init__.py /^class IntVar(Variable):$/;" c +IntWithDict Lib/test/test_call.py /^ class IntWithDict:$/;" c function:FastCallTests.test_fastcall_clearing_dict +Int_InfoType Objects/longobject.c /^static PyTypeObject Int_InfoType;$/;" v file: +Int_max Python/dtoa.c 261;" d file: +Intable Lib/test/test_array.py /^class Intable:$/;" c +Intable Lib/test/test_int.py /^ class Intable(trunc_result_base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +Integer Lib/test/test_long.py /^ class Integer(int):$/;" c function:LongTest.test_access_to_nonexistent_digit_0 +Integer Lib/test/test_typechecks.py /^class Integer(metaclass=ABC):$/;" c +IntegerLike Lib/test/test_math.py /^ class IntegerLike(object):$/;" c function:MathTests.testIsqrt +IntegerNumberTest Lib/test/test_array.py /^class IntegerNumberTest(NumberTest):$/;" c +IntegerSizeTests Lib/test/test_tkinter/widget_tests.py /^class IntegerSizeTests:$/;" c +Integral Lib/numbers.py /^class Integral(Rational):$/;" c +IntegrationTests Lib/test/test_wsgiref.py /^class IntegrationTests(TestCase):$/;" c +IntegrityError Modules/_sqlite/connection.h /^ PyObject* IntegrityError;$/;" m struct:__anon359 +IntegrityError Modules/_sqlite/module.h /^ PyObject *IntegrityError;$/;" m struct:__anon355 +InterProcessSignalTests Lib/test/signalinterproctester.py /^class InterProcessSignalTests(unittest.TestCase):$/;" c +Interactive Include/internal/pycore_ast.h /^ } Interactive;$/;" m union:_mod::__anon46 typeref:struct:_mod::__anon46::__anon48 +InteractiveConsole Lib/code.py /^class InteractiveConsole(InteractiveInterpreter):$/;" c +InteractiveInterpreter Lib/code.py /^class InteractiveInterpreter:$/;" c +InteractiveSession Lib/test/test_sqlite3/test_cli.py /^class InteractiveSession(unittest.TestCase):$/;" c +Interactive_fields Python/Python-ast.c /^static const char * const Interactive_fields[]={$/;" v file: +Interactive_kind Include/internal/pycore_ast.h /^enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,$/;" e enum:_mod_kind +Interactive_type Include/internal/pycore_ast_state.h /^ PyObject *Interactive_type;$/;" m struct:ast_state +InterceptedError Lib/test/test_optparse.py /^class InterceptedError(Exception):$/;" c +InterceptingOptionParser Lib/test/test_optparse.py /^class InterceptingOptionParser(OptionParser):$/;" c +InterfaceError Modules/_sqlite/connection.h /^ PyObject* InterfaceError;$/;" m struct:__anon359 +InterfaceError Modules/_sqlite/module.h /^ PyObject *InterfaceError;$/;" m struct:__anon355 +InterfaceTestCase_v4 Lib/test/test_ipaddress.py /^class InterfaceTestCase_v4(BaseTestCase, NetmaskTestMixin_v4):$/;" c +InterfaceTestCase_v6 Lib/test/test_ipaddress.py /^class InterfaceTestCase_v6(BaseTestCase, NetmaskTestMixin_v6):$/;" c +InternalDate Lib/imaplib.py /^InternalDate = re.compile(br'.*INTERNALDATE "'$/;" v +InternalError Modules/_sqlite/connection.h /^ PyObject* InternalError;$/;" m struct:__anon359 +InternalError Modules/_sqlite/module.h /^ PyObject *InternalError;$/;" m struct:__anon355 +InternalFormatSpec Python/formatter_unicode.c /^} InternalFormatSpec;$/;" t typeref:struct:__anon674 file: +InternalFunctionsTest Lib/test/test_ttk_textonly.py /^class InternalFunctionsTest(unittest.TestCase):$/;" c +InternalMapping Lib/test/test_unicode.py /^ class InternalMapping:$/;" c function:UnicodeTest.test_format_map +InternalSubsetExtractor Lib/xml/dom/expatbuilder.py /^class InternalSubsetExtractor(ExpatBuilder):$/;" c +Internaldate2tuple Lib/imaplib.py /^def Internaldate2tuple(resp):$/;" f +InterningTest Lib/test/test_pyexpat.py /^class InterningTest(unittest.TestCase):$/;" c +InterningTestCase Lib/test/test_marshal.py /^class InterningTestCase(unittest.TestCase, HelperMixin):$/;" c +Interpolation Lib/configparser.py /^class Interpolation:$/;" c +InterpolationDepthError Lib/configparser.py /^class InterpolationDepthError(InterpolationError):$/;" c +InterpolationError Lib/configparser.py /^class InterpolationError(Error):$/;" c +InterpolationMissingOptionError Lib/configparser.py /^class InterpolationMissingOptionError(InterpolationError):$/;" c +InterpolationSyntaxError Lib/configparser.py /^class InterpolationSyntaxError(InterpolationError):$/;" c +Interpreter Lib/test/support/interpreters.py /^class Interpreter:$/;" c +Interpreter Lib/test/test__xxinterpchannels.py /^class Interpreter(namedtuple('Interpreter', 'name id')):$/;" c +InterpreterIDTests Lib/test/test__xxsubinterpreters.py /^class InterpreterIDTests(TestBase):$/;" c +InterruptMainTests Lib/test/test_threading.py /^class InterruptMainTests(unittest.TestCase):$/;" c +InterruptSelect Lib/test/test_selectors.py /^ class InterruptSelect(Exception):$/;" c function:BaseSelectorTestCase.test_select_interrupt_exc +InterruptedRecvTimeoutTest Lib/test/test_socket.py /^class InterruptedRecvTimeoutTest(InterruptedTimeoutBase, UDPTestBase):$/;" c +InterruptedSendTimeoutTest Lib/test/test_socket.py /^ SocketListeningTestMixin, TCPTestBase):$/;" c +InterruptedTimeoutBase Lib/test/test_socket.py /^class InterruptedTimeoutBase:$/;" c +Intnumber Lib/lib2to3/pgen2/tokenize.py /^Intnumber = group(Binnumber, Hexnumber, Octnumber, Decnumber)$/;" v +Intnumber Lib/tokenize.py /^Intnumber = group(Hexnumber, Binnumber, Octnumber, Decnumber)$/;" v +Ints Lib/test/test_types.py /^ class Ints(enum.IntEnum):$/;" c function:UnionTests.test_or_type_operator_with_Literal +Ints Lib/test/test_typing.py /^ class Ints(enum.IntEnum):$/;" c function:LiteralTests.test_does_not_flatten_enum +Ints Lib/test/test_typing.py /^ class Ints(enum.IntEnum):$/;" c function:UnionTests.test_union_of_literals +IntsFrom Lib/test/test_iter.py /^ class IntsFrom:$/;" c function:TestCase.test_builtin_zip +InuseAttributeErr Lib/xml/dom/__init__.py /^class InuseAttributeErr(DOMException):$/;" c +InvalidAccessErr Lib/xml/dom/__init__.py /^class InvalidAccessErr(DOMException):$/;" c +InvalidBase64CharactersDefect Lib/email/errors.py /^class InvalidBase64CharactersDefect(MessageDefect):$/;" c +InvalidBase64LengthDefect Lib/email/errors.py /^class InvalidBase64LengthDefect(MessageDefect):$/;" c +InvalidBase64PaddingDefect Lib/email/errors.py /^class InvalidBase64PaddingDefect(MessageDefect):$/;" c +InvalidBytes Lib/test/test_long.py /^ class InvalidBytes:$/;" c function:LongTest.test_from_bytes +InvalidCharacterErr Lib/xml/dom/__init__.py /^class InvalidCharacterErr(DOMException):$/;" c +InvalidConfigSet Lib/idlelib/config.py /^class InvalidConfigSet(Exception): pass$/;" c +InvalidConfigType Lib/idlelib/config.py /^class InvalidConfigType(Exception): pass$/;" c +InvalidContext Lib/_pydecimal.py /^class InvalidContext(InvalidOperation):$/;" c +InvalidCrawlDelayTest Lib/test/test_robotparser.py /^class InvalidCrawlDelayTest(BaseRobotTest, unittest.TestCase):$/;" c +InvalidDateDefect Lib/email/errors.py /^class InvalidDateDefect(HeaderDefect):$/;" c +InvalidException Lib/test/test_exceptions.py /^ class InvalidException:$/;" c function:ExceptionTests.testSettingException +InvalidFileException Lib/plistlib.py /^class InvalidFileException (ValueError):$/;" c +InvalidHeaderDefect Lib/email/errors.py /^class InvalidHeaderDefect(HeaderDefect):$/;" c +InvalidHeaderError Lib/tarfile.py /^class InvalidHeaderError(HeaderError):$/;" c +InvalidLen Lib/test/test_builtin.py /^ class InvalidLen:$/;" c function:BuiltinTest.test_len +InvalidMailbox Lib/email/_header_value_parser.py /^class InvalidMailbox(TokenList):$/;" c +InvalidMessageID Lib/email/_header_value_parser.py /^class InvalidMessageID(MessageID):$/;" c +InvalidModificationErr Lib/xml/dom/__init__.py /^class InvalidModificationErr(DOMException):$/;" c +InvalidMultipartContentTransferEncodingDefect Lib/email/errors.py /^class InvalidMultipartContentTransferEncodingDefect(MessageDefect):$/;" c +InvalidNodeVisitor Tools/peg_generator/pegen/python_generator.py /^class InvalidNodeVisitor(GrammarVisitor):$/;" c +InvalidOperation Lib/_pydecimal.py /^class InvalidOperation(DecimalException):$/;" c +InvalidParameter Lib/email/_header_value_parser.py /^class InvalidParameter(Parameter):$/;" c +InvalidRequestRateTest Lib/test/test_robotparser.py /^class InvalidRequestRateTest(BaseRobotTest, unittest.TestCase):$/;" c +InvalidSizeof Lib/test/test_sys.py /^ class InvalidSizeof:$/;" c function:SizeofTest.test_errors +InvalidSpecError Lib/unittest/mock.py /^class InvalidSpecError(Exception):$/;" c +InvalidStateErr Lib/xml/dom/__init__.py /^class InvalidStateErr(DOMException):$/;" c +InvalidStateError Lib/asyncio/exceptions.py /^class InvalidStateError(Exception):$/;" c +InvalidStateError Lib/concurrent/futures/_base.py /^class InvalidStateError(Error):$/;" c +InvalidTZPathWarning Lib/zoneinfo/__init__.py /^InvalidTZPathWarning = _tzpath.InvalidTZPathWarning$/;" v +InvalidTZPathWarning Lib/zoneinfo/_tzpath.py /^class InvalidTZPathWarning(RuntimeWarning):$/;" c +InvalidTheme Lib/idlelib/config.py /^class InvalidTheme(Exception): pass$/;" c +InvalidURL Lib/http/client.py /^class InvalidURL(HTTPException):$/;" c +InvalidateCache Lib/test/test_importlib/test_metadata_api.py /^class InvalidateCache(unittest.TestCase):$/;" c +InvalidateCacheTests Lib/test/test_importlib/test_api.py /^class InvalidateCacheTests:$/;" c +InvalidatingNullFinder Lib/test/test_importlib/test_api.py /^ class InvalidatingNullFinder:$/;" c function:InvalidateCacheTests.test_method_called +Invert Include/internal/pycore_ast.h /^typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;$/;" e enum:_unaryop +Invert_singleton Include/internal/pycore_ast_state.h /^ PyObject *Invert_singleton;$/;" m struct:ast_state +Invert_type Include/internal/pycore_ast_state.h /^ PyObject *Invert_type;$/;" m struct:ast_state +InvocationRecorder Lib/test/test_fileinput.py /^class InvocationRecorder:$/;" c +Invoked Lib/test/test_zipfile/_path/_test_params.py /^class Invoked(types.SimpleNamespace):$/;" c +IocpProactor Lib/asyncio/windows_events.py /^class IocpProactor:$/;" c +IoctlTests Lib/test/test_ioctl.py /^class IoctlTests(unittest.TestCase):$/;" c +IpaddrUnitTest Lib/test/test_ipaddress.py /^class IpaddrUnitTest(unittest.TestCase):$/;" c +IranTest Lib/test/datetimetester.py /^class IranTest(ZoneInfoTest):$/;" c +Iron Lib/test/test_enum.py /^ class Iron(Flag, boundary=CONFORM):$/;" c function:OldTestFlag.test_boundary +Iron Lib/test/test_enum.py /^ class Iron(IntFlag, boundary=STRICT):$/;" c function:OldTestIntFlag.test_boundary +Is Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +IsCheckable Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL IsCheckable(THEME_CONTROL* pControl) {$/;" f class:PythonBootstrapperApplication file: +IsCloseTests Lib/test/test_cmath.py /^class IsCloseTests(test_math.IsCloseTests):$/;" c +IsCloseTests Lib/test/test_math.py /^class IsCloseTests(unittest.TestCase):$/;" c +IsCoreBinding Lib/idlelib/config.py /^ def IsCoreBinding(self, virtualEvent):$/;" m class:IdleConf +IsCrtInstalled Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL IsCrtInstalled() {$/;" f class:PythonBootstrapperApplication file: +IsEditable Lib/idlelib/debugobj.py /^ def IsEditable(self):$/;" m class:ObjectTreeItem +IsEditable Lib/idlelib/tree.py /^ def IsEditable(self):$/;" m class:FileTreeItem +IsEditable Lib/idlelib/tree.py /^ def IsEditable(self):$/;" m class:TreeItem +IsEmpty Lib/idlelib/config.py /^ def IsEmpty(self):$/;" m class:IdleUserConfParser +IsExpandable Lib/idlelib/browser.py /^ def IsExpandable(self):$/;" m class:ChildBrowserTreeItem +IsExpandable Lib/idlelib/browser.py /^ def IsExpandable(self):$/;" m class:ModuleBrowserTreeItem +IsExpandable Lib/idlelib/debugobj.py /^ def IsExpandable(self):$/;" m class:AtomicObjectTreeItem +IsExpandable Lib/idlelib/debugobj.py /^ def IsExpandable(self):$/;" m class:ClassTreeItem +IsExpandable Lib/idlelib/debugobj.py /^ def IsExpandable(self):$/;" m class:ObjectTreeItem +IsExpandable Lib/idlelib/debugobj.py /^ def IsExpandable(self):$/;" m class:SequenceTreeItem +IsExpandable Lib/idlelib/stackviewer.py /^ def IsExpandable(self):$/;" m class:VariablesTreeItem +IsExpandable Lib/idlelib/tree.py /^ def IsExpandable(self):$/;" m class:FileTreeItem +IsExpandable Lib/idlelib/tree.py /^ def IsExpandable(self):$/;" m class:TreeItem +IsFiniteTest Lib/test/test_statistics.py /^class IsFiniteTest(unittest.TestCase):$/;" c +IsNot Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +IsNot_singleton Include/internal/pycore_ast_state.h /^ PyObject *IsNot_singleton;$/;" m struct:ast_state +IsNot_type Include/internal/pycore_ast_state.h /^ PyObject *IsNot_type;$/;" m struct:ast_state +IsRunningTests Lib/test/test__xxsubinterpreters.py /^class IsRunningTests(TestBase):$/;" c +IsShareableTests Lib/test/test__xxsubinterpreters.py /^class IsShareableTests(unittest.TestCase):$/;" c +IsTargetPlatformARM64 Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static bool IsTargetPlatformARM64(__in IBootstrapperEngine* pEngine) {$/;" f class:PythonBootstrapperApplication file: +IsTargetPlatformx64 Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static bool IsTargetPlatformx64(__in IBootstrapperEngine* pEngine) {$/;" f class:PythonBootstrapperApplication file: +IsTestBase Lib/test/test_inspect.py /^class IsTestBase(unittest.TestCase):$/;" c +IsTypeTkTest Lib/idlelib/idle_test/test_macosx.py /^class IsTypeTkTest(unittest.TestCase):$/;" c +Is_Get_Test Lib/idlelib/idle_test/test_format.py /^class Is_Get_Test(unittest.TestCase):$/;" c +Is_singleton Include/internal/pycore_ast_state.h /^ PyObject *Is_singleton;$/;" m struct:ast_state +Is_type Include/internal/pycore_ast_state.h /^ PyObject *Is_type;$/;" m struct:ast_state +IsoCalendarDate Lib/_pydatetime.py /^class IsoCalendarDate(tuple):$/;" c +IsolatedAssembleTests Lib/test/test_compiler_assemble.py /^class IsolatedAssembleTests(AssemblerTestCase):$/;" c +IsolatedAsyncioTestCase Lib/unittest/async_case.py /^class IsolatedAsyncioTestCase(TestCase):$/;" c +IsolatedCodeGenTests Lib/test/test_compiler_codegen.py /^class IsolatedCodeGenTests(CodegenTestCase):$/;" c +IsolatedComponent Lib/msilib/schema.py /^IsolatedComponent = Table('IsolatedComponent')$/;" v +IsolationLevelFromInit Lib/test/test_sqlite3/test_transactions.py /^class IsolationLevelFromInit(unittest.TestCase):$/;" c +IsolationLevelPostInit Lib/test/test_sqlite3/test_transactions.py /^class IsolationLevelPostInit(unittest.TestCase):$/;" c +Issue27558 Lib/test/test_threading.py /^ class Issue27558(threading.Thread):$/;" c function:ThreadingExceptionTests.test_bare_raise_in_brand_new_thread +Issue7005TestCase Lib/test/test_configparser.py /^class Issue7005TestCase(unittest.TestCase):$/;" c +IssuesTestCase Lib/test/test_bdb.py /^class IssuesTestCase(BaseTestCase):$/;" c +It Lib/test/test_collections.py /^ class It:$/;" c function:TestOneTrickPonyABCs.test_Iterable +ItBlocked Lib/test/test_collections.py /^ class ItBlocked(It):$/;" c function:TestOneTrickPonyABCs.test_Iterable +Item Tools/peg_generator/pegen/grammar.py /^Item = Union[Plain, Opt, Repeat, Forced, Lookahead, Rhs, Cut]$/;" v +ItemsView Lib/_collections_abc.py /^class ItemsView(MappingView, Set):$/;" c +ItemsView Lib/typing.py /^ItemsView = _alias(collections.abc.ItemsView, 2)$/;" v +Iter Lib/test/test_builtin.py /^ class Iter(object):$/;" c function:BuiltinTest.test_next +Iter Lib/test/test_builtin.py /^ class Iter:$/;" c function:BuiltinTest.test_zip_strict_error_handling +Iter Lib/test/test_builtin.py /^ class Iter:$/;" c function:BuiltinTest.test_zip_strict_error_handling_stopiteration +Iter Lib/test/test_unittest/testmock/testmock.py /^class Iter(object):$/;" c +IterBlock Lib/test/test_collections.py /^ class IterBlock:$/;" c function:TestOneTrickPonyABCs.test_Collection +IterClass Lib/test/test_iter.py /^ class IterClass(object):$/;" c function:TestCase.test_new_style_iter_class +IterFunc Lib/test/seq_tests.py /^class IterFunc:$/;" c +IterFuncStop Lib/test/seq_tests.py /^class IterFuncStop:$/;" c +IterGen Lib/test/seq_tests.py /^class IterGen:$/;" c +IterGenExc Lib/test/seq_tests.py /^class IterGenExc:$/;" c +IterNextOnly Lib/test/seq_tests.py /^class IterNextOnly:$/;" c +IterNoNext Lib/test/seq_tests.py /^class IterNoNext:$/;" c +IterParseIterator Lib/xml/etree/ElementTree.py /^ class IterParseIterator(collections.abc.Iterator):$/;" c function:iterparse +Iterable Lib/_collections_abc.py /^class Iterable(metaclass=ABCMeta):$/;" c +Iterable Lib/test/test_coroutines.py /^ class Iterable:$/;" c function:CoroutineTest.test_for_6 +Iterable Lib/test/test_unittest/testmock/testmagicmethods.py /^ class Iterable(object):$/;" c function:TestMockingMagicMethods.test_magic_methods_and_spec +Iterable Lib/test/test_unittest/testmock/testmagicmethods.py /^ class Iterable(object):$/;" c function:TestMockingMagicMethods.test_magic_methods_and_spec_set +Iterable Lib/typing.py /^Iterable = _alias(collections.abc.Iterable, 1)$/;" v +IteratesWeakly Lib/test/test_weakref.py /^ class IteratesWeakly:$/;" c function:ReferencesTestCase.test_proxy_next +IteratingSequenceClass Lib/test/test_iter.py /^class IteratingSequenceClass:$/;" c +IterationBlocked Lib/test/test_bytes.py /^ class IterationBlocked(list):$/;" c function:BytesTest.test_bytes_blocking +Iterator Lib/_collections_abc.py /^class Iterator(Iterable):$/;" c +Iterator Lib/test/test_iter.py /^ class Iterator:$/;" c function:TestCase.test_writelines +Iterator Lib/typing.py /^Iterator = _alias(collections.abc.Iterator, 1)$/;" v +Iterator Objects/frameobject.c /^ Iterator = 1,$/;" e enum:kind file: +IteratorProxy Lib/multiprocessing/managers.py /^class IteratorProxy(BaseProxy):$/;" c +IteratorProxy Lib/test/_test_multiprocessing.py /^class IteratorProxy(BaseProxy):$/;" c +IteratorProxyClass Lib/test/test_iter.py /^class IteratorProxyClass:$/;" c +IteratorWrapper Lib/wsgiref/validate.py /^class IteratorWrapper:$/;" c +ItimerTest Lib/test/test_signal.py /^class ItimerTest(unittest.TestCase):$/;" c +J Lib/test/test_descr.py /^ class J(object):$/;" c function:.test_set_class +J Lib/test/test_grammar.py /^ class J: pass$/;" c function:GrammarTests.test_classdef +J Lib/test/test_unicode.py /^ class J(int):$/;" c function:UnicodeTest.test_format +J Lib/test/test_weakref.py /^ class J(object):$/;" c function:ReferencesTestCase.test_callback_in_cycle +J1939Test Lib/test/test_socket.py /^class J1939Test(unittest.TestCase):$/;" c +JANUARY Lib/calendar.py /^ JANUARY = 1$/;" v class:Month +JISX0201_DECODE Modules/cjkcodecs/alg_jisx0201.h 63;" d +JISX0201_ENCODE Modules/cjkcodecs/alg_jisx0201.h 17;" d +JISX0201_K_DECODE Modules/cjkcodecs/alg_jisx0201.h 55;" d +JISX0201_K_DECODE_CHAR Modules/cjkcodecs/alg_jisx0201.h 59;" d +JISX0201_K_ENCODE Modules/cjkcodecs/alg_jisx0201.h 12;" d +JISX0201_R_DECODE Modules/cjkcodecs/alg_jisx0201.h 38;" d +JISX0201_R_DECODE_CHAR Modules/cjkcodecs/alg_jisx0201.h 21;" d +JISX0201_R_ENCODE Modules/cjkcodecs/alg_jisx0201.h 1;" d +JISX0208_C1 Tools/unicode/genmap_japanese.py /^JISX0208_C1 = (0x21, 0x74)$/;" v +JISX0208_C2 Tools/unicode/genmap_japanese.py /^JISX0208_C2 = (0x21, 0x7e)$/;" v +JISX0212_C1 Tools/unicode/genmap_japanese.py /^JISX0212_C1 = (0x22, 0x6d)$/;" v +JISX0212_C2 Tools/unicode/genmap_japanese.py /^JISX0212_C2 = (0x21, 0x7e)$/;" v +JISX0213_C1 Tools/unicode/genmap_japanese.py /^JISX0213_C1 = (0x21, 0x7e)$/;" v +JISX0213_C2 Tools/unicode/genmap_japanese.py /^JISX0213_C2 = (0x21, 0x7e)$/;" v +JISX0213_ENCPAIRS Modules/cjkcodecs/mappings_jisx0213_pair.h 2;" d +JOBS Doc/Makefile /^JOBS = auto$/;" m +JOIN_GET Modules/_elementtree.c 51;" d file: +JOIN_OBJ Modules/_elementtree.c 53;" d file: +JOIN_SET Modules/_elementtree.c 52;" d file: +JOIN_TIMEOUT Lib/test/libregrtest/runtest_mp.py /^JOIN_TIMEOUT = 30.0 # seconds$/;" v +JSON Doc/tools/extensions/glossary_search.py /^JSON = 'glossary.json'$/;" v +JSONArray Lib/json/decoder.py /^def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):$/;" f +JSONDOCS Lib/test/test_json/test_fail.py /^JSONDOCS = [$/;" v +JSONDecodeError Lib/json/decoder.py /^class JSONDecodeError(ValueError):$/;" c +JSONDecodeError Lib/test/test_json/__init__.py /^ JSONDecodeError = staticmethod(cjson.JSONDecodeError)$/;" v class:CTest +JSONDecodeError Lib/test/test_json/__init__.py /^ JSONDecodeError = staticmethod(pyjson.JSONDecodeError)$/;" v class:PyTest +JSONDecoder Lib/json/decoder.py /^class JSONDecoder(object):$/;" c +JSONEncoder Lib/json/encoder.py /^class JSONEncoder(object):$/;" c +JSONObject Lib/json/decoder.py /^def JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook,$/;" f +JSONTestObject Lib/test/test_json/test_recursion.py /^class JSONTestObject:$/;" c +JULY Lib/calendar.py /^ JULY = 7$/;" v class:Month +JUMP Include/opcode.h 147;" d +JUMPBY Python/ceval_macros.h 148;" d +JUMPTO Python/ceval_macros.h 147;" d +JUMP_AND_BRANCH_RECORDERS Lib/test/test_monitoring.py /^JUMP_AND_BRANCH_RECORDERS = JumpRecorder, BranchRecorder$/;" v +JUMP_ASSERT Modules/_sre/sre_lib.h 484;" d +JUMP_ASSERT_NOT Modules/_sre/sre_lib.h 485;" d +JUMP_ATOMIC_GROUP Modules/_sre/sre_lib.h 488;" d +JUMP_BACKWARD Include/opcode.h 98;" d +JUMP_BACKWARD Lib/dis.py /^JUMP_BACKWARD = opmap['JUMP_BACKWARD']$/;" v +JUMP_BACKWARD_NO_INTERRUPT Include/opcode.h 92;" d +JUMP_BRANCH Modules/_sre/sre_lib.h 483;" d +JUMP_BRANCH_AND_LINE_RECORDERS Lib/test/test_monitoring.py /^JUMP_BRANCH_AND_LINE_RECORDERS = JumpRecorder, BranchRecorder, LineRecorder$/;" v +JUMP_FORWARD Include/opcode.h 71;" d +JUMP_MAX_UNTIL_1 Modules/_sre/sre_lib.h 473;" d +JUMP_MAX_UNTIL_2 Modules/_sre/sre_lib.h 474;" d +JUMP_MAX_UNTIL_3 Modules/_sre/sre_lib.h 475;" d +JUMP_MIN_REPEAT_ONE Modules/_sre/sre_lib.h 482;" d +JUMP_MIN_UNTIL_1 Modules/_sre/sre_lib.h 476;" d +JUMP_MIN_UNTIL_2 Modules/_sre/sre_lib.h 477;" d +JUMP_MIN_UNTIL_3 Modules/_sre/sre_lib.h 478;" d +JUMP_NONE Modules/_sre/sre_lib.h 472;" d +JUMP_NO_INTERRUPT Include/opcode.h 148;" d +JUMP_POSS_REPEAT_1 Modules/_sre/sre_lib.h 486;" d +JUMP_POSS_REPEAT_2 Modules/_sre/sre_lib.h 487;" d +JUMP_REPEAT Modules/_sre/sre_lib.h 479;" d +JUMP_REPEAT_ONE_1 Modules/_sre/sre_lib.h 480;" d +JUMP_REPEAT_ONE_2 Modules/_sre/sre_lib.h 481;" d +JUNE Lib/calendar.py /^ JUNE = 6$/;" v class:Month +JUPITER Lib/test/test_enum.py /^ JUPITER = (1.9e+27, 7.1492e7)$/;" v class:TestSpecial.test_init.Planet +JUST_SHOW_HASH_RESULTS Lib/test/test_tuple.py /^JUST_SHOW_HASH_RESULTS = False # if RUN_ALL_HASH_TESTS, just display$/;" v +JobStatus Lib/test/test_enum.py /^ class JobStatus(CaseInsensitiveStrEnum, LenientStrEnum):$/;" c function:TestSpecial.test_multiple_mixin_with_common_data_type +JoinableQueue Lib/multiprocessing/context.py /^ def JoinableQueue(self, maxsize=0):$/;" m class:BaseContext +JoinableQueue Lib/multiprocessing/dummy/__init__.py /^JoinableQueue = Queue$/;" v +JoinableQueue Lib/multiprocessing/queues.py /^class JoinableQueue(Queue):$/;" c +JoinableQueue Lib/test/_test_multiprocessing.py /^ JoinableQueue = property(operator.attrgetter('manager.JoinableQueue'))$/;" v class:ManagerMixin +JoinableQueue Lib/test/_test_multiprocessing.py /^ JoinableQueue = staticmethod(multiprocessing.JoinableQueue)$/;" v class:ProcessesMixin +JoinableQueue Lib/test/_test_multiprocessing.py /^ JoinableQueue = staticmethod(multiprocessing.dummy.JoinableQueue)$/;" v class:ThreadsMixin +JoinedStr Include/internal/pycore_ast.h /^ } JoinedStr;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon96 +JoinedStr_fields Python/Python-ast.c /^static const char * const JoinedStr_fields[]={$/;" v file: +JoinedStr_kind Include/internal/pycore_ast.h /^ FormattedValue_kind=18, JoinedStr_kind=19, Constant_kind=20,$/;" e enum:_expr_kind +JoinedStr_type Include/internal/pycore_ast_state.h /^ PyObject *JoinedStr_type;$/;" m struct:ast_state +JulianTests Lib/test/test_strptime.py /^class JulianTests(unittest.TestCase):$/;" c +JumpRecorder Lib/test/test_monitoring.py /^class JumpRecorder:$/;" c +JumpTestCase Lib/test/test_sys_settrace.py /^class JumpTestCase(unittest.TestCase):$/;" c +JumpTracer Lib/test/test_sys_settrace.py /^class JumpTracer:$/;" c +JustFloat Lib/test/test_cmath.py /^ class JustFloat:$/;" c function:CMathTests.test_user_object +JustLong Lib/test/test_long.py /^ class JustLong:$/;" c function:LongTest.test_conversion +JustTrunc Lib/test/test_int.py /^ class JustTrunc(base):$/;" c class:IntTestCases.test_intconversion.Classic +K Lib/functools.py /^ class K(object):$/;" c function:cmp_to_key +K Lib/test/pickletester.py /^class K:$/;" c +K Lib/test/test_descr.py /^ class K(object):$/;" c function:.test_set_class +K Lib/test/test_genericalias.py /^K = TypeVar('K')$/;" v +K Lib/test/test_grammar.py /^ class K: pass$/;" c function:GrammarTests.test_classdef +K Lib/test/test_itertools.py /^ class K:$/;" c function:RegressionTests.test_issue30347_2 +KARATSUBA_CUTOFF Lib/test/test_long.py /^KARATSUBA_CUTOFF = 70 # from longobject.c$/;" v +KARATSUBA_CUTOFF Objects/longobject.c 74;" d file: +KARATSUBA_SQUARE_CUTOFF Objects/longobject.c 75;" d file: +KB Include/internal/pycore_blocks_output_buffer.h 58;" d +KB Include/internal/pycore_blocks_output_buffer.h 64;" d +KDFTests Lib/test/test_hashlib.py /^class KDFTests(unittest.TestCase):$/;" c +KEEP Lib/enum.py /^ KEEP = auto()$/;" v class:FlagBoundary +KERMIT Lib/telnetlib.py /^KERMIT = bytes([47]) # KERMIT$/;" v +KEY Lib/test/test_patma.py /^ KEY = "a"$/;" v class:TestValueErrors.test_mapping_pattern_checks_duplicate_key_1.Keys +KEY Modules/expat/xmlparse.c /^typedef const XML_Char *KEY;$/;" t file: +KEYPRESS_SEQUENCES Lib/idlelib/autocomplete_w.py /^KEYPRESS_SEQUENCES = ("", "", "", "",$/;" v +KEYPRESS_VIRTUAL_EVENT_NAME Lib/idlelib/autocomplete_w.py /^KEYPRESS_VIRTUAL_EVENT_NAME = "<>"$/;" v +KEYRELEASE_SEQUENCE Lib/idlelib/autocomplete_w.py /^KEYRELEASE_SEQUENCE = ""$/;" v +KEYRELEASE_VIRTUAL_EVENT_NAME Lib/idlelib/autocomplete_w.py /^KEYRELEASE_VIRTUAL_EVENT_NAME = "<>"$/;" v +KEYS Lib/test/test_zoneinfo/data/update_test_data.py /^KEYS = [$/;" v +KEYWORD Tools/peg_generator/pegen/c_generator.py /^ KEYWORD = 4$/;" v class:NodeTypes +KEYWORDS Tools/peg_generator/pegen/grammar_parser.py /^ KEYWORDS = ()$/;" v class:GeneratedParser +KEYWORDS_KWONLY_METHODDEF Modules/clinic/_testclinic.c.h 1303;" d +KEYWORDS_KWONLY_OPT_METHODDEF Modules/clinic/_testclinic.c.h 1507;" d +KEYWORDS_METHODDEF Modules/clinic/_testclinic.c.h 1247;" d +KEYWORDS_OPT_KWONLY_METHODDEF Modules/clinic/_testclinic.c.h 1427;" d +KEYWORDS_OPT_METHODDEF Modules/clinic/_testclinic.c.h 1359;" d +KEYWORD_ONLY Lib/inspect.py /^ KEYWORD_ONLY = _KEYWORD_ONLY$/;" v class:Parameter +KEYWORD_ONLY Lib/inspect.py /^ KEYWORD_ONLY = 'keyword-only'$/;" v class:_ParameterKind +KEYWORD_ONLY_PARAMETER_METHODDEF Modules/clinic/_testclinic.c.h 2280;" d +KEY_EXAMPLES Lib/test/test_zoneinfo/test_zoneinfo_property.py /^KEY_EXAMPLES = [$/;" v +KEY_INITIAL_CHARS Lib/tomllib/_parser.py /^KEY_INITIAL_CHARS = BARE_KEY_CHARS | frozenset("\\"'")$/;" v +KEY_LOWER_THAN Modules/rotatingtree.c 3;" d file: +KEY_PASSWORD Lib/test/test_ssl.py /^KEY_PASSWORD = "somepass"$/;" v +KEY_UPDATE Lib/ssl.py /^ KEY_UPDATE = 24$/;" v class:_TLSMessageType +KEY_UPDATE Lib/test/test_ssl.py /^ KEY_UPDATE = 24$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +KIND Tools/c-analyzer/c_parser/info.py /^class KIND(enum.Enum):$/;" c +KINDS Tools/c-analyzer/c_analyzer/__main__.py /^KINDS = [$/;" v +KINDS Tools/c-analyzer/c_parser/info.py /^ KINDS = ($/;" v class:SourceLine +KINDS Tools/c-analyzer/cpython/_analyzer.py /^KINDS = frozenset((*KIND.TYPES, KIND.VARIABLE))$/;" v +KINDS Tools/c-analyzer/cpython/_builtin_types.py /^ KINDS = {$/;" v class:BuiltinTypeDecl +KINDS Tools/c-analyzer/cpython/_capi.py /^KINDS = [$/;" v +KINDS Tools/c-analyzer/table-file.py /^KINDS = [$/;" v +KIND_CLASSES Tools/c-analyzer/c_parser/info.py /^KIND_CLASSES = {cls.kind: cls for cls in [$/;" v +KNOWN_CAPSULE Modules/_testcapimodule.c 947;" d file: +KNOWN_FILE Tools/c-analyzer/cpython/_analyzer.py /^KNOWN_FILE = os.path.join(_DATA_DIR, 'known.tsv')$/;" v +KNOWN_IN_DOT_C Tools/c-analyzer/cpython/_analyzer.py /^KNOWN_IN_DOT_C = {$/;" v +KQ_OFF Modules/selectmodule.c 1836;" d file: +KQ_OFF Modules/selectmodule.c 1846;" d file: +KRML_ACTUAL_FOR Modules/_hacl/include/krml/internal/target.h 153;" d +KRML_CHECK_SIZE Modules/_hacl/include/krml/internal/target.h 70;" d +KRML_HOST_CALLOC Modules/_hacl/include/krml/internal/target.h 49;" d +KRML_HOST_EPRINTF Modules/_hacl/include/krml/internal/target.h 35;" d +KRML_HOST_EPRINTF Modules/_hacl/include/krml/internal/target.h 37;" d +KRML_HOST_EXIT Modules/_hacl/include/krml/internal/target.h 41;" d +KRML_HOST_FREE Modules/_hacl/include/krml/internal/target.h 53;" d +KRML_HOST_IGNORE Modules/_hacl/include/krml/internal/target.h 57;" d +KRML_HOST_MALLOC Modules/_hacl/include/krml/internal/target.h 45;" d +KRML_HOST_PRINTF Modules/_hacl/include/krml/internal/target.h 29;" d +KRML_LOOP1 Modules/_hacl/include/krml/internal/target.h 83;" d +KRML_LOOP10 Modules/_hacl/include/krml/internal/target.h 120;" d +KRML_LOOP11 Modules/_hacl/include/krml/internal/target.h 124;" d +KRML_LOOP12 Modules/_hacl/include/krml/internal/target.h 128;" d +KRML_LOOP13 Modules/_hacl/include/krml/internal/target.h 132;" d +KRML_LOOP14 Modules/_hacl/include/krml/internal/target.h 136;" d +KRML_LOOP15 Modules/_hacl/include/krml/internal/target.h 140;" d +KRML_LOOP16 Modules/_hacl/include/krml/internal/target.h 144;" d +KRML_LOOP2 Modules/_hacl/include/krml/internal/target.h 88;" d +KRML_LOOP3 Modules/_hacl/include/krml/internal/target.h 92;" d +KRML_LOOP4 Modules/_hacl/include/krml/internal/target.h 96;" d +KRML_LOOP5 Modules/_hacl/include/krml/internal/target.h 100;" d +KRML_LOOP6 Modules/_hacl/include/krml/internal/target.h 104;" d +KRML_LOOP7 Modules/_hacl/include/krml/internal/target.h 108;" d +KRML_LOOP8 Modules/_hacl/include/krml/internal/target.h 112;" d +KRML_LOOP9 Modules/_hacl/include/krml/internal/target.h 116;" d +KRML_MAYBE_FOR0 Modules/_hacl/include/krml/internal/target.h 168;" d +KRML_MAYBE_FOR1 Modules/_hacl/include/krml/internal/target.h 172;" d +KRML_MAYBE_FOR1 Modules/_hacl/include/krml/internal/target.h 174;" d +KRML_MAYBE_FOR10 Modules/_hacl/include/krml/internal/target.h 226;" d +KRML_MAYBE_FOR10 Modules/_hacl/include/krml/internal/target.h 228;" d +KRML_MAYBE_FOR11 Modules/_hacl/include/krml/internal/target.h 232;" d +KRML_MAYBE_FOR11 Modules/_hacl/include/krml/internal/target.h 234;" d +KRML_MAYBE_FOR12 Modules/_hacl/include/krml/internal/target.h 238;" d +KRML_MAYBE_FOR12 Modules/_hacl/include/krml/internal/target.h 240;" d +KRML_MAYBE_FOR13 Modules/_hacl/include/krml/internal/target.h 244;" d +KRML_MAYBE_FOR13 Modules/_hacl/include/krml/internal/target.h 246;" d +KRML_MAYBE_FOR14 Modules/_hacl/include/krml/internal/target.h 250;" d +KRML_MAYBE_FOR14 Modules/_hacl/include/krml/internal/target.h 252;" d +KRML_MAYBE_FOR15 Modules/_hacl/include/krml/internal/target.h 256;" d +KRML_MAYBE_FOR15 Modules/_hacl/include/krml/internal/target.h 258;" d +KRML_MAYBE_FOR16 Modules/_hacl/include/krml/internal/target.h 262;" d +KRML_MAYBE_FOR16 Modules/_hacl/include/krml/internal/target.h 264;" d +KRML_MAYBE_FOR2 Modules/_hacl/include/krml/internal/target.h 178;" d +KRML_MAYBE_FOR2 Modules/_hacl/include/krml/internal/target.h 180;" d +KRML_MAYBE_FOR3 Modules/_hacl/include/krml/internal/target.h 184;" d +KRML_MAYBE_FOR3 Modules/_hacl/include/krml/internal/target.h 186;" d +KRML_MAYBE_FOR4 Modules/_hacl/include/krml/internal/target.h 190;" d +KRML_MAYBE_FOR4 Modules/_hacl/include/krml/internal/target.h 192;" d +KRML_MAYBE_FOR5 Modules/_hacl/include/krml/internal/target.h 196;" d +KRML_MAYBE_FOR5 Modules/_hacl/include/krml/internal/target.h 198;" d +KRML_MAYBE_FOR6 Modules/_hacl/include/krml/internal/target.h 202;" d +KRML_MAYBE_FOR6 Modules/_hacl/include/krml/internal/target.h 204;" d +KRML_MAYBE_FOR7 Modules/_hacl/include/krml/internal/target.h 208;" d +KRML_MAYBE_FOR7 Modules/_hacl/include/krml/internal/target.h 210;" d +KRML_MAYBE_FOR8 Modules/_hacl/include/krml/internal/target.h 214;" d +KRML_MAYBE_FOR8 Modules/_hacl/include/krml/internal/target.h 216;" d +KRML_MAYBE_FOR9 Modules/_hacl/include/krml/internal/target.h 220;" d +KRML_MAYBE_FOR9 Modules/_hacl/include/krml/internal/target.h 222;" d +KRML_UNROLL_FOR Modules/_hacl/include/krml/internal/target.h 148;" d +KRML_UNROLL_MAX Modules/_hacl/include/krml/internal/target.h 161;" d +KRML_VERIFIED_UINT128 Modules/_hacl/include/krml/types.h 10;" d +KSDATAFORMAT_SUBTYPE_PCM Lib/wave.py /^KSDATAFORMAT_SUBTYPE_PCM = b'\\x01\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x80\\x00\\x00\\xaa\\x008\\x9bq'$/;" v +KSX1001_C1 Tools/unicode/genmap_korean.py /^KSX1001_C1 = (0x21, 0x7e)$/;" v +KSX1001_C2 Tools/unicode/genmap_korean.py /^KSX1001_C2 = (0x21, 0x7e)$/;" v +KT Lib/typing.py /^KT = TypeVar('KT') # Key type.$/;" v +KWARGS Lib/test/test_descr.py /^ KWARGS = {'value': 3}$/;" v class:PicklingTests.test_reduce_copying.C5 +KWNAMES_LEN Python/ceval_macros.h 309;" d +KWTUPLE Lib/test/clinic.test.c 1990;" d file: +KWTUPLE Lib/test/clinic.test.c 2002;" d file: +KWTUPLE Lib/test/clinic.test.c 2060;" d file: +KWTUPLE Lib/test/clinic.test.c 2072;" d file: +KWTUPLE Lib/test/clinic.test.c 2131;" d file: +KWTUPLE Lib/test/clinic.test.c 2143;" d file: +KWTUPLE Lib/test/clinic.test.c 2217;" d file: +KWTUPLE Lib/test/clinic.test.c 2229;" d file: +KWTUPLE Lib/test/clinic.test.c 2313;" d file: +KWTUPLE Lib/test/clinic.test.c 2325;" d file: +KWTUPLE Lib/test/clinic.test.c 2396;" d file: +KWTUPLE Lib/test/clinic.test.c 2408;" d file: +KWTUPLE Lib/test/clinic.test.c 2467;" d file: +KWTUPLE Lib/test/clinic.test.c 2479;" d file: +KWTUPLE Lib/test/clinic.test.c 2540;" d file: +KWTUPLE Lib/test/clinic.test.c 2552;" d file: +KWTUPLE Lib/test/clinic.test.c 2616;" d file: +KWTUPLE Lib/test/clinic.test.c 2628;" d file: +KWTUPLE Lib/test/clinic.test.c 2703;" d file: +KWTUPLE Lib/test/clinic.test.c 2715;" d file: +KWTUPLE Lib/test/clinic.test.c 2789;" d file: +KWTUPLE Lib/test/clinic.test.c 2801;" d file: +KWTUPLE Lib/test/clinic.test.c 2883;" d file: +KWTUPLE Lib/test/clinic.test.c 2895;" d file: +KWTUPLE Lib/test/clinic.test.c 2971;" d file: +KWTUPLE Lib/test/clinic.test.c 2983;" d file: +KWTUPLE Lib/test/clinic.test.c 3058;" d file: +KWTUPLE Lib/test/clinic.test.c 3070;" d file: +KWTUPLE Lib/test/clinic.test.c 3154;" d file: +KWTUPLE Lib/test/clinic.test.c 3166;" d file: +KWTUPLE Lib/test/clinic.test.c 3246;" d file: +KWTUPLE Lib/test/clinic.test.c 3258;" d file: +KWTUPLE Lib/test/clinic.test.c 3338;" d file: +KWTUPLE Lib/test/clinic.test.c 3350;" d file: +KWTUPLE Lib/test/clinic.test.c 3442;" d file: +KWTUPLE Lib/test/clinic.test.c 3454;" d file: +KWTUPLE Lib/test/clinic.test.c 3553;" d file: +KWTUPLE Lib/test/clinic.test.c 3565;" d file: +KWTUPLE Lib/test/clinic.test.c 3662;" d file: +KWTUPLE Lib/test/clinic.test.c 3674;" d file: +KWTUPLE Lib/test/clinic.test.c 4023;" d file: +KWTUPLE Lib/test/clinic.test.c 4035;" d file: +KWTUPLE Lib/test/clinic.test.c 4095;" d file: +KWTUPLE Lib/test/clinic.test.c 4107;" d file: +KWTUPLE Lib/test/clinic.test.c 4178;" d file: +KWTUPLE Lib/test/clinic.test.c 4190;" d file: +KWTUPLE Lib/test/clinic.test.c 4261;" d file: +KWTUPLE Lib/test/clinic.test.c 4273;" d file: +KWTUPLE Lib/test/clinic.test.c 4338;" d file: +KWTUPLE Lib/test/clinic.test.c 4350;" d file: +KWTUPLE Lib/test/clinic.test.c 4425;" d file: +KWTUPLE Lib/test/clinic.test.c 4437;" d file: +KWTUPLE Lib/test/clinic.test.c 4496;" d file: +KWTUPLE Lib/test/clinic.test.c 4508;" d file: +KWTUPLE Lib/test/clinic.test.c 4844;" d file: +KWTUPLE Lib/test/clinic.test.c 4856;" d file: +KWTUPLE Modules/_blake2/clinic/blake2b_impl.c.h 43;" d +KWTUPLE Modules/_blake2/clinic/blake2b_impl.c.h 55;" d +KWTUPLE Modules/_blake2/clinic/blake2s_impl.c.h 43;" d +KWTUPLE Modules/_blake2/clinic/blake2s_impl.c.h 55;" d +KWTUPLE Modules/_io/clinic/_iomodule.c.h 154;" d +KWTUPLE Modules/_io/clinic/_iomodule.c.h 166;" d +KWTUPLE Modules/_io/clinic/_iomodule.c.h 377;" d +KWTUPLE Modules/_io/clinic/_iomodule.c.h 389;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 1055;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 1067;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 143;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 154;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 197;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 208;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 254;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 265;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 751;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 762;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 807;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 819;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 884;" d +KWTUPLE Modules/_io/clinic/bufferedio.c.h 896;" d +KWTUPLE Modules/_io/clinic/bytesio.c.h 508;" d +KWTUPLE Modules/_io/clinic/bytesio.c.h 520;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 228;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 239;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 309;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 320;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 362;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 373;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 486;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 497;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 74;" d +KWTUPLE Modules/_io/clinic/fileio.c.h 86;" d +KWTUPLE Modules/_io/clinic/iobase.c.h 120;" d +KWTUPLE Modules/_io/clinic/iobase.c.h 131;" d +KWTUPLE Modules/_io/clinic/iobase.c.h 43;" d +KWTUPLE Modules/_io/clinic/iobase.c.h 54;" d +KWTUPLE Modules/_io/clinic/stringio.c.h 276;" d +KWTUPLE Modules/_io/clinic/stringio.c.h 288;" d +KWTUPLE Modules/_io/clinic/textio.c.h 110;" d +KWTUPLE Modules/_io/clinic/textio.c.h 121;" d +KWTUPLE Modules/_io/clinic/textio.c.h 164;" d +KWTUPLE Modules/_io/clinic/textio.c.h 175;" d +KWTUPLE Modules/_io/clinic/textio.c.h 236;" d +KWTUPLE Modules/_io/clinic/textio.c.h 248;" d +KWTUPLE Modules/_io/clinic/textio.c.h 305;" d +KWTUPLE Modules/_io/clinic/textio.c.h 317;" d +KWTUPLE Modules/_io/clinic/textio.c.h 440;" d +KWTUPLE Modules/_io/clinic/textio.c.h 452;" d +KWTUPLE Modules/_io/clinic/textio.c.h 56;" d +KWTUPLE Modules/_io/clinic/textio.c.h 578;" d +KWTUPLE Modules/_io/clinic/textio.c.h 590;" d +KWTUPLE Modules/_io/clinic/textio.c.h 67;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 226;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 237;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 315;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 326;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 372;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 383;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 73;" d +KWTUPLE Modules/_io/clinic/winconsoleio.c.h 85;" d +KWTUPLE Modules/_multiprocessing/clinic/posixshmem.c.h 132;" d +KWTUPLE Modules/_multiprocessing/clinic/posixshmem.c.h 144;" d +KWTUPLE Modules/_multiprocessing/clinic/posixshmem.c.h 42;" d +KWTUPLE Modules/_multiprocessing/clinic/posixshmem.c.h 54;" d +KWTUPLE Modules/_multiprocessing/clinic/semaphore.c.h 139;" d +KWTUPLE Modules/_multiprocessing/clinic/semaphore.c.h 151;" d +KWTUPLE Modules/_multiprocessing/clinic/semaphore.c.h 227;" d +KWTUPLE Modules/_multiprocessing/clinic/semaphore.c.h 239;" d +KWTUPLE Modules/_multiprocessing/clinic/semaphore.c.h 42;" d +KWTUPLE Modules/_multiprocessing/clinic/semaphore.c.h 54;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1099;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1111;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1202;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1213;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1280;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1292;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1369;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 1381;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 177;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 189;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 249;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 261;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 35;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 426;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 438;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 47;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 512;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 523;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 590;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 602;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 666;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 678;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 723;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 735;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 785;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 797;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 877;" d +KWTUPLE Modules/_sqlite/clinic/connection.c.h 889;" d +KWTUPLE Modules/_sqlite/clinic/cursor.c.h 208;" d +KWTUPLE Modules/_sqlite/clinic/cursor.c.h 220;" d +KWTUPLE Modules/_sqlite/clinic/module.c.h 39;" d +KWTUPLE Modules/_sqlite/clinic/module.c.h 51;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1008;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1020;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1138;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1150;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1196;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1208;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1259;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 1271;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 196;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 208;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 289;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 301;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 384;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 396;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 476;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 488;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 571;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 583;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 663;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 675;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 755;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 767;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 829;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 841;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 906;" d +KWTUPLE Modules/_sre/clinic/sre.c.h 918;" d +KWTUPLE Modules/_ssl/clinic/cert.c.h 38;" d +KWTUPLE Modules/_ssl/clinic/cert.c.h 50;" d +KWTUPLE Modules/_testcapi/clinic/exceptions.c.h 87;" d +KWTUPLE Modules/_testcapi/clinic/exceptions.c.h 99;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 132;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 144;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 223;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 235;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 352;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 364;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 46;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 58;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 594;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 605;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 638;" d +KWTUPLE Modules/cjkcodecs/clinic/multibytecodec.c.h 649;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1051;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1063;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1108;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1120;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1165;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1177;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1222;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1234;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1281;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1293;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1342;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1354;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1402;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1414;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1459;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 1471;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 151;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 162;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 198;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 209;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 257;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 269;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 311;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 322;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 370;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 382;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 47;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 511;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 523;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 59;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 639;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 651;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 762;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 774;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 829;" d +KWTUPLE Modules/clinic/_asynciomodule.c.h 841;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 157;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 169;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 262;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 274;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 370;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 382;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 49;" d +KWTUPLE Modules/clinic/_bisectmodule.c.h 61;" d +KWTUPLE Modules/clinic/_bz2module.c.h 158;" d +KWTUPLE Modules/clinic/_bz2module.c.h 170;" d +KWTUPLE Modules/clinic/_codecsmodule.c.h 107;" d +KWTUPLE Modules/clinic/_codecsmodule.c.h 119;" d +KWTUPLE Modules/clinic/_codecsmodule.c.h 207;" d +KWTUPLE Modules/clinic/_codecsmodule.c.h 219;" d +KWTUPLE Modules/clinic/_csv.c.h 118;" d +KWTUPLE Modules/clinic/_csv.c.h 130;" d +KWTUPLE Modules/clinic/_csv.c.h 178;" d +KWTUPLE Modules/clinic/_csv.c.h 190;" d +KWTUPLE Modules/clinic/_csv.c.h 61;" d +KWTUPLE Modules/clinic/_csv.c.h 73;" d +KWTUPLE Modules/clinic/_curses_panel.c.h 173;" d +KWTUPLE Modules/clinic/_curses_panel.c.h 184;" d +KWTUPLE Modules/clinic/_curses_panel.c.h 244;" d +KWTUPLE Modules/clinic/_curses_panel.c.h 255;" d +KWTUPLE Modules/clinic/_curses_panel.c.h 292;" d +KWTUPLE Modules/clinic/_curses_panel.c.h 303;" d +KWTUPLE Modules/clinic/_cursesmodule.c.h 2699;" d +KWTUPLE Modules/clinic/_cursesmodule.c.h 2711;" d +KWTUPLE Modules/clinic/_datetimemodule.c.h 118;" d +KWTUPLE Modules/clinic/_datetimemodule.c.h 130;" d +KWTUPLE Modules/clinic/_datetimemodule.c.h 43;" d +KWTUPLE Modules/clinic/_datetimemodule.c.h 55;" d +KWTUPLE Modules/clinic/_dbmmodule.c.h 115;" d +KWTUPLE Modules/clinic/_dbmmodule.c.h 126;" d +KWTUPLE Modules/clinic/_dbmmodule.c.h 69;" d +KWTUPLE Modules/clinic/_dbmmodule.c.h 80;" d +KWTUPLE Modules/clinic/_elementtree.c.h 1096;" d +KWTUPLE Modules/clinic/_elementtree.c.h 1108;" d +KWTUPLE Modules/clinic/_elementtree.c.h 185;" d +KWTUPLE Modules/clinic/_elementtree.c.h 196;" d +KWTUPLE Modules/clinic/_elementtree.c.h 228;" d +KWTUPLE Modules/clinic/_elementtree.c.h 239;" d +KWTUPLE Modules/clinic/_elementtree.c.h 282;" d +KWTUPLE Modules/clinic/_elementtree.c.h 28;" d +KWTUPLE Modules/clinic/_elementtree.c.h 294;" d +KWTUPLE Modules/clinic/_elementtree.c.h 345;" d +KWTUPLE Modules/clinic/_elementtree.c.h 357;" d +KWTUPLE Modules/clinic/_elementtree.c.h 39;" d +KWTUPLE Modules/clinic/_elementtree.c.h 414;" d +KWTUPLE Modules/clinic/_elementtree.c.h 426;" d +KWTUPLE Modules/clinic/_elementtree.c.h 476;" d +KWTUPLE Modules/clinic/_elementtree.c.h 488;" d +KWTUPLE Modules/clinic/_elementtree.c.h 538;" d +KWTUPLE Modules/clinic/_elementtree.c.h 550;" d +KWTUPLE Modules/clinic/_elementtree.c.h 600;" d +KWTUPLE Modules/clinic/_elementtree.c.h 612;" d +KWTUPLE Modules/clinic/_elementtree.c.h 749;" d +KWTUPLE Modules/clinic/_elementtree.c.h 760;" d +KWTUPLE Modules/clinic/_elementtree.c.h 862;" d +KWTUPLE Modules/clinic/_elementtree.c.h 874;" d +KWTUPLE Modules/clinic/_functoolsmodule.c.h 42;" d +KWTUPLE Modules/clinic/_functoolsmodule.c.h 54;" d +KWTUPLE Modules/clinic/_gdbmmodule.c.h 172;" d +KWTUPLE Modules/clinic/_gdbmmodule.c.h 183;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1014;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1026;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 104;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1093;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1105;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 116;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1172;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1184;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1251;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1263;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1360;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1372;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1499;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1511;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1580;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1592;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1678;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 1690;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 174;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 186;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 248;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 260;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 325;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 337;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 400;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 412;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 475;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 487;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 550;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 562;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 625;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 637;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 700;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 712;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 777;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 789;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 856;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 868;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 935;" d +KWTUPLE Modules/clinic/_hashopenssl.c.h 947;" d +KWTUPLE Modules/clinic/_lzmamodule.c.h 116;" d +KWTUPLE Modules/clinic/_lzmamodule.c.h 128;" d +KWTUPLE Modules/clinic/_lzmamodule.c.h 215;" d +KWTUPLE Modules/clinic/_lzmamodule.c.h 227;" d +KWTUPLE Modules/clinic/_opcode.c.h 40;" d +KWTUPLE Modules/clinic/_opcode.c.h 52;" d +KWTUPLE Modules/clinic/_pickle.c.h 162;" d +KWTUPLE Modules/clinic/_pickle.c.h 174;" d +KWTUPLE Modules/clinic/_pickle.c.h 321;" d +KWTUPLE Modules/clinic/_pickle.c.h 332;" d +KWTUPLE Modules/clinic/_pickle.c.h 424;" d +KWTUPLE Modules/clinic/_pickle.c.h 436;" d +KWTUPLE Modules/clinic/_pickle.c.h 52;" d +KWTUPLE Modules/clinic/_pickle.c.h 618;" d +KWTUPLE Modules/clinic/_pickle.c.h 630;" d +KWTUPLE Modules/clinic/_pickle.c.h 63;" d +KWTUPLE Modules/clinic/_pickle.c.h 722;" d +KWTUPLE Modules/clinic/_pickle.c.h 734;" d +KWTUPLE Modules/clinic/_pickle.c.h 830;" d +KWTUPLE Modules/clinic/_pickle.c.h 842;" d +KWTUPLE Modules/clinic/_pickle.c.h 956;" d +KWTUPLE Modules/clinic/_pickle.c.h 968;" d +KWTUPLE Modules/clinic/_queuemodule.c.h 147;" d +KWTUPLE Modules/clinic/_queuemodule.c.h 159;" d +KWTUPLE Modules/clinic/_queuemodule.c.h 211;" d +KWTUPLE Modules/clinic/_queuemodule.c.h 223;" d +KWTUPLE Modules/clinic/_queuemodule.c.h 72;" d +KWTUPLE Modules/clinic/_queuemodule.c.h 84;" d +KWTUPLE Modules/clinic/_ssl.c.h 1001;" d +KWTUPLE Modules/clinic/_ssl.c.h 1308;" d +KWTUPLE Modules/clinic/_ssl.c.h 1320;" d +KWTUPLE Modules/clinic/_ssl.c.h 1421;" d +KWTUPLE Modules/clinic/_ssl.c.h 1433;" d +KWTUPLE Modules/clinic/_ssl.c.h 1497;" d +KWTUPLE Modules/clinic/_ssl.c.h 1509;" d +KWTUPLE Modules/clinic/_ssl.c.h 369;" d +KWTUPLE Modules/clinic/_ssl.c.h 381;" d +KWTUPLE Modules/clinic/_ssl.c.h 575;" d +KWTUPLE Modules/clinic/_ssl.c.h 587;" d +KWTUPLE Modules/clinic/_ssl.c.h 646;" d +KWTUPLE Modules/clinic/_ssl.c.h 658;" d +KWTUPLE Modules/clinic/_ssl.c.h 730;" d +KWTUPLE Modules/clinic/_ssl.c.h 742;" d +KWTUPLE Modules/clinic/_ssl.c.h 822;" d +KWTUPLE Modules/clinic/_ssl.c.h 834;" d +KWTUPLE Modules/clinic/_ssl.c.h 989;" d +KWTUPLE Modules/clinic/_struct.c.h 147;" d +KWTUPLE Modules/clinic/_struct.c.h 159;" d +KWTUPLE Modules/clinic/_struct.c.h 352;" d +KWTUPLE Modules/clinic/_struct.c.h 364;" d +KWTUPLE Modules/clinic/_struct.c.h 41;" d +KWTUPLE Modules/clinic/_struct.c.h 53;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1269;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1281;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1325;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1337;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1381;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1393;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1450;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1462;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1530;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1542;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1598;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1610;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1654;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1666;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1711;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1723;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1770;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1782;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1841;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1853;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1917;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1929;" d +KWTUPLE Modules/clinic/_testclinic.c.h 1988;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2000;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2064;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2076;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2139;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2151;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2223;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2235;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2302;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2314;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2357;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2369;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2452;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2464;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2510;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2522;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2577;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2589;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2641;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2653;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2716;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2728;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2848;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2860;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2914;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2926;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2980;" d +KWTUPLE Modules/clinic/_testclinic.c.h 2992;" d +KWTUPLE Modules/clinic/_testclinic.c.h 3043;" d +KWTUPLE Modules/clinic/_testclinic.c.h 3055;" d +KWTUPLE Modules/clinic/_testinternalcapi.c.h 114;" d +KWTUPLE Modules/clinic/_testinternalcapi.c.h 126;" d +KWTUPLE Modules/clinic/_testinternalcapi.c.h 179;" d +KWTUPLE Modules/clinic/_testinternalcapi.c.h 191;" d +KWTUPLE Modules/clinic/_testinternalcapi.c.h 41;" d +KWTUPLE Modules/clinic/_testinternalcapi.c.h 53;" d +KWTUPLE Modules/clinic/_testmultiphase.c.h 106;" d +KWTUPLE Modules/clinic/_testmultiphase.c.h 94;" d +KWTUPLE Modules/clinic/_winapi.c.h 1212;" d +KWTUPLE Modules/clinic/_winapi.c.h 1224;" d +KWTUPLE Modules/clinic/_winapi.c.h 127;" d +KWTUPLE Modules/clinic/_winapi.c.h 1284;" d +KWTUPLE Modules/clinic/_winapi.c.h 1296;" d +KWTUPLE Modules/clinic/_winapi.c.h 1346;" d +KWTUPLE Modules/clinic/_winapi.c.h 1358;" d +KWTUPLE Modules/clinic/_winapi.c.h 139;" d +KWTUPLE Modules/clinic/_winapi.c.h 1450;" d +KWTUPLE Modules/clinic/_winapi.c.h 1462;" d +KWTUPLE Modules/clinic/_winapi.c.h 906;" d +KWTUPLE Modules/clinic/_winapi.c.h 918;" d +KWTUPLE Modules/clinic/_winapi.c.h 964;" d +KWTUPLE Modules/clinic/_winapi.c.h 976;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 103;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 115;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 159;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 171;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 209;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 220;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 252;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 263;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 296;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 307;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 340;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 351;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 40;" d +KWTUPLE Modules/clinic/_zoneinfo.c.h 52;" d +KWTUPLE Modules/clinic/arraymodule.c.h 164;" d +KWTUPLE Modules/clinic/arraymodule.c.h 175;" d +KWTUPLE Modules/clinic/arraymodule.c.h 318;" d +KWTUPLE Modules/clinic/arraymodule.c.h 329;" d +KWTUPLE Modules/clinic/arraymodule.c.h 374;" d +KWTUPLE Modules/clinic/arraymodule.c.h 385;" d +KWTUPLE Modules/clinic/arraymodule.c.h 627;" d +KWTUPLE Modules/clinic/arraymodule.c.h 638;" d +KWTUPLE Modules/clinic/binascii.c.h 150;" d +KWTUPLE Modules/clinic/binascii.c.h 162;" d +KWTUPLE Modules/clinic/binascii.c.h 221;" d +KWTUPLE Modules/clinic/binascii.c.h 233;" d +KWTUPLE Modules/clinic/binascii.c.h 412;" d +KWTUPLE Modules/clinic/binascii.c.h 424;" d +KWTUPLE Modules/clinic/binascii.c.h 505;" d +KWTUPLE Modules/clinic/binascii.c.h 517;" d +KWTUPLE Modules/clinic/binascii.c.h 655;" d +KWTUPLE Modules/clinic/binascii.c.h 667;" d +KWTUPLE Modules/clinic/binascii.c.h 70;" d +KWTUPLE Modules/clinic/binascii.c.h 731;" d +KWTUPLE Modules/clinic/binascii.c.h 743;" d +KWTUPLE Modules/clinic/binascii.c.h 82;" d +KWTUPLE Modules/clinic/cmathmodule.c.h 914;" d +KWTUPLE Modules/clinic/cmathmodule.c.h 926;" d +KWTUPLE Modules/clinic/gcmodule.c.h 109;" d +KWTUPLE Modules/clinic/gcmodule.c.h 121;" d +KWTUPLE Modules/clinic/gcmodule.c.h 286;" d +KWTUPLE Modules/clinic/gcmodule.c.h 298;" d +KWTUPLE Modules/clinic/grpmodule.c.h 110;" d +KWTUPLE Modules/clinic/grpmodule.c.h 41;" d +KWTUPLE Modules/clinic/grpmodule.c.h 53;" d +KWTUPLE Modules/clinic/grpmodule.c.h 98;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 154;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 166;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 48;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 500;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 512;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 571;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 583;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 60;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 641;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 653;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 703;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 715;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 778;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 790;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 876;" d +KWTUPLE Modules/clinic/itertoolsmodule.c.h 888;" d +KWTUPLE Modules/clinic/mathmodule.c.h 593;" d +KWTUPLE Modules/clinic/mathmodule.c.h 605;" d +KWTUPLE Modules/clinic/mathmodule.c.h 711;" d +KWTUPLE Modules/clinic/mathmodule.c.h 723;" d +KWTUPLE Modules/clinic/mathmodule.c.h 861;" d +KWTUPLE Modules/clinic/mathmodule.c.h 873;" d +KWTUPLE Modules/clinic/md5module.c.h 106;" d +KWTUPLE Modules/clinic/md5module.c.h 118;" d +KWTUPLE Modules/clinic/overlapped.c.h 467;" d +KWTUPLE Modules/clinic/overlapped.c.h 479;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10021;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10033;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1003;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10139;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10151;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1015;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10213;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10225;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10284;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10296;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10345;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10357;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10759;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10771;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10823;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10835;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1086;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10892;" d +KWTUPLE Modules/clinic/posixmodule.c.h 10904;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1098;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11002;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11014;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11071;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11083;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11128;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11140;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11215;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11227;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11283;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11295;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11354;" d +KWTUPLE Modules/clinic/posixmodule.c.h 11366;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1172;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1184;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1265;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1277;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1338;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1350;" d +KWTUPLE Modules/clinic/posixmodule.c.h 140;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1458;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1470;" d +KWTUPLE Modules/clinic/posixmodule.c.h 152;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1565;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1577;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1682;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1694;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1746;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1758;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1877;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1889;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1941;" d +KWTUPLE Modules/clinic/posixmodule.c.h 1953;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2005;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2017;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2064;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2076;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2123;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2135;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2182;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2194;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2239;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2251;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2302;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2314;" d +KWTUPLE Modules/clinic/posixmodule.c.h 236;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2419;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2431;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2486;" d +KWTUPLE Modules/clinic/posixmodule.c.h 248;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2498;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2563;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2575;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2654;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2666;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2743;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2755;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2814;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2826;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2888;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2900;" d +KWTUPLE Modules/clinic/posixmodule.c.h 2992;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3004;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3066;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3078;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3184;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3196;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3281;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3293;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3392;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3404;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3487;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3499;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3637;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3649;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3880;" d +KWTUPLE Modules/clinic/posixmodule.c.h 3892;" d +KWTUPLE Modules/clinic/posixmodule.c.h 396;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4006;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4018;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4068;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4080;" d +KWTUPLE Modules/clinic/posixmodule.c.h 408;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4163;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4175;" d +KWTUPLE Modules/clinic/posixmodule.c.h 461;" d +KWTUPLE Modules/clinic/posixmodule.c.h 473;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4855;" d +KWTUPLE Modules/clinic/posixmodule.c.h 4867;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5339;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5351;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5404;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5416;" d +KWTUPLE Modules/clinic/posixmodule.c.h 544;" d +KWTUPLE Modules/clinic/posixmodule.c.h 556;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5611;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5623;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5674;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5686;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5748;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5760;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5816;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5828;" d +KWTUPLE Modules/clinic/posixmodule.c.h 58;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5900;" d +KWTUPLE Modules/clinic/posixmodule.c.h 5912;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6173;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6185;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6266;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6278;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6395;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6407;" d +KWTUPLE Modules/clinic/posixmodule.c.h 640;" d +KWTUPLE Modules/clinic/posixmodule.c.h 652;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6856;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6868;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6958;" d +KWTUPLE Modules/clinic/posixmodule.c.h 6970;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7067;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7079;" d +KWTUPLE Modules/clinic/posixmodule.c.h 70;" d +KWTUPLE Modules/clinic/posixmodule.c.h 710;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7195;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7207;" d +KWTUPLE Modules/clinic/posixmodule.c.h 722;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7547;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7559;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7661;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7673;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7769;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7781;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7869;" d +KWTUPLE Modules/clinic/posixmodule.c.h 786;" d +KWTUPLE Modules/clinic/posixmodule.c.h 7881;" d +KWTUPLE Modules/clinic/posixmodule.c.h 798;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8124;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8136;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8525;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8537;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8592;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8604;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8659;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8671;" d +KWTUPLE Modules/clinic/posixmodule.c.h 869;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8726;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8738;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8793;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8805;" d +KWTUPLE Modules/clinic/posixmodule.c.h 881;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8860;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8872;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8927;" d +KWTUPLE Modules/clinic/posixmodule.c.h 8939;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9032;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9044;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9096;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9108;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9209;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9221;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9398;" d +KWTUPLE Modules/clinic/posixmodule.c.h 939;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9410;" d +KWTUPLE Modules/clinic/posixmodule.c.h 951;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9542;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9554;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9736;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9748;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9823;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9835;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9935;" d +KWTUPLE Modules/clinic/posixmodule.c.h 9947;" d +KWTUPLE Modules/clinic/pyexpat.c.h 207;" d +KWTUPLE Modules/clinic/pyexpat.c.h 218;" d +KWTUPLE Modules/clinic/pyexpat.c.h 31;" d +KWTUPLE Modules/clinic/pyexpat.c.h 325;" d +KWTUPLE Modules/clinic/pyexpat.c.h 336;" d +KWTUPLE Modules/clinic/pyexpat.c.h 390;" d +KWTUPLE Modules/clinic/pyexpat.c.h 402;" d +KWTUPLE Modules/clinic/pyexpat.c.h 42;" d +KWTUPLE Modules/clinic/pyexpat.c.h 84;" d +KWTUPLE Modules/clinic/pyexpat.c.h 95;" d +KWTUPLE Modules/clinic/selectmodule.c.h 543;" d +KWTUPLE Modules/clinic/selectmodule.c.h 555;" d +KWTUPLE Modules/clinic/selectmodule.c.h 709;" d +KWTUPLE Modules/clinic/selectmodule.c.h 721;" d +KWTUPLE Modules/clinic/selectmodule.c.h 786;" d +KWTUPLE Modules/clinic/selectmodule.c.h 798;" d +KWTUPLE Modules/clinic/selectmodule.c.h 855;" d +KWTUPLE Modules/clinic/selectmodule.c.h 867;" d +KWTUPLE Modules/clinic/selectmodule.c.h 926;" d +KWTUPLE Modules/clinic/selectmodule.c.h 938;" d +KWTUPLE Modules/clinic/sha1module.c.h 106;" d +KWTUPLE Modules/clinic/sha1module.c.h 118;" d +KWTUPLE Modules/clinic/sha2module.c.h 173;" d +KWTUPLE Modules/clinic/sha2module.c.h 185;" d +KWTUPLE Modules/clinic/sha2module.c.h 247;" d +KWTUPLE Modules/clinic/sha2module.c.h 259;" d +KWTUPLE Modules/clinic/sha2module.c.h 321;" d +KWTUPLE Modules/clinic/sha2module.c.h 333;" d +KWTUPLE Modules/clinic/sha2module.c.h 395;" d +KWTUPLE Modules/clinic/sha2module.c.h 407;" d +KWTUPLE Modules/clinic/sha3module.c.h 36;" d +KWTUPLE Modules/clinic/sha3module.c.h 48;" d +KWTUPLE Modules/clinic/socketmodule.c.h 31;" d +KWTUPLE Modules/clinic/socketmodule.c.h 43;" d +KWTUPLE Modules/clinic/syslogmodule.c.h 41;" d +KWTUPLE Modules/clinic/syslogmodule.c.h 53;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 140;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 152;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 259;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 271;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 386;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 398;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 453;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 464;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 46;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 530;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 542;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 58;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 609;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 620;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 712;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 723;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 810;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 821;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 859;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 870;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 942;" d +KWTUPLE Modules/clinic/zlibmodule.c.h 954;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 1063;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 1075;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 1178;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 1190;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 254;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 266;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 31;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 43;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 457;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 469;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 579;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 591;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 956;" d +KWTUPLE Objects/clinic/bytearrayobject.c.h 968;" d +KWTUPLE Objects/clinic/bytesobject.c.h 1007;" d +KWTUPLE Objects/clinic/bytesobject.c.h 239;" d +KWTUPLE Objects/clinic/bytesobject.c.h 251;" d +KWTUPLE Objects/clinic/bytesobject.c.h 441;" d +KWTUPLE Objects/clinic/bytesobject.c.h 453;" d +KWTUPLE Objects/clinic/bytesobject.c.h 65;" d +KWTUPLE Objects/clinic/bytesobject.c.h 724;" d +KWTUPLE Objects/clinic/bytesobject.c.h 736;" d +KWTUPLE Objects/clinic/bytesobject.c.h 77;" d +KWTUPLE Objects/clinic/bytesobject.c.h 818;" d +KWTUPLE Objects/clinic/bytesobject.c.h 830;" d +KWTUPLE Objects/clinic/bytesobject.c.h 933;" d +KWTUPLE Objects/clinic/bytesobject.c.h 945;" d +KWTUPLE Objects/clinic/bytesobject.c.h 995;" d +KWTUPLE Objects/clinic/codeobject.c.h 201;" d +KWTUPLE Objects/clinic/codeobject.c.h 213;" d +KWTUPLE Objects/clinic/codeobject.c.h 456;" d +KWTUPLE Objects/clinic/codeobject.c.h 468;" d +KWTUPLE Objects/clinic/complexobject.c.h 123;" d +KWTUPLE Objects/clinic/complexobject.c.h 135;" d +KWTUPLE Objects/clinic/descrobject.c.h 116;" d +KWTUPLE Objects/clinic/descrobject.c.h 128;" d +KWTUPLE Objects/clinic/descrobject.c.h 30;" d +KWTUPLE Objects/clinic/descrobject.c.h 42;" d +KWTUPLE Objects/clinic/enumobject.c.h 45;" d +KWTUPLE Objects/clinic/enumobject.c.h 57;" d +KWTUPLE Objects/clinic/funcobject.c.h 48;" d +KWTUPLE Objects/clinic/funcobject.c.h 60;" d +KWTUPLE Objects/clinic/listobject.c.h 187;" d +KWTUPLE Objects/clinic/listobject.c.h 199;" d +KWTUPLE Objects/clinic/longobject.c.h 301;" d +KWTUPLE Objects/clinic/longobject.c.h 30;" d +KWTUPLE Objects/clinic/longobject.c.h 313;" d +KWTUPLE Objects/clinic/longobject.c.h 415;" d +KWTUPLE Objects/clinic/longobject.c.h 427;" d +KWTUPLE Objects/clinic/longobject.c.h 42;" d +KWTUPLE Objects/clinic/memoryobject.c.h 105;" d +KWTUPLE Objects/clinic/memoryobject.c.h 172;" d +KWTUPLE Objects/clinic/memoryobject.c.h 184;" d +KWTUPLE Objects/clinic/memoryobject.c.h 283;" d +KWTUPLE Objects/clinic/memoryobject.c.h 295;" d +KWTUPLE Objects/clinic/memoryobject.c.h 36;" d +KWTUPLE Objects/clinic/memoryobject.c.h 378;" d +KWTUPLE Objects/clinic/memoryobject.c.h 390;" d +KWTUPLE Objects/clinic/memoryobject.c.h 48;" d +KWTUPLE Objects/clinic/memoryobject.c.h 93;" d +KWTUPLE Objects/clinic/moduleobject.c.h 38;" d +KWTUPLE Objects/clinic/moduleobject.c.h 50;" d +KWTUPLE Objects/clinic/odictobject.c.h 104;" d +KWTUPLE Objects/clinic/odictobject.c.h 116;" d +KWTUPLE Objects/clinic/odictobject.c.h 170;" d +KWTUPLE Objects/clinic/odictobject.c.h 182;" d +KWTUPLE Objects/clinic/odictobject.c.h 234;" d +KWTUPLE Objects/clinic/odictobject.c.h 246;" d +KWTUPLE Objects/clinic/odictobject.c.h 299;" d +KWTUPLE Objects/clinic/odictobject.c.h 311;" d +KWTUPLE Objects/clinic/odictobject.c.h 39;" d +KWTUPLE Objects/clinic/odictobject.c.h 51;" d +KWTUPLE Objects/clinic/structseq.c.h 30;" d +KWTUPLE Objects/clinic/structseq.c.h 42;" d +KWTUPLE Objects/clinic/typevarobject.c.h 139;" d +KWTUPLE Objects/clinic/typevarobject.c.h 151;" d +KWTUPLE Objects/clinic/typevarobject.c.h 208;" d +KWTUPLE Objects/clinic/typevarobject.c.h 220;" d +KWTUPLE Objects/clinic/typevarobject.c.h 262;" d +KWTUPLE Objects/clinic/typevarobject.c.h 274;" d +KWTUPLE Objects/clinic/typevarobject.c.h 318;" d +KWTUPLE Objects/clinic/typevarobject.c.h 330;" d +KWTUPLE Objects/clinic/typevarobject.c.h 39;" d +KWTUPLE Objects/clinic/typevarobject.c.h 415;" d +KWTUPLE Objects/clinic/typevarobject.c.h 427;" d +KWTUPLE Objects/clinic/typevarobject.c.h 470;" d +KWTUPLE Objects/clinic/typevarobject.c.h 482;" d +KWTUPLE Objects/clinic/typevarobject.c.h 51;" d +KWTUPLE Objects/clinic/typevarobject.c.h 541;" d +KWTUPLE Objects/clinic/typevarobject.c.h 553;" d +KWTUPLE Objects/clinic/typevarobject.c.h 601;" d +KWTUPLE Objects/clinic/typevarobject.c.h 613;" d +KWTUPLE Objects/clinic/typevarobject.c.h 656;" d +KWTUPLE Objects/clinic/typevarobject.c.h 668;" d +KWTUPLE Objects/clinic/typevarobject.c.h 745;" d +KWTUPLE Objects/clinic/typevarobject.c.h 757;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 1091;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 1103;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 1172;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 1184;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 1429;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 1441;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 175;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 187;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 268;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 280;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 969;" d +KWTUPLE Objects/clinic/unicodeobject.c.h 981;" d +KWTUPLE Objects/stringlib/clinic/transmogrify.h.h 41;" d +KWTUPLE Objects/stringlib/clinic/transmogrify.h.h 53;" d +KWTUPLE PC/clinic/_testconsole.c.h 107;" d +KWTUPLE PC/clinic/_testconsole.c.h 119;" d +KWTUPLE PC/clinic/_testconsole.c.h 42;" d +KWTUPLE PC/clinic/_testconsole.c.h 54;" d +KWTUPLE PC/clinic/_wmimodule.cpp.h 42;" d +KWTUPLE PC/clinic/_wmimodule.cpp.h 54;" d +KWTUPLE PC/clinic/winreg.c.h 1094;" d +KWTUPLE PC/clinic/winreg.c.h 1106;" d +KWTUPLE PC/clinic/winreg.c.h 122;" d +KWTUPLE PC/clinic/winreg.c.h 134;" d +KWTUPLE PC/clinic/winreg.c.h 360;" d +KWTUPLE PC/clinic/winreg.c.h 372;" d +KWTUPLE PC/clinic/winreg.c.h 545;" d +KWTUPLE PC/clinic/winreg.c.h 557;" d +KWTUPLE PC/clinic/winreg.c.h 977;" d +KWTUPLE PC/clinic/winreg.c.h 989;" d +KWTUPLE PC/clinic/winsound.c.h 110;" d +KWTUPLE PC/clinic/winsound.c.h 122;" d +KWTUPLE PC/clinic/winsound.c.h 175;" d +KWTUPLE PC/clinic/winsound.c.h 187;" d +KWTUPLE PC/clinic/winsound.c.h 44;" d +KWTUPLE PC/clinic/winsound.c.h 56;" d +KWTUPLE Python/clinic/Python-tokenize.c.h 31;" d +KWTUPLE Python/clinic/Python-tokenize.c.h 43;" d +KWTUPLE Python/clinic/_warnings.c.h 162;" d +KWTUPLE Python/clinic/_warnings.c.h 174;" d +KWTUPLE Python/clinic/_warnings.c.h 55;" d +KWTUPLE Python/clinic/_warnings.c.h 67;" d +KWTUPLE Python/clinic/bltinmodule.c.h 1007;" d +KWTUPLE Python/clinic/bltinmodule.c.h 1069;" d +KWTUPLE Python/clinic/bltinmodule.c.h 1081;" d +KWTUPLE Python/clinic/bltinmodule.c.h 1208;" d +KWTUPLE Python/clinic/bltinmodule.c.h 1220;" d +KWTUPLE Python/clinic/bltinmodule.c.h 1309;" d +KWTUPLE Python/clinic/bltinmodule.c.h 1321;" d +KWTUPLE Python/clinic/bltinmodule.c.h 300;" d +KWTUPLE Python/clinic/bltinmodule.c.h 312;" d +KWTUPLE Python/clinic/bltinmodule.c.h 545;" d +KWTUPLE Python/clinic/bltinmodule.c.h 557;" d +KWTUPLE Python/clinic/bltinmodule.c.h 55;" d +KWTUPLE Python/clinic/bltinmodule.c.h 67;" d +KWTUPLE Python/clinic/bltinmodule.c.h 995;" d +KWTUPLE Python/clinic/import.c.h 214;" d +KWTUPLE Python/clinic/import.c.h 226;" d +KWTUPLE Python/clinic/import.c.h 601;" d +KWTUPLE Python/clinic/import.c.h 613;" d +KWTUPLE Python/clinic/sysmodule.c.h 1340;" d +KWTUPLE Python/clinic/sysmodule.c.h 1352;" d +KWTUPLE Python/clinic/sysmodule.c.h 39;" d +KWTUPLE Python/clinic/sysmodule.c.h 493;" d +KWTUPLE Python/clinic/sysmodule.c.h 505;" d +KWTUPLE Python/clinic/sysmodule.c.h 51;" d +KWTUPLE Python/clinic/sysmodule.c.h 794;" d +KWTUPLE Python/clinic/sysmodule.c.h 806;" d +KWTUPLE Python/clinic/traceback.c.h 37;" d +KWTUPLE Python/clinic/traceback.c.h 49;" d +KW_ANY Modules/expat/xmlrole.c /^static const char KW_ANY[] = {ASCII_A, ASCII_N, ASCII_Y, '\\0'};$/;" v file: +KW_ATTLIST Modules/expat/xmlrole.c /^static const char KW_ATTLIST[]$/;" v file: +KW_CDATA Modules/expat/xmlrole.c /^static const char KW_CDATA[]$/;" v file: +KW_DOCTYPE Modules/expat/xmlrole.c /^static const char KW_DOCTYPE[]$/;" v file: +KW_ELEMENT Modules/expat/xmlrole.c /^static const char KW_ELEMENT[]$/;" v file: +KW_EMPTY Modules/expat/xmlrole.c /^static const char KW_EMPTY[]$/;" v file: +KW_ENTITIES Modules/expat/xmlrole.c /^static const char KW_ENTITIES[] = {ASCII_E, ASCII_N, ASCII_T, ASCII_I, ASCII_T,$/;" v file: +KW_ENTITY Modules/expat/xmlrole.c /^static const char KW_ENTITY[]$/;" v file: +KW_FIXED Modules/expat/xmlrole.c /^static const char KW_FIXED[]$/;" v file: +KW_ID Modules/expat/xmlrole.c /^static const char KW_ID[] = {ASCII_I, ASCII_D, '\\0'};$/;" v file: +KW_IDREF Modules/expat/xmlrole.c /^static const char KW_IDREF[]$/;" v file: +KW_IDREFS Modules/expat/xmlrole.c /^static const char KW_IDREFS[]$/;" v file: +KW_IGNORE Modules/expat/xmlrole.c /^static const char KW_IGNORE[]$/;" v file: +KW_IMPLIED Modules/expat/xmlrole.c /^static const char KW_IMPLIED[]$/;" v file: +KW_INCLUDE Modules/expat/xmlrole.c /^static const char KW_INCLUDE[]$/;" v file: +KW_ISO_8859_1 Modules/expat/xmltok.c /^static const char KW_ISO_8859_1[]$/;" v file: +KW_NAMES Include/opcode.h 118;" d +KW_NDATA Modules/expat/xmlrole.c /^static const char KW_NDATA[]$/;" v file: +KW_NMTOKEN Modules/expat/xmlrole.c /^static const char KW_NMTOKEN[]$/;" v file: +KW_NMTOKENS Modules/expat/xmlrole.c /^static const char KW_NMTOKENS[] = {ASCII_N, ASCII_M, ASCII_T, ASCII_O, ASCII_K,$/;" v file: +KW_NOTATION Modules/expat/xmlrole.c /^static const char KW_NOTATION[] = {ASCII_N, ASCII_O, ASCII_T, ASCII_A, ASCII_T,$/;" v file: +KW_ONLY Lib/dataclasses.py /^KW_ONLY = _KW_ONLY_TYPE()$/;" v +KW_PCDATA Modules/expat/xmlrole.c /^static const char KW_PCDATA[]$/;" v file: +KW_PUBLIC Modules/expat/xmlrole.c /^static const char KW_PUBLIC[]$/;" v file: +KW_REQUIRED Modules/expat/xmlrole.c /^static const char KW_REQUIRED[] = {ASCII_R, ASCII_E, ASCII_Q, ASCII_U, ASCII_I,$/;" v file: +KW_SYSTEM Modules/expat/xmlrole.c /^static const char KW_SYSTEM[]$/;" v file: +KW_US_ASCII Modules/expat/xmltok.c /^static const char KW_US_ASCII[]$/;" v file: +KW_UTF_16 Modules/expat/xmltok.c /^static const char KW_UTF_16[]$/;" v file: +KW_UTF_16BE Modules/expat/xmltok.c /^static const char KW_UTF_16BE[]$/;" v file: +KW_UTF_16LE Modules/expat/xmltok.c /^static const char KW_UTF_16LE[]$/;" v file: +KW_UTF_8 Modules/expat/xmltok.c /^static const char KW_UTF_8[]$/;" v file: +KW_encoding Modules/expat/xmltok.c /^static const char KW_encoding[] = {ASCII_e, ASCII_n, ASCII_c, ASCII_o, ASCII_d,$/;" v file: +KW_no Modules/expat/xmltok.c /^static const char KW_no[] = {ASCII_n, ASCII_o, '\\0'};$/;" v file: +KW_standalone Modules/expat/xmltok.c /^static const char KW_standalone[]$/;" v file: +KW_version Modules/expat/xmltok.c /^static const char KW_version[]$/;" v file: +KW_yes Modules/expat/xmltok.c /^static const char KW_yes[] = {ASCII_y, ASCII_e, ASCII_s, '\\0'};$/;" v file: +KeepRef Modules/_ctypes/_ctypes.c /^KeepRef(CDataObject *target, Py_ssize_t index, PyObject *keep)$/;" f file: +KeepaliveServerTestCase1 Lib/test/test_xmlrpc.py /^class KeepaliveServerTestCase1(BaseKeepaliveServerTestCase):$/;" c +KeepaliveServerTestCase2 Lib/test/test_xmlrpc.py /^class KeepaliveServerTestCase2(BaseKeepaliveServerTestCase):$/;" c +Key Lib/test/test_ordered_dict.py /^ class Key:$/;" c function:OrderedDictTests.test_delitem_hash_collision +Key Lib/test/test_ordered_dict.py /^ class Key:$/;" c function:OrderedDictTests.test_issue24347 +Key Lib/test/test_ordered_dict.py /^ class Key:$/;" c function:OrderedDictTests.test_issue24348 +Key Lib/test/test_tkinter/test_misc.py /^ Key = KeyPress$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Key Lib/tkinter/__init__.py /^ Key = KeyPress$/;" v class:EventType +Key Lib/tomllib/_types.py /^Key = Tuple[str, ...]$/;" v +Key3 Lib/test/test_dict.py /^ class Key3:$/;" c function:DictTest.test_str_nonstr +KeyError_str Objects/exceptions.c /^KeyError_str(PyBaseExceptionObject *self)$/;" f file: +KeyOrderingTest Lib/test/test_csv.py /^class KeyOrderingTest(unittest.TestCase):$/;" c +KeyPatternPair Parser/pegen.h /^} KeyPatternPair;$/;" t typeref:struct:__anon660 +KeyPress Lib/test/test_tkinter/test_misc.py /^ KeyPress = '2'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +KeyPress Lib/tkinter/__init__.py /^ KeyPress = '2'$/;" v class:EventType +KeyRelease Lib/test/test_tkinter/test_misc.py /^ KeyRelease = '3'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +KeyRelease Lib/tkinter/__init__.py /^ KeyRelease = '3'$/;" v class:EventType +KeySelectionTest Lib/idlelib/idle_test/test_config_key.py /^class KeySelectionTest(unittest.TestCase):$/;" c +KeyStr Lib/test/test_context.py /^class KeyStr(str):$/;" c +KeyValuePair Parser/pegen.h /^} KeyValuePair;$/;" t typeref:struct:__anon659 +KeyedRef Lib/importlib/_bootstrap.py /^ class KeyedRef(_weakref.ref):$/;" c function:_WeakValueDictionary.__init__ +KeyedRef Lib/weakref.py /^class KeyedRef(ref):$/;" c +Keymap Lib/test/test_tkinter/test_misc.py /^ Keymap = '11' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Keymap Lib/tkinter/__init__.py /^ Keymap = '11' # undocumented$/;" v class:EventType +Keys Lib/test/test_patma.py /^ class Keys:$/;" c function:TestValueErrors.test_mapping_pattern_checks_duplicate_key_1 +KeysPage Lib/idlelib/configdialog.py /^class KeysPage(Frame):$/;" c +KeysPageTest Lib/idlelib/idle_test/test_configdialog.py /^class KeysPageTest(unittest.TestCase):$/;" c +KeysView Lib/_collections_abc.py /^class KeysView(MappingView, Set):$/;" c +KeysView Lib/typing.py /^KeysView = _alias(collections.abc.KeysView, 1)$/;" v +KeywordArg Lib/lib2to3/fixer_util.py /^def KeywordArg(keyword, value):$/;" f +KeywordArgsTest Lib/test/test_xml_etree.py /^class KeywordArgsTest(unittest.TestCase):$/;" c +KeywordCollectorVisitor Tools/peg_generator/pegen/parser_generator.py /^class KeywordCollectorVisitor(GrammarVisitor):$/;" c +KeywordOnlyArgTestCase Lib/test/test_keywordonlyarg.py /^class KeywordOnlyArgTestCase(unittest.TestCase):$/;" c +KeywordOnly_TestCase Lib/test/test_capi/test_getargs.py /^class KeywordOnly_TestCase(unittest.TestCase):$/;" c +KeywordOrStarred Parser/pegen.h /^} KeywordOrStarred;$/;" t typeref:struct:__anon665 +KeywordToken Parser/pegen.h /^} KeywordToken;$/;" t typeref:struct:__anon654 +Keywords_TestCase Lib/test/test_capi/test_getargs.py /^class Keywords_TestCase(unittest.TestCase):$/;" c +Kill PCbuild/build.bat /^:Kill$/;" l +Kind Objects/frameobject.c /^} Kind;$/;" t typeref:enum:kind file: +Knights Lib/test/test_generators.py /^class Knights:$/;" c +Konqueror Lib/webbrowser.py /^class Konqueror(BaseBrowser):$/;" c +KqueueEventLoopTests Lib/test/test_asyncio/test_events.py /^ test_utils.TestCase):$/;" c class:SubprocessTestsMixin.UnixEventLoopTestsMixin +KqueueEventLoopTests Lib/test/test_asyncio/test_sendfile.py /^ test_utils.TestCase):$/;" c class:SendfileTestsBase.ProactorEventLoopTests +KqueueEventLoopTests Lib/test/test_asyncio/test_sock_lowlevel.py /^ test_utils.TestCase):$/;" c class:BaseSockTestsMixin.ProactorEventLoopTests +KqueueSelector Lib/selectors.py /^ class KqueueSelector(_BaseSelectorImpl):$/;" c class:_PollLikeSelector +KqueueSelectorTestCase Lib/test/test_selectors.py /^ unittest.TestCase):$/;" c +L Lib/curses/has_key.py /^ L = []$/;" v +L Lib/test/test_capi/test_misc.py /^ L = None$/;" v class:CAPITest.do_test_trashcan_python_class.PyList +L Lib/test/test_descr.py /^ class L(H):$/;" c function:.test_set_class +L Lib/test/test_descr.py /^ class L(list):$/;" c function:.test_builtin_bases +L Lib/test/test_descr.py /^ class L(list):$/;" c function:.test_slices +L Lib/test/test_genericalias.py /^ class L(list): ...$/;" c function:BaseTest.test_issubclass +L Lib/test/test_grammar.py /^ class L: pass$/;" c function:GrammarTests.test_classdef +L Lib/test/test_heapq.py /^def L(seqn):$/;" f +L Lib/test/test_int.py /^L = [$/;" v +L Lib/test/test_itertools.py /^def L(seqn):$/;" f +L Lib/test/test_list.py /^ class L(list): pass$/;" c function:ListTest.test_no_comdat_folding +L Lib/test/test_list.py /^ class L(list):$/;" c function:ListTest.test_count_index_remove_crashes +L Lib/test/test_set.py /^def L(seqn):$/;" f +L Lib/test/test_sqlite3/test_dbapi.py /^ class L:$/;" c function:CursorTests.test_execute_param_sequence +L Lib/test/test_sqlite3/test_dbapi.py /^ class L:$/;" c function:CursorTests.test_execute_param_sequence_bad_len +L Lib/test/test_sys.py /^ L = size(asciifields) + len(s) + 1$/;" v class:SizeofTest.test_objecttypes.newstyleclass +L Lib/test/test_sys.py /^ L = size(compactfields) + 2*(len(s) + 1)$/;" v class:SizeofTest.test_objecttypes.newstyleclass +L Lib/test/test_sys.py /^ L = size(compactfields) + 4*(len(s) + 1)$/;" v class:SizeofTest.test_objecttypes.newstyleclass +L Lib/test/test_sys.py /^ L = size(compactfields) + len(s) + 1$/;" v class:SizeofTest.test_objecttypes.newstyleclass +L Lib/test/test_sys.py /^ class L(list):$/;" c function:SizeofTest.test_slots +L Modules/_decimal/libmpdec/literature/fnt.py /^L = m2 * M1 * M2$/;" v +L Python/dtoa.c /^typedef union { double d; ULong L[2]; } U;$/;" m union:__anon696 file: +L Tools/unicode/mkstringprep.py /^L = set(gen_bidirectional(["L"]))$/;" v +L1 Lib/test/test_shelve.py /^def L1(s):$/;" f +LANCZOS_N Modules/mathmodule.c 326;" d file: +LAND Tools/cases_generator/lexer.py /^LAND = r'&&'$/;" v +LANGID Lib/ctypes/wintypes.py /^LANGID = WORD$/;" v +LANGINFO Modules/_localemodule.c 491;" d file: +LARGE Lib/test/test_capi/test_getargs.py /^LARGE = 0x7FFFFFFF$/;" v +LARGE Lib/test/test_io.py /^ LARGE = 2**31$/;" v class:IOTest +LARGEST Lib/test/support/__init__.py /^LARGEST = _LARGEST()$/;" v +LARGE_INTEGER_to_time_t_nsec Python/fileutils.c /^LARGE_INTEGER_to_time_t_nsec(LARGE_INTEGER *in_ptr, time_t *time_out, int* nsec_out)$/;" f file: +LARGE_SIZE Lib/test/test_marshal.py /^LARGE_SIZE = 2**31$/;" v +LARRY Lib/test/test_enum.py /^ LARRY = 1$/;" v class:.FlagStooges +LARRY Lib/test/test_enum.py /^ LARRY = 1$/;" v class:.IntStooges +LARRY Lib/test/test_enum.py /^ LARRY = 1$/;" v class:.Stooges +LARRY Lib/test/test_enum.py /^ LARRY = 1.39$/;" v class:.FloatStooges +LARRY Lib/test/test_enum.py /^ LARRY = 1$/;" v class:FlagStoogesWithZero +LARRY Lib/test/test_enum.py /^ LARRY = 1$/;" v class:IntFlagStooges +LARRY Lib/test/test_enum.py /^ LARRY = 1$/;" v class:IntFlagStoogesWithZero +LAST Lib/tkinter/constants.py /^LAST='last'$/;" v +LASTMARK_RESTORE Modules/_sre/sre_lib.h 369;" d +LASTMARK_SAVE Modules/_sre/sre_lib.h 364;" d +LAST_FREED Lib/test/test_code.py /^ LAST_FREED = None$/;" v class:CodeLocationTest +LAST_MODULE_INDEX Python/import.c 58;" d file: +LATENCY_DURATION Tools/ccbench/ccbench.py /^LATENCY_DURATION = 2.0$/;" v +LATENCY_PING_INTERVAL Tools/ccbench/ccbench.py /^LATENCY_PING_INTERVAL = 0.1$/;" v +LATIN1 Objects/unicodeobject.c 182;" d file: +LAT_END Tools/ccbench/ccbench.py /^LAT_END = "END"$/;" v +LBRACE Include/internal/pycore_token.h 41;" d +LBRACE Lib/lib2to3/pgen2/token.py /^LBRACE = 26$/;" v +LBRACE Lib/token.py /^LBRACE = 25$/;" v +LBRACE Tools/cases_generator/lexer.py /^LBRACE = r'\\{'$/;" v +LBRACKET Tools/cases_generator/lexer.py /^LBRACKET = r'\\['$/;" v +LBase Modules/unicodedata.c 484;" d file: +LCID Lib/ctypes/wintypes.py /^LCID = DWORD$/;" v +LCTYPE Lib/ctypes/wintypes.py /^LCTYPE = DWORD$/;" v +LCount Modules/unicodedata.c 487;" d file: +LE Lib/test/test_heapq.py /^ class LE:$/;" c function:TestHeap.test_comparison_operator +LEAD_CASE Modules/expat/xmltok_impl.c 1143;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1166;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1277;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1284;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1346;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1353;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1526;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1533;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1737;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1744;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1782;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 1790;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 399;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 410;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 874;" d file: +LEAD_CASE Modules/expat/xmltok_impl.c 885;" d file: +LEAD_UNDERSCORE Python/dynload_shlib.c 26;" d file: +LEAD_UNDERSCORE Python/dynload_shlib.c 28;" d file: +LEAST_FIVE_BITS Python/suggestions.c 16;" d file: +LEAVE_BUFFERED Modules/_io/bufferedio.c 326;" d file: +LEAVE_HASHLIB Modules/hashlib.h 58;" d +LEAVE_OVERLAP_TCL Modules/_tkinter.c 275;" d file: +LEAVE_PYTHON Modules/_tkinter.c 284;" d file: +LEAVE_TCL Modules/_tkinter.c 267;" d file: +LEAVE_ZLIB Modules/zlibmodule.c 177;" d file: +LEFT Lib/tkinter/constants.py /^LEFT='left'$/;" v +LEFTSHIFT Include/internal/pycore_token.h 49;" d +LEFTSHIFT Lib/lib2to3/pgen2/token.py /^LEFTSHIFT = 34$/;" v +LEFTSHIFT Lib/token.py /^LEFTSHIFT = 33$/;" v +LEFTSHIFTEQUAL Include/internal/pycore_token.h 60;" d +LEFTSHIFTEQUAL Lib/lib2to3/pgen2/token.py /^LEFTSHIFTEQUAL = 45$/;" v +LEFTSHIFTEQUAL Lib/token.py /^LEFTSHIFTEQUAL = 44$/;" v +LEFTSTRIP Objects/bytearrayobject.c 1861;" d file: +LEFTSTRIP Objects/bytesobject.c 1713;" d file: +LEFTSTRIP Objects/unicodeobject.c 11727;" d file: +LEGACY Lib/test/test_traceback.py /^ LEGACY = 0$/;" v class:CAPIExceptionFormattingMixin +LEGACY Lib/test/test_traceback.py /^ LEGACY = 1$/;" v class:CAPIExceptionFormattingLegacyMixin +LEGACY_LOCALE_WARNING Lib/test/test_c_locale_coercion.py /^LEGACY_LOCALE_WARNING = ($/;" v +LEGACY_TRANSACTION_CONTROL Modules/_sqlite/module.h 29;" d +LENGTH_LINK Lib/tarfile.py /^LENGTH_LINK = 100 # maximum length of a linkname$/;" v +LENGTH_NAME Lib/tarfile.py /^LENGTH_NAME = 100 # maximum length of a filename$/;" v +LENGTH_PREFIX Lib/tarfile.py /^LENGTH_PREFIX = 155 # maximum length of the prefix field$/;" v +LENGTH_REQUIRED Lib/http/__init__.py /^ LENGTH_REQUIRED = (411, 'Length Required',$/;" v class:HTTPStatus +LENGTH_REQUIRED Lib/test/test_httplib.py /^ LENGTH_REQUIRED = (411, 'Length Required',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +LEPoint Lib/test/test_ctypes/test_pep3118.py /^class LEPoint(LittleEndianStructure):$/;" c +LESS Include/internal/pycore_token.h 36;" d +LESS Lib/lib2to3/pgen2/token.py /^LESS = 20$/;" v +LESS Lib/token.py /^LESS = 20$/;" v +LESSEQUAL Include/internal/pycore_token.h 45;" d +LESSEQUAL Lib/lib2to3/pgen2/token.py /^LESSEQUAL = 30$/;" v +LESSEQUAL Lib/token.py /^LESSEQUAL = 29$/;" v +LEVELS Tools/c-analyzer/cpython/_capi.py /^LEVELS = [$/;" v +LEVEL_GLOBS Tools/c-analyzer/cpython/_files.py /^LEVEL_GLOBS = {$/;" v +LEVEL_RANGE Lib/test/test_logging.py /^LEVEL_RANGE = range(BORING, SILENT + 1)$/;" v +LEVENSHTEIN_DATA_FILE Lib/test/test_traceback.py /^LEVENSHTEIN_DATA_FILE = Path(__file__).parent \/ 'levenshtein_examples.json'$/;" v +LE_DOUBLE_INF Lib/test/test_float.py /^LE_DOUBLE_INF = bytes(reversed(BE_DOUBLE_INF))$/;" v +LE_DOUBLE_NAN Lib/test/test_float.py /^LE_DOUBLE_NAN = bytes(reversed(BE_DOUBLE_NAN))$/;" v +LE_FLOAT_INF Lib/test/test_float.py /^LE_FLOAT_INF = bytes(reversed(BE_FLOAT_INF))$/;" v +LE_FLOAT_NAN Lib/test/test_float.py /^LE_FLOAT_NAN = bytes(reversed(BE_FLOAT_NAN))$/;" v +LE_MAGIC Lib/gettext.py /^ LE_MAGIC = 0x950412de$/;" v class:GNUTranslations +LF Lib/curses/ascii.py /^LF = 0x0a # ^J$/;" v +LF Lib/poplib.py /^LF = b'\\n'$/;" v +LF Modules/cjkcodecs/_codecs_iso2022.c 59;" d file: +LFLAG Lib/tty.py /^LFLAG = 3$/;" v +LFLOW Lib/telnetlib.py /^LFLOW = bytes([33]) # remote flow control$/;" v +LGRPID Lib/ctypes/wintypes.py /^LGRPID = DWORD$/;" v +LHASH Lib/test/test_lib2to3/data/infinite_recursion.py /^LHASH = lhash_st$/;" v +LHASH_COMP_FN_TYPE Lib/test/test_lib2to3/data/infinite_recursion.py /^LHASH_COMP_FN_TYPE = CFUNCTYPE(c_int, c_void_p, c_void_p)$/;" v +LHASH_DOALL_ARG_FN_TYPE Lib/test/test_lib2to3/data/infinite_recursion.py /^LHASH_DOALL_ARG_FN_TYPE = CFUNCTYPE(None, c_void_p, c_void_p)$/;" v +LHASH_DOALL_FN_TYPE Lib/test/test_lib2to3/data/infinite_recursion.py /^LHASH_DOALL_FN_TYPE = CFUNCTYPE(None, c_void_p)$/;" v +LHASH_HASH_FN_TYPE Lib/test/test_lib2to3/data/infinite_recursion.py /^LHASH_HASH_FN_TYPE = CFUNCTYPE(c_ulong, c_void_p)$/;" v +LHASH_NODE Lib/test/test_lib2to3/data/infinite_recursion.py /^LHASH_NODE = lhash_node_st$/;" v +LH_P1P2 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t LH_P1P2 = 18446744052234715137ULL; \/* (P1*P2) % 2^64 *\/$/;" v +LH_P1P2 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t LH_P1P2 = 4127195137UL; \/* (P1*P2) % 2^32 *\/$/;" v +LIB2TO3_GRAMMAR_FILES PC/layout/main.py /^LIB2TO3_GRAMMAR_FILES = FileNameSet("Grammar.txt", "PatternGrammar.txt")$/;" v +LIBFFI_OUT PCbuild/prepare_libffi.bat /^if NOT DEFINED LIBFFI_OUT set LIBFFI_OUT=%~dp0\\..\\externals\\libffi$/;" v +LIBFFI_TEST PCbuild/prepare_libffi.bat /^echo set LIBFFI_TEST=1 to run tests (optional)$/;" v +LIBMPDEC_BASEARITH_H_ Modules/_decimal/libmpdec/basearith.h 30;" d +LIBMPDEC_BITS_H_ Modules/_decimal/libmpdec/bits.h 30;" d +LIBMPDEC_CONSTANTS_H_ Modules/_decimal/libmpdec/constants.h 30;" d +LIBMPDEC_CONVOLUTE_H_ Modules/_decimal/libmpdec/convolute.h 30;" d +LIBMPDEC_CRT_H_ Modules/_decimal/libmpdec/crt.h 30;" d +LIBMPDEC_DIFRADIX2_H_ Modules/_decimal/libmpdec/difradix2.h 30;" d +LIBMPDEC_FNT_H_ Modules/_decimal/libmpdec/fnt.h 30;" d +LIBMPDEC_FOURSTEP_H_ Modules/_decimal/libmpdec/fourstep.h 30;" d +LIBMPDEC_IO_H_ Modules/_decimal/libmpdec/io.h 30;" d +LIBMPDEC_MPALLOC_H_ Modules/_decimal/libmpdec/mpalloc.h 30;" d +LIBMPDEC_MPDECIMAL_H_ Modules/_decimal/libmpdec/mpdecimal.h 30;" d +LIBMPDEC_NUMBERTHEORY_H_ Modules/_decimal/libmpdec/numbertheory.h 30;" d +LIBMPDEC_SIXSTEP_H_ Modules/_decimal/libmpdec/sixstep.h 30;" d +LIBMPDEC_TRANSPOSE_H_ Modules/_decimal/libmpdec/transpose.h 30;" d +LIBMPDEC_TYPEARITH_H_ Modules/_decimal/libmpdec/typearith.h 30;" d +LIBMPDEC_UMODARITH_H_ Modules/_decimal/libmpdec/umodarith.h 30;" d +LIBRESSL_OLD_VERSIONS Tools/ssl/multissltests.py /^LIBRESSL_OLD_VERSIONS = [$/;" v +LIBRESSL_RECENT_VERSIONS Tools/ssl/multissltests.py /^LIBRESSL_RECENT_VERSIONS = [$/;" v +LIKELY Modules/_blake2/impl/blake2b-round.h 26;" d +LIKELY Modules/_blake2/impl/blake2s-round.h 26;" d +LIKELY Objects/obmalloc.c 838;" d file: +LIKELY Objects/obmalloc.c 841;" d file: +LIMITED_API_AVAILABLE Modules/_testcapi/parts.h 10;" d +LIMITED_API_AVAILABLE Modules/_testcapi/parts.h 12;" d +LINE Lib/pstats.py /^ LINE = 'line'$/;" v class:SortKey +LINE Lib/test/test_pstats.py /^ LINE = 'line'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +LINEAR_PROBES Objects/setobject.c 49;" d file: +LINEBREAK_MASK Tools/unicode/makeunicodedata.py /^LINEBREAK_MASK = 0x10$/;" v +LINEMODE Lib/telnetlib.py /^LINEMODE = bytes([34]) # Linemode option$/;" v +LINE_AND_INSTRUCTION_RECORDERS Lib/test/test_monitoring.py /^LINE_AND_INSTRUCTION_RECORDERS = InstructionRecorder, LineRecorder$/;" v +LINE_BREAK Tools/unicode/makeunicodedata.py /^LINE_BREAK = "LineBreak%s.txt"$/;" v +LINE_MARKER_RE Tools/c-analyzer/c_parser/preprocessor/gcc.py /^LINE_MARKER_RE = re.compile(r'^# (\\d+) "([^"]+)"((?: [1234])*)$')$/;" v +LINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2714;" d file: +LINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2716;" d file: +LINKCELLS Modules/itertoolsmodule.c 719;" d file: +LIST Lib/pickle.py /^LIST = b'l' # build list from topmost stack items$/;" v +LIST Modules/_pickle.c /^ LIST = 'l',$/;" e enum:opcode file: +LIST Tools/build/umarshal.py /^ LIST = ord('[')$/;" v class:Type +LISTUPDATE_SEQUENCE Lib/idlelib/autocomplete_w.py /^LISTUPDATE_SEQUENCE = ""$/;" v +LIST_APPEND Include/opcode.h 103;" d +LIST_APPEND_METHODDEF Objects/clinic/listobject.c.h 94;" d +LIST_CLEAR_METHODDEF Objects/clinic/listobject.c.h 58;" d +LIST_COPY_METHODDEF Objects/clinic/listobject.c.h 76;" d +LIST_COUNT_METHODDEF Objects/clinic/listobject.c.h 299;" d +LIST_DATA Lib/test/test_ftplib.py /^LIST_DATA = 'foo\\r\\nbar\\r\\n non-ascii char \\xAE\\r\\n'$/;" v +LIST_EXTEND Include/opcode.h 113;" d +LIST_EXTEND_METHODDEF Objects/clinic/listobject.c.h 103;" d +LIST_INDEX_METHODDEF Objects/clinic/listobject.c.h 255;" d +LIST_INSERT_METHODDEF Objects/clinic/listobject.c.h 17;" d +LIST_POP_METHODDEF Objects/clinic/listobject.c.h 114;" d +LIST_REMOVE_METHODDEF Objects/clinic/listobject.c.h 310;" d +LIST_RESP Lib/test/test_poplib.py /^LIST_RESP = b'1 1\\r\\n2 2\\r\\n3 3\\r\\n4 4\\r\\n5 5\\r\\n.\\r\\n'$/;" v +LIST_REVERSE_METHODDEF Objects/clinic/listobject.c.h 235;" d +LIST_SORT_METHODDEF Objects/clinic/listobject.c.h 165;" d +LIST___REVERSED___METHODDEF Objects/clinic/listobject.c.h 375;" d +LIST___SIZEOF___METHODDEF Objects/clinic/listobject.c.h 357;" d +LITTLE2_BYTE_TO_ASCII Modules/expat/xmltok.c 743;" d file: +LITTLE2_BYTE_TYPE Modules/expat/xmltok.c 740;" d file: +LITTLE2_CHAR_MATCHES Modules/expat/xmltok.c 744;" d file: +LITTLE2_IS_NAME_CHAR_MINBPC Modules/expat/xmltok.c 745;" d file: +LITTLE2_IS_NMSTRT_CHAR_MINBPC Modules/expat/xmltok.c 747;" d file: +LITTLE_ENDIAN Lib/test/test_float.py /^LITTLE_ENDIAN = 1$/;" v +LLONG_MAX Lib/test/test_capi/test_getargs.py /^LLONG_MAX = 2**63-1$/;" v +LLONG_MIN Lib/test/test_capi/test_getargs.py /^LLONG_MIN = -2**63$/;" v +LLTRACE Python/ceval.c 41;" d file: +LLVMFuzzerInitialize Modules/_xxtestfuzz/fuzzer.c /^int LLVMFuzzerInitialize(int *argc, char ***argv) {$/;" f +LLVMFuzzerTestOneInput Modules/_xxtestfuzz/fuzzer.c /^int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {$/;" f +LL_getitem Modules/arraymodule.c /^LL_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +LL_setitem Modules/arraymodule.c /^LL_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +LMTP Lib/smtplib.py /^class LMTP(SMTP):$/;" c +LMTPGeneralTests Lib/test/test_smtplib.py /^class LMTPGeneralTests(GeneralTests, unittest.TestCase):$/;" c +LMTP_PORT Lib/smtplib.py /^LMTP_PORT = 2003$/;" v +LNKTYPE Lib/tarfile.py /^LNKTYPE = b"1" # link (inside tarfile)$/;" v +LNOT Tools/cases_generator/lexer.py /^LNOT = r'!'$/;" v +LOAD Modules/_blake2/impl/blake2b-round.h 17;" d +LOAD Modules/_blake2/impl/blake2s-round.h 17;" d +LOADU Modules/_blake2/impl/blake2b-round.h 20;" d +LOADU Modules/_blake2/impl/blake2s-round.h 20;" d +LOAD_ASSERTION_ERROR Include/opcode.h 44;" d +LOAD_ATTR Include/opcode.h 67;" d +LOAD_ATTR Lib/dis.py /^LOAD_ATTR = opmap['LOAD_ATTR']$/;" v +LOAD_ATTR_CLASS Include/opcode.h 193;" d +LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN Include/opcode.h 194;" d +LOAD_ATTR_INSTANCE_VALUE Include/opcode.h 195;" d +LOAD_ATTR_METHOD_LAZY_DICT Include/opcode.h 200;" d +LOAD_ATTR_METHOD_NO_DICT Include/opcode.h 201;" d +LOAD_ATTR_METHOD_WITH_VALUES Include/opcode.h 202;" d +LOAD_ATTR_MODULE Include/opcode.h 196;" d +LOAD_ATTR_PROPERTY Include/opcode.h 197;" d +LOAD_ATTR_SLOT Include/opcode.h 198;" d +LOAD_ATTR_WITH_HINT Include/opcode.h 199;" d +LOAD_BUILD_CLASS Include/opcode.h 43;" d +LOAD_CLOSURE Include/opcode.h 94;" d +LOAD_CONST Include/opcode.h 61;" d +LOAD_CONST Lib/dis.py /^LOAD_CONST = opmap['LOAD_CONST']$/;" v +LOAD_CONST__LOAD_FAST Include/opcode.h 203;" d +LOAD_DEREF Include/opcode.h 95;" d +LOAD_FACTOR_1 Lib/test/libregrtest/win_utils.py /^LOAD_FACTOR_1 = 1 \/ math.exp(SAMPLING_INTERVAL \/ 60)$/;" v +LOAD_FAST Include/opcode.h 82;" d +LOAD_FAST_AND_CLEAR Include/opcode.h 101;" d +LOAD_FAST_CHECK Include/opcode.h 85;" d +LOAD_FAST__LOAD_CONST Include/opcode.h 204;" d +LOAD_FAST__LOAD_FAST Include/opcode.h 205;" d +LOAD_FROM_DICT_OR_DEREF Include/opcode.h 122;" d +LOAD_FROM_DICT_OR_GLOBALS Include/opcode.h 121;" d +LOAD_GLOBAL Include/opcode.h 74;" d +LOAD_GLOBAL Lib/dis.py /^LOAD_GLOBAL = opmap['LOAD_GLOBAL']$/;" v +LOAD_GLOBAL_BUILTIN Include/opcode.h 206;" d +LOAD_GLOBAL_MODULE Include/opcode.h 207;" d +LOAD_LIBRARY_SEARCH_SYSTEM32 Modules/expat/xmlparse.c 121;" d file: +LOAD_LOCALS Include/opcode.h 48;" d +LOAD_METHOD Include/opcode.h 149;" d +LOAD_MSG_0_1 Modules/_blake2/impl/blake2b-load-sse2.h 17;" d +LOAD_MSG_0_1 Modules/_blake2/impl/blake2b-load-sse41.h 17;" d +LOAD_MSG_0_1 Modules/_blake2/impl/blake2s-load-sse2.h 17;" d +LOAD_MSG_0_1 Modules/_blake2/impl/blake2s-load-sse41.h 17;" d +LOAD_MSG_0_1 Modules/_blake2/impl/blake2s-load-xop.h 30;" d +LOAD_MSG_0_2 Modules/_blake2/impl/blake2b-load-sse2.h 18;" d +LOAD_MSG_0_2 Modules/_blake2/impl/blake2b-load-sse41.h 25;" d +LOAD_MSG_0_2 Modules/_blake2/impl/blake2s-load-sse2.h 18;" d +LOAD_MSG_0_2 Modules/_blake2/impl/blake2s-load-sse41.h 20;" d +LOAD_MSG_0_2 Modules/_blake2/impl/blake2s-load-xop.h 33;" d +LOAD_MSG_0_3 Modules/_blake2/impl/blake2b-load-sse2.h 19;" d +LOAD_MSG_0_3 Modules/_blake2/impl/blake2b-load-sse41.h 33;" d +LOAD_MSG_0_3 Modules/_blake2/impl/blake2s-load-sse2.h 19;" d +LOAD_MSG_0_3 Modules/_blake2/impl/blake2s-load-sse41.h 23;" d +LOAD_MSG_0_3 Modules/_blake2/impl/blake2s-load-xop.h 36;" d +LOAD_MSG_0_4 Modules/_blake2/impl/blake2b-load-sse2.h 20;" d +LOAD_MSG_0_4 Modules/_blake2/impl/blake2b-load-sse41.h 41;" d +LOAD_MSG_0_4 Modules/_blake2/impl/blake2s-load-sse2.h 20;" d +LOAD_MSG_0_4 Modules/_blake2/impl/blake2s-load-sse41.h 26;" d +LOAD_MSG_0_4 Modules/_blake2/impl/blake2s-load-xop.h 39;" d +LOAD_MSG_10_1 Modules/_blake2/impl/blake2b-load-sse2.h 57;" d +LOAD_MSG_10_1 Modules/_blake2/impl/blake2b-load-sse41.h 337;" d +LOAD_MSG_10_2 Modules/_blake2/impl/blake2b-load-sse2.h 58;" d +LOAD_MSG_10_2 Modules/_blake2/impl/blake2b-load-sse41.h 345;" d +LOAD_MSG_10_3 Modules/_blake2/impl/blake2b-load-sse2.h 59;" d +LOAD_MSG_10_3 Modules/_blake2/impl/blake2b-load-sse41.h 353;" d +LOAD_MSG_10_4 Modules/_blake2/impl/blake2b-load-sse2.h 60;" d +LOAD_MSG_10_4 Modules/_blake2/impl/blake2b-load-sse41.h 361;" d +LOAD_MSG_11_1 Modules/_blake2/impl/blake2b-load-sse2.h 61;" d +LOAD_MSG_11_1 Modules/_blake2/impl/blake2b-load-sse41.h 369;" d +LOAD_MSG_11_2 Modules/_blake2/impl/blake2b-load-sse2.h 62;" d +LOAD_MSG_11_2 Modules/_blake2/impl/blake2b-load-sse41.h 377;" d +LOAD_MSG_11_3 Modules/_blake2/impl/blake2b-load-sse2.h 63;" d +LOAD_MSG_11_3 Modules/_blake2/impl/blake2b-load-sse41.h 385;" d +LOAD_MSG_11_4 Modules/_blake2/impl/blake2b-load-sse2.h 64;" d +LOAD_MSG_11_4 Modules/_blake2/impl/blake2b-load-sse41.h 393;" d +LOAD_MSG_1_1 Modules/_blake2/impl/blake2b-load-sse2.h 21;" d +LOAD_MSG_1_1 Modules/_blake2/impl/blake2b-load-sse41.h 49;" d +LOAD_MSG_1_1 Modules/_blake2/impl/blake2s-load-sse2.h 21;" d +LOAD_MSG_1_1 Modules/_blake2/impl/blake2s-load-sse41.h 29;" d +LOAD_MSG_1_1 Modules/_blake2/impl/blake2s-load-xop.h 42;" d +LOAD_MSG_1_2 Modules/_blake2/impl/blake2b-load-sse2.h 22;" d +LOAD_MSG_1_2 Modules/_blake2/impl/blake2b-load-sse41.h 57;" d +LOAD_MSG_1_2 Modules/_blake2/impl/blake2s-load-sse2.h 22;" d +LOAD_MSG_1_2 Modules/_blake2/impl/blake2s-load-sse41.h 35;" d +LOAD_MSG_1_2 Modules/_blake2/impl/blake2s-load-xop.h 46;" d +LOAD_MSG_1_3 Modules/_blake2/impl/blake2b-load-sse2.h 23;" d +LOAD_MSG_1_3 Modules/_blake2/impl/blake2b-load-sse41.h 65;" d +LOAD_MSG_1_3 Modules/_blake2/impl/blake2s-load-sse2.h 23;" d +LOAD_MSG_1_3 Modules/_blake2/impl/blake2s-load-sse41.h 41;" d +LOAD_MSG_1_3 Modules/_blake2/impl/blake2s-load-xop.h 50;" d +LOAD_MSG_1_4 Modules/_blake2/impl/blake2b-load-sse2.h 24;" d +LOAD_MSG_1_4 Modules/_blake2/impl/blake2b-load-sse41.h 73;" d +LOAD_MSG_1_4 Modules/_blake2/impl/blake2s-load-sse2.h 24;" d +LOAD_MSG_1_4 Modules/_blake2/impl/blake2s-load-sse41.h 47;" d +LOAD_MSG_1_4 Modules/_blake2/impl/blake2s-load-xop.h 54;" d +LOAD_MSG_2_1 Modules/_blake2/impl/blake2b-load-sse2.h 25;" d +LOAD_MSG_2_1 Modules/_blake2/impl/blake2b-load-sse41.h 81;" d +LOAD_MSG_2_1 Modules/_blake2/impl/blake2s-load-sse2.h 25;" d +LOAD_MSG_2_1 Modules/_blake2/impl/blake2s-load-sse41.h 53;" d +LOAD_MSG_2_1 Modules/_blake2/impl/blake2s-load-xop.h 58;" d +LOAD_MSG_2_2 Modules/_blake2/impl/blake2b-load-sse2.h 26;" d +LOAD_MSG_2_2 Modules/_blake2/impl/blake2b-load-sse41.h 89;" d +LOAD_MSG_2_2 Modules/_blake2/impl/blake2s-load-sse2.h 26;" d +LOAD_MSG_2_2 Modules/_blake2/impl/blake2s-load-sse41.h 59;" d +LOAD_MSG_2_2 Modules/_blake2/impl/blake2s-load-xop.h 62;" d +LOAD_MSG_2_3 Modules/_blake2/impl/blake2b-load-sse2.h 27;" d +LOAD_MSG_2_3 Modules/_blake2/impl/blake2b-load-sse41.h 97;" d +LOAD_MSG_2_3 Modules/_blake2/impl/blake2s-load-sse2.h 27;" d +LOAD_MSG_2_3 Modules/_blake2/impl/blake2s-load-sse41.h 65;" d +LOAD_MSG_2_3 Modules/_blake2/impl/blake2s-load-xop.h 66;" d +LOAD_MSG_2_4 Modules/_blake2/impl/blake2b-load-sse2.h 28;" d +LOAD_MSG_2_4 Modules/_blake2/impl/blake2b-load-sse41.h 105;" d +LOAD_MSG_2_4 Modules/_blake2/impl/blake2s-load-sse2.h 28;" d +LOAD_MSG_2_4 Modules/_blake2/impl/blake2s-load-sse41.h 71;" d +LOAD_MSG_2_4 Modules/_blake2/impl/blake2s-load-xop.h 70;" d +LOAD_MSG_3_1 Modules/_blake2/impl/blake2b-load-sse2.h 29;" d +LOAD_MSG_3_1 Modules/_blake2/impl/blake2b-load-sse41.h 113;" d +LOAD_MSG_3_1 Modules/_blake2/impl/blake2s-load-sse2.h 29;" d +LOAD_MSG_3_1 Modules/_blake2/impl/blake2s-load-sse41.h 77;" d +LOAD_MSG_3_1 Modules/_blake2/impl/blake2s-load-xop.h 74;" d +LOAD_MSG_3_2 Modules/_blake2/impl/blake2b-load-sse2.h 30;" d +LOAD_MSG_3_2 Modules/_blake2/impl/blake2b-load-sse41.h 121;" d +LOAD_MSG_3_2 Modules/_blake2/impl/blake2s-load-sse2.h 30;" d +LOAD_MSG_3_2 Modules/_blake2/impl/blake2s-load-sse41.h 83;" d +LOAD_MSG_3_2 Modules/_blake2/impl/blake2s-load-xop.h 79;" d +LOAD_MSG_3_3 Modules/_blake2/impl/blake2b-load-sse2.h 31;" d +LOAD_MSG_3_3 Modules/_blake2/impl/blake2b-load-sse41.h 129;" d +LOAD_MSG_3_3 Modules/_blake2/impl/blake2s-load-sse2.h 31;" d +LOAD_MSG_3_3 Modules/_blake2/impl/blake2s-load-sse41.h 89;" d +LOAD_MSG_3_3 Modules/_blake2/impl/blake2s-load-xop.h 83;" d +LOAD_MSG_3_4 Modules/_blake2/impl/blake2b-load-sse2.h 32;" d +LOAD_MSG_3_4 Modules/_blake2/impl/blake2b-load-sse41.h 137;" d +LOAD_MSG_3_4 Modules/_blake2/impl/blake2s-load-sse2.h 32;" d +LOAD_MSG_3_4 Modules/_blake2/impl/blake2s-load-sse41.h 94;" d +LOAD_MSG_3_4 Modules/_blake2/impl/blake2s-load-xop.h 87;" d +LOAD_MSG_4_1 Modules/_blake2/impl/blake2b-load-sse2.h 33;" d +LOAD_MSG_4_1 Modules/_blake2/impl/blake2b-load-sse41.h 145;" d +LOAD_MSG_4_1 Modules/_blake2/impl/blake2s-load-sse2.h 33;" d +LOAD_MSG_4_1 Modules/_blake2/impl/blake2s-load-sse41.h 99;" d +LOAD_MSG_4_1 Modules/_blake2/impl/blake2s-load-xop.h 91;" d +LOAD_MSG_4_2 Modules/_blake2/impl/blake2b-load-sse2.h 34;" d +LOAD_MSG_4_2 Modules/_blake2/impl/blake2b-load-sse41.h 153;" d +LOAD_MSG_4_2 Modules/_blake2/impl/blake2s-load-sse2.h 34;" d +LOAD_MSG_4_2 Modules/_blake2/impl/blake2s-load-sse41.h 105;" d +LOAD_MSG_4_2 Modules/_blake2/impl/blake2s-load-xop.h 95;" d +LOAD_MSG_4_3 Modules/_blake2/impl/blake2b-load-sse2.h 35;" d +LOAD_MSG_4_3 Modules/_blake2/impl/blake2b-load-sse41.h 161;" d +LOAD_MSG_4_3 Modules/_blake2/impl/blake2s-load-sse2.h 35;" d +LOAD_MSG_4_3 Modules/_blake2/impl/blake2s-load-sse41.h 110;" d +LOAD_MSG_4_3 Modules/_blake2/impl/blake2s-load-xop.h 99;" d +LOAD_MSG_4_4 Modules/_blake2/impl/blake2b-load-sse2.h 36;" d +LOAD_MSG_4_4 Modules/_blake2/impl/blake2b-load-sse41.h 169;" d +LOAD_MSG_4_4 Modules/_blake2/impl/blake2s-load-sse2.h 36;" d +LOAD_MSG_4_4 Modules/_blake2/impl/blake2s-load-sse41.h 115;" d +LOAD_MSG_4_4 Modules/_blake2/impl/blake2s-load-xop.h 104;" d +LOAD_MSG_5_1 Modules/_blake2/impl/blake2b-load-sse2.h 37;" d +LOAD_MSG_5_1 Modules/_blake2/impl/blake2b-load-sse41.h 177;" d +LOAD_MSG_5_1 Modules/_blake2/impl/blake2s-load-sse2.h 37;" d +LOAD_MSG_5_1 Modules/_blake2/impl/blake2s-load-sse41.h 121;" d +LOAD_MSG_5_1 Modules/_blake2/impl/blake2s-load-xop.h 108;" d +LOAD_MSG_5_2 Modules/_blake2/impl/blake2b-load-sse2.h 38;" d +LOAD_MSG_5_2 Modules/_blake2/impl/blake2b-load-sse41.h 185;" d +LOAD_MSG_5_2 Modules/_blake2/impl/blake2s-load-sse2.h 38;" d +LOAD_MSG_5_2 Modules/_blake2/impl/blake2s-load-sse41.h 126;" d +LOAD_MSG_5_2 Modules/_blake2/impl/blake2s-load-xop.h 112;" d +LOAD_MSG_5_3 Modules/_blake2/impl/blake2b-load-sse2.h 39;" d +LOAD_MSG_5_3 Modules/_blake2/impl/blake2b-load-sse41.h 193;" d +LOAD_MSG_5_3 Modules/_blake2/impl/blake2s-load-sse2.h 39;" d +LOAD_MSG_5_3 Modules/_blake2/impl/blake2s-load-sse41.h 131;" d +LOAD_MSG_5_3 Modules/_blake2/impl/blake2s-load-xop.h 116;" d +LOAD_MSG_5_4 Modules/_blake2/impl/blake2b-load-sse2.h 40;" d +LOAD_MSG_5_4 Modules/_blake2/impl/blake2b-load-sse41.h 201;" d +LOAD_MSG_5_4 Modules/_blake2/impl/blake2s-load-sse2.h 40;" d +LOAD_MSG_5_4 Modules/_blake2/impl/blake2s-load-sse41.h 137;" d +LOAD_MSG_5_4 Modules/_blake2/impl/blake2s-load-xop.h 120;" d +LOAD_MSG_6_1 Modules/_blake2/impl/blake2b-load-sse2.h 41;" d +LOAD_MSG_6_1 Modules/_blake2/impl/blake2b-load-sse41.h 209;" d +LOAD_MSG_6_1 Modules/_blake2/impl/blake2s-load-sse2.h 41;" d +LOAD_MSG_6_1 Modules/_blake2/impl/blake2s-load-sse41.h 142;" d +LOAD_MSG_6_1 Modules/_blake2/impl/blake2s-load-xop.h 124;" d +LOAD_MSG_6_2 Modules/_blake2/impl/blake2b-load-sse2.h 42;" d +LOAD_MSG_6_2 Modules/_blake2/impl/blake2b-load-sse41.h 217;" d +LOAD_MSG_6_2 Modules/_blake2/impl/blake2s-load-sse2.h 42;" d +LOAD_MSG_6_2 Modules/_blake2/impl/blake2s-load-sse41.h 147;" d +LOAD_MSG_6_2 Modules/_blake2/impl/blake2s-load-xop.h 128;" d +LOAD_MSG_6_3 Modules/_blake2/impl/blake2b-load-sse2.h 43;" d +LOAD_MSG_6_3 Modules/_blake2/impl/blake2b-load-sse41.h 225;" d +LOAD_MSG_6_3 Modules/_blake2/impl/blake2s-load-sse2.h 43;" d +LOAD_MSG_6_3 Modules/_blake2/impl/blake2s-load-sse41.h 153;" d +LOAD_MSG_6_3 Modules/_blake2/impl/blake2s-load-xop.h 132;" d +LOAD_MSG_6_4 Modules/_blake2/impl/blake2b-load-sse2.h 44;" d +LOAD_MSG_6_4 Modules/_blake2/impl/blake2b-load-sse41.h 233;" d +LOAD_MSG_6_4 Modules/_blake2/impl/blake2s-load-sse2.h 44;" d +LOAD_MSG_6_4 Modules/_blake2/impl/blake2s-load-sse41.h 158;" d +LOAD_MSG_6_4 Modules/_blake2/impl/blake2s-load-xop.h 136;" d +LOAD_MSG_7_1 Modules/_blake2/impl/blake2b-load-sse2.h 45;" d +LOAD_MSG_7_1 Modules/_blake2/impl/blake2b-load-sse41.h 241;" d +LOAD_MSG_7_1 Modules/_blake2/impl/blake2s-load-sse2.h 45;" d +LOAD_MSG_7_1 Modules/_blake2/impl/blake2s-load-sse41.h 163;" d +LOAD_MSG_7_1 Modules/_blake2/impl/blake2s-load-xop.h 140;" d +LOAD_MSG_7_2 Modules/_blake2/impl/blake2b-load-sse2.h 46;" d +LOAD_MSG_7_2 Modules/_blake2/impl/blake2b-load-sse41.h 249;" d +LOAD_MSG_7_2 Modules/_blake2/impl/blake2s-load-sse2.h 46;" d +LOAD_MSG_7_2 Modules/_blake2/impl/blake2s-load-sse41.h 168;" d +LOAD_MSG_7_2 Modules/_blake2/impl/blake2s-load-xop.h 144;" d +LOAD_MSG_7_3 Modules/_blake2/impl/blake2b-load-sse2.h 47;" d +LOAD_MSG_7_3 Modules/_blake2/impl/blake2b-load-sse41.h 257;" d +LOAD_MSG_7_3 Modules/_blake2/impl/blake2s-load-sse2.h 47;" d +LOAD_MSG_7_3 Modules/_blake2/impl/blake2s-load-sse41.h 174;" d +LOAD_MSG_7_3 Modules/_blake2/impl/blake2s-load-xop.h 148;" d +LOAD_MSG_7_4 Modules/_blake2/impl/blake2b-load-sse2.h 48;" d +LOAD_MSG_7_4 Modules/_blake2/impl/blake2b-load-sse41.h 265;" d +LOAD_MSG_7_4 Modules/_blake2/impl/blake2s-load-sse2.h 48;" d +LOAD_MSG_7_4 Modules/_blake2/impl/blake2s-load-sse41.h 180;" d +LOAD_MSG_7_4 Modules/_blake2/impl/blake2s-load-xop.h 153;" d +LOAD_MSG_8_1 Modules/_blake2/impl/blake2b-load-sse2.h 49;" d +LOAD_MSG_8_1 Modules/_blake2/impl/blake2b-load-sse41.h 273;" d +LOAD_MSG_8_1 Modules/_blake2/impl/blake2s-load-sse2.h 49;" d +LOAD_MSG_8_1 Modules/_blake2/impl/blake2s-load-sse41.h 185;" d +LOAD_MSG_8_1 Modules/_blake2/impl/blake2s-load-xop.h 157;" d +LOAD_MSG_8_2 Modules/_blake2/impl/blake2b-load-sse2.h 50;" d +LOAD_MSG_8_2 Modules/_blake2/impl/blake2b-load-sse41.h 281;" d +LOAD_MSG_8_2 Modules/_blake2/impl/blake2s-load-sse2.h 50;" d +LOAD_MSG_8_2 Modules/_blake2/impl/blake2s-load-sse41.h 191;" d +LOAD_MSG_8_2 Modules/_blake2/impl/blake2s-load-xop.h 162;" d +LOAD_MSG_8_3 Modules/_blake2/impl/blake2b-load-sse2.h 51;" d +LOAD_MSG_8_3 Modules/_blake2/impl/blake2b-load-sse41.h 289;" d +LOAD_MSG_8_3 Modules/_blake2/impl/blake2s-load-sse2.h 51;" d +LOAD_MSG_8_3 Modules/_blake2/impl/blake2s-load-sse41.h 196;" d +LOAD_MSG_8_3 Modules/_blake2/impl/blake2s-load-xop.h 166;" d +LOAD_MSG_8_4 Modules/_blake2/impl/blake2b-load-sse2.h 52;" d +LOAD_MSG_8_4 Modules/_blake2/impl/blake2b-load-sse41.h 297;" d +LOAD_MSG_8_4 Modules/_blake2/impl/blake2s-load-sse2.h 52;" d +LOAD_MSG_8_4 Modules/_blake2/impl/blake2s-load-sse41.h 201;" d +LOAD_MSG_8_4 Modules/_blake2/impl/blake2s-load-xop.h 170;" d +LOAD_MSG_9_1 Modules/_blake2/impl/blake2b-load-sse2.h 53;" d +LOAD_MSG_9_1 Modules/_blake2/impl/blake2b-load-sse41.h 305;" d +LOAD_MSG_9_1 Modules/_blake2/impl/blake2s-load-sse2.h 53;" d +LOAD_MSG_9_1 Modules/_blake2/impl/blake2s-load-sse41.h 205;" d +LOAD_MSG_9_1 Modules/_blake2/impl/blake2s-load-xop.h 173;" d +LOAD_MSG_9_2 Modules/_blake2/impl/blake2b-load-sse2.h 54;" d +LOAD_MSG_9_2 Modules/_blake2/impl/blake2b-load-sse41.h 313;" d +LOAD_MSG_9_2 Modules/_blake2/impl/blake2s-load-sse2.h 54;" d +LOAD_MSG_9_2 Modules/_blake2/impl/blake2s-load-sse41.h 211;" d +LOAD_MSG_9_2 Modules/_blake2/impl/blake2s-load-xop.h 177;" d +LOAD_MSG_9_3 Modules/_blake2/impl/blake2b-load-sse2.h 55;" d +LOAD_MSG_9_3 Modules/_blake2/impl/blake2b-load-sse41.h 321;" d +LOAD_MSG_9_3 Modules/_blake2/impl/blake2s-load-sse2.h 55;" d +LOAD_MSG_9_3 Modules/_blake2/impl/blake2s-load-sse41.h 216;" d +LOAD_MSG_9_3 Modules/_blake2/impl/blake2s-load-xop.h 180;" d +LOAD_MSG_9_4 Modules/_blake2/impl/blake2b-load-sse2.h 56;" d +LOAD_MSG_9_4 Modules/_blake2/impl/blake2b-load-sse41.h 329;" d +LOAD_MSG_9_4 Modules/_blake2/impl/blake2s-load-sse2.h 56;" d +LOAD_MSG_9_4 Modules/_blake2/impl/blake2s-load-sse41.h 222;" d +LOAD_MSG_9_4 Modules/_blake2/impl/blake2s-load-xop.h 184;" d +LOAD_NAME Include/opcode.h 62;" d +LOAD_SUPER_ATTR Include/opcode.h 99;" d +LOAD_SUPER_ATTR Lib/dis.py /^LOAD_SUPER_ATTR = opmap['LOAD_SUPER_ATTR']$/;" v +LOAD_SUPER_ATTR_ATTR Include/opcode.h 191;" d +LOAD_SUPER_ATTR_METHOD Include/opcode.h 192;" d +LOAD_SUPER_METHOD Include/opcode.h 150;" d +LOAD_ZERO_SUPER_ATTR Include/opcode.h 152;" d +LOAD_ZERO_SUPER_METHOD Include/opcode.h 151;" d +LOC Python/compile.c 104;" d file: +LOCAL Include/internal/pycore_symtable.h 134;" d +LOCAL Modules/_elementtree.c 42;" d file: +LOCAL Modules/_elementtree.c 44;" d file: +LOCAL Modules/_sre/sre.c /^LOCAL(Py_ssize_t)$/;" f +LOCAL Modules/_sre/sre.c 63;" d file: +LOCAL Modules/_sre/sre.c 65;" d file: +LOCAL Tools/c-analyzer/c_parser/parser/_func_body.py /^LOCAL = set_capture_groups(_LOCAL, ($/;" v +LOCALEDIR Lib/test/test_gettext.py /^LOCALEDIR = os.path.join('xx', 'LC_MESSAGES')$/;" v +LOCALE_ALIAS Tools/i18n/makelocalealias.py /^LOCALE_ALIAS = '\/usr\/share\/X11\/locale\/locale.alias'$/;" v +LOCALHOST Lib/idlelib/rpc.py /^LOCALHOST = '127.0.0.1'$/;" v +LOCALHOST Lib/idlelib/run.py /^LOCALHOST = '127.0.0.1'$/;" v +LOCALS Python/ceval_macros.h 282;" d +LOCAL_RE Tools/c-analyzer/c_parser/parser/_func_body.py /^LOCAL_RE = re.compile(rf'^ \\s* {LOCAL}', re.VERBOSE)$/;" v +LOCAL_RECORDERS Lib/test/test_monitoring.py /^LOCAL_RECORDERS = CallRecorder, LineRecorder, CReturnRecorder, CRaiseRecorder$/;" v +LOCAL_STATICS Tools/c-analyzer/c_parser/parser/_func_body.py /^LOCAL_STATICS = set_capture_groups(_LOCAL_STATICS, ($/;" v +LOCAL_STATICS_RE Tools/c-analyzer/c_parser/parser/_func_body.py /^LOCAL_STATICS_RE = re.compile(rf'^ \\s* {LOCAL_STATICS}', re.VERBOSE)$/;" v +LOCATION Python/compile.c 93;" d file: +LOCATION Python/symtable.c 72;" d file: +LOCKED Lib/http/__init__.py /^ LOCKED = 423, 'Locked'$/;" v class:HTTPStatus +LOCKED Lib/test/test_httplib.py /^ LOCKED = 423, 'Locked'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +LOCKS_INIT Python/pystate.c 384;" d file: +LOCK_EX Modules/fcntlmodule.c 387;" d file: +LOCK_NB Modules/fcntlmodule.c 388;" d file: +LOCK_SH Modules/fcntlmodule.c 386;" d file: +LOCK_TYPES Lib/test/test_importlib/test_locks.py /^LOCK_TYPES = {kind: splitinit._bootstrap._ModuleLock$/;" v +LOCK_UN Modules/fcntlmodule.c 389;" d file: +LOG Objects/stringlib/fastsearch.h 191;" d +LOG Objects/stringlib/fastsearch.h 545;" d +LOG PC/layout/support/logging.py /^LOG = None$/;" v +LOG4 Lib/random.py /^LOG4 = _log(4.0)$/;" v +LOGGER Lib/concurrent/futures/_base.py /^LOGGER = logging.getLogger("concurrent.futures")$/;" v +LOGGER_NAME Lib/multiprocessing/util.py /^LOGGER_NAME = 'multiprocessing'$/;" v +LOGGING_FORMAT Lib/unittest/_log.py /^ LOGGING_FORMAT = "%(levelname)s:%(name)s:%(message)s"$/;" v class:_AssertLogsContext +LOGOUT Lib/telnetlib.py /^LOGOUT = bytes([18]) # force logout$/;" v +LOG_ALERT Lib/logging/handlers.py /^ LOG_ALERT = 1 # action must be taken immediately$/;" v class:SysLogHandler +LOG_AUTH Lib/logging/handlers.py /^ LOG_AUTH = 4 # security\/authorization messages$/;" v class:SysLogHandler +LOG_AUTHPRIV Lib/logging/handlers.py /^ LOG_AUTHPRIV = 10 # security\/authorization messages (private)$/;" v class:SysLogHandler +LOG_BITS_PER_INT Include/internal/pycore_opcode_utils.h 66;" d +LOG_BITS_PER_INT Include/internal/pycore_opcode_utils.h 85;" d +LOG_CONSOLE Lib/logging/handlers.py /^ LOG_CONSOLE = 14 # Log alert$/;" v class:SysLogHandler +LOG_CRIT Lib/logging/handlers.py /^ LOG_CRIT = 2 # critical conditions$/;" v class:SysLogHandler +LOG_CRON Lib/logging/handlers.py /^ LOG_CRON = 9 # clock daemon$/;" v class:SysLogHandler +LOG_CRON Modules/syslogmodule.c 392;" d file: +LOG_DAEMON Lib/logging/handlers.py /^ LOG_DAEMON = 3 # system daemons$/;" v class:SysLogHandler +LOG_DEBUG Lib/logging/handlers.py /^ LOG_DEBUG = 7 # debug-level messages$/;" v class:SysLogHandler +LOG_EMERG Lib/logging/handlers.py /^ LOG_EMERG = 0 # system is unusable$/;" v class:SysLogHandler +LOG_ERR Lib/logging/handlers.py /^ LOG_ERR = 3 # error conditions$/;" v class:SysLogHandler +LOG_FTP Lib/logging/handlers.py /^ LOG_FTP = 11 # FTP daemon$/;" v class:SysLogHandler +LOG_INFO Lib/logging/handlers.py /^ LOG_INFO = 6 # informational$/;" v class:SysLogHandler +LOG_KERN Lib/logging/handlers.py /^ LOG_KERN = 0 # kernel messages$/;" v class:SysLogHandler +LOG_LEVEL Lib/test/_test_multiprocessing.py /^LOG_LEVEL = util.SUBWARNING$/;" v +LOG_LINEUP Objects/stringlib/fastsearch.h 193;" d +LOG_LINEUP Objects/stringlib/fastsearch.h 547;" d +LOG_LOCAL0 Lib/logging/handlers.py /^ LOG_LOCAL0 = 16 # reserved for local use$/;" v class:SysLogHandler +LOG_LOCAL1 Lib/logging/handlers.py /^ LOG_LOCAL1 = 17 # reserved for local use$/;" v class:SysLogHandler +LOG_LOCAL2 Lib/logging/handlers.py /^ LOG_LOCAL2 = 18 # reserved for local use$/;" v class:SysLogHandler +LOG_LOCAL3 Lib/logging/handlers.py /^ LOG_LOCAL3 = 19 # reserved for local use$/;" v class:SysLogHandler +LOG_LOCAL4 Lib/logging/handlers.py /^ LOG_LOCAL4 = 20 # reserved for local use$/;" v class:SysLogHandler +LOG_LOCAL5 Lib/logging/handlers.py /^ LOG_LOCAL5 = 21 # reserved for local use$/;" v class:SysLogHandler +LOG_LOCAL6 Lib/logging/handlers.py /^ LOG_LOCAL6 = 22 # reserved for local use$/;" v class:SysLogHandler +LOG_LOCAL7 Lib/logging/handlers.py /^ LOG_LOCAL7 = 23 # reserved for local use$/;" v class:SysLogHandler +LOG_LPR Lib/logging/handlers.py /^ LOG_LPR = 6 # line printer subsystem$/;" v class:SysLogHandler +LOG_MAIL Lib/logging/handlers.py /^ LOG_MAIL = 2 # mail system$/;" v class:SysLogHandler +LOG_NEWS Lib/logging/handlers.py /^ LOG_NEWS = 7 # network news subsystem$/;" v class:SysLogHandler +LOG_NEWS Modules/syslogmodule.c 386;" d file: +LOG_NOTICE Lib/logging/handlers.py /^ LOG_NOTICE = 5 # normal but significant condition$/;" v class:SysLogHandler +LOG_NTP Lib/logging/handlers.py /^ LOG_NTP = 12 # NTP subsystem$/;" v class:SysLogHandler +LOG_PREFIX Lib/test/test_regrtest.py /^LOG_PREFIX = r'[0-9]+:[0-9]+:[0-9]+ (?:load avg: [0-9]+\\.[0-9]{2} )?'$/;" v +LOG_SECURITY Lib/logging/handlers.py /^ LOG_SECURITY = 13 # Log audit$/;" v class:SysLogHandler +LOG_SOLCRON Lib/logging/handlers.py /^ LOG_SOLCRON = 15 # Scheduling daemon (Solaris)$/;" v class:SysLogHandler +LOG_STRING Objects/stringlib/fastsearch.h 192;" d +LOG_STRING Objects/stringlib/fastsearch.h 546;" d +LOG_SYSLOG Lib/logging/handlers.py /^ LOG_SYSLOG = 5 # messages generated internally by syslogd$/;" v class:SysLogHandler +LOG_SYSLOG Modules/syslogmodule.c 383;" d file: +LOG_THRESHOLD_FOR_CONNLOST_WRITES Lib/asyncio/constants.py /^LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5$/;" v +LOG_USER Lib/logging/handlers.py /^ LOG_USER = 1 # random user-level messages$/;" v class:SysLogHandler +LOG_UUCP Lib/logging/handlers.py /^ LOG_UUCP = 8 # UUCP subsystem$/;" v class:SysLogHandler +LOG_UUCP Modules/syslogmodule.c 389;" d file: +LOG_WARNING Lib/logging/handlers.py /^ LOG_WARNING = 4 # warning conditions$/;" v class:SysLogHandler +LONG Lib/ctypes/wintypes.py /^LONG = ctypes.c_long$/;" v +LONG Lib/pickle.py /^LONG = b'L' # push long; decimal string argument$/;" v +LONG Modules/_pickle.c /^ LONG = 'L',$/;" e enum:opcode file: +LONG Modules/_pickle.c 44;" d file: +LONG Tools/build/umarshal.py /^ LONG = ord('l')$/;" v class:Type +LONG1 Lib/pickle.py /^LONG1 = b'\\x8a' # push long from < 256 bytes$/;" v +LONG1 Modules/_pickle.c /^ LONG1 = '\\x8a',$/;" e enum:opcode file: +LONG4 Lib/pickle.py /^LONG4 = b'\\x8b' # push really big long$/;" v +LONG4 Modules/_pickle.c /^ LONG4 = '\\x8b',$/;" e enum:opcode file: +LONGSLEEP Lib/test/fork_wait.py /^LONGSLEEP = 2$/;" v +LONG_ALIGN Modules/_struct.c 89;" d file: +LONG_BINGET Lib/pickle.py /^LONG_BINGET = b'j' # push item from memo on stack; index is 4-byte arg$/;" v +LONG_BINGET Modules/_pickle.c /^ LONG_BINGET = 'j',$/;" e enum:opcode file: +LONG_BINPUT Lib/pickle.py /^LONG_BINPUT = b'r' # " " " " " ; " " 4-byte arg$/;" v +LONG_BINPUT Modules/_pickle.c /^ LONG_BINPUT = 'r',$/;" e enum:opcode file: +LONG_BIT Include/pyport.h 577;" d +LONG_BIT PC/pyconfig.h 64;" d +LONG_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 720;" d +LONG_LONG_ALIGN Modules/_struct.c 99;" d file: +LONG_LONG_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 804;" d +LONG_MAX Include/pyport.h 564;" d +LONG_MAX Include/pyport.h 566;" d +LONG_MIN Include/pyport.h 573;" d +LONG_TIMEOUT Lib/test/support/__init__.py /^LONG_TIMEOUT = 5 * 60.0$/;" v +LOOKASIDE_PATH PC/launcher.c 204;" d file: +LOOKUP Lib/lib2to3/fixes/fix_renames.py /^LOOKUP = {}$/;" v +LOOK_UP_SELF_METHODDEF Modules/_testsinglephase.c 190;" d file: +LOOPBACK_TIMEOUT Lib/test/support/__init__.py /^ LOOPBACK_TIMEOUT = 10$/;" v +LOOPBACK_TIMEOUT Lib/test/support/__init__.py /^LOOPBACK_TIMEOUT = 5.0$/;" v +LOOP_DETECTED Lib/http/__init__.py /^ LOOP_DETECTED = 508, 'Loop Detected'$/;" v class:HTTPStatus +LOOP_DETECTED Lib/test/test_httplib.py /^ LOOP_DETECTED = 508, 'Loop Detected'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +LOOSE_HTTP_DATE_RE Lib/http/cookiejar.py /^LOOSE_HTTP_DATE_RE = re.compile($/;" v +LOR Tools/cases_generator/lexer.py /^LOR = r'\\|\\|'$/;" v +LOW64_OF Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h 12;" d +LOWER_MASK Modules/_randommodule.c 89;" d file: +LOWER_MASK Objects/unicodectype.c 16;" d file: +LOWER_MASK Tools/unicode/makeunicodedata.py /^LOWER_MASK = 0x08$/;" v +LOW_BEAM_C Lib/test/test_enum.py /^ LOW_BEAM_C = auto()$/;" v class:HeadlightsC +LOW_BEAM_K Lib/test/test_enum.py /^ LOW_BEAM_K = auto()$/;" v class:HeadlightsK +LOW_BIT Modules/_ctypes/cfield.c 385;" d file: +LPAR Include/internal/pycore_token.h 23;" d +LPAR Lib/lib2to3/pgen2/token.py /^LPAR = 7$/;" v +LPAR Lib/token.py /^LPAR = 7$/;" v +LPARAM Lib/ctypes/wintypes.py /^ LPARAM = ctypes.c_long$/;" v +LPARAM Lib/ctypes/wintypes.py /^ LPARAM = ctypes.c_longlong$/;" v +LPAREN Tools/cases_generator/lexer.py /^LPAREN = r'\\('$/;" v +LPCOLORREF Lib/ctypes/wintypes.py /^LPCOLORREF = ctypes.POINTER(COLORREF)$/;" v +LPHKL Lib/ctypes/wintypes.py /^LPHKL = ctypes.POINTER(HKL)$/;" v +LPSC_HANDLE Lib/ctypes/wintypes.py /^LPSC_HANDLE = ctypes.POINTER(SC_HANDLE)$/;" v +LParen Lib/lib2to3/fixer_util.py /^def LParen():$/;" f +LSHIFT Tools/cases_generator/lexer.py /^LSHIFT = r'<<'$/;" v +LSQB Include/internal/pycore_token.h 25;" d +LSQB Lib/lib2to3/pgen2/token.py /^LSQB = 9$/;" v +LSQB Lib/token.py /^LSQB = 9$/;" v +LSTAT Modules/posixmodule.c 493;" d file: +LSTAT Modules/posixmodule.c 498;" d file: +LShift Include/internal/pycore_ast.h /^ LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12,$/;" e enum:_operator +LShift_singleton Include/internal/pycore_ast_state.h /^ PyObject *LShift_singleton;$/;" m struct:ast_state +LShift_type Include/internal/pycore_ast_state.h /^ PyObject *LShift_type;$/;" m struct:ast_state +LT Lib/test/test_heapq.py /^ class LT:$/;" c function:TestHeap.test_comparison_operator +LT Tools/cases_generator/lexer.py /^LT = r'<'$/;" v +LT_CURRENT_LOCALE Python/formatter_unicode.c /^ LT_CURRENT_LOCALE$/;" e enum:LocaleType file: +LT_DEFAULT_LOCALE Python/formatter_unicode.c /^ LT_DEFAULT_LOCALE = ',',$/;" e enum:LocaleType file: +LT_NO_LOCALE Python/formatter_unicode.c /^ LT_NO_LOCALE = 0,$/;" e enum:LocaleType file: +LT_UNDERSCORE_LOCALE Python/formatter_unicode.c /^ LT_UNDERSCORE_LOCALE = '_',$/;" e enum:LocaleType file: +LT_UNDER_FOUR_LOCALE Python/formatter_unicode.c /^ LT_UNDER_FOUR_LOCALE,$/;" e enum:LocaleType file: +LWPCookieJar Lib/http/cookiejar.py /^class LWPCookieJar(FileCookieJar):$/;" c +LWPCookieTests Lib/test/test_http_cookiejar.py /^class LWPCookieTests(unittest.TestCase):$/;" c +LZMACompressor Lib/zipfile/__init__.py /^class LZMACompressor:$/;" c +LZMADecompressor Lib/zipfile/__init__.py /^class LZMADecompressor:$/;" c +LZMAFile Lib/lzma.py /^class LZMAFile(_compression.BaseStream):$/;" c +LZMA_CHECK_UNKNOWN Modules/_lzmamodule.c 103;" d file: +LZMA_VERSION Lib/zipfile/__init__.py /^LZMA_VERSION = 63$/;" v +L_get Modules/_ctypes/cfield.c /^L_get(void *ptr, Py_ssize_t size)$/;" f file: +L_get_sw Modules/_ctypes/cfield.c /^L_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +L_set Modules/_ctypes/cfield.c /^L_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +L_set_sw Modules/_ctypes/cfield.c /^L_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +Label Lib/test/support/bytecode_helper.py /^ class Label:$/;" c class:CompilationStepTestCase +Label Lib/test/test_typing.py /^Label = TypedDict('Label', [('label', str)])$/;" v +Label Lib/tkinter/__init__.py /^class Label(Widget):$/;" c +Label Lib/tkinter/ttk.py /^class Label(Widget):$/;" c +LabelEntry Lib/tkinter/tix.py /^class LabelEntry(TixWidget):$/;" c +LabelFrame Lib/tkinter/__init__.py /^class LabelFrame(Widget):$/;" c +LabelFrame Lib/tkinter/tix.py /^class LabelFrame(TixWidget):$/;" c +LabelFrame Lib/tkinter/ttk.py /^LabelFrame = Labelframe # tkinter name compatibility$/;" v +LabelFrameTest Lib/test/test_tkinter/test_widgets.py /^class LabelFrameTest(AbstractToplevelTest, unittest.TestCase):$/;" c +LabelFrameTest Lib/test/test_ttk/test_widgets.py /^class LabelFrameTest(AbstractToplevelTest, unittest.TestCase):$/;" c +LabelPoint2D Lib/test/test_typing.py /^class LabelPoint2D(Point2D, Label): ...$/;" c +LabelTest Lib/test/test_tkinter/test_widgets.py /^class LabelTest(AbstractLabelTest, unittest.TestCase):$/;" c +LabelTest Lib/test/test_ttk/test_widgets.py /^class LabelTest(AbstractLabelTest, unittest.TestCase):$/;" c +Labeled Tools/c-analyzer/c_common/misc.py /^class Labeled:$/;" c +LabeledBox Lib/test/test_dataclasses.py /^ class LabeledBox(Generic[T]):$/;" c function:TestCase.test_generic_dataclasses +LabeledScale Lib/tkinter/ttk.py /^class LabeledScale(Frame):$/;" c +LabeledScaleTest Lib/test/test_ttk/test_extensions.py /^class LabeledScaleTest(AbstractTkTest, unittest.TestCase):$/;" c +Labelframe Lib/tkinter/ttk.py /^class Labelframe(Widget):$/;" c +LabelledIntEnum Lib/test/test_enum.py /^ class LabelledIntEnum(int, Enum):$/;" c function:TestSpecial.test_conflicting_types_resolved_in_new +LabelledList Lib/test/test_enum.py /^ class LabelledList(LabelledIntEnum):$/;" c function:TestSpecial.test_conflicting_types_resolved_in_new +LacksEnter Lib/test/test_contextlib.py /^ class LacksEnter:$/;" c function:TestBaseExitStack.test_enter_context_errors +LacksEnter Lib/test/test_contextlib_async.py /^ class LacksEnter:$/;" c function:TestAsyncExitStack.test_enter_async_context_errors +LacksEnter Lib/test/test_unittest/test_async_case.py /^class LacksEnter:$/;" c +LacksEnter Lib/test/test_unittest/test_runner.py /^class LacksEnter:$/;" c +LacksEnter Lib/test/test_with.py /^ class LacksEnter(object):$/;" c function:FailureTestCase.testEnterAttributeError1 +LacksEnterAndExit Lib/test/test_contextlib.py /^ class LacksEnterAndExit:$/;" c function:TestBaseExitStack.test_enter_context_errors +LacksEnterAndExit Lib/test/test_contextlib_async.py /^ class LacksEnterAndExit:$/;" c function:TestAsyncExitStack.test_enter_async_context_errors +LacksEnterAndExit Lib/test/test_unittest/test_async_case.py /^class LacksEnterAndExit:$/;" c +LacksEnterAndExit Lib/test/test_unittest/test_runner.py /^class LacksEnterAndExit:$/;" c +LacksEnterAndExit Lib/test/test_with.py /^ class LacksEnterAndExit(object):$/;" c function:FailureTestCase.testEnterAttributeError2 +LacksExit Lib/test/test_contextlib.py /^ class LacksExit:$/;" c function:TestBaseExitStack.test_enter_context_errors +LacksExit Lib/test/test_contextlib_async.py /^ class LacksExit:$/;" c function:TestAsyncExitStack.test_enter_async_context_errors +LacksExit Lib/test/test_unittest/test_async_case.py /^class LacksExit:$/;" c +LacksExit Lib/test/test_unittest/test_runner.py /^class LacksExit:$/;" c +LacksExit Lib/test/test_with.py /^ class LacksExit(object):$/;" c function:FailureTestCase.testExitAttributeError +Lambda Include/internal/pycore_ast.h /^ } Lambda;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon82 +LambdaType Lib/types.py /^LambdaType = type(lambda: None) # Same as FunctionType$/;" v +Lambda_fields Python/Python-ast.c /^static const char * const Lambda_fields[]={$/;" v file: +Lambda_kind Include/internal/pycore_ast.h /^ Lambda_kind=5, IfExp_kind=6, Dict_kind=7, Set_kind=8,$/;" e enum:_expr_kind +Lambda_type Include/internal/pycore_ast_state.h /^ PyObject *Lambda_type;$/;" m struct:ast_state +LandMine Tools/clinic/clinic.py /^class LandMine:$/;" c +LangDict Tools/clinic/clinic.py /^LangDict = dict[str, Callable[[str], Language]]$/;" v +Language Tools/clinic/clinic.py /^class Language(metaclass=abc.ABCMeta):$/;" c +LargeArrayTest Lib/test/test_array.py /^class LargeArrayTest(unittest.TestCase):$/;" c +LargeFileTest Lib/test/test_largefile.py /^class LargeFileTest:$/;" c +LargeMmapTests Lib/test/test_mmap.py /^class LargeMmapTests(unittest.TestCase):$/;" c +LargeValuesTestCase Lib/test/test_marshal.py /^class LargeValuesTestCase(unittest.TestCase):$/;" c +LargeZipFile Lib/zipfile/__init__.py /^class LargeZipFile(Exception):$/;" c +LastAccessTime Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER LastAccessTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +LastResortTest Lib/test/test_logging.py /^class LastResortTest(BaseTest):$/;" c +LastWriteTime Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER LastWriteTime;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +Lasti Objects/frameobject.c /^ Lasti = 5,$/;" e enum:kind file: +Latin1Test Lib/test/test_codecs.py /^class Latin1Test(unittest.TestCase):$/;" c +LaunchCondition Lib/msilib/schema.py /^LaunchCondition = Table('LaunchCondition')$/;" v +Lazarus Lib/test/test_gc.py /^ class Lazarus(A):$/;" c function:GCTests.test_resurrection_only_happens_once_per_object +Lazarus Lib/test/test_gc.py /^ class Lazarus:$/;" c function:GCTests.test_is_finalized +Lazarus Lib/test/test_gc.py /^ class Lazarus:$/;" c function:GCTests.test_resurrection_is_transitive +LazyGNV Lib/test/test_enum.py /^ class LazyGNV(self.enum_type):$/;" c function:_EnumTests.setUp +LazyLoader Lib/importlib/util.py /^class LazyLoader(Loader):$/;" c +LazyLoaderFactoryTests Lib/test/test_importlib/test_lazy.py /^class LazyLoaderFactoryTests(unittest.TestCase):$/;" c +LazyLoaderTests Lib/test/test_importlib/test_lazy.py /^class LazyLoaderTests(unittest.TestCase):$/;" c +Leaf Lib/lib2to3/pytree.py /^class Leaf(Base):$/;" c +Leaf Tools/peg_generator/pegen/grammar.py /^class Leaf:$/;" c +LeafGeneratorTest Lib/test/test_exception_group.py /^class LeafGeneratorTest(unittest.TestCase):$/;" c +LeafPattern Lib/lib2to3/pytree.py /^class LeafPattern(BasePattern):$/;" c +LeapdaysTestCase Lib/test/test_calendar.py /^class LeapdaysTestCase(unittest.TestCase):$/;" c +Leave Lib/test/test_tkinter/test_misc.py /^ Leave = '8'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Leave Lib/tkinter/__init__.py /^ Leave = '8'$/;" v class:EventType +LeaveNonRecursiveMutex Python/thread_nt.h /^LeaveNonRecursiveMutex(PNRMUTEX mutex)$/;" f +Left Lib/test/test_compare.py /^ class Left:$/;" c function:ComparisonSimpleTest.test_ne_high_priority +Left Lib/test/test_subclassinit.py /^ class Left(Base):$/;" c function:Test.test_init_subclass_diamond +Legacy Lib/test/test_finalization.py /^class Legacy(LegacyBase):$/;" c +LegacyBase Lib/test/test_finalization.py /^class LegacyBase(SimpleBase):$/;" c +LegacyBase64TestCase Lib/test/test_base64.py /^class LegacyBase64TestCase(unittest.TestCase):$/;" c +LegacyDots Lib/test/test_importlib/test_metadata_api.py /^class LegacyDots(fixtures.DistInfoPkgWithDotLegacy, unittest.TestCase):$/;" c +LegacyFinalizationTest Lib/test/test_finalization.py /^class LegacyFinalizationTest(TestBase, unittest.TestCase):$/;" c +LegacyInterpolation Lib/configparser.py /^class LegacyInterpolation(Interpolation):$/;" c +LegacyLoggingResult Lib/test/test_unittest/support.py /^class LegacyLoggingResult(_BaseLoggingResult):$/;" c +LegacyResurrector Lib/test/test_finalization.py /^class LegacyResurrector(LegacyBase):$/;" c +LegacySelfCycle Lib/test/test_finalization.py /^class LegacySelfCycle(SelfCycleBase, LegacyBase):$/;" c +LegacySupport Lib/test/test_importlib/test_namespace_pkgs.py /^class LegacySupport(NamespacePackageTest):$/;" c +LenOnly Lib/test/test_bisect.py /^class LenOnly:$/;" c +LenOnly Lib/test/test_heapq.py /^class LenOnly:$/;" c +LengthTransparency Lib/test/test_itertools.py /^class LengthTransparency(unittest.TestCase):$/;" c +LenientStrEnum Lib/test/test_enum.py /^ class LenientStrEnum(str, Enum):$/;" c function:TestSpecial.test_multiple_mixin_with_common_data_type +LettersOnly Lib/test/test_enum.py /^ LettersOnly = 0x02$/;" v class:OldTestFlag.test_boundary.MethodHint +LexicalHandler Lib/xml/sax/handler.py /^class LexicalHandler:$/;" c +LexicalHandlerTest Lib/test/test_sax.py /^class LexicalHandlerTest(unittest.TestCase):$/;" c +LibTest Lib/test/test_ctypes/test_libc.py /^class LibTest(unittest.TestCase):$/;" c +LibraryLoader Lib/ctypes/__init__.py /^class LibraryLoader(object):$/;" c +LifetimeTests Lib/test/test_importlib/test_locks.py /^class LifetimeTests:$/;" c +LifoQueue Lib/asyncio/queues.py /^class LifoQueue(Queue):$/;" c +LifoQueue Lib/queue.py /^class LifoQueue(Queue):$/;" c +LifoQueueJoinTests Lib/test/test_asyncio/test_queues.py /^class LifoQueueJoinTests(_QueueJoinTestMixin, unittest.IsolatedAsyncioTestCase):$/;" c +LifoQueueTest Lib/test/test_queue.py /^class LifoQueueTest(BaseQueueTestMixin):$/;" c +LifoQueueTests Lib/test/test_asyncio/test_queues.py /^class LifoQueueTests(unittest.IsolatedAsyncioTestCase):$/;" c +LimitOverrunError Lib/asyncio/exceptions.py /^class LimitOverrunError(Exception):$/;" c +LimitTests Lib/test/test_traceback.py /^class LimitTests(unittest.TestCase):$/;" c +LimitedAPIList Doc/tools/extensions/c_annotations.py /^ class LimitedAPIList(Directive):$/;" c function:init_annotations +LimitedRecursiveIncludeError Lib/xml/etree/ElementInclude.py /^class LimitedRecursiveIncludeError(FatalIncludeError):$/;" c +LimitedVectorCallClass_members Modules/_testcapi/vectorcall_limited.c /^static PyMemberDef LimitedVectorCallClass_members[] = {$/;" v file: +LimitedVectorCallClass_new Modules/_testcapi/vectorcall_limited.c /^LimitedVectorCallClass_new(PyTypeObject *tp, PyTypeObject *a, PyTypeObject *kw)$/;" f file: +LimitedVectorCallClass_spec Modules/_testcapi/vectorcall_limited.c /^static PyType_Spec LimitedVectorCallClass_spec = {$/;" v file: +LimitedVectorCallClass_tpcall Modules/_testcapi/vectorcall_limited.c /^LimitedVectorCallClass_tpcall(PyObject *self, PyObject *args, PyObject *kwargs) {$/;" f file: +LimitedVectorCallClass_vectorcall Modules/_testcapi/vectorcall_limited.c /^LimitedVectorCallClass_vectorcall(PyObject *callable,$/;" f file: +LimitedVectorallClass_slots Modules/_testcapi/vectorcall_limited.c /^static PyType_Slot LimitedVectorallClass_slots[] = {$/;" v file: +LimitsTest Lib/test/test_tarfile.py /^class LimitsTest(unittest.TestCase):$/;" c +LineBufferedFileObjectClassTestCase Lib/test/test_socket.py /^class LineBufferedFileObjectClassTestCase(FileObjectClassTestCase):$/;" c +LineCacheInvalidationTests Lib/test/test_linecache.py /^class LineCacheInvalidationTests(unittest.TestCase):$/;" c +LineCacheTests Lib/test/test_linecache.py /^class LineCacheTests(unittest.TestCase):$/;" c +LineEndingTest Lib/test/test_importlib/source/test_source_encoding.py /^class LineEndingTest:$/;" c +LineEndingTestPEP302 Lib/test/test_importlib/source/test_source_encoding.py /^class LineEndingTestPEP302(LineEndingTest):$/;" c +LineEndingTestPEP451 Lib/test/test_importlib/source/test_source_encoding.py /^class LineEndingTestPEP451(LineEndingTest):$/;" c +LineMonitoringTest Lib/test/test_monitoring.py /^class LineMonitoringTest(MonitoringTestBase, unittest.TestCase):$/;" c +LineNumbers Lib/idlelib/sidebar.py /^class LineNumbers(BaseSideBar):$/;" c +LineNumbersTest Lib/idlelib/idle_test/test_sidebar.py /^class LineNumbersTest(unittest.TestCase):$/;" c +LineReader Lib/test/test_fileinput.py /^class LineReader:$/;" c +LineRecorder Lib/test/test_monitoring.py /^class LineRecorder:$/;" c +LineTooLong Lib/http/client.py /^class LineTooLong(HTTPException):$/;" c +LinearRegression Lib/statistics.py /^LinearRegression = namedtuple('LinearRegression', ('slope', 'intercept'))$/;" v +LinkEmulationTest Lib/test/test_tarfile.py /^class LinkEmulationTest(ReadTest, unittest.TestCase):$/;" c +LinkOutsideDestinationError Lib/tarfile.py /^class LinkOutsideDestinationError(FilterError):$/;" c +LinkTests Lib/test/test_os.py /^class LinkTests(unittest.TestCase):$/;" c +LinuxKernelCryptoAPI Lib/test/test_socket.py /^class LinuxKernelCryptoAPI(unittest.TestCase):$/;" c +List Include/internal/pycore_ast.h /^ } List;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon102 +List Lib/idlelib/idle_test/test_calltip.py /^ class List(list): "List() doc"$/;" c function:Get_argspecTest.test_builtins +List Lib/test/test_bisect.py /^ class List(list):$/;" c function:TestInsort.test_listDerived +List Lib/test/test_code.py /^ class List(list):$/;" c function:CodeTest.test_closure_injection +List Lib/test/test_weakref.py /^ class List(list): pass$/;" c function:ReferencesTestCase.test_proxy_bool +List Lib/typing.py /^List = _alias(list, 1, inst=False, name='List')$/;" v +ListAllTests Lib/test/test__xxsubinterpreters.py /^class ListAllTests(TestBase):$/;" c +ListAllTests Lib/test/test_interpreters.py /^class ListAllTests(TestBase):$/;" c +ListBox Lib/msilib/schema.py /^ListBox = Table('ListBox')$/;" v +ListComp Include/internal/pycore_ast.h /^ } ListComp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon86 +ListComp Lib/lib2to3/fixer_util.py /^def ListComp(xp, fp, it, test=None):$/;" f +ListComp_fields Python/Python-ast.c /^static const char * const ListComp_fields[]={$/;" v file: +ListComp_kind Include/internal/pycore_ast.h /^ ListComp_kind=9, SetComp_kind=10, DictComp_kind=11,$/;" e enum:_expr_kind +ListComp_type Include/internal/pycore_ast_state.h /^ PyObject *ListComp_type;$/;" m struct:ast_state +ListComprehension Include/internal/pycore_symtable.h /^ ListComprehension = 1,$/;" e enum:_comprehension_type +ListComprehensionTest Lib/test/test_listcomps.py /^class ListComprehensionTest(unittest.TestCase):$/;" c +ListNoteBook Lib/tkinter/tix.py /^class ListNoteBook(TixWidget):$/;" c +ListProxy Lib/multiprocessing/managers.py /^class ListProxy(BaseListProxy):$/;" c +ListSeparator Lib/email/_header_value_parser.py /^ListSeparator = ValueTerminal(',', 'list-separator')$/;" v +ListSet Lib/test/test_collections.py /^ class ListSet(Set):$/;" c function:TestCollectionABCs.test_Set_interoperability_with_real_sets +ListTest Lib/test/test_bigmem.py /^class ListTest(unittest.TestCase):$/;" c +ListTest Lib/test/test_list.py /^class ListTest(list_tests.CommonTest):$/;" c +ListTest Lib/test/test_richcmp.py /^class ListTest(unittest.TestCase):$/;" c +ListTest Lib/test/test_tarfile.py /^class ListTest(ReadTest, unittest.TestCase):$/;" c +ListTestCase Lib/test/test_index.py /^class ListTestCase(SeqTestCase, unittest.TestCase):$/;" c +ListType Modules/_tkinter.c /^ const Tcl_ObjType *ListType;$/;" m struct:__anon334 file: +ListView Lib/msilib/schema.py /^ListView = Table('ListView')$/;" v +List_fields Python/Python-ast.c /^static const char * const List_fields[]={$/;" v file: +List_kind Include/internal/pycore_ast.h /^ Name_kind=24, List_kind=25, Tuple_kind=26, Slice_kind=27};$/;" e enum:_expr_kind +List_type Include/internal/pycore_ast_state.h /^ PyObject *List_type;$/;" m struct:ast_state +Listbox Lib/tkinter/__init__.py /^class Listbox(Widget, XView, YView):$/;" c +ListboxTest Lib/test/test_tkinter/test_widgets.py /^class ListboxTest(AbstractWidgetTest, unittest.TestCase):$/;" c +ListedToplevel Lib/idlelib/window.py /^class ListedToplevel(Toplevel):$/;" c +ListedToplevelTest Lib/idlelib/idle_test/test_window.py /^class ListedToplevelTest(unittest.TestCase):$/;" c +Listener Lib/multiprocessing/connection.py /^class Listener(object):$/;" c +Listener Lib/multiprocessing/dummy/connection.py /^class Listener(object):$/;" c +Literal Lib/imaplib.py /^Literal = re.compile(br'.*{(?P\\d+)}$', re.ASCII)$/;" v +Literal Lib/typing.py /^def Literal(self, *parameters):$/;" f +LiteralString Lib/typing.py /^def LiteralString(self, parameters):$/;" f +LiteralStringTests Lib/test/test_typing.py /^class LiteralStringTests(BaseTestCase):$/;" c +LiteralTests Lib/test/test_typing.py /^class LiteralTests(BaseTestCase):$/;" c +Little Lib/test/test_ctypes/test_bitfields.py /^ class Little(LittleEndianStructure):$/;" c function:BitFieldTest.test_uint32_swap_little_endian +LittleEndianStructure Lib/ctypes/_endian.py /^ LittleEndianStructure = Structure$/;" v class:_swapped_union_meta +LittleEndianStructure Lib/ctypes/_endian.py /^ class LittleEndianStructure(Structure, metaclass=_swapped_struct_meta):$/;" c class:_swapped_union_meta +LittleEndianUnion Lib/ctypes/_endian.py /^ LittleEndianUnion = Union$/;" v class:_swapped_union_meta +LittleEndianUnion Lib/ctypes/_endian.py /^ class LittleEndianUnion(Union, metaclass=_swapped_union_meta):$/;" c class:_swapped_union_meta +LiveDialogTest Lib/idlelib/idle_test/test_help_about.py /^class LiveDialogTest(unittest.TestCase):$/;" c +Load Include/internal/pycore_ast.h /^typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;$/;" e enum:_expr_context +Load Lib/idlelib/config.py /^ def Load(self):$/;" m class:IdleConfParser +LoadAssociateFilesStateFromKey Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static HRESULT LoadAssociateFilesStateFromKey($/;" f class:PythonBootstrapperApplication file: +LoadBootstrapperBAFunctions Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT LoadBootstrapperBAFunctions() {$/;" f class:PythonBootstrapperApplication file: +LoadCfgFiles Lib/idlelib/config.py /^ def LoadCfgFiles(self):$/;" m class:IdleConf +LoadError Lib/http/cookiejar.py /^class LoadError(OSError): pass$/;" c +LoadFileDialog Lib/tkinter/filedialog.py /^class LoadFileDialog(FileDialog):$/;" c +LoadLibrary Lib/ctypes/__init__.py /^ def LoadLibrary(self, name):$/;" m class:LibraryLoader +LoadLocalization Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT LoadLocalization(__in_z LPCWSTR wzModulePath, __in_z_opt LPCWSTR wzLanguage) {$/;" f class:PythonBootstrapperApplication file: +LoadOptionalFeatureStates Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static void LoadOptionalFeatureStates(__in IBootstrapperEngine* pEngine) {$/;" f class:PythonBootstrapperApplication file: +LoadOptionalFeatureStatesFromKey Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static HRESULT LoadOptionalFeatureStatesFromKey($/;" f class:PythonBootstrapperApplication file: +LoadPython Modules/_ctypes/callbacks.c /^static void LoadPython(void)$/;" f file: +LoadTagDefs Lib/idlelib/colorizer.py /^ def LoadTagDefs(self):$/;" m class:ColorDelegator +LoadTargetDirFromKey Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static HRESULT LoadTargetDirFromKey($/;" f class:PythonBootstrapperApplication file: +LoadTheme Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT LoadTheme(__in_z LPCWSTR wzModulePath, __in_z_opt LPCWSTR wzLanguage) {$/;" f class:PythonBootstrapperApplication file: +Load_singleton Include/internal/pycore_ast_state.h /^ PyObject *Load_singleton;$/;" m struct:ast_state +Load_type Include/internal/pycore_ast_state.h /^ PyObject *Load_type;$/;" m struct:ast_state +Loader Lib/importlib/_abc.py /^class Loader(metaclass=abc.ABCMeta):$/;" c +Loader Lib/test/test_importlib/test_abc.py /^class Loader:$/;" c +Loader Lib/test/test_importlib/test_spec.py /^ class Loader:$/;" c function:FactoryTests.test_spec_from_file_location_loader_no_location_bad_get_filename +Loader Lib/test/test_importlib/test_spec.py /^ class Loader:$/;" c function:FactoryTests.test_spec_from_file_location_smsl_default_bad_is_package +Loader Lib/test/test_importlib/test_spec.py /^ class Loader:$/;" c function:FactoryTests.test_spec_from_file_location_smsl_default_not_package +Loader Lib/test/test_importlib/test_spec.py /^ class Loader:$/;" c function:FactoryTests.test_spec_from_loader_default_with_bad_is_package +Loader Lib/test/test_importlib/test_util.py /^ class Loader(self.abc.Loader):$/;" c function:ModuleFromSpecTests.test_create_module +Loader Lib/test/test_importlib/test_util.py /^ class Loader(self.abc.Loader):$/;" c function:ModuleFromSpecTests.test_create_module_returns_None +Loader Lib/test/test_importlib/test_util.py /^ class Loader:$/;" c function:ModuleFromSpecTests.test_no_create_module +Loader Lib/test/test_unittest/test_discovery.py /^ class Loader(object):$/;" c function:TestDiscovery.test_command_line_handling_do_discovery_calls_loader +Loader Lib/test/test_unittest/test_discovery.py /^ class Loader(object):$/;" c function:TestDiscovery.test_command_line_handling_do_discovery_uses_default_loader +LoaderDefaultsTests Lib/test/test_importlib/test_abc.py /^class LoaderDefaultsTests(ABCTestHarness):$/;" c +LoaderLoadModuleTests Lib/test/test_importlib/test_abc.py /^class LoaderLoadModuleTests:$/;" c +LoaderTest Lib/test/test_ctypes/test_loading.py /^class LoaderTest(unittest.TestCase):$/;" c +LoaderTests Lib/test/test_importlib/abc.py /^class LoaderTests(metaclass=abc.ABCMeta):$/;" c +LoaderTests Lib/test/test_importlib/builtin/test_loader.py /^class LoaderTests(abc.LoaderTests):$/;" c +LoaderTests Lib/test/test_importlib/extension/test_loader.py /^class LoaderTests:$/;" c +LoaderTests Lib/test/test_importlib/test_namespace_pkgs.py /^class LoaderTests(NamespacePackageTest):$/;" c +Local Doc/includes/tzinfo_examples.py /^Local = LocalTimezone()$/;" v +Local Lib/test/test_threading_local.py /^ class Local(self._local):$/;" c function:BaseLocalTest.test_derived +Local Lib/test/test_threading_local.py /^ class Local(self._local):$/;" c function:BaseLocalTest.test_derived_cycle_dealloc +LocalClass Lib/test/test_funcattrs.py /^ class LocalClass:$/;" c function:global_function.inner_function +LocalPart Lib/email/_header_value_parser.py /^class LocalPart(TokenList):$/;" c +LocalServerTests Lib/test/test_nntplib.py /^class LocalServerTests(unittest.TestCase):$/;" c +LocalSubclass Lib/test/test_threading_local.py /^ class LocalSubclass(self._local):$/;" c function:BaseLocalTest.test_dict_attribute_subclass +LocalSubclass Lib/test/test_threading_local.py /^ class LocalSubclass(self._local):$/;" c function:BaseLocalTest.test_threading_local_subclass +LocalTimezone Doc/includes/tzinfo_examples.py /^class LocalTimezone(tzinfo):$/;" c +LocalWinregTests Lib/test/test_winreg.py /^class LocalWinregTests(BaseWinregTests):$/;" c +LocaleCodecTest Lib/test/test_codecs.py /^class LocaleCodecTest(unittest.TestCase):$/;" c +LocaleCoercionTests Lib/test/test_c_locale_coercion.py /^class LocaleCoercionTests(_LocaleHandlingTestCase):$/;" c +LocaleConfigurationTests Lib/test/test_c_locale_coercion.py /^class LocaleConfigurationTests(_LocaleHandlingTestCase):$/;" c +LocaleHTMLCalendar Lib/calendar.py /^class LocaleHTMLCalendar(HTMLCalendar):$/;" c +LocaleInfo Python/formatter_unicode.c /^} LocaleInfo;$/;" t typeref:struct:__anon675 file: +LocaleInfo_STATIC_INIT Python/formatter_unicode.c 409;" d file: +LocaleTextCalendar Lib/calendar.py /^class LocaleTextCalendar(TextCalendar):$/;" c +LocaleTime Lib/_strptime.py /^class LocaleTime(object):$/;" c +LocaleTime_Tests Lib/test/test_strptime.py /^class LocaleTime_Tests(unittest.TestCase):$/;" c +LocaleType Python/formatter_unicode.c /^enum LocaleType {$/;" g file: +LocaltimeTests Lib/test/test_email/test_utils.py /^class LocaltimeTests(unittest.TestCase):$/;" c +Locator Lib/xml/sax/xmlreader.py /^class Locator:$/;" c +Lock Lib/asyncio/locks.py /^class Lock(_ContextManagerMixin, mixins._LoopBoundMixin):$/;" c +Lock Lib/multiprocessing/context.py /^ def Lock(self):$/;" m class:BaseContext +Lock Lib/multiprocessing/synchronize.py /^class Lock(SemLock):$/;" c +Lock Lib/test/_test_multiprocessing.py /^ Lock = property(operator.attrgetter('manager.Lock'))$/;" v class:ManagerMixin +Lock Lib/test/_test_multiprocessing.py /^ Lock = staticmethod(multiprocessing.Lock)$/;" v class:ProcessesMixin +Lock Lib/test/_test_multiprocessing.py /^ Lock = staticmethod(multiprocessing.dummy.Lock)$/;" v class:ThreadsMixin +Lock Lib/threading.py /^Lock = _allocate_lock$/;" v +LockContextTestCase Lib/test/test_contextlib.py /^class LockContextTestCase(unittest.TestCase):$/;" c +LockPermissions Lib/msilib/schema.py /^LockPermissions = Table('LockPermissions')$/;" v +LockTests Lib/test/lock_tests.py /^class LockTests(BaseLockTests):$/;" c +LockTests Lib/test/test_asyncio/test_locks.py /^class LockTests(unittest.IsolatedAsyncioTestCase):$/;" c +LockTests Lib/test/test_asyncio/test_pep492.py /^class LockTests(BaseTest):$/;" c +LockTests Lib/test/test_thread.py /^class LockTests(lock_tests.LockTests):$/;" c +LockTests Lib/test/test_threading.py /^class LockTests(lock_tests.LockTests):$/;" c +Log Tools/c-analyzer/distutils/log.py /^class Log:$/;" c +Log2P Python/dtoa.c 257;" d file: +LogRecord Lib/logging/__init__.py /^class LogRecord(object):$/;" c +LogRecordFactoryTest Lib/test/test_logging.py /^class LogRecordFactoryTest(BaseTest):$/;" c +LogRecordTest Lib/test/test_logging.py /^class LogRecordTest(BaseTest):$/;" c +Logger Lib/logging/__init__.py /^class Logger(Filterer):$/;" c +LoggerAdapter Lib/logging/__init__.py /^class LoggerAdapter(object):$/;" c +LoggerAdapterTest Lib/test/test_logging.py /^class LoggerAdapterTest(unittest.TestCase):$/;" c +LoggerTest Lib/test/test_logging.py /^class LoggerTest(BaseTest, AssertErrorMessage):$/;" c +LoggingCase Lib/test/test_unittest/test_suite.py /^ class LoggingCase(unittest.TestCase):$/;" c function:Test_TestSuite.test_run +LoggingResult Lib/test/test_unittest/support.py /^class LoggingResult(_BaseLoggingResult):$/;" c +LoggingRunner Lib/test/test_unittest/test_runner.py /^ class LoggingRunner(unittest.TextTestRunner):$/;" c function:Test_TextTestRunner.test_startTestRun_stopTestRun_called +LoggingTestCase Lib/test/test_unittest/test_case.py /^ class LoggingTestCase(unittest.TestCase):$/;" c class:Test +LoggingTextResult Lib/test/test_unittest/test_runner.py /^ class LoggingTextResult(LoggingResult):$/;" c function:Test_TextTestRunner.test_startTestRun_stopTestRun_called +Logic Lib/test/test_enum.py /^ class Logic(Enum):$/;" c function:TestSpecial.test_bool +LoginTests Lib/test/test_os.py /^class LoginTests(unittest.TestCase):$/;" c +LognormalDist Lib/test/test_statistics.py /^ class LognormalDist:$/;" c function:TestNormalDist.test_equality +Long Python/dtoa.c /^typedef int32_t Long;$/;" t file: +LongExpText Lib/test/test_longexp.py /^class LongExpText(unittest.TestCase):$/;" c +LongLongTest Lib/test/test_array.py /^class LongLongTest(SignedNumberTest, unittest.TestCase):$/;" c +LongLong_TestCase Lib/test/test_capi/test_getargs.py /^class LongLong_TestCase(unittest.TestCase):$/;" c +LongReprTest Lib/test/test_reprlib.py /^class LongReprTest(unittest.TestCase):$/;" c +LongTest Lib/test/test_array.py /^class LongTest(SignedNumberTest, unittest.TestCase):$/;" c +LongTest Lib/test/test_long.py /^class LongTest(unittest.TestCase):$/;" c +LongTests Lib/test/test_capi/test_long.py /^class LongTests(unittest.TestCase):$/;" c +LongTrunc Lib/test/test_long.py /^ class LongTrunc:$/;" c function:LongTest.test_conversion +LongWordTestCase Lib/test/test_textwrap.py /^class LongWordTestCase (BaseTestCase):$/;" c +LongWordWithHyphensTestCase Lib/test/test_textwrap.py /^class LongWordWithHyphensTestCase(BaseTestCase):$/;" c +Long___abs__ Modules/_randommodule.c /^ PyObject *Long___abs__;$/;" m struct:__anon429 file: +LongnameTest Lib/test/test_tarfile.py /^class LongnameTest:$/;" c +Lookahead Tools/peg_generator/pegen/grammar.py /^class Lookahead:$/;" c +LookaheadOrCut Tools/peg_generator/pegen/grammar.py /^LookaheadOrCut = Union[Lookahead, Cut]$/;" v +Lookup Lib/importlib/metadata/__init__.py /^class Lookup:$/;" c +Loop Lib/test/test_asyncio/test_base_events.py /^ class Loop(base_events.BaseEventLoop):$/;" c function:BaseEventLoopTests.test_default_exc_handler_broken +Loop Lib/test/test_typing.py /^class Loop:$/;" c +LoopbackHttpServer Lib/test/test_urllib2_localnet.py /^class LoopbackHttpServer(http.server.HTTPServer):$/;" c +LoopbackHttpServerThread Lib/test/test_urllib2_localnet.py /^class LoopbackHttpServerThread(threading.Thread):$/;" c +LowPoint Lib/test/test_ctypes/test_byteswap.py /^ class LowPoint(LittleEndianStructure):$/;" c function:Test.test_slots +LsubCmd Lib/test/test_imaplib.py /^ class LsubCmd(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_lsub +Lt Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +LtE Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +LtE_singleton Include/internal/pycore_ast_state.h /^ PyObject *LtE_singleton;$/;" m struct:ast_state +LtE_type Include/internal/pycore_ast_state.h /^ PyObject *LtE_type;$/;" m struct:ast_state +Lt_singleton Include/internal/pycore_ast_state.h /^ PyObject *Lt_singleton;$/;" m struct:ast_state +Lt_type Include/internal/pycore_ast_state.h /^ PyObject *Lt_type;$/;" m struct:ast_state +Luch Lib/test/test_traceback.py /^ Luch = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.CaseChangeOverSubstitution +LunchError Lib/test/test_yield_from.py /^ class LunchError(Exception):$/;" c function:TestPEP380Operation.test_returning_value_from_delegated_throw +LyingList Lib/test/seq_tests.py /^class LyingList(list):$/;" c +LyingTuple Lib/test/seq_tests.py /^class LyingTuple(tuple):$/;" c +LzmaAppendTest Lib/test/test_tarfile.py /^class LzmaAppendTest(LzmaTest, AppendTestBase, unittest.TestCase):$/;" c +LzmaBadCrcTests Lib/test/test_zipfile/test_core.py /^class LzmaBadCrcTests(AbstractBadCrcTests, unittest.TestCase):$/;" c +LzmaCreateTest Lib/test/test_tarfile.py /^class LzmaCreateTest(LzmaTest, CreateTest):$/;" c +LzmaDetectReadTest Lib/test/test_tarfile.py /^class LzmaDetectReadTest(LzmaTest, DetectReadTest):$/;" c +LzmaListTest Lib/test/test_tarfile.py /^class LzmaListTest(LzmaTest, ListTest):$/;" c +LzmaMiscReadTest Lib/test/test_tarfile.py /^class LzmaMiscReadTest(LzmaTest, MiscReadTestBase, unittest.TestCase):$/;" c +LzmaStreamReadTest Lib/test/test_tarfile.py /^class LzmaStreamReadTest(LzmaTest, StreamReadTest):$/;" c +LzmaStreamWriteTest Lib/test/test_tarfile.py /^class LzmaStreamWriteTest(LzmaTest, StreamWriteTest):$/;" c +LzmaTest Lib/test/test_tarfile.py /^class LzmaTest:$/;" c +LzmaTestZip64InSmallFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +LzmaTestsWithRandomBinaryFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +LzmaTestsWithSourceFile Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +LzmaUstarReadTest Lib/test/test_tarfile.py /^class LzmaUstarReadTest(LzmaTest, UstarReadTest):$/;" c +LzmaWriteTest Lib/test/test_tarfile.py /^class LzmaWriteTest(LzmaTest, WriteTest):$/;" c +LzmaWriterTests Lib/test/test_zipfile/test_core.py /^class LzmaWriterTests(AbstractWriterTests, unittest.TestCase):$/;" c +M Lib/test/ann_module.py /^class M(type):$/;" c +M Lib/test/test_builtin.py /^ class M:$/;" c function:BuiltinTest.test_general_eval +M Lib/test/test_compile.py /^ class M:$/;" c function:TestSpecifics.test_exec_with_general_mapping_for_locals +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_disappearing_custom_mro +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_incomplete_extend +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_incomplete_set_bases_on_self +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_incomplete_super +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_reent_set_bases_on_base +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_reent_set_bases_on_direct_base +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_reent_set_bases_tp_base_cycle +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_tp_subclasses_cycle_error_return_path +M Lib/test/test_descr.py /^ class M(DebugHelperMeta):$/;" c function:MroTest.test_tp_subclasses_cycle_in_update_slots +M Lib/test/test_descr.py /^ class M(I):$/;" c function:.test_set_class +M Lib/test/test_descr.py /^ class M(type(sys)):$/;" c function:.test_dir +M Lib/test/test_descr.py /^ class M(type):$/;" c function:DictProxyTests.test_dict_type_with_metaclass +M Lib/test/test_grammar.py /^ class M: pass$/;" c function:GrammarTests.test_classdef +M Lib/test/test_grammar.py /^ class M:$/;" c function:GrammarTests.test_matrix_mul +M Lib/test/test_inspect.py /^ class M(type):$/;" c function:TestClassesAndFunctions.test_classify_class_attrs_with_buggy_dir +M Lib/test/test_inspect.py /^ class M(type):$/;" c function:TestClassesAndFunctions.test_getmembers_VirtualAttribute +M Lib/test/test_inspect.py /^ class M(type):$/;" c function:TestClassesAndFunctions.test_getmembers_with_buggy_dir +M Lib/test/test_module/__init__.py /^ class M(ModuleType):$/;" c function:ModuleTests.test_descriptor_errors_propagate +M Lib/test/test_operator.py /^ class M:$/;" c function:OperatorTestCase.test_matmul +M Lib/test/test_pydoc.py /^ class M(type):$/;" c function:PydocWithMetaClasses.test_buggy_dir +M Lib/test/test_types.py /^ class M(type):$/;" c function:ClassCreationTests.test_one_argument_type +M Lib/test/test_typing.py /^ class M(): ...$/;" c function:CollectionsAbcTests.test_subclassing_register +M Lib/test/test_typing.py /^ class M(collections.abc.Mapping): ...$/;" c function:CollectionsAbcTests.test_collections_as_base +M Lib/test/test_unicode.py /^ class M:$/;" c function:UnicodeTest.test_format +M Modules/_ctypes/_ctypes_test.c /^ short M: 1, N: 2, O: 3, P: 4, Q: 5, R: 6, S: 7;$/;" m struct:BITS file: +M Modules/_randommodule.c 86;" d file: +M Modules/cjkcodecs/cjkcodecs.h 26;" d +M1 Lib/test/test_descr.py /^ class M1(type):$/;" c function:.test_errors +M1 Lib/test/test_descr.py /^ class M1(type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +M1 Lib/test/test_patma.py /^ class M1(collections.UserDict, collections.abc.Sequence):$/;" c function:TestInheritance.test_multiple_inheritance_mapping +M2 Lib/test/test_descr.py /^ class M2(M):$/;" c function:.test_dir +M2 Lib/test/test_descr.py /^ class M2(object):$/;" c function:ClassPropertiesAndMethods.test_metaclass +M2 Lib/test/test_descr.py /^ class M2(type):$/;" c function:.test_errors +M2 Lib/test/test_patma.py /^ class M2(C, collections.UserDict, collections.abc.Sequence):$/;" c function:TestInheritance.test_multiple_inheritance_mapping +M3 Lib/test/test_patma.py /^ class M3(collections.UserDict, C, list):$/;" c function:TestInheritance.test_multiple_inheritance_mapping +M4 Lib/test/test_patma.py /^ class M4(dict, collections.abc.Sequence, C):$/;" c function:TestInheritance.test_multiple_inheritance_mapping +MACHINE Lib/test/test_ctypes/test_structures.py /^MACHINE = platform.machine()$/;" v +MACHINE_FORMAT_CODE_MAX Modules/arraymodule.c 116;" d file: +MACHINE_FORMAT_CODE_MIN Modules/arraymodule.c 115;" d file: +MACOS Lib/test/test_asyncio/test_ssl.py /^MACOS = (sys.platform == 'darwin')$/;" v +MACOS Lib/test/test_embed.py /^MACOS = (sys.platform == 'darwin')$/;" v +MACOS Lib/test/test_shutil.py /^MACOS = sys.platform.startswith("darwin")$/;" v +MACOS Tools/build/stable_abi.py /^MACOS = (sys.platform == "darwin")$/;" v +MACRO Tools/cases_generator/lexer.py /^MACRO = 'MACRO'$/;" v +MAC_OS_X_VERSION_10_5 Modules/socketmodule.c 98;" d file: +MAGENTA Lib/test/test_enum.py /^ MAGENTA = 2$/;" v class:TestStdLib.test_test_simple_enum.CheckedColor +MAGENTA Lib/test/test_enum.py /^ MAGENTA = 2$/;" v class:TestStdLib.test_test_simple_enum.SimpleColor +MAGENTA Lib/test/test_enum.py /^ MAGENTA = 2$/;" v class:TestStdLib.Color +MAGIC Lib/re/_constants.py /^MAGIC = 20221023$/;" v +MAGIC_NUMBER Lib/importlib/_bootstrap_external.py /^MAGIC_NUMBER = (3531).to_bytes(2, 'little') + b'\\r\\n'$/;" v +MAILCAPDICT Lib/test/test_mailcap.py /^MAILCAPDICT = {$/;" v +MAILCAPDICT_DEPRECATED Lib/test/test_mailcap.py /^MAILCAPDICT_DEPRECATED = copy.deepcopy(MAILCAPDICT)$/;" v +MAILCAPFILE Lib/test/test_mailcap.py /^MAILCAPFILE = test.support.findfile("mailcap.txt")$/;" v +MAIN Lib/tkinter/tix.py /^MAIN = 'main'$/;" v +MAIN packaging/skipped_tests.py /^MAIN = "python3.spec"$/;" v +MAINTAIN_TRACKING Objects/dictobject.c 1116;" d file: +MAIN_DEFAULT_OUTPUT Lib/test/test_timeit.py /^ MAIN_DEFAULT_OUTPUT = "1 loop, best of 5: 1 sec per loop\\n"$/;" v class:TestTimeit +MAIN_PROCESS_TIMEOUT Lib/test/libregrtest/runtest_mp.py /^MAIN_PROCESS_TIMEOUT = 5 * 60.0$/;" v +MAJOR Python/sysmodule.c 3045;" d file: +MAJOR Python/sysmodule.c 3050;" d file: +MAJOR_VERSION Include/pyexpat.h /^ int MAJOR_VERSION;$/;" m struct:PyExpat_CAPI +MAKE Tools/freeze/test/freeze.py /^MAKE = shutil.which('make')$/;" v +MAKEFILE Tools/build/freeze_modules.py /^MAKEFILE = os.path.join(ROOT_DIR, 'Makefile.pre.in')$/;" v +MAKE_CELL Include/opcode.h 93;" d +MAKE_DATETIME_CHECK_FUNC Modules/_testcapi/datetime.c 32;" d file: +MAKE_DATETIME_CHECK_FUNC Modules/_testcapi/datetime.c 75;" d file: +MAKE_FUNCTION Include/opcode.h 90;" d +MAKE_FUNCTION Lib/dis.py /^MAKE_FUNCTION = opmap['MAKE_FUNCTION']$/;" v +MAKE_FUNCTION_FLAGS Lib/dis.py /^MAKE_FUNCTION_FLAGS = ('defaults', 'kwdefaults', 'annotations', 'closure')$/;" v +MAKE_TOKEN Parser/tokenizer.c 34;" d file: +MAKE_TYPE Objects/typevarobject.c 1662;" d file: +MAKE_TYPE Objects/typevarobject.c 1677;" d file: +MAKE_TYPE_COMMENT_TOKEN Parser/tokenizer.c 35;" d file: +MALLOC Modules/expat/xmlparse.c 712;" d file: +MALLOC Python/dtoa.c 131;" d file: +MALLOC_ALLOC Objects/obmalloc.c 76;" d file: +MANAGED_WEAKREF_OFFSET Include/internal/pycore_object.h 405;" d +MANDATORY_LINE_BREAKS Tools/unicode/makeunicodedata.py /^MANDATORY_LINE_BREAKS = [ "BK", "CR", "LF", "NL" ]$/;" v +MANGLE1_METHODDEF Lib/test/clinic.test.c 4313;" d file: +MANGLE2_METHODDEF Lib/test/clinic.test.c 4402;" d file: +MANT_DIG_BITS Objects/longobject.c 4188;" d file: +MANT_DIG_DIGITS Objects/longobject.c 4187;" d file: +MANY_RECORDERS Lib/test/test_monitoring.py /^MANY_RECORDERS = ExceptionRecorder, CallRecorder, LineRecorder, CReturnRecorder, CRaiseRecorder$/;" v +MAP Lib/lib2to3/fixes/fix_methodattrs.py /^MAP = {$/;" v +MAPPING Lib/lib2to3/fixes/fix_imports.py /^MAPPING = {'StringIO': 'io',$/;" v +MAPPING Lib/lib2to3/fixes/fix_imports2.py /^MAPPING = {$/;" v +MAPPING Lib/lib2to3/fixes/fix_renames.py /^MAPPING = {"sys": {"maxint" : "maxsize"},$/;" v +MAPPING Lib/lib2to3/fixes/fix_urllib.py /^MAPPING = {"urllib": [$/;" v +MAPPINGS_BIG5 Tools/unicode/genmap_tchinese.py /^MAPPINGS_BIG5 = 'https:\/\/unicode.org\/Public\/MAPPINGS\/OBSOLETE\/EASTASIA\/OTHER\/BIG5.TXT'$/;" v +MAPPINGS_CP932 Tools/unicode/genmap_japanese.py /^MAPPINGS_CP932 = 'http:\/\/www.unicode.org\/Public\/MAPPINGS\/VENDORS\/MICSFT\/WINDOWS\/CP932.TXT'$/;" v +MAPPINGS_CP936 Tools/unicode/genmap_schinese.py /^MAPPINGS_CP936 = 'http:\/\/www.unicode.org\/Public\/MAPPINGS\/VENDORS\/MICSFT\/WINDOWS\/CP936.TXT'$/;" v +MAPPINGS_CP949 Tools/unicode/genmap_korean.py /^MAPPINGS_CP949 = 'http:\/\/www.unicode.org\/Public\/MAPPINGS\/VENDORS\/MICSFT\/WINDOWS\/CP949.TXT'$/;" v +MAPPINGS_CP950 Tools/unicode/genmap_tchinese.py /^MAPPINGS_CP950 = 'https:\/\/www.unicode.org\/Public\/MAPPINGS\/VENDORS\/MICSFT\/WINDOWS\/CP950.TXT'$/;" v +MAPPINGS_GB18030 Tools/unicode/genmap_schinese.py /^MAPPINGS_GB18030 = 'http:\/\/oss.software.ibm.com\/cvs\/icu\/~checkout~\/charset\/data\/xml\/gb-18030-2000.xml'$/;" v +MAPPINGS_GB2312 Tools/unicode/genmap_schinese.py /^MAPPINGS_GB2312 = 'http:\/\/people.freebsd.org\/~perky\/i18n\/GB2312.TXT'$/;" v +MAPPINGS_HKSCS Tools/unicode/genmap_tchinese.py /^MAPPINGS_HKSCS = f'https:\/\/www.ccli.gov.hk\/en\/archive\/terms_hkscs-{HKSCS_VERSION}-big5-iso.html'$/;" v +MAPPINGS_JIS0208 Tools/unicode/genmap_japanese.py /^MAPPINGS_JIS0208 = 'http:\/\/www.unicode.org\/Public\/MAPPINGS\/OBSOLETE\/EASTASIA\/JIS\/JIS0208.TXT'$/;" v +MAPPINGS_JIS0212 Tools/unicode/genmap_japanese.py /^MAPPINGS_JIS0212 = 'http:\/\/www.unicode.org\/Public\/MAPPINGS\/OBSOLETE\/EASTASIA\/JIS\/JIS0212.TXT'$/;" v +MAPPINGS_JISX0213_2004 Tools/unicode/genmap_japanese.py /^MAPPINGS_JISX0213_2004 = 'http:\/\/wakaba-web.hp.infoseek.co.jp\/table\/jisx0213-2004-std.txt'$/;" v +MAPPING_DECONLY Modules/cjkcodecs/cjkcodecs.h 242;" d +MAPPING_ENCDEC Modules/cjkcodecs/cjkcodecs.h 244;" d +MAPPING_ENCONLY Modules/cjkcodecs/cjkcodecs.h 240;" d +MAP_ADD Include/opcode.h 105;" d +MAP_ANONYMOUS Modules/_ctypes/malloc_closure.c 12;" d file: +MAP_ANONYMOUS Modules/mmapmodule.c 90;" d file: +MAP_BOT_BITS Include/internal/pycore_obmalloc.h 594;" d +MAP_BOT_INDEX Include/internal/pycore_obmalloc.h 603;" d +MAP_BOT_LENGTH Include/internal/pycore_obmalloc.h 595;" d +MAP_BOT_MASK Include/internal/pycore_obmalloc.h 596;" d +MAP_BOT_SHIFT Include/internal/pycore_obmalloc.h 598;" d +MAP_CAPSULE Modules/cjkcodecs/multibytecodec.h 143;" d +MAP_MID_BITS Include/internal/pycore_obmalloc.h 590;" d +MAP_MID_INDEX Include/internal/pycore_obmalloc.h 604;" d +MAP_MID_LENGTH Include/internal/pycore_obmalloc.h 591;" d +MAP_MID_MASK Include/internal/pycore_obmalloc.h 592;" d +MAP_MID_SHIFT Include/internal/pycore_obmalloc.h 599;" d +MAP_MULTIPLE_AVAIL Modules/cjkcodecs/_codecs_iso2022.c 92;" d file: +MAP_TOP_BITS Include/internal/pycore_obmalloc.h 586;" d +MAP_TOP_INDEX Include/internal/pycore_obmalloc.h 605;" d +MAP_TOP_LENGTH Include/internal/pycore_obmalloc.h 587;" d +MAP_TOP_MASK Include/internal/pycore_obmalloc.h 588;" d +MAP_TOP_SHIFT Include/internal/pycore_obmalloc.h 600;" d +MAP_UNMAPPABLE Modules/cjkcodecs/_codecs_iso2022.c 91;" d file: +MARCH Lib/calendar.py /^ MARCH = 3$/;" v class:Month +MARK Lib/pickle.py /^MARK = b'(' # push special markobject on stack$/;" v +MARK Modules/_pickle.c /^ MARK = '(',$/;" e enum:opcode file: +MARK_END Modules/_collectionsmodule.c 148;" d file: +MARK_END Modules/_collectionsmodule.c 152;" d file: +MARK_POP Modules/_sre/sre_lib.h 456;" d +MARK_POP_DISCARD Modules/_sre/sre_lib.h 466;" d +MARK_POP_KEEP Modules/_sre/sre_lib.h 461;" d +MARK_PUSH Modules/_sre/sre_lib.h 451;" d +MARK_RIGHT Lib/idlelib/calltip_w.py /^MARK_RIGHT = "calltipwindowregion_right"$/;" v +MARS Lib/test/test_enum.py /^ MARS = (6.421e+23, 3.3972e6)$/;" v class:TestSpecial.test_init.Planet +MARSHAL_DUMPS_METHODDEF Python/clinic/marshal.c.h 95;" d +MARSHAL_DUMP_METHODDEF Python/clinic/marshal.c.h 28;" d +MARSHAL_LOADS_METHODDEF Python/clinic/marshal.c.h 135;" d +MARSHAL_LOAD_METHODDEF Python/clinic/marshal.c.h 78;" d +MASK Lib/test/test_enum.py /^ MASK = 255$/;" v class:_FlagTests.test_open_invert_expectations.OpenAB +MASK Lib/test/test_enum.py /^ MASK = 3$/;" v class:_FlagTests.test_closed_invert_expectations.ClosedAB +MASK Lib/test/test_enum.py /^ MASK = 31$/;" v class:_FlagTests.test_open_invert_expectations.OpenXYZ +MASK Lib/test/test_enum.py /^ MASK = 7$/;" v class:_FlagTests.test_closed_invert_expectations.ClosedXYZ +MASK Lib/test/test_long.py /^MASK = BASE - 1$/;" v +MASK Objects/frameobject.c 192;" d file: +MASK_ASCII Objects/stringlib/find_max_char.h 123;" d +MASK_ASCII Objects/stringlib/find_max_char.h 48;" d +MASK_LOW_LOG_BITS Include/internal/pycore_opcode_utils.h 67;" d +MASK_LOW_LOG_BITS Include/internal/pycore_opcode_utils.h 86;" d +MASK_UCS1 Objects/stringlib/find_max_char.h 124;" d +MASK_UCS1 Objects/stringlib/find_max_char.h 49;" d +MASK_UCS2 Objects/stringlib/find_max_char.h 125;" d +MASK_UCS2 Objects/stringlib/find_max_char.h 50;" d +MATCHES PC/launcher2.c 600;" d file: +MATCHES PC/launcher2.c 641;" d file: +MATCHES PC/launcher2.c 647;" d file: +MATCHES PC/launcher2.c 688;" d file: +MATCH_CLASS Include/opcode.h 109;" d +MATCH_KEYS Include/opcode.h 28;" d +MATCH_MAPPING Include/opcode.h 26;" d +MATCH_OFF Modules/_sre/sre.c 3037;" d file: +MATCH_SEQUENCE Include/opcode.h 27;" d +MATCH_VALUE_EXPR Python/compile.c 6554;" d file: +MATH_CEIL_METHODDEF Modules/clinic/mathmodule.c.h 19;" d +MATH_COMB_METHODDEF Modules/clinic/mathmodule.c.h 804;" d +MATH_DEGREES_METHODDEF Modules/clinic/mathmodule.c.h 384;" d +MATH_DIST_METHODDEF Modules/clinic/mathmodule.c.h 269;" d +MATH_FACTORIAL_METHODDEF Modules/clinic/mathmodule.c.h 61;" d +MATH_FLOOR_METHODDEF Modules/clinic/mathmodule.c.h 30;" d +MATH_FMOD_METHODDEF Modules/clinic/mathmodule.c.h 215;" d +MATH_FREXP_METHODDEF Modules/clinic/mathmodule.c.h 84;" d +MATH_FSUM_METHODDEF Modules/clinic/mathmodule.c.h 41;" d +MATH_ISCLOSE_METHODDEF Modules/clinic/mathmodule.c.h 570;" d +MATH_ISFINITE_METHODDEF Modules/clinic/mathmodule.c.h 452;" d +MATH_ISINF_METHODDEF Modules/clinic/mathmodule.c.h 520;" d +MATH_ISNAN_METHODDEF Modules/clinic/mathmodule.c.h 486;" d +MATH_ISQRT_METHODDEF Modules/clinic/mathmodule.c.h 50;" d +MATH_LDEXP_METHODDEF Modules/clinic/mathmodule.c.h 120;" d +MATH_LOG10_METHODDEF Modules/clinic/mathmodule.c.h 204;" d +MATH_LOG2_METHODDEF Modules/clinic/mathmodule.c.h 195;" d +MATH_MODF_METHODDEF Modules/clinic/mathmodule.c.h 161;" d +MATH_NEXTAFTER_METHODDEF Modules/clinic/mathmodule.c.h 839;" d +MATH_PERM_METHODDEF Modules/clinic/mathmodule.c.h 760;" d +MATH_POW_METHODDEF Modules/clinic/mathmodule.c.h 336;" d +MATH_PROD_METHODDEF Modules/clinic/mathmodule.c.h 689;" d +MATH_RADIANS_METHODDEF Modules/clinic/mathmodule.c.h 418;" d +MATH_SUMPROD_METHODDEF Modules/clinic/mathmodule.c.h 306;" d +MATH_TRUNC_METHODDEF Modules/clinic/mathmodule.c.h 72;" d +MATH_ULP_METHODDEF Modules/clinic/mathmodule.c.h 921;" d +MATRIX_A Modules/_randommodule.c 87;" d file: +MAX Lib/test/test_enum.py /^ def MAX(cls):$/;" m class:TestSpecial.test_multiple_mixin.MaxMixin +MAX Lib/test/test_float.py /^ MAX = fromHex('0x.fffffffffffff8p+1024') # max normal$/;" v class:HexFloatTestCase +MAX Lib/tkinter/tix.py /^MAX = 'max'$/;" v +MAXBINSIZE Lib/base64.py /^MAXBINSIZE = (MAXLINESIZE\/\/4)*3$/;" v +MAXCACHE Modules/_struct.c 2223;" d file: +MAXCODE Lib/re/_compiler.py /^MAXCODE = (1 << _CODEBITS) - 1$/;" v +MAXDECPENDING Modules/cjkcodecs/multibytecodec.h 92;" d +MAXDIGITS Lib/test/test_long.py /^MAXDIGITS = 15$/;" v +MAXDIGITS Python/ast_opt.c 294;" d file: +MAXDIM Lib/test/test_buffer.py /^ MAXDIM = 3$/;" v +MAXDIM Lib/test/test_buffer.py /^MAXDIM = 5$/;" v +MAXENCPENDING Modules/cjkcodecs/multibytecodec.h 84;" d +MAXFD Lib/multiprocessing/util.py /^ MAXFD = 256$/;" v +MAXFD Lib/multiprocessing/util.py /^ MAXFD = os.sysconf("SC_OPEN_MAX")$/;" v +MAXFD Lib/test/_test_multiprocessing.py /^ MAXFD = 256$/;" v +MAXFD Lib/test/_test_multiprocessing.py /^ MAXFD = os.sysconf("SC_OPEN_MAX")$/;" v +MAXFDS_TO_SEND Lib/multiprocessing/forkserver.py /^MAXFDS_TO_SEND = 256$/;" v +MAXFREEBLOCKS Modules/_collectionsmodule.c 68;" d file: +MAXFSTRINGLEVEL Parser/tokenizer.h 15;" d +MAXFTPCACHE Lib/urllib/request.py /^MAXFTPCACHE = 10 # Trim the ftp cache beyond this size$/;" v +MAXIMUM_FONT_SIZE Lib/turtledemo/__main__.py /^MAXIMUM_FONT_SIZE = 100$/;" v +MAXIMUM_SELECT_TIMEOUT Lib/asyncio/base_events.py /^MAXIMUM_SELECT_TIMEOUT = 24 * 3600$/;" v +MAXIMUM_SUPPORTED Lib/ssl.py /^ MAXIMUM_SUPPORTED = _ssl.PROTO_MAXIMUM_SUPPORTED$/;" v class:TLSVersion +MAXIMUM_SUPPORTED Lib/test/test_ssl.py /^ MAXIMUM_SUPPORTED = _ssl.PROTO_MAXIMUM_SUPPORTED$/;" v class:TestEnumerations.test_tlsversion.CheckedTLSVersion +MAXINDENT Parser/tokenizer.h 13;" d +MAXINT Lib/xmlrpc/client.py /^MAXINT = 2**31-1$/;" v +MAXLEN PC/launcher2.c 24;" d file: +MAXLEVEL Parser/tokenizer.h 14;" d +MAXLINE Lib/ftplib.py /^MAXLINE = 8192$/;" v +MAXLINELEN Lib/email/header.py /^MAXLINELEN = 78$/;" v +MAXLINES Lib/_sitebuiltins.py /^ MAXLINES = 23$/;" v class:_Printer +MAXLINESIZE Lib/base64.py /^MAXLINESIZE = 76 # Excluding the CRLF$/;" v +MAXLINESIZE Lib/quopri.py /^MAXLINESIZE = 76$/;" v +MAXLINESIZE Modules/binascii.c 948;" d file: +MAXORDINAL Modules/_datetimemodule.c 64;" d file: +MAXPATHLEN Include/osdefs.h 13;" d +MAXPATHLEN Include/osdefs.h 37;" d +MAXPATHLEN Include/osdefs.h 39;" d +MAXPATHLEN Modules/posixmodule.c 456;" d file: +MAXPATHLEN Modules/posixmodule.c 458;" d file: +MAXPATHLEN Python/dynload_win.c 179;" d file: +MAXPATHLEN Python/dynload_win.c 218;" d file: +MAXREPEAT Lib/re/_constants.py /^MAXREPEAT = _NamedIntConstant(MAXREPEAT, 'MAXREPEAT')$/;" v +MAXSHAPE Lib/test/test_buffer.py /^ MAXSHAPE = 4$/;" v +MAXSHAPE Lib/test/test_buffer.py /^MAXSHAPE = 10$/;" v +MAXSTACK Parser/parser.c 11;" d file: +MAXSTACK Parser/parser.c 13;" d file: +MAXSTICKS Lib/turtledemo/nim.py /^MAXSTICKS = 31$/;" v +MAXSUFFIXSIZE Python/importdl.h 22;" d +MAXYEAR Lib/_pydatetime.py /^MAXYEAR = 9999$/;" v +MAXYEAR Modules/_datetimemodule.c 63;" d file: +MAX_ABS_EXP Python/dtoa.c 198;" d file: +MAX_ALLOWED_STACK_USE Python/compile.c 82;" d file: +MAX_ARENAS Include/internal/pycore_obmalloc.h 219;" d +MAX_AST_LITERAL_EVAL_TEST_SIZE Modules/_xxtestfuzz/fuzzer.c 396;" d file: +MAX_BACKOFF_VALUE Include/internal/pycore_code.h 418;" d +MAX_CANDIDATE_ITEMS Python/suggestions.c 10;" d file: +MAX_CHAR_ASCII Objects/stringlib/find_max_char.h 126;" d +MAX_CHAR_ASCII Objects/stringlib/find_max_char.h 52;" d +MAX_CHAR_UCS1 Objects/stringlib/find_max_char.h 127;" d +MAX_CHAR_UCS1 Objects/stringlib/find_max_char.h 53;" d +MAX_CHAR_UCS2 Objects/stringlib/find_max_char.h 128;" d +MAX_CHAR_UCS2 Objects/stringlib/find_max_char.h 54;" d +MAX_CHAR_UCS4 Objects/stringlib/find_max_char.h 129;" d +MAX_CHAR_UCS4 Objects/stringlib/find_max_char.h 55;" d +MAX_CHUNK_SIZE Modules/pyexpat.c 706;" d file: +MAX_CODE_UNITS_PER_LOC_ENTRY Objects/codeobject.c 2327;" d file: +MAX_COL Parser/asdl_c.py /^MAX_COL = 80$/;" v +MAX_COLLECTION_SIZE Python/ast_opt.c 149;" d file: +MAX_COMMANDS PC/launcher.c 876;" d file: +MAX_COMMENT_LEN Lib/zipimport.py /^MAX_COMMENT_LEN = (1 << 16) - 1$/;" v +MAX_COPY_SIZE Python/flowgraph.c 1074;" d file: +MAX_CO_EXTRA_USERS Include/pystate.h 12;" d +MAX_CSV_TEST_SIZE Modules/_xxtestfuzz/fuzzer.c 338;" d file: +MAX_DELTA_DAYS Modules/_datetimemodule.c 71;" d file: +MAX_DIGITS Python/dtoa.c 206;" d file: +MAX_EMAX Lib/_pydecimal.py /^ MAX_EMAX = 425000000$/;" v +MAX_EMAX Lib/_pydecimal.py /^ MAX_EMAX = 999999999999999999$/;" v +MAX_EQUIV Include/internal/pycore_typeobject.h 85;" d +MAX_ESCSEQLEN Modules/cjkcodecs/_codecs_iso2022.c 61;" d file: +MAX_EXPR_NESTING Parser/tokenizer.h 43;" d +MAX_EXTRACT_VERSION Lib/zipfile/__init__.py /^MAX_EXTRACT_VERSION = 63$/;" v +MAX_FRAME_DEPTH Python/traceback.c 30;" d file: +MAX_GROUPS Modules/_posixsubprocess.c 70;" d file: +MAX_GROUPS Modules/_posixsubprocess.c 72;" d file: +MAX_GROUPS Modules/posixmodule.c 8464;" d file: +MAX_GROUPS Modules/posixmodule.c 8467;" d file: +MAX_HASH_SEED Lib/test/_test_embed_set_config.py /^MAX_HASH_SEED = 4294967295$/;" v +MAX_HASH_SEED Lib/test/test_embed.py /^MAX_HASH_SEED = 4294967295$/;" v +MAX_HASH_SEED Python/initconfig.c 648;" d file: +MAX_INSTALLED_PYTHONS PC/launcher.c 182;" d file: +MAX_INTERPOLATION_DEPTH Lib/configparser.py /^MAX_INTERPOLATION_DEPTH = 10$/;" v +MAX_INTMAX_CHARS Objects/unicodeobject.c 2293;" d file: +MAX_INTRINSIC_1 Include/internal/pycore_intrinsics.h 17;" d +MAX_INTRINSIC_2 Include/internal/pycore_intrinsics.h 27;" d +MAX_INT_SIZE Python/ast_opt.c 148;" d file: +MAX_INT_TEST_SIZE Modules/_xxtestfuzz/fuzzer.c 31;" d file: +MAX_JSON_TEST_SIZE Modules/_xxtestfuzz/fuzzer.c 145;" d file: +MAX_LINEAR_SEARCH Python/ceval.c 1254;" d file: +MAX_LONG_DIGITS Objects/longobject.c 137;" d file: +MAX_MARSHAL_STACK_DEPTH Python/marshal.c 37;" d file: +MAX_MARSHAL_STACK_DEPTH Python/marshal.c 39;" d file: +MAX_MARSHAL_STACK_DEPTH Python/marshal.c 41;" d file: +MAX_MERGE_PENDING Objects/listobject.c 1155;" d file: +MAX_N Lib/zipfile/__init__.py /^ MAX_N = 1 << 31 - 1$/;" v class:ZipExtFile +MAX_NFRAME Python/tracemalloc.c /^static const unsigned long MAX_NFRAME = Py_MIN(UINT16_MAX, ((SIZE_MAX - sizeof(traceback_t)) \/ sizeof(frame_t) + 1));$/;" v file: +MAX_NTHREADS Python/traceback.c 31;" d file: +MAX_OUTPUT_LEN Tools/gdb/libpython.py /^MAX_OUTPUT_LEN=1024$/;" v +MAX_PATH Lib/ctypes/wintypes.py /^MAX_PATH = 260$/;" v +MAX_POOLS_IN_ARENA Include/internal/pycore_obmalloc.h 239;" d +MAX_PREALLOC Objects/stringlib/split.h 14;" d +MAX_PREC Lib/_pydecimal.py /^ MAX_PREC = 425000000$/;" v +MAX_PREC Lib/_pydecimal.py /^ MAX_PREC = 999999999999999999$/;" v +MAX_PSEUDO_OPCODE Include/opcode.h 154;" d +MAX_PSEUDO_OPCODE Lib/opcode.py /^MAX_PSEUDO_OPCODE = MIN_PSEUDO_OPCODE + len(_pseudo_ops) - 1$/;" v +MAX_Py_ssize_t Lib/test/support/__init__.py /^MAX_Py_ssize_t = sys.maxsize$/;" v +MAX_REAL_OPCODE Include/internal/pycore_opcode_utils.h 14;" d +MAX_RE_TEST_SIZE Modules/_xxtestfuzz/fuzzer.c 189;" d file: +MAX_SEEK_READ Lib/zipfile/__init__.py /^ MAX_SEEK_READ = 1 << 24$/;" v class:ZipExtFile +MAX_SHIFT Objects/stringlib/fastsearch.h 309;" d +MAX_SIZES Tools/c-analyzer/cpython/_parser.py /^MAX_SIZES = {$/;" v +MAX_SIZE_OF_ENTRY Python/assemble.c 117;" d file: +MAX_STACK_ENTRIES Objects/frameobject.c 170;" d file: +MAX_STRING_LENGTH Python/traceback.c 29;" d file: +MAX_STRING_SIZE Python/suggestions.c 11;" d file: +MAX_STRUCT_SIZE Modules/_ctypes/stgdict.c 699;" d file: +MAX_STR_SIZE Python/ast_opt.c 150;" d file: +MAX_TABLE_SIZE Tools/unicode/gencodec.py /^MAX_TABLE_SIZE = 8192$/;" v +MAX_TOTAL_ITEMS Python/ast_opt.c 151;" d file: +MAX_UNICODE Objects/unicodeobject.c 108;" d file: +MAX_UNICODE Python/fileutils.c 50;" d file: +MAX_UTC Lib/test/test_zoneinfo/test_zoneinfo_property.py /^MAX_UTC = datetime.datetime.max.replace(tzinfo=UTC)$/;" v +MAX_VERSION_SIZE PC/launcher.c 169;" d file: +MAY Lib/calendar.py /^ MAY = 5$/;" v class:Month +MAYBE Modules/unicodedata.c /^typedef enum {YES = 0, MAYBE = 1, NO = 2} QuickcheckResult;$/;" e enum:__anon643 file: +MAYBE_CHECK_SIGNALS Modules/_sre/sre_lib.h 527;" d +MB Include/internal/pycore_blocks_output_buffer.h 59;" d +MB Include/internal/pycore_blocks_output_buffer.h 65;" d +MBENC_FLUSH Modules/cjkcodecs/multibytecodec.h 135;" d +MBENC_MAX Modules/cjkcodecs/multibytecodec.h 136;" d +MBENC_RESET Modules/cjkcodecs/multibytecodec.c 74;" d file: +MBERR_EXCEPTION Modules/cjkcodecs/multibytecodec.h 123;" d +MBERR_INTERNAL Modules/cjkcodecs/multibytecodec.h 122;" d +MBERR_TOOFEW Modules/cjkcodecs/multibytecodec.h 121;" d +MBERR_TOOSMALL Modules/cjkcodecs/multibytecodec.h 120;" d +MCACHE_CACHEABLE_NAME Objects/typeobject.c 45;" d file: +MCACHE_HASH Objects/typeobject.c 39;" d file: +MCACHE_HASH_METHOD Objects/typeobject.c 43;" d file: +MCACHE_MAX_ATTR_SIZE Objects/typeobject.c 38;" d file: +MCACHE_SIZE_EXP Include/internal/pycore_typeobject.h 35;" d +MD2_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^MD2_CTX = MD2state_st$/;" v +MD2state_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class MD2state_st(Structure):$/;" c +MD4_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^MD4_CTX = MD4state_st$/;" v +MD4state_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class MD4state_st(Structure):$/;" c +MD5State Modules/md5module.c /^} MD5State;$/;" t typeref:struct:__anon428 file: +MD5TYPE_COPY_METHODDEF Modules/clinic/md5module.c.h 17;" d +MD5TYPE_DIGEST_METHODDEF Modules/clinic/md5module.c.h 39;" d +MD5TYPE_HEXDIGEST_METHODDEF Modules/clinic/md5module.c.h 57;" d +MD5TYPE_UPDATE_METHODDEF Modules/clinic/md5module.c.h 75;" d +MD5Type_copy Modules/clinic/md5module.c.h /^MD5Type_copy(MD5object *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +MD5Type_copy_impl Modules/md5module.c /^MD5Type_copy_impl(MD5object *self, PyTypeObject *cls)$/;" f file: +MD5Type_digest Modules/clinic/md5module.c.h /^MD5Type_digest(MD5object *self, PyObject *Py_UNUSED(ignored))$/;" f +MD5Type_digest_impl Modules/md5module.c /^MD5Type_digest_impl(MD5object *self)$/;" f file: +MD5Type_hexdigest Modules/clinic/md5module.c.h /^MD5Type_hexdigest(MD5object *self, PyObject *Py_UNUSED(ignored))$/;" f +MD5Type_hexdigest_impl Modules/md5module.c /^MD5Type_hexdigest_impl(MD5object *self)$/;" f file: +MD5Type_update Modules/md5module.c /^MD5Type_update(MD5object *self, PyObject *obj)$/;" f file: +MD5_BLOCKSIZE Modules/md5module.c 44;" d file: +MD5_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^MD5_CTX = MD5state_st$/;" v +MD5_DIGESTSIZE Modules/md5module.c 45;" d file: +MD5_INT32 Modules/md5module.c /^typedef unsigned int MD5_INT32; \/* 32-bit integer *\/$/;" t file: +MD5_INT64 Modules/md5module.c /^typedef long long MD5_INT64; \/* 64-bit integer *\/$/;" t file: +MD5_dealloc Modules/md5module.c /^MD5_dealloc(MD5object *ptr)$/;" f file: +MD5_functions Modules/md5module.c /^static struct PyMethodDef MD5_functions[] = {$/;" v typeref:struct:PyMethodDef file: +MD5_get_block_size Modules/md5module.c /^MD5_get_block_size(PyObject *self, void *closure)$/;" f file: +MD5_get_name Modules/md5module.c /^MD5_get_name(PyObject *self, void *closure)$/;" f file: +MD5_getseters Modules/md5module.c /^static PyGetSetDef MD5_getseters[] = {$/;" v file: +MD5_methods Modules/md5module.c /^static PyMethodDef MD5_methods[] = {$/;" v file: +MD5_traverse Modules/md5module.c /^MD5_traverse(PyObject *ptr, visitproc visit, void *arg)$/;" f file: +MD5object Modules/md5module.c /^} MD5object;$/;" t typeref:struct:__anon427 file: +MD5state_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class MD5state_st(Structure):$/;" c +MDC2_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^MDC2_CTX = mdc2_ctx_st$/;" v +MEMCHR_CUT_OFF Objects/stringlib/fastsearch.h 106;" d +MEMCHR_CUT_OFF Objects/stringlib/fastsearch.h 44;" d +MEMCHR_CUT_OFF Objects/stringlib/fastsearch.h 46;" d +MEMERRORS_SAVE Objects/exceptions.c 3295;" d file: +MEMOIZE Lib/pickle.py /^MEMOIZE = b'\\x94' # store top of the stack in memo$/;" v +MEMOIZE Modules/_pickle.c /^ MEMOIZE = '\\x94',$/;" e enum:opcode file: +MEMORYVIEW Lib/test/test_buffer.py /^MEMORYVIEW = NATIVE.copy()$/;" v +MEMORYVIEW_CAST_METHODDEF Objects/clinic/memoryobject.c.h 149;" d +MEMORYVIEW_HEX_METHODDEF Objects/clinic/memoryobject.c.h 355;" d +MEMORYVIEW_RELEASE_METHODDEF Objects/clinic/memoryobject.c.h 131;" d +MEMORYVIEW_TOBYTES_METHODDEF Objects/clinic/memoryobject.c.h 261;" d +MEMORYVIEW_TOLIST_METHODDEF Objects/clinic/memoryobject.c.h 237;" d +MEMORYVIEW_TOREADONLY_METHODDEF Objects/clinic/memoryobject.c.h 219;" d +MEMORYVIEW__FROM_FLAGS_METHODDEF Objects/clinic/memoryobject.c.h 71;" d +MEMORY_DB_MSG Lib/test/test_sqlite3/test_cli.py /^ MEMORY_DB_MSG = "Connected to a transient in-memory database"$/;" v class:InteractiveSession +MEMRCHR_CUT_OFF Objects/stringlib/fastsearch.h 109;" d +MEMRCHR_CUT_OFF Objects/stringlib/fastsearch.h 111;" d +MEMRCHR_CUT_OFF Objects/stringlib/fastsearch.h 179;" d +MEM_INCR Modules/_csv.c 1063;" d file: +MEMixin Lib/test/test_argparse.py /^class MEMixin(object):$/;" c +MEPBase Lib/test/test_argparse.py /^class MEPBase(object):$/;" c +MERCURY Lib/test/test_enum.py /^ MERCURY = (3.303e+23, 2.4397e6)$/;" v class:TestSpecial.test_init.Planet +MERGESTATE_TEMP_SIZE Objects/listobject.c 1163;" d file: +MERGE_GETMEM Objects/listobject.c 1605;" d file: +MESSAGES Tools/i18n/msgfmt.py /^MESSAGES = {}$/;" v +MESSAGE_HASH Lib/ssl.py /^ MESSAGE_HASH = 254$/;" v class:_TLSMessageType +MESSAGE_HASH Lib/test/test_ssl.py /^ MESSAGE_HASH = 254$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +MESSAGE_LENGTH Lib/multiprocessing/connection.py /^MESSAGE_LENGTH = 40 # MUST be > 20$/;" v +META_FILES Tools/c-analyzer/c_parser/preprocessor/gcc.py /^META_FILES = {$/;" v +METHOD Python/specialize.c /^ METHOD, \/* Attribute has Py_TPFLAGS_METHOD_DESCRIPTOR set *\/$/;" e enum:__anon686 file: +METHOD_NOT_ALLOWED Lib/http/__init__.py /^ METHOD_NOT_ALLOWED = (405, 'Method Not Allowed',$/;" v class:HTTPStatus +METHOD_NOT_ALLOWED Lib/test/test_httplib.py /^ METHOD_NOT_ALLOWED = (405, 'Method Not Allowed',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +METHOD_NOT_FOUND Lib/xmlrpc/client.py /^METHOD_NOT_FOUND = -32601$/;" v +METHOD___REDUCE___METHODDEF Objects/clinic/classobject.c.h 16;" d +METH_CLASS Include/methodobject.h 90;" d +METH_COEXIST Include/methodobject.h 98;" d +METH_FASTCALL Include/methodobject.h 101;" d +METH_KEYWORDS Include/methodobject.h 82;" d +METH_METHOD Include/methodobject.h 119;" d +METH_NOARGS Include/methodobject.h 84;" d +METH_O Include/methodobject.h 85;" d +METH_STACKLESS Include/methodobject.h 106;" d +METH_STACKLESS Include/methodobject.h 108;" d +METH_STATIC Include/methodobject.h 91;" d +METH_VARARGS Include/methodobject.h 81;" d +MH Lib/mailbox.py /^class MH(Mailbox):$/;" c +MHMessage Lib/mailbox.py /^class MHMessage(Message):$/;" c +MICRO_VERSION Include/pyexpat.h /^ int MICRO_VERSION;$/;" m struct:PyExpat_CAPI +MIME Lib/msilib/schema.py /^MIME = Table('MIME')$/;" v +MIMEApplication Lib/email/mime/application.py /^class MIMEApplication(MIMENonMultipart):$/;" c +MIMEAudio Lib/email/mime/audio.py /^class MIMEAudio(MIMENonMultipart):$/;" c +MIMEBase Lib/email/mime/base.py /^class MIMEBase(message.Message):$/;" c +MIMEImage Lib/email/mime/image.py /^class MIMEImage(MIMENonMultipart):$/;" c +MIMEMessage Lib/email/mime/message.py /^class MIMEMessage(MIMENonMultipart):$/;" c +MIMEMultipart Lib/email/mime/multipart.py /^class MIMEMultipart(MIMEBase):$/;" c +MIMENonMultipart Lib/email/mime/nonmultipart.py /^class MIMENonMultipart(MIMEBase):$/;" c +MIMEPart Lib/email/message.py /^class MIMEPart(Message):$/;" c +MIMEText Lib/email/mime/text.py /^class MIMEText(MIMENonMultipart):$/;" c +MIMEVersion Lib/email/_header_value_parser.py /^class MIMEVersion(TokenList):$/;" c +MIMEVersionHeader Lib/email/headerregistry.py /^class MIMEVersionHeader:$/;" c +MIN Lib/test/test_float.py /^ MIN = fromHex('0x1p-1022') # min normal$/;" v class:HexFloatTestCase +MINBPC Modules/expat/xmltok.c 239;" d file: +MINBPC Modules/expat/xmltok.c 242;" d file: +MINBPC Modules/expat/xmltok.c 308;" d file: +MINBPC Modules/expat/xmltok.c 923;" d file: +MINBPC Modules/expat/xmltok.c 937;" d file: +MINEQUAL Include/internal/pycore_token.h 53;" d +MINEQUAL Lib/lib2to3/pgen2/token.py /^MINEQUAL = 38$/;" v +MINEQUAL Lib/token.py /^MINEQUAL = 37$/;" v +MINIMUM_FONT_SIZE Lib/turtledemo/__main__.py /^MINIMUM_FONT_SIZE = 6$/;" v +MINIMUM_OVERHEAD Python/pystate.c 2789;" d file: +MINIMUM_SUPPORTED Lib/ssl.py /^ MINIMUM_SUPPORTED = _ssl.PROTO_MINIMUM_SUPPORTED$/;" v class:TLSVersion +MINIMUM_SUPPORTED Lib/test/test_ssl.py /^ MINIMUM_SUPPORTED = _ssl.PROTO_MINIMUM_SUPPORTED$/;" v class:TestEnumerations.test_tlsversion.CheckedTLSVersion +MININT Lib/xmlrpc/client.py /^MININT = -2**31$/;" v +MINOR Python/sysmodule.c 3046;" d file: +MINOR Python/sysmodule.c 3051;" d file: +MINOR_VERSION Include/pyexpat.h /^ int MINOR_VERSION;$/;" m struct:PyExpat_CAPI +MINSTICKS Lib/turtledemo/nim.py /^MINSTICKS = 7$/;" v +MINUS Include/internal/pycore_token.h 31;" d +MINUS Lib/lib2to3/pgen2/token.py /^MINUS = 15$/;" v +MINUS Lib/token.py /^MINUS = 15$/;" v +MINUS Tools/cases_generator/lexer.py /^MINUS = r'-'$/;" v +MINUSMINUS Tools/cases_generator/lexer.py /^MINUSMINUS = r'--'$/;" v +MINUS_LAST_BLOCK Modules/_io/bufferedio.c 392;" d file: +MINUTE Lib/test/datetimetester.py /^MINUTE = timedelta(minutes=1)$/;" v +MINYEAR Lib/_pydatetime.py /^MINYEAR = 1$/;" v +MINYEAR Modules/_datetimemodule.c 62;" d file: +MIN_BYTES_PER_CHAR Modules/expat/xmlrole.c 111;" d file: +MIN_EMIN Lib/_pydecimal.py /^ MIN_EMIN = -425000000$/;" v +MIN_EMIN Lib/_pydecimal.py /^ MIN_EMIN = -999999999999999999$/;" v +MIN_ETINY Lib/_pydecimal.py /^MIN_ETINY = MIN_EMIN - (MAX_PREC-1)$/;" v +MIN_EXPONENT_DIGITS Python/pystrtod.c 442;" d file: +MIN_GALLOP Objects/listobject.c 1160;" d file: +MIN_INSTRUMENTED_OPCODE Include/opcode.h 123;" d +MIN_INSTRUMENTED_OPCODE Lib/opcode.py /^MIN_INSTRUMENTED_OPCODE = 237$/;" v +MIN_PSEUDO_OPCODE Include/opcode.h 142;" d +MIN_PSEUDO_OPCODE Lib/opcode.py /^MIN_PSEUDO_OPCODE = 256$/;" v +MIN_READ_SIZE Lib/zipfile/__init__.py /^ MIN_READ_SIZE = 4096$/;" v class:ZipExtFile +MIN_UTC Lib/test/test_zoneinfo/test_zoneinfo_property.py /^MIN_UTC = datetime.datetime.min.replace(tzinfo=UTC)$/;" v +MISC_LEN Lib/email/base64mime.py /^MISC_LEN = 7$/;" v +MISDIRECTED_REQUEST Lib/http/__init__.py /^ MISDIRECTED_REQUEST = (421, 'Misdirected Request',$/;" v class:HTTPStatus +MISDIRECTED_REQUEST Lib/test/test_httplib.py /^ MISDIRECTED_REQUEST = (421, 'Misdirected Request',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +MISSING Lib/dataclasses.py /^MISSING = _MISSING_TYPE()$/;" v +MISSING Tools/build/check_extension_modules.py /^ MISSING = "missing"$/;" v class:ModuleState +MISSING Tools/build/stable_abi.py /^MISSING = object()$/;" v +MISSING_CODE Tools/unicode/gencodec.py /^MISSING_CODE = -1$/;" v +MISSING_C_DOCSTRINGS Lib/test/support/__init__.py /^MISSING_C_DOCSTRINGS = (check_impl_detail() and$/;" v +MISSING_EXTENSION Lib/ssl.py /^ MISSING_EXTENSION = 109$/;" v class:_TLSAlertType +MISSING_EXTENSION Lib/test/test_ssl.py /^ MISSING_EXTENSION = 109$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +MISSING_FILENAME_TEXT Lib/http/cookiejar.py /^MISSING_FILENAME_TEXT = ("a filename was not supplied (nor was the CookieJar "$/;" v +MITER Lib/tkinter/constants.py /^MITER='miter'$/;" v +MKDIRAT_DIR_FD_CONVERTER Modules/posixmodule.c 2720;" d file: +MKDIRAT_DIR_FD_CONVERTER Modules/posixmodule.c 2722;" d file: +MKFIFOAT_DIR_FD_CONVERTER Modules/posixmodule.c 2726;" d file: +MKFIFOAT_DIR_FD_CONVERTER Modules/posixmodule.c 2728;" d file: +MKNODAT_DIR_FD_CONVERTER Modules/posixmodule.c 2732;" d file: +MKNODAT_DIR_FD_CONVERTER Modules/posixmodule.c 2734;" d file: +MLSD_DATA Lib/test/test_ftplib.py /^MLSD_DATA = ("type=cdir;perm=el;unique==keVO1+ZF4; test\\r\\n"$/;" v +MM Lib/test/test_descr.py /^ class MM(MT):$/;" c function:ClassPropertiesAndMethods.test_module_subclasses +MM Lib/test/test_typing.py /^ class MM(MutableMapping[str, str]):$/;" c function:GenericTests.test_abc_bases +MM1 Lib/test/test_typing.py /^ class MM1(MutableMapping[str, str], collections.abc.MutableMapping):$/;" c function:GenericTests.test_multiple_bases +MM2 Lib/test/test_typing.py /^ class MM2(collections.abc.MutableMapping, MutableMapping[str, str]):$/;" c function:GenericTests.test_multiple_bases +MMA Lib/test/test_typing.py /^ class MMA(typing.MutableMapping):$/;" c function:CollectionsAbcTests.test_subclassing +MMB Lib/test/test_typing.py /^ class MMB(typing.MutableMapping[KT, VT]):$/;" c function:CollectionsAbcTests.test_subclassing +MMC Lib/test/test_typing.py /^ class MMC(MMA):$/;" c function:CollectionsAbcTests.test_subclassing +MMDF Lib/mailbox.py /^class MMDF(_mboxMMDF):$/;" c +MMDFMessage Lib/mailbox.py /^class MMDFMessage(_mboxMMDFMessage):$/;" c +MMOFILE Lib/test/test_gettext.py /^MMOFILE = os.path.join(LOCALEDIR, 'metadata.mo')$/;" v +MOCK_ANY Lib/test/test_asyncio/test_base_events.py /^MOCK_ANY = mock.ANY$/;" v +MOCK_ANY Lib/test/test_asyncio/test_eager_task_factory.py /^MOCK_ANY = mock.ANY$/;" v +MOCK_ANY Lib/test/test_asyncio/test_selector_events.py /^MOCK_ANY = mock.ANY$/;" v +MOCK_ANY Lib/test/test_asyncio/test_unix_events.py /^MOCK_ANY = mock.ANY$/;" v +MOD Tools/cases_generator/lexer.py /^MOD = r'%'$/;" v +MODE Lib/test/test_buffer.py /^MODE = 0$/;" v +MODE_ASYNCHRONOUS Lib/xml/dom/xmlbuilder.py /^ MODE_ASYNCHRONOUS = 2$/;" v class:DOMImplementationLS +MODE_SYNCHRONOUS Lib/xml/dom/xmlbuilder.py /^ MODE_SYNCHRONOUS = 1$/;" v class:DOMImplementationLS +MODNAME Lib/test/test_unittest/testmock/testpatch.py /^MODNAME = '%s.PTModule' % __name__$/;" v +MODNAME Modules/posixmodule.c 516;" d file: +MODNAME Modules/posixmodule.c 520;" d file: +MODNAME_OBJ Modules/posixmodule.c 517;" d file: +MODNAME_OBJ Modules/posixmodule.c 521;" d file: +MODULE Lib/test/test_enum.py /^MODULE = __name__$/;" v +MODULES Lib/test/test_linecache.py /^MODULES = "linecache abc".split()$/;" v +MODULES Python/import.c 68;" d file: +MODULES_BY_INDEX Python/import.c 70;" d file: +MODULE_NAME Modules/_sqlite/module.h 32;" d +MODULE_NAME Modules/_testinternalcapi.c 36;" d file: +MODULE_NAME Modules/_xxinterpchannelsmodule.c 71;" d file: +MODULE_NAME Modules/_xxsubinterpretersmodule.c 9;" d file: +MODULE_NAME Modules/cjkcodecs/multibytecodec.c 13;" d file: +MODULE_NAME Modules/pyexpat.c 1602;" d file: +MODULE_NAME Python/_warnings.c 10;" d file: +MODULE_PATH Lib/test/test_linecache.py /^MODULE_PATH = os.path.dirname(FILENAME)$/;" v +MODULE_VERSION Modules/_csv.c 11;" d file: +MOD_ADD Modules/_ctypes/_ctypes.c 5734;" d file: +MOD_ADD Modules/_ctypes/_ctypes.c 5783;" d file: +MOD_ADD_TYPE Modules/_ctypes/_ctypes.c 5650;" d file: +MOD_ADD_TYPE Modules/_ctypes/_ctypes.c 5725;" d file: +MOD_DIR Tools/peg_generator/pegen/build.py /^MOD_DIR = pathlib.Path(__file__).resolve().parent$/;" v +MOE Lib/test/test_enum.py /^ MOE = 3$/;" v class:.IntStooges +MOE Lib/test/test_enum.py /^ MOE = 3$/;" v class:.Stooges +MOE Lib/test/test_enum.py /^ MOE = 3.142596$/;" v class:.FloatStooges +MOE Lib/test/test_enum.py /^ MOE = 4$/;" v class:.FlagStooges +MOE Lib/test/test_enum.py /^ MOE = 4$/;" v class:FlagStoogesWithZero +MOE Lib/test/test_enum.py /^ MOE = 4$/;" v class:IntFlagStooges +MOE Lib/test/test_enum.py /^ MOE = 4$/;" v class:IntFlagStoogesWithZero +MOFILE Lib/test/test_gettext.py /^MOFILE = os.path.join(LOCALEDIR, 'gettext.mo')$/;" v +MOFILE_BAD_MAJOR_VERSION Lib/test/test_gettext.py /^MOFILE_BAD_MAJOR_VERSION = os.path.join(LOCALEDIR, 'gettext_bad_major_version.mo')$/;" v +MOFILE_BAD_MINOR_VERSION Lib/test/test_gettext.py /^MOFILE_BAD_MINOR_VERSION = os.path.join(LOCALEDIR, 'gettext_bad_minor_version.mo')$/;" v +MONDAY Lib/calendar.py /^ MONDAY = 0$/;" v class:Day +MONDAY Lib/test/test_enum.py /^ MONDAY = auto()$/;" v class:TestInternals.test_multiple_auto_on_line.Hah +MONITORING_FREE_TOOL_ID_METHODDEF Python/clinic/instrumentation.c.h 48;" d +MONITORING_GET_EVENTS_METHODDEF Python/clinic/instrumentation.c.h 140;" d +MONITORING_GET_LOCAL_EVENTS_METHODDEF Python/clinic/instrumentation.c.h 207;" d +MONITORING_GET_TOOL_METHODDEF Python/clinic/instrumentation.c.h 75;" d +MONITORING_REGISTER_CALLBACK_METHODDEF Python/clinic/instrumentation.c.h 102;" d +MONITORING_RESTART_EVENTS_METHODDEF Python/clinic/instrumentation.c.h 283;" d +MONITORING_SET_EVENTS_METHODDEF Python/clinic/instrumentation.c.h 172;" d +MONITORING_SET_LOCAL_EVENTS_METHODDEF Python/clinic/instrumentation.c.h 245;" d +MONITORING_USE_TOOL_ID_METHODDEF Python/clinic/instrumentation.c.h 16;" d +MONITORING__ALL_EVENTS_METHODDEF Python/clinic/instrumentation.c.h 300;" d +MONTHS Lib/http/cookiejar.py /^MONTHS = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",$/;" v +MONTHS_LOWER Lib/http/cookiejar.py /^MONTHS_LOWER = [month.lower() for month in MONTHS]$/;" v +MONTH_IS_SANE Modules/_datetimemodule.c 130;" d file: +MOST_SIGNIFICANT_BITS Python/instrumentation.c /^static const int8_t MOST_SIGNIFICANT_BITS[16] = {$/;" v file: +MOVED_PERMANENTLY Lib/http/__init__.py /^ MOVED_PERMANENTLY = (301, 'Moved Permanently',$/;" v class:HTTPStatus +MOVED_PERMANENTLY Lib/test/test_httplib.py /^ MOVED_PERMANENTLY = (301, 'Moved Permanently',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +MOVETO Lib/tkinter/constants.py /^MOVETO='moveto'$/;" v +MOVE_COST Python/suggestions.c 13;" d file: +MOVE_KEYS Lib/idlelib/config_key.py /^MOVE_KEYS = ('Home', 'End', 'Page Up', 'Page Down', 'Left Arrow',$/;" v +MO_OFF Objects/classobject.c 152;" d file: +MPD Modules/_decimal/_decimal.c 100;" d file: +MPD Modules/_decimal/_decimal.c 110;" d file: +MPD_BITS_PER_UINT Modules/_decimal/libmpdec/mpdecimal.h 128;" d +MPD_BITS_PER_UINT Modules/_decimal/libmpdec/mpdecimal.h 168;" d +MPD_CLAMP_DEFAULT Modules/_decimal/libmpdec/mpdecimal.h /^enum { MPD_CLAMP_DEFAULT, MPD_CLAMP_IEEE_754, MPD_CLAMP_GUARD };$/;" e enum:__anon341 +MPD_CLAMP_GUARD Modules/_decimal/libmpdec/mpdecimal.h /^enum { MPD_CLAMP_DEFAULT, MPD_CLAMP_IEEE_754, MPD_CLAMP_GUARD };$/;" e enum:__anon341 +MPD_CLAMP_IEEE_754 Modules/_decimal/libmpdec/mpdecimal.h /^enum { MPD_CLAMP_DEFAULT, MPD_CLAMP_IEEE_754, MPD_CLAMP_GUARD };$/;" e enum:__anon341 +MPD_CONST_DATA Modules/_decimal/libmpdec/mpdecimal.h 349;" d +MPD_Clamped Modules/_decimal/libmpdec/mpdecimal.h 256;" d +MPD_Conversion_syntax Modules/_decimal/libmpdec/mpdecimal.h 257;" d +MPD_DATAFLAGS Modules/_decimal/libmpdec/mpdecimal.h 350;" d +MPD_DECIMAL128 Modules/_decimal/libmpdec/mpdecimal.h 298;" d +MPD_DECIMAL32 Modules/_decimal/libmpdec/mpdecimal.h 296;" d +MPD_DECIMAL64 Modules/_decimal/libmpdec/mpdecimal.h 297;" d +MPD_DEFAULT_DOTPLACE Modules/_decimal/libmpdec/io.c 449;" d file: +MPD_Division_by_zero Modules/_decimal/libmpdec/mpdecimal.h 258;" d +MPD_Division_impossible Modules/_decimal/libmpdec/mpdecimal.h 259;" d +MPD_Division_undefined Modules/_decimal/libmpdec/mpdecimal.h 260;" d +MPD_ELIMIT Modules/_decimal/libmpdec/mpdecimal.h 149;" d +MPD_ELIMIT Modules/_decimal/libmpdec/mpdecimal.h 194;" d +MPD_EXPDIGITS Modules/_decimal/libmpdec/mpdecimal.h 144;" d +MPD_EXPDIGITS Modules/_decimal/libmpdec/mpdecimal.h 189;" d +MPD_EXP_CLAMP Modules/_decimal/libmpdec/mpdecimal.h 154;" d +MPD_EXP_CLAMP Modules/_decimal/libmpdec/mpdecimal.h 199;" d +MPD_EXP_INF Modules/_decimal/libmpdec/mpdecimal.h 153;" d +MPD_EXP_INF Modules/_decimal/libmpdec/mpdecimal.h 198;" d +MPD_EXP_MAX_T Modules/_decimal/libmpdec/mpdecimal.c 4418;" d file: +MPD_Errors Modules/_decimal/libmpdec/mpdecimal.h 283;" d +MPD_FMT_EXP Modules/_decimal/libmpdec/io.c 442;" d file: +MPD_FMT_FIXED Modules/_decimal/libmpdec/io.c 443;" d file: +MPD_FMT_LOWER Modules/_decimal/libmpdec/io.c 438;" d file: +MPD_FMT_PERCENT Modules/_decimal/libmpdec/io.c 444;" d file: +MPD_FMT_SIGN_PLUS Modules/_decimal/libmpdec/io.c 446;" d file: +MPD_FMT_SIGN_SPACE Modules/_decimal/libmpdec/io.c 445;" d file: +MPD_FMT_TOENG Modules/_decimal/libmpdec/io.c 441;" d file: +MPD_FMT_TOSCI Modules/_decimal/libmpdec/io.c 440;" d file: +MPD_FMT_UPPER Modules/_decimal/libmpdec/io.c 439;" d file: +MPD_Float_operation Modules/_decimal/_decimal.c 59;" d file: +MPD_Fpu_error Modules/_decimal/libmpdec/mpdecimal.h 261;" d +MPD_HIDE_SYMBOLS_END Modules/_decimal/libmpdec/mpdecimal.h 59;" d +MPD_HIDE_SYMBOLS_END Modules/_decimal/libmpdec/mpdecimal.h 63;" d +MPD_HIDE_SYMBOLS_START Modules/_decimal/libmpdec/mpdecimal.h 58;" d +MPD_HIDE_SYMBOLS_START Modules/_decimal/libmpdec/mpdecimal.h 62;" d +MPD_IEEE_CONTEXT_MAX_BITS Modules/_decimal/libmpdec/mpdecimal.h 156;" d +MPD_IEEE_CONTEXT_MAX_BITS Modules/_decimal/libmpdec/mpdecimal.h 201;" d +MPD_IEEE_Invalid_operation Modules/_decimal/libmpdec/mpdecimal.h 274;" d +MPD_INF Modules/_decimal/libmpdec/mpdecimal.h 342;" d +MPD_Inexact Modules/_decimal/libmpdec/mpdecimal.h 262;" d +MPD_Insufficient_storage Modules/_decimal/libmpdec/mpdecimal.h 293;" d +MPD_Invalid_context Modules/_decimal/libmpdec/mpdecimal.h 263;" d +MPD_Invalid_operation Modules/_decimal/libmpdec/mpdecimal.h 264;" d +MPD_KARATSUBA_BASECASE Modules/_decimal/libmpdec/mpdecimal.c 5450;" d file: +MPD_MAJOR_VERSION Modules/_decimal/libmpdec/mpdecimal.h 82;" d +MPD_MAXIMPORT Modules/_decimal/libmpdec/mpdecimal.h 155;" d +MPD_MAXIMPORT Modules/_decimal/libmpdec/mpdecimal.h 200;" d +MPD_MAXTRANSFORM_2N Modules/_decimal/libmpdec/literature/fnt.py /^MPD_MAXTRANSFORM_2N = 2**25$/;" v +MPD_MAXTRANSFORM_2N Modules/_decimal/libmpdec/literature/fnt.py /^MPD_MAXTRANSFORM_2N = 2**32$/;" v +MPD_MAXTRANSFORM_2N Modules/_decimal/libmpdec/mpdecimal.h 146;" d +MPD_MAXTRANSFORM_2N Modules/_decimal/libmpdec/mpdecimal.h 191;" d +MPD_MAX_EMAX Modules/_decimal/libmpdec/mpdecimal.h 150;" d +MPD_MAX_EMAX Modules/_decimal/libmpdec/mpdecimal.h 195;" d +MPD_MAX_FLAG_LIST Modules/_decimal/libmpdec/mpdecimal.h 417;" d +MPD_MAX_FLAG_STRING Modules/_decimal/libmpdec/mpdecimal.h 416;" d +MPD_MAX_POW10 Modules/_decimal/libmpdec/mpdecimal.h 143;" d +MPD_MAX_POW10 Modules/_decimal/libmpdec/mpdecimal.h 188;" d +MPD_MAX_PREC Modules/_decimal/libmpdec/mpdecimal.h 147;" d +MPD_MAX_PREC Modules/_decimal/libmpdec/mpdecimal.h 192;" d +MPD_MAX_PREC_LOG2 Modules/_decimal/libmpdec/mpdecimal.h 148;" d +MPD_MAX_PREC_LOG2 Modules/_decimal/libmpdec/mpdecimal.h 193;" d +MPD_MAX_SIGNAL_LIST Modules/_decimal/libmpdec/mpdecimal.h 418;" d +MPD_MICRO_VERSION Modules/_decimal/libmpdec/mpdecimal.h 84;" d +MPD_MINALLOC Modules/_decimal/libmpdec/mpalloc.c /^mpd_ssize_t MPD_MINALLOC = MPD_MINALLOC_MIN;$/;" v +MPD_MINALLOC_MAX Modules/_decimal/libmpdec/mpdecimal.h 302;" d +MPD_MINALLOC_MIN Modules/_decimal/libmpdec/mpdecimal.h 301;" d +MPD_MINOR_VERSION Modules/_decimal/libmpdec/mpdecimal.h 83;" d +MPD_MIN_EMIN Modules/_decimal/libmpdec/mpdecimal.h 151;" d +MPD_MIN_EMIN Modules/_decimal/libmpdec/mpdecimal.h 196;" d +MPD_MIN_ETINY Modules/_decimal/libmpdec/mpdecimal.h 152;" d +MPD_MIN_ETINY Modules/_decimal/libmpdec/mpdecimal.h 197;" d +MPD_Malloc_error Modules/_decimal/libmpdec/mpdecimal.h 265;" d +MPD_Max_status Modules/_decimal/libmpdec/mpdecimal.h 271;" d +MPD_NAN Modules/_decimal/libmpdec/mpdecimal.h 343;" d +MPD_NEG Modules/_decimal/libmpdec/mpdecimal.h 341;" d +MPD_NEWTONDIV_CUTOFF Modules/_decimal/libmpdec/mpdecimal.c 86;" d file: +MPD_NEW_CONST Modules/_decimal/libmpdec/mpdecimal.c 93;" d file: +MPD_NEW_SHARED Modules/_decimal/libmpdec/mpdecimal.c 98;" d file: +MPD_NEW_STATIC Modules/_decimal/libmpdec/mpdecimal.c 88;" d file: +MPD_NUM_FLAGS Modules/_decimal/libmpdec/mpdecimal.h 415;" d +MPD_Not_implemented Modules/_decimal/libmpdec/mpdecimal.h 266;" d +MPD_Overflow Modules/_decimal/libmpdec/mpdecimal.h 267;" d +MPD_POS Modules/_decimal/libmpdec/mpdecimal.h 340;" d +MPD_PRAGMA Modules/_decimal/libmpdec/mpdecimal.h 57;" d +MPD_PRAGMA Modules/_decimal/libmpdec/mpdecimal.h 61;" d +MPD_RADIX Modules/_decimal/libmpdec/mpdecimal.h 141;" d +MPD_RADIX Modules/_decimal/libmpdec/mpdecimal.h 186;" d +MPD_RDIGITS Modules/_decimal/libmpdec/mpdecimal.h 142;" d +MPD_RDIGITS Modules/_decimal/libmpdec/mpdecimal.h 187;" d +MPD_ROUND_05UP Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_05UP, \/* round zero or five away from 0 *\/$/;" e enum:__anon340 +MPD_ROUND_CEILING Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_CEILING, \/* round toward +infinity *\/$/;" e enum:__anon340 +MPD_ROUND_DOWN Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_DOWN, \/* round toward 0 (truncate) *\/$/;" e enum:__anon340 +MPD_ROUND_FLOOR Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_FLOOR, \/* round toward -infinity *\/$/;" e enum:__anon340 +MPD_ROUND_GUARD Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_GUARD$/;" e enum:__anon340 +MPD_ROUND_HALF_DOWN Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_HALF_DOWN, \/* 0.5 is rounded down *\/$/;" e enum:__anon340 +MPD_ROUND_HALF_EVEN Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_HALF_EVEN, \/* 0.5 is rounded to even *\/$/;" e enum:__anon340 +MPD_ROUND_HALF_UP Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_HALF_UP, \/* 0.5 is rounded up *\/$/;" e enum:__anon340 +MPD_ROUND_TRUNC Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_TRUNC, \/* truncate, but set infinity *\/$/;" e enum:__anon340 +MPD_ROUND_UP Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_ROUND_UP, \/* round away from 0 *\/$/;" e enum:__anon340 +MPD_Rounded Modules/_decimal/libmpdec/mpdecimal.h 268;" d +MPD_SHARED_DATA Modules/_decimal/libmpdec/mpdecimal.h 348;" d +MPD_SIZE_MAX Modules/_decimal/libmpdec/mpdecimal.h 131;" d +MPD_SIZE_MAX Modules/_decimal/libmpdec/mpdecimal.h 176;" d +MPD_SNAN Modules/_decimal/libmpdec/mpdecimal.h 344;" d +MPD_SPECIAL Modules/_decimal/libmpdec/mpdecimal.h 345;" d +MPD_SSIZE_MAX Modules/_decimal/libmpdec/mpdecimal.h 135;" d +MPD_SSIZE_MAX Modules/_decimal/libmpdec/mpdecimal.h 180;" d +MPD_SSIZE_MIN Modules/_decimal/libmpdec/mpdecimal.h 136;" d +MPD_SSIZE_MIN Modules/_decimal/libmpdec/mpdecimal.h 181;" d +MPD_STATIC Modules/_decimal/libmpdec/mpdecimal.h 346;" d +MPD_STATIC_DATA Modules/_decimal/libmpdec/mpdecimal.h 347;" d +MPD_Subnormal Modules/_decimal/libmpdec/mpdecimal.h 269;" d +MPD_TRIPLE_ERROR Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_TRIPLE_ERROR,$/;" e enum:mpd_triple_class +MPD_TRIPLE_INF Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_TRIPLE_INF,$/;" e enum:mpd_triple_class +MPD_TRIPLE_NORMAL Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_TRIPLE_NORMAL,$/;" e enum:mpd_triple_class +MPD_TRIPLE_QNAN Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_TRIPLE_QNAN,$/;" e enum:mpd_triple_class +MPD_TRIPLE_SNAN Modules/_decimal/libmpdec/mpdecimal.h /^ MPD_TRIPLE_SNAN,$/;" e enum:mpd_triple_class +MPD_TWO63 Modules/_decimal/libmpdec/constants.c /^ const float MPD_TWO63 = 9223372036854775808.0; \/* 2^63 *\/$/;" v +MPD_Traps Modules/_decimal/libmpdec/mpdecimal.h 287;" d +MPD_UINT8_C Modules/_decimal/libmpdec/mpdecimal.h 43;" d +MPD_UINT8_C Modules/_decimal/libmpdec/mpdecimal.h 51;" d +MPD_UINT_MAX Modules/_decimal/libmpdec/mpdecimal.h 127;" d +MPD_UINT_MAX Modules/_decimal/libmpdec/mpdecimal.h 167;" d +MPD_UUINT_MAX Modules/_decimal/libmpdec/mpdecimal.h 172;" d +MPD_Underflow Modules/_decimal/libmpdec/mpdecimal.h 270;" d +MPD_VERSION Modules/_decimal/libmpdec/mpdecimal.h 86;" d +MPD_VERSION_HEX Modules/_decimal/libmpdec/mpdecimal.h 88;" d +MPJoinableQueue Lib/test/test_genericalias.py /^ MPJoinableQueue = None$/;" v +MPQueue Lib/test/test_genericalias.py /^ MPQueue = None$/;" v +MPSLOT Objects/typeobject.c 9374;" d file: +MPSLOT Objects/typeobject.c 9396;" d file: +MPSimpleQueue Lib/test/test_genericalias.py /^ MPSimpleQueue = None$/;" v +MP_EXCEPTION_HAS_BEEN_SET Modules/_multiprocessing/multiprocessing.h 86;" d +MP_MEMORY_ERROR Modules/_multiprocessing/multiprocessing.h 84;" d +MP_SOCKET_ERROR Modules/_multiprocessing/multiprocessing.h 85;" d +MP_STANDARD_ERROR Modules/_multiprocessing/multiprocessing.h 83;" d +MP_SUCCESS Modules/_multiprocessing/multiprocessing.h 82;" d +MSB Python/assemble.c 172;" d file: +MSBUILD PCbuild/find_msbuild.bat /^ @if "%%i"=="MSBuildToolsPath" @if exist "%%k\\msbuild.exe" @(set MSBUILD="%%k\\msbuild.exe")$/;" v +MSBUILD PCbuild/find_msbuild.bat /^ @if exist msbuild.exe @(set MSBUILD="%CD%\\msbuild.exe") else @(set MSBUILD=)$/;" v +MSBUILD PCbuild/find_msbuild.bat /^@for %%j in (Current 15.0) DO @if exist "%_Py_MSBuild_Root%\\%%j\\Bin\\msbuild.exe" (set MSBUILD="%_Py_MSBuild_Root%\\%%j\\Bin\\msbuild.exe")$/;" v +MSBUILD PCbuild/find_msbuild.bat /^@if exist "%*" (set MSBUILD="%*") & (set _Py_MSBuild_Source=environment) & goto :found$/;" v +MSBUILD PCbuild/find_msbuild.bat /^@if exist "%MSBUILD%" set MSBUILD="%MSBUILD%" & (set _Py_MSBuild_Source=PATH) & goto :found$/;" v +MSBUILD PCbuild/find_msbuild.bat /^@if exist "%~1" (set MSBUILD="%~1") & (set _Py_MSBuild_Source=environment) & goto :found$/;" v +MSBUILD PCbuild/find_msbuild.bat /^@set MSBUILD=$/;" v +MSG Lib/ctypes/wintypes.py /^class MSG(ctypes.Structure):$/;" c +MSG Lib/test/test_except_star.py /^ MSG = (r"'break', 'continue' and 'return'"$/;" v class:TestBreakContinueReturnInExceptStarBlock +MSG Lib/test/test_socket.py /^MSG = 'Michael Gilfix was here\\u1234\\r\\n'.encode('utf-8')$/;" v +MSGSIZE PC/launcher.c 17;" d file: +MSGSIZE PC/launcher2.c 25;" d file: +MSG_BEGIN Lib/test/test_smtplib.py /^MSG_BEGIN = '---------- MESSAGE FOLLOWS ----------\\n'$/;" v +MSG_END Lib/test/test_smtplib.py /^MSG_END = '------------ END MESSAGE ------------\\n'$/;" v +MSG_OOB Lib/ftplib.py /^MSG_OOB = 0x1 # Process data out of band$/;" v +MSIError PC/_msi.c /^static PyObject *MSIError;$/;" v file: +MSSTORE_COMMAND PC/launcher2.c /^const wchar_t *MSSTORE_COMMAND = L"ms-windows-store:\/\/pdp\/?productid=%s";$/;" v +MSVCC PCbuild/prepare_libffi.bat /^FOR \/F "usebackq delims==" %%i IN (`%GET_MSVCC%`) do @set MSVCC=%%i$/;" v +MSVCCompiler Tools/c-analyzer/distutils/_msvccompiler.py /^class MSVCCompiler(CCompiler) :$/;" c +MSVCCompiler Tools/c-analyzer/distutils/msvc9compiler.py /^class MSVCCompiler(CCompiler) :$/;" c +MSVCCompiler Tools/c-analyzer/distutils/msvccompiler.py /^class MSVCCompiler(CCompiler) :$/;" c +MSVCRT_CRTSETREPORTFILE_METHODDEF PC/clinic/msvcrtmodule.c.h 506;" d +MSVCRT_CRTSETREPORTFILE_METHODDEF PC/clinic/msvcrtmodule.c.h 696;" d +MSVCRT_CRTSETREPORTMODE_METHODDEF PC/clinic/msvcrtmodule.c.h 553;" d +MSVCRT_CRTSETREPORTMODE_METHODDEF PC/clinic/msvcrtmodule.c.h 700;" d +MSVCRT_GETCHE_METHODDEF PC/clinic/msvcrtmodule.c.h 298;" d +MSVCRT_GETCH_METHODDEF PC/clinic/msvcrtmodule.c.h 246;" d +MSVCRT_GETERRORMODE_METHODDEF PC/clinic/msvcrtmodule.c.h 637;" d +MSVCRT_GETERRORMODE_METHODDEF PC/clinic/msvcrtmodule.c.h 708;" d +MSVCRT_GETWCHE_METHODDEF PC/clinic/msvcrtmodule.c.h 324;" d +MSVCRT_GETWCHE_METHODDEF PC/clinic/msvcrtmodule.c.h 684;" d +MSVCRT_GETWCH_METHODDEF PC/clinic/msvcrtmodule.c.h 272;" d +MSVCRT_GETWCH_METHODDEF PC/clinic/msvcrtmodule.c.h 680;" d +MSVCRT_GET_OSFHANDLE_METHODDEF PC/clinic/msvcrtmodule.c.h 179;" d +MSVCRT_HEAPMIN_METHODDEF PC/clinic/msvcrtmodule.c.h 20;" d +MSVCRT_KBHIT_METHODDEF PC/clinic/msvcrtmodule.c.h 212;" d +MSVCRT_LOCKING_METHODDEF PC/clinic/msvcrtmodule.c.h 45;" d +MSVCRT_OPEN_OSFHANDLE_METHODDEF PC/clinic/msvcrtmodule.c.h 136;" d +MSVCRT_PUTCH_METHODDEF PC/clinic/msvcrtmodule.c.h 350;" d +MSVCRT_PUTWCH_METHODDEF PC/clinic/msvcrtmodule.c.h 386;" d +MSVCRT_PUTWCH_METHODDEF PC/clinic/msvcrtmodule.c.h 688;" d +MSVCRT_SETERRORMODE_METHODDEF PC/clinic/msvcrtmodule.c.h 657;" d +MSVCRT_SETMODE_METHODDEF PC/clinic/msvcrtmodule.c.h 91;" d +MSVCRT_SET_ERROR_MODE_METHODDEF PC/clinic/msvcrtmodule.c.h 600;" d +MSVCRT_SET_ERROR_MODE_METHODDEF PC/clinic/msvcrtmodule.c.h 704;" d +MSVCRT_UNGETCH_METHODDEF PC/clinic/msvcrtmodule.c.h 428;" d +MSVCRT_UNGETWCH_METHODDEF PC/clinic/msvcrtmodule.c.h 464;" d +MSVCRT_UNGETWCH_METHODDEF PC/clinic/msvcrtmodule.c.h 692;" d +MS_COREDLL PC/pyconfig.h 296;" d +MS_TO_NS Lib/test/test_time.py /^MS_TO_NS = 10 ** 6$/;" v +MS_TO_NS Python/pytime.c 25;" d file: +MS_TO_US Python/pytime.c 20;" d file: +MS_WIN32 PC/pyconfig.h 67;" d +MS_WIN64 PC/pyconfig.h 130;" d +MS_WIN64 PC/pyconfig.h 240;" d +MS_WINDOWS Lib/test/_test_embed_set_config.py /^MS_WINDOWS = (os.name == 'nt')$/;" v +MS_WINDOWS Lib/test/pythoninfo.py /^MS_WINDOWS = (sys.platform == 'win32')$/;" v +MS_WINDOWS Lib/test/test_cppext/__init__.py /^MS_WINDOWS = (sys.platform == 'win32')$/;" v +MS_WINDOWS Lib/test/test_cppext/setup.py /^MS_WINDOWS = (sys.platform == 'win32')$/;" v +MS_WINDOWS Lib/test/test_embed.py /^MS_WINDOWS = (os.name == 'nt')$/;" v +MS_WINDOWS Lib/test/test_faulthandler.py /^MS_WINDOWS = (os.name == 'nt')$/;" v +MS_WINDOWS Lib/test/test_utf8_mode.py /^MS_WINDOWS = (sys.platform == 'win32')$/;" v +MS_WINDOWS PC/launcher2.c 21;" d file: +MS_WINDOWS PC/pyconfig.h 68;" d +MS_WINDOWS PC/python_ver_rc.h 10;" d +MS_WINDOWS_APP PC/pyconfig.h 82;" d +MS_WINDOWS_DESKTOP PC/pyconfig.h 79;" d +MS_WINDOWS_GAMES PC/pyconfig.h 88;" d +MS_WINDOWS_SYSTEM PC/pyconfig.h 85;" d +MT_MINSIZE Modules/_pickle.c 764;" d file: +MT_MINSIZE Modules/_pickle.c 974;" d file: +MULMOD Modules/_decimal/libmpdec/constants.h 45;" d +MULMOD2 Modules/_decimal/libmpdec/constants.h 47;" d +MULMOD2C Modules/_decimal/libmpdec/constants.h 46;" d +MULT Lib/test/test_buffer.py /^MULT = 1$/;" v +MULT Objects/longobject.c 4710;" d file: +MULTIBYTE_CASES Modules/expat/xmltok_impl.c 1812;" d file: +MULTIC Modules/cjkcodecs/cjkcodecs.h 20;" d +MULTIPLE Lib/tkinter/constants.py /^MULTIPLE='multiple'$/;" v +MULTIPLE_CHOICES Lib/http/__init__.py /^ MULTIPLE_CHOICES = (300, 'Multiple Choices',$/;" v class:HTTPStatus +MULTIPLE_CHOICES Lib/test/test_httplib.py /^ MULTIPLE_CHOICES = (300, 'Multiple Choices',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +MULTIPROCESSING_ERROR Lib/test/libregrtest/runtest.py /^ MULTIPROCESSING_ERROR = "MULTIPROCESSING_ERROR"$/;" v class:State +MULTIPROCESSING_EXCEPTIONS Lib/_compat_pickle.py /^MULTIPROCESSING_EXCEPTIONS = ($/;" v +MULTIPROCESSING_H Modules/_multiprocessing/multiprocessing.h 2;" d +MULTISSL_DIR Tools/ssl/multissltests.py /^MULTISSL_DIR = os.path.abspath(os.path.join(PYTHONROOT, '..', 'multissl'))$/;" v +MULTI_STATUS Lib/http/__init__.py /^ MULTI_STATUS = 207, 'Multi-Status'$/;" v class:HTTPStatus +MULTI_STATUS Lib/test/test_httplib.py /^ MULTI_STATUS = 207, 'Multi-Status'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +MUNCH_SIZE Modules/_hashopenssl.c 45;" d file: +MUST_CONVERT Modules/expat/xmlparse.c 154;" d file: +MUST_CONVERT Modules/expat/xmlparse.c 162;" d file: +MUST_INCLUDE_CI Lib/test/test_monitoring.py /^ MUST_INCLUDE_CI = [$/;" v class:TestInstallIncrementallly +MUST_INCLUDE_LI Lib/test/test_monitoring.py /^ MUST_INCLUDE_LI = [$/;" v class:TestInstallIncrementallly +MUTABLE Python/specialize.c /^ MUTABLE, \/* Instance of a mutable class; might, or might not, be a descriptor *\/$/;" e enum:__anon686 file: +MUTEX_FINI Python/ceval_gil.c 191;" d file: +MUTEX_INIT Python/ceval_gil.c 188;" d file: +MUTEX_LOCK Python/ceval_gil.c 194;" d file: +MUTEX_UNLOCK Python/ceval_gil.c 197;" d file: +MVWDELCH_IS_EXPRESSION Include/py_curses.h 49;" d +MV_ANY_CONTIGUOUS Objects/memoryobject.c 234;" d file: +MV_COMPARE_EX Objects/memoryobject.c 2742;" d file: +MV_COMPARE_NOT_IMPL Objects/memoryobject.c 2743;" d file: +MV_CONTIGUOUS_NDIM1 Objects/memoryobject.c 238;" d file: +MV_C_CONTIGUOUS Objects/memoryobject.c 231;" d file: +MV_F_CONTIGUOUS Objects/memoryobject.c 232;" d file: +MYCONST Modules/pyexpat.c 1838;" d file: +MYCONST Modules/pyexpat.c 1861;" d file: +MYCONST Modules/pyexpat.c 1986;" d file: +MYCONST Modules/pyexpat.c 1995;" d file: +MYPY Tools/peg_generator/Makefile /^MYPY ?= mypy$/;" m +M_LN10 Modules/cmathmodule.c 60;" d file: +M_LN2 Modules/cmathmodule.c 56;" d file: +M_test_frozenmain Programs/test_frozenmain.h /^unsigned char M_test_frozenmain[] = {$/;" v +MacOSX Lib/webbrowser.py /^ class MacOSX(BaseBrowser):$/;" c +MacOSXOSAScript Lib/webbrowser.py /^ class MacOSXOSAScript(BaseBrowser):$/;" c +MachOTest Lib/test/test_ctypes/test_macholib.py /^class MachOTest(unittest.TestCase):$/;" c +Macro Tools/cases_generator/parser.py /^class Macro(Node):$/;" c +MacroExpander Tools/c-analyzer/distutils/msvc9compiler.py /^class MacroExpander:$/;" c +MacroExpander Tools/c-analyzer/distutils/msvccompiler.py /^class MacroExpander:$/;" c +MacroInstruction Tools/cases_generator/generate_cases.py /^class MacroInstruction(SuperOrMacroInstruction):$/;" c +MacroTestCase Lib/test/test_lib2to3/test_util.py /^class MacroTestCase(support.TestCase):$/;" c +MagicMixin Lib/unittest/mock.py /^class MagicMixin(Base):$/;" c +MagicMock Lib/unittest/mock.py /^class MagicMock(MagicMixin, Mock):$/;" c +MagicNumberTests Lib/test/test_importlib/test_util.py /^class MagicNumberTests(unittest.TestCase):$/;" c +MagicNumberTests Lib/test/test_importlib/test_util.py /^class MagicNumberTests:$/;" c +MagicProxy Lib/unittest/mock.py /^class MagicProxy(Base):$/;" c +MagicResources Lib/test/test_importlib/resources/test_custom.py /^class MagicResources(TraversableResources):$/;" c +MagicSub Lib/test/test_unittest/testmock/testcallable.py /^ class MagicSub(MagicMock):$/;" c function:TestCallable.test_subclasses +MailManOptions Lib/test/test_enum.py /^ class MailManOptions(Fluflnum):$/;" c function:TestSpecial.test_flufl_enum +Mailbox Lib/email/_header_value_parser.py /^class Mailbox(TokenList):$/;" c +Mailbox Lib/mailbox.py /^class Mailbox:$/;" c +MailboxList Lib/email/_header_value_parser.py /^class MailboxList(TokenList):$/;" c +Maildir Lib/mailbox.py /^class Maildir(Mailbox):$/;" c +MaildirMessage Lib/mailbox.py /^class MaildirMessage(Message):$/;" c +MaildirTestCase Lib/test/test_mailbox.py /^class MaildirTestCase(unittest.TestCase):$/;" c +MainEnum Lib/test/test_enum.py /^ class MainEnum(BaseEnum):$/;" c function:_EnumTests.setUp +MainError Lib/test/test_exceptions.py /^ class MainError(Exception):$/;" c function:ExceptionTests.test_yield_in_nested_try_excepts +MainMenuTest Lib/idlelib/idle_test/test_mainmenu.py /^class MainMenuTest(unittest.TestCase):$/;" c +MakeAnonFields Modules/_ctypes/stgdict.c /^MakeAnonFields(PyObject *type)$/;" f file: +MakeFields Modules/_ctypes/stgdict.c /^MakeFields(PyObject *type, CFieldObject *descr,$/;" f file: +MakeParserTest Lib/test/test_sax.py /^class MakeParserTest(unittest.TestCase):$/;" c +MakeProxyType Lib/multiprocessing/managers.py /^def MakeProxyType(name, exposed, _cache={}):$/;" f +MakedirTests Lib/test/test_os.py /^class MakedirTests(unittest.TestCase):$/;" c +MakefileTests Lib/test/test_sysconfig.py /^class MakefileTests(unittest.TestCase):$/;" c +MalformedHeaderDefect Lib/email/errors.py /^MalformedHeaderDefect = MissingHeaderBodySeparatorDefect$/;" v +MalformedInputTest Lib/test/test_pyexpat.py /^class MalformedInputTest(unittest.TestCase):$/;" c +MalodorousPervert Lib/test/inspect_fodder.py /^class MalodorousPervert(StupidGit):$/;" c +Manager Lib/logging/__init__.py /^class Manager(object):$/;" c +Manager Lib/multiprocessing/context.py /^ def Manager(self):$/;" m class:BaseContext +Manager Lib/multiprocessing/dummy/__init__.py /^def Manager():$/;" f +Manager Lib/test/test_coroutines.py /^ class Manager:$/;" c function:CoroutineTest.test_for_6 +Manager Lib/test/test_coroutines.py /^ class Manager:$/;" c function:CoroutineTest.test_with_1 +Manager Lib/test/test_typing.py /^class Manager(Employee):$/;" c +ManagerFromScratch Lib/test/test_contextlib.py /^ class ManagerFromScratch:$/;" c function:TestAbstractContextManager.test_structural_subclassing +ManagerFromScratch Lib/test/test_contextlib_async.py /^ class ManagerFromScratch:$/;" c function:TestAbstractAsyncContextManager.test_structural_subclassing +ManagerMixin Lib/test/_test_multiprocessing.py /^class ManagerMixin(BaseMixin):$/;" c +ManagerTest Lib/test/test_logging.py /^class ManagerTest(BaseTest):$/;" c +ManagingFounder Lib/test/test_typing.py /^class ManagingFounder(Manager, Founder):$/;" c +Manifest Tools/build/stable_abi.py /^class Manifest:$/;" c +Manual Lib/test/test_enum.py /^ class Manual(Enum):$/;" c function:TestVerify.test_continuous +ManualASTCreationTestCase Lib/test/test_unparse.py /^class ManualASTCreationTestCase(unittest.TestCase):$/;" c +ManualModuleMakeDataClass Lib/test/test_dataclasses.py /^ManualModuleMakeDataClass = make_dataclass('ManualModuleMakeDataClass',$/;" v +Map Lib/test/test_tkinter/test_misc.py /^ Map = '19'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Map Lib/tkinter/__init__.py /^ Map = '19'$/;" v class:EventType +MapCRLF Lib/imaplib.py /^MapCRLF = re.compile(br'\\r\\n|\\r|\\n')$/;" v +MapRequest Lib/test/test_tkinter/test_misc.py /^ MapRequest = '20'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +MapRequest Lib/tkinter/__init__.py /^ MapRequest = '20'$/;" v class:EventType +MapResult Lib/multiprocessing/pool.py /^class MapResult(ApplyResult):$/;" c +Mapping Lib/_collections_abc.py /^class Mapping(Collection):$/;" c +Mapping Lib/test/test_descr.py /^ class Mapping:$/;" c function:.test_dict_constructors +Mapping Lib/test/test_string.py /^class Mapping:$/;" c +Mapping Lib/test/test_tkinter/test_misc.py /^ Mapping = '34' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Mapping Lib/test/test_unicode.py /^ class Mapping(dict):$/;" c function:UnicodeTest.test_format_map +Mapping Lib/tkinter/__init__.py /^ Mapping = '34' # undocumented$/;" v class:EventType +Mapping Lib/typing.py /^Mapping = _alias(collections.abc.Mapping, 2)$/;" v +Mapping1 Lib/test/test_capi/test_abstract.py /^ class Mapping1(dict):$/;" c function:CAPITest.test_mapping_keys_valuesitems +Mapping2 Lib/test/test_capi/test_abstract.py /^ class Mapping2(dict):$/;" c function:CAPITest.test_mapping_keys_valuesitems +MappingProxyTests Lib/test/test_types.py /^class MappingProxyTests(unittest.TestCase):$/;" c +MappingProxyType Lib/types.py /^MappingProxyType = type(type.__dict__)$/;" v +MappingTestCase Lib/test/test_weakref.py /^class MappingTestCase(TestBase):$/;" c +MappingView Lib/_collections_abc.py /^class MappingView(Sized):$/;" c +MappingView Lib/typing.py /^MappingView = _alias(collections.abc.MappingView, 1)$/;" v +Mark Tools/peg_generator/pegen/tokenizer.py /^Mark = int # NewType('Mark', int)$/;" v +Marker Lib/test/test_coroutines.py /^ class Marker(Exception):$/;" c function:CoroutineTest.test_await_14 +MarkupIterator Objects/stringlib/unicode_format.h /^} MarkupIterator;$/;" t typeref:struct:__anon707 +MarkupIterator_init Objects/stringlib/unicode_format.h /^MarkupIterator_init(MarkupIterator *self, PyObject *str,$/;" f +MarkupIterator_next Objects/stringlib/unicode_format.h /^MarkupIterator_next(MarkupIterator *self, SubString *literal,$/;" f +Marshaller Lib/xmlrpc/client.py /^class Marshaller:$/;" c +MatMult Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" e enum:_operator +MatMult_singleton Include/internal/pycore_ast_state.h /^ PyObject *MatMult_singleton;$/;" m struct:ast_state +MatMult_type Include/internal/pycore_ast_state.h /^ PyObject *MatMult_type;$/;" m struct:ast_state +Match Include/internal/pycore_ast.h /^ } Match;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon67 +Match Lib/difflib.py /^Match = _namedtuple('Match', 'a b size')$/;" v +Match Lib/re/__init__.py /^Match = type(_compiler.compile('', 0).match(''))$/;" v +Match Lib/typing.py /^ Match = Match$/;" v class:re +Match Lib/typing.py /^Match = _alias(stdlib_re.Match, 1)$/;" v +MatchAs Include/internal/pycore_ast.h /^ } MatchAs;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon114 +MatchAs_fields Python/Python-ast.c /^static const char * const MatchAs_fields[]={$/;" v file: +MatchAs_kind Include/internal/pycore_ast.h /^ MatchClass_kind=5, MatchStar_kind=6, MatchAs_kind=7,$/;" e enum:_pattern_kind +MatchAs_type Include/internal/pycore_ast_state.h /^ PyObject *MatchAs_type;$/;" m struct:ast_state +MatchClass Include/internal/pycore_ast.h /^ } MatchClass;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon112 +MatchClass_fields Python/Python-ast.c /^static const char * const MatchClass_fields[]={$/;" v file: +MatchClass_kind Include/internal/pycore_ast.h /^ MatchClass_kind=5, MatchStar_kind=6, MatchAs_kind=7,$/;" e enum:_pattern_kind +MatchClass_type Include/internal/pycore_ast_state.h /^ PyObject *MatchClass_type;$/;" m struct:ast_state +MatchMapping Include/internal/pycore_ast.h /^ } MatchMapping;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon111 +MatchMapping_fields Python/Python-ast.c /^static const char * const MatchMapping_fields[]={$/;" v file: +MatchMapping_kind Include/internal/pycore_ast.h /^ MatchSequence_kind=3, MatchMapping_kind=4,$/;" e enum:_pattern_kind +MatchMapping_type Include/internal/pycore_ast_state.h /^ PyObject *MatchMapping_type;$/;" m struct:ast_state +MatchObject Modules/_sre/sre.h /^} MatchObject;$/;" t typeref:struct:__anon455 +MatchOr Include/internal/pycore_ast.h /^ } MatchOr;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon115 +MatchOr_fields Python/Python-ast.c /^static const char * const MatchOr_fields[]={$/;" v file: +MatchOr_kind Include/internal/pycore_ast.h /^ MatchOr_kind=8};$/;" e enum:_pattern_kind +MatchOr_type Include/internal/pycore_ast_state.h /^ PyObject *MatchOr_type;$/;" m struct:ast_state +MatchSequence Include/internal/pycore_ast.h /^ } MatchSequence;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon110 +MatchSequence_fields Python/Python-ast.c /^static const char * const MatchSequence_fields[]={$/;" v file: +MatchSequence_kind Include/internal/pycore_ast.h /^ MatchSequence_kind=3, MatchMapping_kind=4,$/;" e enum:_pattern_kind +MatchSequence_type Include/internal/pycore_ast_state.h /^ PyObject *MatchSequence_type;$/;" m struct:ast_state +MatchSingleton Include/internal/pycore_ast.h /^ } MatchSingleton;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon109 +MatchSingleton_fields Python/Python-ast.c /^static const char * const MatchSingleton_fields[]={$/;" v file: +MatchSingleton_kind Include/internal/pycore_ast.h /^enum _pattern_kind {MatchValue_kind=1, MatchSingleton_kind=2,$/;" e enum:_pattern_kind +MatchSingleton_type Include/internal/pycore_ast_state.h /^ PyObject *MatchSingleton_type;$/;" m struct:ast_state +MatchStar Include/internal/pycore_ast.h /^ } MatchStar;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon113 +MatchStar_fields Python/Python-ast.c /^static const char * const MatchStar_fields[]={$/;" v file: +MatchStar_kind Include/internal/pycore_ast.h /^ MatchClass_kind=5, MatchStar_kind=6, MatchAs_kind=7,$/;" e enum:_pattern_kind +MatchStar_type Include/internal/pycore_ast_state.h /^ PyObject *MatchStar_type;$/;" m struct:ast_state +MatchTests Lib/test/libregrtest/runtest.py /^MatchTests = list[str]$/;" v +MatchTestsDict Lib/test/libregrtest/runtest.py /^MatchTestsDict = dict[str, MatchTests]$/;" v +MatchValue Include/internal/pycore_ast.h /^ } MatchValue;$/;" m union:_pattern::__anon107 typeref:struct:_pattern::__anon107::__anon108 +MatchValue_fields Python/Python-ast.c /^static const char * const MatchValue_fields[]={$/;" v file: +MatchValue_kind Include/internal/pycore_ast.h /^enum _pattern_kind {MatchValue_kind=1, MatchSingleton_kind=2,$/;" e enum:_pattern_kind +MatchValue_type Include/internal/pycore_ast_state.h /^ PyObject *MatchValue_type;$/;" m struct:ast_state +Match_Type Modules/_sre/sre.c /^ PyTypeObject *Match_Type;$/;" m struct:__anon462 file: +Match_fields Python/Python-ast.c /^static const char * const Match_fields[]={$/;" v file: +Match_kind Include/internal/pycore_ast.h /^ With_kind=14, AsyncWith_kind=15, Match_kind=16,$/;" e enum:_stmt_kind +Match_type Include/internal/pycore_ast_state.h /^ PyObject *Match_type;$/;" m struct:ast_state +Matcher Lib/test/support/__init__.py /^class Matcher(object):$/;" c +MathTests Lib/test/test_math.py /^class MathTests(unittest.TestCase):$/;" c +Max Lib/test/test_builtin.py /^ def Max(a, b):$/;" f function:BuiltinTest.test_map +MaxContextSkip Modules/_decimal/tests/deccheck.py /^MaxContextSkip = ['is_normal', 'is_subnormal', 'logical_invert', 'next_minus',$/;" v +MaxLinesTestCase Lib/test/test_textwrap.py /^class MaxLinesTestCase(BaseTestCase):$/;" c +MaxMixin Lib/test/test_enum.py /^ class MaxMixin:$/;" c function:TestSpecial.test_multiple_mixin +MaximumFileInfoByNameClass Include/internal/pycore_fileutils_windows.h /^ MaximumFileInfoByNameClass$/;" e enum:_FILE_INFO_BY_NAME_CLASS +MaybeEncodingError Lib/multiprocessing/pool.py /^class MaybeEncodingError(Exception):$/;" c +MbaPrereqBootstrapperApplicationCreate Tools/msi/bundle/bootstrap/pythonba.cpp /^extern "C" HRESULT WINAPI MbaPrereqBootstrapperApplicationCreate($/;" f +MbaPrereqBootstrapperApplicationDestroy Tools/msi/bundle/bootstrap/pythonba.cpp /^extern "C" void WINAPI MbaPrereqBootstrapperApplicationDestroy()$/;" f +Mbox Lib/idlelib/idle_test/mock_tk.py /^class Mbox:$/;" c +Mbox_func Lib/idlelib/idle_test/mock_tk.py /^class Mbox_func:$/;" c +Media Lib/msilib/schema.py /^Media = Table('Media')$/;" v +MemFunctionsTest Lib/test/test_ctypes/test_memfunctions.py /^class MemFunctionsTest(unittest.TestCase):$/;" c +MemIO Lib/test/test_memoryio.py /^ class MemIO(self.ioclass):$/;" c function:MemoryTestMixin.test_subclassing.test1 +MemIO Lib/test/test_memoryio.py /^ class MemIO(self.ioclass):$/;" c function:MemoryTestMixin.test_subclassing.test2 +Member Tools/c-analyzer/c_parser/info.py /^class Member(namedtuple('Member', 'name vartype size')):$/;" c +MemberDescriptorType Lib/types.py /^MemberDescriptorType = type(FunctionType.__globals__)$/;" v +MemberReadTest Lib/test/test_tarfile.py /^class MemberReadTest(ReadTest, unittest.TestCase):$/;" c +MemfdCreateTests Lib/test/test_os.py /^class MemfdCreateTests(unittest.TestCase):$/;" c +Memo Parser/pegen.h /^} Memo;$/;" t typeref:struct:_memo +MemoRecord Doc/includes/dbpickle.py /^MemoRecord = namedtuple("MemoRecord", "key, task")$/;" v +MemoryBIOTests Lib/test/test_ssl.py /^class MemoryBIOTests(unittest.TestCase):$/;" c +MemoryError_dealloc Objects/exceptions.c /^MemoryError_dealloc(PyBaseExceptionObject *self)$/;" f file: +MemoryError_new Objects/exceptions.c /^MemoryError_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +MemoryHandler Lib/logging/handlers.py /^class MemoryHandler(BufferingHandler):$/;" c +MemoryHandlerTest Lib/test/test_logging.py /^class MemoryHandlerTest(BaseTest):$/;" c +MemorySeekTestMixin Lib/test/test_memoryio.py /^class MemorySeekTestMixin:$/;" c +MemoryTest Lib/test/test_logging.py /^class MemoryTest(BaseTest):$/;" c +MemoryTestMixin Lib/test/test_memoryio.py /^class MemoryTestMixin:$/;" c +MemoryviewBinASCIITest Lib/test/test_binascii.py /^class MemoryviewBinASCIITest(BinASCIITest):$/;" c +MemoryviewHashRandomizationTests Lib/test/test_hash.py /^ unittest.TestCase):$/;" c +MemviewBytesIO Lib/test/test_io.py /^class MemviewBytesIO(io.BytesIO):$/;" c +Menu Lib/tkinter/__init__.py /^class Menu(Widget):$/;" c +MenuTest Lib/test/test_tkinter/test_widgets.py /^class MenuTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Menubutton Lib/tkinter/__init__.py /^class Menubutton(Widget):$/;" c +Menubutton Lib/tkinter/ttk.py /^class Menubutton(Widget):$/;" c +MenubuttonTest Lib/test/test_tkinter/test_widgets.py /^class MenubuttonTest(AbstractLabelTest, unittest.TestCase):$/;" c +MenubuttonTest Lib/test/test_ttk/test_widgets.py /^class MenubuttonTest(AbstractLabelTest, unittest.TestCase):$/;" c +MergeState Objects/listobject.c /^typedef struct s_MergeState MergeState;$/;" t typeref:struct:s_MergeState file: +MersenneTwister_TestBasicOps Lib/test/test_random.py /^class MersenneTwister_TestBasicOps(TestBasicOps, unittest.TestCase):$/;" c +Message Lib/email/message.py /^class Message:$/;" c +Message Lib/importlib/metadata/_adapters.py /^class Message(email.message.Message):$/;" c +Message Lib/mailbox.py /^class Message(email.message.Message):$/;" c +Message Lib/tkinter/__init__.py /^class Message(Widget):$/;" c +Message Lib/tkinter/messagebox.py /^class Message(Dialog):$/;" c +MessageBeepTest Lib/test/test_winsound.py /^class MessageBeepTest(unittest.TestCase):$/;" c +MessageClass Lib/http/server.py /^ MessageClass = http.client.HTTPMessage$/;" v class:BaseHTTPRequestHandler +MessageDefect Lib/email/errors.py /^class MessageDefect(ValueError):$/;" c +MessageError Lib/email/errors.py /^class MessageError(Exception):$/;" c +MessageID Lib/email/_header_value_parser.py /^class MessageID(MsgID):$/;" c +MessageIDHeader Lib/email/headerregistry.py /^class MessageIDHeader:$/;" c +MessageOutFilter Lib/test/test_asyncio/test_ssl.py /^class MessageOutFilter(logging.Filter):$/;" c +MessageParseError Lib/email/errors.py /^class MessageParseError(MessageError):$/;" c +MessageTest Lib/test/test_tkinter/test_widgets.py /^class MessageTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Meta Lib/test/ann_module.py /^class Meta(type):$/;" c +Meta Lib/test/test_capi/test_exceptions.py /^ class Meta(type):$/;" c function:Test_ErrSetAndRestore.test_set_object +Meta Lib/test/test_class.py /^ class Meta(int):$/;" c function:ClassTests.testClassWithExtCall +Meta Lib/test/test_copy.py /^ class Meta(type):$/;" c function:TestCopy.test_deepcopy_issubclass +Meta Lib/test/test_dataclasses.py /^ class Meta(type):$/;" c function:TestDocString.test_docstring_with_no_signature +Meta Lib/test/test_descr.py /^ class Meta(type):$/;" c function:.test_set_and_no_get +Meta Lib/test/test_descr.py /^ class Meta(type):$/;" c function:.test_slots_special2 +Meta Lib/test/test_exceptions.py /^ class Meta(type):$/;" c function:ExceptionTests.test_badisinstance +Meta Lib/test/test_genericclass.py /^ class Meta(type): pass$/;" c function:TestClassGetitem.test_class_getitem_with_metaclass +Meta Lib/test/test_genericclass.py /^ class Meta(type):$/;" c function:TestClassGetitem.test_class_getitem_metaclass +Meta Lib/test/test_genericclass.py /^ class Meta(type):$/;" c function:TestClassGetitem.test_class_getitem_metaclass_first +Meta Lib/test/test_genericclass.py /^ class Meta(type):$/;" c function:TestMROEntry.test_mro_entry_metaclass +Meta Lib/test/test_inspect.py /^ class Meta(type):$/;" c function:TestClassesAndFunctions.test_classify_DynamicClassAttribute +Meta Lib/test/test_inspect.py /^ class Meta(type):$/;" c function:TestClassesAndFunctions.test_classify_VirtualAttribute +Meta Lib/test/test_inspect.py /^ class Meta(type):$/;" c function:TestClassesAndFunctions.test_classify_metaclass_class_attribute +Meta Lib/test/test_inspect.py /^ class Meta(type):$/;" c function:TestGetattrStatic.test_metaclass_dict_as_property +Meta Lib/test/test_inspect.py /^ class Meta(type):$/;" c function:TestGetattrStatic.test_mro_as_property +Meta Lib/test/test_inspect.py /^ class Meta(type, metaclass=MetaMeta):$/;" c function:TestGetattrStatic.test_metaclass_with_metaclass_with_dict_as_property +Meta Lib/test/test_pydoc.py /^ class Meta(type):$/;" c function:PydocWithMetaClasses.test_DynamicClassAttribute +Meta Lib/test/test_pydoc.py /^ class Meta(type):$/;" c function:PydocWithMetaClasses.test_virtualClassAttributeWithOneMeta +Meta Lib/test/test_subclassinit.py /^ class Meta(type):$/;" c function:Test.test_set_name_init_subclass +Meta Lib/test/test_subclassinit.py /^ class Meta(type):$/;" c function:Test.test_set_name_metaclass +Meta Lib/test/test_super.py /^ class Meta(type):$/;" c function:TestSuper.test___class___delayed +Meta Lib/test/test_super.py /^ class Meta(type):$/;" c function:TestSuper.test___class___mro +Meta Lib/test/test_super.py /^ class Meta(type):$/;" c function:TestSuper.test___class___new +Meta Lib/test/test_super.py /^ class Meta(type):$/;" c function:TestSuper.test___classcell___expected_behaviour +Meta Lib/test/test_super.py /^ class Meta(type):$/;" c function:TestSuper.test___classcell___missing +Meta Lib/test/test_super.py /^ class Meta(type):$/;" c function:TestSuper.test___classcell___overwrite +Meta Lib/test/test_super.py /^ class Meta(type):$/;" c function:TestSuper.test___classcell___wrong_cell +Meta Lib/test/test_types.py /^ class Meta(type):$/;" c class:ClassCreationTests +Meta Lib/test/test_typing.py /^ class Meta(type): ...$/;" c function:GenericTests.test_subscript_meta +Meta Lib/test/test_typing.py /^ class Meta(type):$/;" c function:FinalDecoratorTests.test_dunder_final +Meta1 Lib/test/test_descr.py /^ class Meta1(type, Base):$/;" c function:.test_set_dict +Meta1 Lib/test/test_inspect.py /^ class Meta1(type):$/;" c function:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes +Meta1 Lib/test/test_pydoc.py /^ class Meta1(type):$/;" c function:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta +Meta2 Lib/test/test_descr.py /^ class Meta2(Base, type):$/;" c function:.test_set_dict +Meta2 Lib/test/test_inspect.py /^ class Meta2(type):$/;" c function:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes +Meta2 Lib/test/test_pydoc.py /^ class Meta2(type):$/;" c function:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta +Meta3 Lib/test/test_inspect.py /^ class Meta3(Meta1, Meta2):$/;" c function:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes +Meta3 Lib/test/test_pydoc.py /^ class Meta3(Meta1, Meta2):$/;" c function:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta +MetaA Lib/test/test_functools.py /^ class MetaA(type):$/;" c function:TestSingleDispatch.test_false_meta +MetaList Tools/peg_generator/pegen/grammar.py /^MetaList = List[MetaTuple]$/;" v +MetaMeta Lib/test/test_inspect.py /^ class MetaMeta(type):$/;" c function:TestGetattrStatic.test_metaclass_with_metaclass_with_dict_as_property +MetaP Lib/test/test_inspect.py /^ class MetaP(type):$/;" c function:TestSignatureObject.test_signature_on_builtin_class +MetaPathFinder Lib/importlib/abc.py /^class MetaPathFinder(metaclass=abc.ABCMeta):$/;" c +MetaPathFinder Lib/test/test_importlib/test_abc.py /^class MetaPathFinder(InheritanceTests):$/;" c +MetaPathFinder Lib/test/test_importlib/test_abc.py /^class MetaPathFinder:$/;" c +MetaPathFinderDefaultsTests Lib/test/test_importlib/test_abc.py /^class MetaPathFinderDefaultsTests(ABCTestHarness):$/;" c +MetaPathFinderFindModuleTests Lib/test/test_importlib/test_abc.py /^class MetaPathFinderFindModuleTests:$/;" c +MetaPathSpecFinder Lib/test/test_importlib/test_abc.py /^ class MetaPathSpecFinder(cls.abc.MetaPathFinder):$/;" c function:MetaPathFinderFindModuleTests.finder +MetaTuple Tools/peg_generator/pegen/grammar.py /^MetaTuple = Tuple[str, Optional[str]]$/;" v +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadAttrCache.test_metaclass_del_descriptor_after_optimization +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadAttrCache.test_metaclass_descriptor_shadows_class_attribute +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadAttrCache.test_metaclass_getattribute +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadAttrCache.test_metaclass_set_descriptor_after_optimization +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadMethodCache.test_metaclass_del_descriptor_after_optimization +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadMethodCache.test_metaclass_descriptor_shadows_class_attribute +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadMethodCache.test_metaclass_getattribute +Metaclass Lib/test/test_opcache.py /^ class Metaclass(type):$/;" c function:TestLoadMethodCache.test_metaclass_set_descriptor_after_optimization +MetadataPathFinder Lib/importlib/metadata/__init__.py /^class MetadataPathFinder(DistributionFinder):$/;" c +MetadataVisitor Parser/asdl_c.py /^class MetadataVisitor(asdl.VisitorBase):$/;" c +MetavarTypeHelpFormatter Lib/argparse.py /^class MetavarTypeHelpFormatter(HelpFormatter):$/;" c +Meter Lib/tkinter/tix.py /^class Meter(TixWidget):$/;" c +MethClass_Type Modules/_testcapimodule.c /^static PyTypeObject MethClass_Type = {$/;" v file: +MethInstance_Type Modules/_testcapimodule.c /^static PyTypeObject MethInstance_Type = {$/;" v file: +MethStatic_Type Modules/_testcapimodule.c /^static PyTypeObject MethStatic_Type = {$/;" v file: +MethodDescriptor2Object Modules/_testcapi/vectorcall.c /^} MethodDescriptor2Object;$/;" t typeref:struct:__anon541 file: +MethodDescriptor2_Type Modules/_testcapi/vectorcall.c /^static PyTypeObject MethodDescriptor2_Type = {$/;" v file: +MethodDescriptor2_new Modules/_testcapi/vectorcall.c /^MethodDescriptor2_new(PyTypeObject* type, PyObject* args, PyObject *kw)$/;" f file: +MethodDescriptorBase_Type Modules/_testcapi/vectorcall.c /^static PyTypeObject MethodDescriptorBase_Type = {$/;" v file: +MethodDescriptorDerived_Type Modules/_testcapi/vectorcall.c /^static PyTypeObject MethodDescriptorDerived_Type = {$/;" v file: +MethodDescriptorHeap Lib/test/test_call.py /^ class MethodDescriptorHeap(_testcapi.MethodDescriptorBase):$/;" c function:TestPEP590.test_method_descriptor_flag +MethodDescriptorHeap Lib/test/test_call.py /^ class MethodDescriptorHeap(_testcapi.MethodDescriptorBase):$/;" c function:TestPEP590.test_vectorcall +MethodDescriptorHeap Lib/test/test_call.py /^ class MethodDescriptorHeap(_testcapi.MethodDescriptorBase):$/;" c function:TestPEP590.test_vectorcall_flag +MethodDescriptorNopGet_Type Modules/_testcapi/vectorcall.c /^static PyTypeObject MethodDescriptorNopGet_Type = {$/;" v file: +MethodDescriptorObject Modules/_testcapi/vectorcall.c /^} MethodDescriptorObject;$/;" t typeref:struct:__anon540 file: +MethodDescriptorOverridden Lib/test/test_call.py /^ class MethodDescriptorOverridden(_testcapi.MethodDescriptorBase):$/;" c function:TestPEP590.test_vectorcall +MethodDescriptorSuper Lib/test/test_call.py /^ class MethodDescriptorSuper(SuperBase, _testcapi.MethodDescriptorBase):$/;" c function:TestPEP590.test_vectorcall +MethodDescriptorType Lib/types.py /^MethodDescriptorType = type(str.join)$/;" v +MethodDescriptor_new Modules/_testcapi/vectorcall.c /^MethodDescriptor_new(PyTypeObject* type, PyObject* args, PyObject *kw)$/;" f file: +MethodDescriptor_vectorcall Modules/_testcapi/vectorcall.c /^MethodDescriptor_vectorcall(PyObject *callable, PyObject *const *args,$/;" f file: +MethodHint Lib/test/test_enum.py /^ class MethodHint(Flag):$/;" c function:OldTestFlag.test_boundary +MethodHolder Lib/test/test_typing.py /^class MethodHolder:$/;" c +MethodP Lib/test/test_typing.py /^ class MethodP(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +MethodP Lib/test/test_typing.py /^ class MethodP(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +MethodPG Lib/test/test_typing.py /^ class MethodPG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +MethodPG Lib/test/test_typing.py /^ class MethodPG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +MethodProxy Lib/idlelib/rpc.py /^class MethodProxy:$/;" c +MethodType Lib/types.py /^MethodType = type(_C()._m)$/;" v +MethodWrapper Lib/test/doctest_lineno.py /^class MethodWrapper:$/;" c +MethodWrapperType Lib/types.py /^MethodWrapperType = type(object().__str__)$/;" v +Methods Lib/test/test_typing.py /^ class Methods:$/;" c function:FinalDecoratorTests.test_dunder_final +Middle Lib/test/test_subclassinit.py /^ class Middle:$/;" c function:Test.test_init_subclass_diamond +MiddlingExtendsException Objects/exceptions.c 512;" d file: +MimeParameters Lib/email/_header_value_parser.py /^class MimeParameters(TokenList):$/;" c +MimeTypes Lib/mimetypes.py /^class MimeTypes:$/;" c +MimeTypesTestCase Lib/test/test_mimetypes.py /^class MimeTypesTestCase(unittest.TestCase):$/;" c +MimetypesCliTestCase Lib/test/test_mimetypes.py /^class MimetypesCliTestCase(unittest.TestCase):$/;" c +MinNode Lib/lib2to3/btm_utils.py /^class MinNode(object):$/;" c +Mine Lib/test/test_symtable.py /^ Mine = find_block(top, "Mine")$/;" v class:SymtableTest +Mingw32CCompiler Tools/c-analyzer/distutils/cygwinccompiler.py /^class Mingw32CCompiler(CygwinCCompiler):$/;" c +MiniFieldStorage Lib/cgi.py /^class MiniFieldStorage:$/;" c +MinidomTest Lib/test/test_minidom.py /^class MinidomTest(unittest.TestCase):$/;" c +MinimalAGen Lib/test/test_collections.py /^ class MinimalAGen(AsyncGenerator):$/;" c function:TestOneTrickPonyABCs.test_AsyncGenerator +MinimalCoro Lib/test/test_collections.py /^ class MinimalCoro(Coroutine):$/;" c function:TestOneTrickPonyABCs.test_Awaitable +MinimalCoro Lib/test/test_collections.py /^ class MinimalCoro(Coroutine):$/;" c function:TestOneTrickPonyABCs.test_Coroutine +MinimalGen Lib/test/test_collections.py /^ class MinimalGen(Generator):$/;" c function:TestOneTrickPonyABCs.test_Generator +MinimalIO Lib/test/pickletester.py /^class MinimalIO(object):$/;" c +MinimalMetaclass_spec Modules/_testcapi/heaptype.c /^static PyType_Spec MinimalMetaclass_spec = {$/;" v file: +MinimalType_spec Modules/_testcapi/heaptype.c /^static PyType_Spec MinimalType_spec = {$/;" v file: +Misb Lib/test/test_richcmp.py /^ class Misb:$/;" c function:MiscTest.test_misbehavin +MisbehavedRawIO Lib/test/test_io.py /^class MisbehavedRawIO(MockRawIO):$/;" c +Misc Lib/tkinter/__init__.py /^class Misc:$/;" c +MiscDecorators Lib/test/test_decorators.py /^class MiscDecorators (object):$/;" c +MiscIOTest Lib/test/test_io.py /^class MiscIOTest(unittest.TestCase):$/;" c +MiscNews Doc/tools/extensions/pyspecific.py /^class MiscNews(Directive):$/;" c +MiscReadTest Lib/test/test_tarfile.py /^class MiscReadTest(MiscReadTestBase, unittest.TestCase):$/;" c +MiscReadTestBase Lib/test/test_tarfile.py /^class MiscReadTestBase(CommonReadTest):$/;" c +MiscSourceEncodingTest Lib/test/test_source_encoding.py /^class MiscSourceEncodingTest(unittest.TestCase):$/;" c +MiscTest Lib/test/test_array.py /^class MiscTest(unittest.TestCase):$/;" c +MiscTest Lib/test/test_fileinput.py /^class MiscTest(unittest.TestCase):$/;" c +MiscTest Lib/test/test_richcmp.py /^class MiscTest(unittest.TestCase):$/;" c +MiscTest Lib/test/test_tarfile.py /^class MiscTest(unittest.TestCase):$/;" c +MiscTest Lib/test/test_tkinter/test_images.py /^class MiscTest(AbstractTkTest, unittest.TestCase):$/;" c +MiscTest Lib/test/test_tkinter/test_misc.py /^class MiscTest(AbstractTkTest, unittest.TestCase):$/;" c +MiscTest Lib/test/test_traceback.py /^class MiscTest(unittest.TestCase):$/;" c +MiscTestCase Lib/test/_test_multiprocessing.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_calendar.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_configparser.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_csv.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_enum.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_ftplib.py /^class MiscTestCase(TestCase):$/;" c +MiscTestCase Lib/test/test_gettext.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_httpservers.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_logging.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_mailbox.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_mimetypes.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_optparse.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_pickletools.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_plistlib.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_socketserver.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_threading.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTestCase Lib/test/test_wave.py /^class MiscTestCase(unittest.TestCase):$/;" c +MiscTests Lib/test/test_curses.py /^class MiscTests(unittest.TestCase):$/;" c +MiscTests Lib/test/test_descr.py /^class MiscTests(unittest.TestCase):$/;" c +MiscTests Lib/test/test_embed.py /^class MiscTests(EmbeddingTestsMixin, unittest.TestCase):$/;" c +MiscTests Lib/test/test_nntplib.py /^class MiscTests(unittest.TestCase):$/;" c +MiscTests Lib/test/test_os.py /^class MiscTests(unittest.TestCase):$/;" c +MiscTests Lib/test/test_subprocess.py /^class MiscTests(unittest.TestCase):$/;" c +MiscTests Lib/test/test_urllib2.py /^class MiscTests(unittest.TestCase):$/;" c +MiscTests Lib/test/test_xml_etree_c.py /^class MiscTests(unittest.TestCase):$/;" c +MiscTracebackCases Lib/test/test_traceback.py /^class MiscTracebackCases(unittest.TestCase):$/;" c +MiscellaneousTestCase Lib/test/test_lzma.py /^class MiscellaneousTestCase(unittest.TestCase):$/;" c +MisplacedEnvelopeHeaderDefect Lib/email/errors.py /^class MisplacedEnvelopeHeaderDefect(MessageDefect):$/;" c +Missing Lib/test/test_enum.py /^ class Missing(Enum):$/;" c class:TestVerify.test_continuous.Manual +Missing Lib/test/test_enum.py /^ class Missing:$/;" c function:TestStdLib.test_test_simple_enum +Missing Lib/test/test_ordered_dict.py /^ class Missing(OrderedDict):$/;" c function:OrderedDictTests.test_pop +Missing Lib/test/test_ordered_dict.py /^ class Missing(OrderedDict):$/;" c function:OrderedDictTests.test_setdefault +MissingAexit Lib/test/test_contextlib_async.py /^ class MissingAexit(AbstractAsyncContextManager):$/;" c function:TestAbstractAsyncContextManager.test_exit_is_abstract +MissingBytes Lib/test/test_long.py /^ class MissingBytes: ...$/;" c function:LongTest.test_from_bytes +MissingDependenciesError Tools/c-analyzer/c_parser/preprocessor/errors.py /^class MissingDependenciesError(PreprocessorFailure):$/;" c +MissingDependency Tools/wasm/wasm_build.py /^class MissingDependency(ConditionError):$/;" c +MissingExit Lib/test/test_contextlib.py /^ class MissingExit(AbstractContextManager):$/;" c function:TestAbstractContextManager.test_exit_is_abstract +MissingFile Lib/test/test_tomllib/test_data.py /^class MissingFile:$/;" c +MissingFinalize Lib/test/test_sqlite3/test_userfunctions.py /^ class MissingFinalize:$/;" c function:WindowFunctionTests.test_win_missing_finalize +MissingHeaderBodySeparatorDefect Lib/email/errors.py /^class MissingHeaderBodySeparatorDefect(MessageDefect):$/;" c +MissingInverse Lib/test/test_sqlite3/test_userfunctions.py /^ class MissingInverse:$/;" c function:WindowFunctionTests.test_win_missing_method +MissingMethods Lib/test/test_int.py /^ class MissingMethods(object):$/;" c function:IntTestCases.test_intconversion +MissingSectionHeaderError Lib/configparser.py /^class MissingSectionHeaderError(ParsingError):$/;" c +MissingStep Lib/test/test_sqlite3/test_userfunctions.py /^ class MissingStep:$/;" c function:WindowFunctionTests.test_win_missing_method +MissingSysPath Lib/test/test_importlib/test_main.py /^class MissingSysPath(fixtures.OnSysPath, unittest.TestCase):$/;" c +MissingValue Lib/test/test_sqlite3/test_userfunctions.py /^ class MissingValue:$/;" c function:WindowFunctionTests.test_win_missing_method +MixInCheckStateHandling Lib/test/test_codecs.py /^class MixInCheckStateHandling:$/;" c +MixedChild Lib/test/test_typing.py /^ class MixedChild(Child, OtherChild, Parent):$/;" c function:TypedDictTests.test_orig_bases +MixedGenericChild Lib/test/test_typing.py /^ class MixedGenericChild(GenericChild, OtherGenericChild, GenericParent[float]):$/;" c function:TypedDictTests.test_orig_bases +MixedMembersProto1 Lib/test/test_typing.py /^ class MixedMembersProto1(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +MixedMembersProto2 Lib/test/test_typing.py /^ class MixedMembersProto2(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +Mixin Lib/test/test_unittest/test_skipping.py /^ class Mixin:$/;" c function:Test_TestSkipping.test_skip_non_unittest_class +Mixin1 Lib/test/test_random.py /^ class Mixin1:$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +Mixin2 Lib/test/test_random.py /^ class Mixin2:$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +MixinStrUnicodeTest Lib/test/string_tests.py /^class MixinStrUnicodeTest:$/;" c +MixinStrUnicodeUserStringTest Lib/test/string_tests.py /^class MixinStrUnicodeUserStringTest:$/;" c +MmapClosedByIntContext Lib/test/test_mmap.py /^ class MmapClosedByIntContext:$/;" c function:MmapTests.test_mmap_closed_by_int_scenarios +MmapTests Lib/test/test_mmap.py /^class MmapTests(unittest.TestCase):$/;" c +Mock Lib/idlelib/idle_test/test_searchengine.py /^class Mock:$/;" c +Mock Lib/test/test_typing.py /^ class Mock(Any): pass$/;" c function:AnyTests.test_can_subclass +Mock Lib/unittest/mock.py /^class Mock(CallableMixin, NonCallableMock):$/;" c +MockCallback Lib/test/test_asyncio/utils.py /^def MockCallback(**kwargs):$/;" f +MockContextManager Lib/test/test_with.py /^class MockContextManager(_GeneratorContextManager):$/;" c +MockCookieJar Lib/test/test_urllib2.py /^class MockCookieJar:$/;" c +MockCrazyHash Lib/test/test_hmac.py /^ class MockCrazyHash(object):$/;" c function:TestVectorsTestCase.test_legacy_block_size_warnings +MockFTPWrapper Lib/test/test_urllib2.py /^ class MockFTPWrapper:$/;" c function:HandlerTests.test_ftp +MockFile Lib/test/mock_socket.py /^class MockFile:$/;" c +MockFile Lib/test/test_urllib2.py /^class MockFile:$/;" c +MockFile Lib/test/test_xml_etree_c.py /^ class MockFile:$/;" c function:MiscTests.test_uninitialized_parser +MockFileIO Lib/test/test_io.py /^class MockFileIO:$/;" c +MockFileInput Lib/test/test_fileinput.py /^class MockFileInput:$/;" c +MockGetPathTests Lib/test/test_getpath.py /^class MockGetPathTests(unittest.TestCase):$/;" c +MockHTTPClass Lib/test/test_urllib2.py /^class MockHTTPClass:$/;" c +MockHTTPHandler Lib/test/test_urllib2.py /^class MockHTTPHandler(urllib.request.HTTPHandler):$/;" c +MockHTTPHandlerCheckAuth Lib/test/test_urllib2.py /^class MockHTTPHandlerCheckAuth(urllib.request.BaseHandler):$/;" c +MockHTTPHandlerRedirect Lib/test/test_urllib2.py /^class MockHTTPHandlerRedirect(urllib.request.BaseHandler):$/;" c +MockHTTPResponse Lib/test/test_urllib2.py /^class MockHTTPResponse(io.IOBase):$/;" c +MockHTTPSHandler Lib/test/test_urllib2.py /^ class MockHTTPSHandler(urllib.request.HTTPSHandler):$/;" c class:MockHTTPHandlerRedirect +MockHandler Lib/test/test_urllib2.py /^class MockHandler:$/;" c +MockHandler Lib/test/test_wsgiref.py /^class MockHandler(WSGIRequestHandler):$/;" c +MockHandlerSubclass Lib/test/test_urllib2.py /^ class MockHandlerSubclass(MockHandler):$/;" c function:OpenerDirectorTests.test_handler_order +MockHandlerSubclass Lib/test/test_urllib2.py /^ class MockHandlerSubclass(MockHandler):$/;" c function:add_ordered_mock_handlers +MockHeaders Lib/test/test_urllib2.py /^class MockHeaders(dict):$/;" c +MockIO Lib/test/test_io.py /^ class MockIO(self.MockRawIO):$/;" c function:CTextIOWrapperTest.test_internal_buffer_size +MockInstanceOf Lib/test/test_asyncio/utils.py /^class MockInstanceOf:$/;" c +MockNTNamespace Lib/test/test_getpath.py /^class MockNTNamespace(dict):$/;" c +MockNested Lib/test/test_with.py /^class MockNested(Nested):$/;" c +MockNonBlockWriterIO Lib/test/test_io.py /^class MockNonBlockWriterIO:$/;" c +MockOpener Lib/test/test_urllib2.py /^class MockOpener:$/;" c +MockPasswordManager Lib/test/test_urllib2.py /^class MockPasswordManager:$/;" c +MockPattern Lib/test/test_asyncio/utils.py /^class MockPattern(str):$/;" c +MockPosixNamespace Lib/test/test_getpath.py /^class MockPosixNamespace(dict):$/;" c +MockRaceConditionHandler Lib/test/test_logging.py /^ class MockRaceConditionHandler:$/;" c function:MemoryHandlerTest.test_race_between_set_target_and_flush +MockRawIO Lib/test/test_io.py /^class MockRawIO(MockRawIOWithoutRead):$/;" c +MockRawIOWithoutRead Lib/test/test_io.py /^class MockRawIOWithoutRead:$/;" c +MockResource Lib/test/test_with.py /^class MockResource(object):$/;" c +MockResponse Lib/test/test_urllib2.py /^class MockResponse(io.StringIO):$/;" c +MockResultClass Lib/test/test_unittest/test_runner.py /^ def MockResultClass(*args):$/;" f function:Test_TextTestRunner.test_resultclass +MockSelector Lib/test/test_telnetlib.py /^class MockSelector(selectors.BaseSelector):$/;" c +MockServer Lib/test/test_wsgiref.py /^class MockServer(WSGIServer):$/;" c +MockShell Lib/idlelib/idle_test/test_run.py /^class MockShell:$/;" c +MockSocket Lib/test/mock_socket.py /^class MockSocket:$/;" c +MockSocket Lib/test/test_nntplib.py /^ class MockSocket:$/;" c function:MockSocketTests.check_constructor_error_conditions +MockSocket Lib/test/test_socket.py /^ class MockSocket(socket.socket):$/;" c class:NetworkConnectionNoServer +MockSocketTests Lib/test/test_nntplib.py /^class MockSocketTests(unittest.TestCase):$/;" c +MockSomething Lib/test/test_typing.py /^ class MockSomething(Something, Mock): pass$/;" c function:AnyTests.test_can_subclass +MockSslTests Lib/test/test_nntplib.py /^class MockSslTests(MockSocketTests):$/;" c +MockStateSpec Lib/test/test_ttk_textonly.py /^class MockStateSpec(object):$/;" c +MockSub Lib/test/test_unittest/testmock/testcallable.py /^ class MockSub(Mock):$/;" c function:TestCallable.test_subclasses +MockSub Lib/test/test_unittest/testmock/testpatch.py /^ class MockSub(Mock):$/;" c function:PatchTest.test_new_callable_inherit_for_mocks +MockTclObj Lib/test/test_ttk_textonly.py /^class MockTclObj(object):$/;" c +MockTest Lib/test/test_unittest/testmock/testmock.py /^class MockTest(unittest.TestCase):$/;" c +MockTextTest Lib/idlelib/idle_test/test_text.py /^class MockTextTest(TextTest, unittest.TestCase):$/;" c +MockTkApp Lib/test/test_ttk_textonly.py /^class MockTkApp:$/;" c +MockTraceback Lib/test/test_unittest/test_result.py /^class MockTraceback(object):$/;" c +MockUnseekableIO Lib/test/test_io.py /^class MockUnseekableIO:$/;" c +MockWinreg Lib/test/test_getpath.py /^class MockWinreg:$/;" c +MockedNNTPTestsMixin Lib/test/test_nntplib.py /^class MockedNNTPTestsMixin:$/;" c +MockedNNTPWithReaderModeMixin Lib/test/test_nntplib.py /^class MockedNNTPWithReaderModeMixin(MockedNNTPTestsMixin):$/;" c +Mod Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" e enum:_operator +ModDict Modules/_cursesmodule.c /^static PyObject *ModDict;$/;" v file: +Mod_singleton Include/internal/pycore_ast_state.h /^ PyObject *Mod_singleton;$/;" m struct:ast_state +Mod_type Include/internal/pycore_ast_state.h /^ PyObject *Mod_type;$/;" m struct:ast_state +ModeSwitchingNNTPv2Handler Lib/test/test_nntplib.py /^class ModeSwitchingNNTPv2Handler(NNTPv2Handler):$/;" c +Model Lib/test/test_types.py /^ class Model(metaclass=ModelBase):$/;" c function:ClassCreationTests.test_metaclass_new_error +ModelBase Lib/test/test_types.py /^ class ModelBase(type):$/;" c function:ClassCreationTests.test_metaclass_new_error +ModelBase Lib/test/test_typing.py /^ class ModelBase(metaclass=Decorated): ...$/;" c function:DataclassTransformTests.test_metaclass +ModelBase Lib/test/test_typing.py /^ class ModelBase:$/;" c function:DataclassTransformTests.test_base_class +ModelMeta Lib/test/test_typing.py /^ class ModelMeta(type):$/;" c function:DataclassTransformTests.test_metaclass +ModifiedColorDelegator Lib/idlelib/pyshell.py /^class ModifiedColorDelegator(ColorDelegator):$/;" c +ModifiedInterpreter Lib/idlelib/pyshell.py /^class ModifiedInterpreter(InteractiveInterpreter):$/;" c +ModifiedUndoDelegator Lib/idlelib/pyshell.py /^class ModifiedUndoDelegator(UndoDelegator):$/;" c +ModifyPage_Show Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void ModifyPage_Show() {$/;" f class:PythonBootstrapperApplication file: +Module Include/internal/pycore_ast.h /^ } Module;$/;" m union:_mod::__anon46 typeref:struct:_mod::__anon46::__anon47 +Module Lib/modulefinder.py /^class Module:$/;" c +Module Lib/test/test_descr.py /^ class Module(types.ModuleType, str):$/;" c class:ClassPropertiesAndMethods.test_module_subclasses.MM +Module Lib/test/test_unittest/test_discovery.py /^ class Module(object):$/;" c function:TestDiscovery.setup_module_clash +Module Lib/test/test_unittest/test_discovery.py /^ class Module(object):$/;" c function:TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests +Module Lib/test/test_unittest/test_discovery.py /^ class Module(object):$/;" c function:TestDiscovery.test_find_tests_customize_via_package_pattern +Module Lib/test/test_unittest/test_discovery.py /^ class Module(object):$/;" c function:TestDiscovery.test_find_tests_default_calls_package_load_tests +Module Lib/test/test_unittest/test_discovery.py /^ class Module(object):$/;" c function:TestDiscovery.test_find_tests_with_package +Module Lib/test/test_unittest/test_result.py /^ class Module(object):$/;" c function:TestOutputBuffering.testBufferDoModuleCleanups +Module Lib/test/test_unittest/test_result.py /^ class Module(object):$/;" c function:TestOutputBuffering.testBufferSetUpModule +Module Lib/test/test_unittest/test_result.py /^ class Module(object):$/;" c function:TestOutputBuffering.testBufferSetUpModule_DoModuleCleanups +Module Lib/test/test_unittest/test_result.py /^ class Module(object):$/;" c function:TestOutputBuffering.testBufferTearDownModule +Module Lib/test/test_unittest/test_result.py /^ class Module(object):$/;" c function:TestOutputBuffering.testBufferTearDownModule_DoModuleCleanups +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_addModuleCleanup_arg_errors +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_add_and_do_ModuleCleanup +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_debug_module_cleanUp_when_teardown_exception +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_debug_module_executes_cleanUp +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_doModuleCleanup_with_errors_in_addModuleCleanup +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_module_cleanUp_with_multiple_classes +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_run_module_cleanUp +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_run_module_cleanUp_when_teardown_exception +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_run_module_cleanUp_without_teardown +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_with_errors_in_addClassCleanup +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_with_errors_in_addCleanup +Module Lib/test/test_unittest/test_runner.py /^ class Module(object):$/;" c function:TestModuleCleanUp.test_with_errors_in_addModuleCleanup_and_setUps +Module Lib/test/test_unittest/test_setups.py /^ class Module(object):$/;" c function:TestSetups.test_error_in_setup_module +Module Lib/test/test_unittest/test_setups.py /^ class Module(object):$/;" c function:TestSetups.test_error_in_teardown_module +Module Lib/test/test_unittest/test_setups.py /^ class Module(object):$/;" c function:TestSetups.test_setup_module +Module Lib/test/test_unittest/test_setups.py /^ class Module(object):$/;" c function:TestSetups.test_skiptest_in_setupmodule +Module Lib/test/test_unittest/test_setups.py /^ class Module(object):$/;" c function:TestSetups.test_suite_debug_executes_setups_and_teardowns +Module Lib/test/test_unittest/test_setups.py /^ class Module(object):$/;" c function:TestSetups.test_suite_debug_propagates_exceptions +Module Lib/test/test_unittest/test_setups.py /^ class Module(object):$/;" c function:TestSetups.test_teardown_module +Module Lib/test/test_unittest/test_suite.py /^ class Module(object):$/;" c function:Test_TestSuite.test_basetestsuite +Module Parser/asdl.py /^class Module(AST):$/;" c +Module Tools/clinic/clinic.py /^class Module:$/;" c +Module1 Lib/test/test_descr.py /^ class Module1(types.ModuleType, Base):$/;" c function:.test_set_dict +Module1 Lib/test/test_unittest/test_runner.py /^ class Module1(object):$/;" c function:TestModuleCleanUp.test_run_multiple_module_cleanUp +Module1 Lib/test/test_unittest/test_setups.py /^ class Module1(object):$/;" c function:TestSetups.test_setup_teardown_order_with_pathological_suite +Module2 Lib/test/test_descr.py /^ class Module2(Base, types.ModuleType):$/;" c function:.test_set_dict +Module2 Lib/test/test_unittest/test_runner.py /^ class Module2(object):$/;" c function:TestModuleCleanUp.test_run_multiple_module_cleanUp +Module2 Lib/test/test_unittest/test_setups.py /^ class Module2(object):$/;" c function:TestSetups.test_setup_teardown_order_with_pathological_suite +ModuleAndNamespacePackageInSameDir Lib/test/test_importlib/test_namespace_pkgs.py /^class ModuleAndNamespacePackageInSameDir(NamespacePackageTest):$/;" c +ModuleBlock Include/internal/pycore_symtable.h /^ FunctionBlock, ClassBlock, ModuleBlock,$/;" e enum:_block_type +ModuleBrowser Lib/idlelib/browser.py /^class ModuleBrowser:$/;" c +ModuleBrowserTest Lib/idlelib/idle_test/test_browser.py /^class ModuleBrowserTest(unittest.TestCase):$/;" c +ModuleBrowserTreeItem Lib/idlelib/browser.py /^class ModuleBrowserTreeItem(TreeItem):$/;" c +ModuleBrowserTreeItemTest Lib/idlelib/idle_test/test_browser.py /^class ModuleBrowserTreeItemTest(unittest.TestCase):$/;" c +ModuleChecker Tools/build/check_extension_modules.py /^class ModuleChecker:$/;" c +ModuleDict Tools/clinic/clinic.py /^ModuleDict = dict[str, "Module"]$/;" v +ModuleFinder Lib/modulefinder.py /^class ModuleFinder:$/;" c +ModuleFinderTest Lib/test/test_modulefinder.py /^class ModuleFinderTest(unittest.TestCase):$/;" c +ModuleFromSpecTests Lib/test/test_importlib/test_util.py /^class ModuleFromSpecTests:$/;" c +ModuleFunctionTest Lib/idlelib/idle_test/test_outwin.py /^class ModuleFunctionTest(unittest.TestCase):$/;" c +ModuleInfo Lib/pkgutil.py /^ModuleInfo = namedtuple('ModuleInfo', 'module_finder name ispkg')$/;" v +ModuleInfo Tools/build/check_extension_modules.py /^ModuleInfo = collections.namedtuple("ModuleInfo", "name state")$/;" v +ModuleLevelMiscTest Lib/test/test_logging.py /^class ModuleLevelMiscTest(BaseTest):$/;" c +ModuleLockAsRLockTests Lib/test/test_importlib/test_locks.py /^class ModuleLockAsRLockTests:$/;" c +ModuleName Lib/idlelib/query.py /^class ModuleName(Query):$/;" c +ModuleNameTest Lib/idlelib/idle_test/test_query.py /^class ModuleNameTest(unittest.TestCase):$/;" c +ModuleScanner Lib/pydoc.py /^class ModuleScanner:$/;" c +ModuleSnapshot Lib/test/test_import/__init__.py /^class ModuleSnapshot(types.SimpleNamespace):$/;" c +ModuleSpec Lib/importlib/_bootstrap.py /^class ModuleSpec:$/;" c +ModuleSpecMethodsTests Lib/test/test_importlib/test_spec.py /^class ModuleSpecMethodsTests:$/;" c +ModuleSpecTests Lib/test/test_importlib/test_spec.py /^class ModuleSpecTests:$/;" c +ModuleState Tools/build/check_extension_modules.py /^class ModuleState(enum.Enum):$/;" c +ModuleStateTests Lib/test/test_ast.py /^class ModuleStateTests(unittest.TestCase):$/;" c +ModuleTest Lib/test/test_string.py /^class ModuleTest(unittest.TestCase):$/;" c +ModuleTest Lib/test/test_xml_etree.py /^class ModuleTest(unittest.TestCase):$/;" c +ModuleTestCase Lib/test/test_weakref.py /^class ModuleTestCase(unittest.TestCase):$/;" c +ModuleTests Lib/test/test__xxsubinterpreters.py /^class ModuleTests(TestBase):$/;" c +ModuleTests Lib/test/test_module/__init__.py /^class ModuleTests(unittest.TestCase):$/;" c +ModuleTests Lib/test/test_sqlite3/test_dbapi.py /^class ModuleTests(unittest.TestCase):$/;" c +ModuleType Lib/runpy.py /^ModuleType = type(sys)$/;" v +ModuleType Lib/test/test_module/__init__.py /^ModuleType = type(sys)$/;" v +ModuleType Lib/types.py /^ModuleType = type(sys)$/;" v +ModuleWithSlots Lib/test/test_module/__init__.py /^ class ModuleWithSlots(ModuleType):$/;" c function:ModuleTests.test_subclass_with_slots +Module_fields Python/Python-ast.c /^static const char * const Module_fields[]={$/;" v file: +Module_kind Include/internal/pycore_ast.h /^enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,$/;" e enum:_mod_kind +Module_type Include/internal/pycore_ast_state.h /^ PyObject *Module_type;$/;" m struct:ast_state +ModulenameGuiTest Lib/idlelib/idle_test/test_query.py /^class ModulenameGuiTest(unittest.TestCase):$/;" c +ModulesFilesTests Lib/test/test_importlib/resources/test_files.py /^class ModulesFilesTests(SiteDir, unittest.TestCase):$/;" c +Mon2num Lib/imaplib.py /^Mon2num = {s.encode():n+1 for n, s in enumerate(Months[1:])}$/;" v +MondayTestCase Lib/test/test_calendar.py /^class MondayTestCase(MonthCalendarTestCase):$/;" c +Monitor Tools/clinic/cpp.py /^class Monitor:$/;" c +MonitoringBasicTest Lib/test/test_monitoring.py /^class MonitoringBasicTest(unittest.TestCase):$/;" c +MonitoringCountTest Lib/test/test_monitoring.py /^class MonitoringCountTest(MonitoringTestBase, unittest.TestCase):$/;" c +MonitoringEventsBase Lib/test/test_monitoring.py /^class MonitoringEventsBase(MonitoringTestBase):$/;" c +MonitoringEventsTest Lib/test/test_monitoring.py /^class MonitoringEventsTest(MonitoringEventsBase, unittest.TestCase):$/;" c +MonitoringTestBase Lib/test/test_monitoring.py /^class MonitoringTestBase:$/;" c +Monochrome Lib/test/test_enum.py /^ class Monochrome(Enum):$/;" c function:TestSpecial.test_mixed_enum_in_call_2 +Monochrome Lib/test/test_enum.py /^ class Monochrome(Enum):$/;" c function:TestSpecial.test_wrong_enum_in_call +Monochrome Lib/test/test_enum.py /^ class Monochrome(IntEnum):$/;" c function:TestSpecial.test_mixed_enum_in_call_1 +Monochrome Lib/test/test_enum.py /^ class Monochrome(IntEnum):$/;" c function:TestSpecial.test_wrong_enum_in_mixed_call +Month Lib/calendar.py /^class Month(IntEnum):$/;" c +MonthCalendarTestCase Lib/test/test_calendar.py /^class MonthCalendarTestCase(unittest.TestCase):$/;" c +MonthRangeTestCase Lib/test/test_calendar.py /^class MonthRangeTestCase(unittest.TestCase):$/;" c +Months Lib/imaplib.py /^Months = ' Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' ')$/;" v +MontoringDisableAndRestartTest Lib/test/test_monitoring.py /^class MontoringDisableAndRestartTest(MonitoringTestBase, unittest.TestCase):$/;" c +MoreColor Lib/test/test_enum.py /^ class MoreColor(Color):$/;" c class:TestSpecial.test_extending.Color +MoreColor Lib/test/test_enum.py /^ class MoreColor(Color):$/;" c class:TestSpecial.test_extending2.Color +MoreColor Lib/test/test_enum.py /^ class MoreColor(Color):$/;" c function:TestSpecial.test_extending3 +Morsel Lib/http/cookies.py /^class Morsel(dict):$/;" c +MorselTests Lib/test/test_http_cookies.py /^class MorselTests(unittest.TestCase):$/;" c +Motion Lib/test/test_tkinter/test_misc.py /^ Motion = '6'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Motion Lib/tkinter/__init__.py /^ Motion = '6'$/;" v class:EventType +MountPointReparseBuffer Modules/winreparse.h /^ } MountPointReparseBuffer;$/;" m union:__anon316::__anon317 typeref:struct:__anon316::__anon317::__anon319 +Mountain Doc/includes/tzinfo_examples.py /^Mountain = USTimeZone(-7, "Mountain", "MST", "MDT")$/;" v +Mountain Lib/test/datetimetester.py /^Mountain = USTimeZone(-7, "Mountain", "MST", "MDT")$/;" v +Mountain2 Lib/test/datetimetester.py /^Mountain2 = USTimeZone2(-7, "Mountain2", "MST", "MDT")$/;" v +MouseWheel Lib/test/test_tkinter/test_misc.py /^ MouseWheel = '38'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +MouseWheel Lib/tkinter/__init__.py /^ MouseWheel = '38'$/;" v class:EventType +MoveFile Lib/msilib/schema.py /^MoveFile = Table('MoveFile')$/;" v +Mozilla Lib/webbrowser.py /^class Mozilla(UnixBrowser):$/;" c +MozillaCommandTest Lib/test/test_webbrowser.py /^class MozillaCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +MozillaCookieJar Lib/http/cookiejar.py /^class MozillaCookieJar(FileCookieJar):$/;" c +MroTest Lib/test/test_descr.py /^class MroTest(unittest.TestCase):$/;" c +MsgID Lib/email/_header_value_parser.py /^class MsgID(TokenList):$/;" c +MsgidsThread Lib/test/test_email/test_email.py /^ class MsgidsThread(Thread):$/;" c function:.test_make_msgid_collisions +MsiAssembly Lib/msilib/schema.py /^MsiAssembly = Table('MsiAssembly')$/;" v +MsiAssemblyName Lib/msilib/schema.py /^MsiAssemblyName = Table('MsiAssemblyName')$/;" v +MsiDatabaseTestCase Lib/test/test_msilib.py /^class MsiDatabaseTestCase(unittest.TestCase):$/;" c +MsiDigitalCertificate Lib/msilib/schema.py /^MsiDigitalCertificate = Table('MsiDigitalCertificate')$/;" v +MsiDigitalSignature Lib/msilib/schema.py /^MsiDigitalSignature = Table('MsiDigitalSignature')$/;" v +MsiFileHash Lib/msilib/schema.py /^MsiFileHash = Table('MsiFileHash')$/;" v +MsiPatchHeaders Lib/msilib/schema.py /^MsiPatchHeaders = Table('MsiPatchHeaders')$/;" v +Mult Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" e enum:_operator +Mult_singleton Include/internal/pycore_ast_state.h /^ PyObject *Mult_singleton;$/;" m struct:ast_state +Mult_type Include/internal/pycore_ast_state.h /^ PyObject *Mult_type;$/;" m struct:ast_state +Multi Lib/test/test_unittest/testmock/testcallable.py /^ class Multi(SomeClass, Sub):$/;" c function:TestCallable.test_patch_spec_callable_class +MultiCall Lib/idlelib/multicall.py /^ class MultiCall (widget):$/;" c function:MultiCallCreator +MultiCall Lib/xmlrpc/client.py /^class MultiCall:$/;" c +MultiCallCreator Lib/idlelib/multicall.py /^def MultiCallCreator(widget):$/;" f +MultiCallIterator Lib/xmlrpc/client.py /^class MultiCallIterator:$/;" c +MultiCallTest Lib/idlelib/idle_test/test_multicall.py /^class MultiCallTest(unittest.TestCase):$/;" c +MultiLoopChildWatcher Lib/asyncio/unix_events.py /^class MultiLoopChildWatcher(AbstractChildWatcher):$/;" c +MultiLoopChildWatcherTests Lib/test/test_asyncio/test_subprocess.py /^ class MultiLoopChildWatcherTests(test_utils.TestCase):$/;" c class:SubprocessMixin +MultiPathServerTestCase Lib/test/test_xmlrpc.py /^class MultiPathServerTestCase(BaseServerTestCase):$/;" c +MultiPathXMLRPCServer Lib/xmlrpc/server.py /^class MultiPathXMLRPCServer(SimpleXMLRPCServer):$/;" c +MultiPhaseExtensionModuleTests Lib/test/test_importlib/extension/test_loader.py /^class MultiPhaseExtensionModuleTests(abc.LoaderTests):$/;" c +MultiProcessingCmdLineMixin Lib/test/test_multiprocessing_main_handling.py /^class MultiProcessingCmdLineMixin():$/;" c +MultiStatusBar Lib/idlelib/statusbar.py /^class MultiStatusBar(Frame):$/;" c +MultibyteCodec Modules/cjkcodecs/multibytecodec.h /^} MultibyteCodec;$/;" t typeref:struct:_multibyte_codec +MultibyteCodecObject Modules/cjkcodecs/multibytecodec.h /^} MultibyteCodecObject;$/;" t typeref:struct:__anon325 +MultibyteCodec_Check Modules/cjkcodecs/multibytecodec.h 73;" d +MultibyteCodec_State Modules/cjkcodecs/multibytecodec.h /^} MultibyteCodec_State;$/;" t typeref:struct:__anon324 +MultibyteDecodeBuffer Modules/cjkcodecs/multibytecodec.c /^} MultibyteDecodeBuffer;$/;" t typeref:struct:__anon323 file: +MultibyteEncodeBuffer Modules/cjkcodecs/multibytecodec.c /^} MultibyteEncodeBuffer;$/;" t typeref:struct:__anon322 file: +MultibyteIncrementalDecoderObject Modules/cjkcodecs/multibytecodec.h /^} MultibyteIncrementalDecoderObject;$/;" t typeref:struct:__anon330 +MultibyteIncrementalEncoderObject Modules/cjkcodecs/multibytecodec.h /^} MultibyteIncrementalEncoderObject;$/;" t typeref:struct:__anon329 +MultibyteStatefulCodecContext Modules/cjkcodecs/multibytecodec.h /^} MultibyteStatefulCodecContext;$/;" t typeref:struct:__anon326 +MultibyteStatefulDecoderContext Modules/cjkcodecs/multibytecodec.h /^} MultibyteStatefulDecoderContext;$/;" t typeref:struct:__anon328 +MultibyteStatefulEncoderContext Modules/cjkcodecs/multibytecodec.h /^} MultibyteStatefulEncoderContext;$/;" t typeref:struct:__anon327 +MultibyteStreamReaderObject Modules/cjkcodecs/multibytecodec.h /^} MultibyteStreamReaderObject;$/;" t typeref:struct:__anon331 +MultibyteStreamWriterObject Modules/cjkcodecs/multibytecodec.h /^} MultibyteStreamWriterObject;$/;" t typeref:struct:__anon332 +MultilineValuesTestCase Lib/test/test_configparser.py /^class MultilineValuesTestCase(BasicTestCase, unittest.TestCase):$/;" c +MultipartConversionError Lib/email/errors.py /^class MultipartConversionError(MessageError, TypeError):$/;" c +MultipartInvariantViolationDefect Lib/email/errors.py /^class MultipartInvariantViolationDefect(MessageDefect):$/;" c +MultipleGenericBases Lib/test/test_typing.py /^ class MultipleGenericBases(GenericParent[int], GenericParent[float]):$/;" c function:TypedDictTests.test_orig_bases +MultipleMonitorsTest Lib/test/test_monitoring.py /^class MultipleMonitorsTest(MonitoringTestBase, unittest.TestCase):$/;" c +MultiplexedPath Lib/importlib/resources/readers.py /^class MultiplexedPath(abc.Traversable):$/;" c +MultiplexedPathTest Lib/test/test_importlib/resources/test_reader.py /^class MultiplexedPathTest(unittest.TestCase):$/;" c +Multiplier Lib/test/test_turtle.py /^class Multiplier:$/;" c +MultiprocessIterator Lib/test/libregrtest/runtest_mp.py /^class MultiprocessIterator:$/;" c +MultiprocessRefactoringTool Lib/lib2to3/refactor.py /^class MultiprocessRefactoringTool(RefactoringTool):$/;" c +MultiprocessResult Lib/test/libregrtest/runtest_mp.py /^class MultiprocessResult(NamedTuple):$/;" c +MultiprocessTestRunner Lib/test/libregrtest/runtest_mp.py /^class MultiprocessTestRunner:$/;" c +MultiprocessTests Lib/test/test_sqlite3/test_dbapi.py /^class MultiprocessTests(unittest.TestCase):$/;" c +MultiprocessingUnsupported Lib/lib2to3/refactor.py /^class MultiprocessingUnsupported(Exception):$/;" c +MustReturnMV Lib/test/test_buffer.py /^ class MustReturnMV:$/;" c function:TestPythonBufferProtocol.test_bad_buffer_method +Mutable Lib/test/test_dataclasses.py /^ class Mutable:$/;" c function:TestCase.test_deliberately_mutable_defaults +MutableBase Lib/test/test_capi/test_misc.py /^ class MutableBase:$/;" c function:CAPITest.test_immutable_type_with_mutable_base +MutableMapping Lib/_collections_abc.py /^class MutableMapping(Mapping):$/;" c +MutableMapping Lib/typing.py /^MutableMapping = _alias(collections.abc.MutableMapping, 2)$/;" v +MutableSequence Lib/_collections_abc.py /^class MutableSequence(Sequence):$/;" c +MutableSequence Lib/typing.py /^MutableSequence = _alias(collections.abc.MutableSequence, 1)$/;" v +MutableSequenceSubclass Lib/test/test_collections.py /^ class MutableSequenceSubclass(MutableSequence):$/;" c function:TestCollectionABCs.test_MutableSequence_mixins +MutableSet Lib/_collections_abc.py /^class MutableSet(Set):$/;" c +MutableSet Lib/typing.py /^MutableSet = _alias(collections.abc.MutableSet, 1)$/;" v +MutateCmp Lib/test/test_deque.py /^class MutateCmp:$/;" c +MutatesYourDict Lib/test/test_functools.py /^ class MutatesYourDict(object):$/;" c function:TestPartialC.test_keystr_replaces_value +Mutating Lib/test/test_dict.py /^ class Mutating:$/;" c function:DictTest.check_reentrant_insertion +MutatingCompare Lib/test/test_deque.py /^ class MutatingCompare:$/;" c function:TestBasic.test_count +MutatingElementPath Lib/test/test_xml_etree.py /^class MutatingElementPath(str):$/;" c +My Lib/test/test_type_params.py /^ class My[X](object): ...$/;" c function:TypeParamsInvalidTest.test_incorrect_mro_explicit_object +My Lib/test/test_typing.py /^ class My(Generic[P, T]):$/;" c function:BaseCallableTests.test_nested_paramspec +My Lib/test/test_typing.py /^ class My(enum.Enum):$/;" c function:LiteralTests.test_enum +MyABC Lib/test/test_descr.py /^ class MyABC(metaclass=abc.ABCMeta):$/;" c function:.test_slots_descriptor +MyAction Lib/test/test_argparse.py /^ class MyAction(argparse.Action):$/;" c class:TestActionRegistration +MyAlias Lib/test/test_type_aliases.py /^ class MyAlias(TypeAliasType):$/;" c function:TypeAliasTypeTest.test_no_subclassing +MyAsyncIter Lib/test/test_asyncgen.py /^ class MyAsyncIter:$/;" c function:AsyncGenAsyncioTest.test_anext_bad_await.bad_awaitable +MyAsyncIter Lib/test/test_asyncgen.py /^ class MyAsyncIter:$/;" c function:AsyncGenAsyncioTest.test_python_async_iterator_anext +MyAsyncIterWithTypesCoro Lib/test/test_asyncgen.py /^ class MyAsyncIterWithTypesCoro:$/;" c function:AsyncGenAsyncioTest.test_python_async_iterator_types_coroutine_anext +MyBEG Lib/test/test_exception_group.py /^ class MyBEG(BaseExceptionGroup):$/;" c function:InstanceCreation.test_BEG_subclass_wraps_anything +MyBaseExc Lib/test/test_asyncio/test_taskgroups.py /^class MyBaseExc(BaseException):$/;" c +MyBaseProto Lib/test/test_asyncio/test_events.py /^class MyBaseProto(asyncio.Protocol):$/;" c +MyBaseProto Lib/test/test_asyncio/test_ssl.py /^class MyBaseProto(asyncio.Protocol):$/;" c +MyBool Lib/test/test_memoryview.py /^ class MyBool:$/;" c function:OtherTest.test_use_released_memory +MyBuffer Lib/test/test_buffer.py /^ class MyBuffer:$/;" c function:TestPythonBufferProtocol.test_basic +MyBufferedIO Lib/test/test_io.py /^ class MyBufferedIO(tp):$/;" c function:CommonBufferedTests.test_override_destructor +MyBufferedReader Lib/test/test_inspect.py /^ class MyBufferedReader(BufferedReader):$/;" c function:TestSignatureDefinitions.test_base_class_have_text_signature +MyBytes Lib/test/test_descr.py /^ class MyBytes(bytes):$/;" c function:.test_buffer_inheritance +MyBytes Lib/test/test_descr.py /^ class MyBytes(bytes):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +MyBytesIO Lib/test/test_io.py /^ class MyBytesIO(base):$/;" c function:TextIOWrapperTest.test_destructor +MyBytesIO Lib/test/test_tarfile.py /^ class MyBytesIO(io.BytesIO):$/;" c function:Bz2PartialReadTest._test_partial_input +MyCStruct Lib/test/test_ctypes/test_struct_fields.py /^ class MyCStruct(Structure):$/;" c function:StructFieldsTestCase.test___get__ +MyCStruct Lib/test/test_ctypes/test_struct_fields.py /^ class MyCStruct(Structure):$/;" c function:StructFieldsTestCase.test___set__ +MyCUnion Lib/test/test_ctypes/test_struct_fields.py /^ class MyCUnion(Union):$/;" c function:StructFieldsTestCase.test___get__ +MyCUnion Lib/test/test_ctypes/test_struct_fields.py /^ class MyCUnion(Union):$/;" c function:StructFieldsTestCase.test___set__ +MyCallable Lib/test/test_descr.py /^ class MyCallable:$/;" c function:.test_bound_method_repr +MyCallable Lib/test/test_typing.py /^ class MyCallable(Generic[P, T]):$/;" c function:GenericTests.test_repr_3 +MyCallback Lib/test/test_ctypes/test_refcounts.py /^MyCallback = ctypes.CFUNCTYPE(ctypes.c_int, ctypes.c_int)$/;" v +MyChain Lib/test/test_typing.py /^ class MyChain(typing.ChainMap[str, T]): ...$/;" c function:GenericTests.test_type_erasure_special +MyChainMap Lib/test/test_typing.py /^ class MyChainMap(typing.ChainMap[str, int]):$/;" c function:CollectionsAbcTests.test_chainmap_subclass +MyClass Lib/test/ann_module5.py /^class MyClass:$/;" c +MyClass Lib/test/inspect_stock_annotations.py /^class MyClass:$/;" c +MyClass Lib/test/inspect_stringized_annotations.py /^class MyClass:$/;" c +MyClass Lib/test/pickletester.py /^ class MyClass:$/;" c function:AbstractHookTests.test_pickler_hook +MyClass Lib/test/test_functools.py /^ class MyClass(metaclass=MyMeta):$/;" c function:TestCachedProperty.test_immutable_dict +MyClass Lib/test/test_statistics.py /^ class MyClass(T): pass$/;" c function:CoerceTest.test_bool +MyClass Lib/test/test_subclassinit.py /^ class MyClass(metaclass=MyMeta):$/;" c class:Test.test_errors_changed_pep487.MyMeta +MyClass Lib/test/test_subclassinit.py /^ class MyClass(metaclass=MyMeta, otherarg=1):$/;" c class:Test.test_errors.MyMeta +MyClass Lib/test/test_subclassinit.py /^ class MyClass(metaclass=MyMeta, otherarg=1):$/;" c function:Test.test_errors +MyClass Lib/test/test_subclassinit.py /^ class MyClass(metaclass=MyMeta, otherarg=1):$/;" c function:Test.test_errors_changed_pep487 +MyClass Lib/test/test_traceback.py /^ class MyClass:$/;" c function:SuggestionFormattingTestBase.test_getattr_error_bad_suggestions_do_not_trigger_for_small_names +MyClass Lib/test/test_typing.py /^ class MyClass: ...$/;" c function:ConcatenateTests.test_basics +MyClass Lib/test/test_unittest/testmock/testhelpers.py /^ class MyClass(object):$/;" c function:SpecSignatureTest.test_spec_has_descriptor_returning_function +MyClassMethod1 Lib/test/test_decorators.py /^ class MyClassMethod1:$/;" c function:TestDecorators.test_wrapped_classmethod_inside_classmethod +MyClassMethod2 Lib/test/test_decorators.py /^ class MyClassMethod2:$/;" c function:TestDecorators.test_wrapped_classmethod_inside_classmethod +MyClassWithLocalAnnotations Lib/test/inspect_stringized_annotations.py /^class MyClassWithLocalAnnotations:$/;" c +MyComparableSet Lib/test/test_collections.py /^ class MyComparableSet(Set):$/;" c function:TestCollectionABCs.test_issue16373 +MyComplex Lib/test/pickletester.py /^class MyComplex(complex):$/;" c +MyComplex Lib/test/test_cmath.py /^ class MyComplex:$/;" c function:CMathTests.test_user_object +MyComplex Lib/test/test_descr.py /^ class MyComplex(complex):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +MyComplexException Lib/test/test_cmath.py /^ class MyComplexException:$/;" c function:CMathTests.test_user_object +MyConfig Lib/test/test_weakref.py /^ class MyConfig(dict):$/;" c function:ReferencesTestCase.test_repr_failure_gh99184 +MyContainer Lib/test/test_reprlib.py /^class MyContainer:$/;" c +MyContainer2 Lib/test/test_reprlib.py /^class MyContainer2(MyContainer):$/;" c +MyContainer3 Lib/test/test_reprlib.py /^class MyContainer3:$/;" c +MyContext Lib/test/test_context.py /^ class MyContext(contextvars.Context):$/;" c function:ContextTest.test_context_subclassing_1 +MyContext Lib/test/test_decimal.py /^ class MyContext(Context):$/;" c function:ContextSubclassing.test_context_subclassing +MyContextVar Lib/test/test_context.py /^ class MyContextVar(contextvars.ContextVar):$/;" c function:ContextTest.test_context_subclassing_1 +MyCounter Lib/test/test_collections.py /^ class MyCounter(Counter):$/;" c function:TestCounter.test_copy_subclass +MyCounter Lib/test/test_typing.py /^ class MyCounter(typing.Counter[int]):$/;" c function:CollectionsAbcTests.test_counter_subclass_instantiation +MyCursor Lib/test/test_sqlite3/test_factory.py /^class MyCursor(sqlite.Cursor):$/;" c +MyDatagramProto Lib/test/test_asyncio/test_base_events.py /^class MyDatagramProto(asyncio.DatagramProtocol):$/;" c +MyDatagramProto Lib/test/test_asyncio/test_events.py /^class MyDatagramProto(asyncio.DatagramProtocol):$/;" c +MyDecimal Lib/test/test_decimal.py /^ class MyDecimal(Decimal):$/;" c function:PythonAPItests.test_from_float +MyDecimal Lib/test/test_decimal.py /^ class MyDecimal(Decimal):$/;" c function:UsabilityTest.test_subclassing +MyDecimal Lib/test/test_statistics.py /^ class MyDecimal(Decimal):$/;" c function:ConvertTest.test_decimal +MyDecimal Lib/test/test_statistics.py /^ class MyDecimal(Decimal):$/;" c function:ExactRatioTest.test_decimal_nan +MyDecimal Lib/test/test_statistics.py /^ class MyDecimal(Decimal):$/;" c function:ExactRatioTest.test_inf +MyDef Lib/test/test_typing.py /^ class MyDef(typing.DefaultDict[str, T]): ...$/;" c function:GenericTests.test_type_erasure_special +MyDefDict Lib/test/test_typing.py /^ class MyDefDict(typing.DefaultDict[str, int]):$/;" c function:CollectionsAbcTests.test_defaultdict_subclass +MyDefect Lib/test/test_email/test_policy.py /^ class MyDefect(Exception):$/;" c class:PolicyAPITests +MyDeque Lib/test/test_typing.py /^ class MyDeque(typing.Deque[int]): ...$/;" c function:CollectionsAbcTests.test_deque +MyDict Lib/test/pickletester.py /^class MyDict(dict):$/;" c +MyDict Lib/test/test_dict.py /^ class MyDict(dict):$/;" c function:DictTest.test_track_subtypes +MyDict Lib/test/test_functools.py /^class MyDict(dict):$/;" c +MyDict Lib/test/test_typing.py /^ class MyDict(typing.Dict[T, T]): ...$/;" c function:GenericTests.test_type_erasure_special +MyDict Lib/test/test_typing.py /^ class MyDict(typing.Dict[str, int]):$/;" c function:CollectionsAbcTests.test_dict_subclass +MyDirCmp Lib/test/test_filecmp.py /^ class MyDirCmp(filecmp.dircmp):$/;" c function:DirCompareTestCase.test_dircmp_subdirs_type +MyEG Lib/test/test_exception_group.py /^ class MyEG(BaseExceptionGroup, ValueError):$/;" c function:InstanceCreation.test_BEG_and_E_subclass_does_not_wrap_base_exceptions +MyEG Lib/test/test_exception_group.py /^ class MyEG(BaseExceptionGroup, ValueError):$/;" c function:InstanceCreation.test_BEG_and_specific_subclass_can_wrap_any_nonbase_exception +MyEG Lib/test/test_exception_group.py /^ class MyEG(ExceptionGroup):$/;" c function:InstanceCreation.test_EG_subclass_does_not_wrap_base_exceptions +MyEG Lib/test/test_exception_group.py /^ class MyEG(ExceptionGroup):$/;" c function:InstanceCreation.test_EG_subclass_wraps_non_base_exceptions +MyEG Lib/test/test_exception_group.py /^ class MyEG(ExceptionGroup):$/;" c function:StrAndReprTests.test_custom_exception +MyEG Lib/test/test_exception_group.py /^ class MyEG(ExceptionGroup, ValueError):$/;" c function:InstanceCreation.test_EG_and_specific_subclass_can_wrap_any_nonbase_exception +MyEditWin Lib/idlelib/iomenu.py /^ class MyEditWin:$/;" c function:_io_binding +MyEg Lib/test/test_exception_group.py /^ class MyEg(ExceptionGroup):$/;" c function:NestedExceptionGroupSplitTest.test_drive_invalid_return_value +MyElement Lib/test/test_xml_etree.py /^ class MyElement(ET.Element):$/;" c function:ElementTreeTypeTest.test_Element_subclass_constructor +MyElement Lib/test/test_xml_etree.py /^ class MyElement(ET.Element):$/;" c function:ElementTreeTypeTest.test_Element_subclass_find +MyElement Lib/test/test_xml_etree.py /^ class MyElement(ET.Element):$/;" c function:ElementTreeTypeTest.test_Element_subclass_new_method +MyElement Lib/test/test_xml_etree.py /^ class MyElement(ET.Element):$/;" c function:ElementTreeTypeTest.test_Element_subclass_trivial +MyElement Lib/test/test_xml_etree.py /^ class MyElement(ET.Element):$/;" c function:TreeBuilderTest.test_element_factory_subclass +MyElement Lib/test/test_xml_etree.py /^ class MyElement(base, ValueError):$/;" c function:TreeBuilderTest.test_element_factory_pure_python_subclass +MyEnum Lib/test/test_enum.py /^ class MyEnum(Base, enum.Enum):$/;" c class:TestSpecial.test_init_exception.Base +MyEnum Lib/test/test_enum.py /^ class MyEnum(Enum):$/;" c function:TestSpecial.test_dir_with_custom_dunders +MyEnum Lib/test/test_enum.py /^ class MyEnum(Flag):$/;" c function:OldTestFlag.test_init_subclass +MyEnum Lib/test/test_enum.py /^ class MyEnum(HexInt, enum.Enum):$/;" c function:TestSpecial.test_inherited_data_type +MyEnum Lib/test/test_enum.py /^ class MyEnum(StrEnum):$/;" c function:TestSpecial.test_multiple_inherited_mixin +MyEnum Lib/test/test_enum.py /^ class MyEnum(self.enum_type):$/;" c function:_EnumTests.test_inherited_repr +MyEnum Lib/test/test_enumerate.py /^class MyEnum(enumerate):$/;" c +MyErr Lib/test/test_yield_from.py /^ class MyErr(Exception):$/;" c function:TestPEP380Operation.test_delegating_generators_claim_to_be_running +MyError Lib/test/test_asyncgen.py /^ class MyError(Exception):$/;" c function:AsyncGenAsyncioTest.test_anext_iter +MyError Lib/test/test_asyncio/test_selector_events.py /^ class MyError(Exception):$/;" c function:SelectorTransportTests.test_fatal_error_custom_exception +MyError Lib/test/test_capi/test_watchers.py /^ class MyError(Exception):$/;" c function:TestFuncWatchers.test_dealloc_watcher_raises_error +MyError Lib/test/test_capi/test_watchers.py /^ class MyError(Exception):$/;" c function:TestFuncWatchers.test_watcher_raises_error +MyExc Lib/test/test_asyncio/test_taskgroups.py /^class MyExc(Exception):$/;" c +MyExc Lib/test/test_asyncio/test_tasks.py /^ class MyExc(Exception):$/;" c function:SetMethodsTest.test_set_exception_causes_invalid_state +MyExc Lib/test/test_unittest/test_case.py /^ class MyExc(Exception):$/;" c function:.testAssertRaisesRegexInvalidRegex +MyException Lib/test/test_asyncio/test_selector_events.py /^ class MyException(Exception):$/;" c function:SelectorDatagramTransportTests.test_fatal_error_connected_custom_error +MyException Lib/test/test_contextlib.py /^ class MyException(Exception):$/;" c function:TestBaseExitStack.test_exit_exception_explicit_none_context +MyException Lib/test/test_contextlib_async.py /^ class MyException(Exception):$/;" c function:TestAsyncExitStack.test_async_exit_exception_explicit_none_context +MyException Lib/test/test_coroutines.py /^ class MyException(Exception):$/;" c function:CoroAsyncIOCompatTest.test_asyncio_1 +MyException Lib/test/test_descr.py /^ class MyException(Exception):$/;" c function:.test_special_method_lookup +MyException Lib/test/test_exceptions.py /^ class MyException(Exception):$/;" c function:ExceptionTests._check_generator_cleanup_exc_state +MyException Lib/test/test_exceptions.py /^ class MyException(Exception):$/;" c function:ExceptionTests.testExceptionCleanupState +MyException Lib/test/test_exceptions.py /^ class MyException(Exception):$/;" c function:ExceptionTests.testWithTraceback +MyException Lib/test/test_exceptions.py /^ class MyException(Exception, metaclass=Meta):$/;" c function:ExceptionTests.test_badisinstance +MyException Lib/test/test_exceptions.py /^ class MyException(OSError):$/;" c function:ExceptionTests.testChainingAttrs +MyException Lib/test/test_fileio.py /^ class MyException(Exception): pass$/;" c function:OtherFileTests.testUnclosedFDOnException +MyException Lib/test/test_raise.py /^ class MyException(Exception):$/;" c function:TestCause.test_erroneous_cause +MyException Lib/test/test_raise.py /^ class MyException(Exception):$/;" c function:TestRaise.test_erroneous_exception +MyException Lib/test/test_raise.py /^ class MyException(Exception):$/;" c function:TestRaise.test_new_returns_invalid_instance +MyException Lib/test/test_unittest/test_async_case.py /^class MyException(Exception):$/;" c +MyException Lib/test/test_unittest/test_case.py /^ class MyException(Exception):$/;" c function:.test_no_exception_leak +MyExceptionGroup Lib/test/test_exception_group.py /^ class MyExceptionGroup(ExceptionGroup):$/;" c function:NestedExceptionGroupSplitTest.test_split_by_type +MyFileIO Lib/test/test_fileio.py /^ class MyFileIO(self.FileIO):$/;" c function:OtherFileTests.testUnclosedFDOnException +MyFileIO Lib/test/test_io.py /^ class MyFileIO(self.FileIO):$/;" c function:IOTest.test_destructor +MyFileProc Modules/_tkinter.c /^MyFileProc(void *clientData, int mask)$/;" f file: +MyFilter Lib/idlelib/idle_test/test_percolator.py /^class MyFilter(Delegator):$/;" c +MyFinalizer Lib/test/test_weakref.py /^ class MyFinalizer(weakref.finalize):$/;" c function:FinalizeTestCase.test_all_freed +MyFloat Lib/test/pickletester.py /^class MyFloat(float):$/;" c +MyFloat Lib/test/test_descr.py /^ class MyFloat(float):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +MyFloat Lib/test/test_memoryview.py /^ class MyFloat:$/;" c function:OtherTest.test_use_released_memory +MyFloat Lib/test/test_statistics.py /^ class MyFloat(float):$/;" c function:ConvertTest.test_float +MyFloat Lib/test/test_statistics.py /^ class MyFloat(float):$/;" c function:ExactRatioTest.test_float_nan +MyFloat Lib/test/test_statistics.py /^ class MyFloat(float):$/;" c function:ExactRatioTest.test_inf +MyFloat Lib/test/test_statistics.py /^ class MyFloat(float):$/;" c function:UnivariateCommonMixin.test_type_of_data_element +MyFloat Lib/test/test_statistics.py /^ class MyFloat(float):$/;" c function:UnivariateTypeMixin.prepare_types_for_conservation_test +MyFraction Lib/test/test_statistics.py /^ class MyFraction(Fraction):$/;" c function:ConvertTest.test_fraction +MyFrozenSet Lib/test/pickletester.py /^class MyFrozenSet(frozenset):$/;" c +MyFrozenSet Lib/test/test_descr.py /^ class MyFrozenSet(frozenset):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +MyFrozenSet Lib/test/test_typing.py /^ class MyFrozenSet(typing.FrozenSet[int]):$/;" c function:CollectionsAbcTests.test_frozenset_subclass_instantiation +MyFut Lib/test/test_asyncio/test_futures.py /^ class MyFut(cls):$/;" c function:BaseFutureInheritanceTests.test_inherit_without_calling_super_init +MyFuture Lib/test/test_asyncio/test_futures.py /^ class MyFuture:$/;" c function:BaseFutureTests.test_isfuture +MyGen Lib/test/test_yield_from.py /^ class MyGen:$/;" c function:TestPEP380Operation.test_send_tuple_with_custom_generator +MyGeneric Lib/test/test_genericalias.py /^ class MyGeneric:$/;" c function:BaseTest.test_repr +MyGeneric Lib/test/test_typing.py /^ class MyGeneric(Generic[T], Generic[S]): ...$/;" c function:GenericTests.test_generic_errors +MyGeneric Lib/test/test_typing.py /^ class MyGeneric(List[T], Generic[S]): ...$/;" c function:GenericTests.test_generic_errors +MyGlobals Lib/test/test_dynamic.py /^ class MyGlobals(dict):$/;" c function:RebindBuiltinsTests.test_load_global_specialization_failure_keeps_oparg +MyHTTPHandler Lib/test/test_urllib2.py /^ class MyHTTPHandler(urllib.request.HTTPHandler):$/;" c function:MiscTests.test_build_opener +MyHTTPRequestHandler Tools/wasm/wasm_webserver.py /^class MyHTTPRequestHandler(server.SimpleHTTPRequestHandler):$/;" c +MyHandler Lib/idlelib/run.py /^class MyHandler(rpc.RPCHandler):$/;" c +MyHandler Lib/test/test_logging.py /^ class MyHandler(logging.StreamHandler):$/;" c function:ConfigDictTest.test_namedtuple +MyHandler Lib/test/test_socketserver.py /^ class MyHandler(hdlrbase):$/;" c function:SocketServerTest.make_server +MyHandler Lib/test/test_socketserver.py /^ class MyHandler(socketserver.StreamRequestHandler):$/;" c function:SocketServerTest.test_shutdown +MyIO Lib/test/test_io.py /^ class MyIO(base):$/;" c function:IOTest._check_base_destructor +MyIO Lib/test/test_io.py /^ class MyIO(self.IOBase):$/;" c function:CIOTest.test_IOBase_finalize +MyIndex Lib/test/test_complex.py /^ class MyIndex:$/;" c function:ComplexTest.test_constructor +MyIndex Lib/test/test_float.py /^ class MyIndex:$/;" c function:GeneralFloatCases.test_floatconversion +MyIndex Lib/test/test_int.py /^ class MyIndex(int):$/;" c function:IntTestCases.test_int_subclass_with_index +MyIndex Lib/test/test_memoryview.py /^ class MyIndex:$/;" c function:OtherTest.test_use_released_memory +MyIndexable Lib/test/test_int.py /^ class MyIndexable(object):$/;" c function:IntTestCases.test_int_base_indexable +MyIndexable Lib/test/test_math.py /^class MyIndexable(object):$/;" c +MyIndexable Lib/test/test_slice.py /^class MyIndexable(object):$/;" c +MyInt Lib/test/pickletester.py /^class MyInt(int):$/;" c +MyInt Lib/test/test_abc.py /^ class MyInt(int):$/;" c function:test_factory.TestABC.test_registration_transitiveness +MyInt Lib/test/test_cmath.py /^ class MyInt:$/;" c function:CMathTests.test_user_object +MyInt Lib/test/test_complex.py /^ class MyInt:$/;" c function:ComplexTest.test_constructor +MyInt Lib/test/test_ctypes/test_simplesubclasses.py /^class MyInt(c_int):$/;" c +MyInt Lib/test/test_descr.py /^ class MyInt(int):$/;" c function:.test_buffer_inheritance +MyInt Lib/test/test_descr.py /^ class MyInt(int):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +MyInt Lib/test/test_enum.py /^ class MyInt(int):$/;" c function:TestSpecial.test_multiple_mixin_inherited +MyInt Lib/test/test_enum.py /^ class MyInt(int):$/;" c function:TestSpecial.test_too_many_data_types +MyInt Lib/test/test_float.py /^ class MyInt:$/;" c function:GeneralFloatCases.test_floatconversion +MyInt Lib/test/test_index.py /^ class MyInt(int):$/;" c function:BaseTestCase.test_int_subclass_with_index +MyInt Lib/test/test_int.py /^ class MyInt(int):$/;" c function:IntTestCases.test_int_subclass_with_int +MyInt Lib/test/test_long.py /^ class MyInt(int):$/;" c function:LongTest.test___sizeof__ +MyInt Lib/test/test_statistics.py /^ class MyInt(int): pass$/;" c function:ConvertTest.test_int +MyIntEnum Lib/test/test_enum.py /^ class MyIntEnum(HexMixin, MyInt, enum.Enum):$/;" c function:TestSpecial.test_multiple_mixin_inherited +MyIntFlag Lib/test/test_enum.py /^ class MyIntFlag(IntFlag):$/;" c function:TestSpecial.test_int_flags_copy +MyIntFlag Lib/test/test_enum.py /^ class MyIntFlag(int, Flag):$/;" c function:TestSpecial.test_custom_flag_bitwise +MyIntWithNew Lib/test/pickletester.py /^class MyIntWithNew(int):$/;" c +MyIntWithNew2 Lib/test/pickletester.py /^class MyIntWithNew2(MyIntWithNew):$/;" c +MyIt Lib/test/test_yield_from.py /^ class MyIt(object):$/;" c function:TestPEP380Operation.test_delegating_generators_claim_to_be_running +MyIter Lib/test/test_sqlite3/test_dbapi.py /^ class MyIter:$/;" c function:CursorTests.test_execute_many_iterator +MyIter Lib/test/test_yield_from.py /^ class MyIter:$/;" c function:TestPEP380Operation.test_custom_iterator_return +MyKey Lib/test/test_descr.py /^ class MyKey(object):$/;" c function:MiscTests.test_type_lookup_mro_reference +MyList Lib/test/pickletester.py /^class MyList(list):$/;" c +MyList Lib/test/test_genericalias.py /^ class MyList(list):$/;" c function:BaseTest.test_generic_subclass +MyList Lib/test/test_genericalias.py /^ class MyList(list):$/;" c function:BaseTest.test_repr +MyList Lib/test/test_statistics.py /^ class MyList(list):$/;" c function:UnivariateCommonMixin.test_type_of_data_collection +MyList Lib/test/test_typing.py /^ class MyList(typing.List[int]):$/;" c function:CollectionsAbcTests.test_list_subclass +MyListObject Modules/_testcapimodule.c /^} MyListObject;$/;" t typeref:struct:__anon593 file: +MyList_Type Modules/_testcapimodule.c /^static PyTypeObject MyList_Type = {$/;" v file: +MyList_dealloc Modules/_testcapimodule.c /^MyList_dealloc(MyListObject* op)$/;" f +MyList_new Modules/_testcapimodule.c /^MyList_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +MyLoader Lib/test/test_lib2to3/test_parser.py /^ class MyLoader:$/;" c function:TestPgen2Caching.test_load_packaged_grammar +MyLocal Lib/test/test_threading_local.py /^ class MyLocal(self._local):$/;" c function:BaseLocalTest.test_arguments +MyLogger Lib/test/test_logging.py /^ class MyLogger(logging.Logger):$/;" c function:ManagerTest.test_manager_loggerclass +MyLogger Lib/test/test_logging.py /^ class MyLogger(logging.Logger):$/;" c function:ModuleLevelMiscTest.test_set_logger_class +MyLogger Lib/test/test_logging.py /^ class MyLogger(logging.getLoggerClass()):$/;" c function:ModuleLevelMiscTest.test_subclass_logger_cache +MyManager Doc/includes/mp_newtype.py /^class MyManager(BaseManager):$/;" c +MyManager Lib/test/_test_multiprocessing.py /^class MyManager(BaseManager):$/;" c +MyMapping Lib/test/test_collections.py /^ class MyMapping(Mapping):$/;" c function:TestCollectionABCs.test_Mapping +MyMapping Lib/test/test_typing.py /^ class MyMapping(MutableMapping[str, str]): pass$/;" c function:GenericTests.test_false_subclasses +MyMessage Lib/test/test_email/test_email.py /^ class MyMessage(Message):$/;" c function:TestMiscellaneous.test_custom_message_does_not_require_arguments +MyMessage Lib/test/test_email/test_email.py /^ class MyMessage(Message):$/;" c function:TestMiscellaneous.test_message_from_file_with_class +MyMessage Lib/test/test_email/test_email.py /^ class MyMessage(Message):$/;" c function:TestMiscellaneous.test_message_from_string_with_class +MyMessage Lib/test/test_email/test_parser.py /^ class MyMessage(EmailMessage):$/;" c class:TestParserBase +MyMessage Lib/test/test_email/test_parser.py /^ class MyMessage(Message):$/;" c class:TestCustomMessage +MyMeta Lib/test/test_functools.py /^ class MyMeta(type):$/;" c function:TestCachedProperty.test_immutable_dict +MyMeta Lib/test/test_subclassinit.py /^ class MyMeta(type):$/;" c function:Test.test_errors +MyMeta Lib/test/test_subclassinit.py /^ class MyMeta(type):$/;" c function:Test.test_errors_changed_pep487 +MyMod Lib/test/test_import/data/unwritable/__init__.py /^class MyMod(object):$/;" c +MyModule Lib/test/test_lib2to3/test_parser.py /^ class MyModule:$/;" c function:TestPgen2Caching.test_load_packaged_grammar +MyNonComparableSet Lib/test/test_collections.py /^ class MyNonComparableSet(Set):$/;" c function:TestCollectionABCs.test_issue16373 +MyOD Lib/test/test_ordered_dict.py /^ class MyOD(OrderedDict):$/;" c function:OrderedDictTests.test_highly_nested_subclass +MyOD Lib/test/test_ordered_dict.py /^ class MyOD(OrderedDict):$/;" c function:OrderedDictTests.test_override_update +MyObj Lib/test/test_email/test_policy.py /^ class MyObj:$/;" c class:PolicyAPITests +MyObj Lib/test/test_exceptions.py /^ class MyObj:$/;" c function:ExceptionTests._check_generator_cleanup_exc_state +MyObj Lib/test/test_exceptions.py /^ class MyObj:$/;" c function:ExceptionTests.testExceptionCleanupState +MyObj Lib/test/test_weakref.py /^ class MyObj:$/;" c function:ReferencesTestCase.test_proxy_hash +MyObj Lib/test/test_weakref.py /^ class MyObj:$/;" c function:ReferencesTestCase.test_proxy_iter +MyObj Lib/test/test_weakref.py /^ class MyObj:$/;" c function:ReferencesTestCase.test_proxy_reversed +MyObject Lib/test/test_concurrent_futures/executor.py /^class MyObject(object):$/;" c +MyObject Lib/test/test_dict.py /^ class MyObject(object):$/;" c function:DictTest.test_track_dynamic +MyObject Lib/test/test_exceptions.py /^ class MyObject:$/;" c function:ExceptionTests.test_3114 +MyObject Lib/test/test_memoryview.py /^ class MyObject:$/;" c function:AbstractMemoryTests.test_gc +MyObject Lib/test/test_sys_settrace.py /^ class MyObject:$/;" c function:TraceTestCase.test_class_creation_with_decorator.func +MyOption Lib/test/test_optparse.py /^ class MyOption (Option):$/;" c class:TestExtendAddActions +MyOption Lib/test/test_optparse.py /^ class MyOption (Option):$/;" c class:TestExtendAddTypes +MyOrdDict Lib/test/test_typing.py /^ class MyOrdDict(typing.OrderedDict[str, int]):$/;" c function:CollectionsAbcTests.test_ordereddict_subclass +MyOrderedDict Lib/test/test_ordered_dict.py /^ class MyOrderedDict(c_coll.OrderedDict):$/;" c function:CPythonSubclassMappingTests.setUpClass +MyOrderedDict Lib/test/test_ordered_dict.py /^ class MyOrderedDict(py_coll.OrderedDict):$/;" c function:PurePythonSubclassMappingTests.setUpClass +MyOtherEnum Lib/test/test_enum.py /^ class MyOtherEnum(SillyInt, enum.Enum):$/;" c function:TestSpecial.test_inherited_data_type +MyOtherHTTPHandler Lib/test/test_urllib2.py /^ class MyOtherHTTPHandler(urllib.request.HTTPHandler):$/;" c function:MiscTests.test_build_opener +MyParameter Lib/test/test_inspect.py /^class MyParameter(inspect.Parameter):$/;" c +MyParser Lib/test/test_xml_etree.py /^ class MyParser(ET.XMLParser):$/;" c function:XMLParserTest.test_subclass +MyParserWithDoctype Lib/test/test_xml_etree.py /^ class MyParserWithDoctype(ET.XMLParser):$/;" c function:XMLParserTest.test_subclass_doctype +MyParserWithoutDoctype Lib/test/test_xml_etree.py /^ class MyParserWithoutDoctype(ET.XMLParser):$/;" c function:XMLParserTest.test_inherited_doctype +MyPattern Lib/test/test_string.py /^ class MyPattern(Template):$/;" c function:TestTemplate.test_flags_override +MyPattern Lib/test/test_string.py /^ class MyPattern(Template):$/;" c function:TestTemplate.test_idpattern_override_inside_outside +MyPattern Lib/test/test_string.py /^ class MyPattern(Template):$/;" c function:TestTemplate.test_idpattern_override_inside_outside_invalid_unbraced +MyPattern Lib/test/test_string.py /^ class MyPattern(Template):$/;" c function:TestTemplate.test_pattern_override +MyPickler Lib/test/pickletester.py /^ class MyPickler(self.pickler_class):$/;" c function:AbstractDispatchTableTests.test_class_dispatch_table +MyPoint Lib/test/test_typing.py /^class MyPoint:$/;" c +MyPolicy Lib/test/test_email/test_parser.py /^ MyPolicy = TestEmailBase.policy.clone(linesep='boo')$/;" v class:TestCustomMessage +MyPolicy Lib/test/test_email/test_policy.py /^ class MyPolicy(email.policy.EmailPolicy):$/;" c class:PolicyAPITests +MyPolicy Lib/test/test_email/test_policy.py /^ class MyPolicy(email.policy.Policy):$/;" c class:TestPolicyPropagation +MyProperty Lib/test/test_unittest/testmock/testhelpers.py /^ class MyProperty(property):$/;" c function:SpecSignatureTest.test_autospec_data_descriptor +MyProto Lib/test/test_asyncio/test_base_events.py /^ class MyProto(asyncio.Protocol):$/;" c function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors +MyProto Lib/test/test_asyncio/test_base_events.py /^ class MyProto(asyncio.Protocol):$/;" c class:BaseLoopSockSendfileTests +MyProto Lib/test/test_asyncio/test_base_events.py /^class MyProto(asyncio.Protocol):$/;" c +MyProto Lib/test/test_asyncio/test_events.py /^ class MyProto(MyBaseProto):$/;" c function:EventLoopTestsMixin.test_connect_accepted_socket +MyProto Lib/test/test_asyncio/test_events.py /^class MyProto(MyBaseProto):$/;" c +MyProto Lib/test/test_asyncio/test_proactor_events.py /^ class MyProto(asyncio.Protocol):$/;" c class:ProactorEventLoopUnixSockSendfileTests +MyProto Lib/test/test_asyncio/test_sendfile.py /^class MyProto(asyncio.Protocol):$/;" c +MyProto Lib/test/test_asyncio/test_sock_lowlevel.py /^class MyProto(asyncio.Protocol):$/;" c +MyProto Lib/test/test_asyncio/test_ssl.py /^ class MyProto(MyBaseProto):$/;" c function:TestSSL.test_connect_accepted_socket +MyProto Lib/test/test_asyncio/test_unix_events.py /^ class MyProto(asyncio.Protocol):$/;" c class:SelectorEventLoopUnixSockSendfileTests +MyProtocol Lib/test/test_asyncio/test_subprocess.py /^ class MyProtocol(asyncio.SubprocessProtocol):$/;" c function:SubprocessMixin.test_subprocess_consistent_callbacks +MyRPCClient Lib/idlelib/pyshell.py /^class MyRPCClient(rpc.RPCClient):$/;" c +MyRPCServer Lib/idlelib/run.py /^class MyRPCServer(rpc.RPCServer):$/;" c +MyRT Lib/test/test_lib2to3/test_refactor.py /^ class MyRT(refactor.RefactoringTool):$/;" c function:TestRefactoringTool.test_refactor_stdin +MyReadPipeProto Lib/test/test_asyncio/test_events.py /^class MyReadPipeProto(asyncio.Protocol):$/;" c +MyRef Lib/test/test_weakref.py /^ class MyRef(weakref.ref):$/;" c function:SubclassableWeakrefTestCase.test_subclass_refs +MyRef Lib/test/test_weakref.py /^ class MyRef(weakref.ref):$/;" c function:SubclassableWeakrefTestCase.test_subclass_refs_dont_conflate_callbacks +MyRef Lib/test/test_weakref.py /^ class MyRef(weakref.ref):$/;" c function:SubclassableWeakrefTestCase.test_subclass_refs_dont_replace_standard_refs +MyRef Lib/test/test_weakref.py /^ class MyRef(weakref.ref):$/;" c function:SubclassableWeakrefTestCase.test_subclass_refs_with_cycle +MyRef Lib/test/test_weakref.py /^ class MyRef(weakref.ref):$/;" c function:SubclassableWeakrefTestCase.test_subclass_refs_with_slots +MyRequestHandler Lib/test/test_xmlrpc.py /^ class MyRequestHandler(requestHandler):$/;" c function:http_multi_server +MyRuntimeError Lib/test/test_codecs.py /^ class MyRuntimeError(RuntimeError):$/;" c function:ExceptionNotesTest.test_raise_grandchild_subclass_exact_size +MyRuntimeError Lib/test/test_codecs.py /^ class MyRuntimeError(RuntimeError):$/;" c function:ExceptionNotesTest.test_raise_subclass_with_weakref_support +MySSLObject Lib/test/test_ssl.py /^ class MySSLObject(ssl.SSLObject):$/;" c function:ContextTests.test_context_custom_class +MySSLSocket Lib/test/test_ssl.py /^ class MySSLSocket(ssl.SSLSocket):$/;" c function:ContextTests.test_context_custom_class +MyScrolledList Lib/idlelib/scrolledlist.py /^ class MyScrolledList(ScrolledList):$/;" c function:_scrolled_list +MySeed Lib/test/test_random.py /^ class MySeed(object):$/;" c function:TestBasicOps.test_seedargs +MySendfileProto Lib/test/test_asyncio/test_sendfile.py /^class MySendfileProto(asyncio.Protocol):$/;" c +MySequenceClass Lib/test/test_iter.py /^ class MySequenceClass(SequenceClass):$/;" c function:TestCase.test_exception_sequence +MySequenceClass Lib/test/test_iter.py /^ class MySequenceClass(SequenceClass):$/;" c function:TestCase.test_stop_sequence +MyServer Lib/test/test_asyncio/test_streams.py /^ class MyServer:$/;" c function:StreamTests.test_start_server +MyServer Lib/test/test_asyncio/test_streams.py /^ class MyServer:$/;" c function:StreamTests.test_start_tls +MyServer Lib/test/test_asyncio/test_streams.py /^ class MyServer:$/;" c function:StreamTests.test_start_unix_server +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_aborted_authentication +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_bad_auth_name +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_invalid_authentication +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_valid_authentication_bytes +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_valid_authentication_plain_text +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_aborted_authentication +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_bad_auth_name +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_invalid_authentication +MyServer Lib/test/test_imaplib.py /^ class MyServer(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_valid_authentication +MyServer Lib/test/test_imaplib.py /^ class MyServer(self.server_class):$/;" c function:ThreadedNetworkedTests.make_server +MyServer Lib/test/test_socketserver.py /^ class MyServer(socketserver.TCPServer):$/;" c function:MiscTestCase.test_shutdown_request_called_if_verify_request_false +MyServer Lib/test/test_socketserver.py /^ class MyServer(socketserver.TCPServer):$/;" c function:SocketServerTest.test_shutdown +MyServer Lib/test/test_socketserver.py /^ class MyServer(socketserver.ThreadingMixIn, socketserver.TCPServer):$/;" c function:MiscTestCase.test_threads_reaped +MyServer Lib/test/test_socketserver.py /^ class MyServer(socketserver.ThreadingMixIn, socketserver.TCPServer):$/;" c function:SocketServerTest.test_close_immediately +MyServer Lib/test/test_socketserver.py /^ class MyServer(svrcls):$/;" c function:SocketServerTest.make_server +MySet Lib/test/pickletester.py /^class MySet(set):$/;" c +MySet Lib/test/test_collections.py /^ class MySet(MutableSet):$/;" c function:TestCollectionABCs.test_issue_4920 +MySet Lib/test/test_collections.py /^ class MySet(Set):$/;" c function:TestCollectionABCs.test_Set +MySet Lib/test/test_collections.py /^ class MySet(Set):$/;" c function:TestCollectionABCs.test_arithmetic_Set +MySet Lib/test/test_collections.py /^ class MySet(Set):$/;" c function:TestCollectionABCs.test_equality_Set +MySet Lib/test/test_collections.py /^ class MySet(Set):$/;" c function:TestCollectionABCs.test_isdisjoint_Set +MySet Lib/test/test_typing.py /^ class MySet(Generic[T]):$/;" c function:GetTypeHintTests.test_get_type_hints_annotated_refs +MySet Lib/test/test_typing.py /^ class MySet(typing.Set[int]):$/;" c function:CollectionsAbcTests.test_set_subclass_instantiation +MySignature Lib/test/test_inspect.py /^ class MySignature(inspect.Signature): pass$/;" c function:TestSignatureObject.test_signature_from_callable_builtin_obj +MySignature Lib/test/test_inspect.py /^ class MySignature(inspect.Signature): pass$/;" c function:TestSignatureObject.test_signature_from_callable_class +MySignature Lib/test/test_inspect.py /^ class MySignature(inspect.Signature): pass$/;" c function:TestSignatureObject.test_signature_from_callable_python_obj +MySignature Lib/test/test_inspect.py /^class MySignature(inspect.Signature):$/;" c +MySimSMTPChannel Lib/test/test_smtplib.py /^ class MySimSMTPChannel(SimSMTPChannel):$/;" c function:SMTPSimTests.test_421_from_data_cmd +MySimpleMapping Lib/test/test_typing.py /^class MySimpleMapping(SimpleMapping[XK, XV]):$/;" c +MySource Lib/test/test_memoryview.py /^ class MySource(tp):$/;" c function:AbstractMemoryTests.test_gc +MyStr Lib/test/datetimetester.py /^ class MyStr(str):$/;" c function:TestDateTime.test_strftime_with_bad_tzname_replace.MyTzInfo.tzname +MyStr Lib/test/pickletester.py /^class MyStr(str):$/;" c +MyStr Lib/test/test_descr.py /^ class MyStr(str):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +MyStr Lib/test/test_enum.py /^ class MyStr(str):$/;" c function:TestSpecial.test_too_many_data_types +MyStr Lib/test/test_sqlite3/test_regression.py /^ class MyStr(str): pass$/;" c function:RegressionTests.test_str_subclass +MyStr Lib/test/test_unicode.py /^ class MyStr(str):$/;" c function:UnicodeTest.test_count +MyString Lib/test/test_opcodes.py /^ class MyString(str):$/;" c function:OpcodeTest.test_modulo_of_string_subclasses +MySubEnum Lib/test/test_enum.py /^ class MySubEnum(MyEnum):$/;" c function:_EnumTests.test_inherited_repr +MySubclass Lib/test/test_statistics.py /^ class MySubclass(T): pass$/;" c function:CoerceTest.test_incompatible_types +MySubprocessProtocol Lib/test/test_asyncio/test_events.py /^class MySubprocessProtocol(asyncio.SubprocessProtocol):$/;" c +MySuite Lib/test/test_unittest/test_suite.py /^ class MySuite(unittest.TestSuite):$/;" c function:Test_TestSuite.test_overriding_call +MySuper Lib/test/test_super.py /^ class MySuper:$/;" c function:TestSuper.test_shadowed_dynamic +MySuper Lib/test/test_super.py /^ class MySuper:$/;" c function:TestSuper.test_shadowed_dynamic_two_arg +MyTask Lib/test/test_asyncio/test_base_events.py /^ class MyTask(asyncio.Task):$/;" c function:BaseEventLoopTests.test_create_task +MyTask Lib/test/test_asyncio/test_base_events.py /^ class MyTask(asyncio.Task):$/;" c function:BaseEventLoopTests.test_set_task_factory +MyTemplate Lib/test/test_string.py /^ class MyTemplate(Template):$/;" c function:TestTemplate.test_braced_override +MyTemplate Lib/test/test_string.py /^ class MyTemplate(Template):$/;" c function:TestTemplate.test_braced_override_safe +MyTemplate Lib/test/test_string.py /^ class MyTemplate(Template):$/;" c function:TestTemplate.test_invalid_with_no_lines +MyTest Lib/test/test_unittest/test_loader.py /^ class MyTest(unittest.TestCase):$/;" c function:Test_TestLoader.test_getTestCaseNames__testNamePatterns +MyTest Lib/test/test_unittest/test_loader.py /^ class MyTest(unittest.TestCase):$/;" c function:Test_TestLoader.test_getTestCaseNames__testNamePatterns__attribute_access_regression +MyTestCase Lib/test/test_ctypes/test_incomplete.py /^class MyTestCase(unittest.TestCase):$/;" c +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromModule__TestCase_subclass +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromModule__load_tests +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromModule__no_TestCase_tests +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromModule__not_a_module +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromModule__pattern +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromName__function_with_different_name_than_method +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_TestCase_subclass +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_TestSuite +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_invalid_testmethod +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_not_a_module +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_testmethod +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_testmethod_ProperSuiteClass +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromNames__relative_TestCase_subclass +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromNames__relative_TestSuite +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromNames__relative_invalid_testmethod +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromNames__relative_not_a_module +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromNames__relative_testmethod +MyTestCase Lib/test/test_unittest/test_loader.py /^ class MyTestCase(unittest.TestCase):$/;" c class:TestObsoleteFunctions +MyTestImporter Lib/test/test_pkgutil.py /^ class MyTestImporter(object):$/;" c class:PkgutilPEP302Tests +MyTestLoader Lib/test/test_pkgutil.py /^ class MyTestLoader(object):$/;" c class:PkgutilPEP302Tests +MyTestSuite Lib/test/test_unittest/test_loader.py /^ class MyTestSuite(unittest.TestSuite):$/;" c class:TestObsoleteFunctions +MyTextIO Lib/test/test_io.py /^ class MyTextIO(self.TextIOWrapper):$/;" c function:TextIOWrapperTest.test_override_destructor +MyToken Lib/test/test_context.py /^ class MyToken(contextvars.Token):$/;" c function:ContextTest.test_context_subclassing_1 +MyTransport Lib/test/test_asyncio/test_transports.py /^ transports.Transport):$/;" c function:TransportTests.test_flowcontrol_mixin_set_write_limits +MyTransport Lib/test/test_asyncio/test_transports.py /^ class MyTransport(asyncio.Transport):$/;" c function:TransportTests.test_writelines +MyTreeBuilder Lib/test/test_xml_etree.py /^ class MyTreeBuilder(ET.TreeBuilder):$/;" c function:TreeBuilderTest.test_subclass +MyTreeBuilder Lib/test/test_xml_etree.py /^ class MyTreeBuilder(ET.TreeBuilder):$/;" c function:TreeBuilderTest.test_subclass_comment_pi +MyTup Lib/test/test_typing.py /^ class MyTup(Tuple[T, T]): ...$/;" c function:GenericTests.test_type_erasure_special +MyTuple Lib/test/pickletester.py /^class MyTuple(tuple):$/;" c +MyTuple Lib/test/test_descr.py /^ class MyTuple(tuple):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +MyTuple Lib/test/test_functools.py /^class MyTuple(tuple):$/;" c +MyTuple Lib/test/test_statistics.py /^ class MyTuple(tuple):$/;" c function:UnivariateCommonMixin.test_type_of_data_collection +MyTuple Lib/test/test_tuple.py /^ class MyTuple(tuple):$/;" c function:TupleTest.test_track_subtypes +MyTuple Lib/test/test_typing.py /^ class MyTuple(tuple):$/;" c function:TupleTests.test_tuple_subclass +MyType Lib/test/test_argparse.py /^ class MyType(TestCase):$/;" c class:TestTypeUserDefined +MyType Lib/test/test_genericalias.py /^ class MyType(type):$/;" c function:BaseTest.test_type_subclass_generic +MyType Lib/test/test_super.py /^ class MyType(type):$/;" c function:TestSuper.test_unusual_getattro +MyTypes Lib/test/test_enum.py /^ class MyTypes(Enum):$/;" c function:TestSpecial.test_enum_of_types +MyTypes Lib/test/test_enum.py /^ class MyTypes(Enum):$/;" c function:TestSpecial.test_enum_of_types_with_nonmember +MyTypes2 Lib/test/test_enum.py /^ class MyTypes2(Enum):$/;" c function:TestSpecial.test_enum_of_types +MyTypes2 Lib/test/test_enum.py /^ class MyTypes2(Enum):$/;" c function:TestSpecial.test_enum_of_types_with_nonmember +MyTzInfo Lib/test/datetimetester.py /^ class MyTzInfo(FixedOffset):$/;" c function:TestDateTime.test_strftime_with_bad_tzname_replace +MyUnBrokenEnum Lib/test/test_enum.py /^ class MyUnBrokenEnum(UnBrokenInt, Enum):$/;" c function:TestSpecial.test_inherited_data_type +MyUnicode Lib/test/pickletester.py /^class MyUnicode(str):$/;" c +MyUnion Lib/test/test_ctypes/test_cast.py /^ class MyUnion(Union):$/;" c function:Test.test_bad_type_arg +MyUserDict Lib/test/test_userdict.py /^ class MyUserDict(collections.UserDict):$/;" c function:UserDictTest.test_all +MyView Lib/test/test_memoryview.py /^ class MyView():$/;" c function:AbstractMemoryTests.test_gc +MyWarn Lib/test/test_unittest/test_case.py /^ class MyWarn(Warning):$/;" c function:.testAssertWarnsRegexInvalidRegex +MyWarningClass Lib/test/test_warnings/__init__.py /^ class MyWarningClass(Warning):$/;" c function:WarnTests.test_warning_classes +MyWatcher Lib/test/test_asyncio/test_unix_events.py /^ class MyWatcher(asyncio.AbstractChildWatcher):$/;" c function:AbstractChildWatcherTests.test_warns_on_subclassing +MyWrapper Lib/test/test_unicode.py /^ class MyWrapper:$/;" c function:UnicodeTest.test_join +MyWritePipeProto Lib/test/test_asyncio/test_events.py /^class MyWritePipeProto(asyncio.BaseProtocol):$/;" c +MyXMLRPCServer Lib/test/test_xmlrpc.py /^ class MyXMLRPCServer(xmlrpc.server.MultiPathXMLRPCServer):$/;" c function:http_multi_server +MyXMLRPCServer Lib/test/test_xmlrpc.py /^ class MyXMLRPCServer(xmlrpc.server.SimpleXMLRPCServer):$/;" c function:http_server +My_PyObj_FromPtr Modules/_ctypes/callproc.c /^My_PyObj_FromPtr(PyObject *self, PyObject *args)$/;" f file: +My_Py_DECREF Modules/_ctypes/callproc.c /^My_Py_DECREF(PyObject *self, PyObject *arg)$/;" f file: +My_Py_INCREF Modules/_ctypes/callproc.c /^My_Py_INCREF(PyObject *self, PyObject *arg)$/;" f file: +N Lib/test/_test_multiprocessing.py /^ N = 5$/;" v class:_TestBarrier +N Lib/test/lock_tests.py /^ N = 5$/;" v class:BarrierTests +N Lib/test/test_ast.py /^ class N(ast.Num):$/;" c function:AST_Tests.test_constant_subclasses_deprecated +N Lib/test/test_ast.py /^ class N(ast.Constant):$/;" c function:AST_Tests.test_constant_subclasses +N Lib/test/test_compile.py /^ N = 100$/;" v class:TestExpressionStackSize +N Lib/test/test_descr.py /^ class N(J):$/;" c function:.test_set_class +N Lib/test/test_enumerate.py /^class N:$/;" c +N Lib/test/test_heapq.py /^class N:$/;" c +N Lib/test/test_itertools.py /^class N:$/;" c +N Lib/test/test_set.py /^class N:$/;" c +N Lib/test/test_types.py /^ class N(type, metaclass=M):$/;" c function:ClassCreationTests.test_one_argument_type +N Lib/test/test_unicode.py /^ class N:$/;" c function:UnicodeTest.test_format +N Lib/tkinter/constants.py /^N='n'$/;" v +N Lib/turtledemo/chaos.py /^N = 80$/;" v +N Modules/_ctypes/_ctypes_test.c /^ short M: 1, N: 2, O: 3, P: 4, Q: 5, R: 6, S: 7;$/;" m struct:BITS file: +N Modules/_randommodule.c 85;" d file: +N Modules/cjkcodecs/cjkcodecs.h 25;" d +N Modules/cmathmodule.c 153;" d file: +N Tools/cases_generator/parser.py /^N = TypeVar("N", bound="Node")$/;" v +N10pem_ctx_st4DOLLAR_16E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N10pem_ctx_st4DOLLAR_16E(Structure):$/;" c +N10pem_ctx_st4DOLLAR_17E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N10pem_ctx_st4DOLLAR_17E(Structure):$/;" c +N10ssl_ctx_st4DOLLAR_18E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N10ssl_ctx_st4DOLLAR_18E(Structure):$/;" c +N11evp_pkey_st4DOLLAR_12E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N11evp_pkey_st4DOLLAR_12E(Union):$/;" c +N12asn1_type_st4DOLLAR_11E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N12asn1_type_st4DOLLAR_11E(Union):$/;" c +N13ssl2_state_st4DOLLAR_19E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N13ssl2_state_st4DOLLAR_19E(Structure):$/;" c +N13ssl3_state_st4DOLLAR_20E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N13ssl3_state_st4DOLLAR_20E(Structure):$/;" c +N14x509_object_st4DOLLAR_14E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N14x509_object_st4DOLLAR_14E(Union):$/;" c +N18x509_attributes_st4DOLLAR_13E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N18x509_attributes_st4DOLLAR_13E(Union):$/;" c +N2 Lib/test/test_ast.py /^ class N2(ast.Num):$/;" c function:AST_Tests.test_constant_subclasses_deprecated +N2 Lib/test/test_ast.py /^ class N2(ast.Constant):$/;" c function:AST_Tests.test_constant_subclasses +N23_ossl_old_des_ks_struct4DOLLAR_10E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N23_ossl_old_des_ks_struct4DOLLAR_10E(Union):$/;" c +N4wait3DOLLAR_3E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N4wait3DOLLAR_3E(Structure):$/;" c +N4wait3DOLLAR_4E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N4wait3DOLLAR_4E(Structure):$/;" c +N6DES_ks3DOLLAR_9E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N6DES_ks3DOLLAR_9E(Union):$/;" c +N8pkcs7_st4DOLLAR_15E Lib/test/test_lib2to3/data/infinite_recursion.py /^class N8pkcs7_st4DOLLAR_15E(Union):$/;" c +NA Lib/test/test_random.py /^ class NA(list):$/;" c function:TestBasicOps.test_choice_with_numpy +NA Tools/build/check_extension_modules.py /^ NA = "n\/a"$/;" v class:ModuleState +NAK Lib/curses/ascii.py /^NAK = 0x15 # ^U$/;" v +NAME Include/internal/pycore_token.h 17;" d +NAME Lib/lib2to3/pgen2/token.py /^NAME = 1$/;" v +NAME Lib/pstats.py /^ NAME = 'name'$/;" v class:SortKey +NAME Lib/test/test_cppext/extension.cpp /^FUNC_NAME(NAME)(void)$/;" f +NAME Lib/test/test_cppext/extension.cpp 12;" d file: +NAME Lib/test/test_cppext/extension.cpp 14;" d file: +NAME Lib/test/test_import/__init__.py /^ NAME = '_testsinglephase'$/;" v class:SinglephaseInitTests +NAME Lib/test/test_pstats.py /^ NAME = 'name'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +NAME Lib/token.py /^NAME = 1$/;" v +NAME Python/sysmodule.c 3043;" d file: +NAME Python/sysmodule.c 3049;" d file: +NAMED Modules/expat/xmlparse.c /^} NAMED;$/;" t typeref:struct:__anon607 file: +NAMED_EXPR Lib/ast.py /^ NAMED_EXPR = auto() # := $/;" v class:_Precedence +NAMED_EXPR Lib/test/test_ast.py /^ NAMED_EXPR = enum.auto() # := $/;" v class:AST_Tests.test_precedence_enum._Precedence +NAMED_EXPR_COMP_CONFLICT Python/symtable.c 47;" d file: +NAMED_EXPR_COMP_INNER_LOOP_CONFLICT Python/symtable.c 50;" d file: +NAMED_EXPR_COMP_IN_CLASS Python/symtable.c 35;" d file: +NAMED_EXPR_COMP_IN_TYPEALIAS Python/symtable.c 41;" d file: +NAMED_EXPR_COMP_IN_TYPEPARAM Python/symtable.c 44;" d file: +NAMED_EXPR_COMP_IN_TYPEVAR_BOUND Python/symtable.c 38;" d file: +NAMED_EXPR_COMP_ITER_EXPR Python/symtable.c 53;" d file: +NAMED_FLAGS Lib/enum.py /^ NAMED_FLAGS = "multi-flag aliases may not contain unnamed flags"$/;" v class:EnumCheck +NAMED_SEQUENCES Tools/unicode/makeunicodedata.py /^NAMED_SEQUENCES = "NamedSequences%s.txt"$/;" v +NAMED_SEQUENCES_START Tools/unicode/makeunicodedata.py /^NAMED_SEQUENCES_START = 0xF0200$/;" v +NAMES Lib/lib2to3/fixes/fix_asserts.py /^NAMES = dict($/;" v +NAMESPACE_DNS Lib/uuid.py /^NAMESPACE_DNS = UUID('6ba7b810-9dad-11d1-80b4-00c04fd430c8')$/;" v +NAMESPACE_ERR Lib/xml/dom/__init__.py /^NAMESPACE_ERR = 14$/;" v +NAMESPACE_OID Lib/uuid.py /^NAMESPACE_OID = UUID('6ba7b812-9dad-11d1-80b4-00c04fd430c8')$/;" v +NAMESPACE_URL Lib/uuid.py /^NAMESPACE_URL = UUID('6ba7b811-9dad-11d1-80b4-00c04fd430c8')$/;" v +NAMESPACE_X500 Lib/uuid.py /^NAMESPACE_X500 = UUID('6ba7b814-9dad-11d1-80b4-00c04fd430c8')$/;" v +NAME_ALIASES Tools/unicode/makeunicodedata.py /^NAME_ALIASES = "NameAliases%s.txt"$/;" v +NAME_ALIASES_START Tools/unicode/makeunicodedata.py /^NAME_ALIASES_START = 0xF0000$/;" v +NAME_ERROR_MSG Python/ceval_macros.h 307;" d +NAME_MAPPING Lib/_compat_pickle.py /^NAME_MAPPING = {$/;" v +NAME_MAXLEN Modules/unicodename_db.h 3;" d +NAME_TOKEN Tools/peg_generator/pegen/c_generator.py /^ NAME_TOKEN = 0$/;" v class:NodeTypes +NAMLEN Modules/posixmodule.c 421;" d file: +NAMLEN Modules/posixmodule.c 425;" d file: +NAMLEN Modules/posixmodule.c 428;" d file: +NAMS Lib/telnetlib.py /^NAMS = bytes([4]) # approximate message size$/;" v +NAN Lib/test/datetimetester.py /^NAN = float("nan")$/;" v +NAN Lib/test/test_capi/test_getargs.py /^NAN = float('nan')$/;" v +NAN Lib/test/test_cmath.py /^NAN = float('nan')$/;" v +NAN Lib/test/test_complex.py /^NAN = float("nan")$/;" v +NAN Lib/test/test_float.py /^NAN = float("nan")$/;" v +NAN Lib/test/test_json/test_enum.py /^NAN = float('nan')$/;" v +NAN Lib/test/test_math.py /^NAN = float('nan')$/;" v +NAOCRD Lib/telnetlib.py /^NAOCRD = bytes([10]) # negotiate about CR disposition$/;" v +NAOFFD Lib/telnetlib.py /^NAOFFD = bytes([13]) # negotiate about formfeed disposition$/;" v +NAOHTD Lib/telnetlib.py /^NAOHTD = bytes([12]) # negotiate about horizontal tab disposition$/;" v +NAOHTS Lib/telnetlib.py /^NAOHTS = bytes([11]) # negotiate about horizontal tabstops$/;" v +NAOL Lib/telnetlib.py /^NAOL = bytes([8]) # negotiate about output line width$/;" v +NAOLFD Lib/telnetlib.py /^NAOLFD = bytes([16]) # negotiate about output LF disposition$/;" v +NAOP Lib/telnetlib.py /^NAOP = bytes([9]) # negotiate about output page size$/;" v +NAOVTD Lib/telnetlib.py /^NAOVTD = bytes([15]) # negotiate about vertical tab disposition$/;" v +NAOVTS Lib/telnetlib.py /^NAOVTS = bytes([14]) # negotiate about vertical tab stops$/;" v +NATIVE Lib/test/test_buffer.py /^NATIVE = {$/;" v +NATIVE Tools/wasm/wasm_build.py /^NATIVE = Platform($/;" v +NATIVE_BYTEORDER Modules/_tkinter.c 123;" d file: +NATIVE_BYTEORDER Modules/_tkinter.c 125;" d file: +NATIVE_TSS_KEY_T Include/cpython/pythread.h 17;" d +NATIVE_TSS_KEY_T Include/cpython/pythread.h 22;" d +NATIVE_TSS_KEY_T Include/cpython/pythread.h 25;" d +NATIVE_TSS_KEY_T Include/cpython/pythread.h 39;" d +NATIVE_WIN64 Tools/c-analyzer/distutils/msvc9compiler.py /^NATIVE_WIN64 = (sys.platform == 'win32' and sys.maxsize > 2**32)$/;" v +NAWS Lib/telnetlib.py /^NAWS = bytes([31]) # window size$/;" v +NBSLOT Objects/typeobject.c 9375;" d file: +NBSLOT Objects/typeobject.c 9398;" d file: +NB_ADD Include/opcode.h 236;" d +NB_AND Include/opcode.h 237;" d +NB_BINOP Objects/abstract.c 832;" d file: +NB_FLOOR_DIVIDE Include/opcode.h 238;" d +NB_INPLACE_ADD Include/opcode.h 249;" d +NB_INPLACE_AND Include/opcode.h 250;" d +NB_INPLACE_FLOOR_DIVIDE Include/opcode.h 251;" d +NB_INPLACE_LSHIFT Include/opcode.h 252;" d +NB_INPLACE_MATRIX_MULTIPLY Include/opcode.h 253;" d +NB_INPLACE_MULTIPLY Include/opcode.h 254;" d +NB_INPLACE_OR Include/opcode.h 256;" d +NB_INPLACE_POWER Include/opcode.h 257;" d +NB_INPLACE_REMAINDER Include/opcode.h 255;" d +NB_INPLACE_RSHIFT Include/opcode.h 258;" d +NB_INPLACE_SUBTRACT Include/opcode.h 259;" d +NB_INPLACE_TRUE_DIVIDE Include/opcode.h 260;" d +NB_INPLACE_XOR Include/opcode.h 261;" d +NB_LSHIFT Include/opcode.h 239;" d +NB_MATRIX_MULTIPLY Include/opcode.h 240;" d +NB_MULTIPLY Include/opcode.h 241;" d +NB_OR Include/opcode.h 243;" d +NB_POWER Include/opcode.h 244;" d +NB_REMAINDER Include/opcode.h 242;" d +NB_RSHIFT Include/opcode.h 245;" d +NB_SLOT Objects/abstract.c 831;" d file: +NB_SMALL_SIZE_CLASSES Include/internal/pycore_obmalloc.h 158;" d +NB_STATIC_BUFFERS Objects/stringlib/join.h 161;" d +NB_STATIC_BUFFERS Objects/stringlib/join.h 19;" d +NB_SUBTRACT Include/opcode.h 246;" d +NB_TERNOP Objects/abstract.c 834;" d file: +NB_TRUE_DIVIDE Include/opcode.h 247;" d +NB_XOR Include/opcode.h 248;" d +NCPUS_START Modules/posixmodule.c /^static const int NCPUS_START = sizeof(unsigned long) * CHAR_BIT;$/;" v file: +NCURSES_OPAQUE Include/py_curses.h 30;" d +NCount Modules/unicodedata.c 490;" d file: +ND Lib/inspect.py /^ ND = 0x8$/;" v class:BufferFlags +NDArrayObject Modules/_testbuffer.c /^} NDArrayObject;$/;" t typeref:struct:__anon645 file: +NDArray_Check Modules/_testbuffer.c 27;" d file: +NDArray_Type Modules/_testbuffer.c /^static PyTypeObject NDArray_Type = {$/;" v file: +NDArray_Type Modules/_testbuffer.c /^static PyTypeObject NDArray_Type;$/;" v file: +NDEBUG Lib/test/test_cppext/extension.cpp 7;" d file: +NDEBUG Modules/_testcapi/parts.h 16;" d +NDEBUG Modules/_testcapimodule.c 18;" d file: +NDEBUG Modules/_testclinic.c 6;" d file: +NDEBUG Modules/_testinternalcapi.c 10;" d file: +NDEBUG Programs/_testembed.c 6;" d file: +NDIGITS_MAX Objects/floatobject.c 1104;" d file: +NDIGITS_MAX Objects/floatobject.c 1115;" d file: +NDIGITS_MIN Objects/floatobject.c 1105;" d file: +NDIGITS_MIN Objects/floatobject.c 1116;" d file: +ND_ANY_CONTIGUOUS Modules/_testbuffer.c 71;" d file: +ND_C Modules/_testbuffer.c 61;" d file: +ND_C_CONTIGUOUS Modules/_testbuffer.c 69;" d file: +ND_DEFAULT Modules/_testbuffer.c 49;" d file: +ND_FORTRAN Modules/_testbuffer.c 54;" d file: +ND_FORTRAN_CONTIGUOUS Modules/_testbuffer.c 70;" d file: +ND_GETBUF_FAIL Modules/_testbuffer.c 58;" d file: +ND_GETBUF_UNDEFINED Modules/_testbuffer.c 59;" d file: +ND_IS_CONSUMER Modules/_testbuffer.c 65;" d file: +ND_MAX_NDIM Modules/_testbuffer.c 40;" d file: +ND_OWN_ARRAYS Modules/_testbuffer.c 62;" d file: +ND_PIL Modules/_testbuffer.c 56;" d file: +ND_REDIRECT Modules/_testbuffer.c 57;" d file: +ND_SCALAR Modules/_testbuffer.c 55;" d file: +ND_VAREXPORT Modules/_testbuffer.c 51;" d file: +ND_WRITABLE Modules/_testbuffer.c 53;" d file: +NE Lib/tkinter/constants.py /^NE='ne'$/;" v +NEEDS_TRIM Modules/_collectionsmodule.c 308;" d file: +NEED_DICT_COPYING Lib/test/test_descr.py /^ NEED_DICT_COPYING = False$/;" v class:PicklingTests.test_reduce_copying.C2 +NEED_DICT_COPYING Lib/test/test_descr.py /^ NEED_DICT_COPYING = False$/;" v class:PicklingTests.test_reduce_copying.C3 +NEED_DICT_COPYING Lib/test/test_descr.py /^ NEED_DICT_COPYING = False$/;" v class:PicklingTests.test_reduce_copying.C4 +NEED_DICT_COPYING Lib/test/test_descr.py /^ NEED_DICT_COPYING = False$/;" v class:PicklingTests.test_reduce_copying.C5 +NEED_DICT_COPYING Lib/test/test_descr.py /^ NEED_DICT_COPYING = True$/;" v class:PicklingTests.test_reduce_copying.C1 +NEED_FIX_FILE Tools/c-analyzer/cpython/_analyzer.py /^NEED_FIX_FILE = os.path.join(_DATA_DIR, 'globals-to-fix.tsv')$/;" v +NEED_OPCODE_METADATA Python/flowgraph.c 10;" d file: +NEED_OPCODE_METADATA Python/flowgraph.c 12;" d file: +NEED_OPCODE_TABLES Python/compile.c 28;" d file: +NEED_OPCODE_TABLES Python/compile.c 30;" d file: +NEED_RETRY Objects/unicodeobject.c 6890;" d file: +NEED_RETRY Objects/unicodeobject.c 7584;" d file: +NEG_INF Lib/test/test_json/test_enum.py /^NEG_INF = float('-inf')$/;" v +NEI Lib/test/test_enum.py /^ class NEI(NamedInt, Enum):$/;" c function:TestSpecial.test_subclasses_with_direct_pickle_support +NEI Lib/test/test_enum.py /^ class NEI(NamedInt, Enum):$/;" c function:TestSpecial.test_subclasses_with_getnewargs +NEI Lib/test/test_enum.py /^ class NEI(NamedInt, Enum):$/;" c function:TestSpecial.test_subclasses_with_getnewargs_ex +NEI Lib/test/test_enum.py /^ class NEI(NamedInt, Enum):$/;" c function:TestSpecial.test_subclasses_with_reduce +NEI Lib/test/test_enum.py /^ class NEI(NamedInt, Enum):$/;" c function:TestSpecial.test_subclasses_with_reduce_ex +NEI Lib/test/test_enum.py /^ class NEI(NamedInt, Enum):$/;" c function:TestSpecial.test_subclasses_without_direct_pickle_support +NEPTUNE Lib/test/test_enum.py /^ NEPTUNE = (1.024e+26, 2.4746e7)$/;" v class:TestSpecial.test_init.Planet +NESTED_INCR_AMT Tools/peg_generator/scripts/find_max_nesting.py /^NESTED_INCR_AMT = 10$/;" v +NETSCAPE_CERT_SEQUENCE Lib/test/test_lib2to3/data/infinite_recursion.py /^NETSCAPE_CERT_SEQUENCE = Netscape_certificate_sequence$/;" v +NETSCAPE_MAGIC_RGX Lib/http/cookiejar.py /^NETSCAPE_MAGIC_RGX = re.compile("#( Netscape)? HTTP Cookie File")$/;" v +NETSCAPE_SPKAC Lib/test/test_lib2to3/data/infinite_recursion.py /^NETSCAPE_SPKAC = Netscape_spkac_st$/;" v +NETSCAPE_SPKI Lib/test/test_lib2to3/data/infinite_recursion.py /^NETSCAPE_SPKI = Netscape_spki_st$/;" v +NETWORK_AUTHENTICATION_REQUIRED Lib/http/__init__.py /^ NETWORK_AUTHENTICATION_REQUIRED = (511,$/;" v class:HTTPStatus +NETWORK_AUTHENTICATION_REQUIRED Lib/test/test_httplib.py /^ NETWORK_AUTHENTICATION_REQUIRED = (511,$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NET_BASE Tools/c-analyzer/distutils/msvc9compiler.py /^ NET_BASE = r"Software\\Microsoft\\.NETFramework"$/;" v +NET_BASE Tools/c-analyzer/distutils/msvc9compiler.py /^ NET_BASE = r"Software\\Wow6432Node\\Microsoft\\.NETFramework"$/;" v +NEVER_EQ Lib/test/support/__init__.py /^NEVER_EQ = _NEVER_EQ()$/;" v +NEWFALSE Lib/pickle.py /^NEWFALSE = b'\\x89' # push False$/;" v +NEWFALSE Modules/_pickle.c /^ NEWFALSE = '\\x89',$/;" e enum:opcode file: +NEWLINE Include/internal/pycore_token.h 20;" d +NEWLINE Lib/lib2to3/pgen2/token.py /^NEWLINE = 4$/;" v +NEWLINE Lib/test/smtpd.py /^NEWLINE = '\\n'$/;" v +NEWLINE Lib/test/test_univnewlines.py /^ NEWLINE = '\\n'$/;" v class:TestLFNewlines +NEWLINE Lib/test/test_univnewlines.py /^ NEWLINE = '\\r'$/;" v class:TestCRNewlines +NEWLINE Lib/test/test_univnewlines.py /^ NEWLINE = '\\r\\n'$/;" v class:TestCRLFNewlines +NEWLINE Lib/test/test_univnewlines.py /^ NEWLINE = ('\\r', '\\n')$/;" v class:TestMixedNewlines +NEWLINE Lib/token.py /^NEWLINE = 4$/;" v +NEWLINES Tools/iobench/iobench.py /^NEWLINES = 'lf'$/;" v +NEWLINE_CR Objects/fileobject.c 21;" d file: +NEWLINE_CRLF Objects/fileobject.c 23;" d file: +NEWLINE_LF Objects/fileobject.c 22;" d file: +NEWLINE_UNKNOWN Objects/fileobject.c 20;" d file: +NEWOBJ Lib/pickle.py /^NEWOBJ = b'\\x81' # build object by applying cls.__new__ to argtuple$/;" v +NEWOBJ Modules/_pickle.c /^ NEWOBJ = '\\x81',$/;" e enum:opcode file: +NEWOBJ_EX Lib/pickle.py /^NEWOBJ_EX = b'\\x92' # like NEWOBJ but work with keyword only arguments$/;" v +NEWOBJ_EX Modules/_pickle.c /^ NEWOBJ_EX = '\\x92',$/;" e enum:opcode file: +NEWSESSION_TICKET Lib/ssl.py /^ NEWSESSION_TICKET = 4$/;" v class:_TLSMessageType +NEWSESSION_TICKET Lib/test/test_ssl.py /^ NEWSESSION_TICKET = 4$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +NEWTRUE Lib/pickle.py /^NEWTRUE = b'\\x88' # push True$/;" v +NEWTRUE Modules/_pickle.c /^ NEWTRUE = '\\x88',$/;" e enum:opcode file: +NEW_BITFIELD Modules/_ctypes/cfield.c 60;" d file: +NEW_ENVIRON Lib/telnetlib.py /^NEW_ENVIRON = bytes([39]) # New - Environment variables$/;" v +NEW_JUMP_TARGET_LABEL Python/compile.c 113;" d file: +NEW_TYPE_COMMENT Parser/pegen.h /^NEW_TYPE_COMMENT(Parser *p, Token *tc)$/;" f +NEW_YEAR Lib/test/test_enum.py /^ NEW_YEAR = 2013, 1, 1$/;" v class:TestSpecial.setUp.Holiday +NEXITFUNCS Include/internal/pycore_atexit.h 19;" d +NEXT Modules/cjkcodecs/cjkcodecs.h 127;" d +NEXTC Python/ast_opt.c 303;" d file: +NEXTC Python/ast_opt.c 353;" d file: +NEXTOPARG Python/ceval_macros.h 142;" d +NEXT_BUFFER Lib/pickle.py /^NEXT_BUFFER = b'\\x97' # push next out-of-band buffer$/;" v +NEXT_BUFFER Modules/_pickle.c /^ NEXT_BUFFER = '\\x97',$/;" e enum:opcode file: +NEXT_CODEC Modules/cjkcodecs/cjkcodecs.h 275;" d +NEXT_GLOBAL_VERSION_TAG Objects/typeobject.c 50;" d file: +NEXT_IN Modules/cjkcodecs/cjkcodecs.h 113;" d +NEXT_INCHAR Modules/cjkcodecs/cjkcodecs.h 118;" d +NEXT_LOG2_SHARED_KEYS_MAX_SIZE Include/internal/pycore_dict.h 114;" d +NEXT_MASK_UNREACHABLE Modules/gcmodule.c 69;" d file: +NEXT_OUT Modules/cjkcodecs/cjkcodecs.h 122;" d +NEXT_PROTO Lib/ssl.py /^ NEXT_PROTO = 67$/;" v class:_TLSMessageType +NEXT_PROTO Lib/test/test_ssl.py /^ NEXT_PROTO = 67$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +NEXT_VERSION_TAG Objects/typeobject.c 51;" d file: +NFAState Lib/lib2to3/pgen2/pgen.py /^class NFAState(object):$/;" c +NFC Lib/test/test_unicodedata.py /^ def NFC(str):$/;" f function:NormalizationTest.run_normalization_tests +NFD Lib/test/test_unicodedata.py /^ def NFD(str):$/;" f function:NormalizationTest.run_normalization_tests +NFKC Lib/test/test_unicodedata.py /^ def NFKC(str):$/;" f function:NormalizationTest.run_normalization_tests +NFKD Lib/test/test_unicodedata.py /^ def NFKD(str):$/;" f function:NormalizationTest.run_normalization_tests +NFL Lib/pstats.py /^ NFL = 'nfl'$/;" v class:SortKey +NFL Lib/test/test_pstats.py /^ NFL = 'nfl'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +NGAMMA_INTEGRAL Modules/mathmodule.c 351;" d file: +NHASHBITS Lib/test/support/__init__.py /^NHASHBITS = sys.hash_info.width # number of bits in hash() result$/;" v +NINF Lib/test/test_math.py /^NINF = float('-inf')$/;" v +NIS_BADARGS Modules/nismodule.c /^ NIS_BADARGS = -7,$/;" e enum:nisstat file: +NIS_BADDB Modules/nismodule.c /^ NIS_BADDB = -5,$/;" e enum:nisstat file: +NIS_BADOP Modules/nismodule.c /^ NIS_BADOP = -4,$/;" e enum:nisstat file: +NIS_FALSE Modules/nismodule.c /^ NIS_FALSE = 0,$/;" e enum:nisstat file: +NIS_NODOM Modules/nismodule.c /^ NIS_NODOM = -2,$/;" e enum:nisstat file: +NIS_NOKEY Modules/nismodule.c /^ NIS_NOKEY = -3,$/;" e enum:nisstat file: +NIS_NOMAP Modules/nismodule.c /^ NIS_NOMAP = -1,$/;" e enum:nisstat file: +NIS_NOMORE Modules/nismodule.c /^ NIS_NOMORE = 2,$/;" e enum:nisstat file: +NIS_TRUE Modules/nismodule.c /^ NIS_TRUE = 1,$/;" e enum:nisstat file: +NIS_VERS Modules/nismodule.c /^ NIS_VERS = -8$/;" e enum:nisstat file: +NIS_YPERR Modules/nismodule.c /^ NIS_YPERR = -6,$/;" e enum:nisstat file: +NI_DGRAM Modules/addrinfo.h 121;" d +NI_MAXHOST Modules/addrinfo.h 109;" d +NI_MAXHOST Modules/socketmodule.c 531;" d file: +NI_MAXSERV Modules/addrinfo.h 110;" d +NI_MAXSERV Modules/socketmodule.c 534;" d file: +NI_NAMEREQD Modules/addrinfo.h 119;" d +NI_NOFQDN Modules/addrinfo.h 117;" d +NI_NUMERICHOST Modules/addrinfo.h 118;" d +NI_NUMERICSERV Modules/addrinfo.h 120;" d +NL Include/internal/pycore_token.h 81;" d +NL Lib/curses/ascii.py /^NL = 0x0a # ^J$/;" v +NL Lib/email/base64mime.py /^NL = '\\n'$/;" v +NL Lib/email/feedparser.py /^NL = '\\n'$/;" v +NL Lib/email/generator.py /^NL = '\\n' # XXX: no longer used by the code below.$/;" v +NL Lib/email/header.py /^NL = '\\n'$/;" v +NL Lib/email/quoprimime.py /^NL = '\\n'$/;" v +NL Lib/lib2to3/pgen2/token.py /^NL = 54$/;" v +NL Lib/test/test_email/test_email.py /^NL = '\\n'$/;" v +NL Lib/token.py /^NL = 65$/;" v +NLCRE Lib/email/feedparser.py /^NLCRE = re.compile(r'\\r\\n|\\r|\\n')$/;" v +NLCRE Lib/email/generator.py /^NLCRE = re.compile(r'\\r\\n|\\r|\\n')$/;" v +NLCRE_bol Lib/email/feedparser.py /^NLCRE_bol = re.compile(r'(\\r\\n|\\r|\\n)')$/;" v +NLCRE_crack Lib/email/feedparser.py /^NLCRE_crack = re.compile(r'(\\r\\n|\\r|\\n)')$/;" v +NLCRE_eol Lib/email/feedparser.py /^NLCRE_eol = re.compile(r'(\\r\\n|\\r|\\n)\\Z')$/;" v +NLIST Modules/_testcapimodule.c 166;" d file: +NLIST Modules/_testcapimodule.c 196;" d file: +NLOOPS Lib/test/test_importlib/partial/cfimport.py /^NLOOPS = 50$/;" v +NLST_DATA Lib/test/test_ftplib.py /^NLST_DATA = 'foo\\r\\nbar\\r\\n non-ascii char \\xAE\\r\\n'$/;" v +NNTP Lib/nntplib.py /^class NNTP:$/;" c +NNTPDataError Lib/nntplib.py /^class NNTPDataError(NNTPError):$/;" c +NNTPError Lib/nntplib.py /^class NNTPError(Exception):$/;" c +NNTPPermanentError Lib/nntplib.py /^class NNTPPermanentError(NNTPError):$/;" c +NNTPProtocolError Lib/nntplib.py /^class NNTPProtocolError(NNTPError):$/;" c +NNTPReplyError Lib/nntplib.py /^class NNTPReplyError(NNTPError):$/;" c +NNTPServer Lib/test/test_nntplib.py /^class NNTPServer(nntplib.NNTP):$/;" c +NNTPTemporaryError Lib/nntplib.py /^class NNTPTemporaryError(NNTPError):$/;" c +NNTP_CLASS Lib/test/test_nntplib.py /^ NNTP_CLASS = NNTP$/;" v class:NetworkedNNTPTests +NNTP_CLASS Lib/test/test_nntplib.py /^ NNTP_CLASS = getattr(nntplib, 'NNTP_SSL', None)$/;" v class:NetworkedNNTP_SSLTests +NNTP_HOST Lib/test/test_nntplib.py /^ NNTP_HOST = 'news.trigofacile.com'$/;" v class:NetworkedNNTPTests +NNTP_HOST Lib/test/test_nntplib.py /^ NNTP_HOST = 'nntp.aioe.org'$/;" v class:NetworkedNNTP_SSLTests +NNTP_PORT Lib/nntplib.py /^NNTP_PORT = 119$/;" v +NNTP_SSL Lib/nntplib.py /^ class NNTP_SSL(NNTP):$/;" c class:NNTP +NNTP_SSL_PORT Lib/nntplib.py /^NNTP_SSL_PORT = 563$/;" v +NNTPv1Handler Lib/test/test_nntplib.py /^class NNTPv1Handler:$/;" c +NNTPv1Tests Lib/test/test_nntplib.py /^class NNTPv1Tests(NNTPv1v2TestsMixin, MockedNNTPTestsMixin, unittest.TestCase):$/;" c +NNTPv1v2TestsMixin Lib/test/test_nntplib.py /^class NNTPv1v2TestsMixin:$/;" c +NNTPv2Handler Lib/test/test_nntplib.py /^class NNTPv2Handler(NNTPv1Handler):$/;" c +NNTPv2Tests Lib/test/test_nntplib.py /^class NNTPv2Tests(NNTPv1v2TestsMixin, MockedNNTPTestsMixin, unittest.TestCase):$/;" c +NO Lib/test/test_enum.py /^ NO = 0$/;" v class:TestSpecial.test_member_from_member_access.Di +NO Lib/tkinter/messagebox.py /^NO = "no"$/;" v +NO Modules/getaddrinfo.c 70;" d file: +NO Modules/getnameinfo.c 56;" d file: +NO Modules/unicodedata.c /^typedef enum {YES = 0, MAYBE = 1, NO = 2} QuickcheckResult;$/;" e enum:__anon643 file: +NOCHAR Modules/cjkcodecs/cjkcodecs.h 19;" d +NODE_CLONED Lib/xml/dom/__init__.py /^ NODE_CLONED = 1$/;" v class:UserDataHandler +NODE_DELETED Lib/xml/dom/__init__.py /^ NODE_DELETED = 3$/;" v class:UserDataHandler +NODE_IMPORTED Lib/xml/dom/__init__.py /^ NODE_IMPORTED = 2$/;" v class:UserDataHandler +NODE_RENAMED Lib/xml/dom/__init__.py /^ NODE_RENAMED = 4$/;" v class:UserDataHandler +NOFLAG Lib/re/__init__.py /^ NOFLAG = 0$/;" v class:RegexFlag +NOFLAG Lib/test/test_enum.py /^ NOFLAG = 0$/;" v class:FlagStoogesWithZero +NOFLAG Lib/test/test_enum.py /^ NOFLAG = 0$/;" v class:IntFlagStoogesWithZero +NOFS Lib/test/datetimetester.py /^ class NOFS(DST):$/;" c function:TestDateTimeTZ.test_utctimetuple +NOGPG Tools/msi/uploadrelease.bat /^if "%1" EQU "--skip-gpg" (set NOGPG=true) && shift && goto CheckOpts$/;" v +NOGPG Tools/msi/uploadrelease.bat /^set NOGPG=$/;" v +NOKIACERT Lib/test/test_ssl.py /^NOKIACERT = data_file("nokia.pem")$/;" v +NONE Lib/pickle.py /^NONE = b'N' # push None$/;" v +NONE Lib/test/test_enum.py /^ NONE = TTuple(0, 0, [])$/;" v class:TestSpecial.test_namedtuple_as_value.NTEnum +NONE Lib/tkinter/constants.py /^NONE='none'$/;" v +NONE Modules/_pickle.c /^ NONE = 'N',$/;" e enum:opcode file: +NONE Modules/cjkcodecs/_codecs_kr.c 165;" d file: +NONE Modules/cjkcodecs/_codecs_kr.c 321;" d file: +NONE Modules/cjkcodecs/_codecs_kr.c 452;" d file: +NONE Modules/cjkcodecs/_codecs_kr.c 92;" d file: +NONE Tools/build/umarshal.py /^ NONE = ord('N')$/;" v class:Type +NONEXISTENT_FILENAME Lib/test/test_linecache.py /^NONEXISTENT_FILENAME = FILENAME + '.missing'$/;" v +NONEXISTINGCERT Lib/test/test_ssl.py /^NONEXISTINGCERT = data_file("XXXnonexisting.pem")$/;" v +NONEXISTING_CMD Lib/test/test_subprocess.py /^NONEXISTING_CMD = ('nonexisting_i_hope',)$/;" v +NONEXISTING_ERRORS Lib/test/test_subprocess.py /^NONEXISTING_ERRORS = (FileNotFoundError, NotADirectoryError, PermissionError)$/;" v +NONLOCAL_AFTER_ASSIGN Python/symtable.c 18;" d file: +NONLOCAL_AFTER_USE Python/symtable.c 24;" d file: +NONLOCAL_ANNOT Python/symtable.c 30;" d file: +NONLOCAL_PARAM Python/symtable.c 12;" d file: +NONSPACECRE Lib/configparser.py /^ NONSPACECRE = re.compile(r"\\S")$/;" v class:RawConfigParser +NON_AUTHORITATIVE_INFORMATION Lib/http/__init__.py /^ NON_AUTHORITATIVE_INFORMATION = (203,$/;" v class:HTTPStatus +NON_AUTHORITATIVE_INFORMATION Lib/test/test_httplib.py /^ NON_AUTHORITATIVE_INFORMATION = (203,$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NON_BYTE_FORMAT Lib/test/test_buffer.py /^NON_BYTE_FORMAT = [c for c in fmtdict['@'] if not is_byte_format(c)]$/;" v +NON_DESCRIPTOR Python/specialize.c /^ NON_DESCRIPTOR, \/* Is not a descriptor, and is an instance of an immutable class *\/$/;" e enum:__anon686 file: +NON_EXACT_TOKENS Tools/peg_generator/pegen/testutil.py /^NON_EXACT_TOKENS = {$/;" v +NON_GENERATED_IMMORTAL_OBJECTS Tools/build/generate_global_objects.py /^NON_GENERATED_IMMORTAL_OBJECTS = [$/;" v +NON_INIT_CORO_MSG Objects/genobject.c /^static const char *NON_INIT_CORO_MSG = "can't send non-None value to a "$/;" v file: +NON_OVERRIDING Python/specialize.c /^ NON_OVERRIDING, \/* Is another non-overriding descriptor, and is an instance of an immutable class*\/$/;" e enum:__anon686 file: +NON_SIZE_BITS Include/internal/pycore_long.h 119;" d +NON_SIZE_MASK Include/internal/pycore_long.h 232;" d +NOOPT Lib/telnetlib.py /^NOOPT = bytes([0])$/;" v +NOOP_PROGRAM Lib/test/test_posix.py /^ NOOP_PROGRAM = (sys.executable, '-I', '-S', '-c', 'pass')$/;" v class:_PosixSpawnMixin +NOP Include/opcode.h 17;" d +NOP Lib/telnetlib.py /^NOP = bytes([241]) # No Operation$/;" v +NOPURGE Tools/msi/uploadrelease.bat /^if "%1" EQU "--skip-purge" (set NOPURGE=true) && shift && goto CheckOpts$/;" v +NOPURGE Tools/msi/uploadrelease.bat /^set NOPURGE=$/;" v +NORMAL Lib/test/test_zoneinfo/test_zoneinfo.py /^ NORMAL = 0$/;" v class:TZStrTest +NORMAL Lib/tkinter/constants.py /^NORMAL='normal'$/;" v +NORMAL Lib/tkinter/font.py /^NORMAL = "normal"$/;" v +NORMALIZE_WHITESPACE Lib/doctest.py /^NORMALIZE_WHITESPACE = register_optionflag('NORMALIZE_WHITESPACE')$/;" v +NORMAL_VTABLE Modules/expat/xmltok.c 219;" d file: +NORMPATH_CASES Lib/test/test_posixpath.py /^ NORMPATH_CASES = [$/;" v class:PosixPathTest +NORTH Lib/test/test_enum.py /^ NORTH = 'north'$/;" v class:TestSpecial.setUp.Directional +NOSANFILE Lib/test/test_ssl.py /^NOSANFILE = data_file("nosan.pem")$/;" v +NOSAN_HOSTNAME Lib/test/test_ssl.py /^NOSAN_HOSTNAME = 'localhost'$/;" v +NOT Lib/ast.py /^ NOT = auto() # 'not'$/;" v class:_Precedence +NOT Lib/test/test_ast.py /^ NOT = enum.auto() # 'not'$/;" v class:AST_Tests.test_precedence_enum._Precedence +NOT Tools/cases_generator/lexer.py /^NOT = r'~'$/;" v +NOTATION_NODE Lib/xml/dom/__init__.py /^ NOTATION_NODE = 12$/;" v class:Node +NOTEQUAL Include/internal/pycore_token.h 44;" d +NOTEQUAL Lib/lib2to3/pgen2/token.py /^NOTEQUAL = 29$/;" v +NOTEQUAL Lib/token.py /^NOTEQUAL = 28$/;" v +NOTEST Tools/msi/uploadrelease.bat /^if "%1" EQU "--skip-test" (set NOTEST=true) && shift && goto CheckOpts$/;" v +NOTEST Tools/msi/uploadrelease.bat /^if "%1" EQU "-T" (set NOTEST=true) && shift && goto CheckOpts$/;" v +NOTEST Tools/msi/uploadrelease.bat /^set NOTEST=$/;" v +NOTREE Tools/peg_generator/scripts/test_parse_directory.py /^NOTREE = 0$/;" v +NOTSET Lib/logging/__init__.py /^NOTSET = 0$/;" v +NOTSET Lib/multiprocessing/util.py /^NOTSET = 0$/;" v +NOT_ACCEPTABLE Lib/http/__init__.py /^ NOT_ACCEPTABLE = (406, 'Not Acceptable',$/;" v class:HTTPStatus +NOT_ACCEPTABLE Lib/test/test_httplib.py /^ NOT_ACCEPTABLE = (406, 'Not Acceptable',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NOT_A_BASE_TYPE Lib/test/test_typing.py /^NOT_A_BASE_TYPE = "type 'typing.%s' is not an acceptable base type"$/;" v +NOT_EXTENDED Lib/http/__init__.py /^ NOT_EXTENDED = 510, 'Not Extended'$/;" v class:HTTPStatus +NOT_EXTENDED Lib/test/test_httplib.py /^ NOT_EXTENDED = 510, 'Not Extended'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NOT_FOUND Lib/http/__init__.py /^ NOT_FOUND = (404, 'Not Found',$/;" v class:HTTPStatus +NOT_FOUND Lib/test/test_httplib.py /^ NOT_FOUND = (404, 'Not Found',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NOT_FOUND Lib/test/test_importlib/source/test_finder.py /^ NOT_FOUND = (None, [])$/;" v class:FinderTestsPEP420 +NOT_FOUND Lib/test/test_importlib/source/test_finder.py /^ NOT_FOUND = None$/;" v class:FinderTestsPEP451 +NOT_FOUND Objects/stringlib/fastsearch.h 539;" d +NOT_FOUND_ERR Lib/xml/dom/__init__.py /^NOT_FOUND_ERR = 8$/;" v +NOT_IMPL Modules/_decimal/_decimal.c 2862;" d file: +NOT_IMPLEMENTED Lib/http/__init__.py /^ NOT_IMPLEMENTED = (501, 'Not Implemented',$/;" v class:HTTPStatus +NOT_IMPLEMENTED Lib/test/test_httplib.py /^ NOT_IMPLEMENTED = (501, 'Not Implemented',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NOT_INITIALIZED Modules/_testsinglephase.c 28;" d file: +NOT_ISOLATED Lib/test/test_import/__init__.py /^ NOT_ISOLATED = {k: not v for k, v in ISOLATED.items()}$/;" v class:SubinterpImportTests +NOT_MODIFIED Lib/http/__init__.py /^ NOT_MODIFIED = (304, 'Not Modified',$/;" v class:HTTPStatus +NOT_MODIFIED Lib/test/test_httplib.py /^ NOT_MODIFIED = (304, 'Not Modified',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NOT_SET Modules/_csv.c 23;" d file: +NOT_SET Tools/c-analyzer/c_common/__init__.py /^NOT_SET = object()$/;" v +NOT_SUPPORTED_ERR Lib/xml/dom/__init__.py /^NOT_SUPPORTED_ERR = 9$/;" v +NOT_WELLFORMED_ERROR Lib/xmlrpc/client.py /^NOT_WELLFORMED_ERROR = -32700$/;" v +NOUPLOAD Tools/msi/uploadrelease.bat /^if "%1" EQU "--skip-upload" (set NOUPLOAD=true) && shift && goto CheckOpts$/;" v +NOUPLOAD Tools/msi/uploadrelease.bat /^set NOUPLOAD=$/;" v +NOVEMBER Lib/calendar.py /^ NOVEMBER = 11$/;" v class:Month +NOW Lib/test/test_zipimport.py /^NOW = time.time()$/;" v +NOWAIT_LOCK Include/pythread.h 34;" d +NO_APPLICATION_PROTOCOL Lib/ssl.py /^ NO_APPLICATION_PROTOCOL = 120$/;" v class:_TLSAlertType +NO_APPLICATION_PROTOCOL Lib/test/test_ssl.py /^ NO_APPLICATION_PROTOCOL = 120$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +NO_BITFIELD Modules/_ctypes/cfield.c 59;" d file: +NO_CERTIFICATE Lib/ssl.py /^ NO_CERTIFICATE = 41$/;" v class:_TLSAlertType +NO_CERTIFICATE Lib/test/test_ssl.py /^ NO_CERTIFICATE = 41$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +NO_CONTENT Lib/http/__init__.py /^ NO_CONTENT = 204, 'No Content', 'Request fulfilled, nothing follows'$/;" v class:HTTPStatus +NO_CONTENT Lib/test/test_httplib.py /^ NO_CONTENT = 204, 'No Content', 'Request fulfilled, nothing follows'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +NO_DATA_ALLOWED_ERR Lib/xml/dom/__init__.py /^NO_DATA_ALLOWED_ERR = 6$/;" v +NO_DEFAULT Lib/optparse.py /^NO_DEFAULT = ("NO", "DEFAULT")$/;" v +NO_DEFAULT_VALUE Lib/optparse.py /^ NO_DEFAULT_VALUE = "none"$/;" v class:HelpFormatter +NO_ENC Modules/expat/xmltok.c /^ NO_ENC$/;" e enum:__anon604 file: +NO_IDEAL_EXP Modules/_decimal/libmpdec/mpdecimal.c /^enum {NO_IDEAL_EXP, SET_IDEAL_EXP};$/;" e enum:__anon345 file: +NO_LABEL Python/compile.c /^static jump_target_label NO_LABEL = {-1};$/;" v file: +NO_LABEL Python/flowgraph.c /^static const jump_target_label NO_LABEL = {-1};$/;" v file: +NO_LINE Python/instrumentation.c 1296;" d file: +NO_LINE Python/instrumentation.c 245;" d file: +NO_LOCATION Include/internal/pycore_compile.h /^static const _PyCompilerSrcLocation NO_LOCATION = {-1, -1, -1, -1};$/;" v +NO_MODIFICATION_ALLOWED_ERR Lib/xml/dom/__init__.py /^NO_MODIFICATION_ALLOWED_ERR = 7$/;" v +NO_RENEGOTIATION Lib/ssl.py /^ NO_RENEGOTIATION = 100$/;" v class:_TLSAlertType +NO_RENEGOTIATION Lib/test/test_ssl.py /^ NO_RENEGOTIATION = 100$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +NO_SHIFT Modules/cjkcodecs/_codecs_iso2022.c 119;" d file: +NO_TTINFO Modules/_zoneinfo.c /^ _ttinfo NO_TTINFO;$/;" m struct:__anon641 file: +NO_VARARG Tools/clinic/clinic.py /^NO_VARARG = "PY_SSIZE_T_MAX"$/;" v +NPENDINGCALLS Include/internal/pycore_ceval_state.h 25;" d +NRMUTEX Python/thread_nt.h /^} NRMUTEX;$/;" t typeref:struct:_NRMUTEX +NS Lib/test/test_argparse.py /^class NS(object):$/;" c +NS Lib/test/test_complex.py /^ class NS:$/;" c function:ComplexTest.test_constructor +NS Lib/test/test_pydoc.py /^ class NS:$/;" c function:TestDescriptions.test_dict_attr_descriptor +NS Lib/tkinter/constants.py /^NS='ns'$/;" v +NS Modules/expat/xmltok.c 1648;" d file: +NS Modules/expat/xmltok.c 1653;" d file: +NS Modules/expat/xmltok.c 1658;" d file: +NS Modules/expat/xmltok.c 1665;" d file: +NSEW Lib/tkinter/constants.py /^NSEW='nsew'$/;" v +NSTATISTICS Parser/pegen.c 263;" d file: +NS_ATT Modules/expat/xmlparse.c /^} NS_ATT;$/;" t typeref:struct:__anon615 file: +NS_TO_100NS Python/pytime.c 31;" d file: +NS_TO_MS Python/pytime.c 29;" d file: +NS_TO_SEC Lib/test/test_time.py /^NS_TO_SEC = 10 ** 9$/;" v +NS_TO_US Python/pytime.c 30;" d file: +NT Lib/test/test_typing.py /^class NT(NamedTuple):$/;" c +NTC Lib/test/ann_module2.py /^class NTC:$/;" c +NTDDI_VERSION PC/pyconfig.h 177;" d +NTEST Lib/test/test_regrtest.py /^ NTEST = 4$/;" v class:ProgramsTestCase +NTEnum Lib/test/test_enum.py /^ class NTEnum(Enum):$/;" c function:TestSpecial.test_namedtuple_as_value +NTEventLogHandler Lib/logging/handlers.py /^class NTEventLogHandler(logging.Handler):$/;" c +NTEventLogHandlerTest Lib/test/test_logging.py /^class NTEventLogHandlerTest(BaseTest):$/;" c +NTHREADS Lib/test/test_importlib/partial/cfimport.py /^NTHREADS = 30$/;" v +NT_OFFSET Include/internal/pycore_token.h 84;" d +NT_OFFSET Lib/lib2to3/pgen2/token.py /^NT_OFFSET = 256$/;" v +NT_OFFSET Lib/token.py /^NT_OFFSET = 256$/;" v +NT_OFFSET Tools/build/generate_token.py /^NT_OFFSET = 256$/;" v +NT_THREADS PC/pyconfig.h 69;" d +NTimesUnwrappable Lib/test/test_inspect.py /^class NTimesUnwrappable:$/;" c +NUGET Tools/msi/get_externals.bat /^if "%NUGET%"=="" (set NUGET=%EXTERNALS_DIR%\\..\\nuget.exe)$/;" v +NUGET_URL Tools/msi/get_externals.bat /^if "%NUGET_URL%"=="" (set NUGET_URL=https:\/\/aka.ms\/nugetclidl)$/;" v +NUL Lib/curses/ascii.py /^NUL = 0x00 # ^@$/;" v +NUL Lib/tarfile.py /^NUL = b"\\0" # the null character$/;" v +NUL Lib/test/test_csv.py /^class NUL:$/;" c +NULL Lib/asyncio/windows_events.py /^NULL = _winapi.NULL$/;" v +NULL Lib/test/test_capi/test_abstract.py /^NULL = None$/;" v +NULL Lib/test/test_capi/test_codecs.py /^NULL = None$/;" v +NULL Lib/test/test_capi/test_dict.py /^NULL = None$/;" v +NULL Lib/test/test_capi/test_exceptions.py /^NULL = None$/;" v +NULL Lib/test/test_capi/test_misc.py /^NULL = None$/;" v +NULL Lib/test/test_capi/test_unicode.py /^NULL = None$/;" v +NULL Misc/coverity_model.c 21;" d file: +NULL Tools/build/umarshal.py /^ NULL = ord('0')$/;" v class:Type +NULL Tools/build/umarshal.py /^NULL = object() # marker$/;" v +NULL Tools/clinic/clinic.py /^NULL = Null()$/;" v +NULLABLE Modules/_testcapi/util.h 1;" d +NULLBYTECERT Lib/test/test_ssl.py /^NULLBYTECERT = data_file("nullbytecert.pem")$/;" v +NULL_OR_EMPTY Lib/test/test_call.py /^NULL_OR_EMPTY = object()$/;" v +NULL_VTABLE Modules/expat/xmltok.c 223;" d file: +NUMBER Include/internal/pycore_token.h 18;" d +NUMBER Lib/lib2to3/pgen2/token.py /^NUMBER = 2$/;" v +NUMBER Lib/token.py /^NUMBER = 2$/;" v +NUMBER Tools/cases_generator/lexer.py /^NUMBER = 'NUMBER'$/;" v +NUMBER_RE Lib/json/scanner.py /^NUMBER_RE = re.compile($/;" v +NUMBER_TOKEN Tools/peg_generator/pegen/c_generator.py /^ NUMBER_TOKEN = 1$/;" v class:NodeTypes +NUMBLOCKS Include/internal/pycore_obmalloc.h 317;" d +NUMERIC Lib/tkinter/constants.py /^NUMERIC='numeric'$/;" v +NUMERIC_MASK Objects/unicodectype.c 22;" d file: +NUMERIC_MASK Tools/unicode/makeunicodedata.py /^NUMERIC_MASK = 0x800$/;" v +NUMLOCKS Python/pystate.c 383;" d file: +NUMTASKS Lib/test/test_thread.py /^NUMTASKS = 10$/;" v +NUMTRIPS Lib/test/test_thread.py /^NUMTRIPS = 3$/;" v +NUM_BASIC_STATIC_TYPES Modules/_testcapimodule.c 2527;" d file: +NUM_BITS Modules/_ctypes/cfield.c 386;" d file: +NUM_CODE_WATCHERS Modules/_testcapi/watchers.c 297;" d file: +NUM_GENERATIONS Include/internal/pycore_gc.h 98;" d +NUM_KEYWORDS Lib/test/clinic.test.c 1980;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 1989;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2050;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2059;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2121;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2130;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2207;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2216;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2303;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2312;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2386;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2395;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2457;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2466;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2530;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2539;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2606;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2615;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2693;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2702;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2779;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2788;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2873;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2882;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2961;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 2970;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3048;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3057;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3144;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3153;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3236;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3245;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3328;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3337;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3432;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3441;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3543;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3552;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3652;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 3661;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4013;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4022;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4085;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4094;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4168;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4177;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4251;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4260;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4328;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4337;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4415;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4424;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4486;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4495;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4834;" d file: +NUM_KEYWORDS Lib/test/clinic.test.c 4843;" d file: +NUM_KEYWORDS Modules/_blake2/clinic/blake2b_impl.c.h 33;" d +NUM_KEYWORDS Modules/_blake2/clinic/blake2b_impl.c.h 42;" d +NUM_KEYWORDS Modules/_blake2/clinic/blake2s_impl.c.h 33;" d +NUM_KEYWORDS Modules/_blake2/clinic/blake2s_impl.c.h 42;" d +NUM_KEYWORDS Modules/_io/clinic/_iomodule.c.h 144;" d +NUM_KEYWORDS Modules/_io/clinic/_iomodule.c.h 153;" d +NUM_KEYWORDS Modules/_io/clinic/_iomodule.c.h 367;" d +NUM_KEYWORDS Modules/_io/clinic/_iomodule.c.h 376;" d +NUM_KEYWORDS Modules/_io/clinic/bufferedio.c.h 1045;" d +NUM_KEYWORDS Modules/_io/clinic/bufferedio.c.h 1054;" d +NUM_KEYWORDS Modules/_io/clinic/bufferedio.c.h 797;" d +NUM_KEYWORDS Modules/_io/clinic/bufferedio.c.h 806;" d +NUM_KEYWORDS Modules/_io/clinic/bufferedio.c.h 874;" d +NUM_KEYWORDS Modules/_io/clinic/bufferedio.c.h 883;" d +NUM_KEYWORDS Modules/_io/clinic/bytesio.c.h 498;" d +NUM_KEYWORDS Modules/_io/clinic/bytesio.c.h 507;" d +NUM_KEYWORDS Modules/_io/clinic/fileio.c.h 64;" d +NUM_KEYWORDS Modules/_io/clinic/fileio.c.h 73;" d +NUM_KEYWORDS Modules/_io/clinic/stringio.c.h 266;" d +NUM_KEYWORDS Modules/_io/clinic/stringio.c.h 275;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 226;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 235;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 295;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 304;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 430;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 439;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 568;" d +NUM_KEYWORDS Modules/_io/clinic/textio.c.h 577;" d +NUM_KEYWORDS Modules/_io/clinic/winconsoleio.c.h 63;" d +NUM_KEYWORDS Modules/_io/clinic/winconsoleio.c.h 72;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/posixshmem.c.h 122;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/posixshmem.c.h 131;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/posixshmem.c.h 32;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/posixshmem.c.h 41;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/semaphore.c.h 129;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/semaphore.c.h 138;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/semaphore.c.h 217;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/semaphore.c.h 226;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/semaphore.c.h 32;" d +NUM_KEYWORDS Modules/_multiprocessing/clinic/semaphore.c.h 41;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 1089;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 1098;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 1270;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 1279;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 1359;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 1368;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 167;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 176;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 239;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 248;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 25;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 34;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 416;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 425;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 580;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 589;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 656;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 665;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 713;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 722;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 775;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 784;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 867;" d +NUM_KEYWORDS Modules/_sqlite/clinic/connection.c.h 876;" d +NUM_KEYWORDS Modules/_sqlite/clinic/cursor.c.h 198;" d +NUM_KEYWORDS Modules/_sqlite/clinic/cursor.c.h 207;" d +NUM_KEYWORDS Modules/_sqlite/clinic/module.c.h 29;" d +NUM_KEYWORDS Modules/_sqlite/clinic/module.c.h 38;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 1007;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 1128;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 1137;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 1186;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 1195;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 1249;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 1258;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 186;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 195;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 279;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 288;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 374;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 383;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 466;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 475;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 561;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 570;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 653;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 662;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 745;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 754;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 819;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 828;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 896;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 905;" d +NUM_KEYWORDS Modules/_sre/clinic/sre.c.h 998;" d +NUM_KEYWORDS Modules/_ssl/clinic/cert.c.h 28;" d +NUM_KEYWORDS Modules/_ssl/clinic/cert.c.h 37;" d +NUM_KEYWORDS Modules/_testcapi/clinic/exceptions.c.h 77;" d +NUM_KEYWORDS Modules/_testcapi/clinic/exceptions.c.h 86;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 122;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 131;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 213;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 222;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 342;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 351;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 36;" d +NUM_KEYWORDS Modules/cjkcodecs/clinic/multibytecodec.c.h 45;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1041;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1050;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1098;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1107;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1155;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1164;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1212;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1221;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1271;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1280;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1332;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1341;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1392;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1401;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1449;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 1458;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 247;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 256;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 360;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 369;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 37;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 46;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 501;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 510;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 629;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 638;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 752;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 761;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 819;" d +NUM_KEYWORDS Modules/clinic/_asynciomodule.c.h 828;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 147;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 156;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 252;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 261;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 360;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 369;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 39;" d +NUM_KEYWORDS Modules/clinic/_bisectmodule.c.h 48;" d +NUM_KEYWORDS Modules/clinic/_bz2module.c.h 148;" d +NUM_KEYWORDS Modules/clinic/_bz2module.c.h 157;" d +NUM_KEYWORDS Modules/clinic/_codecsmodule.c.h 106;" d +NUM_KEYWORDS Modules/clinic/_codecsmodule.c.h 197;" d +NUM_KEYWORDS Modules/clinic/_codecsmodule.c.h 206;" d +NUM_KEYWORDS Modules/clinic/_codecsmodule.c.h 97;" d +NUM_KEYWORDS Modules/clinic/_csv.c.h 108;" d +NUM_KEYWORDS Modules/clinic/_csv.c.h 117;" d +NUM_KEYWORDS Modules/clinic/_csv.c.h 168;" d +NUM_KEYWORDS Modules/clinic/_csv.c.h 177;" d +NUM_KEYWORDS Modules/clinic/_csv.c.h 51;" d +NUM_KEYWORDS Modules/clinic/_csv.c.h 60;" d +NUM_KEYWORDS Modules/clinic/_cursesmodule.c.h 2689;" d +NUM_KEYWORDS Modules/clinic/_cursesmodule.c.h 2698;" d +NUM_KEYWORDS Modules/clinic/_datetimemodule.c.h 108;" d +NUM_KEYWORDS Modules/clinic/_datetimemodule.c.h 117;" d +NUM_KEYWORDS Modules/clinic/_datetimemodule.c.h 33;" d +NUM_KEYWORDS Modules/clinic/_datetimemodule.c.h 42;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 1086;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 1095;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 272;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 281;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 335;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 344;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 404;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 413;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 466;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 475;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 528;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 537;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 590;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 599;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 852;" d +NUM_KEYWORDS Modules/clinic/_elementtree.c.h 861;" d +NUM_KEYWORDS Modules/clinic/_functoolsmodule.c.h 32;" d +NUM_KEYWORDS Modules/clinic/_functoolsmodule.c.h 41;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1004;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1013;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 103;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1083;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1092;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1162;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1171;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1241;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1250;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1350;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1359;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1489;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1498;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1570;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1579;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 164;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1668;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 1677;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 173;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 238;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 247;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 315;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 324;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 390;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 399;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 465;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 474;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 540;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 549;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 615;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 624;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 690;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 699;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 767;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 776;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 846;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 855;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 925;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 934;" d +NUM_KEYWORDS Modules/clinic/_hashopenssl.c.h 94;" d +NUM_KEYWORDS Modules/clinic/_lzmamodule.c.h 106;" d +NUM_KEYWORDS Modules/clinic/_lzmamodule.c.h 115;" d +NUM_KEYWORDS Modules/clinic/_lzmamodule.c.h 205;" d +NUM_KEYWORDS Modules/clinic/_lzmamodule.c.h 214;" d +NUM_KEYWORDS Modules/clinic/_opcode.c.h 30;" d +NUM_KEYWORDS Modules/clinic/_opcode.c.h 39;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 152;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 161;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 414;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 423;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 608;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 617;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 712;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 721;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 820;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 829;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 946;" d +NUM_KEYWORDS Modules/clinic/_pickle.c.h 955;" d +NUM_KEYWORDS Modules/clinic/_queuemodule.c.h 137;" d +NUM_KEYWORDS Modules/clinic/_queuemodule.c.h 146;" d +NUM_KEYWORDS Modules/clinic/_queuemodule.c.h 201;" d +NUM_KEYWORDS Modules/clinic/_queuemodule.c.h 210;" d +NUM_KEYWORDS Modules/clinic/_queuemodule.c.h 62;" d +NUM_KEYWORDS Modules/clinic/_queuemodule.c.h 71;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 1298;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 1307;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 1411;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 1420;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 1487;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 1496;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 359;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 368;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 565;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 574;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 636;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 645;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 720;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 729;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 812;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 821;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 979;" d +NUM_KEYWORDS Modules/clinic/_ssl.c.h 988;" d +NUM_KEYWORDS Modules/clinic/_struct.c.h 137;" d +NUM_KEYWORDS Modules/clinic/_struct.c.h 146;" d +NUM_KEYWORDS Modules/clinic/_struct.c.h 31;" d +NUM_KEYWORDS Modules/clinic/_struct.c.h 342;" d +NUM_KEYWORDS Modules/clinic/_struct.c.h 351;" d +NUM_KEYWORDS Modules/clinic/_struct.c.h 40;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1259;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1268;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1315;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1324;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1371;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1380;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1440;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1449;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1520;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1529;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1588;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1597;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1644;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1653;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1701;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1710;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1760;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1769;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1831;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1840;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1907;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1916;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1978;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 1987;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2054;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2063;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2129;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2138;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2213;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2222;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2292;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2301;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2347;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2356;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2442;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2451;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2500;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2509;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2567;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2576;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2631;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2640;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2706;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2715;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2838;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2847;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2904;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2913;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2970;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 2979;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 3033;" d +NUM_KEYWORDS Modules/clinic/_testclinic.c.h 3042;" d +NUM_KEYWORDS Modules/clinic/_testinternalcapi.c.h 104;" d +NUM_KEYWORDS Modules/clinic/_testinternalcapi.c.h 113;" d +NUM_KEYWORDS Modules/clinic/_testinternalcapi.c.h 169;" d +NUM_KEYWORDS Modules/clinic/_testinternalcapi.c.h 178;" d +NUM_KEYWORDS Modules/clinic/_testinternalcapi.c.h 31;" d +NUM_KEYWORDS Modules/clinic/_testinternalcapi.c.h 40;" d +NUM_KEYWORDS Modules/clinic/_testmultiphase.c.h 84;" d +NUM_KEYWORDS Modules/clinic/_testmultiphase.c.h 93;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 117;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1202;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1211;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 126;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1274;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1283;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1336;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1345;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1440;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 1449;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 896;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 905;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 954;" d +NUM_KEYWORDS Modules/clinic/_winapi.c.h 963;" d +NUM_KEYWORDS Modules/clinic/_zoneinfo.c.h 102;" d +NUM_KEYWORDS Modules/clinic/_zoneinfo.c.h 149;" d +NUM_KEYWORDS Modules/clinic/_zoneinfo.c.h 158;" d +NUM_KEYWORDS Modules/clinic/_zoneinfo.c.h 30;" d +NUM_KEYWORDS Modules/clinic/_zoneinfo.c.h 39;" d +NUM_KEYWORDS Modules/clinic/_zoneinfo.c.h 93;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 140;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 149;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 211;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 220;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 402;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 411;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 495;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 504;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 60;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 645;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 654;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 69;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 721;" d +NUM_KEYWORDS Modules/clinic/binascii.c.h 730;" d +NUM_KEYWORDS Modules/clinic/cmathmodule.c.h 904;" d +NUM_KEYWORDS Modules/clinic/cmathmodule.c.h 913;" d +NUM_KEYWORDS Modules/clinic/gcmodule.c.h 108;" d +NUM_KEYWORDS Modules/clinic/gcmodule.c.h 276;" d +NUM_KEYWORDS Modules/clinic/gcmodule.c.h 285;" d +NUM_KEYWORDS Modules/clinic/gcmodule.c.h 99;" d +NUM_KEYWORDS Modules/clinic/grpmodule.c.h 31;" d +NUM_KEYWORDS Modules/clinic/grpmodule.c.h 40;" d +NUM_KEYWORDS Modules/clinic/grpmodule.c.h 88;" d +NUM_KEYWORDS Modules/clinic/grpmodule.c.h 97;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 144;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 153;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 38;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 47;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 490;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 499;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 561;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 570;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 631;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 640;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 693;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 702;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 768;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 777;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 866;" d +NUM_KEYWORDS Modules/clinic/itertoolsmodule.c.h 875;" d +NUM_KEYWORDS Modules/clinic/mathmodule.c.h 583;" d +NUM_KEYWORDS Modules/clinic/mathmodule.c.h 592;" d +NUM_KEYWORDS Modules/clinic/mathmodule.c.h 701;" d +NUM_KEYWORDS Modules/clinic/mathmodule.c.h 710;" d +NUM_KEYWORDS Modules/clinic/mathmodule.c.h 851;" d +NUM_KEYWORDS Modules/clinic/mathmodule.c.h 860;" d +NUM_KEYWORDS Modules/clinic/md5module.c.h 105;" d +NUM_KEYWORDS Modules/clinic/md5module.c.h 96;" d +NUM_KEYWORDS Modules/clinic/overlapped.c.h 457;" d +NUM_KEYWORDS Modules/clinic/overlapped.c.h 466;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10011;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10020;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1002;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10129;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10138;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10203;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10212;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10274;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10283;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10335;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10344;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10749;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10758;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1076;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10813;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10822;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1085;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10882;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10891;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 10992;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11001;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11061;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11070;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11118;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11127;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11205;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11214;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11273;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11282;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11344;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 11353;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1162;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1171;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1255;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1264;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 130;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1328;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1337;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 139;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1448;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1457;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1555;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1564;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1672;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1681;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1736;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1745;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1867;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1876;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1931;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1940;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 1995;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2004;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2054;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2063;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2113;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2122;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2172;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2181;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2229;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2238;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 226;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2292;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2301;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 235;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2409;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2418;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2476;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2485;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2553;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2562;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2644;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2653;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2733;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2742;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2804;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2813;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2878;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2887;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2982;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 2991;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3056;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3065;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3174;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3183;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3271;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3280;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3382;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3391;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3477;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3486;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3627;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3636;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 386;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3870;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3879;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 395;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 3996;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 4005;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 4058;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 4067;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 4153;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 4162;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 451;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 460;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 4845;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 4854;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 48;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5329;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5338;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 534;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5394;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5403;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 543;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5601;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5610;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5664;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5673;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5738;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5747;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 57;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5806;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5815;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5890;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 5899;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6163;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6172;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6256;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6265;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 630;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6385;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6394;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 639;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6846;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6855;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6948;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 6957;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 700;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7057;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7066;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 709;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7185;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7194;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7537;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7546;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7651;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7660;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7759;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7768;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 776;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7859;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 785;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 7868;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8114;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8123;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8515;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8524;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8582;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8591;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 859;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8649;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8658;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 868;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8716;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8725;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8783;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8792;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8850;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8859;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8917;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 8926;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9022;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9031;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9086;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9095;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9199;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9208;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 929;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9388;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 938;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9397;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9532;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9541;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9726;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9735;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9813;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9822;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9925;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 9934;" d +NUM_KEYWORDS Modules/clinic/posixmodule.c.h 993;" d +NUM_KEYWORDS Modules/clinic/pyexpat.c.h 380;" d +NUM_KEYWORDS Modules/clinic/pyexpat.c.h 389;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 533;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 542;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 699;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 708;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 776;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 785;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 845;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 854;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 916;" d +NUM_KEYWORDS Modules/clinic/selectmodule.c.h 925;" d +NUM_KEYWORDS Modules/clinic/sha1module.c.h 105;" d +NUM_KEYWORDS Modules/clinic/sha1module.c.h 96;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 163;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 172;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 237;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 246;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 311;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 320;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 385;" d +NUM_KEYWORDS Modules/clinic/sha2module.c.h 394;" d +NUM_KEYWORDS Modules/clinic/sha3module.c.h 26;" d +NUM_KEYWORDS Modules/clinic/sha3module.c.h 35;" d +NUM_KEYWORDS Modules/clinic/socketmodule.c.h 21;" d +NUM_KEYWORDS Modules/clinic/socketmodule.c.h 30;" d +NUM_KEYWORDS Modules/clinic/syslogmodule.c.h 31;" d +NUM_KEYWORDS Modules/clinic/syslogmodule.c.h 40;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 130;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 139;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 249;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 258;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 36;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 376;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 385;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 45;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 520;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 529;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 932;" d +NUM_KEYWORDS Modules/clinic/zlibmodule.c.h 941;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 1053;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 1062;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 1168;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 1177;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 21;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 244;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 253;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 30;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 447;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 456;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 569;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 578;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 946;" d +NUM_KEYWORDS Objects/clinic/bytearrayobject.c.h 955;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 229;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 238;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 431;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 440;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 55;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 64;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 714;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 723;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 808;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 817;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 923;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 932;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 985;" d +NUM_KEYWORDS Objects/clinic/bytesobject.c.h 994;" d +NUM_KEYWORDS Objects/clinic/codeobject.c.h 191;" d +NUM_KEYWORDS Objects/clinic/codeobject.c.h 200;" d +NUM_KEYWORDS Objects/clinic/codeobject.c.h 446;" d +NUM_KEYWORDS Objects/clinic/codeobject.c.h 455;" d +NUM_KEYWORDS Objects/clinic/complexobject.c.h 113;" d +NUM_KEYWORDS Objects/clinic/complexobject.c.h 122;" d +NUM_KEYWORDS Objects/clinic/descrobject.c.h 106;" d +NUM_KEYWORDS Objects/clinic/descrobject.c.h 115;" d +NUM_KEYWORDS Objects/clinic/descrobject.c.h 20;" d +NUM_KEYWORDS Objects/clinic/descrobject.c.h 29;" d +NUM_KEYWORDS Objects/clinic/enumobject.c.h 35;" d +NUM_KEYWORDS Objects/clinic/enumobject.c.h 44;" d +NUM_KEYWORDS Objects/clinic/funcobject.c.h 38;" d +NUM_KEYWORDS Objects/clinic/funcobject.c.h 47;" d +NUM_KEYWORDS Objects/clinic/listobject.c.h 177;" d +NUM_KEYWORDS Objects/clinic/listobject.c.h 186;" d +NUM_KEYWORDS Objects/clinic/longobject.c.h 20;" d +NUM_KEYWORDS Objects/clinic/longobject.c.h 291;" d +NUM_KEYWORDS Objects/clinic/longobject.c.h 29;" d +NUM_KEYWORDS Objects/clinic/longobject.c.h 300;" d +NUM_KEYWORDS Objects/clinic/longobject.c.h 405;" d +NUM_KEYWORDS Objects/clinic/longobject.c.h 414;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 162;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 171;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 26;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 273;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 282;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 35;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 368;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 377;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 83;" d +NUM_KEYWORDS Objects/clinic/memoryobject.c.h 92;" d +NUM_KEYWORDS Objects/clinic/moduleobject.c.h 28;" d +NUM_KEYWORDS Objects/clinic/moduleobject.c.h 37;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 103;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 160;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 169;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 224;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 233;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 289;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 298;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 29;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 38;" d +NUM_KEYWORDS Objects/clinic/odictobject.c.h 94;" d +NUM_KEYWORDS Objects/clinic/structseq.c.h 20;" d +NUM_KEYWORDS Objects/clinic/structseq.c.h 29;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 129;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 138;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 198;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 207;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 252;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 261;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 29;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 308;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 317;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 38;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 405;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 414;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 460;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 469;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 531;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 540;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 591;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 600;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 646;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 655;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 735;" d +NUM_KEYWORDS Objects/clinic/typevarobject.c.h 744;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 1081;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 1090;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 1162;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 1171;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 1419;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 1428;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 165;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 174;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 258;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 267;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 959;" d +NUM_KEYWORDS Objects/clinic/unicodeobject.c.h 968;" d +NUM_KEYWORDS Objects/stringlib/clinic/transmogrify.h.h 31;" d +NUM_KEYWORDS Objects/stringlib/clinic/transmogrify.h.h 40;" d +NUM_KEYWORDS PC/clinic/_testconsole.c.h 106;" d +NUM_KEYWORDS PC/clinic/_testconsole.c.h 32;" d +NUM_KEYWORDS PC/clinic/_testconsole.c.h 41;" d +NUM_KEYWORDS PC/clinic/_testconsole.c.h 97;" d +NUM_KEYWORDS PC/clinic/_wmimodule.cpp.h 32;" d +NUM_KEYWORDS PC/clinic/_wmimodule.cpp.h 41;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 1084;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 1093;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 112;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 121;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 350;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 359;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 535;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 544;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 967;" d +NUM_KEYWORDS PC/clinic/winreg.c.h 976;" d +NUM_KEYWORDS PC/clinic/winsound.c.h 100;" d +NUM_KEYWORDS PC/clinic/winsound.c.h 109;" d +NUM_KEYWORDS PC/clinic/winsound.c.h 165;" d +NUM_KEYWORDS PC/clinic/winsound.c.h 174;" d +NUM_KEYWORDS PC/clinic/winsound.c.h 34;" d +NUM_KEYWORDS PC/clinic/winsound.c.h 43;" d +NUM_KEYWORDS Python/clinic/Python-tokenize.c.h 21;" d +NUM_KEYWORDS Python/clinic/Python-tokenize.c.h 30;" d +NUM_KEYWORDS Python/clinic/_warnings.c.h 152;" d +NUM_KEYWORDS Python/clinic/_warnings.c.h 161;" d +NUM_KEYWORDS Python/clinic/_warnings.c.h 45;" d +NUM_KEYWORDS Python/clinic/_warnings.c.h 54;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 1059;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 1068;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 1198;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 1207;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 1299;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 1308;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 290;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 299;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 45;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 535;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 544;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 54;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 985;" d +NUM_KEYWORDS Python/clinic/bltinmodule.c.h 994;" d +NUM_KEYWORDS Python/clinic/import.c.h 204;" d +NUM_KEYWORDS Python/clinic/import.c.h 213;" d +NUM_KEYWORDS Python/clinic/import.c.h 591;" d +NUM_KEYWORDS Python/clinic/import.c.h 600;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 1330;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 1339;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 29;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 38;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 483;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 492;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 784;" d +NUM_KEYWORDS Python/clinic/sysmodule.c.h 793;" d +NUM_KEYWORDS Python/clinic/traceback.c.h 27;" d +NUM_KEYWORDS Python/clinic/traceback.c.h 36;" d +NUM_PARTIALS Modules/mathmodule.c 1284;" d file: +NUM_PARTIALS Modules/mathmodule.c 1473;" d file: +NUM_PATTERNS Modules/_xxtestfuzz/fuzzer.c /^const size_t NUM_PATTERNS = sizeof(regex_patterns) \/ sizeof(regex_patterns[0]);$/;" v +NUM_STACK_ELEMS Modules/mathmodule.c 2512;" d file: +NUM_STACK_ELEMS Modules/mathmodule.c 2652;" d file: +NUM_TEST_FUNC_WATCHERS Modules/_testcapi/watchers.c 443;" d file: +NUM_THREADS Lib/test/fork_wait.py /^NUM_THREADS = 4$/;" v +NUM_THREADS Lib/test/test_threadedtempfile.py /^NUM_THREADS = 20$/;" v +NUSPEC_DATA PC/layout/support/nuspec.py /^NUSPEC_DATA = {$/;" v +NUSPEC_PLATFORM_DATA PC/layout/support/nuspec.py /^NUSPEC_PLATFORM_DATA = dict($/;" v +NVALUE Lib/test/libregrtest/win_utils.py /^NVALUE = 5$/;" v +NV_MAGICCONST Lib/random.py /^NV_MAGICCONST = 4 * _exp(-0.5) \/ _sqrt(2.0)$/;" v +NW Lib/tkinter/constants.py /^NW='nw'$/;" v +N_INET Modules/getaddrinfo.c 106;" d file: +N_INET6 Modules/getaddrinfo.c 101;" d file: +N_TOKENS Include/internal/pycore_token.h 83;" d +N_TOKENS Lib/lib2to3/pgen2/token.py /^N_TOKENS = 60$/;" v +N_TOKENS Lib/token.py /^N_TOKENS = 68$/;" v +NaN Lib/json/decoder.py /^NaN = float('nan')$/;" v +Naive Lib/test/datetimetester.py /^ class Naive(tzinfo):$/;" c function:TestDateTimeTZ.test_even_more_compare +NaiveException Lib/test/test_exceptions.py /^class NaiveException(Exception):$/;" c +Name Include/internal/pycore_ast.h /^ } Name;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon101 +Name Lib/lib2to3/fixer_util.py /^def Name(name, prefix=None):$/;" f +Name Lib/lib2to3/pgen2/tokenize.py /^Name = r'\\w+'$/;" v +Name Lib/test/test_ctypes/test_anon.py /^ class Name(Structure):$/;" c function:AnonTest.test_issue31490 +Name Lib/test/test_enum.py /^class Name(StrEnum):$/;" c +Name Lib/tokenize.py /^Name = r'\\w+'$/;" v +Name PC/layout/support/appxmanifest.py /^ Name="PythonSoftwareFoundation.Python.{}".format(VER_DOT),$/;" v +NameAddr Lib/email/_header_value_parser.py /^class NameAddr(TokenList):$/;" c +NameConstant Lib/ast.py /^class NameConstant(Constant, metaclass=_ABC):$/;" c +NameDefaultPair Parser/pegen.h /^} NameDefaultPair;$/;" t typeref:struct:__anon661 +NameErrorTests Lib/test/test_exceptions.py /^class NameErrorTests(unittest.TestCase):$/;" c +NameError_clear Objects/exceptions.c /^NameError_clear(PyNameErrorObject *self)$/;" f file: +NameError_dealloc Objects/exceptions.c /^NameError_dealloc(PyNameErrorObject *self)$/;" f file: +NameError_init Objects/exceptions.c /^NameError_init(PyNameErrorObject *self, PyObject *args, PyObject *kwds)$/;" f file: +NameError_members Objects/exceptions.c /^static PyMemberDef NameError_members[] = {$/;" v file: +NameError_methods Objects/exceptions.c /^static PyMethodDef NameError_methods[] = {$/;" v file: +NameError_traverse Objects/exceptions.c /^NameError_traverse(PyNameErrorObject *self, visitproc visit, void *arg)$/;" f file: +NameLeaf Tools/peg_generator/pegen/grammar.py /^class NameLeaf(Leaf):$/;" c +NameLookupTracer Lib/test/test_decorators.py /^ class NameLookupTracer (object):$/;" c function:TestDecorators.test_eval_order +NameNormalizationTests Lib/test/test_importlib/test_main.py /^class NameNormalizationTests(fixtures.OnSysPath, fixtures.SiteDir, unittest.TestCase):$/;" c +NameSpaceTest Lib/idlelib/idle_test/test_debugger.py /^class NameSpaceTest(unittest.TestCase):$/;" c +Name_fields Python/Python-ast.c /^static const char * const Name_fields[]={$/;" v file: +Name_kind Include/internal/pycore_ast.h /^ Name_kind=24, List_kind=25, Tuple_kind=26, Slice_kind=27};$/;" e enum:_expr_kind +Name_type Include/internal/pycore_ast_state.h /^ PyObject *Name_type;$/;" m struct:ast_state +NamedExpr Include/internal/pycore_ast.h /^ } NamedExpr;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon79 +NamedExpr_fields Python/Python-ast.c /^static const char * const NamedExpr_fields[]={$/;" v file: +NamedExpr_kind Include/internal/pycore_ast.h /^enum _expr_kind {BoolOp_kind=1, NamedExpr_kind=2, BinOp_kind=3, UnaryOp_kind=4,$/;" e enum:_expr_kind +NamedExpr_type Include/internal/pycore_ast_state.h /^ PyObject *NamedExpr_type;$/;" m struct:ast_state +NamedExpressionAssignmentTest Lib/test/test_named_expressions.py /^class NamedExpressionAssignmentTest(unittest.TestCase):$/;" c +NamedExpressionInvalidTest Lib/test/test_named_expressions.py /^class NamedExpressionInvalidTest(unittest.TestCase):$/;" c +NamedExpressionScopeTest Lib/test/test_named_expressions.py /^class NamedExpressionScopeTest(unittest.TestCase):$/;" c +NamedInt Lib/test/test_enum.py /^ class NamedInt(int):$/;" c function:TestSpecial.test_subclasses_with_direct_pickle_support +NamedInt Lib/test/test_enum.py /^ class NamedInt(int):$/;" c function:TestSpecial.test_subclasses_with_getnewargs +NamedInt Lib/test/test_enum.py /^ class NamedInt(int):$/;" c function:TestSpecial.test_subclasses_with_getnewargs_ex +NamedInt Lib/test/test_enum.py /^ class NamedInt(int):$/;" c function:TestSpecial.test_subclasses_with_reduce +NamedInt Lib/test/test_enum.py /^ class NamedInt(int):$/;" c function:TestSpecial.test_subclasses_with_reduce_ex +NamedInt Lib/test/test_enum.py /^ class NamedInt(int):$/;" c function:TestSpecial.test_subclasses_without_direct_pickle_support +NamedItem Tools/peg_generator/pegen/grammar.py /^class NamedItem:$/;" c +NamedItemList Tools/peg_generator/pegen/grammar.py /^NamedItemList = List[NamedItem]$/;" v +NamedNodeMap Lib/xml/dom/minidom.py /^class NamedNodeMap(object):$/;" c +NamedSequence Modules/unicodename_db.h /^typedef struct NamedSequence {$/;" s +NamedTemporaryFile Lib/tempfile.py /^def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None,$/;" f +NamedTuple Lib/typing.py /^def NamedTuple(typename, fields=None, \/, **kwargs):$/;" f +NamedTupleMeta Lib/typing.py /^class NamedTupleMeta(type):$/;" c +NamedTupleTests Lib/test/test_typing.py /^class NamedTupleTests(BaseTestCase):$/;" c +NameprepTest Lib/test/test_codecs.py /^class NameprepTest(unittest.TestCase):$/;" c +Namespace Lib/argparse.py /^class Namespace(_AttributeHolder):$/;" c +Namespace Lib/multiprocessing/dummy/__init__.py /^class Namespace(object):$/;" c +Namespace Lib/multiprocessing/managers.py /^class Namespace(object):$/;" c +Namespace Lib/test/_test_multiprocessing.py /^ Namespace = property(operator.attrgetter('manager.Namespace'))$/;" v class:ManagerMixin +Namespace Lib/test/libregrtest/cmdline.py /^class Namespace(argparse.Namespace):$/;" c +NamespaceErr Lib/xml/dom/__init__.py /^class NamespaceErr(DOMException):$/;" c +NamespaceFormatter Lib/test/test_string.py /^ class NamespaceFormatter(string.Formatter):$/;" c function:ModuleTest.test_override_get_value +NamespaceLoader Lib/importlib/_bootstrap_external.py /^class NamespaceLoader:$/;" c +NamespacePackageTest Lib/test/test_importlib/test_namespace_pkgs.py /^class NamespacePackageTest(unittest.TestCase):$/;" c +NamespaceParseTest Lib/test/test_xml_etree.py /^class NamespaceParseTest(unittest.TestCase):$/;" c +NamespaceProxy Lib/multiprocessing/managers.py /^class NamespaceProxy(BaseProxy):$/;" c +NamespaceReader Lib/importlib/resources/readers.py /^class NamespaceReader(abc.TraversableResources):$/;" c +NamespaceReaderTest Lib/test/test_importlib/resources/test_reader.py /^class NamespaceReaderTest(unittest.TestCase):$/;" c +NamespaceSeparatorTest Lib/test/test_pyexpat.py /^class NamespaceSeparatorTest(unittest.TestCase):$/;" c +NamespaceViewer Lib/idlelib/debugger.py /^class NamespaceViewer:$/;" c +Namespaces Lib/xml/dom/expatbuilder.py /^class Namespaces:$/;" c +NamespacesTests Lib/test/test_posix.py /^class NamespacesTests(unittest.TestCase):$/;" c +NannyNag Lib/tabnanny.py /^class NannyNag(Exception):$/;" c +Nasty Lib/test/test_ctypes/test_callbacks.py /^ class Nasty:$/;" c function:Callbacks.test_issue12483 +Nasty Lib/test/test_descr.py /^ class Nasty(str):$/;" c function:.test_evil_type_name +NastyKey Lib/test/test_dict.py /^ class NastyKey:$/;" c function:DictTest.test_mutating_lookup +NativeExecution Tools/buildbot/test.bat /^:NativeExecution$/;" l +Nbits Python/dtoa.c 242;" d file: +NeedMoreData Lib/email/feedparser.py /^NeedMoreData = object()$/;" v +NegInf Lib/json/decoder.py /^NegInf = float('-inf')$/;" v +NegatedPattern Lib/lib2to3/pytree.py /^class NegatedPattern(BasePattern):$/;" c +NegativeLen Lib/test/test_builtin.py /^ class NegativeLen:$/;" c function:BuiltinTest.test_len +NegativeLookahead Tools/peg_generator/pegen/grammar.py /^class NegativeLookahead(Lookahead):$/;" c +NeitherComplexNorFloat Lib/test/test_cmath.py /^ class NeitherComplexNorFloat(object):$/;" c function:CMathTests.test_user_object +Nested Lib/test/pickletester.py /^ class Nested(str):$/;" c class:AbstractPickleTests.test_c_methods.Subclass +Nested Lib/test/pickletester.py /^ class Nested:$/;" c class:AbstractPickleTests.test_py_methods.PyMethodsTest +Nested Lib/test/pickletester.py /^ class Nested:$/;" c function:AbstractPickleTests.test_nested_names +Nested Lib/test/test_with.py /^class Nested(object):$/;" c +Nested1 Lib/test/test_ctypes/test_structures.py /^ class Nested1(Structure):$/;" c function:StructureTestCase.test_union_by_value +Nested2 Lib/test/test_ctypes/test_structures.py /^ class Nested2(Structure):$/;" c function:StructureTestCase.test_union_by_value +NestedChildrenTest Lib/idlelib/idle_test/test_browser.py /^class NestedChildrenTest(unittest.TestCase):$/;" c +NestedClass Lib/test/test_doctest.py /^ class NestedClass:$/;" c class:SampleClass +NestedDict Lib/tomllib/_parser.py /^class NestedDict:$/;" c +NestedEmployee Lib/test/test_typing.py /^ class NestedEmployee(NamedTuple):$/;" c class:NamedTupleTests +NestedEnum Lib/test/test_enum.py /^ class NestedEnum(Enum):$/;" c function:TestSpecial.test_pickle_nested_class +NestedExceptionGroupBasicsTest Lib/test/test_exception_group.py /^class NestedExceptionGroupBasicsTest(ExceptionGroupTestBase):$/;" c +NestedExceptionGroupSplitTest Lib/test/test_exception_group.py /^class NestedExceptionGroupSplitTest(ExceptionGroupSplitTestBase):$/;" c +NestedExceptionGroupSubclassSplitTest Lib/test/test_exception_group.py /^class NestedExceptionGroupSubclassSplitTest(ExceptionGroupSplitTestBase):$/;" c +NestedNamespacePackageTest Lib/test/test_pkgutil.py /^class NestedNamespacePackageTest(unittest.TestCase):$/;" c +NestedNonexceptionalTestCase Lib/test/test_with.py /^ ContextmanagerAssertionMixin):$/;" c +NestedStructure Lib/test/test_ctypes/test_byteswap.py /^ class NestedStructure(nested):$/;" c function:Test.test_struct_struct +NestedStructure Lib/test/test_ctypes/test_byteswap.py /^ class NestedStructure(nested):$/;" c function:Test.test_union_struct +NestedWith Lib/test/test_with.py /^class NestedWith(unittest.TestCase):$/;" c +Nested_in_closure Lib/idlelib/browser.py /^ class Nested_in_closure: pass$/;" c function:_module_browser.closure +Nested_in_func Lib/idlelib/browser.py /^ class Nested_in_func(TreeNode):$/;" c function:_module_browser +NetmaskTestMixin_v4 Lib/test/test_ipaddress.py /^class NetmaskTestMixin_v4(CommonTestMixin_v4):$/;" c +NetmaskTestMixin_v6 Lib/test/test_ipaddress.py /^class NetmaskTestMixin_v6(CommonTestMixin_v6):$/;" c +NetmaskValueError Lib/ipaddress.py /^class NetmaskValueError(ValueError):$/;" c +NetrcParseError Lib/netrc.py /^class NetrcParseError(Exception):$/;" c +NetrcTestCase Lib/test/test_netrc.py /^class NetrcTestCase(unittest.TestCase):$/;" c +Netscape_certificate_sequence Lib/test/test_lib2to3/data/infinite_recursion.py /^class Netscape_certificate_sequence(Structure):$/;" c +Netscape_spkac_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class Netscape_spkac_st(Structure):$/;" c +Netscape_spki_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class Netscape_spki_st(Structure):$/;" c +NetworkConnectionAttributesTest Lib/test/test_socket.py /^class NetworkConnectionAttributesTest(SocketTCPTest, ThreadableTest):$/;" c +NetworkConnectionBehaviourTest Lib/test/test_socket.py /^class NetworkConnectionBehaviourTest(SocketTCPTest, ThreadableTest):$/;" c +NetworkConnectionNoServer Lib/test/test_socket.py /^class NetworkConnectionNoServer(unittest.TestCase):$/;" c +NetworkConnectionTest Lib/test/test_socket.py /^class NetworkConnectionTest(object):$/;" c +NetworkTestCase Lib/test/test_robotparser.py /^class NetworkTestCase(unittest.TestCase):$/;" c +NetworkTestCase_v4 Lib/test/test_ipaddress.py /^class NetworkTestCase_v4(BaseTestCase, NetmaskTestMixin_v4):$/;" c +NetworkTestCase_v6 Lib/test/test_ipaddress.py /^class NetworkTestCase_v6(BaseTestCase, NetmaskTestMixin_v6):$/;" c +NetworkedNNTPTests Lib/test/test_nntplib.py /^class NetworkedNNTPTests(NetworkedNNTPTestsMixin, unittest.TestCase):$/;" c +NetworkedNNTPTestsMixin Lib/test/test_nntplib.py /^class NetworkedNNTPTestsMixin:$/;" c +NetworkedNNTP_SSLTests Lib/test/test_nntplib.py /^class NetworkedNNTP_SSLTests(NetworkedNNTPTests):$/;" c +NetworkedTests Lib/test/test_ssl.py /^class NetworkedTests(unittest.TestCase):$/;" c +Never Lib/typing.py /^def Never(self, parameters):$/;" f +NeverEnum Lib/test/test_enum.py /^ class NeverEnum(WhereEnum):$/;" c function:OldTestFlag.test_init_subclass +NeverEqualEG Lib/test/test_except_star.py /^ class NeverEqualEG(ExceptionGroup):$/;" c class:TestExceptStar_WeirdExceptionGroupSubclass +NeverEqualExc Lib/test/test_except_star.py /^ class NeverEqualExc(ValueError):$/;" c class:TestExceptStar_WeirdLeafExceptions +NeverTests Lib/test/test_typing.py /^class NeverTests(BottomTypeTestsMixin, BaseTestCase):$/;" c +NewBaseEnum Lib/test/test_enum.py /^ class NewBaseEnum(self.enum_type):$/;" c function:_EnumTests.setUp +NewClass Lib/test/test_descr.py /^ class NewClass:$/;" c function:.test_doc_descriptor +NewFHCD Modules/_tkinter.c /^NewFHCD(PyObject *func, PyObject *file, int id)$/;" f file: +NewFormatEnum Lib/test/test_enum.py /^ class NewFormatEnum(self.enum_type):$/;" c function:_EnumTests.setUp +NewGeneric Lib/test/test_typing.py /^ class NewGeneric(Generic): ...$/;" c function:GenericTests.test_generic_errors +NewGeneric Lib/test/test_typing.py /^ class NewGeneric[T](TypedDict):$/;" c function:TypedDictTests.test_is_typeddict +NewIMAPSSLTests Lib/test/test_imaplib.py /^class NewIMAPSSLTests(NewIMAPTestsMixin, unittest.TestCase):$/;" c +NewIMAPTests Lib/test/test_imaplib.py /^class NewIMAPTests(NewIMAPTestsMixin, unittest.TestCase):$/;" c +NewIMAPTestsMixin Lib/test/test_imaplib.py /^class NewIMAPTestsMixin():$/;" c +NewLoader Lib/test/test_importlib/test_spec.py /^class NewLoader(TestLoader):$/;" c +NewMetaclass Lib/test/test_opcache.py /^ class NewMetaclass(type):$/;" c function:TestLoadAttrCache.test_metaclass_swap +NewMetaclass Lib/test/test_opcache.py /^ class NewMetaclass(type):$/;" c function:TestLoadMethodCache.test_metaclass_swap +NewNormalDist Lib/test/test_statistics.py /^ class NewNormalDist(NormalDist):$/;" c function:TestNormalDist.test_alternative_constructor +NewNormalDist Lib/test/test_statistics.py /^ class NewNormalDist(self.module.NormalDist):$/;" c function:TestNormalDist.test_instantiation_and_attributes +NewPerm Lib/test/test_enum.py /^ class NewPerm(IntFlag):$/;" c function:OldTestIntFlag.test_format +NewPoint Lib/test/test_collections.py /^ class NewPoint(tuple):$/;" c function:TestNamedTuple.test_field_descriptor +NewSeq Lib/test/test_index.py /^class NewSeq:$/;" c +NewSeqTestCase Lib/test/test_index.py /^class NewSeqTestCase(SeqTestCase, unittest.TestCase):$/;" c +NewStrEnum Lib/test/test_enum.py /^ class NewStrEnum(self.enum_type):$/;" c function:_EnumTests.setUp +NewStrFormatEnum Lib/test/test_enum.py /^ class NewStrFormatEnum(self.enum_type):$/;" c function:_EnumTests.setUp +NewStyle Lib/test/test_copy.py /^ class NewStyle:$/;" c function:TestCopy.test_copy_atomic +NewStyle Lib/test/test_copy.py /^ class NewStyle:$/;" c function:TestCopy.test_deepcopy_atomic +NewStyle Lib/test/test_type_params.py /^ class NewStyle[T]:$/;" c function:TypeParamsWeakRefTest.test_weakrefs +NewStyleClass Lib/test/test_baseexception.py /^ class NewStyleClass(object):$/;" c function:UsageTests.test_raise_new_style_non_exception +NewSubEnum Lib/test/test_enum.py /^ class NewSubEnum(NewBaseEnum):$/;" c function:_EnumTests.setUp +NewType Lib/typing.py /^class NewType:$/;" c +NewTypeTests Lib/test/test_typing.py /^class NewTypeTests(BaseTestCase):$/;" c +Newline Lib/lib2to3/fixer_util.py /^def Newline():$/;" f +NextOnly Lib/test/test_collections.py /^ class NextOnly:$/;" c function:TestOneTrickPonyABCs.test_Iterator +NextafterTests Lib/test/test_math_property.py /^class NextafterTests(unittest.TestCase):$/;" c +NiceTry Lib/test/datetimetester.py /^ class NiceTry(object):$/;" c function:TZInfoBase.test_bad_tzinfo_classes +Nim Lib/turtledemo/nim.py /^class Nim(object):$/;" c +NimController Lib/turtledemo/nim.py /^class NimController(object):$/;" c +NimModel Lib/turtledemo/nim.py /^class NimModel(object):$/;" c +NimView Lib/turtledemo/nim.py /^class NimView(object):$/;" c +NisTests Lib/test/test_nis.py /^class NisTests(unittest.TestCase):$/;" c +NoAcceleratorTest Lib/test/test_xml_etree.py /^class NoAcceleratorTest(unittest.TestCase):$/;" c +NoAll Lib/test/test___all__.py /^class NoAll(RuntimeError):$/;" c +NoArgNoReturnFunctionBody Modules/_cursesmodule.c 2616;" d file: +NoArgNoReturnVoidFunctionBody Modules/_cursesmodule.c 2646;" d file: +NoArgOrFlagNoReturnFunctionBody Modules/_cursesmodule.c 2621;" d file: +NoArgReturnIntFunctionBody Modules/_cursesmodule.c 2630;" d file: +NoArgReturnStringFunctionBody Modules/_cursesmodule.c 2636;" d file: +NoArgTrueFalseFunctionBody Modules/_cursesmodule.c 2641;" d file: +NoBool Lib/test/test_inspect.py /^ class NoBool(object):$/;" c function:TestClassesAndFunctions.test_classify_overrides_bool +NoBoundaryInMultipartDefect Lib/email/errors.py /^class NoBoundaryInMultipartDefect(MessageDefect):$/;" c +NoBytesEither Lib/test/test_buffer.py /^ class NoBytesEither:$/;" c function:TestPythonBufferProtocol.test_bad_buffer_method +NoCall Lib/idlelib/idle_test/test_calltip.py /^ class NoCall:$/;" c function:.test_buggy_getattr_class +NoComprehension Include/internal/pycore_symtable.h /^ NoComprehension = 0,$/;" e enum:_comprehension_type +NoDataAllowedErr Lib/xml/dom/__init__.py /^class NoDataAllowedErr(DOMException):$/;" c +NoDefaultRoot Lib/tkinter/__init__.py /^def NoDefaultRoot():$/;" f +NoEOFBytesIO Lib/test/test_httplib.py /^class NoEOFBytesIO(io.BytesIO):$/;" c +NoEnableServer Lib/test/test_imaplib.py /^ class NoEnableServer(self.UTF8Server):$/;" c function:ThreadedNetworkedTests.test_enable_raises_error_if_no_capability +NoEndUnicodeDecodeError Lib/test/test_codeccallbacks.py /^class NoEndUnicodeDecodeError(UnicodeDecodeError):$/;" c +NoEndUnicodeTranslateError Lib/test/test_codeccallbacks.py /^class NoEndUnicodeTranslateError(UnicodeTranslateError):$/;" c +NoEnter Lib/test/test_contextlib.py /^ class NoEnter(ManagerFromScratch):$/;" c function:TestAbstractContextManager.test_structural_subclassing +NoEnum Lib/test/test_enum.py /^ class NoEnum(WhoseEnum):$/;" c function:OldTestFlag.test_init_subclass +NoExit Lib/test/test_contextlib.py /^ class NoExit(ManagerFromScratch):$/;" c function:TestAbstractContextManager.test_structural_subclassing +NoExpose Lib/test/test_tkinter/test_misc.py /^ NoExpose = '14' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +NoExpose Lib/tkinter/__init__.py /^ NoExpose = '14' # undocumented$/;" v class:EventType +NoFoldLiteral Lib/email/_header_value_parser.py /^class NoFoldLiteral(TokenList):$/;" c +NoGetItem Lib/test/test_enumerate.py /^ class NoGetItem(object):$/;" c function:TestReversed.test_objmethods +NoGuessLen5 Lib/test/test_iter.py /^ class NoGuessLen5:$/;" c function:TestCase.test_builtin_zip +NoHash Lib/test/test_hash.py /^class NoHash(object):$/;" c +NoIterClass Lib/test/test_iter.py /^class NoIterClass:$/;" c +NoLen Lib/test/test_enumerate.py /^ class NoLen(object):$/;" c function:TestReversed.test_objmethods +NoLenMethod Lib/test/test_builtin.py /^ class NoLenMethod(object): pass$/;" c function:BuiltinTest.test_len +NoLogRequestHandler Lib/test/test_httpservers.py /^class NoLogRequestHandler:$/;" c +NoModificationAllowedErr Lib/xml/dom/__init__.py /^class NoModificationAllowedErr(DOMException):$/;" c +NoMsecFormatter Lib/test/test_logging.py /^ class NoMsecFormatter(logging.Formatter):$/;" c function:FormatterTest.test_default_msec_format_none +NoName Lib/test/test_enum.py /^class NoName(Flag):$/;" c +NoNullHandle Lib/test/test_ctypes/test_funcptr.py /^ def NoNullHandle(value):$/;" f function:CFuncPtrTestCase.test_dllfunctions +NoObjectUnicodeTranslateError Lib/test/test_codeccallbacks.py /^class NoObjectUnicodeTranslateError(UnicodeTranslateError):$/;" c +NoOptionError Lib/configparser.py /^class NoOptionError(Error):$/;" c +NoReturn Lib/typing.py /^def NoReturn(self, parameters):$/;" f +NoReturnTests Lib/test/test_typing.py /^class NoReturnTests(BottomTypeTestsMixin, BaseTestCase):$/;" c +NoSectionError Lib/configparser.py /^class NoSectionError(Error):$/;" c +NoStartUnicodeTranslateError Lib/test/test_codeccallbacks.py /^class NoStartUnicodeTranslateError(UnicodeTranslateError):$/;" c +NoSuchMailboxError Lib/mailbox.py /^class NoSuchMailboxError(Error):$/;" c +NoTpCheck Lib/test/test_typing.py /^ class NoTpCheck:$/;" c function:GetTypeHintTests.test_respect_no_type_check +NoTypeCheck_Outer Lib/test/ann_module8.py /^class NoTypeCheck_Outer:$/;" c +NoTypeCheck_Outer Lib/test/test_typing.py /^class NoTypeCheck_Outer:$/;" c +NoTypeCheck_WithFunction Lib/test/test_typing.py /^class NoTypeCheck_WithFunction:$/;" c +NoTypeCheck_function Lib/test/ann_module8.py /^def NoTypeCheck_function(arg: int) -> int:$/;" f +NoTypeCheck_function Lib/test/test_typing.py /^ NoTypeCheck_function = ann_module8.NoTypeCheck_function$/;" v class:NoTypeCheck_WithFunction +NoWeak Lib/test/test_descr.py /^ class NoWeak(object):$/;" c function:.test_weakrefs +Node Lib/lib2to3/pytree.py /^class Node(Base):$/;" c +Node Lib/test/test_descr.py /^ class Node(object):$/;" c function:ClassPropertiesAndMethods.test_multiple_inheritance +Node Lib/test/test_descr.py /^ class Node:$/;" c function:.test_deepcopy_recursive +Node Lib/test/test_typing.py /^ class Node(Generic[T]): ...$/;" c function:GenericTests.test_copy_and_deepcopy +Node Lib/test/test_typing.py /^ class Node(Generic[T]): ...$/;" c function:GenericTests.test_naive_runtime_checks +Node Lib/test/test_typing.py /^ class Node(Generic[T]):$/;" c function:ForwardRefTests.test_basics +Node Lib/test/test_typing.py /^ class Node(Generic[T]):$/;" c function:GenericTests.test_type_erasure +Node Lib/xml/dom/__init__.py /^class Node:$/;" c +Node Lib/xml/dom/minidom.py /^class Node(xml.dom.Node):$/;" c +Node Tools/cases_generator/parser.py /^class Node:$/;" c +NodeFilter Lib/xml/dom/NodeFilter.py /^class NodeFilter:$/;" c +NodeList Lib/xml/dom/minicompat.py /^class NodeList(list):$/;" c +NodeListTestCase Lib/test/test_xml_dom_minicompat.py /^class NodeListTestCase(unittest.TestCase):$/;" c +NodePattern Lib/lib2to3/pytree.py /^class NodePattern(BasePattern):$/;" c +NodeTransformer Lib/ast.py /^class NodeTransformer(NodeVisitor):$/;" c +NodeTransformerTests Lib/test/test_ast.py /^class NodeTransformerTests(ASTTestMixin, BaseNodeVisitorCases, unittest.TestCase):$/;" c +NodeTypes Tools/peg_generator/pegen/c_generator.py /^class NodeTypes(Enum):$/;" c +NodeVisitor Lib/ast.py /^class NodeVisitor(object):$/;" c +NodeVisitorTests Lib/test/test_ast.py /^class NodeVisitorTests(BaseNodeVisitorCases, unittest.TestCase):$/;" c +NonAGen1 Lib/test/test_collections.py /^ class NonAGen1:$/;" c function:TestOneTrickPonyABCs.test_AsyncGenerator +NonAGen2 Lib/test/test_collections.py /^ class NonAGen2:$/;" c function:TestOneTrickPonyABCs.test_AsyncGenerator +NonAGen3 Lib/test/test_collections.py /^ class NonAGen3:$/;" c function:TestOneTrickPonyABCs.test_AsyncGenerator +NonASCIILocalPartDefect Lib/email/errors.py /^class NonASCIILocalPartDefect(HeaderDefect):$/;" c +NonASCIITests Lib/test/test_importlib/test_main.py /^class NonASCIITests(fixtures.OnSysPath, fixtures.SiteDir, unittest.TestCase):$/;" c +NonBaseException Lib/test/test_baseexception.py /^ class NonBaseException(object):$/;" c function:UsageTests.test_catch_non_BaseException +NonBlockingTCPTests Lib/test/test_socket.py /^class NonBlockingTCPTests(ThreadedTCPSocketTest):$/;" c +NonCallable Lib/test/test_unittest/testmock/testhelpers.py /^ class NonCallable(object):$/;" c function:SpecSignatureTest.test_signature_noncallable +NonCallableMagicMock Lib/unittest/mock.py /^class NonCallableMagicMock(MagicMixin, NonCallableMock):$/;" c +NonCallableMembersProto Lib/test/test_typing.py /^ class NonCallableMembersProto(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +NonCallableMembersSupersetProto Lib/test/test_typing.py /^ class NonCallableMembersSupersetProto(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +NonCallableMock Lib/unittest/mock.py /^class NonCallableMock(Base):$/;" c +NonCol Lib/test/test_collections.py /^ class NonCol(ColImpl):$/;" c function:TestOneTrickPonyABCs.test_Collection +NonConnectingTests Lib/test/test_smtplib.py /^class NonConnectingTests(unittest.TestCase):$/;" c +NonDataDerived Lib/test/test_dataclasses.py /^ class NonDataDerived(Base[int, T]):$/;" c function:TestCase.test_generic_extending +NonDataDescriptor Lib/test/test_inspect.py /^ class NonDataDescriptor:$/;" c function:TestIsDataDescriptor.test_custom_descriptors +NonDefaultAfterDefault Lib/test/test_typing.py /^ class NonDefaultAfterDefault(NamedTuple):$/;" c function:NamedTupleTests.test_annotation_usage_with_default +NonDescriptor Lib/test/test_subclassinit.py /^ class NonDescriptor:$/;" c function:Test.test_set_name_lookup +NonEagerCTaskTests Lib/test/test_asyncio/test_eager_task_factory.py /^class NonEagerCTaskTests(BaseNonEagerTaskFactoryTests, test_utils.TestCase):$/;" c +NonEagerPyTaskTests Lib/test/test_asyncio/test_eager_task_factory.py /^class NonEagerPyTaskTests(BaseNonEagerTaskFactoryTests, test_utils.TestCase):$/;" c +NonEagerTests Lib/test/test_asyncio/test_eager_task_factory.py /^class NonEagerTests(BaseNonEagerTaskFactoryTests, test_utils.TestCase):$/;" c +NonGC Lib/test/test_finalization.py /^class NonGC(NonGCSimpleBase):$/;" c +NonGCResurrector Lib/test/test_finalization.py /^class NonGCResurrector(NonGCSimpleBase):$/;" c +NonGCSimpleBase Lib/test/test_finalization.py /^class NonGCSimpleBase:$/;" c +NonGen1 Lib/test/test_collections.py /^ class NonGen1:$/;" c function:TestOneTrickPonyABCs.test_Generator +NonGen2 Lib/test/test_collections.py /^ class NonGen2:$/;" c function:TestOneTrickPonyABCs.test_Generator +NonGen3 Lib/test/test_collections.py /^ class NonGen3:$/;" c function:TestOneTrickPonyABCs.test_Generator +NonHandler Lib/test/test_urllib2.py /^ class NonHandler(object):$/;" c function:OpenerDirectorTests.test_add_non_handler +NonHashableFields Lib/test/test_pydoc.py /^ class NonHashableFields:$/;" c function:TestDescriptions.test_field_order_for_named_tuples +NonIntegral Lib/test/test_int.py /^ class NonIntegral(trunc_result_base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +NonIterable Lib/test/test_unittest/testmock/testmagicmethods.py /^ class NonIterable(object):$/;" c function:TestMockingMagicMethods.test_magic_methods_and_spec +NonIterable Lib/test/test_unittest/testmock/testmagicmethods.py /^ class NonIterable(object):$/;" c function:TestMockingMagicMethods.test_magic_methods_and_spec_set +NonIterableFields Lib/test/test_pydoc.py /^ class NonIterableFields:$/;" c function:TestDescriptions.test_field_order_for_named_tuples +NonLocalFlowControlTestCase Lib/test/test_with.py /^class NonLocalFlowControlTestCase(unittest.TestCase):$/;" c +NonLocalSymlinkTests Lib/test/test_os.py /^class NonLocalSymlinkTests(unittest.TestCase):$/;" c +NonP Lib/test/test_typing.py /^ class NonP(P):$/;" c function:ProtocolTests.test_non_protocol_subclasses +NonPR Lib/test/test_typing.py /^ class NonPR(PR): pass$/;" c function:ProtocolTests.test_non_protocol_subclasses +NonPrintableDefect Lib/email/errors.py /^class NonPrintableDefect(HeaderDefect):$/;" c +NonString Lib/test/test_file.py /^ class NonString:$/;" c function:AutoFileTests.testWritelinesNonString +NonStringifyClass Lib/test/test_traceback.py /^ class NonStringifyClass:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args +NonUTF8Server Lib/test/test_imaplib.py /^ class NonUTF8Server(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_enable_UTF8_raises_error_if_not_supported +NonWarningSubclass Lib/test/test_warnings/__init__.py /^ class NonWarningSubclass:$/;" c function:WarnTests.test_warning_classes +NonblockConstantTest Lib/test/test_socket.py /^class NonblockConstantTest(unittest.TestCase):$/;" c +NoneAenter Lib/test/test_contextlib_async.py /^ class NoneAenter(ManagerFromScratch):$/;" c function:TestAbstractAsyncContextManager.test_structural_subclassing +NoneAexit Lib/test/test_contextlib_async.py /^ class NoneAexit(ManagerFromScratch):$/;" c function:TestAbstractAsyncContextManager.test_structural_subclassing +NoneAndForward Lib/test/test_typing.py /^class NoneAndForward:$/;" c +NoneFix Lib/test/test_lib2to3/test_refactor.py /^ class NoneFix(fixer_base.BaseFix):$/;" c function:TestRefactoringTool.test_get_headnode_dict +NoneInfoExtractTests Lib/test/test_tarfile.py /^class NoneInfoExtractTests(ReadTest):$/;" c +NoneInfoExtractTests_Data Lib/test/test_tarfile.py /^class NoneInfoExtractTests_Data(NoneInfoExtractTests, unittest.TestCase):$/;" c +NoneInfoExtractTests_Default Lib/test/test_tarfile.py /^ unittest.TestCase):$/;" c +NoneInfoExtractTests_FullyTrusted Lib/test/test_tarfile.py /^ unittest.TestCase):$/;" c +NoneInfoExtractTests_Tar Lib/test/test_tarfile.py /^class NoneInfoExtractTests_Tar(NoneInfoExtractTests, unittest.TestCase):$/;" c +NoneInfoTests_Misc Lib/test/test_tarfile.py /^class NoneInfoTests_Misc(unittest.TestCase):$/;" c +NoneLengthHint Lib/test/test_iterlen.py /^class NoneLengthHint(object):$/;" c +NoneType Lib/types.py /^NoneType = type(None)$/;" v +NonexceptionalTestCase Lib/test/test_with.py /^class NonexceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):$/;" c +Nonlocal Include/internal/pycore_ast.h /^ } Nonlocal;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon75 +Nonlocal_fields Python/Python-ast.c /^static const char * const Nonlocal_fields[]={$/;" v file: +Nonlocal_kind Include/internal/pycore_ast.h /^ Nonlocal_kind=24, Expr_kind=25, Pass_kind=26, Break_kind=27,$/;" e enum:_stmt_kind +Nonlocal_type Include/internal/pycore_ast_state.h /^ PyObject *Nonlocal_type;$/;" m struct:ast_state +NontotalMovie Lib/test/test_typing.py /^class NontotalMovie(TypedDict, total=False):$/;" c +Noop Lib/test/test_exceptions.py /^ class Noop:$/;" c function:PEP626Tests.test_lineno_after_with +Nope Lib/test/test_poll.py /^ class Nope:$/;" c function:PollTests.test_poll_unit_tests +Nope Lib/test/test_select.py /^ class Nope:$/;" c class:SelectTestCase +NormalClass Lib/test/test_unittest/testmock/testasync.py /^class NormalClass(object):$/;" c +NormalDist Lib/statistics.py /^class NormalDist:$/;" c +NormalizationTest Lib/test/test_unicodedata.py /^class NormalizationTest(unittest.TestCase):$/;" c +NormalizeTest Lib/test/test_locale.py /^class NormalizeTest(unittest.TestCase):$/;" c +Not Include/internal/pycore_ast.h /^typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;$/;" e enum:_unaryop +NotACM Lib/test/test_typing.py /^ class NotACM:$/;" c function:OtherABCTests.test_async_contextmanager +NotAFilter Lib/test/test_logging.py /^ class NotAFilter: pass$/;" c function:ConfigDictTest.test_invalid_type_raises +NotAMock Lib/test/test_unittest/testmock/testpatch.py /^ class NotAMock(object):$/;" c function:PatchTest.test_new_callable_inherit_non_mock +NotAModule Lib/test/test_unittest/test_loader.py /^ class NotAModule(object):$/;" c function:Test_TestLoader.test_loadTestsFromModule__not_a_module +NotAModule Lib/test/test_unittest/test_loader.py /^ class NotAModule(object):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_not_a_module +NotAModule Lib/test/test_unittest/test_loader.py /^ class NotAModule(object):$/;" c function:Test_TestLoader.test_loadTestsFromNames__relative_not_a_module +NotAProtocolButAnImplicitSubclass Lib/test/test_typing.py /^ class NotAProtocolButAnImplicitSubclass:$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +NotAProtocolButAnImplicitSubclass2 Lib/test/test_typing.py /^ class NotAProtocolButAnImplicitSubclass2:$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +NotAProtocolButAnImplicitSubclass3 Lib/test/test_typing.py /^ class NotAProtocolButAnImplicitSubclass3:$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +NotATestCase Lib/test/test_unittest/test_loader.py /^ class NotATestCase(unittest.TestSuite):$/;" c function:Test_TestLoader.test_loadTestsFromTestCase__TestSuite_subclass +NotAnInt Lib/test/test_struct.py /^ class NotAnInt:$/;" c function:StructTest.test_integers.IntTester.run +NotBool Lib/test/test_abc.py /^ class NotBool(object):$/;" c function:test_factory.TestABC.test_descriptors_with_abstractmethod +NotBool Lib/test/test_dynamicclassattribute.py /^ class NotBool(object):$/;" c function:PropertyTests.test_property___isabstractmethod__descriptor +NotBool Lib/test/test_property.py /^ class NotBool(object):$/;" c function:PropertyTests.test_property___isabstractmethod__descriptor +NotConnected Lib/http/client.py /^class NotConnected(HTTPException):$/;" c +NotDataClass Lib/test/test_dataclasses.py /^ class NotDataClass:$/;" c function:TestCase.test_is_dataclass +NotDefined Lib/test/test_print.py /^NotDefined = object()$/;" v +NotEmptyError Lib/mailbox.py /^class NotEmptyError(Error):$/;" c +NotEnough Lib/test/datetimetester.py /^ class NotEnough(tzinfo):$/;" c function:TestTZInfo.test_subclass_must_override +NotEq Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" e enum:_cmpop +NotEq_singleton Include/internal/pycore_ast_state.h /^ PyObject *NotEq_singleton;$/;" m struct:ast_state +NotEq_type Include/internal/pycore_ast_state.h /^ PyObject *NotEq_type;$/;" m struct:ast_state +NotEqualEnum Lib/test/test_enum.py /^ class NotEqualEnum(self.enum_type):$/;" c class:_EnumTests.test_contains_tf.OtherEnum +NotFoundErr Lib/xml/dom/__init__.py /^class NotFoundErr(DOMException):$/;" c +NotFuture Lib/test/test_inspect.py /^ class NotFuture: pass$/;" c function:TestPredicates.test_isawaitable +NotGoingToWork Lib/test/test_subclassinit.py /^ class NotGoingToWork:$/;" c class:Test.test_set_name_error.Descriptor +NotGoingToWork Lib/test/test_subclassinit.py /^ class NotGoingToWork:$/;" c class:Test.test_set_name_wrong.Descriptor +NotHere Lib/test/test_enum.py /^ NotHere = 'error before this point'$/;" v class:TestSpecial.test_wrong_inheritance_order.Wrong +NotImpl Lib/test/test_typing.py /^ class NotImpl:$/;" c function:ProtocolTests.test_runtime_checkable_generic +NotImplementedType Lib/types.py /^NotImplementedType = type(NotImplemented)$/;" v +NotImplemented_reduce Objects/object.c /^NotImplemented_reduce(PyObject *op, PyObject *Py_UNUSED(ignored))$/;" f file: +NotImplemented_repr Objects/object.c /^NotImplemented_repr(PyObject *op)$/;" f file: +NotIn Include/internal/pycore_ast.h /^ In=9, NotIn=10 } cmpop_ty;$/;" e enum:_cmpop +NotIn_singleton Include/internal/pycore_ast_state.h /^ PyObject *NotIn_singleton;$/;" m struct:ast_state +NotIn_type Include/internal/pycore_ast_state.h /^ PyObject *NotIn_type;$/;" m struct:ast_state +NotReadable Lib/test/test_io.py /^ class NotReadable(MockRawIO):$/;" c function:BufferedRWPairTest.test_constructor_with_not_readable +NotRequired Lib/typing.py /^def NotRequired(self, parameters):$/;" f +NotRequiredTests Lib/test/test_typing.py /^class NotRequiredTests(BaseTestCase):$/;" c +NotRuntimeCheckable Lib/test/test_typing.py /^ class NotRuntimeCheckable(Protocol):$/;" c function:ProtocolTests.test_custom_subclasshook_2 +NotSerializable Lib/test/_test_multiprocessing.py /^ class NotSerializable(object):$/;" c function:_TestQueue.test_queue_feeder_donot_stop_onexc +NotSerializable Lib/test/_test_multiprocessing.py /^ class NotSerializable(object):$/;" c function:_TestQueue.test_queue_feeder_on_queue_feeder_error +NotStandalone Modules/pyexpat.c /^ NotStandalone,$/;" e enum:HandlerTypes file: +NotStandaloneHandler Lib/test/test_pyexpat.py /^ def NotStandaloneHandler(self):$/;" m class:ParseTest.Outputter +NotSupportedErr Lib/xml/dom/__init__.py /^class NotSupportedErr(DOMException):$/;" c +NotSupportedError Modules/_sqlite/connection.h /^ PyObject* NotSupportedError;$/;" m struct:__anon359 +NotSupportedError Modules/_sqlite/module.h /^ PyObject *NotSupportedError;$/;" m struct:__anon355 +NotWriteable Lib/test/test_io.py /^ class NotWriteable(MockRawIO):$/;" c function:BufferedRWPairTest.test_constructor_with_not_writeable +Not_singleton Include/internal/pycore_ast_state.h /^ PyObject *Not_singleton;$/;" m struct:ast_state +Not_type Include/internal/pycore_ast_state.h /^ PyObject *Not_type;$/;" m struct:ast_state +Notation Lib/xml/dom/minidom.py /^class Notation(Identified, Childless, Node):$/;" c +NotationDecl Modules/pyexpat.c /^ NotationDecl,$/;" e enum:HandlerTypes file: +NotationDeclHandler Lib/test/test_pyexpat.py /^ def NotationDeclHandler(self, *args):$/;" m class:ParseTest.Outputter +NoteBook Lib/tkinter/tix.py /^class NoteBook(TixWidget):$/;" c +NoteBookFrame Lib/tkinter/tix.py /^class NoteBookFrame(TixWidget):$/;" c +Notebook Lib/tkinter/ttk.py /^class Notebook(Widget):$/;" c +NotebookTest Lib/test/test_ttk/test_widgets.py /^class NotebookTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Nothing Lib/test/test_unittest/test_async_case.py /^ class Nothing:$/;" c function:TestAsyncCase.test_deprecation_of_return_val_from_test +Nothing Lib/test/test_unittest/test_case.py /^ class Nothing:$/;" c function:Test_TestCase.test_deprecation_of_return_val_from_test +NtCommonTest Lib/test/test_ntpath.py /^class NtCommonTest(test_genericpath.CommonTest, unittest.TestCase):$/;" c +NtpathTestCase Lib/test/test_ntpath.py /^class NtpathTestCase(unittest.TestCase):$/;" c +Null Objects/frameobject.c /^ Null = 4,$/;" e enum:kind file: +Null Tools/clinic/clinic.py /^class Null:$/;" c +NullCtx Lib/test/test_sys_settrace.py /^ class NullCtx:$/;" c function:TraceTestCase.test_tracing_exception_raised_in_with +NullFTPHandler Lib/test/test_urllib2.py /^ class NullFTPHandler(urllib.request.FTPHandler):$/;" c function:HandlerTests.test_ftp +NullHandler Lib/logging/__init__.py /^class NullHandler(Handler):$/;" c +NullPyObjectPtr Tools/gdb/libpython.py /^class NullPyObjectPtr(RuntimeError):$/;" c +NullTpDocTypeObject Modules/_testcapi/heaptype.c /^} NullTpDocTypeObject;$/;" t typeref:struct:__anon547 file: +NullTpDocType_slots Modules/_testcapi/heaptype.c /^static PyType_Slot NullTpDocType_slots[] = {$/;" v file: +NullTpDocType_spec Modules/_testcapi/heaptype.c /^static PyType_Spec NullTpDocType_spec = {$/;" v file: +NullTranslations Lib/gettext.py /^class NullTranslations:$/;" c +NullWriter Lib/test/test_marshal.py /^class NullWriter:$/;" c +Null_Type Modules/xxmodule.c /^static PyTypeObject Null_Type = {$/;" v file: +Null_Type_slots Modules/xxlimited_35.c /^static PyType_Slot Null_Type_slots[] = {$/;" v file: +Null_Type_spec Modules/xxlimited_35.c /^static PyType_Spec Null_Type_spec = {$/;" v file: +NullableVisitor Tools/peg_generator/pegen/parser_generator.py /^class NullableVisitor(GrammarVisitor):$/;" c +NullcontextTestCase Lib/test/test_contextlib.py /^class NullcontextTestCase(unittest.TestCase):$/;" c +NulledModules Lib/test/test_tempfile.py /^class NulledModules:$/;" c +Num Lib/ast.py /^class Num(Constant, metaclass=_ABC):$/;" c +Number Lib/lib2to3/fixer_util.py /^def Number(n, prefix=None):$/;" f +Number Lib/lib2to3/pgen2/tokenize.py /^Number = group(Imagnumber, Floatnumber, Intnumber)$/;" v +Number Lib/numbers.py /^class Number(metaclass=ABCMeta):$/;" c +Number Lib/test/datetimetester.py /^ class Number:$/;" c function:Oddballs.test_check_arg_types +Number Lib/test/test_descr.py /^ class Number(complex):$/;" c function:OperatorsTest.test_complexes +Number Lib/test/test_enum.py /^ class Number(IntEnum):$/;" c function:TestIntEnumClass.test_shadowed_attr +Number Lib/test/test_enum.py /^ class Number(IntEnum):$/;" c function:TestSpecial.test_introspection +Number Lib/test/test_richcmp.py /^class Number:$/;" c +Number Lib/tokenize.py /^Number = group(Imagnumber, Floatnumber, Intnumber)$/;" v +NumberFieldWidths Python/formatter_unicode.c /^} NumberFieldWidths;$/;" t typeref:struct:__anon676 file: +NumberOfLinks Include/internal/pycore_fileutils_windows.h /^ ULONG NumberOfLinks;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +NumberTest Lib/test/test_array.py /^class NumberTest(BaseTest):$/;" c +NumberTest Lib/test/test_richcmp.py /^class NumberTest(unittest.TestCase):$/;" c +NumberTestCase Lib/test/test_ctypes/test_numbers.py /^class NumberTestCase(unittest.TestCase):$/;" c +Numbers Lib/test/test_descr.py /^ class Numbers:$/;" c function:.test_load_attr_extended_arg +NumericOwnerTest Lib/test/test_tarfile.py /^class NumericOwnerTest(unittest.TestCase):$/;" c +NumericTestCase Lib/test/test_statistics.py /^class NumericTestCase(unittest.TestCase):$/;" c +O Lib/test/test_descr.py /^ class O(object):$/;" c function:.test_set_class +O Lib/test/test_descr.py /^ class O(object):$/;" c function:.test_unsubclassable_types +O Lib/test/test_fstring.py /^ class O:$/;" c function:.test_missing_format_spec +O Lib/test/test_functools.py /^ class O(c.Sized):$/;" c function:TestSingleDispatch.test_mro_conflicts +O Modules/_ctypes/_ctypes_test.c /^ short M: 1, N: 2, O: 3, P: 4, Q: 5, R: 6, S: 7;$/;" m struct:BITS file: +OBJ Lib/pickle.py /^OBJ = b'o' # build & push class instance$/;" v +OBJ Modules/_pickle.c /^ OBJ = 'o',$/;" e enum:opcode file: +OBJDIR_PLAT Tools/msi/buildrelease.bat /^ set OBJDIR_PLAT=arm64$/;" v +OBJDIR_PLAT Tools/msi/buildrelease.bat /^ set OBJDIR_PLAT=x64$/;" v +OBJDIR_PLAT Tools/msi/buildrelease.bat /^ set OBJDIR_PLAT=x86$/;" v +OBJECTS_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 33;" d +OBJECT_SLOT Python/specialize.c /^ OBJECT_SLOT, \/* Is an object slot descriptor *\/$/;" e enum:__anon686 file: +OBJECT_STAT_INC Include/internal/pycore_code.h 262;" d +OBJECT_STAT_INC Include/internal/pycore_code.h 277;" d +OBJECT_STAT_INC_COND Include/internal/pycore_code.h 263;" d +OBJECT_STAT_INC_COND Include/internal/pycore_code.h 278;" d +OBJECT___DIR___METHODDEF Objects/clinic/typeobject.c.h 261;" d +OBJECT___FORMAT___METHODDEF Objects/clinic/typeobject.c.h 211;" d +OBJECT___GETSTATE___METHODDEF Objects/clinic/typeobject.c.h 145;" d +OBJECT___REDUCE_EX___METHODDEF Objects/clinic/typeobject.c.h 181;" d +OBJECT___REDUCE___METHODDEF Objects/clinic/typeobject.c.h 163;" d +OBJECT___SIZEOF___METHODDEF Objects/clinic/typeobject.c.h 243;" d +OBJ_NAME Lib/test/test_lib2to3/data/infinite_recursion.py /^OBJ_NAME = obj_name_st$/;" v +OBMALLOC_USED_POOLS_SIZE Include/internal/pycore_obmalloc.h 417;" d +OCTDIGITS Lib/re/_parser.py /^OCTDIGITS = frozenset("01234567")$/;" v +OCTOBER Lib/calendar.py /^ OCTOBER = 10$/;" v class:Month +OD Lib/test/test_sys.py /^ class OD(OrderedDict):$/;" c function:SizeofTest.test_slots +ODBCAttribute Lib/msilib/schema.py /^ODBCAttribute = Table('ODBCAttribute')$/;" v +ODBCDataSource Lib/msilib/schema.py /^ODBCDataSource = Table('ODBCDataSource')$/;" v +ODBCDriver Lib/msilib/schema.py /^ODBCDriver = Table('ODBCDriver')$/;" v +ODBCSourceAttribute Lib/msilib/schema.py /^ODBCSourceAttribute = Table('ODBCSourceAttribute')$/;" v +ODBCTranslator Lib/msilib/schema.py /^ODBCTranslator = Table('ODBCTranslator')$/;" v +ODNI Lib/test/test_ordered_dict.py /^ class ODNI(OrderedDict):$/;" c function:OrderedDictTests.test_overridden_init +OFF Modules/_functoolsmodule.c 341;" d file: +OFF Objects/codeobject.c 1871;" d file: +OFF Objects/frameobject.c 16;" d file: +OFF Objects/funcobject.c 451;" d file: +OFF Objects/methodobject.c 272;" d file: +OFF PC/winreg.c 354;" d file: +OFF Python/symtable.c 171;" d file: +OFF Python/traceback.c 26;" d file: +OFFSET Modules/_datetimemodule.c 2726;" d file: +OFFSET_SHIFT Python/instrumentation.c 248;" d file: +OFF_BYTES_TO_FEED Modules/_io/textio.c 2332;" d file: +OFF_BYTES_TO_FEED Modules/_io/textio.c 2342;" d file: +OFF_C Lib/test/test_enum.py /^ OFF_C = 0$/;" v class:HeadlightsC +OFF_CHARS_TO_SKIP Modules/_io/textio.c 2333;" d file: +OFF_CHARS_TO_SKIP Modules/_io/textio.c 2343;" d file: +OFF_DEC_FLAGS Modules/_io/textio.c 2331;" d file: +OFF_DEC_FLAGS Modules/_io/textio.c 2341;" d file: +OFF_K Lib/test/test_enum.py /^ OFF_K = 0$/;" v class:HeadlightsK +OFF_NEED_EOF Modules/_io/textio.c 2334;" d file: +OFF_NEED_EOF Modules/_io/textio.c 2344;" d file: +OFF_START_POS Modules/_io/textio.c 2330;" d file: +OFF_START_POS Modules/_io/textio.c 2340;" d file: +OFF_T_MAX Modules/posixmodule.c 10916;" d file: +OFLAG Lib/tty.py /^OFLAG = 1$/;" v +OFS_E Python/pystrtod.c 924;" d file: +OFS_INF Python/pystrtod.c 922;" d file: +OFS_NAN Python/pystrtod.c 923;" d file: +OK Lib/http/__init__.py /^ OK = 200, 'OK', 'Request fulfilled, document follows'$/;" v class:HTTPStatus +OK Lib/test/test_httplib.py /^ OK = 200, 'OK', 'Request fulfilled, document follows'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +OK Lib/tkinter/messagebox.py /^OK = "ok"$/;" v +OKCANCEL Lib/tkinter/messagebox.py /^OKCANCEL = "okcancel"$/;" v +OKClass Lib/test/test_typing.py /^ class OKClass: pass$/;" c function:ProtocolTests.test_custom_subclasshook +OKWindowTest Lib/idlelib/idle_test/test_config_key.py /^class OKWindowTest(unittest.TestCase):$/;" c +OLDPWD PCbuild/prepare_libffi.bat /^set OLDPWD=%LIBFFI_SOURCE%$/;" v +OLDSTYLE_AUTH Lib/smtplib.py /^OLDSTYLE_AUTH = re.compile(r"auth=(.*)", re.I)$/;" v +OLD_ENVIRON Lib/telnetlib.py /^OLD_ENVIRON = bytes([36]) # Old - Environment variables$/;" v +OLD_SYS_PATH Lib/test/test_site.py /^OLD_SYS_PATH = None$/;" v +OMIT_FILES Tools/wasm/wasm_assets.py /^OMIT_FILES = ($/;" v +OMIT_MODULE_FILES Tools/wasm/wasm_assets.py /^OMIT_MODULE_FILES = {$/;" v +OMIT_NETWORKING_FILES Tools/wasm/wasm_assets.py /^OMIT_NETWORKING_FILES = ($/;" v +OMState Objects/obmalloc.c /^typedef struct _obmalloc_state OMState;$/;" t typeref:struct:_obmalloc_state file: +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:MiscTestCase.test_doc_1.Single +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:MiscTestCase.test_doc_2.Double +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:MiscTestCase.test_doc_3.Triple +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:MiscTestCase.test_doc_4.Quadruple +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestFlag.test_boundary.Iron +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestFlag.test_boundary.Space +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestFlag.test_boundary.Water +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestFlag.test_init_subclass.NeverEnum +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestFlag.test_init_subclass.NoEnum +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestIntFlag.test_boundary.Iron +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestIntFlag.test_boundary.Space +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:OldTestIntFlag.test_boundary.Water +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:TestSpecial.test_custom_flag_bitwise.MyIntFlag +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:TestSpecial.test_int_flags_copy.MyIntFlag +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:TestSpecial.test_pickle_by_name.ReplaceGlobalInt +ONE Lib/test/test_enum.py /^ ONE = 1, 1.0$/;" v class:TestSpecial.test_programmatic_function_is_value_call.TwoPart +ONE Lib/test/test_enum.py /^ ONE = 1, 1.0, 'one'$/;" v class:TestSpecial.test_programmatic_function_is_value_call.ThreePart +ONE Lib/test/test_enum.py /^ ONE = auto()$/;" v class:OldTestFlag.test_number_reset_and_order_cleanup.Confused +ONE Lib/test/test_enum.py /^ ONE = auto()$/;" v class:TestInternals.test_multiple_auto_on_line.Huh +ONE Lib/test/test_enum.py /^ ONE = 1$/;" v class:NoName +ONE Objects/odictobject.c 546;" d file: +ONE_H Lib/test/test_zoneinfo/test_zoneinfo.py /^ONE_H = timedelta(hours=1)$/;" v +ONE_OR_MORE Lib/argparse.py /^ONE_OR_MORE = '+'$/;" v +ONE_SIXTH Lib/colorsys.py /^ONE_SIXTH = 1.0\/6.0$/;" v +ONE_THIRD Lib/colorsys.py /^ONE_THIRD = 1.0\/3.0$/;" v +ONE_TWENTY_EIGHT Lib/test/test_enum.py /^ ONE_TWENTY_EIGHT = 128$/;" v class:TestStdLib.test_test_simple_enum.CheckedMissing +ONE_TWENTY_EIGHT Lib/test/test_enum.py /^ ONE_TWENTY_EIGHT = 128$/;" v class:TestStdLib.test_test_simple_enum.Missing +ONLYCERT Lib/test/test_asyncio/utils.py /^ONLYCERT = data_file('ssl_cert.pem')$/;" v +ONLYCERT Lib/test/test_ssl.py /^ONLYCERT = data_file("ssl_cert.pem")$/;" v +ONLYKEY Lib/test/test_asyncio/utils.py /^ONLYKEY = data_file('ssl_key.pem')$/;" v +ONLYKEY Lib/test/test_ssl.py /^ONLYKEY = data_file("ssl_key.pem")$/;" v +ONLYKEY_PROTECTED Lib/test/test_ssl.py /^ONLYKEY_PROTECTED = data_file("ssl_key.passwd.pem")$/;" v +OP Include/internal/pycore_token.h 71;" d +OP Lib/lib2to3/pgen2/token.py /^OP = 52$/;" v +OP Lib/token.py /^OP = 55$/;" v +OP Modules/_pickle.c 6848;" d file: +OPCODES Lib/re/_constants.py /^OPCODES = _makecodes($/;" v +OPCODE_EXE_INC Include/internal/pycore_code.h 260;" d +OPCODE_EXE_INC Include/internal/pycore_code.h 275;" d +OPENAT_DIR_FD_CONVERTER Modules/posixmodule.c 2738;" d file: +OPENAT_DIR_FD_CONVERTER Modules/posixmodule.c 2740;" d file: +OPENSSL_API_COMPAT Modules/_hashopenssl.c 17;" d file: +OPENSSL_API_COMPAT Modules/_ssl.c 20;" d file: +OPENSSL_NO_DEPRECATED Modules/_hashopenssl.c 19;" d file: +OPENSSL_NO_DEPRECATED Modules/_ssl.c 22;" d file: +OPENSSL_OLD_VERSIONS Tools/ssl/multissltests.py /^OPENSSL_OLD_VERSIONS = [$/;" v +OPENSSL_RECENT_VERSIONS Tools/ssl/multissltests.py /^OPENSSL_RECENT_VERSIONS = [$/;" v +OPEN_INTERNAL_ENTITY Modules/expat/xmlparse.c /^} OPEN_INTERNAL_ENTITY;$/;" t typeref:struct:open_internal_entity file: +OPEN_METH Lib/tarfile.py /^ OPEN_METH = {$/;" v class:TarFile +OPTCRE Lib/configparser.py /^ OPTCRE = re.compile(_OPT_TMPL.format(delim="=|:"), re.VERBOSE)$/;" v class:RawConfigParser +OPTCRE_NV Lib/configparser.py /^ OPTCRE_NV = re.compile(_OPT_NV_TMPL.format(delim="=|:"), re.VERBOSE)$/;" v class:RawConfigParser +OPTIONAL Lib/argparse.py /^OPTIONAL = '?'$/;" v +OPTIONAL_FEATURES Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static struct { LPCWSTR regName; LPCWSTR variableName; } OPTIONAL_FEATURES[] = {$/;" v typeref:struct:__anon277 file: +OPTIONFLAGS_BY_NAME Lib/doctest.py /^OPTIONFLAGS_BY_NAME = {}$/;" v +OPTIONS Lib/http/__init__.py /^ OPTIONS = 'OPTIONS', 'Describe the communication options for the target.'$/;" v class:HTTPMethod +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:ButtonTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:CanvasTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:CheckbuttonTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:EntryTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:FrameTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:LabelFrameTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:LabelTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:ListboxTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:MenuTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:MenubuttonTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:MessageTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:PanedWindowTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:RadiobuttonTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:ScaleTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:ScrollbarTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:SpinboxTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:TextTest +OPTIONS Lib/test/test_tkinter/test_widgets.py /^ OPTIONS = ($/;" v class:ToplevelTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:ButtonTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:CheckbuttonTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:ComboboxTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:EntryTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:FrameTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:LabelFrameTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:LabelTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:MenubuttonTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:NotebookTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:PanedWindowTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:ProgressbarTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:RadiobuttonTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:ScaleTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:ScrollbarTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:SeparatorTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:SizegripTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:SpinboxTest +OPTIONS Lib/test/test_ttk/test_widgets.py /^ OPTIONS = ($/;" v class:TreeviewTest +OPTIONS PC/layout/support/options.py /^OPTIONS = {$/;" v +OP_ARG Modules/_pickle.c 6851;" d file: +OP_CIPHER_SERVER_PREFERENCE Lib/test/test_ssl.py /^OP_CIPHER_SERVER_PREFERENCE = getattr(ssl, "OP_CIPHER_SERVER_PREFERENCE", 0)$/;" v +OP_ENABLE_MIDDLEBOX_COMPAT Lib/test/test_ssl.py /^OP_ENABLE_MIDDLEBOX_COMPAT = getattr(ssl, "OP_ENABLE_MIDDLEBOX_COMPAT", 0)$/;" v +OP_IGNORE Lib/re/_constants.py /^OP_IGNORE = {$/;" v +OP_LOCALE_IGNORE Lib/re/_constants.py /^OP_LOCALE_IGNORE = {$/;" v +OP_NO_COMPRESSION Lib/test/test_ssl.py /^OP_NO_COMPRESSION = getattr(ssl, "OP_NO_COMPRESSION", 0)$/;" v +OP_SINGLE_DH_USE Lib/test/test_ssl.py /^OP_SINGLE_DH_USE = getattr(ssl, "OP_SINGLE_DH_USE", 0)$/;" v +OP_SINGLE_ECDH_USE Lib/test/test_ssl.py /^OP_SINGLE_ECDH_USE = getattr(ssl, "OP_SINGLE_ECDH_USE", 0)$/;" v +OP_UNICODE_IGNORE Lib/re/_constants.py /^OP_UNICODE_IGNORE = {$/;" v +OR Lib/ast.py /^ OR = auto() # 'or'$/;" v class:_Precedence +OR Lib/test/test_ast.py /^ OR = enum.auto() # 'or'$/;" v class:AST_Tests.test_precedence_enum._Precedence +OR Tools/cases_generator/lexer.py /^OR = r'\\|'$/;" v +ORDEREDDICT_FROMKEYS_METHODDEF Objects/clinic/odictobject.c.h 17;" d +ORDEREDDICT_MOVE_TO_END_METHODDEF Objects/clinic/odictobject.c.h 277;" d +ORDEREDDICT_POPITEM_METHODDEF Objects/clinic/odictobject.c.h 212;" d +ORDEREDDICT_POP_METHODDEF Objects/clinic/odictobject.c.h 147;" d +ORDEREDDICT_SETDEFAULT_METHODDEF Objects/clinic/odictobject.c.h 81;" d +ORG PCbuild/get_externals.bat /^if "%ORG%"=="" (set ORG=python)$/;" v +ORG PCbuild/get_externals.bat /^if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts$/;" v +ORG Tools/msi/get_externals.bat /^if "%ORG%"=="" (set ORG=python)$/;" v +ORG Tools/msi/get_externals.bat /^if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts$/;" v +ORG_SETTING PCbuild/prepare_ssl.bat /^if "%~1"=="--organization" (set ORG_SETTING=--organization "%~2") && shift && shift && goto CheckOpts$/;" v +ORG_SETTING PCbuild/prepare_ssl.bat /^set ORG_SETTING=$/;" v +ORG_SETTING PCbuild/prepare_tcltk.bat /^if "%~1"=="--organization" (set ORG_SETTING=--organization "%~2") && shift && shift && goto CheckOpts$/;" v +ORG_SETTING PCbuild/prepare_tcltk.bat /^set ORG_SETTING=$/;" v +ORIGINAL_CONTEXT Lib/test/test_decimal.py /^ORIGINAL_CONTEXT = {$/;" v +ORIGINAL_DIR Lib/multiprocessing/process.py /^ ORIGINAL_DIR = None$/;" v +ORIGINAL_DIR Lib/multiprocessing/process.py /^ ORIGINAL_DIR = os.path.abspath(os.getcwd())$/;" v +OR_DTRACE_LINE Python/ceval_macros.h 45;" d +OR_DTRACE_LINE Python/ceval_macros.h 47;" d +OR_NONE Objects/exceptions.c 1994;" d file: +OS Tools/c-analyzer/c_parser/preprocessor/errors.py /^OS = sys.platform$/;" v +OSBigEndian Lib/test/test_lib2to3/data/infinite_recursion.py /^OSBigEndian = 2$/;" v +OSEINTRTest Lib/test/_test_eintr.py /^class OSEINTRTest(EINTRBaseTest):$/;" c +OSErrorTests Lib/test/test_os.py /^class OSErrorTests(unittest.TestCase):$/;" c +OSError_clear Objects/exceptions.c /^OSError_clear(PyOSErrorObject *self)$/;" f file: +OSError_dealloc Objects/exceptions.c /^OSError_dealloc(PyOSErrorObject *self)$/;" f file: +OSError_getset Objects/exceptions.c /^static PyGetSetDef OSError_getset[] = {$/;" v file: +OSError_init Objects/exceptions.c /^OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds)$/;" f file: +OSError_members Objects/exceptions.c /^static PyMemberDef OSError_members[] = {$/;" v file: +OSError_methods Objects/exceptions.c /^static PyMethodDef OSError_methods[] = {$/;" v file: +OSError_new Objects/exceptions.c /^OSError_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +OSError_reduce Objects/exceptions.c /^OSError_reduce(PyOSErrorObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +OSError_str Objects/exceptions.c /^OSError_str(PyOSErrorObject *self)$/;" f file: +OSError_traverse Objects/exceptions.c /^OSError_traverse(PyOSErrorObject *self, visitproc visit,$/;" f file: +OSError_written_get Objects/exceptions.c /^OSError_written_get(PyOSErrorObject *self, void *context)$/;" f file: +OSError_written_set Objects/exceptions.c /^OSError_written_set(PyOSErrorObject *self, PyObject *arg, void *context)$/;" f file: +OSLittleEndian Lib/test/test_lib2to3/data/infinite_recursion.py /^OSLittleEndian = 1$/;" v +OSMismatchError Tools/c-analyzer/c_parser/preprocessor/errors.py /^class OSMismatchError(MissingDependenciesError):$/;" c +OSPEED Lib/tty.py /^OSPEED = 5$/;" v +OSSAudioDevTests Lib/test/test_ossaudiodev.py /^class OSSAudioDevTests(unittest.TestCase):$/;" c +OSSAudioError Modules/ossaudiodev.c /^static PyObject *OSSAudioError;$/;" v file: +OSSAudioType Modules/ossaudiodev.c /^static PyTypeObject OSSAudioType = {$/;" v file: +OSSAudioType Modules/ossaudiodev.c /^static PyTypeObject OSSAudioType;$/;" v file: +OSSMixerType Modules/ossaudiodev.c /^static PyTypeObject OSSMixerType = {$/;" v file: +OSSMixerType Modules/ossaudiodev.c /^static PyTypeObject OSSMixerType;$/;" v file: +OSUnknownByteOrder Lib/test/test_lib2to3/data/infinite_recursion.py /^OSUnknownByteOrder = 0$/;" v +OSXEnvironmentVariableTestCase Lib/test/test_osx_env.py /^class OSXEnvironmentVariableTestCase(unittest.TestCase):$/;" c +OS_ABORT_METHODDEF Modules/clinic/posixmodule.c.h 9328;" d +OS_ACCESS_METHODDEF Modules/clinic/posixmodule.c.h 213;" d +OS_CHDIR_METHODDEF Modules/clinic/posixmodule.c.h 374;" d +OS_CHFLAGS_METHODDEF Modules/clinic/posixmodule.c.h 11404;" d +OS_CHFLAGS_METHODDEF Modules/clinic/posixmodule.c.h 763;" d +OS_CHMOD_METHODDEF Modules/clinic/posixmodule.c.h 521;" d +OS_CHOWN_METHODDEF Modules/clinic/posixmodule.c.h 11428;" d +OS_CHOWN_METHODDEF Modules/clinic/posixmodule.c.h 1149;" d +OS_CHROOT_METHODDEF Modules/clinic/posixmodule.c.h 11412;" d +OS_CHROOT_METHODDEF Modules/clinic/posixmodule.c.h 917;" d +OS_CLOSERANGE_METHODDEF Modules/clinic/posixmodule.c.h 6302;" d +OS_CLOSE_METHODDEF Modules/clinic/posixmodule.c.h 6244;" d +OS_CONFSTR_METHODDEF Modules/clinic/posixmodule.c.h 11912;" d +OS_CONFSTR_METHODDEF Modules/clinic/posixmodule.c.h 9260;" d +OS_COPY_FILE_RANGE_METHODDEF Modules/clinic/posixmodule.c.h 11808;" d +OS_COPY_FILE_RANGE_METHODDEF Modules/clinic/posixmodule.c.h 7524;" d +OS_CPU_COUNT_METHODDEF Modules/clinic/posixmodule.c.h 10441;" d +OS_CTERMID_METHODDEF Modules/clinic/posixmodule.c.h 11388;" d +OS_CTERMID_METHODDEF Modules/clinic/posixmodule.c.h 350;" d +OS_DEVICE_ENCODING_METHODDEF Modules/clinic/posixmodule.c.h 9520;" d +OS_DIRENTRY_INODE_METHODDEF Modules/clinic/posixmodule.c.h 10938;" d +OS_DIRENTRY_IS_DIR_METHODDEF Modules/clinic/posixmodule.c.h 10800;" d +OS_DIRENTRY_IS_FILE_METHODDEF Modules/clinic/posixmodule.c.h 10869;" d +OS_DIRENTRY_IS_JUNCTION_METHODDEF Modules/clinic/posixmodule.c.h 10704;" d +OS_DIRENTRY_IS_SYMLINK_METHODDEF Modules/clinic/posixmodule.c.h 10672;" d +OS_DIRENTRY_STAT_METHODDEF Modules/clinic/posixmodule.c.h 10736;" d +OS_DIRENTRY___FSPATH___METHODDEF Modules/clinic/posixmodule.c.h 10956;" d +OS_DUP2_METHODDEF Modules/clinic/posixmodule.c.h 11760;" d +OS_DUP2_METHODDEF Modules/clinic/posixmodule.c.h 6373;" d +OS_DUP_METHODDEF Modules/clinic/posixmodule.c.h 6338;" d +OS_ENV_LOCK Lib/test/test_zoneinfo/_support.py /^OS_ENV_LOCK = threading.Lock()$/;" v +OS_EVENTFD_METHODDEF Modules/clinic/posixmodule.c.h 10191;" d +OS_EVENTFD_METHODDEF Modules/clinic/posixmodule.c.h 11964;" d +OS_EVENTFD_READ_METHODDEF Modules/clinic/posixmodule.c.h 10262;" d +OS_EVENTFD_READ_METHODDEF Modules/clinic/posixmodule.c.h 11968;" d +OS_EVENTFD_WRITE_METHODDEF Modules/clinic/posixmodule.c.h 10323;" d +OS_EVENTFD_WRITE_METHODDEF Modules/clinic/posixmodule.c.h 11972;" d +OS_EXECVE_METHODDEF Modules/clinic/posixmodule.c.h 11520;" d +OS_EXECVE_METHODDEF Modules/clinic/posixmodule.c.h 3370;" d +OS_EXECV_METHODDEF Modules/clinic/posixmodule.c.h 11516;" d +OS_EXECV_METHODDEF Modules/clinic/posixmodule.c.h 3324;" d +OS_FCHDIR_METHODDEF Modules/clinic/posixmodule.c.h 11392;" d +OS_FCHDIR_METHODDEF Modules/clinic/posixmodule.c.h 439;" d +OS_FCHMOD_METHODDEF Modules/clinic/posixmodule.c.h 11396;" d +OS_FCHMOD_METHODDEF Modules/clinic/posixmodule.c.h 618;" d +OS_FCHOWN_METHODDEF Modules/clinic/posixmodule.c.h 11432;" d +OS_FCHOWN_METHODDEF Modules/clinic/posixmodule.c.h 1243;" d +OS_FDATASYNC_METHODDEF Modules/clinic/posixmodule.c.h 1064;" d +OS_FDATASYNC_METHODDEF Modules/clinic/posixmodule.c.h 11424;" d +OS_FORK1_METHODDEF Modules/clinic/posixmodule.c.h 11544;" d +OS_FORK1_METHODDEF Modules/clinic/posixmodule.c.h 3938;" d +OS_FORKPTY_METHODDEF Modules/clinic/posixmodule.c.h 11600;" d +OS_FORKPTY_METHODDEF Modules/clinic/posixmodule.c.h 4503;" d +OS_FORK_METHODDEF Modules/clinic/posixmodule.c.h 11548;" d +OS_FORK_METHODDEF Modules/clinic/posixmodule.c.h 3962;" d +OS_FPATHCONF_METHODDEF Modules/clinic/posixmodule.c.h 11904;" d +OS_FPATHCONF_METHODDEF Modules/clinic/posixmodule.c.h 9140;" d +OS_FSPATH_METHODDEF Modules/clinic/posixmodule.c.h 11049;" d +OS_FSTATVFS_METHODDEF Modules/clinic/posixmodule.c.h 11892;" d +OS_FSTATVFS_METHODDEF Modules/clinic/posixmodule.c.h 8974;" d +OS_FSTAT_METHODDEF Modules/clinic/posixmodule.c.h 7173;" d +OS_FSYNC_METHODDEF Modules/clinic/posixmodule.c.h 11416;" d +OS_FSYNC_METHODDEF Modules/clinic/posixmodule.c.h 981;" d +OS_FTRUNCATE_METHODDEF Modules/clinic/posixmodule.c.h 11836;" d +OS_FTRUNCATE_METHODDEF Modules/clinic/posixmodule.c.h 8060;" d +OS_GETCWDB_METHODDEF Modules/clinic/posixmodule.c.h 1404;" d +OS_GETCWD_METHODDEF Modules/clinic/posixmodule.c.h 1386;" d +OS_GETEGID_METHODDEF Modules/clinic/posixmodule.c.h 11604;" d +OS_GETEGID_METHODDEF Modules/clinic/posixmodule.c.h 4525;" d +OS_GETEUID_METHODDEF Modules/clinic/posixmodule.c.h 11608;" d +OS_GETEUID_METHODDEF Modules/clinic/posixmodule.c.h 4547;" d +OS_GETGID_METHODDEF Modules/clinic/posixmodule.c.h 11612;" d +OS_GETGID_METHODDEF Modules/clinic/posixmodule.c.h 4569;" d +OS_GETGROUPLIST_METHODDEF Modules/clinic/posixmodule.c.h 11620;" d +OS_GETGROUPLIST_METHODDEF Modules/clinic/posixmodule.c.h 4618;" d +OS_GETGROUPLIST_METHODDEF Modules/clinic/posixmodule.c.h 4672;" d +OS_GETGROUPS_METHODDEF Modules/clinic/posixmodule.c.h 11624;" d +OS_GETGROUPS_METHODDEF Modules/clinic/posixmodule.c.h 4720;" d +OS_GETLOADAVG_METHODDEF Modules/clinic/posixmodule.c.h 11924;" d +OS_GETLOADAVG_METHODDEF Modules/clinic/posixmodule.c.h 9497;" d +OS_GETLOGIN_METHODDEF Modules/clinic/posixmodule.c.h 11648;" d +OS_GETLOGIN_METHODDEF Modules/clinic/posixmodule.c.h 4959;" d +OS_GETPGID_METHODDEF Modules/clinic/posixmodule.c.h 11632;" d +OS_GETPGID_METHODDEF Modules/clinic/posixmodule.c.h 4833;" d +OS_GETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 11636;" d +OS_GETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 4890;" d +OS_GETPID_METHODDEF Modules/clinic/posixmodule.c.h 11616;" d +OS_GETPID_METHODDEF Modules/clinic/posixmodule.c.h 4591;" d +OS_GETPPID_METHODDEF Modules/clinic/posixmodule.c.h 11644;" d +OS_GETPPID_METHODDEF Modules/clinic/posixmodule.c.h 4937;" d +OS_GETPRIORITY_METHODDEF Modules/clinic/posixmodule.c.h 11496;" d +OS_GETPRIORITY_METHODDEF Modules/clinic/posixmodule.c.h 2397;" d +OS_GETRANDOM_METHODDEF Modules/clinic/posixmodule.c.h 11106;" d +OS_GETRANDOM_METHODDEF Modules/clinic/posixmodule.c.h 11988;" d +OS_GETRESGID_METHODDEF Modules/clinic/posixmodule.c.h 11940;" d +OS_GETRESGID_METHODDEF Modules/clinic/posixmodule.c.h 9686;" d +OS_GETRESUID_METHODDEF Modules/clinic/posixmodule.c.h 11936;" d +OS_GETRESUID_METHODDEF Modules/clinic/posixmodule.c.h 9664;" d +OS_GETSID_METHODDEF Modules/clinic/posixmodule.c.h 11740;" d +OS_GETSID_METHODDEF Modules/clinic/posixmodule.c.h 5997;" d +OS_GETUID_METHODDEF Modules/clinic/posixmodule.c.h 11652;" d +OS_GETUID_METHODDEF Modules/clinic/posixmodule.c.h 4981;" d +OS_GETXATTR_METHODDEF Modules/clinic/posixmodule.c.h 11944;" d +OS_GETXATTR_METHODDEF Modules/clinic/posixmodule.c.h 9713;" d +OS_GET_BLOCKING_METHODDEF Modules/clinic/posixmodule.c.h 10600;" d +OS_GET_HANDLE_INHERITABLE_METHODDEF Modules/clinic/posixmodule.c.h 10530;" d +OS_GET_HANDLE_INHERITABLE_METHODDEF Modules/clinic/posixmodule.c.h 11980;" d +OS_GET_INHERITABLE_METHODDEF Modules/clinic/posixmodule.c.h 10459;" d +OS_GET_TERMINAL_SIZE_METHODDEF Modules/clinic/posixmodule.c.h 10400;" d +OS_GET_TERMINAL_SIZE_METHODDEF Modules/clinic/posixmodule.c.h 11976;" d +OS_INITGROUPS_METHODDEF Modules/clinic/posixmodule.c.h 11628;" d +OS_INITGROUPS_METHODDEF Modules/clinic/posixmodule.c.h 4746;" d +OS_INITGROUPS_METHODDEF Modules/clinic/posixmodule.c.h 4792;" d +OS_INIT_DEFINED Modules/socketmodule.c 7274;" d file: +OS_ISATTY_METHODDEF Modules/clinic/posixmodule.c.h 7234;" d +OS_KILLPG_METHODDEF Modules/clinic/posixmodule.c.h 11660;" d +OS_KILLPG_METHODDEF Modules/clinic/posixmodule.c.h 5036;" d +OS_KILL_METHODDEF Modules/clinic/posixmodule.c.h 11656;" d +OS_KILL_METHODDEF Modules/clinic/posixmodule.c.h 5003;" d +OS_LCHFLAGS_METHODDEF Modules/clinic/posixmodule.c.h 11408;" d +OS_LCHFLAGS_METHODDEF Modules/clinic/posixmodule.c.h 847;" d +OS_LCHMOD_METHODDEF Modules/clinic/posixmodule.c.h 11400;" d +OS_LCHMOD_METHODDEF Modules/clinic/posixmodule.c.h 688;" d +OS_LCHOWN_METHODDEF Modules/clinic/posixmodule.c.h 11436;" d +OS_LCHOWN_METHODDEF Modules/clinic/posixmodule.c.h 1316;" d +OS_LINK_METHODDEF Modules/clinic/posixmodule.c.h 11440;" d +OS_LINK_METHODDEF Modules/clinic/posixmodule.c.h 1435;" d +OS_LISTDIR_METHODDEF Modules/clinic/posixmodule.c.h 1543;" d +OS_LISTDRIVES_METHODDEF Modules/clinic/posixmodule.c.h 11444;" d +OS_LISTDRIVES_METHODDEF Modules/clinic/posixmodule.c.h 1612;" d +OS_LISTMOUNTS_METHODDEF Modules/clinic/posixmodule.c.h 11452;" d +OS_LISTMOUNTS_METHODDEF Modules/clinic/posixmodule.c.h 1660;" d +OS_LISTVOLUMES_METHODDEF Modules/clinic/posixmodule.c.h 11448;" d +OS_LISTVOLUMES_METHODDEF Modules/clinic/posixmodule.c.h 1636;" d +OS_LISTXATTR_METHODDEF Modules/clinic/posixmodule.c.h 11956;" d +OS_LISTXATTR_METHODDEF Modules/clinic/posixmodule.c.h 9999;" d +OS_LOCKF_METHODDEF Modules/clinic/posixmodule.c.h 11764;" d +OS_LOCKF_METHODDEF Modules/clinic/posixmodule.c.h 6462;" d +OS_LOGIN_TTY_METHODDEF Modules/clinic/posixmodule.c.h 11596;" d +OS_LOGIN_TTY_METHODDEF Modules/clinic/posixmodule.c.h 4467;" d +OS_LSEEK_METHODDEF Modules/clinic/posixmodule.c.h 6516;" d +OS_LSTAT_METHODDEF Modules/clinic/posixmodule.c.h 118;" d +OS_MAJOR_METHODDEF Modules/clinic/posixmodule.c.h 11824;" d +OS_MAJOR_METHODDEF Modules/clinic/posixmodule.c.h 7943;" d +OS_MAKEDEV_METHODDEF Modules/clinic/posixmodule.c.h 11832;" d +OS_MAKEDEV_METHODDEF Modules/clinic/posixmodule.c.h 8015;" d +OS_MEMFD_CREATE_METHODDEF Modules/clinic/posixmodule.c.h 10117;" d +OS_MEMFD_CREATE_METHODDEF Modules/clinic/posixmodule.c.h 11960;" d +OS_MINOR_METHODDEF Modules/clinic/posixmodule.c.h 11828;" d +OS_MINOR_METHODDEF Modules/clinic/posixmodule.c.h 7979;" d +OS_MKDIR_METHODDEF Modules/clinic/posixmodule.c.h 2280;" d +OS_MKFIFO_METHODDEF Modules/clinic/posixmodule.c.h 11816;" d +OS_MKFIFO_METHODDEF Modules/clinic/posixmodule.c.h 7747;" d +OS_MKNOD_METHODDEF Modules/clinic/posixmodule.c.h 11820;" d +OS_MKNOD_METHODDEF Modules/clinic/posixmodule.c.h 7846;" d +OS_NICE_METHODDEF Modules/clinic/posixmodule.c.h 11492;" d +OS_NICE_METHODDEF Modules/clinic/posixmodule.c.h 2365;" d +OS_OPENPTY_METHODDEF Modules/clinic/posixmodule.c.h 11592;" d +OS_OPENPTY_METHODDEF Modules/clinic/posixmodule.c.h 4441;" d +OS_OPEN_METHODDEF Modules/clinic/posixmodule.c.h 6151;" d +OS_PATHCONF_METHODDEF Modules/clinic/posixmodule.c.h 11908;" d +OS_PATHCONF_METHODDEF Modules/clinic/posixmodule.c.h 9187;" d +OS_PIDFD_OPEN_METHODDEF Modules/clinic/posixmodule.c.h 11716;" d +OS_PIDFD_OPEN_METHODDEF Modules/clinic/posixmodule.c.h 5589;" d +OS_PIPE2_METHODDEF Modules/clinic/posixmodule.c.h 11792;" d +OS_PIPE2_METHODDEF Modules/clinic/posixmodule.c.h 7300;" d +OS_PIPE_METHODDEF Modules/clinic/posixmodule.c.h 11788;" d +OS_PIPE_METHODDEF Modules/clinic/posixmodule.c.h 7272;" d +OS_PLOCK_METHODDEF Modules/clinic/posixmodule.c.h 11664;" d +OS_PLOCK_METHODDEF Modules/clinic/posixmodule.c.h 5069;" d +OS_POSIX_FADVISE_METHODDEF Modules/clinic/posixmodule.c.h 11848;" d +OS_POSIX_FADVISE_METHODDEF Modules/clinic/posixmodule.c.h 8225;" d +OS_POSIX_FALLOCATE_METHODDEF Modules/clinic/posixmodule.c.h 11844;" d +OS_POSIX_FALLOCATE_METHODDEF Modules/clinic/posixmodule.c.h 8173;" d +OS_POSIX_SPAWNP_METHODDEF Modules/clinic/posixmodule.c.h 11528;" d +OS_POSIX_SPAWNP_METHODDEF Modules/clinic/posixmodule.c.h 3611;" d +OS_POSIX_SPAWN_METHODDEF Modules/clinic/posixmodule.c.h 11524;" d +OS_POSIX_SPAWN_METHODDEF Modules/clinic/posixmodule.c.h 3461;" d +OS_PREADV_METHODDEF Modules/clinic/posixmodule.c.h 11776;" d +OS_PREADV_METHODDEF Modules/clinic/posixmodule.c.h 6726;" d +OS_PREAD_METHODDEF Modules/clinic/posixmodule.c.h 11772;" d +OS_PREAD_METHODDEF Modules/clinic/posixmodule.c.h 6660;" d +OS_PUTENV_METHODDEF Modules/clinic/posixmodule.c.h 11852;" d +OS_PUTENV_METHODDEF Modules/clinic/posixmodule.c.h 8274;" d +OS_PUTENV_METHODDEF Modules/clinic/posixmodule.c.h 8322;" d +OS_PWRITEV_METHODDEF Modules/clinic/posixmodule.c.h 11804;" d +OS_PWRITEV_METHODDEF Modules/clinic/posixmodule.c.h 7453;" d +OS_PWRITE_METHODDEF Modules/clinic/posixmodule.c.h 11800;" d +OS_PWRITE_METHODDEF Modules/clinic/posixmodule.c.h 7381;" d +OS_READLINK_METHODDEF Modules/clinic/posixmodule.c.h 11728;" d +OS_READLINK_METHODDEF Modules/clinic/posixmodule.c.h 5794;" d +OS_READV_METHODDEF Modules/clinic/posixmodule.c.h 11768;" d +OS_READV_METHODDEF Modules/clinic/posixmodule.c.h 6615;" d +OS_READ_METHODDEF Modules/clinic/posixmodule.c.h 6561;" d +OS_REGISTER_AT_FORK_METHODDEF Modules/clinic/posixmodule.c.h 11540;" d +OS_REGISTER_AT_FORK_METHODDEF Modules/clinic/posixmodule.c.h 3857;" d +OS_REMOVEXATTR_METHODDEF Modules/clinic/posixmodule.c.h 11952;" d +OS_REMOVEXATTR_METHODDEF Modules/clinic/posixmodule.c.h 9912;" d +OS_REMOVE_METHODDEF Modules/clinic/posixmodule.c.h 3044;" d +OS_RENAME_METHODDEF Modules/clinic/posixmodule.c.h 2540;" d +OS_REPLACE_METHODDEF Modules/clinic/posixmodule.c.h 2631;" d +OS_RMDIR_METHODDEF Modules/clinic/posixmodule.c.h 2721;" d +OS_SCANDIR_METHODDEF Modules/clinic/posixmodule.c.h 10980;" d +OS_SCHED_GETAFFINITY_METHODDEF Modules/clinic/posixmodule.c.h 11588;" d +OS_SCHED_GETAFFINITY_METHODDEF Modules/clinic/posixmodule.c.h 4407;" d +OS_SCHED_GETPARAM_METHODDEF Modules/clinic/posixmodule.c.h 11568;" d +OS_SCHED_GETPARAM_METHODDEF Modules/clinic/posixmodule.c.h 4243;" d +OS_SCHED_GETSCHEDULER_METHODDEF Modules/clinic/posixmodule.c.h 11560;" d +OS_SCHED_GETSCHEDULER_METHODDEF Modules/clinic/posixmodule.c.h 4110;" d +OS_SCHED_GET_PRIORITY_MAX_METHODDEF Modules/clinic/posixmodule.c.h 11552;" d +OS_SCHED_GET_PRIORITY_MAX_METHODDEF Modules/clinic/posixmodule.c.h 3984;" d +OS_SCHED_GET_PRIORITY_MIN_METHODDEF Modules/clinic/posixmodule.c.h 11556;" d +OS_SCHED_GET_PRIORITY_MIN_METHODDEF Modules/clinic/posixmodule.c.h 4046;" d +OS_SCHED_RR_GET_INTERVAL_METHODDEF Modules/clinic/posixmodule.c.h 11576;" d +OS_SCHED_RR_GET_INTERVAL_METHODDEF Modules/clinic/posixmodule.c.h 4312;" d +OS_SCHED_SETAFFINITY_METHODDEF Modules/clinic/posixmodule.c.h 11584;" d +OS_SCHED_SETAFFINITY_METHODDEF Modules/clinic/posixmodule.c.h 4372;" d +OS_SCHED_SETPARAM_METHODDEF Modules/clinic/posixmodule.c.h 11572;" d +OS_SCHED_SETPARAM_METHODDEF Modules/clinic/posixmodule.c.h 4277;" d +OS_SCHED_SETSCHEDULER_METHODDEF Modules/clinic/posixmodule.c.h 11564;" d +OS_SCHED_SETSCHEDULER_METHODDEF Modules/clinic/posixmodule.c.h 4205;" d +OS_SCHED_YIELD_METHODDEF Modules/clinic/posixmodule.c.h 11580;" d +OS_SCHED_YIELD_METHODDEF Modules/clinic/posixmodule.c.h 4348;" d +OS_SENDFILE_METHODDEF Modules/clinic/posixmodule.c.h 11780;" d +OS_SENDFILE_METHODDEF Modules/clinic/posixmodule.c.h 6832;" d +OS_SENDFILE_METHODDEF Modules/clinic/posixmodule.c.h 6934;" d +OS_SENDFILE_METHODDEF Modules/clinic/posixmodule.c.h 7044;" d +OS_SETEGID_METHODDEF Modules/clinic/posixmodule.c.h 11676;" d +OS_SETEGID_METHODDEF Modules/clinic/posixmodule.c.h 5163;" d +OS_SETEUID_METHODDEF Modules/clinic/posixmodule.c.h 11672;" d +OS_SETEUID_METHODDEF Modules/clinic/posixmodule.c.h 5132;" d +OS_SETGID_METHODDEF Modules/clinic/posixmodule.c.h 11688;" d +OS_SETGID_METHODDEF Modules/clinic/posixmodule.c.h 5270;" d +OS_SETGROUPS_METHODDEF Modules/clinic/posixmodule.c.h 11692;" d +OS_SETGROUPS_METHODDEF Modules/clinic/posixmodule.c.h 5301;" d +OS_SETNS_METHODDEF Modules/clinic/posixmodule.c.h 11720;" d +OS_SETNS_METHODDEF Modules/clinic/posixmodule.c.h 5652;" d +OS_SETPGID_METHODDEF Modules/clinic/posixmodule.c.h 11748;" d +OS_SETPGID_METHODDEF Modules/clinic/posixmodule.c.h 6050;" d +OS_SETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 11640;" d +OS_SETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 4912;" d +OS_SETPRIORITY_METHODDEF Modules/clinic/posixmodule.c.h 11500;" d +OS_SETPRIORITY_METHODDEF Modules/clinic/posixmodule.c.h 2464;" d +OS_SETREGID_METHODDEF Modules/clinic/posixmodule.c.h 11684;" d +OS_SETREGID_METHODDEF Modules/clinic/posixmodule.c.h 5232;" d +OS_SETRESGID_METHODDEF Modules/clinic/posixmodule.c.h 11932;" d +OS_SETRESGID_METHODDEF Modules/clinic/posixmodule.c.h 9622;" d +OS_SETRESUID_METHODDEF Modules/clinic/posixmodule.c.h 11928;" d +OS_SETRESUID_METHODDEF Modules/clinic/posixmodule.c.h 9580;" d +OS_SETREUID_METHODDEF Modules/clinic/posixmodule.c.h 11680;" d +OS_SETREUID_METHODDEF Modules/clinic/posixmodule.c.h 5194;" d +OS_SETSID_METHODDEF Modules/clinic/posixmodule.c.h 11744;" d +OS_SETSID_METHODDEF Modules/clinic/posixmodule.c.h 6028;" d +OS_SETUID_METHODDEF Modules/clinic/posixmodule.c.h 11668;" d +OS_SETUID_METHODDEF Modules/clinic/posixmodule.c.h 5101;" d +OS_SETXATTR_METHODDEF Modules/clinic/posixmodule.c.h 11948;" d +OS_SETXATTR_METHODDEF Modules/clinic/posixmodule.c.h 9800;" d +OS_SET_BLOCKING_METHODDEF Modules/clinic/posixmodule.c.h 10636;" d +OS_SET_HANDLE_INHERITABLE_METHODDEF Modules/clinic/posixmodule.c.h 10566;" d +OS_SET_HANDLE_INHERITABLE_METHODDEF Modules/clinic/posixmodule.c.h 11984;" d +OS_SET_INHERITABLE_METHODDEF Modules/clinic/posixmodule.c.h 10492;" d +OS_SPAWNVE_METHODDEF Modules/clinic/posixmodule.c.h 11536;" d +OS_SPAWNVE_METHODDEF Modules/clinic/posixmodule.c.h 3798;" d +OS_SPAWNV_METHODDEF Modules/clinic/posixmodule.c.h 11532;" d +OS_SPAWNV_METHODDEF Modules/clinic/posixmodule.c.h 3745;" d +OS_SPLICE_METHODDEF Modules/clinic/posixmodule.c.h 11812;" d +OS_SPLICE_METHODDEF Modules/clinic/posixmodule.c.h 7637;" d +OS_STARTFILE_METHODDEF Modules/clinic/posixmodule.c.h 11920;" d +OS_STARTFILE_METHODDEF Modules/clinic/posixmodule.c.h 9374;" d +OS_STATVFS_METHODDEF Modules/clinic/posixmodule.c.h 11896;" d +OS_STATVFS_METHODDEF Modules/clinic/posixmodule.c.h 9010;" d +OS_STAT_METHODDEF Modules/clinic/posixmodule.c.h 36;" d +OS_STRERROR_METHODDEF Modules/clinic/posixmodule.c.h 8433;" d +OS_SYMLINK_METHODDEF Modules/clinic/posixmodule.c.h 11732;" d +OS_SYMLINK_METHODDEF Modules/clinic/posixmodule.c.h 5877;" d +OS_SYNC_METHODDEF Modules/clinic/posixmodule.c.h 1042;" d +OS_SYNC_METHODDEF Modules/clinic/posixmodule.c.h 11420;" d +OS_SYSCONF_METHODDEF Modules/clinic/posixmodule.c.h 11916;" d +OS_SYSCONF_METHODDEF Modules/clinic/posixmodule.c.h 9291;" d +OS_SYSTEM_METHODDEF Modules/clinic/posixmodule.c.h 11504;" d +OS_SYSTEM_METHODDEF Modules/clinic/posixmodule.c.h 2792;" d +OS_SYSTEM_METHODDEF Modules/clinic/posixmodule.c.h 2866;" d +OS_TCGETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 11752;" d +OS_TCGETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 6083;" d +OS_TCSETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 11756;" d +OS_TCSETPGRP_METHODDEF Modules/clinic/posixmodule.c.h 6115;" d +OS_TIMES_METHODDEF Modules/clinic/posixmodule.c.h 11736;" d +OS_TIMES_METHODDEF Modules/clinic/posixmodule.c.h 5975;" d +OS_TRUNCATE_METHODDEF Modules/clinic/posixmodule.c.h 11840;" d +OS_TRUNCATE_METHODDEF Modules/clinic/posixmodule.c.h 8102;" d +OS_TTYNAME_METHODDEF Modules/clinic/posixmodule.c.h 11384;" d +OS_TTYNAME_METHODDEF Modules/clinic/posixmodule.c.h 318;" d +OS_UMASK_METHODDEF Modules/clinic/posixmodule.c.h 11508;" d +OS_UMASK_METHODDEF Modules/clinic/posixmodule.c.h 2935;" d +OS_UNAME_METHODDEF Modules/clinic/posixmodule.c.h 11512;" d +OS_UNAME_METHODDEF Modules/clinic/posixmodule.c.h 3118;" d +OS_UNLINK_METHODDEF Modules/clinic/posixmodule.c.h 2970;" d +OS_UNSETENV_METHODDEF Modules/clinic/posixmodule.c.h 11856;" d +OS_UNSETENV_METHODDEF Modules/clinic/posixmodule.c.h 8365;" d +OS_UNSETENV_METHODDEF Modules/clinic/posixmodule.c.h 8401;" d +OS_UNSHARE_METHODDEF Modules/clinic/posixmodule.c.h 11724;" d +OS_UNSHARE_METHODDEF Modules/clinic/posixmodule.c.h 5726;" d +OS_URANDOM_DONT_USE_FD Lib/test/test_os.py /^OS_URANDOM_DONT_USE_FD = ($/;" v +OS_URANDOM_METHODDEF Modules/clinic/posixmodule.c.h 10080;" d +OS_UTIME_METHODDEF Modules/clinic/posixmodule.c.h 3161;" d +OS_WAIT3_METHODDEF Modules/clinic/posixmodule.c.h 11696;" d +OS_WAIT3_METHODDEF Modules/clinic/posixmodule.c.h 5317;" d +OS_WAIT4_METHODDEF Modules/clinic/posixmodule.c.h 11700;" d +OS_WAIT4_METHODDEF Modules/clinic/posixmodule.c.h 5382;" d +OS_WAITID_METHODDEF Modules/clinic/posixmodule.c.h 11704;" d +OS_WAITID_METHODDEF Modules/clinic/posixmodule.c.h 5451;" d +OS_WAITPID_METHODDEF Modules/clinic/posixmodule.c.h 11708;" d +OS_WAITPID_METHODDEF Modules/clinic/posixmodule.c.h 5490;" d +OS_WAITPID_METHODDEF Modules/clinic/posixmodule.c.h 5528;" d +OS_WAITSTATUS_TO_EXITCODE_METHODDEF Modules/clinic/posixmodule.c.h 11332;" d +OS_WAITSTATUS_TO_EXITCODE_METHODDEF Modules/clinic/posixmodule.c.h 12000;" d +OS_WAIT_METHODDEF Modules/clinic/posixmodule.c.h 11712;" d +OS_WAIT_METHODDEF Modules/clinic/posixmodule.c.h 5564;" d +OS_WCOREDUMP_METHODDEF Modules/clinic/posixmodule.c.h 11860;" d +OS_WCOREDUMP_METHODDEF Modules/clinic/posixmodule.c.h 8463;" d +OS_WEXITSTATUS_METHODDEF Modules/clinic/posixmodule.c.h 11880;" d +OS_WEXITSTATUS_METHODDEF Modules/clinic/posixmodule.c.h 8771;" d +OS_WIFCONTINUED_METHODDEF Modules/clinic/posixmodule.c.h 11864;" d +OS_WIFCONTINUED_METHODDEF Modules/clinic/posixmodule.c.h 8503;" d +OS_WIFEXITED_METHODDEF Modules/clinic/posixmodule.c.h 11876;" d +OS_WIFEXITED_METHODDEF Modules/clinic/posixmodule.c.h 8704;" d +OS_WIFSIGNALED_METHODDEF Modules/clinic/posixmodule.c.h 11872;" d +OS_WIFSIGNALED_METHODDEF Modules/clinic/posixmodule.c.h 8637;" d +OS_WIFSTOPPED_METHODDEF Modules/clinic/posixmodule.c.h 11868;" d +OS_WIFSTOPPED_METHODDEF Modules/clinic/posixmodule.c.h 8570;" d +OS_WRITEV_METHODDEF Modules/clinic/posixmodule.c.h 11796;" d +OS_WRITEV_METHODDEF Modules/clinic/posixmodule.c.h 7335;" d +OS_WRITE_METHODDEF Modules/clinic/posixmodule.c.h 6780;" d +OS_WSTOPSIG_METHODDEF Modules/clinic/posixmodule.c.h 11888;" d +OS_WSTOPSIG_METHODDEF Modules/clinic/posixmodule.c.h 8905;" d +OS_WTERMSIG_METHODDEF Modules/clinic/posixmodule.c.h 11884;" d +OS_WTERMSIG_METHODDEF Modules/clinic/posixmodule.c.h 8838;" d +OS__ADD_DLL_DIRECTORY_METHODDEF Modules/clinic/posixmodule.c.h 11193;" d +OS__ADD_DLL_DIRECTORY_METHODDEF Modules/clinic/posixmodule.c.h 11992;" d +OS__EXIT_METHODDEF Modules/clinic/posixmodule.c.h 3259;" d +OS__FCOPYFILE_METHODDEF Modules/clinic/posixmodule.c.h 11784;" d +OS__FCOPYFILE_METHODDEF Modules/clinic/posixmodule.c.h 7127;" d +OS__GETDISKUSAGE_METHODDEF Modules/clinic/posixmodule.c.h 11900;" d +OS__GETDISKUSAGE_METHODDEF Modules/clinic/posixmodule.c.h 9074;" d +OS__GETFINALPATHNAME_METHODDEF Modules/clinic/posixmodule.c.h 11464;" d +OS__GETFINALPATHNAME_METHODDEF Modules/clinic/posixmodule.c.h 1821;" d +OS__GETFULLPATHNAME_METHODDEF Modules/clinic/posixmodule.c.h 11460;" d +OS__GETFULLPATHNAME_METHODDEF Modules/clinic/posixmodule.c.h 1787;" d +OS__GETVOLUMEPATHNAME_METHODDEF Modules/clinic/posixmodule.c.h 11468;" d +OS__GETVOLUMEPATHNAME_METHODDEF Modules/clinic/posixmodule.c.h 1855;" d +OS__PATH_EXISTS_METHODDEF Modules/clinic/posixmodule.c.h 11484;" d +OS__PATH_EXISTS_METHODDEF Modules/clinic/posixmodule.c.h 2101;" d +OS__PATH_ISDEVDRIVE_METHODDEF Modules/clinic/posixmodule.c.h 11456;" d +OS__PATH_ISDEVDRIVE_METHODDEF Modules/clinic/posixmodule.c.h 1724;" d +OS__PATH_ISDIR_METHODDEF Modules/clinic/posixmodule.c.h 11476;" d +OS__PATH_ISDIR_METHODDEF Modules/clinic/posixmodule.c.h 1983;" d +OS__PATH_ISFILE_METHODDEF Modules/clinic/posixmodule.c.h 11480;" d +OS__PATH_ISFILE_METHODDEF Modules/clinic/posixmodule.c.h 2042;" d +OS__PATH_ISLINK_METHODDEF Modules/clinic/posixmodule.c.h 11488;" d +OS__PATH_ISLINK_METHODDEF Modules/clinic/posixmodule.c.h 2160;" d +OS__PATH_NORMPATH_METHODDEF Modules/clinic/posixmodule.c.h 2217;" d +OS__PATH_SPLITROOT_METHODDEF Modules/clinic/posixmodule.c.h 11472;" d +OS__PATH_SPLITROOT_METHODDEF Modules/clinic/posixmodule.c.h 1919;" d +OS__REMOVE_DLL_DIRECTORY_METHODDEF Modules/clinic/posixmodule.c.h 11261;" d +OS__REMOVE_DLL_DIRECTORY_METHODDEF Modules/clinic/posixmodule.c.h 11996;" d +OTHERSTUFF Lib/test/datetimetester.py /^OTHERSTUFF = (10, 34.5, "abc", {}, [], ())$/;" v +OTHER_ENDIAN Lib/test/test_ctypes/test_pep3118.py /^ OTHER_ENDIAN = "<"$/;" v +OTHER_ENDIAN Lib/test/test_ctypes/test_pep3118.py /^ OTHER_ENDIAN = ">"$/;" v +OTHER_SLOT Python/specialize.c /^ OTHER_SLOT, \/* Is a slot descriptor of another type *\/$/;" e enum:__anon686 file: +OUTBYTE1 Modules/cjkcodecs/cjkcodecs.h 176;" d +OUTBYTE2 Modules/cjkcodecs/cjkcodecs.h 177;" d +OUTBYTE3 Modules/cjkcodecs/cjkcodecs.h 178;" d +OUTBYTE4 Modules/cjkcodecs/cjkcodecs.h 179;" d +OUTBYTEI Modules/cjkcodecs/cjkcodecs.h 170;" d +OUTCHAR Modules/cjkcodecs/cjkcodecs.h 153;" d +OUTCHAR2 Modules/cjkcodecs/cjkcodecs.h 159;" d +OUTDIR Tools/freeze/test/Makefile /^OUTDIR=outdir$/;" m +OUTDIR Tools/freeze/test/freeze.py /^OUTDIR = os.path.join(TESTS_DIR, 'outdir')$/;" v +OUTDIR Tools/msi/buildrelease.bat /^if "%1" EQU "--out" (set OUTDIR=%~2) && shift && shift && goto CheckOpts$/;" v +OUTDIR Tools/msi/buildrelease.bat /^if "%1" EQU "-o" (set OUTDIR=%~2) && shift && shift && goto CheckOpts$/;" v +OUTDIR_PLAT Tools/msi/buildrelease.bat /^ set OUTDIR_PLAT=amd64$/;" v +OUTDIR_PLAT Tools/msi/buildrelease.bat /^ set OUTDIR_PLAT=arm64$/;" v +OUTDIR_PLAT Tools/msi/buildrelease.bat /^ set OUTDIR_PLAT=win32$/;" v +OUTMRK Lib/telnetlib.py /^OUTMRK = bytes([27]) # output marking$/;" v +OUTPUT Tools/nuget/build.bat /^if "%~1" EQU "--out" (set OUTPUT="\/p:OutputPath=%~2") && shift && shift && goto CheckOpts$/;" v +OUTPUT Tools/nuget/build.bat /^if "%~1" EQU "-o" (set OUTPUT="\/p:OutputPath=%~2") && shift && shift && goto CheckOpts$/;" v +OUTPUT Tools/nuget/build.bat /^set OUTPUT=$/;" v +OUTPUT_BUFFER_MAX_BLOCK_SIZE Include/internal/pycore_blocks_output_buffer.h 55;" d +OUTSIDE Lib/tkinter/constants.py /^OUTSIDE='outside'$/;" v +OVER Lib/turtledemo/nim.py /^ OVER = 2$/;" v class:Nim +OVERALLOCATE_FACTOR Objects/bytesobject.c 3264;" d file: +OVERALLOCATE_FACTOR Objects/bytesobject.c 3267;" d file: +OVERALLOCATE_FACTOR Objects/unicodeobject.c 13047;" d file: +OVERALLOCATE_FACTOR Objects/unicodeobject.c 189;" d file: +OVERALLOCATE_FACTOR Objects/unicodeobject.c 192;" d file: +OVERFLOWED Objects/frameobject.c 168;" d file: +OVERFLOW_SECONDS Lib/test/test_time.py /^ OVERFLOW_SECONDS = 2 ** 64$/;" v class:TestOldPyTime +OVERFLOW_SECONDS Lib/test/test_time.py /^ OVERFLOW_SECONDS = None$/;" v class:CPyTimeTestCase +OVERFLOW_SECONDS Lib/test/test_time.py /^ OVERFLOW_SECONDS = math.ceil((2**63 + 1) \/ SEC_TO_NS)$/;" v class:TestCPyTime +OVERRIDE_FROZEN_MODULES Python/import.c 76;" d file: +OVERRIDE_MULTI_INTERP_EXTENSIONS_CHECK Python/import.c 74;" d file: +OVERRIDING Python/specialize.c /^ OVERRIDING, \/* Is an overriding descriptor, and will remain so. *\/$/;" e enum:__anon686 file: +O_NONBLOCK Modules/socketmodule.c 416;" d file: +O_RDONLY Modules/ossaudiodev.c 33;" d file: +O_WRONLY Modules/ossaudiodev.c 34;" d file: +O_get Modules/_ctypes/cfield.c /^O_get(void *ptr, Py_ssize_t size)$/;" f file: +O_set Modules/_ctypes/cfield.c /^O_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +Obj Lib/test/test_support.py /^ class Obj:$/;" c function:TestSupport.test_swap_attr +Obj2ModPrototypeVisitor Parser/asdl_c.py /^class Obj2ModPrototypeVisitor(PickleVisitor):$/;" c +Obj2ModVisitor Parser/asdl_c.py /^class Obj2ModVisitor(PickleVisitor):$/;" c +ObjExtraData Modules/_testcapi/gc.c /^} ObjExtraData;$/;" t typeref:struct:__anon542 file: +ObjExtraData_Slots Modules/_testcapi/gc.c /^static PyType_Slot ObjExtraData_Slots[] = {$/;" v file: +ObjExtraData_TypeSpec Modules/_testcapi/gc.c /^static PyType_Spec ObjExtraData_TypeSpec = {$/;" v file: +ObjVisitor Parser/asdl_c.py /^class ObjVisitor(PickleVisitor):$/;" c +Object Lib/idlelib/idle_test/test_calltip.py /^ class Object(metaclass=Type):$/;" c function:.test_metaclass_class +Object Lib/test/pickletester.py /^class Object:$/;" c +Object Lib/test/test_weakref.py /^class Object:$/;" c +Object Objects/frameobject.c /^ Object = 3,$/;" e enum:kind file: +ObjectAdaptationTests Lib/test/test_sqlite3/test_types.py /^class ObjectAdaptationTests(unittest.TestCase):$/;" c +ObjectStats Include/pystats.h /^} ObjectStats;$/;" t typeref:struct:_object_stats +ObjectToStr Lib/test/test_unicode.py /^ class ObjectToStr:$/;" c function:UnicodeTest.test_conversion +ObjectTreeItem Lib/idlelib/debugobj.py /^class ObjectTreeItem(TreeItem):$/;" c +ObjectTreeItemTest Lib/idlelib/idle_test/test_debugobj.py /^class ObjectTreeItemTest(unittest.TestCase):$/;" c +ObjectWithDel Lib/test/test_weakref.py /^ class ObjectWithDel(Object):$/;" c function:ReferencesTestCase.test_callback_gcs +Object_TestCase Lib/test/test_capi/test_getargs.py /^class Object_TestCase(unittest.TestCase):$/;" c +ObjectsTestCase Lib/test/test_ctypes/test_internals.py /^class ObjectsTestCase(unittest.TestCase):$/;" c +ObsLocalPart Lib/email/_header_value_parser.py /^class ObsLocalPart(TokenList):$/;" c +ObsRoute Lib/email/_header_value_parser.py /^class ObsRoute(TokenList):$/;" c +ObsoleteHeaderDefect Lib/email/errors.py /^class ObsoleteHeaderDefect(HeaderDefect):$/;" c +Octnumber Lib/lib2to3/pgen2/tokenize.py /^Octnumber = r'0[oO]?_?[0-7]+(?:_[0-7]+)*[lL]?'$/;" v +Octnumber Lib/tokenize.py /^Octnumber = r'0[oO](?:_?[0-7])+'$/;" v +Oddballs Lib/test/datetimetester.py /^class Oddballs(unittest.TestCase):$/;" c +OffSysPathTests Lib/test/test_importlib/test_metadata_api.py /^class OffSysPathTests(fixtures.DistInfoPkgOffPath, unittest.TestCase):$/;" c +OfflineTest Lib/test/test_httplib.py /^class OfflineTest(TestCase):$/;" c +OhPhooey Lib/test/test_iter.py /^ class OhPhooey:$/;" c function:TestCase.test_unicode_join_endcase +OkFactory Lib/test/test_sqlite3/test_factory.py /^ class OkFactory(sqlite.Connection):$/;" c function:ConnectionFactoryTests.test_connection_factories +Okay1 Lib/test/test_dynamicclassattribute.py /^ class Okay1(ClassWithAbstractVirtualProperty):$/;" c function:PropertyTests.test_abstract_virtual +Okay2 Lib/test/test_dynamicclassattribute.py /^ class Okay2(ClassWithAbstractVirtualProperty):$/;" c function:PropertyTests.test_abstract_virtual +OkayEnum Lib/test/test_enum.py /^ class OkayEnum(CustomStrEnum):$/;" c function:TestSpecial.test_custom_strenum +OldAPITests Lib/test/test_importlib/import_/test_api.py /^class OldAPITests(APITest):$/;" c +OldBooleanType Modules/_tkinter.c /^ const Tcl_ObjType *OldBooleanType;$/;" m struct:__anon334 file: +OldMSVCCompiler Tools/c-analyzer/distutils/msvccompiler.py /^ OldMSVCCompiler = MSVCCompiler$/;" v class:MSVCCompiler +OldMetaclass Lib/test/test_opcache.py /^ class OldMetaclass(type):$/;" c function:TestLoadAttrCache.test_metaclass_swap +OldMetaclass Lib/test/test_opcache.py /^ class OldMetaclass(type):$/;" c function:TestLoadMethodCache.test_metaclass_swap +OldResult Lib/test/test_unittest/test_result.py /^OldResult = type('OldResult', (object,), classDict)$/;" v +OldStyle Lib/test/mod_generics_cache.py /^OldStyle = TypeAliasType("OldStyle", int)$/;" v +OldStyle Lib/test/test_type_params.py /^ class OldStyle(Generic[T]):$/;" c function:TypeParamsWeakRefTest.test_weakrefs +OldTestFlag Lib/test/test_enum.py /^class OldTestFlag(unittest.TestCase):$/;" c +OldTestIntFlag Lib/test/test_enum.py /^class OldTestIntFlag(unittest.TestCase):$/;" c +OldTextResult Lib/test/test_unittest/test_runner.py /^ class OldTextResult(ResultWithNoStartTestRunStopTestRun):$/;" c function:Test_TextTestRunner.test_works_with_result_without_startTestRun_stopTestRun +OleDLL Lib/ctypes/__init__.py /^ class OleDLL(CDLL):$/;" c +OnApply Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnApply() {$/;" f class:PythonBootstrapperApplication file: +OnApplyComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnApplyComplete(__in HRESULT hrStatus, __in BOOTSTRAPPER_APPLY_RESTART restart) {$/;" f class:PythonBootstrapperApplication +OnCacheAcquireComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnCacheAcquireComplete($/;" f class:PythonBootstrapperApplication +OnCacheAcquireProgress Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnCacheAcquireProgress($/;" f class:PythonBootstrapperApplication +OnCacheComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(void) OnCacheComplete(__in HRESULT \/*hrStatus*\/) {$/;" f class:PythonBootstrapperApplication +OnCachePackageBegin Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnCachePackageBegin($/;" f class:PythonBootstrapperApplication +OnCacheVerifyComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnCacheVerifyComplete($/;" f class:PythonBootstrapperApplication +OnChangeState Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnChangeState(__in PYBA_STATE state) {$/;" f class:PythonBootstrapperApplication file: +OnClickCloseButton Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnClickCloseButton() {$/;" f class:PythonBootstrapperApplication file: +OnClickLogFileLink Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnClickLogFileLink() {$/;" f class:PythonBootstrapperApplication file: +OnClickRestartButton Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnClickRestartButton() {$/;" f class:PythonBootstrapperApplication file: +OnClose Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL OnClose() {$/;" f class:PythonBootstrapperApplication file: +OnCommand Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnCommand(CONTROL_ID id) {$/;" f class:PythonBootstrapperApplication file: +OnCreate Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL OnCreate(__in HWND hWnd) {$/;" f class:PythonBootstrapperApplication file: +OnDemandOutputWindow Lib/idlelib/outwin.py /^class OnDemandOutputWindow:$/;" c +OnDetect Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnDetect() {$/;" f class:PythonBootstrapperApplication file: +OnDetectComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(void) OnDetectComplete(__in HRESULT hrStatus) {$/;" f class:PythonBootstrapperApplication +OnDetectPackageComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(void) OnDetectPackageComplete($/;" f class:PythonBootstrapperApplication +OnDetectRelatedBundle Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnDetectRelatedBundle($/;" f class:PythonBootstrapperApplication +OnDetectRelatedMsiPackage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnDetectRelatedMsiPackage($/;" f class:PythonBootstrapperApplication +OnDoubleClick Lib/idlelib/browser.py /^ def OnDoubleClick(self):$/;" m class:ChildBrowserTreeItem +OnDoubleClick Lib/idlelib/browser.py /^ def OnDoubleClick(self):$/;" m class:ModuleBrowserTreeItem +OnDoubleClick Lib/idlelib/stackviewer.py /^ def OnDoubleClick(self):$/;" m class:FrameTreeItem +OnDoubleClick Lib/idlelib/tree.py /^ def OnDoubleClick(self):$/;" m class:TreeItem +OnError Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnError($/;" f class:PythonBootstrapperApplication +OnExecuteComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(void) OnExecuteComplete(__in HRESULT hrStatus) {$/;" f class:PythonBootstrapperApplication +OnExecuteMsiMessage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnExecuteMsiMessage($/;" f class:PythonBootstrapperApplication +OnExecutePackageBegin Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnExecutePackageBegin(__in_z LPCWSTR wzPackageId, __in BOOL fExecute) {$/;" f class:PythonBootstrapperApplication +OnExecutePackageComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnExecutePackageComplete($/;" f class:PythonBootstrapperApplication +OnExecuteProgress Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual int __stdcall OnExecuteProgress($/;" f class:PythonBootstrapperApplication +OnHoverTooltipBase Lib/idlelib/tooltip.py /^class OnHoverTooltipBase(TooltipBase):$/;" c +OnLaunchApprovedExeComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(void) OnLaunchApprovedExeComplete(__in HRESULT hrStatus, __in DWORD \/*processId*\/) {$/;" f class:PythonBootstrapperApplication +OnPlan Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnPlan(__in BOOTSTRAPPER_ACTION action) {$/;" f class:PythonBootstrapperApplication file: +OnPlanComplete Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(void) OnPlanComplete(__in HRESULT hrStatus) {$/;" f class:PythonBootstrapperApplication +OnPlanMsiFeature Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnPlanMsiFeature($/;" f class:PythonBootstrapperApplication +OnPlanPackageBegin Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnPlanPackageBegin($/;" f class:PythonBootstrapperApplication +OnPlanRelatedBundle Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnPlanRelatedBundle($/;" f class:PythonBootstrapperApplication +OnProgress Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnProgress(__in DWORD dwProgressPercentage, __in DWORD dwOverallProgressPercentage) {$/;" f class:PythonBootstrapperApplication +OnResolveSource Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnResolveSource($/;" f class:PythonBootstrapperApplication +OnShowFailure Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnShowFailure() {$/;" f class:PythonBootstrapperApplication file: +OnShowHelp Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void OnShowHelp() {$/;" f class:PythonBootstrapperApplication file: +OnShutdown Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP_(int) OnShutdown() {$/;" f class:PythonBootstrapperApplication +OnStartup Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ virtual STDMETHODIMP OnStartup() {$/;" f class:PythonBootstrapperApplication +OnSysPath Lib/test/test_importlib/fixtures.py /^class OnSysPath(Fixtures):$/;" c +One Lib/test/test_enum.py /^ One = 1$/;" v class:TestSpecial.test_too_many_data_types.Huh +One Lib/test/test_enum.py /^ One = 1$/;" v class:TestSpecial.test_too_many_data_types.MyInt.Huh +One Lib/test/test_typing.py /^ class One(TypedDict):$/;" c function:TypedDictTests.test_multiple_inheritance +OneDay Lib/test/test_enum.py /^ OneDay = day_1$/;" v class:TestSpecial.test_ignore.Period +OneMonth Lib/test/test_enum.py /^ OneMonth = month_1$/;" v class:TestSpecial.test_ignore.Period +OneTwoThreeSet Lib/test/test_collections.py /^ class OneTwoThreeSet(Set):$/;" c function:TestCollectionABCs.test_hash_Set +OneWeek Lib/test/test_enum.py /^ OneWeek = week_1$/;" v class:TestSpecial.test_ignore.Period +OnlyEquality Lib/test/test_hash.py /^class OnlyEquality(object):$/;" c +OnlyInequality Lib/test/test_hash.py /^class OnlyInequality(object):$/;" c +OnlyMask Lib/test/test_enum.py /^ OnlyMask = 0x0f$/;" v class:OldTestFlag.test_boundary.MethodHint +Oops Lib/test/test_descr.py /^ class Oops(object):$/;" c function:.test_weakref_segfault +OpName Tools/cases_generator/parser.py /^class OpName(Node):$/;" c +OpcodeInfo Lib/pickletools.py /^class OpcodeInfo(object):$/;" c +OpcodeStats Include/pystats.h /^} OpcodeStats;$/;" t typeref:struct:_opcode_stats +OpcodeTest Lib/test/test_opcodes.py /^class OpcodeTest(unittest.TestCase):$/;" c +OpcodeTests Lib/test/test__opcode.py /^class OpcodeTests(unittest.TestCase):$/;" c +Open Lib/test/test_enum.py /^ class Open(Flag):$/;" c class:OldTestFlag +Open Lib/test/test_enum.py /^ class Open(IntFlag):$/;" c class:OldTestIntFlag +Open Lib/tkinter/filedialog.py /^class Open(_Dialog):$/;" c +OpenAB Lib/test/test_enum.py /^ class OpenAB(self.enum_type):$/;" c function:_FlagTests.test_open_invert_expectations +OpenDiskNamespaceTests Lib/test/test_importlib/resources/test_open.py /^class OpenDiskNamespaceTests(OpenTests, unittest.TestCase):$/;" c +OpenDiskTests Lib/test/test_importlib/resources/test_files.py /^class OpenDiskTests(FilesTests, unittest.TestCase):$/;" c +OpenDiskTests Lib/test/test_importlib/resources/test_open.py /^class OpenDiskTests(OpenTests, unittest.TestCase):$/;" c +OpenKeyEx Lib/test/test_getpath.py /^ def OpenKeyEx(self, hkey, subkey):$/;" m class:MockWinreg +OpenNamespaceTests Lib/test/test_importlib/resources/test_files.py /^class OpenNamespaceTests(FilesTests, unittest.TestCase):$/;" c +OpenTest Lib/test/test_bz2.py /^class OpenTest(BaseTest):$/;" c +OpenTestCase Lib/test/test_lzma.py /^class OpenTestCase(unittest.TestCase):$/;" c +OpenTests Lib/test/test_importlib/resources/test_open.py /^class OpenTests:$/;" c +OpenTests Lib/test/test_sqlite3/test_dbapi.py /^class OpenTests(unittest.TestCase):$/;" c +OpenXYZ Lib/test/test_enum.py /^ class OpenXYZ(self.enum_type):$/;" c function:_FlagTests.test_open_invert_expectations +OpenZipTests Lib/test/test_importlib/resources/test_files.py /^class OpenZipTests(FilesTests, util.ZipSetup, unittest.TestCase):$/;" c +OpenZipTests Lib/test/test_importlib/resources/test_open.py /^class OpenZipTests(OpenTests, util.ZipSetup, unittest.TestCase):$/;" c +OpenerDirector Lib/urllib/request.py /^class OpenerDirector:$/;" c +OpenerDirectorTests Lib/test/test_urllib2.py /^class OpenerDirectorTests(unittest.TestCase):$/;" c +OpenptyTest Lib/test/test_openpty.py /^class OpenptyTest(unittest.TestCase):$/;" c +Opera Lib/webbrowser.py /^class Opera(UnixBrowser):$/;" c +OperaCommandTest Lib/test/test_webbrowser.py /^class OperaCommandTest(CommandTestMixin, unittest.TestCase):$/;" c +OperandDependentOffset Lib/test/datetimetester.py /^ class OperandDependentOffset(tzinfo):$/;" c function:TZInfoBase.test_aware_compare +OperandDependentOffset Lib/test/datetimetester.py /^ class OperandDependentOffset(tzinfo):$/;" c function:TestDateTimeTZ.test_aware_subtract +OperationLogger Lib/test/test_binop.py /^class OperationLogger:$/;" c +OperationOrderTests Lib/test/test_binop.py /^class OperationOrderTests(unittest.TestCase):$/;" c +OperationalError Modules/_sqlite/connection.h /^ PyObject* OperationalError;$/;" m struct:__anon359 +OperationalError Modules/_sqlite/module.h /^ PyObject *OperationalError;$/;" m struct:__anon355 +Operator Lib/lib2to3/pgen2/tokenize.py /^Operator = group(r"\\*\\*=?", r">>=?", r"<<=?", r"<>", r"!=",$/;" v +OperatorPickleTestCase Lib/test/test_operator.py /^class OperatorPickleTestCase:$/;" c +OperatorTestCase Lib/test/test_operator.py /^class OperatorTestCase:$/;" c +OperatorsTest Lib/test/test_descr.py /^class OperatorsTest(unittest.TestCase):$/;" c +Opt Tools/peg_generator/pegen/grammar.py /^class Opt:$/;" c +OptParseError Lib/optparse.py /^class OptParseError (Exception):$/;" c +OptimizedPickleTests Lib/test/test_pickletools.py /^class OptimizedPickleTests(AbstractPickleTests, unittest.TestCase):$/;" c +Option Lib/optparse.py /^class Option:$/;" c +OptionConflictError Lib/optparse.py /^class OptionConflictError (OptionError):$/;" c +OptionContainer Lib/optparse.py /^class OptionContainer:$/;" c +OptionError Lib/optparse.py /^class OptionError (OptParseError):$/;" c +OptionGroup Lib/optparse.py /^class OptionGroup (OptionContainer):$/;" c +OptionMenu Lib/tkinter/__init__.py /^class OptionMenu(Menubutton):$/;" c +OptionMenu Lib/tkinter/tix.py /^class OptionMenu(TixWidget):$/;" c +OptionMenu Lib/tkinter/ttk.py /^class OptionMenu(Menubutton):$/;" c +OptionMenuTest Lib/test/test_tkinter/test_widgets.py /^class OptionMenuTest(MenubuttonTest, unittest.TestCase):$/;" c +OptionMenuTest Lib/test/test_ttk/test_extensions.py /^class OptionMenuTest(AbstractTkTest, unittest.TestCase):$/;" c +OptionName Lib/tkinter/tix.py /^def OptionName(widget):$/;" f +OptionParser Lib/optparse.py /^class OptionParser (OptionContainer):$/;" c +OptionTests Lib/test/test_telnetlib.py /^class OptionTests(unittest.TestCase):$/;" c +OptionValueError Lib/optparse.py /^class OptionValueError (OptParseError):$/;" c +Optional Lib/typing.py /^def Optional(self, parameters):$/;" f +OptionalAction Lib/test/test_argparse.py /^ class OptionalAction(argparse.Action):$/;" c class:TestActionUserDefined +OptionalAttachSharedMemory Lib/test/_test_multiprocessing.py /^ class OptionalAttachSharedMemory(shared_memory.SharedMemory):$/;" c function:_TestSharedMemory.test_shared_memory_basics +OptionalIntType Lib/test/_typed_dict_helper.py /^OptionalIntType = Optional[int]$/;" v +OptionallyCachedCostItem Lib/test/test_functools.py /^class OptionallyCachedCostItem:$/;" c +Options Lib/test/smtpd.py /^class Options:$/;" c +Options Lib/test/test_typing.py /^class Options(TypedDict, total=False):$/;" c +Options Lib/xml/dom/xmlbuilder.py /^class Options:$/;" c +Options Tools/i18n/pygettext.py /^ class Options:$/;" c function:main +Or Include/internal/pycore_ast.h /^typedef enum _boolop { And=1, Or=2 } boolop_ty;$/;" e enum:_boolop +Or_singleton Include/internal/pycore_ast_state.h /^ PyObject *Or_singleton;$/;" m struct:ast_state +Or_type Include/internal/pycore_ast_state.h /^ PyObject *Or_type;$/;" m struct:ast_state +Orderable Lib/test/test_pprint.py /^class Orderable:$/;" c +Orderable_LT Lib/test/test_functools.py /^class Orderable_LT:$/;" c +Ordered Lib/test/test_dataclasses.py /^ class Ordered(abc.ABC):$/;" c function:TestAbstract.test_abc_implementation +OrderedDict Lib/collections/__init__.py /^class OrderedDict(dict):$/;" c +OrderedDict Lib/test/test_ordered_dict.py /^ OrderedDict = c_coll.OrderedDict$/;" v class:CPythonOrderedDictTests +OrderedDict Lib/test/test_ordered_dict.py /^ OrderedDict = dict$/;" v class:CPythonBuiltinDictTests +OrderedDict Lib/test/test_ordered_dict.py /^ OrderedDict = py_coll.OrderedDict$/;" v class:PurePythonOrderedDictTests +OrderedDict Lib/test/test_ordered_dict.py /^ class OrderedDict(c_coll.OrderedDict):$/;" c class:CPythonOrderedDictSubclassTests +OrderedDict Lib/test/test_ordered_dict.py /^ class OrderedDict(c_coll.OrderedDict):$/;" c class:CPythonOrderedDictWithSlotsCopyingTests +OrderedDict Lib/test/test_ordered_dict.py /^ class OrderedDict(py_coll.OrderedDict):$/;" c class:PurePythonOrderedDictSubclassTests +OrderedDict Lib/test/test_ordered_dict.py /^ class OrderedDict(py_coll.OrderedDict):$/;" c class:PurePythonOrderedDictWithSlotsCopyingTests +OrderedDict Lib/typing.py /^OrderedDict = _alias(collections.OrderedDict, 2)$/;" v +OrderedDictTests Lib/test/test_ordered_dict.py /^class OrderedDictTests:$/;" c +OrderedDict_fromkeys Objects/clinic/odictobject.c.h /^OrderedDict_fromkeys(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +OrderedDict_fromkeys_impl Objects/odictobject.c /^OrderedDict_fromkeys_impl(PyTypeObject *type, PyObject *seq, PyObject *value)$/;" f file: +OrderedDict_move_to_end Objects/clinic/odictobject.c.h /^OrderedDict_move_to_end(PyODictObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +OrderedDict_move_to_end_impl Objects/odictobject.c /^OrderedDict_move_to_end_impl(PyODictObject *self, PyObject *key, int last)$/;" f file: +OrderedDict_pop Objects/clinic/odictobject.c.h /^OrderedDict_pop(PyODictObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +OrderedDict_pop_impl Objects/odictobject.c /^OrderedDict_pop_impl(PyODictObject *self, PyObject *key,$/;" f file: +OrderedDict_popitem Objects/clinic/odictobject.c.h /^OrderedDict_popitem(PyODictObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +OrderedDict_popitem_impl Objects/odictobject.c /^OrderedDict_popitem_impl(PyODictObject *self, int last)$/;" f file: +OrderedDict_setdefault Objects/clinic/odictobject.c.h /^OrderedDict_setdefault(PyODictObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +OrderedDict_setdefault_impl Objects/odictobject.c /^OrderedDict_setdefault_impl(PyODictObject *self, PyObject *key,$/;" f file: +OrderedEnum Lib/test/test_enum.py /^ class OrderedEnum(Enum):$/;" c function:TestSpecial.test_ordered_mixin +OrderedSignals Lib/test/test_decimal.py /^OrderedSignals = {$/;" v +OrdinaryEnum Lib/test/test_enum.py /^ class OrdinaryEnum(Enum):$/;" c function:TestSpecial.test_equality +OriginTrackingTest Lib/test/test_coroutines.py /^class OriginTrackingTest(unittest.TestCase):$/;" c +OriginalCommand Lib/idlelib/redirector.py /^class OriginalCommand:$/;" c +OrphanPath Lib/importlib/resources/_adapters.py /^ class OrphanPath(abc.Traversable):$/;" c class:CompatibilityFiles +Other Lib/test/pyclbr_input.py /^class Other(object):$/;" c +Other Lib/test/test_collections.py /^ class Other:$/;" c function:ABCTestCase.validate_comparison +Other Lib/test/test_typing.py /^ Other = Other$/;" v class:ForwardRefTests.test_no_type_check_nested_types.A +Other Lib/test/test_typing.py /^ class Other:$/;" c function:ForwardRefTests.test_no_type_check_nested_types +Other Lib/test/test_typing.py /^class Other:$/;" c +Other1 Lib/test/test_typing.py /^ class Other1: pass$/;" c function:ProtocolTests.test_protocol_checks_after_subscript +Other2 Lib/test/test_typing.py /^ class Other2: pass$/;" c function:ProtocolTests.test_protocol_checks_after_subscript +OtherABCTests Lib/test/test_typing.py /^class OtherABCTests(BaseTestCase):$/;" c +OtherCallback Lib/test/test_ctypes/test_refcounts.py /^OtherCallback = ctypes.CFUNCTYPE(ctypes.c_int, ctypes.c_int, ctypes.c_ulonglong)$/;" v +OtherChild Lib/test/test_typing.py /^ class OtherChild(Parent):$/;" c function:TypedDictTests.test_orig_bases +OtherClass Lib/test/test_support.py /^ class OtherClass:$/;" c class:TestSupport +OtherEnum Lib/test/test_enum.py /^ class OtherEnum(Enum):$/;" c function:_EnumTests.test_contains_same_name_diff_enum_diff_values +OtherEnum Lib/test/test_enum.py /^ class OtherEnum(Enum):$/;" c function:_EnumTests.test_contains_tf +OtherFileTests Lib/test/test_file.py /^class OtherFileTests:$/;" c +OtherFileTests Lib/test/test_fileio.py /^class OtherFileTests:$/;" c +OtherFloatSubclass Lib/test/test_float.py /^class OtherFloatSubclass(float):$/;" c +OtherGenericChild Lib/test/test_typing.py /^ class OtherGenericChild(GenericParent[str]):$/;" c function:TypedDictTests.test_orig_bases +OtherNetworkTests Lib/test/test_urllib2net.py /^class OtherNetworkTests(unittest.TestCase):$/;" c +OtherOtherThing Lib/test/test_inspect.py /^ class OtherOtherThing(OtherThing):$/;" c function:TestGetattrStatic.test_metaclass +OtherSeq Lib/test/seq_tests.py /^ class OtherSeq:$/;" c function:CommonTest.test_constructors +OtherTest Lib/test/_test_multiprocessing.py /^class OtherTest(unittest.TestCase):$/;" c +OtherTest Lib/test/test_memoryview.py /^class OtherTest(unittest.TestCase):$/;" c +OtherTestableTest Lib/test/test_unittest/test_runner.py /^ class OtherTestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_module_cleanUp_with_multiple_classes +OtherTests Lib/test/test_zipfile/test_core.py /^class OtherTests(unittest.TestCase):$/;" c +OtherTests Lib/test/test_zipfile64.py /^class OtherTests(unittest.TestCase):$/;" c +OtherThing Lib/test/test_inspect.py /^ class OtherThing(Thing):$/;" c function:TestGetattrStatic.test_inherited +OtherThing Lib/test/test_inspect.py /^ class OtherThing(Thing):$/;" c function:TestGetattrStatic.test_inherited_classattribute +OtherThing Lib/test/test_inspect.py /^ class OtherThing(Thing):$/;" c function:TestGetattrStatic.test_inherited_slots +OtherThing Lib/test/test_inspect.py /^ class OtherThing(object, metaclass=sub):$/;" c function:TestGetattrStatic.test_metaclass +Ouch Lib/test/test_gc.py /^ class Ouch:$/;" c function:GCTests.test_trashcan +OurEnum Lib/test/test_enum.py /^ class OurEnum(MyEnum):$/;" c function:OldTestFlag.test_init_subclass +Outer Lib/test/test_enum.py /^ class Outer(Enum):$/;" c function:TestSpecial.test_nested_classes_in_enum_are_members +Outer Lib/test/test_enum.py /^ class Outer(Enum):$/;" c function:TestSpecial.test_nested_classes_in_enum_are_not_members +Outer Lib/test/test_enum.py /^ class Outer(Enum):$/;" c function:TestSpecial.test_nested_classes_in_enum_with_member +Outer Lib/test/test_enum.py /^ class Outer(Enum):$/;" c function:TestSpecial.test_nested_classes_in_enum_with_nonmember +Outer Lib/test/test_patma.py /^ class Outer:$/;" c function:TestPatma.test_patma_249 +Outer Lib/test/test_type_params.py /^ class Outer[A, B]:$/;" c function:TypeParamsTypeParamsDunder.test_typeparams_dunder_class_01 +OuterTest Lib/test/test_unittest/test_runner.py /^ class OuterTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_run_nested_test +Output Lib/tomllib/_parser.py /^class Output(NamedTuple):$/;" c +OutputBuffer_Finish Modules/_bz2module.c /^OutputBuffer_Finish(_BlocksOutputBuffer *buffer, uint32_t avail_out)$/;" f file: +OutputBuffer_Finish Modules/_lzmamodule.c /^OutputBuffer_Finish(_BlocksOutputBuffer *buffer, size_t avail_out)$/;" f file: +OutputBuffer_Finish Modules/zlibmodule.c /^OutputBuffer_Finish(_BlocksOutputBuffer *buffer, uint32_t avail_out)$/;" f file: +OutputBuffer_GetDataSize Modules/_bz2module.c /^OutputBuffer_GetDataSize(_BlocksOutputBuffer *buffer, uint32_t avail_out)$/;" f file: +OutputBuffer_GetDataSize Modules/_lzmamodule.c /^OutputBuffer_GetDataSize(_BlocksOutputBuffer *buffer, size_t avail_out)$/;" f file: +OutputBuffer_GetDataSize Modules/zlibmodule.c /^OutputBuffer_GetDataSize(_BlocksOutputBuffer *buffer, uint32_t avail_out)$/;" f file: +OutputBuffer_Grow Modules/_bz2module.c /^OutputBuffer_Grow(_BlocksOutputBuffer *buffer,$/;" f file: +OutputBuffer_Grow Modules/_lzmamodule.c /^OutputBuffer_Grow(_BlocksOutputBuffer *buffer,$/;" f file: +OutputBuffer_Grow Modules/zlibmodule.c /^OutputBuffer_Grow(_BlocksOutputBuffer *buffer,$/;" f file: +OutputBuffer_InitAndGrow Modules/_bz2module.c /^OutputBuffer_InitAndGrow(_BlocksOutputBuffer *buffer, Py_ssize_t max_length,$/;" f file: +OutputBuffer_InitAndGrow Modules/_lzmamodule.c /^OutputBuffer_InitAndGrow(_BlocksOutputBuffer *buffer, Py_ssize_t max_length,$/;" f file: +OutputBuffer_InitAndGrow Modules/zlibmodule.c /^OutputBuffer_InitAndGrow(_BlocksOutputBuffer *buffer, Py_ssize_t max_length,$/;" f file: +OutputBuffer_OnError Modules/_bz2module.c /^OutputBuffer_OnError(_BlocksOutputBuffer *buffer)$/;" f file: +OutputBuffer_OnError Modules/_lzmamodule.c /^OutputBuffer_OnError(_BlocksOutputBuffer *buffer)$/;" f file: +OutputBuffer_OnError Modules/zlibmodule.c /^OutputBuffer_OnError(_BlocksOutputBuffer *buffer)$/;" f file: +OutputBuffer_WindowFinish Modules/zlibmodule.c /^OutputBuffer_WindowFinish(_BlocksOutputBuffer *buffer, _Uint32Window *window,$/;" f file: +OutputBuffer_WindowGrow Modules/zlibmodule.c /^OutputBuffer_WindowGrow(_BlocksOutputBuffer *buffer, _Uint32Window *window,$/;" f file: +OutputBuffer_WindowInitWithSize Modules/zlibmodule.c /^OutputBuffer_WindowInitWithSize(_BlocksOutputBuffer *buffer, _Uint32Window *window,$/;" f file: +OutputBuffer_WindowOnError Modules/zlibmodule.c /^OutputBuffer_WindowOnError(_BlocksOutputBuffer *buffer, _Uint32Window *window)$/;" f file: +OutputChecker Lib/doctest.py /^class OutputChecker:$/;" c +OutputEffect Tools/cases_generator/parser.py /^OutputEffect = StackEffect$/;" v +OutputString Lib/http/cookies.py /^ def OutputString(self, attrs=None):$/;" m class:Morsel +OutputTestCase Lib/test/test_calendar.py /^class OutputTestCase(unittest.TestCase):$/;" c +OutputWindow Lib/idlelib/outwin.py /^class OutputWindow(EditorWindow):$/;" c +OutputWindowTest Lib/idlelib/idle_test/test_outwin.py /^class OutputWindowTest(unittest.TestCase):$/;" c +Outputter Lib/test/test_pyexpat.py /^ class Outputter:$/;" c class:ParseTest +Outputter Tools/clinic/clinic.py /^Outputter = Callable[[], str]$/;" v +OutsideDestinationError Lib/tarfile.py /^class OutsideDestinationError(FilterError):$/;" c +Overflow Lib/_pydecimal.py /^class Overflow(Inexact, Rounded):$/;" c +OverflowSizeof Lib/test/test_sys.py /^ class OverflowSizeof(int):$/;" c function:SizeofTest.test_errors +OverflowTestCase Lib/test/test_index.py /^class OverflowTestCase(unittest.TestCase):$/;" c +Overlapped Modules/overlapped.c /^ LPOVERLAPPED Overlapped;$/;" m struct:PostCallbackData file: +OverlappedObject Modules/_winapi.c /^} OverlappedObject;$/;" t typeref:struct:__anon535 file: +OverlappedObject Modules/overlapped.c /^} OverlappedObject;$/;" t typeref:struct:__anon567 file: +Overlapped_clear Modules/overlapped.c /^Overlapped_clear(OverlappedObject *self)$/;" f file: +Overlapped_dealloc Modules/overlapped.c /^Overlapped_dealloc(OverlappedObject *self)$/;" f file: +Overlapped_getaddress Modules/overlapped.c /^Overlapped_getaddress(OverlappedObject *self)$/;" f file: +Overlapped_getpending Modules/overlapped.c /^Overlapped_getpending(OverlappedObject *self)$/;" f file: +Overlapped_getsets Modules/overlapped.c /^static PyGetSetDef Overlapped_getsets[] = {$/;" v file: +Overlapped_members Modules/overlapped.c /^static PyMemberDef Overlapped_members[] = {$/;" v file: +Overlapped_methods Modules/overlapped.c /^static PyMethodDef Overlapped_methods[] = {$/;" v file: +Overlapped_traverse Modules/overlapped.c /^Overlapped_traverse(OverlappedObject *self, visitproc visit, void *arg)$/;" f file: +OverloadTests Lib/test/test_typing.py /^class OverloadTests(BaseTestCase):$/;" c +OverriddenInstructionPlaceHolder Tools/cases_generator/generate_cases.py /^class OverriddenInstructionPlaceHolder:$/;" c +OverrideBoth Lib/test/test_descr.py /^ class OverrideBoth(OverrideNew, OverrideInit):$/;" c function:.test_object_new_and_init_with_parameters +OverrideDecoratorTests Lib/test/test_typing.py /^class OverrideDecoratorTests(BaseTestCase):$/;" c +OverrideInit Lib/test/test_descr.py /^ class OverrideInit:$/;" c function:.test_object_new_and_init_with_parameters +OverrideNeither Lib/test/test_descr.py /^ class OverrideNeither:$/;" c function:.test_object_new_and_init_with_parameters +OverrideNew Lib/test/test_descr.py /^ class OverrideNew:$/;" c function:.test_object_new_and_init_with_parameters +OverrideRRShift Lib/test/test_print.py /^ class OverrideRRShift:$/;" c function:TestPy2MigrationHint.test_stream_redirection_hint_for_py2_migration +OverrideStdioWith Tools/clinic/clinic.py /^def OverrideStdioWith(stdout):$/;" f +OverridingImportBuiltinTests Lib/test/test_import/__init__.py /^class OverridingImportBuiltinTests(unittest.TestCase):$/;" c +P Lib/test/test_dataclasses.py /^ class P(Protocol):$/;" c function:TestInit.test_inherit_from_protocol +P Lib/test/test_dataclasses.py /^ class P:$/;" c function:TestCase.test_dataclasses_pickleable +P Lib/test/test_decimal.py /^P = import_fresh_module('decimal', blocked=['_decimal'])$/;" v +P Lib/test/test_descr.py /^ class P(J):$/;" c function:.test_set_class +P Lib/test/test_functools.py /^ class P:$/;" c function:TestSingleDispatch.test_mro_conflicts +P Lib/test/test_inspect.py /^ class P(_pickle.Pickler): pass$/;" c function:TestSignatureObject.test_signature_on_builtin_class +P Lib/test/test_pathlib.py /^ class P(_BasePurePathSubclass, self.cls):$/;" c function:_BasePathTest.test_with_segments +P Lib/test/test_pathlib.py /^ class P(_BasePurePathSubclass, self.cls):$/;" c function:_BasePurePathTest.test_with_segments_common +P Lib/test/test_typing.py /^ class P(BP, C, Protocol):$/;" c class:ProtocolTests.test_no_inheritance_from_nominal.BP +P Lib/test/test_typing.py /^ class P(C, Protocol):$/;" c class:ProtocolTests.test_no_inheritance_from_nominal.BP +P Lib/test/test_typing.py /^ class P(Protocol, C):$/;" c class:ProtocolTests.test_no_inheritance_from_nominal.BP +P Lib/test/test_typing.py /^ class P(Protocol[T, T]): pass$/;" c function:ProtocolTests.test_protocols_bad_subscripts +P Lib/test/test_typing.py /^ class P(Protocol[T], Protocol[S]): pass$/;" c function:ProtocolTests.test_protocols_bad_subscripts +P Lib/test/test_typing.py /^ class P(Protocol[int]): pass$/;" c function:ProtocolTests.test_protocols_bad_subscripts +P Lib/test/test_typing.py /^ class P(typing.Mapping[T, S], Protocol[T]): pass$/;" c function:ProtocolTests.test_protocols_bad_subscripts +P Lib/test/test_typing.py /^ class P(P1, P2, Protocol):$/;" c function:ProtocolTests.test_subprotocols_merging +P Lib/test/test_typing.py /^ class P(PR[int, T], Protocol[T]):$/;" c function:ProtocolTests.test_defining_generic_protocols +P Lib/test/test_typing.py /^ class P(PR[int, str], Protocol):$/;" c function:ProtocolTests.test_defining_generic_protocols_old_style +P Lib/test/test_typing.py /^ class P(Protocol): pass$/;" c function:ProtocolTests.test_no_instantiation +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_basic_protocol +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_cannot_instantiate_abstract +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_concrete_class_inheriting_init_from_protocol +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_custom_subclasshook +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_generic_protocols_special_from_protocol +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_issubclass_fails_correctly +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_non_protocol_subclasses +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_non_runtime_protocol_isinstance_check +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_none_on_callable_blocks_implementation +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_none_on_non_callable_doesnt_block_implementation +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_none_treated_correctly +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocol_defining_init_does_not_get_overridden +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocols_in_unions +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_init +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocols_issubclass +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_protocols_support_register +P Lib/test/test_typing.py /^ class P(Protocol):$/;" c function:ProtocolTests.test_super_call_init +P Lib/test/test_typing.py /^ class P(Protocol[T, S]): pass$/;" c function:ProtocolTests.test_generic_protocols_eq +P Lib/test/test_typing.py /^ class P(Protocol[T, S]): pass$/;" c function:ProtocolTests.test_generic_protocols_repr +P Lib/test/test_typing.py /^ class P(Protocol[T]): pass$/;" c function:ProtocolTests.test_generic_protocols_special_from_generic +P Lib/test/test_typing.py /^ class P(Protocol[T]): pass$/;" c function:ProtocolTests.test_init_called +P Lib/test/test_typing.py /^ class P(Protocol[T]): pass$/;" c function:ProtocolTests.test_new_called +P Lib/test/test_typing.py /^ class P(Protocol[T]): pass$/;" c function:ProtocolTests.test_protocol_checks_after_subscript +P Lib/test/test_typing.py /^ class P(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_pickleable +P Modules/_ctypes/_ctypes_test.c /^ short M: 1, N: 2, O: 3, P: 4, Q: 5, R: 6, S: 7;$/;" m struct:BITS file: +P Modules/_decimal/libmpdec/literature/fnt.py /^P = [2**64-2**32+1, 2**64-2**34+1, 2**64-2**40+1]$/;" v +P Modules/_decimal/libmpdec/literature/fnt.py /^P = [2113929217, 2013265921, 1811939329]$/;" v +P Modules/_decimal/tests/bench.py /^P = import_fresh_module('decimal', blocked=['_decimal'])$/;" v +P Modules/_decimal/tests/deccheck.py /^P = import_fresh_module('decimal', blocked=['_decimal'])$/;" v +P Modules/_decimal/tests/formathelper.py /^P = import_fresh_module('decimal', blocked=['_decimal'])$/;" v +P Modules/cmathmodule.c 148;" d file: +P Python/dtoa.c 241;" d file: +P Tools/cases_generator/parser.py /^P = TypeVar("P", bound="Parser")$/;" v +P Tools/peg_generator/pegen/parser.py /^P = TypeVar("P", bound="Parser")$/;" v +P1 Lib/test/test_typing.py /^ class P1(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +P1 Lib/test/test_typing.py /^ class P1(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +P1 Lib/test/test_typing.py /^ class P1(Protocol):$/;" c function:ProtocolTests.test_subprotocols_extending +P1 Lib/test/test_typing.py /^ class P1(Protocol):$/;" c function:ProtocolTests.test_subprotocols_merging +P1 Lib/test/test_typing.py /^ class P1(Protocol, Generic[T]):$/;" c function:ProtocolTests.test_defining_generic_protocols_old_style +P1 Modules/_decimal/libmpdec/constants.h /^enum {P1, P2, P3};$/;" e enum:__anon348 +P12 Modules/cmathmodule.c 150;" d file: +P14 Modules/cmathmodule.c 149;" d file: +P2 Lib/test/test_inspect.py /^ class P2(EmptyTrait, P): pass$/;" c function:TestSignatureObject.test_signature_on_builtin_class +P2 Lib/test/test_typing.py /^ class P2(Generic[T], Protocol):$/;" c function:ProtocolTests.test_defining_generic_protocols_old_style +P2 Lib/test/test_typing.py /^ class P2(P1, Protocol):$/;" c function:ProtocolTests.test_subprotocols_extending +P2 Lib/test/test_typing.py /^ class P2(Protocol):$/;" c function:ProtocolTests.test_subprotocols_merging +P2 Modules/_decimal/libmpdec/constants.h /^enum {P1, P2, P3};$/;" e enum:__anon348 +P3 Lib/test/test_inspect.py /^ class P3(P2):$/;" c function:TestSignatureObject.test_signature_on_builtin_class +P3 Modules/_decimal/libmpdec/constants.h /^enum {P1, P2, P3};$/;" e enum:__anon348 +P34 Modules/cmathmodule.c 151;" d file: +P4 Lib/test/test_inspect.py /^ class P4(P2, metaclass=MetaP):$/;" c function:TestSignatureObject.test_signature_on_builtin_class +PACKAGES Tools/nuget/build.bat /^if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts$/;" v +PACKAGES Tools/nuget/build.bat /^if defined PACKAGES set PACKAGES="\/p:Packages=%PACKAGES%"$/;" v +PACKAGES Tools/nuget/build.bat /^set PACKAGES=$/;" v +PACKAGE_ID PC/layout/support/appxmanifest.py /^ class PACKAGE_ID(ctypes.Structure):$/;" c function:get_packagefamilyname +PACKAGE_NAMES Tools/build/verify_ensurepip_wheels.py /^PACKAGE_NAMES = ("pip",)$/;" v +PACK_SINGLE Objects/memoryobject.c 1842;" d file: +PAGE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^enum PAGE {$/;" g file: +PAGES Lib/tkinter/constants.py /^PAGES='pages'$/;" v +PAGESIZE Lib/test/test_mmap.py /^PAGESIZE = mmap.PAGESIZE$/;" v +PAGE_CUSTOM1 Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_CUSTOM1,$/;" e enum:PAGE file: +PAGE_CUSTOM2 Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_CUSTOM2,$/;" e enum:PAGE file: +PAGE_FAILURE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_FAILURE,$/;" e enum:PAGE file: +PAGE_HELP Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_HELP,$/;" e enum:PAGE file: +PAGE_INSTALL Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_INSTALL,$/;" e enum:PAGE file: +PAGE_LOADING Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_LOADING,$/;" e enum:PAGE file: +PAGE_MODIFY Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_MODIFY,$/;" e enum:PAGE file: +PAGE_NAMES Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static LPCWSTR PAGE_NAMES[] = {$/;" v file: +PAGE_PROGRESS Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_PROGRESS,$/;" e enum:PAGE file: +PAGE_PROGRESS_PASSIVE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_PROGRESS_PASSIVE,$/;" e enum:PAGE file: +PAGE_SIMPLE_INSTALL Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_SIMPLE_INSTALL,$/;" e enum:PAGE file: +PAGE_SUCCESS Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_SUCCESS,$/;" e enum:PAGE file: +PAGE_UPGRADE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE_UPGRADE,$/;" e enum:PAGE file: +PAGE_URL Tools/build/parse_html5_entities.py /^PAGE_URL = 'https:\/\/html.spec.whatwg.org\/multipage\/named-characters.html'$/;" v +PAIR Lib/test/test_monitoring.py /^PAIR = (0,1)$/;" v +PAPER Doc/Makefile /^PAPER =$/;" m +PAPEROPT_a4 Doc/Makefile /^PAPEROPT_a4 = -D latex_elements.papersize=a4paper$/;" m +PAPEROPT_letter Doc/Makefile /^PAPEROPT_letter = -D latex_elements.papersize=letterpaper$/;" m +PARAMFLAG_FIN Modules/_ctypes/ctypes.h 9;" d +PARAMFLAG_FLCID Modules/_ctypes/ctypes.h 11;" d +PARAMFLAG_FOUT Modules/_ctypes/ctypes.h 10;" d +PARAMFUNC Modules/_ctypes/ctypes.h /^typedef PyCArgObject *(* PARAMFUNC)(CDataObject *obj);$/;" t +PARAMSPEC_REDUCE_METHODDEF Objects/clinic/typevarobject.c.h 504;" d +PARAMSPEC_TYPING_PREPARE_SUBST_METHODDEF Objects/clinic/typevarobject.c.h 447;" d +PARAMSPEC_TYPING_SUBST_METHODDEF Objects/clinic/typevarobject.c.h 393;" d +PARSE Tools/peg_generator/scripts/test_parse_directory.py /^PARSE = 1$/;" v +PARSER Lib/argparse.py /^PARSER = 'A...'$/;" v +PARSE_COLNAMES Modules/_sqlite/module.h 98;" d +PARSE_DECLTYPES Modules/_sqlite/module.h 97;" d +PARSE_ERROR Lib/xmlrpc/client.py /^PARSE_ERROR = -32700$/;" v +PARTIAL_CONTENT Lib/http/__init__.py /^ PARTIAL_CONTENT = 206, 'Partial Content', 'Partial content follows'$/;" v class:HTTPStatus +PARTIAL_CONTENT Lib/test/test_httplib.py /^ PARTIAL_CONTENT = 206, 'Partial Content', 'Partial content follows'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +PASSED Lib/test/libregrtest/runtest.py /^ PASSED = "PASSED"$/;" v class:State +PASSWD Lib/imaplib.py /^ PASSWD = getpass.getpass("IMAP password for %s on %s: " % (USER, host or "localhost"))$/;" v +PASSWD Lib/test/test_urllib2_localnet.py /^ PASSWD = "test123"$/;" v class:ProxyAuthTests +PASSWD Lib/test/test_urllib2_localnet.py /^ PASSWD = "testPass"$/;" v class:BasicAuthTests +PASSWD Lib/test/test_urllib2_localnet.py /^ PASSWD = 'testPass'$/;" v class:BasicAuthHandler +PATCH Lib/http/__init__.py /^ PATCH = 'PATCH', 'Apply partial modifications to a target.'$/;" v class:HTTPMethod +PATCHPOINT Lib/test/test_shutil.py /^ PATCHPOINT = ""$/;" v class:_ZeroCopyFileTest +PATCHPOINT Lib/test/test_shutil.py /^ PATCHPOINT = "os.sendfile"$/;" v class:TestZeroCopySendfile +PATCHPOINT Lib/test/test_shutil.py /^ PATCHPOINT = "posix._fcopyfile"$/;" v class:TestZeroCopyMACOS +PATH Lib/venv/scripts/nt/activate.bat /^if defined _OLD_VIRTUAL_PATH set PATH=%_OLD_VIRTUAL_PATH%$/;" v +PATH Lib/venv/scripts/nt/activate.bat /^set PATH=%VIRTUAL_ENV%\\__VENV_BIN_NAME__;%PATH%$/;" v +PATH Tools/buildbot/remoteDeploy.bat /^set PATH=%PATH%;%SystemRoot%\\SysNative\\OpenSSH;%SystemRoot%\\System32\\OpenSSH$/;" v +PATH Tools/buildbot/remotePythonInfo.bat /^set PATH=%PATH%;%SystemRoot%\\SysNative\\OpenSSH;%SystemRoot%\\System32\\OpenSSH$/;" v +PATH Tools/buildbot/test.bat /^set PATH=%PATH%;%SystemRoot%\\SysNative\\OpenSSH;%SystemRoot%\\System32\\OpenSSH$/;" v +PATHCCH_ALLOW_LONG_PATHS Python/fileutils.c 14;" d file: +PATHCHAR Modules/_elementtree.c 1149;" d file: +PATHS Tools/msi/purge.py /^PATHS = PATHS + [p + ".asc" for p in PATHS]$/;" v +PATHS Tools/msi/purge.py /^PATHS = [$/;" v +PATH_HAVE_FCHDIR Modules/posixmodule.c 2762;" d file: +PATH_HAVE_FCHDIR Modules/posixmodule.c 2764;" d file: +PATH_HAVE_FCHMOD Modules/posixmodule.c 2768;" d file: +PATH_HAVE_FCHMOD Modules/posixmodule.c 2770;" d file: +PATH_HAVE_FCHOWN Modules/posixmodule.c 2774;" d file: +PATH_HAVE_FCHOWN Modules/posixmodule.c 2776;" d file: +PATH_HAVE_FDOPENDIR Modules/posixmodule.c 2780;" d file: +PATH_HAVE_FDOPENDIR Modules/posixmodule.c 2782;" d file: +PATH_HAVE_FEXECVE Modules/posixmodule.c 2786;" d file: +PATH_HAVE_FEXECVE Modules/posixmodule.c 2788;" d file: +PATH_HAVE_FPATHCONF Modules/posixmodule.c 2792;" d file: +PATH_HAVE_FPATHCONF Modules/posixmodule.c 2794;" d file: +PATH_HAVE_FSTATVFS Modules/posixmodule.c 2798;" d file: +PATH_HAVE_FSTATVFS Modules/posixmodule.c 2800;" d file: +PATH_HAVE_FTRUNCATE Modules/posixmodule.c 2804;" d file: +PATH_HAVE_FTRUNCATE Modules/posixmodule.c 2806;" d file: +PATH_HAVE_FTRUNCATE Modules/posixmodule.c 2811;" d file: +PATH_HAVE_FTRUNCATE Modules/posixmodule.c 2812;" d file: +PATH_MAX Include/osdefs.h 31;" d +PATH_T_INITIALIZE Modules/posixmodule.c 1131;" d file: +PATH_T_INITIALIZE Modules/posixmodule.c 1134;" d file: +PATH_UTIME_HAVE_FD Modules/posixmodule.c 6055;" d file: +PATH_UTIME_HAVE_FD Modules/posixmodule.c 6057;" d file: +PATTERN Lib/lib2to3/fixer_base.py /^ PATTERN = None # Most subclasses should override with a string literal$/;" v class:BaseFix +PATTERN Lib/lib2to3/fixes/fix_basestring.py /^ PATTERN = "'basestring'"$/;" v class:FixBasestring +PATTERN Lib/lib2to3/fixes/fix_long.py /^ PATTERN = "'long'"$/;" v class:FixLong +PATTERN Lib/lib2to3/fixes/fix_renames.py /^ PATTERN = "|".join(build_pattern())$/;" v class:FixRenames +PATTERN Lib/lib2to3/fixes/fix_types.py /^ PATTERN = '|'.join(_pats)$/;" v class:FixTypes +PATTERN Lib/lib2to3/fixes/fix_unicode.py /^ PATTERN = "STRING | 'unicode' | 'unichr'"$/;" v class:FixUnicode +PATTERN Lib/test/test_lib2to3/test_refactor.py /^ PATTERN = "'name'"$/;" v class:TestRefactoringTool.test_get_headnode_dict.SimpleFix +PATTERN Lib/test/test_lib2to3/test_refactor.py /^ PATTERN = "file_input< any * >"$/;" v class:TestRefactoringTool.test_get_headnode_dict.FileInputFix +PAT_OFF Modules/_sre/sre.c 2978;" d file: +PAXUnicodeTest Lib/test/test_tarfile.py /^class PAXUnicodeTest(UnicodeTest, unittest.TestCase):$/;" c +PAX_FIELDS Lib/tarfile.py /^PAX_FIELDS = ("path", "linkpath", "size", "mtime",$/;" v +PAX_FORMAT Lib/tarfile.py /^PAX_FORMAT = 2 # POSIX.1-2001 (pax) format$/;" v +PAX_NAME_FIELDS Lib/tarfile.py /^PAX_NAME_FIELDS = {"path", "linkpath", "uname", "gname"}$/;" v +PAX_NUMBER_FIELDS Lib/tarfile.py /^PAX_NUMBER_FIELDS = {$/;" v +PAYLOAD_SIZE Lib/test/test_asyncio/test_ssl.py /^ PAYLOAD_SIZE = 1024 * 100$/;" v class:TestSSL +PAYLOAD_SIZE Lib/test/test_asyncio/test_sslproto.py /^ PAYLOAD_SIZE = 1024 * 100$/;" v class:BaseStartTLS +PAYMENT_REQUIRED Lib/http/__init__.py /^ PAYMENT_REQUIRED = (402, 'Payment Required',$/;" v class:HTTPStatus +PAYMENT_REQUIRED Lib/test/test_httplib.py /^ PAYMENT_REQUIRED = (402, 'Payment Required',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +PBE2PARAM Lib/test/test_lib2to3/data/infinite_recursion.py /^PBE2PARAM = PBE2PARAM_st$/;" v +PBE2PARAM_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class PBE2PARAM_st(Structure):$/;" c +PBEPARAM Lib/test/test_lib2to3/data/infinite_recursion.py /^PBEPARAM = PBEPARAM_st$/;" v +PBEPARAM_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class PBEPARAM_st(Structure):$/;" c +PBKDF2PARAM Lib/test/test_lib2to3/data/infinite_recursion.py /^PBKDF2PARAM = PBKDF2PARAM_st$/;" v +PBKDF2PARAM_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class PBKDF2PARAM_st(Structure):$/;" c +PBKDF2_HMAC_METHODDEF Modules/clinic/_hashopenssl.c.h 1227;" d +PBOOLEAN Lib/ctypes/wintypes.py /^PBOOLEAN = ctypes.POINTER(BOOLEAN)$/;" v +PCALLS Lib/pstats.py /^ PCALLS = 'pcalls'$/;" v class:SortKey +PCALLS Lib/test/test_pstats.py /^ PCALLS = 'pcalls'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +PCBUILD PCbuild/get_externals.bat /^if NOT DEFINED PCBUILD (set PCBUILD=%~dp0)$/;" v +PCBUILD PCbuild/idle.bat /^set PCBUILD=%~dp0$/;" v +PCBUILD PCbuild/prepare_ssl.bat /^if "%PCBUILD%"=="" (set PCBUILD=%~dp0)$/;" v +PCBUILD PCbuild/prepare_tcltk.bat /^if "%PCBUILD%"=="" (set PCBUILD=%~dp0)$/;" v +PCBUILD Tools/msi/build.bat /^set PCBUILD=%D%..\\..\\PCbuild\\$/;" v +PCBUILD Tools/msi/buildrelease.bat /^set PCBUILD=%D%..\\..\\PCbuild\\$/;" v +PCBUILD Tools/msi/get_externals.bat /^if "%PCBUILD%"=="" (set PCBUILD=%HERE%..\\..\\PCbuild\\)$/;" v +PCBUILD Tools/msi/testrelease.bat /^set PCBUILD=%D%..\\..\\PCbuild\\$/;" v +PCBUILD Tools/msi/uploadrelease.bat /^set PCBUILD=%D%..\\..\\PCbuild\\$/;" v +PCBUILD Tools/nuget/build.bat /^set PCBUILD=%D%..\\..\\PCbuild\\$/;" v +PCBUILD_FILTERS Tools/build/freeze_modules.py /^PCBUILD_FILTERS = os.path.join(ROOT_DIR, 'PCbuild', '_freeze_module.vcxproj.filters')$/;" v +PCBUILD_PROJECT Tools/build/freeze_modules.py /^PCBUILD_PROJECT = os.path.join(ROOT_DIR, 'PCbuild', '_freeze_module.vcxproj')$/;" v +PCBUILD_PYTHONCORE Tools/build/freeze_modules.py /^PCBUILD_PYTHONCORE = os.path.join(ROOT_DIR, 'PCbuild', 'pythoncore.vcxproj')$/;" v +PCHAR Lib/ctypes/wintypes.py /^PCHAR = ctypes.POINTER(CHAR)$/;" v +PComplete Lib/test/test_ctypes/test_pep3118.py /^PComplete = POINTER(Complete)$/;" v +PDATA_APPEND Modules/_pickle.c 607;" d file: +PDATA_POP Modules/_pickle.c 589;" d file: +PDATA_PUSH Modules/_pickle.c 603;" d file: +PEEK Python/ceval_macros.h 206;" d +PEERCERT Lib/test/test_asyncio/utils.py /^PEERCERT = {$/;" v +PEGEN_H Parser/pegen.h 2;" d +PEGLexer Doc/tools/extensions/peg_highlight.py /^class PEGLexer(RegexLexer):$/;" c +PEM_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^PEM_CTX = pem_ctx_st$/;" v +PEM_ENCODE_SEAL_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^PEM_ENCODE_SEAL_CTX = PEM_Encode_Seal_st$/;" v +PEM_Encode_Seal_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class PEM_Encode_Seal_st(Structure):$/;" c +PEM_FOOTER Lib/ssl.py /^PEM_FOOTER = "-----END CERTIFICATE-----"$/;" v +PEM_HEADER Lib/ssl.py /^PEM_HEADER = "-----BEGIN CERTIFICATE-----"$/;" v +PEM_USER Lib/test/test_lib2to3/data/infinite_recursion.py /^PEM_USER = pem_recip_st$/;" v +PEM_cert_to_DER_cert Lib/ssl.py /^def PEM_cert_to_DER_cert(pem_cert_string):$/;" f +PENDING Lib/concurrent/futures/_base.py /^PENDING = 'PENDING'$/;" v +PENDING Lib/test/test_enum.py /^ PENDING = "pending"$/;" v class:TestSpecial.test_multiple_mixin_with_common_data_type.JobStatus +PENDING_FUTURE Lib/test/test_concurrent_futures/util.py /^PENDING_FUTURE = create_future(state=PENDING)$/;" v +PEP3120Test Lib/test/test_utf8source.py /^class PEP3120Test(unittest.TestCase):$/;" c +PEP3131Test Lib/test/test_unicode_identifiers.py /^class PEP3131Test(unittest.TestCase):$/;" c +PEP3147Tests Lib/test/test_importlib/test_util.py /^class PEP3147Tests:$/;" c +PEP626Tests Lib/test/test_exceptions.py /^class PEP626Tests(unittest.TestCase):$/;" c +PERCENT Include/internal/pycore_token.h 40;" d +PERCENT Lib/lib2to3/pgen2/token.py /^PERCENT = 24$/;" v +PERCENT Lib/token.py /^PERCENT = 24$/;" v +PERCENTEQUAL Include/internal/pycore_token.h 56;" d +PERCENTEQUAL Lib/lib2to3/pgen2/token.py /^PERCENTEQUAL = 41$/;" v +PERCENTEQUAL Lib/token.py /^PERCENTEQUAL = 40$/;" v +PERF_STATUS_FAILED Include/internal/pycore_ceval_state.h /^ PERF_STATUS_FAILED = -1, \/\/ Perf trampoline is in an invalid state$/;" e enum:__anon165 +PERF_STATUS_NO_INIT Include/internal/pycore_ceval_state.h /^ PERF_STATUS_NO_INIT = 0, \/\/ Perf trampoline is not initialized$/;" e enum:__anon165 +PERF_STATUS_OK Include/internal/pycore_ceval_state.h /^ PERF_STATUS_OK = 1, \/\/ Perf trampoline is ready to be executed$/;" e enum:__anon165 +PERIOD Tools/cases_generator/lexer.py /^PERIOD = r'\\.'$/;" v +PERMANENT_REDIRECT Lib/http/__init__.py /^ PERMANENT_REDIRECT = (308, 'Permanent Redirect',$/;" v class:HTTPStatus +PERMANENT_REDIRECT Lib/test/test_httplib.py /^ PERMANENT_REDIRECT = (308, 'Permanent Redirect',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +PERSID Lib/pickle.py /^PERSID = b'P' # push persistent object; id is taken from string arg$/;" v +PERSID Modules/_pickle.c /^ PERSID = 'P',$/;" e enum:opcode file: +PERTURB_SHIFT Modules/_pickle.c 765;" d file: +PERTURB_SHIFT Modules/_pickle.c 975;" d file: +PERTURB_SHIFT Objects/dictobject.c 141;" d file: +PERTURB_SHIFT Objects/setobject.c 53;" d file: +PFLOAT Lib/ctypes/wintypes.py /^PFLOAT = ctypes.POINTER(FLOAT)$/;" v +PF_CAN Modules/socketmodule.h 145;" d +PG Lib/test/test_typing.py /^ class PG(Protocol[T]): pass$/;" c function:ProtocolTests.test_no_instantiation +PG Lib/test/test_typing.py /^ class PG(Protocol[T]):$/;" c function:ProtocolTests.test_generic_protocols_special_from_protocol +PG Lib/test/test_typing.py /^ class PG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance +PG Lib/test/test_typing.py /^ class PG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +PG Lib/test/test_typing.py /^ class PG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_init +PG Lib/test/test_typing.py /^ class PG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +PG Lib/test/test_typing.py /^ class PG(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_issubclass +PG1 Lib/test/test_typing.py /^ class PG1(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +PG1 Lib/test/test_typing.py /^ class PG1(Protocol[T]):$/;" c function:ProtocolTests.test_protocols_isinstance_properties_and_descriptors +PGO Lib/test/support/__init__.py /^PGO = False$/;" v +PGO Tools/msi/buildrelease.bat /^ set PGO=$/;" v +PGO Tools/msi/buildrelease.bat /^ set PGO=%~2$/;" v +PGO Tools/msi/buildrelease.bat /^if "%1" EQU "--pgo" (set PGO=%~2) && shift && shift && goto CheckOpts$/;" v +PGO Tools/msi/buildrelease.bat /^if "%1" EQU "--skip-pgo" (set PGO=) && shift && goto CheckOpts$/;" v +PGO Tools/msi/buildrelease.bat /^set PGO=-m test -q --pgo$/;" v +PGOOPTS Tools/msi/buildrelease.bat /^ set PGOOPTS=$/;" v +PGOOPTS Tools/msi/buildrelease.bat /^ set PGOOPTS=--pgo-job "%PGO%"$/;" v +PGO_EXTENDED Lib/test/support/__init__.py /^PGO_EXTENDED = False$/;" v +PGO_TESTS Lib/test/libregrtest/pgo.py /^PGO_TESTS = [$/;" v +PGetFileInformationByName Include/internal/pycore_fileutils_windows.h /^typedef BOOL (WINAPI *PGetFileInformationByName)($/;" t +PHKEY Lib/ctypes/wintypes.py /^PHKEY = ctypes.POINTER(HKEY)$/;" v +PHRASE_ENDS Lib/email/_header_value_parser.py /^PHRASE_ENDS = SPECIALS - set('."(')$/;" v +PI Lib/test/double_const.py /^PI = 3.14159265358979324$/;" v +PI Lib/test/test_json/test_enum.py /^PI = 3.141593$/;" v +PI Lib/test/test_unicode.py /^ PI = 3.1415926$/;" v class:UnicodeTest.test_formatting_with_enum.Float +PI Lib/xml/etree/ElementTree.py /^PI = ProcessingInstruction$/;" v +PICKLED_ATTRIB Modules/_elementtree.c 948;" d file: +PICKLED_CHILDREN Modules/_elementtree.c 947;" d file: +PICKLED_TAG Modules/_elementtree.c 946;" d file: +PICKLED_TAIL Modules/_elementtree.c 949;" d file: +PICKLED_TEXT Modules/_elementtree.c 950;" d file: +PIESLICE Lib/tkinter/constants.py /^PIESLICE='pieslice'$/;" v +PIPE Lib/asyncio/subprocess.py /^PIPE = subprocess.PIPE$/;" v +PIPE Lib/asyncio/windows_utils.py /^PIPE = subprocess.PIPE$/;" v +PIPE Lib/subprocess.py /^PIPE = -1$/;" v +PIPE_BUF Modules/selectmodule.c 2444;" d file: +PIPE_BUF Modules/selectmodule.c 2445;" d file: +PIPE_MAX_SIZE Lib/test/support/__init__.py /^PIPE_MAX_SIZE = 4 * 1024 * 1024 + 1$/;" v +PIP_VE_DATA PC/layout/support/appxmanifest.py /^PIP_VE_DATA = dict($/;" v +PI_str Lib/test/double_const.py /^PI_str = "3.14159265358979324"$/;" v +PIsWow64Process2 PC/launcher2.c /^typedef BOOL (*PIsWow64Process2)(HANDLE, USHORT*, USHORT*);$/;" t file: +PKCS7 Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7 = pkcs7_st$/;" v +PKCS7_DIGEST Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_DIGEST = pkcs7_digest_st$/;" v +PKCS7_ENCRYPT Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_ENCRYPT = pkcs7_encrypted_st$/;" v +PKCS7_ENC_CONTENT Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_ENC_CONTENT = pkcs7_enc_content_st$/;" v +PKCS7_ENVELOPE Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_ENVELOPE = pkcs7_enveloped_st$/;" v +PKCS7_ISSUER_AND_SERIAL Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_ISSUER_AND_SERIAL = pkcs7_issuer_and_serial_st$/;" v +PKCS7_RECIP_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_RECIP_INFO = pkcs7_recip_info_st$/;" v +PKCS7_SIGNED Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_SIGNED = pkcs7_signed_st$/;" v +PKCS7_SIGNER_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_SIGNER_INFO = pkcs7_signer_info_st$/;" v +PKCS7_SIGN_ENVELOPE Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS7_SIGN_ENVELOPE = pkcs7_signedandenveloped_st$/;" v +PKCS8_PRIV_KEY_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^PKCS8_PRIV_KEY_INFO = pkcs8_priv_key_info_st$/;" v +PKGCONTEXT Python/import.c 61;" d file: +PKGCONTEXT Python/import.c 711;" d file: +PKGCONTEXT Python/import.c 712;" d file: +PKG_NAME Lib/test/test_importlib/import_/test_api.py /^PKG_NAME = 'fine'$/;" v +PLARGE_INTEGER Lib/ctypes/wintypes.py /^PLARGE_INTEGER = ctypes.POINTER(LARGE_INTEGER)$/;" v +PLATFORM PC/pyconfig.h 325;" d +PLATFORM PC/pyconfig.h 341;" d +PLATFORM Python/getplatform.c 5;" d file: +PLATLIBDIR Lib/test/test_getpath.py /^ PLATLIBDIR="",$/;" v class:MockGetPathTests +PLATSTDLIB_LANDMARK Modules/getpath.py /^ PLATSTDLIB_LANDMARK = f'{platlibdir}'$/;" v +PLATSTDLIB_LANDMARK Modules/getpath.py /^ PLATSTDLIB_LANDMARK = f'{platlibdir}\/python{VERSION_MAJOR}.{VERSION_MINOR}\/lib-dynload'$/;" v +PLAT_SPEC_TO_RUNTIME Tools/c-analyzer/distutils/_msvccompiler.py /^PLAT_SPEC_TO_RUNTIME = {$/;" v +PLAT_TO_VCVARS Tools/c-analyzer/distutils/_msvccompiler.py /^PLAT_TO_VCVARS = {$/;" v +PLAT_TO_VCVARS Tools/c-analyzer/distutils/msvc9compiler.py /^PLAT_TO_VCVARS = {$/;" v +PLCID Lib/ctypes/wintypes.py /^PLCID = ctypes.POINTER(LCID)$/;" v +PLUS Include/internal/pycore_token.h 30;" d +PLUS Lib/lib2to3/pgen2/token.py /^PLUS = 14$/;" v +PLUS Lib/token.py /^PLUS = 14$/;" v +PLUS Tools/cases_generator/lexer.py /^PLUS = r'\\+'$/;" v +PLUSEQUAL Include/internal/pycore_token.h 52;" d +PLUSEQUAL Lib/lib2to3/pgen2/token.py /^PLUSEQUAL = 37$/;" v +PLUSEQUAL Lib/token.py /^PLUSEQUAL = 36$/;" v +PLUSPLUS Tools/cases_generator/lexer.py /^PLUSPLUS = r'\\+\\+'$/;" v +PLexer Tools/cases_generator/plexer.py /^class PLexer:$/;" c +PM Lib/test/test_typing.py /^ class PM(Protocol):$/;" c function:ProtocolTests.test_protocols_support_register +PNRMUTEX Python/thread_nt.h /^typedef NRMUTEX *PNRMUTEX;$/;" t +PNRMUTEX Python/thread_nt.h 120;" d +PNonCall Lib/test/test_typing.py /^ class PNonCall(Protocol):$/;" c function:ProtocolTests.test_protocols_issubclass_non_callable +POF_BUILTINS Modules/_lsprof.c 58;" d file: +POF_ENABLED Modules/_lsprof.c 56;" d file: +POF_NOMEMORY Modules/_lsprof.c 59;" d file: +POF_SUBCALLS Modules/_lsprof.c 57;" d file: +POINT Lib/ctypes/wintypes.py /^class POINT(ctypes.Structure):$/;" c +POINT Lib/test/leakers/test_ctypes.py /^ class POINT(Structure):$/;" c function:leak_inner +POINT Lib/test/test_ctypes/test_as_parameter.py /^class POINT(Structure):$/;" c +POINT Lib/test/test_ctypes/test_functions.py /^class POINT(Structure):$/;" c +POINT Lib/test/test_ctypes/test_keeprefs.py /^ class POINT(Structure):$/;" c function:PointerToStructure.test +POINT Lib/test/test_ctypes/test_keeprefs.py /^ class POINT(Structure):$/;" c function:StructureTestCase.test_struct_struct +POINT Lib/test/test_ctypes/test_structures.py /^ class POINT(Structure):$/;" c function:StructureTestCase.test_conflicting_initializers +POINT Lib/test/test_ctypes/test_structures.py /^ class POINT(Structure):$/;" c function:StructureTestCase.test_invalid_field_types +POINT Lib/test/test_ctypes/test_structures.py /^ class POINT(Structure):$/;" c function:StructureTestCase.test_keyword_initializers +POINT Lib/test/test_ctypes/test_win32.py /^ class POINT(Structure):$/;" c function:Structures.test_struct_by_value +POINT Modules/_ctypes/_ctypes_test.c /^} POINT;$/;" t typeref:struct:__anon515 file: +POINTER Modules/_ctypes/callproc.c /^POINTER(PyObject *self, PyObject *cls)$/;" f file: +POINTER_BITS Include/internal/pycore_obmalloc.h 543;" d +POINTER_BITS Include/internal/pycore_obmalloc.h 561;" d +POKE Python/ceval_macros.h 207;" d +POLLPRI Modules/selectmodule.c 70;" d file: +POOL_ADDR Include/internal/pycore_obmalloc.h 314;" d +POOL_BITS Include/internal/pycore_obmalloc.h 226;" d +POOL_BITS Include/internal/pycore_obmalloc.h 228;" d +POOL_OVERHEAD Include/internal/pycore_obmalloc.h 309;" d +POOL_SIZE Include/internal/pycore_obmalloc.h 230;" d +POOL_SIZE_MASK Include/internal/pycore_obmalloc.h 231;" d +POP Lib/pickle.py /^POP = b'0' # discard topmost stack item$/;" v +POP Modules/_pickle.c /^ POP = '0',$/;" e enum:opcode file: +POP Python/ceval_macros.h 219;" d +POP Python/ceval_macros.h 232;" d +POP3 Lib/poplib.py /^class POP3:$/;" c +POP3_PORT Lib/poplib.py /^POP3_PORT = 110$/;" v +POP3_SSL Lib/poplib.py /^ class POP3_SSL(POP3):$/;" c class:POP3 +POP3_SSL_PORT Lib/poplib.py /^POP3_SSL_PORT = 995$/;" v +POP_BLOCK Include/opcode.h 146;" d +POP_EXCEPT Include/opcode.h 49;" d +POP_EXCEPT_AND_RERAISE Python/compile.c 1196;" d file: +POP_JUMP_IF_FALSE Include/opcode.h 72;" d +POP_JUMP_IF_NONE Include/opcode.h 87;" d +POP_JUMP_IF_NOT_NONE Include/opcode.h 86;" d +POP_JUMP_IF_TRUE Include/opcode.h 73;" d +POP_MARK Lib/pickle.py /^POP_MARK = b'1' # discard stack top through topmost markobject$/;" v +POP_MARK Modules/_pickle.c /^ POP_MARK = '1',$/;" e enum:opcode file: +POP_TOP Include/opcode.h 12;" d +POP_VALUE Python/compile.c /^ WITH, ASYNC_WITH, HANDLER_CLEANUP, POP_VALUE, EXCEPTION_HANDLER,$/;" e enum:fblocktype file: +PORT Lib/idlelib/pyshell.py /^PORT = 0 # someday pass in host, port for remote debug capability$/;" v +PORT Lib/test/test_httplib.py /^ PORT = None$/;" v class:TimeoutTest +PORT Lib/test/test_poplib.py /^PORT = 0$/;" v +PORT Lib/test/test_xmlrpc.py /^ PORT = None$/;" v class:http_multi_server.BrokenDispatcher +PORT Lib/test/test_xmlrpc.py /^ PORT = None$/;" v class:http_server.MyXMLRPCServer +POSINF_WORD0 Python/dtoa.c 278;" d file: +POSINF_WORD1 Python/dtoa.c 279;" d file: +POSITION Modules/expat/xmltok.h /^} POSITION;$/;" t typeref:struct:position +POSITIONAL_ONLY Lib/inspect.py /^ POSITIONAL_ONLY = _POSITIONAL_ONLY$/;" v class:Parameter +POSITIONAL_ONLY Lib/inspect.py /^ POSITIONAL_ONLY = 'positional-only'$/;" v class:_ParameterKind +POSITIONAL_OR_KEYWORD Lib/inspect.py /^ POSITIONAL_OR_KEYWORD = _POSITIONAL_OR_KEYWORD$/;" v class:Parameter +POSITIONAL_OR_KEYWORD Lib/inspect.py /^ POSITIONAL_OR_KEYWORD = 'positional or keyword'$/;" v class:_ParameterKind +POSIXProcessTestCase Lib/test/test_subprocess.py /^class POSIXProcessTestCase(BaseTestCase):$/;" c +POSIX_CALL Modules/_posixsubprocess.c 75;" d file: +POSIX_FADVISE_AIX_BUG Modules/posixmodule.c 11867;" d file: +POSIX_LOCALES Lib/test/test_utf8_mode.py /^POSIX_LOCALES = ('C', 'POSIX')$/;" v +POSIX_MAGIC Lib/tarfile.py /^POSIX_MAGIC = b"ustar\\x0000" # magic posix tar string$/;" v +POSIX_SPAWN_CLOSE Modules/posixmodule.c /^ POSIX_SPAWN_CLOSE,$/;" e enum:posix_spawn_file_actions_identifier file: +POSIX_SPAWN_DUP2 Modules/posixmodule.c /^ POSIX_SPAWN_DUP2$/;" e enum:posix_spawn_file_actions_identifier file: +POSIX_SPAWN_OPEN Modules/posixmodule.c /^ POSIX_SPAWN_OPEN,$/;" e enum:posix_spawn_file_actions_identifier file: +POSONLY_KEYWORDS_KWONLY_METHODDEF Modules/clinic/_testclinic.c.h 1688;" d +POSONLY_KEYWORDS_KWONLY_OPT_METHODDEF Modules/clinic/_testclinic.c.h 2041;" d +POSONLY_KEYWORDS_METHODDEF Modules/clinic/_testclinic.c.h 1576;" d +POSONLY_KEYWORDS_OPT_KWONLY_OPT_METHODDEF Modules/clinic/_testclinic.c.h 2115;" d +POSONLY_KEYWORDS_OPT_METHODDEF Modules/clinic/_testclinic.c.h 1747;" d +POSONLY_KWONLY_METHODDEF Modules/clinic/_testclinic.c.h 1632;" d +POSONLY_KWONLY_OPT_METHODDEF Modules/clinic/_testclinic.c.h 1894;" d +POSONLY_OPT_KEYWORDS_OPT_KWONLY_OPT_METHODDEF Modules/clinic/_testclinic.c.h 2199;" d +POSONLY_OPT_KEYWORDS_OPT_METHODDEF Modules/clinic/_testclinic.c.h 1818;" d +POSONLY_OPT_KWONLY_OPT_METHODDEF Modules/clinic/_testclinic.c.h 1965;" d +POSONLY_VARARG_METHODDEF Modules/clinic/_testclinic.c.h 2334;" d +POST Lib/http/__init__.py /^ POST = 'POST', 'Perform target-specific processing with the request payload.'$/;" v class:HTTPMethod +POST_ARGS Tools/c-analyzer/c_parser/preprocessor/gcc.py /^POST_ARGS = ($/;" v +POTSType Tools/c-analyzer/c_parser/info.py /^class POTSType(TypeDeclaration):$/;" c +POW2 Modules/_ctypes/callproc.c 1138;" d file: +POWER Lib/ast.py /^ POWER = auto() # '**'$/;" v class:_Precedence +POWER Lib/test/test_ast.py /^ POWER = enum.auto() # '**'$/;" v class:AST_Tests.test_precedence_enum._Precedence +POWMOD Modules/_decimal/libmpdec/constants.h 48;" d +PPOINTL Lib/ctypes/wintypes.py /^PPOINTL = ctypes.POINTER(POINTL)$/;" v +PPROC Modules/_ctypes/ctypes.h /^typedef int(* PPROC)(void);$/;" t +PR Lib/test/test_typing.py /^ class PR(Protocol):$/;" c function:ProtocolTests.test_generic_protocols_special_from_protocol +PR Lib/test/test_typing.py /^ class PR(Protocol):$/;" c function:ProtocolTests.test_non_protocol_subclasses +PR Lib/test/test_typing.py /^ class PR(Protocol, Generic[T, S]):$/;" c function:ProtocolTests.test_defining_generic_protocols_old_style +PR Lib/test/test_typing.py /^ class PR(Protocol[T, S]):$/;" c function:ProtocolTests.test_defining_generic_protocols +PRAGMA_HEARTBEAT Lib/telnetlib.py /^PRAGMA_HEARTBEAT = bytes([140]) # TELOPT PRAGMA HEARTBEAT$/;" v +PRAGMA_LOGON Lib/telnetlib.py /^PRAGMA_LOGON = bytes([138]) # TELOPT PRAGMA LOGON$/;" v +PRAGMA_NOCOVER Lib/trace.py /^PRAGMA_NOCOVER = "#pragma NO COVER"$/;" v +PREALLOC_SIZE Objects/stringlib/split.h 17;" d +PRECONDITION_FAILED Lib/http/__init__.py /^ PRECONDITION_FAILED = (412, 'Precondition Failed',$/;" v class:HTTPStatus +PRECONDITION_FAILED Lib/test/test_httplib.py /^ PRECONDITION_FAILED = (412, 'Precondition Failed',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +PRECONDITION_REQUIRED Lib/http/__init__.py /^ PRECONDITION_REQUIRED = (428, 'Precondition Required',$/;" v class:HTTPStatus +PRECONDITION_REQUIRED Lib/test/test_httplib.py /^ PRECONDITION_REQUIRED = (428, 'Precondition Required',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +PREDICT Python/bytecodes.c 46;" d file: +PREDICT Python/ceval_macros.h 179;" d +PREDICT Python/ceval_macros.h 181;" d +PREDICTED Python/ceval_macros.h 192;" d +PREDICT_ID Python/ceval_macros.h 176;" d +PREFETCH Modules/_pickle.c /^ PREFETCH = 8192 * 16,$/;" e enum:__anon447 file: +PREFIX Lib/test/test_getpath.py /^ PREFIX="",$/;" v class:MockGetPathTests +PREFIX Modules/expat/xmlparse.c /^} PREFIX;$/;" t typeref:struct:prefix file: +PREFIX Modules/expat/xmltok.c 1009;" d file: +PREFIX Modules/expat/xmltok.c 303;" d file: +PREFIX Modules/expat/xmltok.c 921;" d file: +PREFIX Modules/expat/xmltok.c 922;" d file: +PREFIX Modules/expat/xmltok_impl.c 125;" d file: +PREFIXES Lib/site.py /^PREFIXES = [sys.prefix, sys.exec_prefix]$/;" v +PRELOAD Lib/test/_test_multiprocessing.py /^PRELOAD = ['__main__', 'test.test_multiprocessing_forkserver']$/;" v +PREPROC_DIRECTIVE_RE Tools/c-analyzer/c_parser/preprocessor/gcc.py /^PREPROC_DIRECTIVE_RE = re.compile(r'^\\s*#\\s*(\\w+)\\b.*')$/;" v +PRESETS PC/layout/support/options.py /^PRESETS = {$/;" v +PREV_MASK_COLLECTING Modules/gcmodule.c 58;" d file: +PRE_CONFIG_COMPAT Lib/test/test_embed.py /^ PRE_CONFIG_COMPAT = {$/;" v class:InitConfigTests +PRE_CONFIG_ISOLATED Lib/test/test_embed.py /^ PRE_CONFIG_ISOLATED = dict(PRE_CONFIG_COMPAT,$/;" v class:InitConfigTests +PRE_CONFIG_PYTHON Lib/test/test_embed.py /^ PRE_CONFIG_PYTHON = dict(PRE_CONFIG_COMPAT,$/;" v class:InitConfigTests +PRE_DISPATCH_GOTO Python/ceval_macros.h 84;" d +PRE_DISPATCH_GOTO Python/ceval_macros.h 87;" d +PRINTABLE_MASK Objects/unicodectype.c 21;" d file: +PRINTABLE_MASK Tools/unicode/makeunicodedata.py /^PRINTABLE_MASK = 0x400$/;" v +PRINT_STAT Python/specialize.c 119;" d file: +PRINT_STAT Python/specialize.c 159;" d file: +PRIVATE_MEM Include/internal/pycore_dtoa.h 39;" d +PRI_mpd_ssize_t Modules/_decimal/libmpdec/mpdecimal.h 160;" d +PRI_mpd_ssize_t Modules/_decimal/libmpdec/mpdecimal.h 205;" d +PRI_mpd_uint_t Modules/_decimal/libmpdec/mpdecimal.h 159;" d +PRI_mpd_uint_t Modules/_decimal/libmpdec/mpdecimal.h 204;" d +PROBE Modules/posixmodule.c 16589;" d file: +PROBE_STEP Modules/expat/xmlparse.c 231;" d file: +PROCESSING Lib/http/__init__.py /^ PROCESSING = 102, 'Processing'$/;" v class:HTTPStatus +PROCESSING Lib/test/test_httplib.py /^ PROCESSING = 102, 'Processing'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +PROCESSING_INSTRUCTION Lib/xml/dom/pulldom.py /^PROCESSING_INSTRUCTION = "PROCESSING_INSTRUCTION"$/;" v +PROCESSING_INSTRUCTION_NODE Lib/xml/dom/__init__.py /^ PROCESSING_INSTRUCTION_NODE = 7$/;" v class:Node +PROCESS_SYSTEM_DPI_AWARE Lib/idlelib/pyshell.py /^ PROCESS_SYSTEM_DPI_AWARE = 1 # Int required.$/;" v +PROFILES Tools/wasm/wasm_build.py /^PROFILES = {p.name: p for p in _profiles}$/;" v +PROGNAME PC/python_uwp.cpp /^const wchar_t *PROGNAME = L"python.exe";$/;" v +PROGNAME PC/python_uwp.cpp /^const wchar_t *PROGNAME = L"python_d.exe";$/;" v +PROGNAME PC/python_uwp.cpp /^const wchar_t *PROGNAME = L"pythonw.exe";$/;" v +PROGNAME PC/python_uwp.cpp /^const wchar_t *PROGNAME = L"pythonw_d.exe";$/;" v +PROGRAM Programs/_testembed.c 27;" d file: +PROGRAM_BLOCKED Lib/test/test_asyncio/test_subprocess.py /^PROGRAM_BLOCKED = [sys.executable, '-c', 'import time; time.sleep(3600)']$/;" v +PROGRAM_CAT Lib/test/test_asyncio/test_subprocess.py /^PROGRAM_CAT = [$/;" v +PROGRAM_DIR Programs/freeze_test_frozenmain.py /^PROGRAM_DIR = os.path.dirname(__file__)$/;" v +PROGRAM_NAME Programs/_testembed.c 30;" d file: +PROGRESS_MIN_TIME Lib/test/libregrtest/runtest.py /^PROGRESS_MIN_TIME = 30.0 # seconds$/;" v +PROGRESS_UPDATE Lib/test/libregrtest/runtest_mp.py /^PROGRESS_UPDATE = 30.0 # seconds$/;" v +PROJECTING Lib/tkinter/constants.py /^PROJECTING='projecting'$/;" v +PROLOG_HANDLER Modules/expat/xmlrole.c /^typedef int PTRCALL PROLOG_HANDLER(PROLOG_STATE *state, int tok,$/;" t file: +PROLOG_STATE Modules/expat/xmlrole.h /^} PROLOG_STATE;$/;" t typeref:struct:prolog_state +PROMPT Lib/cmd.py /^PROMPT = '(Cmd) '$/;" v +PROMPT Lib/venv/scripts/nt/activate.bat /^if defined _OLD_VIRTUAL_PROMPT set PROMPT=%_OLD_VIRTUAL_PROMPT%$/;" v +PROMPT Lib/venv/scripts/nt/activate.bat /^if not defined PROMPT set PROMPT=$P$G$/;" v +PROMPT Lib/venv/scripts/nt/activate.bat /^set PROMPT=__VENV_PROMPT__%PROMPT%$/;" v +PROPERTY Python/specialize.c /^ PROPERTY, \/* Is a property *\/$/;" e enum:__anon686 file: +PROPS_DATA PC/layout/support/props.py /^PROPS_DATA = {$/;" v +PROTO Lib/pickle.py /^PROTO = b'\\x80' # identify pickle protocol$/;" v +PROTO Modules/_pickle.c /^ PROTO = '\\x80',$/;" e enum:opcode file: +PROTOCOLS Lib/test/test_ssl.py /^PROTOCOLS = sorted(ssl._PROTOCOL_NAMES)$/;" v +PROTOCOL_TO_TLS_VERSION Lib/test/test_ssl.py /^PROTOCOL_TO_TLS_VERSION = {}$/;" v +PROTOCOL_VERSION Lib/ssl.py /^ PROTOCOL_VERSION = 70$/;" v class:_TLSAlertType +PROTOCOL_VERSION Lib/test/test_ssl.py /^ PROTOCOL_VERSION = 70$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +PROXY_AUTHENTICATION_REQUIRED Lib/http/__init__.py /^ PROXY_AUTHENTICATION_REQUIRED = (407,$/;" v class:HTTPStatus +PROXY_AUTHENTICATION_REQUIRED Lib/test/test_httplib.py /^ PROXY_AUTHENTICATION_REQUIRED = (407,$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +PR_AND Python/ast_unparse.c /^ PR_AND, \/* 'and' *\/$/;" e enum:__anon687 file: +PR_ARITH Python/ast_unparse.c /^ PR_ARITH, \/* '+', '-' *\/$/;" e enum:__anon687 file: +PR_ATOM Python/ast_unparse.c /^ PR_ATOM,$/;" e enum:__anon687 file: +PR_AWAIT Python/ast_unparse.c /^ PR_AWAIT, \/* 'await' *\/$/;" e enum:__anon687 file: +PR_BAND Python/ast_unparse.c /^ PR_BAND, \/* '&' *\/$/;" e enum:__anon687 file: +PR_BOR Python/ast_unparse.c /^ PR_BOR = PR_EXPR, \/* '|' *\/$/;" e enum:__anon687 file: +PR_BXOR Python/ast_unparse.c /^ PR_BXOR, \/* '^' *\/$/;" e enum:__anon687 file: +PR_CMP Python/ast_unparse.c /^ PR_CMP, \/* '<', '>', '==', '>=', '<=', '!=',$/;" e enum:__anon687 file: +PR_EXPR Python/ast_unparse.c /^ PR_EXPR,$/;" e enum:__anon687 file: +PR_FACTOR Python/ast_unparse.c /^ PR_FACTOR, \/* unary '+', '-', '~' *\/$/;" e enum:__anon687 file: +PR_NOT Python/ast_unparse.c /^ PR_NOT, \/* 'not' *\/$/;" e enum:__anon687 file: +PR_OR Python/ast_unparse.c /^ PR_OR, \/* 'or' *\/$/;" e enum:__anon687 file: +PR_POWER Python/ast_unparse.c /^ PR_POWER, \/* '**' *\/$/;" e enum:__anon687 file: +PR_SHIFT Python/ast_unparse.c /^ PR_SHIFT, \/* '<<', '>>' *\/$/;" e enum:__anon687 file: +PR_TERM Python/ast_unparse.c /^ PR_TERM, \/* '*', '@', '\/', '%', '\/\/' *\/$/;" e enum:__anon687 file: +PR_TEST Python/ast_unparse.c /^ PR_TEST, \/* 'if'-'else', 'lambda' *\/$/;" e enum:__anon687 file: +PR_TUPLE Python/ast_unparse.c /^ PR_TUPLE,$/;" e enum:__anon687 file: +PS1 Lib/lib2to3/refactor.py /^ PS1 = ">>> "$/;" v class:RefactoringTool +PS1 Lib/test/test_sqlite3/test_cli.py /^ PS1 = "sqlite> "$/;" v class:InteractiveSession +PS2 Lib/lib2to3/refactor.py /^ PS2 = "... "$/;" v class:RefactoringTool +PS2 Lib/test/test_sqlite3/test_cli.py /^ PS2 = "... "$/;" v class:InteractiveSession +PSHORT Lib/ctypes/wintypes.py /^PSHORT = ctypes.POINTER(SHORT)$/;" v +PSMALL_RECT Lib/ctypes/wintypes.py /^PSMALL_RECT = ctypes.POINTER(SMALL_RECT)$/;" v +PSYCOPG_MICROPROTOCOLS_H Modules/_sqlite/microprotocols.h 27;" d +PSub Lib/test/test_typing.py /^ class PSub(P1[str], Protocol):$/;" c function:ProtocolTests.test_defining_generic_protocols_old_style +PT Include/internal/pycore_obmalloc_init.h 17;" d +PTA Include/internal/pycore_obmalloc_init.h 15;" d +PTHREAD_KEYS_MAX Include/cpython/pthread_stubs.h 79;" d +PTModule Lib/test/test_unittest/testmock/testpatch.py /^PTModule = sys.modules[__name__]$/;" v +PTON_MAX Modules/getaddrinfo.c 118;" d file: +PTON_MAX Modules/getaddrinfo.c 120;" d file: +PTRCALL Modules/expat/internal.h 85;" d +PTRFASTCALL Modules/expat/internal.h 67;" d +PTRFASTCALL Modules/expat/internal.h 89;" d +PTR_QUALIFIER Tools/c-analyzer/c_parser/parser/_regexes.py /^PTR_QUALIFIER = rf'(?: [*] (?: \\s* {TYPE_QUALIFIER} )? )'$/;" v +PTR_REGEX Lib/test/test_capi/test_mem.py /^ PTR_REGEX = r'(?:0x)?[0-9a-fA-F]+'$/;" v class:PyMemDebugTests +PT_8 Include/internal/pycore_obmalloc_init.h 19;" d +PUA_1 Tools/unicode/makeunicodedata.py /^PUA_1 = range(0xE000, 0xF900)$/;" v +PUA_15 Tools/unicode/makeunicodedata.py /^PUA_15 = range(0xF0000, 0xFFFFE)$/;" v +PUA_16 Tools/unicode/makeunicodedata.py /^PUA_16 = range(0x100000, 0x10FFFE)$/;" v +PUBLIC Modules/_decimal/libmpdec/vcdiv64.asm /^PUBLIC _mpd_div_words$/;" l +PUBLIC_SEARCH Modules/_blake2/blake2b2s.py /^PUBLIC_SEARCH = re.compile(r'\\ int (blake2[bs]p?[a-z_]*)\\(')$/;" v +PULARGE_INTEGER Lib/ctypes/wintypes.py /^PULARGE_INTEGER = ctypes.POINTER(ULARGE_INTEGER)$/;" v +PULONG Lib/ctypes/wintypes.py /^PULONG = ctypes.POINTER(ULONG)$/;" v +PUNCTUATION_KEYS Lib/idlelib/config_key.py /^PUNCTUATION_KEYS = tuple('~!@#%^&*()_-+={}[]|;:,.<>\/?')$/;" v +PURPLE Lib/test/test_enum.py /^ PURPLE = RED|BLUE$/;" v class:OldTestFlag.Color +PURPLE Lib/test/test_enum.py /^ PURPLE = RED|BLUE$/;" v class:OldTestIntFlag.Color +PUSH Python/ceval_macros.h 215;" d +PUSH Python/ceval_macros.h 231;" d +PUSHORT Lib/ctypes/wintypes.py /^PUSHORT = ctypes.POINTER(USHORT)$/;" v +PUSH_EXC_INFO Include/opcode.h 29;" d +PUSH_NULL Include/opcode.h 13;" d +PUT Lib/http/__init__.py /^ PUT = 'PUT', 'Replace the target with the request payload.'$/;" v class:HTTPMethod +PUT Lib/pickle.py /^PUT = b'p' # store stack top in memo; index is string arg$/;" v +PUT Modules/_pickle.c /^ PUT = 'p',$/;" e enum:opcode file: +PUTS Modules/faulthandler.c 29;" d file: +PUTS Python/pylifecycle.c 56;" d file: +PUTS Python/traceback.c 28;" d file: +PUTS Python/tracemalloc.c 1249;" d file: +PUTS Python/tracemalloc.c 1286;" d file: +PWCHAR Lib/ctypes/wintypes.py /^PWCHAR = ctypes.POINTER(WCHAR)$/;" v +PWD_GETPWALL_METHODDEF Modules/clinic/pwdmodule.c.h 66;" d +PWD_GETPWALL_METHODDEF Modules/clinic/pwdmodule.c.h 81;" d +PWD_GETPWNAM_METHODDEF Modules/clinic/pwdmodule.c.h 30;" d +PWD_GETPWUID_METHODDEF Modules/clinic/pwdmodule.c.h 19;" d +PY2_TEST_MODULE Lib/test/test_lib2to3/test_main.py /^PY2_TEST_MODULE = os.path.join(TEST_DATA_DIR, "py2_test_grammar.py")$/;" v +PYBA_ACQUIRE_PERCENTAGE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const DWORD PYBA_ACQUIRE_PERCENTAGE = 30;$/;" v file: +PYBA_STATE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^enum PYBA_STATE {$/;" g file: +PYBA_STATE_APPLIED Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_APPLIED,$/;" e enum:PYBA_STATE file: +PYBA_STATE_APPLYING Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_APPLYING,$/;" e enum:PYBA_STATE file: +PYBA_STATE_CACHED Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_CACHED,$/;" e enum:PYBA_STATE file: +PYBA_STATE_CACHING Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_CACHING,$/;" e enum:PYBA_STATE file: +PYBA_STATE_DETECTED Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_DETECTED,$/;" e enum:PYBA_STATE file: +PYBA_STATE_DETECTING Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_DETECTING,$/;" e enum:PYBA_STATE file: +PYBA_STATE_EXECUTED Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_EXECUTED,$/;" e enum:PYBA_STATE file: +PYBA_STATE_EXECUTING Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_EXECUTING,$/;" e enum:PYBA_STATE file: +PYBA_STATE_FAILED Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_FAILED,$/;" e enum:PYBA_STATE file: +PYBA_STATE_HELP Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_HELP,$/;" e enum:PYBA_STATE file: +PYBA_STATE_INITIALIZED Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_INITIALIZED,$/;" e enum:PYBA_STATE file: +PYBA_STATE_INITIALIZING Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_INITIALIZING,$/;" e enum:PYBA_STATE file: +PYBA_STATE_PLANNED Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_PLANNED,$/;" e enum:PYBA_STATE file: +PYBA_STATE_PLANNING Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE_PLANNING,$/;" e enum:PYBA_STATE file: +PYBA_VARIABLE_BUNDLE_FILE_VERSION Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const LPCWSTR PYBA_VARIABLE_BUNDLE_FILE_VERSION = L"WixBundleFileVersion";$/;" v file: +PYBA_WINDOW_CLASS Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const LPCWSTR PYBA_WINDOW_CLASS = L"PythonBA";$/;" v file: +PYCTYPE_H Include/cpython/pyctype.h 3;" d +PYC_FILES PC/layout/main.py /^PYC_FILES = FileSuffixSet(".pyc")$/;" v +PYC_MAGIC PC/launcher.c /^} PYC_MAGIC;$/;" t typeref:struct:__anon290 file: +PYDBGMEM_ALLOC Include/internal/pycore_pymem_init.h 47;" d +PYDBGMEM_ALLOC Objects/obmalloc.c 112;" d file: +PYDBGOBJ_ALLOC Include/internal/pycore_pymem_init.h 49;" d +PYDBGOBJ_ALLOC Objects/obmalloc.c 114;" d file: +PYDBGRAW_ALLOC Include/internal/pycore_pymem_init.h 45;" d +PYDBGRAW_ALLOC Objects/obmalloc.c 110;" d file: +PYDEBUGEXT Lib/test/test_getpath.py /^ PYDEBUGEXT="",$/;" v class:MockGetPathTests +PYDEBUGEXT Modules/getpath.c 35;" d file: +PYD_DEBUG_SUFFIX Python/dynload_win.c 18;" d file: +PYD_DEBUG_SUFFIX Python/dynload_win.c 20;" d file: +PYD_PLATFORM_TAG PC/pyconfig.h 152;" d +PYD_PLATFORM_TAG PC/pyconfig.h 156;" d +PYD_PLATFORM_TAG PC/pyconfig.h 214;" d +PYD_PLATFORM_TAG PC/pyconfig.h 217;" d +PYD_TAGGED_SUFFIX Python/dynload_win.c 24;" d file: +PYD_TAGGED_SUFFIX Python/dynload_win.c 26;" d file: +PYD_UNTAGGED_SUFFIX Python/dynload_win.c 29;" d file: +PYEXPATNS_H Modules/expat/pyexpatns.h 39;" d +PYEXPAT_ERRORSTRING_METHODDEF Modules/clinic/pyexpat.c.h 476;" d +PYEXPAT_PARSERCREATE_METHODDEF Modules/clinic/pyexpat.c.h 367;" d +PYEXPAT_XMLPARSER_EXTERNALENTITYPARSERCREATE_METHODDEF Modules/clinic/pyexpat.c.h 193;" d +PYEXPAT_XMLPARSER_GETBASE_METHODDEF Modules/clinic/pyexpat.c.h 153;" d +PYEXPAT_XMLPARSER_GETINPUTCONTEXT_METHODDEF Modules/clinic/pyexpat.c.h 174;" d +PYEXPAT_XMLPARSER_PARSEFILE_METHODDEF Modules/clinic/pyexpat.c.h 72;" d +PYEXPAT_XMLPARSER_PARSE_METHODDEF Modules/clinic/pyexpat.c.h 19;" d +PYEXPAT_XMLPARSER_SETBASE_METHODDEF Modules/clinic/pyexpat.c.h 116;" d +PYEXPAT_XMLPARSER_SETPARAMENTITYPARSING_METHODDEF Modules/clinic/pyexpat.c.h 279;" d +PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF Modules/clinic/pyexpat.c.h 313;" d +PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF Modules/clinic/pyexpat.c.h 499;" d +PYFUNCTYPE Lib/ctypes/__init__.py /^def PYFUNCTYPE(restype, *argtypes):$/;" f +PYGEN_ERROR Include/object.h /^ PYGEN_ERROR = -1,$/;" e enum:__anon254 +PYGEN_NEXT Include/object.h /^ PYGEN_NEXT = 1,$/;" e enum:__anon254 +PYGEN_RETURN Include/object.h /^ PYGEN_RETURN = 0,$/;" e enum:__anon254 +PYHAVE_ITIMER_ERROR Modules/signalmodule.c 111;" d file: +PYLONG_BITS_IN_DIGIT Include/pyport.h 112;" d +PYLONG_FROM_UINT Objects/longobject.c 333;" d file: +PYMACCONFIG_H Include/pymacconfig.h 2;" d +PYMALLOC_ALLOC Objects/obmalloc.c 88;" d file: +PYMEM_ALLOC Include/internal/pycore_pymem_init.h 33;" d +PYMEM_ALLOC Objects/obmalloc.c 94;" d file: +PYMEM_ALLOCATOR_DEBUG Include/cpython/pymem.h /^ PYMEM_ALLOCATOR_DEBUG = 2,$/;" e enum:__anon248 +PYMEM_ALLOCATOR_DEBUG Lib/test/test_embed.py /^PYMEM_ALLOCATOR_DEBUG = 2$/;" v +PYMEM_ALLOCATOR_DEFAULT Include/cpython/pymem.h /^ PYMEM_ALLOCATOR_DEFAULT = 1,$/;" e enum:__anon248 +PYMEM_ALLOCATOR_MALLOC Include/cpython/pymem.h /^ PYMEM_ALLOCATOR_MALLOC = 3,$/;" e enum:__anon248 +PYMEM_ALLOCATOR_MALLOC Lib/test/test_embed.py /^PYMEM_ALLOCATOR_MALLOC = 3$/;" v +PYMEM_ALLOCATOR_MALLOC_DEBUG Include/cpython/pymem.h /^ PYMEM_ALLOCATOR_MALLOC_DEBUG = 4,$/;" e enum:__anon248 +PYMEM_ALLOCATOR_NOT_SET Include/cpython/pymem.h /^ PYMEM_ALLOCATOR_NOT_SET = 0,$/;" e enum:__anon248 +PYMEM_ALLOCATOR_NOT_SET Lib/test/test_embed.py /^PYMEM_ALLOCATOR_NOT_SET = 0$/;" v +PYMEM_ALLOCATOR_PYMALLOC Include/cpython/pymem.h /^ PYMEM_ALLOCATOR_PYMALLOC = 5,$/;" e enum:__anon248 +PYMEM_ALLOCATOR_PYMALLOC_DEBUG Include/cpython/pymem.h /^ PYMEM_ALLOCATOR_PYMALLOC_DEBUG = 6,$/;" e enum:__anon248 +PYMEM_CLEANBYTE Include/internal/pycore_pymem.h 54;" d +PYMEM_DEADBYTE Include/internal/pycore_pymem.h 55;" d +PYMEM_DEBUG_EXTRA_BYTES Objects/obmalloc.c 2004;" d file: +PYMEM_DEBUG_EXTRA_BYTES Objects/obmalloc.c 2006;" d file: +PYMEM_DOMAIN_MEM Include/cpython/pymem.h /^ PYMEM_DOMAIN_MEM,$/;" e enum:__anon247 +PYMEM_DOMAIN_OBJ Include/cpython/pymem.h /^ PYMEM_DOMAIN_OBJ$/;" e enum:__anon247 +PYMEM_DOMAIN_RAW Include/cpython/pymem.h /^ PYMEM_DOMAIN_RAW,$/;" e enum:__anon247 +PYMEM_FORBIDDENBYTE Include/internal/pycore_pymem.h 56;" d +PYNUM_TO_HANDLE Modules/_winapi.c 53;" d file: +PYNUM_TO_HANDLE Modules/_winapi.c 59;" d file: +PYOBJ_ALLOC Include/internal/pycore_pymem_init.h 28;" d +PYOBJ_ALLOC Include/internal/pycore_pymem_init.h 30;" d +PYOBJ_ALLOC Objects/obmalloc.c 89;" d file: +PYOBJ_ALLOC Objects/obmalloc.c 91;" d file: +PYOS_STACK_MARGIN Include/pythonrun.h 27;" d +PYPTHREAD_SIGMASK Modules/signalmodule.c 45;" d file: +PYRAW_ALLOC Include/internal/pycore_pymem_init.h 21;" d +PYRAW_ALLOC Objects/obmalloc.c 77;" d file: +PYSQLITE_ADAPT_METHODDEF Modules/_sqlite/clinic/module.c.h 181;" d +PYSQLITE_BLOB_H Modules/_sqlite/blob.h 2;" d +PYSQLITE_COMPLETE_STATEMENT_METHODDEF Modules/_sqlite/clinic/module.c.h 17;" d +PYSQLITE_CONNECTION_BACKUP_METHODDEF Modules/_sqlite/clinic/connection.c.h 1074;" d +PYSQLITE_CONNECTION_CLOSE_METHODDEF Modules/_sqlite/clinic/connection.c.h 343;" d +PYSQLITE_CONNECTION_COMMIT_METHODDEF Modules/_sqlite/clinic/connection.c.h 363;" d +PYSQLITE_CONNECTION_CREATE_AGGREGATE_METHODDEF Modules/_sqlite/clinic/connection.c.h 565;" d +PYSQLITE_CONNECTION_CREATE_COLLATION_METHODDEF Modules/_sqlite/clinic/connection.c.h 1188;" d +PYSQLITE_CONNECTION_CREATE_FUNCTION_METHODDEF Modules/_sqlite/clinic/connection.c.h 401;" d +PYSQLITE_CONNECTION_CURSOR_METHODDEF Modules/_sqlite/clinic/connection.c.h 155;" d +PYSQLITE_CONNECTION_ENABLE_LOAD_EXTENSION_METHODDEF Modules/_sqlite/clinic/connection.c.h 1654;" d +PYSQLITE_CONNECTION_ENABLE_LOAD_EXTENSION_METHODDEF Modules/_sqlite/clinic/connection.c.h 820;" d +PYSQLITE_CONNECTION_ENTER_METHODDEF Modules/_sqlite/clinic/connection.c.h 1446;" d +PYSQLITE_CONNECTION_EXECUTEMANY_METHODDEF Modules/_sqlite/clinic/connection.c.h 990;" d +PYSQLITE_CONNECTION_EXECUTESCRIPT_METHODDEF Modules/_sqlite/clinic/connection.c.h 1028;" d +PYSQLITE_CONNECTION_EXECUTE_METHODDEF Modules/_sqlite/clinic/connection.c.h 948;" d +PYSQLITE_CONNECTION_EXIT_METHODDEF Modules/_sqlite/clinic/connection.c.h 1466;" d +PYSQLITE_CONNECTION_H Modules/_sqlite/connection.h 25;" d +PYSQLITE_CONNECTION_INTERRUPT_METHODDEF Modules/_sqlite/clinic/connection.c.h 1037;" d +PYSQLITE_CONNECTION_ITERDUMP_METHODDEF Modules/_sqlite/clinic/connection.c.h 1055;" d +PYSQLITE_CONNECTION_LOAD_EXTENSION_METHODDEF Modules/_sqlite/clinic/connection.c.h 1658;" d +PYSQLITE_CONNECTION_LOAD_EXTENSION_METHODDEF Modules/_sqlite/clinic/connection.c.h 853;" d +PYSQLITE_CONNECTION_ROLLBACK_METHODDEF Modules/_sqlite/clinic/connection.c.h 383;" d +PYSQLITE_CONNECTION_SET_AUTHORIZER_METHODDEF Modules/_sqlite/clinic/connection.c.h 642;" d +PYSQLITE_CONNECTION_SET_PROGRESS_HANDLER_METHODDEF Modules/_sqlite/clinic/connection.c.h 699;" d +PYSQLITE_CONNECTION_SET_TRACE_CALLBACK_METHODDEF Modules/_sqlite/clinic/connection.c.h 761;" d +PYSQLITE_CONNECT_METHODDEF Modules/_sqlite/module.c 58;" d file: +PYSQLITE_CURSOR_CLOSE_METHODDEF Modules/_sqlite/clinic/cursor.c.h 311;" d +PYSQLITE_CURSOR_EXECUTEMANY_METHODDEF Modules/_sqlite/clinic/cursor.c.h 89;" d +PYSQLITE_CURSOR_EXECUTESCRIPT_METHODDEF Modules/_sqlite/clinic/cursor.c.h 127;" d +PYSQLITE_CURSOR_EXECUTE_METHODDEF Modules/_sqlite/clinic/cursor.c.h 47;" d +PYSQLITE_CURSOR_FETCHALL_METHODDEF Modules/_sqlite/clinic/cursor.c.h 249;" d +PYSQLITE_CURSOR_FETCHMANY_METHODDEF Modules/_sqlite/clinic/cursor.c.h 186;" d +PYSQLITE_CURSOR_FETCHONE_METHODDEF Modules/_sqlite/clinic/cursor.c.h 165;" d +PYSQLITE_CURSOR_H Modules/_sqlite/cursor.h 25;" d +PYSQLITE_CURSOR_SETINPUTSIZES_METHODDEF Modules/_sqlite/clinic/cursor.c.h 267;" d +PYSQLITE_CURSOR_SETOUTPUTSIZE_METHODDEF Modules/_sqlite/clinic/cursor.c.h 276;" d +PYSQLITE_ENABLE_CALLBACK_TRACE_METHODDEF Modules/_sqlite/clinic/module.c.h 153;" d +PYSQLITE_MODULE_H Modules/_sqlite/module.h 25;" d +PYSQLITE_PREPARE_PROTOCOL_H Modules/_sqlite/prepare_protocol.h 25;" d +PYSQLITE_REGISTER_ADAPTER_METHODDEF Modules/_sqlite/clinic/module.c.h 84;" d +PYSQLITE_REGISTER_CONVERTER_METHODDEF Modules/_sqlite/clinic/module.c.h 115;" d +PYSQLITE_ROW_H Modules/_sqlite/row.h 25;" d +PYSQLITE_ROW_KEYS_METHODDEF Modules/_sqlite/clinic/row.c.h 52;" d +PYSQLITE_STATEMENT_H Modules/_sqlite/statement.h 25;" d +PYSQLITE_UTIL_H Modules/_sqlite/util.h 25;" d +PYSQLITE_VERSION Modules/_sqlite/module.h 31;" d +PYTHON Doc/Makefile /^PYTHON = python3$/;" m +PYTHON Doc/make.bat /^if not defined PYTHON set PYTHON=py$/;" v +PYTHON PCbuild/find_python.bat /^@for %%p in (3.11 3.10 3.9) do @py -%%p -EV >nul 2>&1 && (set PYTHON=py -%%p) && (set _Py_Python_Source=found %%p with py.exe) && goto :found$/;" v +PYTHON PCbuild/find_python.bat /^@if NOT "%HOST_PYTHON%"=="" @%HOST_PYTHON% -Ec "import sys; assert sys.version_info[:2] >= (3, 9)" >nul 2>nul && (set PYTHON="%HOST_PYTHON%") && (set _Py_Python_Source=found as HOST_PYTHON) && goto :found$/;" v +PYTHON PCbuild/find_python.bat /^@if NOT "%VIRTUAL_ENV%"=="" (set PYTHON="%VIRTUAL_ENV%\\Scripts\\python.exe") & (set _Py_Python_Source=found in virtual env) & goto :found$/;" v +PYTHON PCbuild/find_python.bat /^@if exist "%*" (set PYTHON="%*") & (set _Py_Python_Source=from environment) & goto :found$/;" v +PYTHON PCbuild/find_python.bat /^@if exist "%_Py_EXTERNALS_DIR%\\pythonx86\\tools\\python.exe" ("%_Py_EXTERNALS_DIR%\\pythonx86\\tools\\python.exe" -Ec "import sys; assert sys.version_info[:2] >= (3, 8)" >nul 2>nul) && (set PYTHON="%_Py_EXTERNALS_DIR%\\pythonx86\\tools\\python.exe") && (set _Py_Python_Source=found in externals directory) && goto :found || rmdir \/Q \/S "%_Py_EXTERNALS_DIR%\\pythonx86"$/;" v +PYTHON PCbuild/find_python.bat /^@if exist "%~1" (set PYTHON="%~1") & (set _Py_Python_Source=from environment) & goto :found$/;" v +PYTHON PCbuild/find_python.bat /^@if not errorlevel 1 (set PYTHON="%_Py_EXTERNALS_DIR%\\pythonx86\\tools\\python.exe") & (set _Py_Python_Source=found on nuget.org) & goto :found$/;" v +PYTHON PCbuild/find_python.bat /^@set PYTHON=$/;" v +PYTHON PCbuild/get_externals.bat /^if "%~1"=="--python" (set PYTHON=%2) & shift & shift & goto CheckOpts$/;" v +PYTHON Tools/freeze/test/Makefile /^PYTHON=python$/;" m +PYTHON Tools/msi/get_externals.bat /^if "%~1"=="--python" (set PYTHON=%2) & shift & shift & goto CheckOpts$/;" v +PYTHON Tools/peg_generator/Makefile /^ PYTHON ?= ..\/..\/python$/;" m +PYTHON Tools/peg_generator/Makefile /^ PYTHON ?= ..\/..\/python.exe$/;" m +PYTHON Tools/unicode/Makefile /^PYTHON = python$/;" m +PYTHON2_EXCEPTIONS Lib/_compat_pickle.py /^PYTHON2_EXCEPTIONS = ($/;" v +PYTHON3_IMPORTERROR_EXCEPTIONS Lib/_compat_pickle.py /^PYTHON3_IMPORTERROR_EXCEPTIONS = ($/;" v +PYTHON3_OSERROR_EXCEPTIONS Lib/_compat_pickle.py /^PYTHON3_OSERROR_EXCEPTIONS = ($/;" v +PYTHONDOCS Lib/pydoc.py /^ PYTHONDOCS = os.environ.get("PYTHONDOCS",$/;" v class:Doc +PYTHONHASHSEED Lib/test/test_gdb.py /^PYTHONHASHSEED = '123'$/;" v +PYTHONHOME Lib/venv/scripts/nt/activate.bat /^if defined _OLD_VIRTUAL_PYTHONHOME set PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%$/;" v +PYTHONHOME Lib/venv/scripts/nt/activate.bat /^set PYTHONHOME=$/;" v +PYTHONHOMEHELP Python/initconfig.c 192;" d file: +PYTHONHOMEHELP Python/initconfig.c 194;" d file: +PYTHONMALLOC Lib/test/test_capi/test_mem.py /^ PYTHONMALLOC = ''$/;" v class:PyMemDefaultTests +PYTHONMALLOC Lib/test/test_capi/test_mem.py /^ PYTHONMALLOC = 'debug'$/;" v class:PyMemDebugTests +PYTHONMALLOC Lib/test/test_capi/test_mem.py /^ PYTHONMALLOC = 'malloc_debug'$/;" v class:PyMemMallocDebugTests +PYTHONMALLOC Lib/test/test_capi/test_mem.py /^ PYTHONMALLOC = 'pymalloc_debug'$/;" v class:PyMemPymallocDebugTests +PYTHONPATH Lib/test/test_getpath.py /^ PYTHONPATH="",$/;" v class:MockGetPathTests +PYTHONPATH Modules/getpath.c 31;" d file: +PYTHONROOT Tools/ssl/multissltests.py /^PYTHONROOT = os.path.abspath(os.path.join(HERE, '..', '..'))$/;" v +PYTHONW_VE_DATA PC/layout/support/appxmanifest.py /^PYTHONW_VE_DATA = dict($/;" v +PYTHON_3 Mac/BuildScript/build-installer.py /^PYTHON_3 = getVersionMajorMinor() >= (3, 0)$/;" v +PYTHON_ABI_STRING Include/modsupport.h 123;" d +PYTHON_ABI_VERSION Include/modsupport.h 122;" d +PYTHON_API_STRING Include/modsupport.h 74;" d +PYTHON_API_VERSION Include/modsupport.h 73;" d +PYTHON_CAT_NAME PC/layout/support/catalog.py /^PYTHON_CAT_NAME = "python.cat"$/;" v +PYTHON_CDF_NAME PC/layout/support/catalog.py /^PYTHON_CDF_NAME = "python.cdf"$/;" v +PYTHON_CHM_NAME PC/layout/support/constants.py /^PYTHON_CHM_NAME = "python{}{}{}{}.chm".format($/;" v +PYTHON_CLASSMETHOD Python/specialize.c /^ PYTHON_CLASSMETHOD, \/* Python classmethod(func) object *\/$/;" e enum:__anon686 file: +PYTHON_COMPANY PC/python_ver_rc.h 7;" d +PYTHON_COPYRIGHT PC/python_ver_rc.h 8;" d +PYTHON_DEBUG_EXT PC/python_ver_rc.h 14;" d +PYTHON_DEBUG_EXT PC/python_ver_rc.h 16;" d +PYTHON_DLL_NAME PC/layout/support/constants.py /^PYTHON_DLL_NAME = "python{}{}.dll".format(VER_MAJOR, VER_MINOR)$/;" v +PYTHON_EXE Tools/buildbot/remotePythonInfo.bat /^set PYTHON_EXE=%prefix%\\python%suffix%.exe$/;" v +PYTHON_EXE Tools/nuget/build.bat /^if "%~1" EQU "--python-exe" (set PYTHON_EXE="\/p:PythonExe=%~2") && shift && shift && goto CheckOpts$/;" v +PYTHON_EXE Tools/nuget/build.bat /^set PYTHON_EXE=$/;" v +PYTHON_EXECUTABLE PC/launcher.c 148;" d file: +PYTHON_EXECUTABLE PC/launcher.c 152;" d file: +PYTHON_EXECUTABLE PC/launcher.c 158;" d file: +PYTHON_EXECUTABLE PC/launcher.c 163;" d file: +PYTHON_INSTANCE Lib/test/test_call.py /^PYTHON_INSTANCE = PythonClass()$/;" v +PYTHON_NUSPEC_NAME PC/layout/support/nuspec.py /^PYTHON_NUSPEC_NAME = "python.nuspec"$/;" v +PYTHON_OPCODE Tools/build/generate_opcode_h.py /^PYTHON_OPCODE = "Lib\/opcode.py"$/;" v +PYTHON_PROPS_NAME PC/layout/support/props.py /^PYTHON_PROPS_NAME = "python.props"$/;" v +PYTHON_PTH_NAME PC/layout/support/constants.py /^PYTHON_PTH_NAME = "python{}{}._pth".format(VER_MAJOR, VER_MINOR)$/;" v +PYTHON_SOURCE Tools/buildbot/remoteDeploy.bat /^if "%PYTHON_SOURCE%"=="" (set PYTHON_SOURCE=%here%..\\..\\)$/;" v +PYTHON_SOURCE Tools/buildbot/test.bat /^if "%PYTHON_SOURCE%"=="" (set PYTHON_SOURCE=%here%..\\..\\)$/;" v +PYTHON_STABLE_DLL_NAME PC/layout/support/constants.py /^PYTHON_STABLE_DLL_NAME = "python{}.dll".format(VER_MAJOR)$/;" v +PYTHON_VERSION PC/python_ver_rc.h 22;" d +PYTHON_VERSION Tools/wasm/wasm_build.py /^PYTHON_VERSION = read_python_version()$/;" v +PYTHON_VE_DATA PC/layout/support/appxmanifest.py /^PYTHON_VE_DATA = dict($/;" v +PYTHON_ZIP_NAME PC/layout/support/constants.py /^PYTHON_ZIP_NAME = "python{}{}.zip".format(VER_MAJOR, VER_MINOR)$/;" v +PYTHREAD_INVALID_THREAD_ID Include/cpython/pythread.h 5;" d +PYTHREAD_NAME Python/thread.c 35;" d file: +PYTHREAD_NAME Python/thread.c 39;" d file: +PYTHREAD_NAME Python/thread.c 41;" d file: +PYTHREAD_NAME Python/thread.c 45;" d file: +PYVERSION64 PC/python_ver_rc.h 34;" d +PYWINVER Lib/test/test_getpath.py /^ PYWINVER=None,$/;" v class:MockGetPathTests +PYWINVER Modules/getpath.c 40;" d file: +PYWINVER Modules/getpath.c 42;" d file: +PY_ABS_LLONG_MIN Objects/longobject.c 1117;" d file: +PY_ABS_LONG_MIN Objects/longobject.c 447;" d file: +PY_ABS_LONG_MIN Python/mystrtoul.c 260;" d file: +PY_ABS_SSIZE_T_MIN Objects/longobject.c 448;" d file: +PY_AUDIT_READ Include/structmember.h 47;" d +PY_BIG_ENDIAN Include/pyport.h 636;" d +PY_BIG_ENDIAN Include/pyport.h 639;" d +PY_BUFFER_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 1210;" d +PY_CALLABLES Lib/test/test_monitoring.py /^PY_CALLABLES = (types.FunctionType, types.MethodType)$/;" v +PY_CODE_LOCATION_INFO_LONG Include/cpython/code.h /^ PY_CODE_LOCATION_INFO_LONG = 14,$/;" e enum:_PyCodeLocationInfoKind +PY_CODE_LOCATION_INFO_NONE Include/cpython/code.h /^ PY_CODE_LOCATION_INFO_NONE = 15$/;" e enum:_PyCodeLocationInfoKind +PY_CODE_LOCATION_INFO_NO_COLUMNS Include/cpython/code.h /^ PY_CODE_LOCATION_INFO_NO_COLUMNS = 13,$/;" e enum:_PyCodeLocationInfoKind +PY_CODE_LOCATION_INFO_ONE_LINE0 Include/cpython/code.h /^ PY_CODE_LOCATION_INFO_ONE_LINE0 = 10,$/;" e enum:_PyCodeLocationInfoKind +PY_CODE_LOCATION_INFO_ONE_LINE1 Include/cpython/code.h /^ PY_CODE_LOCATION_INFO_ONE_LINE1 = 11,$/;" e enum:_PyCodeLocationInfoKind +PY_CODE_LOCATION_INFO_ONE_LINE2 Include/cpython/code.h /^ PY_CODE_LOCATION_INFO_ONE_LINE2 = 12,$/;" e enum:_PyCodeLocationInfoKind +PY_CODE_LOCATION_INFO_SHORT0 Include/cpython/code.h /^ PY_CODE_LOCATION_INFO_SHORT0 = 0,$/;" e enum:_PyCodeLocationInfoKind +PY_COMPLEX_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 1115;" d +PY_CTF_ALNUM Include/cpython/pyctype.h 12;" d +PY_CTF_ALPHA Include/cpython/pyctype.h 10;" d +PY_CTF_DIGIT Include/cpython/pyctype.h 11;" d +PY_CTF_LOWER Include/cpython/pyctype.h 8;" d +PY_CTF_SPACE Include/cpython/pyctype.h 13;" d +PY_CTF_UPPER Include/cpython/pyctype.h 9;" d +PY_CTF_XDIGIT Include/cpython/pyctype.h 14;" d +PY_DEF_EVENT Include/cpython/code.h 280;" d +PY_DEF_EVENT Include/cpython/code.h 282;" d +PY_DEF_EVENT Include/cpython/dictobject.h 102;" d +PY_DEF_EVENT Include/cpython/dictobject.h 104;" d +PY_DEF_EVENT Include/cpython/funcobject.h 143;" d +PY_DEF_EVENT Include/cpython/funcobject.h 145;" d +PY_DWORD_MAX Include/pyport.h 650;" d +PY_EMSCRIPTEN_SIGNAL_INTERVAL Python/emscripten_signal.c 42;" d file: +PY_EVAL_C_STACK_UNITS Python/ceval.c 643;" d file: +PY_EVP_MD Modules/_hashopenssl.c 53;" d file: +PY_EVP_MD Modules/_hashopenssl.c 58;" d file: +PY_EVP_MD_fetch Modules/_hashopenssl.c 54;" d file: +PY_EVP_MD_fetch Modules/_hashopenssl.c 59;" d file: +PY_EVP_MD_free Modules/_hashopenssl.c 56;" d file: +PY_EVP_MD_free Modules/_hashopenssl.c 61;" d file: +PY_EVP_MD_up_ref Modules/_hashopenssl.c 55;" d file: +PY_EVP_MD_up_ref Modules/_hashopenssl.c 60;" d file: +PY_EXE Lib/test/test_launcher.py /^ PY_EXE = "py_d.exe"$/;" v +PY_EXE Lib/test/test_launcher.py /^PY_EXE = "py.exe"$/;" v +PY_FILES PC/layout/main.py /^PY_FILES = FileSuffixSet(".py")$/;" v +PY_FOREACH_CODE_EVENT Include/cpython/code.h /^ PY_FOREACH_CODE_EVENT(PY_DEF_EVENT)$/;" e enum:__anon230 +PY_FOREACH_CODE_EVENT Include/cpython/code.h 275;" d +PY_FOREACH_DICT_EVENT Include/cpython/dictobject.h /^ PY_FOREACH_DICT_EVENT(PY_DEF_EVENT)$/;" e enum:__anon197 +PY_FOREACH_DICT_EVENT Include/cpython/dictobject.h 93;" d +PY_FOREACH_FUNC_EVENT Include/cpython/funcobject.h /^ PY_FOREACH_FUNC_EVENT(PY_DEF_EVENT)$/;" e enum:__anon222 +PY_FOREACH_FUNC_EVENT Include/cpython/funcobject.h 135;" d +PY_FORMAT_SIZE_T Include/pyport.h 162;" d +PY_GETENTROPY Python/bootstrap_hash.c 184;" d file: +PY_GETRANDOM Python/bootstrap_hash.c 72;" d file: +PY_HASH_ENTRY Modules/_hashopenssl.c 108;" d file: +PY_HAVE_INVALIDATE_ICACHE Python/perf_trampoline.c 148;" d file: +PY_HAVE_THREAD_NATIVE_ID Include/pythread.h 26;" d +PY_INT32_T Include/pyport.h 104;" d +PY_INT32_T PC/pyconfig.h 393;" d +PY_INT64_T Include/pyport.h 105;" d +PY_INT64_T PC/pyconfig.h 394;" d +PY_INVALID_STACK_EFFECT Include/cpython/compile.h 67;" d +PY_ITERSEARCH_CONTAINS Include/cpython/abstract.h 170;" d +PY_ITERSEARCH_COUNT Include/cpython/abstract.h 168;" d +PY_ITERSEARCH_INDEX Include/cpython/abstract.h 169;" d +PY_LITTLE_ENDIAN Include/pyport.h 637;" d +PY_LITTLE_ENDIAN Include/pyport.h 640;" d +PY_LLONG_MAX Include/pyport.h 96;" d +PY_LLONG_MAX PC/pyconfig.h 261;" d +PY_LLONG_MAX PC/pyconfig.h 287;" d +PY_LLONG_MIN Include/pyport.h 95;" d +PY_LLONG_MIN PC/pyconfig.h 260;" d +PY_LLONG_MIN PC/pyconfig.h 288;" d +PY_LOCK_ACQUIRED Include/pythread.h /^ PY_LOCK_ACQUIRED = 1,$/;" e enum:PyLockStatus +PY_LOCK_FAILURE Include/pythread.h /^ PY_LOCK_FAILURE = 0,$/;" e enum:PyLockStatus +PY_LOCK_INTR Include/pythread.h /^ PY_LOCK_INTR$/;" e enum:PyLockStatus +PY_LONG_LONG Include/pyport.h 93;" d +PY_LONG_LONG PC/pyconfig.h 259;" d +PY_LONG_LONG PC/pyconfig.h 286;" d +PY_MAJOR_VERSION Include/patchlevel.h 19;" d +PY_MICRO_VERSION Include/patchlevel.h 21;" d +PY_MINOR_VERSION Include/patchlevel.h 20;" d +PY_MISC_NEWS_DIR Doc/make.bat /^if not defined PY_MISC_NEWS_DIR set PY_MISC_NEWS_DIR=%BUILDDIR%\\%1$/;" v +PY_MONITORING_COVERAGE_ID Include/internal/pycore_instruments.h 55;" d +PY_MONITORING_DEBUGGER_ID Include/internal/pycore_instruments.h 54;" d +PY_MONITORING_EVENT_BRANCH Include/internal/pycore_instruments.h 28;" d +PY_MONITORING_EVENT_CALL Include/internal/pycore_instruments.h 24;" d +PY_MONITORING_EVENT_C_RAISE Include/internal/pycore_instruments.h 46;" d +PY_MONITORING_EVENT_C_RETURN Include/internal/pycore_instruments.h 45;" d +PY_MONITORING_EVENT_EXCEPTION_HANDLED Include/internal/pycore_instruments.h 37;" d +PY_MONITORING_EVENT_INSTRUCTION Include/internal/pycore_instruments.h 26;" d +PY_MONITORING_EVENT_JUMP Include/internal/pycore_instruments.h 27;" d +PY_MONITORING_EVENT_LINE Include/internal/pycore_instruments.h 25;" d +PY_MONITORING_EVENT_PY_RESUME Include/internal/pycore_instruments.h 21;" d +PY_MONITORING_EVENT_PY_RETURN Include/internal/pycore_instruments.h 22;" d +PY_MONITORING_EVENT_PY_START Include/internal/pycore_instruments.h 20;" d +PY_MONITORING_EVENT_PY_THROW Include/internal/pycore_instruments.h 39;" d +PY_MONITORING_EVENT_PY_UNWIND Include/internal/pycore_instruments.h 38;" d +PY_MONITORING_EVENT_PY_YIELD Include/internal/pycore_instruments.h 23;" d +PY_MONITORING_EVENT_RAISE Include/internal/pycore_instruments.h 36;" d +PY_MONITORING_EVENT_RERAISE Include/internal/pycore_instruments.h 40;" d +PY_MONITORING_EVENT_STOP_ITERATION Include/internal/pycore_instruments.h 29;" d +PY_MONITORING_IS_INSTRUMENTED_EVENT Include/internal/pycore_instruments.h 31;" d +PY_MONITORING_OPTIMIZER_ID Include/internal/pycore_instruments.h 57;" d +PY_MONITORING_PROFILER_ID Include/internal/pycore_instruments.h 56;" d +PY_MONITORING_SYS_PROFILE_ID Include/internal/pycore_instruments.h 60;" d +PY_MONITORING_SYS_TRACE_ID Include/internal/pycore_instruments.h 61;" d +PY_MONITORING_TOOL_IDS Include/internal/pycore_instruments.h 15;" d +PY_OFF_T_COMPAT Modules/_io/_iomodule.h 103;" d +PY_OFF_T_COMPAT Modules/_io/_iomodule.h 115;" d +PY_OFF_T_COMPAT Modules/_io/_iomodule.h 122;" d +PY_OFF_T_COMPAT Modules/_io/_iomodule.h 129;" d +PY_OFF_T_MAX Modules/_io/_iomodule.h 101;" d +PY_OFF_T_MAX Modules/_io/_iomodule.h 113;" d +PY_OFF_T_MAX Modules/_io/_iomodule.h 120;" d +PY_OFF_T_MAX Modules/_io/_iomodule.h 127;" d +PY_OFF_T_MIN Modules/_io/_iomodule.h 102;" d +PY_OFF_T_MIN Modules/_io/_iomodule.h 114;" d +PY_OFF_T_MIN Modules/_io/_iomodule.h 121;" d +PY_OFF_T_MIN Modules/_io/_iomodule.h 128;" d +PY_OPENSSL_HAS_BLAKE2 Modules/_hashopenssl.c 50;" d file: +PY_OPENSSL_HAS_SCRYPT Modules/_hashopenssl.c 47;" d file: +PY_OPENSSL_HAS_SHA3 Modules/_hashopenssl.c 48;" d file: +PY_OPENSSL_HAS_SHAKE Modules/_hashopenssl.c 49;" d file: +PY_PARSER_REQUIRES_FUTURE_KEYWORD Include/cpython/code.h 208;" d +PY_PNG PC/layout/support/appxmanifest.py /^PY_PNG = "_resources\/py.png"$/;" v +PY_PRIdOFF Modules/_io/_iomodule.h 104;" d +PY_PRIdOFF Modules/_io/_iomodule.h 116;" d +PY_PRIdOFF Modules/_io/_iomodule.h 123;" d +PY_PRIdOFF Modules/_io/_iomodule.h 130;" d +PY_PROTO_MAXIMUM_AVAILABLE Modules/_ssl.c /^ PY_PROTO_MAXIMUM_AVAILABLE = PY_PROTO_TLSv1_3,$/;" e enum:py_proto_version file: +PY_PROTO_MAXIMUM_SUPPORTED Modules/_ssl.c /^ PY_PROTO_MAXIMUM_SUPPORTED = -1,$/;" e enum:py_proto_version file: +PY_PROTO_MINIMUM_AVAILABLE Modules/_ssl.c /^ PY_PROTO_MINIMUM_AVAILABLE = PY_PROTO_SSLv3,$/;" e enum:py_proto_version file: +PY_PROTO_MINIMUM_SUPPORTED Modules/_ssl.c /^ PY_PROTO_MINIMUM_SUPPORTED = -2,$/;" e enum:py_proto_version file: +PY_PROTO_SSLv3 Modules/_ssl.c /^ PY_PROTO_SSLv3 = SSL3_VERSION,$/;" e enum:py_proto_version file: +PY_PROTO_TLSv1 Modules/_ssl.c /^ PY_PROTO_TLSv1 = TLS1_VERSION,$/;" e enum:py_proto_version file: +PY_PROTO_TLSv1_1 Modules/_ssl.c /^ PY_PROTO_TLSv1_1 = TLS1_1_VERSION,$/;" e enum:py_proto_version file: +PY_PROTO_TLSv1_2 Modules/_ssl.c /^ PY_PROTO_TLSv1_2 = TLS1_2_VERSION,$/;" e enum:py_proto_version file: +PY_PROTO_TLSv1_3 Modules/_ssl.c /^ PY_PROTO_TLSv1_3 = TLS1_3_VERSION,$/;" e enum:py_proto_version file: +PY_PYTHON Lib/test/test_launcher.py /^ PY_PYTHON="PythonTestSuite\/3.100",$/;" v +PY_PYTHON2 Lib/test/test_launcher.py /^ PY_PYTHON2="PythonTestSuite\/3.100-32",$/;" v +PY_PYTHON3 Lib/test/test_launcher.py /^ PY_PYTHON3="PythonTestSuite\/3.100-arm64",$/;" v +PY_RELEASE_LEVEL Include/patchlevel.h 22;" d +PY_RELEASE_LEVEL_ALPHA Include/patchlevel.h 11;" d +PY_RELEASE_LEVEL_BETA Include/patchlevel.h 12;" d +PY_RELEASE_LEVEL_FINAL Include/patchlevel.h 14;" d +PY_RELEASE_LEVEL_GAMMA Include/patchlevel.h 13;" d +PY_RELEASE_SERIAL Include/patchlevel.h 23;" d +PY_SIZE_MAX Include/pyport.h 154;" d +PY_SSIZE_T_CLEAN Doc/includes/newtypes/custom.c 1;" d file: +PY_SSIZE_T_CLEAN Doc/includes/newtypes/custom2.c 1;" d file: +PY_SSIZE_T_CLEAN Doc/includes/newtypes/custom3.c 1;" d file: +PY_SSIZE_T_CLEAN Doc/includes/newtypes/custom4.c 1;" d file: +PY_SSIZE_T_CLEAN Doc/includes/newtypes/sublist.c 1;" d file: +PY_SSIZE_T_CLEAN Doc/includes/run-func.c 1;" d file: +PY_SSIZE_T_CLEAN Modules/_bisectmodule.c 6;" d file: +PY_SSIZE_T_CLEAN Modules/_bz2module.c 3;" d file: +PY_SSIZE_T_CLEAN Modules/_codecsmodule.c 33;" d file: +PY_SSIZE_T_CLEAN Modules/_ctypes/_ctypes.c 104;" d file: +PY_SSIZE_T_CLEAN Modules/_cursesmodule.c 107;" d file: +PY_SSIZE_T_CLEAN Modules/_dbmmodule.c 5;" d file: +PY_SSIZE_T_CLEAN Modules/_elementtree.c 14;" d file: +PY_SSIZE_T_CLEAN Modules/_gdbmmodule.c 6;" d file: +PY_SSIZE_T_CLEAN Modules/_hashopenssl.c 25;" d file: +PY_SSIZE_T_CLEAN Modules/_io/_iomodule.c 10;" d file: +PY_SSIZE_T_CLEAN Modules/_io/bufferedio.c 10;" d file: +PY_SSIZE_T_CLEAN Modules/_io/fileio.c 3;" d file: +PY_SSIZE_T_CLEAN Modules/_io/iobase.c 11;" d file: +PY_SSIZE_T_CLEAN Modules/_io/stringio.c 1;" d file: +PY_SSIZE_T_CLEAN Modules/_io/textio.c 9;" d file: +PY_SSIZE_T_CLEAN Modules/_io/winconsoleio.c 9;" d file: +PY_SSIZE_T_CLEAN Modules/_localemodule.c 12;" d file: +PY_SSIZE_T_CLEAN Modules/_lzmamodule.c 8;" d file: +PY_SSIZE_T_CLEAN Modules/_multiprocessing/multiprocessing.h 4;" d +PY_SSIZE_T_CLEAN Modules/_multiprocessing/posixshmem.c 5;" d file: +PY_SSIZE_T_CLEAN Modules/_sqlite/connection.h 26;" d +PY_SSIZE_T_CLEAN Modules/_sqlite/cursor.h 26;" d +PY_SSIZE_T_CLEAN Modules/_sqlite/microprotocols.h 29;" d +PY_SSIZE_T_CLEAN Modules/_sqlite/module.h 26;" d +PY_SSIZE_T_CLEAN Modules/_sqlite/row.h 26;" d +PY_SSIZE_T_CLEAN Modules/_sqlite/statement.h 26;" d +PY_SSIZE_T_CLEAN Modules/_sqlite/util.h 26;" d +PY_SSIZE_T_CLEAN Modules/_sre/sre.c 41;" d file: +PY_SSIZE_T_CLEAN Modules/_ssl.c 24;" d file: +PY_SSIZE_T_CLEAN Modules/_stat.c 14;" d file: +PY_SSIZE_T_CLEAN Modules/_struct.c 10;" d file: +PY_SSIZE_T_CLEAN Modules/_testbuffer.c 5;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapi/abstract.c 3;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapi/dict.c 3;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapi/exceptions.c 1;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapi/float.c 1;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapi/getargs.c 6;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapi/structmember.c 1;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapi/unicode.c 3;" d file: +PY_SSIZE_T_CLEAN Modules/_testcapimodule.c 20;" d file: +PY_SSIZE_T_CLEAN Modules/_testclinic.c 8;" d file: +PY_SSIZE_T_CLEAN Modules/_testinternalcapi.c 12;" d file: +PY_SSIZE_T_CLEAN Modules/_tkinter.c 24;" d file: +PY_SSIZE_T_CLEAN Modules/_uuidmodule.c 6;" d file: +PY_SSIZE_T_CLEAN Modules/_xxtestfuzz/_xxtestfuzz.c 1;" d file: +PY_SSIZE_T_CLEAN Modules/arraymodule.c 10;" d file: +PY_SSIZE_T_CLEAN Modules/audioop.c 34;" d file: +PY_SSIZE_T_CLEAN Modules/binascii.c 60;" d file: +PY_SSIZE_T_CLEAN Modules/cjkcodecs/cjkcodecs.h 10;" d +PY_SSIZE_T_CLEAN Modules/cjkcodecs/multibytecodec.c 7;" d file: +PY_SSIZE_T_CLEAN Modules/fcntlmodule.c 4;" d file: +PY_SSIZE_T_CLEAN Modules/itertoolsmodule.c 1;" d file: +PY_SSIZE_T_CLEAN Modules/mmapmodule.c 25;" d file: +PY_SSIZE_T_CLEAN Modules/ossaudiodev.c 24;" d file: +PY_SSIZE_T_CLEAN Modules/posixmodule.c 10;" d file: +PY_SSIZE_T_CLEAN Modules/socketmodule.c 108;" d file: +PY_SSIZE_T_CLEAN Modules/unicodedata.c 19;" d file: +PY_SSIZE_T_CLEAN Modules/zlibmodule.c 6;" d file: +PY_SSIZE_T_CLEAN Objects/bytearrayobject.c 3;" d file: +PY_SSIZE_T_CLEAN Objects/bytes_methods.c 1;" d file: +PY_SSIZE_T_CLEAN Objects/bytesobject.c 3;" d file: +PY_SSIZE_T_CLEAN Objects/exceptions.c 7;" d file: +PY_SSIZE_T_CLEAN Objects/fileobject.c 3;" d file: +PY_SSIZE_T_CLEAN Objects/picklebufobject.c 3;" d file: +PY_SSIZE_T_CLEAN Objects/unicodeobject.c 41;" d file: +PY_SSIZE_T_CLEAN PC/winreg.c 15;" d file: +PY_SSIZE_T_CLEAN Parser/pegen.h 4;" d +PY_SSIZE_T_CLEAN Parser/tokenizer.c 4;" d file: +PY_SSIZE_T_CLEAN Python/marshal.c 9;" d file: +PY_SSIZE_T_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 888;" d +PY_SSIZE_T_MAX Include/pyport.h 132;" d +PY_SSIZE_T_MAX Include/pyport.h 135;" d +PY_SSIZE_T_MAX PC/pyconfig.h 195;" d +PY_SSIZE_T_MAX PC/pyconfig.h 198;" d +PY_SSIZE_T_MIN Include/pyport.h 141;" d +PY_SSL_CERT_NONE Modules/_ssl.c /^ PY_SSL_CERT_NONE,$/;" e enum:py_ssl_cert_requirements file: +PY_SSL_CERT_OPTIONAL Modules/_ssl.c /^ PY_SSL_CERT_OPTIONAL,$/;" e enum:py_ssl_cert_requirements file: +PY_SSL_CERT_REQUIRED Modules/_ssl.c /^ PY_SSL_CERT_REQUIRED$/;" e enum:py_ssl_cert_requirements file: +PY_SSL_CLIENT Modules/_ssl.c /^ PY_SSL_CLIENT,$/;" e enum:py_ssl_server_or_client file: +PY_SSL_DEFAULT_CIPHERS Lib/test/test_ssl.py /^PY_SSL_DEFAULT_CIPHERS = sysconfig.get_config_var('PY_SSL_DEFAULT_CIPHERS')$/;" v +PY_SSL_DEFAULT_CIPHERS Modules/_ssl.c 149;" d file: +PY_SSL_DEFAULT_CIPHER_STRING Modules/_ssl.c 173;" d file: +PY_SSL_DEFAULT_CIPHER_STRING Modules/_ssl.c 179;" d file: +PY_SSL_DEPRECATED Modules/_ssl.c 711;" d file: +PY_SSL_ENCODING_DER Modules/_ssl.h /^ PY_SSL_ENCODING_DER=X509_FILETYPE_ASN1,$/;" e enum:py_ssl_encoding +PY_SSL_ENCODING_PEM Modules/_ssl.h /^ PY_SSL_ENCODING_PEM=X509_FILETYPE_PEM,$/;" e enum:py_ssl_encoding +PY_SSL_ENCODING_PEM_AUX Modules/_ssl.h /^ PY_SSL_ENCODING_PEM_AUX=X509_FILETYPE_PEM + 0x100,$/;" e enum:py_ssl_encoding +PY_SSL_ERROR_EOF Modules/_ssl.c /^ PY_SSL_ERROR_EOF, \/* special case of SSL_ERROR_SYSCALL *\/$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_INVALID_ERROR_CODE Modules/_ssl.c /^ PY_SSL_ERROR_INVALID_ERROR_CODE$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_NONE Modules/_ssl.c /^ PY_SSL_ERROR_NONE,$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_NO_SOCKET Modules/_ssl.c /^ PY_SSL_ERROR_NO_SOCKET, \/* socket has been GC'd *\/$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_SSL Modules/_ssl.c /^ PY_SSL_ERROR_SSL,$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_SYSCALL Modules/_ssl.c /^ PY_SSL_ERROR_SYSCALL, \/* look at error stack\/return value\/errno *\/$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_WANT_CONNECT Modules/_ssl.c /^ PY_SSL_ERROR_WANT_CONNECT,$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_WANT_READ Modules/_ssl.c /^ PY_SSL_ERROR_WANT_READ,$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_WANT_WRITE Modules/_ssl.c /^ PY_SSL_ERROR_WANT_WRITE,$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_WANT_X509_LOOKUP Modules/_ssl.c /^ PY_SSL_ERROR_WANT_X509_LOOKUP,$/;" e enum:py_ssl_error file: +PY_SSL_ERROR_ZERO_RETURN Modules/_ssl.c /^ PY_SSL_ERROR_ZERO_RETURN,$/;" e enum:py_ssl_error file: +PY_SSL_MIN_PROTOCOL Modules/_ssl.c 157;" d file: +PY_SSL_MIN_PROTOCOL Modules/_ssl.c 175;" d file: +PY_SSL_SERVER Modules/_ssl.c /^ PY_SSL_SERVER$/;" e enum:py_ssl_server_or_client file: +PY_SSL_VERSION_SSL2 Modules/_ssl.c /^ PY_SSL_VERSION_SSL2,$/;" e enum:py_ssl_version file: +PY_SSL_VERSION_SSL3 Modules/_ssl.c /^ PY_SSL_VERSION_SSL3=1,$/;" e enum:py_ssl_version file: +PY_SSL_VERSION_TLS Modules/_ssl.c /^ PY_SSL_VERSION_TLS, \/* SSLv23 *\/$/;" e enum:py_ssl_version file: +PY_SSL_VERSION_TLS1 Modules/_ssl.c /^ PY_SSL_VERSION_TLS1,$/;" e enum:py_ssl_version file: +PY_SSL_VERSION_TLS1_1 Modules/_ssl.c /^ PY_SSL_VERSION_TLS1_1,$/;" e enum:py_ssl_version file: +PY_SSL_VERSION_TLS1_2 Modules/_ssl.c /^ PY_SSL_VERSION_TLS1_2,$/;" e enum:py_ssl_version file: +PY_SSL_VERSION_TLS_CLIENT Modules/_ssl.c /^ PY_SSL_VERSION_TLS_CLIENT=0x10,$/;" e enum:py_ssl_version file: +PY_SSL_VERSION_TLS_SERVER Modules/_ssl.c /^ PY_SSL_VERSION_TLS_SERVER,$/;" e enum:py_ssl_version file: +PY_STDIOTEXTMODE Include/fileobject.h 9;" d +PY_SUPPORT_TIER PC/pyconfig.h 144;" d +PY_SUPPORT_TIER PC/pyconfig.h 147;" d +PY_SUPPORT_TIER PC/pyconfig.h 150;" d +PY_SUPPORT_TIER PC/pyconfig.h 155;" d +PY_SUPPORT_TIER PC/pyconfig.h 159;" d +PY_SUPPORT_TIER PC/pyconfig.h 206;" d +PY_SUPPORT_TIER PC/pyconfig.h 209;" d +PY_SUPPORT_TIER PC/pyconfig.h 212;" d +PY_SUPPORT_TIER PC/pyconfig.h 218;" d +PY_SUPPORT_TIER PC/pyconfig.h 221;" d +PY_TIMEOUT_MAX Include/pythread.h 50;" d +PY_TIMEOUT_MAX Include/pythread.h 58;" d +PY_TIMEOUT_MAX Include/pythread.h 61;" d +PY_TIMEOUT_T Include/pythread.h 45;" d +PY_TIME_T_MAX Python/pytime.c 34;" d file: +PY_TIME_T_MAX Python/pytime.c 37;" d file: +PY_TIME_T_MIN Python/pytime.c 35;" d file: +PY_TIME_T_MIN Python/pytime.c 38;" d file: +PY_UHASH_CPY Python/pyhash.c 229;" d file: +PY_UHASH_CPY Python/pyhash.c 233;" d file: +PY_UHASH_CPY Python/pyhash.c 241;" d file: +PY_UINT32_T Include/pyport.h 100;" d +PY_UINT32_T PC/pyconfig.h 391;" d +PY_UINT64_T Include/pyport.h 101;" d +PY_UINT64_T PC/pyconfig.h 392;" d +PY_ULLONG_MAX Include/pyport.h 97;" d +PY_ULLONG_MAX PC/pyconfig.h 262;" d +PY_ULLONG_MAX PC/pyconfig.h 289;" d +PY_UNICODE_TYPE Include/cpython/unicodeobject.h 9;" d +PY_VECTORCALL_ARGUMENTS_OFFSET Include/abstract.h 242;" d +PY_VERSION Include/patchlevel.h 26;" d +PY_VERSION_HEX Include/patchlevel.h 31;" d +PY_WRITE_RESTRICTED Include/structmember.h 49;" d +P_ALL Lib/test/test_lib2to3/data/infinite_recursion.py /^P_ALL = 0$/;" v +P_PGID Lib/test/test_lib2to3/data/infinite_recursion.py /^P_PGID = 2$/;" v +P_PID Lib/test/test_lib2to3/data/infinite_recursion.py /^P_PID = 1$/;" v +P_get Modules/_ctypes/cfield.c /^P_get(void *ptr, Py_ssize_t size)$/;" f file: +P_set Modules/_ctypes/cfield.c /^P_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +Pacific Doc/includes/tzinfo_examples.py /^Pacific = USTimeZone(-8, "Pacific", "PST", "PDT")$/;" v +Pacific Lib/test/datetimetester.py /^Pacific = USTimeZone(-8, "Pacific", "PST", "PDT")$/;" v +Pacific2 Lib/test/datetimetester.py /^Pacific2 = USTimeZone2(-8, "Pacific2", "PST", "PDT")$/;" v +Pack Lib/tkinter/__init__.py /^class Pack:$/;" c +PackTest Lib/test/test_tkinter/test_geometry_managers.py /^class PackTest(AbstractWidgetTest, unittest.TestCase):$/;" c +PackTests Lib/test/test_float.py /^class PackTests(unittest.TestCase):$/;" c +Package Lib/importlib/resources/_common.py /^Package = Union[types.ModuleType, str]$/;" v +Package Lib/importlib/resources/_legacy.py /^Package = Union[types.ModuleType, str]$/;" v +PackageMetadata Lib/importlib/metadata/_meta.py /^class PackageMetadata(Protocol):$/;" c +PackageNotFoundError Lib/importlib/metadata/__init__.py /^class PackageNotFoundError(ModuleNotFoundError):$/;" c +PackagePath Lib/importlib/metadata/__init__.py /^class PackagePath(pathlib.PurePosixPath):$/;" c +PackagesDistributionsEggTest Lib/test/test_importlib/test_main.py /^):$/;" c +PackagesDistributionsPrebuiltTest Lib/test/test_importlib/test_main.py /^class PackagesDistributionsPrebuiltTest(fixtures.ZipFixtures, unittest.TestCase):$/;" c +PackagesDistributionsTest Lib/test/test_importlib/test_main.py /^):$/;" c +PackedPoint Lib/test/test_ctypes/test_pep3118.py /^class PackedPoint(Structure):$/;" c +PackedPointEndPad Lib/test/test_ctypes/test_pep3118.py /^class PackedPointEndPad(Structure):$/;" c +PackedPointMidPad Lib/test/test_ctypes/test_pep3118.py /^class PackedPointMidPad(Structure):$/;" c +Packer Lib/xdrlib.py /^class Packer:$/;" c +Pair Lib/importlib/metadata/_collections.py /^class Pair(collections.namedtuple('Pair', 'name value')):$/;" c +PandT Lib/test/test_typing.py /^ class PandT(Generic[P, T]):$/;" c function:ParamSpecTests.test_type_var_subst_for_other_type_vars +Pane Lib/test/test_descr.py /^ class Pane(object): pass$/;" c function:ClassPropertiesAndMethods.test_consistency_with_epg +PanedWindow Lib/tkinter/__init__.py /^class PanedWindow(Widget):$/;" c +PanedWindow Lib/tkinter/tix.py /^class PanedWindow(TixWidget):$/;" c +PanedWindow Lib/tkinter/ttk.py /^PanedWindow = Panedwindow # tkinter name compatibility$/;" v +PanedWindowTest Lib/test/test_tkinter/test_widgets.py /^class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):$/;" c +PanedWindowTest Lib/test/test_ttk/test_widgets.py /^class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Panedwindow Lib/tkinter/ttk.py /^class Panedwindow(Widget, tkinter.PanedWindow):$/;" c +Paradox Lib/test/test_capi/test_getargs.py /^class Paradox:$/;" c +Param Lib/ast.py /^class Param(expr_context):$/;" c +ParamDict Tools/clinic/clinic.py /^ParamDict = dict[str, "Parameter"]$/;" v +ParamSpec Include/internal/pycore_ast.h /^ } ParamSpec;$/;" m union:_type_param::__anon118 typeref:struct:_type_param::__anon118::__anon120 +ParamSpecTests Lib/test/test_typing.py /^class ParamSpecTests(BaseTestCase):$/;" c +ParamSpec_fields Python/Python-ast.c /^static const char * const ParamSpec_fields[]={$/;" v file: +ParamSpec_kind Include/internal/pycore_ast.h /^enum _type_param_kind {TypeVar_kind=1, ParamSpec_kind=2, TypeVarTuple_kind=3};$/;" e enum:_type_param_kind +ParamSpec_type Include/internal/pycore_ast_state.h /^ PyObject *ParamSpec_type;$/;" m struct:ast_state +Parameter Lib/email/_header_value_parser.py /^class Parameter(TokenList):$/;" c +Parameter Lib/inspect.py /^class Parameter:$/;" c +Parameter Tools/clinic/clinic.py /^class Parameter:$/;" c +ParameterizedHeaderValue Lib/email/_header_value_parser.py /^class ParameterizedHeaderValue(TokenList):$/;" c +ParameterizedMIMEHeader Lib/email/headerregistry.py /^class ParameterizedMIMEHeader:$/;" c +ParenMatch Lib/idlelib/parenmatch.py /^class ParenMatch:$/;" c +ParenMatchTest Lib/idlelib/idle_test/test_parenmatch.py /^class ParenMatchTest(unittest.TestCase):$/;" c +Parent Lib/test/test_dataclasses.py /^ class Parent(Generic[T]):$/;" c function:TestCase.test_generic_dynamic +Parent Lib/test/test_dataclasses.py /^ class Parent:$/;" c function:TestCase.test_helper_asdict_builtin_object_containers +Parent Lib/test/test_dataclasses.py /^ class Parent:$/;" c function:TestCase.test_helper_astuple_builtin_object_containers +Parent Lib/test/test_descr.py /^ class Parent:$/;" c function:.test_remove_subclass +Parent Lib/test/test_patma.py /^ class Parent:$/;" c function:TestInheritance.test_late_registration_mapping +Parent Lib/test/test_patma.py /^ class Parent:$/;" c function:TestInheritance.test_late_registration_sequence +Parent Lib/test/test_patma.py /^ class Parent:$/;" c function:TestPatma.test_patma_202 +Parent Lib/test/test_patma.py /^ class Parent:$/;" c function:TestPatma.test_patma_203 +Parent Lib/test/test_type_aliases.py /^ class Parent[A]:$/;" c function:TypeParamsAliasValueTest.test_alias_value_02 +Parent Lib/test/test_typing.py /^ class Parent(TypedDict):$/;" c function:TypedDictTests.test_orig_bases +ParentDeeplyAnnotatedMovie Lib/test/test_typing.py /^class ParentDeeplyAnnotatedMovie(TypedDict):$/;" c +ParentLocator Modules/_elementtree.c /^} ParentLocator;$/;" t typeref:struct:ParentLocator_t file: +ParentLocator_t Modules/_elementtree.c /^typedef struct ParentLocator_t {$/;" s file: +ParentModuleTests Lib/test/test_importlib/import_/test_packages.py /^class ParentModuleTests:$/;" c +ParentNontotalMovie Lib/test/test_typing.py /^class ParentNontotalMovie(TypedDict, total=False):$/;" c +ParrotDroppings Lib/test/inspect_fodder.py /^class ParrotDroppings:$/;" c +Parse Include/pyexpat.h /^ enum XML_Status (*Parse)($/;" m struct:PyExpat_CAPI typeref:enum:PyExpat_CAPI::Parse +ParseArgsTestCase Lib/test/test_regrtest.py /^class ParseArgsTestCase(unittest.TestCase):$/;" c +ParseError Lib/lib2to3/pgen2/parse.py /^class ParseError(Exception):$/;" c +ParseError Lib/xml/etree/ElementTree.py /^class ParseError(SyntaxError):$/;" c +ParseErrorTest Lib/test/test_xml_etree.py /^class ParseErrorTest(unittest.TestCase):$/;" c +ParseEscape Lib/xml/dom/expatbuilder.py /^class ParseEscape(Exception):$/;" c +ParseFlags Lib/imaplib.py /^def ParseFlags(resp):$/;" f +ParseFloat Lib/tomllib/_types.py /^ParseFloat = Callable[[str], Any]$/;" v +ParseMap Lib/idlelib/pyparse.py /^class ParseMap(dict):$/;" c +ParseMapTest Lib/idlelib/idle_test/test_pyparse.py /^class ParseMapTest(unittest.TestCase):$/;" c +ParseMethods Tools/peg_generator/peg_extension/peg_extension.c /^static PyMethodDef ParseMethods[] = {$/;" v file: +ParseOverridableVariablesFromXml Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT ParseOverridableVariablesFromXml(__in IXMLDOMDocument* pixdManifest) {$/;" f class:PythonBootstrapperApplication file: +ParseResult Lib/urllib/parse.py /^class ParseResult(_ParseResultBase, _NetlocResultMixinStr):$/;" c +ParseResultBytes Lib/urllib/parse.py /^class ParseResultBytes(_ParseResultBase, _NetlocResultMixinBytes):$/;" c +ParseTest Lib/test/test_pyexpat.py /^class ParseTest(unittest.TestCase):$/;" c +ParseTest Lib/test/test_sax.py /^class ParseTest(unittest.TestCase):$/;" c +ParseTupleAndKeywords_Test Lib/test/test_capi/test_getargs.py /^class ParseTupleAndKeywords_Test(unittest.TestCase):$/;" c +ParseVariablesFromUnattendXml Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT ParseVariablesFromUnattendXml() {$/;" f class:PythonBootstrapperApplication file: +ParsedItem Tools/c-analyzer/c_parser/info.py /^class ParsedItem(namedtuple('ParsedItem', 'file kind parent name data')):$/;" c +Parser Lib/email/parser.py /^class Parser:$/;" c +Parser Lib/idlelib/pyparse.py /^class Parser:$/;" c +Parser Lib/lib2to3/pgen2/parse.py /^class Parser(object):$/;" c +Parser Parser/pegen.h /^} Parser;$/;" t typeref:struct:__anon657 +Parser Tools/cases_generator/parser.py /^class Parser(PLexer):$/;" c +Parser Tools/peg_generator/pegen/parser.py /^class Parser:$/;" c +ParserBase Lib/_markupbase.py /^class ParserBase:$/;" c +ParserCreate_MM Include/pyexpat.h /^ XML_Parser (*ParserCreate_MM)($/;" m struct:PyExpat_CAPI +ParserDict Tools/clinic/clinic.py /^ParserDict = dict[str, "DSLParser"]$/;" v +ParserFree Include/pyexpat.h /^ void (*ParserFree)(XML_Parser parser);$/;" m struct:PyExpat_CAPI +ParserGenerator Lib/lib2to3/pgen2/pgen.py /^class ParserGenerator(object):$/;" c +ParserGenerator Tools/peg_generator/pegen/parser_generator.py /^class ParserGenerator:$/;" c +ParserState Modules/_csv.c /^} ParserState;$/;" t typeref:enum:__anon621 file: +ParserTestCase Lib/test/test_argparse.py /^ParserTestCase = ParserTesterMetaclass('ParserTestCase', bases, {})$/;" v +ParserTesterMetaclass Lib/test/test_argparse.py /^class ParserTesterMetaclass(type):$/;" c +ParsingError Lib/configparser.py /^class ParsingError(Error):$/;" c +Part Lib/test/test_enum.py /^ class Part(Enum):$/;" c function:TestSpecial.test_comparisons +PartialIteratorWrapper Lib/wsgiref/validate.py /^class PartialIteratorWrapper:$/;" c +PartialWriter Lib/test/test_wsgiref.py /^ class PartialWriter:$/;" c function:HandlerTests.testPartialWrite +PartingShots Parser/asdl_c.py /^class PartingShots(StaticVisitor):$/;" c +PassThru Lib/test/test_set.py /^class PassThru(Exception):$/;" c +Pass_kind Include/internal/pycore_ast.h /^ Nonlocal_kind=24, Expr_kind=25, Pass_kind=26, Break_kind=27,$/;" e enum:_stmt_kind +Pass_type Include/internal/pycore_ast_state.h /^ PyObject *Pass_type;$/;" m struct:ast_state +PasswordProtectedSiteTestCase Lib/test/test_robotparser.py /^class PasswordProtectedSiteTestCase(unittest.TestCase):$/;" c +PasteTest Lib/idlelib/idle_test/test_editmenu.py /^class PasteTest(unittest.TestCase):$/;" c +Patch Lib/msilib/schema.py /^Patch = Table('Patch')$/;" v +PatchPackage Lib/msilib/schema.py /^PatchPackage = Table('PatchPackage')$/;" v +PatchTest Lib/test/test_unittest/testmock/testpatch.py /^class PatchTest(unittest.TestCase):$/;" c +Path Lib/pathlib.py /^class Path(PurePath):$/;" c +Path Lib/test/test_tempfile.py /^ class Path:$/;" c function:TestLowLevelInternals.test_infer_return_type_pathlike +Path Lib/zipfile/_path/__init__.py /^class Path:$/;" c +PathBrowser Lib/idlelib/pathbrowser.py /^class PathBrowser(ModuleBrowser):$/;" c +PathBrowserTest Lib/idlelib/idle_test/test_pathbrowser.py /^class PathBrowserTest(unittest.TestCase):$/;" c +PathBrowserTreeItem Lib/idlelib/pathbrowser.py /^class PathBrowserTreeItem(TreeItem):$/;" c +PathBrowserTreeItemTest Lib/idlelib/idle_test/test_pathbrowser.py /^class PathBrowserTreeItemTest(unittest.TestCase):$/;" c +PathBuffer Modules/winreparse.h /^ WCHAR PathBuffer[1];$/;" m struct:__anon316::__anon317::__anon319 +PathBuffer Modules/winreparse.h /^ WCHAR PathBuffer[1];$/;" m struct:__anon316::__anon317::__anon318 +PathCchCombineEx Python/fileutils.c /^PathCchCombineEx(wchar_t *buffer, size_t bufsize, const wchar_t *dirname,$/;" f file: +PathCchSkipRoot Python/fileutils.c /^PathCchSkipRoot(const wchar_t *path, const wchar_t **rootEnd)$/;" f +PathDiskTests Lib/test/test_importlib/resources/test_path.py /^class PathDiskTests(PathTests, unittest.TestCase):$/;" c +PathDistribution Lib/importlib/metadata/__init__.py /^class PathDistribution(Distribution):$/;" c +PathEntryFinder Lib/importlib/abc.py /^class PathEntryFinder(metaclass=abc.ABCMeta):$/;" c +PathEntryFinder Lib/test/test_importlib/test_abc.py /^class PathEntryFinder(InheritanceTests):$/;" c +PathEntryFinder Lib/test/test_importlib/test_abc.py /^class PathEntryFinder:$/;" c +PathEntryFinderDefaultsTests Lib/test/test_importlib/test_abc.py /^class PathEntryFinderDefaultsTests(ABCTestHarness):$/;" c +PathEntryFinderTests Lib/test/test_importlib/import_/test_path.py /^class PathEntryFinderTests:$/;" c +PathFinder Lib/importlib/_bootstrap_external.py /^class PathFinder:$/;" c +PathHookTest Lib/test/test_importlib/source/test_path_hook.py /^class PathHookTest:$/;" c +PathHookTests Lib/test/test_importlib/extension/test_path_hook.py /^class PathHookTests:$/;" c +PathLike Lib/os.py /^class PathLike(abc.ABC):$/;" c +PathLikeTests Lib/test/test_genericpath.py /^class PathLikeTests(unittest.TestCase):$/;" c +PathLikeTests Lib/test/test_ntpath.py /^class PathLikeTests(NtpathTestCase):$/;" c +PathLikeTests Lib/test/test_posixpath.py /^class PathLikeTests(unittest.TestCase):$/;" c +PathMemoryTests Lib/test/test_importlib/resources/test_path.py /^class PathMemoryTests(PathTests, unittest.TestCase):$/;" c +PathName2URLTests Lib/test/test_urllib.py /^class PathName2URLTests(unittest.TestCase):$/;" c +PathPattern Lib/test/test_string.py /^ class PathPattern(Template):$/;" c function:TestTemplate.test_idpattern_override +PathSubclassTest Lib/test/test_pathlib.py /^class PathSubclassTest(_BasePathTest, unittest.TestCase):$/;" c +PathTConverterTests Lib/test/test_os.py /^class PathTConverterTests(unittest.TestCase):$/;" c +PathTest Lib/test/test_pathlib.py /^class PathTest(_BasePathTest, unittest.TestCase):$/;" c +PathTests Lib/test/test_fileutils.py /^class PathTests(unittest.TestCase):$/;" c +PathTests Lib/test/test_importlib/resources/test_path.py /^class PathTests:$/;" c +PathZipTests Lib/test/test_importlib/resources/test_path.py /^class PathZipTests(PathTests, util.ZipSetup, unittest.TestCase):$/;" c +Pathname_Tests Lib/test/test_urllib.py /^class Pathname_Tests(unittest.TestCase):$/;" c +PathsTests Lib/test/test_import/__init__.py /^class PathsTests(unittest.TestCase):$/;" c +Pattern Lib/re/__init__.py /^Pattern = type(_compiler.compile('', 0))$/;" v +Pattern Lib/typing.py /^ Pattern = Pattern$/;" v class:re +Pattern Lib/typing.py /^Pattern = _alias(stdlib_re.Pattern, 1)$/;" v +PatternCompiler Lib/lib2to3/patcomp.py /^class PatternCompiler(object):$/;" c +PatternObject Modules/_sre/sre.h /^} PatternObject;$/;" t typeref:struct:__anon454 +PatternObject_GetCode Modules/_sre/sre.h 42;" d +PatternReprTests Lib/test/test_re.py /^class PatternReprTests(unittest.TestCase):$/;" c +PatternSyntaxError Lib/lib2to3/patcomp.py /^class PatternSyntaxError(Exception):$/;" c +Pattern_Type Modules/_sre/sre.c /^ PyTypeObject *Pattern_Type;$/;" m struct:__anon462 file: +PaxReadTest Lib/test/test_tarfile.py /^class PaxReadTest(LongnameTest, ReadTest, unittest.TestCase):$/;" c +PaxWriteTest Lib/test/test_tarfile.py /^class PaxWriteTest(GNUWriteTest):$/;" c +Pdata Modules/_pickle.c /^} Pdata;$/;" t typeref:struct:__anon449 file: +Pdata_New Modules/_pickle.c /^Pdata_New(PickleState *state)$/;" f file: +Pdata_Type Modules/_pickle.c /^ PyTypeObject *Pdata_Type;$/;" m struct:__anon448 file: +Pdata_clear Modules/_pickle.c /^Pdata_clear(Pdata *self, Py_ssize_t clearto)$/;" f file: +Pdata_dealloc Modules/_pickle.c /^Pdata_dealloc(Pdata *self)$/;" f file: +Pdata_grow Modules/_pickle.c /^Pdata_grow(Pdata *self)$/;" f file: +Pdata_pop Modules/_pickle.c /^Pdata_pop(PickleState *state, Pdata *self)$/;" f file: +Pdata_poplist Modules/_pickle.c /^Pdata_poplist(Pdata *self, Py_ssize_t start)$/;" f file: +Pdata_poptuple Modules/_pickle.c /^Pdata_poptuple(PickleState *state, Pdata *self, Py_ssize_t start)$/;" f file: +Pdata_push Modules/_pickle.c /^Pdata_push(Pdata *self, PyObject *obj)$/;" f file: +Pdata_stack_underflow Modules/_pickle.c /^Pdata_stack_underflow(PickleState *st, Pdata *self)$/;" f file: +Pdata_traverse Modules/_pickle.c /^Pdata_traverse(Pdata *self, visitproc visit, void *arg)$/;" f file: +Pdb Lib/pdb.py /^class Pdb(bdb.Bdb, cmd.Cmd):$/;" c +PdbTestCase Lib/test/test_pdb.py /^class PdbTestCase(unittest.TestCase):$/;" c +PdbTestInput Lib/test/test_pdb.py /^class PdbTestInput(object):$/;" c +PedalWheelBoat Lib/test/test_descr.py /^ class PedalWheelBoat(EngineLess,WheelBoat): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +Pedalo Lib/test/test_descr.py /^ class Pedalo(PedalWheelBoat,SmallCatamaran): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +Pen Lib/turtle.py /^Pen = Turtle$/;" v +PendingSignalsTests Lib/test/test_signal.py /^class PendingSignalsTests(unittest.TestCase):$/;" c +PendingTask Lib/test/test_capi/test_misc.py /^ class PendingTask(types.SimpleNamespace):$/;" c class:TestPendingCalls +Pep383Tests Lib/test/test_os.py /^class Pep383Tests(unittest.TestCase):$/;" c +PercentStyle Lib/logging/__init__.py /^class PercentStyle(object):$/;" c +Percolator Lib/idlelib/percolator.py /^class Percolator:$/;" c +PercolatorTest Lib/idlelib/idle_test/test_percolator.py /^class PercolatorTest(unittest.TestCase):$/;" c +PerfMapState Include/sysmodule.h /^} PerfMapState;$/;" t typeref:struct:__anon2 +PerfPatma Lib/test/test_patma.py /^ class PerfPatma(TestPatma):$/;" c class:TestTracing +Period Lib/test/test_enum.py /^ Period = vars()$/;" v class:TestSpecial.test_ignore.Period +Period Lib/test/test_enum.py /^ class Period(Enum):$/;" c function:TestSpecial.test_getattr_getitem +Period Lib/test/test_enum.py /^ class Period(timedelta, Enum):$/;" c function:TestSpecial.test_ignore +Perm Lib/test/test_enum.py /^ class Perm(Flag):$/;" c class:OldTestFlag +Perm Lib/test/test_enum.py /^ class Perm(IntFlag):$/;" c class:OldTestIntFlag +PermutationTests Lib/test/test_clinic.py /^class PermutationTests(unittest.TestCase):$/;" c +PersPickler Lib/test/test_pickle.py /^ class PersPickler(self.pickler):$/;" c function:PersistentPicklerUnpicklerMixin.dumps +PersPickler Lib/test/test_pickle.py /^ class PersPickler(self.pickler):$/;" c function:PyIdPersPicklerTests.test_pickler_reference_cycle +PersUnpickler Lib/test/test_pickle.py /^ class PersUnpickler(self.unpickler):$/;" c function:PersistentPicklerUnpicklerMixin.loads +PersUnpickler Lib/test/test_pickle.py /^ class PersUnpickler(self.unpickler):$/;" c function:PyIdPersPicklerTests.test_unpickler_reference_cycle +PersistenceTest Lib/test/test_httplib.py /^class PersistenceTest(TestCase):$/;" c +PersistentPicklerUnpicklerMixin Lib/test/test_pickle.py /^class PersistentPicklerUnpicklerMixin(object):$/;" c +Person Lib/test/test_ctypes/test_structures.py /^ class Person(Structure):$/;" c function:StructureTestCase.test_init_errors +Person Lib/test/test_ctypes/test_structures.py /^ class Person(Structure):$/;" c function:StructureTestCase.test_initializers +Person Lib/test/test_ctypes/test_structures.py /^ class Person(Structure):$/;" c function:StructureTestCase.test_nested_initializers +PersonW Lib/test/test_ctypes/test_structures.py /^ class PersonW(Structure):$/;" c function:StructureTestCase.test_structures_with_wchar +PerverseMetaType Lib/test/test_descr.py /^ class PerverseMetaType(type):$/;" c function:.test_altmro +PgenGrammar Lib/lib2to3/pgen2/pgen.py /^class PgenGrammar(grammar.Grammar):$/;" c +Phase Lib/test/support/_hypothesis_stubs/__init__.py /^class Phase(Enum):$/;" c +Phone Lib/test/test_ctypes/test_structures.py /^ class Phone(Structure):$/;" c function:StructureTestCase.test_init_errors +Phone Lib/test/test_ctypes/test_structures.py /^ class Phone(Structure):$/;" c function:StructureTestCase.test_nested_initializers +PhotoImage Lib/tkinter/__init__.py /^class PhotoImage(Image):$/;" c +PhotoImageTest Lib/test/test_tkinter/test_images.py /^class PhotoImageTest(AbstractTkTest, unittest.TestCase):$/;" c +Phrase Lib/email/_header_value_parser.py /^class Phrase(TokenList):$/;" c +PicklableFixedOffset Lib/test/datetimetester.py /^class PicklableFixedOffset(FixedOffset):$/;" c +PicklableFixedOffsetWithSlots Lib/test/datetimetester.py /^class PicklableFixedOffsetWithSlots(PicklableFixedOffset):$/;" c +PicklableNDArray Lib/test/pickletester.py /^ class PicklableNDArray:$/;" c class:ZeroCopyBytearray +PickleBufferTest Lib/test/test_picklebuffer.py /^class PickleBufferTest(unittest.TestCase):$/;" c +PickleCopier Lib/test/test_descr.py /^ class PickleCopier:$/;" c function:PicklingTests._generate_pickle_copiers +PickleError Lib/pickle.py /^class PickleError(Exception):$/;" c +PickleError Modules/_pickle.c /^ PyObject *PickleError;$/;" m struct:__anon448 file: +PicklePrint Lib/test/audit-tests.py /^ class PicklePrint:$/;" c function:test_pickle +PickleState Modules/_pickle.c /^} PickleState;$/;" t typeref:struct:__anon448 file: +PickleTest Lib/test/test_ctypes/test_pickling.py /^class PickleTest:$/;" c +PickleTest Lib/test/test_enumerate.py /^class PickleTest:$/;" c +PickleTestMemIO Lib/test/test_memoryio.py /^ class PickleTestMemIO(self.ioclass):$/;" c function:MemoryTestMixin.test_pickling +PickleVisitor Parser/asdl_c.py /^class PickleVisitor(EmitVisitor):$/;" c +Pickler Lib/test/test_pickle.py /^ class Pickler(self.pickler):$/;" c function:PyIdPersPicklerTests.test_custom_pickler_dispatch_table_memleak +Pickler Lib/test/test_pickle.py /^ Pickler = pickle._Pickler$/;" v class:PyPickleTests +PicklerMemoProxyObject Modules/_pickle.c /^} PicklerMemoProxyObject;$/;" t typeref:struct:__anon452 file: +PicklerMemoProxyType Modules/_pickle.c /^ PyTypeObject *PicklerMemoProxyType;$/;" m struct:__anon448 file: +PicklerMemoProxy_New Modules/_pickle.c /^PicklerMemoProxy_New(PicklerObject *pickler)$/;" f file: +PicklerMemoProxy_clear Modules/_pickle.c /^PicklerMemoProxy_clear(PicklerMemoProxyObject *self)$/;" f file: +PicklerMemoProxy_dealloc Modules/_pickle.c /^PicklerMemoProxy_dealloc(PicklerMemoProxyObject *self)$/;" f file: +PicklerMemoProxy_traverse Modules/_pickle.c /^PicklerMemoProxy_traverse(PicklerMemoProxyObject *self,$/;" f file: +PicklerObject Modules/_pickle.c /^typedef struct PicklerObject {$/;" s file: +PicklerObject Modules/_pickle.c /^} PicklerObject;$/;" t typeref:struct:PicklerObject file: +Pickler_Type Modules/_pickle.c /^ PyTypeObject *Pickler_Type;$/;" m struct:__anon448 file: +Pickler_clear Modules/_pickle.c /^Pickler_clear(PicklerObject *self)$/;" f file: +Pickler_dealloc Modules/_pickle.c /^Pickler_dealloc(PicklerObject *self)$/;" f file: +Pickler_get_memo Modules/_pickle.c /^Pickler_get_memo(PicklerObject *self, void *Py_UNUSED(ignored))$/;" f file: +Pickler_get_persid Modules/_pickle.c /^Pickler_get_persid(PicklerObject *self, void *Py_UNUSED(ignored))$/;" f file: +Pickler_getsets Modules/_pickle.c /^static PyGetSetDef Pickler_getsets[] = {$/;" v file: +Pickler_members Modules/_pickle.c /^static PyMemberDef Pickler_members[] = {$/;" v file: +Pickler_methods Modules/_pickle.c /^static struct PyMethodDef Pickler_methods[] = {$/;" v typeref:struct:PyMethodDef file: +Pickler_set_memo Modules/_pickle.c /^Pickler_set_memo(PicklerObject *self, PyObject *obj, void *Py_UNUSED(ignored))$/;" f file: +Pickler_set_persid Modules/_pickle.c /^Pickler_set_persid(PicklerObject *self, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +Pickler_traverse Modules/_pickle.c /^Pickler_traverse(PicklerObject *self, visitproc visit, void *arg)$/;" f file: +PicklingError Lib/pickle.py /^class PicklingError(PickleError):$/;" c +PicklingError Modules/_pickle.c /^ PyObject *PicklingError;$/;" m struct:__anon448 file: +PicklingTests Lib/test/test_descr.py /^class PicklingTests(unittest.TestCase):$/;" c +Picky Lib/test/test_descr.py /^ class Picky:$/;" c function:PicklingTests.test_special_method_lookup +PidTests Lib/test/test_os.py /^class PidTests(unittest.TestCase):$/;" c +PidfdChildWatcher Lib/asyncio/unix_events.py /^class PidfdChildWatcher(AbstractChildWatcher):$/;" c +PidfdSignalTest Lib/test/test_signal.py /^class PidfdSignalTest(unittest.TestCase):$/;" c +PieDelims Lib/test/test_string.py /^ class PieDelims(Template):$/;" c function:TestTemplate.test_delimiter_override +Pipe Lib/multiprocessing/connection.py /^ def Pipe(duplex=True):$/;" f +Pipe Lib/multiprocessing/context.py /^ def Pipe(self, duplex=True):$/;" m class:BaseContext +Pipe Lib/multiprocessing/dummy/connection.py /^def Pipe(duplex=True):$/;" f +Pipe Lib/test/_test_multiprocessing.py /^ Pipe = staticmethod(multiprocessing.Pipe)$/;" v class:ProcessesMixin +Pipe Lib/test/_test_multiprocessing.py /^ Pipe = staticmethod(multiprocessing.dummy.Pipe)$/;" v class:ThreadsMixin +PipeClient Lib/multiprocessing/connection.py /^ def PipeClient(address):$/;" f +PipeConnection Lib/multiprocessing/connection.py /^ class PipeConnection(_ConnectionBase):$/;" c +PipeHandle Lib/asyncio/windows_utils.py /^class PipeHandle:$/;" c +PipeListener Lib/multiprocessing/connection.py /^ class PipeListener(object):$/;" c +PipeServer Lib/asyncio/windows_events.py /^class PipeServer(object):$/;" c +PipeTests Lib/test/test_asyncio/test_windows_utils.py /^class PipeTests(unittest.TestCase):$/;" c +PixelSizeTests Lib/test/test_tkinter/widget_tests.py /^class PixelSizeTests:$/;" c +PkgutilPEP302Tests Lib/test/test_pkgutil.py /^class PkgutilPEP302Tests(unittest.TestCase):$/;" c +PkgutilTests Lib/test/test_pkgutil.py /^class PkgutilTests(unittest.TestCase):$/;" c +Place Lib/tkinter/__init__.py /^class Place:$/;" c +PlaceHolder Lib/logging/__init__.py /^class PlaceHolder(object):$/;" c +PlaceTest Lib/test/test_tkinter/test_geometry_managers.py /^class PlaceTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Plain Lib/test/test_enum.py /^ class Plain(Enum):$/;" c function:TestSpecial.test_introspection +Plain Tools/peg_generator/pegen/grammar.py /^Plain = Union[Leaf, Group]$/;" v +PlainEnum Lib/test/test_enum.py /^ class PlainEnum(Enum):$/;" c function:TestSpecial.test_dir_with_custom_dunders +PlainToken Lib/lib2to3/pgen2/tokenize.py /^PlainToken = group(Number, Funny, String, Name)$/;" v +PlainToken Lib/tokenize.py /^PlainToken = group(Number, Funny, String, Name)$/;" v +Planet Lib/test/test_enum.py /^ class Planet(Enum):$/;" c function:TestSpecial.test_init +Platform Tools/wasm/wasm_build.py /^class Platform:$/;" c +PlatformTest Lib/test/test_platform.py /^class PlatformTest(unittest.TestCase):$/;" c +PlaySoundTest Lib/test/test_winsound.py /^class PlaySoundTest(unittest.TestCase):$/;" c +PlistFormat Lib/plistlib.py /^PlistFormat = enum.Enum('PlistFormat', 'FMT_XML FMT_BINARY', module=__name__)$/;" v +PluralFormsTestCase Lib/test/test_gettext.py /^class PluralFormsTestCase(GettextBaseTest):$/;" c +Point Lib/test/test_collections.py /^ class Point(namedtuple('_Point', ['x', 'y'])):$/;" c function:TestNamedTuple.test_namedtuple_subclass_issue_24931 +Point Lib/test/test_ctypes/test_pep3118.py /^class Point(Structure):$/;" c +Point Lib/test/test_dataclasses.py /^ class Point:$/;" c class:TestCase.test_disallowed_mutable_defaults.Subclass +Point Lib/test/test_dataclasses.py /^ class Point:$/;" c function:TestCase.test_disallowed_mutable_defaults +Point Lib/test/test_dataclasses.py /^ class Point:$/;" c function:TestCase.test_not_tuple +Point Lib/test/test_patma.py /^class Point:$/;" c +Point Lib/test/test_pydoc.py /^ class Point:$/;" c function:TestDescriptions.test_slot_descriptor +Point Lib/test/test_typing.py /^class Point(Coordinate, Protocol):$/;" c +Point2 Lib/test/test_ctypes/test_pep3118.py /^class Point2(Structure):$/;" c +Point2D Lib/test/test_types.py /^ class Point2D(typing.TypedDict):$/;" c function:UnionTests.test_or_type_operator_with_TypedDict +Point2D Lib/test/test_typing.py /^class Point2D(TypedDict):$/;" c +Point2DGeneric Lib/test/test_typing.py /^class Point2DGeneric(Generic[T], TypedDict):$/;" c +Point2Dor3D Lib/test/test_typing.py /^ class Point2Dor3D(Point2D, total=False):$/;" c function:TypedDictTests.test_optional_keys +Point3D Lib/test/test_dataclasses.py /^ class Point3D:$/;" c function:TestCase.test_not_other_dataclass +Point3D Lib/test/test_typing.py /^ class Point3D(Point2DGeneric[T], Generic[KT]):$/;" c class:TypedDictTests.test_generic_inheritance.Point3D +Point3D Lib/test/test_typing.py /^ class Point3D(Point2DGeneric[T], Generic[T, KT]):$/;" c function:TypedDictTests.test_generic_inheritance +Point3Dv1 Lib/test/test_dataclasses.py /^ class Point3Dv1:$/;" c function:TestCase.test_not_other_dataclass +PointEndPad Lib/test/test_ctypes/test_pep3118.py /^class PointEndPad(Structure):$/;" c +PointInRect Modules/_ctypes/_ctypes_test.c /^EXPORT(int) PointInRect(RECT *prc, POINT pt)$/;" f +PointMidPad Lib/test/test_ctypes/test_pep3118.py /^class PointMidPad(Structure):$/;" c +PointerMemberTestCase Lib/test/test_ctypes/test_structures.py /^class PointerMemberTestCase(unittest.TestCase):$/;" c +PointerObject_Check Modules/_ctypes/ctypes.h 184;" d +PointerTestCase Lib/test/test_ctypes/test_keeprefs.py /^class PointerTestCase(unittest.TestCase):$/;" c +PointerToStructure Lib/test/test_ctypes/test_keeprefs.py /^class PointerToStructure(unittest.TestCase):$/;" c +Pointer_as_mapping Modules/_ctypes/_ctypes.c /^static PyMappingMethods Pointer_as_mapping = {$/;" v file: +Pointer_as_number Modules/_ctypes/_ctypes.c /^static PyNumberMethods Pointer_as_number = {$/;" v file: +Pointer_as_sequence Modules/_ctypes/_ctypes.c /^static PySequenceMethods Pointer_as_sequence = {$/;" v file: +Pointer_ass_item Modules/_ctypes/_ctypes.c /^Pointer_ass_item(PyObject *myself, Py_ssize_t index, PyObject *value)$/;" f file: +Pointer_bool Modules/_ctypes/_ctypes.c /^Pointer_bool(CDataObject *self)$/;" f file: +Pointer_get_contents Modules/_ctypes/_ctypes.c /^Pointer_get_contents(CDataObject *self, void *closure)$/;" f file: +Pointer_getsets Modules/_ctypes/_ctypes.c /^static PyGetSetDef Pointer_getsets[] = {$/;" v file: +Pointer_init Modules/_ctypes/_ctypes.c /^Pointer_init(CDataObject *self, PyObject *args, PyObject *kw)$/;" f file: +Pointer_item Modules/_ctypes/_ctypes.c /^Pointer_item(PyObject *myself, Py_ssize_t index)$/;" f file: +Pointer_new Modules/_ctypes/_ctypes.c /^Pointer_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +Pointer_set_contents Modules/_ctypes/_ctypes.c /^Pointer_set_contents(CDataObject *self, PyObject *value, void *closure)$/;" f file: +Pointer_subscript Modules/_ctypes/_ctypes.c /^Pointer_subscript(PyObject *myself, PyObject *item)$/;" f file: +PointersTestCase Lib/test/test_ctypes/test_pointers.py /^class PointersTestCase(unittest.TestCase):$/;" c +Pointfloat Lib/lib2to3/pgen2/tokenize.py /^Pointfloat = group(r'\\d+(?:_\\d+)*\\.(?:\\d+(?:_\\d+)*)?', r'\\.\\d+(?:_\\d+)*') + maybe(Exponent)$/;" v +Pointfloat Lib/tokenize.py /^Pointfloat = group(r'[0-9](?:_?[0-9])*\\.(?:[0-9](?:_?[0-9])*)?',$/;" v +PointlessComparator Lib/test/test_sort.py /^ class PointlessComparator:$/;" c function:TestOptimizedCompares.test_unsafe_object_compare +Policy Lib/email/_policybase.py /^class Policy(_PolicyBase, metaclass=abc.ABCMeta):$/;" c +Policy Lib/test/test_asyncio/test_events.py /^ class Policy(asyncio.DefaultEventLoopPolicy):$/;" c function:GetEventLoopTestsMixin.test_get_event_loop_returns_running_loop +PolicyAPITests Lib/test/test_email/test_policy.py /^class PolicyAPITests(unittest.TestCase):$/;" c +PolicyTests Lib/test/test_asyncio/test_events.py /^class PolicyTests(unittest.TestCase):$/;" c +PolicyTests Lib/test/test_asyncio/test_unix_events.py /^class PolicyTests(unittest.TestCase):$/;" c +PollEventLoopTests Lib/test/test_asyncio/test_events.py /^ test_utils.TestCase):$/;" c class:SubprocessTestsMixin.UnixEventLoopTestsMixin +PollEventLoopTests Lib/test/test_asyncio/test_sendfile.py /^ test_utils.TestCase):$/;" c class:SendfileTestsBase.ProactorEventLoopTests +PollEventLoopTests Lib/test/test_asyncio/test_sock_lowlevel.py /^ test_utils.TestCase):$/;" c class:BaseSockTestsMixin.ProactorEventLoopTests +PollSelector Lib/selectors.py /^ class PollSelector(_PollLikeSelector):$/;" c class:_PollLikeSelector +PollSelectorTestCase Lib/test/test_selectors.py /^ unittest.TestCase):$/;" c +PollTests Lib/test/test_poll.py /^class PollTests(unittest.TestCase):$/;" c +Pool Lib/multiprocessing/context.py /^ def Pool(self, processes=None, initializer=None, initargs=(),$/;" m class:BaseContext +Pool Lib/multiprocessing/dummy/__init__.py /^def Pool(processes=None, initializer=None, initargs=()):$/;" f +Pool Lib/multiprocessing/pool.py /^class Pool(object):$/;" c +Pool Lib/test/_test_multiprocessing.py /^ Pool = staticmethod(multiprocessing.Pool)$/;" v class:ProcessesMixin +Pool Lib/test/_test_multiprocessing.py /^ Pool = staticmethod(multiprocessing.dummy.Pool)$/;" v class:ThreadsMixin +Pool Lib/test/_test_multiprocessing.py /^ def Pool(cls, *args, **kwds):$/;" m class:ManagerMixin +PoolProxy Lib/multiprocessing/managers.py /^class PoolProxy(BasePoolProxy):$/;" c +Popen Lib/asyncio/windows_utils.py /^class Popen(subprocess.Popen):$/;" c +Popen Lib/multiprocessing/popen_fork.py /^class Popen(object):$/;" c +Popen Lib/multiprocessing/popen_forkserver.py /^class Popen(popen_fork.Popen):$/;" c +Popen Lib/multiprocessing/popen_spawn_posix.py /^class Popen(popen_fork.Popen):$/;" c +Popen Lib/multiprocessing/popen_spawn_win32.py /^class Popen(object):$/;" c +Popen Lib/subprocess.py /^class Popen:$/;" c +PopenExecuteChildRaises Lib/test/test_subprocess.py /^class PopenExecuteChildRaises(subprocess.Popen):$/;" c +PopenMock Lib/test/test_webbrowser.py /^class PopenMock(mock.MagicMock):$/;" c +PopenNoDestructor Lib/test/test_subprocess.py /^ class PopenNoDestructor(subprocess.Popen):$/;" c class:POSIXProcessTestCase +PopenTest Lib/test/test_popen.py /^class PopenTest(unittest.TestCase):$/;" c +PopenTestException Lib/test/test_subprocess.py /^class PopenTestException(Exception):$/;" c +PopenTests Lib/test/test_asyncio/test_windows_utils.py /^class PopenTests(unittest.TestCase):$/;" c +PopupMenu Lib/tkinter/tix.py /^class PopupMenu(TixWidget):$/;" c +Pos Lib/tomllib/_types.py /^Pos = int$/;" v +PosInf Lib/json/decoder.py /^PosInf = float('inf')$/;" v +PosReturn Lib/test/test_codeccallbacks.py /^class PosReturn:$/;" c +Position Lib/test/test_typing.py /^class Position(XAxis, YAxis, Protocol):$/;" c +PositionTest Lib/test/test_pyexpat.py /^class PositionTest(unittest.TestCase):$/;" c +PositionalAction Lib/test/test_argparse.py /^ class PositionalAction(argparse.Action):$/;" c class:TestActionUserDefined +PositionalOnlyAndKeywords_TestCase Lib/test/test_capi/test_getargs.py /^class PositionalOnlyAndKeywords_TestCase(unittest.TestCase):$/;" c +PositionalOnlyTestCase Lib/test/test_positional_only_arg.py /^class PositionalOnlyTestCase(unittest.TestCase):$/;" c +Positions Lib/dis.py /^Positions = collections.namedtuple($/;" v +PositiveLookahead Tools/peg_generator/pegen/grammar.py /^class PositiveLookahead(Lookahead):$/;" c +PosixCommonTest Lib/test/test_posixpath.py /^class PosixCommonTest(test_genericpath.CommonTest, unittest.TestCase):$/;" c +PosixGroupsTester Lib/test/test_posix.py /^class PosixGroupsTester(unittest.TestCase):$/;" c +PosixPath Lib/pathlib.py /^class PosixPath(Path, PurePosixPath):$/;" c +PosixPathAsPureTest Lib/test/test_pathlib.py /^class PosixPathAsPureTest(PurePosixPathTest):$/;" c +PosixPathTest Lib/test/test_pathlib.py /^class PosixPathTest(_BasePathTest, unittest.TestCase):$/;" c +PosixPathTest Lib/test/test_posixpath.py /^class PosixPathTest(unittest.TestCase):$/;" c +PosixTester Lib/test/test_posix.py /^class PosixTester(unittest.TestCase):$/;" c +PosixTests Lib/test/test_signal.py /^class PosixTests(unittest.TestCase):$/;" c +PosixUidGidTests Lib/test/test_os.py /^class PosixUidGidTests(unittest.TestCase):$/;" c +PossiblyMutable Lib/test/test_buffer.py /^ class PossiblyMutable:$/;" c function:TestPythonBufferProtocol.test_buffer_flags +PostCallbackData Modules/overlapped.c /^struct PostCallbackData {$/;" s file: +PostToQueueCallback Modules/overlapped.c /^PostToQueueCallback(PVOID lpParameter, BOOLEAN TimerOrWaitFired)$/;" f file: +Pow Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" e enum:_operator +PowTest Lib/test/test_pow.py /^class PowTest(unittest.TestCase):$/;" c +Pow_singleton Include/internal/pycore_ast_state.h /^ PyObject *Pow_singleton;$/;" m struct:ast_state +Pow_type Include/internal/pycore_ast_state.h /^ PyObject *Pow_type;$/;" m struct:ast_state +PrepareInputSourceTest Lib/test/test_sax.py /^class PrepareInputSourceTest(unittest.TestCase):$/;" c +PrepareProtocolType Modules/_sqlite/module.h /^ PyTypeObject *PrepareProtocolType;$/;" m struct:__anon355 +Prepared Lib/importlib/metadata/__init__.py /^class Prepared:$/;" c +PreprocessError Tools/c-analyzer/distutils/errors.py /^class PreprocessError (CCompilerError):$/;" c +PreprocessorError Tools/c-analyzer/c_parser/preprocessor/errors.py /^class PreprocessorError(Exception):$/;" c +PreprocessorFailure Tools/c-analyzer/c_parser/preprocessor/errors.py /^class PreprocessorFailure(PreprocessorError):$/;" c +PreservePyIni Lib/test/test_launcher.py /^class PreservePyIni:$/;" c +PrettyPrintTests Lib/test/test_gdb.py /^class PrettyPrintTests(DebuggerTests):$/;" c +PrettyPrinter Lib/pprint.py /^class PrettyPrinter:$/;" c +PreviousDBVersion Modules/unicodedata.c /^} PreviousDBVersion;$/;" t typeref:struct:previous_version file: +PrintError Modules/_ctypes/callbacks.c /^PrintError(const char *msg, ...)$/;" f file: +PrintNameLength Modules/winreparse.h /^ USHORT PrintNameLength;$/;" m struct:__anon316::__anon317::__anon319 +PrintNameLength Modules/winreparse.h /^ USHORT PrintNameLength;$/;" m struct:__anon316::__anon317::__anon318 +PrintNameOffset Modules/winreparse.h /^ USHORT PrintNameOffset;$/;" m struct:__anon316::__anon317::__anon319 +PrintNameOffset Modules/winreparse.h /^ USHORT PrintNameOffset;$/;" m struct:__anon316::__anon317::__anon318 +PrintToLog Lib/test/test_ast.py /^ class PrintToLog(ast.NodeTransformer):$/;" c function:NodeTransformerTests.test_node_mutate +PrintToLog Lib/test/test_ast.py /^ class PrintToLog(ast.NodeTransformer):$/;" c function:NodeTransformerTests.test_node_replace +Printer Lib/test/test_sqlite3/test_regression.py /^ class Printer:$/;" c function:RegressionTests.test_bpo37347 +Printer Tools/build/deepfreeze.py /^class Printer:$/;" c +Printer Tools/build/generate_global_objects.py /^class Printer:$/;" c +Printer Tools/c-analyzer/c_common/logging.py /^class Printer:$/;" c +PriorityQueue Lib/asyncio/queues.py /^class PriorityQueue(Queue):$/;" c +PriorityQueue Lib/queue.py /^class PriorityQueue(Queue):$/;" c +PriorityQueueJoinTests Lib/test/test_asyncio/test_queues.py /^class PriorityQueueJoinTests(_QueueJoinTestMixin, unittest.IsolatedAsyncioTestCase):$/;" c +PriorityQueueTest Lib/test/test_queue.py /^class PriorityQueueTest(BaseQueueTestMixin):$/;" c +PriorityQueueTests Lib/test/test_asyncio/test_queues.py /^class PriorityQueueTests(unittest.IsolatedAsyncioTestCase):$/;" c +Private Lib/test/test_enum.py /^ class Private(Enum):$/;" c function:TestSpecial.test_private_variable_is_normal_attribute +ProUser Lib/test/test_typing.py /^ class ProUser(User): pass$/;" c function:TypeTests.test_type_basic +ProUser Lib/test/test_typing.py /^ class ProUser(User): pass$/;" c function:TypeTests.test_type_typevar +ProUserId Lib/test/test_typing.py /^ class ProUserId(UserId):$/;" c function:NewTypeTests.test_error_message_when_subclassing +ProactorDatagramTransportTests Lib/test/test_asyncio/test_proactor_events.py /^class ProactorDatagramTransportTests(test_utils.TestCase):$/;" c +ProactorEventLoop Lib/asyncio/windows_events.py /^class ProactorEventLoop(proactor_events.BaseProactorEventLoop):$/;" c +ProactorEventLoopTests Lib/test/test_asyncio/test_events.py /^ test_utils.TestCase):$/;" c class:SubprocessTestsMixin +ProactorEventLoopTests Lib/test/test_asyncio/test_sendfile.py /^ test_utils.TestCase):$/;" c class:SendfileTestsBase +ProactorEventLoopTests Lib/test/test_asyncio/test_sock_lowlevel.py /^ test_utils.TestCase):$/;" c class:BaseSockTestsMixin +ProactorEventLoopUnixSockSendfileTests Lib/test/test_asyncio/test_proactor_events.py /^class ProactorEventLoopUnixSockSendfileTests(test_utils.TestCase):$/;" c +ProactorLoopCtrlC Lib/test/test_asyncio/test_windows_events.py /^class ProactorLoopCtrlC(test_utils.TestCase):$/;" c +ProactorMultithreading Lib/test/test_asyncio/test_windows_events.py /^class ProactorMultithreading(test_utils.TestCase):$/;" c +ProactorSocketTransportTests Lib/test/test_asyncio/test_proactor_events.py /^class ProactorSocketTransportTests(test_utils.TestCase):$/;" c +ProactorStartServerTests Lib/test/test_asyncio/test_server.py /^class ProactorStartServerTests(BaseStartServer, unittest.TestCase):$/;" c +ProactorStartTLSTests Lib/test/test_asyncio/test_sslproto.py /^class ProactorStartTLSTests(BaseStartTLS, unittest.TestCase):$/;" c +ProactorTests Lib/test/test_asyncio/test_windows_events.py /^class ProactorTests(test_utils.TestCase):$/;" c +ProcBodyType Modules/_tkinter.c /^ const Tcl_ObjType *ProcBodyType;$/;" m struct:__anon334 file: +Process Lib/asyncio/subprocess.py /^class Process:$/;" c +Process Lib/multiprocessing/context.py /^ Process = ForkProcess$/;" v class:.ForkContext +Process Lib/multiprocessing/context.py /^ Process = ForkServerProcess$/;" v class:.ForkServerContext +Process Lib/multiprocessing/context.py /^ Process = SpawnProcess$/;" v class:.SpawnContext +Process Lib/multiprocessing/context.py /^ Process = Process$/;" v class:DefaultContext +Process Lib/multiprocessing/context.py /^class Process(process.BaseProcess):$/;" c +Process Lib/multiprocessing/dummy/__init__.py /^Process = DummyProcess$/;" v +Process Lib/multiprocessing/pool.py /^ def Process(ctx, *args, **kwds):$/;" m class:Pool +Process Lib/multiprocessing/pool.py /^ def Process(ctx, *args, **kwds):$/;" m class:ThreadPool +Process Lib/test/_test_multiprocessing.py /^ Process = multiprocessing.Process$/;" v class:ManagerMixin +Process Lib/test/_test_multiprocessing.py /^ Process = multiprocessing.Process$/;" v class:ProcessesMixin +Process Lib/test/_test_multiprocessing.py /^ Process = multiprocessing.dummy.Process$/;" v class:ThreadsMixin +ProcessCommandLine Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT ProcessCommandLine(__inout LPWSTR* psczLanguage) {$/;" f class:PythonBootstrapperApplication file: +ProcessError Lib/multiprocessing/context.py /^ ProcessError = ProcessError$/;" v class:BaseContext +ProcessError Lib/multiprocessing/context.py /^class ProcessError(Exception):$/;" c +ProcessLocalSet Lib/multiprocessing/managers.py /^class ProcessLocalSet(set):$/;" c +ProcessPageControls Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void ProcessPageControls(THEME_PAGE *pPage) {$/;" f class:PythonBootstrapperApplication file: +ProcessPoolExecutor Lib/concurrent/futures/process.py /^class ProcessPoolExecutor(_base.Executor):$/;" c +ProcessPoolExecutorTest Lib/test/test_concurrent_futures/test_process_pool.py /^class ProcessPoolExecutorTest(ExecutorTest):$/;" c +ProcessPoolForkMixin Lib/test/test_concurrent_futures/util.py /^class ProcessPoolForkMixin(ExecutorMixin):$/;" c +ProcessPoolForkserverMixin Lib/test/test_concurrent_futures/util.py /^class ProcessPoolForkserverMixin(ExecutorMixin):$/;" c +ProcessPoolShutdownTest Lib/test/test_concurrent_futures/test_shutdown.py /^class ProcessPoolShutdownTest(ExecutorShutdownTest):$/;" c +ProcessPoolSpawnMixin Lib/test/test_concurrent_futures/util.py /^class ProcessPoolSpawnMixin(ExecutorMixin):$/;" c +ProcessSerialNumber Lib/test/support/__init__.py /^ class ProcessSerialNumber(Structure):$/;" c class:_is_gui_available.USEROBJECTFLAGS +ProcessTestCase Lib/test/test_subprocess.py /^class ProcessTestCase(BaseTestCase):$/;" c +ProcessTestCaseNoPoll Lib/test/test_subprocess.py /^class ProcessTestCaseNoPoll(ProcessTestCase):$/;" c +ProcessesMixin Lib/test/_test_multiprocessing.py /^class ProcessesMixin(BaseMixin):$/;" c +ProcessingInstruction Lib/xml/dom/minidom.py /^class ProcessingInstruction(Childless, Node):$/;" c +ProcessingInstruction Lib/xml/etree/ElementTree.py /^def ProcessingInstruction(target, text=None):$/;" f +ProcessingInstruction Modules/pyexpat.c /^ ProcessingInstruction,$/;" e enum:HandlerTypes file: +ProcessingInstructionHandler Lib/test/test_pyexpat.py /^ def ProcessingInstructionHandler(self, target, data):$/;" m class:ParseTest.Outputter +Processor Modules/expat/xmlparse.c /^typedef enum XML_Error PTRCALL Processor(XML_Parser parser, const char *start,$/;" t typeref:enum:Processor file: +Prod Lib/test/datetimetester.py /^ class Prod:$/;" c function:TestTimeDelta.test_issue31752 +Product Parser/asdl.py /^class Product(AST):$/;" c +ProductionCode Lib/test/test_unittest/testmock/testasync.py /^ class ProductionCode:$/;" c class:AsyncContextManagerTest +Profile Lib/cProfile.py /^class Profile(_lsprof.Profiler):$/;" c +Profile Lib/profile.py /^class Profile:$/;" c +ProfileBrowser Lib/pstats.py /^ class ProfileBrowser(cmd.Cmd):$/;" c function:f8 +ProfileHookTestCase Lib/test/test_sys_setprofile.py /^class ProfileHookTestCase(TestCaseBase):$/;" c +ProfileSimulator Lib/test/test_sys_setprofile.py /^class ProfileSimulator(HookWatcher):$/;" c +ProfileSimulatorTestCase Lib/test/test_sys_setprofile.py /^class ProfileSimulatorTestCase(TestCaseBase):$/;" c +ProfileTest Lib/test/test_profile.py /^class ProfileTest(unittest.TestCase):$/;" c +ProfilerContext Modules/_lsprof.c /^} ProfilerContext;$/;" t typeref:struct:_ProfilerContext file: +ProfilerEntry Modules/_lsprof.c /^} ProfilerEntry;$/;" t typeref:struct:_ProfilerEntry file: +ProfilerObject Modules/_lsprof.c /^} ProfilerObject;$/;" t typeref:struct:__anon362 file: +ProfilerSubEntry Modules/_lsprof.c /^} ProfilerSubEntry;$/;" t typeref:struct:_ProfilerSubEntry file: +ProgId Lib/msilib/schema.py /^ProgId = Table('ProgId')$/;" v +Program Lib/test/test_unittest/test_break.py /^ class Program(unittest.TestProgram):$/;" c function:TestBreak.testMainInstallsHandler +ProgramPriorityTests Lib/test/test_os.py /^class ProgramPriorityTests(unittest.TestCase):$/;" c +ProgrammingError Modules/_sqlite/connection.h /^ PyObject* ProgrammingError;$/;" m struct:__anon359 +ProgrammingError Modules/_sqlite/module.h /^ PyObject *ProgrammingError;$/;" m struct:__anon355 +ProgramsTestCase Lib/test/test_regrtest.py /^class ProgramsTestCase(BaseTestCase):$/;" c +ProgressBar Tools/unittestgui/unittestgui.py /^class ProgressBar(tk.Frame):$/;" c +ProgressTests Lib/test/test_sqlite3/test_hooks.py /^class ProgressTests(unittest.TestCase):$/;" c +Progressbar Lib/tkinter/ttk.py /^class Progressbar(Widget):$/;" c +ProgressbarTest Lib/test/test_ttk/test_widgets.py /^class ProgressbarTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Propertied Lib/test/test_inspect.py /^ class Propertied:$/;" c function:TestIsDataDescriptor.test_property +Property Lib/msilib/schema.py /^Property = Table('Property')$/;" v +Property Lib/test/test_tkinter/test_misc.py /^ Property = '28'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Property Lib/tkinter/__init__.py /^ Property = '28'$/;" v class:EventType +PropertyBase Lib/test/test_dynamicclassattribute.py /^class PropertyBase(Exception):$/;" c +PropertyBase Lib/test/test_property.py /^class PropertyBase(Exception):$/;" c +PropertyDel Lib/test/test_dynamicclassattribute.py /^class PropertyDel(PropertyBase):$/;" c +PropertyDel Lib/test/test_property.py /^class PropertyDel(PropertyBase):$/;" c +PropertyDocBase Lib/test/test_dynamicclassattribute.py /^class PropertyDocBase(object):$/;" c +PropertyDocBase Lib/test/test_property.py /^class PropertyDocBase(object):$/;" c +PropertyDocSub Lib/test/test_dynamicclassattribute.py /^class PropertyDocSub(PropertyDocBase):$/;" c +PropertyDocSub Lib/test/test_property.py /^class PropertyDocSub(PropertyDocBase):$/;" c +PropertyGet Lib/test/test_dynamicclassattribute.py /^class PropertyGet(PropertyBase):$/;" c +PropertyGet Lib/test/test_property.py /^class PropertyGet(PropertyBase):$/;" c +PropertyMock Lib/unittest/mock.py /^class PropertyMock(Mock):$/;" c +PropertyNewGetter Lib/test/test_dynamicclassattribute.py /^class PropertyNewGetter(object):$/;" c +PropertyNewGetter Lib/test/test_property.py /^class PropertyNewGetter(object):$/;" c +PropertySet Lib/test/test_dynamicclassattribute.py /^class PropertySet(PropertyBase):$/;" c +PropertySet Lib/test/test_property.py /^class PropertySet(PropertyBase):$/;" c +PropertySub Lib/test/test_dynamicclassattribute.py /^class PropertySub(DynamicClassAttribute):$/;" c +PropertySub Lib/test/test_property.py /^class PropertySub(property):$/;" c +PropertySubNewGetter Lib/test/test_dynamicclassattribute.py /^class PropertySubNewGetter(BaseClass):$/;" c +PropertySubNewGetter Lib/test/test_property.py /^class PropertySubNewGetter(BaseClass):$/;" c +PropertySubSlots Lib/test/test_dynamicclassattribute.py /^class PropertySubSlots(DynamicClassAttribute):$/;" c +PropertySubSlots Lib/test/test_property.py /^class PropertySubSlots(property):$/;" c +PropertySubWoDoc Lib/test/test_property.py /^class PropertySubWoDoc(property):$/;" c +PropertySubclassTests Lib/test/test_dynamicclassattribute.py /^class PropertySubclassTests(unittest.TestCase):$/;" c +PropertySubclassTests Lib/test/test_property.py /^class PropertySubclassTests(unittest.TestCase):$/;" c +PropertyTests Lib/test/test_dynamicclassattribute.py /^class PropertyTests(unittest.TestCase):$/;" c +PropertyTests Lib/test/test_property.py /^class PropertyTests(unittest.TestCase):$/;" c +PropertyUnreachableAttributeNoName Lib/test/test_property.py /^class PropertyUnreachableAttributeNoName(_PropertyUnreachableAttribute, unittest.TestCase):$/;" c +PropertyUnreachableAttributeWithName Lib/test/test_property.py /^class PropertyUnreachableAttributeWithName(_PropertyUnreachableAttribute, unittest.TestCase):$/;" c +PropertyWritableDoc Lib/test/test_property.py /^ class PropertyWritableDoc(object):$/;" c function:PropertyTests.test_property_decorator_doc_writable +Proto Lib/test/test_asyncio/test_sslproto.py /^ class Proto(asyncio.BufferedProtocol):$/;" c function:BaseStartTLS.test_buf_feed_data +Proto Lib/test/test_types.py /^ class Proto(typing.Protocol):$/;" c function:UnionTests.test_or_type_operator_with_Protocol +Proto Lib/test/test_typing.py /^ class Proto(Protocol):$/;" c function:ProtocolTests.test_no_runtime_deco_on_nominal +Proto Lib/test/test_typing.py /^class Proto(Protocol):$/;" c +Protocol Lib/asyncio/protocols.py /^class Protocol(BaseProtocol):$/;" c +Protocol Lib/test/test_asyncio/test_ssl.py /^ class Protocol(asyncio.Protocol):$/;" c function:TestSSL.test_shutdown_timeout_handler_leak +Protocol Lib/test/test_asyncio/test_ssl.py /^ class Protocol(asyncio.Protocol):$/;" c function:TestSSL.test_shutdown_timeout_handler_not_set +Protocol Lib/typing.py /^class Protocol(Generic, metaclass=_ProtocolMeta):$/;" c +ProtocolError Lib/xmlrpc/client.py /^class ProtocolError(Error):$/;" c +ProtocolTests Lib/test/test_typing.py /^class ProtocolTests(BaseTestCase):$/;" c +ProtocolWithMethod Lib/test/test_typing.py /^ class ProtocolWithMethod(Protocol):$/;" c function:ProtocolTests.test_protocol_decorated_with_final_callable_members +ProtocolWithMixedMembers Lib/test/test_typing.py /^ class ProtocolWithMixedMembers(Protocol):$/;" c function:ProtocolTests.test_protocol_decorated_with_final_mixed_members +ProtocolWithNonCallableMember Lib/test/test_typing.py /^ class ProtocolWithNonCallableMember(Protocol):$/;" c function:ProtocolTests.test_protocol_decorated_with_final_noncallable_members +ProtocolsAbsTests Lib/test/test_asyncio/test_protocols.py /^class ProtocolsAbsTests(unittest.TestCase):$/;" c +PrototypeVisitor Parser/asdl_c.py /^class PrototypeVisitor(EmitVisitor):$/;" c +Provoker Lib/test/test_descr.py /^ class Provoker:$/;" c function:.test_weakref_segfault +Proxy Lib/test/test_descr.py /^ class Proxy(object):$/;" c function:.test_isinst_isclass +Proxy Lib/test/test_descr.py /^ class Proxy(object):$/;" c function:.test_proxy_super +Proxy Lib/test/test_descr.py /^ class Proxy(object):$/;" c function:.test_specials +Proxy Lib/test/test_unittest/testmock/testpatch.py /^ class Proxy(object):$/;" c function:_get_proxy +ProxyAlreadyVisited Tools/gdb/libpython.py /^class ProxyAlreadyVisited(object):$/;" c +ProxyAuthTests Lib/test/test_urllib2_localnet.py /^class ProxyAuthTests(unittest.TestCase):$/;" c +ProxyBasicAuthHandler Lib/urllib/request.py /^class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):$/;" c +ProxyDelItem Lib/test/test_capi/test_abstract.py /^class ProxyDelItem:$/;" c +ProxyDigestAuthHandler Lib/urllib/request.py /^class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):$/;" c +ProxyException Tools/gdb/libpython.py /^class ProxyException(Exception):$/;" c +ProxyGetItem Lib/test/test_capi/test_abstract.py /^class ProxyGetItem:$/;" c +ProxyHandler Lib/urllib/request.py /^class ProxyHandler(BaseHandler):$/;" c +ProxySetItem Lib/test/test_capi/test_abstract.py /^class ProxySetItem:$/;" c +ProxyTests Lib/test/test_urllib.py /^class ProxyTests(unittest.TestCase):$/;" c +ProxyTests_withOrderedEnv Lib/test/test_urllib.py /^class ProxyTests_withOrderedEnv(unittest.TestCase):$/;" c +ProxyTypes Lib/weakref.py /^ProxyTypes = (ProxyType, CallableProxyType)$/;" v +PseudoExtras Lib/lib2to3/pgen2/tokenize.py /^PseudoExtras = group(r'\\\\\\r?\\n', Comment, Triple)$/;" v +PseudoExtras Lib/tokenize.py /^PseudoExtras = group(r'\\\\\\r?\\n|\\Z', Comment, Triple)$/;" v +PseudoFloat Lib/test/test_unicode.py /^ class PseudoFloat:$/;" c function:UnicodeTest.test_formatting +PseudoInt Lib/test/test_unicode.py /^ class PseudoInt:$/;" c function:UnicodeTest.test_formatting +PseudoToken Lib/lib2to3/pgen2/tokenize.py /^PseudoToken = Whitespace + group(PseudoExtras, Number, Funny, ContStr, Name)$/;" v +PseudoToken Lib/tokenize.py /^PseudoToken = Whitespace + group(PseudoExtras, Number, Funny, ContStr, Name)$/;" v +PthFile Lib/test/test_site.py /^class PthFile(object):$/;" c +PtyTest Lib/test/test_pty.py /^class PtyTest(unittest.TestCase):$/;" c +PtyTests Lib/test/test_builtin.py /^class PtyTests(unittest.TestCase):$/;" c +PublicAPITests Lib/test/test_nntplib.py /^class PublicAPITests(unittest.TestCase):$/;" c +PublicAPITests Lib/test/test_shutil.py /^class PublicAPITests(unittest.TestCase):$/;" c +PublicAPITests Lib/test/test_warnings/__init__.py /^class PublicAPITests(BaseTest):$/;" c +PublishComponent Lib/msilib/schema.py /^PublishComponent = Table('PublishComponent')$/;" v +Publisher PC/layout/support/appxmanifest.py /^ Publisher=os.getenv($/;" v +PullDOM Lib/xml/dom/pulldom.py /^class PullDOM(xml.sax.ContentHandler):$/;" c +PullDOMTestCase Lib/test/test_pulldom.py /^class PullDOMTestCase(unittest.TestCase):$/;" c +PunycodeTest Lib/test/test_codecs.py /^class PunycodeTest(unittest.TestCase):$/;" c +PurePath Lib/pathlib.py /^class PurePath(object):$/;" c +PurePathSubclassTest Lib/test/test_pathlib.py /^class PurePathSubclassTest(_BasePurePathTest, unittest.TestCase):$/;" c +PurePathTest Lib/test/test_pathlib.py /^class PurePathTest(_BasePurePathTest, unittest.TestCase):$/;" c +PurePosixPath Lib/pathlib.py /^class PurePosixPath(PurePath):$/;" c +PurePosixPathTest Lib/test/test_pathlib.py /^class PurePosixPathTest(_BasePurePathTest, unittest.TestCase):$/;" c +PureProxy Lib/test/smtpd.py /^class PureProxy(SMTPServer):$/;" c +PurePythonExceptionFormattingMixin Lib/test/test_traceback.py /^class PurePythonExceptionFormattingMixin:$/;" c +PurePythonGeneralMappingTests Lib/test/test_ordered_dict.py /^class PurePythonGeneralMappingTests(mapping_tests.BasicTestMappingProtocol):$/;" c +PurePythonOrderedDictSubclassTests Lib/test/test_ordered_dict.py /^class PurePythonOrderedDictSubclassTests(PurePythonOrderedDictTests):$/;" c +PurePythonOrderedDictTests Lib/test/test_ordered_dict.py /^class PurePythonOrderedDictTests(OrderedDictTests, unittest.TestCase):$/;" c +PurePythonOrderedDictWithSlotsCopyingTests Lib/test/test_ordered_dict.py /^class PurePythonOrderedDictWithSlotsCopyingTests(unittest.TestCase):$/;" c +PurePythonSubclassMappingTests Lib/test/test_ordered_dict.py /^class PurePythonSubclassMappingTests(mapping_tests.BasicTestMappingProtocol):$/;" c +PurePythonSuggestionFormattingTests Lib/test/test_traceback.py /^):$/;" c +PurePythonTracebackErrorCaretTests Lib/test/test_traceback.py /^):$/;" c +PureWindowsPath Lib/pathlib.py /^class PureWindowsPath(PurePath):$/;" c +PureWindowsPathTest Lib/test/test_pathlib.py /^class PureWindowsPathTest(_BasePurePathTest, unittest.TestCase):$/;" c +Purpose Lib/ssl.py /^class Purpose(_ASN1Object, _Enum):$/;" c +PutRequest Lib/test/test_urllib2.py /^ class PutRequest(Request):$/;" c class:RequestTests +PwdTest Lib/test/test_pwd.py /^class PwdTest(unittest.TestCase):$/;" c +Py2Reg PC/winreg.c /^Py2Reg(PyObject *value, DWORD typ, BYTE **retDataBuf, DWORD *retDataSize)$/;" f file: +PyAIter_Check Objects/abstract.c /^PyAIter_Check(PyObject *obj)$/;" f +PyAPI_DATA Include/pyport.h 513;" d +PyAPI_DATA Include/pyport.h 530;" d +PyAPI_DATA Include/pyport.h 546;" d +PyAPI_FUNC Include/pyport.h 512;" d +PyAPI_FUNC Include/pyport.h 528;" d +PyAPI_FUNC Include/pyport.h 543;" d +PyAPI_FUNC Objects/unicodeobject.c /^PyAPI_FUNC(Py_ssize_t)$/;" f +PyASCIIObject Include/cpython/unicodeobject.h /^} PyASCIIObject;$/;" t typeref:struct:__anon231 +PyAST_Check Python/Python-ast.c /^int PyAST_Check(PyObject* obj)$/;" f +PyAST_mod2obj Python/Python-ast.c /^PyObject* PyAST_mod2obj(mod_ty t)$/;" f +PyAST_obj2mod Python/Python-ast.c /^mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)$/;" f +PyAbstractMethod Doc/tools/extensions/pyspecific.py /^class PyAbstractMethod(PyMethod):$/;" c +PyAnextAwaitable_New Objects/iterobject.c /^PyAnextAwaitable_New(PyObject *awaitable, PyObject *default_value)$/;" f +PyAnySet_Check Include/setobject.h 30;" d +PyAnySet_CheckExact Include/setobject.h 28;" d +PyArena Include/internal/pycore_pyarena.h /^typedef struct _arena PyArena;$/;" t typeref:struct:_arena +PyArg_Parse Include/modsupport.h 15;" d +PyArg_Parse Python/getargs.c /^PyArg_Parse(PyObject *args, const char *format, ...)$/;" f +PyArg_ParseTuple Include/modsupport.h 16;" d +PyArg_ParseTuple Python/getargs.c /^PyArg_ParseTuple(PyObject *args, const char *format, ...)$/;" f +PyArg_ParseTupleAndKeywords Include/modsupport.h 17;" d +PyArg_ParseTupleAndKeywords Modules/_testcapi/getargs.c 819;" d file: +PyArg_ParseTupleAndKeywords Python/getargs.c /^PyArg_ParseTupleAndKeywords(PyObject *args,$/;" f +PyArg_UnpackTuple Python/getargs.c /^PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, ...)$/;" f +PyArg_VaParse Include/modsupport.h 18;" d +PyArg_VaParse Python/getargs.c /^PyArg_VaParse(PyObject *args, const char *format, va_list va)$/;" f +PyArg_VaParseTupleAndKeywords Include/modsupport.h 19;" d +PyArg_VaParseTupleAndKeywords Python/getargs.c /^PyArg_VaParseTupleAndKeywords(PyObject *args,$/;" f +PyArg_ValidateKeywordArguments Python/getargs.c /^PyArg_ValidateKeywordArguments(PyObject *kwargs)$/;" f +PyArithmeticOperatorsTest Lib/test/test_decimal.py /^class PyArithmeticOperatorsTest(ArithmeticOperatorsTest, unittest.TestCase):$/;" c +PyAsyncGenASend Objects/genobject.c /^typedef struct PyAsyncGenASend {$/;" s file: +PyAsyncGenASend Objects/genobject.c /^} PyAsyncGenASend;$/;" t typeref:struct:PyAsyncGenASend file: +PyAsyncGenASend_CheckExact Include/cpython/genobject.h 80;" d +PyAsyncGenAThrow Objects/genobject.c /^typedef struct PyAsyncGenAThrow {$/;" s file: +PyAsyncGenAThrow Objects/genobject.c /^} PyAsyncGenAThrow;$/;" t typeref:struct:PyAsyncGenAThrow file: +PyAsyncGenObject Include/cpython/genobject.h /^} PyAsyncGenObject;$/;" t typeref:struct:__anon179 +PyAsyncGen_CheckExact Include/cpython/genobject.h 78;" d +PyAsyncGen_New Objects/genobject.c /^PyAsyncGen_New(PyFrameObject *f, PyObject *name, PyObject *qualname)$/;" f +PyAsyncGen_Type Objects/genobject.c /^PyTypeObject PyAsyncGen_Type = {$/;" v +PyAsyncMethods Include/cpython/object.h /^} PyAsyncMethods;$/;" t typeref:struct:__anon212 +PyAttributeErrorObject Include/cpython/pyerrors.h /^} PyAttributeErrorObject;$/;" t typeref:struct:__anon189 +PyAutoFileTests Lib/test/test_file.py /^class PyAutoFileTests(AutoFileTests, unittest.TestCase):$/;" c +PyAutoFileTests Lib/test/test_fileio.py /^class PyAutoFileTests(AutoFileTests, unittest.TestCase):$/;" c +PyAwaitableFunction Doc/tools/extensions/pyspecific.py /^class PyAwaitableFunction(PyAwaitableMixin, PyFunction):$/;" c +PyAwaitableMethod Doc/tools/extensions/pyspecific.py /^class PyAwaitableMethod(PyAwaitableMixin, PyMethod):$/;" c +PyAwaitableMixin Doc/tools/extensions/pyspecific.py /^class PyAwaitableMixin(object):$/;" c +PyBUF_ANY_CONTIGUOUS Include/pybuffer.h 121;" d +PyBUF_CONTIG Include/pybuffer.h 124;" d +PyBUF_CONTIG_RO Include/pybuffer.h 125;" d +PyBUF_C_CONTIGUOUS Include/pybuffer.h 119;" d +PyBUF_FORMAT Include/pybuffer.h 116;" d +PyBUF_FULL Include/pybuffer.h 133;" d +PyBUF_FULL_RO Include/pybuffer.h 134;" d +PyBUF_F_CONTIGUOUS Include/pybuffer.h 120;" d +PyBUF_INDIRECT Include/pybuffer.h 122;" d +PyBUF_MAX_NDIM Include/pybuffer.h 105;" d +PyBUF_ND Include/pybuffer.h 117;" d +PyBUF_READ Include/pybuffer.h 137;" d +PyBUF_RECORDS Include/pybuffer.h 130;" d +PyBUF_RECORDS_RO Include/pybuffer.h 131;" d +PyBUF_SIMPLE Include/pybuffer.h 108;" d +PyBUF_STRIDED Include/pybuffer.h 127;" d +PyBUF_STRIDED_RO Include/pybuffer.h 128;" d +PyBUF_STRIDES Include/pybuffer.h 118;" d +PyBUF_UNUSED Modules/_testbuffer.c 1278;" d file: +PyBUF_WRITABLE Include/pybuffer.h 109;" d +PyBUF_WRITE Include/pybuffer.h 138;" d +PyBUF_WRITEABLE Include/pybuffer.h 113;" d +PyBacktrace Tools/gdb/libpython.py /^class PyBacktrace(gdb.Command):$/;" c +PyBacktraceFull Tools/gdb/libpython.py /^class PyBacktraceFull(gdb.Command):$/;" c +PyBaseExceptionGroupObject Include/cpython/pyerrors.h /^} PyBaseExceptionGroupObject;$/;" t typeref:struct:__anon181 +PyBaseExceptionObject Include/cpython/pyerrors.h /^} PyBaseExceptionObject;$/;" t typeref:struct:__anon180 +PyBaseExceptionObjectPtr Tools/gdb/libpython.py /^class PyBaseExceptionObjectPtr(PyObjectPtr):$/;" c +PyBaseObject_Type Objects/typeobject.c /^PyTypeObject PyBaseObject_Type = {$/;" v +PyBoolObjectPtr Tools/gdb/libpython.py /^class PyBoolObjectPtr(PyLongObjectPtr):$/;" c +PyBool_Check Include/boolobject.h 12;" d +PyBool_FromLong Objects/boolobject.c /^PyObject *PyBool_FromLong(long ok)$/;" f +PyBool_Type Objects/boolobject.c /^PyTypeObject PyBool_Type = {$/;" v +PyBtTests Lib/test/test_gdb.py /^class PyBtTests(DebuggerTests):$/;" c +PyBufferProcs Include/cpython/object.h /^} PyBufferProcs;$/;" t typeref:struct:__anon213 +PyBufferSizeTest Lib/test/test_bufio.py /^class PyBufferSizeTest(BufferSizeTest, unittest.TestCase):$/;" c +PyBufferWrapper Objects/typeobject.c /^} PyBufferWrapper;$/;" t typeref:struct:_PyBufferWrapper file: +PyBuffer_FillContiguousStrides Objects/abstract.c /^PyBuffer_FillContiguousStrides(int nd, Py_ssize_t *shape,$/;" f +PyBuffer_FillInfo Objects/abstract.c /^PyBuffer_FillInfo(Py_buffer *view, PyObject *obj, void *buf, Py_ssize_t len,$/;" f +PyBuffer_FromContiguous Objects/abstract.c /^PyBuffer_FromContiguous(const Py_buffer *view, const void *buf, Py_ssize_t len, char fort)$/;" f +PyBuffer_GetPointer Objects/abstract.c /^PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices)$/;" f +PyBuffer_IsContiguous Objects/abstract.c /^PyBuffer_IsContiguous(const Py_buffer *view, char order)$/;" f +PyBuffer_Release Objects/abstract.c /^PyBuffer_Release(Py_buffer *view)$/;" f +PyBuffer_SizeFromFormat Objects/abstract.c /^PyBuffer_SizeFromFormat(const char *format)$/;" f +PyBuffer_ToContiguous Objects/memoryobject.c /^PyBuffer_ToContiguous(void *buf, const Py_buffer *src, Py_ssize_t len, char order)$/;" f +PyBufferedIOBase_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyBufferedIOBase_Type;$/;" m struct:_io_state +PyBufferedRWPairTest Lib/test/test_io.py /^class PyBufferedRWPairTest(BufferedRWPairTest):$/;" c +PyBufferedRWPair_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyBufferedRWPair_Type;$/;" m struct:_io_state +PyBufferedRandomTest Lib/test/test_io.py /^class PyBufferedRandomTest(BufferedRandomTest):$/;" c +PyBufferedRandom_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyBufferedRandom_Type;$/;" m struct:_io_state +PyBufferedReaderTest Lib/test/test_io.py /^class PyBufferedReaderTest(BufferedReaderTest):$/;" c +PyBufferedReader_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyBufferedReader_Type;$/;" m struct:_io_state +PyBufferedWriterTest Lib/test/test_io.py /^class PyBufferedWriterTest(BufferedWriterTest):$/;" c +PyBufferedWriter_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyBufferedWriter_Type;$/;" m struct:_io_state +PyByteArrayIter_Type Objects/bytearrayobject.c /^PyTypeObject PyByteArrayIter_Type = {$/;" v +PyByteArrayObject Include/cpython/bytearrayobject.h /^} PyByteArrayObject;$/;" t typeref:struct:__anon204 +PyByteArrayObject_converter Tools/clinic/clinic.py /^class PyByteArrayObject_converter(CConverter):$/;" c +PyByteArray_AS_STRING Include/cpython/bytearrayobject.h /^static inline char* PyByteArray_AS_STRING(PyObject *op)$/;" f +PyByteArray_AS_STRING Include/cpython/bytearrayobject.h 28;" d +PyByteArray_AsString Objects/bytearrayobject.c /^PyByteArray_AsString(PyObject *self)$/;" f +PyByteArray_Check Include/bytearrayobject.h 24;" d +PyByteArray_CheckExact Include/bytearrayobject.h 25;" d +PyByteArray_Concat Objects/bytearrayobject.c /^PyByteArray_Concat(PyObject *a, PyObject *b)$/;" f +PyByteArray_FromObject Objects/bytearrayobject.c /^PyByteArray_FromObject(PyObject *input)$/;" f +PyByteArray_FromStringAndSize Objects/bytearrayobject.c /^PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size)$/;" f +PyByteArray_GET_SIZE Include/cpython/bytearrayobject.h /^static inline Py_ssize_t PyByteArray_GET_SIZE(PyObject *op) {$/;" f +PyByteArray_GET_SIZE Include/cpython/bytearrayobject.h 34;" d +PyByteArray_Resize Objects/bytearrayobject.c /^PyByteArray_Resize(PyObject *self, Py_ssize_t requested_size)$/;" f +PyByteArray_Size Objects/bytearrayobject.c /^PyByteArray_Size(PyObject *self)$/;" f +PyByteArray_Type Objects/bytearrayobject.c /^PyTypeObject PyByteArray_Type = {$/;" v +PyBytesIOBuffer_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyBytesIOBuffer_Type;$/;" m struct:_io_state +PyBytesIOTest Lib/test/test_memoryio.py /^class PyBytesIOTest(MemoryTestMixin, MemorySeekTestMixin, unittest.TestCase):$/;" c +PyBytesIO_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyBytesIO_Type;$/;" m struct:_io_state +PyBytesIter_Type Objects/bytesobject.c /^PyTypeObject PyBytesIter_Type = {$/;" v +PyBytesObject Include/cpython/bytesobject.h /^} PyBytesObject;$/;" t typeref:struct:__anon173 +PyBytesObjectPtr Tools/gdb/libpython.py /^class PyBytesObjectPtr(PyObjectPtr):$/;" c +PyBytesObject_SIZE Objects/bytesobject.c 33;" d file: +PyBytesObject_converter Tools/clinic/clinic.py /^class PyBytesObject_converter(CConverter):$/;" c +PyBytes_AS_STRING Include/cpython/bytesobject.h /^static inline char* PyBytes_AS_STRING(PyObject *op)$/;" f +PyBytes_AS_STRING Include/cpython/bytesobject.h 39;" d +PyBytes_AsString Objects/bytesobject.c /^PyBytes_AsString(PyObject *op)$/;" f +PyBytes_AsStringAndSize Objects/bytesobject.c /^PyBytes_AsStringAndSize(PyObject *obj,$/;" f +PyBytes_Check Include/bytesobject.h 30;" d +PyBytes_CheckExact Include/bytesobject.h 32;" d +PyBytes_Concat Objects/bytesobject.c /^PyBytes_Concat(PyObject **pv, PyObject *w)$/;" f +PyBytes_ConcatAndDel Objects/bytesobject.c /^PyBytes_ConcatAndDel(PyObject **pv, PyObject *w)$/;" f +PyBytes_DecodeEscape Objects/bytesobject.c /^PyObject *PyBytes_DecodeEscape(const char *s,$/;" f +PyBytes_FromFormat Objects/bytesobject.c /^PyBytes_FromFormat(const char *format, ...)$/;" f +PyBytes_FromFormatV Objects/bytesobject.c /^PyBytes_FromFormatV(const char *format, va_list vargs)$/;" f +PyBytes_FromObject Objects/bytesobject.c /^PyBytes_FromObject(PyObject *x)$/;" f +PyBytes_FromString Objects/bytesobject.c /^PyBytes_FromString(const char *str)$/;" f +PyBytes_FromStringAndSize Objects/bytesobject.c /^PyBytes_FromStringAndSize(const char *str, Py_ssize_t size)$/;" f +PyBytes_GET_SIZE Include/cpython/bytesobject.h /^static inline Py_ssize_t PyBytes_GET_SIZE(PyObject *op) {$/;" f +PyBytes_GET_SIZE Include/cpython/bytesobject.h 45;" d +PyBytes_Repr Objects/bytesobject.c /^PyBytes_Repr(PyObject *obj, int smartquotes)$/;" f +PyBytes_Size Objects/bytesobject.c /^PyBytes_Size(PyObject *op)$/;" f +PyBytes_Type Objects/bytesobject.c /^PyTypeObject PyBytes_Type = {$/;" v +PyCArgObject Modules/_ctypes/ctypes.h /^typedef struct tagPyCArgObject PyCArgObject;$/;" t typeref:struct:tagPyCArgObject +PyCArgObject_new Modules/_ctypes/callproc.c /^PyCArgObject_new(void)$/;" f +PyCArgType_members Modules/_ctypes/callproc.c /^static PyMemberDef PyCArgType_members[] = {$/;" v file: +PyCArg_CheckExact Modules/_ctypes/ctypes.h 354;" d +PyCArg_Type Modules/_ctypes/ctypes.h /^ PyTypeObject *PyCArg_Type;$/;" m struct:__anon491 +PyCArg_clear Modules/_ctypes/callproc.c /^PyCArg_clear(PyCArgObject *self)$/;" f file: +PyCArg_dealloc Modules/_ctypes/callproc.c /^PyCArg_dealloc(PyCArgObject *self)$/;" f file: +PyCArg_repr Modules/_ctypes/callproc.c /^PyCArg_repr(PyCArgObject *self)$/;" f file: +PyCArg_traverse Modules/_ctypes/callproc.c /^PyCArg_traverse(PyCArgObject *self, visitproc visit, void *arg)$/;" f file: +PyCArrayTypeObject_Check Modules/_ctypes/ctypes.h 182;" d +PyCArrayType_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCArrayType_Type = {$/;" v +PyCArrayType_from_ctype Modules/_ctypes/_ctypes.c /^PyCArrayType_from_ctype(PyObject *itemtype, Py_ssize_t length)$/;" f +PyCArrayType_new Modules/_ctypes/_ctypes.c /^PyCArrayType_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCArrayType_paramfunc Modules/_ctypes/_ctypes.c /^PyCArrayType_paramfunc(CDataObject *self)$/;" f file: +PyCArray_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCArray_Type = {$/;" v +PyCData_AtAddress Modules/_ctypes/_ctypes.c /^PyCData_AtAddress(PyObject *type, void *buf)$/;" f +PyCData_FromBaseObj Modules/_ctypes/_ctypes.c /^PyCData_FromBaseObj(PyObject *type, PyObject *base, Py_ssize_t index, char *adr)$/;" f +PyCData_GetContainer Modules/_ctypes/_ctypes.c /^PyCData_GetContainer(CDataObject *self)$/;" f file: +PyCData_MallocBuffer Modules/_ctypes/_ctypes.c /^static int PyCData_MallocBuffer(CDataObject *obj, StgDictObject *dict)$/;" f file: +PyCData_NewGetBuffer Modules/_ctypes/_ctypes.c /^PyCData_NewGetBuffer(PyObject *myself, Py_buffer *view, int flags)$/;" f file: +PyCData_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCData_Type = {$/;" v +PyCData_as_buffer Modules/_ctypes/_ctypes.c /^static PyBufferProcs PyCData_as_buffer = {$/;" v file: +PyCData_clear Modules/_ctypes/_ctypes.c /^PyCData_clear(CDataObject *self)$/;" f file: +PyCData_dealloc Modules/_ctypes/_ctypes.c /^PyCData_dealloc(PyObject *self)$/;" f file: +PyCData_from_outparam Modules/_ctypes/_ctypes.c /^PyCData_from_outparam(PyObject *self, PyObject *args)$/;" f file: +PyCData_get Modules/_ctypes/_ctypes.c /^PyCData_get(PyObject *type, GETFUNC getfunc, PyObject *src,$/;" f +PyCData_item_type Modules/_ctypes/_ctypes.c /^PyCData_item_type(PyObject *type)$/;" f file: +PyCData_members Modules/_ctypes/_ctypes.c /^static PyMemberDef PyCData_members[] = {$/;" v file: +PyCData_methods Modules/_ctypes/_ctypes.c /^static PyMethodDef PyCData_methods[] = {$/;" v file: +PyCData_nohash Modules/_ctypes/_ctypes.c /^PyCData_nohash(PyObject *self)$/;" f file: +PyCData_reduce Modules/_ctypes/_ctypes.c /^PyCData_reduce(PyObject *myself, PyObject *args)$/;" f file: +PyCData_set Modules/_ctypes/_ctypes.c /^PyCData_set(PyObject *dst, PyObject *type, SETFUNC setfunc, PyObject *value,$/;" f +PyCData_setstate Modules/_ctypes/_ctypes.c /^PyCData_setstate(PyObject *myself, PyObject *args)$/;" f file: +PyCData_traverse Modules/_ctypes/_ctypes.c /^PyCData_traverse(CDataObject *self, visitproc visit, void *arg)$/;" f file: +PyCF_ALLOW_INCOMPLETE_INPUT Include/cpython/compile.h 21;" d +PyCF_ALLOW_INCOMPLETE_INPUT Lib/codeop.py /^PyCF_ALLOW_INCOMPLETE_INPUT = 0x4000$/;" v +PyCF_ALLOW_TOP_LEVEL_AWAIT Include/cpython/compile.h 20;" d +PyCF_COMPILE_MASK Include/cpython/compile.h 22;" d +PyCF_DONT_IMPLY_DEDENT Include/cpython/compile.h 16;" d +PyCF_DONT_IMPLY_DEDENT Lib/codeop.py /^PyCF_DONT_IMPLY_DEDENT = 0x200$/;" v +PyCF_IGNORE_COOKIE Include/cpython/compile.h 18;" d +PyCF_MASK Include/cpython/compile.h 6;" d +PyCF_MASK_OBSOLETE Include/cpython/compile.h 10;" d +PyCF_ONLY_AST Include/cpython/compile.h 17;" d +PyCF_SOURCE_IS_UTF8 Include/cpython/compile.h 15;" d +PyCF_TYPE_COMMENTS Include/cpython/compile.h 19;" d +PyCField_FromDesc Modules/_ctypes/cfield.c /^PyCField_FromDesc(PyObject *desc, Py_ssize_t index,$/;" f +PyCField_Type Modules/_ctypes/ctypes.h /^ PyTypeObject *PyCField_Type;$/;" m struct:__anon491 +PyCField_clear Modules/_ctypes/cfield.c /^PyCField_clear(CFieldObject *self)$/;" f file: +PyCField_dealloc Modules/_ctypes/cfield.c /^PyCField_dealloc(PyObject *self)$/;" f file: +PyCField_get Modules/_ctypes/cfield.c /^PyCField_get(CFieldObject *self, PyObject *inst, PyTypeObject *type)$/;" f file: +PyCField_get_offset Modules/_ctypes/cfield.c /^PyCField_get_offset(PyObject *self, void *data)$/;" f file: +PyCField_get_size Modules/_ctypes/cfield.c /^PyCField_get_size(PyObject *self, void *data)$/;" f file: +PyCField_getset Modules/_ctypes/cfield.c /^static PyGetSetDef PyCField_getset[] = {$/;" v file: +PyCField_repr Modules/_ctypes/cfield.c /^PyCField_repr(CFieldObject *self)$/;" f file: +PyCField_set Modules/_ctypes/cfield.c /^PyCField_set(CFieldObject *self, PyObject *inst, PyObject *value)$/;" f file: +PyCField_traverse Modules/_ctypes/cfield.c /^PyCField_traverse(CFieldObject *self, visitproc visit, void *arg)$/;" f file: +PyCFuncPtrObject Modules/_ctypes/ctypes.h /^} PyCFuncPtrObject;$/;" t typeref:struct:__anon493 +PyCFuncPtrObject_Check Modules/_ctypes/ctypes.h 186;" d +PyCFuncPtrTypeObject_Check Modules/_ctypes/ctypes.h 187;" d +PyCFuncPtrType_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCFuncPtrType_Type = {$/;" v +PyCFuncPtrType_new Modules/_ctypes/_ctypes.c /^PyCFuncPtrType_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCFuncPtrType_paramfunc Modules/_ctypes/_ctypes.c /^PyCFuncPtrType_paramfunc(CDataObject *self)$/;" f file: +PyCFuncPtr_FromDll Modules/_ctypes/_ctypes.c /^PyCFuncPtr_FromDll(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCFuncPtr_FromVtblIndex Modules/_ctypes/_ctypes.c /^PyCFuncPtr_FromVtblIndex(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCFuncPtr_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCFuncPtr_Type = {$/;" v +PyCFuncPtr_as_number Modules/_ctypes/_ctypes.c /^static PyNumberMethods PyCFuncPtr_as_number = {$/;" v file: +PyCFuncPtr_bool Modules/_ctypes/_ctypes.c /^PyCFuncPtr_bool(PyCFuncPtrObject *self)$/;" f file: +PyCFuncPtr_call Modules/_ctypes/_ctypes.c /^PyCFuncPtr_call(PyCFuncPtrObject *self, PyObject *inargs, PyObject *kwds)$/;" f file: +PyCFuncPtr_clear Modules/_ctypes/_ctypes.c /^PyCFuncPtr_clear(PyCFuncPtrObject *self)$/;" f file: +PyCFuncPtr_dealloc Modules/_ctypes/_ctypes.c /^PyCFuncPtr_dealloc(PyCFuncPtrObject *self)$/;" f file: +PyCFuncPtr_get_argtypes Modules/_ctypes/_ctypes.c /^PyCFuncPtr_get_argtypes(PyCFuncPtrObject *self, void *Py_UNUSED(ignored))$/;" f file: +PyCFuncPtr_get_errcheck Modules/_ctypes/_ctypes.c /^PyCFuncPtr_get_errcheck(PyCFuncPtrObject *self, void *Py_UNUSED(ignored))$/;" f file: +PyCFuncPtr_get_restype Modules/_ctypes/_ctypes.c /^PyCFuncPtr_get_restype(PyCFuncPtrObject *self, void *Py_UNUSED(ignored))$/;" f file: +PyCFuncPtr_getsets Modules/_ctypes/_ctypes.c /^static PyGetSetDef PyCFuncPtr_getsets[] = {$/;" v file: +PyCFuncPtr_new Modules/_ctypes/_ctypes.c /^PyCFuncPtr_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCFuncPtr_repr Modules/_ctypes/_ctypes.c /^PyCFuncPtr_repr(PyCFuncPtrObject *self)$/;" f file: +PyCFuncPtr_set_argtypes Modules/_ctypes/_ctypes.c /^PyCFuncPtr_set_argtypes(PyCFuncPtrObject *self, PyObject *ob, void *Py_UNUSED(ignored))$/;" f file: +PyCFuncPtr_set_errcheck Modules/_ctypes/_ctypes.c /^PyCFuncPtr_set_errcheck(PyCFuncPtrObject *self, PyObject *ob, void *Py_UNUSED(ignored))$/;" f file: +PyCFuncPtr_set_restype Modules/_ctypes/_ctypes.c /^PyCFuncPtr_set_restype(PyCFuncPtrObject *self, PyObject *ob, void *Py_UNUSED(ignored))$/;" f file: +PyCFuncPtr_traverse Modules/_ctypes/_ctypes.c /^PyCFuncPtr_traverse(PyCFuncPtrObject *self, visitproc visit, void *arg)$/;" f file: +PyCFunction Include/methodobject.h /^typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);$/;" t +PyCFunctionObject Include/cpython/methodobject.h /^} PyCFunctionObject;$/;" t typeref:struct:__anon202 +PyCFunctionObjectPtr Tools/gdb/libpython.py /^class PyCFunctionObjectPtr(PyObjectPtr):$/;" c +PyCFunctionWithKeywords Include/methodobject.h /^typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,$/;" t +PyCFunction_Call Objects/call.c /^PyCFunction_Call(PyObject *callable, PyObject *args, PyObject *kwargs)$/;" f +PyCFunction_Check Include/methodobject.h 17;" d +PyCFunction_CheckExact Include/methodobject.h 16;" d +PyCFunction_GET_CLASS Include/cpython/methodobject.h /^static inline PyTypeObject* PyCFunction_GET_CLASS(PyObject *func_obj) {$/;" f +PyCFunction_GET_CLASS Include/cpython/methodobject.h 66;" d +PyCFunction_GET_FLAGS Include/cpython/methodobject.h /^static inline int PyCFunction_GET_FLAGS(PyObject *func) {$/;" f +PyCFunction_GET_FLAGS Include/cpython/methodobject.h 57;" d +PyCFunction_GET_FUNCTION Include/cpython/methodobject.h /^static inline PyCFunction PyCFunction_GET_FUNCTION(PyObject *func) {$/;" f +PyCFunction_GET_FUNCTION Include/cpython/methodobject.h 43;" d +PyCFunction_GET_SELF Include/cpython/methodobject.h /^static inline PyObject* PyCFunction_GET_SELF(PyObject *func_obj) {$/;" f +PyCFunction_GET_SELF Include/cpython/methodobject.h 52;" d +PyCFunction_GetFlags Objects/methodobject.c /^PyCFunction_GetFlags(PyObject *op)$/;" f +PyCFunction_GetFunction Objects/methodobject.c /^PyCFunction_GetFunction(PyObject *op)$/;" f +PyCFunction_GetSelf Objects/methodobject.c /^PyCFunction_GetSelf(PyObject *op)$/;" f +PyCFunction_New Include/methodobject.h 66;" d +PyCFunction_New Objects/methodobject.c /^PyCFunction_New(PyMethodDef *ml, PyObject *self)$/;" f +PyCFunction_New Objects/methodobject.c 12;" d file: +PyCFunction_NewEx Include/methodobject.h 73;" d +PyCFunction_NewEx Objects/methodobject.c /^PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module)$/;" f +PyCFunction_NewEx Objects/methodobject.c 14;" d file: +PyCFunction_Type Objects/methodobject.c /^PyTypeObject PyCFunction_Type = {$/;" v +PyCMethod Include/methodobject.h /^typedef PyObject *(*PyCMethod)(PyObject *, PyTypeObject *, PyObject *const *,$/;" t +PyCMethodObject Include/cpython/methodobject.h /^} PyCMethodObject;$/;" t typeref:struct:__anon203 +PyCMethod_Check Include/cpython/methodobject.h 35;" d +PyCMethod_CheckExact Include/cpython/methodobject.h 34;" d +PyCMethod_GetClass Objects/methodobject.c /^PyCMethod_GetClass(PyObject *op)$/;" f +PyCMethod_New Objects/methodobject.c /^PyCMethod_New(PyMethodDef *ml, PyObject *self, PyObject *module, PyTypeObject *cls)$/;" f +PyCMethod_Type Objects/methodobject.c /^PyTypeObject PyCMethod_Type = {$/;" v +PyCOND_BROADCAST Python/condvar.h /^PyCOND_BROADCAST(PyCOND_T *cv)$/;" f +PyCOND_BROADCAST Python/condvar.h 64;" d +PyCOND_FINI Python/condvar.h /^PyCOND_FINI(PyCOND_T *cv)$/;" f +PyCOND_FINI Python/condvar.h 62;" d +PyCOND_INIT Python/condvar.h /^PyCOND_INIT(PyCOND_T *cv)$/;" f +PyCOND_INIT Python/condvar.h 61;" d +PyCOND_SIGNAL Python/condvar.h /^PyCOND_SIGNAL(PyCOND_T *cv)$/;" f +PyCOND_SIGNAL Python/condvar.h 63;" d +PyCOND_T Include/internal/pycore_condvar.h /^typedef CONDITION_VARIABLE PyCOND_T;$/;" t +PyCOND_T Include/internal/pycore_condvar.h /^} PyCOND_T;$/;" t typeref:struct:_PyCOND_T +PyCOND_T Include/internal/pycore_condvar.h 28;" d +PyCOND_TIMEDWAIT Python/condvar.h /^PyCOND_TIMEDWAIT(PyCOND_T *cond, PyMUTEX_T *mut, long long us)$/;" f +PyCOND_TIMEDWAIT Python/condvar.h /^PyCOND_TIMEDWAIT(PyCOND_T *cv, PyMUTEX_T *cs, long long us)$/;" f +PyCOND_WAIT Python/condvar.h /^PyCOND_WAIT(PyCOND_T *cv, PyMUTEX_T *cs)$/;" f +PyCOND_WAIT Python/condvar.h 65;" d +PyCOperatorPickleTestCase Lib/test/test_operator.py /^class PyCOperatorPickleTestCase(OperatorPickleTestCase, unittest.TestCase):$/;" c +PyCPointerTypeObject_Check Modules/_ctypes/ctypes.h 185;" d +PyCPointerType_SetProto Modules/_ctypes/_ctypes.c /^PyCPointerType_SetProto(StgDictObject *stgdict, PyObject *proto)$/;" f file: +PyCPointerType_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCPointerType_Type = {$/;" v +PyCPointerType_from_param Modules/_ctypes/_ctypes.c /^PyCPointerType_from_param(PyObject *type, PyObject *value)$/;" f file: +PyCPointerType_methods Modules/_ctypes/_ctypes.c /^static PyMethodDef PyCPointerType_methods[] = {$/;" v file: +PyCPointerType_new Modules/_ctypes/_ctypes.c /^PyCPointerType_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCPointerType_paramfunc Modules/_ctypes/_ctypes.c /^PyCPointerType_paramfunc(CDataObject *self)$/;" f file: +PyCPointerType_set_type Modules/_ctypes/_ctypes.c /^PyCPointerType_set_type(PyTypeObject *self, PyObject *type)$/;" f file: +PyCPointer_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCPointer_Type = {$/;" v +PyCSimpleTypeObject_Check Modules/_ctypes/ctypes.h 160;" d +PyCSimpleTypeObject_CheckExact Modules/_ctypes/ctypes.h 159;" d +PyCSimpleType_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCSimpleType_Type = {$/;" v +PyCSimpleType_from_param Modules/_ctypes/_ctypes.c /^PyCSimpleType_from_param(PyObject *type, PyObject *value)$/;" f file: +PyCSimpleType_methods Modules/_ctypes/_ctypes.c /^static PyMethodDef PyCSimpleType_methods[] = {$/;" v file: +PyCSimpleType_new Modules/_ctypes/_ctypes.c /^PyCSimpleType_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCSimpleType_paramfunc Modules/_ctypes/_ctypes.c /^PyCSimpleType_paramfunc(CDataObject *self)$/;" f file: +PyCStgDict_Check Modules/_ctypes/ctypes.h 145;" d +PyCStgDict_CheckExact Modules/_ctypes/ctypes.h 144;" d +PyCStgDict_Type Modules/_ctypes/stgdict.c /^PyTypeObject PyCStgDict_Type = {$/;" v +PyCStgDict_clear Modules/_ctypes/stgdict.c /^PyCStgDict_clear(StgDictObject *self)$/;" f file: +PyCStgDict_clone Modules/_ctypes/stgdict.c /^PyCStgDict_clone(StgDictObject *dst, StgDictObject *src)$/;" f +PyCStgDict_dealloc Modules/_ctypes/stgdict.c /^PyCStgDict_dealloc(StgDictObject *self)$/;" f file: +PyCStgDict_init Modules/_ctypes/stgdict.c /^PyCStgDict_init(StgDictObject *self, PyObject *args, PyObject *kwds)$/;" f file: +PyCStgDict_methods Modules/_ctypes/stgdict.c /^static struct PyMethodDef PyCStgDict_methods[] = {$/;" v typeref:struct:PyMethodDef file: +PyCStgDict_sizeof Modules/_ctypes/stgdict.c /^PyCStgDict_sizeof(StgDictObject *self, void *unused)$/;" f file: +PyCStructTypeObject_Check Modules/_ctypes/ctypes.h 188;" d +PyCStructType_Type Modules/_ctypes/_ctypes.c /^PyTypeObject PyCStructType_Type = {$/;" v +PyCStructType_new Modules/_ctypes/_ctypes.c /^PyCStructType_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +PyCStructType_setattro Modules/_ctypes/_ctypes.c /^PyCStructType_setattro(PyObject *self, PyObject *key, PyObject *value)$/;" f file: +PyCStructUnionType_update_stgdict Modules/_ctypes/stgdict.c /^PyCStructUnionType_update_stgdict(PyObject *type, PyObject *fields, int isStruct)$/;" f +PyCThunk_Type Modules/_ctypes/ctypes.h /^ PyTypeObject *PyCThunk_Type;$/;" m struct:__anon491 +PyCallIter_Check Include/iterobject.h 19;" d +PyCallIter_New Objects/iterobject.c /^PyCallIter_New(PyObject *callable, PyObject *sentinel)$/;" f +PyCallIter_Type Objects/iterobject.c /^PyTypeObject PyCallIter_Type = {$/;" v +PyCallable_Check Objects/object.c /^PyCallable_Check(PyObject *x)$/;" f +PyCapsule Objects/capsule.c /^} PyCapsule;$/;" t typeref:struct:__anon726 file: +PyCapsule_CheckExact Include/pycapsule.h 25;" d +PyCapsule_Destructor Include/pycapsule.h /^typedef void (*PyCapsule_Destructor)(PyObject *);$/;" t +PyCapsule_GetContext Objects/capsule.c /^PyCapsule_GetContext(PyObject *o)$/;" f +PyCapsule_GetDestructor Objects/capsule.c /^PyCapsule_GetDestructor(PyObject *o)$/;" f +PyCapsule_GetName Objects/capsule.c /^PyCapsule_GetName(PyObject *o)$/;" f +PyCapsule_GetPointer Objects/capsule.c /^PyCapsule_GetPointer(PyObject *o, const char *name)$/;" f +PyCapsule_Import Objects/capsule.c /^PyCapsule_Import(const char *name, int no_block)$/;" f +PyCapsule_IsValid Objects/capsule.c /^PyCapsule_IsValid(PyObject *o, const char *name)$/;" f +PyCapsule_New Objects/capsule.c /^PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor)$/;" f +PyCapsule_SetContext Objects/capsule.c /^PyCapsule_SetContext(PyObject *o, void *context)$/;" f +PyCapsule_SetDestructor Objects/capsule.c /^PyCapsule_SetDestructor(PyObject *o, PyCapsule_Destructor destructor)$/;" f +PyCapsule_SetName Objects/capsule.c /^PyCapsule_SetName(PyObject *o, const char *name)$/;" f +PyCapsule_SetPointer Objects/capsule.c /^PyCapsule_SetPointer(PyObject *o, void *pointer)$/;" f +PyCapsule_Type Objects/capsule.c /^PyTypeObject PyCapsule_Type = {$/;" v +PyCatchWarningTests Lib/test/test_warnings/__init__.py /^class PyCatchWarningTests(CatchWarningTests, unittest.TestCase):$/;" c +PyCellObject Include/cpython/cellobject.h /^} PyCellObject;$/;" t typeref:struct:__anon246 +PyCell_Check Include/cpython/cellobject.h 18;" d +PyCell_GET Include/cpython/cellobject.h /^static inline PyObject* PyCell_GET(PyObject *op) {$/;" f +PyCell_GET Include/cpython/cellobject.h 30;" d +PyCell_Get Objects/cellobject.c /^PyCell_Get(PyObject *op)$/;" f +PyCell_New Objects/cellobject.c /^PyCell_New(PyObject *obj)$/;" f +PyCell_SET Include/cpython/cellobject.h /^static inline void PyCell_SET(PyObject *op, PyObject *value) {$/;" f +PyCell_SET Include/cpython/cellobject.h 38;" d +PyCell_Set Objects/cellobject.c /^PyCell_Set(PyObject *op, PyObject *value)$/;" f +PyCell_Type Objects/cellobject.c /^PyTypeObject PyCell_Type = {$/;" v +PyChainDispatchTableTests Lib/test/test_pickle.py /^class PyChainDispatchTableTests(AbstractDispatchTableTests, unittest.TestCase):$/;" c +PyClassMethodDescr_Type Objects/descrobject.c /^PyTypeObject PyClassMethodDescr_Type = {$/;" v +PyClassMethod_New Objects/funcobject.c /^PyClassMethod_New(PyObject *callable)$/;" f +PyClassMethod_Type Objects/funcobject.c /^PyTypeObject PyClassMethod_Type = {$/;" v +PyClassObjectPtr Tools/gdb/libpython.py /^class PyClassObjectPtr(PyObjectPtr):$/;" c +PyCloseFailureIO Lib/test/test_io.py /^class PyCloseFailureIO(CloseFailureIO, pyio.RawIOBase):$/;" c +PyCodeAddressRange Include/cpython/code.h /^} PyCodeAddressRange;$/;" t typeref:struct:_line_offsets +PyCodeEvent Include/cpython/code.h /^} PyCodeEvent;$/;" t typeref:enum:__anon230 +PyCodeObject Include/pytypedefs.h /^typedef struct PyCodeObject PyCodeObject;$/;" t typeref:struct:PyCodeObject +PyCodeObjectPtr Tools/gdb/libpython.py /^class PyCodeObjectPtr(PyObjectPtr):$/;" c +PyCode_AddWatcher Objects/codeobject.c /^PyCode_AddWatcher(PyCode_WatchCallback callback)$/;" f +PyCode_Addr2Line Objects/codeobject.c /^PyCode_Addr2Line(PyCodeObject *co, int addrq)$/;" f +PyCode_Addr2Location Objects/codeobject.c /^PyCode_Addr2Location(PyCodeObject *co, int addrq,$/;" f +PyCode_Check Include/cpython/code.h 214;" d +PyCode_ClearWatcher Objects/codeobject.c /^PyCode_ClearWatcher(int watcher_id)$/;" f +PyCode_GetCellvars Objects/codeobject.c /^PyCode_GetCellvars(PyCodeObject *code)$/;" f +PyCode_GetCode Objects/codeobject.c /^PyCode_GetCode(PyCodeObject *co)$/;" f +PyCode_GetFirstFree Include/cpython/code.h /^static inline int PyCode_GetFirstFree(PyCodeObject *op) {$/;" f +PyCode_GetFreevars Objects/codeobject.c /^PyCode_GetFreevars(PyCodeObject *code)$/;" f +PyCode_GetNumFree Include/cpython/code.h /^static inline Py_ssize_t PyCode_GetNumFree(PyCodeObject *op) {$/;" f +PyCode_GetVarnames Objects/codeobject.c /^PyCode_GetVarnames(PyCodeObject *code)$/;" f +PyCode_New Include/cpython/code.h /^PyCode_New($/;" f +PyCode_NewEmpty Objects/codeobject.c /^PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno)$/;" f +PyCode_NewWithPosOnlyArgs Include/cpython/code.h /^PyCode_NewWithPosOnlyArgs($/;" f +PyCode_Optimize Python/compile.c /^PyCode_Optimize(PyObject *code, PyObject* Py_UNUSED(consts),$/;" f +PyCode_Type Objects/codeobject.c /^PyTypeObject PyCode_Type = {$/;" v +PyCode_WatchCallback Include/cpython/code.h /^typedef int (*PyCode_WatchCallback)($/;" t +PyCodec_BackslashReplaceErrors Python/codecs.c /^PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc)$/;" f +PyCodec_Decode Python/codecs.c /^PyObject *PyCodec_Decode(PyObject *object,$/;" f +PyCodec_Decoder Python/codecs.c /^PyObject *PyCodec_Decoder(const char *encoding)$/;" f +PyCodec_Encode Python/codecs.c /^PyObject *PyCodec_Encode(PyObject *object,$/;" f +PyCodec_Encoder Python/codecs.c /^PyObject *PyCodec_Encoder(const char *encoding)$/;" f +PyCodec_IgnoreErrors Python/codecs.c /^PyObject *PyCodec_IgnoreErrors(PyObject *exc)$/;" f +PyCodec_IncrementalDecoder Python/codecs.c /^PyObject *PyCodec_IncrementalDecoder(const char *encoding,$/;" f +PyCodec_IncrementalEncoder Python/codecs.c /^PyObject *PyCodec_IncrementalEncoder(const char *encoding,$/;" f +PyCodec_KnownEncoding Python/codecs.c /^int PyCodec_KnownEncoding(const char *encoding)$/;" f +PyCodec_LookupError Python/codecs.c /^PyObject *PyCodec_LookupError(const char *name)$/;" f +PyCodec_NameReplaceErrors Python/codecs.c /^PyObject *PyCodec_NameReplaceErrors(PyObject *exc)$/;" f +PyCodec_Register Python/codecs.c /^int PyCodec_Register(PyObject *search_function)$/;" f +PyCodec_RegisterError Python/codecs.c /^int PyCodec_RegisterError(const char *name, PyObject *error)$/;" f +PyCodec_ReplaceErrors Python/codecs.c /^PyObject *PyCodec_ReplaceErrors(PyObject *exc)$/;" f +PyCodec_StreamReader Python/codecs.c /^PyObject *PyCodec_StreamReader(const char *encoding,$/;" f +PyCodec_StreamWriter Python/codecs.c /^PyObject *PyCodec_StreamWriter(const char *encoding,$/;" f +PyCodec_StrictErrors Python/codecs.c /^PyObject *PyCodec_StrictErrors(PyObject *exc)$/;" f +PyCodec_SurrogateEscapeErrors Python/codecs.c /^PyCodec_SurrogateEscapeErrors(PyObject *exc)$/;" f file: +PyCodec_SurrogatePassErrors Python/codecs.c /^PyCodec_SurrogatePassErrors(PyObject *exc)$/;" f file: +PyCodec_Unregister Python/codecs.c /^PyCodec_Unregister(PyObject *search_function)$/;" f +PyCodec_XMLCharRefReplaceErrors Python/codecs.c /^PyObject *PyCodec_XMLCharRefReplaceErrors(PyObject *exc)$/;" f +PyComError_Type Modules/_ctypes/ctypes.h /^ PyTypeObject *PyComError_Type;$/;" m struct:__anon491 +PyCompactUnicodeObject Include/cpython/unicodeobject.h /^} PyCompactUnicodeObject;$/;" t typeref:struct:__anon233 +PyCompileCLITestCase Lib/test/test_py_compile.py /^class PyCompileCLITestCase(unittest.TestCase):$/;" c +PyCompileError Lib/py_compile.py /^class PyCompileError(Exception):$/;" c +PyCompileTestsBase Lib/test/test_py_compile.py /^class PyCompileTestsBase:$/;" c +PyCompileTestsWithSourceEpoch Lib/test/test_py_compile.py /^ source_date_epoch=True):$/;" c +PyCompileTestsWithoutSourceEpoch Lib/test/test_py_compile.py /^ source_date_epoch=False):$/;" c +PyCompile_OpcodeStackEffect Python/compile.c /^PyCompile_OpcodeStackEffect(int opcode, int oparg)$/;" f +PyCompile_OpcodeStackEffectWithJump Python/compile.c /^PyCompile_OpcodeStackEffectWithJump(int opcode, int oparg, int jump)$/;" f +PyCompilerFlags Include/cpython/compile.h /^} PyCompilerFlags;$/;" t typeref:struct:__anon205 +PyComplexObject Include/cpython/complexobject.h /^} PyComplexObject;$/;" t typeref:struct:__anon238 +PyComplex_AsCComplex Objects/complexobject.c /^PyComplex_AsCComplex(PyObject *op)$/;" f +PyComplex_Check Include/complexobject.h 13;" d +PyComplex_CheckExact Include/complexobject.h 14;" d +PyComplex_FromCComplex Objects/complexobject.c /^PyComplex_FromCComplex(Py_complex cval)$/;" f +PyComplex_FromDoubles Objects/complexobject.c /^PyComplex_FromDoubles(double real, double imag)$/;" f +PyComplex_ImagAsDouble Objects/complexobject.c /^PyComplex_ImagAsDouble(PyObject *op)$/;" f +PyComplex_RealAsDouble Objects/complexobject.c /^PyComplex_RealAsDouble(PyObject *op)$/;" f +PyComplex_Type Objects/complexobject.c /^PyTypeObject PyComplex_Type = {$/;" v +PyConfig Include/cpython/initconfig.h /^typedef struct PyConfig {$/;" s +PyConfig Include/cpython/initconfig.h /^} PyConfig;$/;" t typeref:struct:PyConfig +PyConfig_Clear Python/initconfig.c /^PyConfig_Clear(PyConfig *config)$/;" f +PyConfig_InitIsolatedConfig Python/initconfig.c /^PyConfig_InitIsolatedConfig(PyConfig *config)$/;" f +PyConfig_InitPythonConfig Python/initconfig.c /^PyConfig_InitPythonConfig(PyConfig *config)$/;" f +PyConfig_Read Python/initconfig.c /^PyConfig_Read(PyConfig *config)$/;" f +PyConfig_SetArgv Python/initconfig.c /^PyConfig_SetArgv(PyConfig *config, Py_ssize_t argc, wchar_t * const *argv)$/;" f +PyConfig_SetBytesArgv Python/initconfig.c /^PyConfig_SetBytesArgv(PyConfig *config, Py_ssize_t argc, char * const *argv)$/;" f +PyConfig_SetBytesString Python/initconfig.c /^PyConfig_SetBytesString(PyConfig *config, wchar_t **config_str,$/;" f +PyConfig_SetString Python/initconfig.c /^PyConfig_SetString(PyConfig *config, wchar_t **config_str, const wchar_t *str)$/;" f +PyConfig_SetWideStringList Python/initconfig.c /^PyConfig_SetWideStringList(PyConfig *config, PyWideStringList *list,$/;" f +PyContext Include/cpython/context.h /^typedef struct _pycontextobject PyContext;$/;" t typeref:struct:_pycontextobject +PyContextAPItests Lib/test/test_decimal.py /^class PyContextAPItests(ContextAPItests, unittest.TestCase):$/;" c +PyContextFlags Lib/test/test_decimal.py /^class PyContextFlags(ContextFlags, unittest.TestCase):$/;" c +PyContextInputValidation Lib/test/test_decimal.py /^class PyContextInputValidation(ContextInputValidation, unittest.TestCase):$/;" c +PyContextSubclassing Lib/test/test_decimal.py /^class PyContextSubclassing(ContextSubclassing, unittest.TestCase):$/;" c +PyContextToken Include/cpython/context.h /^typedef struct _pycontexttokenobject PyContextToken;$/;" t typeref:struct:_pycontexttokenobject +PyContextTokenType_getsetlist Python/context.c /^static PyGetSetDef PyContextTokenType_getsetlist[] = {$/;" v file: +PyContextTokenType_methods Python/context.c /^static PyMethodDef PyContextTokenType_methods[] = {$/;" v file: +PyContextToken_CheckExact Include/cpython/context.h 20;" d +PyContextToken_Type Python/context.c /^PyTypeObject PyContextToken_Type = {$/;" v +PyContextVar Include/cpython/context.h /^typedef struct _pycontextvarobject PyContextVar;$/;" t typeref:struct:_pycontextvarobject +PyContextVar_CheckExact Include/cpython/context.h 19;" d +PyContextVar_Get Python/context.c /^PyContextVar_Get(PyObject *ovar, PyObject *def, PyObject **val)$/;" f +PyContextVar_New Python/context.c /^PyContextVar_New(const char *name, PyObject *def)$/;" f +PyContextVar_Reset Python/context.c /^PyContextVar_Reset(PyObject *ovar, PyObject *otok)$/;" f +PyContextVar_Set Python/context.c /^PyContextVar_Set(PyObject *ovar, PyObject *val)$/;" f +PyContextVar_Type Python/context.c /^PyTypeObject PyContextVar_Type = {$/;" v +PyContextVar_members Python/context.c /^static PyMemberDef PyContextVar_members[] = {$/;" v file: +PyContextVar_methods Python/context.c /^static PyMethodDef PyContextVar_methods[] = {$/;" v file: +PyContextWithStatement Lib/test/test_decimal.py /^class PyContextWithStatement(ContextWithStatement, unittest.TestCase):$/;" c +PyContext_CheckExact Include/cpython/context.h 18;" d +PyContext_Copy Python/context.c /^PyContext_Copy(PyObject * octx)$/;" f +PyContext_CopyCurrent Python/context.c /^PyContext_CopyCurrent(void)$/;" f +PyContext_Enter Python/context.c /^PyContext_Enter(PyObject *octx)$/;" f +PyContext_Exit Python/context.c /^PyContext_Exit(PyObject *octx)$/;" f +PyContext_MAXFREELIST Include/internal/pycore_context.h 27;" d +PyContext_MAXFREELIST Include/internal/pycore_context.h 31;" d +PyContext_New Python/context.c /^PyContext_New(void)$/;" f +PyContext_Type Python/context.c /^PyTypeObject PyContext_Type = {$/;" v +PyContext_as_mapping Python/context.c /^static PyMappingMethods PyContext_as_mapping = {$/;" v file: +PyContext_as_sequence Python/context.c /^static PySequenceMethods PyContext_as_sequence = {$/;" v file: +PyContext_methods Python/context.c /^static PyMethodDef PyContext_methods[] = {$/;" v file: +PyCoroObject Include/cpython/genobject.h /^} PyCoroObject;$/;" t typeref:struct:__anon178 +PyCoroWrapper Objects/genobject.c /^} PyCoroWrapper;$/;" t typeref:struct:__anon730 file: +PyCoro_CheckExact Include/cpython/genobject.h 59;" d +PyCoro_New Objects/genobject.c /^PyCoro_New(PyFrameObject *f, PyObject *name, PyObject *qualname)$/;" f +PyCoro_Type Objects/genobject.c /^PyTypeObject PyCoro_Type = {$/;" v +PyCoroutineFunction Doc/tools/extensions/pyspecific.py /^class PyCoroutineFunction(PyCoroutineMixin, PyFunction):$/;" c +PyCoroutineMethod Doc/tools/extensions/pyspecific.py /^class PyCoroutineMethod(PyCoroutineMixin, PyMethod):$/;" c +PyCoroutineMixin Doc/tools/extensions/pyspecific.py /^class PyCoroutineMixin(object):$/;" c +PyCoverage Lib/test/test_decimal.py /^class PyCoverage(Coverage, unittest.TestCase):$/;" c +PyCurrentLoopTests Lib/test/test_asyncio/test_tasks.py /^class PyCurrentLoopTests(BaseCurrentLoopTests, test_utils.TestCase):$/;" c +PyCursesCheckERR Modules/_curses_panel.c /^PyCursesCheckERR(_curses_panel_state *state, int code, const char *fname)$/;" f file: +PyCursesCheckERR Modules/_cursesmodule.c /^PyCursesCheckERR(int code, const char *fname)$/;" f file: +PyCursesError Modules/_curses_panel.c /^ PyObject *PyCursesError;$/;" m struct:__anon650 file: +PyCursesError Modules/_cursesmodule.c /^static PyObject *PyCursesError;$/;" v file: +PyCursesInitialised Include/py_curses.h 82;" d +PyCursesInitialised Modules/_cursesmodule.c 192;" d file: +PyCursesInitialisedColor Include/py_curses.h 83;" d +PyCursesInitialisedColor Modules/_cursesmodule.c 198;" d file: +PyCursesPanelObject Modules/_curses_panel.c /^} PyCursesPanelObject;$/;" t typeref:struct:__anon651 file: +PyCursesPanel_Dealloc Modules/_curses_panel.c /^PyCursesPanel_Dealloc(PyCursesPanelObject *po)$/;" f file: +PyCursesPanel_Methods Modules/_curses_panel.c /^static PyMethodDef PyCursesPanel_Methods[] = {$/;" v file: +PyCursesPanel_New Modules/_curses_panel.c /^PyCursesPanel_New(_curses_panel_state *state, PANEL *pan,$/;" f file: +PyCursesPanel_Type Modules/_curses_panel.c /^ PyTypeObject *PyCursesPanel_Type;$/;" m struct:__anon650 file: +PyCursesPanel_Type_slots Modules/_curses_panel.c /^static PyType_Slot PyCursesPanel_Type_slots[] = {$/;" v file: +PyCursesPanel_Type_spec Modules/_curses_panel.c /^static PyType_Spec PyCursesPanel_Type_spec = {$/;" v file: +PyCursesSetupTermCalled Include/py_curses.h 81;" d +PyCursesSetupTermCalled Modules/_cursesmodule.c 186;" d file: +PyCursesVersion Modules/_curses_panel.c /^static const char PyCursesVersion[] = "2.1";$/;" v file: +PyCursesVersion Modules/_cursesmodule.c /^static const char PyCursesVersion[] = "2.2";$/;" v file: +PyCursesWindowObject Include/py_curses.h /^} PyCursesWindowObject;$/;" t typeref:struct:__anon271 +PyCursesWindow_Check Include/py_curses.h 67;" d +PyCursesWindow_ChgAt Modules/_cursesmodule.c /^PyCursesWindow_ChgAt(PyCursesWindowObject *self, PyObject *args)$/;" f file: +PyCursesWindow_Dealloc Modules/_cursesmodule.c /^PyCursesWindow_Dealloc(PyCursesWindowObject *wo)$/;" f file: +PyCursesWindow_GetStr Modules/_cursesmodule.c /^PyCursesWindow_GetStr(PyCursesWindowObject *self, PyObject *args)$/;" f file: +PyCursesWindow_InStr Modules/_cursesmodule.c /^PyCursesWindow_InStr(PyCursesWindowObject *self, PyObject *args)$/;" f file: +PyCursesWindow_Methods Modules/_cursesmodule.c /^static PyMethodDef PyCursesWindow_Methods[] = {$/;" v file: +PyCursesWindow_New Modules/_cursesmodule.c /^PyCursesWindow_New(WINDOW *win, const char *encoding)$/;" f file: +PyCursesWindow_Type Include/py_curses.h 80;" d +PyCursesWindow_Type Modules/_cursesmodule.c /^PyTypeObject PyCursesWindow_Type = {$/;" v +PyCursesWindow_Type Modules/_cursesmodule.c /^PyTypeObject PyCursesWindow_Type;$/;" v +PyCursesWindow_get_encoding Modules/_cursesmodule.c /^PyCursesWindow_get_encoding(PyCursesWindowObject *self, void *closure)$/;" f file: +PyCursesWindow_getsets Modules/_cursesmodule.c /^static PyGetSetDef PyCursesWindow_getsets[] = {$/;" v file: +PyCursesWindow_set_encoding Modules/_cursesmodule.c /^PyCursesWindow_set_encoding(PyCursesWindowObject *self, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +PyCurses_API Include/py_curses.h /^static void **PyCurses_API;$/;" v +PyCurses_API_pointers Include/py_curses.h 57;" d +PyCurses_CAPSULE_NAME Include/py_curses.h 69;" d +PyCurses_ConvertToCchar_t Modules/_cursesmodule.c /^PyCurses_ConvertToCchar_t(PyCursesWindowObject *win, PyObject *obj,$/;" f file: +PyCurses_ConvertToChtype Modules/_cursesmodule.c /^PyCurses_ConvertToChtype(PyCursesWindowObject *win, PyObject *obj, chtype *ch)$/;" f file: +PyCurses_ConvertToString Modules/_cursesmodule.c /^PyCurses_ConvertToString(PyCursesWindowObject *win, PyObject *obj,$/;" f file: +PyCurses_ConvertToWchar_t Modules/_cursesmodule.c /^PyCurses_ConvertToWchar_t(PyObject *obj,$/;" f file: +PyCurses_methods Modules/_curses_panel.c /^static PyMethodDef PyCurses_methods[] = {$/;" v file: +PyCurses_methods Modules/_cursesmodule.c /^static PyMethodDef PyCurses_methods[] = {$/;" v file: +PyDLL Lib/ctypes/__init__.py /^class PyDLL(CDLL):$/;" c +PyDTrace_AUDIT Include/pydtrace.h /^static inline void PyDTrace_AUDIT(const char *arg0, void *arg1) {}$/;" f +PyDTrace_AUDIT_ENABLED Include/pydtrace.h /^static inline int PyDTrace_AUDIT_ENABLED(void) { return 0; }$/;" f +PyDTrace_FUNCTION_ENTRY Include/pydtrace.h /^static inline void PyDTrace_FUNCTION_ENTRY(const char *arg0, const char *arg1, int arg2) {}$/;" f +PyDTrace_FUNCTION_ENTRY_ENABLED Include/pydtrace.h /^static inline int PyDTrace_FUNCTION_ENTRY_ENABLED(void) { return 0; }$/;" f +PyDTrace_FUNCTION_RETURN Include/pydtrace.h /^static inline void PyDTrace_FUNCTION_RETURN(const char *arg0, const char *arg1, int arg2) {}$/;" f +PyDTrace_FUNCTION_RETURN_ENABLED Include/pydtrace.h /^static inline int PyDTrace_FUNCTION_RETURN_ENABLED(void) { return 0; }$/;" f +PyDTrace_GC_DONE Include/pydtrace.h /^static inline void PyDTrace_GC_DONE(Py_ssize_t arg0) {}$/;" f +PyDTrace_GC_DONE_ENABLED Include/pydtrace.h /^static inline int PyDTrace_GC_DONE_ENABLED(void) { return 0; }$/;" f +PyDTrace_GC_START Include/pydtrace.h /^static inline void PyDTrace_GC_START(int arg0) {}$/;" f +PyDTrace_GC_START_ENABLED Include/pydtrace.h /^static inline int PyDTrace_GC_START_ENABLED(void) { return 0; }$/;" f +PyDTrace_IMPORT_FIND_LOAD_DONE Include/pydtrace.h /^static inline void PyDTrace_IMPORT_FIND_LOAD_DONE(const char *arg0, int arg1) {}$/;" f +PyDTrace_IMPORT_FIND_LOAD_DONE_ENABLED Include/pydtrace.h /^static inline int PyDTrace_IMPORT_FIND_LOAD_DONE_ENABLED(void) { return 0; }$/;" f +PyDTrace_IMPORT_FIND_LOAD_START Include/pydtrace.h /^static inline void PyDTrace_IMPORT_FIND_LOAD_START(const char *arg0) {}$/;" f +PyDTrace_IMPORT_FIND_LOAD_START_ENABLED Include/pydtrace.h /^static inline int PyDTrace_IMPORT_FIND_LOAD_START_ENABLED(void) { return 0; }$/;" f +PyDTrace_INSTANCE_DELETE_DONE Include/pydtrace.h /^static inline void PyDTrace_INSTANCE_DELETE_DONE(int arg0) {}$/;" f +PyDTrace_INSTANCE_DELETE_DONE_ENABLED Include/pydtrace.h /^static inline int PyDTrace_INSTANCE_DELETE_DONE_ENABLED(void) { return 0; }$/;" f +PyDTrace_INSTANCE_DELETE_START Include/pydtrace.h /^static inline void PyDTrace_INSTANCE_DELETE_START(int arg0) {}$/;" f +PyDTrace_INSTANCE_DELETE_START_ENABLED Include/pydtrace.h /^static inline int PyDTrace_INSTANCE_DELETE_START_ENABLED(void) { return 0; }$/;" f +PyDTrace_INSTANCE_NEW_DONE Include/pydtrace.h /^static inline void PyDTrace_INSTANCE_NEW_DONE(int arg0) {}$/;" f +PyDTrace_INSTANCE_NEW_DONE_ENABLED Include/pydtrace.h /^static inline int PyDTrace_INSTANCE_NEW_DONE_ENABLED(void) { return 0; }$/;" f +PyDTrace_INSTANCE_NEW_START Include/pydtrace.h /^static inline void PyDTrace_INSTANCE_NEW_START(int arg0) {}$/;" f +PyDTrace_INSTANCE_NEW_START_ENABLED Include/pydtrace.h /^static inline int PyDTrace_INSTANCE_NEW_START_ENABLED(void) { return 0; }$/;" f +PyDTrace_LINE Include/pydtrace.h /^static inline void PyDTrace_LINE(const char *arg0, const char *arg1, int arg2) {}$/;" f +PyDTrace_LINE_ENABLED Include/pydtrace.h /^static inline int PyDTrace_LINE_ENABLED(void) { return 0; }$/;" f +PyDateTimeAPI Include/datetime.h /^static PyDateTime_CAPI *PyDateTimeAPI = NULL;$/;" v +PyDateTime_CAPI Include/datetime.h /^} PyDateTime_CAPI;$/;" t typeref:struct:__anon270 +PyDateTime_CAPSULE_NAME Include/datetime.h 188;" d +PyDateTime_Check Include/datetime.h 209;" d +PyDateTime_Check Modules/_datetimemodule.c 29;" d file: +PyDateTime_CheckExact Include/datetime.h 210;" d +PyDateTime_CheckExact Modules/_datetimemodule.c 30;" d file: +PyDateTime_DATE_GET_FOLD Include/datetime.h 134;" d +PyDateTime_DATE_GET_HOUR Include/datetime.h 127;" d +PyDateTime_DATE_GET_MICROSECOND Include/datetime.h 130;" d +PyDateTime_DATE_GET_MINUTE Include/datetime.h 128;" d +PyDateTime_DATE_GET_SECOND Include/datetime.h 129;" d +PyDateTime_DATE_GET_TZINFO Include/datetime.h 135;" d +PyDateTime_DELTA_GET_DAYS Include/datetime.h 151;" d +PyDateTime_DELTA_GET_MICROSECONDS Include/datetime.h 153;" d +PyDateTime_DELTA_GET_SECONDS Include/datetime.h 152;" d +PyDateTime_Date Include/datetime.h /^} PyDateTime_Date;$/;" t typeref:struct:__anon267 +PyDateTime_DateTime Include/datetime.h /^} PyDateTime_DateTime; \/* hastzinfo true *\/$/;" t typeref:struct:__anon269 +PyDateTime_DateTimeType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_DateTimeType = {$/;" v file: +PyDateTime_DateTimeType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_DateTimeType;$/;" v file: +PyDateTime_DateType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_DateType = {$/;" v file: +PyDateTime_DateType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_DateType;$/;" v file: +PyDateTime_Delta Include/datetime.h /^} PyDateTime_Delta;$/;" t typeref:struct:__anon262 +PyDateTime_DeltaType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_DeltaType = {$/;" v file: +PyDateTime_DeltaType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_DeltaType;$/;" v file: +PyDateTime_Epoch Modules/_datetimemodule.c /^static PyObject *PyDateTime_Epoch;$/;" v file: +PyDateTime_FromDateAndTime Include/datetime.h 226;" d +PyDateTime_FromDateAndTimeAndFold Include/datetime.h 230;" d +PyDateTime_FromTimestamp Include/datetime.h 253;" d +PyDateTime_GET_DAY Include/datetime.h 125;" d +PyDateTime_GET_MONTH Include/datetime.h 124;" d +PyDateTime_GET_YEAR Include/datetime.h 122;" d +PyDateTime_IMPORT Include/datetime.h 199;" d +PyDateTime_IsoCalendarDate Modules/_datetimemodule.c /^} PyDateTime_IsoCalendarDate;$/;" t typeref:struct:__anon587 file: +PyDateTime_IsoCalendarDateType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_IsoCalendarDateType = {$/;" v file: +PyDateTime_IsoCalendarDateType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_IsoCalendarDateType;$/;" v file: +PyDateTime_TIME_GET_FOLD Include/datetime.h 146;" d +PyDateTime_TIME_GET_HOUR Include/datetime.h 139;" d +PyDateTime_TIME_GET_MICROSECOND Include/datetime.h 142;" d +PyDateTime_TIME_GET_MINUTE Include/datetime.h 140;" d +PyDateTime_TIME_GET_SECOND Include/datetime.h 141;" d +PyDateTime_TIME_GET_TZINFO Include/datetime.h 147;" d +PyDateTime_TZInfo Include/datetime.h /^} PyDateTime_TZInfo;$/;" t typeref:struct:__anon263 +PyDateTime_TZInfoType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_TZInfoType = {$/;" v file: +PyDateTime_TZInfoType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_TZInfoType;$/;" v file: +PyDateTime_Time Include/datetime.h /^} PyDateTime_Time; \/* hastzinfo true *\/$/;" t typeref:struct:__anon266 +PyDateTime_TimeType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_TimeType = {$/;" v file: +PyDateTime_TimeType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_TimeType;$/;" v file: +PyDateTime_TimeZone Modules/_datetimemodule.c /^} PyDateTime_TimeZone;$/;" t typeref:struct:__anon586 file: +PyDateTime_TimeZoneType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_TimeZoneType = {$/;" v file: +PyDateTime_TimeZoneType Modules/_datetimemodule.c /^static PyTypeObject PyDateTime_TimeZoneType;$/;" v file: +PyDateTime_TimeZone_UTC Include/datetime.h 203;" d +PyDateTime_TimeZone_UTC Modules/_datetimemodule.c /^static PyObject *PyDateTime_TimeZone_UTC;$/;" v file: +PyDate_Check Include/datetime.h 206;" d +PyDate_Check Modules/_datetimemodule.c 26;" d file: +PyDate_CheckExact Include/datetime.h 207;" d +PyDate_CheckExact Modules/_datetimemodule.c 27;" d file: +PyDate_FromDate Include/datetime.h 223;" d +PyDate_FromTimestamp Include/datetime.h 257;" d +PyDecContextManagerObject Modules/_decimal/_decimal.c /^} PyDecContextManagerObject;$/;" t typeref:struct:__anon352 file: +PyDecContextManager_Type Modules/_decimal/_decimal.c /^static PyTypeObject PyDecContextManager_Type =$/;" v file: +PyDecContextManager_Type Modules/_decimal/_decimal.c /^static PyTypeObject PyDecContextManager_Type;$/;" v file: +PyDecContextObject Modules/_decimal/_decimal.c /^} PyDecContextObject;$/;" t typeref:struct:__anon351 file: +PyDecContext_Apply Modules/_decimal/_decimal.c /^PyDecContext_Apply(PyObject *context, PyObject *v)$/;" f file: +PyDecContext_Check Modules/_decimal/_decimal.c 109;" d file: +PyDecContext_Type Modules/_decimal/_decimal.c /^static PyTypeObject PyDecContext_Type =$/;" v file: +PyDecContext_Type Modules/_decimal/_decimal.c /^static PyTypeObject PyDecContext_Type;$/;" v file: +PyDecObject Modules/_decimal/_decimal.c /^} PyDecObject;$/;" t typeref:struct:__anon349 file: +PyDecSignalDictMixin_Type Modules/_decimal/_decimal.c /^static PyTypeObject PyDecSignalDictMixin_Type =$/;" v file: +PyDecSignalDictObject Modules/_decimal/_decimal.c /^} PyDecSignalDictObject;$/;" t typeref:struct:__anon350 file: +PyDecSignalDict_Check Modules/_decimal/_decimal.c 108;" d file: +PyDecSignalDict_Type Modules/_decimal/_decimal.c /^static PyTypeObject *PyDecSignalDict_Type;$/;" v file: +PyDecType_FromCString Modules/_decimal/_decimal.c /^PyDecType_FromCString(PyTypeObject *type, const char *s,$/;" f file: +PyDecType_FromCStringExact Modules/_decimal/_decimal.c /^PyDecType_FromCStringExact(PyTypeObject *type, const char *s,$/;" f file: +PyDecType_FromDecimalExact Modules/_decimal/_decimal.c /^PyDecType_FromDecimalExact(PyTypeObject *type, PyObject *v, PyObject *context)$/;" f file: +PyDecType_FromFloat Modules/_decimal/_decimal.c /^PyDecType_FromFloat(PyTypeObject *type, PyObject *v,$/;" f file: +PyDecType_FromFloatExact Modules/_decimal/_decimal.c /^PyDecType_FromFloatExact(PyTypeObject *type, PyObject *v,$/;" f file: +PyDecType_FromLong Modules/_decimal/_decimal.c /^PyDecType_FromLong(PyTypeObject *type, PyObject *v, PyObject *context)$/;" f file: +PyDecType_FromLongExact Modules/_decimal/_decimal.c /^PyDecType_FromLongExact(PyTypeObject *type, PyObject *v,$/;" f file: +PyDecType_FromObjectExact Modules/_decimal/_decimal.c /^PyDecType_FromObjectExact(PyTypeObject *type, PyObject *v, PyObject *context)$/;" f file: +PyDecType_FromSequence Modules/_decimal/_decimal.c /^PyDecType_FromSequence(PyTypeObject *type, PyObject *v,$/;" f file: +PyDecType_FromSequenceExact Modules/_decimal/_decimal.c /^PyDecType_FromSequenceExact(PyTypeObject *type, PyObject *v,$/;" f file: +PyDecType_FromSsize Modules/_decimal/_decimal.c /^PyDecType_FromSsize(PyTypeObject *type, mpd_ssize_t v, PyObject *context)$/;" f file: +PyDecType_FromSsizeExact Modules/_decimal/_decimal.c /^PyDecType_FromSsizeExact(PyTypeObject *type, mpd_ssize_t v, PyObject *context)$/;" f file: +PyDecType_FromUnicode Modules/_decimal/_decimal.c /^PyDecType_FromUnicode(PyTypeObject *type, PyObject *u,$/;" f file: +PyDecType_FromUnicodeExactWS Modules/_decimal/_decimal.c /^PyDecType_FromUnicodeExactWS(PyTypeObject *type, PyObject *u,$/;" f file: +PyDecType_New Modules/_decimal/_decimal.c /^PyDecType_New(PyTypeObject *type)$/;" f file: +PyDec_AsFloat Modules/_decimal/_decimal.c /^PyDec_AsFloat(PyObject *dec)$/;" f file: +PyDec_AsTuple Modules/_decimal/_decimal.c /^PyDec_AsTuple(PyObject *dec, PyObject *dummy UNUSED)$/;" f file: +PyDec_Check Modules/_decimal/_decimal.c 107;" d file: +PyDec_CheckExact Modules/_decimal/_decimal.c 106;" d file: +PyDec_FromCString Modules/_decimal/_decimal.c 2660;" d file: +PyDec_FromCStringExact Modules/_decimal/_decimal.c 2662;" d file: +PyDec_FromFloat Modules/_decimal/_decimal.c 2682;" d file: +PyDec_FromFloatExact Modules/_decimal/_decimal.c 2684;" d file: +PyDec_FromLong Modules/_decimal/_decimal.c 2677;" d file: +PyDec_FromLongExact Modules/_decimal/_decimal.c 2679;" d file: +PyDec_FromObject Modules/_decimal/_decimal.c /^PyDec_FromObject(PyObject *v, PyObject *context)$/;" f file: +PyDec_FromSequence Modules/_decimal/_decimal.c 2687;" d file: +PyDec_FromSequenceExact Modules/_decimal/_decimal.c 2689;" d file: +PyDec_FromSsize Modules/_decimal/_decimal.c 2672;" d file: +PyDec_FromSsizeExact Modules/_decimal/_decimal.c 2674;" d file: +PyDec_FromUnicode Modules/_decimal/_decimal.c 2665;" d file: +PyDec_FromUnicodeExact Modules/_decimal/_decimal.c 2667;" d file: +PyDec_FromUnicodeExactWS Modules/_decimal/_decimal.c 2669;" d file: +PyDec_GetCurrentContext Modules/_decimal/_decimal.c /^PyDec_GetCurrentContext(PyObject *self UNUSED, PyObject *args UNUSED)$/;" f file: +PyDec_Round Modules/_decimal/_decimal.c /^PyDec_Round(PyObject *dec, PyObject *args)$/;" f file: +PyDec_SetCurrentContext Modules/_decimal/_decimal.c /^PyDec_SetCurrentContext(PyObject *self UNUSED, PyObject *v)$/;" f file: +PyDec_ToIntegralExact Modules/_decimal/_decimal.c /^PyDec_ToIntegralExact(PyObject *dec, PyObject *args, PyObject *kwds)$/;" f file: +PyDec_ToIntegralValue Modules/_decimal/_decimal.c /^PyDec_ToIntegralValue(PyObject *dec, PyObject *args, PyObject *kwds)$/;" f file: +PyDec_Type Modules/_decimal/_decimal.c /^static PyTypeObject PyDec_Type =$/;" v file: +PyDec_Type Modules/_decimal/_decimal.c /^static PyTypeObject PyDec_Type;$/;" v file: +PyDecoratorFunction Doc/tools/extensions/pyspecific.py /^class PyDecoratorFunction(PyDecoratorMixin, PyFunction):$/;" c +PyDecoratorMethod Doc/tools/extensions/pyspecific.py /^class PyDecoratorMethod(PyDecoratorMixin, PyMethod):$/;" c +PyDecoratorMixin Doc/tools/extensions/pyspecific.py /^class PyDecoratorMixin(object):$/;" c +PyDelta_Check Include/datetime.h 215;" d +PyDelta_Check Modules/_datetimemodule.c 35;" d file: +PyDelta_CheckExact Include/datetime.h 216;" d +PyDelta_CheckExact Modules/_datetimemodule.c 36;" d file: +PyDelta_FromDSU Include/datetime.h 242;" d +PyDescrObject Include/cpython/descrobject.h /^} PyDescrObject;$/;" t typeref:struct:__anon214 +PyDescr_COMMON Include/cpython/descrobject.h /^ PyDescr_COMMON;$/;" m struct:__anon215 +PyDescr_COMMON Include/cpython/descrobject.h /^ PyDescr_COMMON;$/;" m struct:__anon216 +PyDescr_COMMON Include/cpython/descrobject.h /^ PyDescr_COMMON;$/;" m struct:__anon217 +PyDescr_COMMON Include/cpython/descrobject.h /^ PyDescr_COMMON;$/;" m struct:__anon218 +PyDescr_COMMON Include/cpython/descrobject.h 33;" d +PyDescr_IsData Objects/descrobject.c /^PyDescr_IsData(PyObject *ob)$/;" f +PyDescr_NAME Include/cpython/descrobject.h 36;" d +PyDescr_NewClassMethod Objects/descrobject.c /^PyDescr_NewClassMethod(PyTypeObject *type, PyMethodDef *method)$/;" f +PyDescr_NewGetSet Objects/descrobject.c /^PyDescr_NewGetSet(PyTypeObject *type, PyGetSetDef *getset)$/;" f +PyDescr_NewMember Objects/descrobject.c /^PyDescr_NewMember(PyTypeObject *type, PyMemberDef *member)$/;" f +PyDescr_NewMethod Objects/descrobject.c /^PyDescr_NewMethod(PyTypeObject *type, PyMethodDef *method)$/;" f +PyDescr_NewWrapper Objects/descrobject.c /^PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *base, void *wrapped)$/;" f +PyDescr_TYPE Include/cpython/descrobject.h 35;" d +PyDictItems_Check Include/dictobject.h 72;" d +PyDictItems_Type Objects/dictobject.c /^PyTypeObject PyDictItems_Type = {$/;" v +PyDictIterItem_Type Objects/dictobject.c /^PyTypeObject PyDictIterItem_Type = {$/;" v +PyDictIterKey_Type Objects/dictobject.c /^PyTypeObject PyDictIterKey_Type = {$/;" v +PyDictIterValue_Type Objects/dictobject.c /^PyTypeObject PyDictIterValue_Type = {$/;" v +PyDictKeyEntry Include/internal/pycore_dict.h /^} PyDictKeyEntry;$/;" t typeref:struct:__anon144 +PyDictKeysObject Include/cpython/dictobject.h /^typedef struct _dictkeysobject PyDictKeysObject;$/;" t typeref:struct:_dictkeysobject +PyDictKeys_Check Include/dictobject.h 70;" d +PyDictKeys_Type Objects/dictobject.c /^PyTypeObject PyDictKeys_Type = {$/;" v +PyDictObject Include/cpython/dictobject.h /^} PyDictObject;$/;" t typeref:struct:__anon195 +PyDictObjectPtr Tools/gdb/libpython.py /^class PyDictObjectPtr(PyObjectPtr):$/;" c +PyDictOrValues Include/internal/pycore_object.h /^} PyDictOrValues;$/;" t typeref:union:__anon123 +PyDictProxy_New Objects/descrobject.c /^PyDictProxy_New(PyObject *mapping)$/;" f +PyDictProxy_Type Objects/descrobject.c /^PyTypeObject PyDictProxy_Type = {$/;" v +PyDictRevIterItem_Type Objects/dictobject.c /^PyTypeObject PyDictRevIterItem_Type = {$/;" v +PyDictRevIterKey_Type Objects/dictobject.c /^PyTypeObject PyDictRevIterKey_Type = {$/;" v +PyDictRevIterValue_Type Objects/dictobject.c /^PyTypeObject PyDictRevIterValue_Type = {$/;" v +PyDictUnicodeEntry Include/internal/pycore_dict.h /^} PyDictUnicodeEntry;$/;" t typeref:struct:__anon145 +PyDictValues Include/cpython/dictobject.h /^typedef struct _dictvalues PyDictValues;$/;" t typeref:struct:_dictvalues +PyDictValues_Check Include/dictobject.h 71;" d +PyDictValues_Type Objects/dictobject.c /^PyTypeObject PyDictValues_Type = {$/;" v +PyDictViewSet_Check Include/dictobject.h 74;" d +PyDict_AddWatcher Objects/dictobject.c /^PyDict_AddWatcher(PyDict_WatchCallback callback)$/;" f +PyDict_Check Include/dictobject.h 17;" d +PyDict_CheckExact Include/dictobject.h 19;" d +PyDict_Clear Objects/dictobject.c /^PyDict_Clear(PyObject *op)$/;" f +PyDict_ClearWatcher Objects/dictobject.c /^PyDict_ClearWatcher(int watcher_id)$/;" f +PyDict_Contains Objects/dictobject.c /^PyDict_Contains(PyObject *op, PyObject *key)$/;" f +PyDict_Copy Objects/dictobject.c /^PyDict_Copy(PyObject *o)$/;" f +PyDict_DelItem Objects/dictobject.c /^PyDict_DelItem(PyObject *op, PyObject *key)$/;" f +PyDict_DelItemString Objects/dictobject.c /^PyDict_DelItemString(PyObject *v, const char *key)$/;" f +PyDict_GET_SIZE Include/cpython/dictobject.h /^static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) {$/;" f +PyDict_GET_SIZE Include/cpython/dictobject.h 59;" d +PyDict_GetItem Objects/dictobject.c /^PyDict_GetItem(PyObject *op, PyObject *key)$/;" f +PyDict_GetItemProxy Modules/_ctypes/_ctypes.c /^PyDict_GetItemProxy(PyObject *dict, PyObject *key)$/;" f +PyDict_GetItemString Objects/dictobject.c /^PyDict_GetItemString(PyObject *v, const char *key)$/;" f +PyDict_GetItemWithError Objects/dictobject.c /^PyDict_GetItemWithError(PyObject *op, PyObject *key)$/;" f +PyDict_Items Objects/dictobject.c /^PyDict_Items(PyObject *mp)$/;" f +PyDict_Keys Objects/dictobject.c /^PyDict_Keys(PyObject *mp)$/;" f +PyDict_LOG_MINSIZE Objects/dictobject.c 112;" d file: +PyDict_MAXFREELIST Include/internal/pycore_dict_state.h 14;" d +PyDict_MAXFREELIST Include/internal/pycore_dict_state.h 18;" d +PyDict_MINSIZE Objects/dictobject.c 113;" d file: +PyDict_Merge Objects/dictobject.c /^PyDict_Merge(PyObject *a, PyObject *b, int override)$/;" f +PyDict_MergeFromSeq2 Objects/dictobject.c /^PyDict_MergeFromSeq2(PyObject *d, PyObject *seq2, int override)$/;" f +PyDict_New Objects/dictobject.c /^PyDict_New(void)$/;" f +PyDict_Next Objects/dictobject.c /^PyDict_Next(PyObject *op, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue)$/;" f +PyDict_SetDefault Objects/dictobject.c /^PyDict_SetDefault(PyObject *d, PyObject *key, PyObject *defaultobj)$/;" f +PyDict_SetItem Objects/dictobject.c /^PyDict_SetItem(PyObject *op, PyObject *key, PyObject *value)$/;" f +PyDict_SetItemProxy Modules/_ctypes/_ctypes.c /^PyDict_SetItemProxy(PyObject *dict, PyObject *key, PyObject *item)$/;" f +PyDict_SetItemString Objects/dictobject.c /^PyDict_SetItemString(PyObject *v, const char *key, PyObject *item)$/;" f +PyDict_Size Objects/dictobject.c /^PyDict_Size(PyObject *mp)$/;" f +PyDict_Type Objects/dictobject.c /^PyTypeObject PyDict_Type = {$/;" v +PyDict_Unwatch Objects/dictobject.c /^PyDict_Unwatch(int watcher_id, PyObject* dict)$/;" f +PyDict_Update Objects/dictobject.c /^PyDict_Update(PyObject *a, PyObject *b)$/;" f +PyDict_Values Objects/dictobject.c /^PyDict_Values(PyObject *mp)$/;" f +PyDict_Watch Objects/dictobject.c /^PyDict_Watch(int watcher_id, PyObject* dict)$/;" f +PyDict_WatchCallback Include/cpython/dictobject.h /^typedef int(*PyDict_WatchCallback)(PyDict_WatchEvent event, PyObject* dict, PyObject* key, PyObject* new_value);$/;" t +PyDict_WatchEvent Include/cpython/dictobject.h /^} PyDict_WatchEvent;$/;" t typeref:enum:__anon197 +PyDispatchTableTests Lib/test/test_pickle.py /^class PyDispatchTableTests(AbstractDispatchTableTests, unittest.TestCase):$/;" c +PyDoc_STR Include/pymacro.h 95;" d +PyDoc_STR Include/pymacro.h 97;" d +PyDoc_STRVAR Include/pymacro.h 93;" d +PyDoc_STRVAR_shared Include/internal/pycore_bytes_methods.h 70;" d +PyDoc_VAR Include/pymacro.h 92;" d +PyDown Tools/gdb/libpython.py /^class PyDown(gdb.Command):$/;" c +PyEagerTaskFactoryLoopTests Lib/test/test_asyncio/test_eager_task_factory.py /^class PyEagerTaskFactoryLoopTests(EagerTaskFactoryLoopTests, test_utils.TestCase):$/;" c +PyEllipsis_Type Objects/sliceobject.c /^PyTypeObject PyEllipsis_Type = {$/;" v +PyEncoderObject Modules/_json.c /^} PyEncoderObject;$/;" t typeref:struct:_PyEncoderObject file: +PyEncoderType_slots Modules/_json.c /^static PyType_Slot PyEncoderType_slots[] = {$/;" v file: +PyEncoderType_spec Modules/_json.c /^static PyType_Spec PyEncoderType_spec = {$/;" v file: +PyEnum_Type Objects/enumobject.c /^PyTypeObject PyEnum_Type = {$/;" v +PyEnvironmentErrorObject Include/cpython/pyerrors.h /^typedef PyOSErrorObject PyEnvironmentErrorObject;$/;" t +PyEnvironmentVariableTests Lib/test/test_warnings/__init__.py /^class PyEnvironmentVariableTests(EnvironmentVariableTests, unittest.TestCase):$/;" c +PyErr_BadArgument Python/errors.c /^PyErr_BadArgument(void)$/;" f +PyErr_BadInternalCall Include/pyerrors.h 228;" d +PyErr_BadInternalCall Python/errors.c /^PyErr_BadInternalCall(void)$/;" f +PyErr_BadInternalCall Python/errors.c 1169;" d file: +PyErr_BadInternalCall Python/errors.c 1178;" d file: +PyErr_CheckSignals Modules/signalmodule.c /^PyErr_CheckSignals(void)$/;" f +PyErr_Clear Python/errors.c /^PyErr_Clear(void)$/;" f +PyErr_Display Python/pythonrun.c /^PyErr_Display(PyObject *unused, PyObject *value, PyObject *tb)$/;" f +PyErr_DisplayException Python/pythonrun.c /^void PyErr_DisplayException(PyObject *exc)$/;" f +PyErr_ExceptionMatches Python/errors.c /^PyErr_ExceptionMatches(PyObject *exc)$/;" f +PyErr_Fetch Python/errors.c /^PyErr_Fetch(PyObject **p_type, PyObject **p_value, PyObject **p_traceback)$/;" f +PyErr_Format Python/errors.c /^PyErr_Format(PyObject *exception, const char *format, ...)$/;" f +PyErr_FormatV Python/errors.c /^PyErr_FormatV(PyObject *exception, const char *format, va_list vargs)$/;" f +PyErr_GetExcInfo Python/errors.c /^PyErr_GetExcInfo(PyObject **p_type, PyObject **p_value, PyObject **p_traceback)$/;" f +PyErr_GetHandledException Python/errors.c /^PyErr_GetHandledException(void)$/;" f +PyErr_GetRaisedException Python/errors.c /^PyErr_GetRaisedException(void)$/;" f +PyErr_GivenExceptionMatches Python/errors.c /^PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc)$/;" f +PyErr_MAX_GROUP_DEPTH Python/pythonrun.c 1493;" d file: +PyErr_MAX_GROUP_WIDTH Python/pythonrun.c 1492;" d file: +PyErr_NewException Python/errors.c /^PyErr_NewException(const char *name, PyObject *base, PyObject *dict)$/;" f +PyErr_NewExceptionWithDoc Python/errors.c /^PyErr_NewExceptionWithDoc(const char *name, const char *doc,$/;" f +PyErr_NoMemory Python/errors.c /^PyErr_NoMemory(void)$/;" f +PyErr_NormalizeException Python/errors.c /^PyErr_NormalizeException(PyObject **exc, PyObject **val, PyObject **tb)$/;" f +PyErr_Occurred Python/errors.c /^PyErr_Occurred(void)$/;" f +PyErr_Print Python/pythonrun.c /^PyErr_Print(void)$/;" f +PyErr_PrintEx Python/pythonrun.c /^PyErr_PrintEx(int set_sys_last_vars)$/;" f +PyErr_ProgramText Python/errors.c /^PyErr_ProgramText(const char *filename, int lineno)$/;" f +PyErr_ProgramTextObject Python/errors.c /^PyErr_ProgramTextObject(PyObject *filename, int lineno)$/;" f +PyErr_RangedSyntaxLocationObject Python/errors.c /^PyErr_RangedSyntaxLocationObject(PyObject *filename, int lineno, int col_offset,$/;" f +PyErr_ResourceWarning Python/_warnings.c /^PyErr_ResourceWarning(PyObject *source, Py_ssize_t stack_level,$/;" f +PyErr_Restore Python/errors.c /^PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback)$/;" f +PyErr_SetExcFromWindowsErr Python/errors.c /^PyObject *PyErr_SetExcFromWindowsErr(PyObject *exc, int ierr)$/;" f +PyErr_SetExcFromWindowsErrWithFilename Python/errors.c /^PyObject *PyErr_SetExcFromWindowsErrWithFilename($/;" f +PyErr_SetExcFromWindowsErrWithFilenameObject Python/errors.c /^PyObject *PyErr_SetExcFromWindowsErrWithFilenameObject($/;" f +PyErr_SetExcFromWindowsErrWithFilenameObjects Python/errors.c /^PyObject *PyErr_SetExcFromWindowsErrWithFilenameObjects($/;" f +PyErr_SetExcInfo Python/errors.c /^PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)$/;" f +PyErr_SetFromErrno Python/errors.c /^PyErr_SetFromErrno(PyObject *exc)$/;" f +PyErr_SetFromErrnoWithFilename Misc/coverity_model.c /^PyObject *PyErr_SetFromErrnoWithFilename(PyObject *exc, const char *filename)$/;" f +PyErr_SetFromErrnoWithFilename Python/errors.c /^PyErr_SetFromErrnoWithFilename(PyObject *exc, const char *filename)$/;" f +PyErr_SetFromErrnoWithFilenameObject Python/errors.c /^PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject)$/;" f +PyErr_SetFromErrnoWithFilenameObjects Python/errors.c /^PyErr_SetFromErrnoWithFilenameObjects(PyObject *exc, PyObject *filenameObject, PyObject *filenameObject2)$/;" f +PyErr_SetFromWindowsErr Python/errors.c /^PyObject *PyErr_SetFromWindowsErr(int ierr)$/;" f +PyErr_SetFromWindowsErrWithFilename Python/errors.c /^PyObject *PyErr_SetFromWindowsErrWithFilename($/;" f +PyErr_SetFromWindowsErrWithFunction PC/winreg.c 42;" d file: +PyErr_SetHandledException Python/errors.c /^PyErr_SetHandledException(PyObject *exc)$/;" f +PyErr_SetImportError Python/errors.c /^PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path)$/;" f +PyErr_SetImportErrorSubclass Python/errors.c /^PyErr_SetImportErrorSubclass(PyObject *exception, PyObject *msg,$/;" f +PyErr_SetInterrupt Modules/signalmodule.c /^PyErr_SetInterrupt(void)$/;" f +PyErr_SetInterruptEx Modules/signalmodule.c /^PyErr_SetInterruptEx(int signum)$/;" f +PyErr_SetNone Python/errors.c /^PyErr_SetNone(PyObject *exception)$/;" f +PyErr_SetObject Python/errors.c /^PyErr_SetObject(PyObject *exception, PyObject *value)$/;" f +PyErr_SetRaisedException Python/errors.c /^PyErr_SetRaisedException(PyObject *exc)$/;" f +PyErr_SetString Python/errors.c /^PyErr_SetString(PyObject *exception, const char *string)$/;" f +PyErr_SyntaxLocation Python/errors.c /^PyErr_SyntaxLocation(const char *filename, int lineno)$/;" f +PyErr_SyntaxLocationEx Python/errors.c /^PyErr_SyntaxLocationEx(const char *filename, int lineno, int col_offset)$/;" f +PyErr_SyntaxLocationObject Python/errors.c /^PyErr_SyntaxLocationObject(PyObject *filename, int lineno, int col_offset) {$/;" f +PyErr_SyntaxLocationObjectEx Python/errors.c /^PyErr_SyntaxLocationObjectEx(PyObject *filename, int lineno, int col_offset,$/;" f file: +PyErr_Warn Include/cpython/warnings.h 20;" d +PyErr_Warn Python/_warnings.c /^PyErr_Warn(PyObject *category, const char *text)$/;" f +PyErr_Warn Python/_warnings.c 1269;" d file: +PyErr_WarnEx Python/_warnings.c /^PyErr_WarnEx(PyObject *category, const char *text, Py_ssize_t stack_level)$/;" f +PyErr_WarnExplicit Python/_warnings.c /^PyErr_WarnExplicit(PyObject *category, const char *text,$/;" f +PyErr_WarnExplicitFormat Python/_warnings.c /^PyErr_WarnExplicitFormat(PyObject *category,$/;" f +PyErr_WarnExplicitObject Python/_warnings.c /^PyErr_WarnExplicitObject(PyObject *category, PyObject *message,$/;" f +PyErr_WarnFormat Python/_warnings.c /^PyErr_WarnFormat(PyObject *category, Py_ssize_t stack_level,$/;" f +PyErr_WriteUnraisable Python/errors.c /^PyErr_WriteUnraisable(PyObject *obj)$/;" f +PyEval_AcquireLock Python/ceval_gil.c /^PyEval_AcquireLock(void)$/;" f +PyEval_AcquireThread Python/ceval_gil.c /^PyEval_AcquireThread(PyThreadState *tstate)$/;" f +PyEval_CallFunction Objects/call.c /^PyEval_CallFunction(PyObject *callable, const char *format, ...)$/;" f +PyEval_CallMethod Objects/call.c /^PyEval_CallMethod(PyObject *obj, const char *name, const char *format, ...)$/;" f +PyEval_CallObject Include/ceval.h 33;" d +PyEval_CallObjectWithKeywords Objects/call.c /^PyEval_CallObjectWithKeywords(PyObject *callable,$/;" f +PyEval_EvalCode Python/ceval.c /^PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals)$/;" f +PyEval_EvalCodeEx Python/ceval.c /^PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals,$/;" f +PyEval_EvalCodeExTests Lib/test/test_capi/test_eval_code_ex.py /^class PyEval_EvalCodeExTests(unittest.TestCase):$/;" c +PyEval_EvalFrame Python/ceval.c /^PyEval_EvalFrame(PyFrameObject *f)$/;" f +PyEval_EvalFrameEx Python/ceval.c /^PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)$/;" f +PyEval_GetBuiltins Python/ceval.c /^PyEval_GetBuiltins(void)$/;" f +PyEval_GetFrame Python/ceval.c /^PyEval_GetFrame(void)$/;" f +PyEval_GetFuncDesc Python/ceval.c /^PyEval_GetFuncDesc(PyObject *func)$/;" f +PyEval_GetFuncName Python/ceval.c /^PyEval_GetFuncName(PyObject *func)$/;" f +PyEval_GetGlobals Python/ceval.c /^PyEval_GetGlobals(void)$/;" f +PyEval_GetLocals Python/ceval.c /^PyEval_GetLocals(void)$/;" f +PyEval_InitThreads Python/ceval_gil.c /^PyEval_InitThreads(void)$/;" f +PyEval_MergeCompilerFlags Python/ceval.c /^PyEval_MergeCompilerFlags(PyCompilerFlags *cf)$/;" f +PyEval_ReleaseLock Python/ceval_gil.c /^PyEval_ReleaseLock(void)$/;" f +PyEval_ReleaseThread Python/ceval_gil.c /^PyEval_ReleaseThread(PyThreadState *tstate)$/;" f +PyEval_RestoreThread Python/ceval_gil.c /^PyEval_RestoreThread(PyThreadState *tstate)$/;" f +PyEval_SaveThread Python/ceval_gil.c /^PyEval_SaveThread(void)$/;" f +PyEval_SetProfile Python/ceval.c /^PyEval_SetProfile(Py_tracefunc func, PyObject *arg)$/;" f +PyEval_SetProfileAllThreads Python/ceval.c /^PyEval_SetProfileAllThreads(Py_tracefunc func, PyObject *arg)$/;" f +PyEval_SetTrace Python/ceval.c /^PyEval_SetTrace(Py_tracefunc func, PyObject *arg)$/;" f +PyEval_SetTraceAllThreads Python/ceval.c /^PyEval_SetTraceAllThreads(Py_tracefunc func, PyObject *arg)$/;" f +PyEval_ThreadsInitialized Python/ceval_gil.c /^PyEval_ThreadsInitialized(void)$/;" f +PyExcReportingTests Lib/test/test_traceback.py /^class PyExcReportingTests(BaseExceptionReportingTests, unittest.TestCase):$/;" c +PyExc_ArgError Modules/_ctypes/_ctypes.c /^PyObject *PyExc_ArgError = NULL;$/;" v +PyExc_BaseException Objects/exceptions.c /^PyObject *PyExc_BaseException = (PyObject *)&_PyExc_BaseException;$/;" v +PyExc_EnvironmentError Objects/exceptions.c /^PyObject *PyExc_EnvironmentError = NULL; \/\/ borrowed ref$/;" v +PyExc_ExceptionGroup Include/internal/pycore_exceptions.h /^ PyObject *PyExc_ExceptionGroup;$/;" m struct:_Py_exc_state +PyExc_IOError Objects/exceptions.c /^PyObject *PyExc_IOError = NULL; \/\/ borrowed ref$/;" v +PyExc_MemoryError Objects/exceptions.c /^PyObject *PyExc_MemoryError = (PyObject *) &_PyExc_MemoryError;$/;" v +PyExc_UnicodeDecodeError Objects/exceptions.c /^PyObject *PyExc_UnicodeDecodeError = (PyObject *)&_PyExc_UnicodeDecodeError;$/;" v +PyExc_UnicodeEncodeError Objects/exceptions.c /^PyObject *PyExc_UnicodeEncodeError = (PyObject *)&_PyExc_UnicodeEncodeError;$/;" v +PyExc_UnicodeTranslateError Objects/exceptions.c /^PyObject *PyExc_UnicodeTranslateError = (PyObject *)&_PyExc_UnicodeTranslateError;$/;" v +PyExc_WindowsError Objects/exceptions.c /^PyObject *PyExc_WindowsError = NULL; \/\/ borrowed ref$/;" v +PyExceptionClass_Check Include/pyerrors.h 62;" d +PyExceptionClass_Name Objects/exceptions.c /^PyExceptionClass_Name(PyObject *ob)$/;" f +PyExceptionInstance_Check Include/pyerrors.h 66;" d +PyExceptionInstance_Class Include/pyerrors.h 71;" d +PyException_GetArgs Objects/exceptions.c /^PyException_GetArgs(PyObject *self)$/;" f +PyException_GetCause Objects/exceptions.c /^PyException_GetCause(PyObject *self)$/;" f +PyException_GetContext Objects/exceptions.c /^PyException_GetContext(PyObject *self)$/;" f +PyException_GetTraceback Objects/exceptions.c /^PyException_GetTraceback(PyObject *self)$/;" f +PyException_HEAD Include/cpython/pyerrors.h 8;" d +PyException_SetArgs Objects/exceptions.c /^PyException_SetArgs(PyObject *self, PyObject *args)$/;" f +PyException_SetCause Objects/exceptions.c /^PyException_SetCause(PyObject *self, PyObject *cause)$/;" f +PyException_SetContext Objects/exceptions.c /^PyException_SetContext(PyObject *self, PyObject *context)$/;" f +PyException_SetTraceback Objects/exceptions.c /^PyException_SetTraceback(PyObject *self, PyObject *tb)$/;" f +PyExec_faulthandler Modules/faulthandler.c /^PyExec_faulthandler(PyObject *module) {$/;" f file: +PyExpat_CAPI Include/pyexpat.h /^struct PyExpat_CAPI$/;" s +PyExpat_CAPI_MAGIC Include/pyexpat.h 6;" d +PyExpat_CAPSULE_NAME Include/pyexpat.h 7;" d +PyExplicitConstructionTest Lib/test/test_decimal.py /^class PyExplicitConstructionTest(ExplicitConstructionTest, unittest.TestCase):$/;" c +PyFPE_END_PROTECT Include/cpython/pyfpe.h 12;" d +PyFPE_START_PROTECT Include/cpython/pyfpe.h 11;" d +PyFPE_counter Python/pyfpe.c /^int PyFPE_counter;$/;" v +PyFPE_dummy Python/pyfpe.c /^PyFPE_dummy(void *dummy)$/;" f +PyFPE_jbuf Python/pyfpe.c /^jmp_buf PyFPE_jbuf;$/;" v +PyFailingQueueTest Lib/test/test_queue.py /^class PyFailingQueueTest(FailingQueueTest, unittest.TestCase):$/;" c +PyFieldNameIter_Type Objects/stringlib/unicode_format.h /^static PyTypeObject PyFieldNameIter_Type = {$/;" v +PyFileIO_Check Modules/_io/fileio.c 75;" d file: +PyFileIO_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyFileIO_Type;$/;" m struct:_io_state +PyFile_FromFd Objects/fileobject.c /^PyFile_FromFd(int fd, const char *name, const char *mode, int buffering, const char *encoding,$/;" f +PyFile_GetLine Objects/fileobject.c /^PyFile_GetLine(PyObject *f, int n)$/;" f +PyFile_NewStdPrinter Objects/fileobject.c /^PyFile_NewStdPrinter(int fd)$/;" f +PyFile_OpenCode Objects/fileobject.c /^PyFile_OpenCode(const char *utf8path)$/;" f +PyFile_OpenCodeObject Objects/fileobject.c /^PyFile_OpenCodeObject(PyObject *path)$/;" f +PyFile_SetOpenCodeHook Objects/fileobject.c /^PyFile_SetOpenCodeHook(Py_OpenCodeHookFunction hook, void *userData) {$/;" f +PyFile_WriteObject Objects/fileobject.c /^PyFile_WriteObject(PyObject *v, PyObject *f, int flags)$/;" f +PyFile_WriteString Objects/fileobject.c /^PyFile_WriteString(const char *s, PyObject *f)$/;" f +PyFilterTests Lib/test/test_warnings/__init__.py /^class PyFilterTests(FilterTests, unittest.TestCase):$/;" c +PyFilter_Type Python/bltinmodule.c /^PyTypeObject PyFilter_Type = {$/;" v +PyFloatObject Include/cpython/floatobject.h /^} PyFloatObject;$/;" t typeref:struct:__anon245 +PyFloat_AS_DOUBLE Include/cpython/floatobject.h /^static inline double PyFloat_AS_DOUBLE(PyObject *op) {$/;" f +PyFloat_AS_DOUBLE Include/cpython/floatobject.h 18;" d +PyFloat_AsDouble Objects/floatobject.c /^PyFloat_AsDouble(PyObject *op)$/;" f +PyFloat_Check Include/floatobject.h 16;" d +PyFloat_CheckExact Include/floatobject.h 17;" d +PyFloat_FromDouble Objects/floatobject.c /^PyFloat_FromDouble(double fval)$/;" f +PyFloat_FromString Objects/floatobject.c /^PyFloat_FromString(PyObject *v)$/;" f +PyFloat_GetInfo Objects/floatobject.c /^PyFloat_GetInfo(void)$/;" f +PyFloat_GetMax Objects/floatobject.c /^PyFloat_GetMax(void)$/;" f +PyFloat_GetMin Objects/floatobject.c /^PyFloat_GetMin(void)$/;" f +PyFloat_MAXFREELIST Include/internal/pycore_floatobject.h 36;" d +PyFloat_MAXFREELIST Include/internal/pycore_floatobject.h 40;" d +PyFloat_MAXFREELIST Objects/floatobject.c 29;" d file: +PyFloat_Pack2 Objects/floatobject.c /^PyFloat_Pack2(double x, char *data, int le)$/;" f +PyFloat_Pack4 Objects/floatobject.c /^PyFloat_Pack4(double x, char *data, int le)$/;" f +PyFloat_Pack8 Objects/floatobject.c /^PyFloat_Pack8(double x, char *data, int le)$/;" f +PyFloat_Type Objects/floatobject.c /^PyTypeObject PyFloat_Type = {$/;" v +PyFloat_Unpack2 Objects/floatobject.c /^PyFloat_Unpack2(const char *data, int le)$/;" f +PyFloat_Unpack4 Objects/floatobject.c /^PyFloat_Unpack4(const char *data, int le)$/;" f +PyFloat_Unpack8 Objects/floatobject.c /^PyFloat_Unpack8(const char *data, int le)$/;" f +PyFormatTest Lib/test/test_decimal.py /^class PyFormatTest(FormatTest, unittest.TestCase):$/;" c +PyFormatterIter_Type Objects/stringlib/unicode_format.h /^static PyTypeObject PyFormatterIter_Type = {$/;" v +PyFrameConstructor Include/cpython/funcobject.h /^} PyFrameConstructor;$/;" t typeref:struct:__anon220 +PyFrameObject Include/pytypedefs.h /^typedef struct _frame PyFrameObject;$/;" t typeref:struct:_frame +PyFrameObjectPtr Tools/gdb/libpython.py /^class PyFrameObjectPtr(PyObjectPtr):$/;" c +PyFramePtr Tools/gdb/libpython.py /^class PyFramePtr:$/;" c +PyFrameState Include/internal/pycore_frame.h /^} PyFrameState;$/;" t typeref:enum:_framestate +PyFrame_Check Include/cpython/pyframe.h 7;" d +PyFrame_FastToLocals Objects/frameobject.c /^PyFrame_FastToLocals(PyFrameObject *f)$/;" f +PyFrame_FastToLocalsWithError Objects/frameobject.c /^PyFrame_FastToLocalsWithError(PyFrameObject *f)$/;" f +PyFrame_GetBack Objects/frameobject.c /^PyFrame_GetBack(PyFrameObject *frame)$/;" f +PyFrame_GetBuiltins Objects/frameobject.c /^PyFrame_GetBuiltins(PyFrameObject *frame)$/;" f +PyFrame_GetCode Objects/frameobject.c /^PyFrame_GetCode(PyFrameObject *frame)$/;" f +PyFrame_GetGenerator Objects/frameobject.c /^PyFrame_GetGenerator(PyFrameObject *frame)$/;" f +PyFrame_GetGlobals Objects/frameobject.c /^PyFrame_GetGlobals(PyFrameObject *frame)$/;" f +PyFrame_GetLasti Objects/frameobject.c /^PyFrame_GetLasti(PyFrameObject *frame)$/;" f +PyFrame_GetLineNumber Objects/frameobject.c /^PyFrame_GetLineNumber(PyFrameObject *f)$/;" f +PyFrame_GetLocals Objects/frameobject.c /^PyFrame_GetLocals(PyFrameObject *frame)$/;" f +PyFrame_GetVar Objects/frameobject.c /^PyFrame_GetVar(PyFrameObject *frame_obj, PyObject *name)$/;" f +PyFrame_GetVarString Objects/frameobject.c /^PyFrame_GetVarString(PyFrameObject *frame, const char *name)$/;" f +PyFrame_LocalsToFast Objects/frameobject.c /^PyFrame_LocalsToFast(PyFrameObject *f, int clear)$/;" f +PyFrame_New Objects/frameobject.c /^PyFrame_New(PyThreadState *tstate, PyCodeObject *code,$/;" f +PyFrame_Type Objects/frameobject.c /^PyTypeObject PyFrame_Type = {$/;" v +PyFrozenSet_Check Include/setobject.h 24;" d +PyFrozenSet_CheckExact Include/setobject.h 23;" d +PyFrozenSet_New Objects/setobject.c /^PyFrozenSet_New(PyObject *iterable)$/;" f +PyFrozenSet_Type Objects/setobject.c /^PyTypeObject PyFrozenSet_Type = {$/;" v +PyFunctionObject Include/cpython/funcobject.h /^} PyFunctionObject;$/;" t typeref:struct:__anon221 +PyFunction_AddWatcher Objects/funcobject.c /^PyFunction_AddWatcher(PyFunction_WatchCallback callback)$/;" f +PyFunction_Check Include/cpython/funcobject.h 65;" d +PyFunction_ClearWatcher Objects/funcobject.c /^PyFunction_ClearWatcher(int watcher_id)$/;" f +PyFunction_GET_ANNOTATIONS Include/cpython/funcobject.h /^static inline PyObject* PyFunction_GET_ANNOTATIONS(PyObject *func) {$/;" f +PyFunction_GET_ANNOTATIONS Include/cpython/funcobject.h 126;" d +PyFunction_GET_CLOSURE Include/cpython/funcobject.h /^static inline PyObject* PyFunction_GET_CLOSURE(PyObject *func) {$/;" f +PyFunction_GET_CLOSURE Include/cpython/funcobject.h 121;" d +PyFunction_GET_CODE Include/cpython/funcobject.h /^static inline PyObject* PyFunction_GET_CODE(PyObject *func) {$/;" f +PyFunction_GET_CODE Include/cpython/funcobject.h 96;" d +PyFunction_GET_DEFAULTS Include/cpython/funcobject.h /^static inline PyObject* PyFunction_GET_DEFAULTS(PyObject *func) {$/;" f +PyFunction_GET_DEFAULTS Include/cpython/funcobject.h 111;" d +PyFunction_GET_GLOBALS Include/cpython/funcobject.h /^static inline PyObject* PyFunction_GET_GLOBALS(PyObject *func) {$/;" f +PyFunction_GET_GLOBALS Include/cpython/funcobject.h 101;" d +PyFunction_GET_KW_DEFAULTS Include/cpython/funcobject.h /^static inline PyObject* PyFunction_GET_KW_DEFAULTS(PyObject *func) {$/;" f +PyFunction_GET_KW_DEFAULTS Include/cpython/funcobject.h 116;" d +PyFunction_GET_MODULE Include/cpython/funcobject.h /^static inline PyObject* PyFunction_GET_MODULE(PyObject *func) {$/;" f +PyFunction_GET_MODULE Include/cpython/funcobject.h 106;" d +PyFunction_GetAnnotations Objects/funcobject.c /^PyFunction_GetAnnotations(PyObject *op)$/;" f +PyFunction_GetClosure Objects/funcobject.c /^PyFunction_GetClosure(PyObject *op)$/;" f +PyFunction_GetCode Objects/funcobject.c /^PyFunction_GetCode(PyObject *op)$/;" f +PyFunction_GetDefaults Objects/funcobject.c /^PyFunction_GetDefaults(PyObject *op)$/;" f +PyFunction_GetGlobals Objects/funcobject.c /^PyFunction_GetGlobals(PyObject *op)$/;" f +PyFunction_GetKwDefaults Objects/funcobject.c /^PyFunction_GetKwDefaults(PyObject *op)$/;" f +PyFunction_GetModule Objects/funcobject.c /^PyFunction_GetModule(PyObject *op)$/;" f +PyFunction_New Objects/funcobject.c /^PyFunction_New(PyObject *code, PyObject *globals)$/;" f +PyFunction_NewWithQualName Objects/funcobject.c /^PyFunction_NewWithQualName(PyObject *code, PyObject *globals, PyObject *qualname)$/;" f +PyFunction_SetAnnotations Objects/funcobject.c /^PyFunction_SetAnnotations(PyObject *op, PyObject *annotations)$/;" f +PyFunction_SetClosure Objects/funcobject.c /^PyFunction_SetClosure(PyObject *op, PyObject *closure)$/;" f +PyFunction_SetDefaults Objects/funcobject.c /^PyFunction_SetDefaults(PyObject *op, PyObject *defaults)$/;" f +PyFunction_SetKwDefaults Objects/funcobject.c /^PyFunction_SetKwDefaults(PyObject *op, PyObject *defaults)$/;" f +PyFunction_SetVectorcall Objects/funcobject.c /^PyFunction_SetVectorcall(PyFunctionObject *func, vectorcallfunc vectorcall)$/;" f +PyFunction_Type Objects/funcobject.c /^PyTypeObject PyFunction_Type = {$/;" v +PyFunction_WatchCallback Include/cpython/funcobject.h /^typedef int (*PyFunction_WatchCallback)($/;" t +PyFunction_WatchEvent Include/cpython/funcobject.h /^} PyFunction_WatchEvent;$/;" t typeref:enum:__anon222 +PyFunctionality Lib/test/test_decimal.py /^class PyFunctionality(unittest.TestCase):$/;" c +PyFutureDoneCallbackTests Lib/test/test_asyncio/test_futures.py /^ test_utils.TestCase):$/;" c +PyFutureFeatures Include/cpython/compile.h /^} PyFutureFeatures;$/;" t typeref:struct:__anon207 +PyFutureInheritanceTests Lib/test/test_asyncio/test_futures.py /^ test_utils.TestCase):$/;" c +PyFutureTests Lib/test/test_asyncio/test_futures.py /^class PyFutureTests(BaseFutureTests, test_utils.TestCase):$/;" c +PyFutureTests Lib/test/test_asyncio/test_futures2.py /^class PyFutureTests(FutureTests, unittest.IsolatedAsyncioTestCase):$/;" c +PyGC_Collect Modules/gcmodule.c /^PyGC_Collect(void)$/;" f +PyGC_Disable Modules/gcmodule.c /^PyGC_Disable(void)$/;" f +PyGC_Enable Modules/gcmodule.c /^PyGC_Enable(void)$/;" f +PyGC_Head Include/internal/pycore_gc.h /^} PyGC_Head;$/;" t typeref:struct:__anon128 +PyGC_IsEnabled Modules/gcmodule.c /^PyGC_IsEnabled(void)$/;" f +PyGILState_Check Python/pystate.c /^PyGILState_Check(void)$/;" f +PyGILState_Ensure Python/pystate.c /^PyGILState_Ensure(void)$/;" f +PyGILState_GetThisThreadState Python/pystate.c /^PyGILState_GetThisThreadState(void)$/;" f +PyGILState_LOCKED Include/pystate.h /^ enum {PyGILState_LOCKED, PyGILState_UNLOCKED}$/;" e enum:__anon255 +PyGILState_Release Python/pystate.c /^PyGILState_Release(PyGILState_STATE oldstate)$/;" f +PyGILState_STATE Include/pystate.h /^ PyGILState_STATE;$/;" t typeref:enum:__anon255 +PyGILState_STATE Include/pystate.h /^PyAPI_FUNC(void) PyGILState_Release(PyGILState_STATE);$/;" v +PyGILState_UNLOCKED Include/pystate.h /^ enum {PyGILState_LOCKED, PyGILState_UNLOCKED}$/;" e enum:__anon255 +PyGenObject Include/cpython/genobject.h /^} PyGenObject;$/;" t typeref:struct:__anon177 +PyGen_Check Include/cpython/genobject.h 38;" d +PyGen_CheckExact Include/cpython/genobject.h 39;" d +PyGen_GetCode Objects/genobject.c /^PyGen_GetCode(PyGenObject *gen) {$/;" f +PyGen_New Objects/genobject.c /^PyGen_New(PyFrameObject *f)$/;" f +PyGen_NewWithQualName Objects/genobject.c /^PyGen_NewWithQualName(PyFrameObject *f, PyObject *name, PyObject *qualname)$/;" f +PyGen_Type Objects/genobject.c /^PyTypeObject PyGen_Type = {$/;" v +PyGen_am_send Objects/genobject.c /^PyGen_am_send(PyGenObject *gen, PyObject *arg, PyObject **result)$/;" f file: +PyGenericAliasObject Modules/_testcapimodule.c /^} PyGenericAliasObject;$/;" t typeref:struct:__anon594 file: +PyGenericObject Modules/_testcapimodule.c /^} PyGenericObject;$/;" t typeref:struct:__anon595 file: +PyGetSetDef Include/descrobject.h /^struct PyGetSetDef {$/;" s +PyGetSetDef Include/pytypedefs.h /^typedef struct PyGetSetDef PyGetSetDef;$/;" t typeref:struct:PyGetSetDef +PyGetSetDescrObject Include/cpython/descrobject.h /^} PyGetSetDescrObject;$/;" t typeref:struct:__anon217 +PyGetSetDescr_Type Objects/descrobject.c /^PyTypeObject PyGetSetDescr_Type = {$/;" v +PyHKEYObject PC/winreg.c /^} PyHKEYObject;$/;" t typeref:struct:__anon283 file: +PyHKEY_AsHKEY PC/winreg.c /^PyHKEY_AsHKEY(winreg_state *st, PyObject *ob, HKEY *pHANDLE, BOOL bNoneOK)$/;" f +PyHKEY_Check PC/winreg.c 122;" d file: +PyHKEY_Close PC/winreg.c /^PyHKEY_Close(winreg_state *st, PyObject *ob_handle)$/;" f +PyHKEY_FromHKEY PC/winreg.c /^PyHKEY_FromHKEY(winreg_state *st, HKEY h)$/;" f +PyHKEY_New PC/winreg.c /^PyHKEY_New(PyObject *m, HKEY hInit)$/;" f +PyHKEY_Type PC/winreg.c /^ PyTypeObject *PyHKEY_Type;$/;" m struct:__anon282 file: +PyHKEY_binaryFailureFunc PC/winreg.c /^PyHKEY_binaryFailureFunc(PyObject *ob1, PyObject *ob2)$/;" f file: +PyHKEY_boolFunc PC/winreg.c /^PyHKEY_boolFunc(PyObject *ob)$/;" f file: +PyHKEY_compareFunc PC/winreg.c /^PyHKEY_compareFunc(PyObject *ob1, PyObject *ob2)$/;" f file: +PyHKEY_deallocFunc PC/winreg.c /^PyHKEY_deallocFunc(PyObject *ob)$/;" f file: +PyHKEY_hashFunc PC/winreg.c /^PyHKEY_hashFunc(PyObject *ob)$/;" f file: +PyHKEY_intFunc PC/winreg.c /^PyHKEY_intFunc(PyObject *ob)$/;" f file: +PyHKEY_memberlist PC/winreg.c /^static PyMemberDef PyHKEY_memberlist[] = {$/;" v file: +PyHKEY_methods PC/winreg.c /^static struct PyMethodDef PyHKEY_methods[] = {$/;" v typeref:struct:PyMethodDef file: +PyHKEY_strFunc PC/winreg.c /^PyHKEY_strFunc(PyObject *ob)$/;" f file: +PyHKEY_ternaryFailureFunc PC/winreg.c /^PyHKEY_ternaryFailureFunc(PyObject *ob1, PyObject *ob2, PyObject *ob3)$/;" f file: +PyHKEY_traverseFunc PC/winreg.c /^PyHKEY_traverseFunc(PyHKEYObject *self, visitproc visit, void *arg)$/;" f file: +PyHKEY_unaryFailureFunc PC/winreg.c /^PyHKEY_unaryFailureFunc(PyObject *ob)$/;" f file: +PyHamtIterator Include/internal/pycore_hamt.h /^} PyHamtIterator;$/;" t typeref:struct:__anon14 +PyHamtIteratorState Include/internal/pycore_hamt.h /^} PyHamtIteratorState;$/;" t typeref:struct:__anon13 +PyHamtIterator_as_mapping Python/hamt.c /^static PyMappingMethods PyHamtIterator_as_mapping = {$/;" v file: +PyHamtNode Include/internal/pycore_hamt.h /^} PyHamtNode;$/;" t typeref:struct:__anon10 +PyHamtNode_Array Python/hamt.c /^} PyHamtNode_Array;$/;" t typeref:struct:__anon680 file: +PyHamtNode_Bitmap Include/internal/pycore_hamt.h /^} PyHamtNode_Bitmap;$/;" t typeref:struct:__anon12 +PyHamtNode_Collision Python/hamt.c /^} PyHamtNode_Collision;$/;" t typeref:struct:__anon681 file: +PyHamtObject Include/internal/pycore_hamt.h /^} PyHamtObject;$/;" t typeref:struct:__anon11 +PyHamt_Check Include/internal/pycore_hamt.h 34;" d +PyHamt_as_mapping Python/hamt.c /^static PyMappingMethods PyHamt_as_mapping = {$/;" v file: +PyHamt_as_sequence Python/hamt.c /^static PySequenceMethods PyHamt_as_sequence = {$/;" v file: +PyHamt_methods Python/hamt.c /^static PyMethodDef PyHamt_methods[] = {$/;" v file: +PyHash_Func Python/pyhash.c /^static PyHash_FuncDef PyHash_Func = {fnv, "fnv", 8 * SIZEOF_PY_HASH_T,$/;" v file: +PyHash_Func Python/pyhash.c /^static PyHash_FuncDef PyHash_Func = {pysiphash, "siphash13", 64, 128};$/;" v file: +PyHash_Func Python/pyhash.c /^static PyHash_FuncDef PyHash_Func = {pysiphash, "siphash24", 64, 128};$/;" v file: +PyHash_Func Python/pyhash.c /^static PyHash_FuncDef PyHash_Func;$/;" v file: +PyHash_FuncDef Include/pyhash.h /^} PyHash_FuncDef;$/;" t typeref:struct:__anon261 +PyHash_GetFuncDef Python/pyhash.c /^PyHash_GetFuncDef(void)$/;" f +PyHeapTypeObject Include/cpython/object.h /^} PyHeapTypeObject;$/;" t typeref:struct:_heaptypeobject +PyIOBase_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyIOBase_Type;$/;" m struct:_io_state +PyIOTest Lib/test/test_io.py /^class PyIOTest(IOTest):$/;" c +PyIdPersPicklerTests Lib/test/test_pickle.py /^ PersistentPicklerUnpicklerMixin, unittest.TestCase):$/;" c +PyImplicitConstructionTest Lib/test/test_decimal.py /^class PyImplicitConstructionTest(ImplicitConstructionTest, unittest.TestCase):$/;" c +PyImportErrorObject Include/cpython/pyerrors.h /^} PyImportErrorObject;$/;" t typeref:struct:__anon183 +PyImport_AddModule Python/import.c /^PyImport_AddModule(const char *name)$/;" f +PyImport_AddModuleObject Python/import.c /^PyImport_AddModuleObject(PyObject *name)$/;" f +PyImport_AppendInittab Python/import.c /^PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))$/;" f +PyImport_ExecCodeModule Python/import.c /^PyImport_ExecCodeModule(const char *name, PyObject *co)$/;" f +PyImport_ExecCodeModuleEx Python/import.c /^PyImport_ExecCodeModuleEx(const char *name, PyObject *co, const char *pathname)$/;" f +PyImport_ExecCodeModuleObject Python/import.c /^PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname,$/;" f +PyImport_ExecCodeModuleWithPathnames Python/import.c /^PyImport_ExecCodeModuleWithPathnames(const char *name, PyObject *co,$/;" f +PyImport_ExtendInittab Python/import.c /^PyImport_ExtendInittab(struct _inittab *newtab)$/;" f +PyImport_FrozenModules Programs/_bootstrap_python.c /^const struct _frozen *PyImport_FrozenModules = NULL;$/;" v typeref:struct:_frozen +PyImport_FrozenModules Programs/_freeze_module.c /^const struct _frozen *PyImport_FrozenModules;$/;" v typeref:struct:_frozen +PyImport_FrozenModules Python/frozen.c /^const struct _frozen *PyImport_FrozenModules = NULL;$/;" v typeref:struct:_frozen +PyImport_GetImporter Python/import.c /^PyImport_GetImporter(PyObject *path)$/;" f +PyImport_GetMagicNumber Python/import.c /^PyImport_GetMagicNumber(void)$/;" f +PyImport_GetMagicTag Python/import.c /^PyImport_GetMagicTag(void)$/;" f +PyImport_GetModule Python/import.c /^PyImport_GetModule(PyObject *name)$/;" f +PyImport_GetModuleDict Python/import.c /^PyImport_GetModuleDict(void)$/;" f +PyImport_Import Python/import.c /^PyImport_Import(PyObject *module_name)$/;" f +PyImport_ImportFrozenModule Python/import.c /^PyImport_ImportFrozenModule(const char *name)$/;" f +PyImport_ImportFrozenModuleObject Python/import.c /^PyImport_ImportFrozenModuleObject(PyObject *name)$/;" f +PyImport_ImportModule Python/import.c /^PyImport_ImportModule(const char *name)$/;" f +PyImport_ImportModuleEx Include/import.h 69;" d +PyImport_ImportModuleLevel Python/import.c /^PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals,$/;" f +PyImport_ImportModuleLevelObject Python/import.c /^PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals,$/;" f +PyImport_ImportModuleNoBlock Python/import.c /^PyImport_ImportModuleNoBlock(const char *name)$/;" f +PyImport_Inittab Python/import.c /^struct _inittab *PyImport_Inittab = _PyImport_Inittab;$/;" v typeref:struct:_inittab +PyImport_ReloadModule Python/import.c /^PyImport_ReloadModule(PyObject *m)$/;" f +PyIncrementalNewlineDecoderTest Lib/test/test_io.py /^class PyIncrementalNewlineDecoderTest(IncrementalNewlineDecoderTest):$/;" c +PyIncrementalNewlineDecoder_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyIncrementalNewlineDecoder_Type;$/;" m struct:_io_state +PyIndex_Check Objects/abstract.c /^PyIndex_Check(PyObject *obj)$/;" f +PyInitU__testmultiphase_zkouka_naten_evc07gi8e Modules/_testmultiphase.c /^PyInitU__testmultiphase_zkouka_naten_evc07gi8e(void)$/;" f +PyInitU_eckzbwbhc6jpgzcx415x Modules/_testmultiphase.c /^PyInitU_eckzbwbhc6jpgzcx415x(void)$/;" f +PyInit__abc Modules/_abc.c /^PyInit__abc(void)$/;" f +PyInit__ast Python/Python-ast.c /^PyInit__ast(void)$/;" f +PyInit__asyncio Modules/_asynciomodule.c /^PyInit__asyncio(void)$/;" f +PyInit__bisect Modules/_bisectmodule.c /^PyInit__bisect(void)$/;" f +PyInit__blake2 Modules/_blake2/blake2module.c /^PyInit__blake2(void)$/;" f +PyInit__bz2 Modules/_bz2module.c /^PyInit__bz2(void)$/;" f +PyInit__codecs Modules/_codecsmodule.c /^PyInit__codecs(void)$/;" f +PyInit__collections Modules/_collectionsmodule.c /^PyInit__collections(void)$/;" f +PyInit__contextvars Modules/_contextvarsmodule.c /^PyInit__contextvars(void)$/;" f +PyInit__crypt Modules/_cryptmodule.c /^PyInit__crypt(void)$/;" f +PyInit__csv Modules/_csv.c /^PyInit__csv(void)$/;" f +PyInit__ctypes Modules/_ctypes/_ctypes.c /^PyInit__ctypes(void)$/;" f +PyInit__ctypes_test Modules/_ctypes/_ctypes_test.c /^PyInit__ctypes_test(void)$/;" f +PyInit__curses Modules/_cursesmodule.c /^PyInit__curses(void)$/;" f +PyInit__curses_panel Modules/_curses_panel.c /^PyInit__curses_panel(void)$/;" f +PyInit__datetime Modules/_datetimemodule.c /^PyInit__datetime(void)$/;" f +PyInit__dbm Modules/_dbmmodule.c /^PyInit__dbm(void)$/;" f +PyInit__decimal Modules/_decimal/_decimal.c /^PyInit__decimal(void)$/;" f +PyInit__elementtree Modules/_elementtree.c /^PyInit__elementtree(void)$/;" f +PyInit__functools Modules/_functoolsmodule.c /^PyInit__functools(void)$/;" f +PyInit__gdbm Modules/_gdbmmodule.c /^PyInit__gdbm(void)$/;" f +PyInit__hashlib Modules/_hashopenssl.c /^PyInit__hashlib(void)$/;" f +PyInit__heapq Modules/_heapqmodule.c /^PyInit__heapq(void)$/;" f +PyInit__imp Python/import.c /^PyInit__imp(void)$/;" f +PyInit__io Modules/_io/_iomodule.c /^PyInit__io(void)$/;" f +PyInit__json Modules/_json.c /^PyInit__json(void)$/;" f +PyInit__locale Modules/_localemodule.c /^PyInit__locale(void)$/;" f +PyInit__lsprof Modules/_lsprof.c /^PyInit__lsprof(void)$/;" f +PyInit__lzma Modules/_lzmamodule.c /^PyInit__lzma(void)$/;" f +PyInit__md5 Modules/md5module.c /^PyInit__md5(void)$/;" f +PyInit__msi PC/_msi.c /^PyInit__msi(void)$/;" f +PyInit__multibytecodec Modules/cjkcodecs/multibytecodec.c /^PyInit__multibytecodec(void)$/;" f +PyInit__multiprocessing Modules/_multiprocessing/multiprocessing.c /^PyInit__multiprocessing(void)$/;" f +PyInit__opcode Modules/_opcode.c /^PyInit__opcode(void)$/;" f +PyInit__operator Modules/_operator.c /^PyInit__operator(void)$/;" f +PyInit__overlapped Modules/overlapped.c /^PyInit__overlapped(void)$/;" f +PyInit__pickle Modules/_pickle.c /^PyInit__pickle(void)$/;" f +PyInit__posixshmem Modules/_multiprocessing/posixshmem.c /^PyInit__posixshmem(void)$/;" f +PyInit__posixsubprocess Modules/_posixsubprocess.c /^PyInit__posixsubprocess(void)$/;" f +PyInit__queue Modules/_queuemodule.c /^PyInit__queue(void)$/;" f +PyInit__random Modules/_randommodule.c /^PyInit__random(void)$/;" f +PyInit__scproxy Modules/_scproxy.c /^PyInit__scproxy(void)$/;" f +PyInit__sha1 Modules/sha1module.c /^PyInit__sha1(void)$/;" f +PyInit__sha2 Modules/sha2module.c /^PyInit__sha2(void)$/;" f +PyInit__sha3 Modules/sha3module.c /^PyInit__sha3(void)$/;" f +PyInit__signal Modules/signalmodule.c /^PyInit__signal(void)$/;" f +PyInit__socket Modules/socketmodule.c /^PyInit__socket(void)$/;" f +PyInit__sqlite3 Modules/_sqlite/module.c /^PyInit__sqlite3(void)$/;" f +PyInit__sre Modules/_sre/sre.c /^PyInit__sre(void)$/;" f +PyInit__ssl Modules/_ssl.c /^PyInit__ssl(void)$/;" f +PyInit__stat Modules/_stat.c /^PyInit__stat(void)$/;" f +PyInit__statistics Modules/_statisticsmodule.c /^PyInit__statistics(void)$/;" f +PyInit__string Objects/unicodeobject.c /^PyInit__string(void)$/;" f +PyInit__struct Modules/_struct.c /^PyInit__struct(void)$/;" f +PyInit__symtable Modules/symtablemodule.c /^PyInit__symtable(void)$/;" f +PyInit__test_module_state_shared Modules/_testmultiphase.c /^PyInit__test_module_state_shared(void)$/;" f +PyInit__test_non_isolated Modules/_testmultiphase.c /^PyInit__test_non_isolated(void)$/;" f +PyInit__test_shared_gil_only Modules/_testmultiphase.c /^PyInit__test_shared_gil_only(void)$/;" f +PyInit__testbuffer Modules/_testbuffer.c /^PyInit__testbuffer(void)$/;" f +PyInit__testcapi Modules/_testcapimodule.c /^PyInit__testcapi(void)$/;" f +PyInit__testclinic Modules/_testclinic.c /^PyInit__testclinic(void)$/;" f +PyInit__testconsole PC/_testconsole.c /^PyInit__testconsole(PyObject *spec)$/;" f +PyInit__testimportmultiple Modules/_testimportmultiple.c /^PyMODINIT_FUNC PyInit__testimportmultiple(void)$/;" f +PyInit__testimportmultiple_bar Modules/_testimportmultiple.c /^PyMODINIT_FUNC PyInit__testimportmultiple_bar(void){$/;" f +PyInit__testimportmultiple_foo Modules/_testimportmultiple.c /^PyMODINIT_FUNC PyInit__testimportmultiple_foo(void)$/;" f +PyInit__testinternalcapi Modules/_testinternalcapi.c /^PyInit__testinternalcapi(void)$/;" f +PyInit__testmultiphase Modules/_testmultiphase.c /^PyInit__testmultiphase(void)$/;" f +PyInit__testmultiphase_bad_slot_large Modules/_testmultiphase.c /^PyInit__testmultiphase_bad_slot_large(void)$/;" f +PyInit__testmultiphase_bad_slot_negative Modules/_testmultiphase.c /^PyInit__testmultiphase_bad_slot_negative(void)$/;" f +PyInit__testmultiphase_create_int_with_state Modules/_testmultiphase.c /^PyInit__testmultiphase_create_int_with_state(void)$/;" f +PyInit__testmultiphase_create_null Modules/_testmultiphase.c /^PyInit__testmultiphase_create_null(void)$/;" f +PyInit__testmultiphase_create_raise Modules/_testmultiphase.c /^PyInit__testmultiphase_create_raise(void)$/;" f +PyInit__testmultiphase_create_unreported_exception Modules/_testmultiphase.c /^PyInit__testmultiphase_create_unreported_exception(void)$/;" f +PyInit__testmultiphase_exec_err Modules/_testmultiphase.c /^PyInit__testmultiphase_exec_err(void)$/;" f +PyInit__testmultiphase_exec_raise Modules/_testmultiphase.c /^PyInit__testmultiphase_exec_raise(void)$/;" f +PyInit__testmultiphase_exec_unreported_exception Modules/_testmultiphase.c /^PyInit__testmultiphase_exec_unreported_exception(void)$/;" f +PyInit__testmultiphase_export_null Modules/_testmultiphase.c /^PyInit__testmultiphase_export_null(void)$/;" f +PyInit__testmultiphase_export_raise Modules/_testmultiphase.c /^PyInit__testmultiphase_export_raise(void)$/;" f +PyInit__testmultiphase_export_uninitialized Modules/_testmultiphase.c /^PyInit__testmultiphase_export_uninitialized(void)$/;" f +PyInit__testmultiphase_export_unreported_exception Modules/_testmultiphase.c /^PyInit__testmultiphase_export_unreported_exception(void)$/;" f +PyInit__testmultiphase_meth_state_access Modules/_testmultiphase.c /^PyInit__testmultiphase_meth_state_access(void)$/;" f +PyInit__testmultiphase_multiple_create_slots Modules/_testmultiphase.c /^PyInit__testmultiphase_multiple_create_slots(void)$/;" f +PyInit__testmultiphase_multiple_multiple_interpreters_slots Modules/_testmultiphase.c /^PyInit__testmultiphase_multiple_multiple_interpreters_slots(void)$/;" f +PyInit__testmultiphase_negative_size Modules/_testmultiphase.c /^PyInit__testmultiphase_negative_size(void)$/;" f +PyInit__testmultiphase_nonmodule Modules/_testmultiphase.c /^PyInit__testmultiphase_nonmodule(void)$/;" f +PyInit__testmultiphase_nonmodule_with_exec_slots Modules/_testmultiphase.c /^PyInit__testmultiphase_nonmodule_with_exec_slots(void)$/;" f +PyInit__testmultiphase_nonmodule_with_methods Modules/_testmultiphase.c /^PyInit__testmultiphase_nonmodule_with_methods(void)$/;" f +PyInit__testmultiphase_null_slots Modules/_testmultiphase.c /^PyInit__testmultiphase_null_slots(void)$/;" f +PyInit__testsinglephase Modules/_testsinglephase.c /^PyInit__testsinglephase(void)$/;" f +PyInit__testsinglephase_basic_copy Modules/_testsinglephase.c /^PyInit__testsinglephase_basic_copy(void)$/;" f +PyInit__testsinglephase_basic_wrapper Modules/_testsinglephase.c /^PyInit__testsinglephase_basic_wrapper(void)$/;" f +PyInit__testsinglephase_with_reinit Modules/_testsinglephase.c /^PyInit__testsinglephase_with_reinit(void)$/;" f +PyInit__testsinglephase_with_state Modules/_testsinglephase.c /^PyInit__testsinglephase_with_state(void)$/;" f +PyInit__thread Modules/_threadmodule.c /^PyInit__thread(void)$/;" f +PyInit__tkinter Modules/_tkinter.c /^PyInit__tkinter(void)$/;" f +PyInit__tokenize Python/Python-tokenize.c /^PyInit__tokenize(void)$/;" f +PyInit__tracemalloc Modules/_tracemalloc.c /^PyInit__tracemalloc(void)$/;" f +PyInit__typing Modules/_typingmodule.c /^PyInit__typing(void)$/;" f +PyInit__uuid Modules/_uuidmodule.c /^PyInit__uuid(void)$/;" f +PyInit__weakref Modules/_weakref.c /^PyInit__weakref(void)$/;" f +PyInit__winapi Modules/_winapi.c /^PyInit__winapi(void)$/;" f +PyInit__wmi PC/_wmimodule.cpp /^ PyMODINIT_FUNC PyInit__wmi(void)$/;" f +PyInit__xxinterpchannels Modules/_xxinterpchannelsmodule.c /^PyInit__xxinterpchannels(void)$/;" f +PyInit__xxsubinterpreters Modules/_xxsubinterpretersmodule.c /^PyInit__xxsubinterpreters(void)$/;" f +PyInit__xxtestfuzz Modules/_xxtestfuzz/_xxtestfuzz.c /^PyInit__xxtestfuzz(void)$/;" f +PyInit__zoneinfo Modules/_zoneinfo.c /^PyInit__zoneinfo(void)$/;" f +PyInit_array Modules/arraymodule.c /^PyInit_array(void)$/;" f +PyInit_atexit Modules/atexitmodule.c /^PyInit_atexit(void)$/;" f +PyInit_audioop Modules/audioop.c /^PyInit_audioop(void)$/;" f +PyInit_binascii Modules/binascii.c /^PyInit_binascii(void)$/;" f +PyInit_cmath Modules/cmathmodule.c /^PyInit_cmath(void)$/;" f +PyInit_custom Doc/includes/newtypes/custom.c /^PyInit_custom(void)$/;" f +PyInit_custom2 Doc/includes/newtypes/custom2.c /^PyInit_custom2(void)$/;" f +PyInit_custom3 Doc/includes/newtypes/custom3.c /^PyInit_custom3(void)$/;" f +PyInit_custom4 Doc/includes/newtypes/custom4.c /^PyInit_custom4(void)$/;" f +PyInit_embedded_ext Programs/_testembed.c /^PyInit_embedded_ext(void)$/;" f file: +PyInit_errno Modules/errnomodule.c /^PyInit_errno(void)$/;" f +PyInit_faulthandler Modules/faulthandler.c /^PyInit_faulthandler(void)$/;" f +PyInit_fcntl Modules/fcntlmodule.c /^PyInit_fcntl(void)$/;" f +PyInit_gc Modules/gcmodule.c /^PyInit_gc(void)$/;" f +PyInit_grp Modules/grpmodule.c /^PyInit_grp(void)$/;" f +PyInit_itertools Modules/itertoolsmodule.c /^PyInit_itertools(void)$/;" f +PyInit_math Modules/mathmodule.c /^PyInit_math(void)$/;" f +PyInit_mmap Modules/mmapmodule.c /^PyInit_mmap(void)$/;" f +PyInit_msvcrt PC/msvcrtmodule.c /^PyInit_msvcrt(void)$/;" f +PyInit_nis Modules/nismodule.c /^PyInit_nis(void)$/;" f +PyInit_ossaudiodev Modules/ossaudiodev.c /^PyInit_ossaudiodev(void)$/;" f +PyInit_parse Tools/peg_generator/peg_extension/peg_extension.c /^PyInit_parse(void)$/;" f +PyInit_pwd Modules/pwdmodule.c /^PyInit_pwd(void)$/;" f +PyInit_pyexpat Modules/pyexpat.c /^PyInit_pyexpat(void)$/;" f +PyInit_readline Modules/readline.c /^PyInit_readline(void)$/;" f +PyInit_resource Modules/resource.c /^PyInit_resource(void)$/;" f +PyInit_select Modules/selectmodule.c /^PyInit_select(void)$/;" f +PyInit_spwd Modules/spwdmodule.c /^PyInit_spwd(void)$/;" f +PyInit_sublist Doc/includes/newtypes/sublist.c /^PyInit_sublist(void)$/;" f +PyInit_syslog Modules/syslogmodule.c /^PyInit_syslog(void)$/;" f +PyInit_termios Modules/termios.c /^PyMODINIT_FUNC PyInit_termios(void)$/;" f +PyInit_time Modules/timemodule.c /^PyInit_time(void)$/;" f +PyInit_unicodedata Modules/unicodedata.c /^PyInit_unicodedata(void)$/;" f +PyInit_winreg PC/winreg.c /^PyMODINIT_FUNC PyInit_winreg(void)$/;" f +PyInit_winsound PC/winsound.c /^PyInit_winsound(void)$/;" f +PyInit_x Modules/_testmultiphase.c /^PyInit_x(void)$/;" f +PyInit_xx Modules/xxmodule.c /^PyInit_xx(void)$/;" f +PyInit_xxlimited Modules/xxlimited.c /^PyInit_xxlimited(void)$/;" f +PyInit_xxlimited_35 Modules/xxlimited_35.c /^PyInit_xxlimited_35(void)$/;" f +PyInit_xxsubtype Modules/xxsubtype.c /^PyInit_xxsubtype(void)$/;" f +PyInit_zlib Modules/zlibmodule.c /^PyInit_zlib(void)$/;" f +PyInstanceMethodObject Include/cpython/classobject.h /^} PyInstanceMethodObject;$/;" t typeref:struct:__anon193 +PyInstanceMethod_Check Include/cpython/classobject.h 51;" d +PyInstanceMethod_Function Objects/classobject.c /^PyInstanceMethod_Function(PyObject *im)$/;" f +PyInstanceMethod_GET_FUNCTION Include/cpython/classobject.h /^static inline PyObject* PyInstanceMethod_GET_FUNCTION(PyObject *meth) {$/;" f +PyInstanceMethod_GET_FUNCTION Include/cpython/classobject.h 65;" d +PyInstanceMethod_New Objects/classobject.c /^PyInstanceMethod_New(PyObject *func) {$/;" f +PyInstanceMethod_Type Objects/classobject.c /^PyTypeObject PyInstanceMethod_Type = {$/;" v +PyInterpreterConfig Include/cpython/pylifecycle.h /^} PyInterpreterConfig;$/;" t typeref:struct:__anon194 +PyInterpreterConfig_DEFAULT_GIL Include/cpython/pylifecycle.h 68;" d +PyInterpreterConfig_OWN_GIL Include/cpython/pylifecycle.h 70;" d +PyInterpreterConfig_SHARED_GIL Include/cpython/pylifecycle.h 69;" d +PyInterpreterState Include/pytypedefs.h /^typedef struct _is PyInterpreterState;$/;" t typeref:struct:_is +PyInterpreterState_Clear Python/pystate.c /^PyInterpreterState_Clear(PyInterpreterState *interp)$/;" f +PyInterpreterState_Delete Python/pystate.c /^PyInterpreterState_Delete(PyInterpreterState *interp)$/;" f +PyInterpreterState_Get Python/pystate.c /^PyInterpreterState_Get(void)$/;" f +PyInterpreterState_GetDict Python/pystate.c /^PyInterpreterState_GetDict(PyInterpreterState *interp)$/;" f +PyInterpreterState_GetID Python/pystate.c /^PyInterpreterState_GetID(PyInterpreterState *interp)$/;" f +PyInterpreterState_Head Python/pystate.c /^PyInterpreterState_Head(void)$/;" f +PyInterpreterState_Main Python/pystate.c /^PyInterpreterState_Main(void)$/;" f +PyInterpreterState_New Python/pystate.c /^PyInterpreterState_New(void)$/;" f +PyInterpreterState_Next Python/pystate.c /^PyInterpreterState_Next(PyInterpreterState *interp) {$/;" f +PyInterpreterState_ThreadHead Python/pystate.c /^PyInterpreterState_ThreadHead(PyInterpreterState *interp) {$/;" f +PyIntrospectionTests Lib/test/test_asyncio/test_tasks.py /^class PyIntrospectionTests(test_utils.TestCase, BaseTaskIntrospectionTests):$/;" c +PyIter_Check Objects/abstract.c /^PyIter_Check(PyObject *obj)$/;" f +PyIter_Next Objects/abstract.c /^PyIter_Next(PyObject *iter)$/;" f +PyIter_Send Objects/abstract.c /^PyIter_Send(PyObject *iter, PyObject *arg, PyObject **result)$/;" f +PyKeysValuesPair Tools/gdb/libpython.py /^class PyKeysValuesPair:$/;" c +PyLargeFileTest Lib/test/test_largefile.py /^class PyLargeFileTest(TestFileMethods, unittest.TestCase):$/;" c +PyLifoQueueTest Lib/test/test_queue.py /^class PyLifoQueueTest(LifoQueueTest, unittest.TestCase):$/;" c +PyList Lib/test/test_capi/test_misc.py /^ class PyList(base):$/;" c function:CAPITest.do_test_trashcan_python_class +PyList Tools/gdb/libpython.py /^class PyList(gdb.Command):$/;" c +PyListIter_Type Objects/listobject.c /^PyTypeObject PyListIter_Type = {$/;" v +PyListObject Include/cpython/listobject.h /^} PyListObject;$/;" t typeref:struct:__anon239 +PyListObjectPtr Tools/gdb/libpython.py /^class PyListObjectPtr(PyObjectPtr):$/;" c +PyListRevIter_Type Objects/listobject.c /^PyTypeObject PyListRevIter_Type = {$/;" v +PyListTests Lib/test/test_gdb.py /^class PyListTests(DebuggerTests):$/;" c +PyList_Append Objects/listobject.c /^PyList_Append(PyObject *op, PyObject *newitem)$/;" f +PyList_AsTuple Objects/listobject.c /^PyList_AsTuple(PyObject *v)$/;" f +PyList_Check Include/listobject.h 24;" d +PyList_CheckExact Include/listobject.h 26;" d +PyList_GET_ITEM Include/cpython/listobject.h 39;" d +PyList_GET_SIZE Include/cpython/listobject.h /^static inline Py_ssize_t PyList_GET_SIZE(PyObject *op) {$/;" f +PyList_GET_SIZE Include/cpython/listobject.h 37;" d +PyList_GetItem Objects/listobject.c /^PyList_GetItem(PyObject *op, Py_ssize_t i)$/;" f +PyList_GetSlice Objects/listobject.c /^PyList_GetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh)$/;" f +PyList_Insert Objects/listobject.c /^PyList_Insert(PyObject *op, Py_ssize_t where, PyObject *newitem)$/;" f +PyList_MAXFREELIST Include/internal/pycore_list.h 23;" d +PyList_MAXFREELIST Include/internal/pycore_list.h 28;" d +PyList_New Objects/listobject.c /^PyList_New(Py_ssize_t size)$/;" f +PyList_Reverse Objects/listobject.c /^PyList_Reverse(PyObject *v)$/;" f +PyList_SET_ITEM Include/cpython/listobject.h /^PyList_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {$/;" f +PyList_SET_ITEM Include/cpython/listobject.h 46;" d +PyList_SetItem Objects/listobject.c /^PyList_SetItem(PyObject *op, Py_ssize_t i,$/;" f +PyList_SetSlice Objects/listobject.c /^PyList_SetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v)$/;" f +PyList_Size Objects/listobject.c /^PyList_Size(PyObject *op)$/;" f +PyList_Sort Objects/listobject.c /^PyList_Sort(PyObject *v)$/;" f +PyList_Type Objects/listobject.c /^PyTypeObject PyList_Type = {$/;" v +PyLocale_Methods Modules/_localemodule.c /^static struct PyMethodDef PyLocale_Methods[] = {$/;" v typeref:struct:PyMethodDef file: +PyLocals Tools/gdb/libpython.py /^class PyLocals(gdb.Command):$/;" c +PyLocalsTests Lib/test/test_gdb.py /^class PyLocalsTests(DebuggerTests):$/;" c +PyLockStatus Include/pythread.h /^typedef enum PyLockStatus {$/;" g +PyLockStatus Include/pythread.h /^} PyLockStatus;$/;" t typeref:enum:PyLockStatus +PyLongModuleTests Lib/test/test_int.py /^class PyLongModuleTests(unittest.TestCase):$/;" c +PyLongObject Include/pytypedefs.h /^typedef struct _longobject PyLongObject;$/;" t typeref:struct:_longobject +PyLongObjectPtr Tools/gdb/libpython.py /^class PyLongObjectPtr(PyObjectPtr):$/;" c +PyLongRangeIter_Type Objects/rangeobject.c /^PyTypeObject PyLongRangeIter_Type = {$/;" v +PyLong_AS_LONG Include/longobject.h 31;" d +PyLong_AsDouble Objects/longobject.c /^PyLong_AsDouble(PyObject *v)$/;" f +PyLong_AsLong Objects/longobject.c /^PyLong_AsLong(PyObject *obj)$/;" f +PyLong_AsLongAndOverflow Objects/longobject.c /^PyLong_AsLongAndOverflow(PyObject *vv, int *overflow)$/;" f +PyLong_AsLongLong Objects/longobject.c /^PyLong_AsLongLong(PyObject *vv)$/;" f +PyLong_AsLongLongAndOverflow Objects/longobject.c /^PyLong_AsLongLongAndOverflow(PyObject *vv, int *overflow)$/;" f +PyLong_AsOff_t Modules/_io/_iomodule.h 111;" d +PyLong_AsOff_t Modules/_io/_iomodule.h 118;" d +PyLong_AsOff_t Modules/_io/_iomodule.h 125;" d +PyLong_AsOff_t Modules/_io/_iomodule.h 99;" d +PyLong_AsPid Include/longobject.h 37;" d +PyLong_AsPid Include/longobject.h 41;" d +PyLong_AsPid Include/longobject.h 45;" d +PyLong_AsSize_t Objects/longobject.c /^PyLong_AsSize_t(PyObject *vv)$/;" f +PyLong_AsSocket_t Modules/socketmodule.h 246;" d +PyLong_AsSocket_t Modules/socketmodule.h 249;" d +PyLong_AsSsize_t Objects/longobject.c /^PyLong_AsSsize_t(PyObject *vv) {$/;" f +PyLong_AsUnsignedLong Objects/longobject.c /^PyLong_AsUnsignedLong(PyObject *vv)$/;" f +PyLong_AsUnsignedLongLong Objects/longobject.c /^PyLong_AsUnsignedLongLong(PyObject *vv)$/;" f +PyLong_AsUnsignedLongLongMask Objects/longobject.c /^PyLong_AsUnsignedLongLongMask(PyObject *op)$/;" f +PyLong_AsUnsignedLongMask Objects/longobject.c /^PyLong_AsUnsignedLongMask(PyObject *op)$/;" f +PyLong_AsVoidPtr Objects/longobject.c /^PyLong_AsVoidPtr(PyObject *vv)$/;" f +PyLong_BASE Include/cpython/longintrepr.h 61;" d +PyLong_Check Include/longobject.h 12;" d +PyLong_CheckExact Include/longobject.h 14;" d +PyLong_FromDouble Objects/longobject.c /^PyLong_FromDouble(double dval)$/;" f +PyLong_FromLong Misc/coverity_model.c /^PyObject *PyLong_FromLong(long ival)$/;" f +PyLong_FromLong Objects/longobject.c /^PyLong_FromLong(long ival)$/;" f +PyLong_FromLongLong Misc/coverity_model.c /^PyObject *PyLong_FromLongLong(long long ival)$/;" f +PyLong_FromLongLong Objects/longobject.c /^PyLong_FromLongLong(long long ival)$/;" f +PyLong_FromOff_t Modules/_io/_iomodule.h 100;" d +PyLong_FromOff_t Modules/_io/_iomodule.h 112;" d +PyLong_FromOff_t Modules/_io/_iomodule.h 119;" d +PyLong_FromOff_t Modules/_io/_iomodule.h 126;" d +PyLong_FromPid Include/longobject.h 36;" d +PyLong_FromPid Include/longobject.h 40;" d +PyLong_FromPid Include/longobject.h 44;" d +PyLong_FromPy_off_t Modules/posixmodule.c /^PyLong_FromPy_off_t(Py_off_t offset)$/;" f file: +PyLong_FromSize_t Objects/longobject.c /^PyLong_FromSize_t(size_t ival)$/;" f +PyLong_FromSocket_t Modules/socketmodule.h 245;" d +PyLong_FromSocket_t Modules/socketmodule.h 248;" d +PyLong_FromSsize_t Misc/coverity_model.c /^PyObject *PyLong_FromSsize_t(Py_ssize_t ival)$/;" f +PyLong_FromSsize_t Objects/longobject.c /^PyLong_FromSsize_t(Py_ssize_t ival)$/;" f +PyLong_FromString Objects/longobject.c /^PyLong_FromString(const char *str, char **pend, int base)$/;" f +PyLong_FromUnicodeObject Objects/longobject.c /^PyLong_FromUnicodeObject(PyObject *u, int base)$/;" f +PyLong_FromUnsignedLong Objects/longobject.c /^PyLong_FromUnsignedLong(unsigned long ival)$/;" f +PyLong_FromUnsignedLongLong Objects/longobject.c /^PyLong_FromUnsignedLongLong(unsigned long long ival)$/;" f +PyLong_FromVoidPtr Objects/longobject.c /^PyLong_FromVoidPtr(void *p)$/;" f +PyLong_GetInfo Objects/longobject.c /^PyLong_GetInfo(void)$/;" f +PyLong_MARSHAL_BASE Python/marshal.c 218;" d file: +PyLong_MARSHAL_MASK Python/marshal.c 219;" d file: +PyLong_MARSHAL_RATIO Python/marshal.c 223;" d file: +PyLong_MARSHAL_SHIFT Python/marshal.c 217;" d file: +PyLong_MASK Include/cpython/longintrepr.h 62;" d +PyLong_SHIFT Include/cpython/longintrepr.h 47;" d +PyLong_SHIFT Include/cpython/longintrepr.h 55;" d +PyLong_Type Objects/longobject.c /^PyTypeObject PyLong_Type = {$/;" v +PyLzma_Free Modules/_lzmamodule.c /^PyLzma_Free(void *opaque, void *ptr)$/;" f file: +PyLzma_Malloc Modules/_lzmamodule.c /^PyLzma_Malloc(void *opaque, size_t items, size_t size)$/;" f file: +PyMODINIT_FUNC Include/pyport.h 517;" d +PyMODINIT_FUNC Include/pyport.h 519;" d +PyMODINIT_FUNC Include/pyport.h 533;" d +PyMODINIT_FUNC Include/pyport.h 535;" d +PyMODINIT_FUNC Include/pyport.h 550;" d +PyMODINIT_FUNC Include/pyport.h 552;" d +PyMUTEX_FINI Python/condvar.h /^PyMUTEX_FINI(PyMUTEX_T *cs)$/;" f +PyMUTEX_FINI Python/condvar.h 57;" d +PyMUTEX_INIT Python/condvar.h /^PyMUTEX_INIT(PyMUTEX_T *cs)$/;" f +PyMUTEX_INIT Python/condvar.h 56;" d +PyMUTEX_LOCK Python/condvar.h /^PyMUTEX_LOCK(PyMUTEX_T *cs)$/;" f +PyMUTEX_LOCK Python/condvar.h 58;" d +PyMUTEX_T Include/internal/pycore_condvar.h /^typedef CRITICAL_SECTION PyMUTEX_T;$/;" t +PyMUTEX_T Include/internal/pycore_condvar.h /^typedef SRWLOCK PyMUTEX_T;$/;" t +PyMUTEX_T Include/internal/pycore_condvar.h 27;" d +PyMUTEX_UNLOCK Python/condvar.h /^PyMUTEX_UNLOCK(PyMUTEX_T *cs)$/;" f +PyMUTEX_UNLOCK Python/condvar.h 59;" d +PyMap_Type Python/bltinmodule.c /^PyTypeObject PyMap_Type = {$/;" v +PyMappingMethods Include/cpython/object.h /^} PyMappingMethods;$/;" t typeref:struct:__anon211 +PyMapping_Check Objects/abstract.c /^PyMapping_Check(PyObject *o)$/;" f +PyMapping_DelItem Include/abstract.h 841;" d +PyMapping_DelItemString Include/abstract.h 831;" d +PyMapping_GetItemString Objects/abstract.c /^PyMapping_GetItemString(PyObject *o, const char *key)$/;" f +PyMapping_HasKey Objects/abstract.c /^PyMapping_HasKey(PyObject *o, PyObject *key)$/;" f +PyMapping_HasKeyString Objects/abstract.c /^PyMapping_HasKeyString(PyObject *o, const char *key)$/;" f +PyMapping_Items Objects/abstract.c /^PyMapping_Items(PyObject *o)$/;" f +PyMapping_Keys Objects/abstract.c /^PyMapping_Keys(PyObject *o)$/;" f +PyMapping_Length Include/abstract.h 818;" d +PyMapping_Length Include/abstract.h 820;" d +PyMapping_Length Objects/abstract.c /^PyMapping_Length(PyObject *o)$/;" f +PyMapping_Length Objects/abstract.c 2318;" d file: +PyMapping_Length Objects/abstract.c 2324;" d file: +PyMapping_SetItemString Objects/abstract.c /^PyMapping_SetItemString(PyObject *o, const char *key, PyObject *value)$/;" f +PyMapping_Size Objects/abstract.c /^PyMapping_Size(PyObject *o)$/;" f +PyMapping_Values Objects/abstract.c /^PyMapping_Values(PyObject *o)$/;" f +PyMarshal_Init Python/marshal.c /^PyMarshal_Init(void)$/;" f +PyMarshal_ReadLastObjectFromFile Python/marshal.c /^PyMarshal_ReadLastObjectFromFile(FILE *fp)$/;" f +PyMarshal_ReadLongFromFile Python/marshal.c /^PyMarshal_ReadLongFromFile(FILE *fp)$/;" f +PyMarshal_ReadObjectFromFile Python/marshal.c /^PyMarshal_ReadObjectFromFile(FILE *fp)$/;" f +PyMarshal_ReadObjectFromString Python/marshal.c /^PyMarshal_ReadObjectFromString(const char *str, Py_ssize_t len)$/;" f +PyMarshal_ReadShortFromFile Python/marshal.c /^PyMarshal_ReadShortFromFile(FILE *fp)$/;" f +PyMarshal_WriteLongToFile Python/marshal.c /^PyMarshal_WriteLongToFile(long x, FILE *fp, int version)$/;" f +PyMarshal_WriteObjectToFile Python/marshal.c /^PyMarshal_WriteObjectToFile(PyObject *x, FILE *fp, int version)$/;" f +PyMarshal_WriteObjectToString Python/marshal.c /^PyMarshal_WriteObjectToString(PyObject *x, int version)$/;" f +PyMemAllocatorDomain Include/cpython/pymem.h /^} PyMemAllocatorDomain;$/;" t typeref:enum:__anon247 +PyMemAllocatorEx Include/cpython/pymem.h /^} PyMemAllocatorEx;$/;" t typeref:struct:__anon249 +PyMemAllocatorName Include/cpython/pymem.h /^} PyMemAllocatorName;$/;" t typeref:enum:__anon248 +PyMemDebugTests Lib/test/test_capi/test_mem.py /^class PyMemDebugTests(unittest.TestCase):$/;" c +PyMemDefaultTests Lib/test/test_capi/test_mem.py /^class PyMemDefaultTests(PyMemDebugTests):$/;" c +PyMemMallocDebugTests Lib/test/test_capi/test_mem.py /^class PyMemMallocDebugTests(PyMemDebugTests):$/;" c +PyMemPymallocDebugTests Lib/test/test_capi/test_mem.py /^class PyMemPymallocDebugTests(PyMemDebugTests):$/;" c +PyMem_Calloc Objects/obmalloc.c /^PyMem_Calloc(size_t nelem, size_t elsize)$/;" f +PyMem_DEL Include/pymem.h 91;" d +PyMem_Del Include/pymem.h 90;" d +PyMem_FREE Include/pymem.h 89;" d +PyMem_Free Objects/obmalloc.c /^PyMem_Free(void *ptr)$/;" f +PyMem_GetAllocator Objects/obmalloc.c /^PyMem_GetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator)$/;" f +PyMem_MALLOC Include/pymem.h 85;" d +PyMem_Malloc Objects/obmalloc.c /^PyMem_Malloc(size_t size)$/;" f +PyMem_NEW Include/pymem.h 86;" d +PyMem_New Include/pymem.h 67;" d +PyMem_REALLOC Include/pymem.h 87;" d +PyMem_RESIZE Include/pymem.h 88;" d +PyMem_RawCalloc Objects/obmalloc.c /^PyMem_RawCalloc(size_t nelem, size_t elsize)$/;" f +PyMem_RawFree Objects/obmalloc.c /^void PyMem_RawFree(void *ptr)$/;" f +PyMem_RawMalloc Objects/obmalloc.c /^PyMem_RawMalloc(size_t size)$/;" f +PyMem_RawRealloc Objects/obmalloc.c /^PyMem_RawRealloc(void *ptr, size_t new_size)$/;" f +PyMem_Realloc Objects/obmalloc.c /^PyMem_Realloc(void *ptr, size_t new_size)$/;" f +PyMem_Resize Include/pymem.h 77;" d +PyMem_SetAllocator Objects/obmalloc.c /^PyMem_SetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator)$/;" f +PyMem_SetupDebugHooks Objects/obmalloc.c /^PyMem_SetupDebugHooks(void)$/;" f +PyMem_XFree Modules/_testbuffer.c 36;" d file: +PyMemberDef Include/descrobject.h /^struct PyMemberDef {$/;" s +PyMemberDef Include/pytypedefs.h /^typedef struct PyMemberDef PyMemberDef;$/;" t typeref:struct:PyMemberDef +PyMemberDescrObject Include/cpython/descrobject.h /^} PyMemberDescrObject;$/;" t typeref:struct:__anon216 +PyMemberDescr_Type Objects/descrobject.c /^PyTypeObject PyMemberDescr_Type = {$/;" v +PyMember_GetOne Python/structmember.c /^PyMember_GetOne(const char *obj_addr, PyMemberDef *l)$/;" f +PyMember_SetOne Python/structmember.c /^PyMember_SetOne(char *addr, PyMemberDef *l, PyObject *v)$/;" f +PyMemoEntry Modules/_pickle.c /^} PyMemoEntry;$/;" t typeref:struct:__anon450 file: +PyMemoTable Modules/_pickle.c /^} PyMemoTable;$/;" t typeref:struct:__anon451 file: +PyMemoTable_Clear Modules/_pickle.c /^PyMemoTable_Clear(PyMemoTable *self)$/;" f file: +PyMemoTable_Copy Modules/_pickle.c /^PyMemoTable_Copy(PyMemoTable *self)$/;" f file: +PyMemoTable_Del Modules/_pickle.c /^PyMemoTable_Del(PyMemoTable *self)$/;" f file: +PyMemoTable_Get Modules/_pickle.c /^PyMemoTable_Get(PyMemoTable *self, PyObject *key)$/;" f file: +PyMemoTable_New Modules/_pickle.c /^PyMemoTable_New(void)$/;" f file: +PyMemoTable_Set Modules/_pickle.c /^PyMemoTable_Set(PyMemoTable *self, PyObject *key, Py_ssize_t value)$/;" f file: +PyMemoTable_Size Modules/_pickle.c /^PyMemoTable_Size(PyMemoTable *self)$/;" f file: +PyMemoryViewObject Include/cpython/memoryobject.h /^} PyMemoryViewObject;$/;" t typeref:struct:__anon191 +PyMemoryView_Check Include/memoryobject.h 11;" d +PyMemoryView_FromBuffer Objects/memoryobject.c /^PyMemoryView_FromBuffer(const Py_buffer *info)$/;" f +PyMemoryView_FromMemory Objects/memoryobject.c /^PyMemoryView_FromMemory(char *mem, Py_ssize_t size, int flags)$/;" f +PyMemoryView_FromObject Objects/memoryobject.c /^PyMemoryView_FromObject(PyObject *v)$/;" f +PyMemoryView_FromObjectAndFlags Objects/memoryobject.c /^PyMemoryView_FromObjectAndFlags(PyObject *v, int flags)$/;" f file: +PyMemoryView_GET_BASE Include/cpython/memoryobject.h /^static inline PyObject* PyMemoryView_GET_BASE(PyObject *op) {$/;" f +PyMemoryView_GET_BASE Include/cpython/memoryobject.h 52;" d +PyMemoryView_GET_BUFFER Include/cpython/memoryobject.h /^static inline Py_buffer* PyMemoryView_GET_BUFFER(PyObject *op) {$/;" f +PyMemoryView_GET_BUFFER Include/cpython/memoryobject.h 46;" d +PyMemoryView_GetContiguous Objects/memoryobject.c /^PyMemoryView_GetContiguous(PyObject *obj, int buffertype, char order)$/;" f +PyMemoryView_Type Objects/memoryobject.c /^PyTypeObject PyMemoryView_Type = {$/;" v +PyMethodDef Include/methodobject.h /^struct PyMethodDef {$/;" s +PyMethodDef Include/pytypedefs.h /^typedef struct PyMethodDef PyMethodDef;$/;" t typeref:struct:PyMethodDef +PyMethodDescrObject Include/cpython/descrobject.h /^} PyMethodDescrObject;$/;" t typeref:struct:__anon215 +PyMethodDescr_Type Objects/descrobject.c /^PyTypeObject PyMethodDescr_Type = {$/;" v +PyMethodObject Include/cpython/classobject.h /^} PyMethodObject;$/;" t typeref:struct:__anon192 +PyMethod_Check Include/cpython/classobject.h 22;" d +PyMethod_Function Objects/classobject.c /^PyMethod_Function(PyObject *im)$/;" f +PyMethod_GET_FUNCTION Include/cpython/classobject.h /^static inline PyObject* PyMethod_GET_FUNCTION(PyObject *meth) {$/;" f +PyMethod_GET_FUNCTION Include/cpython/classobject.h 37;" d +PyMethod_GET_SELF Include/cpython/classobject.h /^static inline PyObject* PyMethod_GET_SELF(PyObject *meth) {$/;" f +PyMethod_GET_SELF Include/cpython/classobject.h 42;" d +PyMethod_New Objects/classobject.c /^PyMethod_New(PyObject *func, PyObject *self)$/;" f +PyMethod_Self Objects/classobject.c /^PyMethod_Self(PyObject *im)$/;" f +PyMethod_Type Objects/classobject.c /^PyTypeObject PyMethod_Type = {$/;" v +PyMethodsTest Lib/test/pickletester.py /^ class PyMethodsTest:$/;" c function:AbstractPickleTests.test_py_methods +PyMisbehavedRawIO Lib/test/test_io.py /^class PyMisbehavedRawIO(MisbehavedRawIO, pyio.RawIOBase):$/;" c +PyMiscIOTest Lib/test/test_io.py /^class PyMiscIOTest(MiscIOTest):$/;" c +PyMockFileIO Lib/test/test_io.py /^class PyMockFileIO(MockFileIO, pyio.BytesIO):$/;" c +PyMockNonBlockWriterIO Lib/test/test_io.py /^class PyMockNonBlockWriterIO(MockNonBlockWriterIO, pyio.RawIOBase):$/;" c +PyMockRawIO Lib/test/test_io.py /^class PyMockRawIO(MockRawIO, pyio.RawIOBase):$/;" c +PyMockRawIOWithoutRead Lib/test/test_io.py /^class PyMockRawIOWithoutRead(MockRawIOWithoutRead, pyio.RawIOBase):$/;" c +PyMockUnseekableIO Lib/test/test_io.py /^class PyMockUnseekableIO(MockUnseekableIO, pyio.BytesIO):$/;" c +PyModInitFunction Python/importdl.h /^typedef PyObject *(*PyModInitFunction)(void);$/;" t +PyModuleDef Include/moduleobject.h /^struct PyModuleDef {$/;" s +PyModuleDef Include/pytypedefs.h /^typedef struct PyModuleDef PyModuleDef;$/;" t typeref:struct:PyModuleDef +PyModuleDef_Base Include/moduleobject.h /^typedef struct PyModuleDef_Base {$/;" s +PyModuleDef_Base Include/moduleobject.h /^} PyModuleDef_Base;$/;" t typeref:struct:PyModuleDef_Base +PyModuleDef_HEAD_INIT Include/moduleobject.h 65;" d +PyModuleDef_Init Objects/moduleobject.c /^PyModuleDef_Init(PyModuleDef* def)$/;" f +PyModuleDef_Slot Include/moduleobject.h /^struct PyModuleDef_Slot {$/;" s +PyModuleDef_Slot Include/pytypedefs.h /^typedef struct PyModuleDef_Slot PyModuleDef_Slot;$/;" t typeref:struct:PyModuleDef_Slot +PyModuleDef_Type Objects/moduleobject.c /^PyTypeObject PyModuleDef_Type = {$/;" v +PyModuleObject Include/internal/pycore_moduleobject.h /^} PyModuleObject;$/;" t typeref:struct:__anon125 +PyModule_AddFunctions Objects/moduleobject.c /^PyModule_AddFunctions(PyObject *m, PyMethodDef *functions)$/;" f +PyModule_AddIntConstant Python/modsupport.c /^PyModule_AddIntConstant(PyObject *m, const char *name, long value)$/;" f +PyModule_AddIntMacro Include/modsupport.h 61;" d +PyModule_AddObject Python/modsupport.c /^PyModule_AddObject(PyObject *mod, const char *name, PyObject *value)$/;" f +PyModule_AddObjectRef Python/modsupport.c /^PyModule_AddObjectRef(PyObject *mod, const char *name, PyObject *value)$/;" f +PyModule_AddStringConstant Python/modsupport.c /^PyModule_AddStringConstant(PyObject *m, const char *name, const char *value)$/;" f +PyModule_AddStringMacro Include/modsupport.h 62;" d +PyModule_AddType Python/modsupport.c /^PyModule_AddType(PyObject *module, PyTypeObject *type)$/;" f +PyModule_Check Include/moduleobject.h 12;" d +PyModule_CheckExact Include/moduleobject.h 13;" d +PyModule_Create Include/modsupport.h 136;" d +PyModule_Create Include/modsupport.h 139;" d +PyModule_Create2 Include/modsupport.h 129;" d +PyModule_Create2 Objects/moduleobject.c /^PyModule_Create2(PyModuleDef* module, int module_api_version)$/;" f +PyModule_ExecDef Objects/moduleobject.c /^PyModule_ExecDef(PyObject *module, PyModuleDef *def)$/;" f +PyModule_FromDefAndSpec Include/modsupport.h 150;" d +PyModule_FromDefAndSpec Include/modsupport.h 153;" d +PyModule_FromDefAndSpec2 Include/modsupport.h 130;" d +PyModule_FromDefAndSpec2 Objects/moduleobject.c /^PyModule_FromDefAndSpec2(PyModuleDef* def, PyObject *spec, int module_api_version)$/;" f +PyModule_GetDef Objects/moduleobject.c /^PyModule_GetDef(PyObject* m)$/;" f +PyModule_GetDict Objects/moduleobject.c /^PyModule_GetDict(PyObject *m)$/;" f +PyModule_GetFilename Objects/moduleobject.c /^PyModule_GetFilename(PyObject *m)$/;" f +PyModule_GetFilenameObject Objects/moduleobject.c /^PyModule_GetFilenameObject(PyObject *m)$/;" f +PyModule_GetName Objects/moduleobject.c /^PyModule_GetName(PyObject *m)$/;" f +PyModule_GetNameObject Objects/moduleobject.c /^PyModule_GetNameObject(PyObject *m)$/;" f +PyModule_GetState Objects/moduleobject.c /^PyModule_GetState(PyObject* m)$/;" f +PyModule_New Objects/moduleobject.c /^PyModule_New(const char *name)$/;" f +PyModule_NewObject Objects/moduleobject.c /^PyModule_NewObject(PyObject *name)$/;" f +PyModule_SetDocString Objects/moduleobject.c /^PyModule_SetDocString(PyObject *m, const char *doc)$/;" f +PyModule_Type Objects/moduleobject.c /^PyTypeObject PyModule_Type = {$/;" v +PyNameErrorObject Include/cpython/pyerrors.h /^} PyNameErrorObject;$/;" t typeref:struct:__anon188 +PyNoneStructPtr Tools/gdb/libpython.py /^class PyNoneStructPtr(PyObjectPtr):$/;" c +PyNumberMethods Include/cpython/object.h /^} PyNumberMethods;$/;" t typeref:struct:__anon209 +PyNumber_Absolute Objects/abstract.c /^PyNumber_Absolute(PyObject *o)$/;" f +PyNumber_Add Objects/abstract.c /^PyNumber_Add(PyObject *v, PyObject *w)$/;" f +PyNumber_AsOff_t Modules/_io/_iomodule.c /^PyNumber_AsOff_t(PyObject *item, PyObject *err)$/;" f +PyNumber_AsSsize_t Objects/abstract.c /^PyNumber_AsSsize_t(PyObject *item, PyObject *err)$/;" f +PyNumber_Check Objects/abstract.c /^PyNumber_Check(PyObject *o)$/;" f +PyNumber_Float Objects/abstract.c /^PyNumber_Float(PyObject *o)$/;" f +PyNumber_FloorDivide Objects/abstract.c /^PyNumber_FloorDivide(PyObject *v, PyObject *w)$/;" f +PyNumber_InPlaceAdd Objects/abstract.c /^PyNumber_InPlaceAdd(PyObject *v, PyObject *w)$/;" f +PyNumber_InPlaceMultiply Objects/abstract.c /^PyNumber_InPlaceMultiply(PyObject *v, PyObject *w)$/;" f +PyNumber_InPlacePower Objects/abstract.c /^PyNumber_InPlacePower(PyObject *v, PyObject *w, PyObject *z)$/;" f +PyNumber_Index Objects/abstract.c /^PyNumber_Index(PyObject *item)$/;" f +PyNumber_Invert Objects/abstract.c /^PyNumber_Invert(PyObject *o)$/;" f +PyNumber_Long Objects/abstract.c /^PyNumber_Long(PyObject *o)$/;" f +PyNumber_MatrixMultiply Objects/abstract.c /^PyNumber_MatrixMultiply(PyObject *v, PyObject *w)$/;" f +PyNumber_Multiply Objects/abstract.c /^PyNumber_Multiply(PyObject *v, PyObject *w)$/;" f +PyNumber_Negative Objects/abstract.c /^PyNumber_Negative(PyObject *o)$/;" f +PyNumber_Positive Objects/abstract.c /^PyNumber_Positive(PyObject *o)$/;" f +PyNumber_Power Objects/abstract.c /^PyNumber_Power(PyObject *v, PyObject *w, PyObject *z)$/;" f +PyNumber_Remainder Objects/abstract.c /^PyNumber_Remainder(PyObject *v, PyObject *w)$/;" f +PyNumber_ToBase Objects/abstract.c /^PyNumber_ToBase(PyObject *n, int base)$/;" f +PyNumber_TrueDivide Objects/abstract.c /^PyNumber_TrueDivide(PyObject *v, PyObject *w)$/;" f +PyODictItems_Type Objects/odictobject.c /^PyTypeObject PyODictItems_Type = {$/;" v +PyODictIter_Type Objects/odictobject.c /^PyTypeObject PyODictIter_Type = {$/;" v +PyODictKeys_Type Objects/odictobject.c /^PyTypeObject PyODictKeys_Type = {$/;" v +PyODictObject Include/cpython/odictobject.h /^typedef struct _odictobject PyODictObject;$/;" t typeref:struct:_odictobject +PyODictValues_Type Objects/odictobject.c /^PyTypeObject PyODictValues_Type = {$/;" v +PyODict_Check Include/cpython/odictobject.h 21;" d +PyODict_CheckExact Include/cpython/odictobject.h 22;" d +PyODict_Contains Include/cpython/odictobject.h 33;" d +PyODict_DelItem Objects/odictobject.c /^PyODict_DelItem(PyObject *od, PyObject *key)$/;" f +PyODict_GetItem Include/cpython/odictobject.h 30;" d +PyODict_GetItemString Include/cpython/odictobject.h 35;" d +PyODict_GetItemWithError Include/cpython/odictobject.h 31;" d +PyODict_New Objects/odictobject.c /^PyODict_New(void)$/;" f +PyODict_SIZE Include/cpython/odictobject.h 23;" d +PyODict_SetItem Objects/odictobject.c /^PyODict_SetItem(PyObject *od, PyObject *key, PyObject *value)$/;" f +PyODict_Size Include/cpython/odictobject.h 34;" d +PyODict_Type Objects/odictobject.c /^PyTypeObject PyODict_Type = {$/;" v +PyOSErrorObject Include/cpython/pyerrors.h /^} PyOSErrorObject;$/;" t typeref:struct:__anon186 +PyOS_AfterFork Modules/posixmodule.c /^PyOS_AfterFork(void)$/;" f +PyOS_AfterFork_Child Modules/posixmodule.c /^PyOS_AfterFork_Child(void)$/;" f +PyOS_AfterFork_Parent Modules/posixmodule.c /^PyOS_AfterFork_Parent(void)$/;" f +PyOS_BeforeFork Modules/posixmodule.c /^PyOS_BeforeFork(void)$/;" f +PyOS_CheckStack Python/pythonrun.c /^PyOS_CheckStack(void)$/;" f +PyOS_FSPath Modules/posixmodule.c /^PyOS_FSPath(PyObject *path)$/;" f +PyOS_InputHook Parser/myreadline.c /^int (*PyOS_InputHook)(void) = NULL;$/;" v +PyOS_InterruptOccurred Modules/signalmodule.c /^PyOS_InterruptOccurred(void)$/;" f +PyOS_Readline Parser/myreadline.c /^PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt)$/;" f +PyOS_ReadlineFunctionPointer Parser/myreadline.c /^char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL;$/;" v +PyOS_StdioReadline Parser/myreadline.c /^PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt)$/;" f +PyOS_double_to_string Python/pystrtod.c /^char * PyOS_double_to_string(double val,$/;" f +PyOS_getsig Python/pylifecycle.c /^PyOS_getsig(int sig)$/;" f +PyOS_mystricmp Python/pystrcmp.c /^PyOS_mystricmp(const char *s1, const char *s2)$/;" f +PyOS_mystrnicmp Python/pystrcmp.c /^PyOS_mystrnicmp(const char *s1, const char *s2, Py_ssize_t size)$/;" f +PyOS_setsig Python/pylifecycle.c /^PyOS_setsig(int sig, PyOS_sighandler_t handler)$/;" f +PyOS_sighandler_t Include/pylifecycle.h /^typedef void (*PyOS_sighandler_t)(int);$/;" t +PyOS_snprintf Python/mysnprintf.c /^PyOS_snprintf(char *str, size_t size, const char *format, ...)$/;" f +PyOS_stricmp Include/pystrcmp.h 13;" d +PyOS_stricmp Include/pystrcmp.h 16;" d +PyOS_string_to_double Python/pystrtod.c /^PyOS_string_to_double(const char *s,$/;" f +PyOS_strnicmp Include/pystrcmp.h 12;" d +PyOS_strnicmp Include/pystrcmp.h 15;" d +PyOS_strtol Python/mystrtoul.c /^PyOS_strtol(const char *str, char **ptr, int base)$/;" f +PyOS_strtoul Python/mystrtoul.c /^PyOS_strtoul(const char *str, char **ptr, int base)$/;" f +PyOS_vsnprintf Python/mysnprintf.c /^PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va)$/;" f +PyObject Include/pytypedefs.h /^typedef struct _object PyObject;$/;" t typeref:struct:_object +PyObject Misc/coverity_model.c /^typedef struct {} PyObject;$/;" t typeref:struct:__anon278 file: +PyObjectArenaAllocator Include/cpython/objimpl.h /^} PyObjectArenaAllocator;$/;" t typeref:struct:__anon208 +PyObjectPtr Tools/gdb/libpython.py /^class PyObjectPtr(object):$/;" c +PyObjectPtrPrinter Tools/gdb/libpython.py /^class PyObjectPtrPrinter:$/;" c +PyObject_ASCII Objects/object.c /^PyObject_ASCII(PyObject *v)$/;" f +PyObject_AsCharBuffer Objects/abstract.c /^PyObject_AsCharBuffer(PyObject *obj,$/;" f +PyObject_AsFileDescriptor Objects/fileobject.c /^PyObject_AsFileDescriptor(PyObject *o)$/;" f +PyObject_AsReadBuffer Objects/abstract.c /^int PyObject_AsReadBuffer(PyObject *obj,$/;" f +PyObject_AsWriteBuffer Objects/abstract.c /^int PyObject_AsWriteBuffer(PyObject *obj,$/;" f +PyObject_Bytes Objects/object.c /^PyObject_Bytes(PyObject *v)$/;" f +PyObject_Call Objects/call.c /^PyObject_Call(PyObject *callable, PyObject *args, PyObject *kwargs)$/;" f +PyObject_CallFinalizer Objects/object.c /^PyObject_CallFinalizer(PyObject *self)$/;" f +PyObject_CallFinalizerFromDealloc Objects/object.c /^PyObject_CallFinalizerFromDealloc(PyObject *self)$/;" f +PyObject_CallFunction Include/abstract.h 139;" d +PyObject_CallFunction Objects/call.c /^PyObject_CallFunction(PyObject *callable, const char *format, ...)$/;" f +PyObject_CallFunctionObjArgs Objects/call.c /^PyObject_CallFunctionObjArgs(PyObject *callable, ...)$/;" f +PyObject_CallMethod Include/abstract.h 140;" d +PyObject_CallMethod Objects/call.c /^PyObject_CallMethod(PyObject *obj, const char *name, const char *format, ...)$/;" f +PyObject_CallMethodNoArgs Include/cpython/abstract.h /^PyObject_CallMethodNoArgs(PyObject *self, PyObject *name)$/;" f +PyObject_CallMethodObjArgs Objects/call.c /^PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, ...)$/;" f +PyObject_CallMethodOneArg Include/cpython/abstract.h /^PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg)$/;" f +PyObject_CallNoArgs Objects/call.c /^PyObject_CallNoArgs(PyObject *func)$/;" f +PyObject_CallObject Objects/call.c /^PyObject_CallObject(PyObject *callable, PyObject *args)$/;" f +PyObject_CallOneArg Objects/call.c /^PyObject_CallOneArg(PyObject *func, PyObject *arg)$/;" f +PyObject_Calloc Objects/obmalloc.c /^PyObject_Calloc(size_t nelem, size_t elsize)$/;" f +PyObject_CheckBuffer Objects/abstract.c /^PyObject_CheckBuffer(PyObject *obj)$/;" f +PyObject_CheckReadBuffer Objects/abstract.c /^PyObject_CheckReadBuffer(PyObject *obj)$/;" f +PyObject_ClearWeakRefs Objects/weakrefobject.c /^PyObject_ClearWeakRefs(PyObject *object)$/;" f +PyObject_CopyData Objects/abstract.c /^int PyObject_CopyData(PyObject *dest, PyObject *src)$/;" f +PyObject_DEL Include/objimpl.h 112;" d +PyObject_Del Include/objimpl.h 111;" d +PyObject_DelAttr Include/abstract.h 101;" d +PyObject_DelAttrString Include/abstract.h 91;" d +PyObject_DelItem Objects/abstract.c /^PyObject_DelItem(PyObject *o, PyObject *key)$/;" f +PyObject_DelItemString Objects/abstract.c /^PyObject_DelItemString(PyObject *o, const char *key)$/;" f +PyObject_Dir Objects/object.c /^PyObject_Dir(PyObject *obj)$/;" f +PyObject_FREE Include/objimpl.h 110;" d +PyObject_Format Objects/abstract.c /^PyObject_Format(PyObject *obj, PyObject *format_spec)$/;" f +PyObject_Free Objects/obmalloc.c /^PyObject_Free(void *ptr)$/;" f +PyObject_GC_Del Modules/gcmodule.c /^PyObject_GC_Del(void *op)$/;" f +PyObject_GC_IsFinalized Modules/gcmodule.c /^PyObject_GC_IsFinalized(PyObject *obj)$/;" f +PyObject_GC_IsTracked Modules/gcmodule.c /^PyObject_GC_IsTracked(PyObject* obj)$/;" f +PyObject_GC_New Include/objimpl.h 203;" d +PyObject_GC_NewVar Include/objimpl.h 205;" d +PyObject_GC_Resize Include/objimpl.h 183;" d +PyObject_GC_Track Modules/gcmodule.c /^PyObject_GC_Track(void *op_raw)$/;" f +PyObject_GC_UnTrack Modules/gcmodule.c /^PyObject_GC_UnTrack(void *op_raw)$/;" f +PyObject_GET_WEAKREFS_LISTPTR Objects/object.c /^PyObject_GET_WEAKREFS_LISTPTR(PyObject *op)$/;" f +PyObject_GenericGetAttr Objects/object.c /^PyObject_GenericGetAttr(PyObject *obj, PyObject *name)$/;" f +PyObject_GenericGetDict Objects/dictobject.c /^PyObject_GenericGetDict(PyObject *obj, void *context)$/;" f +PyObject_GenericSetAttr Objects/object.c /^PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)$/;" f +PyObject_GenericSetDict Objects/object.c /^PyObject_GenericSetDict(PyObject *obj, PyObject *value, void *context)$/;" f +PyObject_GetAIter Objects/abstract.c /^PyObject_GetAIter(PyObject *o) {$/;" f +PyObject_GetArenaAllocator Objects/obmalloc.c /^PyObject_GetArenaAllocator(PyObjectArenaAllocator *allocator)$/;" f +PyObject_GetAttr Objects/object.c /^PyObject_GetAttr(PyObject *v, PyObject *name)$/;" f +PyObject_GetAttrString Objects/object.c /^PyObject_GetAttrString(PyObject *v, const char *name)$/;" f +PyObject_GetBuffer Objects/abstract.c /^PyObject_GetBuffer(PyObject *obj, Py_buffer *view, int flags)$/;" f +PyObject_GetItem Objects/abstract.c /^PyObject_GetItem(PyObject *o, PyObject *key)$/;" f +PyObject_GetItemData Objects/typeobject.c /^PyObject_GetItemData(PyObject *obj)$/;" f +PyObject_GetIter Objects/abstract.c /^PyObject_GetIter(PyObject *o)$/;" f +PyObject_GetTypeData Objects/typeobject.c /^PyObject_GetTypeData(PyObject *obj, PyTypeObject *cls)$/;" f +PyObject_HEAD Include/object.h 79;" d +PyObject_HEAD_INIT Include/object.h 131;" d +PyObject_HEAD_INIT Include/object.h 138;" d +PyObject_HasAttr Objects/object.c /^PyObject_HasAttr(PyObject *v, PyObject *name)$/;" f +PyObject_HasAttrString Objects/object.c /^PyObject_HasAttrString(PyObject *v, const char *name)$/;" f +PyObject_Hash Objects/object.c /^PyObject_Hash(PyObject *v)$/;" f +PyObject_HashNotImplemented Objects/object.c /^PyObject_HashNotImplemented(PyObject *v)$/;" f +PyObject_INIT Include/objimpl.h 125;" d +PyObject_INIT_VAR Include/objimpl.h 127;" d +PyObject_IS_GC Modules/gcmodule.c /^PyObject_IS_GC(PyObject *obj)$/;" f +PyObject_Init Objects/object.c /^PyObject_Init(PyObject *op, PyTypeObject *tp)$/;" f +PyObject_InitVar Objects/object.c /^PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)$/;" f +PyObject_IsInstance Objects/abstract.c /^PyObject_IsInstance(PyObject *inst, PyObject *cls)$/;" f +PyObject_IsSubclass Objects/abstract.c /^PyObject_IsSubclass(PyObject *derived, PyObject *cls)$/;" f +PyObject_IsTrue Objects/object.c /^PyObject_IsTrue(PyObject *v)$/;" f +PyObject_Length Include/abstract.h 307;" d +PyObject_Length Include/abstract.h 309;" d +PyObject_Length Objects/abstract.c /^PyObject_Length(PyObject *o)$/;" f +PyObject_Length Objects/abstract.c 70;" d file: +PyObject_Length Objects/abstract.c 76;" d file: +PyObject_LengthHint Objects/abstract.c /^PyObject_LengthHint(PyObject *o, Py_ssize_t defaultvalue)$/;" f +PyObject_MALLOC Include/objimpl.h 108;" d +PyObject_Malloc Objects/obmalloc.c /^PyObject_Malloc(size_t size)$/;" f +PyObject_NEW Include/objimpl.h 138;" d +PyObject_NEW_VAR Include/objimpl.h 145;" d +PyObject_New Include/objimpl.h 134;" d +PyObject_NewVar Include/objimpl.h 140;" d +PyObject_Not Objects/object.c /^PyObject_Not(PyObject *v)$/;" f +PyObject_Print Objects/object.c /^PyObject_Print(PyObject *op, FILE *fp, int flags)$/;" f +PyObject_REALLOC Include/objimpl.h 109;" d +PyObject_Realloc Objects/obmalloc.c /^PyObject_Realloc(void *ptr, size_t new_size)$/;" f +PyObject_Repr Objects/object.c /^PyObject_Repr(PyObject *v)$/;" f +PyObject_RichCompare Objects/object.c /^PyObject_RichCompare(PyObject *v, PyObject *w, int op)$/;" f +PyObject_RichCompareBool Objects/object.c /^PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)$/;" f +PyObject_SelfIter Objects/object.c /^PyObject_SelfIter(PyObject *obj)$/;" f +PyObject_SetArenaAllocator Objects/obmalloc.c /^PyObject_SetArenaAllocator(PyObjectArenaAllocator *allocator)$/;" f +PyObject_SetAttr Objects/object.c /^PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)$/;" f +PyObject_SetAttrString Objects/object.c /^PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)$/;" f +PyObject_SetItem Objects/abstract.c /^PyObject_SetItem(PyObject *o, PyObject *key, PyObject *value)$/;" f +PyObject_Size Objects/abstract.c /^PyObject_Size(PyObject *o)$/;" f +PyObject_Str Objects/object.c /^PyObject_Str(PyObject *v)$/;" f +PyObject_Type Objects/abstract.c /^PyObject_Type(PyObject *o)$/;" f +PyObject_TypeCheck Include/object.h /^static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {$/;" f +PyObject_TypeCheck Include/object.h 385;" d +PyObject_VAR_HEAD Include/object.h 158;" d +PyObject_Vectorcall Objects/call.c /^PyObject_Vectorcall(PyObject *callable, PyObject *const *args,$/;" f +PyObject_VectorcallDict Objects/call.c /^PyObject_VectorcallDict(PyObject *callable, PyObject *const *args,$/;" f +PyObject_VectorcallMethod Objects/call.c /^PyObject_VectorcallMethod(PyObject *name, PyObject *const *args,$/;" f +PyObject_stgdict Modules/_ctypes/stgdict.c /^PyObject_stgdict(PyObject *self)$/;" f +PyOperatorTestCase Lib/test/test_operator.py /^class PyOperatorTestCase(OperatorTestCase, unittest.TestCase):$/;" c +PyOtherFileTests Lib/test/test_file.py /^class PyOtherFileTests(OtherFileTests, unittest.TestCase):$/;" c +PyOtherFileTests Lib/test/test_fileio.py /^class PyOtherFileTests(OtherFileTests, unittest.TestCase):$/;" c +PyPARSE_ALLOW_INCOMPLETE_INPUT Parser/pegen.h 25;" d +PyPARSE_ASYNC_HACKS Parser/pegen.h 24;" d +PyPARSE_BARRY_AS_BDFL Parser/pegen.h 22;" d +PyPARSE_DONT_IMPLY_DEDENT Parser/pegen.h 13;" d +PyPARSE_IGNORE_COOKIE Parser/pegen.h 21;" d +PyPARSE_TYPE_COMMENTS Parser/pegen.h 23;" d +PyParseTest Lib/idlelib/idle_test/test_pyparse.py /^class PyParseTest(unittest.TestCase):$/;" c +PyPartialStructObject Modules/_testbuffer.c /^} PyPartialStructObject;$/;" t typeref:struct:__anon646 file: +PyPartialSubclass Lib/test/test_functools.py /^class PyPartialSubclass(py_functools.partial):$/;" c +PyPegen_first_item Parser/pegen.h 252;" d +PyPegen_last_item Parser/pegen.h 250;" d +PyPersPicklerTests Lib/test/test_pickle.py /^ PersistentPicklerUnpicklerMixin, unittest.TestCase):$/;" c +PyPickleBufferObject Objects/picklebufobject.c /^} PyPickleBufferObject;$/;" t typeref:struct:__anon739 file: +PyPickleBuffer_Check Include/cpython/picklebufobject.h 15;" d +PyPickleBuffer_FromObject Objects/picklebufobject.c /^PyPickleBuffer_FromObject(PyObject *base)$/;" f +PyPickleBuffer_GetBuffer Objects/picklebufobject.c /^PyPickleBuffer_GetBuffer(PyObject *obj)$/;" f +PyPickleBuffer_Release Objects/picklebufobject.c /^PyPickleBuffer_Release(PyObject *obj)$/;" f +PyPickleBuffer_Type Objects/picklebufobject.c /^PyTypeObject PyPickleBuffer_Type = {$/;" v +PyPickleTests Lib/test/test_pickle.py /^class PyPickleTests(AbstractPickleModuleTests, unittest.TestCase):$/;" c +PyPicklerHookTests Lib/test/test_pickle.py /^class PyPicklerHookTests(AbstractHookTests, unittest.TestCase):$/;" c +PyPicklerTests Lib/test/test_pickle.py /^class PyPicklerTests(AbstractPickleTests, unittest.TestCase):$/;" c +PyPicklerUnpicklerObjectTests Lib/test/test_pickle.py /^class PyPicklerUnpicklerObjectTests(AbstractPicklerUnpicklerObjectTests, unittest.TestCase):$/;" c +PyPreConfig Include/cpython/initconfig.h /^typedef struct PyPreConfig {$/;" s +PyPreConfig Include/cpython/initconfig.h /^} PyPreConfig;$/;" t typeref:struct:PyPreConfig +PyPreConfig_InitIsolatedConfig Python/preconfig.c /^PyPreConfig_InitIsolatedConfig(PyPreConfig *config)$/;" f +PyPreConfig_InitPythonConfig Python/preconfig.c /^PyPreConfig_InitPythonConfig(PyPreConfig *config)$/;" f +PyPrint Tools/gdb/libpython.py /^class PyPrint(gdb.Command):$/;" c +PyPrintTests Lib/test/test_gdb.py /^class PyPrintTests(DebuggerTests):$/;" c +PyPriorityQueueTest Lib/test/test_queue.py /^class PyPriorityQueueTest(PriorityQueueTest, unittest.TestCase):$/;" c +PyProperty_Type Objects/descrobject.c /^PyTypeObject PyProperty_Type = {$/;" v +PyPublicAPITests Lib/test/test_warnings/__init__.py /^class PyPublicAPITests(PublicAPITests, unittest.TestCase):$/;" c +PyPyOperatorPickleTestCase Lib/test/test_operator.py /^class PyPyOperatorPickleTestCase(OperatorPickleTestCase, unittest.TestCase):$/;" c +PyPythonAPItests Lib/test/test_decimal.py /^class PyPythonAPItests(PythonAPItests, unittest.TestCase):$/;" c +PyQueueTest Lib/test/test_queue.py /^class PyQueueTest(QueueTest, unittest.TestCase):$/;" c +PyRLockTests Lib/test/test_threading.py /^class PyRLockTests(lock_tests.RLockTests):$/;" c +PyRangeIter_Type Objects/rangeobject.c /^PyTypeObject PyRangeIter_Type = {$/;" v +PyRange_Check Include/rangeobject.h 22;" d +PyRange_Type Objects/rangeobject.c /^PyTypeObject PyRange_Type = {$/;" v +PyRawIOBase_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyRawIOBase_Type;$/;" m struct:_io_state +PyRecursingInfinitelyError_Type Modules/_testcapi/exceptions.c /^static PyTypeObject PyRecursingInfinitelyError_Type = {$/;" v file: +PyRecursingInfinitelyError_Type Modules/_testcapi/exceptions.c /^static PyTypeObject PyRecursingInfinitelyError_Type;$/;" v file: +PyReversed_Type Objects/enumobject.c /^PyTypeObject PyReversed_Type = {$/;" v +PyRun_AnyFile Include/cpython/pythonrun.h 100;" d +PyRun_AnyFile Python/pythonrun.c /^PyRun_AnyFile(FILE *fp, const char *name)$/;" f +PyRun_AnyFile Python/pythonrun.c 1888;" d file: +PyRun_AnyFileEx Include/cpython/pythonrun.h 101;" d +PyRun_AnyFileEx Python/pythonrun.c /^PyRun_AnyFileEx(FILE *fp, const char *name, int closeit)$/;" f +PyRun_AnyFileEx Python/pythonrun.c 1895;" d file: +PyRun_AnyFileExFlags Python/pythonrun.c /^PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit,$/;" f +PyRun_AnyFileFlags Include/cpython/pythonrun.h 103;" d +PyRun_AnyFileFlags Python/pythonrun.c /^PyRun_AnyFileFlags(FILE *fp, const char *name, PyCompilerFlags *flags)$/;" f +PyRun_AnyFileFlags Python/pythonrun.c 1902;" d file: +PyRun_File Include/cpython/pythonrun.h 110;" d +PyRun_File Python/pythonrun.c /^PyRun_File(FILE *fp, const char *p, int s, PyObject *g, PyObject *l)$/;" f +PyRun_File Python/pythonrun.c 1909;" d file: +PyRun_FileEx Include/cpython/pythonrun.h 112;" d +PyRun_FileEx Python/pythonrun.c /^PyRun_FileEx(FILE *fp, const char *p, int s, PyObject *g, PyObject *l, int c)$/;" f +PyRun_FileEx Python/pythonrun.c 1916;" d file: +PyRun_FileExFlags Python/pythonrun.c /^PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals,$/;" f +PyRun_FileFlags Include/cpython/pythonrun.h 114;" d +PyRun_FileFlags Python/pythonrun.c /^PyRun_FileFlags(FILE *fp, const char *p, int s, PyObject *g, PyObject *l,$/;" f +PyRun_FileFlags Python/pythonrun.c 1923;" d file: +PyRun_InteractiveLoop Include/cpython/pythonrun.h 109;" d +PyRun_InteractiveLoop Python/pythonrun.c /^PyRun_InteractiveLoop(FILE *f, const char *p)$/;" f +PyRun_InteractiveLoop Python/pythonrun.c 1982;" d file: +PyRun_InteractiveLoopFlags Python/pythonrun.c /^PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)$/;" f +PyRun_InteractiveOne Include/cpython/pythonrun.h 108;" d +PyRun_InteractiveOne Python/pythonrun.c /^PyRun_InteractiveOne(FILE *f, const char *p)$/;" f +PyRun_InteractiveOne Python/pythonrun.c 1975;" d file: +PyRun_InteractiveOneFlags Python/pythonrun.c /^PyRun_InteractiveOneFlags(FILE *fp, const char *filename_str, PyCompilerFlags *flags)$/;" f +PyRun_InteractiveOneObject Python/pythonrun.c /^PyRun_InteractiveOneObject(FILE *fp, PyObject *filename, PyCompilerFlags *flags)$/;" f +PyRun_InteractiveOneObjectEx Python/pythonrun.c /^PyRun_InteractiveOneObjectEx(FILE *fp, PyObject *filename,$/;" f file: +PyRun_SimpleFile Include/cpython/pythonrun.h 106;" d +PyRun_SimpleFile Python/pythonrun.c /^PyRun_SimpleFile(FILE *f, const char *p)$/;" f +PyRun_SimpleFile Python/pythonrun.c 1931;" d file: +PyRun_SimpleFileEx Include/cpython/pythonrun.h 107;" d +PyRun_SimpleFileEx Python/pythonrun.c /^PyRun_SimpleFileEx(FILE *f, const char *p, int c)$/;" f +PyRun_SimpleFileEx Python/pythonrun.c 1938;" d file: +PyRun_SimpleFileExFlags Python/pythonrun.c /^PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit,$/;" f +PyRun_SimpleString Include/cpython/pythonrun.h 105;" d +PyRun_SimpleString Python/pythonrun.c /^PyRun_SimpleString(const char *s)$/;" f +PyRun_SimpleString Python/pythonrun.c 1953;" d file: +PyRun_SimpleStringFlags Python/pythonrun.c /^PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags)$/;" f +PyRun_String Include/cpython/pythonrun.h 99;" d +PyRun_String Python/pythonrun.c /^PyRun_String(const char *str, int s, PyObject *g, PyObject *l)$/;" f +PyRun_String Python/pythonrun.c 1946;" d file: +PyRun_StringFlags Python/pythonrun.c /^PyRun_StringFlags(const char *str, int start, PyObject *globals,$/;" f +PySSLCertVerificationErrorObject Modules/_ssl.h /^ PyObject *PySSLCertVerificationErrorObject;$/;" m struct:__anon485 +PySSLCertificate Modules/_ssl.h /^} PySSLCertificate;$/;" t typeref:struct:__anon486 +PySSLCertificate_Type Modules/_ssl.h /^ PyTypeObject *PySSLCertificate_Type;$/;" m struct:__anon485 +PySSLCertificate_slots Modules/_ssl/cert.c /^static PyType_Slot PySSLCertificate_slots[] = {$/;" v file: +PySSLCertificate_spec Modules/_ssl/cert.c /^static PyType_Spec PySSLCertificate_spec = {$/;" v file: +PySSLContext Modules/_ssl.c /^} PySSLContext;$/;" t typeref:struct:__anon579 file: +PySSLContext_Type Modules/_ssl.h /^ PyTypeObject *PySSLContext_Type;$/;" m struct:__anon485 +PySSLContext_slots Modules/_ssl.c /^static PyType_Slot PySSLContext_slots[] = {$/;" v file: +PySSLContext_spec Modules/_ssl.c /^static PyType_Spec PySSLContext_spec = {$/;" v file: +PySSLEOFErrorObject Modules/_ssl.h /^ PyObject *PySSLEOFErrorObject;$/;" m struct:__anon485 +PySSLErrorObject Modules/_ssl.h /^ PyObject *PySSLErrorObject;$/;" m struct:__anon485 +PySSLMemoryBIO Modules/_ssl.c /^} PySSLMemoryBIO;$/;" t typeref:struct:__anon582 file: +PySSLMemoryBIO_Type Modules/_ssl.h /^ PyTypeObject *PySSLMemoryBIO_Type;$/;" m struct:__anon485 +PySSLMemoryBIO_slots Modules/_ssl.c /^static PyType_Slot PySSLMemoryBIO_slots[] = {$/;" v file: +PySSLMemoryBIO_spec Modules/_ssl.c /^static PyType_Spec PySSLMemoryBIO_spec = {$/;" v file: +PySSLMethods Modules/_ssl.c /^static PyMethodDef PySSLMethods[] = {$/;" v file: +PySSLSession Modules/_ssl.c /^} PySSLSession;$/;" t typeref:struct:__anon583 file: +PySSLSession_Type Modules/_ssl.h /^ PyTypeObject *PySSLSession_Type;$/;" m struct:__anon485 +PySSLSession_clear Modules/_ssl.c /^PySSLSession_clear(PySSLSession *self)$/;" f file: +PySSLSession_dealloc Modules/_ssl.c /^PySSLSession_dealloc(PySSLSession *self)$/;" f file: +PySSLSession_get_has_ticket Modules/_ssl.c /^PySSLSession_get_has_ticket(PySSLSession *self, void *closure) {$/;" f file: +PySSLSession_get_session_id Modules/_ssl.c /^PySSLSession_get_session_id(PySSLSession *self, void *closure) {$/;" f file: +PySSLSession_get_ticket_lifetime_hint Modules/_ssl.c /^PySSLSession_get_ticket_lifetime_hint(PySSLSession *self, void *closure) {$/;" f file: +PySSLSession_get_time Modules/_ssl.c /^PySSLSession_get_time(PySSLSession *self, void *closure) {$/;" f file: +PySSLSession_get_timeout Modules/_ssl.c /^PySSLSession_get_timeout(PySSLSession *self, void *closure) {$/;" f file: +PySSLSession_getsetlist Modules/_ssl.c /^static PyGetSetDef PySSLSession_getsetlist[] = {$/;" v file: +PySSLSession_richcompare Modules/_ssl.c /^PySSLSession_richcompare(PyObject *left, PyObject *right, int op)$/;" f file: +PySSLSession_slots Modules/_ssl.c /^static PyType_Slot PySSLSession_slots[] = {$/;" v file: +PySSLSession_spec Modules/_ssl.c /^static PyType_Spec PySSLSession_spec = {$/;" v file: +PySSLSession_traverse Modules/_ssl.c /^PySSLSession_traverse(PySSLSession *self, visitproc visit, void *arg)$/;" f file: +PySSLSocket Modules/_ssl.c /^} PySSLSocket;$/;" t typeref:struct:__anon581 file: +PySSLSocket_Type Modules/_ssl.h /^ PyTypeObject *PySSLSocket_Type;$/;" m struct:__anon485 +PySSLSocket_slots Modules/_ssl.c /^static PyType_Slot PySSLSocket_slots[] = {$/;" v file: +PySSLSocket_spec Modules/_ssl.c /^static PyType_Spec PySSLSocket_spec = {$/;" v file: +PySSLSyscallErrorObject Modules/_ssl.h /^ PyObject *PySSLSyscallErrorObject;$/;" m struct:__anon485 +PySSLWantReadErrorObject Modules/_ssl.h /^ PyObject *PySSLWantReadErrorObject;$/;" m struct:__anon485 +PySSLWantWriteErrorObject Modules/_ssl.h /^ PyObject *PySSLWantWriteErrorObject;$/;" m struct:__anon485 +PySSLZeroReturnErrorObject Modules/_ssl.h /^ PyObject *PySSLZeroReturnErrorObject;$/;" m struct:__anon485 +PySSL_BEGIN_ALLOW_THREADS Modules/_ssl.c 44;" d file: +PySSL_BEGIN_ALLOW_THREADS_S Modules/_ssl.c 40;" d file: +PySSL_CB_MAXLEN Modules/_ssl.c 276;" d file: +PySSL_ChainExceptions Modules/_ssl.c /^PySSL_ChainExceptions(PySSLSocket *sslsock) {$/;" f file: +PySSL_END_ALLOW_THREADS Modules/_ssl.c 47;" d file: +PySSL_END_ALLOW_THREADS_S Modules/_ssl.c 42;" d file: +PySSL_RAND Modules/_ssl.c /^PySSL_RAND(PyObject *module, int len, int pseudo)$/;" f file: +PySSL_SetError Modules/_ssl.c /^PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno)$/;" f file: +PySSL_clear Modules/_ssl.c /^PySSL_clear(PySSLSocket *self)$/;" f file: +PySSL_dealloc Modules/_ssl.c /^PySSL_dealloc(PySSLSocket *self)$/;" f file: +PySSL_get_context Modules/_ssl.c /^static PySSLContext *PySSL_get_context(PySSLSocket *self, void *closure) {$/;" f file: +PySSL_get_owner Modules/_ssl.c /^PySSL_get_owner(PySSLSocket *self, void *c)$/;" f file: +PySSL_get_server_hostname Modules/_ssl.c /^PySSL_get_server_hostname(PySSLSocket *self, void *c)$/;" f file: +PySSL_get_server_side Modules/_ssl.c /^PySSL_get_server_side(PySSLSocket *self, void *c)$/;" f file: +PySSL_get_session Modules/_ssl.c /^PySSL_get_session(PySSLSocket *self, void *closure) {$/;" f file: +PySSL_get_session_reused Modules/_ssl.c /^PySSL_get_session_reused(PySSLSocket *self, void *closure) {$/;" f file: +PySSL_methods Modules/_ssl.c /^static PyMethodDef PySSL_methods[] = {$/;" v file: +PySSL_select Modules/_ssl.c /^PySSL_select(PySocketSockObject *s, int writing, _PyTime_t timeout)$/;" f file: +PySSL_set_context Modules/_ssl.c /^static int PySSL_set_context(PySSLSocket *self, PyObject *value,$/;" f file: +PySSL_set_owner Modules/_ssl.c /^PySSL_set_owner(PySSLSocket *self, PyObject *value, void *c)$/;" f file: +PySSL_set_session Modules/_ssl.c /^static int PySSL_set_session(PySSLSocket *self, PyObject *value,$/;" f file: +PySSL_traverse Modules/_ssl.c /^PySSL_traverse(PySSLSocket *self, visitproc visit, void *arg)$/;" f file: +PySTEntryObject Include/internal/pycore_symtable.h /^} PySTEntryObject;$/;" t typeref:struct:_symtable_entry +PySTEntry_Check Include/internal/pycore_symtable.h 94;" d +PySTEntry_Type Python/symtable.c /^PyTypeObject PySTEntry_Type = {$/;" v +PyScannerObject Modules/_json.c /^} PyScannerObject;$/;" t typeref:struct:_PyScannerObject file: +PyScannerType_slots Modules/_json.c /^static PyType_Slot PyScannerType_slots[] = {$/;" v file: +PyScannerType_spec Modules/_json.c /^static PyType_Spec PyScannerType_spec = {$/;" v file: +PySendResult Include/object.h /^} PySendResult;$/;" t typeref:enum:__anon254 +PySeqIter_Check Include/iterobject.h 14;" d +PySeqIter_New Objects/iterobject.c /^PySeqIter_New(PyObject *seq)$/;" f +PySeqIter_Type Objects/iterobject.c /^PyTypeObject PySeqIter_Type = {$/;" v +PySequenceMethods Include/cpython/object.h /^} PySequenceMethods;$/;" t typeref:struct:__anon210 +PySequence_Check Objects/abstract.c /^PySequence_Check(PyObject *s)$/;" f +PySequence_Concat Objects/abstract.c /^PySequence_Concat(PyObject *s, PyObject *o)$/;" f +PySequence_Contains Objects/abstract.c /^PySequence_Contains(PyObject *seq, PyObject *ob)$/;" f +PySequence_Count Objects/abstract.c /^PySequence_Count(PyObject *s, PyObject *o)$/;" f +PySequence_DelItem Objects/abstract.c /^PySequence_DelItem(PyObject *s, Py_ssize_t i)$/;" f +PySequence_DelSlice Objects/abstract.c /^PySequence_DelSlice(PyObject *s, Py_ssize_t i1, Py_ssize_t i2)$/;" f +PySequence_Fast Objects/abstract.c /^PySequence_Fast(PyObject *v, const char *m)$/;" f +PySequence_Fast_GET_ITEM Include/abstract.h 750;" d +PySequence_Fast_GET_SIZE Include/abstract.h 745;" d +PySequence_Fast_ITEMS Include/abstract.h 755;" d +PySequence_GetItem Objects/abstract.c /^PySequence_GetItem(PyObject *s, Py_ssize_t i)$/;" f +PySequence_GetSlice Objects/abstract.c /^PySequence_GetSlice(PyObject *s, Py_ssize_t i1, Py_ssize_t i2)$/;" f +PySequence_ITEM Include/cpython/abstract.h 165;" d +PySequence_In Include/abstract.h 773;" d +PySequence_In Include/abstract.h 781;" d +PySequence_In Objects/abstract.c /^PySequence_In(PyObject *w, PyObject *v)$/;" f +PySequence_In Objects/abstract.c 2272;" d file: +PySequence_InPlaceConcat Objects/abstract.c /^PySequence_InPlaceConcat(PyObject *s, PyObject *o)$/;" f +PySequence_InPlaceRepeat Objects/abstract.c /^PySequence_InPlaceRepeat(PyObject *o, Py_ssize_t count)$/;" f +PySequence_Index Objects/abstract.c /^PySequence_Index(PyObject *s, PyObject *o)$/;" f +PySequence_Length Include/abstract.h 675;" d +PySequence_Length Include/abstract.h 677;" d +PySequence_Length Objects/abstract.c /^PySequence_Length(PyObject *s)$/;" f +PySequence_Length Objects/abstract.c 1732;" d file: +PySequence_Length Objects/abstract.c 1738;" d file: +PySequence_List Objects/abstract.c /^PySequence_List(PyObject *v)$/;" f +PySequence_Repeat Objects/abstract.c /^PySequence_Repeat(PyObject *o, Py_ssize_t count)$/;" f +PySequence_SetItem Objects/abstract.c /^PySequence_SetItem(PyObject *s, Py_ssize_t i, PyObject *o)$/;" f +PySequence_SetSlice Objects/abstract.c /^PySequence_SetSlice(PyObject *s, Py_ssize_t i1, Py_ssize_t i2, PyObject *o)$/;" f +PySequence_Size Objects/abstract.c /^PySequence_Size(PyObject *s)$/;" f +PySequence_Tuple Objects/abstract.c /^PySequence_Tuple(PyObject *v)$/;" f +PySetIter_Type Objects/setobject.c /^PyTypeObject PySetIter_Type = {$/;" v +PySetObject Include/cpython/setobject.h /^} PySetObject;$/;" t typeref:struct:__anon224 +PySetObjectPtr Tools/gdb/libpython.py /^class PySetObjectPtr(PyObjectPtr):$/;" c +PySet_Add Objects/setobject.c /^PySet_Add(PyObject *anyset, PyObject *key)$/;" f +PySet_Check Include/setobject.h 36;" d +PySet_CheckExact Include/setobject.h 35;" d +PySet_Clear Objects/setobject.c /^PySet_Clear(PyObject *set)$/;" f +PySet_Contains Objects/setobject.c /^PySet_Contains(PyObject *anyset, PyObject *key)$/;" f +PySet_Discard Objects/setobject.c /^PySet_Discard(PyObject *set, PyObject *key)$/;" f +PySet_GET_SIZE Include/cpython/setobject.h /^static inline Py_ssize_t PySet_GET_SIZE(PyObject *so) {$/;" f +PySet_GET_SIZE Include/cpython/setobject.h 67;" d +PySet_MINSIZE Include/cpython/setobject.h 18;" d +PySet_New Objects/setobject.c /^PySet_New(PyObject *iterable)$/;" f +PySet_Pop Objects/setobject.c /^PySet_Pop(PyObject *set)$/;" f +PySet_Size Objects/setobject.c /^PySet_Size(PyObject *anyset)$/;" f +PySet_Type Objects/setobject.c /^PyTypeObject PySet_Type = {$/;" v +PyShell Lib/idlelib/pyshell.py /^class PyShell(OutputWindow):$/;" c +PyShellEditorWindow Lib/idlelib/pyshell.py /^class PyShellEditorWindow(EditorWindow):$/;" c +PyShellExt PC/pyshellext.cpp /^CoCreatableClass(PyShellExt);$/;" v +PyShellFileList Lib/idlelib/pyshell.py /^class PyShellFileList(FileList):$/;" c +PyShellFileListTest Lib/idlelib/idle_test/test_pyshell.py /^class PyShellFileListTest(unittest.TestCase):$/;" c +PyShellRemoveLastNewlineAndSurroundingWhitespaceTest Lib/idlelib/idle_test/test_pyshell.py /^class PyShellRemoveLastNewlineAndSurroundingWhitespaceTest(unittest.TestCase):$/;" c +PySignal_SetWakeupFd Modules/signalmodule.c /^PySignal_SetWakeupFd(int fd)$/;" f +PySignalsTest Lib/test/test_io.py /^class PySignalsTest(SignalsTest):$/;" c +PySimpleLRUCacheTests Lib/test/test_ordered_dict.py /^class PySimpleLRUCacheTests(SimpleLRUCacheTests, unittest.TestCase):$/;" c +PySimpleQueueTest Lib/test/test_queue.py /^class PySimpleQueueTest(BaseSimpleQueueTest, unittest.TestCase):$/;" c +PySliceObject Include/sliceobject.h /^} PySliceObject;$/;" t typeref:struct:__anon3 +PySlice_AdjustIndices Objects/sliceobject.c /^PySlice_AdjustIndices(Py_ssize_t length,$/;" f +PySlice_Check Include/sliceobject.h 31;" d +PySlice_GetIndices Objects/sliceobject.c /^PySlice_GetIndices(PyObject *_r, Py_ssize_t length,$/;" f +PySlice_GetIndicesEx Include/sliceobject.h 50;" d +PySlice_GetIndicesEx Objects/sliceobject.c /^PySlice_GetIndicesEx(PyObject *_r, Py_ssize_t length,$/;" f +PySlice_GetIndicesEx Objects/sliceobject.c 316;" d file: +PySlice_New Objects/sliceobject.c /^PySlice_New(PyObject *start, PyObject *stop, PyObject *step)$/;" f +PySlice_Type Objects/sliceobject.c /^PyTypeObject PySlice_Type = {$/;" v +PySlice_Unpack Objects/sliceobject.c /^PySlice_Unpack(PyObject *_r,$/;" f +PySlot_Offset Objects/typeobject.c /^typedef struct PySlot_Offset {$/;" s file: +PySlot_Offset Objects/typeobject.c /^} PySlot_Offset;$/;" t typeref:struct:PySlot_Offset file: +PySlowFlushRawIO Lib/test/test_io.py /^class PySlowFlushRawIO(SlowFlushRawIO, pyio.RawIOBase):$/;" c +PySocketModule_APIObject Modules/socketmodule.h /^} PySocketModule_APIObject;$/;" t typeref:struct:__anon399 +PySocketModule_ImportModuleAndAPI Modules/socketmodule.h 386;" d +PySocketSockObject Modules/socketmodule.h /^} PySocketSockObject;$/;" t typeref:struct:__anon398 +PySocket_BUILDING_SOCKET Modules/socketmodule.c 256;" d file: +PySocket_CAPI_NAME Modules/socketmodule.h 228;" d +PySocket_CAPSULE_NAME Modules/socketmodule.h 229;" d +PySocket_MODULE_NAME Modules/socketmodule.h 227;" d +PySpecialContexts Lib/test/test_decimal.py /^class PySpecialContexts(SpecialContexts, unittest.TestCase):$/;" c +PyState_AddModule Python/import.c /^PyState_AddModule(PyObject* module, PyModuleDef* def)$/;" f +PyState_FindModule Python/import.c /^PyState_FindModule(PyModuleDef* module)$/;" f +PyState_RemoveModule Python/import.c /^PyState_RemoveModule(PyModuleDef* def)$/;" f +PyStaticMethod_New Objects/funcobject.c /^PyStaticMethod_New(PyObject *callable)$/;" f +PyStaticMethod_Type Objects/funcobject.c /^PyTypeObject PyStaticMethod_Type = {$/;" v +PyStats Include/pystats.h /^} PyStats;$/;" t typeref:struct:_stats +PyStatus Include/cpython/initconfig.h /^} PyStatus;$/;" t typeref:struct:__anon198 +PyStatus_Error Python/initconfig.c /^PyStatus PyStatus_Error(const char *err_msg)$/;" f +PyStatus_Exception Python/initconfig.c /^int PyStatus_Exception(PyStatus status)$/;" f +PyStatus_Exit Python/initconfig.c /^PyStatus PyStatus_Exit(int exitcode)$/;" f +PyStatus_IsError Python/initconfig.c /^int PyStatus_IsError(PyStatus status)$/;" f +PyStatus_IsExit Python/initconfig.c /^int PyStatus_IsExit(PyStatus status)$/;" f +PyStatus_NoMemory Python/initconfig.c /^PyStatus PyStatus_NoMemory(void)$/;" f +PyStatus_Ok Python/initconfig.c /^PyStatus PyStatus_Ok(void)$/;" f +PyStdPrinter_Object Objects/fileobject.c /^} PyStdPrinter_Object;$/;" t typeref:struct:__anon710 file: +PyStdPrinter_Type Objects/fileobject.c /^PyTypeObject PyStdPrinter_Type = {$/;" v +PyStopIterationObject Include/cpython/pyerrors.h /^} PyStopIterationObject;$/;" t typeref:struct:__anon187 +PyStringIOPickleTest Lib/test/test_memoryio.py /^class PyStringIOPickleTest(TextIOTestMixin, unittest.TestCase):$/;" c +PyStringIOTest Lib/test/test_memoryio.py /^ TextIOTestMixin, unittest.TestCase):$/;" c +PyStringIO_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyStringIO_Type;$/;" m struct:_io_state +PyStructObject Modules/_struct.c /^} PyStructObject;$/;" t typeref:struct:__anon370 file: +PyStructSequence Include/structseq.h /^typedef PyTupleObject PyStructSequence;$/;" t +PyStructSequence_Desc Include/structseq.h /^typedef struct PyStructSequence_Desc {$/;" s +PyStructSequence_Desc Include/structseq.h /^} PyStructSequence_Desc;$/;" t typeref:struct:PyStructSequence_Desc +PyStructSequence_Field Include/structseq.h /^typedef struct PyStructSequence_Field {$/;" s +PyStructSequence_Field Include/structseq.h /^} PyStructSequence_Field;$/;" t typeref:struct:PyStructSequence_Field +PyStructSequence_GET_ITEM Include/structseq.h 40;" d +PyStructSequence_GetItem Objects/structseq.c /^PyStructSequence_GetItem(PyObject* op, Py_ssize_t i)$/;" f +PyStructSequence_InitType Objects/structseq.c /^PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc *desc)$/;" f +PyStructSequence_InitType2 Objects/structseq.c /^PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc)$/;" f +PyStructSequence_New Objects/structseq.c /^PyStructSequence_New(PyTypeObject *type)$/;" f +PyStructSequence_NewType Objects/structseq.c /^PyStructSequence_NewType(PyStructSequence_Desc *desc)$/;" f +PyStructSequence_SET_ITEM Include/structseq.h 38;" d +PyStructSequence_SetItem Objects/structseq.c /^PyStructSequence_SetItem(PyObject* op, Py_ssize_t i, PyObject* v)$/;" f +PyStructSequence_UnnamedField Objects/structseq.c /^const char * const PyStructSequence_UnnamedField = "unnamed field";$/;" v +PyStructType Modules/_struct.c /^ PyObject *PyStructType;$/;" m struct:__anon369 file: +PyStructType_slots Modules/_struct.c /^static PyType_Slot PyStructType_slots[] = {$/;" v file: +PyStructType_spec Modules/_struct.c /^static PyType_Spec PyStructType_spec = {$/;" v file: +PyStruct_Check Modules/_struct.c 73;" d file: +PySuper_Type Objects/typeobject.c /^PyTypeObject PySuper_Type = {$/;" v +PySymtable_Lookup Python/symtable.c /^PySymtable_Lookup(struct symtable *st, void *key)$/;" f +PySyntaxErrorObject Include/cpython/pyerrors.h /^} PySyntaxErrorObject;$/;" t typeref:struct:__anon182 +PySys_AddAuditHook Python/sysmodule.c /^PySys_AddAuditHook(Py_AuditHookFunction hook, void *userData)$/;" f +PySys_AddWarnOption Python/sysmodule.c /^PySys_AddWarnOption(const wchar_t *s)$/;" f +PySys_AddWarnOptionUnicode Python/sysmodule.c /^PySys_AddWarnOptionUnicode(PyObject *option)$/;" f +PySys_AddXOption Python/sysmodule.c /^PySys_AddXOption(const wchar_t *s)$/;" f +PySys_Audit Python/sysmodule.c /^PySys_Audit(const char *event, const char *argFormat, ...)$/;" f +PySys_FormatStderr Python/sysmodule.c /^PySys_FormatStderr(const char *format, ...)$/;" f +PySys_FormatStdout Python/sysmodule.c /^PySys_FormatStdout(const char *format, ...)$/;" f +PySys_GetObject Python/sysmodule.c /^PySys_GetObject(const char *name)$/;" f +PySys_GetXOptions Python/sysmodule.c /^PySys_GetXOptions(void)$/;" f +PySys_HasWarnOptions Python/sysmodule.c /^PySys_HasWarnOptions(void)$/;" f +PySys_ResetWarnOptions Python/sysmodule.c /^PySys_ResetWarnOptions(void)$/;" f +PySys_SetArgv Python/sysmodule.c /^PySys_SetArgv(int argc, wchar_t **argv)$/;" f +PySys_SetArgvEx Python/sysmodule.c /^PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath)$/;" f +PySys_SetObject Python/sysmodule.c /^PySys_SetObject(const char *name, PyObject *v)$/;" f +PySys_SetPath Python/sysmodule.c /^PySys_SetPath(const wchar_t *path)$/;" f +PySys_WriteStderr Python/sysmodule.c /^PySys_WriteStderr(const char *format, ...)$/;" f +PySys_WriteStdout Python/sysmodule.c /^PySys_WriteStdout(const char *format, ...)$/;" f +PySystemExitObject Include/cpython/pyerrors.h /^} PySystemExitObject;$/;" t typeref:struct:__anon185 +PyTZInfo_Check Include/datetime.h 218;" d +PyTZInfo_Check Modules/_datetimemodule.c 38;" d file: +PyTZInfo_CheckExact Include/datetime.h 219;" d +PyTZInfo_CheckExact Modules/_datetimemodule.c 39;" d file: +PyTask_CFutureSubclass_Tests Lib/test/test_asyncio/test_tasks.py /^class PyTask_CFutureSubclass_Tests(BaseTaskTests, test_utils.TestCase):$/;" c +PyTask_CFuture_Tests Lib/test/test_asyncio/test_tasks.py /^class PyTask_CFuture_Tests(BaseTaskTests, test_utils.TestCase):$/;" c +PyTask_PyFuture_SubclassTests Lib/test/test_asyncio/test_tasks.py /^class PyTask_PyFuture_SubclassTests(BaseTaskTests, test_utils.TestCase):$/;" c +PyTask_PyFuture_Tests Lib/test/test_asyncio/test_tasks.py /^ test_utils.TestCase):$/;" c +PyTclObject Modules/_tkinter.c /^} PyTclObject;$/;" t typeref:struct:__anon335 file: +PyTclObject_Check Modules/_tkinter.c 727;" d file: +PyTclObject_Type Modules/_tkinter.c /^static PyObject *PyTclObject_Type;$/;" v file: +PyTclObject_Type_slots Modules/_tkinter.c /^static PyType_Slot PyTclObject_Type_slots[] = {$/;" v file: +PyTclObject_Type_spec Modules/_tkinter.c /^static PyType_Spec PyTclObject_Type_spec = {$/;" v file: +PyTclObject_dealloc Modules/_tkinter.c /^PyTclObject_dealloc(PyTclObject *self)$/;" f file: +PyTclObject_getsetlist Modules/_tkinter.c /^static PyGetSetDef PyTclObject_getsetlist[] = {$/;" v file: +PyTclObject_repr Modules/_tkinter.c /^PyTclObject_repr(PyTclObject *self)$/;" f file: +PyTclObject_richcompare Modules/_tkinter.c /^PyTclObject_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +PyTclObject_str Modules/_tkinter.c /^PyTclObject_str(PyTclObject *self)$/;" f file: +PyTclObject_string Modules/_tkinter.c /^PyTclObject_string(PyTclObject *self, void *ignored)$/;" f file: +PyTest Lib/test/test_json/__init__.py /^class PyTest(unittest.TestCase):$/;" c +PyTest Lib/test/test_univnewlines.py /^class PyTest:$/;" c +PyTestBufferedIOSignalInterrupt Lib/test/test_file_eintr.py /^class PyTestBufferedIOSignalInterrupt(TestBufferedIOSignalInterrupt, unittest.TestCase):$/;" c +PyTestCRLFNewlines Lib/test/test_univnewlines.py /^class PyTestCRLFNewlines(PyTest, TestCRLFNewlines, unittest.TestCase): pass$/;" c +PyTestCRNewlines Lib/test/test_univnewlines.py /^class PyTestCRNewlines(PyTest, TestCRNewlines, unittest.TestCase): pass$/;" c +PyTestFileIOSignalInterrupt Lib/test/test_file_eintr.py /^class PyTestFileIOSignalInterrupt(TestFileIOSignalInterrupt, unittest.TestCase):$/;" c +PyTestLFNewlines Lib/test/test_univnewlines.py /^class PyTestLFNewlines(PyTest, TestLFNewlines, unittest.TestCase): pass$/;" c +PyTestMixedNewlines Lib/test/test_univnewlines.py /^class PyTestMixedNewlines(PyTest, TestMixedNewlines, unittest.TestCase): pass$/;" c +PyTestTextIOSignalInterrupt Lib/test/test_file_eintr.py /^class PyTestTextIOSignalInterrupt(TestTextIOSignalInterrupt, unittest.TestCase):$/;" c +PyTextIOBase_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyTextIOBase_Type;$/;" m struct:_io_state +PyTextIOWrapperTest Lib/test/test_io.py /^class PyTextIOWrapperTest(TextIOWrapperTest):$/;" c +PyTextIOWrapper_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyTextIOWrapper_Type;$/;" m struct:_io_state +PyThreadState Include/pytypedefs.h /^typedef struct _ts PyThreadState;$/;" t typeref:struct:_ts +PyThreadState_Clear Python/pystate.c /^PyThreadState_Clear(PyThreadState *tstate)$/;" f +PyThreadState_Delete Python/pystate.c /^PyThreadState_Delete(PyThreadState *tstate)$/;" f +PyThreadState_DeleteCurrent Python/pystate.c /^PyThreadState_DeleteCurrent(void)$/;" f +PyThreadState_EnterTracing Python/ceval.c /^PyThreadState_EnterTracing(PyThreadState *tstate)$/;" f +PyThreadState_GET Include/pystate.h 63;" d +PyThreadState_Get Python/pystate.c /^PyThreadState_Get(void)$/;" f +PyThreadState_GetDict Python/pystate.c /^PyThreadState_GetDict(void)$/;" f +PyThreadState_GetFrame Python/pystate.c /^PyThreadState_GetFrame(PyThreadState *tstate)$/;" f +PyThreadState_GetID Python/pystate.c /^PyThreadState_GetID(PyThreadState *tstate)$/;" f +PyThreadState_GetInterpreter Python/pystate.c /^PyThreadState_GetInterpreter(PyThreadState *tstate)$/;" f +PyThreadState_LeaveTracing Python/ceval.c /^PyThreadState_LeaveTracing(PyThreadState *tstate)$/;" f +PyThreadState_New Python/pystate.c /^PyThreadState_New(PyInterpreterState *interp)$/;" f +PyThreadState_Next Python/pystate.c /^PyThreadState_Next(PyThreadState *tstate) {$/;" f +PyThreadState_SetAsyncExc Python/pystate.c /^PyThreadState_SetAsyncExc(unsigned long id, PyObject *exc)$/;" f +PyThreadState_Swap Python/pystate.c /^PyThreadState_Swap(PyThreadState *newts)$/;" f +PyThread_GetInfo Python/thread.c /^PyThread_GetInfo(void)$/;" f +PyThread_ReInitTLS Python/thread_nt.h /^PyThread_ReInitTLS(void)$/;" f +PyThread_ReInitTLS Python/thread_pthread.h /^PyThread_ReInitTLS(void)$/;" f +PyThread__init_thread Python/thread_nt.h /^PyThread__init_thread(void)$/;" f +PyThread__init_thread Python/thread_pthread.h /^PyThread__init_thread(void)$/;" f +PyThread_acquire_lock Python/thread_nt.h /^PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)$/;" f +PyThread_acquire_lock Python/thread_pthread.h /^PyThread_acquire_lock(PyThread_type_lock lock, int waitflag)$/;" f +PyThread_acquire_lock_timed Python/thread_nt.h /^PyThread_acquire_lock_timed(PyThread_type_lock aLock,$/;" f +PyThread_acquire_lock_timed Python/thread_pthread.h /^PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds,$/;" f +PyThread_allocate_lock Python/thread_nt.h /^PyThread_allocate_lock(void)$/;" f +PyThread_allocate_lock Python/thread_pthread.h /^PyThread_allocate_lock(void)$/;" f +PyThread_create_key Python/thread_nt.h /^PyThread_create_key(void)$/;" f +PyThread_create_key Python/thread_pthread.h /^PyThread_create_key(void)$/;" f +PyThread_delete_key Python/thread_nt.h /^PyThread_delete_key(int key)$/;" f +PyThread_delete_key Python/thread_pthread.h /^PyThread_delete_key(int key)$/;" f +PyThread_delete_key_value Python/thread_nt.h /^PyThread_delete_key_value(int key)$/;" f +PyThread_delete_key_value Python/thread_pthread.h /^PyThread_delete_key_value(int key)$/;" f +PyThread_exit_thread Python/thread_nt.h /^PyThread_exit_thread(void)$/;" f +PyThread_exit_thread Python/thread_pthread.h /^PyThread_exit_thread(void)$/;" f +PyThread_free_lock Python/thread_nt.h /^PyThread_free_lock(PyThread_type_lock aLock)$/;" f +PyThread_free_lock Python/thread_pthread.h /^PyThread_free_lock(PyThread_type_lock lock)$/;" f +PyThread_get_key_value Python/thread_nt.h /^PyThread_get_key_value(int key)$/;" f +PyThread_get_key_value Python/thread_pthread.h /^PyThread_get_key_value(int key)$/;" f +PyThread_get_stacksize Python/thread.c /^PyThread_get_stacksize(void)$/;" f +PyThread_get_thread_ident Python/thread_nt.h /^PyThread_get_thread_ident(void)$/;" f +PyThread_get_thread_ident Python/thread_pthread.h /^PyThread_get_thread_ident(void)$/;" f +PyThread_get_thread_native_id Python/thread_nt.h /^PyThread_get_thread_native_id(void)$/;" f +PyThread_get_thread_native_id Python/thread_pthread.h /^PyThread_get_thread_native_id(void)$/;" f +PyThread_init_thread Python/thread.c /^PyThread_init_thread(void)$/;" f +PyThread_release_lock Python/thread_nt.h /^PyThread_release_lock(PyThread_type_lock aLock)$/;" f +PyThread_release_lock Python/thread_pthread.h /^PyThread_release_lock(PyThread_type_lock lock)$/;" f +PyThread_set_key_value Python/thread_nt.h /^PyThread_set_key_value(int key, void *value)$/;" f +PyThread_set_key_value Python/thread_pthread.h /^PyThread_set_key_value(int key, void *value)$/;" f +PyThread_set_stacksize Python/thread.c /^PyThread_set_stacksize(size_t size)$/;" f +PyThread_start_new_thread Python/thread_nt.h /^PyThread_start_new_thread(void (*func)(void *), void *arg)$/;" f +PyThread_start_new_thread Python/thread_pthread.h /^PyThread_start_new_thread(void (*func)(void *), void *arg)$/;" f +PyThread_tss_alloc Python/thread.c /^PyThread_tss_alloc(void)$/;" f +PyThread_tss_create Python/thread_nt.h /^PyThread_tss_create(Py_tss_t *key)$/;" f +PyThread_tss_create Python/thread_pthread.h /^PyThread_tss_create(Py_tss_t *key)$/;" f +PyThread_tss_delete Python/thread_nt.h /^PyThread_tss_delete(Py_tss_t *key)$/;" f +PyThread_tss_delete Python/thread_pthread.h /^PyThread_tss_delete(Py_tss_t *key)$/;" f +PyThread_tss_free Python/thread.c /^PyThread_tss_free(Py_tss_t *key)$/;" f +PyThread_tss_get Python/thread_nt.h /^PyThread_tss_get(Py_tss_t *key)$/;" f +PyThread_tss_get Python/thread_pthread.h /^PyThread_tss_get(Py_tss_t *key)$/;" f +PyThread_tss_is_created Python/thread.c /^PyThread_tss_is_created(Py_tss_t *key)$/;" f +PyThread_tss_set Python/thread_nt.h /^PyThread_tss_set(Py_tss_t *key, void *value)$/;" f +PyThread_tss_set Python/thread_pthread.h /^PyThread_tss_set(Py_tss_t *key, void *value)$/;" f +PyThread_type_lock Include/pythread.h /^PyAPI_FUNC(void) PyThread_free_lock(PyThread_type_lock);$/;" v +PyThread_type_lock Include/pythread.h /^PyAPI_FUNC(void) PyThread_release_lock(PyThread_type_lock);$/;" v +PyThread_type_lock Include/pythread.h /^typedef void *PyThread_type_lock;$/;" t +PyThreadingLocalTest Lib/test/test_threading_local.py /^class PyThreadingLocalTest(unittest.TestCase, BaseLocalTest):$/;" c +PyThreadingTest Lib/test/test_decimal.py /^class PyThreadingTest(ThreadingTest, unittest.TestCase):$/;" c +PyTimeZone_FromOffset Include/datetime.h 246;" d +PyTimeZone_FromOffsetAndName Include/datetime.h 249;" d +PyTime_Check Include/datetime.h 212;" d +PyTime_Check Modules/_datetimemodule.c 32;" d file: +PyTime_CheckExact Include/datetime.h 213;" d +PyTime_CheckExact Modules/_datetimemodule.c 33;" d file: +PyTime_FromTime Include/datetime.h 234;" d +PyTime_FromTimeAndFold Include/datetime.h 238;" d +PyTimezone_Check Modules/_datetimemodule.c 41;" d file: +PyTraceBack_Check Include/traceback.h 14;" d +PyTraceBack_Here Python/traceback.c /^PyTraceBack_Here(PyFrameObject *frame)$/;" f +PyTraceBack_LIMIT Python/traceback.c 994;" d file: +PyTraceBack_Print Python/traceback.c /^PyTraceBack_Print(PyObject *v, PyObject *f)$/;" f +PyTraceBack_Type Python/traceback.c /^PyTypeObject PyTraceBack_Type = {$/;" v +PyTraceMalloc_Track Python/tracemalloc.c /^PyTraceMalloc_Track(unsigned int domain, uintptr_t ptr,$/;" f +PyTraceMalloc_Untrack Python/tracemalloc.c /^PyTraceMalloc_Untrack(unsigned int domain, uintptr_t ptr)$/;" f +PyTrace_CALL Include/cpython/pystate.h 56;" d +PyTrace_C_CALL Include/cpython/pystate.h 60;" d +PyTrace_C_EXCEPTION Include/cpython/pystate.h 61;" d +PyTrace_C_RETURN Include/cpython/pystate.h 62;" d +PyTrace_EXCEPTION Include/cpython/pystate.h 57;" d +PyTrace_LINE Include/cpython/pystate.h 58;" d +PyTrace_OPCODE Include/cpython/pystate.h 63;" d +PyTrace_RETURN Include/cpython/pystate.h 59;" d +PyTracebackObject Include/cpython/traceback.h /^typedef struct _traceback PyTracebackObject;$/;" t typeref:struct:_traceback +PyTupleIter_Type Objects/tupleobject.c /^PyTypeObject PyTupleIter_Type = {$/;" v +PyTupleObject Include/cpython/tupleobject.h /^} PyTupleObject;$/;" t typeref:struct:__anon201 +PyTupleObjectPtr Tools/gdb/libpython.py /^class PyTupleObjectPtr(PyObjectPtr):$/;" c +PyTuple_Check Include/tupleobject.h 26;" d +PyTuple_CheckExact Include/tupleobject.h 28;" d +PyTuple_GET_ITEM Include/cpython/tupleobject.h 28;" d +PyTuple_GET_SIZE Include/cpython/tupleobject.h /^static inline Py_ssize_t PyTuple_GET_SIZE(PyObject *op) {$/;" f +PyTuple_GET_SIZE Include/cpython/tupleobject.h 26;" d +PyTuple_GetItem Objects/tupleobject.c /^PyTuple_GetItem(PyObject *op, Py_ssize_t i)$/;" f +PyTuple_GetSlice Objects/tupleobject.c /^PyTuple_GetSlice(PyObject *op, Py_ssize_t i, Py_ssize_t j)$/;" f +PyTuple_MAXFREELIST Include/internal/pycore_tuple.h 29;" d +PyTuple_MAXFREELIST Include/internal/pycore_tuple.h 34;" d +PyTuple_MAXFREELIST Include/internal/pycore_tuple.h 43;" d +PyTuple_MAXSAVESIZE Include/internal/pycore_tuple.h 28;" d +PyTuple_MAXSAVESIZE Include/internal/pycore_tuple.h 33;" d +PyTuple_MAXSAVESIZE Include/internal/pycore_tuple.h 39;" d +PyTuple_NFREELISTS Include/internal/pycore_tuple.h 27;" d +PyTuple_NFREELISTS Include/internal/pycore_tuple.h 32;" d +PyTuple_NFREELISTS Include/internal/pycore_tuple.h 41;" d +PyTuple_New Objects/tupleobject.c /^PyTuple_New(Py_ssize_t size)$/;" f +PyTuple_Pack Objects/tupleobject.c /^PyTuple_Pack(Py_ssize_t n, ...)$/;" f +PyTuple_SET_ITEM Include/cpython/tupleobject.h /^PyTuple_SET_ITEM(PyObject *op, Py_ssize_t index, PyObject *value) {$/;" f +PyTuple_SET_ITEM Include/cpython/tupleobject.h 36;" d +PyTuple_SetItem Objects/tupleobject.c /^PyTuple_SetItem(PyObject *op, Py_ssize_t i, PyObject *newitem)$/;" f +PyTuple_Size Objects/tupleobject.c /^PyTuple_Size(PyObject *op)$/;" f +PyTuple_Type Objects/tupleobject.c /^PyTypeObject PyTuple_Type = {$/;" v +PyTypeObject Doc/includes/typestruct.h /^} PyTypeObject;$/;" t typeref:struct:_typeobject +PyTypeObject Include/pytypedefs.h /^typedef struct _typeobject PyTypeObject;$/;" t typeref:struct:_typeobject +PyTypeObjectPtr Tools/gdb/libpython.py /^class PyTypeObjectPtr(PyObjectPtr):$/;" c +PyType_AddWatcher Objects/typeobject.c /^PyType_AddWatcher(PyType_WatchCallback callback)$/;" f +PyType_Check Include/object.h /^static inline int PyType_Check(PyObject *op) {$/;" f +PyType_Check Include/object.h 978;" d +PyType_CheckExact Include/object.h /^static inline int PyType_CheckExact(PyObject *op) {$/;" f +PyType_CheckExact Include/object.h 988;" d +PyType_ClearCache Objects/typeobject.c /^PyType_ClearCache(void)$/;" f +PyType_ClearWatcher Objects/typeobject.c /^PyType_ClearWatcher(int watcher_id)$/;" f +PyType_FastSubclass Include/object.h 972;" d +PyType_FromMetaclass Objects/typeobject.c /^PyType_FromMetaclass(PyTypeObject *metaclass, PyObject *module,$/;" f +PyType_FromModuleAndSpec Objects/typeobject.c /^PyType_FromModuleAndSpec(PyObject *module, PyType_Spec *spec, PyObject *bases)$/;" f +PyType_FromSpec Objects/typeobject.c /^PyType_FromSpec(PyType_Spec *spec)$/;" f +PyType_FromSpecWithBases Objects/typeobject.c /^PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)$/;" f +PyType_GenericAlloc Objects/typeobject.c /^PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems)$/;" f +PyType_GenericNew Objects/typeobject.c /^PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f +PyType_GetDict Objects/typeobject.c /^PyType_GetDict(PyTypeObject *self)$/;" f +PyType_GetFlags Objects/typeobject.c /^PyType_GetFlags(PyTypeObject *type)$/;" f +PyType_GetModule Objects/typeobject.c /^PyType_GetModule(PyTypeObject *type)$/;" f +PyType_GetModuleByDef Objects/typeobject.c /^PyType_GetModuleByDef(PyTypeObject *type, PyModuleDef *def)$/;" f +PyType_GetModuleState Objects/typeobject.c /^PyType_GetModuleState(PyTypeObject *type)$/;" f +PyType_GetName Objects/typeobject.c /^PyType_GetName(PyTypeObject *type)$/;" f +PyType_GetQualName Objects/typeobject.c /^PyType_GetQualName(PyTypeObject *type)$/;" f +PyType_GetSlot Objects/typeobject.c /^PyType_GetSlot(PyTypeObject *type, int slot)$/;" f +PyType_GetTypeDataSize Objects/typeobject.c /^PyType_GetTypeDataSize(PyTypeObject *cls)$/;" f +PyType_HasFeature Include/object.h /^PyType_HasFeature(PyTypeObject *type, unsigned long feature)$/;" f +PyType_IS_GC Include/objimpl.h 180;" d +PyType_IsSubtype Objects/typeobject.c /^PyType_IsSubtype(PyTypeObject *a, PyTypeObject *b)$/;" f +PyType_Modified Objects/typeobject.c /^PyType_Modified(PyTypeObject *type)$/;" f +PyType_Ready Objects/typeobject.c /^PyType_Ready(PyTypeObject *type)$/;" f +PyType_SUPPORTS_WEAKREFS Objects/typeobject.c /^PyType_SUPPORTS_WEAKREFS(PyTypeObject *type)$/;" f +PyType_Slot Include/object.h /^} PyType_Slot;$/;" t typeref:struct:__anon252 +PyType_Spec Include/object.h /^} PyType_Spec;$/;" t typeref:struct:__anon253 +PyType_Type Objects/typeobject.c /^PyTypeObject PyType_Type = {$/;" v +PyType_Unwatch Objects/typeobject.c /^PyType_Unwatch(int watcher_id, PyObject* obj)$/;" f +PyType_Watch Objects/typeobject.c /^PyType_Watch(int watcher_id, PyObject* obj)$/;" f +PyType_WatchCallback Include/cpython/object.h /^typedef int(*PyType_WatchCallback)(PyTypeObject *);$/;" t +PyType_stgdict Modules/_ctypes/stgdict.c /^PyType_stgdict(PyObject *obj)$/;" f +PyTypesDeclareVisitor Parser/asdl_c.py /^class PyTypesDeclareVisitor(PickleVisitor):$/;" c +PyTypesVisitor Parser/asdl_c.py /^class PyTypesVisitor(PickleVisitor):$/;" c +PyUnicodeData_CAPSULE_NAME Include/internal/pycore_ucnhash.h 14;" d +PyUnicodeDecodeError_Create Objects/exceptions.c /^PyUnicodeDecodeError_Create($/;" f +PyUnicodeDecodeError_GetEncoding Objects/exceptions.c /^PyUnicodeDecodeError_GetEncoding(PyObject *exc)$/;" f +PyUnicodeDecodeError_GetEnd Objects/exceptions.c /^PyUnicodeDecodeError_GetEnd(PyObject *exc, Py_ssize_t *end)$/;" f +PyUnicodeDecodeError_GetObject Objects/exceptions.c /^PyUnicodeDecodeError_GetObject(PyObject *exc)$/;" f +PyUnicodeDecodeError_GetReason Objects/exceptions.c /^PyUnicodeDecodeError_GetReason(PyObject *exc)$/;" f +PyUnicodeDecodeError_GetStart Objects/exceptions.c /^PyUnicodeDecodeError_GetStart(PyObject *exc, Py_ssize_t *start)$/;" f +PyUnicodeDecodeError_SetEnd Objects/exceptions.c /^PyUnicodeDecodeError_SetEnd(PyObject *exc, Py_ssize_t end)$/;" f +PyUnicodeDecodeError_SetReason Objects/exceptions.c /^PyUnicodeDecodeError_SetReason(PyObject *exc, const char *reason)$/;" f +PyUnicodeDecodeError_SetStart Objects/exceptions.c /^PyUnicodeDecodeError_SetStart(PyObject *exc, Py_ssize_t start)$/;" f +PyUnicodeEncodeError_GetEncoding Objects/exceptions.c /^PyUnicodeEncodeError_GetEncoding(PyObject *exc)$/;" f +PyUnicodeEncodeError_GetEnd Objects/exceptions.c /^PyUnicodeEncodeError_GetEnd(PyObject *exc, Py_ssize_t *end)$/;" f +PyUnicodeEncodeError_GetObject Objects/exceptions.c /^PyUnicodeEncodeError_GetObject(PyObject *exc)$/;" f +PyUnicodeEncodeError_GetReason Objects/exceptions.c /^PyUnicodeEncodeError_GetReason(PyObject *exc)$/;" f +PyUnicodeEncodeError_GetStart Objects/exceptions.c /^PyUnicodeEncodeError_GetStart(PyObject *exc, Py_ssize_t *start)$/;" f +PyUnicodeEncodeError_SetEnd Objects/exceptions.c /^PyUnicodeEncodeError_SetEnd(PyObject *exc, Py_ssize_t end)$/;" f +PyUnicodeEncodeError_SetReason Objects/exceptions.c /^PyUnicodeEncodeError_SetReason(PyObject *exc, const char *reason)$/;" f +PyUnicodeEncodeError_SetStart Objects/exceptions.c /^PyUnicodeEncodeError_SetStart(PyObject *exc, Py_ssize_t start)$/;" f +PyUnicodeErrorObject Include/cpython/pyerrors.h /^} PyUnicodeErrorObject;$/;" t typeref:struct:__anon184 +PyUnicodeIter_Type Objects/unicodeobject.c /^PyTypeObject PyUnicodeIter_Type = {$/;" v +PyUnicodeObject Include/cpython/unicodeobject.h /^} PyUnicodeObject;$/;" t typeref:struct:__anon234 +PyUnicodeObjectPtr Tools/gdb/libpython.py /^class PyUnicodeObjectPtr(PyObjectPtr):$/;" c +PyUnicodeTranslateError_GetEnd Objects/exceptions.c /^PyUnicodeTranslateError_GetEnd(PyObject *exc, Py_ssize_t *end)$/;" f +PyUnicodeTranslateError_GetObject Objects/exceptions.c /^PyUnicodeTranslateError_GetObject(PyObject *exc)$/;" f +PyUnicodeTranslateError_GetReason Objects/exceptions.c /^PyUnicodeTranslateError_GetReason(PyObject *exc)$/;" f +PyUnicodeTranslateError_GetStart Objects/exceptions.c /^PyUnicodeTranslateError_GetStart(PyObject *exc, Py_ssize_t *start)$/;" f +PyUnicodeTranslateError_SetEnd Objects/exceptions.c /^PyUnicodeTranslateError_SetEnd(PyObject *exc, Py_ssize_t end)$/;" f +PyUnicodeTranslateError_SetReason Objects/exceptions.c /^PyUnicodeTranslateError_SetReason(PyObject *exc, const char *reason)$/;" f +PyUnicodeTranslateError_SetStart Objects/exceptions.c /^PyUnicodeTranslateError_SetStart(PyObject *exc, Py_ssize_t start)$/;" f +PyUnicode_1BYTE_DATA Include/cpython/unicodeobject.h 274;" d +PyUnicode_1BYTE_KIND Include/cpython/unicodeobject.h /^ PyUnicode_1BYTE_KIND = 1,$/;" e enum:PyUnicode_Kind +PyUnicode_1BYTE_KIND Tools/build/deepfreeze.py /^PyUnicode_1BYTE_KIND = 1$/;" v +PyUnicode_2BYTE_DATA Include/cpython/unicodeobject.h 275;" d +PyUnicode_2BYTE_KIND Include/cpython/unicodeobject.h /^ PyUnicode_2BYTE_KIND = 2,$/;" e enum:PyUnicode_Kind +PyUnicode_2BYTE_KIND Tools/build/deepfreeze.py /^PyUnicode_2BYTE_KIND = 2$/;" v +PyUnicode_4BYTE_DATA Include/cpython/unicodeobject.h 276;" d +PyUnicode_4BYTE_KIND Include/cpython/unicodeobject.h /^ PyUnicode_4BYTE_KIND = 4$/;" e enum:PyUnicode_Kind +PyUnicode_4BYTE_KIND Tools/build/deepfreeze.py /^PyUnicode_4BYTE_KIND = 4$/;" v +PyUnicode_Append Objects/unicodeobject.c /^PyUnicode_Append(PyObject **p_left, PyObject *right)$/;" f +PyUnicode_AppendAndDel Objects/unicodeobject.c /^PyUnicode_AppendAndDel(PyObject **pleft, PyObject *right)$/;" f +PyUnicode_AsASCIIString Objects/unicodeobject.c /^PyUnicode_AsASCIIString(PyObject *unicode)$/;" f +PyUnicode_AsCharmapString Objects/unicodeobject.c /^PyUnicode_AsCharmapString(PyObject *unicode,$/;" f +PyUnicode_AsDecodedObject Objects/unicodeobject.c /^PyUnicode_AsDecodedObject(PyObject *unicode,$/;" f +PyUnicode_AsDecodedUnicode Objects/unicodeobject.c /^PyUnicode_AsDecodedUnicode(PyObject *unicode,$/;" f +PyUnicode_AsEncodedObject Objects/unicodeobject.c /^PyUnicode_AsEncodedObject(PyObject *unicode,$/;" f +PyUnicode_AsEncodedString Objects/unicodeobject.c /^PyUnicode_AsEncodedString(PyObject *unicode,$/;" f +PyUnicode_AsEncodedUnicode Objects/unicodeobject.c /^PyUnicode_AsEncodedUnicode(PyObject *unicode,$/;" f +PyUnicode_AsLatin1String Objects/unicodeobject.c /^PyUnicode_AsLatin1String(PyObject *unicode)$/;" f +PyUnicode_AsMBCSString Objects/unicodeobject.c /^PyUnicode_AsMBCSString(PyObject *unicode)$/;" f +PyUnicode_AsRawUnicodeEscapeString Objects/unicodeobject.c /^PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode)$/;" f +PyUnicode_AsUCS4 Objects/unicodeobject.c /^PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize,$/;" f +PyUnicode_AsUCS4Copy Objects/unicodeobject.c /^PyUnicode_AsUCS4Copy(PyObject *string)$/;" f +PyUnicode_AsUTF16String Objects/unicodeobject.c /^PyUnicode_AsUTF16String(PyObject *unicode)$/;" f +PyUnicode_AsUTF32String Objects/unicodeobject.c /^PyUnicode_AsUTF32String(PyObject *unicode)$/;" f +PyUnicode_AsUTF8 Objects/unicodeobject.c /^PyUnicode_AsUTF8(PyObject *unicode)$/;" f +PyUnicode_AsUTF8AndSize Objects/unicodeobject.c /^PyUnicode_AsUTF8AndSize(PyObject *unicode, Py_ssize_t *psize)$/;" f +PyUnicode_AsUTF8String Objects/unicodeobject.c /^PyUnicode_AsUTF8String(PyObject *unicode)$/;" f +PyUnicode_AsUnicodeEscapeString Objects/unicodeobject.c /^PyUnicode_AsUnicodeEscapeString(PyObject *unicode)$/;" f +PyUnicode_AsWideChar Objects/unicodeobject.c /^PyUnicode_AsWideChar(PyObject *unicode,$/;" f +PyUnicode_AsWideCharString Objects/unicodeobject.c /^PyUnicode_AsWideCharString(PyObject *unicode,$/;" f +PyUnicode_BuildEncodingMap Objects/unicodeobject.c /^PyUnicode_BuildEncodingMap(PyObject* string)$/;" f +PyUnicode_CHECK_INTERNED Include/cpython/unicodeobject.h /^static inline unsigned int PyUnicode_CHECK_INTERNED(PyObject *op) {$/;" f +PyUnicode_CHECK_INTERNED Include/cpython/unicodeobject.h 200;" d +PyUnicode_Check Include/unicodeobject.h 114;" d +PyUnicode_CheckExact Include/unicodeobject.h 116;" d +PyUnicode_Compare Objects/unicodeobject.c /^PyUnicode_Compare(PyObject *left, PyObject *right)$/;" f +PyUnicode_CompareWithASCIIString Objects/unicodeobject.c /^PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str)$/;" f +PyUnicode_Concat Objects/unicodeobject.c /^PyUnicode_Concat(PyObject *left, PyObject *right)$/;" f +PyUnicode_Contains Objects/unicodeobject.c /^PyUnicode_Contains(PyObject *str, PyObject *substr)$/;" f +PyUnicode_CopyCharacters Objects/unicodeobject.c /^PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start,$/;" f +PyUnicode_Count Objects/unicodeobject.c /^PyUnicode_Count(PyObject *str,$/;" f +PyUnicode_DATA Include/cpython/unicodeobject.h /^static inline void* PyUnicode_DATA(PyObject *op) {$/;" f +PyUnicode_DATA Include/cpython/unicodeobject.h 267;" d +PyUnicode_Decode Objects/unicodeobject.c /^PyUnicode_Decode(const char *s,$/;" f +PyUnicode_DecodeASCII Objects/unicodeobject.c /^PyUnicode_DecodeASCII(const char *s,$/;" f +PyUnicode_DecodeCharmap Objects/unicodeobject.c /^PyUnicode_DecodeCharmap(const char *s,$/;" f +PyUnicode_DecodeCodePageStateful Objects/unicodeobject.c /^PyUnicode_DecodeCodePageStateful(int code_page,$/;" f +PyUnicode_DecodeFSDefault Objects/unicodeobject.c /^PyUnicode_DecodeFSDefault(const char *s) {$/;" f +PyUnicode_DecodeFSDefaultAndSize Objects/unicodeobject.c /^PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size)$/;" f +PyUnicode_DecodeLatin1 Objects/unicodeobject.c /^PyUnicode_DecodeLatin1(const char *s,$/;" f +PyUnicode_DecodeLocale Objects/unicodeobject.c /^PyUnicode_DecodeLocale(const char *str, const char *errors)$/;" f +PyUnicode_DecodeLocaleAndSize Objects/unicodeobject.c /^PyUnicode_DecodeLocaleAndSize(const char *str, Py_ssize_t len,$/;" f +PyUnicode_DecodeMBCS Objects/unicodeobject.c /^PyUnicode_DecodeMBCS(const char *s,$/;" f +PyUnicode_DecodeMBCSStateful Objects/unicodeobject.c /^PyUnicode_DecodeMBCSStateful(const char *s,$/;" f +PyUnicode_DecodeRawUnicodeEscape Objects/unicodeobject.c /^PyUnicode_DecodeRawUnicodeEscape(const char *s,$/;" f +PyUnicode_DecodeUTF16 Objects/unicodeobject.c /^PyUnicode_DecodeUTF16(const char *s,$/;" f +PyUnicode_DecodeUTF16Stateful Objects/unicodeobject.c /^PyUnicode_DecodeUTF16Stateful(const char *s,$/;" f +PyUnicode_DecodeUTF32 Objects/unicodeobject.c /^PyUnicode_DecodeUTF32(const char *s,$/;" f +PyUnicode_DecodeUTF32Stateful Objects/unicodeobject.c /^PyUnicode_DecodeUTF32Stateful(const char *s,$/;" f +PyUnicode_DecodeUTF7 Objects/unicodeobject.c /^PyUnicode_DecodeUTF7(const char *s,$/;" f +PyUnicode_DecodeUTF7Stateful Objects/unicodeobject.c /^PyUnicode_DecodeUTF7Stateful(const char *s,$/;" f +PyUnicode_DecodeUTF8 Objects/unicodeobject.c /^PyUnicode_DecodeUTF8(const char *s,$/;" f +PyUnicode_DecodeUTF8Stateful Objects/unicodeobject.c /^PyUnicode_DecodeUTF8Stateful(const char *s,$/;" f +PyUnicode_DecodeUnicodeEscape Objects/unicodeobject.c /^PyUnicode_DecodeUnicodeEscape(const char *s,$/;" f +PyUnicode_EncodeCodePage Objects/unicodeobject.c /^PyUnicode_EncodeCodePage(int code_page,$/;" f +PyUnicode_EncodeFSDefault Objects/unicodeobject.c /^PyUnicode_EncodeFSDefault(PyObject *unicode)$/;" f +PyUnicode_EncodeLocale Objects/unicodeobject.c /^PyUnicode_EncodeLocale(PyObject *unicode, const char *errors)$/;" f +PyUnicode_FSConverter Objects/unicodeobject.c /^PyUnicode_FSConverter(PyObject* arg, void* addr)$/;" f +PyUnicode_FSDecoder Objects/unicodeobject.c /^PyUnicode_FSDecoder(PyObject* arg, void* addr)$/;" f +PyUnicode_Fill Objects/unicodeobject.c /^PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length,$/;" f +PyUnicode_Find Objects/unicodeobject.c /^PyUnicode_Find(PyObject *str,$/;" f +PyUnicode_FindChar Objects/unicodeobject.c /^PyUnicode_FindChar(PyObject *str, Py_UCS4 ch,$/;" f +PyUnicode_Format Objects/unicodeobject.c /^PyUnicode_Format(PyObject *format, PyObject *args)$/;" f +PyUnicode_FromEncodedObject Objects/unicodeobject.c /^PyUnicode_FromEncodedObject(PyObject *obj,$/;" f +PyUnicode_FromFormat Lib/test/test_capi/test_unicode.py /^ def PyUnicode_FromFormat(format, *args):$/;" f function:CAPITest.test_from_format +PyUnicode_FromFormat Objects/unicodeobject.c /^PyUnicode_FromFormat(const char *format, ...)$/;" f +PyUnicode_FromFormatV Objects/unicodeobject.c /^PyUnicode_FromFormatV(const char *format, va_list vargs)$/;" f +PyUnicode_FromKindAndData Objects/unicodeobject.c /^PyUnicode_FromKindAndData(int kind, const void *buffer, Py_ssize_t size)$/;" f +PyUnicode_FromObject Objects/unicodeobject.c /^PyUnicode_FromObject(PyObject *obj)$/;" f +PyUnicode_FromOrdinal Objects/unicodeobject.c /^PyUnicode_FromOrdinal(int ordinal)$/;" f +PyUnicode_FromString Objects/unicodeobject.c /^PyUnicode_FromString(const char *u)$/;" f +PyUnicode_FromStringAndSize Objects/unicodeobject.c /^PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size)$/;" f +PyUnicode_FromWideChar Objects/unicodeobject.c /^PyUnicode_FromWideChar(const wchar_t *u, Py_ssize_t size)$/;" f +PyUnicode_GET_LENGTH Include/cpython/unicodeobject.h /^static inline Py_ssize_t PyUnicode_GET_LENGTH(PyObject *op) {$/;" f +PyUnicode_GET_LENGTH Include/cpython/unicodeobject.h 282;" d +PyUnicode_GetDefaultEncoding Objects/unicodeobject.c /^PyUnicode_GetDefaultEncoding(void)$/;" f +PyUnicode_GetLength Objects/unicodeobject.c /^PyUnicode_GetLength(PyObject *unicode)$/;" f +PyUnicode_IS_ASCII Include/cpython/unicodeobject.h /^static inline unsigned int PyUnicode_IS_ASCII(PyObject *op) {$/;" f +PyUnicode_IS_ASCII Include/cpython/unicodeobject.h 214;" d +PyUnicode_IS_COMPACT Include/cpython/unicodeobject.h /^static inline unsigned int PyUnicode_IS_COMPACT(PyObject *op) {$/;" f +PyUnicode_IS_COMPACT Include/cpython/unicodeobject.h 221;" d +PyUnicode_IS_COMPACT_ASCII Include/cpython/unicodeobject.h /^static inline int PyUnicode_IS_COMPACT_ASCII(PyObject *op) {$/;" f +PyUnicode_IS_COMPACT_ASCII Include/cpython/unicodeobject.h 228;" d +PyUnicode_IS_READY Include/cpython/unicodeobject.h 206;" d +PyUnicode_InternFromString Objects/unicodeobject.c /^PyUnicode_InternFromString(const char *cp)$/;" f +PyUnicode_InternImmortal Objects/unicodeobject.c /^PyUnicode_InternImmortal(PyObject **p)$/;" f +PyUnicode_InternInPlace Objects/unicodeobject.c /^PyUnicode_InternInPlace(PyObject **p)$/;" f +PyUnicode_IsIdentifier Objects/unicodeobject.c /^PyUnicode_IsIdentifier(PyObject *self)$/;" f +PyUnicode_Join Objects/unicodeobject.c /^PyUnicode_Join(PyObject *separator, PyObject *seq)$/;" f +PyUnicode_KIND Include/cpython/unicodeobject.h 243;" d +PyUnicode_Kind Include/cpython/unicodeobject.h /^enum PyUnicode_Kind {$/;" g +PyUnicode_MAX_CHAR_VALUE Include/cpython/unicodeobject.h /^static inline Py_UCS4 PyUnicode_MAX_CHAR_VALUE(PyObject *op)$/;" f +PyUnicode_MAX_CHAR_VALUE Include/cpython/unicodeobject.h 377;" d +PyUnicode_New Objects/unicodeobject.c /^PyUnicode_New(Py_ssize_t size, Py_UCS4 maxchar)$/;" f +PyUnicode_Partition Objects/unicodeobject.c /^PyUnicode_Partition(PyObject *str_obj, PyObject *sep_obj)$/;" f +PyUnicode_READ Include/cpython/unicodeobject.h /^static inline Py_UCS4 PyUnicode_READ(int kind,$/;" f +PyUnicode_READ Include/cpython/unicodeobject.h 326;" d +PyUnicode_READY Include/cpython/unicodeobject.h 397;" d +PyUnicode_READ_CHAR Include/cpython/unicodeobject.h /^static inline Py_UCS4 PyUnicode_READ_CHAR(PyObject *unicode, Py_ssize_t index)$/;" f +PyUnicode_READ_CHAR Include/cpython/unicodeobject.h 353;" d +PyUnicode_RPartition Objects/unicodeobject.c /^PyUnicode_RPartition(PyObject *str_obj, PyObject *sep_obj)$/;" f +PyUnicode_RSplit Objects/unicodeobject.c /^PyUnicode_RSplit(PyObject *s, PyObject *sep, Py_ssize_t maxsplit)$/;" f +PyUnicode_ReadChar Objects/unicodeobject.c /^PyUnicode_ReadChar(PyObject *unicode, Py_ssize_t index)$/;" f +PyUnicode_Replace Objects/unicodeobject.c /^PyUnicode_Replace(PyObject *str,$/;" f +PyUnicode_Resize Objects/unicodeobject.c /^PyUnicode_Resize(PyObject **p_unicode, Py_ssize_t length)$/;" f +PyUnicode_RichCompare Objects/unicodeobject.c /^PyUnicode_RichCompare(PyObject *left, PyObject *right, int op)$/;" f +PyUnicode_Split Objects/unicodeobject.c /^PyUnicode_Split(PyObject *s, PyObject *sep, Py_ssize_t maxsplit)$/;" f +PyUnicode_Splitlines Objects/unicodeobject.c /^PyUnicode_Splitlines(PyObject *string, int keepends)$/;" f +PyUnicode_Substring Objects/unicodeobject.c /^PyUnicode_Substring(PyObject *self, Py_ssize_t start, Py_ssize_t end)$/;" f +PyUnicode_Tailmatch Objects/unicodeobject.c /^PyUnicode_Tailmatch(PyObject *str,$/;" f +PyUnicode_Translate Objects/unicodeobject.c /^PyUnicode_Translate(PyObject *str,$/;" f +PyUnicode_Type Objects/unicodeobject.c /^PyTypeObject PyUnicode_Type = {$/;" v +PyUnicode_UTF8 Objects/unicodeobject.c 118;" d file: +PyUnicode_UTF8_LENGTH Objects/unicodeobject.c 125;" d file: +PyUnicode_WRITE Include/cpython/unicodeobject.h /^static inline void PyUnicode_WRITE(int kind, void *data,$/;" f +PyUnicode_WRITE Include/cpython/unicodeobject.h 307;" d +PyUnicode_WriteChar Objects/unicodeobject.c /^PyUnicode_WriteChar(PyObject *unicode, Py_ssize_t index, Py_UCS4 ch)$/;" f +PyUnknownEncodingHandler Modules/pyexpat.c /^PyUnknownEncodingHandler(void *encodingHandlerData,$/;" f file: +PyUnpicklerTests Lib/test/test_pickle.py /^class PyUnpicklerTests(AbstractUnpickleTests, unittest.TestCase):$/;" c +PyUnstable_Code_GetExtra Objects/codeobject.c /^PyUnstable_Code_GetExtra(PyObject *code, Py_ssize_t index, void **extra)$/;" f +PyUnstable_Code_New Objects/codeobject.c /^PyUnstable_Code_New(int argcount, int kwonlyargcount,$/;" f +PyUnstable_Code_NewWithPosOnlyArgs Objects/codeobject.c /^PyUnstable_Code_NewWithPosOnlyArgs($/;" f +PyUnstable_Code_SetExtra Objects/codeobject.c /^PyUnstable_Code_SetExtra(PyObject *code, Py_ssize_t index, void *extra)$/;" f +PyUnstable_Eval_RequestCodeExtraIndex Python/ceval.c /^PyUnstable_Eval_RequestCodeExtraIndex(freefunc free)$/;" f +PyUnstable_Exc_PrepReraiseStar Objects/exceptions.c /^PyUnstable_Exc_PrepReraiseStar(PyObject *orig, PyObject *excs)$/;" f +PyUnstable_GC_VisitObjects Modules/gcmodule.c /^PyUnstable_GC_VisitObjects(gcvisitobjects_t callback, void *arg)$/;" f +PyUnstable_InterpreterFrame_GetCode Python/frame.c /^PyUnstable_InterpreterFrame_GetCode(struct _PyInterpreterFrame *frame)$/;" f +PyUnstable_InterpreterFrame_GetLasti Python/frame.c /^PyUnstable_InterpreterFrame_GetLasti(struct _PyInterpreterFrame *frame)$/;" f +PyUnstable_InterpreterFrame_GetLine Python/frame.c /^PyUnstable_InterpreterFrame_GetLine(_PyInterpreterFrame *frame)$/;" f +PyUnstable_Long_CompactValue Include/cpython/longintrepr.h 125;" d +PyUnstable_Long_CompactValue Objects/longobject.c /^PyUnstable_Long_CompactValue(const PyLongObject* op) {$/;" f +PyUnstable_Long_CompactValue Objects/longobject.c 6380;" d file: +PyUnstable_Long_IsCompact Include/cpython/longintrepr.h 114;" d +PyUnstable_Long_IsCompact Objects/longobject.c /^PyUnstable_Long_IsCompact(const PyLongObject* op) {$/;" f +PyUnstable_Long_IsCompact Objects/longobject.c 6373;" d file: +PyUnstable_Object_GC_NewWithExtraData Modules/gcmodule.c /^PyUnstable_Object_GC_NewWithExtraData(PyTypeObject *tp, size_t extra_size)$/;" f +PyUnstable_PerfMapState_Fini Python/sysmodule.c /^PyAPI_FUNC(void) PyUnstable_PerfMapState_Fini(void) {$/;" f +PyUnstable_PerfMapState_Init Python/sysmodule.c /^PyAPI_FUNC(int) PyUnstable_PerfMapState_Init(void) {$/;" f +PyUnstable_Type_AssignVersionTag Objects/typeobject.c /^int PyUnstable_Type_AssignVersionTag(PyTypeObject *type)$/;" f +PyUnstable_WritePerfMapEntry Python/sysmodule.c /^PyAPI_FUNC(int) PyUnstable_WritePerfMapEntry($/;" f +PyUp Tools/gdb/libpython.py /^class PyUp(gdb.Command):$/;" c +PyUsabilityTest Lib/test/test_decimal.py /^class PyUsabilityTest(UsabilityTest, unittest.TestCase):$/;" c +PyVarObject Include/object.h /^} PyVarObject;$/;" t typeref:struct:__anon251 +PyVarObjectPtr Tools/gdb/libpython.py /^class PyVarObjectPtr(PyObjectPtr):$/;" c +PyVarObject_HEAD_INIT Include/object.h 146;" d +PyVectorcall_Call Objects/call.c /^PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *kwargs)$/;" f +PyVectorcall_Function Objects/call.c /^PyVectorcall_Function(PyObject *callable)$/;" f +PyVectorcall_NARGS Include/cpython/abstract.h 56;" d +PyVectorcall_NARGS Objects/call.c /^PyVectorcall_NARGS(size_t n)$/;" f +PyVectorcall_NARGS Objects/call.c 1078;" d file: +PyWCmdLineTests Lib/test/test_warnings/__init__.py /^class PyWCmdLineTests(WCmdLineTests, unittest.TestCase):$/;" c +PyWarnTests Lib/test/test_warnings/__init__.py /^class PyWarnTests(WarnTests, unittest.TestCase):$/;" c +PyWarningsDisplayTests Lib/test/test_warnings/__init__.py /^class PyWarningsDisplayTests(WarningsDisplayTests, unittest.TestCase):$/;" c +PyWeakReference Include/weakrefobject.h /^typedef struct _PyWeakReference PyWeakReference;$/;" t typeref:struct:_PyWeakReference +PyWeakref_Check Include/weakrefobject.h 22;" d +PyWeakref_CheckProxy Include/weakrefobject.h 18;" d +PyWeakref_CheckRef Include/weakrefobject.h 15;" d +PyWeakref_CheckRefExact Include/weakrefobject.h 16;" d +PyWeakref_GET_OBJECT Include/cpython/weakrefobject.h /^static inline PyObject* PyWeakref_GET_OBJECT(PyObject *ref_obj) {$/;" f +PyWeakref_GET_OBJECT Include/cpython/weakrefobject.h 56;" d +PyWeakref_GetObject Objects/weakrefobject.c /^PyWeakref_GetObject(PyObject *ref)$/;" f +PyWeakref_NewProxy Objects/weakrefobject.c /^PyWeakref_NewProxy(PyObject *ob, PyObject *callback)$/;" f +PyWeakref_NewRef Objects/weakrefobject.c /^PyWeakref_NewRef(PyObject *ob, PyObject *callback)$/;" f +PyWhitebox Lib/test/test_decimal.py /^class PyWhitebox(unittest.TestCase):$/;" c +PyWideStringList Include/cpython/initconfig.h /^} PyWideStringList;$/;" t typeref:struct:__anon200 +PyWideStringList_Append Python/initconfig.c /^PyWideStringList_Append(PyWideStringList *list, const wchar_t *item)$/;" f +PyWideStringList_Insert Python/initconfig.c /^PyWideStringList_Insert(PyWideStringList *list,$/;" f +PyWinFreeze_ExeInit PC/frozen_dllmain.c /^void PyWinFreeze_ExeInit(void)$/;" f +PyWinFreeze_ExeTerm PC/frozen_dllmain.c /^void PyWinFreeze_ExeTerm(void)$/;" f +PyWinObject_CloseHKEY PC/winreg.c /^PyWinObject_CloseHKEY(winreg_state *st, PyObject *obHandle)$/;" f +PyWin_DLLVersionString PC/dl_nt.c /^const char *PyWin_DLLVersionString = MS_DLL_ID;$/;" v +PyWin_DLLhModule PC/config_minimal.c /^void *PyWin_DLLhModule = NULL;$/;" v +PyWin_DLLhModule PC/dl_nt.c /^HMODULE PyWin_DLLhModule = NULL;$/;" v +PyWindowsConsoleIO_Type Modules/_io/_iomodule.h /^ PyTypeObject *PyWindowsConsoleIO_Type;$/;" m struct:_io_state +PyWindowsErrorObject Include/cpython/pyerrors.h /^typedef PyOSErrorObject PyWindowsErrorObject;$/;" t +PyWrapperDescrObject Include/cpython/descrobject.h /^} PyWrapperDescrObject;$/;" t typeref:struct:__anon218 +PyWrapperDescr_Type Objects/descrobject.c /^PyTypeObject PyWrapperDescr_Type = {$/;" v +PyWrapperFlag_KEYWORDS Include/cpython/descrobject.h 22;" d +PyWrapper_New Objects/descrobject.c /^PyWrapper_New(PyObject *d, PyObject *self)$/;" f +PyZipFile Lib/zipfile/__init__.py /^class PyZipFile(ZipFile):$/;" c +PyZipFileTests Lib/test/test_zipfile/test_core.py /^class PyZipFileTests(unittest.TestCase):$/;" c +PyZip_Type Python/bltinmodule.c /^PyTypeObject PyZip_Type = {$/;" v +PyZlib_Free Modules/zlibmodule.c /^PyZlib_Free(voidpf ctx, void *ptr)$/;" f file: +PyZlib_Malloc Modules/zlibmodule.c /^PyZlib_Malloc(voidpf ctx, uInt items, uInt size)$/;" f file: +PyZoneInfo_ZoneInfo Modules/_zoneinfo.c /^} PyZoneInfo_ZoneInfo;$/;" t typeref:struct:__anon638 file: +Py_ABS Include/pymacro.h 33;" d +Py_ABSTRACTOBJECT_H Include/abstract.h 4;" d +Py_ALIGNED Include/pyport.h 607;" d +Py_ALIGNED Include/pyport.h 609;" d +Py_ALWAYS_INLINE Include/pyport.h 399;" d +Py_ALWAYS_INLINE Include/pyport.h 401;" d +Py_ALWAYS_INLINE Include/pyport.h 403;" d +Py_ALWAYS_INLINE Include/pyport.h 405;" d +Py_ARITHMETIC_RIGHT_SHIFT Include/pyport.h 279;" d +Py_ARITHMETIC_RIGHT_SHIFT Include/pyport.h 282;" d +Py_ARRAY_LENGTH Include/pymacro.h 81;" d +Py_ARRAY_LENGTH Include/pymacro.h 86;" d +Py_ATOMIC_FUNC_H Include/internal/pycore_atomic_funcs.h 13;" d +Py_ATOMIC_H Include/internal/pycore_atomic.h 2;" d +Py_AUDIT_READ Include/descrobject.h 84;" d +Py_AcceptEx Modules/overlapped.c /^static LPFN_ACCEPTEX Py_AcceptEx = NULL;$/;" v file: +Py_AddPendingCall Python/ceval_gil.c /^Py_AddPendingCall(int (*func)(void *), void *arg)$/;" f +Py_AtExit Python/pylifecycle.c /^int Py_AtExit(void (*func)(void))$/;" f +Py_AuditHookFunction Include/cpython/sysmodule.h /^typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *);$/;" t +Py_BEGIN_ALLOW_THREADS Include/ceval.h 142;" d +Py_BLAKE2MODULE_H Modules/_blake2/blake2module.h 2;" d +Py_BLOCK_THREADS Include/ceval.h 145;" d +Py_BLTINMODULE_H Include/bltinmodule.h 2;" d +Py_BOOLOBJECT_H Include/boolobject.h 4;" d +Py_BUFFER_H Include/pybuffer.h 4;" d +Py_BUILD_ASSERT Include/pymacro.h 64;" d +Py_BUILD_ASSERT_EXPR Include/pymacro.h 61;" d +Py_BUILD_CORE Include/pyport.h 49;" d +Py_BUILD_CORE Include/pyport.h 52;" d +Py_BUILD_CORE Modules/_testcapi/watchers.c 5;" d file: +Py_BUILD_CORE Modules/_typingmodule.c 4;" d file: +Py_BUILD_CORE PC/pyconfig.h 34;" d +Py_BUILD_CORE_BUILTIN Modules/_testcapimodule.c 15;" d file: +Py_BUILD_CORE_MODULE Modules/_abc.c 3;" d file: +Py_BUILD_CORE_MODULE Modules/_asynciomodule.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_blake2/blake2b_impl.c 17;" d file: +Py_BUILD_CORE_MODULE Modules/_blake2/blake2module.c 12;" d file: +Py_BUILD_CORE_MODULE Modules/_blake2/blake2s_impl.c 17;" d file: +Py_BUILD_CORE_MODULE Modules/_ctypes/_ctypes.c 102;" d file: +Py_BUILD_CORE_MODULE Modules/_ctypes/callbacks.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_ctypes/callproc.c 58;" d file: +Py_BUILD_CORE_MODULE Modules/_ctypes/cfield.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_ctypes/malloc_closure.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_ctypes/stgdict.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_cursesmodule.c 104;" d file: +Py_BUILD_CORE_MODULE Modules/_datetimemodule.c 11;" d file: +Py_BUILD_CORE_MODULE Modules/_decimal/_decimal.c 29;" d file: +Py_BUILD_CORE_MODULE Modules/_hashopenssl.c 22;" d file: +Py_BUILD_CORE_MODULE Modules/_heapqmodule.c 10;" d file: +Py_BUILD_CORE_MODULE Modules/_json.c 8;" d file: +Py_BUILD_CORE_MODULE Modules/_lsprof.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_pickle.c 8;" d file: +Py_BUILD_CORE_MODULE Modules/_posixsubprocess.c 3;" d file: +Py_BUILD_CORE_MODULE Modules/_queuemodule.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_randommodule.c 70;" d file: +Py_BUILD_CORE_MODULE Modules/_struct.c 7;" d file: +Py_BUILD_CORE_MODULE Modules/_testcapimodule.c 14;" d file: +Py_BUILD_CORE_MODULE Modules/_testclinic.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/_testinternalcapi.c 6;" d file: +Py_BUILD_CORE_MODULE Modules/_testmultiphase.c 5;" d file: +Py_BUILD_CORE_MODULE Modules/_testsinglephase.c 5;" d file: +Py_BUILD_CORE_MODULE Modules/_tkinter.c 26;" d file: +Py_BUILD_CORE_MODULE Modules/_zoneinfo.c 2;" d file: +Py_BUILD_CORE_MODULE Modules/arraymodule.c 7;" d file: +Py_BUILD_CORE_MODULE Modules/binascii.c 57;" d file: +Py_BUILD_CORE_MODULE Modules/cmathmodule.c 6;" d file: +Py_BUILD_CORE_MODULE Modules/mathmodule.c 56;" d file: +Py_BUILD_CORE_MODULE Modules/md5module.c 19;" d file: +Py_BUILD_CORE_MODULE Modules/mmapmodule.c 22;" d file: +Py_BUILD_CORE_MODULE Modules/ossaudiodev.c 21;" d file: +Py_BUILD_CORE_MODULE Modules/selectmodule.c 8;" d file: +Py_BUILD_CORE_MODULE Modules/sha1module.c 19;" d file: +Py_BUILD_CORE_MODULE Modules/sha2module.c 20;" d file: +Py_BUILD_CORE_MODULE Modules/sha3module.c 19;" d file: +Py_BUILD_CORE_MODULE Modules/socketmodule.c 89;" d file: +Py_BUILD_CORE_MODULE Modules/unicodedata.c 16;" d file: +Py_BUILD_CORE_MODULE PC/_testconsole.c 5;" d file: +Py_BUILD_CORE_MODULE Programs/_testembed.c 2;" d file: +Py_BYTEARRAYOBJECT_H Include/bytearrayobject.h 4;" d +Py_BYTESOBJECT_H Include/bytesobject.h 5;" d +Py_BYTES_CTYPE_H Include/internal/pycore_bytes_methods.h 3;" d +Py_BuildValue Include/modsupport.h 20;" d +Py_BuildValue Modules/_testcapimodule.c 4044;" d file: +Py_BuildValue Python/modsupport.c /^Py_BuildValue(const char *format, ...)$/;" f +Py_BytesMain Modules/main.c /^Py_BytesMain(int argc, char **argv)$/;" f +Py_BytesWarningFlag Python/initconfig.c /^int Py_BytesWarningFlag = 0; \/* Warn on str(bytes) and str(buffer) *\/$/;" v +Py_CAPSULE_H Include/pycapsule.h 16;" d +Py_CELLOBJECT_H Include/cpython/cellobject.h 5;" d +Py_CEVAL_H Include/ceval.h 4;" d +Py_CHARMASK Include/pymacro.h 47;" d +Py_CLASSOBJECT_H Include/cpython/classobject.h 7;" d +Py_CLEANUP_SUPPORTED Include/modsupport.h 71;" d +Py_CLEAR Include/object.h 762;" d +Py_CLEAR Include/object.h 772;" d +Py_CODECREGISTRY_H Include/codecs.h 2;" d +Py_CODE_H Include/cpython/code.h 5;" d +Py_COMPILE_H Include/compile.h 2;" d +Py_COMPLEXOBJECT_H Include/complexobject.h 4;" d +Py_CONFIG_H PC/pyconfig.h 2;" d +Py_CONTEXT_H Include/cpython/context.h 3;" d +Py_CPYTHON_ABSTRACTOBJECT_H Include/abstract.h 891;" d +Py_CPYTHON_ABSTRACTOBJECT_H Include/abstract.h 893;" d +Py_CPYTHON_BYTEARRAYOBJECT_H Include/bytearrayobject.h 36;" d +Py_CPYTHON_BYTEARRAYOBJECT_H Include/bytearrayobject.h 38;" d +Py_CPYTHON_BYTESOBJECT_H Include/bytesobject.h 61;" d +Py_CPYTHON_BYTESOBJECT_H Include/bytesobject.h 63;" d +Py_CPYTHON_CEVAL_H Include/ceval.h 160;" d +Py_CPYTHON_CEVAL_H Include/ceval.h 162;" d +Py_CPYTHON_COMPILE_H Include/compile.h 17;" d +Py_CPYTHON_COMPILE_H Include/compile.h 19;" d +Py_CPYTHON_COMPLEXOBJECT_H Include/complexobject.h 22;" d +Py_CPYTHON_COMPLEXOBJECT_H Include/complexobject.h 24;" d +Py_CPYTHON_DESCROBJECT_H Include/descrobject.h 92;" d +Py_CPYTHON_DESCROBJECT_H Include/descrobject.h 94;" d +Py_CPYTHON_DICTOBJECT_H Include/dictobject.h 89;" d +Py_CPYTHON_DICTOBJECT_H Include/dictobject.h 91;" d +Py_CPYTHON_ERRORS_H Include/pyerrors.h 329;" d +Py_CPYTHON_ERRORS_H Include/pyerrors.h 331;" d +Py_CPYTHON_FILEOBJECT_H Include/fileobject.h 41;" d +Py_CPYTHON_FILEOBJECT_H Include/fileobject.h 43;" d +Py_CPYTHON_FILEUTILS_H Include/fileutils.h 18;" d +Py_CPYTHON_FILEUTILS_H Include/fileutils.h 20;" d +Py_CPYTHON_FLOATOBJECT_H Include/floatobject.h 46;" d +Py_CPYTHON_FLOATOBJECT_H Include/floatobject.h 48;" d +Py_CPYTHON_FRAMEOBJECT_H Include/frameobject.h 12;" d +Py_CPYTHON_FRAMEOBJECT_H Include/frameobject.h 14;" d +Py_CPYTHON_IMPORT_H Include/import.h 90;" d +Py_CPYTHON_IMPORT_H Include/import.h 92;" d +Py_CPYTHON_INTERPRETERIDOBJECT_H Include/interpreteridobject.h 11;" d +Py_CPYTHON_INTERPRETERIDOBJECT_H Include/interpreteridobject.h 9;" d +Py_CPYTHON_LISTOBJECT_H Include/listobject.h 44;" d +Py_CPYTHON_LISTOBJECT_H Include/listobject.h 46;" d +Py_CPYTHON_LONGOBJECT_H Include/longobject.h 83;" d +Py_CPYTHON_LONGOBJECT_H Include/longobject.h 85;" d +Py_CPYTHON_MEMORYOBJECT_H Include/memoryobject.h 26;" d +Py_CPYTHON_MEMORYOBJECT_H Include/memoryobject.h 28;" d +Py_CPYTHON_METHODOBJECT_H Include/methodobject.h 124;" d +Py_CPYTHON_METHODOBJECT_H Include/methodobject.h 126;" d +Py_CPYTHON_MODSUPPORT_H Include/modsupport.h 160;" d +Py_CPYTHON_MODSUPPORT_H Include/modsupport.h 162;" d +Py_CPYTHON_OBJECT_H Include/object.h 953;" d +Py_CPYTHON_OBJECT_H Include/object.h 955;" d +Py_CPYTHON_OBJIMPL_H Include/objimpl.h 226;" d +Py_CPYTHON_OBJIMPL_H Include/objimpl.h 228;" d +Py_CPYTHON_PTRHEAD_STUBS_H Include/cpython/pthread_stubs.h 2;" d +Py_CPYTHON_PYFRAME_H Include/pyframe.h 18;" d +Py_CPYTHON_PYFRAME_H Include/pyframe.h 20;" d +Py_CPYTHON_PYLIFECYCLE_H Include/pylifecycle.h 70;" d +Py_CPYTHON_PYLIFECYCLE_H Include/pylifecycle.h 72;" d +Py_CPYTHON_PYMEM_H Include/pymem.h 95;" d +Py_CPYTHON_PYMEM_H Include/pymem.h 97;" d +Py_CPYTHON_PYSTATE_H Include/pystate.h 124;" d +Py_CPYTHON_PYSTATE_H Include/pystate.h 126;" d +Py_CPYTHON_PYTHONRUN_H Include/pythonrun.h 41;" d +Py_CPYTHON_PYTHONRUN_H Include/pythonrun.h 43;" d +Py_CPYTHON_PYTHREAD_H Include/pythread.h 127;" d +Py_CPYTHON_PYTHREAD_H Include/pythread.h 129;" d +Py_CPYTHON_SETOBJECT_H Include/setobject.h 41;" d +Py_CPYTHON_SETOBJECT_H Include/setobject.h 43;" d +Py_CPYTHON_SYSMODULE_H Include/sysmodule.h 46;" d +Py_CPYTHON_SYSMODULE_H Include/sysmodule.h 48;" d +Py_CPYTHON_TRACEBACK_H Include/traceback.h 18;" d +Py_CPYTHON_TRACEBACK_H Include/traceback.h 20;" d +Py_CPYTHON_TUPLEOBJECT_H Include/tupleobject.h 38;" d +Py_CPYTHON_TUPLEOBJECT_H Include/tupleobject.h 40;" d +Py_CPYTHON_UNICODEOBJECT_H Include/unicodeobject.h 1012;" d +Py_CPYTHON_UNICODEOBJECT_H Include/unicodeobject.h 1014;" d +Py_CPYTHON_WARNINGS_H Include/warnings.h 36;" d +Py_CPYTHON_WARNINGS_H Include/warnings.h 38;" d +Py_CPYTHON_WEAKREFOBJECT_H Include/weakrefobject.h 34;" d +Py_CPYTHON_WEAKREFOBJECT_H Include/weakrefobject.h 36;" d +Py_CURSES_H Include/py_curses.h 3;" d +Py_CompileString Include/cpython/pythonrun.h 69;" d +Py_CompileString Python/pythonrun.c /^Py_CompileString(const char *str, const char *p, int s)$/;" f +Py_CompileString Python/pythonrun.c 1960;" d file: +Py_CompileStringExFlags Python/pythonrun.c /^Py_CompileStringExFlags(const char *str, const char *filename_str, int start,$/;" f +Py_CompileStringFlags Include/cpython/pythonrun.h 70;" d +Py_CompileStringFlags Python/pythonrun.c /^Py_CompileStringFlags(const char *str, const char *p, int s,$/;" f +Py_CompileStringFlags Python/pythonrun.c 1967;" d file: +Py_CompileStringObject Python/pythonrun.c /^Py_CompileStringObject(const char *str, PyObject *filename, int start,$/;" f +Py_ConnectEx Modules/overlapped.c /^static LPFN_CONNECTEX Py_ConnectEx = NULL;$/;" v file: +Py_DEBUG Lib/test/support/__init__.py /^Py_DEBUG = hasattr(sys, 'gettotalrefcount')$/;" v +Py_DEBUG PC/pyconfig.h 359;" d +Py_DECREF Include/object.h /^static inline Py_ALWAYS_INLINE void Py_DECREF(PyObject *op)$/;" f +Py_DECREF Include/object.h /^static inline void Py_DECREF(PyObject *op) {$/;" f +Py_DECREF Include/object.h /^static inline void Py_DECREF(const char *filename, int lineno, PyObject *op)$/;" f +Py_DECREF Include/object.h 677;" d +Py_DECREF Include/object.h 694;" d +Py_DECREF Include/object.h 709;" d +Py_DECREF Python/ceval.c 55;" d file: +Py_DECREF Python/ceval.c 56;" d file: +Py_DEFAULT_RECURSION_LIMIT Include/internal/pycore_ceval.h 16;" d +Py_DEPRECATED Include/pyport.h 317;" d +Py_DEPRECATED Include/pyport.h 319;" d +Py_DEPRECATED Include/pyport.h 322;" d +Py_DESCROBJECT_H Include/descrobject.h 3;" d +Py_DICTOBJECT_H Include/dictobject.h 2;" d +Py_DTRACE_H Include/pydtrace.h 4;" d +Py_DTSF_ADD_DOT_0 Include/pystrtod.h 32;" d +Py_DTSF_ALT Include/pystrtod.h 33;" d +Py_DTSF_NO_NEG_0 Include/pystrtod.h 35;" d +Py_DTSF_SIGN Include/pystrtod.h 31;" d +Py_DTST_FINITE Include/pystrtod.h 38;" d +Py_DTST_INFINITE Include/pystrtod.h 39;" d +Py_DTST_NAN Include/pystrtod.h 40;" d +Py_DebugFlag Python/initconfig.c /^int Py_DebugFlag = 0; \/* Needed by parser.c *\/$/;" v +Py_DecRef Objects/object.c /^Py_DecRef(PyObject *o)$/;" f +Py_DecodeLocale Misc/coverity_model.c /^wchar_t *Py_DecodeLocale(const char* arg, size_t *size)$/;" f +Py_DecodeLocale Python/fileutils.c /^Py_DecodeLocale(const char* arg, size_t *wlen)$/;" f +Py_DeleteFileW Modules/posixmodule.c /^BOOL WINAPI Py_DeleteFileW(LPCWSTR lpFileName)$/;" f +Py_DisconnectEx Modules/overlapped.c /^static LPFN_DISCONNECTEX Py_DisconnectEx = NULL;$/;" v file: +Py_DontWriteBytecodeFlag Python/initconfig.c /^int Py_DontWriteBytecodeFlag = 0; \/* Suppress writing bytecode files (*.pyc) *\/$/;" v +Py_EMPTY_KEYS Objects/dictobject.c 474;" d file: +Py_EMSCRIPTEN_SIGNAL_H Include/internal/pycore_emscripten_signal.h 2;" d +Py_EMSCRIPTEN_SIGNAL_HANDLING Python/emscripten_signal.c /^EMSCRIPTEN_KEEPALIVE int Py_EMSCRIPTEN_SIGNAL_HANDLING = 0;$/;" v +Py_ENABLE_SHARED PC/pyconfig.h 295;" d +Py_END_ALLOW_THREADS Include/ceval.h 147;" d +Py_ENUMOBJECT_H Include/enumobject.h 2;" d +Py_EQ Include/object.h 866;" d +Py_ERRCODE_H Include/errcode.h 2;" d +Py_ERRORS_H Include/pyerrors.h 2;" d +Py_EXPORTED_SYMBOL Include/exports.h 11;" d +Py_EXPORTED_SYMBOL Include/exports.h 27;" d +Py_EXPORTED_SYMBOL Include/exports.h 31;" d +Py_EXPORTED_SYMBOL Include/exports.h 7;" d +Py_EXPORTS_H Include/exports.h 2;" d +Py_Ellipsis Include/sliceobject.h 11;" d +Py_EncodeLocale Python/fileutils.c /^Py_EncodeLocale(const wchar_t *text, size_t *error_pos)$/;" f +Py_EndInterpreter Python/pylifecycle.c /^Py_EndInterpreter(PyThreadState *tstate)$/;" f +Py_EnterRecursiveCall Python/ceval.c /^int Py_EnterRecursiveCall(const char *where)$/;" f +Py_Exit Python/pylifecycle.c /^Py_Exit(int sts)$/;" f +Py_ExitStatusException Python/pylifecycle.c /^Py_ExitStatusException(PyStatus status)$/;" f +Py_FILEOBJECT_H Include/fileobject.h 4;" d +Py_FILEUTILS_H Include/fileutils.h 2;" d +Py_FLOATOBJECT_H Include/floatobject.h 9;" d +Py_FORCE_EXPANSION Include/pyport.h 290;" d +Py_FRAMEOBJECT_H Include/frameobject.h 4;" d +Py_FUNCOBJECT_H Include/cpython/funcobject.h 5;" d +Py_False Include/boolobject.h 21;" d +Py_FatalError Include/cpython/pyerrors.h 178;" d +Py_FatalError Misc/coverity_model.c /^void Py_FatalError(const char *msg) {$/;" f +Py_FatalError Python/pylifecycle.c /^Py_FatalError(const char *msg)$/;" f +Py_FatalError Python/pylifecycle.c 2894;" d file: +Py_FdIsInteractive Python/pylifecycle.c /^Py_FdIsInteractive(FILE *fp, const char *filename)$/;" f +Py_FileSystemDefaultEncodeErrors Python/preconfig.c /^const char *Py_FileSystemDefaultEncodeErrors = NULL;$/;" v +Py_FileSystemDefaultEncoding Python/preconfig.c /^const char *Py_FileSystemDefaultEncoding = NULL;$/;" v +Py_Finalize Python/pylifecycle.c /^Py_Finalize(void)$/;" f +Py_FinalizeEx Python/pylifecycle.c /^Py_FinalizeEx(void)$/;" f +Py_FrozenFlag Python/initconfig.c /^int Py_FrozenFlag = 0; \/* Needed by getpath.c *\/$/;" v +Py_FrozenMain Python/frozenmain.c /^Py_FrozenMain(int argc, char **argv)$/;" f +Py_GCC_ATTRIBUTE Include/pyport.h 598;" d +Py_GCC_ATTRIBUTE Include/pyport.h 600;" d +Py_GE Include/object.h 869;" d +Py_GENERICALIASOBJECT_H Include/genericaliasobject.h 3;" d +Py_GENOBJECT_H Include/cpython/genobject.h 5;" d +Py_GETENV Python/initconfig.c /^Py_GETENV(const char *name)$/;" f +Py_GT Include/object.h 868;" d +Py_GenericAlias Objects/genericaliasobject.c /^Py_GenericAlias(PyObject *origin, PyObject *args)$/;" f +Py_GenericAliasType Objects/genericaliasobject.c /^PyTypeObject Py_GenericAliasType = {$/;" v +Py_GetArgcArgv Python/initconfig.c /^Py_GetArgcArgv(int *argc, wchar_t ***argv)$/;" f +Py_GetBuildInfo Modules/getbuildinfo.c /^Py_GetBuildInfo(void)$/;" f +Py_GetCompiler Python/getcompiler.c /^Py_GetCompiler(void)$/;" f +Py_GetCopyright Python/getcopyright.c /^Py_GetCopyright(void)$/;" f +Py_GetExecPrefix Python/pathconfig.c /^Py_GetExecPrefix(void)$/;" f +Py_GetPath Python/pathconfig.c /^Py_GetPath(void)$/;" f +Py_GetPlatform Python/getplatform.c /^Py_GetPlatform(void)$/;" f +Py_GetPrefix Python/pathconfig.c /^Py_GetPrefix(void)$/;" f +Py_GetProgramFullPath Python/pathconfig.c /^Py_GetProgramFullPath(void)$/;" f +Py_GetProgramName Python/pathconfig.c /^Py_GetProgramName(void)$/;" f +Py_GetPythonHome Python/pathconfig.c /^Py_GetPythonHome(void)$/;" f +Py_GetRecursionLimit Python/ceval.c /^Py_GetRecursionLimit(void)$/;" f +Py_GetVersion Python/getversion.c /^Py_GetVersion(void)$/;" f +Py_HASH_ALGORITHM Include/pyhash.h 134;" d +Py_HASH_ALGORITHM Include/pyhash.h 136;" d +Py_HASH_CUTOFF Include/pyhash.h 109;" d +Py_HASH_EXTERNAL Include/pyhash.h 127;" d +Py_HASH_FNV Include/pyhash.h 129;" d +Py_HASH_H Include/pyhash.h 3;" d +Py_HASH_SIPHASH13 Include/pyhash.h 130;" d +Py_HASH_SIPHASH24 Include/pyhash.h 128;" d +Py_HASH_STATS_MAX Python/pyhash.c 30;" d file: +Py_HAVE_CONDVAR Include/internal/pycore_condvar.h 21;" d +Py_HAVE_CONDVAR Include/internal/pycore_condvar.h 37;" d +Py_HUGE_VAL Include/pymath.h 52;" d +Py_HasFileSystemDefaultEncoding Python/preconfig.c /^int Py_HasFileSystemDefaultEncoding = 0;$/;" v +Py_HashRandomizationFlag Python/initconfig.c /^int Py_HashRandomizationFlag = 0; \/* for -R and PYTHONHASHSEED *\/$/;" v +Py_IMPORTDL_H Python/importdl.h 2;" d +Py_IMPORTED_SYMBOL Include/exports.h 10;" d +Py_IMPORTED_SYMBOL Include/exports.h 26;" d +Py_IMPORTED_SYMBOL Include/exports.h 30;" d +Py_IMPORTED_SYMBOL Include/exports.h 6;" d +Py_IMPORT_H Include/import.h 4;" d +Py_INCREF Include/object.h /^static inline Py_ALWAYS_INLINE void Py_INCREF(PyObject *op)$/;" f +Py_INCREF Include/object.h 662;" d +Py_INFINITY Include/pymath.h 44;" d +Py_INTERNAL_ABSTRACT_H Include/internal/pycore_abstract.h 2;" d +Py_INTERNAL_ASDL_H Include/internal/pycore_asdl.h 2;" d +Py_INTERNAL_AST_H Include/internal/pycore_ast.h 4;" d +Py_INTERNAL_AST_STATE_H Include/internal/pycore_ast_state.h 4;" d +Py_INTERNAL_ATEXIT_H Include/internal/pycore_atexit.h 2;" d +Py_INTERNAL_BITUTILS_H Include/internal/pycore_bitutils.h 11;" d +Py_INTERNAL_BLOCKS_OUTPUT_BUFFER_H Include/internal/pycore_blocks_output_buffer.h 36;" d +Py_INTERNAL_BYTESOBJECT_H Include/internal/pycore_bytesobject.h 2;" d +Py_INTERNAL_CALL_H Include/internal/pycore_call.h 2;" d +Py_INTERNAL_CEVAL_H Include/internal/pycore_ceval.h 2;" d +Py_INTERNAL_CEVAL_STATE_H Include/internal/pycore_ceval_state.h 2;" d +Py_INTERNAL_CFG_H Include/internal/pycore_flowgraph.h 2;" d +Py_INTERNAL_CODE_H Include/internal/pycore_code.h 2;" d +Py_INTERNAL_COMPILE_H Include/internal/pycore_compile.h 2;" d +Py_INTERNAL_CONDVAR_H Include/internal/pycore_condvar.h 2;" d +Py_INTERNAL_CONTEXT_H Include/internal/pycore_context.h 2;" d +Py_INTERNAL_CORECONFIG_H Include/internal/pycore_initconfig.h 2;" d +Py_INTERNAL_DESCROBJECT_H Include/internal/pycore_descrobject.h 2;" d +Py_INTERNAL_DICT_H Include/internal/pycore_dict.h 3;" d +Py_INTERNAL_DICT_STATE_H Include/internal/pycore_dict_state.h 2;" d +Py_INTERNAL_DTOA_H Include/internal/pycore_dtoa.h 2;" d +Py_INTERNAL_EXCEPTIONS_H Include/internal/pycore_exceptions.h 2;" d +Py_INTERNAL_FAULTHANDLER_H Include/internal/pycore_faulthandler.h 2;" d +Py_INTERNAL_FILEUTILS_H Include/internal/pycore_fileutils.h 2;" d +Py_INTERNAL_FILEUTILS_WINDOWS_H Include/internal/pycore_fileutils_windows.h 2;" d +Py_INTERNAL_FLOATOBJECT_H Include/internal/pycore_floatobject.h 2;" d +Py_INTERNAL_FORMAT_H Include/internal/pycore_format.h 2;" d +Py_INTERNAL_FRAME_H Include/internal/pycore_frame.h 2;" d +Py_INTERNAL_FUNCTION_H Include/internal/pycore_function.h 2;" d +Py_INTERNAL_GC_H Include/internal/pycore_gc.h 2;" d +Py_INTERNAL_GENOBJECT_H Include/internal/pycore_genobject.h 2;" d +Py_INTERNAL_GIL_H Include/internal/pycore_gil.h 2;" d +Py_INTERNAL_GLOBAL_OBJECTS_FINI_GENERATED_INIT_H Include/internal/pycore_global_objects_fini_generated.h 2;" d +Py_INTERNAL_GLOBAL_OBJECTS_H Include/internal/pycore_global_objects.h 2;" d +Py_INTERNAL_GLOBAL_STRINGS_H Include/internal/pycore_global_strings.h 2;" d +Py_INTERNAL_HAMT_H Include/internal/pycore_hamt.h 2;" d +Py_INTERNAL_HASHTABLE_H Include/internal/pycore_hashtable.h 2;" d +Py_INTERNAL_HASH_H Include/internal/pycore_pyhash.h 2;" d +Py_INTERNAL_IMPORT_H Include/internal/pycore_import.h 3;" d +Py_INTERNAL_INSTRUMENT_H Include/internal/pycore_instruments.h 3;" d +Py_INTERNAL_INTERP_H Include/internal/pycore_interp.h 2;" d +Py_INTERNAL_LIFECYCLE_H Include/internal/pycore_pylifecycle.h 2;" d +Py_INTERNAL_LIST_H Include/internal/pycore_list.h 2;" d +Py_INTERNAL_LONG_H Include/internal/pycore_long.h 2;" d +Py_INTERNAL_MEMORYOBJECT_H Include/internal/pycore_memoryobject.h 2;" d +Py_INTERNAL_MODULEOBJECT_H Include/internal/pycore_moduleobject.h 2;" d +Py_INTERNAL_NAMESPACE_H Include/internal/pycore_namespace.h 4;" d +Py_INTERNAL_OBJECT_H Include/internal/pycore_object.h 2;" d +Py_INTERNAL_OBJECT_STATE_H Include/internal/pycore_object_state.h 2;" d +Py_INTERNAL_OBMALLOC_H Include/internal/pycore_obmalloc.h 2;" d +Py_INTERNAL_OBMALLOC_INIT_H Include/internal/pycore_obmalloc_init.h 2;" d +Py_INTERNAL_OPCODE_H Include/internal/pycore_opcode.h 4;" d +Py_INTERNAL_OPCODE_UTILS_H Include/internal/pycore_opcode_utils.h 2;" d +Py_INTERNAL_PARSER_H Include/internal/pycore_parser.h 2;" d +Py_INTERNAL_PATHCONFIG_H Include/internal/pycore_pathconfig.h 2;" d +Py_INTERNAL_PYARENA_H Include/internal/pycore_pyarena.h 5;" d +Py_INTERNAL_PYERRORS_H Include/internal/pycore_pyerrors.h 2;" d +Py_INTERNAL_PYGETOPT_H Include/internal/pycore_getopt.h 2;" d +Py_INTERNAL_PYMATH_H Include/internal/pycore_pymath.h 2;" d +Py_INTERNAL_PYMEM_H Include/internal/pycore_pymem.h 2;" d +Py_INTERNAL_PYMEM_INIT_H Include/internal/pycore_pymem_init.h 2;" d +Py_INTERNAL_PYSTATE_H Include/internal/pycore_pystate.h 2;" d +Py_INTERNAL_PYTHREAD_H Include/internal/pycore_pythread.h 2;" d +Py_INTERNAL_RANGE_H Include/internal/pycore_range.h 2;" d +Py_INTERNAL_RUNTIME_H Include/internal/pycore_runtime.h 2;" d +Py_INTERNAL_RUNTIME_INIT_GENERATED_H Include/internal/pycore_runtime_init_generated.h 2;" d +Py_INTERNAL_RUNTIME_INIT_H Include/internal/pycore_runtime_init.h 2;" d +Py_INTERNAL_SIGNAL_H Include/internal/pycore_signal.h 4;" d +Py_INTERNAL_SLICEOBJECT_H Include/internal/pycore_sliceobject.h 2;" d +Py_INTERNAL_STRHEX_H Include/internal/pycore_strhex.h 2;" d +Py_INTERNAL_STRUCTSEQ_H Include/internal/pycore_structseq.h 2;" d +Py_INTERNAL_SYMTABLE_H Include/internal/pycore_symtable.h 2;" d +Py_INTERNAL_SYSMODULE_H Include/internal/pycore_sysmodule.h 2;" d +Py_INTERNAL_TIME_H Include/internal/pycore_time.h 2;" d +Py_INTERNAL_TOKEN_H Include/internal/pycore_token.h 5;" d +Py_INTERNAL_TRACEBACK_H Include/internal/pycore_traceback.h 2;" d +Py_INTERNAL_TRACEMALLOC_H Include/internal/pycore_tracemalloc.h 2;" d +Py_INTERNAL_TUPLE_H Include/internal/pycore_tuple.h 2;" d +Py_INTERNAL_TYPEOBJECT_H Include/internal/pycore_typeobject.h 2;" d +Py_INTERNAL_TYPEVAROBJECT_H Include/internal/pycore_typevarobject.h 2;" d +Py_INTERNAL_UCNHASH_H Include/internal/pycore_ucnhash.h 3;" d +Py_INTERNAL_UNICODEOBJECT_GENERATED_H Include/internal/pycore_unicodeobject_generated.h 2;" d +Py_INTERNAL_UNICODEOBJECT_H Include/internal/pycore_unicodeobject.h 2;" d +Py_INTERNAL_UNIONOBJECT_H Include/internal/pycore_unionobject.h 2;" d +Py_INTERNAL_WARNINGS_H Include/internal/pycore_warnings.h 2;" d +Py_INTERPRETERIDOBJECT_H Include/interpreteridobject.h 2;" d +Py_INTRCHECK_H Include/intrcheck.h 2;" d +Py_INVALID_PERSIST PC/_msi.c 1166;" d file: +Py_INVALID_SIZE Include/object.h 159;" d +Py_ISALNUM Include/cpython/pyctype.h 26;" d +Py_ISALPHA Include/cpython/pyctype.h 23;" d +Py_ISDIGIT Include/cpython/pyctype.h 24;" d +Py_ISLOWER Include/cpython/pyctype.h 21;" d +Py_ISSPACE Include/cpython/pyctype.h 27;" d +Py_ISUPPER Include/cpython/pyctype.h 22;" d +Py_ISXDIGIT Include/cpython/pyctype.h 25;" d +Py_IS_FINITE Include/pymath.h 40;" d +Py_IS_INFINITY Include/pymath.h 36;" d +Py_IS_NAN Include/pymath.h 32;" d +Py_IS_TYPE Include/object.h /^static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {$/;" f +Py_IS_TYPE Include/object.h 254;" d +Py_IS_TYPE Python/ceval.c 78;" d file: +Py_IS_TYPE Python/ceval.c 79;" d file: +Py_ITEROBJECT_H Include/iterobject.h 2;" d +Py_IgnoreEnvironmentFlag Python/initconfig.c /^int Py_IgnoreEnvironmentFlag = 0; \/* e.g. PYTHONPATH, PYTHONHOME *\/$/;" v +Py_IncRef Objects/object.c /^Py_IncRef(PyObject *o)$/;" f +Py_Initialize Python/pylifecycle.c /^Py_Initialize(void)$/;" f +Py_InitializeEx Python/pylifecycle.c /^Py_InitializeEx(int install_sigs)$/;" f +Py_InitializeFromConfig Python/pylifecycle.c /^Py_InitializeFromConfig(const PyConfig *config)$/;" f +Py_InspectFlag Python/initconfig.c /^int Py_InspectFlag = 0; \/* Needed to determine whether to exit at SystemExit *\/$/;" v +Py_InteractiveFlag Python/initconfig.c /^int Py_InteractiveFlag = 0; \/* Previously, was used by Py_FdIsInteractive() *\/$/;" v +Py_Is Include/object.h 207;" d +Py_Is Modules/_testcapimodule.c 2465;" d file: +Py_Is Objects/object.c /^int Py_Is(PyObject *x, PyObject *y)$/;" f +Py_Is Objects/object.c 2675;" d file: +Py_IsFalse Include/boolobject.h 30;" d +Py_IsFalse Objects/object.c /^int Py_IsFalse(PyObject *x)$/;" f +Py_IsFalse Objects/object.c 2678;" d file: +Py_IsInitialized Python/pylifecycle.c /^Py_IsInitialized(void)$/;" f +Py_IsNone Include/object.h 848;" d +Py_IsNone Objects/object.c /^int Py_IsNone(PyObject *x)$/;" f +Py_IsNone Objects/object.c 2676;" d file: +Py_IsTrue Include/boolobject.h 26;" d +Py_IsTrue Objects/object.c /^int Py_IsTrue(PyObject *x)$/;" f +Py_IsTrue Objects/object.c 2677;" d file: +Py_IsolatedFlag Python/initconfig.c /^int Py_IsolatedFlag = 0; \/* for -I, isolate from user's env *\/$/;" v +Py_LE Include/object.h 865;" d +Py_LIMITED_API Modules/_testcapi/heaptype_relative.c 1;" d file: +Py_LIMITED_API Modules/_testcapi/vectorcall_limited.c 1;" d file: +Py_LIMITED_API Modules/xxlimited.c 65;" d file: +Py_LIMITED_API Modules/xxlimited_35.c 8;" d file: +Py_LISTOBJECT_H Include/listobject.h 15;" d +Py_LL Include/pyport.h 620;" d +Py_LL PC/pyconfig.h 383;" d +Py_LOCAL Include/pyport.h 180;" d +Py_LOCAL Include/pyport.h 183;" d +Py_LOCAL_INLINE Include/pyport.h 181;" d +Py_LOCAL_INLINE Include/pyport.h 184;" d +Py_LOCAL_INLINE Modules/_decimal/_decimal.c /^Py_LOCAL_INLINE(uint32_t)$/;" f +Py_LOCAL_INLINE Modules/_decimal/_decimal.c 55;" d file: +Py_LOCAL_INLINE Modules/_decimal/_decimal.c 56;" d file: +Py_LOCAL_INLINE Objects/bytes_methods.c /^Py_LOCAL_INLINE(Py_ssize_t)$/;" f +Py_LOCAL_INLINE Objects/bytesobject.c /^Py_LOCAL_INLINE(Py_ssize_t)$/;" f +Py_LOCAL_SYMBOL Include/exports.h 12;" d +Py_LOCAL_SYMBOL Include/exports.h 28;" d +Py_LOCAL_SYMBOL Include/exports.h 32;" d +Py_LOCAL_SYMBOL Include/exports.h 8;" d +Py_LONGINTREPR_H Include/cpython/longintrepr.h 3;" d +Py_LONGOBJECT_H Include/longobject.h 2;" d +Py_LT Include/object.h 864;" d +Py_LeaveRecursiveCall Python/ceval.c /^void Py_LeaveRecursiveCall(void)$/;" f +Py_LegacyWindowsFSEncodingFlag Python/initconfig.c /^int Py_LegacyWindowsFSEncodingFlag = 0; \/* Uses mbcs instead of utf-8 *\/$/;" v +Py_LegacyWindowsStdioFlag Python/initconfig.c /^int Py_LegacyWindowsStdioFlag = 0; \/* Uses FileIO instead of WindowsConsoleIO *\/$/;" v +Py_MARSHAL_H Include/marshal.h 5;" d +Py_MARSHAL_VERSION Include/marshal.h 16;" d +Py_MATH_E Include/pymath.h 22;" d +Py_MATH_El Include/pymath.h 18;" d +Py_MATH_PI Include/pymath.h 14;" d +Py_MATH_PIl Include/pymath.h 11;" d +Py_MATH_TAU Include/pymath.h 27;" d +Py_MAX Include/pymacro.h 30;" d +Py_MEMBER_SIZE Include/pymacro.h 44;" d +Py_MEMCPY Include/pyport.h 188;" d +Py_MEMORYOBJECT_H Include/memoryobject.h 4;" d +Py_METHODOBJECT_H Include/methodobject.h 5;" d +Py_MIN Include/pymacro.h 27;" d +Py_MODSUPPORT_H Include/modsupport.h 3;" d +Py_MODULEOBJECT_H Include/moduleobject.h 5;" d +Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED Include/moduleobject.h 88;" d +Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED Include/moduleobject.h 89;" d +Py_MOD_PER_INTERPRETER_GIL_SUPPORTED Include/moduleobject.h 90;" d +Py_Main Modules/main.c /^Py_Main(int argc, wchar_t **argv)$/;" f +Py_MakePendingCalls Python/ceval_gil.c /^Py_MakePendingCalls(void)$/;" f +Py_NAN Include/pymath.h 59;" d +Py_NE Include/object.h 867;" d +Py_NORMALIZE_RECURSION_LIMIT Python/errors.c 368;" d file: +Py_NOT_PERSIST PC/_msi.c 1162;" d file: +Py_NO_INLINE Include/pyport.h 417;" d +Py_NO_INLINE Include/pyport.h 419;" d +Py_NO_INLINE Include/pyport.h 421;" d +Py_NSIG Include/internal/pycore_signal.h 22;" d +Py_NSIG Include/internal/pycore_signal.h 24;" d +Py_NSIG Include/internal/pycore_signal.h 26;" d +Py_NSIG Include/internal/pycore_signal.h 28;" d +Py_NSIG Include/internal/pycore_signal.h 30;" d +Py_NSIG Include/internal/pycore_signal.h 32;" d +Py_NTDDI PC/pyconfig.h 166;" d +Py_NewInterpreter Python/pylifecycle.c /^Py_NewInterpreter(void)$/;" f +Py_NewInterpreterFromConfig Python/pylifecycle.c /^Py_NewInterpreterFromConfig(PyThreadState **tstate_p,$/;" f +Py_NewRef Include/object.h 829;" d +Py_NewRef Include/object.h 832;" d +Py_NewRef Modules/_testcapimodule.c 2414;" d file: +Py_NewRef Objects/object.c /^Py_NewRef(PyObject *obj)$/;" f +Py_NewRef Objects/object.c 2659;" d file: +Py_NoSiteFlag Python/initconfig.c /^int Py_NoSiteFlag = 0; \/* Suppress 'import site' *\/$/;" v +Py_NoUserSiteDirectory Python/initconfig.c /^int Py_NoUserSiteDirectory = 0; \/* for -s and site.py *\/$/;" v +Py_None Include/object.h 844;" d +Py_NotImplemented Include/object.h 858;" d +Py_OBJECT_H Include/object.h 2;" d +Py_OBJIMPL_H Include/objimpl.h 6;" d +Py_ODICTOBJECT_H Include/cpython/odictobject.h 2;" d +Py_OPCODE_H Include/opcode.h 4;" d +Py_OSDEFS_H Include/osdefs.h 2;" d +Py_OSMODULE_H Include/osmodule.h 5;" d +Py_OpenCodeHookFunction Include/cpython/fileobject.h /^typedef PyObject * (*Py_OpenCodeHookFunction)(PyObject *, void *);$/;" t +Py_OptimizeFlag Python/initconfig.c /^int Py_OptimizeFlag = 0; \/* Needed by compile.c *\/$/;" v +Py_OutDir Tools/msi/buildrelease.bat /^if NOT DEFINED Py_OutDir set Py_OutDir=%PCBUILD%$/;" v +Py_OutDir Tools/nuget/build.bat /^if "%Py_OutDir%"=="" set Py_OutDir=%PCBUILD%$/;" v +Py_PICKLEBUFOBJECT_H Include/cpython/picklebufobject.h 6;" d +Py_POSIXMODULE_H Modules/posixmodule.h 4;" d +Py_PRINT_RAW Include/object.h 445;" d +Py_PYCORECONFIG_H Include/cpython/initconfig.h 2;" d +Py_PYDEBUG_H Include/cpython/pydebug.h 3;" d +Py_PYFPE_H Include/cpython/pyfpe.h 2;" d +Py_PYFRAME_H Include/pyframe.h 7;" d +Py_PYLIFECYCLE_H Include/pylifecycle.h 5;" d +Py_PYMACRO_H Include/pymacro.h 2;" d +Py_PYMATH_H Include/pymath.h 5;" d +Py_PYMEM_H Include/pymem.h 6;" d +Py_PYPORT_H Include/pyport.h 2;" d +Py_PYSTATE_H Include/pystate.h 5;" d +Py_PYSTATS_H Include/pystats.h 4;" d +Py_PYTHONRUN_H Include/pythonrun.h 5;" d +Py_PYTHON_H Include/Python.h 6;" d +Py_PYTHREAD_H Include/pythread.h 2;" d +Py_PYTIME_H Include/cpython/pytime.h 46;" d +Py_PYTYPEDEFS_H Include/pytypedefs.h 7;" d +Py_PreInitialize Python/pylifecycle.c /^Py_PreInitialize(const PyPreConfig *src_config)$/;" f +Py_PreInitializeFromArgs Python/pylifecycle.c /^Py_PreInitializeFromArgs(const PyPreConfig *src_config, Py_ssize_t argc, wchar_t **argv)$/;" f +Py_PreInitializeFromBytesArgs Python/pylifecycle.c /^Py_PreInitializeFromBytesArgs(const PyPreConfig *src_config, Py_ssize_t argc, char **argv)$/;" f +Py_QuietFlag Python/initconfig.c /^int Py_QuietFlag = 0; \/* Needed by sysmodule.c *\/$/;" v +Py_RANGEOBJECT_H Include/rangeobject.h 5;" d +Py_READONLY Include/descrobject.h 83;" d +Py_REFCNT Include/object.h /^static inline Py_ssize_t Py_REFCNT(PyObject *ob) {$/;" f +Py_REFCNT Include/object.h 214;" d +Py_REF_DEBUG Include/object.h 58;" d +Py_RELATIVE_OFFSET Include/descrobject.h 86;" d +Py_RETURN_FALSE Include/boolobject.h 34;" d +Py_RETURN_INF Include/floatobject.h 21;" d +Py_RETURN_NAN Include/floatobject.h 19;" d +Py_RETURN_NONE Include/object.h 851;" d +Py_RETURN_NOTIMPLEMENTED Include/object.h 861;" d +Py_RETURN_RICHCOMPARE Include/object.h 885;" d +Py_RETURN_TRUE Include/boolobject.h 33;" d +Py_RTFLAGS_DAEMON_THREADS Include/cpython/pystate.h 25;" d +Py_RTFLAGS_EXEC Include/cpython/pystate.h 31;" d +Py_RTFLAGS_FORK Include/cpython/pystate.h 28;" d +Py_RTFLAGS_MULTI_INTERP_EXTENSIONS Include/cpython/pystate.h 19;" d +Py_RTFLAGS_THREADS Include/cpython/pystate.h 22;" d +Py_RTFLAGS_USE_MAIN_OBMALLOC Include/cpython/pystate.h 16;" d +Py_ReprEnter Objects/object.c /^Py_ReprEnter(PyObject *obj)$/;" f +Py_ReprLeave Objects/object.c /^Py_ReprLeave(PyObject *obj)$/;" f +Py_RunMain Modules/main.c /^Py_RunMain(void)$/;" f +Py_SAFE_DOWNCAST Include/pyport.h 299;" d +Py_SAFE_DOWNCAST Include/pyport.h 303;" d +Py_SETOBJECT_H Include/setobject.h 4;" d +Py_SETREF Include/cpython/object.h 349;" d +Py_SETREF Include/cpython/object.h 357;" d +Py_SET_REFCNT Include/object.h /^static inline void Py_SET_REFCNT(PyObject *ob, Py_ssize_t refcnt) {$/;" f +Py_SET_REFCNT Include/object.h 269;" d +Py_SET_SIZE Include/object.h /^static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {$/;" f +Py_SET_SIZE Include/object.h 286;" d +Py_SET_TYPE Include/object.h /^static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {$/;" f +Py_SET_TYPE Include/object.h 277;" d +Py_SIZE Include/object.h /^static inline Py_ssize_t Py_SIZE(PyObject *ob) {$/;" f +Py_SIZE Include/object.h 237;" d +Py_SLICEOBJECT_H Include/sliceobject.h 2;" d +Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE PC/pyconfig.h 701;" d +Py_SSL_H Modules/_ssl.h 2;" d +Py_STRCMP_H Include/pystrcmp.h 2;" d +Py_STRINGIFY Include/pymacro.h 41;" d +Py_STRTOD_H Include/pystrtod.h 2;" d +Py_STRUCTMEMBER_H Include/structmember.h 2;" d +Py_STRUCTSEQ_H Include/structseq.h 5;" d +Py_SYSMODULE_H Include/sysmodule.h 5;" d +Py_SetPath Python/pathconfig.c /^Py_SetPath(const wchar_t *path)$/;" f +Py_SetProgramName Python/pathconfig.c /^Py_SetProgramName(const wchar_t *program_name)$/;" f +Py_SetPythonHome Python/pathconfig.c /^Py_SetPythonHome(const wchar_t *home)$/;" f +Py_SetRecursionLimit Python/ceval.c /^Py_SetRecursionLimit(int new_limit)$/;" f +Py_SetStandardStreamEncoding Python/initconfig.c /^Py_SetStandardStreamEncoding(const char *encoding, const char *errors)$/;" f +Py_ShellExecuteW Modules/posixmodule.c /^static HINSTANCE (CALLBACK *Py_ShellExecuteW)(HWND, LPCWSTR, LPCWSTR, LPCWSTR,$/;" v file: +Py_TESTCAPI_PARTS_H Modules/_testcapi/parts.h 2;" d +Py_TOKENIZER_H Parser/tokenizer.h 2;" d +Py_TOLOWER Include/cpython/pyctype.h 32;" d +Py_TOUPPER Include/cpython/pyctype.h 33;" d +Py_TPFLAGS_BASETYPE Include/object.h 501;" d +Py_TPFLAGS_BASE_EXC_SUBCLASS Include/object.h 552;" d +Py_TPFLAGS_BASE_EXC_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_BASE_EXC_SUBCLASS = (1 << 30)$/;" v +Py_TPFLAGS_BYTES_SUBCLASS Include/object.h 549;" d +Py_TPFLAGS_BYTES_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_BYTES_SUBCLASS = (1 << 27)$/;" v +Py_TPFLAGS_DEFAULT Include/object.h 555;" d +Py_TPFLAGS_DICT_SUBCLASS Include/object.h 551;" d +Py_TPFLAGS_DICT_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_DICT_SUBCLASS = (1 << 29)$/;" v +Py_TPFLAGS_DISALLOW_INSTANTIATION Include/object.h 492;" d +Py_TPFLAGS_HAVE_FINALIZE Include/object.h 572;" d +Py_TPFLAGS_HAVE_GC Include/object.h 519;" d +Py_TPFLAGS_HAVE_STACKLESS_EXTENSION Include/object.h 523;" d +Py_TPFLAGS_HAVE_STACKLESS_EXTENSION Include/object.h 525;" d +Py_TPFLAGS_HAVE_VECTORCALL Include/object.h 505;" d +Py_TPFLAGS_HAVE_VECTORCALL Lib/test/test_call.py /^Py_TPFLAGS_HAVE_VECTORCALL = 1 << 11$/;" v +Py_TPFLAGS_HAVE_VERSION_TAG Include/object.h 573;" d +Py_TPFLAGS_HEAPTYPE Include/object.h 498;" d +Py_TPFLAGS_HEAPTYPE Tools/gdb/libpython.py /^Py_TPFLAGS_HEAPTYPE = (1 << 9)$/;" v +Py_TPFLAGS_IMMUTABLETYPE Include/object.h 495;" d +Py_TPFLAGS_IS_ABSTRACT Include/object.h 535;" d +Py_TPFLAGS_ITEMS_AT_END Include/object.h 543;" d +Py_TPFLAGS_LIST_SUBCLASS Include/object.h 547;" d +Py_TPFLAGS_LIST_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_LIST_SUBCLASS = (1 << 25)$/;" v +Py_TPFLAGS_LONG_SUBCLASS Include/object.h 546;" d +Py_TPFLAGS_LONG_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_LONG_SUBCLASS = (1 << 24)$/;" v +Py_TPFLAGS_MANAGED_DICT Include/object.h 480;" d +Py_TPFLAGS_MANAGED_DICT Tools/gdb/libpython.py /^Py_TPFLAGS_MANAGED_DICT = (1 << 4)$/;" v +Py_TPFLAGS_MANAGED_WEAKREF Include/object.h 475;" d +Py_TPFLAGS_MAPPING Include/object.h 487;" d +Py_TPFLAGS_METHOD_DESCRIPTOR Include/object.h 529;" d +Py_TPFLAGS_METHOD_DESCRIPTOR Lib/test/test_call.py /^Py_TPFLAGS_METHOD_DESCRIPTOR = 1 << 17$/;" v +Py_TPFLAGS_PREHEADER Include/object.h 482;" d +Py_TPFLAGS_READY Include/object.h 513;" d +Py_TPFLAGS_READYING Include/object.h 516;" d +Py_TPFLAGS_SEQUENCE Include/object.h 485;" d +Py_TPFLAGS_TUPLE_SUBCLASS Include/object.h 548;" d +Py_TPFLAGS_TUPLE_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_TUPLE_SUBCLASS = (1 << 26)$/;" v +Py_TPFLAGS_TYPE_SUBCLASS Include/object.h 553;" d +Py_TPFLAGS_TYPE_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_TYPE_SUBCLASS = (1 << 31)$/;" v +Py_TPFLAGS_UNICODE_SUBCLASS Include/object.h 550;" d +Py_TPFLAGS_UNICODE_SUBCLASS Tools/gdb/libpython.py /^Py_TPFLAGS_UNICODE_SUBCLASS = (1 << 28)$/;" v +Py_TPFLAGS_VALID_VERSION_TAG Include/object.h 532;" d +Py_TRACEBACK_H Include/traceback.h 2;" d +Py_TRACEMALLOC_H Include/tracemalloc.h 2;" d +Py_TRASHCAN_BEGIN Include/cpython/object.h 539;" d +Py_TRASHCAN_BEGIN_CONDITION Include/cpython/object.h 521;" d +Py_TRASHCAN_END Include/cpython/object.h 533;" d +Py_TRASHCAN_SAFE_BEGIN Include/cpython/object.h 549;" d +Py_TRASHCAN_SAFE_END Include/cpython/object.h 553;" d +Py_TUPLEOBJECT_H Include/tupleobject.h 4;" d +Py_TYPE Include/object.h /^static inline PyTypeObject* Py_TYPE(PyObject *ob) {$/;" f +Py_TYPE Include/object.h 223;" d +Py_T_BOOL Include/descrobject.h 73;" d +Py_T_BYTE Include/descrobject.h 62;" d +Py_T_CHAR Include/descrobject.h 61;" d +Py_T_DOUBLE Include/descrobject.h 57;" d +Py_T_FLOAT Include/descrobject.h 56;" d +Py_T_INT Include/descrobject.h 54;" d +Py_T_LONG Include/descrobject.h 55;" d +Py_T_LONGLONG Include/descrobject.h 76;" d +Py_T_OBJECT_EX Include/descrobject.h 75;" d +Py_T_PYSSIZET Include/descrobject.h 79;" d +Py_T_SHORT Include/descrobject.h 53;" d +Py_T_STRING Include/descrobject.h 58;" d +Py_T_STRING_INPLACE Include/descrobject.h 70;" d +Py_T_UBYTE Include/descrobject.h 64;" d +Py_T_UINT Include/descrobject.h 66;" d +Py_T_ULONG Include/descrobject.h 67;" d +Py_T_ULONGLONG Include/descrobject.h 77;" d +Py_T_USHORT Include/descrobject.h 65;" d +Py_TransmitFile Modules/overlapped.c /^static LPFN_TRANSMITFILE Py_TransmitFile = NULL;$/;" v file: +Py_True Include/boolobject.h 22;" d +Py_UCS1 Include/unicodeobject.h /^typedef uint8_t Py_UCS1;$/;" t +Py_UCS2 Include/unicodeobject.h /^typedef uint16_t Py_UCS2;$/;" t +Py_UCS4 Include/unicodeobject.h /^typedef uint32_t Py_UCS4;$/;" t +Py_ULL Include/pyport.h 624;" d +Py_UNBLOCK_THREADS Include/ceval.h 146;" d +Py_UNICODE Include/cpython/unicodeobject.h /^\/* Py_DEPRECATED(3.3) *\/ typedef wchar_t Py_UNICODE;$/;" t +Py_UNICODEOBJECT_H Include/unicodeobject.h 2;" d +Py_UNICODE_HIGH_SURROGATE Include/cpython/unicodeobject.h /^static inline Py_UCS4 Py_UNICODE_HIGH_SURROGATE(Py_UCS4 ch) {$/;" f +Py_UNICODE_ISALNUM Include/cpython/unicodeobject.h /^static inline int Py_UNICODE_ISALNUM(Py_UCS4 ch) {$/;" f +Py_UNICODE_ISALPHA Include/cpython/unicodeobject.h 934;" d +Py_UNICODE_ISDECIMAL Include/cpython/unicodeobject.h 925;" d +Py_UNICODE_ISDIGIT Include/cpython/unicodeobject.h 926;" d +Py_UNICODE_ISLINEBREAK Include/cpython/unicodeobject.h 919;" d +Py_UNICODE_ISLOWER Include/cpython/unicodeobject.h 916;" d +Py_UNICODE_ISNUMERIC Include/cpython/unicodeobject.h 927;" d +Py_UNICODE_ISPRINTABLE Include/cpython/unicodeobject.h 928;" d +Py_UNICODE_ISSPACE Include/cpython/unicodeobject.h /^static inline int Py_UNICODE_ISSPACE(Py_UCS4 ch) {$/;" f +Py_UNICODE_ISTITLE Include/cpython/unicodeobject.h 918;" d +Py_UNICODE_ISUPPER Include/cpython/unicodeobject.h 917;" d +Py_UNICODE_IS_HIGH_SURROGATE Include/cpython/unicodeobject.h /^static inline int Py_UNICODE_IS_HIGH_SURROGATE(Py_UCS4 ch) {$/;" f +Py_UNICODE_IS_LOW_SURROGATE Include/cpython/unicodeobject.h /^static inline int Py_UNICODE_IS_LOW_SURROGATE(Py_UCS4 ch) {$/;" f +Py_UNICODE_IS_SURROGATE Include/cpython/unicodeobject.h /^static inline int Py_UNICODE_IS_SURROGATE(Py_UCS4 ch) {$/;" f +Py_UNICODE_JOIN_SURROGATES Include/cpython/unicodeobject.h /^static inline Py_UCS4 Py_UNICODE_JOIN_SURROGATES(Py_UCS4 high, Py_UCS4 low) {$/;" f +Py_UNICODE_LOW_SURROGATE Include/cpython/unicodeobject.h /^static inline Py_UCS4 Py_UNICODE_LOW_SURROGATE(Py_UCS4 ch) {$/;" f +Py_UNICODE_REPLACEMENT_CHARACTER Include/unicodeobject.h 125;" d +Py_UNICODE_SIZE Include/unicodeobject.h 71;" d +Py_UNICODE_TODECIMAL Include/cpython/unicodeobject.h 930;" d +Py_UNICODE_TODIGIT Include/cpython/unicodeobject.h 931;" d +Py_UNICODE_TOLOWER Include/cpython/unicodeobject.h 921;" d +Py_UNICODE_TONUMERIC Include/cpython/unicodeobject.h 932;" d +Py_UNICODE_TOTITLE Include/cpython/unicodeobject.h 923;" d +Py_UNICODE_TOUPPER Include/cpython/unicodeobject.h 922;" d +Py_UNICODE_WIDE Include/unicodeobject.h 78;" d +Py_UNICODE_converter Tools/clinic/clinic.py /^class Py_UNICODE_converter(CConverter):$/;" c +Py_UNREACHABLE Include/pymacro.h 126;" d +Py_UNREACHABLE Include/pymacro.h 138;" d +Py_UNREACHABLE Include/pymacro.h 144;" d +Py_UNREACHABLE Include/pymacro.h 146;" d +Py_UNREACHABLE Include/pymacro.h 148;" d +Py_UNREACHABLE Include/pymacro.h 150;" d +Py_UNUSED Include/cpython/unicodeobject.h /^static inline int PyUnicode_READY(PyObject* Py_UNUSED(op))$/;" f +Py_UNUSED Include/cpython/unicodeobject.h /^static inline unsigned int PyUnicode_IS_READY(PyObject* Py_UNUSED(op)) {$/;" f +Py_UNUSED Include/pymacro.h 120;" d +Py_UNUSED Include/pymacro.h 122;" d +Py_UNUSED Lib/test/test_cppext/extension.cpp /^test_api_casts(PyObject *Py_UNUSED(module), PyObject *Py_UNUSED(args))$/;" f file: +Py_UNUSED Lib/test/test_cppext/extension.cpp /^test_unicode(PyObject *Py_UNUSED(module), PyObject *Py_UNUSED(args))$/;" f file: +Py_UNUSED Lib/test/test_cppext/extension.cpp /^test_virtual_object(PyObject *Py_UNUSED(module), PyObject *Py_UNUSED(args))$/;" f file: +Py_UNUSED Modules/_scproxy.c /^get_proxies(PyObject* Py_UNUSED(mod), PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Modules/_scproxy.c /^get_proxy_settings(PyObject* Py_UNUSED(mod), PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Modules/_testcapi/gc.c /^ PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Modules/_testcapi/gc.c /^ PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Modules/_testcapimodule.c /^ PyObject *Py_UNUSED(args))$/;" f file: +Py_UNUSED Modules/_testinternalcapi.c /^perf_map_state_teardown(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Modules/_testinternalcapi.c /^test_get_config(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args))$/;" f file: +Py_UNUSED Modules/_testinternalcapi.c /^test_reset_path_config(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(arg))$/;" f file: +Py_UNUSED Modules/_uuidmodule.c /^ PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Modules/_uuidmodule.c /^ PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Objects/longobject.c /^long_get0(PyObject *Py_UNUSED(self), void *Py_UNUSED(context))$/;" f file: +Py_UNUSED Objects/longobject.c /^long_get1(PyObject *Py_UNUSED(self), void *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Objects/obmalloc.c /^_PyInterpreterState_FinalizeAllocatedBlocks(PyInterpreterState *Py_UNUSED(interp))$/;" f +Py_UNUSED Objects/obmalloc.c /^_PyInterpreterState_GetAllocatedBlocks(PyInterpreterState *Py_UNUSED(interp))$/;" f +Py_UNUSED Objects/obmalloc.c /^_Py_FinalizeAllocatedBlocks(_PyRuntimeState *Py_UNUSED(runtime))$/;" f +Py_UNUSED Python/context.c /^context_token_missing_tp_dealloc(_PyContextTokenMissing *Py_UNUSED(self))$/;" f file: +Py_UNUSED Python/pystate.c /^current_fast_clear(_PyRuntimeState *Py_UNUSED(runtime))$/;" f file: +Py_UNUSED Python/pystate.c /^current_fast_get(_PyRuntimeState *Py_UNUSED(runtime))$/;" f file: +Py_UNUSED Tools/peg_generator/peg_extension/peg_extension.c /^clear_memo_stats(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Tools/peg_generator/peg_extension/peg_extension.c /^dump_memo_stats(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(ignored))$/;" f file: +Py_UNUSED Tools/peg_generator/peg_extension/peg_extension.c /^get_memo_stats(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(ignored))$/;" f file: +Py_USING_UNICODE Include/unicodeobject.h 65;" d +Py_UTF8Mode Python/initconfig.c /^int Py_UTF8Mode = 0;$/;" v +Py_UnbufferedStdioFlag Python/initconfig.c /^int Py_UnbufferedStdioFlag = 0; \/* Unbuffered binary std{in,out,err} *\/$/;" v +Py_UniversalNewlineFgets Objects/fileobject.c /^Py_UniversalNewlineFgets(char *buf, int n, FILE *stream, PyObject *fobj) {$/;" f +Py_VA_COPY Include/pyport.h 627;" d +Py_VISIT Include/objimpl.h 216;" d +Py_VaBuildValue Include/modsupport.h 21;" d +Py_VaBuildValue Python/modsupport.c /^Py_VaBuildValue(const char *format, va_list va)$/;" f +Py_VerboseFlag Python/initconfig.c /^int Py_VerboseFlag = 0; \/* Needed by import.c *\/$/;" v +Py_Version Python/getversion.c /^const unsigned long Py_Version = PY_VERSION_HEX;$/;" v +Py_WARNINGS_H Include/warnings.h 2;" d +Py_WEAKREFOBJECT_H Include/weakrefobject.h 4;" d +Py_WINREPARSE_H Modules/winreparse.h 2;" d +Py_WINVER PC/pyconfig.h 165;" d +Py_XDECREF Include/object.h /^static inline void Py_XDECREF(PyObject *op)$/;" f +Py_XDECREF Include/object.h 803;" d +Py_XDECREF Python/ceval.c 69;" d file: +Py_XDECREF Python/ceval.c 70;" d file: +Py_XINCREF Include/object.h /^static inline void Py_XINCREF(PyObject *op)$/;" f +Py_XINCREF Include/object.h 793;" d +Py_XNewRef Include/object.h 830;" d +Py_XNewRef Include/object.h 833;" d +Py_XNewRef Modules/_testcapimodule.c 2415;" d file: +Py_XNewRef Objects/object.c /^Py_XNewRef(PyObject *obj)$/;" f +Py_XNewRef Objects/object.c 2660;" d file: +Py_XSETREF Include/cpython/object.h 371;" d +Py_XSETREF Include/cpython/object.h 379;" d +Py__SOCKET_H Modules/socketmodule.h 221;" d +Py_am_aiter Include/typeslots.h 79;" d +Py_am_anext Include/typeslots.h 80;" d +Py_am_await Include/typeslots.h 78;" d +Py_am_send Include/typeslots.h 87;" d +Py_bf_getbuffer Include/typeslots.h 2;" d +Py_bf_releasebuffer Include/typeslots.h 3;" d +Py_buffer Include/pybuffer.h /^} Py_buffer;$/;" t typeref:struct:__anon1 +Py_buffer_converter Tools/clinic/clinic.py /^class Py_buffer_converter(CConverter):$/;" c +Py_buffer_full Objects/memoryobject.c /^} Py_buffer_full;$/;" t typeref:struct:__anon732 file: +Py_complex Include/cpython/complexobject.h /^PyAPI_FUNC(PyObject *) PyComplex_FromCComplex(Py_complex);$/;" v +Py_complex Include/cpython/complexobject.h /^PyAPI_FUNC(Py_complex) _Py_c_neg(Py_complex);$/;" v +Py_complex Include/cpython/complexobject.h /^PyAPI_FUNC(double) _Py_c_abs(Py_complex);$/;" v +Py_complex Include/cpython/complexobject.h /^} Py_complex;$/;" t typeref:struct:__anon237 +Py_complex_converter Tools/clinic/clinic.py /^class Py_complex_converter(CConverter):$/;" c +Py_eval_input Include/compile.h 10;" d +Py_ffi_closure_alloc Modules/_ctypes/ctypes.h 403;" d +Py_ffi_closure_alloc Modules/_ctypes/malloc_closure.c /^void *Py_ffi_closure_alloc(size_t size, void** codeloc)$/;" f +Py_ffi_closure_free Modules/_ctypes/ctypes.h 402;" d +Py_ffi_closure_free Modules/_ctypes/malloc_closure.c /^void Py_ffi_closure_free(void *p)$/;" f +Py_file_input Include/compile.h 9;" d +Py_fstring_input Include/compile.h 14;" d +Py_func_type_input Include/compile.h 11;" d +Py_hash_blake2b Modules/_hashopenssl.c 106;" d file: +Py_hash_blake2s Modules/_hashopenssl.c 105;" d file: +Py_hash_md5 Modules/_hashopenssl.c 91;" d file: +Py_hash_sha1 Modules/_hashopenssl.c 92;" d file: +Py_hash_sha224 Modules/_hashopenssl.c 93;" d file: +Py_hash_sha256 Modules/_hashopenssl.c 94;" d file: +Py_hash_sha384 Modules/_hashopenssl.c 95;" d file: +Py_hash_sha3_224 Modules/_hashopenssl.c 99;" d file: +Py_hash_sha3_256 Modules/_hashopenssl.c 100;" d file: +Py_hash_sha3_384 Modules/_hashopenssl.c 101;" d file: +Py_hash_sha3_512 Modules/_hashopenssl.c 102;" d file: +Py_hash_sha512 Modules/_hashopenssl.c 96;" d file: +Py_hash_sha512_224 Modules/_hashopenssl.c 97;" d file: +Py_hash_sha512_256 Modules/_hashopenssl.c 98;" d file: +Py_hash_shake_128 Modules/_hashopenssl.c 103;" d file: +Py_hash_shake_256 Modules/_hashopenssl.c 104;" d file: +Py_hash_t Include/pyport.h /^typedef Py_ssize_t Py_hash_t;$/;" t +Py_hash_type Modules/_hashopenssl.c /^enum Py_hash_type {$/;" g file: +Py_hexdigits Python/codecs.c /^const char *Py_hexdigits = "0123456789abcdef";$/;" v +Py_ht_evp Modules/_hashopenssl.c /^ Py_ht_evp, \/\/ usedforsecurity=True \/ default$/;" e enum:Py_hash_type file: +Py_ht_evp_nosecurity Modules/_hashopenssl.c /^ Py_ht_evp_nosecurity, \/\/ usedforsecurity=False$/;" e enum:Py_hash_type file: +Py_ht_mac Modules/_hashopenssl.c /^ Py_ht_mac, \/\/ HMAC$/;" e enum:Py_hash_type file: +Py_ht_pbkdf2 Modules/_hashopenssl.c /^ Py_ht_pbkdf2, \/\/ PKBDF2$/;" e enum:Py_hash_type file: +Py_intptr_t Include/pyport.h /^typedef intptr_t Py_intptr_t;$/;" t +Py_mod_create Include/moduleobject.h 79;" d +Py_mod_exec Include/moduleobject.h 80;" d +Py_mod_multiple_interpreters Include/moduleobject.h 81;" d +Py_mp_ass_subscript Include/typeslots.h 4;" d +Py_mp_length Include/typeslots.h 5;" d +Py_mp_subscript Include/typeslots.h 6;" d +Py_nb_absolute Include/typeslots.h 7;" d +Py_nb_add Include/typeslots.h 8;" d +Py_nb_and Include/typeslots.h 9;" d +Py_nb_bool Include/typeslots.h 10;" d +Py_nb_divmod Include/typeslots.h 11;" d +Py_nb_float Include/typeslots.h 12;" d +Py_nb_floor_divide Include/typeslots.h 13;" d +Py_nb_index Include/typeslots.h 14;" d +Py_nb_inplace_add Include/typeslots.h 15;" d +Py_nb_inplace_and Include/typeslots.h 16;" d +Py_nb_inplace_floor_divide Include/typeslots.h 17;" d +Py_nb_inplace_lshift Include/typeslots.h 18;" d +Py_nb_inplace_matrix_multiply Include/typeslots.h 77;" d +Py_nb_inplace_multiply Include/typeslots.h 19;" d +Py_nb_inplace_or Include/typeslots.h 20;" d +Py_nb_inplace_power Include/typeslots.h 21;" d +Py_nb_inplace_remainder Include/typeslots.h 22;" d +Py_nb_inplace_rshift Include/typeslots.h 23;" d +Py_nb_inplace_subtract Include/typeslots.h 24;" d +Py_nb_inplace_true_divide Include/typeslots.h 25;" d +Py_nb_inplace_xor Include/typeslots.h 26;" d +Py_nb_int Include/typeslots.h 27;" d +Py_nb_invert Include/typeslots.h 28;" d +Py_nb_lshift Include/typeslots.h 29;" d +Py_nb_matrix_multiply Include/typeslots.h 76;" d +Py_nb_multiply Include/typeslots.h 30;" d +Py_nb_negative Include/typeslots.h 31;" d +Py_nb_or Include/typeslots.h 32;" d +Py_nb_positive Include/typeslots.h 33;" d +Py_nb_power Include/typeslots.h 34;" d +Py_nb_remainder Include/typeslots.h 35;" d +Py_nb_rshift Include/typeslots.h 36;" d +Py_nb_subtract Include/typeslots.h 37;" d +Py_nb_true_divide Include/typeslots.h 38;" d +Py_nb_xor Include/typeslots.h 39;" d +Py_off_t Modules/_io/_iomodule.h /^typedef long long Py_off_t;$/;" t +Py_off_t Modules/_io/_iomodule.h /^typedef off_t Py_off_t;$/;" t +Py_off_t Modules/posixmodule.c /^ typedef long long Py_off_t;$/;" t file: +Py_off_t Modules/posixmodule.c /^ typedef off_t Py_off_t;$/;" t file: +Py_off_t_converter Modules/posixmodule.c /^Py_off_t_converter(PyObject *arg, void *addr)$/;" f file: +Py_single_input Include/compile.h 8;" d +Py_sq_ass_item Include/typeslots.h 40;" d +Py_sq_concat Include/typeslots.h 41;" d +Py_sq_contains Include/typeslots.h 42;" d +Py_sq_inplace_concat Include/typeslots.h 43;" d +Py_sq_inplace_repeat Include/typeslots.h 44;" d +Py_sq_item Include/typeslots.h 45;" d +Py_sq_length Include/typeslots.h 46;" d +Py_sq_repeat Include/typeslots.h 47;" d +Py_ssize_clean_t Include/pyport.h /^typedef Py_ssize_t Py_ssize_clean_t;$/;" t +Py_ssize_t Include/cpython/longintrepr.h /^PyAPI_FUNC(PyLongObject *) _PyLong_New(Py_ssize_t);$/;" v +Py_ssize_t Include/longobject.h /^PyAPI_FUNC(PyObject *) PyLong_FromSsize_t(Py_ssize_t);$/;" v +Py_ssize_t Include/pyport.h /^typedef Py_intptr_t Py_ssize_t;$/;" t +Py_ssize_t Include/pyport.h /^typedef ssize_t Py_ssize_t;$/;" t +Py_ssize_t Misc/coverity_model.c /^typedef long Py_ssize_t;$/;" t file: +Py_ssize_t PC/pyconfig.h /^typedef _W64 int Py_ssize_t;$/;" t +Py_ssize_t PC/pyconfig.h /^typedef __int64 Py_ssize_t;$/;" t +Py_ssize_t_converter Tools/clinic/clinic.py /^class Py_ssize_t_converter(CConverter):$/;" c +Py_ssize_t_return_converter Tools/clinic/clinic.py /^class Py_ssize_t_return_converter(long_return_converter):$/;" c +Py_tp_alloc Include/typeslots.h 48;" d +Py_tp_base Include/typeslots.h 49;" d +Py_tp_bases Include/typeslots.h 50;" d +Py_tp_call Include/typeslots.h 51;" d +Py_tp_clear Include/typeslots.h 52;" d +Py_tp_dealloc Include/typeslots.h 53;" d +Py_tp_del Include/typeslots.h 54;" d +Py_tp_descr_get Include/typeslots.h 55;" d +Py_tp_descr_set Include/typeslots.h 56;" d +Py_tp_doc Include/typeslots.h 57;" d +Py_tp_finalize Include/typeslots.h 83;" d +Py_tp_free Include/typeslots.h 75;" d +Py_tp_getattr Include/typeslots.h 58;" d +Py_tp_getattro Include/typeslots.h 59;" d +Py_tp_getset Include/typeslots.h 74;" d +Py_tp_hash Include/typeslots.h 60;" d +Py_tp_init Include/typeslots.h 61;" d +Py_tp_is_gc Include/typeslots.h 62;" d +Py_tp_iter Include/typeslots.h 63;" d +Py_tp_iternext Include/typeslots.h 64;" d +Py_tp_members Include/typeslots.h 73;" d +Py_tp_methods Include/typeslots.h 65;" d +Py_tp_new Include/typeslots.h 66;" d +Py_tp_repr Include/typeslots.h 67;" d +Py_tp_richcompare Include/typeslots.h 68;" d +Py_tp_setattr Include/typeslots.h 69;" d +Py_tp_setattro Include/typeslots.h 70;" d +Py_tp_str Include/typeslots.h 71;" d +Py_tp_traverse Include/typeslots.h 72;" d +Py_tracefunc Include/cpython/pystate.h /^typedef int (*Py_tracefunc)(PyObject *, PyFrameObject *, int, PyObject *);$/;" t +Py_tss_NEEDS_INIT Include/cpython/pythread.h 42;" d +Py_tss_t Include/pythread.h /^typedef struct _Py_tss_t Py_tss_t; \/* opaque *\/$/;" t typeref:struct:_Py_tss_t +Py_uhash_t Include/pyport.h /^typedef size_t Py_uhash_t;$/;" t +Py_uintptr_t Include/pyport.h /^typedef uintptr_t Py_uintptr_t;$/;" t +PycInvalidationMode Lib/py_compile.py /^class PycInvalidationMode(enum.Enum):$/;" c +PycRewritingTests Lib/test/test_import/__init__.py /^class PycRewritingTests(unittest.TestCase):$/;" c +PycacheTests Lib/test/test_import/__init__.py /^class PycacheTests(unittest.TestCase):$/;" c +PyclbrTest Lib/test/test_pyclbr.py /^class PyclbrTest(TestCase):$/;" c +PydocBaseTest Lib/test/test_pydoc.py /^class PydocBaseTest(unittest.TestCase):$/;" c +PydocDocTest Lib/test/test_pydoc.py /^class PydocDocTest(unittest.TestCase):$/;" c +PydocImportTest Lib/test/test_pydoc.py /^class PydocImportTest(PydocBaseTest):$/;" c +PydocServerTest Lib/test/test_pydoc.py /^class PydocServerTest(unittest.TestCase):$/;" c +PydocTopicsBuilder Doc/tools/extensions/pyspecific.py /^class PydocTopicsBuilder(Builder):$/;" c +PydocUrlHandlerTest Lib/test/test_pydoc.py /^class PydocUrlHandlerTest(PydocBaseTest):$/;" c +PydocWithMetaClasses Lib/test/test_pydoc.py /^class PydocWithMetaClasses(unittest.TestCase):$/;" c +PythonAPITestCase Lib/test/test_ctypes/test_python_api.py /^class PythonAPITestCase(unittest.TestCase):$/;" c +PythonAPItests Lib/test/test_decimal.py /^class PythonAPItests:$/;" c +PythonBootstrapperApplication Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PythonBootstrapperApplication($/;" f class:PythonBootstrapperApplication +PythonBootstrapperApplication Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {$/;" c file: +PythonBuildersTest Lib/test/test_xmlrpc_net.py /^class PythonBuildersTest(unittest.TestCase):$/;" c +PythonCConsistencyTest Lib/test/test_zoneinfo/test_zoneinfo_property.py /^class PythonCConsistencyTest(unittest.TestCase):$/;" c +PythonCallMakerVisitor Tools/peg_generator/pegen/python_generator.py /^class PythonCallMakerVisitor(GrammarVisitor):$/;" c +PythonClass Lib/test/test_call.py /^class PythonClass:$/;" c +PythonCmd Modules/_tkinter.c /^PythonCmd(ClientData clientData, Tcl_Interp *interp,$/;" f file: +PythonCmdDelete Modules/_tkinter.c /^PythonCmdDelete(ClientData clientData)$/;" f file: +PythonCmd_ClientData Modules/_tkinter.c /^} PythonCmd_ClientData;$/;" t typeref:struct:__anon336 file: +PythonCmd_Error Modules/_tkinter.c /^PythonCmd_Error(Tcl_Interp *interp)$/;" f file: +PythonFinalizationTests Lib/test/test_gc.py /^class PythonFinalizationTests(unittest.TestCase):$/;" c +PythonForBuild PCbuild/build.bat /^set PythonForBuild=%PYTHON%$/;" v +PythonInfo Lib/test/pythoninfo.py /^class PythonInfo:$/;" c +PythonLanguage Tools/clinic/clinic.py /^class PythonLanguage(Language):$/;" c +PythonParser Tools/clinic/clinic.py /^class PythonParser:$/;" c +PythonParserGenerator Tools/peg_generator/pegen/python_generator.py /^class PythonParserGenerator(ParserGenerator, GrammarVisitor):$/;" c +PythonSymlink Lib/test/support/__init__.py /^class PythonSymlink:$/;" c +PythonValuesTestCase Lib/test/test_ctypes/test_values.py /^class PythonValuesTestCase(unittest.TestCase):$/;" c +Q Lib/test/test_dataclasses.py /^ class Q:$/;" c function:TestCase.test_dataclasses_pickleable +Q Lib/test/test_descr.py /^ class Q(J):$/;" c function:.test_set_class +Q Lib/test/test_functools.py /^ class Q(c.Sized):$/;" c function:TestSingleDispatch.test_mro_conflicts +Q Modules/_ctypes/_ctypes_test.c /^ short M: 1, N: 2, O: 3, P: 4, Q: 5, R: 6, S: 7;$/;" m struct:BITS file: +Q1 Lib/test/test_descr.py /^ class Q1(metaclass=Meta, attr="__qualname__"):$/;" c function:.test_slots_special2 +Q2 Lib/test/test_descr.py /^ class Q2:$/;" c class:.test_slots_special2.Q1 +QName Lib/xml/etree/ElementTree.py /^class QName:$/;" c +QP Lib/email/charset.py /^QP = 1 # Quoted-Printable$/;" v +QQ_getitem Modules/arraymodule.c /^QQ_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +QQ_setitem Modules/arraymodule.c /^QQ_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +QUANT_MASK Modules/audioop.c 64;" d file: +QUERY Lib/test/test_sqlite3/test_transactions.py /^ QUERY = "insert into t values(1)"$/;" v class:IsolationLevelPostInit +QUESTION Lib/tkinter/messagebox.py /^QUESTION = "question"$/;" v +QUEUE_SIZE Lib/test/test_queue.py /^QUEUE_SIZE = 5$/;" v +QUICK Lib/test/test__xxinterpchannels.py /^ QUICK = False$/;" v class:ChannelCloseFixture +QUOTE_ALL Modules/_csv.c /^ QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONNUMERIC, QUOTE_NONE,$/;" e enum:__anon622 file: +QUOTE_IN_QUOTED_FIELD Modules/_csv.c /^ IN_QUOTED_FIELD, ESCAPE_IN_QUOTED_FIELD, QUOTE_IN_QUOTED_FIELD,$/;" e enum:__anon621 file: +QUOTE_MINIMAL Modules/_csv.c /^ QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONNUMERIC, QUOTE_NONE,$/;" e enum:__anon622 file: +QUOTE_NONE Modules/_csv.c /^ QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONNUMERIC, QUOTE_NONE,$/;" e enum:__anon622 file: +QUOTE_NONNUMERIC Modules/_csv.c /^ QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONNUMERIC, QUOTE_NONE,$/;" e enum:__anon622 file: +QUOTE_NOTNULL Modules/_csv.c /^ QUOTE_STRINGS, QUOTE_NOTNULL$/;" e enum:__anon622 file: +QUOTE_STRINGS Modules/_csv.c /^ QUOTE_STRINGS, QUOTE_NOTNULL$/;" e enum:__anon622 file: +Q_get Modules/_ctypes/cfield.c /^Q_get(void *ptr, Py_ssize_t size)$/;" f file: +Q_get_sw Modules/_ctypes/cfield.c /^Q_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +Q_set Modules/_ctypes/cfield.c /^Q_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +Q_set_sw Modules/_ctypes/cfield.c /^Q_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +Qmode PCbuild/rt.bat /^:Qmode$/;" l +Quadruple Lib/test/test_enum.py /^ class Quadruple(Enum):$/;" c function:MiscTestCase.test_doc_4 +Queens Lib/test/test_generators.py /^class Queens:$/;" c +Query Lib/idlelib/query.py /^class Query(Toplevel):$/;" c +QueryGuiTest Lib/idlelib/idle_test/test_query.py /^class QueryGuiTest(unittest.TestCase):$/;" c +QueryTest Lib/idlelib/idle_test/test_query.py /^class QueryTest(unittest.TestCase):$/;" c +QueryTestCase Lib/test/test_pprint.py /^class QueryTestCase(unittest.TestCase):$/;" c +QueryValue Lib/test/test_getpath.py /^ def QueryValue(self, hkey, subkey):$/;" m class:MockWinreg +Query_spec Lib/idlelib/idle_test/htest.py /^Query_spec = {$/;" v +Question Lib/test/test_enum.py /^ Question = Enum('Question', 'who what when where why', module=__name__)$/;" v +Question Lib/test/test_enum.py /^ Question = exc$/;" v +Queue Lib/asyncio/queues.py /^class Queue(mixins._LoopBoundMixin):$/;" c +Queue Lib/multiprocessing/context.py /^ def Queue(self, maxsize=0):$/;" m class:BaseContext +Queue Lib/multiprocessing/queues.py /^class Queue(object):$/;" c +Queue Lib/queue.py /^class Queue:$/;" c +Queue Lib/test/_test_multiprocessing.py /^ Queue = property(operator.attrgetter('manager.Queue'))$/;" v class:ManagerMixin +Queue Lib/test/_test_multiprocessing.py /^ Queue = staticmethod(multiprocessing.Queue)$/;" v class:ProcessesMixin +Queue Lib/test/_test_multiprocessing.py /^ Queue = staticmethod(multiprocessing.dummy.Queue)$/;" v class:ThreadsMixin +Queue Lib/test/test_codecs.py /^class Queue(object):$/;" c +QueueBasicTests Lib/test/test_asyncio/test_queues.py /^class QueueBasicTests(unittest.IsolatedAsyncioTestCase):$/;" c +QueueEmpty Lib/asyncio/queues.py /^class QueueEmpty(Exception):$/;" c +QueueFull Lib/asyncio/queues.py /^class QueueFull(Exception):$/;" c +QueueGetTests Lib/test/test_asyncio/test_queues.py /^class QueueGetTests(unittest.IsolatedAsyncioTestCase):$/;" c +QueueHandler Lib/logging/handlers.py /^class QueueHandler(logging.Handler):$/;" c +QueueHandlerTest Lib/test/test_logging.py /^class QueueHandlerTest(BaseTest):$/;" c +QueueJoinTests Lib/test/test_asyncio/test_queues.py /^class QueueJoinTests(_QueueJoinTestMixin, unittest.IsolatedAsyncioTestCase):$/;" c +QueueListener Lib/logging/handlers.py /^class QueueListener(object):$/;" c +QueueListenerTest Lib/test/test_logging.py /^ class QueueListenerTest(BaseTest):$/;" c class:QueueHandlerTest +QueueManager Lib/test/_test_multiprocessing.py /^class QueueManager(BaseManager):$/;" c +QueueManager2 Lib/test/_test_multiprocessing.py /^class QueueManager2(BaseManager):$/;" c +QueueOutput Lib/test/libregrtest/runtest_mp.py /^QueueOutput = tuple[Literal[False], MultiprocessResult] | tuple[Literal[True], ExcStr]$/;" v +QueuePutTests Lib/test/test_asyncio/test_queues.py /^class QueuePutTests(unittest.IsolatedAsyncioTestCase):$/;" c +QueueTest Lib/test/test_queue.py /^class QueueTest(BaseQueueTestMixin):$/;" c +Quick_max Python/dtoa.c 260;" d file: +QuickcheckResult Modules/unicodedata.c /^typedef enum {YES = 0, MAYBE = 1, NO = 2} QuickcheckResult;$/;" t typeref:enum:__anon643 file: +QuietRegressionTestRunner Lib/test/support/testresult.py /^class QuietRegressionTestRunner:$/;" c +Quitter Lib/_sitebuiltins.py /^class Quitter(object):$/;" c +QuopriTestCase Lib/test/test_quopri.py /^class QuopriTestCase(unittest.TestCase):$/;" c +QuoteStyle Modules/_csv.c /^} QuoteStyle;$/;" t typeref:enum:__anon622 file: +QuotedEscapedExcel Lib/test/test_csv.py /^class QuotedEscapedExcel(csv.excel):$/;" c +QuotedString Lib/email/_header_value_parser.py /^class QuotedString(TokenList):$/;" c +QuotingTests Lib/test/test_urllib.py /^class QuotingTests(unittest.TestCase):$/;" c +R Lib/test/test_collections.py /^ class R(Reversible):$/;" c function:TestOneTrickPonyABCs.test_Reversible +R Lib/test/test_dataclasses.py /^ class R:$/;" c function:TestCase.test_dataclasses_pickleable +R Lib/test/test_descr.py /^ class R(J):$/;" c function:.test_set_class +R Lib/test/test_enum.py /^ R = 1 << 2$/;" v class:OldTestIntFlag.test_format.NewPerm +R Lib/test/test_enum.py /^ R = 1 << 2$/;" v class:OldTestIntFlag.Perm +R Lib/test/test_functools.py /^ class R(collections.defaultdict):$/;" c function:TestSingleDispatch.test_mro_conflicts +R Lib/test/test_heapq.py /^def R(seqn):$/;" f +R Lib/test/test_io.py /^ class R(self.IOBase):$/;" c function:IOTest.test_close_assert +R Lib/test/test_io.py /^ class R(self.IOBase):$/;" c function:IOTest.test_next_nonsizeable +R Lib/test/test_io.py /^ class R(self.IOBase):$/;" c function:IOTest.test_readline_nonsizeable +R Lib/test/test_itertools.py /^def R(seqn):$/;" f +R Lib/test/test_set.py /^def R(seqn):$/;" f +R Modules/_blake2/impl/blake2.h /^ blake2b_state R[1];$/;" m struct:__blake2bp_state +R Modules/_blake2/impl/blake2.h /^ blake2s_state R[1];$/;" m struct:__blake2sp_state +R Modules/_ctypes/_ctypes_test.c /^ short M: 1, N: 2, O: 3, P: 4, Q: 5, R: 6, S: 7;$/;" m struct:BITS file: +RADIOBUTTON Lib/tkinter/constants.py /^RADIOBUTTON='radiobutton'$/;" v +RADIX Modules/_decimal/libmpdec/literature/fnt.py /^RADIX = 10**19$/;" v +RADIX Modules/_decimal/libmpdec/literature/fnt.py /^RADIX = 10**9$/;" v +RAISED Lib/tkinter/constants.py /^RAISED='raised'$/;" v +RAISE_ERROR_KNOWN_LOCATION Parser/pegen.h /^RAISE_ERROR_KNOWN_LOCATION(Parser *p, PyObject *errtype,$/;" f +RAISE_INDENTATION_ERROR Parser/pegen.h 188;" d +RAISE_SYNTAX_ERROR Parser/pegen.h 187;" d +RAISE_SYNTAX_ERROR_INVALID_TARGET Parser/pegen.h 196;" d +RAISE_SYNTAX_ERROR_KNOWN_LOCATION Parser/pegen.h 192;" d +RAISE_SYNTAX_ERROR_KNOWN_RANGE Parser/pegen.h 190;" d +RAISE_SYNTAX_ERROR_ON_NEXT_TOKEN Parser/pegen.h 189;" d +RAISE_SYNTAX_ERROR_STARTING_FROM Parser/pegen.h 194;" d +RAISE_VARARGS Include/opcode.h 88;" d +RANDSEED Modules/_decimal/tests/deccheck.py /^RANDSEED = int(time.time())$/;" v +RANGE_ERROR Modules/_struct.c 278;" d file: +RARROW Include/internal/pycore_token.h 67;" d +RARROW Lib/lib2to3/pgen2/token.py /^RARROW = 55$/;" v +RARROW Lib/token.py /^RARROW = 51$/;" v +RAW_OFFSET Modules/_io/bufferedio.c 385;" d file: +RAW_TELL Modules/_io/bufferedio.c 389;" d file: +RBINSLOT Objects/typeobject.c 9379;" d file: +RBINSLOT Objects/typeobject.c 9409;" d file: +RBINSLOTNOTINFIX Objects/typeobject.c 9415;" d file: +RBRACE Include/internal/pycore_token.h 42;" d +RBRACE Lib/lib2to3/pgen2/token.py /^RBRACE = 27$/;" v +RBRACE Lib/token.py /^RBRACE = 26$/;" v +RBRACE Tools/cases_generator/lexer.py /^RBRACE = r'\\}'$/;" v +RBRACKET Tools/cases_generator/lexer.py /^RBRACKET = r'\\]'$/;" v +RC2_KEY Lib/test/test_lib2to3/data/infinite_recursion.py /^RC2_KEY = rc2_key_st$/;" v +RC4_KEY Lib/test/test_lib2to3/data/infinite_recursion.py /^RC4_KEY = rc4_key_st$/;" v +RC5_32_KEY Lib/test/test_lib2to3/data/infinite_recursion.py /^RC5_32_KEY = rc5_key_st$/;" v +RCEntry Doc/tools/extensions/c_annotations.py /^class RCEntry:$/;" c +RCP Lib/telnetlib.py /^RCP = bytes([2]) # prepare to reconnect$/;" v +RCTE Lib/telnetlib.py /^RCTE = bytes([7]) # remote controlled transmission and echo$/;" v +RC_BAD_VENV_CFG PC/launcher.c 50;" d file: +RC_BAD_VENV_CFG PC/launcher2.c 34;" d file: +RC_BAD_VIRTUAL_PATH PC/launcher.c 27;" d file: +RC_BAD_VIRTUAL_PATH PC/launcher2.c 29;" d file: +RC_CREATE_PROCESS PC/launcher.c 26;" d file: +RC_CREATE_PROCESS PC/launcher2.c 28;" d file: +RC_DUPLICATE_ITEM PC/launcher2.c 37;" d file: +RC_HANDLER Modules/pyexpat.c 428;" d file: +RC_INSTALLING PC/launcher2.c 38;" d file: +RC_INTERNAL_ERROR PC/launcher2.c 36;" d file: +RC_NO_COMMANDLINE PC/launcher2.c 35;" d file: +RC_NO_MEMORY PC/launcher.c 29;" d file: +RC_NO_MEMORY PC/launcher2.c 31;" d file: +RC_NO_PYTHON PC/launcher.c 28;" d file: +RC_NO_PYTHON PC/launcher2.c 30;" d file: +RC_NO_PYTHON_AT_ALL PC/launcher2.c 39;" d file: +RC_NO_SCRIPT PC/launcher.c 41;" d file: +RC_NO_SCRIPT PC/launcher2.c 32;" d file: +RC_NO_SHEBANG PC/launcher2.c 40;" d file: +RC_NO_STD_HANDLES PC/launcher.c 25;" d file: +RC_NO_STD_HANDLES PC/launcher2.c 27;" d file: +RC_NO_VENV_CFG PC/launcher.c 49;" d file: +RC_NO_VENV_CFG PC/launcher2.c 33;" d file: +RC_RECURSIVE_SHEBANG PC/launcher2.c 41;" d file: +RDSTest Lib/test/test_socket.py /^class RDSTest(ThreadedRDSSocketTest):$/;" c +READ Lib/inspect.py /^ READ = 0x100$/;" v class:BufferFlags +READABLE Lib/tkinter/__init__.py /^READABLE = _tkinter.READABLE$/;" v +READAHEAD Modules/_io/bufferedio.c 381;" d file: +READLINE_ADD_HISTORY_METHODDEF Modules/clinic/readline.c.h 466;" d +READLINE_APPEND_HISTORY_FILE_METHODDEF Modules/clinic/readline.c.h 132;" d +READLINE_APPEND_HISTORY_FILE_METHODDEF Modules/clinic/readline.c.h 684;" d +READLINE_CLEAR_HISTORY_METHODDEF Modules/clinic/readline.c.h 642;" d +READLINE_CLEAR_HISTORY_METHODDEF Modules/clinic/readline.c.h 692;" d +READLINE_GET_BEGIDX_METHODDEF Modules/clinic/readline.c.h 350;" d +READLINE_GET_COMPLETER_DELIMS_METHODDEF Modules/clinic/readline.c.h 504;" d +READLINE_GET_COMPLETER_METHODDEF Modules/clinic/readline.c.h 558;" d +READLINE_GET_COMPLETION_TYPE_METHODDEF Modules/clinic/readline.c.h 332;" d +READLINE_GET_CURRENT_HISTORY_LENGTH_METHODDEF Modules/clinic/readline.c.h 604;" d +READLINE_GET_ENDIDX_METHODDEF Modules/clinic/readline.c.h 368;" d +READLINE_GET_HISTORY_ITEM_METHODDEF Modules/clinic/readline.c.h 576;" d +READLINE_GET_HISTORY_LENGTH_METHODDEF Modules/clinic/readline.c.h 202;" d +READLINE_GET_LINE_BUFFER_METHODDEF Modules/clinic/readline.c.h 622;" d +READLINE_INSERT_TEXT_METHODDEF Modules/clinic/readline.c.h 662;" d +READLINE_PARSE_AND_BIND_METHODDEF Modules/clinic/readline.c.h 17;" d +READLINE_READ_HISTORY_FILE_METHODDEF Modules/clinic/readline.c.h 62;" d +READLINE_READ_INIT_FILE_METHODDEF Modules/clinic/readline.c.h 28;" d +READLINE_REDISPLAY_METHODDEF Modules/clinic/readline.c.h 671;" d +READLINE_REMOVE_HISTORY_ITEM_METHODDEF Modules/clinic/readline.c.h 395;" d +READLINE_REPLACE_HISTORY_ITEM_METHODDEF Modules/clinic/readline.c.h 425;" d +READLINE_SET_AUTO_HISTORY_METHODDEF Modules/clinic/readline.c.h 475;" d +READLINE_SET_COMPLETER_DELIMS_METHODDEF Modules/clinic/readline.c.h 386;" d +READLINE_SET_COMPLETER_METHODDEF Modules/clinic/readline.c.h 526;" d +READLINE_SET_COMPLETION_DISPLAY_MATCHES_HOOK_METHODDEF Modules/clinic/readline.c.h 224;" d +READLINE_SET_HISTORY_LENGTH_METHODDEF Modules/clinic/readline.c.h 174;" d +READLINE_SET_PRE_INPUT_HOOK_METHODDEF Modules/clinic/readline.c.h 298;" d +READLINE_SET_PRE_INPUT_HOOK_METHODDEF Modules/clinic/readline.c.h 688;" d +READLINE_SET_STARTUP_HOOK_METHODDEF Modules/clinic/readline.c.h 260;" d +READLINE_WRITE_HISTORY_FILE_METHODDEF Modules/clinic/readline.c.h 96;" d +READLINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2744;" d file: +READLINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2746;" d file: +READMODE Lib/test/test_univnewlines.py /^ READMODE = 'r'$/;" v class:TestGenericUnivNewlines +READONLY Include/structmember.h 46;" d +READONLY_BUFFER Lib/pickle.py /^READONLY_BUFFER = b'\\x98' # make top of stack readonly$/;" v +READONLY_BUFFER Modules/_pickle.c /^ READONLY_BUFFER = '\\x98'$/;" e enum:opcode file: +READY Lib/turtledemo/__main__.py /^READY = 2$/;" v +READ_BUFFER_SIZE Lib/gzip.py /^READ_BUFFER_SIZE = 128 * 1024$/;" v +READ_RESTRICTED Include/structmember.h 48;" d +READ_WHOLE_LINE Modules/_pickle.c /^static const Py_ssize_t READ_WHOLE_LINE = -1;$/;" v file: +READ_spec Python/formatter_unicode.c 161;" d file: +REAL Lib/tkinter/tix.py /^REAL = 'real'$/;" v +REALLOC Modules/expat/xmlparse.c 713;" d file: +REALLY_HUGE Lib/test/test_json/test_enum.py /^REALLY_HUGE = 1<<96$/;" v +REALM Lib/test/test_urllib2_localnet.py /^ REALM = "Test"$/;" v class:BasicAuthTests +REALM Lib/test/test_urllib2_localnet.py /^ REALM = "TestRealm"$/;" v class:ProxyAuthTests +REALM Lib/test/test_urllib2_localnet.py /^ REALM = 'Test'$/;" v class:BasicAuthHandler +REAL_SIZE Objects/structseq.c 44;" d file: +REAL_SIZE_TP Objects/structseq.c 42;" d file: +REASONABLE_FILE_LIMIT Python/marshal.c 1587;" d file: +REASONABLE_FILE_LIMIT Python/marshal.c 1605;" d file: +REBUILD Tools/msi/build.bat /^if "%~1" EQU "-r" (set REBUILD=-r) && shift && goto CheckOpts$/;" v +REBUILD Tools/msi/build.bat /^set REBUILD=$/;" v +REBUILD Tools/nuget/build.bat /^if "%~1" EQU "-r" (set REBUILD=-r) && shift && goto CheckOpts$/;" v +REBUILD Tools/nuget/build.bat /^set REBUILD=$/;" v +RECIP_BPF Lib/random.py /^RECIP_BPF = 2 ** -BPF$/;" v +RECORDERS Lib/test/test_monitoring.py /^ RECORDERS = CallRecorder, LineRecorder, CRaiseRecorder, CReturnRecorder$/;" v class:TestLoadSuperAttr +RECORDS Lib/inspect.py /^ RECORDS = STRIDES | WRITABLE | FORMAT$/;" v class:BufferFlags +RECORDSIZE Lib/tarfile.py /^RECORDSIZE = BLOCKSIZE * 20 # length of records$/;" v +RECORDS_RO Lib/inspect.py /^ RECORDS_RO = STRIDES | FORMAT$/;" v class:BufferFlags +RECORD_OVERFLOW Lib/ssl.py /^ RECORD_OVERFLOW = 22$/;" v class:_TLSAlertType +RECORD_OVERFLOW Lib/test/test_ssl.py /^ RECORD_OVERFLOW = 22$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +RECT Lib/ctypes/wintypes.py /^class RECT(ctypes.Structure):$/;" c +RECT Lib/test/leakers/test_ctypes.py /^ class RECT(Structure):$/;" c function:leak_inner +RECT Lib/test/test_ctypes/test_functions.py /^class RECT(Structure):$/;" c +RECT Lib/test/test_ctypes/test_keeprefs.py /^ class RECT(Structure):$/;" c function:PointerToStructure.test +RECT Lib/test/test_ctypes/test_keeprefs.py /^ class RECT(Structure):$/;" c function:StructureTestCase.test_struct_struct +RECT Lib/test/test_ctypes/test_win32.py /^ class RECT(Structure):$/;" c function:Structures.test_struct_by_value +RECT Modules/_ctypes/_ctypes_test.c /^} RECT;$/;" t typeref:struct:__anon516 file: +RECURSIONLIMIT_DELTA Lib/idlelib/run.py /^RECURSIONLIMIT_DELTA = 30$/;" v +RECURSIVE_MUTEX Modules/_multiprocessing/semaphore.c /^enum { RECURSIVE_MUTEX, SEMAPHORE };$/;" e enum:__anon469 file: +RED Lib/test/test_enum.py /^ RED = 1$/;" v class:TestSpecial.test_default_missing_no_chained_exception.Color +RED Lib/test/test_enum.py /^ RED = 1$/;" v class:TestVerify.test_negative_alias.Color +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:OldTestFlag.test_multiple_mixin.Color +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:OldTestIntFlag.test_multiple_mixin.Color +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:TestSpecial.test_multiple_mixin.Color +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:TestSpecial.test_multiple_mixin.ConfusedColor +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolColor +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolerColor +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:TestSpecial.test_multiple_mixin.CoolestColor +RED Lib/test/test_enum.py /^ RED = auto()$/;" v class:TestSpecial.test_multiple_mixin.ReformedColor +RED Lib/test/test_enum.py /^ RED = 1$/;" v class:OldTestFlag.Color +RED Lib/test/test_enum.py /^ RED = 1$/;" v class:OldTestIntFlag.Color +RED Lib/test/test_patma.py /^ RED = 0$/;" v class:TestPatma.test_patma_198.Color +RED Lib/test/test_patma.py /^ RED = 0$/;" v class:TestPatma.test_patma_199.Color +REDUCE Lib/pickle.py /^REDUCE = b'R' # apply callable to argtuple, both on stack$/;" v +REDUCE Modules/_pickle.c /^ REDUCE = 'R',$/;" e enum:opcode file: +REDUCE Objects/longobject.c 4697;" d file: +REDUCE_A Lib/test/pickletester.py /^REDUCE_A = 'reduce_A'$/;" v +REENTRANT Python/tracemalloc.c 103;" d file: +REENTRANT_THREADLOCAL Python/tracemalloc.c 98;" d file: +REF Tools/build/umarshal.py /^ REF = ord('r')$/;" v class:Type +REFCHAIN Objects/object.c 162;" d file: +REFCHAIN Objects/object.c 2324;" d file: +REFLEAK Lib/test/libregrtest/runtest.py /^ REFLEAK = "REFLEAK"$/;" v class:State +REFTOTAL Objects/object.c 143;" d file: +REFTOTAL Objects/object.c 71;" d file: +REGISTRY PC/layout/support/appxmanifest.py /^REGISTRY = {$/;" v +REGISTRY_CNS11643_1 Modules/cjkcodecs/_codecs_iso2022.c 1066;" d file: +REGISTRY_CNS11643_2 Modules/cjkcodecs/_codecs_iso2022.c 1069;" d file: +REGISTRY_GB2312 Modules/cjkcodecs/_codecs_iso2022.c 1063;" d file: +REGISTRY_ISO8859_1 Modules/cjkcodecs/_codecs_iso2022.c 1072;" d file: +REGISTRY_ISO8859_7 Modules/cjkcodecs/_codecs_iso2022.c 1074;" d file: +REGISTRY_JISX0201_K Modules/cjkcodecs/_codecs_iso2022.c 1027;" d file: +REGISTRY_JISX0201_R Modules/cjkcodecs/_codecs_iso2022.c 1024;" d file: +REGISTRY_JISX0208 Modules/cjkcodecs/_codecs_iso2022.c 1030;" d file: +REGISTRY_JISX0208_O Modules/cjkcodecs/_codecs_iso2022.c 1033;" d file: +REGISTRY_JISX0212 Modules/cjkcodecs/_codecs_iso2022.c 1036;" d file: +REGISTRY_JISX0213_2000_1 Modules/cjkcodecs/_codecs_iso2022.c 1039;" d file: +REGISTRY_JISX0213_2000_1_PAIRONLY Modules/cjkcodecs/_codecs_iso2022.c 1043;" d file: +REGISTRY_JISX0213_2000_2 Modules/cjkcodecs/_codecs_iso2022.c 1047;" d file: +REGISTRY_JISX0213_2004_1 Modules/cjkcodecs/_codecs_iso2022.c 1051;" d file: +REGISTRY_JISX0213_2004_1_PAIRONLY Modules/cjkcodecs/_codecs_iso2022.c 1055;" d file: +REGISTRY_JISX0213_2004_2 Modules/cjkcodecs/_codecs_iso2022.c 1059;" d file: +REGISTRY_KEY Lib/importlib/_bootstrap_external.py /^ REGISTRY_KEY = ($/;" v class:WindowsRegistryFinder +REGISTRY_KEY_DEBUG Lib/importlib/_bootstrap_external.py /^ REGISTRY_KEY_DEBUG = ($/;" v class:WindowsRegistryFinder +REGISTRY_KSX1001_G0 Modules/cjkcodecs/_codecs_iso2022.c 1018;" d file: +REGISTRY_KSX1001_G1 Modules/cjkcodecs/_codecs_iso2022.c 1021;" d file: +REGISTRY_SEARCH PC/launcher2.c /^struct RegistrySearchInfo REGISTRY_SEARCH[] = {$/;" v typeref:struct:RegistrySearchInfo +REGISTRY_SENTINEL Modules/cjkcodecs/_codecs_iso2022.c 1076;" d file: +REGTYPE Lib/tarfile.py /^REGTYPE = b"0" # regular file$/;" v +REGULAR_TYPES Lib/tarfile.py /^REGULAR_TYPES = (REGTYPE, AREGTYPE,$/;" v +REL Tools/msi/purge.py /^REL = m.group(2) or ''$/;" v +RELEASE_LOCK Modules/_bz2module.c 104;" d file: +RELEASE_LOCK Modules/_lzmamodule.c 78;" d file: +RELEASE_URI Tools/msi/buildrelease.bat /^set RELEASE_URI=http:\/\/www.python.org\/{arch}$/;" v +REMAINDER Lib/argparse.py /^REMAINDER = '...'$/;" v +REMOTE_HOST Lib/test/test_ssl.py /^REMOTE_HOST = "self-signed.pythontest.net"$/;" v +REMOTE_NAME Lib/test/test_winreg.py /^ REMOTE_NAME = None$/;" v +REMOTE_NAME Lib/test/test_winreg.py /^ REMOTE_NAME = sys.argv[sys.argv.index("--remote")+1]$/;" v +REMOTE_PYTHON_DIR Tools/buildbot/remoteDeploy.bat /^if "%REMOTE_PYTHON_DIR%"=="" (set REMOTE_PYTHON_DIR=C:\\python\\)$/;" v +REMOTE_PYTHON_DIR Tools/buildbot/remoteDeploy.bat /^if NOT "%REMOTE_PYTHON_DIR:~-1,1%"=="\\" (set REMOTE_PYTHON_DIR=%REMOTE_PYTHON_DIR%\\)$/;" v +REMOTE_PYTHON_DIR Tools/buildbot/remotePythonInfo.bat /^if "%REMOTE_PYTHON_DIR%"=="" (set REMOTE_PYTHON_DIR=C:\\python\\)$/;" v +REMOTE_PYTHON_DIR Tools/buildbot/remotePythonInfo.bat /^if NOT "%REMOTE_PYTHON_DIR:~-1,1%"=="\\" (set REMOTE_PYTHON_DIR=%REMOTE_PYTHON_DIR%\\)$/;" v +REMOTE_PYTHON_DIR Tools/buildbot/test.bat /^if "%REMOTE_PYTHON_DIR%"=="" (set REMOTE_PYTHON_DIR=C:\\python\\)$/;" v +REMOTE_PYTHON_DIR Tools/buildbot/test.bat /^if NOT "%REMOTE_PYTHON_DIR:~-1,1%"=="\\" (set REMOTE_PYTHON_DIR=%REMOTE_PYTHON_DIR%\\)$/;" v +REMOVE_TRACE Python/tracemalloc.c 459;" d file: +REPEAT Tools/stringbench/stringbench.py /^REPEAT = 1$/;" v +REPEAT Tools/stringbench/stringbench.py /^REPEAT = 3$/;" v +REPEAT_CHARS Lib/re/_parser.py /^REPEAT_CHARS = "*+?{"$/;" v +REPLThread Lib/asyncio/__main__.py /^class REPLThread(threading.Thread):$/;" c +REPORTING_FLAGS Lib/doctest.py /^REPORTING_FLAGS = (REPORT_UDIFF |$/;" v +REPORT_CDIFF Lib/doctest.py /^REPORT_CDIFF = register_optionflag('REPORT_CDIFF')$/;" v +REPORT_NDIFF Lib/doctest.py /^REPORT_NDIFF = register_optionflag('REPORT_NDIFF')$/;" v +REPORT_ONLY_FIRST_FAILURE Lib/doctest.py /^REPORT_ONLY_FIRST_FAILURE = register_optionflag('REPORT_ONLY_FIRST_FAILURE')$/;" v +REPORT_UDIFF Lib/doctest.py /^REPORT_UDIFF = register_optionflag('REPORT_UDIFF')$/;" v +REPO_ROOT Lib/test/support/__init__.py /^REPO_ROOT = os.path.dirname(STDLIB_DIR)$/;" v +REPO_ROOT Tools/c-analyzer/cpython/__init__.py /^REPO_ROOT = ($/;" v +REQUESTED_RANGE_NOT_SATISFIABLE Lib/http/__init__.py /^ REQUESTED_RANGE_NOT_SATISFIABLE = (416,$/;" v class:HTTPStatus +REQUESTED_RANGE_NOT_SATISFIABLE Lib/test/test_httplib.py /^ REQUESTED_RANGE_NOT_SATISFIABLE = (416,$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +REQUEST_ENTITY_TOO_LARGE Lib/http/__init__.py /^ REQUEST_ENTITY_TOO_LARGE = (413, 'Request Entity Too Large',$/;" v class:HTTPStatus +REQUEST_ENTITY_TOO_LARGE Lib/test/test_httplib.py /^ REQUEST_ENTITY_TOO_LARGE = (413, 'Request Entity Too Large',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +REQUEST_HEADER_FIELDS_TOO_LARGE Lib/http/__init__.py /^ REQUEST_HEADER_FIELDS_TOO_LARGE = (431,$/;" v class:HTTPStatus +REQUEST_HEADER_FIELDS_TOO_LARGE Lib/test/test_httplib.py /^ REQUEST_HEADER_FIELDS_TOO_LARGE = (431,$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +REQUEST_TIMEOUT Lib/http/__init__.py /^ REQUEST_TIMEOUT = (408, 'Request Timeout',$/;" v class:HTTPStatus +REQUEST_TIMEOUT Lib/test/test_httplib.py /^ REQUEST_TIMEOUT = (408, 'Request Timeout',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +REQUEST_URI_TOO_LONG Lib/http/__init__.py /^ REQUEST_URI_TOO_LONG = (414, 'Request-URI Too Long',$/;" v class:HTTPStatus +REQUEST_URI_TOO_LONG Lib/test/test_httplib.py /^ REQUEST_URI_TOO_LONG = (414, 'Request-URI Too Long',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +REQUIRED_DLLS PC/layout/main.py /^REQUIRED_DLLS = FileStemSet("libcrypto*", "libssl*", "libffi*")$/;" v +REQUIREMENTS Doc/Makefile /^REQUIREMENTS = requirements.txt$/;" m +REQUIRE_CHAR Modules/expat/xmltok_impl.c 140;" d file: +REQUIRE_CHARS Modules/expat/xmltok_impl.c 133;" d file: +REQUIRE_ENCODEBUFFER Modules/cjkcodecs/multibytecodec.c 212;" d file: +REQUIRE_INBUF Modules/cjkcodecs/cjkcodecs.h 133;" d +REQUIRE_OUTBUF Modules/cjkcodecs/cjkcodecs.h 139;" d +REQUIRE_PY_SSIZE_T_CLEAN Python/getargs.c 1277;" d file: +REQUIRE_PY_SSIZE_T_CLEAN Python/getargs.c 661;" d file: +REQ_ANY_CONTIGUOUS Modules/_testbuffer.c 77;" d file: +REQ_ANY_CONTIGUOUS Objects/memoryobject.c 245;" d file: +REQ_C_CONTIGUOUS Modules/_testbuffer.c 75;" d file: +REQ_C_CONTIGUOUS Objects/memoryobject.c 243;" d file: +REQ_FORMAT Modules/_testbuffer.c 81;" d file: +REQ_FORMAT Objects/memoryobject.c 249;" d file: +REQ_F_CONTIGUOUS Modules/_testbuffer.c 76;" d file: +REQ_F_CONTIGUOUS Objects/memoryobject.c 244;" d file: +REQ_INDIRECT Modules/_testbuffer.c 74;" d file: +REQ_INDIRECT Objects/memoryobject.c 242;" d file: +REQ_SHAPE Modules/_testbuffer.c 79;" d file: +REQ_SHAPE Objects/memoryobject.c 247;" d file: +REQ_STRIDES Modules/_testbuffer.c 78;" d file: +REQ_STRIDES Objects/memoryobject.c 246;" d file: +REQ_WRITABLE Modules/_testbuffer.c 80;" d file: +REQ_WRITABLE Objects/memoryobject.c 248;" d file: +RERAISE Include/opcode.h 77;" d +RESERVED Include/opcode.h 21;" d +RESETTING Lib/asyncio/locks.py /^ RESETTING = 'resetting'$/;" v class:_BarrierState +RESET_CAPTURE_GROUP Modules/_sre/sre_lib.h 1631;" d +RESET_CONTENT Lib/http/__init__.py /^ RESET_CONTENT = 205, 'Reset Content', 'Clear input form for further input'$/;" v class:HTTPStatus +RESET_CONTENT Lib/test/test_httplib.py /^ RESET_CONTENT = 205, 'Reset Content', 'Clear input form for further input'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +RESET_ERROR Lib/logging/config.py /^RESET_ERROR = errno.ECONNRESET$/;" v +RESET_GIL_DROP_REQUEST Python/ceval_gil.c /^RESET_GIL_DROP_REQUEST(PyInterpreterState *interp)$/;" f file: +RESOURCE_DENIED Lib/test/libregrtest/runtest.py /^ RESOURCE_DENIED = "RESOURCE_DENIED"$/;" v class:State +RESOURCE_GETPAGESIZE_METHODDEF Modules/clinic/resource.c.h 152;" d +RESOURCE_GETRLIMIT_METHODDEF Modules/clinic/resource.c.h 47;" d +RESOURCE_GETRUSAGE_METHODDEF Modules/clinic/resource.c.h 175;" d +RESOURCE_GETRUSAGE_METHODDEF Modules/clinic/resource.c.h 18;" d +RESOURCE_NAMES Lib/test/libregrtest/cmdline.py /^RESOURCE_NAMES = ALL_RESOURCES + ('extralargefile', 'tzdata')$/;" v +RESOURCE_PRLIMIT_METHODDEF Modules/clinic/resource.c.h 108;" d +RESOURCE_PRLIMIT_METHODDEF Modules/clinic/resource.c.h 179;" d +RESOURCE_SETRLIMIT_METHODDEF Modules/clinic/resource.c.h 74;" d +RESTORE_LOCALE Modules/readline.c 29;" d file: +RESTORE_LOCALE Modules/readline.c 31;" d file: +RESTORE_SEQUENCES Lib/idlelib/parenmatch.py /^ RESTORE_SEQUENCES = ("", "",$/;" v class:ParenMatch +RESTORE_VIRTUAL_EVENT_NAME Lib/idlelib/parenmatch.py /^ RESTORE_VIRTUAL_EVENT_NAME = "<>"$/;" v class:ParenMatch +RESTRICTED Include/structmember.h 50;" d +REST_ROLES Tools/build/stable_abi.py /^REST_ROLES = {$/;" v +REST_ROLE_MAP Doc/tools/extensions/c_annotations.py /^REST_ROLE_MAP = {$/;" v +RESULT Lib/test/test_unittest/test_program.py /^RESULT = object()$/;" v +RESULT Modules/_localemodule.c 262;" d file: +RESULT Modules/_localemodule.c 339;" d file: +RESULT_INT Modules/_localemodule.c 285;" d file: +RESULT_INT Modules/_localemodule.c 341;" d file: +RESULT_STRING Modules/_localemodule.c 204;" d file: +RESULT_STRING Modules/_localemodule.c 222;" d file: +RESULT_STRING Modules/_localemodule.c 279;" d file: +RESULT_STRING Modules/_localemodule.c 340;" d file: +RESUME Include/opcode.h 108;" d +RESUME Tools/build/deepfreeze.py /^RESUME = 151$/;" v +RETRY Lib/test/test_enum.py /^ RETRY = "RETRY"$/;" v class:TestSpecial.test_multiple_inherited_mixin.Decision1 +RETRY Lib/test/test_enum.py /^ RETRY = "RETRY"$/;" v class:TestSpecial.test_multiple_inherited_mixin.Decision2 +RETRY Lib/tkinter/messagebox.py /^RETRY = "retry"$/;" v +RETRYCANCEL Lib/tkinter/messagebox.py /^RETRYCANCEL = "retrycancel"$/;" v +RETR_DATA Lib/test/test_ftplib.py /^RETR_DATA = 'abcde12345\\r\\n' * 1000 + 'non-ascii char \\xAE\\r\\n'$/;" v +RETSIGTYPE PC/pyconfig.h 455;" d +RETURN Objects/memoryobject.c 1227;" d file: +RETURN_CONST Include/opcode.h 79;" d +RETURN_CONST Lib/dis.py /^RETURN_CONST = opmap['RETURN_CONST']$/;" v +RETURN_ERROR Modules/_sre/sre_lib.h 375;" d +RETURN_ERR_OCCURRED Python/getargs.c 1278;" d file: +RETURN_ERR_OCCURRED Python/getargs.c 659;" d file: +RETURN_FAILURE Modules/_sre/sre_lib.h 376;" d +RETURN_GENERATOR Include/opcode.h 45;" d +RETURN_IF_ERROR Python/assemble.c 19;" d file: +RETURN_IF_ERROR Python/compile.c 64;" d file: +RETURN_IF_ERROR Python/flowgraph.c 20;" d file: +RETURN_IF_ERROR_IN_SCOPE Python/compile.c 1138;" d file: +RETURN_INT Modules/_testcapi/util.h 7;" d +RETURN_ON_ERROR Modules/_sre/sre_lib.h 379;" d +RETURN_ON_FAILURE Modules/_sre/sre_lib.h 383;" d +RETURN_ON_SUCCESS Modules/_sre/sre_lib.h 381;" d +RETURN_PACKED_ARGS Modules/_testclinic.c 1268;" d file: +RETURN_PACKED_ARGS Modules/_testclinic.c 65;" d file: +RETURN_SIZE Modules/_testcapi/util.h 17;" d +RETURN_SUCCESS Modules/_sre/sre_lib.h 377;" d +RETURN_VALUE Include/opcode.h 46;" d +RETests Lib/test/test_typing.py /^class RETests(BaseTestCase):$/;" c +REVERSE_IMPORT_MAPPING Lib/_compat_pickle.py /^REVERSE_IMPORT_MAPPING = dict((v, k) for (k, v) in IMPORT_MAPPING.items())$/;" v +REVERSE_NAME_MAPPING Lib/_compat_pickle.py /^REVERSE_NAME_MAPPING = dict((v, k) for (k, v) in NAME_MAPPING.items())$/;" v +REVERT Lib/test/test_enum.py /^ REVERT = "REVERT"$/;" v class:TestSpecial.test_multiple_inherited_mixin.Decision1 +REVERT Lib/test/test_enum.py /^ REVERT = "REVERT"$/;" v class:TestSpecial.test_multiple_inherited_mixin.Decision2 +REVERT_ALL Lib/test/test_enum.py /^ REVERT_ALL = "REVERT_ALL"$/;" v class:TestSpecial.test_multiple_inherited_mixin.Decision1 +REVERT_ALL Lib/test/test_enum.py /^ REVERT_ALL = "REVERT_ALL"$/;" v class:TestSpecial.test_multiple_inherited_mixin.Decision2 +REX_five Lib/test/pickletester.py /^class REX_five(object):$/;" c +REX_four Lib/test/pickletester.py /^class REX_four(object):$/;" c +REX_one Lib/test/pickletester.py /^class REX_one(object):$/;" c +REX_seven Lib/test/pickletester.py /^class REX_seven(object):$/;" c +REX_six Lib/test/pickletester.py /^class REX_six(object):$/;" c +REX_state Lib/test/pickletester.py /^class REX_state(object):$/;" c +REX_three Lib/test/pickletester.py /^class REX_three(object):$/;" c +REX_two Lib/test/pickletester.py /^class REX_two(object):$/;" c +RE_DATETIME Lib/tomllib/_re.py /^RE_DATETIME = re.compile($/;" v +RE_LOCALTIME Lib/tomllib/_re.py /^RE_LOCALTIME = re.compile(_TIME_RE_STR)$/;" v +RE_NUMBER Lib/tomllib/_re.py /^RE_NUMBER = re.compile($/;" v +RE_PREDICTED Tools/cases_generator/generate_cases.py /^RE_PREDICTED = ($/;" v +RE_VERSION Tools/c-analyzer/distutils/cygwinccompiler.py /^RE_VERSION = re.compile(br'(\\d+\\.\\d+(\\.\\d+)*)')$/;" v +RFC1808_BASE Lib/test/test_urlparse.py /^RFC1808_BASE = "http:\/\/a\/b\/c\/d;p?q#f"$/;" v +RFC2047_CHROME_LEN Lib/email/charset.py /^RFC2047_CHROME_LEN = 7$/;" v +RFC2396_BASE Lib/test/test_urlparse.py /^RFC2396_BASE = "http:\/\/a\/b\/c\/d;p?q"$/;" v +RFC3542AncillaryTest Lib/test/test_socket.py /^class RFC3542AncillaryTest(SendrecvmsgServerTimeoutBase):$/;" c +RFC3986_BASE Lib/test/test_urlparse.py /^RFC3986_BASE = 'http:\/\/a\/b\/c\/d;p?q'$/;" v +RFILE Misc/coverity_model.c /^typedef struct {} RFILE;$/;" t typeref:struct:__anon281 file: +RFILE Python/marshal.c /^} RFILE;$/;" t typeref:struct:__anon700 file: +RFile Lib/test/test_argparse.py /^class RFile(object):$/;" c +RGB Lib/ctypes/wintypes.py /^def RGB(red, green, blue):$/;" f +RGX_REPR Lib/test/test_asyncio/test_locks.py /^RGX_REPR = re.compile(STR_RGX_REPR)$/;" v +RICHCMP_WRAPPER Objects/typeobject.c 8092;" d file: +RICHCMP_WRAPPER Objects/typeobject.c 8093;" d file: +RIDGE Lib/tkinter/constants.py /^RIDGE='ridge'$/;" v +RIGHT Lib/tkinter/constants.py /^RIGHT='right'$/;" v +RIGHTSHIFT Include/internal/pycore_token.h 50;" d +RIGHTSHIFT Lib/lib2to3/pgen2/token.py /^RIGHTSHIFT = 35$/;" v +RIGHTSHIFT Lib/token.py /^RIGHTSHIFT = 34$/;" v +RIGHTSHIFTEQUAL Include/internal/pycore_token.h 61;" d +RIGHTSHIFTEQUAL Lib/lib2to3/pgen2/token.py /^RIGHTSHIFTEQUAL = 46$/;" v +RIGHTSHIFTEQUAL Lib/token.py /^RIGHTSHIFTEQUAL = 45$/;" v +RIGHTSTRIP Objects/bytearrayobject.c 1862;" d file: +RIGHTSTRIP Objects/bytesobject.c 1714;" d file: +RIGHTSTRIP Objects/unicodeobject.c 11728;" d file: +RIPEMD160_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^RIPEMD160_CTX = RIPEMD160state_st$/;" v +RIPEMD160state_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class RIPEMD160state_st(Structure):$/;" c +RLock Lib/multiprocessing/context.py /^ def RLock(self):$/;" m class:BaseContext +RLock Lib/multiprocessing/synchronize.py /^class RLock(SemLock):$/;" c +RLock Lib/test/_test_multiprocessing.py /^ RLock = property(operator.attrgetter('manager.RLock'))$/;" v class:ManagerMixin +RLock Lib/test/_test_multiprocessing.py /^ RLock = staticmethod(multiprocessing.RLock)$/;" v class:ProcessesMixin +RLock Lib/test/_test_multiprocessing.py /^ RLock = staticmethod(multiprocessing.dummy.RLock)$/;" v class:ThreadsMixin +RLock Lib/threading.py /^def RLock(*args, **kwargs):$/;" f +RLockTests Lib/test/lock_tests.py /^class RLockTests(BaseLockTests):$/;" c +RM Tools/unicode/Makefile /^RM = \/bin\/rm$/;" m +RMenuTest Lib/idlelib/idle_test/test_editor.py /^class RMenuTest(unittest.TestCase):$/;" c +RO Lib/test/test_enum.py /^ RO = 0$/;" v class:OldTestFlag.Open +RO Lib/test/test_enum.py /^ RO = 0$/;" v class:OldTestIntFlag.Open +ROJO Lib/test/test_enum.py /^ ROJO = 1$/;" v class:OldTestFlag.Color +ROJO Lib/test/test_enum.py /^ ROJO = 1$/;" v class:OldTestIntFlag.Color +ROMAN Lib/tkinter/font.py /^ROMAN = "roman"$/;" v +ROOT Tools/build/generate_global_objects.py /^ROOT = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))$/;" v +ROOT Tools/cases_generator/generate_cases.py /^ROOT = os.path.join(HERE, "..\/..")$/;" v +ROOT_DIR Lib/test/test_regrtest.py /^ROOT_DIR = os.path.abspath(os.path.normpath(ROOT_DIR))$/;" v +ROOT_DIR Lib/test/test_regrtest.py /^ROOT_DIR = os.path.join(os.path.dirname(__file__), '..', '..')$/;" v +ROOT_DIR PCbuild/fix_encoding.py /^ROOT_DIR = Path(__file__).resolve().parent$/;" v +ROOT_DIR Tools/build/freeze_modules.py /^ROOT_DIR = os.path.abspath(ROOT_DIR)$/;" v +ROOT_DIR Tools/build/freeze_modules.py /^ROOT_DIR = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))$/;" v +ROOT_TYPE Parser/asdl_c.py /^ ROOT_TYPE = "AST"$/;" v class:MetadataVisitor +ROTATE Python/pyhash.c 356;" d file: +ROTATE Python/pyhash.c 358;" d file: +ROUND Lib/tkinter/constants.py /^ROUND='round'$/;" v +ROUND Modules/_blake2/impl/blake2b-ref.c 261;" d file: +ROUND Modules/_blake2/impl/blake2b-ref.c 289;" d file: +ROUND Modules/_blake2/impl/blake2b-round.h 147;" d +ROUND Modules/_blake2/impl/blake2s-ref.c 253;" d file: +ROUND Modules/_blake2/impl/blake2s-ref.c 279;" d file: +ROUND Modules/_blake2/impl/blake2s-round.h 78;" d +ROUNDED Modules/_decimal/_decimal.c 165;" d file: +ROUNDING_MODES Lib/test/test_time.py /^ROUNDING_MODES = ($/;" v +ROUNDTRIP_CASES Lib/test/test_textwrap.py /^ ROUNDTRIP_CASES = ($/;" v class:IndentTestCase +ROUND_05UP Lib/_pydecimal.py /^ROUND_05UP = 'ROUND_05UP'$/;" v +ROUND_05UP Lib/test/test_decimal.py /^ROUND_05UP = P.ROUND_05UP$/;" v +ROUND_CEILING Lib/_pydecimal.py /^ROUND_CEILING = 'ROUND_CEILING'$/;" v +ROUND_CEILING Lib/test/test_decimal.py /^ROUND_CEILING = P.ROUND_CEILING$/;" v +ROUND_CEILING Lib/test/test_time.py /^ ROUND_CEILING = 1$/;" v class:_PyTime +ROUND_DOWN Lib/_pydecimal.py /^ROUND_DOWN = 'ROUND_DOWN'$/;" v +ROUND_DOWN Lib/test/test_decimal.py /^ROUND_DOWN = P.ROUND_DOWN$/;" v +ROUND_FLOOR Lib/_pydecimal.py /^ROUND_FLOOR = 'ROUND_FLOOR'$/;" v +ROUND_FLOOR Lib/test/test_decimal.py /^ROUND_FLOOR = P.ROUND_FLOOR$/;" v +ROUND_FLOOR Lib/test/test_time.py /^ ROUND_FLOOR = 0$/;" v class:_PyTime +ROUND_HALF_DOWN Lib/_pydecimal.py /^ROUND_HALF_DOWN = 'ROUND_HALF_DOWN'$/;" v +ROUND_HALF_DOWN Lib/test/test_decimal.py /^ROUND_HALF_DOWN = P.ROUND_HALF_DOWN$/;" v +ROUND_HALF_EVEN Lib/_pydecimal.py /^ROUND_HALF_EVEN = 'ROUND_HALF_EVEN'$/;" v +ROUND_HALF_EVEN Lib/test/test_decimal.py /^ROUND_HALF_EVEN = P.ROUND_HALF_EVEN$/;" v +ROUND_HALF_EVEN Lib/test/test_time.py /^ ROUND_HALF_EVEN = 2$/;" v class:_PyTime +ROUND_HALF_UP Lib/_pydecimal.py /^ROUND_HALF_UP = 'ROUND_HALF_UP'$/;" v +ROUND_HALF_UP Lib/test/test_decimal.py /^ROUND_HALF_UP = P.ROUND_HALF_UP$/;" v +ROUND_UP Lib/_pydecimal.py /^ROUND_UP = 'ROUND_UP'$/;" v +ROUND_UP Lib/test/test_decimal.py /^ROUND_UP = P.ROUND_UP$/;" v +ROUND_UP Lib/test/test_time.py /^ ROUND_UP = 3$/;" v class:_PyTime +ROUND_UP Modules/expat/xmlparse.c 194;" d file: +ROW Lib/tkinter/tix.py /^ROW = 'row'$/;" v +RPAR Include/internal/pycore_token.h 24;" d +RPAR Lib/lib2to3/pgen2/token.py /^RPAR = 8$/;" v +RPAR Lib/token.py /^RPAR = 8$/;" v +RPAREN Tools/cases_generator/lexer.py /^RPAREN = r'\\)'$/;" v +RPCClient Lib/idlelib/rpc.py /^class RPCClient(SocketIO):$/;" c +RPCHandler Lib/idlelib/rpc.py /^class RPCHandler(socketserver.BaseRequestHandler, SocketIO):$/;" c +RPCProxy Lib/idlelib/rpc.py /^class RPCProxy:$/;" c +RPCServer Lib/idlelib/rpc.py /^class RPCServer(socketserver.TCPServer):$/;" c +RParen Lib/lib2to3/fixer_util.py /^def RParen():$/;" f +RS Lib/curses/ascii.py /^RS = 0x1e # ^^$/;" v +RSA Lib/test/test_lib2to3/data/infinite_recursion.py /^RSA = rsa_st$/;" v +RSA_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^RSA_METHOD = rsa_meth_st$/;" v +RSHIFT Tools/cases_generator/lexer.py /^RSHIFT = r'>>'$/;" v +RSP Lib/telnetlib.py /^RSP = bytes([43]) # Telnet Remote Serial Port$/;" v +RSQB Include/internal/pycore_token.h 26;" d +RSQB Lib/lib2to3/pgen2/token.py /^RSQB = 10$/;" v +RSQB Lib/token.py /^RSQB = 10$/;" v +RShift Include/internal/pycore_ast.h /^ LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12,$/;" e enum:_operator +RShift_singleton Include/internal/pycore_ast_state.h /^ PyObject *RShift_singleton;$/;" m struct:ast_state +RShift_type Include/internal/pycore_ast_state.h /^ PyObject *RShift_type;$/;" m struct:ast_state +RTLD_GLOBAL Modules/_ctypes/_ctypes.c 5775;" d file: +RTLD_LAZY Python/pystate.c 33;" d file: +RTLD_LOCAL Modules/_ctypes/_ctypes.c 5769;" d file: +RUN Lib/multiprocessing/pool.py /^RUN = "RUN"$/;" v +RUNNING Lib/concurrent/futures/_base.py /^RUNNING = 'RUNNING'$/;" v +RUNNING Lib/turtledemo/__main__.py /^RUNNING = 3$/;" v +RUNNING Lib/turtledemo/nim.py /^ RUNNING = 1$/;" v class:Nim +RUNNING_FUTURE Lib/test/test_concurrent_futures/util.py /^RUNNING_FUTURE = create_future(state=RUNNING)$/;" v +RUN_ALL_HASH_TESTS Lib/test/test_tuple.py /^RUN_ALL_HASH_TESTS = False$/;" v +RUN_KWARGS Lib/test/test_import/__init__.py /^ RUN_KWARGS = dict($/;" v class:SubinterpImportTests +RW Lib/test/test_enum.py /^ RW = 2$/;" v class:OldTestFlag.Open +RW Lib/test/test_enum.py /^ RW = 2$/;" v class:OldTestIntFlag.Open +R_OFF Modules/_csv.c 978;" d file: +R_OK Modules/posixmodule.c 3127;" d file: +R_REF Python/marshal.c 1008;" d file: +R_REF Tools/build/umarshal.py /^ def R_REF(obj: Any) -> Any:$/;" f function:Reader._r_object +RadioButton Lib/msilib/schema.py /^RadioButton = Table('RadioButton')$/;" v +RadioButtonGroup Lib/msilib/__init__.py /^class RadioButtonGroup(Control):$/;" c +Radiobutton Lib/tkinter/__init__.py /^class Radiobutton(Widget):$/;" c +Radiobutton Lib/tkinter/ttk.py /^class Radiobutton(Widget):$/;" c +RadiobuttonTest Lib/test/test_tkinter/test_widgets.py /^class RadiobuttonTest(AbstractLabelTest, unittest.TestCase):$/;" c +RadiobuttonTest Lib/test/test_ttk/test_widgets.py /^class RadiobuttonTest(AbstractLabelTest, unittest.TestCase):$/;" c +Raise Include/internal/pycore_ast.h /^ } Raise;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon68 +RaiseExc Lib/test/test_contextlib.py /^ class RaiseExc:$/;" c function:TestBaseExitStack.test_exit_exception_chaining_reference +RaiseExcWithContext Lib/test/test_contextlib.py /^ class RaiseExcWithContext:$/;" c function:TestBaseExitStack.test_exit_exception_chaining_reference +RaiseSignalTest Lib/test/test_signal.py /^class RaiseSignalTest(unittest.TestCase):$/;" c +Raise_fields Python/Python-ast.c /^static const char * const Raise_fields[]={$/;" v file: +Raise_kind Include/internal/pycore_ast.h /^ Raise_kind=17, Try_kind=18, TryStar_kind=19, Assert_kind=20,$/;" e enum:_stmt_kind +Raise_type Include/internal/pycore_ast_state.h /^ PyObject *Raise_type;$/;" m struct:ast_state +Raiser Lib/test/test_unittest/testmock/testhelpers.py /^ class Raiser(object):$/;" c function:SpecSignatureTest.test_skip_attributeerrors +RaiserClass Lib/test/test_unittest/testmock/testhelpers.py /^ class RaiserClass(object):$/;" c function:SpecSignatureTest.test_skip_attributeerrors +RaisingAwaitable Lib/test/test_asyncgen.py /^ class RaisingAwaitable:$/;" c function:AsyncGenAsyncioTest.test_anext_await_raises +RaisingBuilder Lib/test/test_xml_etree.py /^ class RaisingBuilder:$/;" c function:TreeBuilderTest.test_builder_lookup_errors +RaisingBytes Lib/test/test_long.py /^ class RaisingBytes:$/;" c function:LongTest.test_from_bytes +RaisingNumber Lib/test/test_unicode.py /^ class RaisingNumber:$/;" c function:UnicodeTest.test_formatting +RaisingTraceFuncTestCase Lib/test/test_sys_settrace.py /^class RaisingTraceFuncTestCase(unittest.TestCase):$/;" c +RandAL Tools/unicode/mkstringprep.py /^RandAL = set(gen_bidirectional(["R","AL"]))$/;" v +Random Lib/random.py /^class Random(_random.Random):$/;" c +RandomObject Modules/_randommodule.c /^} RandomObject;$/;" t typeref:struct:__anon430 file: +Random_Tests Lib/test/test_secrets.py /^class Random_Tests(unittest.TestCase):$/;" c +Random_Type Modules/_randommodule.c /^ PyObject *Random_Type;$/;" m struct:__anon429 file: +Random_Type_slots Modules/_randommodule.c /^static PyType_Slot Random_Type_slots[] = {$/;" v file: +Random_Type_spec Modules/_randommodule.c /^static PyType_Spec Random_Type_spec = {$/;" v file: +Range Lib/test/test_bisect.py /^class Range(object):$/;" c +RangeTest Lib/test/test_range.py /^class RangeTest(unittest.TestCase):$/;" c +RangeTestCase Lib/test/test_index.py /^class RangeTestCase(unittest.TestCase):$/;" c +Rat Lib/test/test_binop.py /^class Rat(object):$/;" c +Rat Lib/test/test_long.py /^ class Rat:$/;" c function:LongTest.test_mixed_compares +RatTestCase Lib/test/test_binop.py /^class RatTestCase(unittest.TestCase):$/;" c +Rational Lib/numbers.py /^class Rational(Real):$/;" c +Rational Modules/_decimal/_decimal.c /^static PyObject *Rational = NULL;$/;" v file: +RawArray Lib/multiprocessing/context.py /^ def RawArray(self, typecode_or_type, size_or_initializer):$/;" m class:BaseContext +RawArray Lib/multiprocessing/sharedctypes.py /^def RawArray(typecode_or_type, size_or_initializer):$/;" f +RawArray Lib/test/_test_multiprocessing.py /^ RawArray = staticmethod(multiprocessing.RawArray)$/;" v class:ProcessesMixin +RawConfigParser Lib/configparser.py /^class RawConfigParser(MutableMapping):$/;" c +RawConfigParserTestCase Lib/test/test_configparser.py /^class RawConfigParserTestCase(BasicTestCase, unittest.TestCase):$/;" c +RawConfigParserTestCaseNonStandardDelimiters Lib/test/test_configparser.py /^class RawConfigParserTestCaseNonStandardDelimiters(RawConfigParserTestCase):$/;" c +RawConfigParserTestSambaConf Lib/test/test_configparser.py /^class RawConfigParserTestSambaConf(CfgParserTestCaseClass, unittest.TestCase):$/;" c +RawDescriptionHelpFormatter Lib/argparse.py /^class RawDescriptionHelpFormatter(HelpFormatter):$/;" c +RawIOBase Lib/_pyio.py /^class RawIOBase(IOBase):$/;" c +RawIOBase Lib/io.py /^class RawIOBase(_io._RawIOBase, IOBase):$/;" c +RawPen Lib/turtle.py /^RawPen = RawTurtle$/;" v +RawTextHelpFormatter Lib/argparse.py /^class RawTextHelpFormatter(RawDescriptionHelpFormatter):$/;" c +RawTurtle Lib/turtle.py /^class RawTurtle(TPen, TNavigator):$/;" c +RawUnicodeEscapeTest Lib/test/test_codecs.py /^class RawUnicodeEscapeTest(ReadTest, unittest.TestCase):$/;" c +RawValue Lib/multiprocessing/context.py /^ def RawValue(self, typecode_or_type, *args):$/;" m class:BaseContext +RawValue Lib/multiprocessing/sharedctypes.py /^def RawValue(typecode_or_type, *args):$/;" f +RawValue Lib/test/_test_multiprocessing.py /^ RawValue = staticmethod(multiprocessing.RawValue)$/;" v class:ProcessesMixin +ReTests Lib/test/test_re.py /^class ReTests(unittest.TestCase):$/;" c +ReadBufferTest Lib/test/test_codecs.py /^class ReadBufferTest(unittest.TestCase):$/;" c +ReadDiskTests Lib/test/test_importlib/resources/test_read.py /^class ReadDiskTests(ReadTests, unittest.TestCase):$/;" c +ReadError Lib/shutil.py /^class ReadError(OSError):$/;" c +ReadError Lib/tarfile.py /^class ReadError(TarError):$/;" c +ReadFileTestCase Lib/test/test_configparser.py /^class ReadFileTestCase(unittest.TestCase):$/;" c +ReadNamespaceTests Lib/test/test_importlib/resources/test_read.py /^class ReadNamespaceTests(ReadTests, unittest.TestCase):$/;" c +ReadOnlySequentialNamedNodeMap Lib/xml/dom/minidom.py /^class ReadOnlySequentialNamedNodeMap(object):$/;" c +ReadSubprocessPipeProto Lib/asyncio/base_subprocess.py /^ protocols.Protocol):$/;" c +ReadTest Lib/test/test_codecs.py /^class ReadTest(MixInCheckStateHandling):$/;" c +ReadTest Lib/test/test_tarfile.py /^class ReadTest(TarTest):$/;" c +ReadTests Lib/test/test_importlib/resources/test_read.py /^class ReadTests:$/;" c +ReadTests Lib/test/test_telnetlib.py /^class ReadTests(ExpectAndReadTestCase):$/;" c +ReadTransport Lib/asyncio/transports.py /^class ReadTransport(BaseTransport):$/;" c +ReadWriteTests Lib/test/test_capi/test_structmembers.py /^class ReadWriteTests:$/;" c +ReadWriteTests_NewAPI Lib/test/test_capi/test_structmembers.py /^class ReadWriteTests_NewAPI(ReadWriteTests, unittest.TestCase):$/;" c +ReadWriteTests_OldAPI Lib/test/test_capi/test_structmembers.py /^class ReadWriteTests_OldAPI(ReadWriteTests, unittest.TestCase):$/;" c +ReadZipTests Lib/test/test_importlib/resources/test_read.py /^class ReadZipTests(ReadTests, util.ZipSetup, unittest.TestCase):$/;" c +Reader Lib/test/test_importlib/resources/util.py /^class Reader(ResourceReader):$/;" c +Reader Lib/test/test_io.py /^ class Reader(self.BufferedIOBase):$/;" c function:IOTest.test_BufferedIOBase_readinto +Reader Tools/build/umarshal.py /^class Reader:$/;" c +ReaderObj Modules/_csv.c /^} ReaderObj;$/;" t typeref:struct:__anon625 file: +Reader_Type_slots Modules/_csv.c /^static PyType_Slot Reader_Type_slots[] = {$/;" v file: +Reader_Type_spec Modules/_csv.c /^PyType_Spec Reader_Type_spec = {$/;" v +Reader_clear Modules/_csv.c /^Reader_clear(ReaderObj *self)$/;" f file: +Reader_dealloc Modules/_csv.c /^Reader_dealloc(ReaderObj *self)$/;" f file: +Reader_iternext Modules/_csv.c /^Reader_iternext(ReaderObj *self)$/;" f file: +Reader_memberlist Modules/_csv.c /^static struct PyMemberDef Reader_memberlist[] = {$/;" v typeref:struct:PyMemberDef file: +Reader_methods Modules/_csv.c /^static struct PyMethodDef Reader_methods[] = {$/;" v typeref:struct:PyMethodDef file: +Reader_traverse Modules/_csv.c /^Reader_traverse(ReaderObj *self, visitproc visit, void *arg)$/;" f file: +Readliner Lib/test/test_httplib.py /^class Readliner:$/;" c +ReadlinkTests Lib/test/test_os.py /^class ReadlinkTests(unittest.TestCase):$/;" c +ReadmoduleTests Lib/test/test_pyclbr.py /^class ReadmoduleTests(TestCase):$/;" c +Real Lib/numbers.py /^class Real(Complex):$/;" c +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_return_value +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_return_value_and_side_effect +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_return_value_and_side_effect2 +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_return_value_and_side_effect_default +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_side_effect_exception +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_side_effect_function +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_side_effect_iterable +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_customize_wrapped_object_with_side_effect_iterable_with_default +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_wraps_attributes +Real Lib/test/test_unittest/testmock/testmock.py /^ class Real(object):$/;" c function:MockTest.test_wraps_prevents_automatic_creation_of_mocks +RealLogic Lib/test/test_enum.py /^ class RealLogic(Enum):$/;" c function:TestSpecial.test_bool +RebindBuiltinsTests Lib/test/test_dynamic.py /^class RebindBuiltinsTests(unittest.TestCase):$/;" c +RebuildProxy Lib/multiprocessing/managers.py /^def RebuildProxy(func, token, serializer, kwds):$/;" f +ReceiveStuffProto Lib/test/test_asyncio/test_buffered_proto.py /^class ReceiveStuffProto(asyncio.BufferedProtocol):$/;" c +Receiver Lib/test/test_abc.py /^ class Receiver(ReceivesClassKwargs, abc_ABC, x=1, y=2, z=3):$/;" c function:test_factory.TestABCWithInitSubclass.test_works_with_init_subclass +ReceivesClassKwargs Lib/test/test_abc.py /^ class ReceivesClassKwargs:$/;" c function:test_factory.TestABCWithInitSubclass.test_works_with_init_subclass +RecorderWithDisable Lib/test/test_monitoring.py /^class RecorderWithDisable:$/;" c +Recording Lib/test/test_importlib/_path.py /^class Recording:$/;" c +RecordingFilter Lib/test/test_logging.py /^ class RecordingFilter(logging.Filter):$/;" c function:CustomLevelsAndFiltersTest.test_logging_filter_replaces_record +RecordingHandler Lib/test/test_logging.py /^class RecordingHandler(logging.NullHandler):$/;" c +RecordingOpenerDirector Lib/test/test_urllib2.py /^ class RecordingOpenerDirector(OpenerDirector):$/;" c function:HandlerTests.test_basic_and_digest_auth_handlers +RecordingPopen Lib/test/test_subprocess.py /^ class RecordingPopen(subprocess.Popen):$/;" c class:MiscTests +Rect Lib/test/test_pydoc.py /^ class Rect:$/;" c function:TestDescriptions.test_property +RecursionLimitTest Lib/idlelib/idle_test/test_run.py /^class RecursionLimitTest(unittest.TestCase):$/;" c +Recursive Lib/test/pickletester.py /^ class Recursive:$/;" c function:AbstractPickleTests.test_recursive_nested_names +Recursive Lib/test/test_ctypes/test_structures.py /^ class Recursive(Structure):$/;" c function:TestRecursiveStructure.test_contains_itself +RecursiveJSONEncoder Lib/test/test_json/test_recursion.py /^ class RecursiveJSONEncoder(self.json.JSONEncoder):$/;" c function:TestRecursion.test_defaultrecursion +RecursiveUseOfCursors Lib/test/test_sqlite3/test_regression.py /^class RecursiveUseOfCursors(unittest.TestCase):$/;" c +RecvChannel Lib/test/support/interpreters.py /^class RecvChannel(_ChannelEnd):$/;" c +RecvmsgGenericStreamTests Lib/test/test_socket.py /^class RecvmsgGenericStreamTests(RecvmsgGenericTests):$/;" c +RecvmsgGenericTests Lib/test/test_socket.py /^class RecvmsgGenericTests(SendrecvmsgBase):$/;" c +RecvmsgIntoMixin Lib/test/test_socket.py /^class RecvmsgIntoMixin(SendrecvmsgBase):$/;" c +RecvmsgIntoRFC3542AncillaryUDP6Test Lib/test/test_socket.py /^ SendrecvmsgUDP6TestBase):$/;" c +RecvmsgIntoRFC3542AncillaryUDPLITE6Test Lib/test/test_socket.py /^ SendrecvmsgUDPLITE6TestBase):$/;" c +RecvmsgIntoSCMRightsStreamTest Lib/test/test_socket.py /^ SendrecvmsgUnixStreamTestBase):$/;" c +RecvmsgIntoSCTPStreamTest Lib/test/test_socket.py /^ SendrecvmsgSCTPStreamTestBase):$/;" c +RecvmsgIntoTCPTest Lib/test/test_socket.py /^ SendrecvmsgTCPTestBase):$/;" c +RecvmsgIntoTests Lib/test/test_socket.py /^class RecvmsgIntoTests(RecvmsgIntoMixin, RecvmsgGenericTests):$/;" c +RecvmsgIntoUDP6Test Lib/test/test_socket.py /^class RecvmsgIntoUDP6Test(RecvmsgIntoTests, SendrecvmsgUDP6TestBase):$/;" c +RecvmsgIntoUDPLITE6Test Lib/test/test_socket.py /^class RecvmsgIntoUDPLITE6Test(RecvmsgIntoTests, SendrecvmsgUDPLITE6TestBase):$/;" c +RecvmsgIntoUDPLITETest Lib/test/test_socket.py /^class RecvmsgIntoUDPLITETest(RecvmsgIntoTests, SendrecvmsgUDPLITETestBase):$/;" c +RecvmsgIntoUDPTest Lib/test/test_socket.py /^class RecvmsgIntoUDPTest(RecvmsgIntoTests, SendrecvmsgUDPTestBase):$/;" c +RecvmsgIntoUnixStreamTest Lib/test/test_socket.py /^ SendrecvmsgUnixStreamTestBase):$/;" c +RecvmsgRFC3542AncillaryUDP6Test Lib/test/test_socket.py /^ SendrecvmsgUDP6TestBase):$/;" c +RecvmsgRFC3542AncillaryUDPLITE6Test Lib/test/test_socket.py /^ SendrecvmsgUDPLITE6TestBase):$/;" c +RecvmsgSCMRightsStreamTest Lib/test/test_socket.py /^class RecvmsgSCMRightsStreamTest(SCMRightsTest, SendrecvmsgUnixStreamTestBase):$/;" c +RecvmsgSCTPStreamTest Lib/test/test_socket.py /^ SendrecvmsgSCTPStreamTestBase):$/;" c +RecvmsgTCPTest Lib/test/test_socket.py /^ SendrecvmsgTCPTestBase):$/;" c +RecvmsgTests Lib/test/test_socket.py /^class RecvmsgTests(RecvmsgGenericTests):$/;" c +RecvmsgUDP6Test Lib/test/test_socket.py /^class RecvmsgUDP6Test(RecvmsgTests, SendrecvmsgUDP6TestBase):$/;" c +RecvmsgUDPLITE6Test Lib/test/test_socket.py /^class RecvmsgUDPLITE6Test(RecvmsgTests, SendrecvmsgUDPLITE6TestBase):$/;" c +RecvmsgUDPLITETest Lib/test/test_socket.py /^class RecvmsgUDPLITETest(RecvmsgTests, SendrecvmsgUDPLITETestBase):$/;" c +RecvmsgUDPTest Lib/test/test_socket.py /^class RecvmsgUDPTest(RecvmsgTests, SendrecvmsgUDPTestBase):$/;" c +RecvmsgUnixStreamTest Lib/test/test_socket.py /^ SendrecvmsgUnixStreamTestBase):$/;" c +Redefined Lib/test/test_sqlite3/test_userfunctions.py /^ class Redefined(WindowSumInt):$/;" c function:WindowFunctionTests.test_win_redefine_function +RefClass Lib/test/test_support.py /^ class RefClass:$/;" c class:TestSupport +RefCycle Lib/test/test_weakref.py /^class RefCycle:$/;" c +RefCycle Lib/test/test_weakset.py /^class RefCycle:$/;" c +RefactoringTool Lib/lib2to3/refactor.py /^class RefactoringTool(object):$/;" c +RefcountTestCase Lib/test/test_ctypes/test_refcounts.py /^class RefcountTestCase(unittest.TestCase):$/;" c +ReferencesTestCase Lib/test/test_weakref.py /^class ReferencesTestCase(TestBase):$/;" c +ReformatCommentTest Lib/idlelib/idle_test/test_format.py /^class ReformatCommentTest(unittest.TestCase):$/;" c +ReformatFunctionTest Lib/idlelib/idle_test/test_format.py /^class ReformatFunctionTest(unittest.TestCase):$/;" c +ReformedColor Lib/test/test_enum.py /^ class ReformedColor(StrMixin, IntEnum, SomeEnum, AnotherEnum):$/;" c function:TestSpecial.test_multiple_mixin +Reg Tools/c-analyzer/distutils/msvc9compiler.py /^class Reg:$/;" c +Reg2Py PC/winreg.c /^Reg2Py(BYTE *retDataBuf, DWORD retDataSize, DWORD typ)$/;" f file: +RegEnumKey Tools/c-analyzer/distutils/msvc9compiler.py /^RegEnumKey = winreg.EnumKey$/;" v +RegEnumKey Tools/c-analyzer/distutils/msvccompiler.py /^ RegEnumKey = win32api.RegEnumKey$/;" v +RegEnumKey Tools/c-analyzer/distutils/msvccompiler.py /^ RegEnumKey = winreg.EnumKey$/;" v +RegEnumValue Tools/c-analyzer/distutils/msvc9compiler.py /^RegEnumValue = winreg.EnumValue$/;" v +RegEnumValue Tools/c-analyzer/distutils/msvccompiler.py /^ RegEnumValue = win32api.RegEnumValue$/;" v +RegEnumValue Tools/c-analyzer/distutils/msvccompiler.py /^ RegEnumValue = winreg.EnumValue$/;" v +RegError Tools/c-analyzer/distutils/msvc9compiler.py /^RegError = winreg.error$/;" v +RegError Tools/c-analyzer/distutils/msvccompiler.py /^ RegError = win32api.error$/;" v +RegError Tools/c-analyzer/distutils/msvccompiler.py /^ RegError = winreg.error$/;" v +RegLocator Lib/msilib/schema.py /^RegLocator = Table('RegLocator')$/;" v +RegOpenKeyEx Tools/c-analyzer/distutils/msvc9compiler.py /^RegOpenKeyEx = winreg.OpenKeyEx$/;" v +RegOpenKeyEx Tools/c-analyzer/distutils/msvccompiler.py /^ RegOpenKeyEx = win32api.RegOpenKeyEx$/;" v +RegOpenKeyEx Tools/c-analyzer/distutils/msvccompiler.py /^ RegOpenKeyEx = winreg.OpenKeyEx$/;" v +Regen PCbuild/build.bat /^:Regen$/;" l +Regen PCbuild/build.bat /^if "%~1"=="--regen" (set Regen=true) & shift & goto CheckOpts$/;" v +RegexFlag Lib/re/__init__.py /^class RegexFlag:$/;" c +Registry Lib/msilib/schema.py /^Registry = Table('Registry')$/;" v +RegistryError Lib/shutil.py /^class RegistryError(Exception):$/;" c +RegistrySearchInfo PC/launcher2.c /^struct RegistrySearchInfo {$/;" s file: +RegressionTestResult Lib/test/support/testresult.py /^class RegressionTestResult(unittest.TextTestResult):$/;" c +RegressionTests Lib/test/test_itertools.py /^class RegressionTests(unittest.TestCase):$/;" c +RegressionTests Lib/test/test_sqlite3/test_regression.py /^class RegressionTests(unittest.TestCase):$/;" c +Regrtest Lib/test/libregrtest/main.py /^class Regrtest:$/;" c +Regular Lib/test/test_typing.py /^ class Regular:$/;" c function:TypedDictTests.test_multiple_inheritance +ReindentTests Lib/test/test_tools/test_reindent.py /^class ReindentTests(unittest.TestCase):$/;" c +Reindenter Tools/patchcheck/reindent.py /^class Reindenter:$/;" c +RejectAllRobotsTest Lib/test/test_robotparser.py /^class RejectAllRobotsTest(BaseRobotTest, unittest.TestCase):$/;" c +Rejecter Lib/xml/dom/expatbuilder.py /^class Rejecter(FilterCrutch):$/;" c +RejectingSocketlessRequestHandler Lib/test/test_httpservers.py /^class RejectingSocketlessRequestHandler(SocketlessRequestHandler):$/;" c +RelativeError Lib/test/test_math.py /^ def RelativeError(res, ex):$/;" f function:MathTests.test_sumprod_extended_precision_accuracy +RelativeImportTests Lib/test/test_import/__init__.py /^class RelativeImportTests(unittest.TestCase):$/;" c +RelativeImports Lib/test/test_importlib/import_/test_relative_imports.py /^class RelativeImports:$/;" c +ReleasableBuffer Lib/test/test_typing.py /^ class ReleasableBuffer(collections.abc.Buffer, Protocol):$/;" c function:ProtocolTests.test_collections_protocols_allowed +Releaser Lib/test/test_buffer.py /^ class Releaser:$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last +Releaser Lib/test/test_buffer.py /^ class Releaser:$/;" c function:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising +ReloadTests Lib/test/test_importlib/test_api.py /^class ReloadTests:$/;" c +ReloadTests Lib/test/test_importlib/test_namespace_pkgs.py /^class ReloadTests(NamespacePackageTest):$/;" c +RemapColor Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void RemapColor(COLORREF *fg, COLORREF *bg, HBRUSH *bgBrush) {$/;" f class:PythonBootstrapperApplication file: +RemoteDisconnected Lib/http/client.py /^class RemoteDisconnected(ConnectionResetError, BadStatusLine):$/;" c +RemoteError Lib/multiprocessing/managers.py /^class RemoteError(Exception):$/;" c +RemoteIMAPTest Lib/test/test_imaplib.py /^class RemoteIMAPTest(unittest.TestCase):$/;" c +RemoteIMAP_SSLTest Lib/test/test_imaplib.py /^class RemoteIMAP_SSLTest(RemoteIMAPTest):$/;" c +RemoteIMAP_STARTTLSTest Lib/test/test_imaplib.py /^class RemoteIMAP_STARTTLSTest(RemoteIMAPTest):$/;" c +RemoteObject Lib/idlelib/rpc.py /^class RemoteObject:$/;" c +RemoteProxy Lib/idlelib/rpc.py /^class RemoteProxy:$/;" c +RemoteTraceback Lib/multiprocessing/pool.py /^class RemoteTraceback(Exception):$/;" c +RemoteWinregTests Lib/test/test_winreg.py /^class RemoteWinregTests(BaseWinregTests):$/;" c +RemoveDirsTests Lib/test/test_os.py /^class RemoveDirsTests(unittest.TestCase):$/;" c +RemoveEmptySections Lib/idlelib/config.py /^ def RemoveEmptySections(self):$/;" m class:IdleUserConfParser +RemoveFile Lib/msilib/schema.py /^RemoveFile = Table('RemoveFile')$/;" v +RemoveIniFile Lib/msilib/schema.py /^RemoveIniFile = Table('RemoveIniFile')$/;" v +RemoveKeyBindNames Lib/idlelib/config.py /^ def RemoveKeyBindNames(self, extnNameList):$/;" m class:IdleConf +RemoveKeybindings Lib/idlelib/editor.py /^ def RemoveKeybindings(self):$/;" m class:EditorWindow +RemoveOption Lib/idlelib/config.py /^ def RemoveOption(self, section, option):$/;" m class:IdleUserConfParser +RemoveRegistry Lib/msilib/schema.py /^RemoveRegistry = Table('RemoveRegistry')$/;" v +ReopenForRead Lib/test/test_fileio.py /^ def ReopenForRead(self):$/;" m class:AutoFileTests +Reparent Lib/test/test_tkinter/test_misc.py /^ Reparent = '21'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Reparent Lib/tkinter/__init__.py /^ Reparent = '21'$/;" v class:EventType +ReparseDataLength Modules/winreparse.h /^ USHORT ReparseDataLength;$/;" m struct:__anon316 +ReparseTag Include/internal/pycore_fileutils_windows.h /^ ULONG ReparseTag;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +ReparseTag Modules/winreparse.h /^ ULONG ReparseTag;$/;" m struct:__anon316 +Repeat Tools/peg_generator/pegen/grammar.py /^class Repeat:$/;" c +Repeat0 Tools/peg_generator/pegen/grammar.py /^class Repeat0(Repeat):$/;" c +Repeat1 Tools/peg_generator/pegen/grammar.py /^class Repeat1(Repeat):$/;" c +RepeatedPosReturn Lib/test/test_codeccallbacks.py /^class RepeatedPosReturn:$/;" c +Repeater Lib/test/test_itertools.py /^ class Repeater:$/;" c function:TestBasicOps.test_bug_7244 +ReplaceDialog Lib/idlelib/replace.py /^class ReplaceDialog(SearchDialogBase):$/;" c +ReplaceDialogTest Lib/idlelib/idle_test/test_replace.py /^class ReplaceDialogTest(unittest.TestCase):$/;" c +ReplaceGlobalInt Lib/test/test_enum.py /^ class ReplaceGlobalInt(IntEnum):$/;" c function:TestSpecial.test_pickle_by_name +ReplacePackage Lib/modulefinder.py /^def ReplacePackage(oldname, newname):$/;" f +ReplaceTests Lib/test/test_tarfile.py /^class ReplaceTests(ReadTest, unittest.TestCase):$/;" c +ReplacingLoader Lib/test/test_importlib/test_spec.py /^ class ReplacingLoader(TestLoader):$/;" c function:ModuleSpecMethodsTests.test_load_replaced +Repr Lib/reprlib.py /^class Repr:$/;" c +ReprEnum Lib/enum.py /^class ReprEnum(Enum):$/;" c +ReprTest Lib/test/test_ctypes/test_repr.py /^class ReprTest(unittest.TestCase):$/;" c +ReprTest Lib/test/test_frame.py /^class ReprTest(unittest.TestCase):$/;" c +ReprTestCase Lib/test/test_float.py /^class ReprTestCase(unittest.TestCase):$/;" c +ReprTests Lib/test/test_reprlib.py /^class ReprTests(unittest.TestCase):$/;" c +ReprWrapper Lib/test/test_set.py /^class ReprWrapper:$/;" c +Request Lib/urllib/request.py /^class Request:$/;" c +RequestBodyTest Lib/test/test_httplib.py /^class RequestBodyTest(TestCase):$/;" c +RequestCodeExtraIndex Lib/test/test_code.py /^ RequestCodeExtraIndex = py.PyUnstable_Eval_RequestCodeExtraIndex$/;" v class:CodeLocationTest +RequestHandler Lib/test/test_xmlrpc.py /^ class RequestHandler(http.server.BaseHTTPRequestHandler):$/;" c function:XMLRPCTestCase.test_keepalive_disconnect +RequestHandler Lib/test/test_xmlrpc.py /^ class RequestHandler(xmlrpc.server.SimpleXMLRPCRequestHandler):$/;" c class:BaseKeepaliveServerTestCase +RequestHandler Lib/test/test_xmlrpc.py /^ class RequestHandler(xmlrpc.server.SimpleXMLRPCRequestHandler):$/;" c class:GzipServerTestCase +RequestHandler Lib/test/test_xmlrpc.py /^ class RequestHandler(xmlrpc.server.SimpleXMLRPCRequestHandler):$/;" c class:HeadersServerTestCase +RequestHandlerLoggingTestCase Lib/test/test_httpservers.py /^class RequestHandlerLoggingTestCase(BaseTestCase):$/;" c +RequestHdrsTests Lib/test/test_urllib2.py /^class RequestHdrsTests(unittest.TestCase):$/;" c +RequestRate Lib/urllib/robotparser.py /^RequestRate = collections.namedtuple("RequestRate", "requests seconds")$/;" v +RequestTests Lib/test/test_urllib.py /^class RequestTests(unittest.TestCase):$/;" c +RequestTests Lib/test/test_urllib2.py /^class RequestTests(unittest.TestCase):$/;" c +Required Lib/typing.py /^def Required(self, parameters):$/;" f +RequiredTests Lib/test/test_typing.py /^class RequiredTests(BaseTestCase):$/;" c +ReraiseRecorder Lib/test/test_monitoring.py /^class ReraiseRecorder(ExceptionRecorder):$/;" c +Rerun Lib/test/test_regrtest.py /^class Rerun:$/;" c +ReserveCost Lib/msilib/schema.py /^ReserveCost = Table('ReserveCost')$/;" v +Reserved Include/internal/pycore_fileutils_windows.h /^ ULONG Reserved;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +Reserved Modules/winreparse.h /^ USHORT Reserved;$/;" m struct:__anon316 +ResetColorizer Lib/idlelib/editor.py /^ def ResetColorizer(self):$/;" m class:EditorWindow +ResetColorizer Lib/idlelib/pyshell.py /^ def ResetColorizer(self):$/;" m class:PyShell +ResetFont Lib/idlelib/editor.py /^ def ResetFont(self):$/;" m class:EditorWindow +ResetFont Lib/idlelib/pyshell.py /^ def ResetFont(self):$/;" m class:PyShell +ResizeHandle Lib/tkinter/tix.py /^class ResizeHandle(TixWidget):$/;" c +ResizeRequest Lib/test/test_tkinter/test_misc.py /^ ResizeRequest = '25'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +ResizeRequest Lib/tkinter/__init__.py /^ ResizeRequest = '25'$/;" v class:EventType +ResolveNameTests Lib/test/test_importlib/test_util.py /^class ResolveNameTests:$/;" c +Resource Lib/importlib/resources/_legacy.py /^Resource = str$/;" v +ResourceContainer Lib/importlib/resources/simple.py /^class ResourceContainer(Traversable):$/;" c +ResourceCornerCaseTests Lib/test/test_importlib/resources/test_resource.py /^class ResourceCornerCaseTests(unittest.TestCase):$/;" c +ResourceDenied Lib/test/support/__init__.py /^class ResourceDenied(unittest.SkipTest):$/;" c +ResourceDiskTests Lib/test/test_importlib/resources/test_resource.py /^class ResourceDiskTests(ResourceTests, unittest.TestCase):$/;" c +ResourceFromNamespaceTest01 Lib/test/test_importlib/resources/test_resource.py /^class ResourceFromNamespaceTest01(unittest.TestCase):$/;" c +ResourceFromZipsTest01 Lib/test/test_importlib/resources/test_resource.py /^class ResourceFromZipsTest01(util.ZipSetupBase, unittest.TestCase):$/;" c +ResourceFromZipsTest02 Lib/test/test_importlib/resources/test_resource.py /^class ResourceFromZipsTest02(util.ZipSetupBase, unittest.TestCase):$/;" c +ResourceHandle Lib/importlib/resources/simple.py /^class ResourceHandle(Traversable):$/;" c +ResourceLoader Lib/importlib/abc.py /^class ResourceLoader(Loader):$/;" c +ResourceLoader Lib/test/test_importlib/test_abc.py /^class ResourceLoader(InheritanceTests):$/;" c +ResourceLoader Lib/test/test_importlib/test_abc.py /^class ResourceLoader(Loader):$/;" c +ResourceLoaderDefaultsTests Lib/test/test_importlib/test_abc.py /^class ResourceLoaderDefaultsTests(ABCTestHarness):$/;" c +ResourceLoaderTests Lib/test/test_importlib/resources/test_resource.py /^class ResourceLoaderTests(unittest.TestCase):$/;" c +ResourceReader Lib/importlib/resources/abc.py /^class ResourceReader(metaclass=abc.ABCMeta):$/;" c +ResourceReader Lib/test/test_importlib/test_abc.py /^class ResourceReader:$/;" c +ResourceTest Lib/test/test_resource.py /^class ResourceTest(unittest.TestCase):$/;" c +ResourceTests Lib/test/test_importlib/resources/test_resource.py /^class ResourceTests:$/;" c +ResourceTracker Lib/multiprocessing/resource_tracker.py /^class ResourceTracker(object):$/;" c +ResourceZipTests Lib/test/test_importlib/resources/test_resource.py /^class ResourceZipTests(ResourceTests, util.ZipSetup, unittest.TestCase):$/;" c +Response Lib/test/test_httplib.py /^ class Response(client.HTTPResponse):$/;" c function:BasicTest.test_error_leak +ResponseError Lib/xmlrpc/client.py /^class ResponseError(Error):$/;" c +ResponseException Lib/test/test_smtplib.py /^class ResponseException(Exception): pass$/;" c +ResponseNotReady Lib/http/client.py /^class ResponseNotReady(ImproperConnectionState):$/;" c +Response_code Lib/imaplib.py /^Response_code = re.compile(br'\\[(?P[A-Z-]+)( (?P.*))?\\]')$/;" v +Restart Lib/pdb.py /^class Restart(Exception):$/;" c +RestrictedDecimal Modules/_decimal/tests/deccheck.py /^def RestrictedDecimal(value):$/;" f +RestrictedList Modules/_decimal/tests/deccheck.py /^class RestrictedList(list):$/;" c +ResultBase Lib/urllib/parse.py /^ResultBase = _NetlocResultMixinStr$/;" v +ResultTokenWithMetadata Parser/pegen.h /^} ResultTokenWithMetadata;$/;" t typeref:struct:__anon666 +ResultWithNoStartTestRunStopTestRun Lib/test/test_unittest/support.py /^class ResultWithNoStartTestRunStopTestRun(object):$/;" c +Return Include/internal/pycore_ast.h /^ } Return;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon55 +ReturnConverterDict Tools/clinic/clinic.py /^ReturnConverterDict = dict[str, ReturnConverterType]$/;" v +ReturnConverterType Tools/clinic/clinic.py /^ReturnConverterType = Callable[..., "CReturnConverter"]$/;" v +ReturnFuncPtrTestCase Lib/test/test_ctypes/test_returnfuncptrs.py /^class ReturnFuncPtrTestCase(unittest.TestCase):$/;" c +ReturnRecorder Lib/test/test_monitoring.py /^class ReturnRecorder:$/;" c +ReturnStructSizesTestCase Lib/test/test_ctypes/test_win32.py /^class ReturnStructSizesTestCase(unittest.TestCase):$/;" c +ReturnValue Lib/test/test_importlib/import_/test_fromlist.py /^class ReturnValue:$/;" c +Return_fields Python/Python-ast.c /^static const char * const Return_fields[]={$/;" v file: +Return_kind Include/internal/pycore_ast.h /^ Return_kind=4, Delete_kind=5, Assign_kind=6,$/;" e enum:_stmt_kind +Return_type Include/internal/pycore_ast_state.h /^ PyObject *Return_type;$/;" m struct:ast_state +ReusedCachedProperty Lib/test/test_functools.py /^ class ReusedCachedProperty:$/;" c function:TestCachedProperty.test_reuse_different_names +Rev Lib/test/test_collections.py /^ class Rev:$/;" c function:TestOneTrickPonyABCs.test_Reversible +RevItBlocked Lib/test/test_collections.py /^ class RevItBlocked(Rev):$/;" c function:TestOneTrickPonyABCs.test_Reversible +RevNoIter Lib/test/test_collections.py /^ class RevNoIter:$/;" c function:TestOneTrickPonyABCs.test_Reversible +RevPlusIter Lib/test/test_collections.py /^ class RevPlusIter(RevNoIter):$/;" c function:TestOneTrickPonyABCs.test_Reversible +RevRevBlocked Lib/test/test_collections.py /^ class RevRevBlocked(Rev):$/;" c function:TestOneTrickPonyABCs.test_Reversible +RevealTypeTests Lib/test/test_typing.py /^class RevealTypeTests(BaseTestCase):$/;" c +ReverseSearchTest Lib/idlelib/idle_test/test_searchengine.py /^class ReverseSearchTest(unittest.TestCase):$/;" c +Reversible Lib/_collections_abc.py /^class Reversible(Iterable):$/;" c +Reversible Lib/typing.py /^Reversible = _alias(collections.abc.Reversible, 1)$/;" v +RewriteSymbolics Lib/inspect.py /^ class RewriteSymbolics(ast.NodeTransformer):$/;" c function:_signature_fromstr +Rhs Tools/peg_generator/pegen/grammar.py /^class Rhs:$/;" c +Right Lib/test/test_compare.py /^ class Right:$/;" c function:ComparisonSimpleTest.test_ne_high_priority +Right Lib/test/test_subclassinit.py /^ class Right(Base):$/;" c function:Test.test_init_subclass_diamond +RobotFileParser Lib/urllib/robotparser.py /^class RobotFileParser:$/;" c +RobotHandler Lib/test/test_robotparser.py /^class RobotHandler(BaseHTTPRequestHandler):$/;" c +RollbackImporter Tools/unittestgui/unittestgui.py /^class RollbackImporter:$/;" c +RollbackTests Lib/test/test_sqlite3/test_transactions.py /^class RollbackTests(unittest.TestCase):$/;" c +Root Lib/test/test_dataclasses.py /^ class Root:$/;" c function:TestSlots.test_cant_inherit_from_iterator_slots +Root Lib/test/test_dataclasses.py /^ class Root:$/;" c function:TestSlots.test_generated_slots_value +Root2 Lib/test/test_dataclasses.py /^ class Root2(Root):$/;" c function:TestSlots.test_cant_inherit_from_iterator_slots +Root2 Lib/test/test_dataclasses.py /^ class Root2(Root):$/;" c function:TestSlots.test_generated_slots_value +Root3 Lib/test/test_dataclasses.py /^ class Root3(Root2):$/;" c function:TestSlots.test_generated_slots_value +Root4 Lib/test/test_dataclasses.py /^ class Root4(Root3):$/;" c function:TestSlots.test_generated_slots_value +RootLogger Lib/logging/__init__.py /^class RootLogger(Logger):$/;" c +RootedHTTPRequestHandler Lib/test/ssl_servers.py /^class RootedHTTPRequestHandler(SimpleHTTPRequestHandler):$/;" c +Rot13Test Lib/test/test_codecs.py /^class Rot13Test(unittest.TestCase):$/;" c +Rot13UtilTest Lib/test/test_codecs.py /^class Rot13UtilTest(unittest.TestCase):$/;" c +RotatingFileHandler Lib/logging/handlers.py /^class RotatingFileHandler(BaseRotatingHandler):$/;" c +RotatingFileHandlerTest Lib/test/test_logging.py /^class RotatingFileHandlerTest(BaseFileTest):$/;" c +RotatingTree_Add Modules/rotatingtree.c /^RotatingTree_Add(rotating_node_t **root, rotating_node_t *node)$/;" f +RotatingTree_Enum Modules/rotatingtree.c /^RotatingTree_Enum(rotating_node_t *root, rotating_tree_enum_fn enumfn,$/;" f +RotatingTree_Get Modules/rotatingtree.c /^RotatingTree_Get(rotating_node_t **root, void *key)$/;" f +RoundModes Modules/_decimal/tests/deccheck.py /^RoundModes = [C.ROUND_UP, C.ROUND_DOWN, C.ROUND_CEILING, C.ROUND_FLOOR,$/;" v +RoundTestCase Lib/test/test_float.py /^class RoundTestCase(unittest.TestCase):$/;" c +Rounded Lib/_pydecimal.py /^class Rounded(DecimalException):$/;" c +Rounding Python/dtoa.c 271;" d file: +RoundingModes Lib/test/test_decimal.py /^RoundingModes = [$/;" v +RouteComponentMarker Lib/email/_header_value_parser.py /^RouteComponentMarker = ValueTerminal('@', 'route-component-marker')$/;" v +RowFactoryTests Lib/test/test_sqlite3/test_factory.py /^class RowFactoryTests(unittest.TestCase):$/;" c +RowFactoryTestsBackwardsCompat Lib/test/test_sqlite3/test_factory.py /^class RowFactoryTestsBackwardsCompat(unittest.TestCase):$/;" c +RowType Modules/_sqlite/module.h /^ PyTypeObject *RowType;$/;" m struct:__anon355 +Rstrip Lib/idlelib/format.py /^class Rstrip: # 'Strip Trailing Whitespace" on "Format" menu.$/;" c +RstripTest Lib/idlelib/idle_test/test_format.py /^class RstripTest(unittest.TestCase):$/;" c +Rule Tools/peg_generator/pegen/grammar.py /^class Rule:$/;" c +RuleCheckingVisitor Tools/peg_generator/pegen/parser_generator.py /^class RuleCheckingVisitor(GrammarVisitor):$/;" c +RuleCollectorVisitor Tools/peg_generator/pegen/parser_generator.py /^class RuleCollectorVisitor(GrammarVisitor):$/;" c +RuleLine Lib/urllib/robotparser.py /^class RuleLine:$/;" c +RuleList Tools/peg_generator/pegen/grammar.py /^RuleList = List[Rule]$/;" v +RuleName Tools/peg_generator/pegen/grammar.py /^RuleName = Tuple[str, str]$/;" v +Run PCbuild/build.bat /^:Run$/;" l +Run PCbuild/prepare_libffi.bat /^:Run$/;" l +Run PCbuild/prepare_ssl.bat /^:Run$/;" l +Run PCbuild/prepare_tcltk.bat /^:Run$/;" l +RunCoroutineThreadsafeTests Lib/test/test_asyncio/test_tasks.py /^class RunCoroutineThreadsafeTests(test_utils.TestCase):$/;" c +RunFailedError Modules/_xxsubinterpretersmodule.c /^ PyObject *RunFailedError;$/;" m struct:__anon652 file: +RunFuncTestCase Lib/test/test_subprocess.py /^class RunFuncTestCase(BaseTestCase):$/;" c +RunModuleTestCase Lib/test/test_runpy.py /^class RunModuleTestCase(unittest.TestCase, CodeExecutionMixin):$/;" c +RunPathTestCase Lib/test/test_runpy.py /^class RunPathTestCase(unittest.TestCase, CodeExecutionMixin):$/;" c +RunPyMixin Lib/test/test_launcher.py /^class RunPyMixin:$/;" c +RunSelfFunction Lib/test/test_threading.py /^ class RunSelfFunction(object):$/;" c function:ThreadTests.test_no_refcycle_through_target +RunStringTests Lib/test/test__xxsubinterpreters.py /^class RunStringTests(TestBase):$/;" c +RunTestCase Lib/test/test_bdb.py /^class RunTestCase(BaseTestCase):$/;" c +RunTests Lib/test/libregrtest/runtest.py /^class RunTests:$/;" c +RunTests Lib/test/test_asyncio/test_runners.py /^class RunTests(BaseTest):$/;" c +RunWarnTest Lib/idlelib/idle_test/test_warning.py /^class RunWarnTest(unittest.TestCase):$/;" c +Runner Lib/asyncio/runners.py /^class Runner:$/;" c +Runner Lib/test/test_unittest/test_runner.py /^ class Runner(unittest.TextTestRunner):$/;" c function:Test_TextTestRunner.test_works_with_result_without_startTestRun_stopTestRun +RunnerTests Lib/test/test_asyncio/test_runners.py /^class RunnerTests(BaseTest):$/;" c +RunningLoopTests Lib/test/test_asyncio/test_base_events.py /^class RunningLoopTests(unittest.TestCase):$/;" c +RunningOnValgrind Python/dynamic_annotations.c /^int RunningOnValgrind(void) {$/;" f +RuntimeErrorSubclass Lib/test/test_contextlib.py /^ class RuntimeErrorSubclass(RuntimeError):$/;" c function:ContextManagerTestCase.test_contextmanager_traceback +RuntimeErrorSubclass Lib/test/test_contextlib_async.py /^ class RuntimeErrorSubclass(RuntimeError):$/;" c function:AsyncContextManagerTestCase.test_contextmanager_traceback +Rx Lib/test/test_long.py /^ Rx = Rat(x)$/;" v class:LongTest.test_mixed_compares.Rat +S Lib/idlelib/idle_test/test_run.py /^class S(str):$/;" c +S Lib/test/ann_module.py /^class S(metaclass = Meta):$/;" c +S Lib/test/test_abc.py /^ class S(metaclass=abc_ABCMeta):$/;" c class:test_factory.TestABC.test_issubclass_bad_arguments.C +S Lib/test/test_abc.py /^ class S(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABC.test_issubclass_bad_arguments +S Lib/test/test_ast.py /^ class S(str): pass$/;" c function:AST_Tests.test_isinstance +S Lib/test/test_binop.py /^class S(SupEq):$/;" c +S Lib/test/test_bytes.py /^ class S:$/;" c function:BaseBytesTest.test_from_iterable +S Lib/test/test_capi/test_misc.py /^ class S(cls, cls2):$/;" c class:CAPITest.test_multiple_inheritance_ctypes_with_weakref_or_dict_and_other_builtin.C4 +S Lib/test/test_ctypes/test_byteswap.py /^ class S(Structure):$/;" c function:Test.test_unaligned_native_struct_fields +S Lib/test/test_ctypes/test_byteswap.py /^ class S(base):$/;" c function:Test.test_struct_field_alignment +S Lib/test/test_ctypes/test_byteswap.py /^ class S(base):$/;" c function:Test.test_unaligned_nonnative_struct_fields +S Lib/test/test_ctypes/test_cfuncs.py /^ def S(self):$/;" m class:CFunctions +S Lib/test/test_ctypes/test_structures.py /^ class S(Structure):$/;" c function:StructureTestCase.test_huge_field_name.create_class +S Lib/test/test_ctypes/test_structures.py /^ class S(Structure):$/;" c function:StructureTestCase.test_invalid_name.declare_with_name +S Lib/test/test_ctypes/test_structures.py /^ class S(Structure):$/;" c function:PointerMemberTestCase.test +S Lib/test/test_ctypes/test_structures.py /^ class S(Structure):$/;" c function:PointerMemberTestCase.test_none_to_pointer_fields +S Lib/test/test_ctypes/test_win32.py /^ class S(Structure):$/;" c function:ReturnStructSizesTestCase.test_sizes +S Lib/test/test_dataclasses.py /^ class S(D):$/;" c function:TestFrozen.test_non_frozen_normal_derived +S Lib/test/test_dataclasses.py /^ class S(D):$/;" c function:TestFrozen.test_non_frozen_normal_derived_from_empty_frozen +S Lib/test/test_descr.py /^ class S(str): # Not interned$/;" c function:PicklingTests.test_issue24097 +S Lib/test/test_descr.py /^ class S(str):$/;" c function:.test_binary_operator_override +S Lib/test/test_descr.py /^ class S(str):$/;" c function:.test_slices +S Lib/test/test_dict.py /^ class S(str):$/;" c function:DictTest.test_dict_contain_use_after_free +S Lib/test/test_functools.py /^ class S:$/;" c function:TestSingleDispatch.test_mro_conflicts +S Lib/test/test_heapq.py /^class S:$/;" c +S Lib/test/test_inspect.py /^ class S:$/;" c function:TestSignatureObject.test_signature_as_callable +S Lib/test/test_inspect.py /^ class S:$/;" c function:TestSignatureObject.test_signature_as_str +S Lib/test/test_isinstance.py /^ class S(C): pass$/;" c function:TestIsSubclassExceptions.test_dont_mask_non_attribute_error +S Lib/test/test_isinstance.py /^ class S(C): pass$/;" c function:TestIsSubclassExceptions.test_mask_attribute_error +S Lib/test/test_itertools.py /^class S:$/;" c +S Lib/test/test_re.py /^class S(str):$/;" c +S Lib/test/test_set.py /^class S:$/;" c +S Lib/test/test_sys.py /^ class S(set):$/;" c function:SizeofTest.test_slots +S Lib/test/test_sys.py /^ class S(str):$/;" c function:SysModuleTest.test_intern +S Lib/test/test_typing.py /^ class S(collections.abc.MutableSequence): ...$/;" c function:CollectionsAbcTests.test_collections_as_base +S Lib/test/test_unicode.py /^ class S(str):$/;" c function:UnicodeTest.test_format_subclass +S Lib/test/test_unicode.py /^ class S(str):$/;" c function:UnicodeTest.test_subclass_add +S Lib/tkinter/constants.py /^S='s'$/;" v +S Modules/_blake2/impl/blake2.h /^ blake2b_state S[4][1];$/;" m struct:__blake2bp_state +S Modules/_blake2/impl/blake2.h /^ blake2s_state S[8][1];$/;" m struct:__blake2sp_state +S Modules/_ctypes/_ctypes_test.c /^ short M: 1, N: 2, O: 3, P: 4, Q: 5, R: 6, S: 7;$/;" m struct:BITS file: +S Modules/_ctypes/_ctypes_test.c 634;" d file: +S1 Lib/test/test_patma.py /^ class S1(collections.UserList, collections.abc.Mapping):$/;" c function:TestInheritance.test_multiple_inheritance_sequence +S2 Lib/test/test_patma.py /^ class S2(C, collections.UserList, collections.abc.Mapping):$/;" c function:TestInheritance.test_multiple_inheritance_sequence +S2H Lib/test/test_ctypes/test_as_parameter.py /^ class S2H(Structure):$/;" c function:BasicWrapTestCase.test_struct_return_2H +S2H Lib/test/test_ctypes/test_functions.py /^ class S2H(Structure):$/;" c function:FunctionTestCase.test_struct_return_2H +S2H Lib/test/test_ctypes/test_functions.py /^ class S2H(Structure):$/;" c function:FunctionTestCase.test_struct_return_2H_stdcall +S2H Modules/_ctypes/_ctypes_test.c /^} S2H;$/;" t typeref:struct:__anon517 file: +S3 Lib/test/test_patma.py /^ class S3(list, C, collections.abc.Mapping):$/;" c function:TestInheritance.test_multiple_inheritance_sequence +S4 Lib/test/test_patma.py /^ class S4(collections.UserList, dict, C):$/;" c function:TestInheritance.test_multiple_inheritance_sequence +S8I Lib/test/test_ctypes/test_as_parameter.py /^ class S8I(Structure):$/;" c function:BasicWrapTestCase.test_struct_return_8H +S8I Lib/test/test_ctypes/test_functions.py /^ class S8I(Structure):$/;" c function:FunctionTestCase.test_struct_return_8H +S8I Lib/test/test_ctypes/test_functions.py /^ class S8I(Structure):$/;" c function:FunctionTestCase.test_struct_return_8H_stdcall +S8I Modules/_ctypes/_ctypes_test.c /^} S8I;$/;" t typeref:struct:__anon518 file: +SAME Tools/c-analyzer/cpython/_parser.py /^SAME = {$/;" v +SAME_LABEL Python/compile.c 110;" d file: +SAME_LABEL Python/flowgraph.c 35;" d file: +SAMPLES Lib/test/test_import/__init__.py /^ SAMPLES = ('test', 'test\\u00e4\\u00f6\\u00fc\\u00df', 'test\\u00e9\\u00e8',$/;" v class:PathsTests +SAMPLING_INTERVAL Lib/test/libregrtest/win_utils.py /^SAMPLING_INTERVAL = 1$/;" v +SAS2SA Modules/socketmodule.c 525;" d file: +SATURDAY Lib/calendar.py /^ SATURDAY = 5$/;" v class:Day +SATURN Lib/test/test_enum.py /^ SATURN = (5.688e+26, 6.0268e7)$/;" v class:TestSpecial.test_init.Planet +SAVEDCWD Lib/test/support/os_helper.py /^SAVEDCWD = os.getcwd()$/;" v +SAVE_LOCALE Modules/readline.c 24;" d file: +SAX2DOM Lib/xml/dom/pulldom.py /^class SAX2DOM(PullDOM):$/;" c +SAX2DOMExerciser Lib/test/test_pulldom.py /^class SAX2DOMExerciser(SAXExerciser):$/;" c +SAX2DOMTestCase Lib/test/test_pulldom.py /^class SAX2DOMTestCase(unittest.TestCase):$/;" c +SAX2DOMTestHelper Lib/test/test_pulldom.py /^class SAX2DOMTestHelper(pulldom.DOMEventStream):$/;" c +SAXException Lib/xml/sax/_exceptions.py /^class SAXException(Exception):$/;" c +SAXExerciser Lib/test/test_pulldom.py /^class SAXExerciser(object):$/;" c +SAXNotRecognizedException Lib/xml/sax/_exceptions.py /^class SAXNotRecognizedException(SAXException):$/;" c +SAXNotSupportedException Lib/xml/sax/_exceptions.py /^class SAXNotSupportedException(SAXException):$/;" c +SAXParseException Lib/xml/sax/_exceptions.py /^class SAXParseException(SAXException):$/;" c +SAXReaderNotAvailable Lib/xml/sax/_exceptions.py /^class SAXReaderNotAvailable(SAXNotSupportedException):$/;" c +SB Lib/idlelib/idle_test/test_calltip.py /^ class SB: __call__ = None$/;" c function:Get_argspecTest.test_builtins +SB Lib/telnetlib.py /^SB = bytes([250]) # Subnegotiation Begin$/;" v +SB_BYTE_TYPE Modules/expat/xmltok.c 245;" d file: +SBase Modules/unicodedata.c 483;" d file: +SCANNER Modules/expat/xmltok.h /^typedef int(PTRCALL *SCANNER)(const ENCODING *, const char *, const char *,$/;" t +SCAN_OFF Modules/_sre/sre.c 3087;" d file: +SCCD_FILENAME PC/layout/support/appxmanifest.py /^SCCD_FILENAME = "PC\/classicAppCompat.sccd"$/;" v +SCMRightsTest Lib/test/test_socket.py /^class SCMRightsTest(SendrecvmsgServerTimeoutBase):$/;" c +SCOLOR Lib/turtledemo/nim.py /^SCOLOR = (63, 63, 31)$/;" v +SCOPE_MASK Include/internal/pycore_symtable.h 132;" d +SCOPE_OFFSET Include/internal/pycore_symtable.h 131;" d +SCRAMBLE_IN Objects/codeobject.c 1834;" d file: +SCRAMBLE_IN_HASH Objects/codeobject.c 1838;" d file: +SCREENHEIGHT Lib/turtledemo/nim.py /^SCREENHEIGHT = 480$/;" v +SCREENWIDTH Lib/turtledemo/nim.py /^SCREENWIDTH = 640$/;" v +SCRIPT Tools/unicode/makeunicodedata.py /^SCRIPT = sys.argv[0]$/;" v +SCRIPT_NAME Tools/build/generate_global_objects.py /^SCRIPT_NAME = 'Tools\/build\/generate_global_objects.py'$/;" v +SCRIPT_NAME Tools/build/generate_opcode_h.py /^SCRIPT_NAME = "Tools\/build\/generate_opcode_h.py"$/;" v +SCRIPT_NAME Tools/build/generate_re_casefix.py /^SCRIPT_NAME = 'Tools\/build\/generate_re_casefix.py'$/;" v +SCRIPT_NAME Tools/build/generate_sre_constants.py /^SCRIPT_NAME = 'Tools\/build\/generate_sre_constants.py'$/;" v +SCRIPT_NAME Tools/build/generate_stdlib_module_names.py /^SCRIPT_NAME = 'Tools\/build\/generate_stdlib_module_names.py'$/;" v +SCRIPT_NAME Tools/build/generate_token.py /^SCRIPT_NAME = 'Tools\/build\/generate_token.py'$/;" v +SCRIPT_NAME Tools/build/parse_html5_entities.py /^SCRIPT_NAME = 'Tools\/build\/parse_html5_entities.py'$/;" v +SCRIPT_NAME Tools/build/stable_abi.py /^SCRIPT_NAME = 'Tools\/build\/stable_abi.py'$/;" v +SCRIPT_SUFFIX PC/launcher.c 683;" d file: +SCRIPT_SUFFIX PC/launcher.c 685;" d file: +SCROLL Lib/tkinter/constants.py /^SCROLL='scroll'$/;" v +SCTPStreamBase Lib/test/test_socket.py /^class SCTPStreamBase(InetTestBase):$/;" c +SC_HANDLE Lib/ctypes/wintypes.py /^SC_HANDLE = HANDLE$/;" v +SC_IOV_MAX Lib/asyncio/selector_events.py /^ SC_IOV_MAX = os.sysconf('SC_IOV_MAX')$/;" v +SCount Modules/unicodedata.c 491;" d file: +SE Lib/telnetlib.py /^SE = bytes([240]) # Subnegotiation End$/;" v +SE Lib/tkinter/constants.py /^SE='se'$/;" v +SEARCH_PATH PC/launcher.c 21;" d file: +SEC Lib/test/datetimetester.py /^SEC = timedelta(0, 1)$/;" v +SECOND Doc/includes/tzinfo_examples.py /^SECOND = timedelta(seconds=1)$/;" v +SECOND Lib/test/test_capi/test_watchers.py /^ SECOND = 2 # always appends "second" to global event list$/;" v class:TestDictWatchers +SECOND Lib/test/test_enum.py /^ SECOND = 4$/;" v class:TestVerify.test_continuous.Manual.Missing +SECOND Lib/test/test_enum.py /^ SECOND = 8$/;" v class:TestVerify.test_continuous.Manual.Incomplete +SECOND Lib/test/test_enum.py /^ SECOND = 8$/;" v class:TestVerify.test_continuous.Manual.StillIncomplete +SECOND Lib/test/test_enum.py /^ SECOND = 4$/;" v class:TestVerify.test_continuous.Manual +SECOND Lib/test/test_enum.py /^ SECOND = auto()$/;" v class:TestVerify.test_continuous.Auto +SECOND Lib/test/test_enum.py /^ SECOND = 2$/;" v class:OldTestIntFlag.Skip +SECOND Python/ceval_macros.h 203;" d +SECOND_HASH Modules/expat/xmlparse.c 229;" d file: +SECTCRE Lib/configparser.py /^ SECTCRE = re.compile(_SECT_TMPL, re.VERBOSE)$/;" v class:RawConfigParser +SEC_TO_MS Python/pytime.c 17;" d file: +SEC_TO_NS Lib/test/test_time.py /^SEC_TO_NS = 10 ** 9$/;" v +SEC_TO_NS Modules/timemodule.c 64;" d file: +SEC_TO_NS Python/pytime.c 26;" d file: +SEC_TO_US Lib/test/test_time.py /^SEC_TO_US = 10 ** 6$/;" v +SEC_TO_US Modules/faulthandler.c 616;" d file: +SEC_TO_US Python/pytime.c 21;" d file: +SEEK_CUR Lib/io.py /^SEEK_CUR = 1$/;" v +SEEK_CUR Lib/os.py /^SEEK_CUR = 1$/;" v +SEEK_END Lib/io.py /^SEEK_END = 2$/;" v +SEEK_END Lib/os.py /^SEEK_END = 2$/;" v +SEEK_SET Lib/io.py /^SEEK_SET = 0$/;" v +SEEK_SET Lib/os.py /^SEEK_SET = 0$/;" v +SEEN_ALL Modules/_io/textio.c 308;" d file: +SEEN_CR Modules/_io/textio.c 305;" d file: +SEEN_CRLF Modules/_io/textio.c 307;" d file: +SEEN_LF Modules/_io/textio.c 306;" d file: +SEE_OTHER Lib/http/__init__.py /^ SEE_OTHER = 303, 'See Other', 'Object moved -- see Method and URL list'$/;" v class:HTTPStatus +SEE_OTHER Lib/test/test_httplib.py /^ SEE_OTHER = 303, 'See Other', 'Object moved -- see Method and URL list'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +SEG_MASK Modules/audioop.c 66;" d file: +SEG_SHIFT Modules/audioop.c 65;" d file: +SEL Lib/tkinter/constants.py /^SEL='sel'$/;" v +SELECTOR Lib/test/test_selectors.py /^ SELECTOR = getattr(selectors, 'DevpollSelector', None)$/;" v class:DevpollSelectorTestCase +SELECTOR Lib/test/test_selectors.py /^ SELECTOR = getattr(selectors, 'EpollSelector', None)$/;" v class:EpollSelectorTestCase +SELECTOR Lib/test/test_selectors.py /^ SELECTOR = getattr(selectors, 'KqueueSelector', None)$/;" v class:KqueueSelectorTestCase +SELECTOR Lib/test/test_selectors.py /^ SELECTOR = getattr(selectors, 'PollSelector', None)$/;" v class:PollSelectorTestCase +SELECTOR Lib/test/test_selectors.py /^ SELECTOR = selectors.DefaultSelector$/;" v class:DefaultSelectorTestCase +SELECTOR Lib/test/test_selectors.py /^ SELECTOR = selectors.SelectSelector$/;" v class:SelectSelectorTestCase +SELECT_DEVPOLL_CLOSE_METHODDEF Modules/clinic/selectmodule.c.h 1246;" d +SELECT_DEVPOLL_CLOSE_METHODDEF Modules/clinic/selectmodule.c.h 421;" d +SELECT_DEVPOLL_FILENO_METHODDEF Modules/clinic/selectmodule.c.h 1250;" d +SELECT_DEVPOLL_FILENO_METHODDEF Modules/clinic/selectmodule.c.h 443;" d +SELECT_DEVPOLL_METHODDEF Modules/clinic/selectmodule.c.h 1258;" d +SELECT_DEVPOLL_METHODDEF Modules/clinic/selectmodule.c.h 493;" d +SELECT_DEVPOLL_MODIFY_METHODDEF Modules/clinic/selectmodule.c.h 1234;" d +SELECT_DEVPOLL_MODIFY_METHODDEF Modules/clinic/selectmodule.c.h 302;" d +SELECT_DEVPOLL_POLL_METHODDEF Modules/clinic/selectmodule.c.h 1242;" d +SELECT_DEVPOLL_POLL_METHODDEF Modules/clinic/selectmodule.c.h 383;" d +SELECT_DEVPOLL_REGISTER_METHODDEF Modules/clinic/selectmodule.c.h 1230;" d +SELECT_DEVPOLL_REGISTER_METHODDEF Modules/clinic/selectmodule.c.h 252;" d +SELECT_DEVPOLL_UNREGISTER_METHODDEF Modules/clinic/selectmodule.c.h 1238;" d +SELECT_DEVPOLL_UNREGISTER_METHODDEF Modules/clinic/selectmodule.c.h 345;" d +SELECT_EPOLL_CLOSE_METHODDEF Modules/clinic/selectmodule.c.h 1262;" d +SELECT_EPOLL_CLOSE_METHODDEF Modules/clinic/selectmodule.c.h 602;" d +SELECT_EPOLL_FILENO_METHODDEF Modules/clinic/selectmodule.c.h 1266;" d +SELECT_EPOLL_FILENO_METHODDEF Modules/clinic/selectmodule.c.h 624;" d +SELECT_EPOLL_FROMFD_METHODDEF Modules/clinic/selectmodule.c.h 1270;" d +SELECT_EPOLL_FROMFD_METHODDEF Modules/clinic/selectmodule.c.h 646;" d +SELECT_EPOLL_MODIFY_METHODDEF Modules/clinic/selectmodule.c.h 1278;" d +SELECT_EPOLL_MODIFY_METHODDEF Modules/clinic/selectmodule.c.h 763;" d +SELECT_EPOLL_POLL_METHODDEF Modules/clinic/selectmodule.c.h 1286;" d +SELECT_EPOLL_POLL_METHODDEF Modules/clinic/selectmodule.c.h 903;" d +SELECT_EPOLL_REGISTER_METHODDEF Modules/clinic/selectmodule.c.h 1274;" d +SELECT_EPOLL_REGISTER_METHODDEF Modules/clinic/selectmodule.c.h 686;" d +SELECT_EPOLL_UNREGISTER_METHODDEF Modules/clinic/selectmodule.c.h 1282;" d +SELECT_EPOLL_UNREGISTER_METHODDEF Modules/clinic/selectmodule.c.h 833;" d +SELECT_EPOLL___ENTER___METHODDEF Modules/clinic/selectmodule.c.h 1290;" d +SELECT_EPOLL___ENTER___METHODDEF Modules/clinic/selectmodule.c.h 977;" d +SELECT_EPOLL___EXIT___METHODDEF Modules/clinic/selectmodule.c.h 1294;" d +SELECT_EPOLL___EXIT___METHODDEF Modules/clinic/selectmodule.c.h 998;" d +SELECT_KQUEUE_CLOSE_METHODDEF Modules/clinic/selectmodule.c.h 1092;" d +SELECT_KQUEUE_CLOSE_METHODDEF Modules/clinic/selectmodule.c.h 1298;" d +SELECT_KQUEUE_CONTROL_METHODDEF Modules/clinic/selectmodule.c.h 1177;" d +SELECT_KQUEUE_CONTROL_METHODDEF Modules/clinic/selectmodule.c.h 1310;" d +SELECT_KQUEUE_FILENO_METHODDEF Modules/clinic/selectmodule.c.h 1114;" d +SELECT_KQUEUE_FILENO_METHODDEF Modules/clinic/selectmodule.c.h 1302;" d +SELECT_KQUEUE_FROMFD_METHODDEF Modules/clinic/selectmodule.c.h 1136;" d +SELECT_KQUEUE_FROMFD_METHODDEF Modules/clinic/selectmodule.c.h 1306;" d +SELECT_POLL_METHODDEF Modules/clinic/selectmodule.c.h 1254;" d +SELECT_POLL_METHODDEF Modules/clinic/selectmodule.c.h 468;" d +SELECT_POLL_MODIFY_METHODDEF Modules/clinic/selectmodule.c.h 1218;" d +SELECT_POLL_MODIFY_METHODDEF Modules/clinic/selectmodule.c.h 133;" d +SELECT_POLL_POLL_METHODDEF Modules/clinic/selectmodule.c.h 1226;" d +SELECT_POLL_POLL_METHODDEF Modules/clinic/selectmodule.c.h 209;" d +SELECT_POLL_REGISTER_METHODDEF Modules/clinic/selectmodule.c.h 1214;" d +SELECT_POLL_REGISTER_METHODDEF Modules/clinic/selectmodule.c.h 85;" d +SELECT_POLL_UNREGISTER_METHODDEF Modules/clinic/selectmodule.c.h 1222;" d +SELECT_POLL_UNREGISTER_METHODDEF Modules/clinic/selectmodule.c.h 171;" d +SELECT_SELECT_METHODDEF Modules/clinic/selectmodule.c.h 38;" d +SELECT_USES_HEAP Modules/selectmodule.c 219;" d file: +SELECT_USES_HEAP Modules/selectmodule.c 221;" d file: +SEL_FIRST Lib/tkinter/constants.py /^SEL_FIRST='sel.first'$/;" v +SEL_LAST Lib/tkinter/constants.py /^SEL_LAST='sel.last'$/;" v +SEMAPHORE Modules/_multiprocessing/semaphore.c /^enum { RECURSIVE_MUTEX, SEMAPHORE };$/;" e enum:__anon469 file: +SEMI Include/internal/pycore_token.h 29;" d +SEMI Lib/lib2to3/pgen2/token.py /^SEMI = 13$/;" v +SEMI Lib/token.py /^SEMI = 13$/;" v +SEMI Tools/cases_generator/lexer.py /^SEMI = r';'$/;" v +SEMISPACE Lib/email/message.py /^SEMISPACE = '; '$/;" v +SEM_CLEAR_ERROR Modules/_multiprocessing/semaphore.c 214;" d file: +SEM_CLEAR_ERROR Modules/_multiprocessing/semaphore.c 53;" d file: +SEM_CLOSE Modules/_multiprocessing/semaphore.c 217;" d file: +SEM_CLOSE Modules/_multiprocessing/semaphore.c 56;" d file: +SEM_CREATE Modules/_multiprocessing/semaphore.c 216;" d file: +SEM_CREATE Modules/_multiprocessing/semaphore.c 55;" d file: +SEM_FAILED Modules/_multiprocessing/semaphore.c 224;" d file: +SEM_FAILED Modules/_multiprocessing/semaphore.c 225;" d file: +SEM_FAILED Modules/_multiprocessing/semaphore.c 51;" d file: +SEM_GETVALUE Modules/_multiprocessing/semaphore.c 218;" d file: +SEM_GETVALUE Modules/_multiprocessing/semaphore.c 57;" d file: +SEM_GET_LAST_ERROR Modules/_multiprocessing/semaphore.c 215;" d file: +SEM_GET_LAST_ERROR Modules/_multiprocessing/semaphore.c 54;" d file: +SEM_HANDLE Modules/_multiprocessing/multiprocessing.h /^ typedef sem_t *SEM_HANDLE;$/;" t +SEM_HANDLE Modules/_multiprocessing/multiprocessing.h 24;" d +SEM_UNLINK Modules/_multiprocessing/semaphore.c 219;" d file: +SEM_UNLINK Modules/_multiprocessing/semaphore.c 58;" d file: +SEM_VALUE_MAX Lib/multiprocessing/synchronize.py /^SEM_VALUE_MAX = _multiprocessing.SemLock.SEM_VALUE_MAX$/;" v +SEM_VALUE_MAX Modules/_multiprocessing/multiprocessing.h 25;" d +SEM_VALUE_MAX Modules/_multiprocessing/multiprocessing.h 41;" d +SEM_VALUE_MAX Modules/_multiprocessing/multiprocessing.h 43;" d +SEM_VALUE_MAX Modules/_multiprocessing/multiprocessing.h 45;" d +SEM_VALUE_MAX Modules/_multiprocessing/multiprocessing.h 47;" d +SEND Include/opcode.h 81;" d +SEND Lib/dis.py /^SEND = opmap['SEND']$/;" v +SENDFILE_FALLBACK_READBUFFER_SIZE Lib/asyncio/constants.py /^SENDFILE_FALLBACK_READBUFFER_SIZE = 1024 * 256$/;" v +SEND_GEN Include/opcode.h 218;" d +SEND_URL Lib/telnetlib.py /^SEND_URL = bytes([48]) # SEND-URL$/;" v +SENTINEL Lib/test/_test_multiprocessing.py /^SENTINEL = latin('')$/;" v +SENTINEL_VALUE Lib/idlelib/idle_test/test_squeezer.py /^SENTINEL_VALUE = sentinel.SENTINEL_VALUE$/;" v +SEP Include/osdefs.h 11;" d +SEP Include/osdefs.h 23;" d +SEP Modules/getpath.py /^ SEP = '\/'$/;" v +SEP Modules/getpath.py /^ SEP = '\\\\'$/;" v +SEPARATOR Lib/tkinter/constants.py /^SEPARATOR='separator'$/;" v +SEPS Lib/idlelib/autocomplete.py /^SEPS = f"{os.sep}{os.altsep if os.altsep else ''}"$/;" v +SEPS Lib/lib2to3/fixes/fix_ws_comma.py /^ SEPS = (COMMA, COLON)$/;" v class:FixWsComma +SEPTEMBER Lib/calendar.py /^ SEPTEMBER = 9$/;" v class:Month +SEP_OR_END Python/fileutils.c 2404;" d file: +SEP_OR_END Python/fileutils.c 2502;" d file: +SERIALIZER Lib/test/_test_multiprocessing.py /^SERIALIZER = 'xmlrpclib'$/;" v +SERIALIZE_METHODDEF Modules/_sqlite/clinic/connection.c.h 1258;" d +SERIALIZE_METHODDEF Modules/_sqlite/clinic/connection.c.h 1662;" d +SERVER_AUTH Lib/ssl.py /^ SERVER_AUTH = '1.3.6.1.5.5.7.3.1'$/;" v class:Purpose +SERVER_DONE Lib/ssl.py /^ SERVER_DONE = 14$/;" v class:_TLSMessageType +SERVER_DONE Lib/test/test_ssl.py /^ SERVER_DONE = 14$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +SERVER_ERROR Lib/xmlrpc/client.py /^SERVER_ERROR = -32600$/;" v +SERVER_HELLO Lib/ssl.py /^ SERVER_HELLO = 2$/;" v class:_TLSMessageType +SERVER_HELLO Lib/test/test_ssl.py /^ SERVER_HELLO = 2$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +SERVER_KEY_EXCHANGE Lib/ssl.py /^ SERVER_KEY_EXCHANGE = 12$/;" v class:_TLSMessageType +SERVER_KEY_EXCHANGE Lib/test/test_ssl.py /^ SERVER_KEY_EXCHANGE = 12$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +SERVICE_STATUS_HANDLE Lib/ctypes/wintypes.py /^SERVICE_STATUS_HANDLE = HANDLE$/;" v +SERVICE_UNAVAILABLE Lib/http/__init__.py /^ SERVICE_UNAVAILABLE = (503, 'Service Unavailable',$/;" v class:HTTPStatus +SERVICE_UNAVAILABLE Lib/test/test_httplib.py /^ SERVICE_UNAVAILABLE = (503, 'Service Unavailable',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +SET Modules/_ctypes/cfield.c 401;" d file: +SET Modules/grpmodule.c 85;" d file: +SET Modules/grpmodule.c 95;" d file: +SET Modules/posixmodule.c 5902;" d file: +SET Modules/posixmodule.c 5918;" d file: +SET Modules/posixmodule.c 9956;" d file: +SET Modules/posixmodule.c 9972;" d file: +SET Modules/timemodule.c 484;" d file: +SET Modules/timemodule.c 504;" d file: +SET Tools/build/umarshal.py /^ SET = ord('<')$/;" v class:Type +SET2 Modules/expat/xmltok.c 718;" d file: +SET2 Modules/expat/xmltok.c 725;" d file: +SET2 Modules/expat/xmltok.c 729;" d file: +SET2 Modules/expat/xmltok.c 736;" d file: +SETBINARY Lib/test/test_subprocess.py /^ SETBINARY = ''$/;" v +SETBINARY Lib/test/test_subprocess.py /^ SETBINARY = ('import msvcrt; msvcrt.setmode(sys.stdout.fileno(), '$/;" v +SETBUILTIN Python/bltinmodule.c 3108;" d file: +SETBUILTIN Python/bltinmodule.c 3153;" d file: +SETCONFIG_METHODDEF Modules/_sqlite/clinic/connection.c.h 1579;" d +SETFUNC Modules/_ctypes/ctypes.h /^typedef PyObject *(* SETFUNC)(void *, PyObject *value, Py_ssize_t size);$/;" t +SETI Modules/spwdmodule.c 111;" d file: +SETI Modules/spwdmodule.c 95;" d file: +SETINT16 Modules/audioop.c 333;" d file: +SETINT24 Modules/audioop.c 337;" d file: +SETINT24 Modules/audioop.c 343;" d file: +SETINT32 Modules/audioop.c 334;" d file: +SETINT8 Modules/audioop.c 332;" d file: +SETINTX Modules/audioop.c 310;" d file: +SETITEM Lib/pickle.py /^SETITEM = b's' # add key+value pair to dict$/;" v +SETITEM Modules/_pickle.c /^ SETITEM = 's',$/;" e enum:opcode file: +SETITEMS Lib/pickle.py /^SETITEMS = b'u' # modify dict by adding topmost key+value pairs$/;" v +SETITEMS Modules/_pickle.c /^ SETITEMS = 'u',$/;" e enum:opcode file: +SETLIMIT_METHODDEF Modules/_sqlite/clinic/connection.c.h 1509;" d +SETLOCAL Python/ceval_macros.h 247;" d +SETMODULUS Modules/_decimal/libmpdec/constants.h 49;" d +SETPGRP_HAVE_ARG Include/pymacconfig.h 72;" d +SETRAWSAMPLE Modules/audioop.c 357;" d file: +SETS Modules/pwdmodule.c 105;" d file: +SETS Modules/pwdmodule.c 87;" d file: +SETS Modules/spwdmodule.c 110;" d file: +SETS Modules/spwdmodule.c 96;" d file: +SETSAMPLE32 Modules/audioop.c 375;" d file: +SETUP Lib/test/test_cppext/__init__.py /^SETUP = os.path.join(os.path.dirname(__file__), 'setup.py')$/;" v +SETUP_ANNOTATIONS Include/opcode.h 47;" d +SETUP_CLEANUP Include/opcode.h 144;" d +SETUP_FINALLY Include/opcode.h 143;" d +SETUP_LOCAL Tools/wasm/wasm_build.py /^SETUP_LOCAL = SRCDIR \/ "Modules" \/ "Setup.local"$/;" v +SETUP_WITH Include/opcode.h 145;" d +SET_ADD Include/opcode.h 104;" d +SET_DAY Modules/_datetimemodule.c 87;" d file: +SET_DICT_FROM_SIZE Objects/structseq.c 382;" d file: +SET_GIL_DROP_REQUEST Python/ceval_gil.c /^SET_GIL_DROP_REQUEST(PyInterpreterState *interp)$/;" f file: +SET_IDEAL_EXP Modules/_decimal/libmpdec/mpdecimal.c /^enum {NO_IDEAL_EXP, SET_IDEAL_EXP};$/;" e enum:__anon345 file: +SET_INIT_ENC_INDEX Modules/expat/xmltok.c 1527;" d file: +SET_INT Modules/posixmodule.c 9228;" d file: +SET_INT Modules/posixmodule.c 9244;" d file: +SET_ITEM Python/initconfig.c 1045;" d file: +SET_ITEM Python/initconfig.c 1144;" d file: +SET_ITEM Python/initconfig.c 236;" d file: +SET_ITEM Python/initconfig.c 292;" d file: +SET_ITEM_INT Python/initconfig.c 1057;" d file: +SET_ITEM_INT Python/initconfig.c 1145;" d file: +SET_ITEM_INT Python/initconfig.c 248;" d file: +SET_ITEM_INT Python/initconfig.c 293;" d file: +SET_ITEM_INT Python/preconfig.c 411;" d file: +SET_ITEM_INT Python/preconfig.c 443;" d file: +SET_ITEM_STR Python/initconfig.c 254;" d file: +SET_ITEM_STR Python/initconfig.c 294;" d file: +SET_ITEM_UINT Python/initconfig.c 1059;" d file: +SET_ITEM_UINT Python/initconfig.c 1146;" d file: +SET_ITEM_WSTR Python/initconfig.c 1065;" d file: +SET_ITEM_WSTR Python/initconfig.c 1147;" d file: +SET_ITEM_WSTRLIST Python/initconfig.c 1067;" d file: +SET_ITEM_WSTRLIST Python/initconfig.c 1148;" d file: +SET_LOCALS_FROM_FRAME Python/ceval.c 726;" d file: +SET_MATADATA_INT Python/compile.c 8012;" d file: +SET_MATADATA_INT Python/compile.c 8023;" d file: +SET_MATADATA_ITEM Python/compile.c 7998;" d file: +SET_MATADATA_ITEM Python/compile.c 8010;" d file: +SET_MONTH Modules/_datetimemodule.c 86;" d file: +SET_SCOPE Python/symtable.c 503;" d file: +SET_SCOPE Python/symtable.c 689;" d file: +SET_SECOND Python/ceval_macros.h 209;" d +SET_SOCK_ERROR Modules/socketmodule.c 645;" d file: +SET_SOCK_ERROR Modules/socketmodule.c 650;" d file: +SET_SYS Python/sysmodule.c 3232;" d file: +SET_SYS Python/sysmodule.c 3511;" d file: +SET_SYS_FROM_STRING Python/sysmodule.c 3245;" d file: +SET_SYS_FROM_STRING Python/sysmodule.c 3512;" d file: +SET_SYS_FROM_WSTR Python/sysmodule.c 3446;" d file: +SET_SYS_FROM_WSTR Python/sysmodule.c 3486;" d file: +SET_TD_DAYS Modules/_datetimemodule.c 119;" d file: +SET_TD_MICROSECONDS Modules/_datetimemodule.c 121;" d file: +SET_TD_SECONDS Modules/_datetimemodule.c 120;" d file: +SET_THREAD_SIGMASK Python/thread_pthread.h 112;" d +SET_THREAD_SIGMASK Python/thread_pthread.h 114;" d +SET_TOP Python/ceval_macros.h 208;" d +SET_UPDATE Include/opcode.h 114;" d +SET_YEAR Modules/_datetimemodule.c 84;" d file: +SFPCatalog Lib/msilib/schema.py /^SFPCatalog = Table('SFPCatalog')$/;" v +SF_APPEND Lib/stat.py /^SF_APPEND = 0x00040000 # file may only be appended to$/;" v +SF_APPEND Modules/_stat.c 240;" d file: +SF_ARCHIVED Lib/stat.py /^SF_ARCHIVED = 0x00010000 # file may be archived$/;" v +SF_ARCHIVED Modules/_stat.c 232;" d file: +SF_IMMUTABLE Lib/stat.py /^SF_IMMUTABLE = 0x00020000 # file may not be changed$/;" v +SF_IMMUTABLE Modules/_stat.c 236;" d file: +SF_NOUNLINK Lib/stat.py /^SF_NOUNLINK = 0x00100000 # file may not be renamed or deleted$/;" v +SF_NOUNLINK Modules/_stat.c 244;" d file: +SF_SNAPSHOT Lib/stat.py /^SF_SNAPSHOT = 0x00200000 # file is a snapshot file$/;" v +SF_SNAPSHOT Modules/_stat.c 248;" d file: +SGA Lib/telnetlib.py /^SGA = bytes([3]) # suppress go ahead$/;" v +SG_MAGICCONST Lib/random.py /^SG_MAGICCONST = 1.0 + _log(4.5)$/;" v +SH PCbuild/prepare_libffi.bat /^if NOT DEFINED SH if exist c:\\cygwin\\bin\\sh.exe set SH=c:\\cygwin\\bin\\sh.exe$/;" v +SHA1State Modules/sha1module.c /^} SHA1State;$/;" t typeref:struct:__anon468 file: +SHA1TYPE_COPY_METHODDEF Modules/clinic/sha1module.c.h 17;" d +SHA1TYPE_DIGEST_METHODDEF Modules/clinic/sha1module.c.h 39;" d +SHA1TYPE_HEXDIGEST_METHODDEF Modules/clinic/sha1module.c.h 57;" d +SHA1TYPE_UPDATE_METHODDEF Modules/clinic/sha1module.c.h 75;" d +SHA1Type_copy Modules/clinic/sha1module.c.h /^SHA1Type_copy(SHA1object *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +SHA1Type_copy_impl Modules/sha1module.c /^SHA1Type_copy_impl(SHA1object *self, PyTypeObject *cls)$/;" f file: +SHA1Type_digest Modules/clinic/sha1module.c.h /^SHA1Type_digest(SHA1object *self, PyObject *Py_UNUSED(ignored))$/;" f +SHA1Type_digest_impl Modules/sha1module.c /^SHA1Type_digest_impl(SHA1object *self)$/;" f file: +SHA1Type_hexdigest Modules/clinic/sha1module.c.h /^SHA1Type_hexdigest(SHA1object *self, PyObject *Py_UNUSED(ignored))$/;" f +SHA1Type_hexdigest_impl Modules/sha1module.c /^SHA1Type_hexdigest_impl(SHA1object *self)$/;" f file: +SHA1Type_update Modules/sha1module.c /^SHA1Type_update(SHA1object *self, PyObject *obj)$/;" f file: +SHA1_BLOCKSIZE Modules/sha1module.c 44;" d file: +SHA1_DIGESTSIZE Modules/sha1module.c 45;" d file: +SHA1_INT32 Modules/sha1module.c /^typedef unsigned int SHA1_INT32; \/* 32-bit integer *\/$/;" t file: +SHA1_INT64 Modules/sha1module.c /^typedef long long SHA1_INT64; \/* 64-bit integer *\/$/;" t file: +SHA1_dealloc Modules/sha1module.c /^SHA1_dealloc(SHA1object *ptr)$/;" f file: +SHA1_functions Modules/sha1module.c /^static struct PyMethodDef SHA1_functions[] = {$/;" v typeref:struct:PyMethodDef file: +SHA1_get_block_size Modules/sha1module.c /^SHA1_get_block_size(PyObject *self, void *closure)$/;" f file: +SHA1_get_name Modules/sha1module.c /^SHA1_get_name(PyObject *self, void *closure)$/;" f file: +SHA1_getseters Modules/sha1module.c /^static PyGetSetDef SHA1_getseters[] = {$/;" v file: +SHA1_methods Modules/sha1module.c /^static PyMethodDef SHA1_methods[] = {$/;" v file: +SHA1_traverse Modules/sha1module.c /^SHA1_traverse(PyObject *ptr, visitproc visit, void *arg)$/;" f file: +SHA1object Modules/sha1module.c /^} SHA1object;$/;" t typeref:struct:__anon467 file: +SHA256TYPE_COPY_METHODDEF Modules/clinic/sha2module.c.h 17;" d +SHA256TYPE_DIGEST_METHODDEF Modules/clinic/sha2module.c.h 61;" d +SHA256TYPE_HEXDIGEST_METHODDEF Modules/clinic/sha2module.c.h 97;" d +SHA256TYPE_UPDATE_METHODDEF Modules/clinic/sha2module.c.h 133;" d +SHA256Type_copy Modules/clinic/sha2module.c.h /^SHA256Type_copy(SHA256object *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +SHA256Type_copy_impl Modules/sha2module.c /^SHA256Type_copy_impl(SHA256object *self, PyTypeObject *cls)$/;" f file: +SHA256Type_digest Modules/clinic/sha2module.c.h /^SHA256Type_digest(SHA256object *self, PyObject *Py_UNUSED(ignored))$/;" f +SHA256Type_digest_impl Modules/sha2module.c /^SHA256Type_digest_impl(SHA256object *self)$/;" f file: +SHA256Type_hexdigest Modules/clinic/sha2module.c.h /^SHA256Type_hexdigest(SHA256object *self, PyObject *Py_UNUSED(ignored))$/;" f +SHA256Type_hexdigest_impl Modules/sha2module.c /^SHA256Type_hexdigest_impl(SHA256object *self)$/;" f file: +SHA256Type_update Modules/sha2module.c /^SHA256Type_update(SHA256object *self, PyObject *obj)$/;" f file: +SHA256_BLOCKSIZE Modules/sha2module.c 41;" d file: +SHA256_DIGESTSIZE Modules/sha2module.c 42;" d file: +SHA256_dealloc Modules/sha2module.c /^SHA256_dealloc(SHA256object *ptr)$/;" f file: +SHA256_get_block_size Modules/sha2module.c /^SHA256_get_block_size(PyObject *self, void *closure)$/;" f file: +SHA256_get_digest_size Modules/sha2module.c /^SHA256_get_digest_size(SHA256object *self, void *closure)$/;" f file: +SHA256_get_name Modules/sha2module.c /^SHA256_get_name(SHA256object *self, void *closure)$/;" f file: +SHA256_getseters Modules/sha2module.c /^static PyGetSetDef SHA256_getseters[] = {$/;" v file: +SHA256_methods Modules/sha2module.c /^static PyMethodDef SHA256_methods[] = {$/;" v file: +SHA256copy Modules/sha2module.c /^static void SHA256copy(SHA256object *src, SHA256object *dest)$/;" f file: +SHA256object Modules/sha2module.c /^} SHA256object;$/;" t typeref:struct:__anon631 file: +SHA2_functions Modules/sha2module.c /^static struct PyMethodDef SHA2_functions[] = {$/;" v typeref:struct:PyMethodDef file: +SHA2_traverse Modules/sha2module.c /^SHA2_traverse(PyObject *ptr, visitproc visit, void *arg)$/;" f file: +SHA3State Modules/sha3module.c /^} SHA3State;$/;" t typeref:struct:__anon297 file: +SHA3_MAX_DIGESTSIZE Modules/sha3module.c 27;" d file: +SHA3_TYPE_SLOTS Modules/sha3module.c 366;" d file: +SHA3_TYPE_SPEC Modules/sha3module.c 378;" d file: +SHA3_dealloc Modules/sha3module.c /^SHA3_dealloc(SHA3object *self)$/;" f file: +SHA3_get_block_size Modules/sha3module.c /^SHA3_get_block_size(SHA3object *self, void *closure)$/;" f file: +SHA3_get_capacity_bits Modules/sha3module.c /^SHA3_get_capacity_bits(SHA3object *self, void *closure)$/;" f file: +SHA3_get_digest_size Modules/sha3module.c /^SHA3_get_digest_size(SHA3object *self, void *closure)$/;" f file: +SHA3_get_name Modules/sha3module.c /^SHA3_get_name(SHA3object *self, void *closure)$/;" f file: +SHA3_get_rate_bits Modules/sha3module.c /^SHA3_get_rate_bits(SHA3object *self, void *closure)$/;" f file: +SHA3_get_suffix Modules/sha3module.c /^SHA3_get_suffix(SHA3object *self, void *closure)$/;" f file: +SHA3_getseters Modules/sha3module.c /^static PyGetSetDef SHA3_getseters[] = {$/;" v file: +SHA3_methods Modules/sha3module.c /^static PyMethodDef SHA3_methods[] = {$/;" v file: +SHA3object Modules/sha3module.c /^} SHA3object;$/;" t typeref:struct:__anon298 file: +SHA512TYPE_COPY_METHODDEF Modules/clinic/sha2module.c.h 39;" d +SHA512TYPE_DIGEST_METHODDEF Modules/clinic/sha2module.c.h 79;" d +SHA512TYPE_HEXDIGEST_METHODDEF Modules/clinic/sha2module.c.h 115;" d +SHA512TYPE_UPDATE_METHODDEF Modules/clinic/sha2module.c.h 142;" d +SHA512Type_copy Modules/clinic/sha2module.c.h /^SHA512Type_copy(SHA512object *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +SHA512Type_copy_impl Modules/sha2module.c /^SHA512Type_copy_impl(SHA512object *self, PyTypeObject *cls)$/;" f file: +SHA512Type_digest Modules/clinic/sha2module.c.h /^SHA512Type_digest(SHA512object *self, PyObject *Py_UNUSED(ignored))$/;" f +SHA512Type_digest_impl Modules/sha2module.c /^SHA512Type_digest_impl(SHA512object *self)$/;" f file: +SHA512Type_hexdigest Modules/clinic/sha2module.c.h /^SHA512Type_hexdigest(SHA512object *self, PyObject *Py_UNUSED(ignored))$/;" f +SHA512Type_hexdigest_impl Modules/sha2module.c /^SHA512Type_hexdigest_impl(SHA512object *self)$/;" f file: +SHA512Type_update Modules/sha2module.c /^SHA512Type_update(SHA512object *self, PyObject *obj)$/;" f file: +SHA512_BLOCKSIZE Modules/sha2module.c 43;" d file: +SHA512_DIGESTSIZE Modules/sha2module.c 44;" d file: +SHA512_dealloc Modules/sha2module.c /^SHA512_dealloc(SHA512object *ptr)$/;" f file: +SHA512_get_block_size Modules/sha2module.c /^SHA512_get_block_size(PyObject *self, void *closure)$/;" f file: +SHA512_get_digest_size Modules/sha2module.c /^SHA512_get_digest_size(SHA512object *self, void *closure)$/;" f file: +SHA512_get_name Modules/sha2module.c /^SHA512_get_name(SHA512object *self, void *closure)$/;" f file: +SHA512_getseters Modules/sha2module.c /^static PyGetSetDef SHA512_getseters[] = {$/;" v file: +SHA512_methods Modules/sha2module.c /^static PyMethodDef SHA512_methods[] = {$/;" v file: +SHA512copy Modules/sha2module.c /^static void SHA512copy(SHA512object *src, SHA512object *dest)$/;" f file: +SHA512object Modules/sha2module.c /^} SHA512object;$/;" t typeref:struct:__anon632 file: +SHAKE_get_digest_size Modules/sha3module.c /^SHAKE_get_digest_size(SHA3object *self, void *closure)$/;" f file: +SHAKE_get_suffix Modules/sha3module.c /^SHAKE_get_suffix(SHA3object *self, void *closure)$/;" f file: +SHAKE_getseters Modules/sha3module.c /^static PyGetSetDef SHAKE_getseters[] = {$/;" v file: +SHAKE_methods Modules/sha3module.c /^static PyMethodDef SHAKE_methods[] = {$/;" v file: +SHARED Tools/build/check_extension_modules.py /^ SHARED = "shared"$/;" v class:ModuleState +SHARED_BUF Modules/_io/bytesio.c 65;" d file: +SHARED_KEYS_MAX_SIZE Include/internal/pycore_dict.h 113;" d +SHA_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^SHA_CTX = SHAstate_st$/;" v +SHAstate_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class SHAstate_st(Structure):$/;" c +SHEBANG PC/launcher.c /^} SHEBANG;$/;" t typeref:struct:__anon287 file: +SHIFT Lib/ast.py /^ SHIFT = auto() # '<<', '>>'$/;" v class:_Precedence +SHIFT Lib/test/test_ast.py /^ SHIFT = enum.auto() # '<<', '>>'$/;" v class:AST_Tests.test_precedence_enum._Precedence +SHIFT Lib/test/test_long.py /^SHIFT = sys.int_info.bits_per_digit$/;" v +SHIFT Modules/unicodedata_db.h 707;" d +SHIFT Objects/unicodetype_db.h 1753;" d +SHIFT_OVERFLOW Objects/stringlib/fastsearch.h 540;" d +SHIFT_TYPE Objects/stringlib/fastsearch.h 308;" d +SHIFT_TYPE Objects/stringlib/fastsearch.h 538;" d +SHORT Lib/ctypes/wintypes.py /^SHORT = ctypes.c_short$/;" v +SHORTEST Lib/email/charset.py /^SHORTEST = 3 # the shorter of QP and base64, but only for headers$/;" v +SHORTSLEEP Lib/test/fork_wait.py /^SHORTSLEEP = 0.5$/;" v +SHORT_ALIGN Modules/_struct.c 87;" d file: +SHORT_ASCII Tools/build/umarshal.py /^ SHORT_ASCII = ord('z')$/;" v class:Type +SHORT_ASCII_INTERNED Tools/build/umarshal.py /^ SHORT_ASCII_INTERNED = ord('Z')$/;" v class:Type +SHORT_BINBYTES Lib/pickle.py /^SHORT_BINBYTES = b'C' # " " ; " " " " < 256 bytes$/;" v +SHORT_BINBYTES Modules/_pickle.c /^ SHORT_BINBYTES = 'C',$/;" e enum:opcode file: +SHORT_BINSTRING Lib/pickle.py /^SHORT_BINSTRING= b'U' # " " ; " " " " < 256 bytes$/;" v +SHORT_BINSTRING Modules/_pickle.c /^ SHORT_BINSTRING = 'U',$/;" e enum:opcode file: +SHORT_BINUNICODE Lib/pickle.py /^SHORT_BINUNICODE = b'\\x8c' # push short string; UTF-8 length < 256 bytes$/;" v +SHORT_BINUNICODE Modules/_pickle.c /^ SHORT_BINUNICODE = '\\x8c',$/;" e enum:opcode file: +SHORT_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 515;" d +SHORT_MAX Lib/test/test_curses.py /^SHORT_MAX = 0x7fff$/;" v +SHORT_MODULE Lib/test/test_enum.py /^SHORT_MODULE = MODULE.split('.')[-1]$/;" v +SHORT_OPTS Python/getopt.c 44;" d file: +SHORT_TEST Lib/test/test_buffer.py /^SHORT_TEST = True$/;" v +SHORT_TIMEOUT Lib/test/support/__init__.py /^SHORT_TIMEOUT = 30.0$/;" v +SHOW_ALL Lib/xml/dom/NodeFilter.py /^ SHOW_ALL = 0xFFFFFFFF$/;" v class:NodeFilter +SHOW_ATTRIBUTE Lib/xml/dom/NodeFilter.py /^ SHOW_ATTRIBUTE = 0x00000002$/;" v class:NodeFilter +SHOW_CDATA_SECTION Lib/xml/dom/NodeFilter.py /^ SHOW_CDATA_SECTION = 0x00000008$/;" v class:NodeFilter +SHOW_COMMENT Lib/xml/dom/NodeFilter.py /^ SHOW_COMMENT = 0x00000080$/;" v class:NodeFilter +SHOW_DOCUMENT Lib/xml/dom/NodeFilter.py /^ SHOW_DOCUMENT = 0x00000100$/;" v class:NodeFilter +SHOW_DOCUMENT_FRAGMENT Lib/xml/dom/NodeFilter.py /^ SHOW_DOCUMENT_FRAGMENT = 0x00000400$/;" v class:NodeFilter +SHOW_DOCUMENT_TYPE Lib/xml/dom/NodeFilter.py /^ SHOW_DOCUMENT_TYPE = 0x00000200$/;" v class:NodeFilter +SHOW_ELEMENT Lib/xml/dom/NodeFilter.py /^ SHOW_ELEMENT = 0x00000001$/;" v class:NodeFilter +SHOW_ENTITY Lib/xml/dom/NodeFilter.py /^ SHOW_ENTITY = 0x00000020$/;" v class:NodeFilter +SHOW_ENTITY_REFERENCE Lib/xml/dom/NodeFilter.py /^ SHOW_ENTITY_REFERENCE = 0x00000010$/;" v class:NodeFilter +SHOW_NOTATION Lib/xml/dom/NodeFilter.py /^ SHOW_NOTATION = 0x00000800$/;" v class:NodeFilter +SHOW_PROCESSING_INSTRUCTION Lib/xml/dom/NodeFilter.py /^ SHOW_PROCESSING_INSTRUCTION = 0x00000040$/;" v class:NodeFilter +SHOW_TEXT Lib/xml/dom/NodeFilter.py /^ SHOW_TEXT = 0x00000004$/;" v class:NodeFilter +SHUTDOWN Lib/asyncio/sslproto.py /^ SHUTDOWN = "SHUTDOWN"$/;" v class:SSLProtocolState +SHUTDOWN Lib/multiprocessing/managers.py /^ SHUTDOWN = 2$/;" v class:State +SHUTDOWN_TIMEOUT Lib/test/_test_multiprocessing.py /^SHUTDOWN_TIMEOUT = support.SHORT_TIMEOUT$/;" v +SI Lib/curses/ascii.py /^SI = 0x0f # ^O$/;" v +SI Lib/test/test_ctypes/test_structures.py /^ class SI(Structure):$/;" c function:StructureTestCase.test_struct_alignment +SI Modules/cjkcodecs/_codecs_iso2022.c 58;" d file: +SIDE Modules/_decimal/libmpdec/transpose.c 44;" d file: +SID_CTX Modules/_ssl.c 3174;" d file: +SID_CTX Modules/_ssl.c 3177;" d file: +SIGCHECK Objects/longobject.c 106;" d file: +SIGINT_after_delay Lib/test/test_asyncio/test_windows_events.py /^ def SIGINT_after_delay():$/;" f function:ProactorLoopCtrlC.test_ctrl_c +SIGNAL Lib/test/test_asyncio/test_unix_events.py /^def SIGNAL(signum):$/;" f +SIGNAL_ALARM_METHODDEF Modules/clinic/signalmodule.c.h 55;" d +SIGNAL_ALARM_METHODDEF Modules/clinic/signalmodule.c.h 658;" d +SIGNAL_ASYNC_EXC Python/ceval_gil.c /^SIGNAL_ASYNC_EXC(PyInterpreterState *interp)$/;" f file: +SIGNAL_DEFAULT_INT_HANDLER_METHODDEF Modules/clinic/signalmodule.c.h 19;" d +SIGNAL_GETITIMER_METHODDEF Modules/clinic/signalmodule.c.h 340;" d +SIGNAL_GETITIMER_METHODDEF Modules/clinic/signalmodule.c.h 674;" d +SIGNAL_GETSIGNAL_METHODDEF Modules/clinic/signalmodule.c.h 186;" d +SIGNAL_MAP_LEN Modules/_decimal/_decimal.c 166;" d file: +SIGNAL_PAUSE_METHODDEF Modules/clinic/signalmodule.c.h 662;" d +SIGNAL_PAUSE_METHODDEF Modules/clinic/signalmodule.c.h 92;" d +SIGNAL_PENDING_CALLS Python/ceval_gil.c /^SIGNAL_PENDING_CALLS(struct _pending_calls *pending, PyInterpreterState *interp)$/;" f file: +SIGNAL_PENDING_SIGNALS Python/ceval_gil.c /^SIGNAL_PENDING_SIGNALS(PyInterpreterState *interp, int force)$/;" f file: +SIGNAL_PIDFD_SEND_SIGNAL_METHODDEF Modules/clinic/signalmodule.c.h 610;" d +SIGNAL_PIDFD_SEND_SIGNAL_METHODDEF Modules/clinic/signalmodule.c.h 706;" d +SIGNAL_PTHREAD_KILL_METHODDEF Modules/clinic/signalmodule.c.h 568;" d +SIGNAL_PTHREAD_KILL_METHODDEF Modules/clinic/signalmodule.c.h 702;" d +SIGNAL_PTHREAD_SIGMASK_METHODDEF Modules/clinic/signalmodule.c.h 372;" d +SIGNAL_PTHREAD_SIGMASK_METHODDEF Modules/clinic/signalmodule.c.h 678;" d +SIGNAL_RAISE_SIGNAL_METHODDEF Modules/clinic/signalmodule.c.h 112;" d +SIGNAL_SETITIMER_METHODDEF Modules/clinic/signalmodule.c.h 296;" d +SIGNAL_SETITIMER_METHODDEF Modules/clinic/signalmodule.c.h 670;" d +SIGNAL_SIGINTERRUPT_METHODDEF Modules/clinic/signalmodule.c.h 251;" d +SIGNAL_SIGINTERRUPT_METHODDEF Modules/clinic/signalmodule.c.h 666;" d +SIGNAL_SIGNAL_METHODDEF Modules/clinic/signalmodule.c.h 147;" d +SIGNAL_SIGPENDING_METHODDEF Modules/clinic/signalmodule.c.h 414;" d +SIGNAL_SIGPENDING_METHODDEF Modules/clinic/signalmodule.c.h 682;" d +SIGNAL_SIGTIMEDWAIT_METHODDEF Modules/clinic/signalmodule.c.h 531;" d +SIGNAL_SIGTIMEDWAIT_METHODDEF Modules/clinic/signalmodule.c.h 698;" d +SIGNAL_SIGWAITINFO_METHODDEF Modules/clinic/signalmodule.c.h 498;" d +SIGNAL_SIGWAITINFO_METHODDEF Modules/clinic/signalmodule.c.h 694;" d +SIGNAL_SIGWAIT_METHODDEF Modules/clinic/signalmodule.c.h 440;" d +SIGNAL_SIGWAIT_METHODDEF Modules/clinic/signalmodule.c.h 686;" d +SIGNAL_STRSIGNAL_METHODDEF Modules/clinic/signalmodule.c.h 218;" d +SIGNAL_VALID_SIGNALS_METHODDEF Modules/clinic/signalmodule.c.h 474;" d +SIGNAL_VALID_SIGNALS_METHODDEF Modules/clinic/signalmodule.c.h 690;" d +SIGNATURE_END_MARKER Objects/typeobject.c 509;" d file: +SIGNATURE_END_MARKER_LENGTH Objects/typeobject.c 510;" d file: +SIGNED_ADD_OVERFLOWED Modules/_datetimemodule.c 152;" d file: +SIGNED_CERTFILE Lib/test/test_asyncio/utils.py /^SIGNED_CERTFILE = data_file('keycert3.pem')$/;" v +SIGNED_CERTFILE Lib/test/test_ssl.py /^SIGNED_CERTFILE = data_file("keycert3.pem")$/;" v +SIGNED_CERTFILE2 Lib/test/test_ssl.py /^SIGNED_CERTFILE2 = data_file("keycert4.pem")$/;" v +SIGNED_CERTFILE2_HOSTNAME Lib/test/test_ssl.py /^SIGNED_CERTFILE2_HOSTNAME = 'fakehostname'$/;" v +SIGNED_CERTFILE_ECC Lib/test/test_ssl.py /^SIGNED_CERTFILE_ECC = data_file("keycertecc.pem")$/;" v +SIGNED_CERTFILE_ECC_HOSTNAME Lib/test/test_ssl.py /^SIGNED_CERTFILE_ECC_HOSTNAME = 'localhost-ecc'$/;" v +SIGNED_CERTFILE_HOSTNAME Lib/test/test_ssl.py /^SIGNED_CERTFILE_HOSTNAME = 'localhost'$/;" v +SIGNED_CERTFILE_INFO Lib/test/test_ssl.py /^SIGNED_CERTFILE_INFO = {$/;" v +SIGNED_INT16_BE Lib/test/test_array.py /^SIGNED_INT16_BE = 5$/;" v +SIGNED_INT16_BE Modules/arraymodule.c /^ SIGNED_INT16_BE = 5,$/;" e enum:machine_format_code file: +SIGNED_INT16_LE Lib/test/test_array.py /^SIGNED_INT16_LE = 4$/;" v +SIGNED_INT16_LE Modules/arraymodule.c /^ SIGNED_INT16_LE = 4,$/;" e enum:machine_format_code file: +SIGNED_INT32_BE Lib/test/test_array.py /^SIGNED_INT32_BE = 9$/;" v +SIGNED_INT32_BE Modules/arraymodule.c /^ SIGNED_INT32_BE = 9,$/;" e enum:machine_format_code file: +SIGNED_INT32_LE Lib/test/test_array.py /^SIGNED_INT32_LE = 8$/;" v +SIGNED_INT32_LE Modules/arraymodule.c /^ SIGNED_INT32_LE = 8,$/;" e enum:machine_format_code file: +SIGNED_INT64_BE Lib/test/test_array.py /^SIGNED_INT64_BE = 13$/;" v +SIGNED_INT64_BE Modules/arraymodule.c /^ SIGNED_INT64_BE = 13,$/;" e enum:machine_format_code file: +SIGNED_INT64_LE Lib/test/test_array.py /^SIGNED_INT64_LE = 12$/;" v +SIGNED_INT64_LE Modules/arraymodule.c /^ SIGNED_INT64_LE = 12,$/;" e enum:machine_format_code file: +SIGNED_INT8 Lib/test/test_array.py /^SIGNED_INT8 = 1$/;" v +SIGNED_INT8 Modules/arraymodule.c /^ SIGNED_INT8 = 1,$/;" e enum:machine_format_code file: +SIGNED_SHORT_BITFIELDS Modules/_ctypes/_ctypes_test.c 594;" d file: +SIGNED_STRUCT Lib/multiprocessing/forkserver.py /^SIGNED_STRUCT = struct.Struct('q') # large enough for pid_t$/;" v +SIGNING_CA Lib/test/test_asyncio/utils.py /^SIGNING_CA = data_file('pycacert.pem')$/;" v +SIGNING_CA Lib/test/test_ssl.py /^SIGNING_CA = data_file("capath", "ceff1710.0")$/;" v +SIGN_BIT Modules/audioop.c 63;" d file: +SIGN_MASK Include/internal/pycore_long.h 116;" d +SIGN_NEGATIVE Include/internal/pycore_long.h 118;" d +SIGN_ZERO Include/internal/pycore_long.h 117;" d +SIGUSR1Exception Lib/test/signalinterproctester.py /^class SIGUSR1Exception(Exception):$/;" c +SIG_ERR Modules/signalmodule.c 53;" d file: +SILENT Lib/test/test_logging.py /^SILENT = 120$/;" v +SIMPLE Lib/inspect.py /^ SIMPLE = 0x0$/;" v class:BufferFlags +SIMPLE_BASE Lib/test/test_urlparse.py /^SIMPLE_BASE = 'http:\/\/a\/b\/c\/d'$/;" v +SIMPLE_EVENTS Lib/test/test_monitoring.py /^SIMPLE_EVENTS = INSTRUMENTED_EVENTS + EXCEPT_EVENTS + [$/;" v +SIMPLE_EVENT_SET Lib/test/test_monitoring.py /^SIMPLE_EVENT_SET = functools.reduce(operator.or_, [ev for (ev, _) in SIMPLE_EVENTS], 0) | E.CALL$/;" v +SIMPLE_FORMAT Modules/_testbuffer.c 18;" d file: +SIMPLE_FUNCTION Python/specialize.c 306;" d file: +SIMPLE_NS_XMLFILE Lib/test/test_xml_etree.py /^SIMPLE_NS_XMLFILE = findfile("simple-ns.xml", subdir="xmltestdata")$/;" v +SIMPLE_STR Tools/peg_generator/pegen/grammar.py /^SIMPLE_STR = True$/;" v +SIMPLE_TYPE_CHARS Modules/_ctypes/_ctypes.c /^static const char SIMPLE_TYPE_CHARS[] = "cbBhHiIlLdfuzZqQPXOv?g";$/;" v file: +SIMPLE_XMLFILE Lib/test/test_xml_etree.py /^SIMPLE_XMLFILE = findfile("simple.xml", subdir="xmltestdata")$/;" v +SINGLE Lib/test/test_enum.py /^ SINGLE = 1$/;" v class:OldTestIntFlag.test_boundary.Simple +SINGLE Lib/tkinter/constants.py /^SINGLE='single'$/;" v +SINGLE_ROUND Python/pyhash.c 367;" d file: +SINK Lib/pipes.py /^SINK = '-.' # Must be last, reads stdin$/;" v +SIPHASH_H Modules/expat/siphash.h 99;" d +SIPHASH_INITIALIZER Modules/expat/siphash.h 129;" d +SIP_KEYLEN Modules/expat/siphash.h 139;" d +SIP_ROTL Modules/expat/siphash.h 111;" d +SIP_U32TO8_LE Modules/expat/siphash.h 113;" d +SIP_U64TO8_LE Modules/expat/siphash.h 119;" d +SIP_U8TO64_LE Modules/expat/siphash.h 123;" d +SIXTEEN Lib/test/test_enum.py /^ SIXTEEN = auto()$/;" v class:OldTestFlag.test_number_reset_and_order_cleanup.Confused +SIXTY_FOUR Lib/test/test_enum.py /^ SIXTY_FOUR = 64$/;" v class:TestStdLib.test_test_simple_enum.CheckedMissing +SIXTY_FOUR Lib/test/test_enum.py /^ SIXTY_FOUR = 64$/;" v class:TestStdLib.test_test_simple_enum.Missing +SIX_STEP_THRESHOLD Modules/_decimal/libmpdec/convolute.h 40;" d +SIZE Lib/ctypes/wintypes.py /^class SIZE(ctypes.Structure):$/;" c +SIZE32_MAX Python/marshal.c 184;" d file: +SIZE3_NTT Modules/_decimal/libmpdec/constants.h 50;" d +SIZEOF_DOUBLE PC/pyconfig.h 370;" d +SIZEOF_FLOAT PC/pyconfig.h 371;" d +SIZEOF_FPOS_T PC/pyconfig.h 329;" d +SIZEOF_FPOS_T PC/pyconfig.h 345;" d +SIZEOF_HKEY PC/pyconfig.h 330;" d +SIZEOF_HKEY PC/pyconfig.h 346;" d +SIZEOF_INT Lib/test/test_socket.py /^SIZEOF_INT = array.array("i").itemsize$/;" v +SIZEOF_INT Lib/test/test_time.py /^SIZEOF_INT = sysconfig.get_config_var('SIZEOF_INT') or 4$/;" v +SIZEOF_INT PC/pyconfig.h 366;" d +SIZEOF_LONG Include/pymacconfig.h 13;" d +SIZEOF_LONG Include/pymacconfig.h 37;" d +SIZEOF_LONG Include/pymacconfig.h 41;" d +SIZEOF_LONG Include/pymacconfig.h 54;" d +SIZEOF_LONG PC/pyconfig.h 367;" d +SIZEOF_LONG_LONG PC/pyconfig.h 369;" d +SIZEOF_OFF_T PC/pyconfig.h 328;" d +SIZEOF_OFF_T PC/pyconfig.h 344;" d +SIZEOF_PID_T PC/pyconfig.h 670;" d +SIZEOF_PTHREAD_T Include/pymacconfig.h 14;" d +SIZEOF_PTHREAD_T Include/pymacconfig.h 20;" d +SIZEOF_PTHREAD_T Include/pymacconfig.h 42;" d +SIZEOF_PTHREAD_T Include/pymacconfig.h 47;" d +SIZEOF_PTHREAD_T Include/pymacconfig.h 55;" d +SIZEOF_PTHREAD_T Include/pymacconfig.h 60;" d +SIZEOF_PY_HASH_T Include/pyport.h 144;" d +SIZEOF_PY_UHASH_T Include/pyport.h 147;" d +SIZEOF_SHORT PC/pyconfig.h 365;" d +SIZEOF_SIZE_T Include/pymacconfig.h 15;" d +SIZEOF_SIZE_T Include/pymacconfig.h 43;" d +SIZEOF_SIZE_T Include/pymacconfig.h 56;" d +SIZEOF_SIZE_T PC/pyconfig.h 331;" d +SIZEOF_SIZE_T PC/pyconfig.h 347;" d +SIZEOF_SOCKET_T Modules/socketmodule.h 235;" d +SIZEOF_SOCKET_T Modules/socketmodule.h 237;" d +SIZEOF_SOCKET_T Modules/socketmodule.h 241;" d +SIZEOF_SRE_CHAR Modules/_sre/sre.c 224;" d file: +SIZEOF_SRE_CHAR Modules/_sre/sre.c 231;" d file: +SIZEOF_SRE_CHAR Modules/_sre/sre.c 238;" d file: +SIZEOF_SRE_CHAR Modules/_sre/sre_lib.h 1812;" d +SIZEOF_TIME_T Include/pymacconfig.h 16;" d +SIZEOF_TIME_T Include/pymacconfig.h 44;" d +SIZEOF_TIME_T Include/pymacconfig.h 57;" d +SIZEOF_TIME_T PC/pyconfig.h 327;" d +SIZEOF_TIME_T PC/pyconfig.h 351;" d +SIZEOF_TIME_T PC/pyconfig.h 353;" d +SIZEOF_UINTPTR_T Include/pymacconfig.h 19;" d +SIZEOF_UINTPTR_T Include/pymacconfig.h 46;" d +SIZEOF_UINTPTR_T Include/pymacconfig.h 59;" d +SIZEOF_VOID_P Include/pymacconfig.h 17;" d +SIZEOF_VOID_P Include/pymacconfig.h 45;" d +SIZEOF_VOID_P Include/pymacconfig.h 58;" d +SIZEOF_VOID_P PC/pyconfig.h 326;" d +SIZEOF_VOID_P PC/pyconfig.h 343;" d +SIZEOF_WCHAR_T Lib/test/test_codecs.py /^ SIZEOF_WCHAR_T = -1$/;" v +SIZEOF_WCHAR_T Lib/test/test_codecs.py /^ SIZEOF_WCHAR_T = ctypes.sizeof(ctypes.c_wchar)$/;" v +SIZEOF_WCHAR_T PC/pyconfig.h 664;" d +SIZEOF__BOOL Include/pymacconfig.h 18;" d +SIZEOF__BOOL Include/pymacconfig.h 39;" d +SIZEOF__BOOL Include/pymacconfig.h 40;" d +SIZEOF__BOOL Include/pymacconfig.h 50;" d +SIZEOF__BOOL Include/pymacconfig.h 52;" d +SIZEOF__BOOL PC/pyconfig.h 667;" d +SIZES Tools/unicode/makeunicodedata.py /^SIZES = [$/;" v +SIZE_T_ALIGN Modules/_struct.c 93;" d file: +SIZE_T_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 1002;" d +SKIP Lib/doctest.py /^SKIP = register_optionflag('SKIP')$/;" v +SKIPBUILD Tools/msi/buildrelease.bat /^if "%1" EQU "--skip-build" (set SKIPBUILD=1) && shift && goto CheckOpts$/;" v +SKIPBUILD Tools/msi/buildrelease.bat /^if "%1" EQU "-B" (set SKIPBUILD=1) && shift && goto CheckOpts$/;" v +SKIPDOC Tools/msi/buildrelease.bat /^if "%1" EQU "--skip-doc" (set SKIPDOC=1) && shift && goto CheckOpts$/;" v +SKIPDOC Tools/msi/buildrelease.bat /^if "%1" EQU "-D" (set SKIPDOC=1) && shift && goto CheckOpts$/;" v +SKIPPED Lib/test/libregrtest/runtest.py /^ SKIPPED = "SKIPPED"$/;" v class:State +SKIPS Lib/test/test_json/test_fail.py /^SKIPS = {$/;" v +SKIP_FINALIZE Modules/_decimal/libmpdec/mpdecimal.c /^enum {SKIP_FINALIZE, DO_FINALIZE};$/;" e enum:__anon346 file: +SKIP_PREFIX PC/launcher.c 20;" d file: +SKIP_SHA3 Lib/test/test_hashlib.py /^SKIP_SHA3 = support.check_sanitizer(ub=True)$/;" v +SLASH Include/internal/pycore_token.h 33;" d +SLASH Lib/lib2to3/pgen2/token.py /^SLASH = 17$/;" v +SLASH Lib/token.py /^SLASH = 17$/;" v +SLASHEQUAL Include/internal/pycore_token.h 55;" d +SLASHEQUAL Lib/lib2to3/pgen2/token.py /^SLASHEQUAL = 40$/;" v +SLASHEQUAL Lib/token.py /^SLASHEQUAL = 39$/;" v +SLICE_INDEX_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 954;" d +SLOT0 Objects/typeobject.c 8336;" d file: +SLOT1 Objects/typeobject.c 8344;" d file: +SLOT1BIN Objects/typeobject.c 8428;" d file: +SLOT1BINFULL Objects/typeobject.c 8385;" d file: +SLOTDEFINED Objects/typeobject.c 6780;" d file: +SLOTDEFINED Objects/typeobject.c 6787;" d file: +SMALL Lib/test/test_json/test_enum.py /^SMALL = 1$/;" v +SMALLBUF Modules/_io/winconsoleio.c 49;" d file: +SMALLCHUNK Modules/_io/fileio.c 47;" d file: +SMALLCHUNK Modules/_io/fileio.c 51;" d file: +SMALLCHUNK Modules/_io/winconsoleio.c 36;" d file: +SMALLCHUNK Modules/_io/winconsoleio.c 40;" d file: +SMALLEST Lib/test/support/__init__.py /^SMALLEST = _SMALLEST()$/;" v +SMALL_MEMORY_LIMIT Include/internal/pycore_obmalloc.h 177;" d +SMALL_RECT Lib/ctypes/wintypes.py /^SMALL_RECT = _SMALL_RECT$/;" v +SMALL_REQUEST_THRESHOLD Include/internal/pycore_obmalloc.h 157;" d +SMALL_TEST_DATA Lib/test/test_zipfile/test_core.py /^SMALL_TEST_DATA = [('_ziptest1', '1q2w3e4r5t'),$/;" v +SMALL_TUPLE Tools/build/umarshal.py /^ SMALL_TUPLE = ord(')')$/;" v class:Type +SMTP Lib/email/policy.py /^SMTP = default.clone(linesep='\\r\\n')$/;" v +SMTP Lib/smtplib.py /^class SMTP:$/;" c +SMTPAUTHInitialResponseSimTests Lib/test/test_smtplib.py /^class SMTPAUTHInitialResponseSimTests(unittest.TestCase):$/;" c +SMTPAuthenticationError Lib/smtplib.py /^class SMTPAuthenticationError(SMTPResponseException):$/;" c +SMTPChannel Lib/test/smtpd.py /^class SMTPChannel(asynchat.async_chat):$/;" c +SMTPConnectError Lib/smtplib.py /^class SMTPConnectError(SMTPResponseException):$/;" c +SMTPDataError Lib/smtplib.py /^class SMTPDataError(SMTPResponseException):$/;" c +SMTPException Lib/smtplib.py /^class SMTPException(OSError):$/;" c +SMTPGeneralTests Lib/test/test_smtplib.py /^class SMTPGeneralTests(GeneralTests, unittest.TestCase):$/;" c +SMTPHandler Lib/logging/handlers.py /^class SMTPHandler(logging.Handler):$/;" c +SMTPHandlerTest Lib/test/test_logging.py /^class SMTPHandlerTest(BaseTest):$/;" c +SMTPHeloError Lib/smtplib.py /^class SMTPHeloError(SMTPResponseException):$/;" c +SMTPNotSupportedError Lib/smtplib.py /^class SMTPNotSupportedError(SMTPException):$/;" c +SMTPRecipientsRefused Lib/smtplib.py /^class SMTPRecipientsRefused(SMTPException):$/;" c +SMTPResponseException Lib/smtplib.py /^class SMTPResponseException(SMTPException):$/;" c +SMTPSenderRefused Lib/smtplib.py /^class SMTPSenderRefused(SMTPResponseException):$/;" c +SMTPServer Lib/test/smtpd.py /^class SMTPServer(asyncore.dispatcher):$/;" c +SMTPServerDisconnected Lib/smtplib.py /^class SMTPServerDisconnected(SMTPException):$/;" c +SMTPSimTests Lib/test/test_smtplib.py /^class SMTPSimTests(unittest.TestCase):$/;" c +SMTPUTF8 Lib/email/policy.py /^SMTPUTF8 = SMTP.clone(utf8=True)$/;" v +SMTPUTF8SimTests Lib/test/test_smtplib.py /^class SMTPUTF8SimTests(unittest.TestCase):$/;" c +SMTP_PORT Lib/smtplib.py /^SMTP_PORT = 25$/;" v +SMTP_SSL Lib/smtplib.py /^ class SMTP_SSL(SMTP):$/;" c class:SMTP +SMTP_SSL_PORT Lib/smtplib.py /^SMTP_SSL_PORT = 465$/;" v +SN Lib/test/test_binop.py /^class SN(SupEq):$/;" c +SNDCTL_DSP_CHANNELS Modules/ossaudiodev.c 53;" d file: +SNDLOC Lib/telnetlib.py /^SNDLOC = bytes([23]) # send location$/;" v +SO Lib/curses/ascii.py /^SO = 0x0e # ^N$/;" v +SO Modules/cjkcodecs/_codecs_iso2022.c 57;" d file: +SOCIABLE Lib/test/test_logging.py /^SOCIABLE = 116$/;" v +SOCKADDR_BTH_REDEF Modules/socketmodule.h /^struct SOCKADDR_BTH_REDEF {$/;" s +SOCKET Modules/selectmodule.c 65;" d file: +SOCKETCLOSE Modules/socketmodule.c 470;" d file: +SOCKETCLOSE Modules/socketmodule.c 479;" d file: +SOCKET_HAS_BEEN_CLOSED Modules/_ssl.c /^ SOCKET_HAS_BEEN_CLOSED,$/;" e enum:__anon584 file: +SOCKET_HAS_TIMED_OUT Modules/_ssl.c /^ SOCKET_HAS_TIMED_OUT,$/;" e enum:__anon584 file: +SOCKET_IS_BLOCKING Modules/_ssl.c /^ SOCKET_IS_BLOCKING,$/;" e enum:__anon584 file: +SOCKET_IS_NONBLOCKING Modules/_ssl.c /^ SOCKET_IS_NONBLOCKING,$/;" e enum:__anon584 file: +SOCKET_OPERATION_OK Modules/_ssl.c /^ SOCKET_OPERATION_OK$/;" e enum:__anon584 file: +SOCKET_T Modules/socketmodule.h /^typedef SOCKET SOCKET_T;$/;" t +SOCKET_T Modules/socketmodule.h /^typedef int SOCKET_T;$/;" t +SOCKET_TOO_LARGE_FOR_SELECT Modules/_ssl.c /^ SOCKET_TOO_LARGE_FOR_SELECT,$/;" e enum:__anon584 file: +SOCKLEN_T_LIMIT Modules/socketmodule.c 610;" d file: +SOCKLEN_T_LIMIT Modules/socketmodule.c 612;" d file: +SOCK_INPROGRESS_ERR Modules/socketmodule.c 647;" d file: +SOCK_INPROGRESS_ERR Modules/socketmodule.c 652;" d file: +SOCK_MAX_SIZE Lib/test/support/__init__.py /^SOCK_MAX_SIZE = 16 * 1024 * 1024 + 1$/;" v +SOCK_STREAM Lib/test/mock_socket.py /^SOCK_STREAM = socket_module.SOCK_STREAM$/;" v +SOCK_TIMEOUT_ERR Modules/socketmodule.c 646;" d file: +SOCK_TIMEOUT_ERR Modules/socketmodule.c 651;" d file: +SOFT_KEYWORD Include/internal/pycore_token.h 76;" d +SOFT_KEYWORD Lib/token.py /^SOFT_KEYWORD = 60$/;" v +SOFT_KEYWORD Tools/peg_generator/pegen/c_generator.py /^ SOFT_KEYWORD = 5$/;" v class:NodeTypes +SOFT_KEYWORDS Tools/peg_generator/pegen/grammar_parser.py /^ SOFT_KEYWORDS = ('memo',)$/;" v class:GeneratedParser +SOH Lib/curses/ascii.py /^SOH = 0x01 # ^A$/;" v +SOLARIS Lib/test/test_shutil.py /^SOLARIS = sys.platform.startswith("sunos")$/;" v +SOLARIS Tools/i18n/pygettext.py /^ SOLARIS = 2$/;" v class:main.Options +SOLARIS_XHDTYPE Lib/tarfile.py /^SOLARIS_XHDTYPE = b"X" # Solaris extended header$/;" v +SOLID Lib/tkinter/constants.py /^SOLID = 'solid'$/;" v +SOL_ALG Modules/socketmodule.h 180;" d +SOL_HCI Modules/socketmodule.c 488;" d file: +SOL_HCI Modules/socketmodule.c 501;" d file: +SOL_SOCKET Lib/test/mock_socket.py /^SOL_SOCKET = None$/;" v +SOURCE Lib/pipes.py /^SOURCE = '.-' # Must be first, writes stdout$/;" v +SOURCE Lib/test/test_cppext/__init__.py /^SOURCE = os.path.join(os.path.dirname(__file__), 'extension.cpp')$/;" v +SOURCE Lib/test/test_cppext/setup.py /^SOURCE = 'extension.cpp'$/;" v +SOURCE Lib/test/test_getpath.py /^ SOURCE = (pathlib.Path(__file__).absolute().parent.parent.parent \/ "Modules\/getpath.py").read_bytes()$/;" v +SOURCE Lib/test/test_getpath.py /^ SOURCE = get_getpath_codeobject()$/;" v +SOURCES Doc/Makefile /^SOURCES =$/;" m +SOURCE_CACHE Modules/_zoneinfo.c /^static const int SOURCE_CACHE = 1;$/;" v file: +SOURCE_CODES Lib/test/test_tabnanny.py /^SOURCE_CODES = {$/;" v +SOURCE_DIRS Tools/c-analyzer/cpython/__init__.py /^SOURCE_DIRS = [os.path.join(REPO_ROOT, name) for name in [$/;" v +SOURCE_FILE Modules/_zoneinfo.c /^static const int SOURCE_FILE = 2;$/;" v file: +SOURCE_NOCACHE Modules/_zoneinfo.c /^static const int SOURCE_NOCACHE = 0;$/;" v file: +SOURCE_SUFFIXES Lib/importlib/_bootstrap_external.py /^SOURCE_SUFFIXES = ['.py']$/;" v +SOURCE_URI Doc/tools/extensions/pyspecific.py /^SOURCE_URI = 'https:\/\/github.com\/python\/cpython\/tree\/3.12\/%s'$/;" v +SOUTH Lib/test/test_enum.py /^ SOUTH = 'south'$/;" v class:TestSpecial.setUp.Directional +SO_REUSEADDR Lib/test/mock_socket.py /^SO_REUSEADDR = None$/;" v +SO_REUSEADDR Modules/socketmodule.h 213;" d +SO_REUSEPORT Modules/socketmodule.h 216;" d +SP Lib/curses/ascii.py /^SP = 0x20 # space$/;" v +SPACE Lib/email/_parseaddr.py /^SPACE = ' '$/;" v +SPACE Lib/email/header.py /^SPACE = ' '$/;" v +SPACE Lib/test/test_email/test_email.py /^SPACE = ' '$/;" v +SPACE8 Lib/email/header.py /^SPACE8 = ' ' * 8$/;" v +SPACE_MASK Tools/unicode/makeunicodedata.py /^SPACE_MASK = 0x20$/;" v +SPAM Modules/_ctypes/_ctypes_test.c /^} SPAM;$/;" t typeref:struct:__anon512 file: +SPECIALIZATION_FAIL Python/specialize.c 254;" d file: +SPECIALIZATION_FAIL Python/specialize.c 265;" d file: +SPECIALIZATION_FAILURE_KINDS Include/pystats.h 11;" d +SPECIALS Lib/email/_header_value_parser.py /^SPECIALS = set(r'()<>@,:;.\\"[]')$/;" v +SPECIAL_CASING Tools/unicode/makeunicodedata.py /^SPECIAL_CASING = "SpecialCasing%s.txt"$/;" v +SPECIAL_CHARS Lib/re/_parser.py /^SPECIAL_CHARS = ".\\\\[{()*+?^$|"$/;" v +SPECIAL_LOOKUP PC/layout/support/appxmanifest.py /^SPECIAL_LOOKUP = object()$/;" v +SPECIAL_VALUE Modules/cmathmodule.c 141;" d file: +SPEC_FAIL_ATTR_AUDITED_SLOT Python/specialize.c 339;" d file: +SPEC_FAIL_ATTR_BUILTIN_CLASS_METHOD Python/specialize.c 345;" d file: +SPEC_FAIL_ATTR_BUILTIN_CLASS_METHOD_OBJ Python/specialize.c 356;" d file: +SPEC_FAIL_ATTR_CLASS_ATTR_DESCRIPTOR Python/specialize.c 355;" d file: +SPEC_FAIL_ATTR_CLASS_ATTR_SIMPLE Python/specialize.c 354;" d file: +SPEC_FAIL_ATTR_CLASS_METHOD_OBJ Python/specialize.c 346;" d file: +SPEC_FAIL_ATTR_HAS_MANAGED_DICT Python/specialize.c 348;" d file: +SPEC_FAIL_ATTR_INSTANCE_ATTRIBUTE Python/specialize.c 349;" d file: +SPEC_FAIL_ATTR_METACLASS_ATTRIBUTE Python/specialize.c 350;" d file: +SPEC_FAIL_ATTR_METHOD Python/specialize.c 334;" d file: +SPEC_FAIL_ATTR_MODULE_ATTR_NOT_FOUND Python/specialize.c 342;" d file: +SPEC_FAIL_ATTR_MUTABLE_CLASS Python/specialize.c 335;" d file: +SPEC_FAIL_ATTR_NON_OBJECT_SLOT Python/specialize.c 337;" d file: +SPEC_FAIL_ATTR_NON_OVERRIDING_DESCRIPTOR Python/specialize.c 332;" d file: +SPEC_FAIL_ATTR_NON_STRING_OR_SPLIT Python/specialize.c 341;" d file: +SPEC_FAIL_ATTR_NOT_DESCRIPTOR Python/specialize.c 333;" d file: +SPEC_FAIL_ATTR_NOT_IN_DICT Python/specialize.c 353;" d file: +SPEC_FAIL_ATTR_NOT_IN_KEYS Python/specialize.c 352;" d file: +SPEC_FAIL_ATTR_NOT_MANAGED_DICT Python/specialize.c 340;" d file: +SPEC_FAIL_ATTR_OBJECT_SLOT Python/specialize.c 347;" d file: +SPEC_FAIL_ATTR_OVERRIDING_DESCRIPTOR Python/specialize.c 331;" d file: +SPEC_FAIL_ATTR_PROPERTY Python/specialize.c 336;" d file: +SPEC_FAIL_ATTR_PROPERTY_NOT_PY_FUNCTION Python/specialize.c 351;" d file: +SPEC_FAIL_ATTR_READ_ONLY Python/specialize.c 338;" d file: +SPEC_FAIL_ATTR_SHADOWED Python/specialize.c 344;" d file: +SPEC_FAIL_BINARY_OP_ADD_DIFFERENT_TYPES Python/specialize.c 380;" d file: +SPEC_FAIL_BINARY_OP_ADD_OTHER Python/specialize.c 381;" d file: +SPEC_FAIL_BINARY_OP_AND_DIFFERENT_TYPES Python/specialize.c 382;" d file: +SPEC_FAIL_BINARY_OP_AND_INT Python/specialize.c 383;" d file: +SPEC_FAIL_BINARY_OP_AND_OTHER Python/specialize.c 384;" d file: +SPEC_FAIL_BINARY_OP_FLOOR_DIVIDE Python/specialize.c 385;" d file: +SPEC_FAIL_BINARY_OP_LSHIFT Python/specialize.c 386;" d file: +SPEC_FAIL_BINARY_OP_MATRIX_MULTIPLY Python/specialize.c 387;" d file: +SPEC_FAIL_BINARY_OP_MULTIPLY_DIFFERENT_TYPES Python/specialize.c 388;" d file: +SPEC_FAIL_BINARY_OP_MULTIPLY_OTHER Python/specialize.c 389;" d file: +SPEC_FAIL_BINARY_OP_OR Python/specialize.c 390;" d file: +SPEC_FAIL_BINARY_OP_POWER Python/specialize.c 391;" d file: +SPEC_FAIL_BINARY_OP_REMAINDER Python/specialize.c 392;" d file: +SPEC_FAIL_BINARY_OP_RSHIFT Python/specialize.c 393;" d file: +SPEC_FAIL_BINARY_OP_SUBTRACT_DIFFERENT_TYPES Python/specialize.c 394;" d file: +SPEC_FAIL_BINARY_OP_SUBTRACT_OTHER Python/specialize.c 395;" d file: +SPEC_FAIL_BINARY_OP_TRUE_DIVIDE_DIFFERENT_TYPES Python/specialize.c 396;" d file: +SPEC_FAIL_BINARY_OP_TRUE_DIVIDE_FLOAT Python/specialize.c 397;" d file: +SPEC_FAIL_BINARY_OP_TRUE_DIVIDE_OTHER Python/specialize.c 398;" d file: +SPEC_FAIL_BINARY_OP_XOR Python/specialize.c 399;" d file: +SPEC_FAIL_CALL_BAD_CALL_FLAGS Python/specialize.c 412;" d file: +SPEC_FAIL_CALL_BOUND_METHOD Python/specialize.c 415;" d file: +SPEC_FAIL_CALL_CFUNC_METHOD_FASTCALL_KEYWORDS Python/specialize.c 408;" d file: +SPEC_FAIL_CALL_CFUNC_NOARGS Python/specialize.c 407;" d file: +SPEC_FAIL_CALL_CFUNC_VARARGS Python/specialize.c 405;" d file: +SPEC_FAIL_CALL_CFUNC_VARARGS_KEYWORDS Python/specialize.c 406;" d file: +SPEC_FAIL_CALL_CLASS_MUTABLE Python/specialize.c 418;" d file: +SPEC_FAIL_CALL_CLASS_NO_VECTORCALL Python/specialize.c 417;" d file: +SPEC_FAIL_CALL_CMETHOD Python/specialize.c 404;" d file: +SPEC_FAIL_CALL_INSTANCE_METHOD Python/specialize.c 403;" d file: +SPEC_FAIL_CALL_KWNAMES Python/specialize.c 419;" d file: +SPEC_FAIL_CALL_METHOD_WRAPPER Python/specialize.c 420;" d file: +SPEC_FAIL_CALL_METH_DESCR_METHOD_FASTCALL_KEYWORDS Python/specialize.c 411;" d file: +SPEC_FAIL_CALL_METH_DESCR_VARARGS Python/specialize.c 409;" d file: +SPEC_FAIL_CALL_METH_DESCR_VARARGS_KEYWORDS Python/specialize.c 410;" d file: +SPEC_FAIL_CALL_OPERATOR_WRAPPER Python/specialize.c 421;" d file: +SPEC_FAIL_CALL_PEP_523 Python/specialize.c 414;" d file: +SPEC_FAIL_CALL_PYTHON_CLASS Python/specialize.c 413;" d file: +SPEC_FAIL_CALL_STR Python/specialize.c 416;" d file: +SPEC_FAIL_CODE_COMPLEX_PARAMETERS Python/specialize.c 317;" d file: +SPEC_FAIL_CODE_NOT_OPTIMIZED Python/specialize.c 318;" d file: +SPEC_FAIL_COMPARE_OP_BASEOBJECT Python/specialize.c 432;" d file: +SPEC_FAIL_COMPARE_OP_BIG_INT Python/specialize.c 426;" d file: +SPEC_FAIL_COMPARE_OP_BOOL Python/specialize.c 431;" d file: +SPEC_FAIL_COMPARE_OP_BYTES Python/specialize.c 427;" d file: +SPEC_FAIL_COMPARE_OP_DIFFERENT_TYPES Python/specialize.c 424;" d file: +SPEC_FAIL_COMPARE_OP_FLOAT_LONG Python/specialize.c 433;" d file: +SPEC_FAIL_COMPARE_OP_LIST Python/specialize.c 429;" d file: +SPEC_FAIL_COMPARE_OP_LONG_FLOAT Python/specialize.c 434;" d file: +SPEC_FAIL_COMPARE_OP_SET Python/specialize.c 430;" d file: +SPEC_FAIL_COMPARE_OP_STRING Python/specialize.c 425;" d file: +SPEC_FAIL_COMPARE_OP_TUPLE Python/specialize.c 428;" d file: +SPEC_FAIL_EXPECTED_ERROR Python/specialize.c 315;" d file: +SPEC_FAIL_ITER_ASCII_STRING Python/specialize.c 456;" d file: +SPEC_FAIL_ITER_ASYNC_GENERATOR Python/specialize.c 439;" d file: +SPEC_FAIL_ITER_ASYNC_GENERATOR_SEND Python/specialize.c 457;" d file: +SPEC_FAIL_ITER_BYTES Python/specialize.c 444;" d file: +SPEC_FAIL_ITER_CALLABLE Python/specialize.c 455;" d file: +SPEC_FAIL_ITER_COROUTINE Python/specialize.c 438;" d file: +SPEC_FAIL_ITER_DICT_ITEMS Python/specialize.c 448;" d file: +SPEC_FAIL_ITER_DICT_KEYS Python/specialize.c 447;" d file: +SPEC_FAIL_ITER_DICT_VALUES Python/specialize.c 449;" d file: +SPEC_FAIL_ITER_ENUMERATE Python/specialize.c 450;" d file: +SPEC_FAIL_ITER_GENERATOR Python/specialize.c 437;" d file: +SPEC_FAIL_ITER_ITERTOOLS Python/specialize.c 446;" d file: +SPEC_FAIL_ITER_LIST Python/specialize.c 440;" d file: +SPEC_FAIL_ITER_MAP Python/specialize.c 451;" d file: +SPEC_FAIL_ITER_RANGE Python/specialize.c 445;" d file: +SPEC_FAIL_ITER_REVERSED_LIST Python/specialize.c 454;" d file: +SPEC_FAIL_ITER_SEQ_ITER Python/specialize.c 453;" d file: +SPEC_FAIL_ITER_SET Python/specialize.c 442;" d file: +SPEC_FAIL_ITER_STRING Python/specialize.c 443;" d file: +SPEC_FAIL_ITER_TUPLE Python/specialize.c 441;" d file: +SPEC_FAIL_ITER_ZIP Python/specialize.c 452;" d file: +SPEC_FAIL_LOAD_GLOBAL_NON_DICT Python/specialize.c 321;" d file: +SPEC_FAIL_LOAD_GLOBAL_NON_STRING_OR_SPLIT Python/specialize.c 322;" d file: +SPEC_FAIL_NO_DICT Python/specialize.c 311;" d file: +SPEC_FAIL_OTHER Python/specialize.c 310;" d file: +SPEC_FAIL_OUT_OF_RANGE Python/specialize.c 314;" d file: +SPEC_FAIL_OUT_OF_VERSIONS Python/specialize.c 313;" d file: +SPEC_FAIL_OVERRIDDEN Python/specialize.c 312;" d file: +SPEC_FAIL_SUBSCR_ARRAY_INT Python/specialize.c 360;" d file: +SPEC_FAIL_SUBSCR_ARRAY_SLICE Python/specialize.c 361;" d file: +SPEC_FAIL_SUBSCR_BUFFER_INT Python/specialize.c 366;" d file: +SPEC_FAIL_SUBSCR_BUFFER_SLICE Python/specialize.c 367;" d file: +SPEC_FAIL_SUBSCR_BYTEARRAY_INT Python/specialize.c 371;" d file: +SPEC_FAIL_SUBSCR_BYTEARRAY_SLICE Python/specialize.c 372;" d file: +SPEC_FAIL_SUBSCR_DICT_SUBCLASS_NO_OVERRIDE Python/specialize.c 375;" d file: +SPEC_FAIL_SUBSCR_LIST_SLICE Python/specialize.c 362;" d file: +SPEC_FAIL_SUBSCR_NOT_HEAP_TYPE Python/specialize.c 376;" d file: +SPEC_FAIL_SUBSCR_PY_OTHER Python/specialize.c 374;" d file: +SPEC_FAIL_SUBSCR_PY_SIMPLE Python/specialize.c 373;" d file: +SPEC_FAIL_SUBSCR_SEQUENCE_INT Python/specialize.c 368;" d file: +SPEC_FAIL_SUBSCR_STRING_INT Python/specialize.c 364;" d file: +SPEC_FAIL_SUBSCR_STRING_SLICE Python/specialize.c 365;" d file: +SPEC_FAIL_SUBSCR_TUPLE_SLICE Python/specialize.c 363;" d file: +SPEC_FAIL_SUPER_BAD_CLASS Python/specialize.c 326;" d file: +SPEC_FAIL_SUPER_SHADOWED Python/specialize.c 327;" d file: +SPEC_FAIL_UNPACK_SEQUENCE_ITERATOR Python/specialize.c 461;" d file: +SPEC_FAIL_UNPACK_SEQUENCE_SEQUENCE Python/specialize.c 462;" d file: +SPEC_FAIL_WRONG_NUMBER_ARGUMENTS Python/specialize.c 316;" d file: +SPHINXBUILD Doc/Makefile /^SPHINXBUILD = PATH=$(VENVDIR)\/bin:$$PATH sphinx-build$/;" m +SPHINXBUILD Doc/make.bat /^ set SPHINXBUILD=%PYTHON% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"$/;" v +SPHINXERRORHANDLING Doc/Makefile /^SPHINXERRORHANDLING = -W$/;" m +SPHINXLINT Doc/Makefile /^SPHINXLINT = PATH=$(VENVDIR)\/bin:$$PATH sphinx-lint$/;" m +SPHINXLINT Doc/make.bat /^ set SPHINXLINT=%PYTHON% -m sphinxlint$/;" v +SPHINXOPTS Doc/make.bat /^ set SPHINXOPTS=-D html_theme_options.body_max_width=none %SPHINXOPTS%$/;" v +SPHINXOPTS Doc/make.bat /^ set SPHINXOPTS=-D latex_elements.papersize=%PAPER% %SPHINXOPTS%$/;" v +SPLIT Lib/test/test_importlib/test_abc.py /^ SPLIT = SPLIT_EL$/;" v class:ExecutionLoaderDefaultsTests +SPLIT Lib/test/test_importlib/test_abc.py /^ SPLIT = SPLIT_IL$/;" v class:InspectLoaderDefaultsTests +SPLIT Lib/test/test_importlib/test_abc.py /^ SPLIT = make_abc_subclasses(Loader)$/;" v class:LoaderDefaultsTests +SPLIT Lib/test/test_importlib/test_abc.py /^ SPLIT = make_abc_subclasses(MetaPathFinder)$/;" v class:MetaPathFinderDefaultsTests +SPLIT Lib/test/test_importlib/test_abc.py /^ SPLIT = make_abc_subclasses(PathEntryFinder)$/;" v class:PathEntryFinderDefaultsTests +SPLIT Lib/test/test_importlib/test_abc.py /^ SPLIT = make_abc_subclasses(ResourceLoader)$/;" v class:ResourceLoaderDefaultsTests +SPLITTESTDIRS Lib/test/libregrtest/runtest.py /^SPLITTESTDIRS = {$/;" v +SPLIT_ADD Objects/stringlib/split.h 32;" d +SPLIT_APPEND Objects/stringlib/split.h 20;" d +SPLIT_EL Lib/test/test_importlib/test_abc.py /^SPLIT_EL = make_abc_subclasses(ExecutionLoader)$/;" v +SPLIT_IL Lib/test/test_importlib/test_abc.py /^SPLIT_IL = make_abc_subclasses(InspectLoader)$/;" v +SPLIT_SL Lib/test/test_importlib/test_abc.py /^SPLIT_SL = make_abc_subclasses(SourceLoader, util=util, init=init)$/;" v +SPLIT_SOL Lib/test/test_importlib/test_abc.py /^SPLIT_SOL = make_abc_subclasses(SourceOnlyLoader, 'SourceLoader')$/;" v +SPRING Lib/test/test_enum.py /^ SPRING = 1$/;" v class:TestSpecial.setUp.Season +SPRING Lib/test/test_enum.py /^ SPRING = 1$/;" v class:TestSpecial.test_comparisons.Part +SPRING Lib/test/test_enum.py /^ SPRING = 1$/;" v class:TestSpecial.test_iteration_order.Season +SPRING Lib/test/test_enum.py /^ SPRING = auto()$/;" v class:_EnumTests.test_attribute_deletion.Season +SPWD_GETSPALL_METHODDEF Modules/clinic/spwdmodule.c.h 59;" d +SPWD_GETSPALL_METHODDEF Modules/clinic/spwdmodule.c.h 78;" d +SPWD_GETSPNAM_METHODDEF Modules/clinic/spwdmodule.c.h 21;" d +SPWD_GETSPNAM_METHODDEF Modules/clinic/spwdmodule.c.h 74;" d +SQSLOT Objects/typeobject.c 9373;" d file: +SQSLOT Objects/typeobject.c 9394;" d file: +SRCDIR Mac/BuildScript/build-installer.py /^SRCDIR = os.path.dirname($/;" v +SRCDIR Tools/freeze/test/freeze.py /^SRCDIR = os.path.dirname(os.path.dirname(TOOL_ROOT))$/;" v +SRCDIR Tools/patchcheck/patchcheck.py /^SRCDIR = sysconfig.get_config_var('srcdir')$/;" v +SRCDIR Tools/wasm/wasm_assets.py /^SRCDIR = pathlib.Path(__file__).parent.parent.parent.absolute()$/;" v +SRCDIR Tools/wasm/wasm_build.py /^SRCDIR = pathlib.Path(__file__).parent.parent.parent.absolute()$/;" v +SRCDIR_LIB Tools/wasm/wasm_assets.py /^SRCDIR_LIB = SRCDIR \/ "Lib"$/;" v +SRC_ARCHITECTURE PCbuild/prepare_libffi.bat /^ set SRC_ARCHITECTURE=ARM$/;" v +SRC_ARCHITECTURE PCbuild/prepare_libffi.bat /^ set SRC_ARCHITECTURE=aarch64$/;" v +SRC_ARCHITECTURE PCbuild/prepare_libffi.bat /^ set SRC_ARCHITECTURE=x86$/;" v +SRC_ARCHITECTURE PCbuild/prepare_libffi.bat /^set SRC_ARCHITECTURE=x86$/;" v +SRC_DIR Programs/freeze_test_frozenmain.py /^SRC_DIR = os.path.dirname(PROGRAM_DIR)$/;" v +SRC_DIR Tools/build/check_extension_modules.py /^SRC_DIR = pathlib.Path(__file__).parent.parent.parent$/;" v +SRC_DIR Tools/build/generate_stdlib_module_names.py /^SRC_DIR = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))$/;" v +SRC_LOCATION_FROM_AST Include/cpython/compile.h 42;" d +SRE Modules/_sre/sre.c 225;" d file: +SRE Modules/_sre/sre.c 232;" d file: +SRE Modules/_sre/sre.c 239;" d file: +SRE Modules/_sre/sre_lib.h /^} SRE(match_context);$/;" t typeref:struct:__anon460 +SRE Modules/_sre/sre_lib.h 1813;" d +SRE_AT_BEGINNING Modules/_sre/sre_constants.h 58;" d +SRE_AT_BEGINNING_LINE Modules/_sre/sre_constants.h 59;" d +SRE_AT_BEGINNING_STRING Modules/_sre/sre_constants.h 60;" d +SRE_AT_BOUNDARY Modules/_sre/sre_constants.h 61;" d +SRE_AT_END Modules/_sre/sre_constants.h 63;" d +SRE_AT_END_LINE Modules/_sre/sre_constants.h 64;" d +SRE_AT_END_STRING Modules/_sre/sre_constants.h 65;" d +SRE_AT_LOC_BOUNDARY Modules/_sre/sre_constants.h 66;" d +SRE_AT_LOC_NON_BOUNDARY Modules/_sre/sre_constants.h 67;" d +SRE_AT_NON_BOUNDARY Modules/_sre/sre_constants.h 62;" d +SRE_AT_UNI_BOUNDARY Modules/_sre/sre_constants.h 68;" d +SRE_AT_UNI_NON_BOUNDARY Modules/_sre/sre_constants.h 69;" d +SRE_CATEGORY_DIGIT Modules/_sre/sre_constants.h 70;" d +SRE_CATEGORY_LINEBREAK Modules/_sre/sre_constants.h 76;" d +SRE_CATEGORY_LOC_NOT_WORD Modules/_sre/sre_constants.h 79;" d +SRE_CATEGORY_LOC_WORD Modules/_sre/sre_constants.h 78;" d +SRE_CATEGORY_NOT_DIGIT Modules/_sre/sre_constants.h 71;" d +SRE_CATEGORY_NOT_LINEBREAK Modules/_sre/sre_constants.h 77;" d +SRE_CATEGORY_NOT_SPACE Modules/_sre/sre_constants.h 73;" d +SRE_CATEGORY_NOT_WORD Modules/_sre/sre_constants.h 75;" d +SRE_CATEGORY_SPACE Modules/_sre/sre_constants.h 72;" d +SRE_CATEGORY_UNI_DIGIT Modules/_sre/sre_constants.h 80;" d +SRE_CATEGORY_UNI_LINEBREAK Modules/_sre/sre_constants.h 86;" d +SRE_CATEGORY_UNI_NOT_DIGIT Modules/_sre/sre_constants.h 81;" d +SRE_CATEGORY_UNI_NOT_LINEBREAK Modules/_sre/sre_constants.h 87;" d +SRE_CATEGORY_UNI_NOT_SPACE Modules/_sre/sre_constants.h 83;" d +SRE_CATEGORY_UNI_NOT_WORD Modules/_sre/sre_constants.h 85;" d +SRE_CATEGORY_UNI_SPACE Modules/_sre/sre_constants.h 82;" d +SRE_CATEGORY_UNI_WORD Modules/_sre/sre_constants.h 84;" d +SRE_CATEGORY_WORD Modules/_sre/sre_constants.h 74;" d +SRE_CHAR Modules/_sre/sre.c 223;" d file: +SRE_CHAR Modules/_sre/sre.c 230;" d file: +SRE_CHAR Modules/_sre/sre.c 237;" d file: +SRE_CHAR Modules/_sre/sre_lib.h 1811;" d +SRE_CODE Modules/_sre/sre.h 18;" d +SRE_CODE_BITS Modules/_sre/sre.c 50;" d file: +SRE_ERROR_ILLEGAL Modules/_sre/sre.c 69;" d file: +SRE_ERROR_INTERRUPTED Modules/_sre/sre.c 73;" d file: +SRE_ERROR_MEMORY Modules/_sre/sre.c 72;" d file: +SRE_ERROR_RECURSION_LIMIT Modules/_sre/sre.c 71;" d file: +SRE_ERROR_STATE Modules/_sre/sre.c 70;" d file: +SRE_FLAG_ASCII Lib/re/_constants.py /^SRE_FLAG_ASCII = 256 # use ascii "locale"$/;" v +SRE_FLAG_ASCII Modules/_sre/sre_constants.h 96;" d +SRE_FLAG_DEBUG Lib/re/_constants.py /^SRE_FLAG_DEBUG = 128 # debugging$/;" v +SRE_FLAG_DEBUG Modules/_sre/sre_constants.h 95;" d +SRE_FLAG_DEBUG Modules/_xxtestfuzz/fuzzer.c /^int SRE_FLAG_DEBUG = 0;$/;" v +SRE_FLAG_DOTALL Lib/re/_constants.py /^SRE_FLAG_DOTALL = 16 # treat target as a single string$/;" v +SRE_FLAG_DOTALL Modules/_sre/sre_constants.h 92;" d +SRE_FLAG_IGNORECASE Lib/re/_constants.py /^SRE_FLAG_IGNORECASE = 2 # case insensitive$/;" v +SRE_FLAG_IGNORECASE Modules/_sre/sre_constants.h 89;" d +SRE_FLAG_LOCALE Lib/re/_constants.py /^SRE_FLAG_LOCALE = 4 # honour system locale$/;" v +SRE_FLAG_LOCALE Modules/_sre/sre_constants.h 90;" d +SRE_FLAG_MULTILINE Lib/re/_constants.py /^SRE_FLAG_MULTILINE = 8 # treat target as multiline string$/;" v +SRE_FLAG_MULTILINE Modules/_sre/sre_constants.h 91;" d +SRE_FLAG_TEMPLATE Lib/re/_constants.py /^SRE_FLAG_TEMPLATE = 1 # template mode (unknown purpose, deprecated)$/;" v +SRE_FLAG_TEMPLATE Modules/_sre/sre_constants.h 88;" d +SRE_FLAG_UNICODE Lib/re/_constants.py /^SRE_FLAG_UNICODE = 32 # use unicode "locale"$/;" v +SRE_FLAG_UNICODE Modules/_sre/sre_constants.h 93;" d +SRE_FLAG_VERBOSE Lib/re/_constants.py /^SRE_FLAG_VERBOSE = 64 # ignore whitespace and comments$/;" v +SRE_FLAG_VERBOSE Modules/_sre/sre_constants.h 94;" d +SRE_INCLUDED Modules/_sre/sre.h 12;" d +SRE_INFO_CHARSET Lib/re/_constants.py /^SRE_INFO_CHARSET = 4 # pattern starts with character from given set$/;" v +SRE_INFO_CHARSET Modules/_sre/sre_constants.h 99;" d +SRE_INFO_LITERAL Lib/re/_constants.py /^SRE_INFO_LITERAL = 2 # entire pattern is literal (given by prefix)$/;" v +SRE_INFO_LITERAL Modules/_sre/sre_constants.h 98;" d +SRE_INFO_PREFIX Lib/re/_constants.py /^SRE_INFO_PREFIX = 1 # has prefix$/;" v +SRE_INFO_PREFIX Modules/_sre/sre_constants.h 97;" d +SRE_IS_DIGIT Modules/_sre/sre.c 84;" d file: +SRE_IS_LINEBREAK Modules/_sre/sre.c 88;" d file: +SRE_IS_SPACE Modules/_sre/sre.c 86;" d file: +SRE_IS_WORD Modules/_sre/sre.c 90;" d file: +SRE_LOC_IS_ALNUM Modules/_sre/sre.c 101;" d file: +SRE_LOC_IS_WORD Modules/_sre/sre.c 102;" d file: +SRE_MAGIC Modules/_sre/sre_constants.h 14;" d +SRE_MAXGROUPS Modules/_sre/sre.h 21;" d +SRE_MAXGROUPS Modules/_sre/sre.h 24;" d +SRE_MAXREPEAT Modules/_sre/sre.h 20;" d +SRE_MAXREPEAT Modules/_sre/sre.h 23;" d +SRE_OP_ANY Modules/_sre/sre_constants.h 17;" d +SRE_OP_ANY_ALL Modules/_sre/sre_constants.h 18;" d +SRE_OP_ASSERT Modules/_sre/sre_constants.h 19;" d +SRE_OP_ASSERT_NOT Modules/_sre/sre_constants.h 20;" d +SRE_OP_AT Modules/_sre/sre_constants.h 21;" d +SRE_OP_ATOMIC_GROUP Modules/_sre/sre_constants.h 42;" d +SRE_OP_BIGCHARSET Modules/_sre/sre_constants.h 25;" d +SRE_OP_BRANCH Modules/_sre/sre_constants.h 22;" d +SRE_OP_CATEGORY Modules/_sre/sre_constants.h 23;" d +SRE_OP_CHARSET Modules/_sre/sre_constants.h 24;" d +SRE_OP_FAILURE Modules/_sre/sre_constants.h 15;" d +SRE_OP_GROUPREF Modules/_sre/sre_constants.h 26;" d +SRE_OP_GROUPREF_EXISTS Modules/_sre/sre_constants.h 27;" d +SRE_OP_GROUPREF_IGNORE Modules/_sre/sre_constants.h 45;" d +SRE_OP_GROUPREF_LOC_IGNORE Modules/_sre/sre_constants.h 49;" d +SRE_OP_GROUPREF_UNI_IGNORE Modules/_sre/sre_constants.h 53;" d +SRE_OP_IN Modules/_sre/sre_constants.h 28;" d +SRE_OP_INFO Modules/_sre/sre_constants.h 29;" d +SRE_OP_IN_IGNORE Modules/_sre/sre_constants.h 46;" d +SRE_OP_IN_LOC_IGNORE Modules/_sre/sre_constants.h 50;" d +SRE_OP_IN_UNI_IGNORE Modules/_sre/sre_constants.h 54;" d +SRE_OP_JUMP Modules/_sre/sre_constants.h 30;" d +SRE_OP_LITERAL Modules/_sre/sre_constants.h 31;" d +SRE_OP_LITERAL_IGNORE Modules/_sre/sre_constants.h 47;" d +SRE_OP_LITERAL_LOC_IGNORE Modules/_sre/sre_constants.h 51;" d +SRE_OP_LITERAL_UNI_IGNORE Modules/_sre/sre_constants.h 55;" d +SRE_OP_MARK Modules/_sre/sre_constants.h 32;" d +SRE_OP_MAX_UNTIL Modules/_sre/sre_constants.h 33;" d +SRE_OP_MIN_REPEAT_ONE Modules/_sre/sre_constants.h 41;" d +SRE_OP_MIN_UNTIL Modules/_sre/sre_constants.h 34;" d +SRE_OP_NEGATE Modules/_sre/sre_constants.h 36;" d +SRE_OP_NOT_LITERAL Modules/_sre/sre_constants.h 35;" d +SRE_OP_NOT_LITERAL_IGNORE Modules/_sre/sre_constants.h 48;" d +SRE_OP_NOT_LITERAL_LOC_IGNORE Modules/_sre/sre_constants.h 52;" d +SRE_OP_NOT_LITERAL_UNI_IGNORE Modules/_sre/sre_constants.h 56;" d +SRE_OP_POSSESSIVE_REPEAT Modules/_sre/sre_constants.h 43;" d +SRE_OP_POSSESSIVE_REPEAT_ONE Modules/_sre/sre_constants.h 44;" d +SRE_OP_RANGE Modules/_sre/sre_constants.h 37;" d +SRE_OP_RANGE_UNI_IGNORE Modules/_sre/sre_constants.h 57;" d +SRE_OP_REPEAT Modules/_sre/sre_constants.h 38;" d +SRE_OP_REPEAT_ONE Modules/_sre/sre_constants.h 39;" d +SRE_OP_SUBPATTERN Modules/_sre/sre_constants.h 40;" d +SRE_OP_SUCCESS Modules/_sre/sre_constants.h 16;" d +SRE_REPEAT Modules/_sre/sre.h /^} SRE_REPEAT;$/;" t typeref:struct:SRE_REPEAT_T +SRE_REPEAT_T Modules/_sre/sre.h /^typedef struct SRE_REPEAT_T {$/;" s +SRE_STATE Modules/_sre/sre.h /^} SRE_STATE;$/;" t typeref:struct:__anon458 +SRE_UNI_IS_ALNUM Modules/_sre/sre.c 119;" d file: +SRE_UNI_IS_DIGIT Modules/_sre/sre.c 116;" d file: +SRE_UNI_IS_LINEBREAK Modules/_sre/sre.c 118;" d file: +SRE_UNI_IS_SPACE Modules/_sre/sre.c 117;" d file: +SRE_UNI_IS_WORD Modules/_sre/sre.c 120;" d file: +SSL Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL = ssl_st$/;" v +SSL2_STATE Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL2_STATE = ssl2_state_st$/;" v +SSL3_BUFFER Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL3_BUFFER = ssl3_buffer_st$/;" v +SSL3_MT_CHANGE_CIPHER_SPEC Modules/_ssl/debughelpers.c 7;" d file: +SSL3_RECORD Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL3_RECORD = ssl3_record_st$/;" v +SSL3_STATE Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL3_STATE = ssl3_state_st$/;" v +SSLAgainErrors Lib/asyncio/sslproto.py /^ SSLAgainErrors = (ssl.SSLWantReadError, ssl.SSLSyscallError)$/;" v +SSLConnection Lib/test/test_ftplib.py /^ class SSLConnection(asyncore.dispatcher):$/;" c +SSLContext Lib/ssl.py /^class SSLContext(_SSLContext):$/;" c +SSLError Lib/test/test_nntplib.py /^ SSLError = ssl.SSLError$/;" v +SSLError Lib/test/test_nntplib.py /^ class SSLError(Exception):$/;" c +SSLErrorTests Lib/test/test_ssl.py /^class SSLErrorTests(unittest.TestCase):$/;" c +SSLError_str Modules/_ssl.c /^SSLError_str(PyOSErrorObject *self)$/;" f file: +SSLObject Lib/ssl.py /^class SSLObject:$/;" c +SSLObjectTests Lib/test/test_ssl.py /^class SSLObjectTests(unittest.TestCase):$/;" c +SSLProtocol Lib/asyncio/sslproto.py /^class SSLProtocol(protocols.BufferedProtocol):$/;" c +SSLProtocolState Lib/asyncio/sslproto.py /^class SSLProtocolState(enum.Enum):$/;" c +SSLSocket Lib/ssl.py /^class SSLSocket(socket):$/;" c +SSLWSGIServer Lib/test/test_asyncio/utils.py /^class SSLWSGIServer(SSLWSGIServerMixin, SilentWSGIServer):$/;" c +SSLWSGIServerMixin Lib/test/test_asyncio/utils.py /^class SSLWSGIServerMixin:$/;" c +SSL_CIPHER Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL_CIPHER = ssl_cipher_st$/;" v +SSL_COMP Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL_COMP = ssl_comp_st$/;" v +SSL_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL_CTX = ssl_ctx_st$/;" v +SSL_HANDSHAKE_TIMEOUT Lib/asyncio/constants.py /^SSL_HANDSHAKE_TIMEOUT = 60.0$/;" v +SSL_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL_METHOD = ssl_method_st$/;" v +SSL_SESSION Lib/test/test_lib2to3/data/infinite_recursion.py /^SSL_SESSION = ssl_session_st$/;" v +SSL_SHUTDOWN_TIMEOUT Lib/asyncio/constants.py /^SSL_SHUTDOWN_TIMEOUT = 30.0$/;" v +SSLv3 Lib/ssl.py /^ SSLv3 = _ssl.PROTO_SSLv3$/;" v class:TLSVersion +SSLv3 Lib/test/test_ssl.py /^ SSLv3 = _ssl.PROTO_SSLv3$/;" v class:TestEnumerations.test_tlsversion.CheckedTLSVersion +SSPI_LOGON Lib/telnetlib.py /^SSPI_LOGON = bytes([139]) # TELOPT SSPI LOGON$/;" v +SST Objects/obmalloc.c 2001;" d file: +SSTATE_INTERNED_IMMORTAL Include/cpython/unicodeobject.h 193;" d +SSTATE_INTERNED_IMMORTAL_STATIC Include/cpython/unicodeobject.h 194;" d +SSTATE_INTERNED_MORTAL Include/cpython/unicodeobject.h 192;" d +SSTATE_NOT_INTERNED Include/cpython/unicodeobject.h 191;" d +STACK Lib/test/test_lib2to3/data/infinite_recursion.py /^STACK = stack_st$/;" v +STACK_DEBUG Lib/asyncio/futures.py /^STACK_DEBUG = logging.DEBUG - 1 # heavy-duty debugging$/;" v +STACK_GLOBAL Lib/pickle.py /^STACK_GLOBAL = b'\\x93' # same as GLOBAL but using names on the stacks$/;" v +STACK_GLOBAL Modules/_pickle.c /^ STACK_GLOBAL = '\\x93',$/;" e enum:opcode file: +STACK_GROW Python/ceval_macros.h 220;" d +STACK_GROW Python/ceval_macros.h 233;" d +STACK_LEVEL Python/ceval_macros.h 199;" d +STACK_OVERFLOW_MAX_SIZE Modules/faulthandler.c 27;" d file: +STACK_SHRINK Python/ceval_macros.h 225;" d +STACK_SHRINK Python/ceval_macros.h 234;" d +STACK_SIZE Python/ceval_macros.h 200;" d +STACK_USE_GUIDELINE Python/compile.c 57;" d file: +STANDARD Lib/test/test_buffer.py /^STANDARD = {$/;" v +STANDARD_OPTIONS Lib/test/test_tkinter/widget_tests.py /^ STANDARD_OPTIONS = ($/;" v class:StandardOptionsTests +STANDARD_VTABLE Modules/expat/xmltok.c 210;" d file: +STANDARD_VTABLE Modules/expat/xmltok.c 215;" d file: +STAR Include/internal/pycore_token.h 32;" d +STAR Lib/lib2to3/pgen2/token.py /^STAR = 16$/;" v +STAR Lib/token.py /^STAR = 16$/;" v +STAREQUAL Include/internal/pycore_token.h 54;" d +STAREQUAL Lib/lib2to3/pgen2/token.py /^STAREQUAL = 39$/;" v +STAREQUAL Lib/token.py /^STAREQUAL = 38$/;" v +START Tools/build/generate_global_objects.py /^START = f'\/* The following is auto-generated by {SCRIPT_NAME}. *\/'$/;" v +STARTED Lib/multiprocessing/managers.py /^ STARTED = 1$/;" v class:State +STARTF_USESHOWWINDOW Modules/_winapi.c 71;" d file: +STARTF_USESTDHANDLES Modules/_winapi.c 74;" d file: +STARTSWITH PC/launcher2.c 601;" d file: +STARTSWITH PC/launcher2.c 640;" d file: +STARTSWITH PC/launcher2.c 648;" d file: +STARTSWITH PC/launcher2.c 687;" d file: +STARTUP Lib/turtledemo/__main__.py /^STARTUP = 1$/;" v +STARTUPINFO Lib/subprocess.py /^ class STARTUPINFO:$/;" c +START_DOCUMENT Lib/xml/dom/pulldom.py /^START_DOCUMENT = "START_DOCUMENT"$/;" v +START_ELEMENT Lib/xml/dom/pulldom.py /^START_ELEMENT = "START_ELEMENT"$/;" v +START_FIELD Modules/_csv.c /^ START_RECORD, START_FIELD, ESCAPED_CHAR, IN_FIELD,$/;" e enum:__anon621 file: +START_NAME Modules/expat/xmltok_impl.c 1518;" d file: +START_NAME Modules/expat/xmltok_impl.c 1539;" d file: +START_ORIENTATION Lib/turtle.py /^ START_ORIENTATION = {$/;" v class:TNavigator +START_RECORD Modules/_csv.c /^ START_RECORD, START_FIELD, ESCAPED_CHAR, IN_FIELD,$/;" e enum:__anon621 file: +STAR_TARGETS Parser/pegen.h /^ STAR_TARGETS,$/;" e enum:__anon667 +STAT Modules/posixmodule.c 488;" d file: +STAT Modules/posixmodule.c 492;" d file: +STAT Modules/posixmodule.c 497;" d file: +STATE Objects/tupleobject.c 1126;" d file: +STATE Objects/tupleobject.c 1230;" d file: +STATEFUL_DCTX Modules/cjkcodecs/multibytecodec.c 769;" d file: +STATEFUL_ECTX Modules/cjkcodecs/multibytecodec.c 770;" d file: +STATEMENT Tools/c-analyzer/c_parser/info.py /^ STATEMENT = 'statement'$/;" v class:KIND +STATE_ACCUMULATING Modules/_io/stringio.c 12;" d file: +STATE_CANCELLED Modules/_asynciomodule.c /^ STATE_CANCELLED,$/;" e enum:__anon309 file: +STATE_CLEARFLAG Modules/cjkcodecs/_codecs_iso2022.c 111;" d file: +STATE_CLEARFLAGS Modules/cjkcodecs/_codecs_iso2022.c 112;" d file: +STATE_CON_LOST Lib/asyncio/sslproto.py /^ STATE_CON_LOST = "STATE_CON_LOST"$/;" v class:AppProtocolState +STATE_CON_MADE Lib/asyncio/sslproto.py /^ STATE_CON_MADE = "STATE_CON_MADE"$/;" v class:AppProtocolState +STATE_EOF Lib/asyncio/sslproto.py /^ STATE_EOF = "STATE_EOF"$/;" v class:AppProtocolState +STATE_FINISHED Modules/_asynciomodule.c /^ STATE_FINISHED$/;" e enum:__anon309 file: +STATE_G0 Modules/cjkcodecs/_codecs_iso2022.c 100;" d file: +STATE_G1 Modules/cjkcodecs/_codecs_iso2022.c 101;" d file: +STATE_G2 Modules/cjkcodecs/_codecs_iso2022.c 102;" d file: +STATE_G3 Modules/cjkcodecs/_codecs_iso2022.c 103;" d file: +STATE_GETFLAG Modules/cjkcodecs/_codecs_iso2022.c 110;" d file: +STATE_GETG Modules/cjkcodecs/_codecs_iso2022.c 98;" d file: +STATE_INIT Lib/asyncio/sslproto.py /^ STATE_INIT = "STATE_INIT"$/;" v class:AppProtocolState +STATE_INIT Parser/tokenizer.h /^ STATE_INIT,$/;" e enum:decoding_state +STATE_INITIALIZED_METHODDEF Modules/_testsinglephase.c 169;" d file: +STATE_NORMAL Parser/tokenizer.h /^ STATE_NORMAL$/;" e enum:decoding_state +STATE_OFFSET Modules/_sre/sre.c 491;" d file: +STATE_PENDING Modules/_asynciomodule.c /^ STATE_PENDING,$/;" e enum:__anon309 file: +STATE_REALIZED Modules/_io/stringio.c 11;" d file: +STATE_SEEK_CODING Parser/tokenizer.h /^ STATE_SEEK_CODING,$/;" e enum:decoding_state +STATE_SETFLAG Modules/cjkcodecs/_codecs_iso2022.c 109;" d file: +STATE_SETG Modules/cjkcodecs/_codecs_iso2022.c 97;" d file: +STATE_SETG0 Modules/cjkcodecs/_codecs_iso2022.c 104;" d file: +STATE_SETG1 Modules/cjkcodecs/_codecs_iso2022.c 105;" d file: +STATE_SETG2 Modules/cjkcodecs/_codecs_iso2022.c 106;" d file: +STATE_SETG3 Modules/cjkcodecs/_codecs_iso2022.c 107;" d file: +STATIC_CHILDREN Modules/_elementtree.c 26;" d file: +STATIC_DIR Doc/tools/extensions/glossary_search.py /^STATIC_DIR = '_static'$/;" v +STATIC_FREELIST_ENTRIES Python/getargs.c 72;" d file: +STATUS Lib/telnetlib.py /^STATUS = bytes([5]) # give status$/;" v +STATUS Lib/tkinter/tix.py /^STATUS = 'status'$/;" v +STATUS_CONTROL_C_EXIT Lib/test/test_runpy.py /^ STATUS_CONTROL_C_EXIT = 0xC000013A$/;" v class:TestExit +STAT_0o755 Mac/BuildScript/build-installer.py /^STAT_0o755 = ( stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR$/;" v +STAT_0o775 Mac/BuildScript/build-installer.py /^STAT_0o775 = ( stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR$/;" v +STAT_DEC Include/internal/pycore_code.h 259;" d +STAT_DEC Include/internal/pycore_code.h 274;" d +STAT_INC Include/internal/pycore_code.h 258;" d +STAT_INC Include/internal/pycore_code.h 273;" d +STDC_HEADERS PC/pyconfig.h 461;" d +STDERR_FILENO Lib/pty.py /^STDERR_FILENO = 2$/;" v +STDERR_LINE Lib/unittest/result.py /^STDERR_LINE = '\\nStderr:\\n%s'$/;" v +STDIN_FILENO Lib/pty.py /^STDIN_FILENO = 0$/;" v +STDIN_FILEOUT Lib/pipes.py /^STDIN_FILEOUT = '-f' # Must write a real file$/;" v +STDIN_STDOUT Lib/pipes.py /^STDIN_STDOUT = '--' # Normal pipeline element$/;" v +STDLIB_DIR Lib/test/support/__init__.py /^STDLIB_DIR = os.path.dirname(TEST_HOME_DIR)$/;" v +STDLIB_DIR Tools/build/freeze_modules.py /^STDLIB_DIR = os.path.join(ROOT_DIR, 'Lib')$/;" v +STDLIB_INSTALL Lib/test/test_embed.py /^ STDLIB_INSTALL = None$/;" v +STDLIB_INSTALL Lib/test/test_embed.py /^STDLIB_INSTALL = os.path.join(sys.prefix, sys.platlibdir,$/;" v +STDLIB_LANDMARKS Modules/getpath.py /^ STDLIB_LANDMARKS = [f'{STDLIB_SUBDIR}\/os.py', f'{STDLIB_SUBDIR}\/os.pyc']$/;" v +STDLIB_LANDMARKS Modules/getpath.py /^ STDLIB_LANDMARKS = [f'{STDLIB_SUBDIR}\\\\os.py', f'{STDLIB_SUBDIR}\\\\os.pyc']$/;" v +STDLIB_PATH Tools/build/generate_stdlib_module_names.py /^STDLIB_PATH = os.path.join(SRC_DIR, 'Lib')$/;" v +STDLIB_SUBDIR Modules/getpath.py /^ STDLIB_SUBDIR = 'Lib'$/;" v +STDLIB_SUBDIR Modules/getpath.py /^ STDLIB_SUBDIR = f'{platlibdir}\/python{VERSION_MAJOR}.{VERSION_MINOR}'$/;" v +STDNAME Lib/pstats.py /^ STDNAME = 'stdname'$/;" v class:SortKey +STDNAME Lib/test/test_pstats.py /^ STDNAME = 'stdname'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +STDOFFSET Doc/includes/tzinfo_examples.py /^STDOFFSET = timedelta(seconds = -_time.timezone)$/;" v +STDOUT Lib/asyncio/subprocess.py /^STDOUT = subprocess.STDOUT$/;" v +STDOUT Lib/asyncio/windows_utils.py /^STDOUT = subprocess.STDOUT$/;" v +STDOUT Lib/subprocess.py /^STDOUT = -2$/;" v +STDOUT_FD Lib/test/test_embed.py /^ STDOUT_FD = 1$/;" v class:StdPrinterTests +STDOUT_FILENO Lib/pty.py /^STDOUT_FILENO = 1$/;" v +STDOUT_LINE Lib/unittest/result.py /^STDOUT_LINE = '\\nStdout:\\n%s'$/;" v +STOP Lib/pickle.py /^STOP = b'.' # every pickle ends with STOP$/;" v +STOP Modules/_pickle.c /^ STOP = '.',$/;" e enum:opcode file: +STOPITER Tools/build/umarshal.py /^ STOPITER = ord('S')$/;" v class:Type +STORAGE Tools/c-analyzer/c_parser/info.py /^STORAGE = frozenset(_STORAGE)$/;" v +STORAGE_CLASS Tools/c-analyzer/c_parser/parser/_regexes.py /^STORAGE_CLASS = rf'(?: \\b (?: {" | ".join(_STORAGE)} ) \\b )'$/;" v +STORE Modules/_blake2/impl/blake2b-round.h 18;" d +STORE Modules/_blake2/impl/blake2s-round.h 18;" d +STORECHAR Objects/unicodeobject.c 5809;" d file: +STORES_TO Python/flowgraph.c 1312;" d file: +STOREU Modules/_blake2/impl/blake2b-round.h 21;" d +STOREU Modules/_blake2/impl/blake2s-round.h 21;" d +STORE_ACTIONS Lib/optparse.py /^ STORE_ACTIONS = ("store",$/;" v class:Option +STORE_ACTIONS Lib/test/test_optparse.py /^ STORE_ACTIONS = Option.STORE_ACTIONS + ("extend",)$/;" v class:TestExtendAddActions.MyOption +STORE_ATTR Include/opcode.h 56;" d +STORE_ATTR_INSTANCE_VALUE Include/opcode.h 208;" d +STORE_ATTR_SLOT Include/opcode.h 209;" d +STORE_ATTR_WITH_HINT Include/opcode.h 210;" d +STORE_DEREF Include/opcode.h 96;" d +STORE_FAST Include/opcode.h 83;" d +STORE_FAST_MAYBE_NULL Include/opcode.h 153;" d +STORE_FAST__LOAD_FAST Include/opcode.h 211;" d +STORE_FAST__STORE_FAST Include/opcode.h 212;" d +STORE_GLOBAL Include/opcode.h 58;" d +STORE_MODULE_WEAKREF Python/pylifecycle.c 1385;" d file: +STORE_MODULE_WEAKREF Python/pylifecycle.c 1443;" d file: +STORE_NAME Include/opcode.h 51;" d +STORE_SEARCH PC/launcher2.c /^struct StoreSearchInfo STORE_SEARCH[] = {$/;" v typeref:struct:StoreSearchInfo +STORE_SLICE Include/opcode.h 24;" d +STORE_SUBSCR Include/opcode.h 39;" d +STORE_SUBSCR_DICT Include/opcode.h 213;" d +STORE_SUBSCR_LIST_INT Include/opcode.h 214;" d +STR Include/internal/pycore_global_strings.h 764;" d +STR Lib/test/test_cppext/extension.cpp 18;" d file: +STRFTIME_FORMAT_CODES Modules/timemodule.c 758;" d file: +STRICT Lib/enum.py /^ STRICT = auto()$/;" v class:FlagBoundary +STRICT_DATE_RE Lib/http/cookiejar.py /^STRICT_DATE_RE = re.compile($/;" v +STRICT_IDENTIFIER Tools/c-analyzer/c_parser/parser/_regexes.py /^STRICT_IDENTIFIER = rf'(?: (?! {_KEYWORD} ) \\b {IDENTIFIER} \\b )'$/;" v +STRICT_SYSV_CURSES Modules/_cursesmodule.c 114;" d file: +STRICT_SYSV_CURSES Modules/_cursesmodule.c 134;" d file: +STRICT_SYSV_CURSES Modules/_cursesmodule.c 139;" d file: +STRIDED Lib/inspect.py /^ STRIDED = STRIDES | WRITABLE$/;" v class:BufferFlags +STRIDED_RO Lib/inspect.py /^ STRIDED_RO = STRIDES$/;" v class:BufferFlags +STRIDES Lib/inspect.py /^ STRIDES = 0x10 | ND$/;" v class:BufferFlags +STRING Include/internal/pycore_token.h 19;" d +STRING Lib/lib2to3/pgen2/token.py /^STRING = 3$/;" v +STRING Lib/pickle.py /^STRING = b'S' # push string; NL-terminated string argument$/;" v +STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^STRING = c_char_p$/;" v +STRING Lib/token.py /^STRING = 3$/;" v +STRING Modules/_pickle.c /^ STRING = 'S',$/;" e enum:opcode file: +STRING Tools/build/umarshal.py /^ STRING = ord('s')$/;" v class:Type +STRING Tools/cases_generator/lexer.py /^STRING = 'STRING'$/;" v +STRINGCHUNK Lib/json/decoder.py /^STRINGCHUNK = re.compile(r'(.*?)(["\\\\\\x00-\\x1f])', FLAGS)$/;" v +STRINGIFY Python/initconfig.c 1802;" d file: +STRINGIFY Python/initconfig.c 1827;" d file: +STRINGLIB Objects/bytearrayobject.c 1102;" d file: +STRINGLIB Objects/bytes_methods.c 434;" d file: +STRINGLIB Objects/stringlib/asciilib.h 7;" d +STRINGLIB Objects/stringlib/fastsearch.h /^typedef struct STRINGLIB(_pre) {$/;" f +STRINGLIB Objects/stringlib/stringdefs.h 10;" d +STRINGLIB Objects/stringlib/ucs1lib.h 7;" d +STRINGLIB Objects/stringlib/ucs2lib.h 7;" d +STRINGLIB Objects/stringlib/ucs4lib.h 7;" d +STRINGLIB Objects/stringlib/undef.h 2;" d +STRINGLIB_BLOOM Objects/stringlib/fastsearch.h 40;" d +STRINGLIB_BLOOM_ADD Objects/stringlib/fastsearch.h 38;" d +STRINGLIB_BLOOM_WIDTH Objects/stringlib/fastsearch.h 29;" d +STRINGLIB_BLOOM_WIDTH Objects/stringlib/fastsearch.h 31;" d +STRINGLIB_BLOOM_WIDTH Objects/stringlib/fastsearch.h 33;" d +STRINGLIB_CENTER_METHODDEF Objects/stringlib/clinic/transmogrify.h.h 196;" d +STRINGLIB_CHAR Objects/bytearrayobject.c 1103;" d file: +STRINGLIB_CHAR Objects/bytes_methods.c 435;" d file: +STRINGLIB_CHAR Objects/stringlib/asciilib.h 11;" d +STRINGLIB_CHAR Objects/stringlib/stringdefs.h 13;" d +STRINGLIB_CHAR Objects/stringlib/ucs1lib.h 11;" d +STRINGLIB_CHAR Objects/stringlib/ucs2lib.h 11;" d +STRINGLIB_CHAR Objects/stringlib/ucs4lib.h 11;" d +STRINGLIB_CHAR Objects/stringlib/undef.h 5;" d +STRINGLIB_CHECK Objects/stringlib/asciilib.h 21;" d +STRINGLIB_CHECK Objects/stringlib/stringdefs.h 23;" d +STRINGLIB_CHECK Objects/stringlib/ucs1lib.h 21;" d +STRINGLIB_CHECK Objects/stringlib/ucs2lib.h 21;" d +STRINGLIB_CHECK Objects/stringlib/ucs4lib.h 21;" d +STRINGLIB_CHECK_EXACT Objects/bytearrayobject.c 1110;" d file: +STRINGLIB_CHECK_EXACT Objects/stringlib/asciilib.h 22;" d +STRINGLIB_CHECK_EXACT Objects/stringlib/stringdefs.h 24;" d +STRINGLIB_CHECK_EXACT Objects/stringlib/ucs1lib.h 22;" d +STRINGLIB_CHECK_EXACT Objects/stringlib/ucs2lib.h 22;" d +STRINGLIB_CHECK_EXACT Objects/stringlib/ucs4lib.h 22;" d +STRINGLIB_EXPANDTABS_METHODDEF Objects/stringlib/clinic/transmogrify.h.h 19;" d +STRINGLIB_FASTSEARCH_H Objects/stringlib/fastsearch.h 3;" d +STRINGLIB_FAST_MEMCHR Objects/bytearrayobject.c 1111;" d file: +STRINGLIB_FAST_MEMCHR Objects/bytes_methods.c 437;" d file: +STRINGLIB_FAST_MEMCHR Objects/stringlib/asciilib.h 24;" d +STRINGLIB_FAST_MEMCHR Objects/stringlib/stringdefs.h 27;" d +STRINGLIB_FAST_MEMCHR Objects/stringlib/ucs1lib.h 23;" d +STRINGLIB_FAST_MEMCHR Objects/stringlib/ucs2lib.h 25;" d +STRINGLIB_FAST_MEMCHR Objects/stringlib/ucs4lib.h 25;" d +STRINGLIB_FAST_MEMCHR Objects/stringlib/undef.h 11;" d +STRINGLIB_GET_EMPTY Objects/bytesobject.c 1255;" d file: +STRINGLIB_GET_EMPTY Objects/bytesobject.c 1270;" d file: +STRINGLIB_GET_EMPTY Objects/unicodeobject.c 848;" d file: +STRINGLIB_GET_EMPTY Objects/unicodeobject.c 889;" d file: +STRINGLIB_ISDECIMAL Objects/stringlib/asciilib.h 16;" d +STRINGLIB_ISDECIMAL Objects/stringlib/stringdefs.h 18;" d +STRINGLIB_ISDECIMAL Objects/stringlib/ucs1lib.h 16;" d +STRINGLIB_ISDECIMAL Objects/stringlib/ucs2lib.h 16;" d +STRINGLIB_ISDECIMAL Objects/stringlib/ucs4lib.h 16;" d +STRINGLIB_ISLINEBREAK Objects/bytearrayobject.c 1109;" d file: +STRINGLIB_ISLINEBREAK Objects/stringlib/asciilib.h 15;" d +STRINGLIB_ISLINEBREAK Objects/stringlib/stringdefs.h 17;" d +STRINGLIB_ISLINEBREAK Objects/stringlib/ucs1lib.h 15;" d +STRINGLIB_ISLINEBREAK Objects/stringlib/ucs2lib.h 15;" d +STRINGLIB_ISLINEBREAK Objects/stringlib/ucs4lib.h 15;" d +STRINGLIB_ISSPACE Objects/bytearrayobject.c 1108;" d file: +STRINGLIB_ISSPACE Objects/stringlib/asciilib.h 14;" d +STRINGLIB_ISSPACE Objects/stringlib/stringdefs.h 16;" d +STRINGLIB_ISSPACE Objects/stringlib/ucs1lib.h 14;" d +STRINGLIB_ISSPACE Objects/stringlib/ucs2lib.h 14;" d +STRINGLIB_ISSPACE Objects/stringlib/ucs4lib.h 14;" d +STRINGLIB_IS_UNICODE Objects/bytearrayobject.c 1100;" d file: +STRINGLIB_IS_UNICODE Objects/stringlib/asciilib.h 4;" d +STRINGLIB_IS_UNICODE Objects/stringlib/stringdefs.h 7;" d +STRINGLIB_IS_UNICODE Objects/stringlib/ucs1lib.h 4;" d +STRINGLIB_IS_UNICODE Objects/stringlib/ucs2lib.h 4;" d +STRINGLIB_IS_UNICODE Objects/stringlib/ucs4lib.h 4;" d +STRINGLIB_IS_UNICODE Objects/stringlib/undef.h 9;" d +STRINGLIB_LEN Objects/bytearrayobject.c 1105;" d file: +STRINGLIB_LEN Objects/stringlib/asciilib.h 19;" d +STRINGLIB_LEN Objects/stringlib/stringdefs.h 21;" d +STRINGLIB_LEN Objects/stringlib/ucs1lib.h 19;" d +STRINGLIB_LEN Objects/stringlib/ucs2lib.h 19;" d +STRINGLIB_LEN Objects/stringlib/ucs4lib.h 19;" d +STRINGLIB_LEN Objects/stringlib/undef.h 7;" d +STRINGLIB_LJUST_METHODDEF Objects/stringlib/clinic/transmogrify.h.h 84;" d +STRINGLIB_MAX_CHAR Objects/stringlib/asciilib.h 10;" d +STRINGLIB_MAX_CHAR Objects/stringlib/ucs1lib.h 10;" d +STRINGLIB_MAX_CHAR Objects/stringlib/ucs2lib.h 10;" d +STRINGLIB_MAX_CHAR Objects/stringlib/ucs4lib.h 10;" d +STRINGLIB_MAX_CHAR Objects/stringlib/undef.h 4;" d +STRINGLIB_MUTABLE Objects/bytearrayobject.c 1112;" d file: +STRINGLIB_MUTABLE Objects/bytesobject.c 1258;" d file: +STRINGLIB_MUTABLE Objects/stringlib/asciilib.h 23;" d +STRINGLIB_MUTABLE Objects/stringlib/ucs1lib.h 24;" d +STRINGLIB_MUTABLE Objects/stringlib/ucs2lib.h 23;" d +STRINGLIB_MUTABLE Objects/stringlib/ucs4lib.h 23;" d +STRINGLIB_MUTABLE Objects/stringlib/undef.h 10;" d +STRINGLIB_NEW Objects/bytearrayobject.c 1107;" d file: +STRINGLIB_NEW Objects/stringlib/asciilib.h 20;" d +STRINGLIB_NEW Objects/stringlib/stringdefs.h 22;" d +STRINGLIB_NEW Objects/stringlib/ucs1lib.h 20;" d +STRINGLIB_NEW Objects/stringlib/ucs2lib.h 20;" d +STRINGLIB_NEW Objects/stringlib/ucs4lib.h 20;" d +STRINGLIB_NEW Objects/stringlib/undef.h 8;" d +STRINGLIB_OBJECT Objects/stringlib/asciilib.h 8;" d +STRINGLIB_OBJECT Objects/stringlib/stringdefs.h 11;" d +STRINGLIB_OBJECT Objects/stringlib/ucs1lib.h 8;" d +STRINGLIB_OBJECT Objects/stringlib/ucs2lib.h 8;" d +STRINGLIB_OBJECT Objects/stringlib/ucs4lib.h 8;" d +STRINGLIB_PARSE_CODE Objects/stringlib/asciilib.h 13;" d +STRINGLIB_PARSE_CODE Objects/stringlib/stringdefs.h 15;" d +STRINGLIB_PARSE_CODE Objects/stringlib/ucs1lib.h 13;" d +STRINGLIB_PARSE_CODE Objects/stringlib/ucs2lib.h 13;" d +STRINGLIB_PARSE_CODE Objects/stringlib/ucs4lib.h 13;" d +STRINGLIB_RJUST_METHODDEF Objects/stringlib/clinic/transmogrify.h.h 140;" d +STRINGLIB_SIZEOF_CHAR Objects/bytearrayobject.c 1104;" d file: +STRINGLIB_SIZEOF_CHAR Objects/bytes_methods.c 436;" d file: +STRINGLIB_SIZEOF_CHAR Objects/stringlib/asciilib.h 9;" d +STRINGLIB_SIZEOF_CHAR Objects/stringlib/stringdefs.h 12;" d +STRINGLIB_SIZEOF_CHAR Objects/stringlib/ucs1lib.h 9;" d +STRINGLIB_SIZEOF_CHAR Objects/stringlib/ucs2lib.h 9;" d +STRINGLIB_SIZEOF_CHAR Objects/stringlib/ucs4lib.h 9;" d +STRINGLIB_SIZEOF_CHAR Objects/stringlib/undef.h 3;" d +STRINGLIB_STR Objects/bytearrayobject.c 1106;" d file: +STRINGLIB_STR Objects/stringlib/asciilib.h 18;" d +STRINGLIB_STR Objects/stringlib/stringdefs.h 20;" d +STRINGLIB_STR Objects/stringlib/ucs1lib.h 18;" d +STRINGLIB_STR Objects/stringlib/ucs2lib.h 18;" d +STRINGLIB_STR Objects/stringlib/ucs4lib.h 18;" d +STRINGLIB_STR Objects/stringlib/undef.h 6;" d +STRINGLIB_STRINGDEFS_H Objects/stringlib/stringdefs.h 2;" d +STRINGLIB_TOASCII Objects/stringlib/asciilib.h 27;" d +STRINGLIB_TOASCII Objects/stringlib/stringdefs.h 26;" d +STRINGLIB_TOASCII Objects/stringlib/ucs1lib.h 27;" d +STRINGLIB_TOASCII Objects/stringlib/ucs2lib.h 30;" d +STRINGLIB_TOASCII Objects/stringlib/ucs4lib.h 30;" d +STRINGLIB_TODECIMAL Objects/stringlib/asciilib.h 17;" d +STRINGLIB_TODECIMAL Objects/stringlib/stringdefs.h 19;" d +STRINGLIB_TODECIMAL Objects/stringlib/ucs1lib.h 17;" d +STRINGLIB_TODECIMAL Objects/stringlib/ucs2lib.h 17;" d +STRINGLIB_TODECIMAL Objects/stringlib/ucs4lib.h 17;" d +STRINGLIB_TOSTR Objects/stringlib/asciilib.h 26;" d +STRINGLIB_TOSTR Objects/stringlib/stringdefs.h 25;" d +STRINGLIB_TOSTR Objects/stringlib/ucs1lib.h 26;" d +STRINGLIB_TOSTR Objects/stringlib/ucs2lib.h 29;" d +STRINGLIB_TOSTR Objects/stringlib/ucs4lib.h 29;" d +STRINGLIB_TYPE_NAME Objects/stringlib/asciilib.h 12;" d +STRINGLIB_TYPE_NAME Objects/stringlib/stringdefs.h 14;" d +STRINGLIB_TYPE_NAME Objects/stringlib/ucs1lib.h 12;" d +STRINGLIB_TYPE_NAME Objects/stringlib/ucs2lib.h 12;" d +STRINGLIB_TYPE_NAME Objects/stringlib/ucs4lib.h 12;" d +STRINGLIB_ZFILL_METHODDEF Objects/stringlib/clinic/transmogrify.h.h 252;" d +STRINGS Lib/test/test_codecs.py /^ STRINGS = ("ascii", "ulatin1:\\xa7\\xe9",$/;" v class:LocaleCodecTest +STRINGS Lib/test/test_quopri.py /^ STRINGS = ($/;" v class:QuopriTestCase +STRINGS_H Parser/string_parser.h 2;" d +STRING_END_ARCHIVE Lib/zipimport.py /^STRING_END_ARCHIVE = b'PK\\x05\\x06'$/;" v +STRING_POOL Modules/expat/xmlparse.c /^} STRING_POOL;$/;" t typeref:struct:__anon613 file: +STRING_TOKEN Tools/peg_generator/pegen/c_generator.py /^ STRING_TOKEN = 2$/;" v class:NodeTypes +STRIPNAME Objects/unicodeobject.c 11734;" d file: +STRIPPED_MASK Objects/stringlib/codecs.h 498;" d +STRIPPED_MASK Objects/stringlib/codecs.h 618;" d +STRTOD_DIGLIM Python/dtoa.c 191;" d file: +STRUCT Tools/c-analyzer/c_parser/info.py /^ STRUCT = 'struct'$/;" v class:KIND +STRUCT_FOR_ASCII_STR Include/internal/pycore_global_strings.h 16;" d +STRUCT_FOR_ID Include/internal/pycore_global_strings.h 23;" d +STRUCT_FOR_STR Include/internal/pycore_global_strings.h 21;" d +STRUCT_ITER_UNPACK_METHODDEF Modules/clinic/_struct.c.h 214;" d +STRUCT_MEMBER_DECL Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^STRUCT_MEMBER_DECL = set_capture_groups(_STRUCT_MEMBER_DECL, ($/;" v +STRUCT_MEMBER_RE Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^STRUCT_MEMBER_RE = re.compile(rf'^ \\s* {STRUCT_MEMBER_DECL}', re.VERBOSE)$/;" v +STRUCT_STAT Modules/posixmodule.c 490;" d file: +STRUCT_STAT Modules/posixmodule.c 495;" d file: +STRUCT_STAT Modules/posixmodule.c 500;" d file: +STRUCT_UNPACK_FROM_METHODDEF Modules/clinic/_struct.c.h 124;" d +STRUCT_UNPACK_METHODDEF Modules/clinic/_struct.c.h 81;" d +STR_CONVERTER_ENCODING_METHODDEF Modules/clinic/_testclinic.c.h 1173;" d +STR_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 1142;" d +STR_RGX_REPR Lib/test/test_asyncio/test_locks.py /^STR_RGX_REPR = ($/;" v +STX Lib/curses/ascii.py /^STX = 0x02 # ^B$/;" v +ST_ATIME Lib/stat.py /^ST_ATIME = 7$/;" v +ST_BIRTHTIME_IDX Modules/posixmodule.c 2206;" d file: +ST_BIRTHTIME_IDX Modules/posixmodule.c 2208;" d file: +ST_BIRTHTIME_NS_IDX Modules/posixmodule.c 2212;" d file: +ST_BIRTHTIME_NS_IDX Modules/posixmodule.c 2214;" d file: +ST_BLKSIZE_IDX Modules/posixmodule.c 2176;" d file: +ST_BLKSIZE_IDX Modules/posixmodule.c 2178;" d file: +ST_BLOCKS_IDX Modules/posixmodule.c 2182;" d file: +ST_BLOCKS_IDX Modules/posixmodule.c 2184;" d file: +ST_CTIME Lib/stat.py /^ST_CTIME = 9$/;" v +ST_DEV Lib/stat.py /^ST_DEV = 2$/;" v +ST_FILE_ATTRIBUTES_IDX Modules/posixmodule.c 2218;" d file: +ST_FILE_ATTRIBUTES_IDX Modules/posixmodule.c 2220;" d file: +ST_FLAGS_IDX Modules/posixmodule.c 2194;" d file: +ST_FLAGS_IDX Modules/posixmodule.c 2196;" d file: +ST_FSTYPE_IDX Modules/posixmodule.c 2224;" d file: +ST_FSTYPE_IDX Modules/posixmodule.c 2226;" d file: +ST_GEN_IDX Modules/posixmodule.c 2200;" d file: +ST_GEN_IDX Modules/posixmodule.c 2202;" d file: +ST_GID Lib/stat.py /^ST_GID = 5$/;" v +ST_INO Lib/stat.py /^ST_INO = 1$/;" v +ST_LOCATION Python/symtable.c 75;" d file: +ST_MODE Lib/stat.py /^ST_MODE = 0$/;" v +ST_MTIME Lib/stat.py /^ST_MTIME = 8$/;" v +ST_NAN Modules/cmathmodule.c /^ ST_NAN \/* 6, Not a Number *\/$/;" e enum:special_types file: +ST_NEG Modules/cmathmodule.c /^ ST_NEG, \/* 1, negative finite number (nonzero) *\/$/;" e enum:special_types file: +ST_NINF Modules/cmathmodule.c /^ ST_NINF, \/* 0, negative infinity *\/$/;" e enum:special_types file: +ST_NLINK Lib/stat.py /^ST_NLINK = 3$/;" v +ST_NZERO Modules/cmathmodule.c /^ ST_NZERO, \/* 2, -0. *\/$/;" e enum:special_types file: +ST_PINF Modules/cmathmodule.c /^ ST_PINF, \/* 5, positive infinity *\/$/;" e enum:special_types file: +ST_POS Modules/cmathmodule.c /^ ST_POS, \/* 4, positive finite number (nonzero) *\/$/;" e enum:special_types file: +ST_PZERO Modules/cmathmodule.c /^ ST_PZERO, \/* 3, +0. *\/$/;" e enum:special_types file: +ST_RDEV_IDX Modules/posixmodule.c 2188;" d file: +ST_RDEV_IDX Modules/posixmodule.c 2190;" d file: +ST_REPARSE_TAG_IDX Modules/posixmodule.c 2230;" d file: +ST_REPARSE_TAG_IDX Modules/posixmodule.c 2232;" d file: +ST_SIZE Lib/stat.py /^ST_SIZE = 6$/;" v +ST_UID Lib/stat.py /^ST_UID = 4$/;" v +SUB Lib/curses/ascii.py /^SUB = 0x1a # ^Z$/;" v +SUBDEBUG Lib/multiprocessing/__init__.py /^SUBDEBUG = 5$/;" v +SUBDEBUG Lib/multiprocessing/util.py /^SUBDEBUG = 5$/;" v +SUBMOD_NAME Lib/test/test_importlib/import_/test_api.py /^SUBMOD_NAME = 'fine.bogus'$/;" v +SUBNORMAL Modules/_decimal/_decimal.c 163;" d file: +SUBPROCESS_FORK_EXEC_METHODDEF Modules/clinic/_posixsubprocess.c.h 41;" d +SUBWARNING Lib/multiprocessing/__init__.py /^SUBWARNING = 25$/;" v +SUBWARNING Lib/multiprocessing/util.py /^SUBWARNING = 25$/;" v +SUCCESS Modules/getaddrinfo.c 67;" d file: +SUCCESS Modules/getnameinfo.c 54;" d file: +SUCCESS Python/assemble.c 14;" d file: +SUCCESS Python/assemble.c 16;" d file: +SUCCESS Python/compile.c 59;" d file: +SUCCESS Python/compile.c 61;" d file: +SUCCESS Python/flowgraph.c 15;" d file: +SUCCESS Python/flowgraph.c 17;" d file: +SUCCESS Tools/peg_generator/scripts/test_parse_directory.py /^SUCCESS = "\\033[92m"$/;" v +SUCCESSFUL_FUTURE Lib/test/test_concurrent_futures/util.py /^SUCCESSFUL_FUTURE = create_future(state=FINISHED, result=42)$/;" v +SUFFICIENT_TO_DEOPT_AND_SPECIALIZE Lib/test/test_capi/test_misc.py /^SUFFICIENT_TO_DEOPT_AND_SPECIALIZE = 100$/;" v +SUMMER Lib/test/test_enum.py /^ SUMMER = 2$/;" v class:TestSpecial.setUp.Season +SUMMER Lib/test/test_enum.py /^ SUMMER = 2$/;" v class:TestSpecial.test_iteration_order.Season +SUMMER Lib/test/test_enum.py /^ SUMMER = auto()$/;" v class:_EnumTests.test_attribute_deletion.Season +SUM_METHODDEF Modules/_testsinglephase.c 212;" d file: +SUNDAY Lib/calendar.py /^ SUNDAY = 6$/;" v class:Day +SUNKEN Lib/tkinter/constants.py /^SUNKEN='sunken'$/;" v +SUPDUP Lib/telnetlib.py /^SUPDUP = bytes([21]) # supdup protocol$/;" v +SUPDUPOUTPUT Lib/telnetlib.py /^SUPDUPOUTPUT = bytes([22]) # supdup output$/;" v +SUPPLEMENTAL_DATA Lib/ssl.py /^ SUPPLEMENTAL_DATA = 23$/;" v class:_TLSMessageType +SUPPLEMENTAL_DATA Lib/test/test_ssl.py /^ SUPPLEMENTAL_DATA = 23$/;" v class:TestEnumerations.test_tlsmessagetype.Checked_TLSMessageType +SUPPORTED Tools/i18n/makelocalealias.py /^SUPPORTED = '\/usr\/share\/i18n\/SUPPORTED'$/;" v +SUPPORTED_TYPES Lib/tarfile.py /^SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE,$/;" v +SUPPORTS_SENDFILE Lib/test/test_shutil.py /^SUPPORTS_SENDFILE = supports_file2file_sendfile()$/;" v +SUPPORTS_SSL Lib/test/test_poplib.py /^ SUPPORTS_SSL = True$/;" v +SUPPORTS_SSL Lib/test/test_poplib.py /^SUPPORTS_SSL = False$/;" v +SUPPORT_HEADERS_TRAILERS Lib/test/test_os.py /^ not sys.platform.startswith("sunos")$/;" v class:TestSendfile +SUPPRESS_DEPRECATED_CALL Modules/socketmodule.c 656;" d file: +SUPPRESS_DEPRECATED_CALL Modules/socketmodule.c 658;" d file: +SUPPRESS_HELP Lib/optparse.py /^SUPPRESS_HELP = "SUPPRESS"+"HELP"$/;" v +SUPPRESS_LOCAL_ECHO Lib/telnetlib.py /^SUPPRESS_LOCAL_ECHO = bytes([45]) # Telnet Suppress Local Echo$/;" v +SUPPRESS_USAGE Lib/optparse.py /^SUPPRESS_USAGE = "SUPPRESS"+"USAGE"$/;" v +SURROGATES Lib/test/test_codecs.py /^ SURROGATES = "\\uDC80\\uDCFF"$/;" v class:LocaleCodecTest +SW Lib/tkinter/constants.py /^SW='sw'$/;" v +SWAB Objects/stringlib/codecs.h 500;" d +SWAB Objects/stringlib/codecs.h 619;" d +SWAB2 Objects/stringlib/codecs.h 645;" d +SWAB2 Objects/stringlib/codecs.h 658;" d +SWAB4 Objects/stringlib/codecs.h /^STRINGLIB(SWAB4)(STRINGLIB_CHAR ch)$/;" f +SWAP Include/opcode.h 60;" d +SWAPPABLE Python/flowgraph.c 1307;" d file: +SWAP_INT Modules/_ctypes/cfield.c 413;" d file: +SWAP_LONG Modules/_ctypes/cfield.c 419;" d file: +SWAP_LONG Modules/_ctypes/cfield.c 421;" d file: +SWAP_LONG_LONG Modules/_ctypes/cfield.c 427;" d file: +SWAP_SHORT Modules/_ctypes/cfield.c 407;" d file: +SWITCHING_PROTOCOLS Lib/http/__init__.py /^ SWITCHING_PROTOCOLS = (101, 'Switching Protocols',$/;" v class:HTTPStatus +SWITCHING_PROTOCOLS Lib/test/test_httplib.py /^ SWITCHING_PROTOCOLS = (101, 'Switching Protocols',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +SYMBOL Tools/freeze/regen_frozen.py /^SYMBOL = 'M___hello__'$/;" v +SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE Modules/winreparse.h 50;" d +SYMBOL_NAMES Lib/test/test_stable_abi_ctypes.py /^SYMBOL_NAMES = ($/;" v +SYMLINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2750;" d file: +SYMLINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2752;" d file: +SYMTYPE Lib/tarfile.py /^SYMTYPE = b"2" # symbolic link$/;" v +SYN Lib/curses/ascii.py /^SYN = 0x16 # ^V$/;" v +SYNTAX_ERR Lib/xml/dom/__init__.py /^SYNTAX_ERR = 12$/;" v +SYSCONFIG_NAMES Tools/wasm/wasm_assets.py /^SYSCONFIG_NAMES = ($/;" v +SYSLOG_CLOSELOG_METHODDEF Modules/clinic/syslogmodule.c.h 147;" d +SYSLOG_LOG_MASK_METHODDEF Modules/clinic/syslogmodule.c.h 198;" d +SYSLOG_LOG_UPTO_METHODDEF Modules/clinic/syslogmodule.c.h 231;" d +SYSLOG_OPENLOG_METHODDEF Modules/clinic/syslogmodule.c.h 18;" d +SYSLOG_SETLOGMASK_METHODDEF Modules/clinic/syslogmodule.c.h 165;" d +SYSLOG_SYSLOG_METHODDEF Modules/clinic/syslogmodule.c.h 104;" d +SYSLOG_TCP_PORT Lib/logging/handlers.py /^SYSLOG_TCP_PORT = 514$/;" v +SYSLOG_UDP_PORT Lib/logging/handlers.py /^SYSLOG_UDP_PORT = 514$/;" v +SYSTEM_ERROR Lib/xmlrpc/client.py /^SYSTEM_ERROR = -32400$/;" v +SYSTEM_PAGE_SIZE Include/internal/pycore_obmalloc.h 170;" d +SYSTEM_TYPES Tools/c-analyzer/c_analyzer/match.py /^SYSTEM_TYPES = {$/;" v +SYS_ACTIVATE_STACK_TRAMPOLINE_METHODDEF Python/clinic/sysmodule.c.h 1237;" d +SYS_ADDAUDITHOOK_METHODDEF Python/clinic/sysmodule.c.h 17;" d +SYS_CALL_TRACING_METHODDEF Python/clinic/sysmodule.c.h 1036;" d +SYS_DEACTIVATE_STACK_TRAMPOLINE_METHODDEF Python/clinic/sysmodule.c.h 1276;" d +SYS_DISPLAYHOOK_METHODDEF Python/clinic/sysmodule.c.h 72;" d +SYS_EXCEPTHOOK_METHODDEF Python/clinic/sysmodule.c.h 81;" d +SYS_EXCEPTION_METHODDEF Python/clinic/sysmodule.c.h 118;" d +SYS_EXC_INFO_METHODDEF Python/clinic/sysmodule.c.h 139;" d +SYS_EXIT_METHODDEF Python/clinic/sysmodule.c.h 179;" d +SYS_GETALLOCATEDBLOCKS_METHODDEF Python/clinic/sysmodule.c.h 893;" d +SYS_GETANDROIDAPILEVEL_METHODDEF Python/clinic/sysmodule.c.h 1217;" d +SYS_GETANDROIDAPILEVEL_METHODDEF Python/clinic/sysmodule.c.h 1416;" d +SYS_GETDEFAULTENCODING_METHODDEF Python/clinic/sysmodule.c.h 211;" d +SYS_GETDLOPENFLAGS_METHODDEF Python/clinic/sysmodule.c.h 1388;" d +SYS_GETDLOPENFLAGS_METHODDEF Python/clinic/sysmodule.c.h 703;" d +SYS_GETFILESYSTEMENCODEERRORS_METHODDEF Python/clinic/sysmodule.c.h 247;" d +SYS_GETFILESYSTEMENCODING_METHODDEF Python/clinic/sysmodule.c.h 229;" d +SYS_GETPROFILE_METHODDEF Python/clinic/sysmodule.c.h 347;" d +SYS_GETRECURSIONLIMIT_METHODDEF Python/clinic/sysmodule.c.h 581;" d +SYS_GETREFCOUNT_METHODDEF Python/clinic/sysmodule.c.h 834;" d +SYS_GETSWITCHINTERVAL_METHODDEF Python/clinic/sysmodule.c.h 406;" d +SYS_GETTOTALREFCOUNT_METHODDEF Python/clinic/sysmodule.c.h 1396;" d +SYS_GETTOTALREFCOUNT_METHODDEF Python/clinic/sysmodule.c.h 863;" d +SYS_GETTRACE_METHODDEF Python/clinic/sysmodule.c.h 315;" d +SYS_GETUNICODEINTERNEDSIZE_METHODDEF Python/clinic/sysmodule.c.h 921;" d +SYS_GETWINDOWSVERSION_METHODDEF Python/clinic/sysmodule.c.h 1376;" d +SYS_GETWINDOWSVERSION_METHODDEF Python/clinic/sysmodule.c.h 611;" d +SYS_GET_ASYNCGEN_HOOKS_METHODDEF Python/clinic/sysmodule.c.h 559;" d +SYS_GET_COROUTINE_ORIGIN_TRACKING_DEPTH_METHODDEF Python/clinic/sysmodule.c.h 529;" d +SYS_GET_INT_MAX_STR_DIGITS_METHODDEF Python/clinic/sysmodule.c.h 754;" d +SYS_INTERN_METHODDEF Python/clinic/sysmodule.c.h 269;" d +SYS_IS_FINALIZING_METHODDEF Python/clinic/sysmodule.c.h 1109;" d +SYS_IS_STACK_TRAMPOLINE_ACTIVE_METHODDEF Python/clinic/sysmodule.c.h 1294;" d +SYS_MDEBUG_METHODDEF Python/clinic/sysmodule.c.h 1392;" d +SYS_MDEBUG_METHODDEF Python/clinic/sysmodule.c.h 724;" d +SYS_SETDLOPENFLAGS_METHODDEF Python/clinic/sysmodule.c.h 1384;" d +SYS_SETDLOPENFLAGS_METHODDEF Python/clinic/sysmodule.c.h 669;" d +SYS_SETRECURSIONLIMIT_METHODDEF Python/clinic/sysmodule.c.h 438;" d +SYS_SETSWITCHINTERVAL_METHODDEF Python/clinic/sysmodule.c.h 372;" d +SYS_SET_COROUTINE_ORIGIN_TRACKING_DEPTH_METHODDEF Python/clinic/sysmodule.c.h 471;" d +SYS_SET_INT_MAX_STR_DIGITS_METHODDEF Python/clinic/sysmodule.c.h 772;" d +SYS_UNRAISABLEHOOK_METHODDEF Python/clinic/sysmodule.c.h 165;" d +SYS__CLEAR_TYPE_CACHE_METHODDEF Python/clinic/sysmodule.c.h 1091;" d +SYS__CURRENT_EXCEPTIONS_METHODDEF Python/clinic/sysmodule.c.h 1014;" d +SYS__CURRENT_FRAMES_METHODDEF Python/clinic/sysmodule.c.h 994;" d +SYS__DEBUGMALLOCSTATS_METHODDEF Python/clinic/sysmodule.c.h 1073;" d +SYS__ENABLELEGACYWINDOWSFSENCODING_METHODDEF Python/clinic/sysmodule.c.h 1380;" d +SYS__ENABLELEGACYWINDOWSFSENCODING_METHODDEF Python/clinic/sysmodule.c.h 639;" d +SYS__GETFRAMEMODULENAME_METHODDEF Python/clinic/sysmodule.c.h 1318;" d +SYS__GETFRAME_METHODDEF Python/clinic/sysmodule.c.h 957;" d +SYS__SETPROFILEALLTHREADS_METHODDEF Python/clinic/sysmodule.c.h 336;" d +SYS__SETTRACEALLTHREADS_METHODDEF Python/clinic/sysmodule.c.h 304;" d +SYS__STATS_CLEAR_METHODDEF Python/clinic/sysmodule.c.h 1173;" d +SYS__STATS_CLEAR_METHODDEF Python/clinic/sysmodule.c.h 1408;" d +SYS__STATS_DUMP_METHODDEF Python/clinic/sysmodule.c.h 1195;" d +SYS__STATS_DUMP_METHODDEF Python/clinic/sysmodule.c.h 1412;" d +SYS__STATS_OFF_METHODDEF Python/clinic/sysmodule.c.h 1151;" d +SYS__STATS_OFF_METHODDEF Python/clinic/sysmodule.c.h 1404;" d +SYS__STATS_ON_METHODDEF Python/clinic/sysmodule.c.h 1129;" d +SYS__STATS_ON_METHODDEF Python/clinic/sysmodule.c.h 1400;" d +SYS_getdents64 Modules/_posixsubprocess.c 41;" d file: +S_CHAR Modules/_json.c 103;" d file: +S_ENFMT Lib/stat.py /^S_ENFMT = S_ISGID # file locking enforcement$/;" v +S_ENFMT Modules/_stat.c 134;" d file: +S_IEXEC Lib/stat.py /^S_IEXEC = 0o0100 # Unix V7 synonym for S_IXUSR$/;" v +S_IEXEC Modules/_stat.c 150;" d file: +S_IFBLK Lib/stat.py /^S_IFBLK = 0o060000 # block device$/;" v +S_IFBLK Modules/_stat.c 63;" d file: +S_IFCHR Lib/stat.py /^S_IFCHR = 0o020000 # character device$/;" v +S_IFDIR Lib/stat.py /^S_IFDIR = 0o040000 # directory$/;" v +S_IFDOOR Lib/stat.py /^S_IFDOOR = 0$/;" v +S_IFDOOR Modules/_stat.c 75;" d file: +S_IFIFO Lib/stat.py /^S_IFIFO = 0o010000 # fifo (named pipe)$/;" v +S_IFIFO Modules/_stat.c 67;" d file: +S_IFLNK Include/pyport.h 234;" d +S_IFLNK Lib/stat.py /^S_IFLNK = 0o120000 # symbolic link$/;" v +S_IFMT Include/pyport.h 228;" d +S_IFMT Lib/stat.py /^def S_IFMT(mode):$/;" f +S_IFPORT Lib/stat.py /^S_IFPORT = 0$/;" v +S_IFPORT Modules/_stat.c 79;" d file: +S_IFREG Lib/stat.py /^S_IFREG = 0o100000 # regular file$/;" v +S_IFSOCK Lib/stat.py /^S_IFSOCK = 0o140000 # socket file$/;" v +S_IFSOCK Modules/_stat.c 71;" d file: +S_IFWHT Lib/stat.py /^S_IFWHT = 0$/;" v +S_IFWHT Modules/_stat.c 83;" d file: +S_IMODE Lib/stat.py /^def S_IMODE(mode):$/;" f +S_IMODE Modules/_stat.c 51;" d file: +S_IRANY Tools/c-analyzer/c_common/fsutil.py /^S_IRANY = stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH$/;" v +S_IREAD Lib/stat.py /^S_IREAD = 0o0400 # Unix V7 synonym for S_IRUSR$/;" v +S_IREAD Modules/_stat.c 142;" d file: +S_IRGRP Lib/stat.py /^S_IRGRP = 0o0040 # read by group$/;" v +S_IRGRP Modules/_stat.c 174;" d file: +S_IROTH Lib/stat.py /^S_IROTH = 0o0004 # read by others$/;" v +S_IROTH Modules/_stat.c 190;" d file: +S_IRUSR Lib/stat.py /^S_IRUSR = 0o0400 # read by owner$/;" v +S_IRUSR Modules/_stat.c 158;" d file: +S_IRWXG Lib/stat.py /^S_IRWXG = 0o0070 # mask for group permissions$/;" v +S_IRWXG Modules/_stat.c 170;" d file: +S_IRWXO Lib/stat.py /^S_IRWXO = 0o0007 # mask for others (not in group) permissions$/;" v +S_IRWXO Modules/_stat.c 186;" d file: +S_IRWXU Lib/stat.py /^S_IRWXU = 0o0700 # mask for owner permissions$/;" v +S_IRWXU Modules/_stat.c 154;" d file: +S_ISBLK Lib/stat.py /^def S_ISBLK(mode):$/;" f +S_ISBLK Modules/_stat.c 92;" d file: +S_ISCHR Include/pyport.h 246;" d +S_ISCHR Lib/stat.py /^def S_ISCHR(mode):$/;" f +S_ISDIR Include/pyport.h 242;" d +S_ISDIR Lib/stat.py /^def S_ISDIR(mode):$/;" f +S_ISDOOR Lib/stat.py /^def S_ISDOOR(mode):$/;" f +S_ISDOOR Modules/_stat.c 108;" d file: +S_ISFIFO Lib/stat.py /^def S_ISFIFO(mode):$/;" f +S_ISFIFO Modules/_stat.c 96;" d file: +S_ISGID Lib/stat.py /^S_ISGID = 0o2000 # set GID bit$/;" v +S_ISGID Modules/_stat.c 129;" d file: +S_ISLNK Include/pyport.h 250;" d +S_ISLNK Lib/stat.py /^def S_ISLNK(mode):$/;" f +S_ISLNK Modules/_stat.c 100;" d file: +S_ISPORT Lib/stat.py /^def S_ISPORT(mode):$/;" f +S_ISPORT Modules/_stat.c 112;" d file: +S_ISREG Include/pyport.h 238;" d +S_ISREG Lib/stat.py /^def S_ISREG(mode):$/;" f +S_ISSOCK Lib/stat.py /^def S_ISSOCK(mode):$/;" f +S_ISSOCK Modules/_stat.c 104;" d file: +S_ISUID Lib/stat.py /^S_ISUID = 0o4000 # set UID bit$/;" v +S_ISUID Modules/_stat.c 125;" d file: +S_ISVTX Lib/stat.py /^S_ISVTX = 0o1000 # sticky bit$/;" v +S_ISVTX Modules/_stat.c 138;" d file: +S_ISWHT Lib/stat.py /^def S_ISWHT(mode):$/;" f +S_ISWHT Modules/_stat.c 116;" d file: +S_IWANY Tools/c-analyzer/c_common/fsutil.py /^S_IWANY = stat.S_IWUSR | stat.S_IWGRP | stat.S_IWOTH$/;" v +S_IWGRP Lib/stat.py /^S_IWGRP = 0o0020 # write by group$/;" v +S_IWGRP Modules/_stat.c 178;" d file: +S_IWOTH Lib/stat.py /^S_IWOTH = 0o0002 # write by others$/;" v +S_IWOTH Modules/_stat.c 194;" d file: +S_IWRITE Lib/stat.py /^S_IWRITE = 0o0200 # Unix V7 synonym for S_IWUSR$/;" v +S_IWRITE Modules/_stat.c 146;" d file: +S_IWUSR Lib/stat.py /^S_IWUSR = 0o0200 # write by owner$/;" v +S_IWUSR Modules/_stat.c 162;" d file: +S_IXANY Tools/c-analyzer/c_common/fsutil.py /^S_IXANY = stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH$/;" v +S_IXGRP Lib/stat.py /^S_IXGRP = 0o0010 # execute by group$/;" v +S_IXGRP Modules/_stat.c 182;" d file: +S_IXOTH Lib/stat.py /^S_IXOTH = 0o0001 # execute by others$/;" v +S_IXOTH Modules/_stat.c 198;" d file: +S_IXUSR Lib/stat.py /^S_IXUSR = 0o0100 # execute by owner$/;" v +S_IXUSR Modules/_stat.c 166;" d file: +S_REGION Lib/tkinter/tix.py /^S_REGION = 's-region'$/;" v +S_ident_o Modules/syslogmodule.c /^static PyObject *S_ident_o = NULL; \/\/ identifier, held by openlog()$/;" v file: +S_log_open Modules/syslogmodule.c /^static char S_log_open = 0;$/;" v file: +SadSnake Lib/test/test_unittest/test_case.py /^ class SadSnake(object):$/;" c function:Test_TestCase.testAddTypeEqualityFunc +SafeChildWatcher Lib/asyncio/unix_events.py /^class SafeChildWatcher(BaseChildWatcher):$/;" c +SafeChildWatcherTests Lib/test/test_asyncio/test_unix_events.py /^class SafeChildWatcherTests (ChildWatcherTestsMixin, test_utils.TestCase):$/;" c +SafeQueue Lib/test/_test_multiprocessing.py /^ class SafeQueue(multiprocessing.queues.Queue):$/;" c function:_TestQueue.test_queue_feeder_on_queue_feeder_error +SafeTransport Lib/xmlrpc/client.py /^class SafeTransport(Transport):$/;" c +SafeUUID Lib/uuid.py /^class SafeUUID:$/;" c +SameAddSubclass Lib/test/test_zoneinfo/test_zoneinfo.py /^ class SameAddSubclass(type(dt)):$/;" c function:CZoneInfoTest.test_fold_mutate.to_subclass +SameFileError Lib/shutil.py /^class SameFileError(Error):$/;" c +SampleCallbacksTestCase Lib/test/test_ctypes/test_callbacks.py /^class SampleCallbacksTestCase(unittest.TestCase):$/;" c +SampleClass Lib/test/test_doctest.py /^class SampleClass:$/;" c +SampleException Lib/test/test_unittest/testmock/testasync.py /^ class SampleException(Exception):$/;" c function:AsyncArguments.test_add_side_effect_exception_iterable +SampleException Lib/test/test_unittest/testmock/testwith.py /^class SampleException(Exception): pass$/;" c +SampleNewStyleClass Lib/test/test_doctest.py /^class SampleNewStyleClass(object):$/;" c +SampleObject Lib/test/test_unittest/testmock/testsealable.py /^class SampleObject:$/;" c +SanityTestCase Lib/test/test_hmac.py /^class SanityTestCase(unittest.TestCase):$/;" c +Save Lib/idlelib/config.py /^ def Save(self):$/;" m class:IdleUserConfParser +SaveAs Lib/tkinter/filedialog.py /^class SaveAs(_Dialog):$/;" c +SaveFileDialog Lib/tkinter/filedialog.py /^class SaveFileDialog(FileDialog):$/;" c +SavePageSettings Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void SavePageSettings() {$/;" f class:PythonBootstrapperApplication file: +SaveSignals Lib/test/support/__init__.py /^class SaveSignals:$/;" c +SaveUserCfgFiles Lib/idlelib/config.py /^ def SaveUserCfgFiles(self):$/;" m class:IdleConf +SaxutilsTest Lib/test/test_sax.py /^class SaxutilsTest(unittest.TestCase):$/;" c +SayWhenError Lib/test/_test_multiprocessing.py /^class SayWhenError(ValueError): pass$/;" c +ScalableSelectorMixIn Lib/test/test_selectors.py /^class ScalableSelectorMixIn:$/;" c +Scale Lib/tkinter/__init__.py /^class Scale(Widget):$/;" c +Scale Lib/tkinter/ttk.py /^class Scale(Widget, tkinter.Scale):$/;" c +ScaleTest Lib/test/test_tkinter/test_widgets.py /^class ScaleTest(AbstractWidgetTest, unittest.TestCase):$/;" c +ScaleTest Lib/test/test_ttk/test_widgets.py /^class ScaleTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Scale_Bit Python/dtoa.c 1131;" d file: +ScandirIterator Modules/posixmodule.c /^} ScandirIterator;$/;" t typeref:struct:__anon481 file: +ScandirIteratorType Modules/posixmodule.c /^ PyObject *ScandirIteratorType;$/;" m struct:__anon477 file: +ScandirIteratorType_slots Modules/posixmodule.c /^static PyType_Slot ScandirIteratorType_slots[] = {$/;" v file: +ScandirIteratorType_spec Modules/posixmodule.c /^static PyType_Spec ScandirIteratorType_spec = {$/;" v file: +ScandirIterator_close Modules/posixmodule.c /^ScandirIterator_close(ScandirIterator *self, PyObject *args)$/;" f file: +ScandirIterator_closedir Modules/posixmodule.c /^ScandirIterator_closedir(ScandirIterator *iterator)$/;" f file: +ScandirIterator_dealloc Modules/posixmodule.c /^ScandirIterator_dealloc(ScandirIterator *iterator)$/;" f file: +ScandirIterator_enter Modules/posixmodule.c /^ScandirIterator_enter(PyObject *self, PyObject *args)$/;" f file: +ScandirIterator_exit Modules/posixmodule.c /^ScandirIterator_exit(ScandirIterator *self, PyObject *args)$/;" f file: +ScandirIterator_finalize Modules/posixmodule.c /^ScandirIterator_finalize(ScandirIterator *iterator)$/;" f file: +ScandirIterator_is_closed Modules/posixmodule.c /^ScandirIterator_is_closed(ScandirIterator *iterator)$/;" f file: +ScandirIterator_iternext Modules/posixmodule.c /^ScandirIterator_iternext(ScandirIterator *iterator)$/;" f file: +ScandirIterator_methods Modules/posixmodule.c /^static PyMethodDef ScandirIterator_methods[] = {$/;" v file: +Scanner Lib/re/__init__.py /^class Scanner:$/;" c +ScannerObject Modules/_sre/sre.h /^} ScannerObject;$/;" t typeref:struct:__anon459 +Scanner_Type Modules/_sre/sre.c /^ PyTypeObject *Scanner_Type;$/;" m struct:__anon462 file: +SchedParamType Modules/posixmodule.c /^ PyObject *SchedParamType;$/;" m struct:__anon477 file: +ScopeTests Lib/test/test_scope.py /^class ScopeTests(unittest.TestCase):$/;" c +Screen Lib/turtle.py /^def Screen():$/;" f +ScriptBinding Lib/idlelib/runscript.py /^class ScriptBinding:$/;" c +ScriptBindingTest Lib/idlelib/idle_test/test_runscript.py /^class ScriptBindingTest(unittest.TestCase):$/;" c +ScriptTestCase Lib/test/test_httpservers.py /^class ScriptTestCase(unittest.TestCase):$/;" c +ScrollablePane Lib/test/test_descr.py /^ class ScrollablePane(Pane,ScrollingMixin): pass$/;" c function:ClassPropertiesAndMethods.test_consistency_with_epg +ScrollableTextFrame Lib/idlelib/textview.py /^class ScrollableTextFrame(Frame):$/;" c +ScrollableTextFrameTest Lib/idlelib/idle_test/test_textview.py /^class ScrollableTextFrameTest(unittest.TestCase):$/;" c +Scrollbar Lib/tkinter/__init__.py /^class Scrollbar(Widget):$/;" c +Scrollbar Lib/tkinter/ttk.py /^class Scrollbar(Widget, tkinter.Scrollbar):$/;" c +ScrollbarTest Lib/test/test_tkinter/test_widgets.py /^class ScrollbarTest(AbstractWidgetTest, unittest.TestCase):$/;" c +ScrollbarTest Lib/test/test_ttk/test_widgets.py /^class ScrollbarTest(AbstractWidgetTest, unittest.TestCase):$/;" c +ScrolledCanvas Lib/idlelib/tree.py /^class ScrolledCanvas:$/;" c +ScrolledCanvas Lib/turtle.py /^class ScrolledCanvas(TK.Frame):$/;" c +ScrolledGrid Lib/tkinter/tix.py /^class ScrolledGrid(Grid):$/;" c +ScrolledHList Lib/tkinter/tix.py /^class ScrolledHList(TixWidget):$/;" c +ScrolledList Lib/idlelib/scrolledlist.py /^class ScrolledList:$/;" c +ScrolledListBox Lib/tkinter/tix.py /^class ScrolledListBox(TixWidget):$/;" c +ScrolledListTest Lib/idlelib/idle_test/test_scrolledlist.py /^class ScrolledListTest(unittest.TestCase):$/;" c +ScrolledTList Lib/tkinter/tix.py /^class ScrolledTList(TixWidget):$/;" c +ScrolledText Lib/tkinter/scrolledtext.py /^class ScrolledText(Text):$/;" c +ScrolledText Lib/tkinter/tix.py /^class ScrolledText(TixWidget):$/;" c +ScrolledWindow Lib/tkinter/tix.py /^class ScrolledWindow(TixWidget):$/;" c +ScrollingMixin Lib/test/test_descr.py /^ class ScrollingMixin(object): pass$/;" c function:ClassPropertiesAndMethods.test_consistency_with_epg +SdFlagAddr Modules/_decimal/_decimal.c 111;" d file: +SdFlags Modules/_decimal/_decimal.c 112;" d file: +SearchDialog Lib/idlelib/search.py /^class SearchDialog(SearchDialogBase):$/;" c +SearchDialogBase Lib/idlelib/searchbase.py /^class SearchDialogBase:$/;" c +SearchDialogBaseTest Lib/idlelib/idle_test/test_searchbase.py /^class SearchDialogBaseTest(unittest.TestCase):$/;" c +SearchDialogTest Lib/idlelib/idle_test/test_search.py /^class SearchDialogTest(unittest.TestCase):$/;" c +SearchEngine Lib/idlelib/searchengine.py /^class SearchEngine:$/;" c +SearchEngineTest Lib/idlelib/idle_test/test_searchengine.py /^class SearchEngineTest(unittest.TestCase):$/;" c +SearchInfo PC/launcher2.c /^} SearchInfo;$/;" t typeref:struct:__anon284 file: +SearchTest Lib/idlelib/idle_test/test_searchengine.py /^class SearchTest(unittest.TestCase):$/;" c +Season Lib/test/test_enum.py /^ class Season(Enum):$/;" c function:TestSpecial.setUp +Season Lib/test/test_enum.py /^ class Season(Enum):$/;" c function:TestSpecial.test_iteration_order +Season Lib/test/test_enum.py /^ class Season(self.enum_type):$/;" c function:_EnumTests.test_attribute_deletion +Second Lib/test/test_ctypes/test_structures.py /^ class Second(Structure):$/;" c function:TestRecursiveStructure.test_vice_versa +Second Lib/test/test_types.py /^ class Second(SecondBase[int]): pass$/;" c function:ClassCreationTests.test_get_original_bases +SecondBase Lib/test/test_types.py /^ class SecondBase(typing.Generic[T]): pass$/;" c function:ClassCreationTests.test_get_original_bases +SecondFailedStrEnum Lib/test/test_enum.py /^ class SecondFailedStrEnum(StrEnum):$/;" c class:TestSpecial.test_strenum.GoodbyeEnum +SecondFailedStrEnum Lib/test/test_enum.py /^ class SecondFailedStrEnum(CustomStrEnum):$/;" c function:TestSpecial.test_custom_strenum +Second_ Lib/test/test_types.py /^ class Second_(typing.Generic[T]): pass$/;" c function:ClassCreationTests.test_get_original_bases +Section Lib/email/_header_value_parser.py /^class Section(TokenList):$/;" c +Section Tools/scripts/summarize_stats.py /^class Section:$/;" c +SectionName Lib/idlelib/query.py /^class SectionName(Query):$/;" c +SectionNameTest Lib/idlelib/idle_test/test_query.py /^class SectionNameTest(unittest.TestCase):$/;" c +SectionProxy Lib/configparser.py /^class SectionProxy(MutableMapping):$/;" c +Sectioned Lib/importlib/metadata/__init__.py /^class Sectioned:$/;" c +SectionnameGuiTest Lib/idlelib/idle_test/test_query.py /^class SectionnameGuiTest(unittest.TestCase):$/;" c +SecureTCPServer Lib/test/test_imaplib.py /^ class SecureTCPServer(socketserver.TCPServer):$/;" c class:TestImaplib +SecureTCPServer Lib/test/test_imaplib.py /^ class SecureTCPServer:$/;" c +Select Lib/tkinter/tix.py /^class Select(TixWidget):$/;" c +SelectEINTRTest Lib/test/_test_eintr.py /^class SelectEINTRTest(EINTRBaseTest):$/;" c +SelectEventLoopTests Lib/test/test_asyncio/test_events.py /^ test_utils.TestCase):$/;" c class:SubprocessTestsMixin +SelectEventLoopTests Lib/test/test_asyncio/test_sendfile.py /^ test_utils.TestCase):$/;" c class:SendfileTestsBase +SelectEventLoopTests Lib/test/test_asyncio/test_sock_lowlevel.py /^ test_utils.TestCase):$/;" c class:BaseSockTestsMixin +SelectSelector Lib/selectors.py /^class SelectSelector(_BaseSelectorImpl):$/;" c +SelectSelectorTestCase Lib/test/test_selectors.py /^class SelectSelectorTestCase(BaseSelectorTestCase, unittest.TestCase):$/;" c +SelectTestCase Lib/test/test_select.py /^class SelectTestCase(unittest.TestCase):$/;" c +SelectableIsAtty Lib/test/test_io.py /^ class SelectableIsAtty(MockRawIO):$/;" c function:BufferedRWPairTest.test_isatty +Selection Lib/test/test_tkinter/test_misc.py /^ Selection = '31' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Selection Lib/tkinter/__init__.py /^ Selection = '31' # undocumented$/;" v class:EventType +SelectionClear Lib/test/test_tkinter/test_misc.py /^ SelectionClear = '29' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +SelectionClear Lib/tkinter/__init__.py /^ SelectionClear = '29' # undocumented$/;" v class:EventType +SelectionRequest Lib/test/test_tkinter/test_misc.py /^ SelectionRequest = '30' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +SelectionRequest Lib/tkinter/__init__.py /^ SelectionRequest = '30' # undocumented$/;" v class:EventType +SelectorDatagramTransportTests Lib/test/test_asyncio/test_selector_events.py /^class SelectorDatagramTransportTests(test_utils.TestCase):$/;" c +SelectorEventLoop Lib/asyncio/unix_events.py /^SelectorEventLoop = _UnixSelectorEventLoop$/;" v +SelectorEventLoop Lib/asyncio/windows_events.py /^SelectorEventLoop = _WindowsSelectorEventLoop$/;" v +SelectorEventLoopSignalTests Lib/test/test_asyncio/test_unix_events.py /^class SelectorEventLoopSignalTests(test_utils.TestCase):$/;" c +SelectorEventLoopUnixSockSendfileTests Lib/test/test_asyncio/test_unix_events.py /^class SelectorEventLoopUnixSockSendfileTests(test_utils.TestCase):$/;" c +SelectorEventLoopUnixSocketTests Lib/test/test_asyncio/test_unix_events.py /^class SelectorEventLoopUnixSocketTests(test_utils.TestCase):$/;" c +SelectorKey Lib/selectors.py /^SelectorKey = namedtuple('SelectorKey', ['fileobj', 'fd', 'events', 'data'])$/;" v +SelectorSocketTransportBufferedProtocolTests Lib/test/test_asyncio/test_selector_events.py /^class SelectorSocketTransportBufferedProtocolTests(test_utils.TestCase):$/;" c +SelectorSocketTransportTests Lib/test/test_asyncio/test_selector_events.py /^class SelectorSocketTransportTests(test_utils.TestCase):$/;" c +SelectorStartServerTests Lib/test/test_asyncio/test_server.py /^class SelectorStartServerTests(BaseStartServer, unittest.TestCase):$/;" c +SelectorStartTLSTests Lib/test/test_asyncio/test_sslproto.py /^class SelectorStartTLSTests(BaseStartTLS, unittest.TestCase):$/;" c +SelectorTransportTests Lib/test/test_asyncio/test_selector_events.py /^class SelectorTransportTests(test_utils.TestCase):$/;" c +Self Lib/typing.py /^def Self(self, parameters):$/;" f +SelfCycleBase Lib/test/test_finalization.py /^class SelfCycleBase:$/;" c +SelfCycleFinalizationTest Lib/test/test_finalization.py /^class SelfCycleFinalizationTest(TestBase, unittest.TestCase):$/;" c +SelfCycleResurrector Lib/test/test_finalization.py /^class SelfCycleResurrector(SelfCycleBase, SimpleResurrector):$/;" c +SelfReg Lib/msilib/schema.py /^SelfReg = Table('SelfReg')$/;" v +SelfTests Lib/test/test_typing.py /^class SelfTests(BaseTestCase):$/;" c +SemLock Lib/multiprocessing/synchronize.py /^class SemLock(object):$/;" c +SemLock Lib/test/_test_multiprocessing.py /^ class SemLock(_multiprocessing.SemLock):$/;" c function:SemLockTests.test_semlock_subclass +SemLockObject Modules/_multiprocessing/semaphore.c /^} SemLockObject;$/;" t typeref:struct:__anon470 file: +SemLockTests Lib/test/_test_multiprocessing.py /^class SemLockTests(unittest.TestCase):$/;" c +Semaphore Lib/asyncio/locks.py /^class Semaphore(_ContextManagerMixin, mixins._LoopBoundMixin):$/;" c +Semaphore Lib/multiprocessing/context.py /^ def Semaphore(self, value=1):$/;" m class:BaseContext +Semaphore Lib/multiprocessing/synchronize.py /^class Semaphore(SemLock):$/;" c +Semaphore Lib/test/_test_multiprocessing.py /^ Semaphore = property(operator.attrgetter('manager.Semaphore'))$/;" v class:ManagerMixin +Semaphore Lib/test/_test_multiprocessing.py /^ Semaphore = staticmethod(multiprocessing.Semaphore)$/;" v class:ProcessesMixin +Semaphore Lib/test/_test_multiprocessing.py /^ Semaphore = staticmethod(multiprocessing.dummy.Semaphore)$/;" v class:ThreadsMixin +Semaphore Lib/threading.py /^class Semaphore:$/;" c +SemaphoreTests Lib/test/lock_tests.py /^class SemaphoreTests(BaseSemaphoreTests):$/;" c +SemaphoreTests Lib/test/test_asyncio/test_locks.py /^class SemaphoreTests(unittest.IsolatedAsyncioTestCase):$/;" c +SemaphoreTests Lib/test/test_threading.py /^class SemaphoreTests(lock_tests.SemaphoreTests):$/;" c +SendChannel Lib/test/support/interpreters.py /^class SendChannel(_ChannelEnd):$/;" c +SendReaderNNTPv2Tests Lib/test/test_nntplib.py /^ unittest.TestCase):$/;" c +SendRecvFdsTests Lib/test/test_socket.py /^class SendRecvFdsTests(unittest.TestCase):$/;" c +SendfileBase Lib/test/test_asyncio/test_sendfile.py /^class SendfileBase:$/;" c +SendfileMixin Lib/test/test_asyncio/test_sendfile.py /^class SendfileMixin(SendfileBase):$/;" c +SendfileNotAvailableError Lib/asyncio/exceptions.py /^class SendfileNotAvailableError(RuntimeError):$/;" c +SendfileTestsBase Lib/test/test_asyncio/test_sendfile.py /^class SendfileTestsBase(SendfileMixin, SockSendfileMixin):$/;" c +SendfileUsingSendTest Lib/test/test_socket.py /^class SendfileUsingSendTest(ThreadedTCPSocketTest):$/;" c +SendfileUsingSendfileTest Lib/test/test_socket.py /^class SendfileUsingSendfileTest(SendfileUsingSendTest):$/;" c +SendmsgConnectionlessTests Lib/test/test_socket.py /^class SendmsgConnectionlessTests(SendmsgTests):$/;" c +SendmsgSCTPStreamTest Lib/test/test_socket.py /^class SendmsgSCTPStreamTest(SendmsgStreamTests, SendrecvmsgSCTPStreamTestBase):$/;" c +SendmsgStreamTests Lib/test/test_socket.py /^class SendmsgStreamTests(SendmsgTests):$/;" c +SendmsgTCPTest Lib/test/test_socket.py /^class SendmsgTCPTest(SendmsgStreamTests, SendrecvmsgTCPTestBase):$/;" c +SendmsgTests Lib/test/test_socket.py /^class SendmsgTests(SendrecvmsgServerTimeoutBase):$/;" c +SendmsgUDP6Test Lib/test/test_socket.py /^class SendmsgUDP6Test(SendmsgConnectionlessTests, SendrecvmsgUDP6TestBase):$/;" c +SendmsgUDPLITE6Test Lib/test/test_socket.py /^class SendmsgUDPLITE6Test(SendmsgConnectionlessTests, SendrecvmsgUDPLITE6TestBase):$/;" c +SendmsgUDPLITETest Lib/test/test_socket.py /^class SendmsgUDPLITETest(SendmsgConnectionlessTests, SendrecvmsgUDPLITETestBase):$/;" c +SendmsgUDPTest Lib/test/test_socket.py /^class SendmsgUDPTest(SendmsgConnectionlessTests, SendrecvmsgUDPTestBase):$/;" c +SendmsgUnixStreamTest Lib/test/test_socket.py /^class SendmsgUnixStreamTest(SendmsgStreamTests, SendrecvmsgUnixStreamTestBase):$/;" c +SendrecvmsgBase Lib/test/test_socket.py /^class SendrecvmsgBase(ThreadSafeCleanupTestCase):$/;" c +SendrecvmsgConnectedBase Lib/test/test_socket.py /^class SendrecvmsgConnectedBase(SendrecvmsgBase):$/;" c +SendrecvmsgConnectionlessBase Lib/test/test_socket.py /^class SendrecvmsgConnectionlessBase(SendrecvmsgBase):$/;" c +SendrecvmsgDgramFlagsBase Lib/test/test_socket.py /^class SendrecvmsgDgramFlagsBase(SendrecvmsgBase):$/;" c +SendrecvmsgSCTPFlagsBase Lib/test/test_socket.py /^class SendrecvmsgSCTPFlagsBase(SendrecvmsgBase):$/;" c +SendrecvmsgSCTPStreamTestBase Lib/test/test_socket.py /^ ConnectedStreamTestMixin, SCTPStreamBase):$/;" c +SendrecvmsgServerTimeoutBase Lib/test/test_socket.py /^class SendrecvmsgServerTimeoutBase(SendrecvmsgBase):$/;" c +SendrecvmsgTCPTestBase Lib/test/test_socket.py /^ ConnectedStreamTestMixin, TCPTestBase):$/;" c +SendrecvmsgUDP6TestBase Lib/test/test_socket.py /^ ThreadedSocketTestMixin, UDP6TestBase):$/;" c +SendrecvmsgUDPLITE6TestBase Lib/test/test_socket.py /^ ThreadedSocketTestMixin, UDPLITE6TestBase):$/;" c +SendrecvmsgUDPLITETestBase Lib/test/test_socket.py /^ ThreadedSocketTestMixin, UDPLITETestBase):$/;" c +SendrecvmsgUDPTestBase Lib/test/test_socket.py /^ ThreadedSocketTestMixin, UDPTestBase):$/;" c +SendrecvmsgUnixStreamTestBase Lib/test/test_socket.py /^ ConnectedStreamTestMixin, UnixStreamBase):$/;" c +SentinelTest Lib/test/test_unittest/testmock/testsentinel.py /^class SentinelTest(unittest.TestCase):$/;" c +Sentinels Tools/clinic/clinic.py /^class Sentinels(enum.Enum):$/;" c +SeparatedNamespacePackages Lib/test/test_importlib/test_namespace_pkgs.py /^class SeparatedNamespacePackages(NamespacePackageTest):$/;" c +SeparatedNamespacePackagesCreatedWhileRunning Lib/test/test_importlib/test_namespace_pkgs.py /^class SeparatedNamespacePackagesCreatedWhileRunning(NamespacePackageTest):$/;" c +SeparatedNestedZipNamespacePackages Lib/test/test_importlib/test_namespace_pkgs.py /^class SeparatedNestedZipNamespacePackages(NamespacePackageTest):$/;" c +SeparatedOverlappingNamespacePackages Lib/test/test_importlib/test_namespace_pkgs.py /^class SeparatedOverlappingNamespacePackages(NamespacePackageTest):$/;" c +SeparatedZipNamespacePackages Lib/test/test_importlib/test_namespace_pkgs.py /^class SeparatedZipNamespacePackages(NamespacePackageTest):$/;" c +Separator Lib/tkinter/ttk.py /^class Separator(Widget):$/;" c +SeparatorTest Lib/test/test_ttk/test_widgets.py /^class SeparatorTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Seq Lib/test/test_enumerate.py /^ class Seq:$/;" c function:TestReversed.test_gc +Seq Lib/test/test_iter.py /^ class Seq:$/;" c function:TestCase.test_builtin_filter +Seq Lib/test/test_patma.py /^ class Seq(collections.abc.Sequence):$/;" c function:TestPatma.test_patma_184 +Seq Lib/test/test_patma.py /^ class Seq(collections.abc.Sequence):$/;" c function:TestPatma.test_patma_185 +Seq Lib/test/test_patma.py /^ class Seq(collections.abc.Sequence):$/;" c function:TestPatma.test_patma_186 +Seq1 Lib/test/test_operator.py /^class Seq1:$/;" c +Seq2 Lib/test/test_operator.py /^class Seq2(object):$/;" c +SeqIter Lib/test/test_iter.py /^ class SeqIter:$/;" c function:TestCase.test_builtin_filter.Seq.__iter__ +SeqSet Lib/test/test_random.py /^ class SeqSet(abc.Sequence, abc.Set):$/;" c function:TestBasicOps.test_sample_on_seqsets +SeqTestCase Lib/test/test_index.py /^class SeqTestCase:$/;" c +SeqWithWeirdLen Lib/test/test_enumerate.py /^ class SeqWithWeirdLen:$/;" c function:TestReversed.test_len +Sequence Lib/_collections_abc.py /^class Sequence(Reversible, Collection):$/;" c +Sequence Lib/test/seq_tests.py /^class Sequence:$/;" c +Sequence Lib/test/string_tests.py /^class Sequence:$/;" c +Sequence Lib/typing.py /^Sequence = _alias(collections.abc.Sequence, 1)$/;" v +SequenceClass Lib/test/test_functools.py /^ class SequenceClass:$/;" c function:TestReduce.test_iterator_usage +SequenceClass Lib/test/test_iter.py /^class SequenceClass:$/;" c +SequenceConstructorVisitor Parser/asdl_c.py /^class SequenceConstructorVisitor(EmitVisitor):$/;" c +SequenceDefVisitor Parser/asdl_c.py /^class SequenceDefVisitor(EmitVisitor):$/;" c +SequenceMatcher Lib/difflib.py /^class SequenceMatcher:$/;" c +SequenceProxyClass Lib/test/test_iter.py /^class SequenceProxyClass:$/;" c +SequenceSubclass Lib/test/test_collections.py /^ class SequenceSubclass(Sequence):$/;" c function:TestCollectionABCs.test_Sequence_mixins +SequenceTreeItem Lib/idlelib/debugobj.py /^class SequenceTreeItem(ObjectTreeItem):$/;" c +SequenceTreeItemTest Lib/idlelib/idle_test/test_debugobj.py /^class SequenceTreeItemTest(unittest.TestCase):$/;" c +SequenceWithoutALength Lib/test/test_builtin.py /^ class SequenceWithoutALength:$/;" c function:BuiltinTest.test_zip +SerializeTests Lib/test/test_sqlite3/test_dbapi.py /^class SerializeTests(unittest.TestCase):$/;" c +Server Lib/asyncio/base_events.py /^class Server(events.AbstractServer):$/;" c +Server Lib/logging/config.py /^ class Server(threading.Thread):$/;" c function:listen +Server Lib/multiprocessing/managers.py /^class Server(object):$/;" c +Server Lib/xmlrpc/client.py /^Server = ServerProxy$/;" v +ServerClass Lib/http/server.py /^ ServerClass=DualStackServer,$/;" v class:.DualStackServer +ServerHTMLDoc Lib/xmlrpc/server.py /^class ServerHTMLDoc(pydoc.HTMLDoc):$/;" c +ServerHandler Lib/wsgiref/simple_server.py /^class ServerHandler(SimpleHandler):$/;" c +ServerProto Lib/test/test_asyncio/test_ssl.py /^ class ServerProto(asyncio.Protocol):$/;" c function:TestSSL.test_start_tls_server_1 +ServerProto Lib/test/test_asyncio/test_sslproto.py /^ class ServerProto(asyncio.Protocol):$/;" c function:BaseStartTLS.test_start_tls_server_1 +ServerProtocol Lib/test/test_asyncio/test_ssl.py /^ class ServerProtocol(asyncio.StreamReaderProtocol):$/;" c function:TestSSL.test_create_server_ssl_over_ssl +ServerProxy Lib/xmlrpc/client.py /^class ServerProxy:$/;" c +ServerProxyTestCase Lib/test/test_xmlrpc.py /^class ServerProxyTestCase(unittest.TestCase):$/;" c +ServerThread Lib/pydoc.py /^ class ServerThread(threading.Thread):$/;" c function:_start_server +ServiceControl Lib/msilib/schema.py /^ServiceControl = Table('ServiceControl')$/;" v +ServiceInstall Lib/msilib/schema.py /^ServiceInstall = Table('ServiceInstall')$/;" v +Set Include/internal/pycore_ast.h /^ } Set;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon85 +Set Lib/_collections_abc.py /^class Set(Collection):$/;" c +Set Lib/typing.py /^Set = _alias(set, 1, inst=False, name='Set')$/;" v +SetAttributeTest Lib/test/test_pyexpat.py /^class SetAttributeTest(unittest.TestCase):$/;" c +SetBoolItem Python/sysmodule.c 3190;" d file: +SetBoolItem Python/sysmodule.c 3205;" d file: +SetCharacterDataHandler Include/pyexpat.h /^ void (*SetCharacterDataHandler)($/;" m struct:PyExpat_CAPI +SetCommentHandler Include/pyexpat.h /^ void (*SetCommentHandler)($/;" m struct:PyExpat_CAPI +SetComp Include/internal/pycore_ast.h /^ } SetComp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon87 +SetComp_fields Python/Python-ast.c /^static const char * const SetComp_fields[]={$/;" v file: +SetComp_kind Include/internal/pycore_ast.h /^ ListComp_kind=9, SetComp_kind=10, DictComp_kind=11,$/;" e enum:_expr_kind +SetComp_type Include/internal/pycore_ast_state.h /^ PyObject *SetComp_type;$/;" m struct:ast_state +SetComprehension Include/internal/pycore_symtable.h /^ SetComprehension = 3,$/;" e enum:_comprehension_type +SetConfigTests Lib/test/_test_embed_set_config.py /^class SetConfigTests(unittest.TestCase):$/;" c +SetConfigTests Lib/test/test_embed.py /^class SetConfigTests(unittest.TestCase):$/;" c +SetConsoleCtrlHandler Lib/test/win_console_handler.py /^SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler$/;" v +SetControlColor Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL SetControlColor(HWND hWnd, HDC hDC, HBRUSH *brush) {$/;" f class:PythonBootstrapperApplication file: +SetDblFlag Objects/floatobject.c 106;" d file: +SetDblFlag Objects/floatobject.c 121;" d file: +SetDefaultHandlerExpand Include/pyexpat.h /^ void (*SetDefaultHandlerExpand)($/;" m struct:PyExpat_CAPI +SetDictInt Modules/_cursesmodule.c 3273;" d file: +SetElementHandler Include/pyexpat.h /^ void (*SetElementHandler)($/;" m struct:PyExpat_CAPI +SetEncoding Include/pyexpat.h /^ enum XML_Status (*SetEncoding)(XML_Parser parser, const XML_Char *encoding);$/;" m struct:PyExpat_CAPI typeref:enum:PyExpat_CAPI::SetEncoding +SetException Modules/_ctypes/callproc.c /^static void SetException(DWORD code, EXCEPTION_RECORD *pr)$/;" f file: +SetExeDir PCbuild/idle.bat /^:SetExeDir$/;" l +SetExtra Lib/test/test_code.py /^ SetExtra = py.PyUnstable_Code_SetExtra$/;" v class:CodeLocationTest +SetFlag Python/sysmodule.c 2931;" d file: +SetFlag Python/sysmodule.c 2952;" d file: +SetFlagObj Python/sysmodule.c 2921;" d file: +SetFlagObj Python/sysmodule.c 2951;" d file: +SetFromWindowsErr Modules/overlapped.c /^SetFromWindowsErr(DWORD err)$/;" f file: +SetHashSalt Include/pyexpat.h /^ int (*SetHashSalt)(XML_Parser parser, unsigned long hash_salt);$/;" m struct:PyExpat_CAPI +SetIntFlag Objects/floatobject.c 104;" d file: +SetIntFlag Objects/floatobject.c 120;" d file: +SetIntItem Modules/_cursesmodule.c 4592;" d file: +SetIntItem Modules/_cursesmodule.c 4602;" d file: +SetIntItem Python/sysmodule.c 3022;" d file: +SetIntItem Python/sysmodule.c 3032;" d file: +SetMenu Lib/idlelib/dynoption.py /^ def SetMenu(self,valueList,value=None):$/;" m class:DynOptionMenu +SetMethodsTest Lib/test/test_asyncio/test_tasks.py /^class SetMethodsTest:$/;" c +SetNamespaceDeclHandler Include/pyexpat.h /^ void (*SetNamespaceDeclHandler)($/;" m struct:PyExpat_CAPI +SetOption Lib/idlelib/config.py /^ def SetOption(self, configType, section, option, value):$/;" m class:IdleConf +SetOption Lib/idlelib/config.py /^ def SetOption(self, section, option, value):$/;" m class:IdleUserConfParser +SetPlatform PCbuild/rt.bat /^:SetPlatform$/;" l +SetPointerType Lib/ctypes/__init__.py /^def SetPointerType(pointer, cls):$/;" f +SetProcessingInstructionHandler Include/pyexpat.h /^ void (*SetProcessingInstructionHandler)($/;" m struct:PyExpat_CAPI +SetProgressState Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void SetProgressState(__in HRESULT hrStatus) {$/;" f class:PythonBootstrapperApplication file: +SetStartDoctypeDeclHandler Include/pyexpat.h /^ void (*SetStartDoctypeDeclHandler)(XML_Parser parser,$/;" m struct:PyExpat_CAPI +SetState Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void SetState(__in PYBA_STATE state, __in HRESULT hrStatus) {$/;" f class:PythonBootstrapperApplication file: +SetStrItem Python/sysmodule.c 3024;" d file: +SetStrItem Python/sysmodule.c 3033;" d file: +SetSubclass Lib/test/test_set.py /^class SetSubclass(set):$/;" c +SetSubclassWithSlots Lib/test/test_set.py /^class SetSubclassWithSlots(set):$/;" c +SetTaskbarButtonProgress Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void SetTaskbarButtonProgress(__in DWORD dwOverallPercentage) {$/;" f class:PythonBootstrapperApplication file: +SetTaskbarButtonState Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void SetTaskbarButtonState(__in TBPFLAG tbpFlags) {$/;" f class:PythonBootstrapperApplication file: +SetText Lib/idlelib/debugobj.py /^ def SetText(self, text):$/;" m class:ObjectTreeItem +SetText Lib/idlelib/tree.py /^ def SetText(self, text):$/;" m class:FileTreeItem +SetText Lib/idlelib/tree.py /^ def SetText(self, text):$/;" m class:TreeItem +SetUnknownEncodingHandler Include/pyexpat.h /^ void (*SetUnknownEncodingHandler)($/;" m struct:PyExpat_CAPI +SetUserData Include/pyexpat.h /^ void (*SetUserData)(XML_Parser parser, void *userData);$/;" m struct:PyExpat_CAPI +SetUsingInstanceFromIterable Lib/test/test_collections.py /^ class SetUsingInstanceFromIterable(MutableSet):$/;" c function:TestCollectionABCs.test_Set_from_iterable +SetVar Modules/_tkinter.c /^SetVar(TkappObject *self, PyObject *args, int flags)$/;" f file: +Set_fields Python/Python-ast.c /^static const char * const Set_fields[]={$/;" v file: +Set_kind Include/internal/pycore_ast.h /^ Lambda_kind=5, IfExp_kind=6, Dict_kind=7, Set_kind=8,$/;" e enum:_expr_kind +Set_type Include/internal/pycore_ast_state.h /^ PyObject *Set_type;$/;" m struct:ast_state +Setting__package__ Lib/test/test_importlib/import_/test___package__.py /^class Setting__package__:$/;" c +Setting__package__PEP451 Lib/test/test_importlib/import_/test___package__.py /^class Setting__package__PEP451(Setting__package__, unittest.TestCase):$/;" c +SetupTest Lib/idlelib/idle_test/test_macosx.py /^class SetupTest(unittest.TestCase):$/;" c +Shade Lib/test/test_enum.py /^ class Shade(Enum):$/;" c function:TestSpecial.test_extending2 +Shade Lib/test/test_enum.py /^ class Shade(Enum):$/;" c function:TestSpecial.test_extending3 +Shape Lib/turtle.py /^class Shape(object):$/;" c +ShareableList Lib/multiprocessing/managers.py /^ def ShareableList(self, sequence):$/;" m class:SyncManager.SharedMemoryManager +ShareableList Lib/multiprocessing/shared_memory.py /^class ShareableList:$/;" c +ShareableList Lib/test/test_genericalias.py /^ ShareableList = None$/;" v +ShareableTypeTests Lib/test/test__xxsubinterpreters.py /^class ShareableTypeTests(unittest.TestCase):$/;" c +SharedKeyTests Lib/test/test_descr.py /^class SharedKeyTests(unittest.TestCase):$/;" c +SharedMemory Lib/multiprocessing/managers.py /^ def SharedMemory(self, size):$/;" m class:SyncManager.SharedMemoryManager +SharedMemory Lib/multiprocessing/shared_memory.py /^class SharedMemory:$/;" c +SharedMemoryManager Lib/multiprocessing/managers.py /^ class SharedMemoryManager(BaseManager):$/;" c class:SyncManager +SharedMemoryServer Lib/multiprocessing/managers.py /^ class SharedMemoryServer(Server):$/;" c class:SyncManager +ShedPage Lib/idlelib/configdialog.py /^class ShedPage(Frame):$/;" c +ShedPageTest Lib/idlelib/idle_test/test_configdialog.py /^class ShedPageTest(unittest.TestCase):$/;" c +Shelf Lib/shelve.py /^class Shelf(collections.abc.MutableMapping):$/;" c +Shelf Lib/turtledemo/sorting_animate.py /^class Shelf(list):$/;" c +Shell Lib/tkinter/tix.py /^class Shell(TixWidget):$/;" c +ShellSidebar Lib/idlelib/sidebar.py /^class ShellSidebar(BaseSideBar):$/;" c +ShellSidebarTest Lib/idlelib/idle_test/test_sidebar.py /^class ShellSidebarTest(unittest.TestCase):$/;" c +ShellWarnTest Lib/idlelib/idle_test/test_warning.py /^class ShellWarnTest(unittest.TestCase):$/;" c +ShlexTest Lib/test/test_shlex.py /^class ShlexTest(unittest.TestCase):$/;" c +ShortTest Lib/test/test_array.py /^class ShortTest(SignedNumberTest, unittest.TestCase):$/;" c +Shortcut Lib/msilib/schema.py /^Shortcut = Table('Shortcut')$/;" v +ShortenTestCase Lib/test/test_textwrap.py /^class ShortenTestCase(BaseTestCase):$/;" c +ShowPage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void ShowPage(DWORD newPageId) {$/;" f class:PythonBootstrapperApplication file: +ShowStopper Lib/test/test_asyncio/test_base_events.py /^ class ShowStopper(SystemExit):$/;" c function:BaseEventLoopTests.test_run_until_complete_loop_orphan_future_close_loop +ShutdownTest Lib/test/test_builtin.py /^class ShutdownTest(unittest.TestCase):$/;" c +ShutdownTest Lib/test/test_logging.py /^class ShutdownTest(BaseTest):$/;" c +SideEffectLT Lib/test/test_heapq.py /^class SideEffectLT:$/;" c +Sig Lib/test/test_argparse.py /^class Sig(object):$/;" c +SiginterruptTest Lib/test/test_signal.py /^class SiginterruptTest(unittest.TestCase):$/;" c +Sign_bit Python/dtoa.c 256;" d file: +SignalAndYieldFromTest Lib/test/test_generators.py /^class SignalAndYieldFromTest(unittest.TestCase):$/;" c +SignalEINTRTest Lib/test/_test_eintr.py /^class SignalEINTRTest(EINTRBaseTest):$/;" c +SignalTuple Modules/_decimal/_decimal.c /^static PyObject *SignalTuple;$/;" v file: +Signals Lib/test/test_decimal.py /^Signals = {$/;" v +SignalsTest Lib/test/test_io.py /^class SignalsTest(unittest.TestCase):$/;" c +Signature Lib/inspect.py /^class Signature:$/;" c +Signature Lib/msilib/schema.py /^Signature = Table('Signature')$/;" v +Signature Tools/c-analyzer/c_parser/info.py /^class Signature(namedtuple('Signature', 'params returntype inline isforward')):$/;" c +SignatureTest Lib/test/test_decimal.py /^class SignatureTest(unittest.TestCase):$/;" c +SignedNumberTest Lib/test/test_array.py /^class SignedNumberTest(IntegerNumberTest):$/;" c +Signed_TestCase Lib/test/test_capi/test_getargs.py /^class Signed_TestCase(unittest.TestCase):$/;" c +SigningCertificate PCbuild/prepare_ssl.bat /^if "%~1"=="--certificate" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts$/;" v +SigningCertificate PCbuild/prepare_ssl.bat /^if "%~1"=="-c" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts$/;" v +SigningCertificate PCbuild/prepare_tcltk.bat /^if "%~1"=="--certificate" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts$/;" v +SigningCertificate PCbuild/prepare_tcltk.bat /^if "%~1"=="-c" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts$/;" v +SilentUnixWSGIServer Lib/test/test_asyncio/utils.py /^ class SilentUnixWSGIServer(UnixWSGIServer):$/;" c function:_run_test_server +SilentWSGIRequestHandler Lib/test/test_asyncio/utils.py /^class SilentWSGIRequestHandler(WSGIRequestHandler):$/;" c +SilentWSGIServer Lib/test/test_asyncio/utils.py /^class SilentWSGIServer(WSGIServer):$/;" c +Sillier Lib/test/test_enum.py /^ class Sillier(IntEnum):$/;" c function:TestUnique.test_unique_with_name +Sillier Lib/test/test_enum.py /^ class Sillier(IntEnum):$/;" c function:TestVerify.test_unique_with_name +Silly Lib/test/test_enum.py /^ class Silly(Enum):$/;" c function:TestUnique.test_unique_with_name +Silly Lib/test/test_enum.py /^ class Silly(Enum):$/;" c function:TestVerify.test_unique_with_name +SillyInt Lib/test/test_enum.py /^ class SillyInt(HexInt):$/;" c function:TestSpecial.test_inherited_data_type +SimSMTPAUTHInitialResponseChannel Lib/test/test_smtplib.py /^class SimSMTPAUTHInitialResponseChannel(SimSMTPChannel):$/;" c +SimSMTPAUTHInitialResponseServer Lib/test/test_smtplib.py /^class SimSMTPAUTHInitialResponseServer(SimSMTPServer):$/;" c +SimSMTPChannel Lib/test/test_smtplib.py /^class SimSMTPChannel(smtpd.SMTPChannel):$/;" c +SimSMTPServer Lib/test/test_smtplib.py /^class SimSMTPServer(smtpd.SMTPServer):$/;" c +SimSMTPUTF8Server Lib/test/test_smtplib.py /^class SimSMTPUTF8Server(SimSMTPServer):$/;" c +Simple Lib/test/test_builtin.py /^ class Simple(object): pass$/;" c function:BuiltinTest.test_format.classes_new +Simple Lib/test/test_enum.py /^ class Simple(IntFlag, boundary=KEEP):$/;" c function:OldTestIntFlag.test_boundary +Simple Lib/test/test_finalization.py /^class Simple(SimpleBase):$/;" c +SimpleBackgroundTests Lib/test/test_ssl.py /^class SimpleBackgroundTests(unittest.TestCase):$/;" c +SimpleBase Lib/test/test_finalization.py /^class SimpleBase(NonGCSimpleBase):$/;" c +SimpleChained Lib/test/test_finalization.py /^class SimpleChained(ChainedBase, Simple):$/;" c +SimpleColor Lib/test/test_enum.py /^ class SimpleColor:$/;" c function:TestStdLib.test_test_simple_enum +SimpleCookie Lib/http/cookies.py /^class SimpleCookie(BaseCookie):$/;" c +SimpleDialog Lib/tkinter/simpledialog.py /^class SimpleDialog:$/;" c +SimpleExtendsException Objects/exceptions.c 497;" d file: +SimpleFinalizationTest Lib/test/test_finalization.py /^class SimpleFinalizationTest(TestBase, unittest.TestCase):$/;" c +SimpleFix Lib/test/test_lib2to3/test_refactor.py /^ class SimpleFix(fixer_base.BaseFix):$/;" c function:TestRefactoringTool.test_get_headnode_dict +SimpleHTTPRequestHandler Lib/http/server.py /^class SimpleHTTPRequestHandler(BaseHTTPRequestHandler):$/;" c +SimpleHTTPRequestHandlerTestCase Lib/test/test_httpservers.py /^class SimpleHTTPRequestHandlerTestCase(unittest.TestCase):$/;" c +SimpleHTTPServerTestCase Lib/test/test_httpservers.py /^class SimpleHTTPServerTestCase(BaseTestCase):$/;" c +SimpleHandler Lib/wsgiref/handlers.py /^class SimpleHandler(BaseHandler):$/;" c +SimpleIMAPHandler Lib/test/test_imaplib.py /^class SimpleIMAPHandler(socketserver.StreamRequestHandler):$/;" c +SimpleLRUCache Lib/test/test_ordered_dict.py /^class SimpleLRUCache:$/;" c +SimpleLRUCacheTests Lib/test/test_ordered_dict.py /^class SimpleLRUCacheTests:$/;" c +SimpleLoader Lib/test/test_importlib/resources/test_custom.py /^class SimpleLoader:$/;" c +SimpleMapping Lib/test/test_typing.py /^class SimpleMapping(Generic[XK, XV]):$/;" c +SimpleNameSpace Lib/test/test_dataclasses.py /^ class SimpleNameSpace:$/;" c function:TestCase.test_field_metadata_custom_mapping +SimpleNamedTuple Lib/test/test_typing.py /^ class SimpleNamedTuple(NamedTuple):$/;" c function:NamedTupleTests.test_orig_bases +SimpleNamespace Lib/types.py /^SimpleNamespace = type(sys.implementation)$/;" v +SimpleNamespaceTests Lib/test/test_types.py /^class SimpleNamespaceTests(unittest.TestCase):$/;" c +SimpleNewObj Lib/test/pickletester.py /^class SimpleNewObj(int):$/;" c +SimplePath Lib/importlib/metadata/_meta.py /^class SimplePath(Protocol[_T]):$/;" c +SimplePipeTests Lib/test/test_pipes.py /^class SimplePipeTests(unittest.TestCase):$/;" c +SimpleQueue Lib/multiprocessing/context.py /^ def SimpleQueue(self):$/;" m class:BaseContext +SimpleQueue Lib/multiprocessing/queues.py /^class SimpleQueue(object):$/;" c +SimpleQueue Lib/queue.py /^ SimpleQueue = None$/;" v +SimpleQueue Lib/queue.py /^ SimpleQueue = _PySimpleQueue$/;" v +SimpleQueueType Modules/_queuemodule.c /^ PyTypeObject *SimpleQueueType;$/;" m struct:__anon291 file: +SimpleReader Lib/importlib/resources/simple.py /^class SimpleReader(abc.ABC):$/;" c +SimpleResurrector Lib/test/test_finalization.py /^class SimpleResurrector(SimpleBase):$/;" c +SimpleSelfCycle Lib/test/test_finalization.py /^class SimpleSelfCycle(SelfCycleBase, Simple):$/;" c +SimpleServerEncodingTestCase Lib/test/test_xmlrpc.py /^class SimpleServerEncodingTestCase(BaseServerTestCase):$/;" c +SimpleServerTestCase Lib/test/test_xmlrpc.py /^class SimpleServerTestCase(BaseServerTestCase):$/;" c +SimpleTest Lib/test/test_importlib/source/test_file_loader.py /^class SimpleTest(abc.LoaderTests):$/;" c +SimpleTestCase Lib/test/test_ctypes/test_keeprefs.py /^class SimpleTestCase(unittest.TestCase):$/;" c +SimpleTypesTestCase Lib/test/test_ctypes/test_parameters.py /^class SimpleTypesTestCase(unittest.TestCase):$/;" c +SimpleUserDict Lib/test/mapping_tests.py /^ class SimpleUserDict:$/;" c function:BasicTestMappingProtocol.test_update +SimpleUserDict Lib/test/mapping_tests.py /^ class SimpleUserDict:$/;" c function:TestMappingProtocol.test_update +SimpleUserDict Lib/test/test_dict.py /^ class SimpleUserDict:$/;" c function:DictTest.test_update +SimpleXMLRPCDispatcher Lib/xmlrpc/server.py /^class SimpleXMLRPCDispatcher:$/;" c +SimpleXMLRPCDispatcherTestCase Lib/test/test_xmlrpc.py /^class SimpleXMLRPCDispatcherTestCase(unittest.TestCase):$/;" c +SimpleXMLRPCRequestHandler Lib/xmlrpc/server.py /^class SimpleXMLRPCRequestHandler(BaseHTTPRequestHandler):$/;" c +SimpleXMLRPCServer Lib/xmlrpc/server.py /^ SimpleXMLRPCDispatcher):$/;" c +Simple_Type Modules/_ctypes/_ctypes.c /^static PyTypeObject Simple_Type = {$/;" v file: +Simple_Type Modules/_ctypes/_ctypes.c /^static PyTypeObject Simple_Type;$/;" v file: +Simple_as_number Modules/_ctypes/_ctypes.c /^static PyNumberMethods Simple_as_number = {$/;" v file: +Simple_bool Modules/_ctypes/_ctypes.c /^static int Simple_bool(CDataObject *self)$/;" f file: +Simple_from_outparm Modules/_ctypes/_ctypes.c /^Simple_from_outparm(PyObject *self, PyObject *args)$/;" f file: +Simple_get_value Modules/_ctypes/_ctypes.c /^Simple_get_value(CDataObject *self, void *Py_UNUSED(ignored))$/;" f file: +Simple_getsets Modules/_ctypes/_ctypes.c /^static PyGetSetDef Simple_getsets[] = {$/;" v file: +Simple_init Modules/_ctypes/_ctypes.c /^Simple_init(CDataObject *self, PyObject *args, PyObject *kw)$/;" f file: +Simple_methods Modules/_ctypes/_ctypes.c /^static PyMethodDef Simple_methods[] = {$/;" v file: +Simple_repr Modules/_ctypes/_ctypes.c /^Simple_repr(CDataObject *self)$/;" f file: +Simple_set_value Modules/_ctypes/_ctypes.c /^Simple_set_value(CDataObject *self, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +SimulateProfileTest Lib/test/test_monitoring.py /^class SimulateProfileTest(MonitoringEventsBase, unittest.TestCase):$/;" c +Single Lib/lib2to3/pgen2/tokenize.py /^Single = r"[^'\\\\]*(?:\\\\.[^'\\\\]*)*'"$/;" v +Single Lib/test/test_enum.py /^ class Single(Enum):$/;" c function:MiscTestCase.test_doc_1 +Single Lib/tokenize.py /^Single = r"[^'\\\\]*(?:\\\\.[^'\\\\]*)*'"$/;" v +Single3 Lib/lib2to3/pgen2/tokenize.py /^Single3 = r"[^'\\\\]*(?:(?:\\\\.|'(?!''))[^'\\\\]*)*'''"$/;" v +Single3 Lib/tokenize.py /^Single3 = r"[^'\\\\]*(?:(?:\\\\.|'(?!''))[^'\\\\]*)*'''"$/;" v +SingleAddressHeader Lib/email/headerregistry.py /^class SingleAddressHeader(AddressHeader):$/;" c +SingleConnectionTestServerThread Lib/test/test_ssl.py /^ class SingleConnectionTestServerThread(threading.Thread):$/;" c class:TestPreHandshakeClose +SingleEmptyLine Lib/test/test_linecache.py /^class SingleEmptyLine(GetLineTestsGoodData, unittest.TestCase):$/;" c +SingleNamespacePackage Lib/test/test_importlib/test_namespace_pkgs.py /^class SingleNamespacePackage(NamespacePackageTest):$/;" c +SingleNestedZipNamespacePackage Lib/test/test_importlib/test_namespace_pkgs.py /^class SingleNestedZipNamespacePackage(NamespacePackageTest):$/;" c +SinglePhaseExtensionModuleTests Lib/test/test_importlib/extension/test_loader.py /^class SinglePhaseExtensionModuleTests(abc.LoaderTests):$/;" c +SingleZipNamespacePackage Lib/test/test_importlib/test_namespace_pkgs.py /^class SingleZipNamespacePackage(NamespacePackageTest):$/;" c +SinglephaseInitTests Lib/test/test_import/__init__.py /^class SinglephaseInitTests(unittest.TestCase):$/;" c +SiteDir Lib/test/test_importlib/fixtures.py /^class SiteDir(Fixtures):$/;" c +SiteDir Lib/test/test_importlib/resources/test_files.py /^class SiteDir:$/;" c +SitemapTest Lib/test/test_robotparser.py /^class SitemapTest(BaseRobotTest, unittest.TestCase):$/;" c +Size1 Modules/_ctypes/_ctypes_test.c /^} Size1;$/;" t typeref:struct:__anon519 file: +Size10 Modules/_ctypes/_ctypes_test.c /^} Size10;$/;" t typeref:struct:__anon528 file: +Size2 Modules/_ctypes/_ctypes_test.c /^} Size2;$/;" t typeref:struct:__anon520 file: +Size3 Modules/_ctypes/_ctypes_test.c /^} Size3;$/;" t typeref:struct:__anon521 file: +Size4 Modules/_ctypes/_ctypes_test.c /^} Size4;$/;" t typeref:struct:__anon522 file: +Size5 Modules/_ctypes/_ctypes_test.c /^} Size5;$/;" t typeref:struct:__anon523 file: +Size6 Modules/_ctypes/_ctypes_test.c /^} Size6;$/;" t typeref:struct:__anon524 file: +Size7 Modules/_ctypes/_ctypes_test.c /^} Size7;$/;" t typeref:struct:__anon525 file: +Size8 Modules/_ctypes/_ctypes_test.c /^} Size8;$/;" t typeref:struct:__anon526 file: +Size9 Modules/_ctypes/_ctypes_test.c /^} Size9;$/;" t typeref:struct:__anon527 file: +SizeBlock Lib/test/test_collections.py /^ class SizeBlock:$/;" c function:TestOneTrickPonyABCs.test_Collection +Sized Lib/_collections_abc.py /^class Sized(metaclass=ABCMeta):$/;" c +Sized Lib/typing.py /^Sized = _alias(collections.abc.Sized, 0) # Not generic.$/;" v +SizedNormalDist Lib/test/test_statistics.py /^ class SizedNormalDist(NormalDist):$/;" c function:TestNormalDist.test_equality +Sizegrip Lib/tkinter/ttk.py /^class Sizegrip(Widget):$/;" c +SizegripTest Lib/test/test_ttk/test_widgets.py /^class SizegripTest(AbstractWidgetTest, unittest.TestCase):$/;" c +SizeofTest Lib/test/test_io.py /^class SizeofTest:$/;" c +SizeofTest Lib/test/test_itertools.py /^class SizeofTest(unittest.TestCase):$/;" c +SizeofTest Lib/test/test_sys.py /^class SizeofTest(unittest.TestCase):$/;" c +SizeofTest Lib/test/test_xml_etree_c.py /^class SizeofTest(unittest.TestCase):$/;" c +SizeofTests Lib/test/test_pickle.py /^ class SizeofTests(unittest.TestCase):$/;" c +SizesTestCase Lib/test/test_ctypes/test_sizes.py /^class SizesTestCase(unittest.TestCase):$/;" c +SkillLevel Lib/test/test_enum.py /^ class SkillLevel(str, Enum):$/;" c function:TestSpecial.test_string_enum +Skip Lib/test/test_enum.py /^ class Skip(IntFlag):$/;" c class:OldTestIntFlag +SkipDocTestCase Lib/doctest.py /^class SkipDocTestCase(DocTestCase):$/;" c +SkipFlag Lib/test/test_enum.py /^ class SkipFlag(enum.Flag):$/;" c function:OldTestFlag.test_boundary +SkipHandler Modules/_decimal/tests/deccheck.py /^class SkipHandler:$/;" c +SkipIntFlag Lib/test/test_enum.py /^ class SkipIntFlag(enum.IntFlag):$/;" c function:OldTestFlag.test_boundary +SkipLineEventsTraceTestCase Lib/test/test_sys_settrace.py /^class SkipLineEventsTraceTestCase(TraceTestCase):$/;" c +SkipTest Lib/unittest/case.py /^class SkipTest(Exception):$/;" c +SkipTestEnvironment Lib/test/libregrtest/save_env.py /^class SkipTestEnvironment(Exception):$/;" c +Skip_G Lib/test/test_traceback.py /^ class Skip_G(traceback.StackSummary):$/;" c function:TestStack.test_dropping_frames +SkipitemTest Lib/test/test_capi/test_getargs.py /^class SkipitemTest(unittest.TestCase):$/;" c +Skipped Tools/c-analyzer/c_analyzer/analyze.py /^class Skipped(TypeDeclaration):$/;" c +SkippedEntity Modules/pyexpat.c /^ SkippedEntity,$/;" e enum:HandlerTypes file: +SkippedEntityHandler Lib/test/test_pyexpat.py /^ def SkippedEntityHandler(self, *args):$/;" m class:ParseTest.Outputter +Skipper Lib/xml/dom/expatbuilder.py /^class Skipper(FilterCrutch):$/;" c +SlashWithDefault Parser/pegen.h /^} SlashWithDefault;$/;" t typeref:struct:__anon662 +Sleep Modules/_tkinter.c /^Sleep(int milli)$/;" f file: +SleepTests Lib/test/test_asyncio/test_tasks.py /^class SleepTests(test_utils.TestCase):$/;" c +Slice Include/internal/pycore_ast.h /^ } Slice;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon104 +SliceTest Lib/test/test_slice.py /^class SliceTest(unittest.TestCase):$/;" c +Slice_fields Python/Python-ast.c /^static const char * const Slice_fields[]={$/;" v file: +Slice_kind Include/internal/pycore_ast.h /^ Name_kind=24, List_kind=25, Tuple_kind=26, Slice_kind=27};$/;" e enum:_expr_kind +Slice_type Include/internal/pycore_ast_state.h /^ PyObject *Slice_type;$/;" m struct:ast_state +SlicesTestCase Lib/test/test_ctypes/test_slicing.py /^class SlicesTestCase(unittest.TestCase):$/;" c +Slot Tools/c-analyzer/c_common/clsutil.py /^class Slot:$/;" c +SlotList Lib/test/pickletester.py /^class SlotList(MyList):$/;" c +SlotUser Lib/test/test_inspect.py /^class SlotUser:$/;" c +Slotted Lib/test/test_inspect.py /^ class Slotted:$/;" c function:TestIsDataDescriptor.test_slot +SlottedNaiveException Lib/test/test_exceptions.py /^class SlottedNaiveException(Exception):$/;" c +SlowFlushRawIO Lib/test/test_io.py /^class SlowFlushRawIO(MockRawIO):$/;" c +SlowTask Lib/test/test_asyncio/test_waitfor.py /^class SlowTask:$/;" c +SmallBufferedFileObjectClassTestCase Lib/test/test_socket.py /^class SmallBufferedFileObjectClassTestCase(FileObjectClassTestCase):$/;" c +SmallCatamaran Lib/test/test_descr.py /^ class SmallCatamaran(SmallMultihull): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +SmallFactorials Modules/mathmodule.c /^static const unsigned long SmallFactorials[] = {$/;" v file: +SmallMultihull Lib/test/test_descr.py /^ class SmallMultihull(DayBoat): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +SmallPtyTests Lib/test/test_pty.py /^class SmallPtyTests(unittest.TestCase):$/;" c +SmtpSSLTest Lib/test/test_smtpnet.py /^class SmtpSSLTest(unittest.TestCase):$/;" c +SmtpTest Lib/test/test_smtpnet.py /^class SmtpTest(unittest.TestCase):$/;" c +Snapshot Lib/tracemalloc.py /^class Snapshot:$/;" c +SndHeaders Lib/sndhdr.py /^SndHeaders = namedtuple('SndHeaders',$/;" v +Sneaky Lib/test/test_generators.py /^ class Sneaky:$/;" c function:GeneratorTest.test_handle_frame_object_in_creation +Sneaky Lib/test/test_opcache.py /^ class Sneaky:$/;" c function:TestLoadAttrCache.test_load_borrowed_slot_should_not_crash +Sneaky Lib/test/test_opcache.py /^ class Sneaky:$/;" c function:TestLoadAttrCache.test_load_shadowing_slot_should_raise_type_error +Sneaky Lib/test/test_opcache.py /^ class Sneaky:$/;" c function:TestLoadAttrCache.test_store_borrowed_slot_should_not_crash +Sneaky Lib/test/test_opcache.py /^ class Sneaky:$/;" c function:TestLoadAttrCache.test_store_shadowing_slot_should_raise_type_error +SneakyDel Lib/test/test_frame.py /^ class SneakyDel:$/;" c function:TestIncompleteFrameAreInvisible.test_sneaky_frame_object_teardown +SneakyThread Lib/test/test_frame.py /^ class SneakyThread(threading.Thread):$/;" c function:TestIncompleteFrameAreInvisible.test_sneaky_frame_object_teardown +Sniffer Lib/csv.py /^class Sniffer:$/;" c +SockSendfileMixin Lib/test/test_asyncio/test_sendfile.py /^class SockSendfileMixin(SendfileBase):$/;" c +Sock_Type Modules/_ssl.h /^ PyTypeObject *Sock_Type;$/;" m struct:__anon485 +Sock_Type Modules/socketmodule.h /^ PyTypeObject *Sock_Type;$/;" m struct:__anon399 +Socket Modules/_ssl.c /^ PyObject *Socket; \/* weakref to socket on which we're layered *\/$/;" m struct:__anon581 file: +SocketCANTest Lib/test/test_socket.py /^class SocketCANTest(unittest.TestCase):$/;" c +SocketClient Lib/multiprocessing/connection.py /^def SocketClient(address):$/;" f +SocketConnectedTest Lib/test/test_socket.py /^class SocketConnectedTest(ThreadedTCPSocketTest):$/;" c +SocketEINTRTest Lib/test/_test_eintr.py /^class SocketEINTRTest(EINTRBaseTest):$/;" c +SocketHandler Lib/logging/handlers.py /^class SocketHandler(logging.Handler):$/;" c +SocketHandlerTest Lib/test/test_logging.py /^class SocketHandlerTest(BaseTest):$/;" c +SocketIO Lib/idlelib/rpc.py /^class SocketIO:$/;" c +SocketIO Lib/socket.py /^class SocketIO(io.RawIOBase):$/;" c +SocketListener Lib/multiprocessing/connection.py /^class SocketListener(object):$/;" c +SocketListeningTestMixin Lib/test/test_socket.py /^class SocketListeningTestMixin(SocketTestBase):$/;" c +SocketPairTest Lib/test/test_socket.py /^class SocketPairTest(unittest.TestCase, ThreadableTest):$/;" c +SocketRDSTest Lib/test/test_socket.py /^class SocketRDSTest(unittest.TestCase):$/;" c +SocketServerTest Lib/test/test_socketserver.py /^class SocketServerTest(unittest.TestCase):$/;" c +SocketStub Lib/test/test_telnetlib.py /^class SocketStub(object):$/;" c +SocketTCPTest Lib/test/test_socket.py /^class SocketTCPTest(unittest.TestCase):$/;" c +SocketTestBase Lib/test/test_socket.py /^class SocketTestBase(unittest.TestCase):$/;" c +SocketThread Lib/test/test_asyncio/functional.py /^class SocketThread(threading.Thread):$/;" c +SocketThread Lib/test/test_asyncio/test_ssl.py /^class SocketThread(threading.Thread):$/;" c +SocketUDPLITETest Lib/test/test_socket.py /^class SocketUDPLITETest(SocketUDPTest):$/;" c +SocketUDPTest Lib/test/test_socket.py /^class SocketUDPTest(unittest.TestCase):$/;" c +SocketWriterTest Lib/test/test_socketserver.py /^class SocketWriterTest(unittest.TestCase):$/;" c +SocketlessRequestHandler Lib/test/test_httpservers.py /^class SocketlessRequestHandler(SimpleHTTPRequestHandler):$/;" c +Some Lib/test/test_dataclasses.py /^ class Some: pass$/;" c function:TestCase.test_dataclass_params_repr +Some Lib/test/test_dataclasses.py /^ class Some: pass$/;" c function:TestCase.test_dataclass_params_signature +Some Lib/test/test_descr.py /^ class Some:$/;" c function:.test_repr_with_module_str_subclass +Some Lib/test/test_enum.py /^ class Some(Enum):$/;" c function:TestSpecial.test_value_backup_assign +Some Lib/test/test_typing.py /^ class Some:$/;" c function:ForwardRefTests.test_no_type_check_class_and_static_methods +SomeClass Lib/test/datetimetester.py /^ class SomeClass:$/;" c function:TestDate.test_mixed_compare +SomeClass Lib/test/test_unittest/testmock/support.py /^class SomeClass(object):$/;" c +SomeClass Lib/test/test_unittest/testmock/testhelpers.py /^class SomeClass(object):$/;" c +SomeEnum Lib/test/test_enum.py /^ class SomeEnum(Enum):$/;" c function:TestSpecial.test_multiple_mixin +SomeException Lib/test/test_cmath.py /^ class SomeException(Exception):$/;" c function:CMathTests.test_user_object +SomeInts Lib/test/test_ctypes/test_structures.py /^ class SomeInts(Structure):$/;" c function:StructureTestCase.test_intarray_fields +SomeTest Lib/test/test_unittest/testmock/testpatch.py /^ class SomeTest(object):$/;" c function:PatchTest.test_new_callable_class_decorating +SomeTest Lib/test/test_unittest/testmock/testpatch.py /^ class SomeTest(object):$/;" c function:PatchTest.test_patch_multiple_decorating_class +SomeTuple Lib/test/test_enum.py /^ class SomeTuple(tuple, Enum):$/;" c function:TestSpecial.test_tuple_subclass +SomeTypeRemover Lib/test/test_ast.py /^ class SomeTypeRemover(ast.NodeTransformer):$/;" c function:NodeTransformerTests.test_node_remove_single +Something Lib/test/test_inspect.py /^ class Something(Base):$/;" c function:TestGetattrStatic.test_class_as_property +Something Lib/test/test_inspect.py /^ class Something(Base, metaclass=Meta):$/;" c function:TestGetattrStatic.test_mro_as_property +Something Lib/test/test_positional_only_arg.py /^ class Something:$/;" c function:PositionalOnlyTestCase.test_annotations_in_closures +Something Lib/test/test_typing.py /^ class Something: pass$/;" c function:AnyTests.test_can_subclass +Something Lib/test/test_unittest/testmock/testmock.py /^ class Something(object):$/;" c function:MockTest.test_from_spec +Something Lib/test/test_unittest/testmock/testmock.py /^ class Something:$/;" c function:MockTest.test_assert_has_calls_nested_spec +Something Lib/test/test_unittest/testmock/testmock.py /^ class Something:$/;" c function:MockTest.test_bool_not_called_when_passing_spec_arg +Something Lib/test/test_unittest/testmock/testmock.py /^class Something(object):$/;" c +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_get_only_proxy +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_get_set_delete_proxy +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_multiple_patchobject +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_patch_class_decorator +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_patchobject_class_decorator +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_patchobject_twice +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_patchobject_with_none +Something Lib/test/test_unittest/testmock/testpatch.py /^ class Something(object):$/;" c function:PatchTest.test_single_patchobject +SomethingElse Lib/test/test_unittest/testmock/testpatch.py /^ class SomethingElse:$/;" c function:PatchTest.test_get_only_proxy +SomethingElse Lib/test/test_unittest/testmock/testpatch.py /^ class SomethingElse:$/;" c function:PatchTest.test_get_set_delete_proxy +SortKey Lib/pstats.py /^class SortKey:$/;" c +SortKiller Lib/test/test_sort.py /^ class SortKiller(object):$/;" c function:TestDecorateSortUndecorate.test_key_with_mutating_del +SortKiller Lib/test/test_sort.py /^ class SortKiller(object):$/;" c function:TestDecorateSortUndecorate.test_key_with_mutating_del_and_exception +SortableMeta Lib/test/test_functools.py /^ class SortableMeta(type):$/;" c function:TestTotalOrdering.test_total_ordering_for_metaclasses_issue_44605 +SortedDict Lib/test/test_configparser.py /^class SortedDict(collections.UserDict):$/;" c +SortedTestCase Lib/test/test_configparser.py /^class SortedTestCase(RawConfigParserTestCase):$/;" c +SourceAddressTest Lib/test/test_httplib.py /^class SourceAddressTest(TestCase):$/;" c +SourceDateEpochTestMeta Lib/test/test_importlib/source/test_file_loader.py /^ type(Source_SimpleTest)):$/;" c +SourceDateEpochTestMeta Lib/test/test_py_compile.py /^class SourceDateEpochTestMeta(type(unittest.TestCase)):$/;" c +SourceDateEpoch_SimpleTest Lib/test/test_importlib/source/test_file_loader.py /^ source_date_epoch=True):$/;" c +SourceFileLoader Lib/importlib/_bootstrap_external.py /^class SourceFileLoader(FileLoader, SourceLoader):$/;" c +SourceInfo Tools/c-analyzer/c_parser/parser/_info.py /^class SourceInfo:$/;" c +SourceLine Tools/c-analyzer/c_parser/info.py /^class SourceLine(namedtuple('Line', 'file kind data conditions')):$/;" c +SourceLoader Lib/importlib/_bootstrap_external.py /^class SourceLoader(_LoaderBasics):$/;" c +SourceLoader Lib/importlib/abc.py /^class SourceLoader(_bootstrap_external.SourceLoader, ResourceLoader, ExecutionLoader):$/;" c +SourceLoader Lib/test/test_importlib/test_abc.py /^class SourceLoader(InheritanceTests):$/;" c +SourceLoader Lib/test/test_importlib/test_abc.py /^class SourceLoader(SourceOnlyLoader):$/;" c +SourceLoaderBadBytecodeTest Lib/test/test_importlib/source/test_file_loader.py /^class SourceLoaderBadBytecodeTest:$/;" c +SourceLoaderBadBytecodeTestPEP302 Lib/test/test_importlib/source/test_file_loader.py /^ SourceLoaderBadBytecodeTest, BadBytecodeTestPEP302):$/;" c +SourceLoaderBadBytecodeTestPEP451 Lib/test/test_importlib/source/test_file_loader.py /^ SourceLoaderBadBytecodeTest, BadBytecodeTestPEP451):$/;" c +SourceLoaderBytecodeTests Lib/test/test_importlib/test_abc.py /^class SourceLoaderBytecodeTests(SourceLoaderTestHarness):$/;" c +SourceLoaderGetSourceTests Lib/test/test_importlib/test_abc.py /^class SourceLoaderGetSourceTests:$/;" c +SourceLoaderTestHarness Lib/test/test_importlib/test_abc.py /^class SourceLoaderTestHarness:$/;" c +SourceOffsetVisitor Lib/test/test_compile.py /^ class SourceOffsetVisitor(ast.NodeVisitor):$/;" c function:TestSourcePositions.check_positions_against_ast +SourceOnlyLoader Lib/test/test_importlib/test_abc.py /^class SourceOnlyLoader:$/;" c +SourceOnlyLoaderTests Lib/test/test_importlib/test_abc.py /^class SourceOnlyLoaderTests(SourceLoaderTestHarness):$/;" c +SourcelessFileLoader Lib/importlib/_bootstrap_external.py /^class SourcelessFileLoader(FileLoader, _LoaderBasics):$/;" c +SourcelessLoaderBadBytecodeTest Lib/test/test_importlib/source/test_file_loader.py /^class SourcelessLoaderBadBytecodeTest:$/;" c +SourcelessLoaderBadBytecodeTestPEP302 Lib/test/test_importlib/source/test_file_loader.py /^ BadBytecodeTestPEP302):$/;" c +SourcelessLoaderBadBytecodeTestPEP451 Lib/test/test_importlib/source/test_file_loader.py /^ BadBytecodeTestPEP451):$/;" c +Space Lib/test/test_enum.py /^ class Space(Flag, boundary=EJECT):$/;" c function:OldTestFlag.test_boundary +Space Lib/test/test_enum.py /^ class Space(IntFlag, boundary=EJECT):$/;" c function:OldTestIntFlag.test_boundary +Spam Lib/test/test_bool.py /^ class Spam(int):$/;" c function:BoolTest.test_convert_to_bool +Spam Lib/test/test_grammar.py /^ class Spam:$/;" c function:GrammarTests.test_funcdef +Spam Lib/test/test_inspect.py /^ class Spam:$/;" c function:TestSignatureObject.test_signature_on_callable_objects +Spam Lib/test/test_inspect.py /^ class Spam:$/;" c function:TestSignatureObject.test_signature_on_mangled_parameters +Spam Lib/test/test_inspect.py /^ class Spam:$/;" c function:TestSignatureObject.test_signature_on_partialmethod +Spam Lib/test/test_ordered_dict.py /^ class Spam:$/;" c function:OrderedDictTests.test_init_calls +Spam Lib/test/test_richcmp.py /^ class Spam:$/;" c function:MiscTest.test_exception_message +Spam Lib/test/test_types.py /^ class Spam(types.SimpleNamespace):$/;" c function:SimpleNamespaceTests.test_subclass +Spam Lib/test/test_typing.py /^ class Spam(Protocol):$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance +Spam Lib/test/test_typing.py /^ class Spam(Protocol):$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_2 +Spam Lib/test/test_typing.py /^ class Spam(Protocol):$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_3 +Spam Lib/test/test_typing.py /^ class Spam[T](Protocol):$/;" c function:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_pep695 +SpamEnum Lib/test/test_enum.py /^ class SpamEnum(Enum):$/;" c function:TestSpecial.test_enum_of_types +SpamEnum Lib/test/test_enum.py /^ class SpamEnum(Enum):$/;" c function:TestSpecial.test_enum_of_types_with_nonmember +SpamEnumIsInner Lib/test/test_enum.py /^ class SpamEnumIsInner:$/;" c function:TestSpecial.test_enum_of_types_with_nonmember +SpamEnumNotInner Lib/test/test_enum.py /^ class SpamEnumNotInner:$/;" c function:TestSpecial.test_enum_of_types +SpawnCmdLineTest Lib/test/test_multiprocessing_main_handling.py /^class SpawnCmdLineTest(MultiProcessingCmdLineMixin, unittest.TestCase):$/;" c +SpawnContext Lib/multiprocessing/context.py /^ class SpawnContext(BaseContext):$/;" c +SpawnProcess Lib/multiprocessing/context.py /^ class SpawnProcess(process.BaseProcess):$/;" c +SpawnTests Lib/test/test_os.py /^class SpawnTests(unittest.TestCase):$/;" c +SpecAPITests Lib/test/test_importlib/import_/test_api.py /^class SpecAPITests(APITest):$/;" c +SpecLoader Lib/test/test_importlib/test_abc.py /^ class SpecLoader(self.abc.Loader):$/;" c function:LoaderLoadModuleTests.loader +SpecLoaderAdapter Lib/importlib/resources/_adapters.py /^class SpecLoaderAdapter:$/;" c +SpecLoaderAttributeTests Lib/test/test_importlib/import_/test___loader__.py /^class SpecLoaderAttributeTests:$/;" c +SpecLoaderMock Lib/test/test_importlib/import_/test___loader__.py /^class SpecLoaderMock:$/;" c +SpecPath Lib/importlib/resources/_adapters.py /^ class SpecPath(abc.Traversable):$/;" c class:CompatibilityFiles +SpecSignatureTest Lib/test/test_unittest/testmock/testhelpers.py /^class SpecSignatureTest(unittest.TestCase):$/;" c +Spec_Hash_Definitions_Blake2B Modules/_hacl/Hacl_Streaming_Types.h 45;" d +Spec_Hash_Definitions_Blake2S Modules/_hacl/Hacl_Streaming_Types.h 44;" d +Spec_Hash_Definitions_MD5 Modules/_hacl/Hacl_Streaming_Types.h 43;" d +Spec_Hash_Definitions_SHA1 Modules/_hacl/Hacl_Streaming_Types.h 42;" d +Spec_Hash_Definitions_SHA2_224 Modules/_hacl/Hacl_Streaming_Types.h 38;" d +Spec_Hash_Definitions_SHA2_256 Modules/_hacl/Hacl_Streaming_Types.h 39;" d +Spec_Hash_Definitions_SHA2_384 Modules/_hacl/Hacl_Streaming_Types.h 40;" d +Spec_Hash_Definitions_SHA2_512 Modules/_hacl/Hacl_Streaming_Types.h 41;" d +Spec_Hash_Definitions_SHA3_224 Modules/_hacl/Hacl_Streaming_Types.h 47;" d +Spec_Hash_Definitions_SHA3_256 Modules/_hacl/Hacl_Streaming_Types.h 46;" d +Spec_Hash_Definitions_SHA3_384 Modules/_hacl/Hacl_Streaming_Types.h 48;" d +Spec_Hash_Definitions_SHA3_512 Modules/_hacl/Hacl_Streaming_Types.h 49;" d +Spec_Hash_Definitions_Shake128 Modules/_hacl/Hacl_Streaming_Types.h 50;" d +Spec_Hash_Definitions_Shake256 Modules/_hacl/Hacl_Streaming_Types.h 51;" d +Spec_Hash_Definitions_hash_alg Modules/_hacl/Hacl_Streaming_Types.h /^typedef uint8_t Spec_Hash_Definitions_hash_alg;$/;" t +Special Lib/lib2to3/pgen2/tokenize.py /^Special = group(r'\\r?\\n', r':=', r'[:;.,`@]')$/;" v +Special Lib/test/test_scope.py /^ class Special:$/;" c function:ScopeTests.testFreeingCell +Special Lib/tokenize.py /^Special = group(*map(re.escape, sorted(EXACT_TOKEN_TYPES, reverse=True)))$/;" v +SpecialAttrsP Lib/test/test_typing.py /^SpecialAttrsP = typing.ParamSpec('SpecialAttrsP')$/;" v +SpecialAttrsT Lib/test/test_typing.py /^SpecialAttrsT = typing.TypeVar('SpecialAttrsT', int, float, complex)$/;" v +SpecialAttrsTests Lib/test/test_typing.py /^class SpecialAttrsTests(BaseTestCase):$/;" c +SpecialCommandTests Lib/test/test_sqlite3/test_transactions.py /^class SpecialCommandTests(unittest.TestCase):$/;" c +SpecialContexts Lib/test/test_decimal.py /^class SpecialContexts:$/;" c +SpecialDescr Lib/test/test_descr.py /^ class SpecialDescr(object):$/;" c function:.test_special_method_lookup +SpecialFileError Lib/shutil.py /^class SpecialFileError(OSError):$/;" c +SpecialFileError Lib/tarfile.py /^class SpecialFileError(FilterError):$/;" c +SpecialIterable Lib/test/_test_multiprocessing.py /^ class SpecialIterable:$/;" c function:_TestPool.test_map_handle_iterable_exception +SpecializationStats Include/pystats.h /^} SpecializationStats;$/;" t typeref:struct:_specialization_stats +SpecializationStatsTests Lib/test/test__opcode.py /^class SpecializationStatsTests(unittest.TestCase):$/;" c +SpecificException Lib/test/test_pyexpat.py /^ class SpecificException(Exception):$/;" c function:sf1296433Test.test_parse_only_xml_data +Spinbox Lib/tkinter/__init__.py /^class Spinbox(Widget, XView):$/;" c +Spinbox Lib/tkinter/ttk.py /^class Spinbox(Entry):$/;" c +SpinboxTest Lib/test/test_tkinter/test_widgets.py /^class SpinboxTest(EntryTest, unittest.TestCase):$/;" c +SpinboxTest Lib/test/test_ttk/test_widgets.py /^class SpinboxTest(EntryTest, unittest.TestCase):$/;" c +SplitResult Lib/urllib/parse.py /^class SplitResult(_SplitResultBase, _NetlocResultMixinStr):$/;" c +SplitResultBytes Lib/urllib/parse.py /^class SplitResultBytes(_SplitResultBase, _NetlocResultMixinBytes):$/;" c +SpooledTemporaryFile Lib/tempfile.py /^class SpooledTemporaryFile(_io.IOBase):$/;" c +SpreadSheet Lib/test/test_builtin.py /^ class SpreadSheet:$/;" c function:BuiltinTest.test_general_eval +SqliteInteractiveConsole Lib/sqlite3/__main__.py /^class SqliteInteractiveConsole(InteractiveConsole):$/;" c +SqliteOnConflictTests Lib/test/test_sqlite3/test_dbapi.py /^class SqliteOnConflictTests(unittest.TestCase):$/;" c +SqliteTypeTests Lib/test/test_sqlite3/test_types.py /^class SqliteTypeTests(unittest.TestCase):$/;" c +Square150x150Logo PC/layout/support/appxmanifest.py /^ Square150x150Logo="_resources\/idlex150.png",$/;" v +Square150x150Logo PC/layout/support/appxmanifest.py /^ Square150x150Logo="_resources\/pythonwx150.png",$/;" v +Square150x150Logo PC/layout/support/appxmanifest.py /^ Square150x150Logo="_resources\/pythonx150.png",$/;" v +Square44x44Logo PC/layout/support/appxmanifest.py /^ Square44x44Logo="_resources\/idlex44.png",$/;" v +Square44x44Logo PC/layout/support/appxmanifest.py /^ Square44x44Logo="_resources\/pythonwx44.png",$/;" v +Square44x44Logo PC/layout/support/appxmanifest.py /^ Square44x44Logo="_resources\/pythonx44.png",$/;" v +Squares Lib/test/test_builtin.py /^class Squares:$/;" c +Squares Lib/test/test_functools.py /^ class Squares:$/;" c function:TestReduce.test_reduce +Squares Lib/test/test_grammar.py /^ class Squares:$/;" c function:GrammarTests.test_for +Squares Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class Squares:$/;" c function:GrammarTests.testFor +Squares Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class Squares:$/;" c function:GrammarTests.testFor +Squeezer Lib/idlelib/squeezer.py /^class Squeezer:$/;" c +SqueezerTest Lib/idlelib/idle_test/test_squeezer.py /^class SqueezerTest(unittest.TestCase):$/;" c +SslProtoHandshakeTests Lib/test/test_asyncio/test_sslproto.py /^class SslProtoHandshakeTests(test_utils.TestCase):$/;" c +Stable Lib/test/test_sort.py /^ class Stable(object):$/;" c function:TestBase.testStressfully +StackBrowser Lib/idlelib/stackviewer.py /^def StackBrowser(root, exc, flist=None, top=None):$/;" f +StackBrowserTest Lib/idlelib/idle_test/test_stackviewer.py /^class StackBrowserTest(unittest.TestCase):$/;" c +StackEffect Tools/cases_generator/parser.py /^class StackEffect(Node):$/;" c +StackEffectMapping Tools/cases_generator/generate_cases.py /^StackEffectMapping = list[tuple[StackEffect, StackEffect]]$/;" v +StackNavigationTests Lib/test/test_gdb.py /^class StackNavigationTests(DebuggerTests):$/;" c +StackObject Lib/pickletools.py /^class StackObject(object):$/;" c +StackSummary Lib/traceback.py /^class StackSummary(list):$/;" c +StackTreeItem Lib/idlelib/stackviewer.py /^class StackTreeItem(TreeItem):$/;" c +StackViewer Lib/idlelib/debugger.py /^class StackViewer(ScrolledList):$/;" c +StandardOptionsTests Lib/test/test_tkinter/widget_tests.py /^class StandardOptionsTests:$/;" c +StandardTtkOptionsTests Lib/test/test_ttk/test_widgets.py /^class StandardTtkOptionsTests(StandardOptionsTests):$/;" c +Star Lib/turtledemo/planet_and_moon.py /^class Star(Turtle):$/;" c +StarEtc Parser/pegen.h /^} StarEtc;$/;" t typeref:struct:__anon663 +Starred Include/internal/pycore_ast.h /^ } Starred;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon100 +Starred_fields Python/Python-ast.c /^static const char * const Starred_fields[]={$/;" v file: +Starred_kind Include/internal/pycore_ast.h /^ Attribute_kind=21, Subscript_kind=22, Starred_kind=23,$/;" e enum:_expr_kind +Starred_type Include/internal/pycore_ast_state.h /^ PyObject *Starred_type;$/;" m struct:ast_state +StartBoundaryNotFoundDefect Lib/email/errors.py /^class StartBoundaryNotFoundDefect(MessageDefect):$/;" c +StartCdataSection Modules/pyexpat.c /^ StartCdataSection,$/;" e enum:HandlerTypes file: +StartCdataSectionHandler Lib/test/test_pyexpat.py /^ def StartCdataSectionHandler(self):$/;" m class:ParseTest.Outputter +StartDoctypeDecl Modules/pyexpat.c /^ StartDoctypeDecl,$/;" e enum:HandlerTypes file: +StartDoctypeDeclHandler Lib/test/test_pyexpat.py /^ def StartDoctypeDeclHandler(self, *args):$/;" m class:ParseTest.Outputter +StartElement Modules/pyexpat.c /^ StartElement,$/;" e enum:HandlerTypes file: +StartElementHandler Lib/test/test_pyexpat.py /^ def StartElementHandler(self, name, attrs):$/;" m class:ParseTest.Outputter +StartElementHandler Lib/test/test_pyexpat.py /^ def StartElementHandler(self, name, attrs):$/;" m class:BufferTextTest +StartElementHandler Lib/test/test_pyexpat.py /^ def StartElementHandler(self, name, attrs):$/;" m class:HandlerExceptionTest +StartElementHandler Lib/test/test_pyexpat.py /^ def StartElementHandler(self, name, attrs):$/;" m class:PositionTest +StartNamespaceDecl Modules/pyexpat.c /^ StartNamespaceDecl,$/;" e enum:HandlerTypes file: +StartNamespaceDeclHandler Lib/test/test_pyexpat.py /^ def StartNamespaceDeclHandler(self, prefix, uri):$/;" m class:ParseTest.Outputter +StartResponse Lib/wsgiref/types.py /^class StartResponse(Protocol):$/;" c +StartupImportTests Lib/test/test_site.py /^class StartupImportTests(unittest.TestCase):$/;" c +StartupTests Lib/test/test_importlib/test_api.py /^class StartupTests:$/;" c +StatAttributeTests Lib/test/test_os.py /^class StatAttributeTests(unittest.TestCase):$/;" c +StatResultType Modules/posixmodule.c /^ PyObject *StatResultType;$/;" m struct:__anon477 file: +StatVFSResultType Modules/posixmodule.c /^ PyObject *StatVFSResultType;$/;" m struct:__anon477 file: +State Lib/multiprocessing/managers.py /^class State(object):$/;" c +State Lib/re/_parser.py /^class State:$/;" c +State Lib/test/libregrtest/runtest.py /^class State:$/;" c +StateAccessTypeObject Modules/_testmultiphase.c /^} StateAccessTypeObject;$/;" t typeref:struct:__anon426 file: +StateAccessType_Subclass Lib/test/test_capi/test_misc.py /^ class StateAccessType_Subclass(self.module.StateAccessType):$/;" c function:Test_ModuleStateAccess.test_subclass_get_module +StateAccessType_Subclass Lib/test/test_capi/test_misc.py /^ class StateAccessType_Subclass(self.module.StateAccessType):$/;" c function:Test_ModuleStateAccess.test_subclass_get_module_with_super +StateAccessType_Type_slots Modules/_testmultiphase.c /^static PyType_Slot StateAccessType_Type_slots[] = {$/;" v file: +StateAccessType_methods Modules/_testmultiphase.c /^static PyMethodDef StateAccessType_methods[] = {$/;" v file: +StateAccessType_spec Modules/_testmultiphase.c /^static PyType_Spec StateAccessType_spec = {$/;" v file: +StateKeeper Tools/clinic/clinic.py /^StateKeeper = Callable[[str | None], None]$/;" v +StateTestCase Lib/test/test_bdb.py /^class StateTestCase(BaseTestCase):$/;" c +StatefulFilter Lib/test/test_tarfile.py /^ class StatefulFilter:$/;" c function:TestExtractionFilters.test_stateful_filter +StatefulIncrementalDecoder Lib/test/test_io.py /^class StatefulIncrementalDecoder(codecs.IncrementalDecoder):$/;" c +StatefulIncrementalDecoderTest Lib/test/test_io.py /^class StatefulIncrementalDecoderTest(unittest.TestCase):$/;" c +Statement Tools/c-analyzer/c_parser/info.py /^class Statement(HighlevelParsedItem):$/;" c +StatementType Modules/_sqlite/module.h /^ PyTypeObject *StatementType;$/;" m struct:__anon355 +StaticArrayObject Modules/_testbuffer.c /^} StaticArrayObject;$/;" t typeref:struct:__anon647 file: +StaticArray_Type Modules/_testbuffer.c /^static PyTypeObject StaticArray_Type = {$/;" v file: +StaticArray_Type Modules/_testbuffer.c /^static PyTypeObject StaticArray_Type;$/;" v file: +StaticMethodAttrsTest Lib/test/test_funcattrs.py /^class StaticMethodAttrsTest(unittest.TestCase):$/;" c +StaticMethodType Lib/test/test_pyclbr.py /^StaticMethodType = type(staticmethod(lambda: None))$/;" v +StaticVisitor Parser/asdl_c.py /^class StaticVisitor(PickleVisitor):$/;" c +Statistic Lib/tracemalloc.py /^class Statistic:$/;" c +StatisticDiff Lib/tracemalloc.py /^class StatisticDiff:$/;" c +StatisticsError Lib/statistics.py /^class StatisticsError(ValueError):$/;" c +StatisticsErrorTest Lib/test/test_statistics.py /^class StatisticsErrorTest(unittest.TestCase):$/;" c +Stats Lib/pstats.py /^class Stats:$/;" c +StatsProfile Lib/pstats.py /^class StatsProfile:$/;" c +StatsRequestHandler Lib/test/ssl_servers.py /^class StatsRequestHandler(BaseHTTPRequestHandler):$/;" c +StatsTestCase Lib/test/test_pstats.py /^class StatsTestCase(unittest.TestCase):$/;" c +StdButtonBox Lib/tkinter/tix.py /^class StdButtonBox(TixWidget):$/;" c +StdIOBuffer Lib/test/test_argparse.py /^class StdIOBuffer(io.TextIOWrapper):$/;" c +StdInputFile Lib/idlelib/run.py /^class StdInputFile(StdioFile):$/;" c +StdInputFilesTest Lib/idlelib/idle_test/test_run.py /^class StdInputFilesTest(unittest.TestCase):$/;" c +StdOutputFile Lib/idlelib/run.py /^class StdOutputFile(StdioFile):$/;" c +StdOutputFilesTest Lib/idlelib/idle_test/test_run.py /^class StdOutputFilesTest(unittest.TestCase):$/;" c +StdPrinterTests Lib/test/test_embed.py /^class StdPrinterTests(EmbeddingTestsMixin, unittest.TestCase):$/;" c +StdStreamComparer Lib/test/test_argparse.py /^class StdStreamComparer:$/;" c +StdStreamTest Lib/test/test_argparse.py /^class StdStreamTest(unittest.TestCase):$/;" c +StdcallCallbacks Lib/test/test_ctypes/test_callbacks.py /^class StdcallCallbacks(Callbacks):$/;" c +StdioFile Lib/idlelib/run.py /^class StdioFile(io.TextIOBase):$/;" c +StdoutGuard Lib/test/test_descr.py /^ class StdoutGuard:$/;" c function:.test_file_fault +StdoutRefactoringTool Lib/lib2to3/main.py /^class StdoutRefactoringTool(refactor.MultiprocessRefactoringTool):$/;" c +StgDictObject Modules/_ctypes/ctypes.h /^} StgDictObject;$/;" t typeref:struct:__anon495 +Stick Lib/turtledemo/nim.py /^class Stick(turtle.Turtle):$/;" c +StillIncomplete Lib/test/test_enum.py /^ class StillIncomplete(Flag):$/;" c class:TestVerify.test_continuous.Manual +Stooges Lib/test/test_enum.py /^ Stooges = exc$/;" v +Stooges Lib/test/test_enum.py /^ class Stooges(Enum):$/;" c +Stop Modules/_lsprof.c /^Stop(ProfilerObject *pObj, ProfilerContext *self, ProfilerEntry *entry)$/;" f file: +StopAsyncIterationSubclass Lib/test/test_contextlib_async.py /^ class StopAsyncIterationSubclass(StopAsyncIteration):$/;" c function:AsyncContextManagerTestCase.test_contextmanager_except_stopiter +StopAsyncIterationSubclass Lib/test/test_contextlib_async.py /^ class StopAsyncIterationSubclass(StopAsyncIteration):$/;" c function:AsyncContextManagerTestCase.test_contextmanager_traceback +StopCompares Lib/test/seq_tests.py /^ class StopCompares:$/;" c function:CommonTest.test_contains_order +StopIterationSubclass Lib/test/test_contextlib.py /^ class StopIterationSubclass(StopIteration):$/;" c function:ContextManagerTestCase.test_contextmanager_except_stopiter +StopIterationSubclass Lib/test/test_contextlib.py /^ class StopIterationSubclass(StopIteration):$/;" c function:ContextManagerTestCase.test_contextmanager_traceback +StopIterationSubclass Lib/test/test_contextlib_async.py /^ class StopIterationSubclass(StopIteration):$/;" c function:AsyncContextManagerTestCase.test_contextmanager_except_stopiter +StopIterationSubclass Lib/test/test_contextlib_async.py /^ class StopIterationSubclass(StopIteration):$/;" c function:AsyncContextManagerTestCase.test_contextmanager_traceback +StopIteration_clear Objects/exceptions.c /^StopIteration_clear(PyStopIterationObject *self)$/;" f file: +StopIteration_dealloc Objects/exceptions.c /^StopIteration_dealloc(PyStopIterationObject *self)$/;" f file: +StopIteration_init Objects/exceptions.c /^StopIteration_init(PyStopIterationObject *self, PyObject *args, PyObject *kwds)$/;" f file: +StopIteration_members Objects/exceptions.c /^static PyMemberDef StopIteration_members[] = {$/;" v file: +StopIteration_traverse Objects/exceptions.c /^StopIteration_traverse(PyStopIterationObject *self, visitproc visit, void *arg)$/;" f file: +StopNow Lib/test/test_itertools.py /^class StopNow:$/;" c +StopTokenizing Lib/lib2to3/pgen2/tokenize.py /^class StopTokenizing(Exception): pass$/;" c +StopTokenizing Lib/tokenize.py /^class StopTokenizing(Exception): pass$/;" c +StopiterationRecorder Lib/test/test_monitoring.py /^class StopiterationRecorder(ExceptionRecorder):$/;" c +Store Include/internal/pycore_ast.h /^typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;$/;" e enum:_expr_context +StoreSearchInfo PC/launcher2.c /^struct StoreSearchInfo {$/;" s file: +StoreTest Lib/idlelib/idle_test/test_history.py /^class StoreTest(unittest.TestCase):$/;" c +Store_singleton Include/internal/pycore_ast_state.h /^ PyObject *Store_singleton;$/;" m struct:ast_state +Store_type Include/internal/pycore_ast_state.h /^ PyObject *Store_type;$/;" m struct:ast_state +StoredBadCrcTests Lib/test/test_zipfile/test_core.py /^class StoredBadCrcTests(AbstractBadCrcTests, unittest.TestCase):$/;" c +StoredTestZip64InSmallFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +StoredTestsWithRandomBinaryFiles Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +StoredTestsWithSourceFile Lib/test/test_zipfile/test_core.py /^ unittest.TestCase):$/;" c +StoredWriterTests Lib/test/test_zipfile/test_core.py /^class StoredWriterTests(AbstractWriterTests, unittest.TestCase):$/;" c +Storeinc Python/dtoa.c 223;" d file: +Storeinc Python/dtoa.c 226;" d file: +Str Lib/ast.py /^class Str(Constant, metaclass=_ABC):$/;" c +Str Lib/test/test_capi/test_unicode.py /^class Str(str):$/;" c +Str Lib/test/test_os.py /^ class Str(str):$/;" c function:OSErrorTests.setUp +Str Lib/test/test_unicode.py /^ class Str(enum.StrEnum):$/;" c function:UnicodeTest.test_formatting_with_enum +StrAndReprTests Lib/test/test_exception_group.py /^class StrAndReprTests(unittest.TestCase):$/;" c +StrEnum Lib/enum.py /^class StrEnum(str, ReprEnum):$/;" c +StrFormatStyle Lib/logging/__init__.py /^class StrFormatStyle(PercentStyle):$/;" c +StrHashRandomizationTests Lib/test/test_hash.py /^ unittest.TestCase):$/;" c +StrMixin Lib/test/test_enum.py /^ class StrMixin:$/;" c function:OldTestFlag.test_multiple_mixin +StrMixin Lib/test/test_enum.py /^ class StrMixin:$/;" c function:OldTestIntFlag.test_multiple_mixin +StrMixin Lib/test/test_enum.py /^ class StrMixin:$/;" c function:TestSpecial.test_multiple_mixin +StrPath Lib/importlib/resources/abc.py /^StrPath = Union[str, os.PathLike[str]]$/;" v +StrSquares Lib/test/test_builtin.py /^class StrSquares:$/;" c +StrSub Lib/test/test_descr.py /^ class StrSub(str):$/;" c function:.test_repr_with_module_str_subclass +StrSub Lib/test/test_dict.py /^ class StrSub(str):$/;" c function:DictTest.test_str_nonstr +StrSubclass Lib/test/test_compare.py /^ class StrSubclass(str):$/;" c function:ComparisonFullTest.test_str_subclass +StrSubclass Lib/test/test_pathlib.py /^ class StrSubclass(str):$/;" c function:_BasePurePathTest._check_str_subclass +StrSubclass Lib/test/test_unicode.py /^class StrSubclass(str):$/;" c +StrSubclassToStr Lib/test/test_unicode.py /^ class StrSubclassToStr(str):$/;" c function:UnicodeTest.test_conversion +StrSubclassToStrSubclass Lib/test/test_unicode.py /^ class StrSubclassToStrSubclass(str):$/;" c function:UnicodeTest.test_conversion +StrTest Lib/test/test_bigaddrspace.py /^class StrTest(unittest.TestCase):$/;" c +StrTest Lib/test/test_bigmem.py /^class StrTest(unittest.TestCase, BaseStrTest):$/;" c +Str_Type Modules/xxmodule.c /^static PyTypeObject Str_Type = {$/;" v file: +Str_Type_slots Modules/_testmultiphase.c /^static PyType_Slot Str_Type_slots[] = {$/;" v file: +Str_Type_slots Modules/xxlimited.c /^static PyType_Slot Str_Type_slots[] = {$/;" v file: +Str_Type_slots Modules/xxlimited_35.c /^static PyType_Slot Str_Type_slots[] = {$/;" v file: +Str_Type_spec Modules/_testmultiphase.c /^static PyType_Spec Str_Type_spec = {$/;" v file: +Str_Type_spec Modules/xxlimited.c /^static PyType_Spec Str_Type_spec = {$/;" v file: +Str_Type_spec Modules/xxlimited_35.c /^static PyType_Spec Str_Type_spec = {$/;" v file: +StrangeConfigParser Lib/test/test_configparser.py /^ class StrangeConfigParser(configparser.ConfigParser):$/;" c function:BlatantOverrideConvertersTestCase.test_inheritance +Stream Lib/test/test_io.py /^ class Stream(self.BufferedIOBase):$/;" c function:IOTest.test_buffered_readinto_mixin +StreamConverter Lib/encodings/ascii.py /^class StreamConverter(StreamWriter,StreamReader):$/;" c +StreamConverter Lib/encodings/latin_1.py /^class StreamConverter(StreamWriter,StreamReader):$/;" c +StreamError Lib/tarfile.py /^class StreamError(TarError):$/;" c +StreamHandler Lib/logging/__init__.py /^class StreamHandler(Handler):$/;" c +StreamHandlerTest Lib/test/test_logging.py /^class StreamHandlerTest(BaseTest):$/;" c +StreamReadTest Lib/test/test_tarfile.py /^class StreamReadTest(CommonReadTest, unittest.TestCase):$/;" c +StreamReader Lib/asyncio/streams.py /^class StreamReader:$/;" c +StreamReader Lib/codecs.py /^class StreamReader(Codec):$/;" c +StreamReader Lib/encodings/ascii.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/base64_codec.py /^class StreamReader(Codec, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/big5.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/big5hkscs.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/bz2_codec.py /^class StreamReader(Codec, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/charmap.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp037.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1006.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1026.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1125.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1140.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1250.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1251.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1252.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1253.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1254.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1255.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1256.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1257.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp1258.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp273.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp424.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp437.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp500.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp720.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp737.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp775.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp850.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp852.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp855.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp856.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp857.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp858.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp860.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp861.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp862.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp863.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp864.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp865.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp866.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp869.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp874.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp875.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp932.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp949.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/cp950.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/euc_jis_2004.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/euc_jisx0213.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/euc_jp.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/euc_kr.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/gb18030.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/gb2312.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/gbk.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/hex_codec.py /^class StreamReader(Codec, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/hp_roman8.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/hz.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/idna.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso2022_jp.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso2022_jp_1.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso2022_jp_2.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso2022_jp_2004.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso2022_jp_3.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso2022_jp_ext.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso2022_kr.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_1.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_10.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_11.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_13.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_14.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_15.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_16.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_2.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_3.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_4.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_5.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_6.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_7.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_8.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/iso8859_9.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/johab.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/koi8_r.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/koi8_t.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/koi8_u.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/kz1048.py /^class StreamReader(Codec, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/latin_1.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_arabic.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_croatian.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_cyrillic.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_farsi.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_greek.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_iceland.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_latin2.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_roman.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_romanian.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mac_turkish.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/mbcs.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/oem.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/palmos.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/ptcp154.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/punycode.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/quopri_codec.py /^class StreamReader(Codec, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/raw_unicode_escape.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/rot_13.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/shift_jis.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/shift_jis_2004.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/shift_jisx0213.py /^class StreamReader(Codec, mbc.MultibyteStreamReader, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/tis_620.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/undefined.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/unicode_escape.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_16.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_16_be.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_16_le.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_32.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_32_be.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_32_le.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_7.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_8.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/utf_8_sig.py /^class StreamReader(codecs.StreamReader):$/;" c +StreamReader Lib/encodings/uu_codec.py /^class StreamReader(Codec, codecs.StreamReader):$/;" c +StreamReader Lib/encodings/zlib_codec.py /^class StreamReader(Codec, codecs.StreamReader):$/;" c +StreamReader Lib/test/testcodec.py /^class StreamReader(Codec,codecs.StreamReader):$/;" c +StreamReaderProtocol Lib/asyncio/streams.py /^class StreamReaderProtocol(FlowControlMixin, protocols.Protocol):$/;" c +StreamReaderTest Lib/test/test_codecs.py /^class StreamReaderTest(unittest.TestCase):$/;" c +StreamReaderTests Lib/test/test_asyncio/test_pep492.py /^class StreamReaderTests(BaseTest):$/;" c +StreamReaderWriter Lib/codecs.py /^class StreamReaderWriter:$/;" c +StreamReaderWriterXmlgenTest Lib/test/test_sax.py /^class StreamReaderWriterXmlgenTest(XmlgenTest, unittest.TestCase):$/;" c +StreamRecoder Lib/codecs.py /^class StreamRecoder:$/;" c +StreamRecoderTest Lib/test/test_codecs.py /^class StreamRecoderTest(unittest.TestCase):$/;" c +StreamRequestHandler Lib/socketserver.py /^class StreamRequestHandler(BaseRequestHandler):$/;" c +StreamTests Lib/test/test_asyncio/test_streams.py /^class StreamTests(test_utils.TestCase):$/;" c +StreamWithIntName Lib/test/test_logging.py /^class StreamWithIntName(object):$/;" c +StreamWriteTest Lib/test/test_tarfile.py /^class StreamWriteTest(WriteTestBase, unittest.TestCase):$/;" c +StreamWriter Lib/asyncio/streams.py /^class StreamWriter:$/;" c +StreamWriter Lib/codecs.py /^class StreamWriter(Codec):$/;" c +StreamWriter Lib/encodings/ascii.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/base64_codec.py /^class StreamWriter(Codec, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/big5.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/big5hkscs.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/bz2_codec.py /^class StreamWriter(Codec, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/charmap.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp037.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1006.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1026.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1125.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1140.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1250.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1251.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1252.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1253.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1254.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1255.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1256.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1257.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp1258.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp273.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp424.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp437.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp500.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp720.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp737.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp775.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp850.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp852.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp855.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp856.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp857.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp858.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp860.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp861.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp862.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp863.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp864.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp865.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp866.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp869.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp874.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp875.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp932.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp949.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/cp950.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/euc_jis_2004.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/euc_jisx0213.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/euc_jp.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/euc_kr.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/gb18030.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/gb2312.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/gbk.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/hex_codec.py /^class StreamWriter(Codec, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/hp_roman8.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/hz.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/idna.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso2022_jp.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso2022_jp_1.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso2022_jp_2.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso2022_jp_2004.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso2022_jp_3.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso2022_jp_ext.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso2022_kr.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_1.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_10.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_11.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_13.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_14.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_15.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_16.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_2.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_3.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_4.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_5.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_6.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_7.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_8.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/iso8859_9.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/johab.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/koi8_r.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/koi8_t.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/koi8_u.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/kz1048.py /^class StreamWriter(Codec, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/latin_1.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_arabic.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_croatian.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_cyrillic.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_farsi.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_greek.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_iceland.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_latin2.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_roman.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_romanian.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mac_turkish.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/mbcs.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/oem.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/palmos.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/ptcp154.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/punycode.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/quopri_codec.py /^class StreamWriter(Codec, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/raw_unicode_escape.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/rot_13.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/shift_jis.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/shift_jis_2004.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/shift_jisx0213.py /^class StreamWriter(Codec, mbc.MultibyteStreamWriter, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/tis_620.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/undefined.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/unicode_escape.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_16.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_16_be.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_16_le.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_32.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_32_be.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_32_le.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_7.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_8.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/utf_8_sig.py /^class StreamWriter(codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/uu_codec.py /^class StreamWriter(Codec, codecs.StreamWriter):$/;" c +StreamWriter Lib/encodings/zlib_codec.py /^class StreamWriter(Codec, codecs.StreamWriter):$/;" c +StreamWriter Lib/test/testcodec.py /^class StreamWriter(Codec,codecs.StreamWriter):$/;" c +StreamWriterXmlgenTest Lib/test/test_sax.py /^class StreamWriterXmlgenTest(XmlgenTest, unittest.TestCase):$/;" c +StressTest Lib/test/test_signal.py /^class StressTest(unittest.TestCase):$/;" c +StressTests Lib/test/test_interpreters.py /^class StressTests(TestBase):$/;" c +StrftimeTest Lib/test/test_strftime.py /^class StrftimeTest(unittest.TestCase):$/;" c +StrictTestCase Lib/test/test_configparser.py /^class StrictTestCase(BasicTestCase, unittest.TestCase):$/;" c +String Lib/lib2to3/fixer_util.py /^def String(string, prefix=None):$/;" f +String Lib/lib2to3/pgen2/tokenize.py /^String = group(_litprefix + r"'[^\\n'\\\\]*(?:\\\\.[^\\n'\\\\]*)*'",$/;" v +String Lib/test/test_enum.py /^ class String(str, Enum):$/;" c function:TestSpecial.test_introspection +String Lib/tokenize.py /^String = group(StringPrefix + r"'[^\\n'\\\\]*(?:\\\\.[^\\n'\\\\]*)*'",$/;" v +StringArrayTestCase Lib/test/test_ctypes/test_strings.py /^class StringArrayTestCase(unittest.TestCase):$/;" c +StringBufferTestCase Lib/test/test_ctypes/test_buffers.py /^class StringBufferTestCase(unittest.TestCase):$/;" c +StringCompat Lib/test/test_unicode.py /^ class StringCompat:$/;" c function:UnicodeTest.test_constructor +StringFormattingTest Lib/test/test_robotparser.py /^class StringFormattingTest(BaseRobotTest, unittest.TestCase):$/;" c +StringIO Lib/_pyio.py /^class StringIO(TextIOWrapper):$/;" c +StringLeaf Tools/peg_generator/pegen/grammar.py /^class StringLeaf(Leaf):$/;" c +StringModuleTest Lib/test/test_unicode.py /^class StringModuleTest(unittest.TestCase):$/;" c +StringPrefix Lib/tokenize.py /^StringPrefix = group(*_all_string_prefixes())$/;" v +StringPtrTestCase Lib/test/test_ctypes/test_stringptr.py /^class StringPtrTestCase(unittest.TestCase):$/;" c +StringTemplateStyle Lib/logging/__init__.py /^class StringTemplateStyle(PercentStyle):$/;" c +StringTest Lib/test/test_array.py /^class StringTest(BaseTest):$/;" c +StringTestCase Lib/test/test_ctypes/test_unicode.py /^class StringTestCase(UnicodeTestCase):$/;" c +StringTestCase Lib/test/test_index.py /^class StringTestCase(SeqTestCase, unittest.TestCase):$/;" c +StringTestCase Lib/test/test_marshal.py /^class StringTestCase(unittest.TestCase, HelperMixin):$/;" c +StringTruncated Tools/gdb/libpython.py /^class StringTruncated(RuntimeError):$/;" c +StringType Modules/_tkinter.c /^ const Tcl_ObjType *StringType;$/;" m struct:__anon334 file: +StringTypes Lib/xml/dom/minicompat.py /^StringTypes = (str,)$/;" v +StringVar Lib/tkinter/__init__.py /^class StringVar(Variable):$/;" c +StringXmlgenTest Lib/test/test_sax.py /^class StringXmlgenTest(XmlgenTest, unittest.TestCase):$/;" c +String_TestCase Lib/test/test_capi/test_getargs.py /^class String_TestCase(unittest.TestCase):$/;" c +StringlikeHashRandomizationTests Lib/test/test_hash.py /^class StringlikeHashRandomizationTests(HashRandomizationTests):$/;" c +StringprepTests Lib/test/test_stringprep.py /^class StringprepTests(unittest.TestCase):$/;" c +StripExtraTests Lib/test/test_zipfile/test_core.py /^class StripExtraTests(unittest.TestCase):$/;" c +StrongCacheNode Modules/_zoneinfo.c /^struct StrongCacheNode {$/;" s file: +StrongCacheNode Modules/_zoneinfo.c /^typedef struct StrongCacheNode StrongCacheNode;$/;" t typeref:struct:StrongCacheNode file: +StrongRef Lib/test/test_cppext/extension.cpp /^ StrongRef(PyObject *obj) : m_obj(obj) {$/;" f class:StrongRef +StrongRef Lib/test/test_cppext/extension.cpp /^class StrongRef$/;" c file: +Strptime12AMPMTests Lib/test/test_strptime.py /^class Strptime12AMPMTests(unittest.TestCase):$/;" c +StrptimeTests Lib/test/test_strptime.py /^class StrptimeTests(unittest.TestCase):$/;" c +StrtodTests Lib/test/test_strtod.py /^class StrtodTests(unittest.TestCase):$/;" c +Struct Lib/test/test_ctypes/test_cast.py /^ class Struct(Structure):$/;" c function:Test.test_bad_type_arg +Struct Modules/_testbuffer.c /^static PyObject *Struct = NULL;$/;" v file: +Struct Modules/clinic/_struct.c.h /^Struct(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +Struct Tools/build/stable_abi.py /^class Struct(ABIItem):$/;" c +Struct Tools/c-analyzer/c_parser/info.py /^class Struct(_StructUnion):$/;" c +StructError Modules/_struct.c /^ PyObject *StructError;$/;" m struct:__anon369 file: +StructFieldsTestCase Lib/test/test_ctypes/test_struct_fields.py /^class StructFieldsTestCase(unittest.TestCase):$/;" c +StructGrpType Modules/grpmodule.c /^ PyTypeObject *StructGrpType;$/;" m struct:__anon484 file: +StructParamObject Modules/_ctypes/_ctypes.c /^} StructParamObject;$/;" t typeref:struct:__anon498 file: +StructParam_Type Modules/_ctypes/ctypes.h /^ PyTypeObject *StructParam_Type;$/;" m struct:__anon491 +StructParam_clear Modules/_ctypes/_ctypes.c /^StructParam_clear(StructParamObject *self)$/;" f file: +StructParam_dealloc Modules/_ctypes/_ctypes.c /^StructParam_dealloc(PyObject *myself)$/;" f file: +StructParam_traverse Modules/_ctypes/_ctypes.c /^StructParam_traverse(StructParamObject *self, visitproc visit, void *arg)$/;" f file: +StructPwdType Modules/pwdmodule.c /^ PyTypeObject *StructPwdType;$/;" m struct:__anon644 file: +StructRUsageType Modules/resource.c /^ PyTypeObject *StructRUsageType;$/;" m struct:__anon571 file: +StructSeqTest Lib/test/test_structseq.py /^class StructSeqTest(unittest.TestCase):$/;" c +StructSpwdType Modules/spwdmodule.c /^ PyTypeObject *StructSpwdType;$/;" m struct:__anon367 file: +StructTest Lib/test/test_struct.py /^class StructTest(unittest.TestCase):$/;" c +StructUnionType_new Modules/_ctypes/_ctypes.c /^StructUnionType_new(PyTypeObject *type, PyObject *args, PyObject *kwds, int isStruct)$/;" f file: +StructUnionType_paramfunc Modules/_ctypes/_ctypes.c /^StructUnionType_paramfunc(CDataObject *self)$/;" f file: +StructVisitor Parser/asdl_c.py /^class StructVisitor(EmitVisitor):$/;" c +StructWithArrays Lib/test/test_ctypes/test_pep3118.py /^class StructWithArrays(Structure):$/;" c +Struct_Type Modules/_ctypes/_ctypes.c /^static PyTypeObject Struct_Type = {$/;" v file: +Struct_impl Modules/_struct.c /^Struct_impl(PyTypeObject *type, PyObject *format)$/;" f file: +Struct_init Modules/_ctypes/_ctypes.c /^Struct_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +Struct_iter_unpack Modules/_struct.c /^Struct_iter_unpack(PyStructObject *self, PyObject *buffer)$/;" f file: +Struct_unpack Modules/clinic/_struct.c.h /^Struct_unpack(PyStructObject *self, PyObject *arg)$/;" f +Struct_unpack_from Modules/clinic/_struct.c.h /^Struct_unpack_from(PyStructObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +Struct_unpack_from_impl Modules/_struct.c /^Struct_unpack_from_impl(PyStructObject *self, Py_buffer *buffer,$/;" f file: +Struct_unpack_impl Modules/_struct.c /^Struct_unpack_impl(PyStructObject *self, Py_buffer *buffer)$/;" f file: +Structure Lib/test/_test_multiprocessing.py /^ Structure = object$/;" v +StructureTestCase Lib/test/test_ctypes/test_keeprefs.py /^class StructureTestCase(unittest.TestCase):$/;" c +StructureTestCase Lib/test/test_ctypes/test_structures.py /^class StructureTestCase(unittest.TestCase):$/;" c +Structures Lib/test/test_ctypes/test_win32.py /^class Structures(unittest.TestCase):$/;" c +Stub Lib/test/support/_hypothesis_stubs/_helpers.py /^ class Stub(klass):$/;" c function:stub_factory +Stub Lib/test/test_unittest/test_case.py /^ def Stub():$/;" f function:.testAssertRaisesCallable +Stub Lib/test/test_unittest/test_case.py /^ def Stub():$/;" f function:.testAssertRaisesContext +Stub Lib/test/test_unittest/test_case.py /^ def Stub():$/;" f function:.testAssertRaisesRegex +Stub Lib/test/test_unittest/test_case.py /^ def Stub():$/;" f function:.testAssertRaisesRegexMismatch +Stub Lib/test/test_unittest/test_case.py /^ def Stub(foo):$/;" f function:.testAssertRaisesExcValue +StubClass Lib/test/support/_hypothesis_stubs/_helpers.py /^class StubClass:$/;" c +StubObjectTreeItem Lib/idlelib/debugobj_r.py /^class StubObjectTreeItem:$/;" c +StubObjectTreeItemTest Lib/idlelib/idle_test/test_debugobj_r.py /^class StubObjectTreeItemTest(unittest.TestCase):$/;" c +StubStrategy Lib/test/support/_hypothesis_stubs/strategies.py /^class StubStrategy(StubClass):$/;" c +StupidGit Lib/test/inspect_fodder.py /^class StupidGit:$/;" c +Style Lib/tkinter/ttk.py /^class Style(object):$/;" c +StyleDesc Modules/_csv.c /^} StyleDesc;$/;" t typeref:struct:__anon623 file: +StyleTest Lib/test/test_ttk/test_style.py /^class StyleTest(AbstractTkTest, unittest.TestCase):$/;" c +Sub Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" e enum:_operator +Sub Lib/test/test_descr.py /^ class Sub(Base):$/;" c function:.test_subclassing_does_not_duplicate_dict_descriptors +Sub Lib/test/test_descr.py /^ class Sub(Base):$/;" c function:.test_supers +Sub Lib/test/test_typing.py /^ class Sub(Any): pass$/;" c function:AnyTests.test_repr +Sub Lib/test/test_typing.py /^ class Sub(Base, Generic[T]):$/;" c function:GenericTests.test_complex_subclasses +Sub Lib/test/test_unittest/testmock/testcallable.py /^ class Sub(CallableX):$/;" c function:TestCallable.test_patch_spec_callable_class +Sub Lib/test/test_unittest/testmock/testhelpers.py /^ class Sub(SomeClass):$/;" c function:SpecSignatureTest.test_attributes +Sub Lib/test/test_unittest/testmock/testhelpers.py /^ class Sub(SomeClass):$/;" c function:SpecSignatureTest.test_method_calls +Sub Lib/test/test_unittest/testmock/testhelpers.py /^ class Sub(SomeClass):$/;" c function:SpecSignatureTest.test_spec_set +Sub Lib/test/test_unittest/testmock/testmock.py /^ class Sub(list):$/;" c function:MockTest.test_spec_list_subclass +SubBytes Lib/test/test__xxsubinterpreters.py /^ class SubBytes(bytes):$/;" c function:IsShareableTests.test_not_shareable +SubBytes Lib/test/test_bytes.py /^ class SubBytes(bytes):$/;" c function:BytesTest.test_repeat_id_preserving +SubBytes Lib/test/test_interpreters.py /^ class SubBytes(bytes):$/;" c function:TestIsShareable.test_not_shareable +SubClass Lib/test/test_dynamicclassattribute.py /^class SubClass(BaseClass):$/;" c +SubClass Lib/test/test_genericalias.py /^ class SubClass(GenericAlias): ...$/;" c function:BaseTest.test_subclassing_types_genericalias +SubClass Lib/test/test_property.py /^class SubClass(BaseClass):$/;" c +SubClass Lib/test/test_types.py /^ class SubClass(types.GenericAlias): ...$/;" c function:UnionTests.test_or_type_operator_with_genericalias +SubClass Lib/test/test_unittest/testmock/testmock.py /^ class SubClass(Mock):$/;" c function:MockTest.test_subclass_with_properties +SubClass1 Lib/test/test_random.py /^ class SubClass1(random.Random):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubClass2 Lib/test/test_random.py /^ class SubClass2(random.Random):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubClass3 Lib/test/test_random.py /^ class SubClass3(SubClass2):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubClass4 Lib/test/test_random.py /^ class SubClass4(SubClass3):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubClass5 Lib/test/test_random.py /^ class SubClass5(Mixin1, random.Random):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubClass6 Lib/test/test_random.py /^ class SubClass6(Mixin2, random.Random):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubClass7 Lib/test/test_random.py /^ class SubClass7(Mixin1, Mixin2, random.Random):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubClass8 Lib/test/test_random.py /^ class SubClass8(Mixin2, Mixin1, random.Random):$/;" c function:TestRandomSubclassing.test_subclasses_overriding_methods +SubElement Lib/xml/etree/ElementTree.py /^def SubElement(parent, tag, attrib={}, **extra):$/;" f +SubEnum Lib/test/test_enum.py /^ class SubEnum(SuperEnum):$/;" c function:_EnumTests.test_dir_on_sub_with_behavior_including_instance_dict_on_super +SubEnum Lib/test/test_enum.py /^ class SubEnum(SuperEnum):$/;" c function:_EnumTests.test_dir_on_sub_with_behavior_on_super +SubError Lib/test/test_exceptions.py /^ class SubError(Exception):$/;" c function:ExceptionTests.test_yield_in_nested_try_excepts +SubInt Lib/test/test_typechecks.py /^class SubInt(Integer):$/;" c +SubListObject Doc/includes/newtypes/sublist.c /^} SubListObject;$/;" t typeref:struct:__anon275 file: +SubListType Doc/includes/newtypes/sublist.c /^static PyTypeObject SubListType = {$/;" v file: +SubList_increment Doc/includes/newtypes/sublist.c /^SubList_increment(SubListObject *self, PyObject *unused)$/;" f file: +SubList_init Doc/includes/newtypes/sublist.c /^SubList_init(SubListObject *self, PyObject *args, PyObject *kwds)$/;" f file: +SubList_methods Doc/includes/newtypes/sublist.c /^static PyMethodDef SubList_methods[] = {$/;" v file: +SubOSError Lib/test/test_exception_hierarchy.py /^class SubOSError(OSError):$/;" c +SubOSErrorCombinedInitFirst Lib/test/test_exception_hierarchy.py /^class SubOSErrorCombinedInitFirst(SubOSErrorWithInit, SubOSErrorWithNew):$/;" c +SubOSErrorCombinedNewFirst Lib/test/test_exception_hierarchy.py /^class SubOSErrorCombinedNewFirst(SubOSErrorWithNew, SubOSErrorWithInit):$/;" c +SubOSErrorWithInit Lib/test/test_exception_hierarchy.py /^class SubOSErrorWithInit(OSError):$/;" c +SubOSErrorWithNew Lib/test/test_exception_hierarchy.py /^class SubOSErrorWithNew(OSError):$/;" c +SubOSErrorWithStandaloneInit Lib/test/test_exception_hierarchy.py /^class SubOSErrorWithStandaloneInit(OSError):$/;" c +SubPattern Lib/re/_parser.py /^class SubPattern:$/;" c +SubRuleValidator Tools/peg_generator/pegen/validator.py /^class SubRuleValidator(GrammarValidator):$/;" c +SubSpam Lib/test/test_descr.py /^ class SubSpam(spam.spamlist): pass$/;" c function:.test_classmethods_in_c +SubStr Lib/test/test_descr.py /^ class SubStr(str):$/;" c function:.test_slots +SubStr Lib/test/test_long.py /^ class SubStr(str):$/;" c function:LongTest.test_from_bytes +SubStr Lib/test/test_long.py /^ class SubStr(str):$/;" c function:LongTest.test_to_bytes +SubStr Lib/test/test_unicode.py /^ class SubStr(str):$/;" c function:UnicodeTest.test_repeat_id_preserving +SubString Objects/stringlib/unicode_format.h /^} SubString;$/;" t typeref:struct:__anon703 +SubString_init Objects/stringlib/unicode_format.h /^SubString_init(SubString *str, PyObject *s, Py_ssize_t start, Py_ssize_t end)$/;" f +SubString_new_object Objects/stringlib/unicode_format.h /^SubString_new_object(SubString *str)$/;" f +SubString_new_object_or_empty Objects/stringlib/unicode_format.h /^SubString_new_object_or_empty(SubString *str)$/;" f +SubTestSuite Lib/test/test_unittest/test_loader.py /^ class SubTestSuite(unittest.TestSuite):$/;" c function:Test_TestLoader.test_loadTestsFromName__callable__TestCase_instance_ProperSuiteClass +SubTestSuite Lib/test/test_unittest/test_loader.py /^ class SubTestSuite(unittest.TestSuite):$/;" c function:Test_TestLoader.test_loadTestsFromName__relative_testmethod_ProperSuiteClass +SubType Lib/test/test_descr.py /^ class SubType(types.ModuleType):$/;" c function:.test_object_class_assignment_between_heaptypes_and_nonheaptypes +Sub_singleton Include/internal/pycore_ast_state.h /^ PyObject *Sub_singleton;$/;" m struct:ast_state +Sub_type Include/internal/pycore_ast_state.h /^ PyObject *Sub_type;$/;" m struct:ast_state +Subclass Lib/test/pickletester.py /^ class Subclass(tuple):$/;" c function:AbstractPickleTests.test_c_methods +Subclass Lib/test/test_capi/test_misc.py /^ class Subclass(BaseException, self.module.StateAccessType):$/;" c function:Test_ModuleStateAccess.test_get_module_static_in_mro +Subclass Lib/test/test_collections.py /^ class Subclass(ChainMap):$/;" c function:TestChainMap.test_union_operators +Subclass Lib/test/test_ctypes/test_struct_fields.py /^ class Subclass(BrokenStructure): ...$/;" c class:StructFieldsTestCase.test_gh99275.BrokenStructure +Subclass Lib/test/test_dataclasses.py /^ class Subclass(typ): pass$/;" c function:TestCase.test_disallowed_mutable_defaults +Subclass Lib/test/test_random.py /^ class Subclass(random.Random):$/;" c function:TestRandomSubclassing.test_random_subclass_with_kwargs +Subclass Lib/test/test_typing.py /^ class Subclass(Test):$/;" c class:GenericTests.test_init_subclass_super_called.Test +Subclass Lib/test/test_typing.py /^ class Subclass(Test[int]):$/;" c class:GenericTests.test_init_subclass_super_called.Test +Subclass Lib/test/test_unittest/testmock/testmock.py /^ class Subclass(Mock):$/;" c function:MockTest.test_subclassing +Subclass Lib/test/test_zipfile/_path/test_path.py /^ class Subclass(zipfile.Path):$/;" c function:TestPath.test_subclass +SubclassDate Lib/test/datetimetester.py /^class SubclassDate(date):$/;" c +SubclassDatetime Lib/test/datetimetester.py /^class SubclassDatetime(datetime):$/;" c +SubclassMappingTests Lib/test/test_dict.py /^class SubclassMappingTests(mapping_tests.BasicTestMappingProtocol):$/;" c +SubclassOfA Lib/test/test_statistics.py /^ class SubclassOfA(A): pass$/;" c function:CoerceTest.check_coerce_to +SubclassOfB Lib/test/test_statistics.py /^ class SubclassOfB(B): pass$/;" c function:CoerceTest.check_coerce_to +SubclassRor Lib/test/test_collections.py /^ class SubclassRor(ChainMap):$/;" c function:TestChainMap.test_union_operators +SubclassTestCase Lib/test/test_enumerate.py /^class SubclassTestCase(EnumerateTestCase):$/;" c +SubclassTime Lib/test/datetimetester.py /^class SubclassTime(time):$/;" c +SubclassWithKwargs Lib/test/test_deque.py /^class SubclassWithKwargs(deque):$/;" c +SubclassWithKwargsTest Lib/test/test_itertools.py /^class SubclassWithKwargsTest(unittest.TestCase):$/;" c +SubclassableWeakrefTestCase Lib/test/test_weakref.py /^class SubclassableWeakrefTestCase(TestBase):$/;" c +SubclassedStr Lib/test/test_unicode.py /^ class SubclassedStr(str):$/;" c function:UnicodeTest.test_issue28598_strsubclass_rhs +SubclassesTest Lib/test/test_ctypes/test_structures.py /^class SubclassesTest(unittest.TestCase):$/;" c +SubinterpImportTests Lib/test/test_import/__init__.py /^class SubinterpImportTests(unittest.TestCase):$/;" c +SubinterpThreadingTests Lib/test/test_threading.py /^class SubinterpThreadingTests(BaseTestCase):$/;" c +SubinterpreterTest Lib/test/test_atexit.py /^class SubinterpreterTest(unittest.TestCase):$/;" c +SubinterpreterTest Lib/test/test_capi/test_misc.py /^class SubinterpreterTest(unittest.TestCase):$/;" c +Subnormal Lib/_pydecimal.py /^class Subnormal(DecimalException):$/;" c +SubprocessError Lib/subprocess.py /^class SubprocessError(Exception): pass$/;" c +SubprocessFastWatcherTests Lib/test/test_asyncio/test_subprocess.py /^ test_utils.TestCase):$/;" c class:SubprocessMixin +SubprocessMixin Lib/test/test_asyncio/test_subprocess.py /^class SubprocessMixin:$/;" c +SubprocessPidfdWatcherTests Lib/test/test_asyncio/test_subprocess.py /^ test_utils.TestCase):$/;" c class:SubprocessMixin +SubprocessProactorTests Lib/test/test_asyncio/test_subprocess.py /^ class SubprocessProactorTests(SubprocessMixin, test_utils.TestCase):$/;" c class:SubprocessMixin +SubprocessProtocol Lib/asyncio/protocols.py /^class SubprocessProtocol(BaseProtocol):$/;" c +SubprocessSafeWatcherTests Lib/test/test_asyncio/test_subprocess.py /^ test_utils.TestCase):$/;" c class:SubprocessMixin +SubprocessStreamProtocol Lib/asyncio/subprocess.py /^ protocols.SubprocessProtocol):$/;" c +SubprocessTestsMixin Lib/test/test_asyncio/test_events.py /^class SubprocessTestsMixin:$/;" c +SubprocessThreadedWatcherTests Lib/test/test_asyncio/test_subprocess.py /^ test_utils.TestCase):$/;" c class:SubprocessMixin +SubprocessTransport Lib/asyncio/transports.py /^class SubprocessTransport(BaseTransport):$/;" c +SubprocessTransportTests Lib/test/test_asyncio/test_subprocess.py /^class SubprocessTransportTests(test_utils.TestCase):$/;" c +SubprocessWatcherMixin Lib/test/test_asyncio/test_subprocess.py /^ class SubprocessWatcherMixin(SubprocessMixin):$/;" c class:SubprocessMixin +Subscript Include/internal/pycore_ast.h /^ } Subscript;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon99 +Subscript Lib/lib2to3/fixer_util.py /^def Subscript(index_node):$/;" f +Subscript_fields Python/Python-ast.c /^static const char * const Subscript_fields[]={$/;" v file: +Subscript_kind Include/internal/pycore_ast.h /^ Attribute_kind=21, Subscript_kind=22, Starred_kind=23,$/;" e enum:_expr_kind +Subscript_type Include/internal/pycore_ast_state.h /^ PyObject *Subscript_type;$/;" m struct:ast_state +SubsequentHeaderError Lib/tarfile.py /^class SubsequentHeaderError(HeaderError):$/;" c +SubstituteNameLength Modules/winreparse.h /^ USHORT SubstituteNameLength;$/;" m struct:__anon316::__anon317::__anon319 +SubstituteNameLength Modules/winreparse.h /^ USHORT SubstituteNameLength;$/;" m struct:__anon316::__anon317::__anon318 +SubstituteNameOffset Modules/winreparse.h /^ USHORT SubstituteNameOffset;$/;" m struct:__anon316::__anon317::__anon318 +SubstituteNameOffset Modules/winreparse.h /^ USHORT SubstituteNameOffset;$/;" m struct:__anon316::__anon317::__anon319 +Substitution Lib/test/test_traceback.py /^ class Substitution:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions +Substitution Lib/test/test_traceback.py /^ def Substitution():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions +SubstitutionOverAddition Lib/test/test_traceback.py /^ class SubstitutionOverAddition:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions +SubstitutionOverAddition Lib/test/test_traceback.py /^ def SubstitutionOverAddition():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions +SubstitutionOverElimination Lib/test/test_traceback.py /^ class SubstitutionOverElimination:$/;" c function:SuggestionFormattingTestBase.test_getattr_suggestions +SubstitutionOverElimination Lib/test/test_traceback.py /^ def SubstitutionOverElimination():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions +Success Lib/test/test_argparse.py /^ class Success(Exception):$/;" c function:TestInvalidArgumentConstructors.test_user_defined_action +SuccessPage_Show Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void SuccessPage_Show() {$/;" f class:PythonBootstrapperApplication file: +SuggestionFormattingTestBase Lib/test/test_traceback.py /^class SuggestionFormattingTestBase:$/;" c +SuicidalChained Lib/test/test_finalization.py /^class SuicidalChained(ChainedBase, Simple):$/;" c +SuicidalSelfCycle Lib/test/test_finalization.py /^class SuicidalSelfCycle(SelfCycleBase, Simple):$/;" c +Suite Lib/ast.py /^class Suite(mod):$/;" c +Sum Lib/test/datetimetester.py /^ class Sum(int):$/;" c function:TestTimeDelta.test_issue31752 +Sum Parser/asdl.py /^class Sum(AST):$/;" c +SumSpecialValues Lib/test/test_statistics.py /^class SumSpecialValues(NumericTestCase):$/;" c +SumTortureTest Lib/test/test_statistics.py /^class SumTortureTest(NumericTestCase):$/;" c +SunauLowLevelTest Lib/test/test_sunau.py /^class SunauLowLevelTest(unittest.TestCase):$/;" c +SunauPCM16Test Lib/test/test_sunau.py /^class SunauPCM16Test(SunauTest, unittest.TestCase):$/;" c +SunauPCM24Test Lib/test/test_sunau.py /^class SunauPCM24Test(SunauTest, unittest.TestCase):$/;" c +SunauPCM32Test Lib/test/test_sunau.py /^class SunauPCM32Test(SunauTest, unittest.TestCase):$/;" c +SunauPCM8Test Lib/test/test_sunau.py /^class SunauPCM8Test(SunauTest, unittest.TestCase):$/;" c +SunauTest Lib/test/test_sunau.py /^ audiotests.AudioTestsWithSourceFile):$/;" c +SunauULAWTest Lib/test/test_sunau.py /^class SunauULAWTest(SunauTest, unittest.TestCase):$/;" c +SundayTestCase Lib/test/test_calendar.py /^class SundayTestCase(MonthCalendarTestCase):$/;" c +SupEq Lib/test/test_binop.py /^class SupEq(object):$/;" c +Super Lib/test/test_isinstance.py /^class Super:$/;" c +Super Tools/cases_generator/parser.py /^class Super(Node):$/;" c +SuperBase Lib/test/test_call.py /^ class SuperBase:$/;" c function:TestPEP590.test_vectorcall +SuperEnum Lib/test/test_enum.py /^ class SuperEnum(self.enum_type):$/;" c function:_EnumTests.test_dir_on_sub_with_behavior_including_instance_dict_on_super +SuperEnum Lib/test/test_enum.py /^ class SuperEnum(self.enum_type):$/;" c function:_EnumTests.test_dir_on_sub_with_behavior_on_super +SuperInstruction Tools/cases_generator/generate_cases.py /^class SuperInstruction(SuperOrMacroInstruction):$/;" c +SuperOrMacroInstruction Tools/cases_generator/generate_cases.py /^class SuperOrMacroInstruction:$/;" c +SupersetProto Lib/test/test_typing.py /^ class SupersetProto(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +SupportLevel Tools/wasm/wasm_build.py /^class SupportLevel(enum.Enum):$/;" c +SupportsAbs Lib/typing.py /^class SupportsAbs[T](Protocol):$/;" c +SupportsBytes Lib/typing.py /^class SupportsBytes(Protocol):$/;" c +SupportsComplex Lib/typing.py /^class SupportsComplex(Protocol):$/;" c +SupportsFloat Lib/typing.py /^class SupportsFloat(Protocol):$/;" c +SupportsIndex Lib/typing.py /^class SupportsIndex(Protocol):$/;" c +SupportsInt Lib/typing.py /^class SupportsInt(Protocol):$/;" c +SupportsRound Lib/typing.py /^class SupportsRound[T](Protocol):$/;" c +SupportsStartsWith Lib/test/test_typing.py /^ class SupportsStartsWith(Protocol):$/;" c function:ProtocolTests.test_issubclass_and_isinstance_on_Protocol_itself +SupportsTrunc Lib/test/test_typing.py /^ class SupportsTrunc[T](Protocol):$/;" c function:ProtocolTests.test_pep695_generic_protocol_callable_members +SupportsX Lib/test/test_typing.py /^ class SupportsX(Protocol[T]):$/;" c function:ProtocolTests.test_issubclass_and_isinstance_on_Protocol_itself +SuppressCrashReport Lib/test/support/__init__.py /^class SuppressCrashReport:$/;" c +SuppressExc Lib/test/test_contextlib.py /^ class SuppressExc:$/;" c function:TestBaseExitStack.test_exit_exception_chaining_reference +SurrogateEscapeTest Lib/test/test_codecs.py /^class SurrogateEscapeTest(unittest.TestCase):$/;" c +SwappedStructure Lib/test/test_ctypes/test_unaligned_structures.py /^ SwappedStructure = BigEndianStructure$/;" v +SwappedStructure Lib/test/test_ctypes/test_unaligned_structures.py /^ SwappedStructure = LittleEndianStructure$/;" v +Symbol Lib/symtable.py /^class Symbol:$/;" c +Symbol Lib/test/test_bool.py /^ class Symbol:$/;" c function:BoolTest.test_interpreter_convert_to_bool_raises +SymbolTable Lib/symtable.py /^class SymbolTable:$/;" c +SymbolTableFactory Lib/symtable.py /^class SymbolTableFactory:$/;" c +SymbolicBool Lib/test/test_bool.py /^ class SymbolicBool:$/;" c function:BoolTest.test_interpreter_convert_to_bool_raises +SymbolicLinkReparseBuffer Modules/winreparse.h /^ } SymbolicLinkReparseBuffer;$/;" m union:__anon316::__anon317 typeref:struct:__anon316::__anon317::__anon318 +Symbols Lib/lib2to3/pygram.py /^class Symbols(object):$/;" c +SymlinkLoopGlobTests Lib/test/test_glob.py /^class SymlinkLoopGlobTests(unittest.TestCase):$/;" c +SymtableTest Lib/test/test_symtable.py /^class SymtableTest(unittest.TestCase):$/;" c +SyncAsyncExitStack Lib/test/test_contextlib_async.py /^ class SyncAsyncExitStack(AsyncExitStack):$/;" c class:TestAsyncExitStack +SyncManager Lib/multiprocessing/managers.py /^class SyncManager(BaseManager):$/;" c +Synchronized Lib/multiprocessing/sharedctypes.py /^class Synchronized(SynchronizedBase):$/;" c +SynchronizedArray Lib/multiprocessing/sharedctypes.py /^class SynchronizedArray(SynchronizedBase):$/;" c +SynchronizedBase Lib/multiprocessing/sharedctypes.py /^class SynchronizedBase(object):$/;" c +SynchronizedHTTPSConnection Lib/test/test_ssl.py /^ class SynchronizedHTTPSConnection(http.client.HTTPSConnection):$/;" c function:TestPreHandshakeClose.test_https_client_non_tls_response_ignored +SynchronizedString Lib/multiprocessing/sharedctypes.py /^class SynchronizedString(SynchronizedArray):$/;" c +SyntaxErr Lib/xml/dom/__init__.py /^class SyntaxErr(DOMException):$/;" c +SyntaxErrorTests Lib/test/test_cmd_line.py /^class SyntaxErrorTests(unittest.TestCase):$/;" c +SyntaxErrorTests Lib/test/test_exceptions.py /^class SyntaxErrorTests(unittest.TestCase):$/;" c +SyntaxError_clear Objects/exceptions.c /^SyntaxError_clear(PySyntaxErrorObject *self)$/;" f file: +SyntaxError_dealloc Objects/exceptions.c /^SyntaxError_dealloc(PySyntaxErrorObject *self)$/;" f file: +SyntaxError_init Objects/exceptions.c /^SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds)$/;" f file: +SyntaxError_members Objects/exceptions.c /^static PyMemberDef SyntaxError_members[] = {$/;" v file: +SyntaxError_str Objects/exceptions.c /^SyntaxError_str(PySyntaxErrorObject *self)$/;" f file: +SyntaxError_traverse Objects/exceptions.c /^SyntaxError_traverse(PySyntaxErrorObject *self, visitproc visit, void *arg)$/;" f file: +SyntaxTestCase Lib/test/test_syntax.py /^class SyntaxTestCase(unittest.TestCase):$/;" c +SysLogHandler Lib/logging/handlers.py /^class SysLogHandler(logging.Handler):$/;" c +SysLogHandlerTest Lib/test/test_logging.py /^class SysLogHandlerTest(BaseTest):$/;" c +SysModuleTest Lib/test/test_sys.py /^class SysModuleTest(unittest.TestCase):$/;" c +SystemExit_clear Objects/exceptions.c /^SystemExit_clear(PySystemExitObject *self)$/;" f file: +SystemExit_dealloc Objects/exceptions.c /^SystemExit_dealloc(PySystemExitObject *self)$/;" f file: +SystemExit_init Objects/exceptions.c /^SystemExit_init(PySystemExitObject *self, PyObject *args, PyObject *kwds)$/;" f file: +SystemExit_members Objects/exceptions.c /^static PyMemberDef SystemExit_members[] = {$/;" v file: +SystemExit_traverse Objects/exceptions.c /^SystemExit_traverse(PySystemExitObject *self, visitproc visit, void *arg)$/;" f file: +SystemRandom Lib/random.py /^class SystemRandom(Random):$/;" c +SystemRandom_TestBasicOps Lib/test/test_random.py /^class SystemRandom_TestBasicOps(TestBasicOps, unittest.TestCase):$/;" c +SystemRandom_available Lib/test/test_random.py /^ SystemRandom_available = False$/;" v +SystemRandom_available Lib/test/test_random.py /^ SystemRandom_available = True$/;" v +SystemTapBackend Lib/test/test_dtrace.py /^class SystemTapBackend(TraceBackend):$/;" c +SystemTapNormalTests Lib/test/test_dtrace.py /^class SystemTapNormalTests(TraceTests, unittest.TestCase):$/;" c +SystemTapOptimizedTests Lib/test/test_dtrace.py /^class SystemTapOptimizedTests(TraceTests, unittest.TestCase):$/;" c +SystemType Tools/c-analyzer/c_analyzer/info.py /^class SystemType(TypeDeclaration):$/;" c +T Lib/encodings/punycode.py /^def T(j, bias):$/;" f +T Lib/test/_typed_dict_helper.py /^T = TypeVar("T")$/;" v +T Lib/test/datetimetester.py /^ class T(timedelta):$/;" c function:TestTimeDelta.test_subclass_timedelta +T Lib/test/leakers/test_selftype.py /^ class T(type):$/;" c function:leak +T Lib/test/mod_generics_cache.py /^T = TypeVar('T')$/;" v +T Lib/test/seq_tests.py /^ class T(self.type2test):$/;" c function:CommonTest.test_getitemoverwriteiter +T Lib/test/test_ctypes/test_arrays.py /^ class T(Array):$/;" c function:ArrayTestCase.test_bad_length +T Lib/test/test_ctypes/test_arrays.py /^ class T(Array):$/;" c function:ArrayTestCase.test_bad_subclass +T Lib/test/test_ctypes/test_arrays.py /^ class T(Array):$/;" c function:ArrayTestCase.test_subclass +T Lib/test/test_ctypes/test_arrays.py /^ class T(Array):$/;" c function:ArrayTestCase.test_zero_length +T Lib/test/test_ctypes/test_byteswap.py /^ class T(BigEndianStructure if sys.byteorder == "little" else LittleEndianStructure):$/;" c function:Test.test_struct_fields_unsupported_byte_order +T Lib/test/test_ctypes/test_byteswap.py /^ class T(BigEndianUnion if sys.byteorder == "little" else LittleEndianUnion):$/;" c function:Test.test_union_fields_unsupported_byte_order +T Lib/test/test_dataclasses.py /^ class T(namedtuple('Tbase', 'a')):$/;" c function:TestCase.test_helper_asdict_namedtuple_derived +T Lib/test/test_descr.py /^ class T(tuple):$/;" c function:.test_slices +T Lib/test/test_descr.py /^ class T(type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +T Lib/test/test_functools.py /^ class T(S, c.Sized):$/;" c function:TestSingleDispatch.test_mro_conflicts +T Lib/test/test_functools.py /^ class T(tuple):$/;" c function:TestLRU.test_lru_cache_typed_is_not_recursive +T Lib/test/test_genericalias.py /^T = TypeVar('T')$/;" v +T Lib/test/test_inspect.py /^ class T: pass$/;" c function:TestGetClosureVars.test_getclosurevars_error +T Lib/test/test_math.py /^ class T(tuple):$/;" c function:MathTests.testDist +T Lib/test/test_operator.py /^ class T(tuple):$/;" c function:OperatorTestCase.test_itemgetter +T Lib/test/test_symtable.py /^ T = find_block(GenericMine, "T")$/;" v class:SymtableTest +T Lib/test/test_traceback.py /^ class T:$/;" c function:SuggestionFormattingTestBase.test_attribute_error_with_failing_dict +T Lib/test/test_tuple.py /^ class T(tuple): pass$/;" c function:TupleTest.test_no_comdat_folding +T Lib/test/test_type_aliases.py /^T = TypeVar('T')$/;" v +T Lib/test/test_type_params.py /^ T = int$/;" v class:TypeParamsClassScopeTest.test_alias.X +T Lib/test/test_type_params.py /^ T = int$/;" v class:TypeParamsClassScopeTest.test_bound.X +T Lib/test/test_type_params.py /^ T = int$/;" v class:TypeParamsClassScopeTest.test_modified_later.X +T Lib/test/test_type_params.py /^T = TypeVar('T')$/;" v +T Lib/test/test_types.py /^T = typing.TypeVar("T")$/;" v +T Lib/test/test_unicode_identifiers.py /^ class T:$/;" c function:PEP3131Test.test_valid +T Lib/test/test_userlist.py /^ class T(self.type2test):$/;" c function:UserListTest.test_getitemoverwriteiter +T Lib/test/test_xmlrpc.py /^ class T(object):$/;" c function:XMLRPCTestCase.test_newstyle_class +T Lib/typing.py /^T = TypeVar('T') # Any type.$/;" v +T Tools/peg_generator/pegen/parser.py /^T = TypeVar("T")$/;" v +T1 Lib/test/test_typing.py /^ class T1(Tuple[T, KT]): ...$/;" c function:GenericTests.test_extended_generic_rules_subclassing +T2 Lib/test/test_typing.py /^ class T2(Tuple[T, ...]): ...$/;" c function:GenericTests.test_extended_generic_rules_subclassing +TAB Lib/curses/ascii.py /^TAB = 0x09 # ^I$/;" v +TAB Lib/idlelib/autocomplete.py /^TAB = False, True, True, None # Tab.$/;" v +TABLES_LOCK Python/tracemalloc.c 37;" d file: +TABLES_LOCK Python/tracemalloc.c 41;" d file: +TABLES_UNLOCK Python/tracemalloc.c 38;" d file: +TABLES_UNLOCK Python/tracemalloc.c 42;" d file: +TABLE_HEAD Python/hashtable.c 57;" d file: +TABLE_MASK Objects/stringlib/fastsearch.h 313;" d +TABLE_MASK Objects/stringlib/fastsearch.h 543;" d +TABLE_SECTIONS Tools/c-analyzer/c_analyzer/__main__.py /^TABLE_SECTIONS = {$/;" v +TABLE_SIZE Objects/stringlib/fastsearch.h 312;" d +TABLE_SIZE Objects/stringlib/fastsearch.h 542;" d +TABLE_SIZE_BITS Objects/stringlib/fastsearch.h 311;" d +TABLE_SIZE_BITS Objects/stringlib/fastsearch.h 541;" d +TABSIZE Parser/asdl_c.py /^TABSIZE = 4$/;" v +TABSIZE Parser/tokenizer.c 32;" d file: +TACITURN Lib/test/test_logging.py /^TACITURN = 119$/;" v +TAG Modules/expat/xmlparse.c /^} TAG;$/;" t typeref:struct:tag file: +TAG Python/sysmodule.c 3047;" d file: +TAG Python/sysmodule.c 3052;" d file: +TAGWIDTH PC/launcher2.c 2205;" d file: +TAG_FROM_SIGN_AND_SIZE Include/internal/pycore_long.h 214;" d +TAG_NAME Modules/expat/xmlparse.c /^} TAG_NAME;$/;" t typeref:struct:__anon610 file: +TAKEN_FROM_ARGUMENT1 Lib/pickletools.py /^TAKEN_FROM_ARGUMENT1 = -2 # num bytes is 1-byte unsigned int$/;" v +TAKEN_FROM_ARGUMENT4 Lib/pickletools.py /^TAKEN_FROM_ARGUMENT4 = -3 # num bytes is 4-byte signed little-endian int$/;" v +TAKEN_FROM_ARGUMENT4U Lib/pickletools.py /^TAKEN_FROM_ARGUMENT4U = -4 # num bytes is 4-byte unsigned little-endian int$/;" v +TAKEN_FROM_ARGUMENT8U Lib/pickletools.py /^TAKEN_FROM_ARGUMENT8U = -5 # num bytes is 8-byte unsigned little-endian int$/;" v +TALKATIVE Lib/test/test_logging.py /^TALKATIVE = 114$/;" v +TALOS_INVALID_CRLDP Lib/test/test_ssl.py /^TALOS_INVALID_CRLDP = data_file("talos-2019-0758.pem")$/;" v +TARGET Modules/_sre/sre_lib.h 546;" d +TARGET Modules/_sre/sre_lib.h 553;" d +TARGET Python/ceval_macros.h 75;" d +TARGET Python/ceval_macros.h 78;" d +TARGET Python/generated_cases.c.h /^ TARGET(BEFORE_ASYNC_WITH) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BEFORE_WITH) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_ADD_FLOAT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_ADD_INT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_ADD_UNICODE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_INPLACE_ADD_UNICODE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_MULTIPLY_FLOAT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_MULTIPLY_INT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_SUBTRACT_FLOAT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_OP_SUBTRACT_INT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_SLICE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_SUBSCR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_SUBSCR_DICT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_SUBSCR_GETITEM) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_SUBSCR_LIST_INT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BINARY_SUBSCR_TUPLE_INT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BUILD_CONST_KEY_MAP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BUILD_LIST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BUILD_MAP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BUILD_SET) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BUILD_SLICE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BUILD_STRING) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(BUILD_TUPLE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CACHE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_BOUND_METHOD_EXACT_ARGS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_BUILTIN_CLASS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_BUILTIN_FAST_WITH_KEYWORDS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_FUNCTION_EX) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_INTRINSIC_1) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_INTRINSIC_2) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_BUILTIN_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_BUILTIN_O) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_ISINSTANCE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_LEN) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_LIST_APPEND) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_METHOD_DESCRIPTOR_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_METHOD_DESCRIPTOR_NOARGS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_METHOD_DESCRIPTOR_O) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_STR_1) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_TUPLE_1) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_NO_KW_TYPE_1) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_PY_EXACT_ARGS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CALL_PY_WITH_DEFAULTS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CHECK_EG_MATCH) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CHECK_EXC_MATCH) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CLEANUP_THROW) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(COMPARE_OP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(COMPARE_OP_FLOAT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(COMPARE_OP_INT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(COMPARE_OP_STR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(CONTAINS_OP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(COPY) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(COPY_FREE_VARS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DELETE_ATTR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DELETE_DEREF) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DELETE_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DELETE_GLOBAL) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DELETE_NAME) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DELETE_SUBSCR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DICT_MERGE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(DICT_UPDATE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(END_ASYNC_FOR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(END_FOR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(END_SEND) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(EXTENDED_ARG) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(FORMAT_VALUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(FOR_ITER) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(FOR_ITER_GEN) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(FOR_ITER_LIST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(FOR_ITER_RANGE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(FOR_ITER_TUPLE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(GET_AITER) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(GET_ANEXT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(GET_AWAITABLE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(GET_ITER) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(GET_LEN) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(GET_YIELD_FROM_ITER) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(IMPORT_FROM) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(IMPORT_NAME) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_CALL) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_CALL_FUNCTION_EX) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_END_FOR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_END_SEND) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_FOR_ITER) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_INSTRUCTION) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_JUMP_BACKWARD) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_JUMP_FORWARD) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_LOAD_SUPER_ATTR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_POP_JUMP_IF_FALSE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_POP_JUMP_IF_NONE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_POP_JUMP_IF_NOT_NONE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_POP_JUMP_IF_TRUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_RESUME) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_RETURN_CONST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_RETURN_VALUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INSTRUMENTED_YIELD_VALUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(INTERPRETER_EXIT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(IS_OP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(JUMP_BACKWARD) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(JUMP_BACKWARD_NO_INTERRUPT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(JUMP_FORWARD) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(KW_NAMES) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LIST_APPEND) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LIST_EXTEND) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ASSERTION_ERROR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_CLASS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_INSTANCE_VALUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_METHOD_LAZY_DICT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_METHOD_NO_DICT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_METHOD_WITH_VALUES) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_MODULE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_PROPERTY) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_SLOT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_ATTR_WITH_HINT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_BUILD_CLASS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_CLOSURE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_CONST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_CONST__LOAD_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_DEREF) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_FAST_AND_CLEAR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_FAST_CHECK) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_FAST__LOAD_CONST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_FAST__LOAD_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_FROM_DICT_OR_DEREF) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_FROM_DICT_OR_GLOBALS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_GLOBAL) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_GLOBAL_BUILTIN) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_GLOBAL_MODULE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_LOCALS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_NAME) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_SUPER_ATTR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_SUPER_ATTR_ATTR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(LOAD_SUPER_ATTR_METHOD) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(MAKE_CELL) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(MAKE_FUNCTION) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(MAP_ADD) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(MATCH_CLASS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(MATCH_KEYS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(MATCH_MAPPING) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(MATCH_SEQUENCE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(NOP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(POP_EXCEPT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(POP_JUMP_IF_FALSE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(POP_JUMP_IF_NONE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(POP_JUMP_IF_NOT_NONE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(POP_JUMP_IF_TRUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(POP_TOP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(PUSH_EXC_INFO) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(PUSH_NULL) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(RAISE_VARARGS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(RERAISE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(RESERVED) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(RESUME) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(RETURN_CONST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(RETURN_GENERATOR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(RETURN_VALUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(SEND) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(SEND_GEN) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(SETUP_ANNOTATIONS) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(SET_ADD) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(SET_UPDATE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_ATTR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_ATTR_INSTANCE_VALUE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_ATTR_SLOT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_ATTR_WITH_HINT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_DEREF) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_FAST__LOAD_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_FAST__STORE_FAST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_GLOBAL) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_NAME) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_SLICE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_SUBSCR) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_SUBSCR_DICT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(STORE_SUBSCR_LIST_INT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(SWAP) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNARY_INVERT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNARY_NEGATIVE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNARY_NOT) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNPACK_EX) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNPACK_SEQUENCE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNPACK_SEQUENCE_LIST) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNPACK_SEQUENCE_TUPLE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(UNPACK_SEQUENCE_TWO_TUPLE) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(WITH_EXCEPT_START) {$/;" f +TARGET Python/generated_cases.c.h /^ TARGET(YIELD_VALUE) {$/;" f +TARGET Tools/msi/buildrelease.bat /^if "%1" EQU "--build" (set TARGET=Build) && shift && goto CheckOpts$/;" v +TARGET Tools/msi/buildrelease.bat /^if "%1" EQU "-b" (set TARGET=Build) && shift && goto CheckOpts$/;" v +TARGET Tools/msi/buildrelease.bat /^set TARGET=Rebuild$/;" v +TARGET Tools/msi/uploadrelease.bat /^if "%1" EQU "--target" (set TARGET=%~2) && shift && shift && goto CheckOpts$/;" v +TARGET Tools/msi/uploadrelease.bat /^if "%1" EQU "-t" (set TARGET=%~2) && shift && shift && goto CheckOpts$/;" v +TARGET Tools/msi/uploadrelease.bat /^set TARGET=$/;" v +TARGETDIR Tools/msi/testrelease.bat /^if "%1" EQU "--target" (set TARGETDIR=%~2) && shift && shift && goto CheckOpts$/;" v +TARGETDIR Tools/msi/testrelease.bat /^if "%1" EQU "-t" (set TARGETDIR=%~2) && shift && shift && goto CheckOpts$/;" v +TARGETDIR Tools/msi/testrelease.bat /^set TARGETDIR=%TEMP%$/;" v +TARGETS_TYPE Parser/pegen.h /^} TARGETS_TYPE;$/;" t typeref:enum:__anon667 +TARGET_LOCALES Lib/test/test_c_locale_coercion.py /^TARGET_LOCALES = ["C.UTF-8", "C.utf8", "UTF-8"]$/;" v +TASK_TIMEOUT Lib/test/test_asyncio/test_waitfor.py /^ TASK_TIMEOUT = 0.2$/;" v class:SlowTask +TAU Lib/test/test_json/test_enum.py /^TAU = 2 * PI$/;" v +TB_RECURSIVE_CUTOFF Python/traceback.c /^static const int TB_RECURSIVE_CUTOFF = 3; \/\/ Also hardcoded in traceback.py.$/;" v file: +TBase Modules/unicodedata.c 486;" d file: +TC Lib/idlelib/idle_test/test_calltip.py /^class TC:$/;" c +TCLTK_DIRS_ONLY PC/layout/main.py /^TCLTK_DIRS_ONLY = FileNameSet("tkinter", "turtledemo")$/;" v +TCLTK_FILES_ONLY PC/layout/main.py /^TCLTK_FILES_ONLY = FileNameSet("turtle.py")$/;" v +TCLTK_PYDS_ONLY PC/layout/main.py /^TCLTK_PYDS_ONLY = FileStemSet("tcl*", "tk*", "_tkinter", "zlib1")$/;" v +TCL_ALL_EVENTS Lib/tkinter/tix.py /^TCL_ALL_EVENTS = 0$/;" v +TCL_DONT_WAIT Lib/tkinter/tix.py /^TCL_DONT_WAIT = 1 << 1$/;" v +TCL_FILE_EVENTS Lib/tkinter/tix.py /^TCL_FILE_EVENTS = 1 << 3$/;" v +TCL_IDLE_EVENTS Lib/tkinter/tix.py /^TCL_IDLE_EVENTS = 1 << 5$/;" v +TCL_LIBRARY Tools/msi/testrelease.bat /^ @set TCL_LIBRARY=$/;" v +TCL_LIBRARY Tools/msi/testrelease.bat /^ @set TCL_LIBRARY=%~2\\Python\\tcl\\tcl8.6$/;" v +TCL_NO_TOMMATH_H Modules/_tkinter.c 64;" d file: +TCL_THREADS Modules/_tkinter.c 47;" d file: +TCL_TIMER_EVENTS Lib/tkinter/tix.py /^TCL_TIMER_EVENTS = 1 << 4$/;" v +TCL_UNIX_FD Modules/_tkinter.c 84;" d file: +TCL_UNIX_FD Modules/_tkinter.c 86;" d file: +TCL_WINDOW_EVENTS Lib/tkinter/tix.py /^TCL_WINDOW_EVENTS = 1 << 2$/;" v +TCPCloserTest Lib/test/test_socket.py /^class TCPCloserTest(ThreadedTCPSocketTest):$/;" c +TCPServer Lib/socketserver.py /^class TCPServer(BaseServer):$/;" c +TCPTestBase Lib/test/test_socket.py /^class TCPTestBase(InetTestBase):$/;" c +TCPTimeoutTest Lib/test/test_socket.py /^class TCPTimeoutTest(SocketTCPTest):$/;" c +TCPTimeoutTestCase Lib/test/test_timeout.py /^class TCPTimeoutTestCase(TimeoutTestCase):$/;" c +TCount Modules/unicodedata.c 489;" d file: +TD Lib/test/test_typing.py /^ class TD(TypedDict):$/;" c function:TypedDictTests.test_non_generic_subscript +TELNET_PORT Lib/telnetlib.py /^TELNET_PORT = 23$/;" v +TEMP Tools/buildbot/test.bat /^ssh %SSH_SERVER% "set TEMP=%REMOTE_PYTHON_DIR%temp& cd %REMOTE_PYTHON_DIR% & %REMOTE_PYTHON_DIR%PCbuild\\rt.bat" %rt_args%$/;" v +TEMPDIR Lib/test/test_gzip.py /^TEMPDIR = os.path.abspath(os_helper.TESTFN) + '-gzdir'$/;" v +TEMPDIR Lib/test/test_tarfile.py /^TEMPDIR = os.path.abspath(os_helper.TESTFN) + "-tardir"$/;" v +TEMPORARY_REDIRECT Lib/http/__init__.py /^ TEMPORARY_REDIRECT = (307, 'Temporary Redirect',$/;" v class:HTTPStatus +TEMPORARY_REDIRECT Lib/test/test_httplib.py /^ TEMPORARY_REDIRECT = (307, 'Temporary Redirect',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +TEMP_ARGS Tools/buildbot/test.bat /^set TEMP_ARGS=--temp %REMOTE_PYTHON_DIR%temp$/;" v +TEMP_DIR Lib/test/test_zipimport.py /^TEMP_DIR = os.path.abspath("junk95142")$/;" v +TEMP_DIR Lib/test/test_zoneinfo/test_zoneinfo.py /^TEMP_DIR = None$/;" v +TEMP_ZIP Lib/test/test_zipimport.py /^TEMP_ZIP = os.path.abspath("junk95142.zip")$/;" v +TERM Lib/ast.py /^ TERM = auto() # '*', '@', '\/', '%', '\/\/'$/;" v class:_Precedence +TERM Lib/test/test_ast.py /^ TERM = enum.auto() # '*', '@', '\/', '%', '\/\/'$/;" v class:AST_Tests.test_precedence_enum._Precedence +TERMINATE Lib/multiprocessing/pool.py /^TERMINATE = "TERMINATE"$/;" v +TERMINATE Lib/multiprocessing/popen_spawn_win32.py /^TERMINATE = 0x10000$/;" v +TERMINATED Lib/test/test_enum.py /^ TERMINATED = "terminated"$/;" v class:TestSpecial.test_multiple_mixin_with_common_data_type.JobStatus +TERMIOS_TCDRAIN_METHODDEF Modules/clinic/termios.c.h 133;" d +TERMIOS_TCFLOW_METHODDEF Modules/clinic/termios.c.h 203;" d +TERMIOS_TCFLUSH_METHODDEF Modules/clinic/termios.c.h 164;" d +TERMIOS_TCGETATTR_METHODDEF Modules/clinic/termios.c.h 24;" d +TERMIOS_TCGETWINSIZE_METHODDEF Modules/clinic/termios.c.h 240;" d +TERMIOS_TCSENDBREAK_METHODDEF Modules/clinic/termios.c.h 98;" d +TERMIOS_TCSETATTR_METHODDEF Modules/clinic/termios.c.h 58;" d +TERMIOS_TCSETWINSIZE_METHODDEF Modules/clinic/termios.c.h 270;" d +TERMSIZE_USE_CONIO Modules/posixmodule.c 328;" d file: +TERMSIZE_USE_IOCTL Modules/posixmodule.c 335;" d file: +TERSE Lib/test/test_logging.py /^TERSE = 118$/;" v +TEST Lib/ast.py /^ TEST = auto() # 'if'-'else', 'lambda'$/;" v class:_Precedence +TEST Lib/test/test_ast.py /^ TEST = enum.auto() # 'if'-'else', 'lambda'$/;" v class:AST_Tests.test_precedence_enum._Precedence +TEST Lib/test/test_enum.py /^ TEST = 1$/;" v class:TestSpecial.test_multiple_mixin_inherited.Fee +TEST Lib/test/test_enum.py /^ TEST = 1$/;" v class:TestSpecial.test_multiple_mixin_inherited.Foo +TESTALLUSER Tools/msi/testrelease.bat /^if "%1" EQU "--alluser" (set TESTALLUSER=1) && shift && goto CheckOpts$/;" v +TESTALLUSER Tools/msi/testrelease.bat /^if "%1" EQU "-a" (set TESTALLUSER=1) && shift && goto CheckOpts$/;" v +TESTALLUSER Tools/msi/testrelease.bat /^if not defined TESTALLUSER if not defined TESTPERUSER (set TESTALLUSER=1) && (set TESTPERUSER=1)$/;" v +TESTALLUSER Tools/msi/testrelease.bat /^set TESTALLUSER=$/;" v +TESTCASES Modules/_decimal/tests/randfloat.py /^TESTCASES = [$/;" v +TESTCMD Lib/pdb.py /^TESTCMD = 'import x; x.main()'$/;" v +TESTDATA Lib/test/test_plistlib.py /^TESTDATA={$/;" v +TESTDATADIR Lib/test/test_decimal.py /^TESTDATADIR = 'decimaltestdata'$/;" v +TESTDIR Tools/peg_generator/Makefile /^TESTDIR = .$/;" m +TESTFILE Tools/peg_generator/Makefile /^TESTFILE = data\/cprog.py$/;" m +TESTFLAGS Tools/peg_generator/Makefile /^TESTFLAGS = --short$/;" m +TESTFN Lib/test/support/os_helper.py /^TESTFN = TESTFN_NONASCII or TESTFN_ASCII$/;" v +TESTFN Lib/test/test_support.py /^TESTFN = os_helper.TESTFN$/;" v +TESTFN Lib/test/test_zipfile64.py /^TESTFN = os_helper.TESTFN$/;" v +TESTFN2 Lib/test/test_largefile.py /^TESTFN2 = TESTFN + '2'$/;" v +TESTFN2 Lib/test/test_pipes.py /^TESTFN2 = TESTFN + "2"$/;" v +TESTFN2 Lib/test/test_shutil.py /^TESTFN2 = TESTFN + "2"$/;" v +TESTFN2 Lib/test/test_zipfile/test_core.py /^TESTFN2 = TESTFN + "2"$/;" v +TESTFN2 Lib/test/test_zipfile64.py /^TESTFN2 = TESTFN + "2"$/;" v +TESTFNDIR Lib/test/test_zipfile/test_core.py /^TESTFNDIR = TESTFN + "d"$/;" v +TESTFN_ASCII Lib/test/support/os_helper.py /^TESTFN_ASCII = "{}_{}_tmp".format(TESTFN_ASCII, os.getpid())$/;" v +TESTFN_ASCII Lib/test/support/os_helper.py /^TESTFN_ASCII = '@test'$/;" v +TESTFN_DST Lib/test/test_shutil.py /^TESTFN_DST = TESTFN + "_DST"$/;" v +TESTFN_NONASCII Lib/test/support/os_helper.py /^ TESTFN_NONASCII = None$/;" v +TESTFN_NONASCII Lib/test/support/os_helper.py /^ TESTFN_NONASCII = TESTFN_ASCII + FS_NONASCII$/;" v +TESTFN_SRC Lib/test/test_shutil.py /^TESTFN_SRC = TESTFN + "_SRC"$/;" v +TESTFN_UNDECODABLE Lib/test/support/os_helper.py /^ TESTFN_UNDECODABLE = os.fsencode(TESTFN_ASCII) + name$/;" v +TESTFN_UNDECODABLE Lib/test/support/os_helper.py /^TESTFN_UNDECODABLE = None$/;" v +TESTFN_UNENCODABLE Lib/test/support/os_helper.py /^ + b'-\\xff'.decode(sys.getfilesystemencoding(), 'surrogateescape')$/;" v +TESTFN_UNENCODABLE Lib/test/support/os_helper.py /^ TESTFN_UNENCODABLE = None$/;" v +TESTFN_UNENCODABLE Lib/test/support/os_helper.py /^ TESTFN_UNENCODABLE = TESTFN_ASCII + "-\\u5171\\u0141\\u2661\\u0363\\uDC80"$/;" v +TESTFN_UNENCODABLE Lib/test/support/os_helper.py /^TESTFN_UNENCODABLE = None$/;" v +TESTFN_UNICODE Lib/test/support/os_helper.py /^ TESTFN_UNICODE = unicodedata.normalize('NFD', TESTFN_UNICODE)$/;" v +TESTFN_UNICODE Lib/test/support/os_helper.py /^TESTFN_UNICODE = TESTFN_ASCII + "-\\xe0\\xf2\\u0258\\u0141\\u011f"$/;" v +TESTMOD Lib/test/test_zipimport.py /^TESTMOD = "ziptestmodule"$/;" v +TESTNAME Modules/_testcapi/long.c 34;" d file: +TESTNAME Modules/_testcapi/long.c 49;" d file: +TESTNAME Modules/_testcapi/long.c 62;" d file: +TESTNAME Modules/_testcapi/long.c 77;" d file: +TESTNAME_PREFIX Lib/test/test_regrtest.py /^ TESTNAME_PREFIX = 'test_regrtest_'$/;" v class:BaseTestCase +TESTNAME_REGEX Lib/test/test_regrtest.py /^ TESTNAME_REGEX = r'test_[a-zA-Z0-9_]+'$/;" v class:BaseTestCase +TESTPACK Lib/test/test_zipimport.py /^TESTPACK = "ziptestpackage"$/;" v +TESTPACK2 Lib/test/test_zipimport.py /^TESTPACK2 = "ziptestpackage2"$/;" v +TESTPERUSER Tools/msi/testrelease.bat /^if "%1" EQU "--peruser" (set TESTPERUSER=1) && shift && goto CheckOpts$/;" v +TESTPERUSER Tools/msi/testrelease.bat /^if "%1" EQU "-p" (set TESTPERUSER=1) && shift && goto CheckOpts$/;" v +TESTPERUSER Tools/msi/testrelease.bat /^set TESTPERUSER=$/;" v +TESTS Lib/test/ssltests.py /^TESTS = [$/;" v +TESTS Lib/test/test_datetime.py /^TESTS = 'test.datetimetester'$/;" v +TESTS_DIR Tools/freeze/test/freeze.py /^TESTS_DIR = os.path.dirname(__file__)$/;" v +TESTS_SECTION Tools/build/freeze_modules.py /^TESTS_SECTION = 'Test module'$/;" v +TESTTARGETDIR Tools/msi/buildrelease.bat /^if "%1" EQU "--test" (set TESTTARGETDIR=%~2) && shift && shift && goto CheckOpts$/;" v +TESTTARGETDIR Tools/msi/buildrelease.bat /^set TESTTARGETDIR=$/;" v +TESTX64 Tools/msi/testrelease.bat /^if "%1" EQU "-x64" (set TESTX64=1) && shift && goto CheckOpts$/;" v +TESTX64 Tools/msi/testrelease.bat /^set TESTX64=$/;" v +TESTX86 Tools/msi/testrelease.bat /^if "%1" EQU "-x86" (set TESTX86=1) && shift && goto CheckOpts$/;" v +TESTX86 Tools/msi/testrelease.bat /^if not defined TESTX86 if not defined TESTX64 (set TESTX86=1) && (set TESTX64=1)$/;" v +TESTX86 Tools/msi/testrelease.bat /^set TESTX86=$/;" v +TEST_ALL Lib/test/test_decimal.py /^TEST_ALL = True$/;" v +TEST_AN_METHO_ARG_NAMED_ARG_METHODDEF Lib/test/clinic.test.c 4698;" d file: +TEST_BOOL_CONVERTER_METHODDEF Lib/test/clinic.test.c 443;" d file: +TEST_CHAR_CONVERTER_METHODDEF Lib/test/clinic.test.c 521;" d file: +TEST_CLASS_METHOD_METHODDEF Lib/test/clinic.test.c 4888;" d file: +TEST_CLS_NO_PARAMS_METHODDEF Lib/test/clinic.test.c 4623;" d file: +TEST_CLS_WITH_PARAM_METHODDEF Lib/test/clinic.test.c 4474;" d file: +TEST_DATA Lib/test/test_launcher.py /^TEST_DATA = {$/;" v +TEST_DATA_DIR Lib/test/support/__init__.py /^TEST_DATA_DIR = os.path.join(TEST_HOME_DIR, "data")$/;" v +TEST_DATA_DIR Lib/test/test_lib2to3/test_main.py /^TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), "data")$/;" v +TEST_DATA_DIR Lib/test/test_lib2to3/test_refactor.py /^TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), "data")$/;" v +TEST_DATA_LOC Lib/test/test_zoneinfo/data/update_test_data.py /^TEST_DATA_LOC = pathlib.Path(__file__).parent$/;" v +TEST_DIRS_ONLY PC/layout/main.py /^TEST_DIRS_ONLY = FileNameSet("test", "tests")$/;" v +TEST_DOUBLE_CONVERTER_METHODDEF Lib/test/clinic.test.c 1611;" d file: +TEST_EMPTY_FUNCTION_METHODDEF Modules/clinic/_testclinic.c.h 16;" d +TEST_FILES Lib/test/test_imghdr.py /^TEST_FILES = ($/;" v +TEST_FILES Lib/test/test_tempfile.py /^ TEST_FILES = 100$/;" v +TEST_FILES Lib/test/test_tempfile.py /^ TEST_FILES = 48$/;" v +TEST_FLOAT_CONVERTER_METHODDEF Lib/test/clinic.test.c 1558;" d file: +TEST_HOME_DIR Lib/test/support/__init__.py /^TEST_HOME_DIR = os.path.dirname(TEST_SUPPORT_DIR)$/;" v +TEST_HTTP_URL Lib/test/support/__init__.py /^TEST_HTTP_URL = "http:\/\/www.pythontest.net"$/;" v +TEST_INT_CONVERTER_METHODDEF Lib/test/clinic.test.c 992;" d file: +TEST_KEYWORDS_KWONLY_METHODDEF Lib/test/clinic.test.c 2038;" d file: +TEST_KEYWORDS_KWONLY_OPT_METHODDEF Lib/test/clinic.test.c 2290;" d file: +TEST_KEYWORDS_METHODDEF Lib/test/clinic.test.c 1968;" d file: +TEST_KEYWORDS_OPT_KWONLY_METHODDEF Lib/test/clinic.test.c 2194;" d file: +TEST_KEYWORDS_OPT_METHODDEF Lib/test/clinic.test.c 2108;" d file: +TEST_KEYWORD_ONLY_PARAMETER_METHODDEF Lib/test/clinic.test.c 3640;" d file: +TEST_LONG_CONVERTER_METHODDEF Lib/test/clinic.test.c 1136;" d file: +TEST_LONG_LONG_CONVERTER_METHODDEF Lib/test/clinic.test.c 1249;" d file: +TEST_METHO_NOT_DEFAULT_RETURN_CONVERTER_METHODDEF Lib/test/clinic.test.c 4655;" d file: +TEST_METH_COEXIST_METHODDEF Lib/test/clinic.test.c 4942;" d file: +TEST_MODULE Lib/test/test_bdb.py /^TEST_MODULE = 'test_module_for_bdb'$/;" v +TEST_MODULE_DEF Modules/_testmultiphase.c 430;" d file: +TEST_MODULE_FNAME Lib/test/test_bdb.py /^TEST_MODULE_FNAME = TEST_MODULE + '.py'$/;" v +TEST_OBJECTS_CONVERTER_METHODDEF Lib/test/clinic.test.c 155;" d file: +TEST_OBJECT_CONVERTER_METHODDEF Lib/test/clinic.test.c 27;" d file: +TEST_OBJECT_CONVERTER_ONE_ARG_METHODDEF Lib/test/clinic.test.c 133;" d file: +TEST_OBJECT_CONVERTER_SUBCLASS_OF_METHODDEF Lib/test/clinic.test.c 211;" d file: +TEST_PARAMNAME_MODULE_METHODDEF Lib/test/clinic.test.c 4239;" d file: +TEST_PATH Lib/test/test_linecache.py /^TEST_PATH = os.path.dirname(__file__)$/;" v +TEST_POSONLY_KEYWORDS_KWONLY_METHODDEF Lib/test/clinic.test.c 2517;" d file: +TEST_POSONLY_KEYWORDS_KWONLY_OPT2_METHODDEF Lib/test/clinic.test.c 3223;" d file: +TEST_POSONLY_KEYWORDS_KWONLY_OPT_METHODDEF Lib/test/clinic.test.c 3130;" d file: +TEST_POSONLY_KEYWORDS_METHODDEF Lib/test/clinic.test.c 2374;" d file: +TEST_POSONLY_KEYWORDS_OPT2_KWONLY_OPT_METHODDEF Lib/test/clinic.test.c 3418;" d file: +TEST_POSONLY_KEYWORDS_OPT2_METHODDEF Lib/test/clinic.test.c 2680;" d file: +TEST_POSONLY_KEYWORDS_OPT_KWONLY_OPT_METHODDEF Lib/test/clinic.test.c 3314;" d file: +TEST_POSONLY_KEYWORDS_OPT_METHODDEF Lib/test/clinic.test.c 2593;" d file: +TEST_POSONLY_KWONLY_METHODDEF Lib/test/clinic.test.c 2445;" d file: +TEST_POSONLY_KWONLY_OPT2_METHODDEF Lib/test/clinic.test.c 2948;" d file: +TEST_POSONLY_KWONLY_OPT_METHODDEF Lib/test/clinic.test.c 2860;" d file: +TEST_POSONLY_OPT_KEYWORDS_OPT_KWONLY_OPT_METHODDEF Lib/test/clinic.test.c 3528;" d file: +TEST_POSONLY_OPT_KEYWORDS_OPT_METHODDEF Lib/test/clinic.test.c 2766;" d file: +TEST_POSONLY_OPT_KWONLY_OPT_METHODDEF Lib/test/clinic.test.c 3035;" d file: +TEST_PREPROCESSOR_GUARDED_CONDITION_A_METHODDEF Lib/test/clinic.test.c 3788;" d file: +TEST_PREPROCESSOR_GUARDED_CONDITION_A_METHODDEF Lib/test/clinic.test.c 3909;" d file: +TEST_PREPROCESSOR_GUARDED_ELIF_CONDITION_B_METHODDEF Lib/test/clinic.test.c 3806;" d file: +TEST_PREPROCESSOR_GUARDED_ELIF_CONDITION_B_METHODDEF Lib/test/clinic.test.c 3913;" d file: +TEST_PREPROCESSOR_GUARDED_ELSE_METHODDEF Lib/test/clinic.test.c 3824;" d file: +TEST_PREPROCESSOR_GUARDED_ELSE_METHODDEF Lib/test/clinic.test.c 3917;" d file: +TEST_PREPROCESSOR_GUARDED_IFNDEF_CONDITION_C_METHODDEF Lib/test/clinic.test.c 3842;" d file: +TEST_PREPROCESSOR_GUARDED_IFNDEF_CONDITION_C_METHODDEF Lib/test/clinic.test.c 3921;" d file: +TEST_PREPROCESSOR_GUARDED_IFNDEF_NOT_CONDITION_C_METHODDEF Lib/test/clinic.test.c 3860;" d file: +TEST_PREPROCESSOR_GUARDED_IFNDEF_NOT_CONDITION_C_METHODDEF Lib/test/clinic.test.c 3925;" d file: +TEST_PREPROCESSOR_GUARDED_IF_E_OR_F_METHODDEF Lib/test/clinic.test.c 3897;" d file: +TEST_PREPROCESSOR_GUARDED_IF_E_OR_F_METHODDEF Lib/test/clinic.test.c 3933;" d file: +TEST_PREPROCESSOR_GUARDED_IF_WITH_CONTINUATION_METHODDEF Lib/test/clinic.test.c 3878;" d file: +TEST_PREPROCESSOR_GUARDED_IF_WITH_CONTINUATION_METHODDEF Lib/test/clinic.test.c 3929;" d file: +TEST_PYBYTEARRAYOBJECT_CONVERTER_METHODDEF Lib/test/clinic.test.c 356;" d file: +TEST_PYBYTESOBJECT_CONVERTER_METHODDEF Lib/test/clinic.test.c 315;" d file: +TEST_PYDS_ONLY PC/layout/main.py /^TEST_PYDS_ONLY = FileStemSet("xxlimited", "xxlimited_35", "_ctypes_test", "_test*")$/;" v +TEST_PY_BUFFER_CONVERTER_METHODDEF Lib/test/clinic.test.c 1901;" d file: +TEST_PY_COMMANDS Lib/test/test_launcher.py /^TEST_PY_COMMANDS = "\\n".join([$/;" v +TEST_PY_COMPLEX_CONVERTER_METHODDEF Lib/test/clinic.test.c 1664;" d file: +TEST_PY_DEFAULTS Lib/test/test_launcher.py /^TEST_PY_DEFAULTS = "\\n".join([$/;" v +TEST_PY_ENV Lib/test/test_launcher.py /^TEST_PY_ENV = dict($/;" v +TEST_PY_IS Modules/_testcapimodule.c 2426;" d file: +TEST_PY_SSIZE_T_CONVERTER_METHODDEF Lib/test/clinic.test.c 1368;" d file: +TEST_PY_UNICODE_CONVERTER_METHODDEF Lib/test/clinic.test.c 1838;" d file: +TEST_REFCOUNT Modules/_testcapimodule.c 2380;" d file: +TEST_SHORT_CONVERTER_METHODDEF Lib/test/clinic.test.c 862;" d file: +TEST_SIZE Lib/test/test_strtod.py /^TEST_SIZE = 10$/;" v +TEST_SIZE Modules/_decimal/tests/randfloat.py /^TEST_SIZE = 2$/;" v +TEST_SIZE_T_CONVERTER_METHODDEF Lib/test/clinic.test.c 1512;" d file: +TEST_SLICE_INDEX_CONVERTER_METHODDEF Lib/test/clinic.test.c 1450;" d file: +TEST_STATIC_METHOD_METHODDEF Lib/test/clinic.test.c 4915;" d file: +TEST_STR Lib/test/test_socketserver.py /^TEST_STR = b"hello world\\n"$/;" v +TEST_STRING_1 Lib/test/test_pty.py /^TEST_STRING_1 = b"I wish to buy a fish license.\\n"$/;" v +TEST_STRING_2 Lib/test/test_pty.py /^TEST_STRING_2 = b"For my pet fish, Eric.\\n"$/;" v +TEST_STR_CONVERTER_ENCODING_METHODDEF Lib/test/clinic.test.c 1774;" d file: +TEST_STR_CONVERTER_METHODDEF Lib/test/clinic.test.c 1712;" d file: +TEST_SUPPORT_DIR Lib/test/support/__init__.py /^TEST_SUPPORT_DIR = os.path.dirname(os.path.abspath(__file__))$/;" v +TEST_TOOL Lib/test/test_monitoring.py /^TEST_TOOL = 2$/;" v +TEST_TOOL2 Lib/test/test_monitoring.py /^TEST_TOOL2 = 3$/;" v +TEST_TOOL3 Lib/test/test_monitoring.py /^TEST_TOOL3 = 4$/;" v +TEST_UNICODE_CONVERTER_METHODDEF Lib/test/clinic.test.c 397;" d file: +TEST_UNIQUE_ID Lib/test/test_regrtest.py /^ TEST_UNIQUE_ID = 1$/;" v class:BaseTestCase +TEST_UNSIGNED_CHAR_CONVERTER_METHODDEF Lib/test/clinic.test.c 762;" d file: +TEST_UNSIGNED_INT_CONVERTER_METHODDEF Lib/test/clinic.test.c 1073;" d file: +TEST_UNSIGNED_LONG_CONVERTER_METHODDEF Lib/test/clinic.test.c 1185;" d file: +TEST_UNSIGNED_LONG_LONG_CONVERTER_METHODDEF Lib/test/clinic.test.c 1298;" d file: +TEST_UNSIGNED_SHORT_CONVERTER_METHODDEF Lib/test/clinic.test.c 926;" d file: +TEST_VARARG_AND_POSONLY_METHODDEF Lib/test/clinic.test.c 3952;" d file: +TEST_VARARG_METHODDEF Lib/test/clinic.test.c 4001;" d file: +TEST_VARARG_WITH_DEFAULT_METHODDEF Lib/test/clinic.test.c 4072;" d file: +TEST_VARARG_WITH_ONLY_DEFAULTS_METHODDEF Lib/test/clinic.test.c 4155;" d file: +TEST_XMLFILE Lib/test/test_sax.py /^TEST_XMLFILE = findfile("test.xml", subdir="xmltestdata")$/;" v +TEST_XMLFILE_OUT Lib/test/test_sax.py /^TEST_XMLFILE_OUT = findfile("test.xml.out", subdir="xmltestdata")$/;" v +TEXT Lib/test/test_bz2.py /^ TEXT = b''.join(TEXT_LINES)$/;" v class:BaseTest +TEXT Lib/test/test_zlib.py /^ TEXT = HAMLET_SCENE$/;" v class:ZlibDecompressorTest +TEXT Lib/tkinter/tix.py /^TEXT = 'text'$/;" v +TEXT_ENCODING Tools/iobench/iobench.py /^TEXT_ENCODING = 'utf8'$/;" v +TEXT_LINES Lib/test/test_bz2.py /^ TEXT_LINES = [$/;" v class:BaseTest +TEXT_NODE Lib/xml/dom/__init__.py /^ TEXT_NODE = 3$/;" v class:Node +TEXT_NODE Lib/xml/dom/expatbuilder.py /^TEXT_NODE = Node.TEXT_NODE$/;" v +THEORETICAL_MAX_ENTRY_SIZE Python/assemble.c 261;" d file: +THIRD Lib/test/test_enum.py /^ THIRD = 11$/;" v class:TestVerify.test_continuous.Manual.Missing +THIRD Lib/test/test_enum.py /^ THIRD = 11$/;" v class:TestVerify.test_continuous.Manual.StillIncomplete +THIRD Lib/test/test_enum.py /^ THIRD = 16$/;" v class:TestVerify.test_continuous.Manual.Incomplete +THIRD Lib/test/test_enum.py /^ THIRD = 5$/;" v class:TestVerify.test_continuous.Manual +THIRD Lib/test/test_enum.py /^ THIRD = auto()$/;" v class:TestVerify.test_continuous.Auto +THIRD Python/ceval_macros.h 204;" d +THIRD_PARTY_LIBS Mac/BuildScript/build-installer.py /^THIRD_PARTY_LIBS = []$/;" v +THIS Tools/cases_generator/generate_cases.py /^THIS = os.path.relpath(__file__, ROOT).replace(os.path.sep, posixpath.sep)$/;" v +THIS_ENDIAN Lib/test/test_ctypes/test_pep3118.py /^ THIS_ENDIAN = "<"$/;" v +THIS_ENDIAN Lib/test/test_ctypes/test_pep3118.py /^ THIS_ENDIAN = ">"$/;" v +THREAD_JOIN_TIMEOUT Lib/asyncio/constants.py /^THREAD_JOIN_TIMEOUT = 300$/;" v +THREAD_MAX_STACKSIZE Python/thread_nt.h 355;" d +THREAD_MIN_STACKSIZE Python/thread_nt.h 354;" d +THREAD_SET_STACKSIZE Python/thread_nt.h 378;" d +THREAD_SET_STACKSIZE Python/thread_pthread.h 790;" d +THREAD_STACK_MIN Python/thread_pthread.h 73;" d +THREAD_STACK_SIZE Python/thread_pthread.h 36;" d +THREAD_STACK_SIZE Python/thread_pthread.h 51;" d +THREAD_STACK_SIZE Python/thread_pthread.h 52;" d +THREAD_STACK_SIZE Python/thread_pthread.h 55;" d +THREAD_STACK_SIZE Python/thread_pthread.h 56;" d +THREAD_STACK_SIZE Python/thread_pthread.h 64;" d +THREAD_STACK_SIZE Python/thread_pthread.h 65;" d +THREAD_STACK_SIZE Python/thread_pthread.h 69;" d +THREAD_STACK_SIZE Python/thread_pthread.h 70;" d +THREE Lib/test/test_enum.py /^ THREE = 3$/;" v class:MiscTestCase.test_doc_3.Triple +THREE Lib/test/test_enum.py /^ THREE = 3$/;" v class:MiscTestCase.test_doc_4.Quadruple +THREE Lib/test/test_enum.py /^ THREE = 3, 3.0$/;" v class:TestSpecial.test_programmatic_function_is_value_call.TwoPart +THREE Lib/test/test_enum.py /^ THREE = 3, 3.0, 'three'$/;" v class:TestSpecial.test_programmatic_function_is_value_call.ThreePart +THREE Lib/test/test_enum.py /^ THREE = auto(), auto(), auto()$/;" v class:TestInternals.test_multiple_auto_on_line.Huh +THROUGHPUT_DURATION Tools/ccbench/ccbench.py /^THROUGHPUT_DURATION = 2.0$/;" v +THURSDAY Lib/calendar.py /^ THURSDAY = 3$/;" v class:Day +THURSDAY Lib/test/test_enum.py /^ THURSDAY = auto(), 'Thu'$/;" v class:TestInternals.test_multiple_auto_on_line.Hah +TICK Lib/email/utils.py /^TICK = "'"$/;" v +TICKS Lib/test/profilee.py /^TICKS = 42000$/;" v +TILDE Include/internal/pycore_token.h 14;" d +TILDE Include/internal/pycore_token.h 47;" d +TILDE Lib/lib2to3/pgen2/token.py /^TILDE = 32$/;" v +TILDE Lib/token.py /^TILDE = 31$/;" v +TIME Lib/pstats.py /^ TIME = 'time', 'tottime'$/;" v class:SortKey +TIME Lib/test/test_pstats.py /^ TIME = 'time', 'tottime'$/;" v class:StatsTestCase.test_sort_stats_enum.CheckedSortKey +TIME Modules/getbuildinfo.c 17;" d file: +TIME Modules/getbuildinfo.c 19;" d file: +TIMEDELTA_CACHE Modules/_zoneinfo.c /^ PyObject *TIMEDELTA_CACHE;$/;" m struct:__anon641 file: +TIMEFILE Tools/peg_generator/Makefile /^TIMEFILE = data\/xxl.py$/;" m +TIMEOUT Lib/test/libregrtest/runtest.py /^ TIMEOUT = "TIMEOUT"$/;" v class:State +TIMEOUT Lib/test/test_asyncio/test_ssl.py /^ TIMEOUT = support.LONG_TIMEOUT$/;" v class:TestSSL +TIMEOUT Lib/test/test_asyncio/test_sslproto.py /^ TIMEOUT = support.LONG_TIMEOUT$/;" v class:BaseStartTLS +TIMEOUT Lib/test/test_concurrent_futures/test_deadlock.py /^ TIMEOUT = support.SHORT_TIMEOUT$/;" v class:ExecutorDeadlockTest +TIMEOUT Lib/test/test_faulthandler.py /^TIMEOUT = 0.5$/;" v +TIMEOUT Lib/test/test_ftplib.py /^TIMEOUT = support.LOOPBACK_TIMEOUT$/;" v +TIMEOUT Lib/test/test_importlib/threaded_import_hangers.py /^TIMEOUT = 10$/;" v +TIMEOUT Lib/test/test_logging.py /^ TIMEOUT = support.LONG_TIMEOUT$/;" v class:SMTPHandlerTest +TIMEOUT Lib/test/test_sched.py /^TIMEOUT = support.SHORT_TIMEOUT$/;" v +TIMEOUT Lib/test/test_socket.py /^ TIMEOUT = support.LOOPBACK_TIMEOUT$/;" v class:SendfileUsingSendTest +TIMEOUT Modules/nismodule.c /^static struct timeval TIMEOUT = { 25, 0 };$/;" v typeref:struct:timeval file: +TIMEOUT_MAX Lib/threading.py /^TIMEOUT_MAX = _thread.TIMEOUT_MAX$/;" v +TIMEOUT_MS_MAX Python/thread_nt.h /^const DWORD TIMEOUT_MS_MAX = 0xFFFFFFFE;$/;" v +TIMES Tools/cases_generator/lexer.py /^TIMES = r'\\*'$/;" v +TIMESTAMP Lib/py_compile.py /^ TIMESTAMP = 1$/;" v class:PycInvalidationMode +TIMESTAMPS Lib/test/test_calendar.py /^ TIMESTAMPS = [0, 10, 100, 1000, 10000, 100000, 1000000,$/;" v class:TimegmTestCase +TIMEZONE_RE Lib/http/cookiejar.py /^TIMEZONE_RE = re.compile(r"^([-+])?(\\d\\d?):?(\\d\\d)?$", re.ASCII)$/;" v +TIME_GET_FOLD Modules/_datetimemodule.c 104;" d file: +TIME_GET_HOUR Modules/_datetimemodule.c 100;" d file: +TIME_GET_MICROSECOND Modules/_datetimemodule.c 103;" d file: +TIME_GET_MINUTE Modules/_datetimemodule.c 101;" d file: +TIME_GET_SECOND Modules/_datetimemodule.c 102;" d file: +TIME_MAXYEAR Lib/test/test_time.py /^TIME_MAXYEAR = (1 << 8 * SIZEOF_INT - 1) - 1$/;" v +TIME_MINYEAR Lib/test/test_time.py /^TIME_MINYEAR = -TIME_MAXYEAR - 1 + 1900$/;" v +TIME_SET_FOLD Modules/_datetimemodule.c 112;" d file: +TIME_SET_HOUR Modules/_datetimemodule.c 105;" d file: +TIME_SET_MICROSECOND Modules/_datetimemodule.c 108;" d file: +TIME_SET_MINUTE Modules/_datetimemodule.c 106;" d file: +TIME_SET_SECOND Modules/_datetimemodule.c 107;" d file: +TINY Lib/test/test_float.py /^ TINY = fromHex('0x0.0000000000001p-1022') # min subnormal$/;" v class:HexFloatTestCase +TIPCTest Lib/test/test_socket.py /^class TIPCTest(unittest.TestCase):$/;" c +TIPCThreadableTest Lib/test/test_socket.py /^class TIPCThreadableTest(unittest.TestCase, ThreadableTest):$/;" c +TIPC_LOWER Lib/test/test_socket.py /^TIPC_LOWER = 200$/;" v +TIPC_STYPE Lib/test/test_socket.py /^TIPC_STYPE = 2000$/;" v +TIPC_UPPER Lib/test/test_socket.py /^TIPC_UPPER = 210$/;" v +TITLE_MASK Objects/unicodectype.c 17;" d file: +TITLE_MASK Tools/unicode/makeunicodedata.py /^TITLE_MASK = 0x40$/;" v +TKINTER_H Modules/tkinter.h 2;" d +TK_HEX_VERSION Modules/tkinter.h 14;" d +TK_TABWIDTH_DEFAULT Lib/idlelib/editor.py /^TK_TABWIDTH_DEFAULT = 8$/;" v +TLS Lib/telnetlib.py /^TLS = bytes([46]) # Telnet Start TLS$/;" v +TLSVersion Lib/ssl.py /^class TLSVersion:$/;" c +TLSv1 Lib/ssl.py /^ TLSv1 = _ssl.PROTO_TLSv1$/;" v class:TLSVersion +TLSv1 Lib/test/test_ssl.py /^ TLSv1 = _ssl.PROTO_TLSv1$/;" v class:TestEnumerations.test_tlsversion.CheckedTLSVersion +TLSv1_1 Lib/ssl.py /^ TLSv1_1 = _ssl.PROTO_TLSv1_1$/;" v class:TLSVersion +TLSv1_1 Lib/test/test_ssl.py /^ TLSv1_1 = _ssl.PROTO_TLSv1_1$/;" v class:TestEnumerations.test_tlsversion.CheckedTLSVersion +TLSv1_2 Lib/ssl.py /^ TLSv1_2 = _ssl.PROTO_TLSv1_2$/;" v class:TLSVersion +TLSv1_2 Lib/test/test_ssl.py /^ TLSv1_2 = _ssl.PROTO_TLSv1_2$/;" v class:TestEnumerations.test_tlsversion.CheckedTLSVersion +TLSv1_3 Lib/ssl.py /^ TLSv1_3 = _ssl.PROTO_TLSv1_3$/;" v class:TLSVersion +TLSv1_3 Lib/test/test_ssl.py /^ TLSv1_3 = _ssl.PROTO_TLSv1_3$/;" v class:TestEnumerations.test_tlsversion.CheckedTLSVersion +TList Lib/tkinter/tix.py /^class TList(TixWidget, XView, YView):$/;" c +TM Lib/telnetlib.py /^TM = bytes([6]) # timing mark$/;" v +TMP_CADIR Lib/test/make_ssl_certs.py /^TMP_CADIR = 'cadir'$/;" v +TMP_MAX Lib/tempfile.py /^ TMP_MAX = 10000$/;" v +TMP_MAX Lib/tempfile.py /^ TMP_MAX = _os.TMP_MAX$/;" v +TM_FUNC Modules/_datetimemodule.c /^typedef int (*TM_FUNC)(time_t timer, struct tm*);$/;" t file: +TN3270E Lib/telnetlib.py /^TN3270E = bytes([40]) # TN3270E$/;" v +TNavigator Lib/turtle.py /^class TNavigator(object):$/;" c +TOB Modules/_blake2/impl/blake2s-load-xop.h 17;" d +TODO_TESTS Lib/test/test_decimal.py /^TODO_TESTS = None$/;" v +TOF Modules/_blake2/impl/blake2b-round.h 23;" d +TOF Modules/_blake2/impl/blake2s-round.h 23;" d +TOHEX_NBITS Objects/floatobject.c 1221;" d file: +TOI Modules/_blake2/impl/blake2b-round.h 24;" d +TOI Modules/_blake2/impl/blake2s-round.h 24;" d +TOKENS Tools/peg_generator/Makefile /^TOKENS = ..\/..\/Grammar\/Tokens$/;" m +TOKEN_ENDS Lib/email/_header_value_parser.py /^TOKEN_ENDS = TSPECIALS | WSP$/;" v +TOKEN_MAP Lib/lib2to3/patcomp.py /^TOKEN_MAP = {"NAME": token.NAME,$/;" v +TOK_FSTRING_MODE Parser/tokenizer.h /^ TOK_FSTRING_MODE,$/;" e enum:tokenizer_mode_kind_t +TOK_GET_MODE Parser/tokenizer.c /^static inline tokenizer_mode* TOK_GET_MODE(struct tok_state* tok) {$/;" f file: +TOK_GET_MODE Parser/tokenizer.c 55;" d file: +TOK_NEXT_MODE Parser/tokenizer.c /^static inline tokenizer_mode* TOK_NEXT_MODE(struct tok_state* tok) {$/;" f file: +TOK_NEXT_MODE Parser/tokenizer.c 56;" d file: +TOK_REGULAR_MODE Parser/tokenizer.h /^ TOK_REGULAR_MODE,$/;" e enum:tokenizer_mode_kind_t +TOMATO Lib/test/test_enum.py /^ TOMATO = 1$/;" v class:.Fruit +TOMLDecodeError Lib/tomllib/_parser.py /^class TOMLDecodeError(ValueError):$/;" c +TOML_WS Lib/tomllib/_parser.py /^TOML_WS = frozenset(" \\t")$/;" v +TOML_WS_AND_NEWLINE Lib/tomllib/_parser.py /^TOML_WS_AND_NEWLINE = TOML_WS | frozenset("\\n")$/;" v +TOOL Tools/c-analyzer/c_parser/preprocessor/gcc.py /^TOOL = 'gcc'$/;" v +TOOLS_DIRS PC/layout/main.py /^TOOLS_DIRS = FileNameSet("scripts", "i18n", "parser")$/;" v +TOOLS_FILES PC/layout/main.py /^TOOLS_FILES = FileSuffixSet(".py", ".pyw", ".txt")$/;" v +TOOL_ROOT Tools/c-analyzer/cpython/__init__.py /^TOOL_ROOT = os.path.normcase($/;" v +TOOL_ROOT Tools/freeze/test/freeze.py /^TOOL_ROOT = os.path.dirname(TESTS_DIR)$/;" v +TOO_EARLY Lib/http/__init__.py /^ TOO_EARLY = 425, 'Too Early'$/;" v class:HTTPStatus +TOO_EARLY Lib/test/test_httplib.py /^ TOO_EARLY = 425, 'Too Early'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +TOO_MANY_REQUESTS Lib/http/__init__.py /^ TOO_MANY_REQUESTS = (429, 'Too Many Requests',$/;" v class:HTTPStatus +TOO_MANY_REQUESTS Lib/test/test_httplib.py /^ TOO_MANY_REQUESTS = (429, 'Too Many Requests',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +TOP Lib/tkinter/constants.py /^TOP='top'$/;" v +TOP Python/ceval_macros.h 202;" d +TOTAL Tools/scripts/summarize_stats.py /^TOTAL = "specialization.hit", "specialization.miss", "execution_count"$/;" v +TOTAL_FIRST Modules/unicodedata_db.h 353;" d +TOTAL_LAST Modules/unicodedata_db.h 354;" d +TO_BASE64 Objects/unicodeobject.c 4158;" d file: +TO_BASE64 Objects/unicodeobject.c 4530;" d file: +TO_COMPLEX Objects/complexobject.c 428;" d file: +TO_INT_EXACT Modules/_decimal/libmpdec/mpdecimal.c /^enum {TO_INT_EXACT, TO_INT_SILENT, TO_INT_TRUNC};$/;" e enum:__anon347 file: +TO_INT_SILENT Modules/_decimal/libmpdec/mpdecimal.c /^enum {TO_INT_EXACT, TO_INT_SILENT, TO_INT_TRUNC};$/;" e enum:__anon347 file: +TO_INT_TRUNC Modules/_decimal/libmpdec/mpdecimal.c /^enum {TO_INT_EXACT, TO_INT_SILENT, TO_INT_TRUNC};$/;" e enum:__anon347 file: +TO_PTR Modules/_testinternalcapi.c 216;" d file: +TO_PTR Python/tracemalloc.c 26;" d file: +TP Lib/test/test_typing.py /^ class TP(tuple): ...$/;" c function:TupleTests.test_basics +TPFLAGS_IS_ABSTRACT Lib/inspect.py /^TPFLAGS_IS_ABSTRACT = 1 << 20$/;" v +TPSLOT Objects/typeobject.c 9368;" d file: +TPSLOT Objects/typeobject.c 9381;" d file: +TP_DESCR_GET Objects/classobject.c 12;" d file: +TPen Lib/turtle.py /^class TPen(object):$/;" c +TRACE Lib/http/__init__.py /^ TRACE = 'TRACE', 'Perform a message loop-back test along the path to the target.'$/;" v class:HTTPMethod +TRACE Modules/_sre/sre.c 76;" d file: +TRACE Modules/_sre/sre.c 78;" d file: +TRACEBACK Tools/c-analyzer/c_common/scriptutil.py /^TRACEBACK = bool(TRACEBACK and TRACEBACK.upper() not in ('0', 'FALSE', 'NO'))$/;" v +TRACEBACK Tools/c-analyzer/c_common/scriptutil.py /^TRACEBACK = os.environ.get('SHOW_TRACEBACK', '').strip()$/;" v +TRACEBACK_CODE Lib/test/test_dis.py /^TRACEBACK_CODE = get_tb().tb_frame.f_code$/;" v +TRACEBACK_SIZE Python/tracemalloc.c 51;" d file: +TRACEMALLOC_FINALIZED Include/internal/pycore_tracemalloc.h /^ TRACEMALLOC_FINALIZED$/;" e enum:_PyTraceMalloc_Config::__anon30 +TRACEMALLOC_INITIALIZED Include/internal/pycore_tracemalloc.h /^ TRACEMALLOC_INITIALIZED,$/;" e enum:_PyTraceMalloc_Config::__anon30 +TRACEMALLOC_NOT_INITIALIZED Include/internal/pycore_tracemalloc.h /^ TRACEMALLOC_NOT_INITIALIZED,$/;" e enum:_PyTraceMalloc_Config::__anon30 +TRACE_DEBUG Python/tracemalloc.c 23;" d file: +TRACE_RAW_MALLOC Include/internal/pycore_tracemalloc.h 15;" d +TRANSPORT_ERROR Lib/xmlrpc/client.py /^TRANSPORT_ERROR = -32300$/;" v +TRIGGERS Lib/idlelib/autocomplete.py /^TRIGGERS = f".{SEPS}"$/;" v +TRIPLETS Lib/test/test_iter.py /^TRIPLETS = [(0, 0, 0), (0, 0, 1), (0, 0, 2),$/;" v +TRUE Lib/pickle.py /^TRUE = b'I01\\n' # not an opcode; see INT docs in pickletools.py$/;" v +TRUE Tools/build/umarshal.py /^ TRUE = ord('T')$/;" v class:Type +TRYMAP_DEC Modules/cjkcodecs/cjkcodecs.h 223;" d +TRYMAP_DEC_ST Modules/cjkcodecs/cjkcodecs.h 225;" d +TRYMAP_ENC Modules/cjkcodecs/cjkcodecs.h 212;" d +TRYMAP_ENC_ST Modules/cjkcodecs/cjkcodecs.h 214;" d +TRY_A Lib/idlelib/autocomplete.py /^TRY_A = False, False, False, ATTRS # '.' for attributes.$/;" v +TRY_EXCEPT Python/compile.c /^enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END,$/;" e enum:fblocktype file: +TRY_F Lib/idlelib/autocomplete.py /^TRY_F = False, False, False, FILES # '\/' in quotes for file name.$/;" v +TRY_NATIVE Lib/asyncio/constants.py /^ TRY_NATIVE = enum.auto()$/;" v class:_SendfileMode +TSPECIALS Lib/email/_header_value_parser.py /^TSPECIALS = (SPECIALS | set('\/?=')) - set('.')$/;" v +TSPEED Lib/telnetlib.py /^TSPEED = bytes([32]) # terminal speed$/;" v +TTYLOC Lib/telnetlib.py /^TTYLOC = bytes([28]) # terminal location number$/;" v +TTYPE Lib/telnetlib.py /^TTYPE = bytes([24]) # terminal type$/;" v +TUESDAY Lib/calendar.py /^ TUESDAY = 1$/;" v class:Day +TUESDAY Lib/test/test_enum.py /^ TUESDAY = auto()$/;" v class:TestInternals.test_multiple_auto_on_line.Hah +TUID Lib/telnetlib.py /^TUID = bytes([26]) # TACACS user identification$/;" v +TUPLE Lib/ast.py /^ TUPLE = auto() # , $/;" v class:_Precedence +TUPLE Lib/pickle.py /^TUPLE = b't' # build tuple from topmost stack items$/;" v +TUPLE Lib/test/test_ast.py /^ TUPLE = enum.auto() # , $/;" v class:AST_Tests.test_precedence_enum._Precedence +TUPLE Modules/_pickle.c /^ TUPLE = 't',$/;" e enum:opcode file: +TUPLE Tools/build/umarshal.py /^ TUPLE = ord('(')$/;" v class:Type +TUPLE1 Lib/pickle.py /^TUPLE1 = b'\\x85' # build 1-tuple from stack top$/;" v +TUPLE1 Modules/_pickle.c /^ TUPLE1 = '\\x85',$/;" e enum:opcode file: +TUPLE2 Lib/pickle.py /^TUPLE2 = b'\\x86' # build 2-tuple from two topmost stack items$/;" v +TUPLE2 Modules/_pickle.c /^ TUPLE2 = '\\x86',$/;" e enum:opcode file: +TUPLE3 Lib/pickle.py /^TUPLE3 = b'\\x87' # build 3-tuple from three topmost stack items$/;" v +TUPLE3 Modules/_pickle.c /^ TUPLE3 = '\\x87',$/;" e enum:opcode file: +TUPLE_COUNT_METHODDEF Objects/clinic/tupleobject.c.h 63;" d +TUPLE_INDEX_METHODDEF Objects/clinic/tupleobject.c.h 19;" d +TUPLE___GETNEWARGS___METHODDEF Objects/clinic/tupleobject.c.h 110;" d +TWENTY_FORTY_EIGHT Lib/test/test_enum.py /^ TWENTY_FORTY_EIGHT = 2048$/;" v class:TestStdLib.test_test_simple_enum.CheckedMissing +TWENTY_FORTY_EIGHT Lib/test/test_enum.py /^ TWENTY_FORTY_EIGHT = 2048$/;" v class:TestStdLib.test_test_simple_enum.Missing +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:MiscTestCase.test_doc_2.Double +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:MiscTestCase.test_doc_3.Triple +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:MiscTestCase.test_doc_4.Quadruple +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:OldTestFlag.test_boundary.Iron +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:OldTestFlag.test_boundary.Space +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:OldTestFlag.test_boundary.Water +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:OldTestIntFlag.test_boundary.Iron +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:OldTestIntFlag.test_boundary.Space +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:OldTestIntFlag.test_boundary.Water +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:TestSpecial.test_custom_flag_bitwise.MyIntFlag +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:TestSpecial.test_int_flags_copy.MyIntFlag +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:TestSpecial.test_pickle_by_name.ReplaceGlobalInt +TWO Lib/test/test_enum.py /^ TWO = 2, 2.0$/;" v class:TestSpecial.test_programmatic_function_is_value_call.TwoPart +TWO Lib/test/test_enum.py /^ TWO = 2, 2.0, 'two'$/;" v class:TestSpecial.test_programmatic_function_is_value_call.ThreePart +TWO Lib/test/test_enum.py /^ TWO = auto()$/;" v class:OldTestFlag.test_number_reset_and_order_cleanup.Confused +TWO Lib/test/test_enum.py /^ TWO = auto(), auto()$/;" v class:TestInternals.test_multiple_auto_on_line.Huh +TWO Lib/test/test_enum.py /^ TWO = 2$/;" v class:NoName +TWOPI Lib/test/double_const.py /^TWOPI = 6.28318530717958648$/;" v +TWOPI_str Lib/test/double_const.py /^TWOPI_str = "6.28318530717958648"$/;" v +TWO_THIRD Lib/colorsys.py /^TWO_THIRD = 2.0\/3.0$/;" v +TYPE Lib/lib2to3/fixes/fix_idioms.py /^TYPE = "power< 'type' trailer< '(' x=any ')' > >"$/;" v +TYPE Lib/test/_test_multiprocessing.py /^ TYPE = 'manager'$/;" v class:ManagerMixin +TYPE Lib/test/_test_multiprocessing.py /^ TYPE = 'processes'$/;" v class:ProcessesMixin +TYPE Lib/test/_test_multiprocessing.py /^ TYPE = 'threads'$/;" v class:ThreadsMixin +TYPEALIAS_NOT_ALLOWED Python/symtable.c 62;" d file: +TYPEALIAS_REDUCE_METHODDEF Objects/clinic/typevarobject.c.h 707;" d +TYPEDEF Tools/c-analyzer/c_parser/info.py /^ TYPEDEF = 'typedef'$/;" v class:KIND +TYPED_ACTIONS Lib/optparse.py /^ TYPED_ACTIONS = ("store",$/;" v class:Option +TYPED_ACTIONS Lib/test/test_optparse.py /^ TYPED_ACTIONS = Option.TYPED_ACTIONS + ("extend",)$/;" v class:TestExtendAddActions.MyOption +TYPEFLAG_HASBITFIELD Modules/_ctypes/ctypes.h 330;" d +TYPEFLAG_HASPOINTER Modules/_ctypes/ctypes.h 328;" d +TYPEFLAG_HASUNION Modules/_ctypes/ctypes.h 329;" d +TYPEFLAG_ISPOINTER Modules/_ctypes/ctypes.h 327;" d +TYPENAME Modules/_testcapi/long.c 35;" d file: +TYPENAME Modules/_testcapi/long.c 50;" d file: +TYPENAME Modules/_testcapi/long.c 63;" d file: +TYPENAME Modules/_testcapi/long.c 78;" d file: +TYPEPARAM_NOT_ALLOWED Python/symtable.c 65;" d file: +TYPES Lib/optparse.py /^ TYPES = ("string", "int", "long", "float", "complex", "choice")$/;" v class:Option +TYPES Lib/test/test_capi/test_misc.py /^ TYPES = [$/;" v class:BuiltinStaticTypesTests +TYPES Lib/test/test_capi/test_watchers.py /^ TYPES = 0 # appends modified types to global event list$/;" v class:TestTypeWatchers +TYPES Lib/test/test_optparse.py /^ TYPES = Option.TYPES + ("file",)$/;" v class:TestExtendAddTypes.MyOption +TYPES Lib/test/test_optparse.py /^ TYPES = Option.TYPES + ('duration',)$/;" v class:DurationOption +TYPEVARTUPLE_REDUCE_METHODDEF Objects/clinic/typevarobject.c.h 690;" d +TYPEVARTUPLE_TYPING_PREPARE_SUBST_METHODDEF Objects/clinic/typevarobject.c.h 633;" d +TYPEVARTUPLE_TYPING_SUBST_METHODDEF Objects/clinic/typevarobject.c.h 579;" d +TYPEVAR_BOUND_NOT_ALLOWED Python/symtable.c 59;" d file: +TYPEVAR_REDUCE_METHODDEF Objects/clinic/typevarobject.c.h 171;" d +TYPEVAR_TYPING_SUBST_METHODDEF Objects/clinic/typevarobject.c.h 117;" d +TYPE_ACCEPT Modules/overlapped.c /^ TYPE_ACCEPT, TYPE_CONNECT, TYPE_DISCONNECT, TYPE_CONNECT_NAMED_PIPE,$/;" e enum:__anon566 file: +TYPE_ALTERNATIVES Lib/lib2to3/btm_utils.py /^TYPE_ALTERNATIVES = -2$/;" v +TYPE_ANY Lib/lib2to3/btm_utils.py /^TYPE_ANY = -1$/;" v +TYPE_ASCII Python/marshal.c 72;" d file: +TYPE_ASCII_INTERNED Python/marshal.c 73;" d file: +TYPE_BINARY_COMPLEX Python/marshal.c 57;" d file: +TYPE_BINARY_FLOAT Python/marshal.c 55;" d file: +TYPE_BUFFER Modules/_sqlite/cursor.c /^ TYPE_BUFFER,$/;" e enum:__anon361 file: +TYPE_CHECKER Lib/optparse.py /^ TYPE_CHECKER = { "int" : check_builtin,$/;" v class:Option +TYPE_CHECKER Lib/test/test_optparse.py /^ TYPE_CHECKER = copy.copy(Option.TYPE_CHECKER)$/;" v class:TestExtendAddTypes.MyOption +TYPE_CHECKER Lib/test/test_optparse.py /^ TYPE_CHECKER = copy.copy(Option.TYPE_CHECKER)$/;" v class:DurationOption +TYPE_CHECKING Lib/typing.py /^TYPE_CHECKING = False$/;" v +TYPE_CODE Python/marshal.c 65;" d file: +TYPE_COMMENT Include/internal/pycore_token.h 75;" d +TYPE_COMMENT Lib/token.py /^TYPE_COMMENT = 59$/;" v +TYPE_COMPLEX Python/marshal.c 56;" d file: +TYPE_CONNECT Modules/overlapped.c /^ TYPE_ACCEPT, TYPE_CONNECT, TYPE_DISCONNECT, TYPE_CONNECT_NAMED_PIPE,$/;" e enum:__anon566 file: +TYPE_CONNECT_NAMED_PIPE Modules/overlapped.c /^ TYPE_ACCEPT, TYPE_CONNECT, TYPE_DISCONNECT, TYPE_CONNECT_NAMED_PIPE,$/;" e enum:__anon566 file: +TYPE_DICT Python/marshal.c 64;" d file: +TYPE_DISCONNECT Modules/overlapped.c /^ TYPE_ACCEPT, TYPE_CONNECT, TYPE_DISCONNECT, TYPE_CONNECT_NAMED_PIPE,$/;" e enum:__anon566 file: +TYPE_ELLIPSIS Python/marshal.c 49;" d file: +TYPE_ERR Modules/_decimal/_decimal.c 2863;" d file: +TYPE_FALSE Python/marshal.c 46;" d file: +TYPE_FLAGS Lib/re/_parser.py /^TYPE_FLAGS = SRE_FLAG_ASCII | SRE_FLAG_LOCALE | SRE_FLAG_UNICODE$/;" v +TYPE_FLOAT Modules/_sqlite/cursor.c /^ TYPE_FLOAT,$/;" e enum:__anon361 file: +TYPE_FLOAT Python/marshal.c 54;" d file: +TYPE_FROZENSET Python/marshal.c 69;" d file: +TYPE_GROUP Lib/lib2to3/btm_utils.py /^TYPE_GROUP = -3$/;" v +TYPE_IGNORE Include/internal/pycore_token.h 74;" d +TYPE_IGNORE Lib/token.py /^TYPE_IGNORE = 58$/;" v +TYPE_INT Python/marshal.c 50;" d file: +TYPE_INT64 Python/marshal.c 53;" d file: +TYPE_INTERNED Python/marshal.c 60;" d file: +TYPE_LIST Python/marshal.c 63;" d file: +TYPE_LONG Modules/_sqlite/cursor.c /^ TYPE_LONG,$/;" e enum:__anon361 file: +TYPE_LONG Python/marshal.c 58;" d file: +TYPE_MAX_WATCHERS Include/cpython/object.h 562;" d +TYPE_MAX_WATCHERS Lib/test/test_capi/test_watchers.py /^ TYPE_MAX_WATCHERS = 8$/;" v class:TestTypeWatchers +TYPE_MRO_METHODDEF Objects/clinic/typeobject.c.h 73;" d +TYPE_NONE Modules/overlapped.c /^enum {TYPE_NONE, TYPE_NOT_STARTED, TYPE_READ, TYPE_READINTO, TYPE_WRITE,$/;" e enum:__anon566 file: +TYPE_NONE Python/marshal.c 45;" d file: +TYPE_NOT_STARTED Modules/overlapped.c /^enum {TYPE_NONE, TYPE_NOT_STARTED, TYPE_READ, TYPE_READINTO, TYPE_WRITE,$/;" e enum:__anon566 file: +TYPE_NULL Python/marshal.c 44;" d file: +TYPE_QUALIFIER Tools/c-analyzer/c_parser/parser/_regexes.py /^TYPE_QUALIFIER = r'(?: \\b (?: const | volatile ) \\b )'$/;" v +TYPE_READ Modules/overlapped.c /^enum {TYPE_NONE, TYPE_NOT_STARTED, TYPE_READ, TYPE_READINTO, TYPE_WRITE,$/;" e enum:__anon566 file: +TYPE_READINTO Modules/overlapped.c /^enum {TYPE_NONE, TYPE_NOT_STARTED, TYPE_READ, TYPE_READINTO, TYPE_WRITE,$/;" e enum:__anon566 file: +TYPE_READY Modules/_ctypes/_ctypes.c 5638;" d file: +TYPE_READY Modules/_ctypes/_ctypes.c 5723;" d file: +TYPE_READY_BASE Modules/_ctypes/_ctypes.c 5643;" d file: +TYPE_READY_BASE Modules/_ctypes/_ctypes.c 5724;" d file: +TYPE_READ_FROM Modules/overlapped.c /^ TYPE_WAIT_NAMED_PIPE_AND_CONNECT, TYPE_TRANSMIT_FILE, TYPE_READ_FROM,$/;" e enum:__anon566 file: +TYPE_READ_FROM_INTO Modules/overlapped.c /^ TYPE_WRITE_TO, TYPE_READ_FROM_INTO};$/;" e enum:__anon566 file: +TYPE_REF Python/marshal.c 61;" d file: +TYPE_SET Python/marshal.c 68;" d file: +TYPE_SHORT_ASCII Python/marshal.c 75;" d file: +TYPE_SHORT_ASCII_INTERNED Python/marshal.c 76;" d file: +TYPE_SMALL_TUPLE Python/marshal.c 74;" d file: +TYPE_STOPITER Python/marshal.c 48;" d file: +TYPE_STRING Python/marshal.c 59;" d file: +TYPE_TRANSMIT_FILE Modules/overlapped.c /^ TYPE_WAIT_NAMED_PIPE_AND_CONNECT, TYPE_TRANSMIT_FILE, TYPE_READ_FROM,$/;" e enum:__anon566 file: +TYPE_TRUE Python/marshal.c 47;" d file: +TYPE_TUPLE Python/marshal.c 62;" d file: +TYPE_UNICODE Modules/_sqlite/cursor.c /^ TYPE_UNICODE,$/;" e enum:__anon361 file: +TYPE_UNICODE Python/marshal.c 66;" d file: +TYPE_UNKNOWN Modules/_sqlite/cursor.c /^ TYPE_UNKNOWN$/;" e enum:__anon361 file: +TYPE_UNKNOWN Python/marshal.c 67;" d file: +TYPE_WAIT_NAMED_PIPE_AND_CONNECT Modules/overlapped.c /^ TYPE_WAIT_NAMED_PIPE_AND_CONNECT, TYPE_TRANSMIT_FILE, TYPE_READ_FROM,$/;" e enum:__anon566 file: +TYPE_WRITE Modules/overlapped.c /^enum {TYPE_NONE, TYPE_NOT_STARTED, TYPE_READ, TYPE_READINTO, TYPE_WRITE,$/;" e enum:__anon566 file: +TYPE_WRITE_TO Modules/overlapped.c /^ TYPE_WRITE_TO, TYPE_READ_FROM_INTO};$/;" e enum:__anon566 file: +TYPE___DIR___METHODDEF Objects/clinic/typeobject.c.h 109;" d +TYPE___INSTANCECHECK___METHODDEF Objects/clinic/typeobject.c.h 17;" d +TYPE___SIZEOF___METHODDEF Objects/clinic/typeobject.c.h 127;" d +TYPE___SUBCLASSCHECK___METHODDEF Objects/clinic/typeobject.c.h 45;" d +TYPE___SUBCLASSES___METHODDEF Objects/clinic/typeobject.c.h 91;" d +TZDataTests Lib/test/test_zoneinfo/test_zoneinfo.py /^class TZDataTests(ZoneInfoTest):$/;" c +TZInfo Tools/tz/zdump.py /^class TZInfo:$/;" c +TZInfoBase Lib/test/datetimetester.py /^class TZInfoBase:$/;" c +TZInfoSubclass Lib/test/datetimetester.py /^ class TZInfoSubclass(tzinfo):$/;" c function:CapiTest.test_check_tzinfo +TZInfoType Include/datetime.h /^ PyTypeObject *TZInfoType;$/;" m struct:__anon270 +TZPATH Lib/zoneinfo/_tzpath.py /^TZPATH = ()$/;" v +TZPATH_LOCK Lib/test/test_zoneinfo/_support.py /^TZPATH_LOCK = threading.Lock()$/;" v +TZPATH_TEST_LOCK Lib/test/test_zoneinfo/_support.py /^TZPATH_TEST_LOCK = threading.Lock()$/;" v +TZStrTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class TZStrTest(ZoneInfoTestBase):$/;" c +T_BOOL Include/structmember.h 38;" d +T_BYTE Include/structmember.h 32;" d +T_CHAR Include/structmember.h 31;" d +T_CV2 Lib/test/dataclass_module_1.py /^T_CV2 = typing.ClassVar[int]$/;" v +T_CV2 Lib/test/dataclass_module_1_str.py /^T_CV2 = typing.ClassVar[int]$/;" v +T_CV2 Lib/test/dataclass_module_2.py /^T_CV2 = ClassVar[int]$/;" v +T_CV2 Lib/test/dataclass_module_2_str.py /^T_CV2 = ClassVar[int]$/;" v +T_CV3 Lib/test/dataclass_module_1.py /^T_CV3 = typing.ClassVar$/;" v +T_CV3 Lib/test/dataclass_module_1_str.py /^T_CV3 = typing.ClassVar$/;" v +T_CV3 Lib/test/dataclass_module_2.py /^T_CV3 = ClassVar$/;" v +T_CV3 Lib/test/dataclass_module_2_str.py /^T_CV3 = ClassVar$/;" v +T_CV4 Lib/test/dataclass_module_1.py /^ T_CV4 = typing.ClassVar$/;" v class:CV +T_CV4 Lib/test/dataclass_module_1_str.py /^ T_CV4 = typing.ClassVar$/;" v class:CV +T_CV4 Lib/test/dataclass_module_2.py /^ T_CV4 = ClassVar$/;" v class:CV +T_CV4 Lib/test/dataclass_module_2_str.py /^ T_CV4 = ClassVar$/;" v class:CV +T_DOUBLE Include/structmember.h 28;" d +T_FLOAT Include/structmember.h 27;" d +T_HANDLE Modules/_multiprocessing/multiprocessing.h 68;" d +T_HANDLE Modules/_multiprocessing/multiprocessing.h 73;" d +T_HANDLE Modules/_winapi.c 67;" d file: +T_HANDLE Modules/overlapped.c 32;" d file: +T_INT Include/structmember.h 25;" d +T_INT64 Modules/selectmodule.c 1779;" d file: +T_INT64 Modules/selectmodule.c 1782;" d file: +T_INT64 Modules/selectmodule.c 1785;" d file: +T_INTPTRT Modules/selectmodule.c 1761;" d file: +T_INTPTRT Modules/selectmodule.c 1766;" d file: +T_INTPTRT Modules/selectmodule.c 1771;" d file: +T_IV2 Lib/test/dataclass_module_1.py /^T_IV2 = dataclasses.InitVar[int]$/;" v +T_IV2 Lib/test/dataclass_module_1_str.py /^T_IV2 = dataclasses.InitVar[int]$/;" v +T_IV2 Lib/test/dataclass_module_2.py /^T_IV2 = InitVar[int]$/;" v +T_IV2 Lib/test/dataclass_module_2_str.py /^T_IV2 = InitVar[int]$/;" v +T_IV3 Lib/test/dataclass_module_1.py /^T_IV3 = dataclasses.InitVar$/;" v +T_IV3 Lib/test/dataclass_module_1_str.py /^T_IV3 = dataclasses.InitVar$/;" v +T_IV3 Lib/test/dataclass_module_2.py /^T_IV3 = InitVar$/;" v +T_IV3 Lib/test/dataclass_module_2_str.py /^T_IV3 = InitVar$/;" v +T_IV4 Lib/test/dataclass_module_1.py /^ T_IV4 = dataclasses.InitVar$/;" v class:IV +T_IV4 Lib/test/dataclass_module_1_str.py /^ T_IV4 = dataclasses.InitVar$/;" v class:IV +T_IV4 Lib/test/dataclass_module_2.py /^ T_IV4 = InitVar$/;" v class:IV +T_IV4 Lib/test/dataclass_module_2_str.py /^ T_IV4 = InitVar$/;" v class:IV +T_LONG Include/structmember.h 26;" d +T_LONGLONG Include/structmember.h 40;" d +T_NONE Include/structmember.h 43;" d +T_OBJECT Include/structmember.h 30;" d +T_OBJECT_EX Include/structmember.h 39;" d +T_POINTER Modules/_multiprocessing/multiprocessing.h 58;" d +T_POINTER Modules/_multiprocessing/multiprocessing.h 61;" d +T_POINTER Modules/_winapi.c 55;" d file: +T_POINTER Modules/_winapi.c 61;" d file: +T_POINTER Modules/overlapped.c 20;" d file: +T_POINTER Modules/overlapped.c 23;" d file: +T_PYSSIZET Include/structmember.h 42;" d +T_SEM_HANDLE Modules/_multiprocessing/multiprocessing.h 70;" d +T_SEM_HANDLE Modules/_multiprocessing/multiprocessing.h 75;" d +T_SHORT Include/structmember.h 24;" d +T_STRING Include/structmember.h 29;" d +T_STRING_INPLACE Include/structmember.h 37;" d +T_UBYTE Include/structmember.h 33;" d +T_UINT Include/structmember.h 35;" d +T_UINT32 Modules/selectmodule.c 1792;" d file: +T_UINT32 Modules/selectmodule.c 1795;" d file: +T_UINT32 Modules/selectmodule.c 1798;" d file: +T_UINTPTRT Modules/selectmodule.c 1760;" d file: +T_UINTPTRT Modules/selectmodule.c 1765;" d file: +T_UINTPTRT Modules/selectmodule.c 1770;" d file: +T_ULONG Include/structmember.h 36;" d +T_ULONGLONG Include/structmember.h 41;" d +T_USHORT Include/structmember.h 34;" d +T_a Lib/test/test_typing.py /^T_a = TypeVar('T_a')$/;" v +T_co Lib/typing.py /^T_co = TypeVar('T_co', covariant=True) # Any type covariant containers.$/;" v +T_contra Lib/typing.py /^T_contra = TypeVar('T_contra', contravariant=True) # Ditto contravariant.$/;" v +Table Lib/msilib/__init__.py /^class Table:$/;" c +Table Lib/test/test_ctypes/test_pointers.py /^ class Table(Structure):$/;" c function:PointersTestCase.test_other +Tag Lib/test/test_xml_etree.py /^ class Tag:$/;" c function:BugsTest.test_lost_elem +TarError Lib/tarfile.py /^class TarError(Exception):$/;" c +TarFile Lib/tarfile.py /^class TarFile(object):$/;" c +TarInfo Lib/tarfile.py /^class TarInfo(object):$/;" c +TarSubclass Lib/test/test_tarfile.py /^ class TarSubclass(tarfile.TarFile):$/;" c function:TestExtractionFilters.test_change_default_filter_on_subclass +TarTest Lib/test/test_tarfile.py /^class TarTest:$/;" c +Target Lib/test/test_weakref.py /^ class Target(object):$/;" c function:ReferencesTestCase.test_ref_created_during_del +Task Lib/asyncio/tasks.py /^class Task(futures._PyFuture): # Inherit Python Task implementation$/;" c +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = None$/;" v class:BaseTaskCountingTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = None$/;" v class:EagerTaskFactoryLoopTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = asyncio.Task$/;" v class:EagerTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = asyncio.Task$/;" v class:NonEagerTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = getattr(tasks, '_CTask', None)$/;" v class:CEagerTaskFactoryLoopTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = getattr(tasks, '_CTask', None)$/;" v class:EagerCTaskTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = getattr(tasks, '_CTask', None)$/;" v class:NonEagerCTaskTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = tasks._PyTask$/;" v class:EagerPyTaskTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = tasks._PyTask$/;" v class:NonEagerPyTaskTests +Task Lib/test/test_asyncio/test_eager_task_factory.py /^ Task = tasks._PyTask$/;" v class:PyEagerTaskFactoryLoopTests +Task Lib/test/test_asyncio/test_runners.py /^ class Task:$/;" c function:RunTests.test_asyncio_run_without_uncancel +Task Lib/test/test_asyncio/test_tasks.py /^ Task = None$/;" v class:BaseTaskTests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = getattr(tasks, '_CTask', None)$/;" v class:CTaskSubclass_PyFuture_Tests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = getattr(tasks, '_CTask', None)$/;" v class:CTask_CFuture_SubclassTests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = getattr(tasks, '_CTask', None)$/;" v class:CTask_CFuture_Tests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = getattr(tasks, '_CTask', None)$/;" v class:CTask_PyFuture_Tests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = tasks._PyTask$/;" v class:PyTask_CFutureSubclass_Tests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = tasks._PyTask$/;" v class:PyTask_CFuture_Tests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = tasks._PyTask$/;" v class:PyTask_PyFuture_SubclassTests +Task Lib/test/test_asyncio/test_tasks.py /^ Task = tasks._PyTask$/;" v class:PyTask_PyFuture_Tests +Task Lib/test/test_asyncio/test_tasks.py /^ class Task(CommonFuture, BaseTask):$/;" c function:add_subclass_tests +TaskGroup Lib/asyncio/taskgroups.py /^class TaskGroup:$/;" c +TaskLike Lib/test/test_asyncio/test_tasks.py /^ class TaskLike:$/;" c function:BaseTaskIntrospectionTests.test__register_task_1 +TaskLike Lib/test/test_asyncio/test_tasks.py /^ class TaskLike:$/;" c function:BaseTaskIntrospectionTests.test__register_task_2 +TaskLike Lib/test/test_asyncio/test_tasks.py /^ class TaskLike:$/;" c function:BaseTaskIntrospectionTests.test__register_task_3 +TaskObj Modules/_asynciomodule.c /^} TaskObj;$/;" t typeref:struct:__anon311 file: +TaskObj_clear Modules/_asynciomodule.c /^TaskObj_clear(TaskObj *task)$/;" f file: +TaskObj_dealloc Modules/_asynciomodule.c /^TaskObj_dealloc(PyObject *self)$/;" f file: +TaskObj_finalize Modules/_asynciomodule.c /^TaskObj_finalize(TaskObj *task)$/;" f file: +TaskObj_get_coro Modules/_asynciomodule.c /^TaskObj_get_coro(TaskObj *task, void *Py_UNUSED(ignored))$/;" f file: +TaskObj_get_fut_waiter Modules/_asynciomodule.c /^TaskObj_get_fut_waiter(TaskObj *task, void *Py_UNUSED(ignored))$/;" f file: +TaskObj_get_log_destroy_pending Modules/_asynciomodule.c /^TaskObj_get_log_destroy_pending(TaskObj *task, void *Py_UNUSED(ignored))$/;" f file: +TaskObj_get_must_cancel Modules/_asynciomodule.c /^TaskObj_get_must_cancel(TaskObj *task, void *Py_UNUSED(ignored))$/;" f file: +TaskObj_repr Modules/_asynciomodule.c /^TaskObj_repr(TaskObj *task)$/;" f file: +TaskObj_set_log_destroy_pending Modules/_asynciomodule.c /^TaskObj_set_log_destroy_pending(TaskObj *task, PyObject *val, void *Py_UNUSED(ignored))$/;" f file: +TaskObj_traverse Modules/_asynciomodule.c /^TaskObj_traverse(TaskObj *task, visitproc visit, void *arg)$/;" f file: +TaskStepMethWrapper Modules/_asynciomodule.c /^} TaskStepMethWrapper;$/;" t typeref:struct:__anon312 file: +TaskStepMethWrapper_Type Modules/_asynciomodule.c /^ PyTypeObject *TaskStepMethWrapper_Type;$/;" m struct:__anon308 file: +TaskStepMethWrapper_call Modules/_asynciomodule.c /^TaskStepMethWrapper_call(TaskStepMethWrapper *o,$/;" f file: +TaskStepMethWrapper_clear Modules/_asynciomodule.c /^TaskStepMethWrapper_clear(TaskStepMethWrapper *o)$/;" f file: +TaskStepMethWrapper_dealloc Modules/_asynciomodule.c /^TaskStepMethWrapper_dealloc(TaskStepMethWrapper *o)$/;" f file: +TaskStepMethWrapper_get___self__ Modules/_asynciomodule.c /^TaskStepMethWrapper_get___self__(TaskStepMethWrapper *o, void *Py_UNUSED(ignored))$/;" f file: +TaskStepMethWrapper_getsetlist Modules/_asynciomodule.c /^static PyGetSetDef TaskStepMethWrapper_getsetlist[] = {$/;" v file: +TaskStepMethWrapper_new Modules/_asynciomodule.c /^TaskStepMethWrapper_new(TaskObj *task, PyObject *arg)$/;" f file: +TaskStepMethWrapper_slots Modules/_asynciomodule.c /^static PyType_Slot TaskStepMethWrapper_slots[] = {$/;" v file: +TaskStepMethWrapper_spec Modules/_asynciomodule.c /^static PyType_Spec TaskStepMethWrapper_spec = {$/;" v file: +TaskStepMethWrapper_traverse Modules/_asynciomodule.c /^TaskStepMethWrapper_traverse(TaskStepMethWrapper *o,$/;" f file: +TaskType Modules/_asynciomodule.c /^ PyTypeObject *TaskType;$/;" m struct:__anon308 file: +TaskType_getsetlist Modules/_asynciomodule.c /^static PyGetSetDef TaskType_getsetlist[] = {$/;" v file: +TaskType_members Modules/_asynciomodule.c /^static PyMemberDef TaskType_members[] = {$/;" v file: +TaskType_methods Modules/_asynciomodule.c /^static PyMethodDef TaskType_methods[] = {$/;" v file: +TaskWakeupDef Modules/_asynciomodule.c /^static PyMethodDef TaskWakeupDef = {$/;" v file: +Task_Check Modules/_asynciomodule.c 155;" d file: +Task_CheckExact Modules/_asynciomodule.c 152;" d file: +Task_slots Modules/_asynciomodule.c /^static PyType_Slot Task_slots[] = {$/;" v file: +Task_spec Modules/_asynciomodule.c /^static PyType_Spec Task_spec = {$/;" v file: +Tbuffer Lib/turtle.py /^class Tbuffer(object):$/;" c +Tcl Lib/tkinter/__init__.py /^def Tcl(screenName=None, baseName=None, className='Tk', useTk=False):$/;" f +TclError Lib/tkinter/__init__.py /^TclError = _tkinter.TclError$/;" v +TclObjsToPyTest Lib/test/test_ttk_textonly.py /^class TclObjsToPyTest(unittest.TestCase):$/;" c +TclTest Lib/test/test_tcl.py /^class TclTest(unittest.TestCase):$/;" c +TclVersion Lib/tkinter/__init__.py /^TclVersion = float(_tkinter.TCL_VERSION)$/;" v +Tcl_AppInit Modules/_tkinter.c /^Tcl_AppInit(Tcl_Interp *interp)$/;" f +Tcl_AppInit Modules/tkappinit.c /^Tcl_AppInit(Tcl_Interp *interp)$/;" f +Tdb Lib/bdb.py /^class Tdb(Bdb):$/;" c +Tellable Lib/test/test_zipfile/test_core.py /^class Tellable:$/;" c +Telnet Lib/telnetlib.py /^class Telnet:$/;" c +TelnetAlike Lib/test/test_telnetlib.py /^class TelnetAlike(telnetlib.Telnet):$/;" c +Temp Lib/test/_test_multiprocessing.py /^ Temp = hashlib_helper.requires_hashdigest('sha256')(Temp)$/;" v class:install_tests_in_module_dict.Temp +Temp Lib/test/_test_multiprocessing.py /^ class Temp(base, Mixin, unittest.TestCase):$/;" c function:install_tests_in_module_dict +Temp Lib/test/_test_multiprocessing.py /^ class Temp(base, object):$/;" c function:install_tests_in_module_dict +Temp Lib/test/test_xml_etree_c.py /^ class Temp(base):$/;" c function:install_tests +TempDirMixin Lib/test/test_argparse.py /^class TempDirMixin(object):$/;" c +TempFile Lib/test/test_linecache.py /^class TempFile:$/;" c +TempFile Lib/test/test_lzma.py /^class TempFile:$/;" c +TempFileGreedy Lib/test/test_threadedtempfile.py /^class TempFileGreedy(threading.Thread):$/;" c +Temperature Lib/test/test_pprint.py /^ class Temperature(int):$/;" c function:QueryTestCase.test_integer +Template Lib/pipes.py /^class Template:$/;" c +Template Lib/string.py /^class Template:$/;" c +TemplateDict Tools/clinic/clinic.py /^TemplateDict = dict[str, str]$/;" v +TemplateObject Modules/_sre/sre.h /^} TemplateObject;$/;" t typeref:struct:__anon456 +TemplateReplacementTests Lib/test/test_typing.py /^class TemplateReplacementTests(BaseTestCase):$/;" c +Template_Type Modules/_sre/sre.c /^ PyTypeObject *Template_Type;$/;" m struct:__anon462 file: +TemporaryDirectory Lib/tempfile.py /^class TemporaryDirectory:$/;" c +TemporaryFile Lib/tempfile.py /^ def TemporaryFile(mode='w+b', buffering=-1, encoding=None,$/;" f +TemporaryPyFile Lib/test/test_tabnanny.py /^class TemporaryPyFile:$/;" c +Ten_pmax Python/dtoa.c 252;" d file: +Terminal Lib/email/_header_value_parser.py /^class Terminal(str):$/;" c +TerminalSizeType Modules/posixmodule.c /^ PyObject *TerminalSizeType;$/;" m struct:__anon477 file: +TerminalSize_desc Modules/posixmodule.c /^static PyStructSequence_Desc TerminalSize_desc = {$/;" v file: +TerminalSize_fields Modules/posixmodule.c /^static PyStructSequence_Field TerminalSize_fields[] = {$/;" v file: +Terminator Lib/turtle.py /^class Terminator (Exception):$/;" c +TermiosError Modules/termios.c /^ PyObject *TermiosError;$/;" m struct:__anon488 file: +TermsizeTests Lib/test/test_os.py /^class TermsizeTests(unittest.TestCase):$/;" c +TernaryRestricted Modules/_decimal/tests/deccheck.py /^TernaryRestricted = ['__pow__', 'context.power']$/;" v +Test Lib/idlelib/idle_test/template.py /^class Test(unittest.TestCase):$/;" c +Test Lib/idlelib/idle_test/test_calltip.py /^ class Test:$/;" c function:.test_invalid_method_get_spec +Test Lib/idlelib/idle_test/test_statusbar.py /^class Test(unittest.TestCase):$/;" c +Test Lib/idlelib/idle_test/test_zoomheight.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/clinic.test.c /^Test(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f file: +Test Lib/test/test_contextlib.py /^ class Test(object):$/;" c function:TestContextDecorator.test_decorating_method +Test Lib/test/test_contextlib_async.py /^ class Test(object):$/;" c function:AsyncContextManagerTestCase.test_decorating_method +Test Lib/test/test_ctypes/test_array_in_pointer.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_byteswap.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_cast.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_checkretval.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_errno.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_frombuffer.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_pep3118.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_simplesubclasses.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_ctypes/test_structures.py /^ class Test(Structure):$/;" c function:StructureTestCase.test_pass_by_value +Test Lib/test/test_ctypes/test_structures.py /^ class Test(Structure):$/;" c function:StructureTestCase.test_pass_by_value_finalizer +Test Lib/test/test_doctest2.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_email/test_message.py /^class Test(TestEmailBase):$/;" c +Test Lib/test/test_enum.py /^ class Test(Base):$/;" c function:TestSpecial.test_subclass_duplicate_name +Test Lib/test/test_enum.py /^ class Test(Base):$/;" c function:TestSpecial.test_subclass_duplicate_name_dynamic +Test Lib/test/test_enum.py /^ class Test(Base2):$/;" c function:TestSpecial.test_subclass_duplicate_name_dynamic +Test Lib/test/test_enum.py /^ class Test(self.enum_type):$/;" c function:_EnumTests.test_dir_with_added_behavior +Test Lib/test/test_functools.py /^ class Test:$/;" c function:TestCachedProperty.test_subclass_with___set__ +Test Lib/test/test_inspect.py /^ class Test(object):$/;" c function:TestIsDataDescriptor.test_functions +Test Lib/test/test_inspect.py /^ class Test:$/;" c function:TestSignatureObject.test_signature_on_classmethod +Test Lib/test/test_inspect.py /^ class Test:$/;" c function:TestSignatureObject.test_signature_on_method +Test Lib/test/test_inspect.py /^ class Test:$/;" c function:TestSignatureObject.test_signature_on_staticmethod +Test Lib/test/test_inspect.py /^ class Test:$/;" c function:TestSignatureObject.test_signature_wrapped_bound_method +Test Lib/test/test_scope.py /^ class Test:$/;" c function:ScopeTests.testFreeVarInMethod.test +Test Lib/test/test_scope.py /^ class Test:$/;" c function:ScopeTests.testFreeVarInMethod +Test Lib/test/test_subclassinit.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_support.py /^ class Test:$/;" c function:TestSupport.test_match_test +Test Lib/test/test_syslog.py /^class Test(unittest.TestCase):$/;" c +Test Lib/test/test_typing.py /^ class Test(Generic[T], Final):$/;" c function:GenericTests.test_init_subclass_super_called +Test Lib/test/test_typing.py /^ class Test:$/;" c function:ProtocolTests.test_defining_generic_protocols_old_style +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_base_exception_from_async_method +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_cancellation_hanging_tasks +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_cleanups_interleave_order +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_debug_cleanup_same_loop +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_deprecation_of_return_val_from_test +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_enterAsyncContext +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_enterAsyncContext_arg_errors +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_exception_in_setup +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_exception_in_tear_clean_up +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_exception_in_tear_down +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_exception_in_test +Test Lib/test/test_unittest/test_async_case.py /^ class Test(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_full_cycle +Test Lib/test/test_unittest/test_case.py /^ class Test(unittest.TestCase):$/;" c function:Test_TestCase.test_init__no_test_name +Test Lib/test/test_unittest/test_case.py /^ class Test(unittest.TestCase):$/;" c function:Test_TestCase.test_init__test_name__invalid +Test Lib/test/test_unittest/test_case.py /^ class Test(unittest.TestCase):$/;" c function:Test_TestCase.test_init__test_name__valid +Test Lib/test/test_unittest/test_case.py /^class Test(object):$/;" c +Test Lib/test/test_unittest/test_loader.py /^ class Test(unittest.TestCase):$/;" c function:Test_TestLoader.test_getTestCaseNames +Test Lib/test/test_unittest/test_loader.py /^ class Test(unittest.TestCase):$/;" c function:Test_TestLoader.test_getTestCaseNames__no_tests +Test Lib/test/test_unittest/test_result.py /^ class Test(unittest.TestCase):$/;" c function:Test_OldTestResult.testOldResultWithRunner +Test Lib/test/test_unittest/test_result.py /^ class Test(unittest.TestCase):$/;" c function:Test_OldTestResult.testOldTestResult +Test Lib/test/test_unittest/test_result.py /^ class Test(unittest.TestCase):$/;" c function:Test_OldTestResult.testOldTestResultClass +Test Lib/test/test_unittest/test_result.py /^ class Test(unittest.TestCase):$/;" c function:Test_OldTestResult.testOldTestTesultSetup +Test Lib/test/test_unittest/test_result.py /^ class Test(unittest.TestCase):$/;" c class:Test_TextTestResult +Test Lib/test/test_unittest/test_runner.py /^ class Test(unittest.TestCase):$/;" c function:Test_TextTestRunner.testBufferAndFailfast +Test Lib/test/test_unittest/test_runner.py /^ class Test(unittest.TestCase):$/;" c function:Test_TextTestRunner.testRunnerRegistersResult +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_class_not_setup_or_torndown_when_skipped +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_class_not_torndown_when_setup_fails +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_error_in_setup_module +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_error_in_teardown_class +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_error_in_teardown_module +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_setup_class +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_setup_module +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_skiptest_in_setupclass +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_skiptest_in_setupmodule +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_suite_debug_executes_setups_and_teardowns +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_suite_debug_propagates_exceptions +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_teardown_class +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_teardown_class_two_classes +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_teardown_module +Test Lib/test/test_unittest/test_setups.py /^ class Test(unittest.TestCase):$/;" c function:TestSetups.test_testcase_with_missing_module +Test Lib/test/test_unittest/test_suite.py /^ class Test(unittest.TestCase):$/;" c function:Test_TestSuite.test_basetestsuite +Test Lib/test/test_unittest/test_suite.py /^class Test(object):$/;" c +Test Lib/test/test_unittest/testmock/testpatch.py /^ class Test(object):$/;" c function:PatchTest.test_patch_dict_class_decorator +Test Lib/test/test_unittest/testmock/testpatch.py /^ class Test(object):$/;" c function:PatchTest.test_patchobject_with_default_mock +Test Modules/_ctypes/_ctypes_test.c /^} Test;$/;" t typeref:struct:__anon499 file: +Test1 Lib/test/test_unittest/test_case.py /^ class Test1(unittest.TestCase):$/;" c function:.testKeyboardInterrupt +Test1 Lib/test/test_unittest/test_case.py /^ class Test1(unittest.TestCase):$/;" c function:.testSkippingEverywhere +Test1 Lib/test/test_unittest/test_case.py /^ class Test1(unittest.TestCase):$/;" c function:.testSystemExit +Test1 Lib/test/test_unittest/test_loader.py /^ class Test1(unittest.TestCase):$/;" c function:Test_TestLoader.test_loadTestsFromNames__callable__call_staticmethod +Test1 Lib/test/test_unittest/test_setups.py /^ class Test1(unittest.TestCase):$/;" c function:TestSetups.test_setup_teardown_order_with_pathological_suite +Test1 Lib/test/test_unittest/test_suite.py /^ class Test1(unittest.TestCase):$/;" c function:Test_TestSuite.test_countTestCases_nested +Test1 Lib/test/test_unittest/test_suite.py /^ class Test1(unittest.TestCase):$/;" c function:Test_TestSuite.test_countTestCases_zero_nested +Test2 Lib/test/test_ctypes/test_structures.py /^ class Test2(Structure):$/;" c function:StructureTestCase.test_array_in_struct +Test2 Lib/test/test_unittest/test_case.py /^ class Test2(unittest.TestCase):$/;" c function:.testKeyboardInterrupt +Test2 Lib/test/test_unittest/test_case.py /^ class Test2(unittest.TestCase):$/;" c function:.testSkippingEverywhere +Test2 Lib/test/test_unittest/test_case.py /^ class Test2(unittest.TestCase):$/;" c function:.testSystemExit +Test2 Lib/test/test_unittest/test_setups.py /^ class Test2(unittest.TestCase):$/;" c function:TestSetups.test_error_in_setup_module +Test2 Lib/test/test_unittest/test_setups.py /^ class Test2(unittest.TestCase):$/;" c function:TestSetups.test_error_in_teardown_class +Test2 Lib/test/test_unittest/test_setups.py /^ class Test2(unittest.TestCase):$/;" c function:TestSetups.test_error_in_teardown_module +Test2 Lib/test/test_unittest/test_setups.py /^ class Test2(unittest.TestCase):$/;" c function:TestSetups.test_setup_teardown_order_with_pathological_suite +Test2 Lib/test/test_unittest/test_setups.py /^ class Test2(unittest.TestCase):$/;" c function:TestSetups.test_teardown_class_two_classes +Test2 Modules/_ctypes/_ctypes_test.c /^} Test2;$/;" t typeref:struct:__anon501 file: +Test3 Lib/test/test_ctypes/test_structures.py /^ class Test3(Structure):$/;" c function:StructureTestCase.test_array_in_struct +Test3 Lib/test/test_unittest/test_case.py /^ class Test3(unittest.TestCase):$/;" c function:.testKeyboardInterrupt +Test3 Lib/test/test_unittest/test_case.py /^ class Test3(unittest.TestCase):$/;" c function:.testSkippingEverywhere +Test3 Lib/test/test_unittest/test_case.py /^ class Test3(unittest.TestCase):$/;" c function:.testSystemExit +Test3 Lib/test/test_unittest/test_setups.py /^ class Test3(unittest.TestCase):$/;" c function:TestSetups.test_setup_teardown_order_with_pathological_suite +Test3 Modules/_ctypes/_ctypes_test.c /^} Test3;$/;" t typeref:struct:__anon502 file: +Test3A Lib/test/test_ctypes/test_structures.py /^ class Test3A(Structure):$/;" c function:StructureTestCase.test_array_in_struct +Test3B Lib/test/test_ctypes/test_structures.py /^ class Test3B(Test3A):$/;" c function:StructureTestCase.test_array_in_struct +Test3B Modules/_ctypes/_ctypes_test.c /^} Test3B;$/;" t typeref:struct:__anon503 file: +Test4 Lib/test/test_ctypes/test_structures.py /^ class Test4(Union):$/;" c function:StructureTestCase.test_union_by_value +Test4 Lib/test/test_unittest/test_case.py /^ class Test4(unittest.TestCase):$/;" c function:.testKeyboardInterrupt +Test4 Lib/test/test_unittest/test_case.py /^ class Test4(unittest.TestCase):$/;" c function:.testSkippingEverywhere +Test4 Lib/test/test_unittest/test_case.py /^ class Test4(unittest.TestCase):$/;" c function:.testSystemExit +Test4 Modules/_ctypes/_ctypes_test.c /^} Test4;$/;" t typeref:union:__anon504 file: +Test5 Lib/test/test_ctypes/test_structures.py /^ class Test5(Structure):$/;" c function:StructureTestCase.test_union_by_value +Test5 Modules/_ctypes/_ctypes_test.c /^} Test5;$/;" t typeref:struct:__anon506 file: +Test6 Lib/test/test_ctypes/test_structures.py /^ class Test6(Structure):$/;" c function:StructureTestCase.test_bitfield_by_value +Test6 Modules/_ctypes/_ctypes_test.c /^} Test6;$/;" t typeref:struct:__anon508 file: +Test6012 Lib/test/test_capi/test_getargs.py /^class Test6012(unittest.TestCase):$/;" c +Test7 Lib/test/test_ctypes/test_structures.py /^ class Test7(Structure):$/;" c function:StructureTestCase.test_bitfield_by_value +Test7 Modules/_ctypes/_ctypes_test.c /^} Test7;$/;" t typeref:struct:__anon509 file: +Test8 Lib/test/test_ctypes/test_structures.py /^ class Test8(Union):$/;" c function:StructureTestCase.test_bitfield_by_value +Test8 Modules/_ctypes/_ctypes_test.c /^} Test8;$/;" t typeref:union:__anon510 file: +Test8BitBytesHandling Lib/test/test_email/test_email.py /^class Test8BitBytesHandling(TestEmailBase):$/;" c +TestABC Lib/test/test_abc.py /^ class TestABC(unittest.TestCase):$/;" c function:test_factory +TestABCWithInitSubclass Lib/test/test_abc.py /^ class TestABCWithInitSubclass(unittest.TestCase):$/;" c function:test_factory +TestAbstract Lib/test/test_dataclasses.py /^class TestAbstract(unittest.TestCase):$/;" c +TestAbstractAsyncContextManager Lib/test/test_contextlib_async.py /^class TestAbstractAsyncContextManager(unittest.TestCase):$/;" c +TestAbstractContextManager Lib/test/test_contextlib.py /^class TestAbstractContextManager(unittest.TestCase):$/;" c +TestAbstractServer Lib/test/test_asyncio/test_events.py /^class TestAbstractServer(unittest.TestCase):$/;" c +TestAcceleratorImported Lib/test/test_xml_etree_c.py /^class TestAcceleratorImported(unittest.TestCase):$/;" c +TestActionExtend Lib/test/test_argparse.py /^class TestActionExtend(ParserTestCase):$/;" c +TestActionRegistration Lib/test/test_argparse.py /^class TestActionRegistration(TestCase):$/;" c +TestActionUserDefined Lib/test/test_argparse.py /^class TestActionUserDefined(ParserTestCase):$/;" c +TestActionsReturned Lib/test/test_argparse.py /^class TestActionsReturned(TestCase):$/;" c +TestAddArgumentMetavar Lib/test/test_argparse.py /^class TestAddArgumentMetavar(TestCase):$/;" c +TestAddSubparsers Lib/test/test_argparse.py /^class TestAddSubparsers(TestCase):$/;" c +TestAddressAndGroup Lib/test/test_email/test_headerregistry.py /^class TestAddressAndGroup(TestEmailBase):$/;" c +TestAddressHeader Lib/test/test_email/test_headerregistry.py /^class TestAddressHeader(TestHeaderBase):$/;" c +TestAliasWorking Lib/test/test_xml_etree_c.py /^class TestAliasWorking(unittest.TestCase):$/;" c +TestAlternateInput Lib/test/test_cmd.py /^class TestAlternateInput(unittest.TestCase):$/;" c +TestApproxEqualErrors Lib/test/test_statistics.py /^class TestApproxEqualErrors(unittest.TestCase):$/;" c +TestArchives Lib/test/test_shutil.py /^class TestArchives(BaseTest, unittest.TestCase):$/;" c +TestArgumentError Lib/test/test_argparse.py /^class TestArgumentError(TestCase):$/;" c +TestArgumentTypeError Lib/test/test_argparse.py /^class TestArgumentTypeError(TestCase):$/;" c +TestArgumentsFromFile Lib/test/test_argparse.py /^class TestArgumentsFromFile(TempDirMixin, ParserTestCase):$/;" c +TestArgumentsFromFileConverter Lib/test/test_argparse.py /^class TestArgumentsFromFileConverter(TempDirMixin, ParserTestCase):$/;" c +TestArrayWrites Lib/test/test_csv.py /^class TestArrayWrites(unittest.TestCase):$/;" c +TestAscii Lib/test/test_curses.py /^class TestAscii(unittest.TestCase):$/;" c +TestAsctime4dyear Lib/test/test_time.py /^class TestAsctime4dyear(_TestAsctimeYear, _Test4dYear, unittest.TestCase):$/;" c +TestAsdlParser Lib/test/test_asdl_parser.py /^class TestAsdlParser(unittest.TestCase):$/;" c +TestAsyncAwait Lib/test/test_lib2to3/test_parser.py /^class TestAsyncAwait(GrammarTest):$/;" c +TestAsyncCase Lib/test/test_unittest/test_async_case.py /^class TestAsyncCase(unittest.TestCase):$/;" c +TestAsyncExitStack Lib/test/test_contextlib_async.py /^class TestAsyncExitStack(TestBaseExitStack, unittest.TestCase):$/;" c +TestAsyncNullcontext Lib/test/test_contextlib_async.py /^class TestAsyncNullcontext(unittest.TestCase):$/;" c +TestAudioop Lib/test/test_audioop.py /^class TestAudioop(unittest.TestCase):$/;" c +TestAutoInt Lib/test/test_enum.py /^ class TestAutoInt(AutoIntEnum):$/;" c function:TestSpecial.test_multiple_mixin_mro +TestAutoNumber Lib/test/test_enum.py /^ class TestAutoNumber(AutoNumberedEnum):$/;" c function:TestSpecial.test_multiple_mixin_mro +TestAutojunk Lib/test/test_difflib.py /^class TestAutojunk(unittest.TestCase):$/;" c +TestBIG5Map Lib/test/test_codecmaps_tw.py /^ unittest.TestCase):$/;" c +TestBabyl Lib/test/test_mailbox.py /^class TestBabyl(_TestSingleFile, unittest.TestCase):$/;" c +TestBabylMessage Lib/test/test_mailbox.py /^class TestBabylMessage(TestMessage, unittest.TestCase):$/;" c +TestBadTempdir Lib/test/test_tempfile.py /^class TestBadTempdir:$/;" c +TestBase Lib/test/multibytecodec_support.py /^class TestBase:$/;" c +TestBase Lib/test/test__xxinterpchannels.py /^class TestBase(unittest.TestCase):$/;" c +TestBase Lib/test/test__xxsubinterpreters.py /^class TestBase(unittest.TestCase):$/;" c +TestBase Lib/test/test_finalization.py /^class TestBase:$/;" c +TestBase Lib/test/test_interpreters.py /^class TestBase(unittest.TestCase):$/;" c +TestBase Lib/test/test_mailbox.py /^class TestBase:$/;" c +TestBase Lib/test/test_sort.py /^class TestBase(unittest.TestCase):$/;" c +TestBase Lib/test/test_tkinter/test_variables.py /^class TestBase(unittest.TestCase):$/;" c +TestBase Lib/test/test_weakref.py /^class TestBase(unittest.TestCase):$/;" c +TestBase64 Lib/test/test_email/test_email.py /^class TestBase64(unittest.TestCase):$/;" c +TestBaseExitStack Lib/test/test_contextlib.py /^class TestBaseExitStack:$/;" c +TestBaseHeaderFeatures Lib/test/test_email/test_headerregistry.py /^class TestBaseHeaderFeatures(TestHeaderBase):$/;" c +TestBaseSelectorEventLoop Lib/test/test_asyncio/test_selector_events.py /^class TestBaseSelectorEventLoop(BaseSelectorEventLoop):$/;" c +TestBase_Mapping Lib/test/multibytecodec_support.py /^class TestBase_Mapping(unittest.TestCase):$/;" c +TestBasic Lib/test/test_deque.py /^class TestBasic(unittest.TestCase):$/;" c +TestBasicAuthHandler Lib/test/test_urllib2.py /^ class TestBasicAuthHandler(urllib.request.HTTPBasicAuthHandler):$/;" c function:HandlerTests.test_basic_and_digest_auth_handlers +TestBasicOps Lib/test/test_itertools.py /^class TestBasicOps(unittest.TestCase):$/;" c +TestBasicOps Lib/test/test_random.py /^class TestBasicOps:$/;" c +TestBasicOps Lib/test/test_set.py /^class TestBasicOps:$/;" c +TestBasicOpsBytes Lib/test/test_set.py /^class TestBasicOpsBytes(TestBasicOps, unittest.TestCase):$/;" c +TestBasicOpsEmpty Lib/test/test_set.py /^class TestBasicOpsEmpty(TestBasicOps, unittest.TestCase):$/;" c +TestBasicOpsMixedStringBytes Lib/test/test_set.py /^class TestBasicOpsMixedStringBytes(TestBasicOps, unittest.TestCase):$/;" c +TestBasicOpsSingleton Lib/test/test_set.py /^class TestBasicOpsSingleton(TestBasicOps, unittest.TestCase):$/;" c +TestBasicOpsString Lib/test/test_set.py /^class TestBasicOpsString(TestBasicOps, unittest.TestCase):$/;" c +TestBasicOpsTriple Lib/test/test_set.py /^class TestBasicOpsTriple(TestBasicOps, unittest.TestCase):$/;" c +TestBasicOpsTuple Lib/test/test_set.py /^class TestBasicOpsTuple(TestBasicOps, unittest.TestCase):$/;" c +TestBig Lib/test/test_enumerate.py /^class TestBig(EnumerateTestCase):$/;" c +TestBig5HKSCSMap Lib/test/test_codecmaps_hk.py /^ unittest.TestCase):$/;" c +TestBinaryOps Lib/test/test_set.py /^class TestBinaryOps(unittest.TestCase):$/;" c +TestBinaryOpsMutating Lib/test/test_set.py /^class TestBinaryOpsMutating(TestOperationsMutating):$/;" c +TestBinaryOpsMutating_Set_Set Lib/test/test_set.py /^class TestBinaryOpsMutating_Set_Set(TestBinaryOpsMutating, unittest.TestCase):$/;" c +TestBinaryOpsMutating_Set_Subclass Lib/test/test_set.py /^class TestBinaryOpsMutating_Set_Subclass(TestBinaryOpsMutating, unittest.TestCase):$/;" c +TestBinaryOpsMutating_Subclass_Set Lib/test/test_set.py /^class TestBinaryOpsMutating_Subclass_Set(TestBinaryOpsMutating, unittest.TestCase):$/;" c +TestBinaryOpsMutating_Subclass_Subclass Lib/test/test_set.py /^class TestBinaryOpsMutating_Subclass_Subclass(TestBinaryOpsMutating, unittest.TestCase):$/;" c +TestBinaryPlistlib Lib/test/test_plistlib.py /^class TestBinaryPlistlib(unittest.TestCase):$/;" c +TestBisect Lib/test/test_bisect.py /^class TestBisect:$/;" c +TestBisectC Lib/test/test_bisect.py /^class TestBisectC(TestBisect, unittest.TestCase):$/;" c +TestBisectPython Lib/test/test_bisect.py /^class TestBisectPython(TestBisect, unittest.TestCase):$/;" c +TestBivariateStatistics Lib/test/test_statistics.py /^class TestBivariateStatistics(unittest.TestCase):$/;" c +TestBlessMyLoader Lib/test/test_importlib/import_/test_helpers.py /^class TestBlessMyLoader(unittest.TestCase):$/;" c +TestBlockComments Lib/test/test_inspect.py /^class TestBlockComments(GetSourceBase):$/;" c +TestBool Lib/test/test_optparse.py /^class TestBool(BaseTest):$/;" c +TestBooleanOptionalAction Lib/test/test_argparse.py /^class TestBooleanOptionalAction(ParserTestCase):$/;" c +TestBooleanOptionalActionRequired Lib/test/test_argparse.py /^class TestBooleanOptionalActionRequired(ParserTestCase):$/;" c +TestBooleanVar Lib/test/test_tkinter/test_variables.py /^class TestBooleanVar(TestBase):$/;" c +TestBootstrap Lib/test/test_ensurepip.py /^class TestBootstrap(EnsurepipMixin, unittest.TestCase):$/;" c +TestBootstrappingMainFunction Lib/test/test_ensurepip.py /^class TestBootstrappingMainFunction(EnsurepipMixin, unittest.TestCase):$/;" c +TestBoundArguments Lib/test/test_inspect.py /^class TestBoundArguments(unittest.TestCase):$/;" c +TestBranchAndJumpEvents Lib/test/test_monitoring.py /^class TestBranchAndJumpEvents(CheckEvents):$/;" c +TestBreak Lib/test/test_unittest/test_break.py /^class TestBreak(unittest.TestCase):$/;" c +TestBreakContinueReturnInExceptStarBlock Lib/test/test_except_star.py /^class TestBreakContinueReturnInExceptStarBlock(unittest.TestCase):$/;" c +TestBreakDefaultIntHandler Lib/test/test_unittest/test_break.py /^class TestBreakDefaultIntHandler(TestBreak):$/;" c +TestBreakSignalDefault Lib/test/test_unittest/test_break.py /^class TestBreakSignalDefault(TestBreak):$/;" c +TestBreakSignalIgnored Lib/test/test_unittest/test_break.py /^class TestBreakSignalIgnored(TestBreak):$/;" c +TestBreakpoint Lib/test/test_builtin.py /^class TestBreakpoint(unittest.TestCase):$/;" c +TestBufferProtocol Lib/test/test_buffer.py /^class TestBufferProtocol(unittest.TestCase):$/;" c +TestBufferedIOSignalInterrupt Lib/test/test_file_eintr.py /^class TestBufferedIOSignalInterrupt(TestFileIOSignalInterrupt):$/;" c +TestBufferingFormatter Lib/test/test_logging.py /^class TestBufferingFormatter(logging.BufferingFormatter):$/;" c +TestBuggyCases Lib/test/test_inspect.py /^class TestBuggyCases(GetSourceBase):$/;" c +TestBuglets Lib/test/test_peepholer.py /^class TestBuglets(unittest.TestCase):$/;" c +TestBugs Lib/test/test_sort.py /^class TestBugs(unittest.TestCase):$/;" c +TestBytecodeTestCase Lib/test/test_dis.py /^class TestBytecodeTestCase(BytecodeTestCase):$/;" c +TestBytes Lib/test/test_difflib.py /^class TestBytes(unittest.TestCase):$/;" c +TestBytesGenerator Lib/test/test_email/test_generator.py /^class TestBytesGenerator(TestGeneratorBase, TestEmailBase):$/;" c +TestBytesGeneratorIdempotentCRLF Lib/test/test_email/test_email.py /^ TestIdempotent):$/;" c +TestBytesGeneratorIdempotentNL Lib/test/test_email/test_email.py /^ TestIdempotent):$/;" c +TestBytesParser Lib/test/test_email/test_parser.py /^class TestBytesParser(TestParserBase, TestEmailBase):$/;" c +TestC Lib/test/test_unittest/test_loader.py /^ class TestC(TestP):$/;" c function:Test_TestLoader.test_getTestCaseNames__inheritance +TestCAPI Lib/test/test_capi/test_immortal.py /^class TestCAPI(unittest.TestCase):$/;" c +TestCAPI Lib/test/test_frame.py /^class TestCAPI(unittest.TestCase):$/;" c +TestCAPI Lib/test/test_tracemalloc.py /^class TestCAPI(unittest.TestCase):$/;" c +TestCDecode Lib/test/test_json/test_decode.py /^class TestCDecode(TestDecode, CTest): pass$/;" c +TestCDefault Lib/test/test_json/test_default.py /^class TestCDefault(TestDefault, CTest): pass$/;" c +TestCDelocalizeTest Lib/test/test_locale.py /^class TestCDelocalizeTest(CCookedTest, BaseDelocalizeTest):$/;" c +TestCDump Lib/test/test_json/test_dump.py /^class TestCDump(TestDump, CTest):$/;" c +TestCEncodeBasestringAscii Lib/test/test_json/test_encode_basestring_ascii.py /^class TestCEncodeBasestringAscii(TestEncodeBasestringAscii, CTest):$/;" c +TestCEnum Lib/test/test_json/test_enum.py /^class TestCEnum(TestEnum, CTest): pass$/;" c +TestCFail Lib/test/test_json/test_fail.py /^class TestCFail(TestFail, CTest): pass$/;" c +TestCFloat Lib/test/test_json/test_float.py /^class TestCFloat(TestFloat, CTest): pass$/;" c +TestCGetEventLoop Lib/test/test_asyncio/test_events.py /^ class TestCGetEventLoop(GetEventLoopTestsMixin, unittest.TestCase):$/;" c +TestCIndent Lib/test/test_json/test_indent.py /^class TestCIndent(TestIndent, CTest): pass$/;" c +TestCLocalize Lib/test/test_locale.py /^class TestCLocalize(CCookedTest, BaseLocalizeTest):$/;" c +TestCM Lib/test/test_contextlib.py /^ class TestCM(object):$/;" c function:TestBaseExitStack.test_enter_context +TestCM Lib/test/test_contextlib_async.py /^ class TestCM(object):$/;" c function:TestAsyncExitStack.test_enter_async_context +TestCM Lib/test/test_unittest/test_async_case.py /^class TestCM:$/;" c +TestCM Lib/test/test_unittest/test_runner.py /^class TestCM:$/;" c +TestCNumberFormatting Lib/test/test_locale.py /^class TestCNumberFormatting(CCookedTest, BaseFormattingTest):$/;" c +TestCP932Map Lib/test/test_codecmaps_jp.py /^ unittest.TestCase):$/;" c +TestCP949Map Lib/test/test_codecmaps_kr.py /^ unittest.TestCase):$/;" c +TestCP950Map Lib/test/test_codecmaps_tw.py /^ unittest.TestCase):$/;" c +TestCPPExt Lib/test/test_cppext/__init__.py /^class TestCPPExt(unittest.TestCase):$/;" c +TestCParser Lib/test/test_peg_generator/test_c_parser.py /^class TestCParser(unittest.TestCase):$/;" c +TestCPass1 Lib/test/test_json/test_pass1.py /^class TestCPass1(TestPass1, CTest): pass$/;" c +TestCPass2 Lib/test/test_json/test_pass2.py /^class TestCPass2(TestPass2, CTest): pass$/;" c +TestCPass3 Lib/test/test_json/test_pass3.py /^class TestCPass3(TestPass3, CTest): pass$/;" c +TestCPyTime Lib/test/test_time.py /^class TestCPyTime(CPyTimeTestCase, unittest.TestCase):$/;" c +TestCRLFNewlines Lib/test/test_univnewlines.py /^class TestCRLFNewlines(TestGenericUnivNewlines):$/;" c +TestCRNewlines Lib/test/test_univnewlines.py /^class TestCRNewlines(TestGenericUnivNewlines):$/;" c +TestCRecursion Lib/test/test_json/test_recursion.py /^class TestCRecursion(TestRecursion, CTest): pass$/;" c +TestCScanstring Lib/test/test_json/test_scanstring.py /^class TestCScanstring(TestScanstring, CTest): pass$/;" c +TestCSeparators Lib/test/test_json/test_separators.py /^class TestCSeparators(TestSeparators, CTest): pass$/;" c +TestCTest Lib/test/test_json/__init__.py /^class TestCTest(CTest):$/;" c +TestCUnicode Lib/test/test_json/test_unicode.py /^class TestCUnicode(TestUnicode, CTest): pass$/;" c +TestCache Lib/test/test_functools.py /^class TestCache:$/;" c +TestCachedProperty Lib/test/test_functools.py /^class TestCachedProperty(unittest.TestCase):$/;" c +TestCallCache Lib/test/test_opcache.py /^class TestCallCache(unittest.TestCase):$/;" c +TestCallList Lib/test/test_unittest/testmock/testhelpers.py /^class TestCallList(unittest.TestCase):$/;" c +TestCallable Lib/test/test_unittest/testmock/testcallable.py /^class TestCallable(unittest.TestCase):$/;" c +TestCallablePredicate Lib/test/test_unittest/testmock/testhelpers.py /^class TestCallablePredicate(unittest.TestCase):$/;" c +TestCallback Lib/test/test_optparse.py /^class TestCallback(BaseTest):$/;" c +TestCallbackCheckAbbrev Lib/test/test_optparse.py /^class TestCallbackCheckAbbrev(BaseTest):$/;" c +TestCallbackExtraArgs Lib/test/test_optparse.py /^class TestCallbackExtraArgs(BaseTest):$/;" c +TestCallbackManyArgs Lib/test/test_optparse.py /^class TestCallbackManyArgs(BaseTest):$/;" c +TestCallbackMeddleArgs Lib/test/test_optparse.py /^class TestCallbackMeddleArgs(BaseTest):$/;" c +TestCallbackVarArgs Lib/test/test_optparse.py /^class TestCallbackVarArgs(BaseTest):$/;" c +TestCallers Lib/test/test_trace.py /^class TestCallers(unittest.TestCase):$/;" c +TestCallingConventions Lib/test/test_call.py /^class TestCallingConventions(unittest.TestCase):$/;" c +TestCallingConventionsClass Lib/test/test_call.py /^class TestCallingConventionsClass(TestCallingConventions):$/;" c +TestCallingConventionsClassInstance Lib/test/test_call.py /^class TestCallingConventionsClassInstance(TestCallingConventions):$/;" c +TestCallingConventionsInstance Lib/test/test_call.py /^class TestCallingConventionsInstance(TestCallingConventions):$/;" c +TestCallingConventionsStatic Lib/test/test_call.py /^class TestCallingConventionsStatic(TestCallingConventions):$/;" c +TestCandidateTempdirList Lib/test/test_tempfile.py /^class TestCandidateTempdirList(BaseTestCase):$/;" c +TestCase Lib/test/test_argparse.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_asyncio/utils.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_ctypes/test_delattr.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_ctypes/test_objects.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_dataclasses.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_fstring.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_httplib.py /^TestCase = unittest.TestCase$/;" v +TestCase Lib/test/test_importlib/stubs.py /^ class TestCase(unittest.TestCase):$/;" c class:fake_filesystem_unittest +TestCase Lib/test/test_iter.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_lib2to3/support.py /^TestCase = unittest.TestCase$/;" v +TestCase Lib/test/test_sched.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_shelve.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_startfile.py /^class TestCase(unittest.TestCase):$/;" c +TestCase Lib/test/test_unittest/test_case.py /^ class TestCase(unittest.TestCase):$/;" c function:.test_no_exception_leak +TestCase Lib/unittest/case.py /^class TestCase(object):$/;" c +TestCase Programs/_testembed.c /^struct TestCase$/;" s file: +TestCase1 Lib/test/test_unittest/test_async_case.py /^ class TestCase1(unittest.IsolatedAsyncioTestCase):$/;" c function:TestAsyncCase.test_setup_get_event_loop +TestCaseBase Lib/test/test_htmlparser.py /^class TestCaseBase(unittest.TestCase):$/;" c +TestCaseBase Lib/test/test_sys_setprofile.py /^class TestCaseBase(unittest.TestCase):$/;" c +TestCases Programs/_testembed.c /^static struct TestCase TestCases[] = {$/;" v typeref:struct:TestCase file: +TestCause Lib/test/test_raise.py /^class TestCause(unittest.TestCase):$/;" c +TestCeil Lib/test/test_math.py /^ class TestCeil:$/;" c function:MathTests.testCeil +TestCgitb Lib/test/test_cgitb.py /^class TestCgitb(unittest.TestCase):$/;" c +TestChainMap Lib/test/test_collections.py /^class TestChainMap(unittest.TestCase):$/;" c +TestChannels Lib/test/test_interpreters.py /^class TestChannels(TestBase):$/;" c +TestCharHandler Lib/test/test_sax.py /^ class TestCharHandler(ContentHandler):$/;" c function:CDATAHandlerTest.test_handlers +TestCharset Lib/test/test_email/test_email.py /^class TestCharset(unittest.TestCase):$/;" c +TestChdir Lib/test/test_contextlib.py /^class TestChdir(unittest.TestCase):$/;" c +TestCheck Lib/test/test_tabnanny.py /^class TestCheck(TestCase):$/;" c +TestChoice Lib/test/test_optparse.py /^class TestChoice(BaseTest):$/;" c +TestClass Lib/test/test_docxmlrpc.py /^ class TestClass(object):$/;" c function:make_server +TestClass Lib/test/test_pydoc.py /^ class TestClass(object):$/;" c function:PydocDocTest.test_allmethods +TestClass Lib/test/test_scope.py /^ class TestClass:$/;" c function:ScopeTests.testInteractionWithTraceFunc +TestClass Lib/test/test_unittest/testmock/testmock.py /^ class TestClass:$/;" c function:MockTest.test_create_autospec_classmethod_and_staticmethod +TestClassCleanup Lib/test/test_unittest/test_runner.py /^class TestClassCleanup(unittest.TestCase):$/;" c +TestClassDecorators Lib/test/test_decorators.py /^class TestClassDecorators(unittest.TestCase):$/;" c +TestClassDef Lib/test/test_lib2to3/test_parser.py /^class TestClassDef(GrammarTest):$/;" c +TestClassGetitem Lib/test/test_genericclass.py /^class TestClassGetitem(unittest.TestCase):$/;" c +TestClassesAndFunctions Lib/test/test_inspect.py /^class TestClassesAndFunctions(unittest.TestCase):$/;" c +TestCleanUp Lib/test/test_unittest/test_runner.py /^class TestCleanUp(unittest.TestCase):$/;" c +TestCloseFds Lib/test/_test_multiprocessing.py /^class TestCloseFds(unittest.TestCase):$/;" c +TestCmpToKey Lib/test/test_functools.py /^class TestCmpToKey:$/;" c +TestCmpToKeyC Lib/test/test_functools.py /^class TestCmpToKeyC(TestCmpToKey, unittest.TestCase):$/;" c +TestCmpToKeyPy Lib/test/test_functools.py /^class TestCmpToKeyPy(TestCmpToKey, unittest.TestCase):$/;" c +TestCodeObjectWatchers Lib/test/test_capi/test_watchers.py /^class TestCodeObjectWatchers(unittest.TestCase):$/;" c +TestCollation Lib/test/test_locale.py /^class TestCollation(unittest.TestCase):$/;" c +TestCollectionABCs Lib/test/test_collections.py /^class TestCollectionABCs(ABCTestCase):$/;" c +TestCommandLine Lib/test/test_cprofile.py /^class TestCommandLine(unittest.TestCase):$/;" c +TestCommandLine Lib/test/test_gzip.py /^class TestCommandLine(unittest.TestCase):$/;" c +TestCommandLine Lib/test/test_tabnanny.py /^class TestCommandLine(TestCase):$/;" c +TestCommandLine Lib/test/test_trace.py /^class TestCommandLine(unittest.TestCase):$/;" c +TestCommandLine Lib/test/test_tracemalloc.py /^class TestCommandLine(unittest.TestCase):$/;" c +TestCommandLineArgs Lib/test/test_unittest/test_program.py /^class TestCommandLineArgs(unittest.TestCase):$/;" c +TestCompiler Lib/test/test_patma.py /^class TestCompiler(unittest.TestCase):$/;" c +TestComplexDecorator Lib/test/test_inspect.py /^class TestComplexDecorator(GetSourceBase):$/;" c +TestComplexity Lib/test/test_zipfile/_path/test_complexity.py /^class TestComplexity(unittest.TestCase):$/;" c +TestConcretePolicies Lib/test/test_email/test_policy.py /^class TestConcretePolicies(unittest.TestCase):$/;" c +TestConflict Lib/test/test_optparse.py /^class TestConflict(ConflictBase):$/;" c +TestConflictHandling Lib/test/test_argparse.py /^class TestConflictHandling(TestCase):$/;" c +TestConflictOverride Lib/test/test_optparse.py /^class TestConflictOverride(BaseTest):$/;" c +TestConflictResolve Lib/test/test_optparse.py /^class TestConflictResolve(ConflictBase):$/;" c +TestConflictingDefaults Lib/test/test_optparse.py /^class TestConflictingDefaults(BaseTest):$/;" c +TestConstActionsMissingConstKwarg Lib/test/test_argparse.py /^class TestConstActionsMissingConstKwarg(ParserTestCase):$/;" c +TestContains Lib/test/test_contains.py /^class TestContains(unittest.TestCase):$/;" c +TestContentDisposition Lib/test/test_email/test_headerregistry.py /^class TestContentDisposition(TestHeaderBase):$/;" c +TestContentManager Lib/test/test_email/test_contentmanager.py /^class TestContentManager(TestEmailBase):$/;" c +TestContentTransferEncoding Lib/test/test_email/test_headerregistry.py /^class TestContentTransferEncoding(TestHeaderBase):$/;" c +TestContentTypeHeader Lib/test/test_email/test_headerregistry.py /^class TestContentTypeHeader(TestHeaderBase):$/;" c +TestContext Lib/test/test_raise.py /^class TestContext(unittest.TestCase):$/;" c +TestContextDecorator Lib/test/test_contextlib.py /^class TestContextDecorator(unittest.TestCase):$/;" c +TestConvert Lib/test/test_enum.py /^class TestConvert(unittest.TestCase):$/;" c +TestCopy Lib/test/test_copy.py /^class TestCopy(unittest.TestCase):$/;" c +TestCopy Lib/test/test_shutil.py /^class TestCopy(BaseTest, unittest.TestCase):$/;" c +TestCopyFile Lib/test/test_shutil.py /^class TestCopyFile(unittest.TestCase):$/;" c +TestCopyFileObj Lib/test/test_shutil.py /^class TestCopyFileObj(unittest.TestCase):$/;" c +TestCopyTree Lib/test/test_shutil.py /^class TestCopyTree(BaseTest, unittest.TestCase):$/;" c +TestCopyfile Lib/test/test_largefile.py /^class TestCopyfile(LargeFileTest, unittest.TestCase):$/;" c +TestCopying Lib/test/test_set.py /^class TestCopying:$/;" c +TestCopyingEmpty Lib/test/test_set.py /^class TestCopyingEmpty(TestCopying, unittest.TestCase):$/;" c +TestCopyingNested Lib/test/test_set.py /^class TestCopyingNested(TestCopying, unittest.TestCase):$/;" c +TestCopyingSingleton Lib/test/test_set.py /^class TestCopyingSingleton(TestCopying, unittest.TestCase):$/;" c +TestCopyingTriple Lib/test/test_set.py /^class TestCopyingTriple(TestCopying, unittest.TestCase):$/;" c +TestCopyingTuple Lib/test/test_set.py /^class TestCopyingTuple(TestCopying, unittest.TestCase):$/;" c +TestCornerCases Lib/test/test_unpack.py /^class TestCornerCases(unittest.TestCase):$/;" c +TestCorrelationAndCovariance Lib/test/test_statistics.py /^class TestCorrelationAndCovariance(unittest.TestCase):$/;" c +TestCount Lib/test/test_optparse.py /^class TestCount(BaseTest):$/;" c +TestCounter Lib/test/test_collections.py /^class TestCounter(unittest.TestCase):$/;" c +TestCoverage Lib/test/test_trace.py /^class TestCoverage(unittest.TestCase):$/;" c +TestCoverageCommandLineOutput Lib/test/test_trace.py /^class TestCoverageCommandLineOutput(unittest.TestCase):$/;" c +TestCrispinTorture Lib/test/test_email/torture_test.py /^class TestCrispinTorture(TortureBase):$/;" c +TestCsvBase Lib/test/test_csv.py /^class TestCsvBase(unittest.TestCase):$/;" c +TestCurses Lib/test/test_curses.py /^class TestCurses(unittest.TestCase):$/;" c +TestCustomMessage Lib/test/test_email/test_parser.py /^class TestCustomMessage(TestEmailBase):$/;" c +TestDTDHandler Lib/test/test_sax.py /^ class TestDTDHandler:$/;" c class:ExpatReaderTest +TestData Lib/test/test_tomllib/test_data.py /^class TestData(unittest.TestCase):$/;" c +TestDate Lib/test/datetimetester.py /^class TestDate(HarmlessMixedComparison, unittest.TestCase):$/;" c +TestDateHeader Lib/test/test_email/test_headerregistry.py /^class TestDateHeader(TestHeaderBase):$/;" c +TestDateOnly Lib/test/datetimetester.py /^class TestDateOnly(unittest.TestCase):$/;" c +TestDateTime Lib/test/datetimetester.py /^class TestDateTime(TestDate):$/;" c +TestDateTimeTZ Lib/test/datetimetester.py /^class TestDateTimeTZ(TestDateTime, TZInfoBase, unittest.TestCase):$/;" c +TestDecode Lib/test/test_email/test__encoded_words.py /^class TestDecode(TestEmailBase):$/;" c +TestDecode Lib/test/test_json/test_decode.py /^class TestDecode:$/;" c +TestDecode Lib/test/test_json/test_speedups.py /^class TestDecode(CTest):$/;" c +TestDecodeB Lib/test/test_email/test__encoded_words.py /^class TestDecodeB(TestEmailBase):$/;" c +TestDecodeQ Lib/test/test_email/test__encoded_words.py /^class TestDecodeQ(TestEmailBase):$/;" c +TestDecorateSortUndecorate Lib/test/test_sort.py /^class TestDecorateSortUndecorate(unittest.TestCase):$/;" c +TestDecorators Lib/test/test_decorators.py /^class TestDecorators(unittest.TestCase):$/;" c +TestDecorators Lib/test/test_inspect.py /^class TestDecorators(GetSourceBase):$/;" c +TestDefault Lib/test/test_json/test_default.py /^class TestDefault:$/;" c +TestDefaultDict Lib/test/test_defaultdict.py /^class TestDefaultDict(unittest.TestCase):$/;" c +TestDefaultSuppress Lib/test/test_argparse.py /^class TestDefaultSuppress(ParserTestCase):$/;" c +TestDefaultValues Lib/test/test_optparse.py /^class TestDefaultValues(BaseTest):$/;" c +TestDefectCapture Lib/test/test_email/test_defect_handling.py /^class TestDefectCapture(TestDefectsBase, TestEmailBase):$/;" c +TestDefectDetection Lib/test/test_email/test_defect_handling.py /^class TestDefectDetection(TestDefectsBase, TestEmailBase):$/;" c +TestDefectRaising Lib/test/test_email/test_defect_handling.py /^class TestDefectRaising(TestDefectsBase, TestEmailBase):$/;" c +TestDefectsBase Lib/test/test_email/test_defect_handling.py /^class TestDefectsBase:$/;" c +TestDeque Lib/test/test_iterlen.py /^class TestDeque(TestTemporarilyImmutable, unittest.TestCase):$/;" c +TestDequeReversed Lib/test/test_iterlen.py /^class TestDequeReversed(TestTemporarilyImmutable, unittest.TestCase):$/;" c +TestDescriptions Lib/test/test_pydoc.py /^class TestDescriptions(unittest.TestCase):$/;" c +TestDescriptors Lib/test/test_dataclasses.py /^class TestDescriptors(unittest.TestCase):$/;" c +TestDialectExcel Lib/test/test_csv.py /^class TestDialectExcel(TestCsvBase):$/;" c +TestDialectRegistry Lib/test/test_csv.py /^class TestDialectRegistry(unittest.TestCase):$/;" c +TestDialectUnix Lib/test/test_csv.py /^class TestDialectUnix(TestCsvBase):$/;" c +TestDialectValidity Lib/test/test_csv.py /^class TestDialectValidity(unittest.TestCase):$/;" c +TestDictFields Lib/test/test_csv.py /^class TestDictFields(unittest.TestCase):$/;" c +TestDictItems Lib/test/test_iterlen.py /^class TestDictItems(TestTemporarilyImmutable, unittest.TestCase):$/;" c +TestDictKeys Lib/test/test_iterlen.py /^class TestDictKeys(TestTemporarilyImmutable, unittest.TestCase):$/;" c +TestDictValues Lib/test/test_iterlen.py /^class TestDictValues(TestTemporarilyImmutable, unittest.TestCase):$/;" c +TestDictWatchers Lib/test/test_capi/test_watchers.py /^class TestDictWatchers(unittest.TestCase):$/;" c +TestDidNotRun Lib/test/support/__init__.py /^class TestDidNotRun(Error):$/;" c +TestDigestAuthHandler Lib/test/test_urllib2.py /^ class TestDigestAuthHandler(urllib.request.HTTPDigestAuthHandler):$/;" c function:HandlerTests.test_basic_and_digest_auth_handlers +TestDirEntry Lib/test/test_os.py /^class TestDirEntry(unittest.TestCase):$/;" c +TestDisTraceback Lib/test/test_dis.py /^class TestDisTraceback(DisTestBase):$/;" c +TestDisTracebackWithFile Lib/test/test_dis.py /^class TestDisTracebackWithFile(TestDisTraceback):$/;" c +TestDisable Lib/test/test_monitoring.py /^class TestDisable(MonitoringTestBase, unittest.TestCase):$/;" c +TestDisallowLongAbbreviationAllowsShortGrouping Lib/test/test_argparse.py /^class TestDisallowLongAbbreviationAllowsShortGrouping(ParserTestCase):$/;" c +TestDisallowLongAbbreviationAllowsShortGroupingPrefix Lib/test/test_argparse.py /^class TestDisallowLongAbbreviationAllowsShortGroupingPrefix(ParserTestCase):$/;" c +TestDiscovery Lib/test/test_unittest/test_discovery.py /^class TestDiscovery(unittest.TestCase):$/;" c +TestDistributions Lib/test/test_random.py /^class TestDistributions(unittest.TestCase):$/;" c +TestDocExample Lib/test/test_bisect.py /^class TestDocExample:$/;" c +TestDocExampleC Lib/test/test_bisect.py /^class TestDocExampleC(TestDocExample, unittest.TestCase):$/;" c +TestDocExamplePython Lib/test/test_bisect.py /^class TestDocExamplePython(TestDocExample, unittest.TestCase):$/;" c +TestDocString Lib/test/test_dataclasses.py /^class TestDocString(unittest.TestCase):$/;" c +TestDocTestFinder Lib/test/test_doctest.py /^class TestDocTestFinder(unittest.TestCase):$/;" c +TestDoubleVar Lib/test/test_tkinter/test_variables.py /^class TestDoubleVar(TestBase):$/;" c +TestDriver Lib/test/test_lib2to3/test_parser.py /^class TestDriver(support.TestCase):$/;" c +TestDump Lib/test/test_json/test_dump.py /^class TestDump:$/;" c +TestEPoll Lib/test/test_epoll.py /^class TestEPoll(unittest.TestCase):$/;" c +TestEUCJISX0213Map Lib/test/test_codecmaps_jp.py /^ unittest.TestCase):$/;" c +TestEUCJPCOMPATMap Lib/test/test_codecmaps_jp.py /^ unittest.TestCase):$/;" c +TestEUCKRMap Lib/test/test_codecmaps_kr.py /^ unittest.TestCase):$/;" c +TestEdgeCases Lib/test/test_sys_setprofile.py /^class TestEdgeCases(unittest.TestCase):$/;" c +TestEdgeCases Lib/test/test_sys_settrace.py /^class TestEdgeCases(unittest.TestCase):$/;" c +TestEgg Lib/test/test_importlib/test_zip.py /^class TestEgg(TestZip):$/;" c +TestEmailAsianCodecs Lib/test/test_email/test_asian_codecs.py /^class TestEmailAsianCodecs(TestEmailBase):$/;" c +TestEmailBase Lib/test/test_email/__init__.py /^class TestEmailBase(unittest.TestCase):$/;" c +TestEmailMessage Lib/test/test_email/test_message.py /^class TestEmailMessage(TestEmailMessageBase, TestEmailBase):$/;" c +TestEmailMessageBase Lib/test/test_email/test_message.py /^class TestEmailMessageBase:$/;" c +TestEmpty Lib/test/test_enumerate.py /^class TestEmpty(EnumerateTestCase):$/;" c +TestEmptyAndNonLatinStrings Lib/test/test_enum.py /^class TestEmptyAndNonLatinStrings(unittest.TestCase):$/;" c +TestEmptyAndSpaceContainingArguments Lib/test/test_argparse.py /^class TestEmptyAndSpaceContainingArguments(ParserTestCase):$/;" c +TestEnUSCollation Lib/test/test_locale.py /^class TestEnUSCollation(BaseLocalizedTest, TestCollation):$/;" c +TestEnUSDelocalize Lib/test/test_locale.py /^class TestEnUSDelocalize(EnUSCookedTest, BaseDelocalizeTest):$/;" c +TestEnUSLocalize Lib/test/test_locale.py /^class TestEnUSLocalize(EnUSCookedTest, BaseLocalizeTest):$/;" c +TestEnUSNumberFormatting Lib/test/test_locale.py /^class TestEnUSNumberFormatting(EnUSCookedTest, EnUSNumberFormatting):$/;" c +TestEncode Lib/test/test_email/test__encoded_words.py /^class TestEncode(TestEmailBase):$/;" c +TestEncode Lib/test/test_json/test_speedups.py /^class TestEncode(CTest):$/;" c +TestEncodeB Lib/test/test_email/test__encoded_words.py /^class TestEncodeB(TestEmailBase):$/;" c +TestEncodeBasestringAscii Lib/test/test_json/test_encode_basestring_ascii.py /^class TestEncodeBasestringAscii:$/;" c +TestEncodeQ Lib/test/test_email/test__encoded_words.py /^class TestEncodeQ(TestEmailBase):$/;" c +TestEncoders Lib/test/test_email/test_email.py /^class TestEncoders(unittest.TestCase):$/;" c +TestEncoding Lib/test/test_argparse.py /^class TestEncoding(TestCase):$/;" c +TestEntityRecorder Lib/test/test_sax.py /^ class TestEntityRecorder:$/;" c class:ExpatReaderTest +TestEntityResolver Lib/test/test_sax.py /^ class TestEntityResolver:$/;" c class:ExpatReaderTest +TestEntryPoints Lib/test/test_importlib/test_main.py /^class TestEntryPoints(unittest.TestCase):$/;" c +TestEnum Lib/test/test_enum.py /^ class TestEnum(enum.Enum):$/;" c function:TestSpecial.test_missing_exceptions_reset +TestEnum Lib/test/test_json/test_enum.py /^class TestEnum:$/;" c +TestEnumTypeSubclassing Lib/test/test_enum.py /^class TestEnumTypeSubclassing(unittest.TestCase):$/;" c +TestEnumerations Lib/test/test_ssl.py /^class TestEnumerations(unittest.TestCase):$/;" c +TestEq Lib/test/test_dataclasses.py /^class TestEq(unittest.TestCase):$/;" c +TestEquality Lib/test/test_unittest/support.py /^class TestEquality(object):$/;" c +TestErrPrint Lib/test/test_tabnanny.py /^class TestErrPrint(TestCase):$/;" c +TestError Lib/test/test_asyncio/test_events.py /^ class TestError(Exception):$/;" c function:GetEventLoopTestsMixin.test_get_event_loop_returns_running_loop +TestError Lib/test/test_tomllib/test_error.py /^class TestError(unittest.TestCase):$/;" c +TestError Modules/_testcapimodule.c /^static PyObject *TestError; \/* set to exception object in init *\/$/;" v file: +TestErrorHandling Lib/test/test_bisect.py /^class TestErrorHandling:$/;" c +TestErrorHandling Lib/test/test_heapq.py /^class TestErrorHandling:$/;" c +TestErrorHandlingC Lib/test/test_bisect.py /^class TestErrorHandlingC(TestErrorHandling, unittest.TestCase):$/;" c +TestErrorHandlingC Lib/test/test_heapq.py /^class TestErrorHandlingC(TestErrorHandling, TestCase):$/;" c +TestErrorHandlingPython Lib/test/test_bisect.py /^class TestErrorHandlingPython(TestErrorHandling, unittest.TestCase):$/;" c +TestErrorHandlingPython Lib/test/test_heapq.py /^class TestErrorHandlingPython(TestErrorHandling, TestCase):$/;" c +TestErrorMessagesUseQualifiedName Lib/test/test_call.py /^class TestErrorMessagesUseQualifiedName(unittest.TestCase):$/;" c +TestEscapedExcel Lib/test/test_csv.py /^class TestEscapedExcel(TestCsvBase):$/;" c +TestExamples Lib/test/test_itertools.py /^class TestExamples(unittest.TestCase):$/;" c +TestExcept Lib/test/test_lib2to3/test_parser.py /^class TestExcept(GrammarTest):$/;" c +TestExceptStarCleanup Lib/test/test_except_star.py /^class TestExceptStarCleanup(ExceptStarTest):$/;" c +TestExceptStarExceptionGroupSubclass Lib/test/test_except_star.py /^class TestExceptStarExceptionGroupSubclass(ExceptStarTest):$/;" c +TestExceptStarRaise Lib/test/test_except_star.py /^class TestExceptStarRaise(ExceptStarTest):$/;" c +TestExceptStarRaiseFrom Lib/test/test_except_star.py /^class TestExceptStarRaiseFrom(ExceptStarTest):$/;" c +TestExceptStarReraise Lib/test/test_except_star.py /^class TestExceptStarReraise(ExceptStarTest):$/;" c +TestExceptStarSplitSemantics Lib/test/test_except_star.py /^class TestExceptStarSplitSemantics(ExceptStarTest):$/;" c +TestExceptStar_WeirdExceptionGroupSubclass Lib/test/test_except_star.py /^class TestExceptStar_WeirdExceptionGroupSubclass(ExceptStarTest):$/;" c +TestExceptStar_WeirdLeafExceptions Lib/test/test_except_star.py /^class TestExceptStar_WeirdLeafExceptions(ExceptStarTest):$/;" c +TestException Lib/test/test_email/test_policy.py /^class TestException(Exception):$/;" c +TestException Lib/test/test_exceptions.py /^ class TestException(MemoryError):$/;" c function:ExceptionTests.test_memory_error_subclasses +TestExceptionGroupTypeHierarchy Lib/test/test_exception_group.py /^class TestExceptionGroupTypeHierarchy(unittest.TestCase):$/;" c +TestExceptionPropagation Lib/test/test_set.py /^class TestExceptionPropagation(unittest.TestCase):$/;" c +TestExceptions Lib/test/test_socket.py /^class TestExceptions(unittest.TestCase):$/;" c +TestExecutablePrependedZip Lib/test/test_zipfile/test_core.py /^class TestExecutablePrependedZip(unittest.TestCase):$/;" c +TestExit Lib/test/test_runpy.py /^class TestExit(unittest.TestCase):$/;" c +TestExitOnError Lib/test/test_argparse.py /^class TestExitOnError(TestCase):$/;" c +TestExitStack Lib/test/test_contextlib.py /^class TestExitStack(TestBaseExitStack, unittest.TestCase):$/;" c +TestExpandDefaults Lib/test/test_optparse.py /^class TestExpandDefaults(BaseTest):$/;" c +TestExports Lib/test/test_tempfile.py /^class TestExports(BaseTestCase):$/;" c +TestExpressionStackSize Lib/test/test_compile.py /^class TestExpressionStackSize(unittest.TestCase):$/;" c +TestExtendAddActions Lib/test/test_optparse.py /^class TestExtendAddActions(BaseTest):$/;" c +TestExtendAddTypes Lib/test/test_optparse.py /^class TestExtendAddTypes(BaseTest):$/;" c +TestExtendedArgs Lib/test/test_sys_settrace.py /^class TestExtendedArgs(unittest.TestCase):$/;" c +TestExtractionFilters Lib/test/test_tarfile.py /^class TestExtractionFilters(unittest.TestCase):$/;" c +TestFMean Lib/test/test_statistics.py /^class TestFMean(unittest.TestCase):$/;" c +TestFTPClass Lib/test/test_ftplib.py /^class TestFTPClass(TestCase):$/;" c +TestFail Lib/test/test_json/test_fail.py /^class TestFail:$/;" c +TestFailed Lib/test/support/__init__.py /^class TestFailed(Error):$/;" c +TestFailedWithDetails Lib/test/support/__init__.py /^class TestFailedWithDetails(TestFailed):$/;" c +TestFailingBool Lib/test/test_builtin.py /^class TestFailingBool:$/;" c +TestFailingIter Lib/test/test_builtin.py /^class TestFailingIter:$/;" c +TestFailingIter Lib/test/test_functools.py /^ class TestFailingIter:$/;" c function:TestReduce.test_reduce +TestFakeMailBox Lib/test/test_mailbox.py /^class TestFakeMailBox(unittest.TestCase):$/;" c +TestFcntl Lib/test/test_fcntl.py /^class TestFcntl(unittest.TestCase):$/;" c +TestFeedParsers Lib/test/test_email/test_email.py /^class TestFeedParsers(TestEmailBase):$/;" c +TestFieldNoAnnotation Lib/test/test_dataclasses.py /^class TestFieldNoAnnotation(unittest.TestCase):$/;" c +TestFileIOSignalInterrupt Lib/test/test_file_eintr.py /^class TestFileIOSignalInterrupt:$/;" c +TestFileMethods Lib/test/test_largefile.py /^class TestFileMethods(LargeFileTest):$/;" c +TestFileTypeDefaults Lib/test/test_argparse.py /^class TestFileTypeDefaults(TempDirMixin, ParserTestCase):$/;" c +TestFileTypeMissingInitialization Lib/test/test_argparse.py /^class TestFileTypeMissingInitialization(TestCase):$/;" c +TestFileTypeOpenArgs Lib/test/test_argparse.py /^class TestFileTypeOpenArgs(TestCase):$/;" c +TestFileTypeR Lib/test/test_argparse.py /^class TestFileTypeR(TempDirMixin, ParserTestCase):$/;" c +TestFileTypeRB Lib/test/test_argparse.py /^class TestFileTypeRB(TempDirMixin, ParserTestCase):$/;" c +TestFileTypeRepr Lib/test/test_argparse.py /^class TestFileTypeRepr(TestCase):$/;" c +TestFileTypeW Lib/test/test_argparse.py /^class TestFileTypeW(TempDirMixin, ParserTestCase):$/;" c +TestFileTypeWB Lib/test/test_argparse.py /^class TestFileTypeWB(TempDirMixin, ParserTestCase):$/;" c +TestFileTypeX Lib/test/test_argparse.py /^class TestFileTypeX(TempDirMixin, ParserTestCase):$/;" c +TestFileTypeXB Lib/test/test_argparse.py /^class TestFileTypeXB(TestFileTypeX):$/;" c +TestFilemode Lib/test/test_stat.py /^class TestFilemode:$/;" c +TestFilemodeCStat Lib/test/test_stat.py /^class TestFilemodeCStat(TestFilemode, unittest.TestCase):$/;" c +TestFilemodePyStat Lib/test/test_stat.py /^class TestFilemodePyStat(TestFilemode, unittest.TestCase):$/;" c +TestFilters Lib/test/test_tracemalloc.py /^class TestFilters(unittest.TestCase):$/;" c +TestFindLongest Lib/test/test_difflib.py /^class TestFindLongest(unittest.TestCase):$/;" c +TestFinder Lib/test/test_importlib/import_/test_path.py /^ class TestFinder:$/;" c function:FinderTests.test_finder_with_find_spec +TestFinderMethods Lib/test/test_dis.py /^class TestFinderMethods(unittest.TestCase):$/;" c +TestFirstSets Lib/test/test_peg_generator/test_first_sets.py /^class TestFirstSets(unittest.TestCase):$/;" c +TestFlag Lib/test/test_enum.py /^ class TestFlag(Flag):$/;" c function:OldTestFlag.test_unique_composite +TestFlag Lib/test/test_enum.py /^ class TestFlag(IntFlag):$/;" c function:OldTestIntFlag.test_unique_composite +TestFlags Lib/test/_test_multiprocessing.py /^class TestFlags(unittest.TestCase):$/;" c +TestFloat Lib/test/test_json/test_float.py /^class TestFloat:$/;" c +TestFloor Lib/test/test_math.py /^ class TestFloor:$/;" c function:MathTests.testFloor +TestFolding Lib/test/test_email/test__header_value_parser.py /^class TestFolding(TestEmailBase):$/;" c +TestFolding Lib/test/test_email/test_headerregistry.py /^class TestFolding(TestHeaderBase):$/;" c +TestFork Lib/test/test_asyncio/test_unix_events.py /^class TestFork(unittest.IsolatedAsyncioTestCase):$/;" c +TestForkAwareThreadLock Lib/test/_test_multiprocessing.py /^class TestForkAwareThreadLock(unittest.TestCase):$/;" c +TestForkInThread Lib/test/test_thread.py /^class TestForkInThread(unittest.TestCase):$/;" c +TestFormatAnnotation Lib/test/test_inspect.py /^class TestFormatAnnotation(unittest.TestCase):$/;" c +TestFormatWitnesses Lib/test/test_tabnanny.py /^class TestFormatWitnesses(TestCase):$/;" c +TestFormats Lib/test/test_sndhdr.py /^class TestFormats(unittest.TestCase):$/;" c +TestFrFRNumberFormatting Lib/test/test_locale.py /^class TestFrFRNumberFormatting(FrFRCookedTest, BaseFormattingTest):$/;" c +TestFrame Lib/test/test_traceback.py /^class TestFrame(unittest.TestCase):$/;" c +TestFreeze Lib/test/test_tools/test_freeze.py /^class TestFreeze(unittest.TestCase):$/;" c +TestFromMangling Lib/test/test_email/test_email.py /^class TestFromMangling(unittest.TestCase):$/;" c +TestFrozen Lib/test/test_dataclasses.py /^class TestFrozen(unittest.TestCase):$/;" c +TestFrozen Lib/test/test_frozen.py /^class TestFrozen(unittest.TestCase):$/;" c +TestFrozenSet Lib/test/test_set.py /^class TestFrozenSet(TestJointOps, unittest.TestCase):$/;" c +TestFrozenSetSubclass Lib/test/test_set.py /^class TestFrozenSetSubclass(TestFrozenSet):$/;" c +TestFrozenSetSubclassWithSlots Lib/test/test_set.py /^class TestFrozenSetSubclassWithSlots(TestSetSubclassWithSlots):$/;" c +TestFrozenUtf8_1 Lib/__hello__.py /^class TestFrozenUtf8_1:$/;" c +TestFrozenUtf8_2 Lib/__hello__.py /^class TestFrozenUtf8_2:$/;" c +TestFrozenUtf8_4 Lib/__hello__.py /^class TestFrozenUtf8_4:$/;" c +TestFuncWatchers Lib/test/test_capi/test_watchers.py /^class TestFuncWatchers(unittest.TestCase):$/;" c +TestFuncs Lib/test/test_trace.py /^class TestFuncs(unittest.TestCase):$/;" c +TestFunctionAnnotations Lib/test/test_lib2to3/test_parser.py /^class TestFunctionAnnotations(GrammarTest):$/;" c +TestFunctionWithManyArgs Lib/test/test_call.py /^class TestFunctionWithManyArgs(unittest.TestCase):$/;" c +TestFunctional Lib/test/test_asyncio/test_unix_events.py /^class TestFunctional(unittest.TestCase):$/;" c +TestFuture Lib/test/test_future3.py /^class TestFuture(unittest.TestCase):$/;" c +TestFuzzer Lib/test/test_xxtestfuzz.py /^class TestFuzzer(unittest.TestCase):$/;" c +TestGB18030Map Lib/test/test_codecmaps_cn.py /^ unittest.TestCase):$/;" c +TestGB2312Map Lib/test/test_codecmaps_cn.py /^ unittest.TestCase):$/;" c +TestGBKMap Lib/test/test_codecmaps_cn.py /^ unittest.TestCase):$/;" c +TestGC Lib/test/test_itertools.py /^class TestGC(unittest.TestCase):$/;" c +TestGdbm Lib/test/test_dbm_gnu.py /^class TestGdbm(unittest.TestCase):$/;" c +TestGenerator Lib/test/test_email/test_generator.py /^class TestGenerator(TestGeneratorBase, TestEmailBase):$/;" c +TestGeneratorBase Lib/test/test_email/test_generator.py /^class TestGeneratorBase:$/;" c +TestGenericTest Lib/test/test_genericpath.py /^class TestGenericTest(GenericTest, unittest.TestCase):$/;" c +TestGenericUnivNewlines Lib/test/test_univnewlines.py /^class TestGenericUnivNewlines:$/;" c +TestGeometricMean Lib/test/test_statistics.py /^class TestGeometricMean(unittest.TestCase):$/;" c +TestGetAsyncGenState Lib/test/test_inspect.py /^class TestGetAsyncGenState(unittest.IsolatedAsyncioTestCase):$/;" c +TestGetCandidateNames Lib/test/test_tempfile.py /^class TestGetCandidateNames(BaseTestCase):$/;" c +TestGetClosureVars Lib/test/test_inspect.py /^class TestGetClosureVars(unittest.TestCase):$/;" c +TestGetCoroutineState Lib/test/test_inspect.py /^class TestGetCoroutineState(unittest.TestCase):$/;" c +TestGetDefault Lib/test/test_argparse.py /^class TestGetDefault(TestCase):$/;" c +TestGetDefaultTempdir Lib/test/test_tempfile.py /^class TestGetDefaultTempdir(BaseTestCase):$/;" c +TestGetGeneratorState Lib/test/test_inspect.py /^class TestGetGeneratorState(unittest.TestCase):$/;" c +TestGetProfile Lib/test/test_sys_setprofile.py /^class TestGetProfile(unittest.TestCase):$/;" c +TestGetTempDir Lib/test/test_tempfile.py /^class TestGetTempDir(BaseTestCase):$/;" c +TestGetTempPrefix Lib/test/test_tempfile.py /^class TestGetTempPrefix(BaseTestCase):$/;" c +TestGetTerminalSize Lib/test/test_shutil.py /^class TestGetTerminalSize(unittest.TestCase):$/;" c +TestGetattrStatic Lib/test/test_inspect.py /^class TestGetattrStatic(unittest.TestCase):$/;" c +TestGetcallargsFunctions Lib/test/test_inspect.py /^class TestGetcallargsFunctions(unittest.TestCase):$/;" c +TestGetcallargsMethods Lib/test/test_inspect.py /^class TestGetcallargsMethods(TestGetcallargsFunctions):$/;" c +TestGetcallargsUnboundMethods Lib/test/test_inspect.py /^class TestGetcallargsUnboundMethods(TestGetcallargsMethods):$/;" c +TestGetsourceInteractive Lib/test/test_inspect.py /^class TestGetsourceInteractive(unittest.TestCase):$/;" c +TestGettingSourceOfToplevelFrames Lib/test/test_inspect.py /^class TestGettingSourceOfToplevelFrames(GetSourceBase):$/;" c +TestGrammarVisitor Lib/test/test_peg_generator/test_pegen.py /^class TestGrammarVisitor:$/;" c +TestGrammarVisualizer Lib/test/test_peg_generator/test_pegen.py /^class TestGrammarVisualizer(unittest.TestCase):$/;" c +TestGraphs Lib/test/test_set.py /^class TestGraphs(unittest.TestCase):$/;" c +TestGzip Lib/test/test_gzip.py /^class TestGzip(BaseTest):$/;" c +TestHTTPServer Lib/test/test_logging.py /^class TestHTTPServer(ControlMixin, HTTPServer):$/;" c +TestHZStateful Lib/test/test_multibytecodec.py /^class TestHZStateful(TestStateful):$/;" c +TestHandler Lib/test/support/logging_helper.py /^class TestHandler(logging.handlers.BufferingHandler):$/;" c +TestHandler Lib/test/test_wsgiref.py /^class TestHandler(ErrorHandler):$/;" c +TestHarmonicMean Lib/test/test_statistics.py /^class TestHarmonicMean(NumericTestCase, AverageMixin, UnivariateTypeMixin):$/;" c +TestHash Lib/test/test_dataclasses.py /^class TestHash(unittest.TestCase):$/;" c +TestHashMappingProtocol Lib/test/mapping_tests.py /^class TestHashMappingProtocol(TestMappingProtocol):$/;" c +TestHashing Lib/test/test_unittest/support.py /^class TestHashing(object):$/;" c +TestHeader Lib/test/test_email/test_email.py /^class TestHeader(TestEmailBase):$/;" c +TestHeaderBase Lib/test/test_email/test_headerregistry.py /^class TestHeaderBase(TestEmailBase):$/;" c +TestHeaderRegistry Lib/test/test_email/test_email.py /^class TestHeaderRegistry(TestEmailBase):$/;" c +TestHeaderRegistry Lib/test/test_email/test_headerregistry.py /^class TestHeaderRegistry(TestEmailBase):$/;" c +TestHeap Lib/test/test_heapq.py /^class TestHeap:$/;" c +TestHeapC Lib/test/test_heapq.py /^class TestHeapC(TestHeap, TestCase):$/;" c +TestHeapPython Lib/test/test_heapq.py /^class TestHeapPython(TestHeap, TestCase):$/;" c +TestHeapTypeRelative Lib/test/test_capi/test_misc.py /^class TestHeapTypeRelative(unittest.TestCase):$/;" c +TestHelp Lib/test/test_optparse.py /^class TestHelp(BaseTest):$/;" c +TestHelpAlternatePrefixChars Lib/test/test_argparse.py /^class TestHelpAlternatePrefixChars(HelpTestCase):$/;" c +TestHelpArgumentDefaults Lib/test/test_argparse.py /^class TestHelpArgumentDefaults(HelpTestCase):$/;" c +TestHelpBiggerOptionalGroups Lib/test/test_argparse.py /^class TestHelpBiggerOptionalGroups(HelpTestCase):$/;" c +TestHelpBiggerOptionals Lib/test/test_argparse.py /^class TestHelpBiggerOptionals(HelpTestCase):$/;" c +TestHelpBiggerPositionals Lib/test/test_argparse.py /^class TestHelpBiggerPositionals(HelpTestCase):$/;" c +TestHelpFormattingMetaclass Lib/test/test_argparse.py /^class TestHelpFormattingMetaclass(type):$/;" c +TestHelpMetavarTypeFormatter Lib/test/test_argparse.py /^class TestHelpMetavarTypeFormatter(HelpTestCase):$/;" c +TestHelpNoHelpOptional Lib/test/test_argparse.py /^class TestHelpNoHelpOptional(HelpTestCase):$/;" c +TestHelpNone Lib/test/test_argparse.py /^class TestHelpNone(HelpTestCase):$/;" c +TestHelpOnlyUserGroups Lib/test/test_argparse.py /^class TestHelpOnlyUserGroups(HelpTestCase):$/;" c +TestHelpRawDescription Lib/test/test_argparse.py /^class TestHelpRawDescription(HelpTestCase):$/;" c +TestHelpRawText Lib/test/test_argparse.py /^class TestHelpRawText(HelpTestCase):$/;" c +TestHelpReformatting Lib/test/test_argparse.py /^class TestHelpReformatting(HelpTestCase):$/;" c +TestHelpRequiredOptional Lib/test/test_argparse.py /^class TestHelpRequiredOptional(HelpTestCase):$/;" c +TestHelpSubparsersOrdering Lib/test/test_argparse.py /^class TestHelpSubparsersOrdering(HelpTestCase):$/;" c +TestHelpSubparsersWithHelpOrdering Lib/test/test_argparse.py /^class TestHelpSubparsersWithHelpOrdering(HelpTestCase):$/;" c +TestHelpSuppressOptional Lib/test/test_argparse.py /^class TestHelpSuppressOptional(HelpTestCase):$/;" c +TestHelpSuppressOptionalGroup Lib/test/test_argparse.py /^class TestHelpSuppressOptionalGroup(HelpTestCase):$/;" c +TestHelpSuppressPositional Lib/test/test_argparse.py /^class TestHelpSuppressPositional(HelpTestCase):$/;" c +TestHelpSuppressUsage Lib/test/test_argparse.py /^class TestHelpSuppressUsage(HelpTestCase):$/;" c +TestHelpTupleMetavar Lib/test/test_argparse.py /^class TestHelpTupleMetavar(HelpTestCase):$/;" c +TestHelpUsage Lib/test/test_argparse.py /^class TestHelpUsage(HelpTestCase):$/;" c +TestHelpUsageLongProg Lib/test/test_argparse.py /^class TestHelpUsageLongProg(HelpTestCase):$/;" c +TestHelpUsageLongProgOptionsWrap Lib/test/test_argparse.py /^class TestHelpUsageLongProgOptionsWrap(HelpTestCase):$/;" c +TestHelpUsageLongProgPositionalsWrap Lib/test/test_argparse.py /^class TestHelpUsageLongProgPositionalsWrap(HelpTestCase):$/;" c +TestHelpUsageOptionalsOnlyWrap Lib/test/test_argparse.py /^class TestHelpUsageOptionalsOnlyWrap(HelpTestCase):$/;" c +TestHelpUsageOptionalsPositionalsWrap Lib/test/test_argparse.py /^class TestHelpUsageOptionalsPositionalsWrap(HelpTestCase):$/;" c +TestHelpUsageOptionalsWrap Lib/test/test_argparse.py /^class TestHelpUsageOptionalsWrap(HelpTestCase):$/;" c +TestHelpUsagePositionalsOnlyWrap Lib/test/test_argparse.py /^class TestHelpUsagePositionalsOnlyWrap(HelpTestCase):$/;" c +TestHelpUsagePositionalsWrap Lib/test/test_argparse.py /^class TestHelpUsagePositionalsWrap(HelpTestCase):$/;" c +TestHelpUsageWithParentheses Lib/test/test_argparse.py /^class TestHelpUsageWithParentheses(HelpTestCase):$/;" c +TestHelpVariableExpansion Lib/test/test_argparse.py /^class TestHelpVariableExpansion(HelpTestCase):$/;" c +TestHelpVariableExpansionNoArguments Lib/test/test_argparse.py /^class TestHelpVariableExpansionNoArguments(HelpTestCase):$/;" c +TestHelpVariableExpansionUsageSupplied Lib/test/test_argparse.py /^class TestHelpVariableExpansionUsageSupplied(HelpTestCase):$/;" c +TestHelpVersionAction Lib/test/test_argparse.py /^class TestHelpVersionAction(HelpTestCase):$/;" c +TestHelpVersionActionSuppress Lib/test/test_argparse.py /^class TestHelpVersionActionSuppress(HelpTestCase):$/;" c +TestHelpWrappingLongNames Lib/test/test_argparse.py /^class TestHelpWrappingLongNames(HelpTestCase):$/;" c +TestHelpWrappingShortNames Lib/test/test_argparse.py /^class TestHelpWrappingShortNames(HelpTestCase):$/;" c +TestHelper Lib/test/test_pydoc.py /^class TestHelper(unittest.TestCase):$/;" c +TestHelpers Lib/test/test_enum.py /^class TestHelpers(unittest.TestCase):$/;" c +TestHexOctBin Lib/test/test_int_literal.py /^class TestHexOctBin(unittest.TestCase):$/;" c +TestHistoryManipulation Lib/test/test_readline.py /^class TestHistoryManipulation (unittest.TestCase):$/;" c +TestHook Lib/test/audit-tests.py /^class TestHook:$/;" c +TestHook Lib/test/test_doctest.py /^class TestHook:$/;" c +TestIOCTypes Lib/test/test_io.py /^class TestIOCTypes(unittest.TestCase):$/;" c +TestIPv6Environment Lib/test/test_ftplib.py /^class TestIPv6Environment(TestCase):$/;" c +TestIdempotent Lib/test/test_email/test_email.py /^class TestIdempotent(TestEmailBase):$/;" c +TestIdentifier Lib/test/test_lib2to3/test_parser.py /^class TestIdentifier(GrammarTest):$/;" c +TestIdentities Lib/test/test_set.py /^class TestIdentities(unittest.TestCase):$/;" c +TestIgnoreEINTR Lib/test/_test_multiprocessing.py /^class TestIgnoreEINTR(unittest.TestCase):$/;" c +TestImaplib Lib/test/test_imaplib.py /^class TestImaplib(unittest.TestCase):$/;" c +TestImghdr Lib/test/test_imghdr.py /^class TestImghdr(unittest.TestCase):$/;" c +TestImport Lib/test/test_importlib/test_pkg_import.py /^class TestImport(unittest.TestCase):$/;" c +TestImportStar Lib/test/test_argparse.py /^class TestImportStar(TestCase):$/;" c +TestImporter Lib/test/test_doctest.py /^class TestImporter(importlib.abc.MetaPathFinder, importlib.abc.ResourceLoader):$/;" c +TestIncompleteFrameAreInvisible Lib/test/test_frame.py /^class TestIncompleteFrameAreInvisible(unittest.TestCase):$/;" c +TestIndent Lib/test/test_json/test_indent.py /^class TestIndent:$/;" c +TestInheritance Lib/test/test_htmlparser.py /^class TestInheritance(unittest.TestCase):$/;" c +TestInheritance Lib/test/test_patma.py /^class TestInheritance(unittest.TestCase):$/;" c +TestInit Lib/test/test_dataclasses.py /^class TestInit(unittest.TestCase):$/;" c +TestInitializers Lib/test/_test_multiprocessing.py /^class TestInitializers(unittest.TestCase):$/;" c +TestInsort Lib/test/test_bisect.py /^class TestInsort:$/;" c +TestInsortC Lib/test/test_bisect.py /^class TestInsortC(TestInsort, unittest.TestCase):$/;" c +TestInsortPython Lib/test/test_bisect.py /^class TestInsortPython(TestInsort, unittest.TestCase):$/;" c +TestInstallIncrementallly Lib/test/test_monitoring.py /^class TestInstallIncrementallly(MonitoringTestBase, unittest.TestCase):$/;" c +TestInstance Lib/test/test_call.py /^ class TestInstance:$/;" c function:TestPEP590.test_vectorcall_limited_outgoing_method +TestInstance Lib/test/test_xmlrpc.py /^ class TestInstance:$/;" c function:SimpleXMLRPCDispatcherTestCase.test_call_dispatch_func +TestInstanceClass Lib/test/test_xmlrpc.py /^ class TestInstanceClass:$/;" c function:http_multi_server +TestInstanceClass Lib/test/test_xmlrpc.py /^ class TestInstanceClass:$/;" c function:http_server +TestIntEnumClass Lib/test/test_enum.py /^class TestIntEnumClass(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestIntEnumFunction Lib/test/test_enum.py /^class TestIntEnumFunction(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestIntFlagClass Lib/test/test_enum.py /^class TestIntFlagClass(_EnumTests, _MinimalOutputTests, _FlagTests, unittest.TestCase):$/;" c +TestIntFlagFunction Lib/test/test_enum.py /^class TestIntFlagFunction(_EnumTests, _MinimalOutputTests, _FlagTests, unittest.TestCase):$/;" c +TestIntVar Lib/test/test_tkinter/test_variables.py /^class TestIntVar(TestBase):$/;" c +TestInteractiveConsole Lib/test/test_code_module.py /^class TestInteractiveConsole(unittest.TestCase):$/;" c +TestInteractiveInterpreter Lib/test/test_repl.py /^class TestInteractiveInterpreter(unittest.TestCase):$/;" c +TestInteractiveModeSyntaxErrors Lib/test/test_repl.py /^class TestInteractiveModeSyntaxErrors(unittest.TestCase):$/;" c +TestInterestingEdgeCases Lib/test/test_yield_from.py /^class TestInterestingEdgeCases(unittest.TestCase):$/;" c +TestIntermixedArgs Lib/test/test_argparse.py /^class TestIntermixedArgs(TestCase):$/;" c +TestIntermixedMessageContentError Lib/test/test_argparse.py /^class TestIntermixedMessageContentError(TestCase):$/;" c +TestInternalDecorators Lib/test/_test_multiprocessing.py /^class TestInternalDecorators(unittest.TestCase):$/;" c +TestInternalFrameApi Lib/test/test_capi/test_misc.py /^class TestInternalFrameApi(unittest.TestCase):$/;" c +TestInternalUtilities Lib/test/test_pydoc.py /^class TestInternalUtilities(unittest.TestCase):$/;" c +TestInternals Lib/test/test_enum.py /^class TestInternals(unittest.TestCase):$/;" c +TestInternalsWithExtModule Lib/test/test_uuid.py /^class TestInternalsWithExtModule(BaseTestInternals, unittest.TestCase):$/;" c +TestInternalsWithoutExtModule Lib/test/test_uuid.py /^class TestInternalsWithoutExtModule(BaseTestInternals, unittest.TestCase):$/;" c +TestInterpreterAttrs Lib/test/test_interpreters.py /^class TestInterpreterAttrs(TestBase):$/;" c +TestInterpreterClose Lib/test/test_interpreters.py /^class TestInterpreterClose(TestBase):$/;" c +TestInterpreterIsRunning Lib/test/test_interpreters.py /^class TestInterpreterIsRunning(TestBase):$/;" c +TestInterpreterRun Lib/test/test_interpreters.py /^class TestInterpreterRun(TestBase):$/;" c +TestInterpreterStack Lib/test/test_inspect.py /^class TestInterpreterStack(IsTestBase):$/;" c +TestInvalidArgumentConstructors Lib/test/test_argparse.py /^class TestInvalidArgumentConstructors(TestCase):$/;" c +TestInvalidExceptStar Lib/test/test_except_star.py /^class TestInvalidExceptStar(unittest.TestCase):$/;" c +TestInvalidExceptionMatcher Lib/test/test_exceptions.py /^class TestInvalidExceptionMatcher(unittest.TestCase):$/;" c +TestInvalidFD Lib/test/test_os.py /^class TestInvalidFD(unittest.TestCase):$/;" c +TestInvalidFamily Lib/test/_test_multiprocessing.py /^class TestInvalidFamily(unittest.TestCase):$/;" c +TestInvalidHandle Lib/test/_test_multiprocessing.py /^class TestInvalidHandle(unittest.TestCase):$/;" c +TestInvalidNargs Lib/test/test_argparse.py /^class TestInvalidNargs(TestCase):$/;" c +TestInvariantWithoutMutations Lib/test/test_iterlen.py /^class TestInvariantWithoutMutations:$/;" c +TestInversion Lib/test/test_email/test_inversion.py /^class TestInversion(TestEmailBase):$/;" c +TestIsDataDescriptor Lib/test/test_inspect.py /^class TestIsDataDescriptor(unittest.TestCase):$/;" c +TestIsInstanceExceptions Lib/test/test_isinstance.py /^class TestIsInstanceExceptions(unittest.TestCase):$/;" c +TestIsInstanceIsSubclass Lib/test/test_isinstance.py /^class TestIsInstanceIsSubclass(unittest.TestCase):$/;" c +TestIsShareable Lib/test/test_interpreters.py /^class TestIsShareable(TestBase):$/;" c +TestIsSubclassExceptions Lib/test/test_isinstance.py /^class TestIsSubclassExceptions(unittest.TestCase):$/;" c +TestIterators Lib/test/test_email/test_email.py /^class TestIterators(TestEmailBase):$/;" c +TestJOHABMap Lib/test/test_codecmaps_kr.py /^ unittest.TestCase):$/;" c +TestJointOps Lib/test/test_set.py /^class TestJointOps:$/;" c +TestJunkAPIs Lib/test/test_difflib.py /^class TestJunkAPIs(unittest.TestCase):$/;" c +TestKQueue Lib/test/test_kqueue.py /^class TestKQueue(unittest.TestCase):$/;" c +TestKeyedArchive Lib/test/test_plistlib.py /^class TestKeyedArchive(unittest.TestCase):$/;" c +TestKeywordArgs Lib/test/test_dataclasses.py /^class TestKeywordArgs(unittest.TestCase):$/;" c +TestLFNewlines Lib/test/test_univnewlines.py /^class TestLFNewlines(TestGenericUnivNewlines):$/;" c +TestLLTrace Lib/test/test_lltrace.py /^class TestLLTrace(unittest.TestCase):$/;" c +TestLRU Lib/test/test_functools.py /^class TestLRU:$/;" c +TestLRUC Lib/test/test_functools.py /^class TestLRUC(TestLRU, unittest.TestCase):$/;" c +TestLRUPy Lib/test/test_functools.py /^class TestLRUPy(TestLRU, unittest.TestCase):$/;" c +TestLauncher Lib/test/test_launcher.py /^class TestLauncher(unittest.TestCase, RunPyMixin):$/;" c +TestLeaks Lib/test/test_csv.py /^class TestLeaks(unittest.TestCase):$/;" c +TestLegacyAPI Lib/test/test_abc.py /^ class TestLegacyAPI(unittest.TestCase):$/;" c function:test_factory +TestLengthHintExceptions Lib/test/test_iterlen.py /^class TestLengthHintExceptions(unittest.TestCase):$/;" c +TestLexicalHandler Lib/test/test_sax.py /^ class TestLexicalHandler(LexicalHandler):$/;" c function:CDATAHandlerTest.test_handlers +TestLexicalHandler Lib/test/test_sax.py /^ class TestLexicalHandler(LexicalHandler):$/;" c function:LexicalHandlerTest.test_handlers +TestLineAndInstructionEvents Lib/test/test_monitoring.py /^class TestLineAndInstructionEvents(CheckEvents):$/;" c +TestLineCounts Lib/test/test_trace.py /^class TestLineCounts(unittest.TestCase):$/;" c +TestLinearRegression Lib/test/test_statistics.py /^class TestLinearRegression(unittest.TestCase):$/;" c +TestLinesAfterTraceStarted Lib/test/test_sys_settrace.py /^class TestLinesAfterTraceStarted(TraceTestCase):$/;" c +TestLinuxAbstractNamespace Lib/test/test_socket.py /^class TestLinuxAbstractNamespace(unittest.TestCase):$/;" c +TestList Lib/test/test_iterlen.py /^class TestList(TestInvariantWithoutMutations, unittest.TestCase):$/;" c +TestListReversed Lib/test/test_iterlen.py /^class TestListReversed(TestInvariantWithoutMutations, unittest.TestCase):$/;" c +TestLiterals Lib/test/test_lib2to3/test_parser.py /^class TestLiterals(GrammarTest):$/;" c +TestLiterals Lib/test/test_string_literals.py /^class TestLiterals(unittest.TestCase):$/;" c +TestLoadAttrCache Lib/test/test_opcache.py /^class TestLoadAttrCache(unittest.TestCase):$/;" c +TestLoadMethodCache Lib/test/test_opcache.py /^class TestLoadMethodCache(unittest.TestCase):$/;" c +TestLoadSuperAttr Lib/test/test_monitoring.py /^class TestLoadSuperAttr(CheckEvents):$/;" c +TestLoadSuperAttrCache Lib/test/test_opcache.py /^class TestLoadSuperAttrCache(unittest.TestCase):$/;" c +TestLoader Lib/test/test_importlib/test_spec.py /^class TestLoader:$/;" c +TestLoader Lib/test/test_unittest/test_program.py /^ class TestLoader(unittest.TestLoader):$/;" c class:Test_TestProgram +TestLoader Lib/unittest/loader.py /^class TestLoader(object):$/;" c +TestLocalEvents Lib/test/test_monitoring.py /^class TestLocalEvents(MonitoringTestBase, unittest.TestCase):$/;" c +TestLocalTimeDisambiguation Lib/test/datetimetester.py /^class TestLocalTimeDisambiguation(unittest.TestCase):$/;" c +TestLocale Lib/test/test_time.py /^class TestLocale(unittest.TestCase):$/;" c +TestLocaleFormatString Lib/test/test_locale.py /^class TestLocaleFormatString(unittest.TestCase):$/;" c +TestLongHeaders Lib/test/test_email/test_email.py /^class TestLongHeaders(TestEmailBase):$/;" c +TestLongMessage Lib/test/test_unittest/test_assertions.py /^class TestLongMessage(unittest.TestCase):$/;" c +TestLongStart Lib/test/test_enumerate.py /^class TestLongStart(EnumerateStartTestCase):$/;" c +TestLoop Lib/test/test_asyncio/utils.py /^class TestLoop(base_events.BaseEventLoop):$/;" c +TestLowLevelInternals Lib/test/test_tempfile.py /^class TestLowLevelInternals(unittest.TestCase):$/;" c +TestMH Lib/test/test_mailbox.py /^class TestMH(TestMailbox, unittest.TestCase):$/;" c +TestMHMessage Lib/test/test_mailbox.py /^class TestMHMessage(TestMessage, unittest.TestCase):$/;" c +TestMIMEApplication Lib/test/test_email/test_email.py /^class TestMIMEApplication(unittest.TestCase):$/;" c +TestMIMEAudio Lib/test/test_email/test_email.py /^class TestMIMEAudio(unittest.TestCase):$/;" c +TestMIMEImage Lib/test/test_email/test_email.py /^class TestMIMEImage(unittest.TestCase):$/;" c +TestMIMEMessage Lib/test/test_email/test_email.py /^class TestMIMEMessage(TestEmailBase):$/;" c +TestMIMEPart Lib/test/test_email/test_message.py /^class TestMIMEPart(TestEmailMessageBase, TestEmailBase):$/;" c +TestMIMEText Lib/test/test_email/test_email.py /^class TestMIMEText(unittest.TestCase):$/;" c +TestMIMEVersionHeader Lib/test/test_email/test_headerregistry.py /^class TestMIMEVersionHeader(TestHeaderBase):$/;" c +TestMMDF Lib/test/test_mailbox.py /^class TestMMDF(_TestMboxMMDF, unittest.TestCase):$/;" c +TestMMDFMessage Lib/test/test_mailbox.py /^class TestMMDFMessage(_TestMboxMMDFMessage, TestMessage):$/;" c +TestMROEntry Lib/test/test_genericclass.py /^class TestMROEntry(unittest.TestCase):$/;" c +TestMSWindowsTCPFlags Lib/test/test_socket.py /^class TestMSWindowsTCPFlags(unittest.TestCase):$/;" c +TestMacOSTCPFlags Lib/test/test_socket.py /^class TestMacOSTCPFlags(unittest.TestCase):$/;" c +TestMailbox Lib/test/test_mailbox.py /^class TestMailbox(TestBase):$/;" c +TestMailboxSuperclass Lib/test/test_mailbox.py /^class TestMailboxSuperclass(TestBase, unittest.TestCase):$/;" c +TestMaildir Lib/test/test_mailbox.py /^class TestMaildir(TestMailbox, unittest.TestCase):$/;" c +TestMaildirMessage Lib/test/test_mailbox.py /^class TestMaildirMessage(TestMessage, unittest.TestCase):$/;" c +TestMain Lib/test/test_base64.py /^class TestMain(unittest.TestCase):$/;" c +TestMain Lib/test/test_inspect.py /^class TestMain(unittest.TestCase):$/;" c +TestMain Lib/test/test_lib2to3/test_main.py /^class TestMain(unittest.TestCase):$/;" c +TestMakeDataclass Lib/test/test_dataclasses.py /^class TestMakeDataclass(unittest.TestCase):$/;" c +TestManyEvents Lib/test/test_monitoring.py /^class TestManyEvents(CheckEvents):$/;" c +TestMappingProtocol Lib/test/mapping_tests.py /^class TestMappingProtocol(BasicTestMappingProtocol):$/;" c +TestMarkingVariablesAsUnKnown Lib/test/test_peepholer.py /^class TestMarkingVariablesAsUnKnown(BytecodeTestCase):$/;" c +TestMatchAbbrev Lib/test/test_optparse.py /^class TestMatchAbbrev(BaseTest):$/;" c +TestMatchArgs Lib/test/test_dataclasses.py /^class TestMatchArgs(unittest.TestCase):$/;" c +TestMatrixMultiplication Lib/test/test_lib2to3/test_parser.py /^class TestMatrixMultiplication(GrammarTest):$/;" c +TestMbox Lib/test/test_mailbox.py /^class TestMbox(_TestMboxMMDF, unittest.TestCase):$/;" c +TestMboxMessage Lib/test/test_mailbox.py /^class TestMboxMessage(_TestMboxMMDFMessage, TestMessage):$/;" c +TestMean Lib/test/test_statistics.py /^class TestMean(NumericTestCase, AverageMixin, UnivariateTypeMixin):$/;" c +TestMedian Lib/test/test_statistics.py /^class TestMedian(NumericTestCase, AverageMixin):$/;" c +TestMedianDataType Lib/test/test_statistics.py /^class TestMedianDataType(NumericTestCase, UnivariateTypeMixin):$/;" c +TestMedianGrouped Lib/test/test_statistics.py /^class TestMedianGrouped(TestMedian):$/;" c +TestMedianHigh Lib/test/test_statistics.py /^class TestMedianHigh(TestMedian, UnivariateTypeMixin):$/;" c +TestMedianLow Lib/test/test_statistics.py /^class TestMedianLow(TestMedian, UnivariateTypeMixin):$/;" c +TestMessage Lib/test/test_mailbox.py /^class TestMessage(TestBase, unittest.TestCase):$/;" c +TestMessageAPI Lib/test/test_email/test_email.py /^class TestMessageAPI(TestEmailBase):$/;" c +TestMessageContentError Lib/test/test_argparse.py /^class TestMessageContentError(TestCase):$/;" c +TestMessageConversion Lib/test/test_mailbox.py /^class TestMessageConversion(TestBase, unittest.TestCase):$/;" c +TestMethods Modules/_testcapi/code.c /^static PyMethodDef TestMethods[] = {$/;" v file: +TestMethods Modules/_testcapi/heaptype.c /^static PyMethodDef TestMethods[] = {$/;" v file: +TestMethods Modules/_testcapi/heaptype_relative.c /^static PyMethodDef TestMethods[] = {$/;" v file: +TestMethods Modules/_testcapi/unicode.c /^static PyMethodDef TestMethods[] = {$/;" v file: +TestMethods Modules/_testcapi/vectorcall.c /^static PyMethodDef TestMethods[] = {$/;" v file: +TestMethods Modules/_testcapi/vectorcall_limited.c /^static PyMethodDef TestMethods[] = {$/;" v file: +TestMethods Modules/_testcapimodule.c /^static PyMethodDef TestMethods[] = {$/;" v file: +TestMethodsMutating Lib/test/test_set.py /^class TestMethodsMutating(TestOperationsMutating):$/;" c +TestMethodsMutating_Set_Dict Lib/test/test_set.py /^class TestMethodsMutating_Set_Dict(TestMethodsMutating, unittest.TestCase):$/;" c +TestMethodsMutating_Set_List Lib/test/test_set.py /^class TestMethodsMutating_Set_List(TestMethodsMutating, unittest.TestCase):$/;" c +TestMethodsMutating_Set_Set Lib/test/test_set.py /^class TestMethodsMutating_Set_Set(TestMethodsMutating, unittest.TestCase):$/;" c +TestMethodsMutating_Set_Subclass Lib/test/test_set.py /^class TestMethodsMutating_Set_Subclass(TestMethodsMutating, unittest.TestCase):$/;" c +TestMethodsMutating_Subclass_Set Lib/test/test_set.py /^class TestMethodsMutating_Subclass_Set(TestMethodsMutating, unittest.TestCase):$/;" c +TestMethodsMutating_Subclass_Subclass Lib/test/test_set.py /^class TestMethodsMutating_Subclass_Subclass(TestMethodsMutating, unittest.TestCase):$/;" c +TestMethods_Basic Modules/_testsinglephase.c /^static PyMethodDef TestMethods_Basic[] = {$/;" v file: +TestMethods_Reinit Modules/_testsinglephase.c /^static PyMethodDef TestMethods_Reinit[] = {$/;" v file: +TestMethods_WithState Modules/_testsinglephase.c /^static PyMethodDef TestMethods_WithState[] = {$/;" v file: +TestMinimalDateClass Lib/test/test_enum.py /^class TestMinimalDateClass(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestMinimalDateFunction Lib/test/test_enum.py /^class TestMinimalDateFunction(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestMinimalFloatClass Lib/test/test_enum.py /^class TestMinimalFloatClass(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestMinimalFloatFunction Lib/test/test_enum.py /^class TestMinimalFloatFunction(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestMisc Lib/test/test_shutil.py /^class TestMisc(BaseTest, unittest.TestCase):$/;" c +TestMiscellaneous Lib/test/test_email/test_email.py /^class TestMiscellaneous(TestEmailBase):$/;" c +TestMiscellaneous Lib/test/test_locale.py /^class TestMiscellaneous(unittest.TestCase):$/;" c +TestMiscellaneous Lib/test/test_tomllib/test_misc.py /^class TestMiscellaneous(unittest.TestCase):$/;" c +TestMixedDateClass Lib/test/test_enum.py /^class TestMixedDateClass(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMixedDateFunction Lib/test/test_enum.py /^class TestMixedDateFunction(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMixedFloatClass Lib/test/test_enum.py /^class TestMixedFloatClass(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMixedFloatFunction Lib/test/test_enum.py /^class TestMixedFloatFunction(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMixedIntClass Lib/test/test_enum.py /^class TestMixedIntClass(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMixedIntFlagClass Lib/test/test_enum.py /^class TestMixedIntFlagClass(_EnumTests, _MixedOutputTests, _FlagTests, unittest.TestCase):$/;" c +TestMixedIntFlagFunction Lib/test/test_enum.py /^class TestMixedIntFlagFunction(_EnumTests, _MixedOutputTests, _FlagTests, unittest.TestCase):$/;" c +TestMixedIntFunction Lib/test/test_enum.py /^class TestMixedIntFunction(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMixedNewlines Lib/test/test_univnewlines.py /^class TestMixedNewlines(TestGenericUnivNewlines):$/;" c +TestMixedStrClass Lib/test/test_enum.py /^class TestMixedStrClass(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMixedStrFunction Lib/test/test_enum.py /^class TestMixedStrFunction(_EnumTests, _MixedOutputTests, unittest.TestCase):$/;" c +TestMkdtemp Lib/test/test_tempfile.py /^class TestMkdtemp(TestBadTempdir, BaseTestCase):$/;" c +TestMkstemp Lib/test/test_tempfile.py /^class TestMkstemp(BaseTestCase):$/;" c +TestMkstempInner Lib/test/test_tempfile.py /^class TestMkstempInner(TestBadTempdir, BaseTestCase):$/;" c +TestMktemp Lib/test/test_tempfile.py /^class TestMktemp(BaseTestCase):$/;" c +TestMockOpen Lib/test/test_unittest/testmock/testwith.py /^class TestMockOpen(unittest.TestCase):$/;" c +TestMockingMagicMethods Lib/test/test_unittest/testmock/testmagicmethods.py /^class TestMockingMagicMethods(unittest.TestCase):$/;" c +TestMode Lib/test/test_statistics.py /^class TestMode(NumericTestCase, AverageMixin, UnivariateTypeMixin):$/;" c +TestModule Lib/test/datetimetester.py /^class TestModule(unittest.TestCase):$/;" c +TestModule Lib/test/test_random.py /^class TestModule(unittest.TestCase):$/;" c +TestModule Lib/test/test_zoneinfo/test_zoneinfo.py /^class TestModule(ZoneInfoTestBase):$/;" c +TestModuleCleanUp Lib/test/test_unittest/test_runner.py /^class TestModuleCleanUp(unittest.TestCase):$/;" c +TestModuleLevel Lib/test/test_turtle.py /^class TestModuleLevel(unittest.TestCase):$/;" c +TestModules Lib/test/test_heapq.py /^class TestModules(TestCase):$/;" c +TestModules Lib/test/test_statistics.py /^class TestModules(unittest.TestCase):$/;" c +TestModules Lib/test/test_typing.py /^class TestModules(TestCase):$/;" c +TestMove Lib/test/test_shutil.py /^class TestMove(BaseTest, unittest.TestCase):$/;" c +TestMultiMode Lib/test/test_statistics.py /^class TestMultiMode(unittest.TestCase):$/;" c +TestMultipart Lib/test/test_email/test_email.py /^class TestMultipart(TestEmailBase):$/;" c +TestMultipleArgs Lib/test/test_optparse.py /^class TestMultipleArgs(BaseTest):$/;" c +TestMultipleArgsAppend Lib/test/test_optparse.py /^class TestMultipleArgsAppend(BaseTest):$/;" c +TestMultipleFeatures Lib/test/test_future5.py /^class TestMultipleFeatures(unittest.TestCase):$/;" c +TestMutate Lib/test/test_set.py /^class TestMutate(unittest.TestCase):$/;" c +TestMutuallyExclusiveFirstSuppressed Lib/test/test_argparse.py /^class TestMutuallyExclusiveFirstSuppressed(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveFirstSuppressedParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveFirstSuppressed):$/;" c +TestMutuallyExclusiveGroupErrors Lib/test/test_argparse.py /^class TestMutuallyExclusiveGroupErrors(TestCase):$/;" c +TestMutuallyExclusiveGroupErrorsParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveGroupErrors):$/;" c +TestMutuallyExclusiveInGroup Lib/test/test_argparse.py /^class TestMutuallyExclusiveInGroup(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveLong Lib/test/test_argparse.py /^class TestMutuallyExclusiveLong(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveLongParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveLong):$/;" c +TestMutuallyExclusiveManySuppressed Lib/test/test_argparse.py /^class TestMutuallyExclusiveManySuppressed(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveManySuppressedParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveManySuppressed):$/;" c +TestMutuallyExclusiveNested Lib/test/test_argparse.py /^class TestMutuallyExclusiveNested(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveOptionalAndPositional Lib/test/test_argparse.py /^class TestMutuallyExclusiveOptionalAndPositional(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveOptionalAndPositionalParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveOptionalAndPositional):$/;" c +TestMutuallyExclusiveOptionalsAndPositionalsMixed Lib/test/test_argparse.py /^class TestMutuallyExclusiveOptionalsAndPositionalsMixed(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveOptionalsAndPositionalsMixedParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveOptionalsAndPositionalsMixed):$/;" c +TestMutuallyExclusiveOptionalsMixed Lib/test/test_argparse.py /^class TestMutuallyExclusiveOptionalsMixed(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveOptionalsMixedParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveOptionalsMixed):$/;" c +TestMutuallyExclusiveSimple Lib/test/test_argparse.py /^class TestMutuallyExclusiveSimple(MEMixin, TestCase):$/;" c +TestMutuallyExclusiveSimpleParent Lib/test/test_argparse.py /^ MEPBase, TestMutuallyExclusiveSimple):$/;" c +TestMyDatagramProto Lib/test/test_asyncio/test_events.py /^ class TestMyDatagramProto(MyDatagramProto):$/;" c function:EventLoopTestsMixin._test_create_datagram_endpoint +TestMyProto Lib/test/test_asyncio/test_events.py /^ class TestMyProto(MyProto):$/;" c function:EventLoopTestsMixin.test_create_server_dual_stack +TestMyProto Lib/test/test_asyncio/test_events.py /^ class TestMyProto(MyProto):$/;" c function:EventLoopTestsMixin.test_create_server_sock +TestNT Lib/test/test_collections.py /^TestNT = namedtuple('TestNT', 'x y z') # type used for pickle tests$/;" v +TestNamedAssignments Lib/test/test_lib2to3/test_parser.py /^class TestNamedAssignments(GrammarTest):$/;" c +TestNamedResource Lib/test/_test_multiprocessing.py /^class TestNamedResource(unittest.TestCase):$/;" c +TestNamedTemporaryFile Lib/test/test_tempfile.py /^class TestNamedTemporaryFile(BaseTestCase):$/;" c +TestNamedTuple Lib/test/test_collections.py /^class TestNamedTuple(unittest.TestCase):$/;" c +TestNamespace Lib/test/test_argparse.py /^class TestNamespace(TestCase):$/;" c +TestNamespaceContainsSimple Lib/test/test_argparse.py /^class TestNamespaceContainsSimple(TestCase):$/;" c +TestNannyNag Lib/test/test_tabnanny.py /^class TestNannyNag(TestCase):$/;" c +TestNargsRemainder Lib/test/test_argparse.py /^class TestNargsRemainder(ParserTestCase):$/;" c +TestNargsZeroOrMore Lib/test/test_argparse.py /^class TestNargsZeroOrMore(ParserTestCase):$/;" c +TestNoCeil Lib/test/test_math.py /^ class TestNoCeil:$/;" c function:MathTests.testCeil +TestNoEOL Lib/test/test_inspect.py /^class TestNoEOL(GetSourceBase):$/;" c +TestNoFloor Lib/test/test_math.py /^ class TestNoFloor:$/;" c function:MathTests.testFloor +TestNoForkBomb Lib/test/_test_multiprocessing.py /^class TestNoForkBomb(unittest.TestCase):$/;" c +TestNoRound Lib/test/test_builtin.py /^ class TestNoRound:$/;" c function:BuiltinTest.test_round +TestNoTrunc Lib/test/test_math.py /^ class TestNoTrunc:$/;" c function:MathTests.test_trunc +TestNodes Lib/test/test_lib2to3/test_pytree.py /^class TestNodes(support.TestCase):$/;" c +TestNonConformant Lib/test/test_email/test_email.py /^class TestNonConformant(TestEmailBase):$/;" c +TestNonMultipart Lib/test/test_email/test_email.py /^class TestNonMultipart(TestEmailBase):$/;" c +TestNormalDist Lib/test/test_statistics.py /^class TestNormalDist:$/;" c +TestNormalDistC Lib/test/test_statistics.py /^class TestNormalDistC(unittest.TestCase, TestNormalDist):$/;" c +TestNormalDistPython Lib/test/test_statistics.py /^class TestNormalDistPython(unittest.TestCase, TestNormalDist):$/;" c +TestNtpath Lib/test/test_ntpath.py /^class TestNtpath(NtpathTestCase):$/;" c +TestNumberFormatting Lib/test/test_locale.py /^class TestNumberFormatting(BaseLocalizedTest, EnUSNumberFormatting):$/;" c +TestNumbers Lib/test/test_abstract_numbers.py /^class TestNumbers(unittest.TestCase):$/;" c +TestNumericLiterals Lib/test/test_lib2to3/test_parser.py /^class TestNumericLiterals(GrammarTest):$/;" c +TestNumericTestCase Lib/test/test_statistics.py /^class TestNumericTestCase(unittest.TestCase):$/;" c +TestObject Lib/test/test_capi/test_abstract.py /^class TestObject:$/;" c +TestObsoleteFunctions Lib/test/test_unittest/test_loader.py /^class TestObsoleteFunctions(unittest.TestCase):$/;" c +TestOldPyTime Lib/test/test_time.py /^class TestOldPyTime(CPyTimeTestCase, unittest.TestCase):$/;" c +TestOneTrickPonyABCs Lib/test/test_collections.py /^class TestOneTrickPonyABCs(ABCTestCase):$/;" c +TestOneliners Lib/test/test_inspect.py /^class TestOneliners(GetSourceBase):$/;" c +TestOnlySetsDict Lib/test/test_set.py /^class TestOnlySetsDict(TestOnlySetsInBinaryOps, unittest.TestCase):$/;" c +TestOnlySetsGenerator Lib/test/test_set.py /^class TestOnlySetsGenerator(TestOnlySetsInBinaryOps, unittest.TestCase):$/;" c +TestOnlySetsInBinaryOps Lib/test/test_set.py /^class TestOnlySetsInBinaryOps:$/;" c +TestOnlySetsNumeric Lib/test/test_set.py /^class TestOnlySetsNumeric(TestOnlySetsInBinaryOps, unittest.TestCase):$/;" c +TestOnlySetsOperator Lib/test/test_set.py /^class TestOnlySetsOperator(TestOnlySetsInBinaryOps, unittest.TestCase):$/;" c +TestOnlySetsString Lib/test/test_set.py /^class TestOnlySetsString(TestOnlySetsInBinaryOps, unittest.TestCase):$/;" c +TestOnlySetsTuple Lib/test/test_set.py /^class TestOnlySetsTuple(TestOnlySetsInBinaryOps, unittest.TestCase):$/;" c +TestOpen Lib/test/test_gzip.py /^class TestOpen(BaseTest):$/;" c +TestOperationsMutating Lib/test/test_set.py /^class TestOperationsMutating:$/;" c +TestOptimizedCompares Lib/test/test_sort.py /^class TestOptimizedCompares(unittest.TestCase):$/;" c +TestOptionChecks Lib/test/test_optparse.py /^class TestOptionChecks(BaseTest):$/;" c +TestOptionGroup Lib/test/test_optparse.py /^class TestOptionGroup(BaseTest):$/;" c +TestOptionLike Lib/test/test_argparse.py /^class TestOptionLike(ParserTestCase):$/;" c +TestOptionParser Lib/test/test_optparse.py /^class TestOptionParser(BaseTest):$/;" c +TestOptionValues Lib/test/test_optparse.py /^class TestOptionValues(BaseTest):$/;" c +TestOptionalsActionAppend Lib/test/test_argparse.py /^class TestOptionalsActionAppend(ParserTestCase):$/;" c +TestOptionalsActionAppendConst Lib/test/test_argparse.py /^class TestOptionalsActionAppendConst(ParserTestCase):$/;" c +TestOptionalsActionAppendConstWithDefault Lib/test/test_argparse.py /^class TestOptionalsActionAppendConstWithDefault(ParserTestCase):$/;" c +TestOptionalsActionAppendWithDefault Lib/test/test_argparse.py /^class TestOptionalsActionAppendWithDefault(ParserTestCase):$/;" c +TestOptionalsActionCount Lib/test/test_argparse.py /^class TestOptionalsActionCount(ParserTestCase):$/;" c +TestOptionalsActionStore Lib/test/test_argparse.py /^class TestOptionalsActionStore(ParserTestCase):$/;" c +TestOptionalsActionStoreConst Lib/test/test_argparse.py /^class TestOptionalsActionStoreConst(ParserTestCase):$/;" c +TestOptionalsActionStoreFalse Lib/test/test_argparse.py /^class TestOptionalsActionStoreFalse(ParserTestCase):$/;" c +TestOptionalsActionStoreTrue Lib/test/test_argparse.py /^class TestOptionalsActionStoreTrue(ParserTestCase):$/;" c +TestOptionalsAllowLongAbbreviation Lib/test/test_argparse.py /^class TestOptionalsAllowLongAbbreviation(ParserTestCase):$/;" c +TestOptionalsAlmostNumericAndPositionals Lib/test/test_argparse.py /^class TestOptionalsAlmostNumericAndPositionals(ParserTestCase):$/;" c +TestOptionalsAlternatePrefixChars Lib/test/test_argparse.py /^class TestOptionalsAlternatePrefixChars(ParserTestCase):$/;" c +TestOptionalsAlternatePrefixCharsAddedHelp Lib/test/test_argparse.py /^class TestOptionalsAlternatePrefixCharsAddedHelp(ParserTestCase):$/;" c +TestOptionalsAlternatePrefixCharsMultipleShortArgs Lib/test/test_argparse.py /^class TestOptionalsAlternatePrefixCharsMultipleShortArgs(ParserTestCase):$/;" c +TestOptionalsChoices Lib/test/test_argparse.py /^class TestOptionalsChoices(ParserTestCase):$/;" c +TestOptionalsDefault Lib/test/test_argparse.py /^class TestOptionalsDefault(ParserTestCase):$/;" c +TestOptionalsDest Lib/test/test_argparse.py /^class TestOptionalsDest(ParserTestCase):$/;" c +TestOptionalsDisallowLongAbbreviation Lib/test/test_argparse.py /^class TestOptionalsDisallowLongAbbreviation(ParserTestCase):$/;" c +TestOptionalsDisallowLongAbbreviationPrefixChars Lib/test/test_argparse.py /^class TestOptionalsDisallowLongAbbreviationPrefixChars(ParserTestCase):$/;" c +TestOptionalsDoubleDash Lib/test/test_argparse.py /^class TestOptionalsDoubleDash(ParserTestCase):$/;" c +TestOptionalsDoubleDashPartialMatch Lib/test/test_argparse.py /^class TestOptionalsDoubleDashPartialMatch(ParserTestCase):$/;" c +TestOptionalsDoubleDashPrefixMatch Lib/test/test_argparse.py /^class TestOptionalsDoubleDashPrefixMatch(ParserTestCase):$/;" c +TestOptionalsHelpVersionActions Lib/test/test_argparse.py /^class TestOptionalsHelpVersionActions(TestCase):$/;" c +TestOptionalsNargs1 Lib/test/test_argparse.py /^class TestOptionalsNargs1(ParserTestCase):$/;" c +TestOptionalsNargs3 Lib/test/test_argparse.py /^class TestOptionalsNargs3(ParserTestCase):$/;" c +TestOptionalsNargsDefault Lib/test/test_argparse.py /^class TestOptionalsNargsDefault(ParserTestCase):$/;" c +TestOptionalsNargsOneOrMore Lib/test/test_argparse.py /^class TestOptionalsNargsOneOrMore(ParserTestCase):$/;" c +TestOptionalsNargsOptional Lib/test/test_argparse.py /^class TestOptionalsNargsOptional(ParserTestCase):$/;" c +TestOptionalsNargsZeroOrMore Lib/test/test_argparse.py /^class TestOptionalsNargsZeroOrMore(ParserTestCase):$/;" c +TestOptionalsNumeric Lib/test/test_argparse.py /^class TestOptionalsNumeric(ParserTestCase):$/;" c +TestOptionalsNumericAndPositionals Lib/test/test_argparse.py /^class TestOptionalsNumericAndPositionals(ParserTestCase):$/;" c +TestOptionalsRequired Lib/test/test_argparse.py /^class TestOptionalsRequired(ParserTestCase):$/;" c +TestOptionalsShortLong Lib/test/test_argparse.py /^class TestOptionalsShortLong(ParserTestCase):$/;" c +TestOptionalsSingleDash Lib/test/test_argparse.py /^class TestOptionalsSingleDash(ParserTestCase):$/;" c +TestOptionalsSingleDashAmbiguous Lib/test/test_argparse.py /^class TestOptionalsSingleDashAmbiguous(ParserTestCase):$/;" c +TestOptionalsSingleDashCombined Lib/test/test_argparse.py /^class TestOptionalsSingleDashCombined(ParserTestCase):$/;" c +TestOptionalsSingleDashLong Lib/test/test_argparse.py /^class TestOptionalsSingleDashLong(ParserTestCase):$/;" c +TestOptionalsSingleDashSubsetAmbiguous Lib/test/test_argparse.py /^class TestOptionalsSingleDashSubsetAmbiguous(ParserTestCase):$/;" c +TestOptionalsSingleDoubleDash Lib/test/test_argparse.py /^class TestOptionalsSingleDoubleDash(ParserTestCase):$/;" c +TestOrder Lib/test/test_enum.py /^class TestOrder(unittest.TestCase):$/;" c +TestOrdering Lib/test/test_dataclasses.py /^class TestOrdering(unittest.TestCase):$/;" c +TestOutputBuffering Lib/test/test_unittest/test_result.py /^class TestOutputBuffering(unittest.TestCase):$/;" c +TestOutputFormat Lib/test/test_difflib.py /^class TestOutputFormat(unittest.TestCase):$/;" c +TestP Lib/test/test_unittest/test_loader.py /^ class TestP(unittest.TestCase):$/;" c function:Test_TestLoader.test_getTestCaseNames__inheritance +TestPEP380Operation Lib/test/test_yield_from.py /^class TestPEP380Operation(unittest.TestCase):$/;" c +TestPEP479 Lib/test/test_generator_stop.py /^class TestPEP479(unittest.TestCase):$/;" c +TestPEP519 Lib/test/test_os.py /^class TestPEP519(unittest.TestCase):$/;" c +TestPEP519PurePython Lib/test/test_os.py /^ class TestPEP519PurePython(TestPEP519):$/;" c +TestPEP590 Lib/test/test_call.py /^class TestPEP590(unittest.TestCase):$/;" c +TestPOP3Class Lib/test/test_poplib.py /^class TestPOP3Class(TestCase):$/;" c +TestPOP3_SSLClass Lib/test/test_poplib.py /^class TestPOP3_SSLClass(TestPOP3Class):$/;" c +TestPOP3_TLSClass Lib/test/test_poplib.py /^class TestPOP3_TLSClass(TestPOP3Class):$/;" c +TestPStdev Lib/test/test_statistics.py /^class TestPStdev(VarianceStdevMixin, NumericTestCase):$/;" c +TestPVariance Lib/test/test_statistics.py /^class TestPVariance(VarianceStdevMixin, NumericTestCase, UnivariateTypeMixin):$/;" c +TestPackages Lib/test/test_ensurepip.py /^class TestPackages(unittest.TestCase):$/;" c +TestParameterObject Lib/test/test_inspect.py /^class TestParameterObject(unittest.TestCase):$/;" c +TestParentParsers Lib/test/test_argparse.py /^class TestParentParsers(TestCase):$/;" c +TestParseKnownArgs Lib/test/test_argparse.py /^class TestParseKnownArgs(TestCase):$/;" c +TestParseNumber Lib/test/test_optparse.py /^class TestParseNumber(BaseTest):$/;" c +TestParser Lib/test/test_email/test__header_value_parser.py /^class TestParser(TestParserMixin, TestEmailBase):$/;" c +TestParser Lib/test/test_email/test_parser.py /^class TestParser(TestParserBase, TestEmailBase):$/;" c +TestParserBase Lib/test/test_email/test_parser.py /^class TestParserBase:$/;" c +TestParserDefault42 Lib/test/test_argparse.py /^class TestParserDefault42(ParserTestCase):$/;" c +TestParserDefaultSuppress Lib/test/test_argparse.py /^class TestParserDefaultSuppress(ParserTestCase):$/;" c +TestParserIdempotency Lib/test/test_lib2to3/test_parser.py /^class TestParserIdempotency(support.TestCase):$/;" c +TestParserMixin Lib/test/test_email/test__header_value_parser.py /^class TestParserMixin:$/;" c +TestParsers Lib/test/test_email/test_email.py /^class TestParsers(TestEmailBase):$/;" c +TestPartial Lib/test/test_functools.py /^class TestPartial:$/;" c +TestPartialC Lib/test/test_functools.py /^class TestPartialC(TestPartial, unittest.TestCase):$/;" c +TestPartialCSubclass Lib/test/test_functools.py /^class TestPartialCSubclass(TestPartialC):$/;" c +TestPartialFile Lib/test/test_mailbox.py /^class TestPartialFile(TestProxyFileBase, unittest.TestCase):$/;" c +TestPartialMethod Lib/test/test_functools.py /^class TestPartialMethod(unittest.TestCase):$/;" c +TestPartialPy Lib/test/test_functools.py /^class TestPartialPy(TestPartial, unittest.TestCase):$/;" c +TestPartialPySubclass Lib/test/test_functools.py /^class TestPartialPySubclass(TestPartialPy):$/;" c +TestPass1 Lib/test/test_json/test_pass1.py /^class TestPass1:$/;" c +TestPass2 Lib/test/test_json/test_pass2.py /^class TestPass2:$/;" c +TestPass3 Lib/test/test_json/test_pass3.py /^class TestPass3:$/;" c +TestPath Lib/test/test_zipfile/_path/test_path.py /^class TestPath(unittest.TestCase):$/;" c +TestPatma Lib/test/test_patma.py /^class TestPatma(unittest.TestCase):$/;" c +TestPatterns Lib/test/test_lib2to3/test_pytree.py /^class TestPatterns(support.TestCase):$/;" c +TestPegen Lib/test/test_peg_generator/test_grammar_validator.py /^class TestPegen(unittest.TestCase):$/;" c +TestPegen Lib/test/test_peg_generator/test_pegen.py /^class TestPegen(unittest.TestCase):$/;" c +TestPendingCalls Lib/test/test_capi/test_misc.py /^class TestPendingCalls(unittest.TestCase):$/;" c +TestPerfMapWriting Lib/test/test_perfmaps.py /^class TestPerfMapWriting(unittest.TestCase):$/;" c +TestPerfProfiler Lib/test/test_perf_profiler.py /^class TestPerfProfiler(unittest.TestCase):$/;" c +TestPerfTrampoline Lib/test/test_perf_profiler.py /^class TestPerfTrampoline(unittest.TestCase):$/;" c +TestPgen2Caching Lib/test/test_lib2to3/test_parser.py /^class TestPgen2Caching(support.TestCase):$/;" c +TestPickleCopyHeader Lib/test/test_email/test_pickleable.py /^class TestPickleCopyHeader(TestEmailBase):$/;" c +TestPickleCopyMessage Lib/test/test_email/test_pickleable.py /^class TestPickleCopyMessage(TestEmailBase):$/;" c +TestPickleableException Lib/test/test_lib2to3/test_parser.py /^class TestPickleableException(unittest.TestCase):$/;" c +TestPkg Lib/test/test_pkg.py /^class TestPkg(unittest.TestCase):$/;" c +TestPlainEnumClass Lib/test/test_enum.py /^class TestPlainEnumClass(_EnumTests, _PlainOutputTests, unittest.TestCase):$/;" c +TestPlainEnumFunction Lib/test/test_enum.py /^class TestPlainEnumFunction(_EnumTests, _PlainOutputTests, unittest.TestCase):$/;" c +TestPlainFlagClass Lib/test/test_enum.py /^class TestPlainFlagClass(_EnumTests, _PlainOutputTests, _FlagTests, unittest.TestCase):$/;" c +TestPlainFlagFunction Lib/test/test_enum.py /^class TestPlainFlagFunction(_EnumTests, _PlainOutputTests, _FlagTests, unittest.TestCase):$/;" c +TestPlistlib Lib/test/test_plistlib.py /^class TestPlistlib(unittest.TestCase):$/;" c +TestPlutil Lib/test/test_plistlib.py /^class TestPlutil(unittest.TestCase):$/;" c +TestPolicy Lib/test/test_asyncio/test_runners.py /^class TestPolicy(asyncio.AbstractEventLoopPolicy):$/;" c +TestPolicyPropagation Lib/test/test_email/test_policy.py /^class TestPolicyPropagation(unittest.TestCase):$/;" c +TestPoolNotLeakOnFailure Lib/test/_test_multiprocessing.py /^class TestPoolNotLeakOnFailure(unittest.TestCase):$/;" c +TestPositionalOnlyArgs Lib/test/test_lib2to3/test_parser.py /^class TestPositionalOnlyArgs(GrammarTest):$/;" c +TestPositionalsActionAppend Lib/test/test_argparse.py /^class TestPositionalsActionAppend(ParserTestCase):$/;" c +TestPositionalsChoicesInt Lib/test/test_argparse.py /^class TestPositionalsChoicesInt(ParserTestCase):$/;" c +TestPositionalsChoicesString Lib/test/test_argparse.py /^class TestPositionalsChoicesString(ParserTestCase):$/;" c +TestPositionalsGroups Lib/test/test_argparse.py /^class TestPositionalsGroups(TestCase):$/;" c +TestPositionalsNargs1 Lib/test/test_argparse.py /^class TestPositionalsNargs1(ParserTestCase):$/;" c +TestPositionalsNargs2 Lib/test/test_argparse.py /^class TestPositionalsNargs2(ParserTestCase):$/;" c +TestPositionalsNargs2None Lib/test/test_argparse.py /^class TestPositionalsNargs2None(ParserTestCase):$/;" c +TestPositionalsNargs2OneOrMore Lib/test/test_argparse.py /^class TestPositionalsNargs2OneOrMore(ParserTestCase):$/;" c +TestPositionalsNargs2Optional Lib/test/test_argparse.py /^class TestPositionalsNargs2Optional(ParserTestCase):$/;" c +TestPositionalsNargs2ZeroOrMore Lib/test/test_argparse.py /^class TestPositionalsNargs2ZeroOrMore(ParserTestCase):$/;" c +TestPositionalsNargsNone Lib/test/test_argparse.py /^class TestPositionalsNargsNone(ParserTestCase):$/;" c +TestPositionalsNargsNone1 Lib/test/test_argparse.py /^class TestPositionalsNargsNone1(ParserTestCase):$/;" c +TestPositionalsNargsNoneNone Lib/test/test_argparse.py /^class TestPositionalsNargsNoneNone(ParserTestCase):$/;" c +TestPositionalsNargsNoneOneOrMore Lib/test/test_argparse.py /^class TestPositionalsNargsNoneOneOrMore(ParserTestCase):$/;" c +TestPositionalsNargsNoneOneOrMore1 Lib/test/test_argparse.py /^class TestPositionalsNargsNoneOneOrMore1(ParserTestCase):$/;" c +TestPositionalsNargsNoneOptional Lib/test/test_argparse.py /^class TestPositionalsNargsNoneOptional(ParserTestCase):$/;" c +TestPositionalsNargsNoneOptional1 Lib/test/test_argparse.py /^class TestPositionalsNargsNoneOptional1(ParserTestCase):$/;" c +TestPositionalsNargsNoneZeroOrMore Lib/test/test_argparse.py /^class TestPositionalsNargsNoneZeroOrMore(ParserTestCase):$/;" c +TestPositionalsNargsNoneZeroOrMore1 Lib/test/test_argparse.py /^class TestPositionalsNargsNoneZeroOrMore1(ParserTestCase):$/;" c +TestPositionalsNargsOneOrMore Lib/test/test_argparse.py /^class TestPositionalsNargsOneOrMore(ParserTestCase):$/;" c +TestPositionalsNargsOneOrMore1 Lib/test/test_argparse.py /^class TestPositionalsNargsOneOrMore1(ParserTestCase):$/;" c +TestPositionalsNargsOneOrMoreNone Lib/test/test_argparse.py /^class TestPositionalsNargsOneOrMoreNone(ParserTestCase):$/;" c +TestPositionalsNargsOptional Lib/test/test_argparse.py /^class TestPositionalsNargsOptional(ParserTestCase):$/;" c +TestPositionalsNargsOptional1 Lib/test/test_argparse.py /^class TestPositionalsNargsOptional1(ParserTestCase):$/;" c +TestPositionalsNargsOptionalConvertedDefault Lib/test/test_argparse.py /^class TestPositionalsNargsOptionalConvertedDefault(ParserTestCase):$/;" c +TestPositionalsNargsOptionalDefault Lib/test/test_argparse.py /^class TestPositionalsNargsOptionalDefault(ParserTestCase):$/;" c +TestPositionalsNargsOptionalNone Lib/test/test_argparse.py /^class TestPositionalsNargsOptionalNone(ParserTestCase):$/;" c +TestPositionalsNargsOptionalOneOrMore Lib/test/test_argparse.py /^class TestPositionalsNargsOptionalOneOrMore(ParserTestCase):$/;" c +TestPositionalsNargsOptionalOptional Lib/test/test_argparse.py /^class TestPositionalsNargsOptionalOptional(ParserTestCase):$/;" c +TestPositionalsNargsOptionalZeroOrMore Lib/test/test_argparse.py /^class TestPositionalsNargsOptionalZeroOrMore(ParserTestCase):$/;" c +TestPositionalsNargsZeroOrMore Lib/test/test_argparse.py /^class TestPositionalsNargsZeroOrMore(ParserTestCase):$/;" c +TestPositionalsNargsZeroOrMore1 Lib/test/test_argparse.py /^class TestPositionalsNargsZeroOrMore1(ParserTestCase):$/;" c +TestPositionalsNargsZeroOrMoreDefault Lib/test/test_argparse.py /^class TestPositionalsNargsZeroOrMoreDefault(ParserTestCase):$/;" c +TestPositionalsNargsZeroOrMoreNone Lib/test/test_argparse.py /^class TestPositionalsNargsZeroOrMoreNone(ParserTestCase):$/;" c +TestPosixDirFd Lib/test/test_posix.py /^class TestPosixDirFd(unittest.TestCase):$/;" c +TestPosixSpawn Lib/test/test_posix.py /^class TestPosixSpawn(unittest.TestCase, _PosixSpawnMixin):$/;" c +TestPosixSpawnP Lib/test/test_posix.py /^class TestPosixSpawnP(unittest.TestCase, _PosixSpawnMixin):$/;" c +TestPosixWeaklinking Lib/test/test_posix.py /^class TestPosixWeaklinking(unittest.TestCase):$/;" c +TestPostHandshakeAuth Lib/test/test_ssl.py /^class TestPostHandshakeAuth(unittest.TestCase):$/;" c +TestPreHandshakeClose Lib/test/test_ssl.py /^class TestPreHandshakeClose(unittest.TestCase):$/;" c +TestPredicates Lib/test/test_inspect.py /^class TestPredicates(IsTestBase):$/;" c +TestPrefixCharacterOnlyArguments Lib/test/test_argparse.py /^class TestPrefixCharacterOnlyArguments(ParserTestCase):$/;" c +TestPrint Lib/test/test_print.py /^class TestPrint(unittest.TestCase):$/;" c +TestProcessTokens Lib/test/test_tabnanny.py /^class TestProcessTokens(TestCase):$/;" c +TestProgName Lib/test/test_optparse.py /^class TestProgName(BaseTest):$/;" c +TestProgram Lib/unittest/main.py /^class TestProgram(object):$/;" c +TestProxyFile Lib/test/test_mailbox.py /^class TestProxyFile(TestProxyFileBase, unittest.TestCase):$/;" c +TestProxyFileBase Lib/test/test_mailbox.py /^class TestProxyFileBase(TestBase):$/;" c +TestPurePythonRoughEquivalents Lib/test/test_itertools.py /^class TestPurePythonRoughEquivalents(unittest.TestCase):$/;" c +TestPy2MigrationHint Lib/test/test_print.py /^class TestPy2MigrationHint(unittest.TestCase):$/;" c +TestPyDecode Lib/test/test_json/test_decode.py /^class TestPyDecode(TestDecode, PyTest): pass$/;" c +TestPyDefault Lib/test/test_json/test_default.py /^class TestPyDefault(TestDefault, PyTest): pass$/;" c +TestPyDump Lib/test/test_json/test_dump.py /^class TestPyDump(TestDump, PyTest): pass$/;" c +TestPyEncodeBasestringAscii Lib/test/test_json/test_encode_basestring_ascii.py /^class TestPyEncodeBasestringAscii(TestEncodeBasestringAscii, PyTest): pass$/;" c +TestPyEnum Lib/test/test_json/test_enum.py /^class TestPyEnum(TestEnum, PyTest): pass$/;" c +TestPyFail Lib/test/test_json/test_fail.py /^class TestPyFail(TestFail, PyTest): pass$/;" c +TestPyFloat Lib/test/test_json/test_float.py /^class TestPyFloat(TestFloat, PyTest): pass$/;" c +TestPyGetEventLoop Lib/test/test_asyncio/test_events.py /^class TestPyGetEventLoop(GetEventLoopTestsMixin, unittest.TestCase):$/;" c +TestPyIndent Lib/test/test_json/test_indent.py /^class TestPyIndent(TestIndent, PyTest): pass$/;" c +TestPyPass1 Lib/test/test_json/test_pass1.py /^class TestPyPass1(TestPass1, PyTest): pass$/;" c +TestPyPass2 Lib/test/test_json/test_pass2.py /^class TestPyPass2(TestPass2, PyTest): pass$/;" c +TestPyPass3 Lib/test/test_json/test_pass3.py /^class TestPyPass3(TestPass3, PyTest): pass$/;" c +TestPyRecursion Lib/test/test_json/test_recursion.py /^class TestPyRecursion(TestRecursion, PyTest): pass$/;" c +TestPyScanstring Lib/test/test_json/test_scanstring.py /^class TestPyScanstring(TestScanstring, PyTest): pass$/;" c +TestPySeparators Lib/test/test_json/test_separators.py /^class TestPySeparators(TestSeparators, PyTest): pass$/;" c +TestPyTest Lib/test/test_json/__init__.py /^class TestPyTest(PyTest):$/;" c +TestPyUnicode Lib/test/test_json/test_unicode.py /^class TestPyUnicode(TestUnicode, PyTest): pass$/;" c +TestPythonBufferProtocol Lib/test/test_buffer.py /^class TestPythonBufferProtocol(unittest.TestCase):$/;" c +TestPytime Lib/test/test_time.py /^class TestPytime(unittest.TestCase):$/;" c +TestQuantiles Lib/test/test_statistics.py /^class TestQuantiles(unittest.TestCase):$/;" c +TestQuopri Lib/test/test_email/test_email.py /^class TestQuopri(unittest.TestCase):$/;" c +TestQuotedEscapedExcel Lib/test/test_csv.py /^class TestQuotedEscapedExcel(TestCsvBase):$/;" c +TestRFC2047 Lib/test/test_email/test_email.py /^class TestRFC2047(TestEmailBase):$/;" c +TestRFC2231 Lib/test/test_email/test_email.py /^class TestRFC2231(TestEmailBase):$/;" c +TestRaise Lib/test/test_raise.py /^class TestRaise(unittest.TestCase):$/;" c +TestRaiseChanges Lib/test/test_lib2to3/test_parser.py /^class TestRaiseChanges(GrammarTest):$/;" c +TestRandomNameSequence Lib/test/test_tempfile.py /^class TestRandomNameSequence(BaseTestCase):$/;" c +TestRandomSubclassing Lib/test/test_random.py /^class TestRandomSubclassing(unittest.TestCase):$/;" c +TestRawDataManager Lib/test/test_email/test_contentmanager.py /^class TestRawDataManager(TestEmailBase):$/;" c +TestRawMersenneTwister Lib/test/test_random.py /^class TestRawMersenneTwister(unittest.TestCase):$/;" c +TestReadline Lib/test/test_readline.py /^class TestReadline(unittest.TestCase):$/;" c +TestReadlineFile Lib/test/test_cgi.py /^ class TestReadlineFile:$/;" c function:.test_fieldstorage_readline +TestRecursion Lib/test/test_call.py /^class TestRecursion(unittest.TestCase):$/;" c +TestRecursion Lib/test/test_json/test_recursion.py /^class TestRecursion:$/;" c +TestRecursiveRepr Lib/test/test_reprlib.py /^class TestRecursiveRepr(unittest.TestCase):$/;" c +TestRecursiveStructure Lib/test/test_ctypes/test_structures.py /^class TestRecursiveStructure(unittest.TestCase):$/;" c +TestRecvChannelAttrs Lib/test/test_interpreters.py /^class TestRecvChannelAttrs(TestBase):$/;" c +TestRedirectStderr Lib/test/test_contextlib.py /^class TestRedirectStderr(TestRedirectStream, unittest.TestCase):$/;" c +TestRedirectStdout Lib/test/test_contextlib.py /^class TestRedirectStdout(TestRedirectStream, unittest.TestCase):$/;" c +TestRedirectStream Lib/test/test_contextlib.py /^class TestRedirectStream:$/;" c +TestReduce Lib/test/test_functools.py /^class TestReduce:$/;" c +TestReduceC Lib/test/test_functools.py /^class TestReduceC(TestReduce, unittest.TestCase):$/;" c +TestReducePy Lib/test/test_functools.py /^class TestReducePy(TestReduce, unittest.TestCase):$/;" c +TestRefactoringTool Lib/test/test_lib2to3/test_refactor.py /^class TestRefactoringTool(unittest.TestCase):$/;" c +TestReg Modules/_ctypes/_ctypes_test.c /^} TestReg;$/;" t typeref:struct:__anon500 file: +TestRegressions Lib/test/test_bdb.py /^class TestRegressions(unittest.TestCase):$/;" c +TestRegressions Lib/test/test_monitoring.py /^class TestRegressions(MonitoringTestBase, unittest.TestCase):$/;" c +TestReload Lib/test/test_inspect.py /^class TestReload(unittest.TestCase):$/;" c +TestRemovedFunctionality Lib/test/test_raise.py /^class TestRemovedFunctionality(unittest.TestCase):$/;" c +TestRepeat Lib/test/test_iterlen.py /^class TestRepeat(TestInvariantWithoutMutations, unittest.TestCase):$/;" c +TestReplace Lib/test/test_dataclasses.py /^class TestReplace(unittest.TestCase):$/;" c +TestRepr Lib/test/test_dataclasses.py /^class TestRepr(unittest.TestCase):$/;" c +TestResourceTracker Lib/test/_test_multiprocessing.py /^class TestResourceTracker(unittest.TestCase):$/;" c +TestResponse Lib/test/test_urllib_response.py /^class TestResponse(unittest.TestCase):$/;" c +TestResult Lib/test/libregrtest/runtest.py /^class TestResult:$/;" c +TestResult Lib/unittest/result.py /^class TestResult(object):$/;" c +TestResults Lib/doctest.py /^TestResults = namedtuple('TestResults', 'failed attempted')$/;" v +TestRetrievingSourceCode Lib/test/test_inspect.py /^class TestRetrievingSourceCode(GetSourceBase):$/;" c +TestReversed Lib/test/test_enumerate.py /^class TestReversed(unittest.TestCase, PickleTest):$/;" c +TestRichSetCompare Lib/test/test_set.py /^ class TestRichSetCompare:$/;" c function:TestSet.test_rich_compare +TestRlcompleter Lib/test/test_rlcompleter.py /^class TestRlcompleter(unittest.TestCase):$/;" c +TestRmTree Lib/test/test_shutil.py /^class TestRmTree(BaseTest, unittest.TestCase):$/;" c +TestRound Lib/test/test_builtin.py /^ class TestRound:$/;" c function:BuiltinTest.test_round +TestRpow Lib/test/test_pow.py /^ class TestRpow:$/;" c function:PowTest.test_bug643260 +TestRunExecCounts Lib/test/test_trace.py /^class TestRunExecCounts(unittest.TestCase):$/;" c +TestSFbugs Lib/test/test_difflib.py /^class TestSFbugs(unittest.TestCase):$/;" c +TestSFpatches Lib/test/test_difflib.py /^class TestSFpatches(unittest.TestCase):$/;" c +TestSJISCOMPATMap Lib/test/test_codecmaps_jp.py /^ unittest.TestCase):$/;" c +TestSJISX0213Map Lib/test/test_codecmaps_jp.py /^ unittest.TestCase):$/;" c +TestSMTPServer Lib/test/test_logging.py /^class TestSMTPServer(smtpd.SMTPServer):$/;" c +TestSSL Lib/test/test_asyncio/test_ssl.py /^class TestSSL(test_utils.TestCase):$/;" c +TestSSLDebug Lib/test/test_ssl.py /^class TestSSLDebug(unittest.TestCase):$/;" c +TestScandir Lib/test/test_os.py /^class TestScandir(unittest.TestCase):$/;" c +TestScanstring Lib/test/test_json/test_scanstring.py /^class TestScanstring:$/;" c +TestScriptHelper Lib/test/test_script_helper.py /^class TestScriptHelper(unittest.TestCase):$/;" c +TestScriptHelperEnvironment Lib/test/test_script_helper.py /^class TestScriptHelperEnvironment(unittest.TestCase):$/;" c +TestScrollEvent Lib/idlelib/idle_test/test_tree.py /^class TestScrollEvent(unittest.TestCase):$/;" c +TestSealable Lib/test/test_unittest/testmock/testsealable.py /^class TestSealable(unittest.TestCase):$/;" c +TestSelector Lib/test/test_asyncio/utils.py /^class TestSelector(selectors.BaseSelector):$/;" c +TestSelectorUtils Lib/test/test_asyncio/test_base_events.py /^class TestSelectorUtils(test_utils.TestCase):$/;" c +TestSendChannelAttrs Lib/test/test_interpreters.py /^class TestSendChannelAttrs(TestBase):$/;" c +TestSendRecv Lib/test/test_interpreters.py /^class TestSendRecv(TestBase):$/;" c +TestSendfile Lib/test/test_os.py /^class TestSendfile(unittest.IsolatedAsyncioTestCase):$/;" c +TestSeparators Lib/test/test_json/test_separators.py /^class TestSeparators:$/;" c +TestSequence Lib/test/test_deque.py /^class TestSequence(seq_tests.CommonTest):$/;" c +TestServer Lib/test/test_asyncio/test_events.py /^class TestServer(unittest.TestCase):$/;" c +TestServer2 Lib/test/test_asyncio/test_server.py /^class TestServer2(unittest.IsolatedAsyncioTestCase):$/;" c +TestServerThread Lib/test/test_httpservers.py /^class TestServerThread(threading.Thread):$/;" c +TestSet Lib/test/test_iterlen.py /^class TestSet(TestTemporarilyImmutable, unittest.TestCase):$/;" c +TestSet Lib/test/test_set.py /^class TestSet(TestJointOps, unittest.TestCase):$/;" c +TestSet Modules/_decimal/tests/deccheck.py /^class TestSet(object):$/;" c +TestSetDefaults Lib/test/test_argparse.py /^class TestSetDefaults(TestCase):$/;" c +TestSetGetEvents Lib/test/test_monitoring.py /^class TestSetGetEvents(MonitoringTestBase, unittest.TestCase):$/;" c +TestSetLiteral Lib/test/test_lib2to3/test_parser.py /^class TestSetLiteral(GrammarTest):$/;" c +TestSetLocalTrace Lib/test/test_sys_settrace.py /^class TestSetLocalTrace(TraceTestCase):$/;" c +TestSetOfSets Lib/test/test_set.py /^class TestSetOfSets(unittest.TestCase):$/;" c +TestSetSubclass Lib/test/test_set.py /^class TestSetSubclass(TestSet):$/;" c +TestSetSubclassWithSlots Lib/test/test_set.py /^class TestSetSubclassWithSlots(unittest.TestCase):$/;" c +TestSetupAnnotations Lib/test/test_type_annotations.py /^class TestSetupAnnotations(unittest.TestCase):$/;" c +TestSetups Lib/test/test_unittest/test_setups.py /^class TestSetups(unittest.TestCase):$/;" c +TestShelveBase Lib/test/test_shelve.py /^class TestShelveBase:$/;" c +TestShelveFileBase Lib/test/test_shelve.py /^class TestShelveFileBase(TestShelveBase):$/;" c +TestShelveInMemBase Lib/test/test_shelve.py /^class TestShelveInMemBase(TestShelveBase):$/;" c +TestShortColumns Lib/test/test_argparse.py /^class TestShortColumns(HelpTestCase):$/;" c +TestSign Lib/test/test_statistics.py /^class TestSign(unittest.TestCase):$/;" c +TestSignatureBind Lib/test/test_inspect.py /^class TestSignatureBind(unittest.TestCase):$/;" c +TestSignatureDefinitions Lib/test/test_inspect.py /^class TestSignatureDefinitions(unittest.TestCase):$/;" c +TestSignatureObject Lib/test/test_inspect.py /^class TestSignatureObject(unittest.TestCase):$/;" c +TestSignaturePrivateHelpers Lib/test/test_inspect.py /^class TestSignaturePrivateHelpers(unittest.TestCase):$/;" c +TestSigned Lib/test/test_email/test_email.py /^class TestSigned(TestEmailBase):$/;" c +TestSimpleQueue Lib/test/_test_multiprocessing.py /^class TestSimpleQueue(unittest.TestCase):$/;" c +TestSingleDispatch Lib/test/test_functools.py /^class TestSingleDispatch(unittest.TestCase):$/;" c +TestSinglePhaseSnapshot Lib/test/test_import/__init__.py /^class TestSinglePhaseSnapshot(ModuleSnapshot):$/;" c +TestSlots Lib/test/test_dataclasses.py /^class TestSlots(unittest.TestCase):$/;" c +TestSnapshot Lib/test/test_tracemalloc.py /^class TestSnapshot(unittest.TestCase):$/;" c +TestSniffer Lib/test/test_csv.py /^class TestSniffer(unittest.TestCase):$/;" c +TestSocketSendfile Lib/test/test_largefile.py /^class TestSocketSendfile(LargeFileTest, unittest.TestCase):$/;" c +TestSocketSharing Lib/test/test_socket.py /^class TestSocketSharing(SocketTCPTest):$/;" c +TestSocketWrapper Lib/test/test_asyncio/functional.py /^class TestSocketWrapper:$/;" c +TestSocketWrapper Lib/test/test_asyncio/test_ssl.py /^class TestSocketWrapper:$/;" c +TestSorted Lib/test/test_builtin.py /^class TestSorted(unittest.TestCase):$/;" c +TestSourcePositions Lib/test/test_compile.py /^class TestSourcePositions(unittest.TestCase):$/;" c +TestSpecial Lib/test/test_enum.py /^class TestSpecial(unittest.TestCase):$/;" c +TestSpecifics Lib/test/test_compile.py /^class TestSpecifics(unittest.TestCase):$/;" c +TestSpeedups Lib/test/test_json/test_speedups.py /^class TestSpeedups(CTest):$/;" c +TestSpooledTemporaryFile Lib/test/test_tempfile.py /^class TestSpooledTemporaryFile(BaseTestCase):$/;" c +TestSpwdNonRoot Lib/test/test_spwd.py /^class TestSpwdNonRoot(unittest.TestCase):$/;" c +TestSpwdRoot Lib/test/test_spwd.py /^class TestSpwdRoot(unittest.TestCase):$/;" c +TestSqrtHelpers Lib/test/test_statistics.py /^class TestSqrtHelpers(unittest.TestCase):$/;" c +TestStableABIAvailability Lib/test/test_stable_abi_ctypes.py /^class TestStableABIAvailability(unittest.TestCase):$/;" c +TestStack Lib/test/test_traceback.py /^class TestStack(unittest.TestCase):$/;" c +TestStackSizeStability Lib/test/test_compile.py /^class TestStackSizeStability(unittest.TestCase):$/;" c +TestStandard Lib/test/test_optparse.py /^class TestStandard(BaseTest):$/;" c +TestStart Lib/test/test_enumerate.py /^class TestStart(EnumerateStartTestCase):$/;" c +TestStartMethod Lib/test/_test_multiprocessing.py /^class TestStartMethod(unittest.TestCase):$/;" c +TestStateful Lib/test/test_multibytecodec.py /^class TestStateful(unittest.TestCase):$/;" c +TestStaticTypes Lib/test/test_capi/test_misc.py /^class TestStaticTypes(unittest.TestCase):$/;" c +TestStats Lib/test/support/__init__.py /^class TestStats:$/;" c +TestStdLib Lib/test/test_enum.py /^class TestStdLib(unittest.TestCase):$/;" c +TestStdev Lib/test/test_statistics.py /^class TestStdev(VarianceStdevMixin, NumericTestCase):$/;" c +TestStdinBadfiledescriptor Lib/test/_test_multiprocessing.py /^class TestStdinBadfiledescriptor(unittest.TestCase):$/;" c +TestStrEnumClass Lib/test/test_enum.py /^class TestStrEnumClass(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestStrEnumFunction Lib/test/test_enum.py /^class TestStrEnumFunction(_EnumTests, _MinimalOutputTests, unittest.TestCase):$/;" c +TestStreamHandler Lib/test/test_logging.py /^class TestStreamHandler(logging.StreamHandler):$/;" c +TestStrftime4dyear Lib/test/test_time.py /^class TestStrftime4dyear(_TestStrftimeYear, _Test4dYear, unittest.TestCase):$/;" c +TestStringAnnotations Lib/test/test_dataclasses.py /^class TestStringAnnotations(unittest.TestCase):$/;" c +TestStringLiterals Lib/test/test_lib2to3/test_parser.py /^class TestStringLiterals(GrammarTest):$/;" c +TestStringVar Lib/test/test_tkinter/test_variables.py /^class TestStringVar(TestBase):$/;" c +TestStrings Lib/test/test_argparse.py /^class TestStrings(TestCase):$/;" c +TestStruct Lib/test/test_ctypes/test_unicode.py /^ class TestStruct(ctypes.Structure):$/;" c function:UnicodeTestCase.test_embedded_null +TestStructSeq Lib/test/_test_embed_structseq.py /^class TestStructSeq:$/;" c +TestStructure Lib/test/test_ctypes/test_byteswap.py /^ class TestStructure(parent):$/;" c function:Test.test_struct_struct +TestStructures Lib/test/test_ctypes/test_unaligned_structures.py /^class TestStructures(unittest.TestCase):$/;" c +TestSubClassingCase Lib/test/test_calendar.py /^class TestSubClassingCase(unittest.TestCase):$/;" c +TestSubclass Lib/test/test_deque.py /^class TestSubclass(unittest.TestCase):$/;" c +TestSubclassDateTime Lib/test/datetimetester.py /^class TestSubclassDateTime(TestDateTime):$/;" c +TestSubclassWithKwargs Lib/test/test_deque.py /^class TestSubclassWithKwargs(unittest.TestCase):$/;" c +TestSubprocessTransport Lib/test/test_asyncio/test_subprocess.py /^class TestSubprocessTransport(base_subprocess.BaseSubprocessTransport):$/;" c +TestSubsetEmptyNonEmpty Lib/test/test_set.py /^class TestSubsetEmptyNonEmpty(TestSubsets, unittest.TestCase):$/;" c +TestSubsetEqualEmpty Lib/test/test_set.py /^class TestSubsetEqualEmpty(TestSubsets, unittest.TestCase):$/;" c +TestSubsetEqualNonEmpty Lib/test/test_set.py /^class TestSubsetEqualNonEmpty(TestSubsets, unittest.TestCase):$/;" c +TestSubsetNonOverlap Lib/test/test_set.py /^class TestSubsetNonOverlap(TestSubsets, unittest.TestCase):$/;" c +TestSubsetPartial Lib/test/test_set.py /^class TestSubsetPartial(TestSubsets, unittest.TestCase):$/;" c +TestSubsets Lib/test/test_set.py /^class TestSubsets:$/;" c +TestSuite Lib/unittest/suite.py /^class TestSuite(BaseTestSuite):$/;" c +TestSum Lib/test/test_statistics.py /^class TestSum(NumericTestCase):$/;" c +TestSumCommon Lib/test/test_statistics.py /^class TestSumCommon(UnivariateCommonMixin, UnivariateTypeMixin):$/;" c +TestSundryScripts Lib/test/test_tools/test_sundry.py /^class TestSundryScripts(unittest.TestCase):$/;" c +TestSuper Lib/test/test_super.py /^class TestSuper(unittest.TestCase):$/;" c +TestSupport Lib/test/test_support.py /^class TestSupport(unittest.TestCase):$/;" c +TestSuppress Lib/test/test_contextlib.py /^class TestSuppress(ExceptionIsLikeMixin, unittest.TestCase):$/;" c +TestSymbolicallyLinkedPackage Lib/test/test_import/__init__.py /^class TestSymbolicallyLinkedPackage(unittest.TestCase):$/;" c +TestSyncManagerTypes Lib/test/_test_multiprocessing.py /^class TestSyncManagerTypes(unittest.TestCase):$/;" c +TestSyntaxErrors Lib/test/test_patma.py /^class TestSyntaxErrors(unittest.TestCase):$/;" c +TestSysConfig Lib/test/test_sysconfig.py /^class TestSysConfig(unittest.TestCase):$/;" c +TestTCPServer Lib/test/test_imaplib.py /^ class TestTCPServer(self.server_class):$/;" c function:NewIMAPTestsMixin._setup +TestTCPServer Lib/test/test_logging.py /^class TestTCPServer(ControlMixin, ThreadingTCPServer):$/;" c +TestTLS_FTPClass Lib/test/test_ftplib.py /^class TestTLS_FTPClass(TestCase):$/;" c +TestTLS_FTPClassMixin Lib/test/test_ftplib.py /^class TestTLS_FTPClassMixin(TestFTPClass):$/;" c +TestTNavigator Lib/test/test_turtle.py /^class TestTNavigator(VectorComparisonMixin, unittest.TestCase):$/;" c +TestTPen Lib/test/test_turtle.py /^class TestTPen(unittest.TestCase):$/;" c +TestTZInfo Lib/test/datetimetester.py /^class TestTZInfo(unittest.TestCase):$/;" c +TestTaskGroup Lib/test/test_asyncio/test_taskgroups.py /^class TestTaskGroup(unittest.IsolatedAsyncioTestCase):$/;" c +TestTemplate Lib/test/test_string.py /^class TestTemplate(unittest.TestCase):$/;" c +TestTemporarilyImmutable Lib/test/test_iterlen.py /^class TestTemporarilyImmutable(TestInvariantWithoutMutations):$/;" c +TestTemporaryDirectory Lib/test/test_tempfile.py /^class TestTemporaryDirectory(BaseTestCase):$/;" c +TestTemporaryFile Lib/test/test_tempfile.py /^ class TestTemporaryFile(BaseTestCase):$/;" c +TestTests Lib/test/support/testresult.py /^ class TestTests(unittest.TestCase):$/;" c function:get_test_runner +TestTextIOSignalInterrupt Lib/test/test_file_eintr.py /^class TestTextIOSignalInterrupt(TestFileIOSignalInterrupt):$/;" c +TestThread Lib/test/test_threading.py /^class TestThread(threading.Thread):$/;" c +TestThreadState Lib/test/test_capi/test_misc.py /^class TestThreadState(unittest.TestCase):$/;" c +TestThreadedClient Lib/test/test_asyncio/functional.py /^class TestThreadedClient(SocketThread):$/;" c +TestThreadedClient Lib/test/test_asyncio/test_ssl.py /^class TestThreadedClient(SocketThread):$/;" c +TestThreadedServer Lib/test/test_asyncio/functional.py /^class TestThreadedServer(SocketThread):$/;" c +TestThreadedServer Lib/test/test_asyncio/test_ssl.py /^class TestThreadedServer(SocketThread):$/;" c +TestTime Lib/test/datetimetester.py /^class TestTime(HarmlessMixedComparison, unittest.TestCase):$/;" c +TestTimeDelta Lib/test/datetimetester.py /^class TestTimeDelta(HarmlessMixedComparison, unittest.TestCase):$/;" c +TestTimeTZ Lib/test/datetimetester.py /^class TestTimeTZ(TestTime, TZInfoBase, unittest.TestCase):$/;" c +TestTimeWeaklinking Lib/test/test_time.py /^class TestTimeWeaklinking(unittest.TestCase):$/;" c +TestTimeZone Lib/test/datetimetester.py /^class TestTimeZone(unittest.TestCase):$/;" c +TestTimeit Lib/test/test_timeit.py /^class TestTimeit(unittest.TestCase):$/;" c +TestTimeouts Lib/test/_test_multiprocessing.py /^class TestTimeouts(unittest.TestCase):$/;" c +TestTimeouts Lib/test/test_ftplib.py /^class TestTimeouts(TestCase):$/;" c +TestTimeouts Lib/test/test_poplib.py /^class TestTimeouts(TestCase):$/;" c +TestTimezoneConversions Lib/test/datetimetester.py /^class TestTimezoneConversions(unittest.TestCase):$/;" c +TestTix Lib/test/test_tix.py /^class TestTix(unittest.TestCase):$/;" c +TestTokens Lib/test/test_email/test__header_value_parser.py /^class TestTokens(TestEmailBase):$/;" c +TestTool Lib/test/test_json/test_tool.py /^class TestTool(unittest.TestCase):$/;" c +TestTopologicalSort Lib/test/test_graphlib.py /^class TestTopologicalSort(unittest.TestCase):$/;" c +TestTotalOrdering Lib/test/test_functools.py /^class TestTotalOrdering(unittest.TestCase):$/;" c +TestTraceback Lib/test/test_raise.py /^class TestTraceback(unittest.TestCase):$/;" c +TestTraceback Lib/test/test_tracemalloc.py /^class TestTraceback(unittest.TestCase):$/;" c +TestTracebackException Lib/test/test_traceback.py /^class TestTracebackException(unittest.TestCase):$/;" c +TestTracebackException_ExceptionGroups Lib/test/test_traceback.py /^class TestTracebackException_ExceptionGroups(unittest.TestCase):$/;" c +TestTracebackType Lib/test/test_raise.py /^class TestTracebackType(unittest.TestCase):$/;" c +TestTracemallocEnabled Lib/test/test_tracemalloc.py /^class TestTracemallocEnabled(unittest.TestCase):$/;" c +TestTracing Lib/test/test_dynamic.py /^class TestTracing(unittest.TestCase):$/;" c +TestTracing Lib/test/test_patma.py /^class TestTracing(unittest.TestCase):$/;" c +TestTranforms Lib/test/test_peepholer.py /^class TestTranforms(BytecodeTestCase):$/;" c +TestTrunc Lib/test/test_math.py /^ class TestTrunc:$/;" c function:MathTests.test_trunc +TestTuple Lib/test/test_iterlen.py /^class TestTuple(TestInvariantWithoutMutations, unittest.TestCase):$/;" c +TestType Lib/test/test_builtin.py /^class TestType(unittest.TestCase):$/;" c +TestTypeAliases Lib/test/test_optparse.py /^class TestTypeAliases(BaseTest):$/;" c +TestTypeCallable Lib/test/test_argparse.py /^class TestTypeCallable(ParserTestCase):$/;" c +TestTypeClassicClass Lib/test/test_argparse.py /^class TestTypeClassicClass(ParserTestCase):$/;" c +TestTypeErrors Lib/test/test_patma.py /^class TestTypeErrors(unittest.TestCase):$/;" c +TestTypeFunctionCallOnlyOnce Lib/test/test_argparse.py /^class TestTypeFunctionCallOnlyOnce(TestCase):$/;" c +TestTypeFunctionCalledOnDefault Lib/test/test_argparse.py /^class TestTypeFunctionCalledOnDefault(TestCase):$/;" c +TestTypeRegistration Lib/test/test_argparse.py /^class TestTypeRegistration(TestCase):$/;" c +TestTypeUserDefined Lib/test/test_argparse.py /^class TestTypeUserDefined(ParserTestCase):$/;" c +TestTypeWatchers Lib/test/test_capi/test_watchers.py /^class TestTypeWatchers(unittest.TestCase):$/;" c +TestUDPServer Lib/test/test_logging.py /^class TestUDPServer(ControlMixin, ThreadingUDPServer):$/;" c +TestUUIDWithExtModule Lib/test/test_uuid.py /^class TestUUIDWithExtModule(BaseTestUUID, unittest.TestCase):$/;" c +TestUUIDWithoutExtModule Lib/test/test_uuid.py /^class TestUUIDWithoutExtModule(BaseTestUUID, unittest.TestCase):$/;" c +TestUnicode Lib/test/test_csv.py /^class TestUnicode(unittest.TestCase):$/;" c +TestUnicode Lib/test/test_json/test_unicode.py /^class TestUnicode:$/;" c +TestUnicodeFiles Lib/test/test_unicode_file.py /^class TestUnicodeFiles(unittest.TestCase):$/;" c +TestUninitialized Lib/test/test_monitoring.py /^class TestUninitialized(unittest.TestCase, MonitoringTestBase):$/;" c +TestUninstall Lib/test/test_ensurepip.py /^class TestUninstall(EnsurepipMixin, unittest.TestCase):$/;" c +TestUninstallationMainFunction Lib/test/test_ensurepip.py /^class TestUninstallationMainFunction(EnsurepipMixin, unittest.TestCase):$/;" c +TestUnion Lib/test/test_ctypes/test_byteswap.py /^ class TestUnion(parent):$/;" c function:Test.test_union_struct +TestUnique Lib/test/test_enum.py /^class TestUnique(unittest.TestCase):$/;" c +TestUnixDatagramServer Lib/test/test_logging.py /^ class TestUnixDatagramServer(TestUDPServer):$/;" c +TestUnixDomain Lib/test/test_socket.py /^class TestUnixDomain(unittest.TestCase):$/;" c +TestUnixStreamServer Lib/test/test_logging.py /^ class TestUnixStreamServer(TestTCPServer):$/;" c +TestUnpackingGeneralizations Lib/test/test_lib2to3/test_parser.py /^class TestUnpackingGeneralizations(GrammarTest):$/;" c +TestUnstructuredHeader Lib/test/test_email/test_headerregistry.py /^class TestUnstructuredHeader(TestHeaderBase):$/;" c +TestUntestedModules Lib/test/test_sundry.py /^class TestUntestedModules(unittest.TestCase):$/;" c +TestUnwrap Lib/test/test_inspect.py /^class TestUnwrap(unittest.TestCase):$/;" c +TestUpdateOps Lib/test/test_set.py /^class TestUpdateOps(unittest.TestCase):$/;" c +TestUpdateWrapper Lib/test/test_functools.py /^class TestUpdateWrapper(unittest.TestCase):$/;" c +TestUrlopen Lib/test/test_urllib2_localnet.py /^class TestUrlopen(unittest.TestCase):$/;" c +TestUserObjects Lib/test/test_collections.py /^class TestUserObjects(unittest.TestCase):$/;" c +TestUtils Lib/test/test_regrtest.py /^class TestUtils(unittest.TestCase):$/;" c +TestValueErrors Lib/test/test_patma.py /^class TestValueErrors(unittest.TestCase):$/;" c +TestVarAnnotations Lib/test/test_lib2to3/test_parser.py /^class TestVarAnnotations(GrammarTest):$/;" c +TestVariable Lib/test/test_tkinter/test_variables.py /^class TestVariable(TestBase):$/;" c +TestVariance Lib/test/test_statistics.py /^class TestVariance(VarianceStdevMixin, NumericTestCase, UnivariateTypeMixin):$/;" c +TestVariousIteratorArgs Lib/test/test_deque.py /^class TestVariousIteratorArgs(unittest.TestCase):$/;" c +TestVariousIteratorArgs Lib/test/test_itertools.py /^class TestVariousIteratorArgs(unittest.TestCase):$/;" c +TestVariousIteratorArgs Lib/test/test_set.py /^class TestVariousIteratorArgs(unittest.TestCase):$/;" c +TestVec2D Lib/test/test_turtle.py /^class TestVec2D(VectorComparisonMixin, unittest.TestCase):$/;" c +TestVectorsTestCase Lib/test/test_hmac.py /^class TestVectorsTestCase(unittest.TestCase):$/;" c +TestVerify Lib/test/test_enum.py /^class TestVerify(unittest.TestCase):$/;" c +TestVersion Lib/test/test_optparse.py /^class TestVersion(BaseTest):$/;" c +TestWait Lib/test/_test_multiprocessing.py /^class TestWait(unittest.TestCase):$/;" c +TestWarning Lib/test/test_warnings/__init__.py /^class TestWarning(Warning):$/;" c +TestWarnings Lib/test/test_capi/test_structmembers.py /^class TestWarnings:$/;" c +TestWarnings Lib/test/test_unittest/_test_warnings.py /^class TestWarnings(unittest.TestCase):$/;" c +TestWarnings_NewAPI Lib/test/test_capi/test_structmembers.py /^class TestWarnings_NewAPI(TestWarnings, unittest.TestCase):$/;" c +TestWarnings_OldAPI Lib/test/test_capi/test_structmembers.py /^class TestWarnings_OldAPI(TestWarnings, unittest.TestCase):$/;" c +TestWeakSet Lib/test/test_weakset.py /^class TestWeakSet(unittest.TestCase):$/;" c +TestWeirdBugs Lib/test/test_set.py /^class TestWeirdBugs(unittest.TestCase):$/;" c +TestWhich Lib/test/test_shutil.py /^class TestWhich(BaseTest, unittest.TestCase):$/;" c +TestWhichBytes Lib/test/test_shutil.py /^class TestWhichBytes(TestWhich):$/;" c +TestWhyCryptDidNotImport Lib/test/test_crypt.py /^class TestWhyCryptDidNotImport(unittest.TestCase):$/;" c +TestWinError Lib/test/test_ctypes/test_win32.py /^class TestWinError(unittest.TestCase):$/;" c +TestWintypes Lib/test/test_ctypes/test_win32.py /^class TestWintypes(unittest.TestCase):$/;" c +TestWithAscii Lib/test/test_difflib.py /^class TestWithAscii(unittest.TestCase):$/;" c +TestWithDirectory Lib/test/test_zipfile/test_core.py /^class TestWithDirectory(unittest.TestCase):$/;" c +TestWorkerProcess Lib/test/libregrtest/runtest_mp.py /^class TestWorkerProcess(threading.Thread):$/;" c +TestWrappingMetavar Lib/test/test_argparse.py /^class TestWrappingMetavar(TestCase):$/;" c +TestWraps Lib/test/test_functools.py /^class TestWraps(TestUpdateWrapper):$/;" c +TestXXLimited Lib/test/test_xxlimited.py /^class TestXXLimited(CommonTests, unittest.TestCase):$/;" c +TestXXLimited35 Lib/test/test_xxlimited.py /^class TestXXLimited35(CommonTests, unittest.TestCase):$/;" c +TestXrange Lib/test/test_iterlen.py /^class TestXrange(TestInvariantWithoutMutations, unittest.TestCase):$/;" c +TestXrangeCustomReversed Lib/test/test_iterlen.py /^class TestXrangeCustomReversed(TestInvariantWithoutMutations, unittest.TestCase):$/;" c +TestYieldFrom Lib/test/test_lib2to3/test_parser.py /^class TestYieldFrom(GrammarTest):$/;" c +TestZeroCopyMACOS Lib/test/test_shutil.py /^class TestZeroCopyMACOS(_ZeroCopyFileTest, unittest.TestCase):$/;" c +TestZeroCopySendfile Lib/test/test_shutil.py /^class TestZeroCopySendfile(_ZeroCopyFileTest, unittest.TestCase):$/;" c +TestZip Lib/test/test_importlib/test_zip.py /^class TestZip(fixtures.ZipFixtures, unittest.TestCase):$/;" c +Test_Assertions Lib/test/test_unittest/test_assertions.py /^class Test_Assertions(unittest.TestCase):$/;" c +Test_Attr Lib/test/test_lib2to3/test_util.py /^class Test_Attr(MacroTestCase):$/;" c +Test_Big5 Lib/test/test_codecencodings_tw.py /^class Test_Big5(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_Big5HKSCS Lib/test/test_codecencodings_hk.py /^class Test_Big5HKSCS(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_CP932 Lib/test/test_codecencodings_jp.py /^class Test_CP932(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_CP949 Lib/test/test_codecencodings_kr.py /^class Test_CP949(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_Call Lib/test/test_lib2to3/test_util.py /^class Test_Call(MacroTestCase):$/;" c +Test_Csv Lib/test/test_csv.py /^class Test_Csv(unittest.TestCase):$/;" c +Test_EUCKR Lib/test/test_codecencodings_kr.py /^class Test_EUCKR(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_EUC_JISX0213 Lib/test/test_codecencodings_jp.py /^ unittest.TestCase):$/;" c +Test_EUC_JIS_2004 Lib/test/test_codecencodings_jp.py /^ unittest.TestCase):$/;" c +Test_EUC_JP_COMPAT Lib/test/test_codecencodings_jp.py /^ unittest.TestCase):$/;" c +Test_ErrSetAndRestore Lib/test/test_capi/test_exceptions.py /^class Test_ErrSetAndRestore(unittest.TestCase):$/;" c +Test_Exceptions Lib/test/test_capi/test_exceptions.py /^class Test_Exceptions(unittest.TestCase):$/;" c +Test_FatalError Lib/test/test_capi/test_exceptions.py /^class Test_FatalError(unittest.TestCase):$/;" c +Test_FunctionTestCase Lib/test/test_unittest/test_functiontestcase.py /^class Test_FunctionTestCase(unittest.TestCase):$/;" c +Test_GB18030 Lib/test/test_codecencodings_cn.py /^class Test_GB18030(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_GB2312 Lib/test/test_codecencodings_cn.py /^class Test_GB2312(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_GBK Lib/test/test_codecencodings_cn.py /^class Test_GBK(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_HZ Lib/test/test_codecencodings_cn.py /^class Test_HZ(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_ISO2022 Lib/test/test_multibytecodec.py /^class Test_ISO2022(unittest.TestCase):$/;" c +Test_ISO2022_JP Lib/test/test_codecencodings_iso2022.py /^class Test_ISO2022_JP(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_ISO2022_JP2 Lib/test/test_codecencodings_iso2022.py /^class Test_ISO2022_JP2(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_ISO2022_KR Lib/test/test_codecencodings_iso2022.py /^class Test_ISO2022_KR(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_Ignore Lib/test/test_trace.py /^class Test_Ignore(unittest.TestCase):$/;" c +Test_IncrementalDecoder Lib/test/test_multibytecodec.py /^class Test_IncrementalDecoder(unittest.TestCase):$/;" c +Test_IncrementalEncoder Lib/test/test_multibytecodec.py /^class Test_IncrementalEncoder(unittest.TestCase):$/;" c +Test_JOHAB Lib/test/test_codecencodings_kr.py /^class Test_JOHAB(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_ModuleStateAccess Lib/test/test_capi/test_misc.py /^class Test_ModuleStateAccess(unittest.TestCase):$/;" c +Test_MultibyteCodec Lib/test/test_multibytecodec.py /^class Test_MultibyteCodec(unittest.TestCase):$/;" c +Test_Name Lib/test/test_lib2to3/test_util.py /^class Test_Name(MacroTestCase):$/;" c +Test_OSXSupport Lib/test/test__osx_support.py /^class Test_OSXSupport(unittest.TestCase):$/;" c +Test_OldTestResult Lib/test/test_unittest/test_result.py /^class Test_OldTestResult(unittest.TestCase):$/;" c +Test_OpenGL_libs Lib/test/test_ctypes/test_find.py /^class Test_OpenGL_libs(unittest.TestCase):$/;" c +Test_Pep523API Lib/test/test_capi/test_misc.py /^class Test_Pep523API(unittest.TestCase):$/;" c +Test_PyUnstable_Exc_PrepReraiseStar Lib/test/test_capi/test_exceptions.py /^class Test_PyUnstable_Exc_PrepReraiseStar(ExceptionIsLikeMixin, unittest.TestCase):$/;" c +Test_SJISX0213 Lib/test/test_codecencodings_jp.py /^class Test_SJISX0213(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_SJIS_2004 Lib/test/test_codecencodings_jp.py /^class Test_SJIS_2004(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_SJIS_COMPAT Lib/test/test_codecencodings_jp.py /^class Test_SJIS_COMPAT(multibytecodec_support.TestBase, unittest.TestCase):$/;" c +Test_StreamReader Lib/test/test_multibytecodec.py /^class Test_StreamReader(unittest.TestCase):$/;" c +Test_StreamWriter Lib/test/test_multibytecodec.py /^class Test_StreamWriter(unittest.TestCase):$/;" c +Test_TestCase Lib/test/test_unittest/test_case.py /^class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):$/;" c +Test_TestLoader Lib/test/test_unittest/test_loader.py /^class Test_TestLoader(unittest.TestCase):$/;" c +Test_TestProgram Lib/test/test_unittest/test_program.py /^class Test_TestProgram(unittest.TestCase):$/;" c +Test_TestResult Lib/test/test_unittest/test_result.py /^class Test_TestResult(unittest.TestCase):$/;" c +Test_TestSkipping Lib/test/test_unittest/test_skipping.py /^class Test_TestSkipping(unittest.TestCase):$/;" c +Test_TestSuite Lib/test/test_unittest/test_suite.py /^class Test_TestSuite(unittest.TestCase, TestEquality):$/;" c +Test_TextTestResult Lib/test/test_unittest/test_result.py /^class Test_TextTestResult(unittest.TestCase):$/;" c +Test_TextTestRunner Lib/test/test_unittest/test_runner.py /^class Test_TextTestRunner(unittest.TestCase):$/;" c +Test___init__ Lib/test/clinic.test.c /^Test___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +Test_all Lib/test/test_lib2to3/test_all_fixers.py /^class Test_all(support.TestCase):$/;" c +Test_an_metho_arg_named_arg Lib/test/clinic.test.c /^Test_an_metho_arg_named_arg(TestObj *self, PyObject *arg_)$/;" f file: +Test_apply Lib/test/test_lib2to3/test_fixers.py /^class Test_apply(FixerTestCase):$/;" c +Test_asserts Lib/test/test_lib2to3/test_fixers.py /^class Test_asserts(FixerTestCase):$/;" c +Test_basestring Lib/test/test_lib2to3/test_fixers.py /^class Test_basestring(FixerTestCase):$/;" c +Test_buffer Lib/test/test_lib2to3/test_fixers.py /^class Test_buffer(FixerTestCase):$/;" c +Test_class_method Lib/test/clinic.test.c /^Test_class_method(PyTypeObject *type, PyObject *Py_UNUSED(ignored))$/;" f file: +Test_cls_no_params Lib/test/clinic.test.c /^Test_cls_no_params(TestObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f file: +Test_cls_with_param Lib/test/clinic.test.c /^Test_cls_with_param(TestObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f file: +Test_dict Lib/test/test_lib2to3/test_fixers.py /^class Test_dict(FixerTestCase):$/;" c +Test_does_tree_import Lib/test/test_lib2to3/test_util.py /^class Test_does_tree_import(support.TestCase):$/;" c +Test_except Lib/test/test_lib2to3/test_fixers.py /^class Test_except(FixerTestCase):$/;" c +Test_exec Lib/test/test_lib2to3/test_fixers.py /^class Test_exec(FixerTestCase):$/;" c +Test_execfile Lib/test/test_lib2to3/test_fixers.py /^class Test_execfile(FixerTestCase):$/;" c +Test_exitfunc Lib/test/test_lib2to3/test_fixers.py /^class Test_exitfunc(FixerTestCase):$/;" c +Test_fileinput_close Lib/test/test_fileinput.py /^class Test_fileinput_close(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_filelineno Lib/test/test_fileinput.py /^class Test_fileinput_filelineno(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_filename Lib/test/test_fileinput.py /^class Test_fileinput_filename(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_fileno Lib/test/test_fileinput.py /^class Test_fileinput_fileno(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_input Lib/test/test_fileinput.py /^class Test_fileinput_input(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_isfirstline Lib/test/test_fileinput.py /^class Test_fileinput_isfirstline(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_isstdin Lib/test/test_fileinput.py /^class Test_fileinput_isstdin(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_lineno Lib/test/test_fileinput.py /^class Test_fileinput_lineno(BaseFileInputGlobalMethodsTest):$/;" c +Test_fileinput_nextfile Lib/test/test_fileinput.py /^class Test_fileinput_nextfile(BaseFileInputGlobalMethodsTest):$/;" c +Test_filter Lib/test/test_lib2to3/test_fixers.py /^class Test_filter(FixerTestCase):$/;" c +Test_find_binding Lib/test/test_lib2to3/test_util.py /^class Test_find_binding(support.TestCase):$/;" c +Test_find_indentation Lib/test/test_lib2to3/test_util.py /^class Test_find_indentation(support.TestCase):$/;" c +Test_funcattrs Lib/test/test_lib2to3/test_fixers.py /^class Test_funcattrs(FixerTestCase):$/;" c +Test_future Lib/test/test_lib2to3/test_fixers.py /^class Test_future(FixerTestCase):$/;" c +Test_getcwdu Lib/test/test_lib2to3/test_fixers.py /^class Test_getcwdu(FixerTestCase):$/;" c +Test_has_key Lib/test/test_lib2to3/test_fixers.py /^class Test_has_key(FixerTestCase):$/;" c +Test_hook_compressed Lib/test/test_fileinput.py /^class Test_hook_compressed(unittest.TestCase):$/;" c +Test_hook_encoded Lib/test/test_fileinput.py /^class Test_hook_encoded(unittest.TestCase):$/;" c +Test_idioms Lib/test/test_lib2to3/test_fixers.py /^class Test_idioms(FixerTestCase):$/;" c +Test_import Lib/test/test_lib2to3/test_fixers.py /^class Test_import(FixerTestCase):$/;" c +Test_imports Lib/test/test_lib2to3/test_fixers.py /^class Test_imports(FixerTestCase, ImportsFixerTests):$/;" c +Test_imports2 Lib/test/test_lib2to3/test_fixers.py /^class Test_imports2(FixerTestCase, ImportsFixerTests):$/;" c +Test_imports_fixer_order Lib/test/test_lib2to3/test_fixers.py /^class Test_imports_fixer_order(FixerTestCase, ImportsFixerTests):$/;" c +Test_input Lib/test/test_lib2to3/test_fixers.py /^class Test_input(FixerTestCase):$/;" c +Test_intern Lib/test/test_lib2to3/test_fixers.py /^class Test_intern(FixerTestCase):$/;" c +Test_is_list Lib/test/test_lib2to3/test_util.py /^class Test_is_list(support.TestCase):$/;" c +Test_is_tuple Lib/test/test_lib2to3/test_util.py /^class Test_is_tuple(support.TestCase):$/;" c +Test_isinstance Lib/test/test_lib2to3/test_fixers.py /^class Test_isinstance(FixerTestCase):$/;" c +Test_iskeyword Lib/test/test_keyword.py /^class Test_iskeyword(unittest.TestCase):$/;" c +Test_itertools Lib/test/test_lib2to3/test_fixers.py /^class Test_itertools(FixerTestCase):$/;" c +Test_itertools_imports Lib/test/test_lib2to3/test_fixers.py /^class Test_itertools_imports(FixerTestCase):$/;" c +Test_long Lib/test/test_lib2to3/test_fixers.py /^class Test_long(FixerTestCase):$/;" c +Test_make_id Lib/test/test_msilib.py /^class Test_make_id(unittest.TestCase):$/;" c +Test_map Lib/test/test_lib2to3/test_fixers.py /^class Test_map(FixerTestCase):$/;" c +Test_metaclass Lib/test/test_lib2to3/test_fixers.py /^class Test_metaclass(FixerTestCase):$/;" c +Test_meth_coexist Lib/test/clinic.test.c /^Test_meth_coexist(TestObj *self, PyObject *Py_UNUSED(ignored))$/;" f file: +Test_metho_not_default_return_converter Lib/test/clinic.test.c /^Test_metho_not_default_return_converter(TestObj *self, PyObject *a)$/;" f file: +Test_methodattrs Lib/test/test_lib2to3/test_fixers.py /^class Test_methodattrs(FixerTestCase):$/;" c +Test_ne Lib/test/test_lib2to3/test_fixers.py /^class Test_ne(FixerTestCase):$/;" c +Test_next Lib/test/test_lib2to3/test_fixers.py /^class Test_next(FixerTestCase):$/;" c +Test_nonzero Lib/test/test_lib2to3/test_fixers.py /^class Test_nonzero(FixerTestCase):$/;" c +Test_numliterals Lib/test/test_lib2to3/test_fixers.py /^class Test_numliterals(FixerTestCase):$/;" c +Test_operator Lib/test/test_lib2to3/test_fixers.py /^class Test_operator(FixerTestCase):$/;" c +Test_paren Lib/test/test_lib2to3/test_fixers.py /^class Test_paren(FixerTestCase):$/;" c +Test_parse_mime_parameters Lib/test/test_email/test__header_value_parser.py /^class Test_parse_mime_parameters(TestParserMixin, TestEmailBase):$/;" c +Test_parse_mime_version Lib/test/test_email/test__header_value_parser.py /^class Test_parse_mime_version(TestParserMixin, TestEmailBase):$/;" c +Test_print Lib/test/test_lib2to3/test_fixers.py /^class Test_print(FixerTestCase):$/;" c +Test_pygettext Lib/test/test_tools/test_i18n.py /^class Test_pygettext(unittest.TestCase):$/;" c +Test_raise Lib/test/test_lib2to3/test_fixers.py /^class Test_raise(FixerTestCase):$/;" c +Test_raw_input Lib/test/test_lib2to3/test_fixers.py /^class Test_raw_input(FixerTestCase):$/;" c +Test_reduce Lib/test/test_lib2to3/test_fixers.py /^class Test_reduce(FixerTestCase):$/;" c +Test_reload Lib/test/test_lib2to3/test_fixers.py /^class Test_reload(FixerTestCase):$/;" c +Test_renames Lib/test/test_lib2to3/test_fixers.py /^class Test_renames(FixerTestCase):$/;" c +Test_repr Lib/test/test_lib2to3/test_fixers.py /^class Test_repr(FixerTestCase):$/;" c +Test_set_literal Lib/test/test_lib2to3/test_fixers.py /^class Test_set_literal(FixerTestCase):$/;" c +Test_standarderror Lib/test/test_lib2to3/test_fixers.py /^class Test_standarderror(FixerTestCase):$/;" c +Test_static_method Lib/test/clinic.test.c /^Test_static_method(void *null, PyObject *Py_UNUSED(ignored))$/;" f file: +Test_sys_exc Lib/test/test_lib2to3/test_fixers.py /^class Test_sys_exc(FixerTestCase):$/;" c +Test_testcapi Lib/test/test_capi/test_getargs.py /^class Test_testcapi(unittest.TestCase):$/;" c +Test_testcapi Lib/test/test_capi/test_misc.py /^class Test_testcapi(unittest.TestCase):$/;" c +Test_testinternalcapi Lib/test/test_capi/test_misc.py /^class Test_testinternalcapi(unittest.TestCase):$/;" c +Test_throw Lib/test/test_lib2to3/test_fixers.py /^class Test_throw(FixerTestCase):$/;" c +Test_touch_import Lib/test/test_lib2to3/test_util.py /^class Test_touch_import(support.TestCase):$/;" c +Test_tuple_params Lib/test/test_lib2to3/test_fixers.py /^class Test_tuple_params(FixerTestCase):$/;" c +Test_types Lib/test/test_lib2to3/test_fixers.py /^class Test_types(FixerTestCase):$/;" c +Test_unicode Lib/test/test_lib2to3/test_fixers.py /^class Test_unicode(FixerTestCase):$/;" c +Test_urllib Lib/test/test_lib2to3/test_fixers.py /^class Test_urllib(FixerTestCase):$/;" c +Test_xrange Lib/test/test_lib2to3/test_fixers.py /^class Test_xrange(FixerTestCase):$/;" c +Test_xrange_with_reduce Lib/test/test_lib2to3/test_fixers.py /^class Test_xrange_with_reduce(FixerTestCase):$/;" c +Test_xreadlines Lib/test/test_lib2to3/test_fixers.py /^class Test_xreadlines(FixerTestCase):$/;" c +Test_zip Lib/test/test_lib2to3/test_fixers.py /^class Test_zip(FixerTestCase):$/;" c +TestableTest Lib/test/test_unittest/test_case.py /^ class TestableTest(unittest.TestCase):$/;" c function:.testDeepcopy +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_addClassCleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_debug_executes_classCleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_debug_executes_classCleanUp_when_teardown_exception +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_doClassCleanups_with_errors_addClassCleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_enterClassContext +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_enterClassContext_arg_errors +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_run_class_cleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_run_class_cleanUp_without_tearDownClass +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_run_with_errors_addClassCleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_with_errors_addCleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_with_errors_in_addClassCleanup_and_setUps +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestClassCleanup.test_with_errors_in_tearDownClass +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestCleanUp.testCleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestCleanUp.testCleanUpWithErrors +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestCleanUp.testCleanupInRun +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestCleanUp.testTestCaseDebugExecutesCleanups +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestCleanUp.test_enterContext +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestCleanUp.test_enterContext_arg_errors +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_addClassCleanup_arg_errors +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_addCleanup_arg_errors +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_debug_module_cleanUp_when_teardown_exception +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_debug_module_executes_cleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_enterModuleContext_arg_errors +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_module_cleanUp_with_multiple_classes +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_run_module_cleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_run_module_cleanUp_when_teardown_exception +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_run_module_cleanUp_without_teardown +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_run_multiple_module_cleanUp +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_with_errors_in_addClassCleanup +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_with_errors_in_addCleanup +TestableTest Lib/test/test_unittest/test_runner.py /^ class TestableTest(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_with_errors_in_addModuleCleanup_and_setUps +TestableTest2 Lib/test/test_unittest/test_runner.py /^ class TestableTest2(unittest.TestCase):$/;" c function:TestModuleCleanUp.test_run_multiple_module_cleanUp +TestableTestFalse Lib/test/test_unittest/test_assertions.py /^ class TestableTestFalse(unittest.TestCase):$/;" c function:TestLongMessage.setUp +TestableTestProgram Lib/test/test_unittest/test_discovery.py /^class TestableTestProgram(unittest.TestProgram):$/;" c +TestableTestTrue Lib/test/test_unittest/test_assertions.py /^ class TestableTestTrue(unittest.TestCase):$/;" c function:TestLongMessage.setUp +Tester Lib/test/test_importlib/source/test_file_loader.py /^ class Tester(self.abc.FileLoader):$/;" c function:SimpleTest.test_get_filename_API +Tester Lib/test/test_importlib/source/test_file_loader.py /^ class Tester(self.abc.FileLoader):$/;" c function:SimpleTest.test_load_module_API +Tester Lib/test/test_scope.py /^ class Tester:$/;" c function:ScopeTests.testCellLeak +Tester Lib/tkinter/dnd.py /^class Tester:$/;" c +TestfrFRDelocalizeTest Lib/test/test_locale.py /^class TestfrFRDelocalizeTest(FrFRCookedTest, BaseDelocalizeTest):$/;" c +TestfrFRLocalize Lib/test/test_locale.py /^class TestfrFRLocalize(FrFRCookedTest, BaseLocalizeTest):$/;" c +TestingImporter Lib/test/test_importlib/test_lazy.py /^class TestingImporter(abc.MetaPathFinder, abc.Loader):$/;" c +Tests Lib/test/test_future4.py /^class Tests(unittest.TestCase):$/;" c +TestsWithMultipleOpens Lib/test/test_zipfile/test_core.py /^class TestsWithMultipleOpens(unittest.TestCase):$/;" c +TestsWithSourceFile Lib/test/test_zipfile64.py /^class TestsWithSourceFile(unittest.TestCase):$/;" c +Text Lib/idlelib/idle_test/mock_tk.py /^class Text:$/;" c +Text Lib/test/test_xml_etree.py /^ class Text:$/;" c function:BugsTest.test_lost_tail +Text Lib/test/test_xml_etree.py /^ class Text:$/;" c function:BugsTest.test_lost_text +Text Lib/tkinter/__init__.py /^class Text(Widget, XView, YView):$/;" c +Text Lib/typing.py /^Text = str$/;" v +Text Lib/xml/dom/minidom.py /^class Text(CharacterData):$/;" c +TextAccumulator Tools/clinic/clinic.py /^class TextAccumulator(NamedTuple):$/;" c +TextCalendar Lib/calendar.py /^class TextCalendar(Calendar):$/;" c +TextDoc Lib/pydoc.py /^class TextDoc(Doc):$/;" c +TextFactoryTests Lib/test/test_sqlite3/test_factory.py /^class TextFactoryTests(unittest.TestCase):$/;" c +TextFactoryTestsWithEmbeddedZeroBytes Lib/test/test_sqlite3/test_factory.py /^class TextFactoryTestsWithEmbeddedZeroBytes(unittest.TestCase):$/;" c +TextIO Lib/typing.py /^ TextIO = TextIO$/;" v class:io +TextIO Lib/typing.py /^class TextIO(IO[str]):$/;" c +TextIOBase Lib/_pyio.py /^class TextIOBase(IOBase):$/;" c +TextIOBase Lib/io.py /^class TextIOBase(_io._TextIOBase, IOBase):$/;" c +TextIOTestMixin Lib/test/test_memoryio.py /^class TextIOTestMixin:$/;" c +TextIOWrapper Lib/_pyio.py /^class TextIOWrapper(TextIOBase):$/;" c +TextIOWrapperTest Lib/test/test_io.py /^class TextIOWrapperTest(unittest.TestCase):$/;" c +TextInfo Tools/c-analyzer/c_parser/parser/_info.py /^class TextInfo:$/;" c +TextRepr Lib/pydoc.py /^class TextRepr(Repr):$/;" c +TextStyle Lib/msilib/schema.py /^TextStyle = Table('TextStyle')$/;" v +TextTest Lib/idlelib/idle_test/test_text.py /^class TextTest:$/;" c +TextTest Lib/test/test_tkinter/test_text.py /^class TextTest(AbstractTkTest, unittest.TestCase):$/;" c +TextTest Lib/test/test_tkinter/test_widgets.py /^class TextTest(AbstractWidgetTest, unittest.TestCase):$/;" c +TextTestResult Lib/unittest/runner.py /^class TextTestResult(result.TestResult):$/;" c +TextTestRunner Lib/unittest/runner.py /^class TextTestRunner(object):$/;" c +TextWrapper Lib/idlelib/idle_test/test_format.py /^class TextWrapper:$/;" c +TextWrapper Lib/idlelib/idle_test/test_history.py /^class TextWrapper:$/;" c +TextWrapper Lib/textwrap.py /^class TextWrapper:$/;" c +Textbox Lib/curses/textpad.py /^class Textbox:$/;" c +TextboxTest Lib/test/test_curses.py /^class TextboxTest(unittest.TestCase):$/;" c +TheirEnum Lib/test/test_enum.py /^ class TheirEnum(MyEnum):$/;" c function:OldTestFlag.test_init_subclass +Theory Lib/test/test_enum.py /^ Theory = Enum('Theory', 'rule law supposition', qualname='spanish_inquisition')$/;" v +Theory Lib/test/test_enum.py /^ Theory = exc$/;" v +Thing Lib/test/test_descr.py /^ class Thing:$/;" c function:.test_specialized_method_calls_check_types +Thing Lib/test/test_email/test_contentmanager.py /^ class Thing(BaseThing):$/;" c class:TestContentManager +Thing Lib/test/test_inspect.py /^ class Thing(metaclass=Meta):$/;" c function:TestGetattrStatic.test_metaclass_dict_as_property +Thing Lib/test/test_inspect.py /^ class Thing(metaclass=Meta):$/;" c function:TestGetattrStatic.test_metaclass_with_metaclass_with_dict_as_property +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_basic +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_classAttribute +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_classVirtualAttribute +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_descriptor_raises_AttributeError +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_inherited +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_inherited_classattribute +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_inherited_slots +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_instance_attr +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_property +Thing Lib/test/test_inspect.py /^ class Thing(object):$/;" c function:TestGetattrStatic.test_slots +Thing Lib/test/test_inspect.py /^ class Thing(object, metaclass=meta):$/;" c function:TestGetattrStatic.test_metaclass +Thing Lib/test/test_inspect.py /^ class Thing(object, metaclass=meta):$/;" c function:TestGetattrStatic.test_metaclass_with_descriptor +Thing Lib/test/test_unittest/testmock/testpatch.py /^ class Thing(object):$/;" c function:PatchTest.test_patch_multiple_new_callable +ThirdFailedStrEnum Lib/test/test_enum.py /^ class ThirdFailedStrEnum(CustomStrEnum):$/;" c class:TestSpecial.test_custom_strenum.ThirdFailedStrEnum +ThirdFailedStrEnum Lib/test/test_enum.py /^ class ThirdFailedStrEnum(StrEnum):$/;" c class:TestSpecial.test_strenum.GoodbyeEnum +ThirdFailedStrEnum Lib/test/test_enum.py /^ class ThirdFailedStrEnum(CustomStrEnum):$/;" c function:TestSpecial.test_custom_strenum +ThisWorksNow Lib/test/test_inspect.py /^ class ThisWorksNow:$/;" c function:TestSignatureObject.test_signature_on_builtins.p +ThoroughTestCase Lib/test/test_pulldom.py /^class ThoroughTestCase(unittest.TestCase):$/;" c +Thread Lib/threading.py /^class Thread:$/;" c +ThreadError Lib/threading.py /^ThreadError = _thread.error$/;" v +ThreadError Modules/_threadmodule.c 18;" d file: +ThreadExit Lib/test/test_threading.py /^ class ThreadExit(threading.Thread):$/;" c function:ExceptHookTests.test_system_exit +ThreadInfoType Python/thread.c /^static PyTypeObject ThreadInfoType;$/;" v file: +ThreadJoinOnShutdown Lib/test/test_threading.py /^class ThreadJoinOnShutdown(BaseTestCase):$/;" c +ThreadLocalTest Lib/test/test_threading_local.py /^class ThreadLocalTest(unittest.TestCase, BaseLocalTest):$/;" c +ThreadNewAbortError Lib/test/audit-tests.py /^ class ThreadNewAbortError(Exception):$/;" c function:test_threading_abort +ThreadPool Lib/multiprocessing/pool.py /^class ThreadPool(Pool):$/;" c +ThreadPoolExecutor Lib/concurrent/futures/thread.py /^class ThreadPoolExecutor(_base.Executor):$/;" c +ThreadPoolExecutor Lib/test/test_inspect.py /^ ThreadPoolExecutor = None$/;" v +ThreadPoolExecutorTest Lib/test/test_concurrent_futures/test_thread_pool.py /^class ThreadPoolExecutorTest(ThreadPoolMixin, ExecutorTest, BaseTestCase):$/;" c +ThreadPoolMixin Lib/test/test_concurrent_futures/util.py /^class ThreadPoolMixin(ExecutorMixin):$/;" c +ThreadPoolShutdownTest Lib/test/test_concurrent_futures/test_shutdown.py /^class ThreadPoolShutdownTest(ThreadPoolMixin, ExecutorShutdownTest, BaseTestCase):$/;" c +ThreadPoolWaitTests Lib/test/test_concurrent_futures/test_wait.py /^class ThreadPoolWaitTests(ThreadPoolMixin, WaitTests, BaseTestCase):$/;" c +ThreadRunFail Lib/test/test_threading.py /^class ThreadRunFail(threading.Thread):$/;" c +ThreadRunningTests Lib/test/test_thread.py /^class ThreadRunningTests(BasicThreadTest):$/;" c +ThreadSafeCleanupTestCase Lib/test/test_socket.py /^class ThreadSafeCleanupTestCase:$/;" c +ThreadSignals Lib/test/test_threadsignals.py /^class ThreadSignals(unittest.TestCase):$/;" c +ThreadSpecificData Modules/_tkinter.c /^typedef PyThreadState *ThreadSpecificData;$/;" t file: +ThreadTest Lib/test/test_code.py /^ class ThreadTest(threading.Thread):$/;" c function:CodeLocationTest.CoExtra.test_free_different_thread +ThreadTests Lib/test/test_sqlite3/test_dbapi.py /^class ThreadTests(unittest.TestCase):$/;" c +ThreadTests Lib/test/test_threading.py /^class ThreadTests(BaseTestCase):$/;" c +ThreadableTest Lib/test/test_socket.py /^class ThreadableTest:$/;" c +ThreadedCANSocketTest Lib/test/test_socket.py /^class ThreadedCANSocketTest(SocketCANTest, ThreadableTest):$/;" c +ThreadedChildWatcher Lib/asyncio/unix_events.py /^class ThreadedChildWatcher(AbstractChildWatcher):$/;" c +ThreadedEchoServer Lib/test/test_ssl.py /^class ThreadedEchoServer(threading.Thread):$/;" c +ThreadedImportTests Lib/test/test_importlib/test_threaded_import.py /^class ThreadedImportTests(unittest.TestCase):$/;" c +ThreadedNetworkedTests Lib/test/test_imaplib.py /^class ThreadedNetworkedTests(unittest.TestCase):$/;" c +ThreadedNetworkedTestsSSL Lib/test/test_imaplib.py /^class ThreadedNetworkedTestsSSL(ThreadedNetworkedTests):$/;" c +ThreadedRDSSocketTest Lib/test/test_socket.py /^class ThreadedRDSSocketTest(SocketRDSTest, ThreadableTest):$/;" c +ThreadedSocketTestMixin Lib/test/test_socket.py /^ ThreadableTest):$/;" c +ThreadedTCPSocketTest Lib/test/test_socket.py /^class ThreadedTCPSocketTest(SocketTCPTest, ThreadableTest):$/;" c +ThreadedTempFileTest Lib/test/test_threadedtempfile.py /^class ThreadedTempFileTest(unittest.TestCase):$/;" c +ThreadedTests Lib/test/test_ssl.py /^class ThreadedTests(unittest.TestCase):$/;" c +ThreadedUDPLITESocketTest Lib/test/test_socket.py /^class ThreadedUDPLITESocketTest(SocketUDPLITETest, ThreadableTest):$/;" c +ThreadedUDPSocketTest Lib/test/test_socket.py /^class ThreadedUDPSocketTest(SocketUDPTest, ThreadableTest):$/;" c +ThreadedVSOCKSocketStreamTest Lib/test/test_socket.py /^class ThreadedVSOCKSocketStreamTest(unittest.TestCase, ThreadableTest):$/;" c +ThreadingErrorTestServer Lib/test/test_socketserver.py /^ BaseErrorTestServer):$/;" c +ThreadingExceptionTests Lib/test/test_threading.py /^class ThreadingExceptionTests(BaseTestCase):$/;" c +ThreadingHTTPServer Lib/http/server.py /^class ThreadingHTTPServer(socketserver.ThreadingMixIn, HTTPServer):$/;" c +ThreadingMixIn Lib/socketserver.py /^class ThreadingMixIn:$/;" c +ThreadingTCPServer Lib/socketserver.py /^class ThreadingTCPServer(ThreadingMixIn, TCPServer): pass$/;" c +ThreadingTest Lib/test/test_decimal.py /^class ThreadingTest:$/;" c +ThreadingUDPServer Lib/socketserver.py /^class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass$/;" c +ThreadingUnixDatagramServer Lib/socketserver.py /^ class ThreadingUnixDatagramServer(ThreadingMixIn, UnixDatagramServer): pass$/;" c class:ThreadingTCPServer +ThreadingUnixStreamServer Lib/socketserver.py /^ class ThreadingUnixStreamServer(ThreadingMixIn, UnixStreamServer): pass$/;" c class:ThreadingTCPServer +ThreadsMixin Lib/test/_test_multiprocessing.py /^class ThreadsMixin(BaseMixin):$/;" c +ThreePart Lib/test/test_enum.py /^ class ThreePart(Enum):$/;" c function:TestSpecial.test_programmatic_function_is_value_call +ThrowRecorder Lib/test/test_monitoring.py /^class ThrowRecorder(ExceptionRecorder):$/;" c +Time Lib/sqlite3/dbapi2.py /^Time = datetime.time$/;" v +Time2Internaldate Lib/imaplib.py /^def Time2Internaldate(date_time):$/;" f +TimeDeltaSubclass Lib/test/datetimetester.py /^ class TimeDeltaSubclass(timedelta):$/;" c function:CapiTest.test_PyDateTime_DELTA_GET +TimeDeltaSubclass Lib/test/datetimetester.py /^ class TimeDeltaSubclass(timedelta):$/;" c function:CapiTest.test_check_delta +TimeEINTRTest Lib/test/_test_eintr.py /^class TimeEINTRTest(EINTRBaseTest):$/;" c +TimeFromTicks Lib/sqlite3/dbapi2.py /^def TimeFromTicks(ticks):$/;" f +TimeRE Lib/_strptime.py /^class TimeRE(dict):$/;" c +TimeRETests Lib/test/test_strptime.py /^class TimeRETests(unittest.TestCase):$/;" c +TimeSubclass Lib/test/datetimetester.py /^ class TimeSubclass(self.theclass):$/;" c function:TestTime.test_subclass_replace +TimeSubclass Lib/test/datetimetester.py /^ class TimeSubclass(self.theclass):$/;" c function:TestTimeTZ.test_fromisoformat_subclass +TimeSubclass Lib/test/datetimetester.py /^ class TimeSubclass(time):$/;" c function:CapiTest.test_PyDateTime_TIME_GET +TimeSubclass Lib/test/datetimetester.py /^ class TimeSubclass(time):$/;" c function:CapiTest.test_check_time +TimeTestCase Lib/test/test_time.py /^class TimeTestCase(unittest.TestCase):$/;" c +TimeType Include/datetime.h /^ PyTypeObject *TimeType;$/;" m struct:__anon270 +TimeZone_FromTimeZone Include/datetime.h /^ PyObject *(*TimeZone_FromTimeZone)(PyObject *offset, PyObject *name);$/;" m struct:__anon270 +TimeZone_UTC Include/datetime.h /^ PyObject *TimeZone_UTC;$/;" m struct:__anon270 +Time_FromTime Include/datetime.h /^ PyObject *(*Time_FromTime)(int, int, int, int, PyObject*, PyTypeObject*);$/;" m struct:__anon270 +Time_FromTimeAndFold Include/datetime.h /^ PyObject *(*Time_FromTimeAndFold)(int, int, int, int, PyObject*, int, PyTypeObject*);$/;" m struct:__anon270 +TimedLoop Tools/ccbench/ccbench.py /^class TimedLoop:$/;" c +TimedRotatingFileHandler Lib/logging/handlers.py /^class TimedRotatingFileHandler(BaseRotatingHandler):$/;" c +TimedRotatingFileHandlerTest Lib/test/test_logging.py /^class TimedRotatingFileHandlerTest(BaseFileTest):$/;" c +TimegmTestCase Lib/test/test_calendar.py /^class TimegmTestCase(unittest.TestCase):$/;" c +Timeout Lib/asyncio/timeouts.py /^class Timeout:$/;" c +TimeoutError Lib/asyncio/exceptions.py /^TimeoutError = TimeoutError # make local alias for the standard exception$/;" v +TimeoutError Lib/concurrent/futures/_base.py /^TimeoutError = TimeoutError # make local alias for the standard exception$/;" v +TimeoutError Lib/multiprocessing/context.py /^ TimeoutError = TimeoutError$/;" v class:BaseContext +TimeoutError Lib/multiprocessing/context.py /^class TimeoutError(ProcessError):$/;" c +TimeoutExpired Lib/subprocess.py /^class TimeoutExpired(SubprocessError):$/;" c +TimeoutHandler Lib/test/test_imaplib.py /^ class TimeoutHandler(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_imaplib_timeout_functionality_test +TimeoutTest Lib/test/test_httplib.py /^class TimeoutTest(TestCase):$/;" c +TimeoutTest Lib/test/test_urllib2net.py /^class TimeoutTest(unittest.TestCase):$/;" c +TimeoutTestCase Lib/test/test_timeout.py /^class TimeoutTestCase(unittest.TestCase):$/;" c +TimeoutTests Lib/test/test_asyncio/test_timeouts.py /^class TimeoutTests(unittest.IsolatedAsyncioTestCase):$/;" c +Timer Lib/test/test_sched.py /^class Timer:$/;" c +Timer Lib/threading.py /^class Timer(Thread):$/;" c +Timer Lib/timeit.py /^class Timer:$/;" c +TimerHandle Lib/asyncio/events.py /^class TimerHandle(Handle):$/;" c +TimerHandler Modules/_tkinter.c /^TimerHandler(ClientData clientData)$/;" f file: +TimerTests Lib/test/test_asyncio/test_events.py /^class TimerTests(unittest.TestCase):$/;" c +TimerTests Lib/test/test_threading.py /^class TimerTests(BaseTestCase):$/;" c +TimesResultType Modules/posixmodule.c /^ PyObject *TimesResultType;$/;" m struct:__anon477 file: +TimesTests Lib/test/test_os.py /^class TimesTests(unittest.TestCase):$/;" c +Timestamp Lib/sqlite3/dbapi2.py /^Timestamp = datetime.datetime$/;" v +TimestampFromTicks Lib/sqlite3/dbapi2.py /^def TimestampFromTicks(ticks):$/;" f +TimingWrapper Lib/test/_test_multiprocessing.py /^class TimingWrapper(object):$/;" c +Tiny0 Python/dtoa.c 258;" d file: +Tiny1 Python/dtoa.c 259;" d file: +Tit Lib/test/inspect_fodder.py /^Tit = MalodorousPervert$/;" v +TitledHelpFormatter Lib/optparse.py /^class TitledHelpFormatter (HelpFormatter):$/;" c +TixSubWidget Lib/tkinter/tix.py /^class TixSubWidget(TixWidget):$/;" c +TixWidget Lib/tkinter/tix.py /^class TixWidget(tkinter.Widget):$/;" c +Tk Lib/tkinter/__init__.py /^class Tk(Misc, Wm):$/;" c +Tk Lib/tkinter/tix.py /^class Tk(tkinter.Tk, tixCommand):$/;" c +TkLoadTest Lib/test/test_tkinter/test_loadtk.py /^class TkLoadTest(unittest.TestCase):$/;" c +TkTestRunner Tools/unittestgui/unittestgui.py /^class TkTestRunner(BaseGUITestRunner):$/;" c +TkTextTest Lib/idlelib/idle_test/test_text.py /^class TkTextTest(TextTest, unittest.TestCase):$/;" c +TkVersion Lib/tkinter/__init__.py /^TkVersion = float(_tkinter.TK_VERSION)$/;" v +TkappObject Modules/_tkinter.c /^} TkappObject;$/;" t typeref:struct:__anon334 file: +Tkapp_Call Modules/_tkinter.c /^Tkapp_Call(PyObject *selfptr, PyObject *args)$/;" f file: +Tkapp_CallArgs Modules/_tkinter.c /^Tkapp_CallArgs(PyObject *args, Tcl_Obj** objStore, int *pobjc)$/;" f file: +Tkapp_CallDeallocArgs Modules/_tkinter.c /^Tkapp_CallDeallocArgs(Tcl_Obj** objv, Tcl_Obj** objStore, int objc)$/;" f +Tkapp_CallEvent Modules/_tkinter.c /^typedef struct Tkapp_CallEvent {$/;" s file: +Tkapp_CallEvent Modules/_tkinter.c /^} Tkapp_CallEvent;$/;" t typeref:struct:Tkapp_CallEvent file: +Tkapp_CallProc Modules/_tkinter.c /^Tkapp_CallProc(Tkapp_CallEvent *e, int flags)$/;" f file: +Tkapp_CommandProc Modules/_tkinter.c /^Tkapp_CommandProc(CommandEvent *ev, int flags)$/;" f file: +Tkapp_Dealloc Modules/_tkinter.c /^Tkapp_Dealloc(PyObject *self)$/;" f file: +Tkapp_GetVar Modules/_tkinter.c /^Tkapp_GetVar(PyObject *self, PyObject *args)$/;" f file: +Tkapp_GlobalGetVar Modules/_tkinter.c /^Tkapp_GlobalGetVar(PyObject *self, PyObject *args)$/;" f file: +Tkapp_GlobalSetVar Modules/_tkinter.c /^Tkapp_GlobalSetVar(PyObject *self, PyObject *args)$/;" f file: +Tkapp_GlobalUnsetVar Modules/_tkinter.c /^Tkapp_GlobalUnsetVar(PyObject *self, PyObject *args)$/;" f file: +Tkapp_Interp Modules/_tkinter.c 326;" d file: +Tkapp_New Modules/_tkinter.c /^Tkapp_New(const char *screenName, const char *className,$/;" f file: +Tkapp_ObjectResult Modules/_tkinter.c /^Tkapp_ObjectResult(TkappObject *self)$/;" f file: +Tkapp_SetVar Modules/_tkinter.c /^Tkapp_SetVar(PyObject *self, PyObject *args)$/;" f file: +Tkapp_ThreadSend Modules/_tkinter.c /^Tkapp_ThreadSend(TkappObject *self, Tcl_Event *ev,$/;" f file: +Tkapp_Type Modules/_tkinter.c /^static PyObject *Tkapp_Type;$/;" v file: +Tkapp_Type_slots Modules/_tkinter.c /^static PyType_Slot Tkapp_Type_slots[] = {$/;" v file: +Tkapp_Type_spec Modules/_tkinter.c /^static PyType_Spec Tkapp_Type_spec = {$/;" v file: +Tkapp_UnicodeResult Modules/_tkinter.c /^Tkapp_UnicodeResult(TkappObject *self)$/;" f file: +Tkapp_UnsetVar Modules/_tkinter.c /^Tkapp_UnsetVar(PyObject *self, PyObject *args)$/;" f file: +Tkapp_WantObjects Modules/_tkinter.c /^Tkapp_WantObjects(PyObject *self, PyObject *args)$/;" f file: +Tkapp_methods Modules/_tkinter.c /^static PyMethodDef Tkapp_methods[] =$/;" v file: +TkinterTest Lib/test/test_tcl.py /^class TkinterTest(unittest.TestCase):$/;" c +Tkinter_Error Modules/_tkinter.c /^Tkinter_Error(TkappObject *self)$/;" f file: +Tkinter_TclError Modules/_tkinter.c /^static PyObject *Tkinter_TclError;$/;" v file: +Tkinter_busywaitinterval Modules/_tkinter.c /^static int Tkinter_busywaitinterval = 20;$/;" v file: +TkttObject Modules/_tkinter.c /^} TkttObject;$/;" t typeref:struct:__anon337 file: +Tktt_Dealloc Modules/_tkinter.c /^Tktt_Dealloc(PyObject *self)$/;" f file: +Tktt_New Modules/_tkinter.c /^Tktt_New(PyObject *func)$/;" f file: +Tktt_Repr Modules/_tkinter.c /^Tktt_Repr(PyObject *self)$/;" f file: +Tktt_Type Modules/_tkinter.c /^static PyObject *Tktt_Type;$/;" v file: +Tktt_Type_slots Modules/_tkinter.c /^static PyType_Slot Tktt_Type_slots[] = {$/;" v file: +Tktt_Type_spec Modules/_tkinter.c /^static PyType_Spec Tktt_Type_spec = {$/;" v file: +Tktt_methods Modules/_tkinter.c /^static PyMethodDef Tktt_methods[] =$/;" v file: +ToASCII Lib/encodings/idna.py /^def ToASCII(label):$/;" f +ToThreadTests Lib/test/test_asyncio/test_threads.py /^class ToThreadTests(unittest.IsolatedAsyncioTestCase):$/;" c +ToUnicode Lib/encodings/idna.py /^def ToUnicode(label):$/;" f +ToggleLevelTest Lib/idlelib/idle_test/test_config_key.py /^class ToggleLevelTest(unittest.TestCase):$/;" c +Token Lib/email/_header_value_parser.py /^class Token(TokenList):$/;" c +Token Lib/lib2to3/pgen2/tokenize.py /^Token = Ignore + PlainToken$/;" v +Token Lib/multiprocessing/managers.py /^class Token(object):$/;" c +Token Lib/tokenize.py /^Token = Ignore + PlainToken$/;" v +Token Parser/asdl.py /^Token = namedtuple('Token', 'kind value lineno')$/;" v +Token Parser/pegen.h /^} Token;$/;" t typeref:struct:__anon653 +Token Tools/cases_generator/lexer.py /^class Token:$/;" c +Token Tools/cases_generator/plexer.py /^Token = lx.Token$/;" v +TokenAndCondition Tools/clinic/cpp.py /^TokenAndCondition = tuple[str, str]$/;" v +TokenDefinitions Tools/peg_generator/pegen/build.py /^TokenDefinitions = Tuple[Dict[int, str], Dict[str, int], Set[str]]$/;" v +TokenEater Tools/i18n/pygettext.py /^class TokenEater:$/;" c +TokenError Lib/lib2to3/pgen2/tokenize.py /^class TokenError(Exception): pass$/;" c +TokenError Lib/tokenize.py /^class TokenError(Exception): pass$/;" c +TokenInfo Lib/tokenize.py /^class TokenInfo(collections.namedtuple('TokenInfo', 'type string start end line')):$/;" c +TokenKind Parser/asdl.py /^class TokenKind:$/;" c +TokenList Lib/email/_header_value_parser.py /^class TokenList(list):$/;" c +TokenStack Tools/clinic/cpp.py /^TokenStack = list[TokenAndCondition]$/;" v +TokenTests Lib/test/test_grammar.py /^class TokenTests(unittest.TestCase):$/;" c +TokenTests Lib/test/test_lib2to3/data/py2_test_grammar.py /^class TokenTests(unittest.TestCase):$/;" c +TokenTests Lib/test/test_lib2to3/data/py3_test_grammar.py /^class TokenTests(unittest.TestCase):$/;" c +Token_Tests Lib/test/test_secrets.py /^class Token_Tests(unittest.TestCase):$/;" c +TokenizeTest Lib/test/test_tokenize.py /^class TokenizeTest(TestCase):$/;" c +Tokenizer Lib/re/_parser.py /^class Tokenizer:$/;" c +Tokenizer Tools/peg_generator/pegen/tokenizer.py /^class Tokenizer:$/;" c +TokenizerIter Python/Python-tokenize.c /^ PyTypeObject *TokenizerIter;$/;" m struct:__anon697 file: +TokenizerRegrTest Lib/test/test_coroutines.py /^class TokenizerRegrTest(unittest.TestCase):$/;" c +TooLongHandler Lib/test/test_imaplib.py /^ class TooLongHandler(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_linetoolong +TooLongHandler Lib/test/test_imaplib.py /^ class TooLongHandler(SimpleIMAPHandler):$/;" c function:ThreadedNetworkedTests.test_linetoolong +TooLongLineTests Lib/test/test_smtplib.py /^class TooLongLineTests(unittest.TestCase):$/;" c +ToolTipBaseTest Lib/idlelib/idle_test/test_tooltip.py /^class ToolTipBaseTest(unittest.TestCase):$/;" c +TooltipBase Lib/idlelib/tooltip.py /^class TooltipBase:$/;" c +Toplevel Lib/tkinter/__init__.py /^class Toplevel(BaseWidget, Wm):$/;" c +ToplevelTest Lib/test/test_tkinter/test_widgets.py /^class ToplevelTest(AbstractToplevelTest, unittest.TestCase):$/;" c +TopologicalSorter Lib/graphlib.py /^class TopologicalSorter:$/;" c +TortureBase Lib/test/test_email/torture_test.py /^class TortureBase(TestEmailBase):$/;" c +TotalMovie Lib/test/test_typing.py /^class TotalMovie(TypedDict):$/;" c +Tower Lib/turtledemo/minimal_hanoi.py /^class Tower(list):$/;" c +Trace Lib/trace.py /^class Trace:$/;" c +Trace Lib/tracemalloc.py /^class Trace:$/;" c +TraceBackend Lib/test/test_dtrace.py /^class TraceBackend:$/;" c +TraceCallbackTests Lib/test/test_sqlite3/test_hooks.py /^class TraceCallbackTests(unittest.TestCase):$/;" c +TraceOpcodesTestCase Lib/test/test_sys_settrace.py /^class TraceOpcodesTestCase(TraceTestCase):$/;" c +TraceTestCase Lib/test/test_sys_settrace.py /^class TraceTestCase(unittest.TestCase):$/;" c +TraceTests Lib/test/test_dtrace.py /^class TraceTests:$/;" c +Traceback Lib/inspect.py /^class Traceback(_Traceback):$/;" c +Traceback Lib/tracemalloc.py /^class Traceback(Sequence):$/;" c +TracebackCases Lib/test/test_traceback.py /^class TracebackCases(unittest.TestCase):$/;" c +TracebackErrorLocationCaretTestBase Lib/test/test_traceback.py /^class TracebackErrorLocationCaretTestBase:$/;" c +TracebackException Lib/test/test_unittest/test_result.py /^ class TracebackException:$/;" c class:MockTraceback +TracebackException Lib/traceback.py /^class TracebackException:$/;" c +TracebackFormatTests Lib/test/test_traceback.py /^class TracebackFormatTests(unittest.TestCase):$/;" c +TracebackType Lib/types.py /^ TracebackType = type(exc.__traceback__)$/;" v +TracedClass Lib/test/test_trace.py /^class TracedClass(object):$/;" c +Tracer Lib/idlelib/percolator.py /^ class Tracer(Delegator):$/;" c function:_percolator +Tracer Lib/test/test_bdb.py /^class Tracer(Bdb):$/;" c +Tracer Lib/test/test_set.py /^ class Tracer:$/;" c function:TestJointOps.test_deepcopy +Tracer Lib/test/test_sys_settrace.py /^class Tracer:$/;" c +TracerRun Lib/test/test_bdb.py /^class TracerRun():$/;" c +TracingDict Lib/test/test_functools.py /^ class TracingDict(UserDict):$/;" c function:TestSingleDispatch.test_cache_invalidation +TransactionTests Lib/test/test_sqlite3/test_transactions.py /^class TransactionTests(unittest.TestCase):$/;" c +TransactionalDDL Lib/test/test_sqlite3/test_transactions.py /^class TransactionalDDL(unittest.TestCase):$/;" c +TransferEncodingTest Lib/test/test_httplib.py /^class TransferEncodingTest(TestCase):$/;" c +TransformChildrenTest Lib/idlelib/idle_test/test_browser.py /^class TransformChildrenTest(unittest.TestCase):$/;" c +TransformCodecTest Lib/test/test_codecs.py /^class TransformCodecTest(unittest.TestCase):$/;" c +TransientResource Lib/test/test_urllib2net.py /^class TransientResource(object):$/;" c +TransitionRuleType Modules/_zoneinfo.c /^struct TransitionRuleType {$/;" s file: +TransitionRuleType Modules/_zoneinfo.c /^typedef struct TransitionRuleType TransitionRuleType;$/;" t typeref:struct:TransitionRuleType file: +TranslateTestCase Lib/test/test_fnmatch.py /^class TranslateTestCase(unittest.TestCase):$/;" c +Transport Lib/asyncio/transports.py /^class Transport(ReadTransport, WriteTransport):$/;" c +Transport Lib/test/test_xmlrpc.py /^ class Transport(xmlrpclib.Transport):$/;" c class:GzipServerTestCase +Transport Lib/xmlrpc/client.py /^class Transport:$/;" c +TransportSocket Lib/asyncio/trsock.py /^class TransportSocket:$/;" c +TransportTests Lib/test/test_asyncio/test_transports.py /^class TransportTests(unittest.TestCase):$/;" c +Trap Lib/test/test_unittest/test_loader.py /^ class Trap:$/;" c function:Test_TestLoader.test_getTestCaseNames__testNamePatterns__attribute_access_regression +TrapInt Lib/test/test_index.py /^class TrapInt(int):$/;" c +Traversable Lib/importlib/resources/abc.py /^class Traversable(Protocol):$/;" c +TraversableReader Lib/importlib/resources/simple.py /^class TraversableReader(TraversableResources, SimpleReader):$/;" c +TraversableResources Lib/importlib/resources/abc.py /^class TraversableResources(ResourceReader):$/;" c +TraversableResourcesLoader Lib/importlib/resources/_adapters.py /^class TraversableResourcesLoader:$/;" c +TraversalError Lib/importlib/resources/abc.py /^class TraversalError(Exception):$/;" c +Tree Lib/tkinter/tix.py /^class Tree(TixWidget):$/;" c +TreeBuilder Lib/xml/etree/ElementTree.py /^class TreeBuilder:$/;" c +TreeBuilderObject Modules/_elementtree.c /^} TreeBuilderObject;$/;" t typeref:struct:__anon385 file: +TreeBuilderSubclass Lib/test/test_xml_etree.py /^ class TreeBuilderSubclass(ET.TreeBuilder):$/;" c function:TreeBuilderTest.test_late_tail +TreeBuilderSubclass Lib/test/test_xml_etree.py /^ class TreeBuilderSubclass(ET.TreeBuilder):$/;" c function:TreeBuilderTest.test_late_tail_mix_pi_comments +TreeBuilderTest Lib/test/test_xml_etree.py /^class TreeBuilderTest(unittest.TestCase):$/;" c +TreeBuilder_CheckExact Modules/_elementtree.c 2364;" d file: +TreeBuilder_Type Modules/_elementtree.c /^ PyTypeObject *TreeBuilder_Type;$/;" m struct:__anon381 file: +TreeItem Lib/idlelib/tree.py /^class TreeItem:$/;" c +TreeMaker Lib/test/test_importlib/_path.py /^class TreeMaker(Protocol):$/;" c +TreeNode Lib/idlelib/tree.py /^class TreeNode:$/;" c +TreeTest Lib/idlelib/idle_test/test_tree.py /^class TreeTest(unittest.TestCase):$/;" c +Treeview Lib/tkinter/ttk.py /^class Treeview(Widget, tkinter.XView, tkinter.YView):$/;" c +TreeviewTest Lib/test/test_ttk/test_widgets.py /^class TreeviewTest(AbstractWidgetTest, unittest.TestCase):$/;" c +Trial Lib/test/test_math.py /^ def Trial(dotfunc, c, n):$/;" f function:MathTests.test_sumprod_extended_precision_accuracy +Triple Lib/lib2to3/pgen2/tokenize.py /^Triple = group(_litprefix + "'''", _litprefix + '"""')$/;" v +Triple Lib/test/test_enum.py /^ class Triple(Enum):$/;" c function:MiscTestCase.test_doc_3 +Triple Lib/tokenize.py /^Triple = group(StringPrefix + "'''", StringPrefix + '"""')$/;" v +TripleLength Modules/mathmodule.c /^typedef struct { double hi; double lo; double tiny; } TripleLength;$/;" t typeref:struct:__anon303 file: +Trivial Lib/test/test_urlparse.py /^ class Trivial:$/;" c function:UrlParseTestCase.test_urlencode_sequences +TrivialTests Lib/test/test_urllib2.py /^class TrivialTests(unittest.TestCase):$/;" c +TruncReturnsBadIndex Lib/test/test_int.py /^ class TruncReturnsBadIndex:$/;" c function:IntTestCases.test_int_returns_int_subclass +TruncReturnsBadInt Lib/test/test_int.py /^ class TruncReturnsBadInt(base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +TruncReturnsBadInt Lib/test/test_int.py /^ class TruncReturnsBadInt:$/;" c function:IntTestCases.test_int_returns_int_subclass +TruncReturnsIntSubclass Lib/test/test_int.py /^ class TruncReturnsIntSubclass:$/;" c function:IntTestCases.test_int_returns_int_subclass +TruncReturnsNonIndex Lib/test/test_int.py /^ class TruncReturnsNonIndex(base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +TruncReturnsNonInt Lib/test/test_int.py /^ class TruncReturnsNonInt(base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +TruncReturnsNonIntegral Lib/test/test_int.py /^ class TruncReturnsNonIntegral(base):$/;" c class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc +TruncatedHeaderError Lib/tarfile.py /^class TruncatedHeaderError(HeaderError):$/;" c +TruncatedStringIO Tools/gdb/libpython.py /^class TruncatedStringIO(object):$/;" c +Try Include/internal/pycore_ast.h /^ } Try;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon69 +TryAddRef Modules/_ctypes/callbacks.c /^TryAddRef(StgDictObject *dict, CDataObject *obj)$/;" f file: +TryStar Include/internal/pycore_ast.h /^ } TryStar;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon70 +TryStar_fields Python/Python-ast.c /^static const char * const TryStar_fields[]={$/;" v file: +TryStar_kind Include/internal/pycore_ast.h /^ Raise_kind=17, Try_kind=18, TryStar_kind=19, Assert_kind=20,$/;" e enum:_stmt_kind +TryStar_type Include/internal/pycore_ast_state.h /^ PyObject *TryStar_type;$/;" m struct:ast_state +Try_fields Python/Python-ast.c /^static const char * const Try_fields[]={$/;" v file: +Try_kind Include/internal/pycore_ast.h /^ Raise_kind=17, Try_kind=18, TryStar_kind=19, Assert_kind=20,$/;" e enum:_stmt_kind +Try_type Include/internal/pycore_ast_state.h /^ PyObject *Try_type;$/;" m struct:ast_state +TsP Lib/test/test_typing.py /^ class TsP(Generic[*Ts, P]):$/;" c function:GenericTests.test_repr_3 +TunnelTests Lib/test/test_httplib.py /^class TunnelTests(TestCase):$/;" c +Tuple Include/internal/pycore_ast.h /^ } Tuple;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon103 +Tuple Lib/typing.py /^Tuple = _TupleType(tuple, -1, inst=False, name='Tuple')$/;" v +TupleComp Lib/pstats.py /^class TupleComp:$/;" c +TupleSubclass Lib/test/test_capi/test_getargs.py /^class TupleSubclass(tuple):$/;" c +TupleTest Lib/test/test_bigmem.py /^class TupleTest(unittest.TestCase):$/;" c +TupleTest Lib/test/test_tuple.py /^class TupleTest(seq_tests.CommonTest):$/;" c +TupleTestCase Lib/test/test_index.py /^class TupleTestCase(SeqTestCase, unittest.TestCase):$/;" c +TupleTests Lib/test/test_typing.py /^class TupleTests(BaseTestCase):$/;" c +Tuple_TestCase Lib/test/test_capi/test_getargs.py /^class Tuple_TestCase(unittest.TestCase):$/;" c +Tuple_fields Python/Python-ast.c /^static const char * const Tuple_fields[]={$/;" v file: +Tuple_kind Include/internal/pycore_ast.h /^ Name_kind=24, List_kind=25, Tuple_kind=26, Slice_kind=27};$/;" e enum:_expr_kind +Tuple_type Include/internal/pycore_ast_state.h /^ PyObject *Tuple_type;$/;" m struct:ast_state +Turtle Lib/turtle.py /^class Turtle(RawTurtle):$/;" c +TurtleConfigTest Lib/test/test_turtle.py /^class TurtleConfigTest(unittest.TestCase):$/;" c +TurtleGraphicsError Lib/turtle.py /^class TurtleGraphicsError(Exception):$/;" c +TurtleScreen Lib/turtle.py /^class TurtleScreen(TurtleScreenBase):$/;" c +TurtleScreenBase Lib/turtle.py /^class TurtleScreenBase(object):$/;" c +Two Lib/test/test_typing.py /^ class Two(TypedDict):$/;" c function:TypedDictTests.test_multiple_inheritance +TwoDimensionalList Lib/test/test_named_expressions.py /^ class TwoDimensionalList:$/;" c function:NamedExpressionAssignmentTest.test_named_expression_assignment_18 +TwoNames Lib/test/doctest_aliases.py /^class TwoNames:$/;" c +TwoOutArgs Modules/_ctypes/_ctypes_test.c /^EXPORT(void) TwoOutArgs(int a, int *pi, int b, int *pj)$/;" f +TwoPart Lib/test/test_enum.py /^ class TwoPart(Enum):$/;" c function:TestSpecial.test_programmatic_function_is_value_call +Type Lib/idlelib/idle_test/test_calltip.py /^ class Type(type): # Type() requires 3 type args, returns class.$/;" c function:.test_metaclass_class +Type Lib/typing.py /^Type = _alias(type, 1, inst=False, name='Type')$/;" v +Type Parser/asdl.py /^class Type(AST):$/;" c +Type Tools/build/umarshal.py /^class Type:$/;" c +TypeAlias Include/internal/pycore_ast.h /^ } TypeAlias;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon58 +TypeAlias Lib/typing.py /^def TypeAlias(self, parameters):$/;" f +TypeAliasBlock Include/internal/pycore_symtable.h /^ TypeVarBoundBlock, TypeAliasBlock, TypeParamBlock$/;" e enum:_block_type +TypeAliasConstructorTest Lib/test/test_type_aliases.py /^class TypeAliasConstructorTest(unittest.TestCase):$/;" c +TypeAliasPickleTest Lib/test/test_type_aliases.py /^class TypeAliasPickleTest(unittest.TestCase):$/;" c +TypeAliasTests Lib/test/test_typing.py /^class TypeAliasTests(BaseTestCase):$/;" c +TypeAliasTypeTest Lib/test/test_type_aliases.py /^class TypeAliasTypeTest(unittest.TestCase):$/;" c +TypeAlias_fields Python/Python-ast.c /^static const char * const TypeAlias_fields[]={$/;" v file: +TypeAlias_kind Include/internal/pycore_ast.h /^ TypeAlias_kind=7, AugAssign_kind=8, AnnAssign_kind=9,$/;" e enum:_stmt_kind +TypeAlias_type Include/internal/pycore_ast_state.h /^ PyObject *TypeAlias_type;$/;" m struct:ast_state +TypeAnnotationTests Lib/test/test_type_annotations.py /^class TypeAnnotationTests(unittest.TestCase):$/;" c +TypeCacheTests Lib/test/test_type_cache.py /^class TypeCacheTests(unittest.TestCase):$/;" c +TypeChecksTest Lib/test/test_typechecks.py /^class TypeChecksTest(unittest.TestCase):$/;" c +TypeCommentTests Lib/test/test_type_comments.py /^class TypeCommentTests(unittest.TestCase):$/;" c +TypeDeclaration Tools/c-analyzer/c_parser/info.py /^class TypeDeclaration(Declaration):$/;" c +TypeDef Tools/c-analyzer/c_parser/info.py /^class TypeDef(TypeDeclaration):$/;" c +TypeDefVisitor Parser/asdl_c.py /^class TypeDefVisitor(EmitVisitor):$/;" c +TypeGuard Lib/typing.py /^def TypeGuard(self, parameters):$/;" f +TypeGuardTests Lib/test/test_typing.py /^class TypeGuardTests(BaseTestCase):$/;" c +TypeIgnore Include/internal/pycore_ast.h /^ } TypeIgnore;$/;" m union:_type_ignore::__anon116 typeref:struct:_type_ignore::__anon116::__anon117 +TypeIgnore_fields Python/Python-ast.c /^static const char * const TypeIgnore_fields[]={$/;" v file: +TypeIgnore_kind Include/internal/pycore_ast.h /^enum _type_ignore_kind {TypeIgnore_kind=1};$/;" e enum:_type_ignore_kind +TypeIgnore_type Include/internal/pycore_ast_state.h /^ PyObject *TypeIgnore_type;$/;" m struct:ast_state +TypeInfo Lib/xml/dom/minidom.py /^class TypeInfo(object):$/;" c +TypeIterationTests Lib/test/test_genericalias.py /^class TypeIterationTests(unittest.TestCase):$/;" c +TypeIterationTests Lib/test/test_typing.py /^class TypeIterationTests(BaseTestCase):$/;" c +TypeLib Lib/msilib/schema.py /^TypeLib = Table('TypeLib')$/;" v +TypeMapper Tools/peg_generator/scripts/joinstats.py /^class TypeMapper:$/;" c +TypeName Lib/test/test_typing.py /^ TypeName = typing.NewType('SpecialAttrsTests.TypeName', Any)$/;" v class:SpecialAttrsTests +TypeParamBlock Include/internal/pycore_symtable.h /^ TypeVarBoundBlock, TypeAliasBlock, TypeParamBlock$/;" e enum:_block_type +TypeParamsAccessTest Lib/test/test_type_aliases.py /^class TypeParamsAccessTest(unittest.TestCase):$/;" c +TypeParamsAccessTest Lib/test/test_type_params.py /^class TypeParamsAccessTest(unittest.TestCase):$/;" c +TypeParamsAliasValueTest Lib/test/test_type_aliases.py /^class TypeParamsAliasValueTest(unittest.TestCase):$/;" c +TypeParamsClassScopeTest Lib/test/test_type_params.py /^class TypeParamsClassScopeTest(unittest.TestCase):$/;" c +TypeParamsComplexCallsTest Lib/test/test_type_params.py /^class TypeParamsComplexCallsTest(unittest.TestCase):$/;" c +TypeParamsInvalidTest Lib/test/test_type_aliases.py /^class TypeParamsInvalidTest(unittest.TestCase):$/;" c +TypeParamsInvalidTest Lib/test/test_type_params.py /^class TypeParamsInvalidTest(unittest.TestCase):$/;" c +TypeParamsLazyEvaluationTest Lib/test/test_type_params.py /^class TypeParamsLazyEvaluationTest(unittest.TestCase):$/;" c +TypeParamsManglingTest Lib/test/test_type_params.py /^class TypeParamsManglingTest(unittest.TestCase):$/;" c +TypeParamsNonlocalTest Lib/test/test_type_params.py /^class TypeParamsNonlocalTest(unittest.TestCase):$/;" c +TypeParamsPickleTest Lib/test/test_type_params.py /^class TypeParamsPickleTest(unittest.TestCase):$/;" c +TypeParamsRuntimeTest Lib/test/test_type_params.py /^class TypeParamsRuntimeTest(unittest.TestCase):$/;" c +TypeParamsTraditionalTypeVarsTest Lib/test/test_type_params.py /^class TypeParamsTraditionalTypeVarsTest(unittest.TestCase):$/;" c +TypeParamsTypeParamsDunder Lib/test/test_type_params.py /^class TypeParamsTypeParamsDunder(unittest.TestCase):$/;" c +TypeParamsTypeVarParamSpecTest Lib/test/test_type_params.py /^class TypeParamsTypeVarParamSpecTest(unittest.TestCase):$/;" c +TypeParamsTypeVarTest Lib/test/test_type_params.py /^class TypeParamsTypeVarTest(unittest.TestCase):$/;" c +TypeParamsTypeVarTupleTest Lib/test/test_type_params.py /^class TypeParamsTypeVarTupleTest(unittest.TestCase):$/;" c +TypeParamsWeakRefTest Lib/test/test_type_params.py /^class TypeParamsWeakRefTest(unittest.TestCase):$/;" c +TypeSet Tools/clinic/clinic.py /^TypeSet = set[bltns.type[Any]]$/;" v +TypeTests Lib/test/test_typing.py /^class TypeTests(BaseTestCase):$/;" c +TypeVar Include/internal/pycore_ast.h /^ } TypeVar;$/;" m union:_type_param::__anon118 typeref:struct:_type_param::__anon118::__anon119 +TypeVarBoundBlock Include/internal/pycore_symtable.h /^ TypeVarBoundBlock, TypeAliasBlock, TypeParamBlock$/;" e enum:_block_type +TypeVarTests Lib/test/test_typing.py /^class TypeVarTests(BaseTestCase):$/;" c +TypeVarTuple Include/internal/pycore_ast.h /^ } TypeVarTuple;$/;" m union:_type_param::__anon118 typeref:struct:_type_param::__anon118::__anon121 +TypeVarTuplePicklingTests Lib/test/test_typing.py /^class TypeVarTuplePicklingTests(BaseTestCase):$/;" c +TypeVarTupleTests Lib/test/test_typing.py /^class TypeVarTupleTests(BaseTestCase):$/;" c +TypeVarTuple_fields Python/Python-ast.c /^static const char * const TypeVarTuple_fields[]={$/;" v file: +TypeVarTuple_kind Include/internal/pycore_ast.h /^enum _type_param_kind {TypeVar_kind=1, ParamSpec_kind=2, TypeVarTuple_kind=3};$/;" e enum:_type_param_kind +TypeVarTuple_type Include/internal/pycore_ast_state.h /^ PyObject *TypeVarTuple_type;$/;" m struct:ast_state +TypeVar_fields Python/Python-ast.c /^static const char * const TypeVar_fields[]={$/;" v file: +TypeVar_kind Include/internal/pycore_ast.h /^enum _type_param_kind {TypeVar_kind=1, ParamSpec_kind=2, TypeVarTuple_kind=3};$/;" e enum:_type_param_kind +TypeVar_type Include/internal/pycore_ast_state.h /^ PyObject *TypeVar_type;$/;" m struct:ast_state +TypedDict Lib/typing.py /^def TypedDict(typename, fields=None, \/, *, total=True, **kwargs):$/;" f +TypedDictTests Lib/test/test_typing.py /^class TypedDictTests(BaseTestCase):$/;" c +TypesTest Lib/test/test_codecs.py /^class TypesTest(unittest.TestCase):$/;" c +TypesTests Lib/test/test_types.py /^class TypesTests(unittest.TestCase):$/;" c +TypingCallableTests Lib/test/test_typing.py /^class TypingCallableTests(BaseCallableTests, BaseTestCase):$/;" c +Typos Lib/test/test_unittest/testmock/testmock.py /^class Typos():$/;" c +TzPathTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class TzPathTest(TzPathUserMixin, ZoneInfoTestBase):$/;" c +TzPathUserMixin Lib/test/test_zoneinfo/test_zoneinfo.py /^class TzPathUserMixin:$/;" c +U Lib/test/leakers/test_selftype.py /^ class U(type, metaclass=T):$/;" c function:leak +U Lib/test/test_ctypes/test_arrays.py /^ class U(T):$/;" c function:ArrayTestCase.test_subclass +U Lib/test/test_ctypes/test_cfuncs.py /^ def U(self):$/;" m class:CFunctions +U Lib/test/test_ctypes/test_structures.py /^ class U(Union):$/;" c function:StructureTestCase.test_38368 +U Lib/test/test_functools.py /^ class U:$/;" c function:TestSingleDispatch.test_mro_conflicts +U Lib/test/test_statistics.py /^ class U(T): pass$/;" c function:CoerceTest.check_type_coercions +U Modules/_ctypes/_ctypes_test.c 635;" d file: +U Modules/cjkcodecs/cjkcodecs.h 24;" d +U Modules/cmathmodule.c 154;" d file: +U Python/dtoa.c /^typedef union { double d; ULong L[2]; } U;$/;" t typeref:union:__anon696 file: +UAdd Include/internal/pycore_ast.h /^typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;$/;" e enum:_unaryop +UAdd_singleton Include/internal/pycore_ast_state.h /^ PyObject *UAdd_singleton;$/;" m struct:ast_state +UAdd_type Include/internal/pycore_ast_state.h /^ PyObject *UAdd_type;$/;" m struct:ast_state +UCD_Check Modules/unicodedata.c 95;" d file: +UCS1_ASCII_CHAR_MASK Objects/stringlib/find_max_char.h 10;" d +UCS1_ASCII_CHAR_MASK Objects/stringlib/find_max_char.h 12;" d +UCS2_GET_NAMING Modules/expat/xmltok.c 78;" d file: +UCS2_REPEAT_MASK Objects/stringlib/codecs.h 477;" d +UCS2_REPEAT_MASK Objects/stringlib/codecs.h 479;" d +UCS2_REPEAT_MASK Objects/stringlib/codecs.h 616;" d +UDP6TestBase Lib/test/test_socket.py /^class UDP6TestBase(Inet6TestBase):$/;" c +UDPLITE6TestBase Lib/test/test_socket.py /^class UDPLITE6TestBase(Inet6TestBase):$/;" c +UDPLITETestBase Lib/test/test_socket.py /^class UDPLITETestBase(InetTestBase):$/;" c +UDPLITETimeoutTest Lib/test/test_socket.py /^class UDPLITETimeoutTest(SocketUDPLITETest):$/;" c +UDPLITE_RECV_CSCOV Modules/socketmodule.c 8240;" d file: +UDPLITE_SEND_CSCOV Modules/socketmodule.c 8236;" d file: +UDPServer Lib/socketserver.py /^class UDPServer(TCPServer):$/;" c +UDPTestBase Lib/test/test_socket.py /^class UDPTestBase(InetTestBase):$/;" c +UDPTimeoutTest Lib/test/test_socket.py /^class UDPTimeoutTest(SocketUDPTest):$/;" c +UDPTimeoutTestCase Lib/test/test_timeout.py /^class UDPTimeoutTestCase(TimeoutTestCase):$/;" c +UEMPTYSTRING Lib/email/utils.py /^UEMPTYSTRING = ''$/;" v +UF_APPEND Lib/stat.py /^UF_APPEND = 0x00000004 # file may only be appended to$/;" v +UF_APPEND Modules/_stat.c 212;" d file: +UF_COMPRESSED Lib/stat.py /^UF_COMPRESSED = 0x00000020 # OS X: file is hfs-compressed$/;" v +UF_COMPRESSED Modules/_stat.c 224;" d file: +UF_HIDDEN Lib/stat.py /^UF_HIDDEN = 0x00008000 # OS X: file should not be displayed$/;" v +UF_HIDDEN Modules/_stat.c 228;" d file: +UF_IMMUTABLE Lib/stat.py /^UF_IMMUTABLE = 0x00000002 # file may not be changed$/;" v +UF_IMMUTABLE Modules/_stat.c 208;" d file: +UF_NODUMP Lib/stat.py /^UF_NODUMP = 0x00000001 # do not dump file$/;" v +UF_NODUMP Modules/_stat.c 204;" d file: +UF_NOUNLINK Lib/stat.py /^UF_NOUNLINK = 0x00000010 # file may not be renamed or deleted$/;" v +UF_NOUNLINK Modules/_stat.c 220;" d file: +UF_OPAQUE Lib/stat.py /^UF_OPAQUE = 0x00000008 # directory is opaque when viewed through a union stack$/;" v +UF_OPAQUE Modules/_stat.c 216;" d file: +UHCL1_C1 Tools/unicode/genmap_korean.py /^UHCL1_C1 = (0x81, 0xa0)$/;" v +UHCL1_C2 Tools/unicode/genmap_korean.py /^UHCL1_C2 = (0x41, 0xfe)$/;" v +UHCL2_C1 Tools/unicode/genmap_korean.py /^UHCL2_C1 = (0xa1, 0xfe)$/;" v +UHCL2_C2 Tools/unicode/genmap_korean.py /^UHCL2_C2 = (0x41, 0xa0)$/;" v +UH_P1P2 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t UH_P1P2 = 18446744052234715141ULL; \/* (P1*P2) \/ 2^64 *\/$/;" v +UH_P1P2 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t UH_P1P2 = 990904320UL; \/* (P1*P2) \/ 2^32 *\/$/;" v +UI Lib/test/test_lib2to3/data/infinite_recursion.py /^UI = ui_st$/;" v +UID Lib/plistlib.py /^class UID:$/;" c +UID_GID_SUPPORT Lib/test/test_shutil.py /^ UID_GID_SUPPORT = False$/;" v +UID_GID_SUPPORT Lib/test/test_shutil.py /^ UID_GID_SUPPORT = True$/;" v +UID_OVERFLOW Lib/test/test_os.py /^ UID_OVERFLOW = (1 << 32)$/;" v class:PosixUidGidTests +UINT Lib/ctypes/wintypes.py /^UINT = ctypes.c_uint$/;" v +UINT32_FMT_UNIT Modules/selectmodule.c 1793;" d file: +UINT32_FMT_UNIT Modules/selectmodule.c 1796;" d file: +UINT32_FMT_UNIT Modules/selectmodule.c 1799;" d file: +UINT32_FMT_UNIT Modules/selectmodule.c 1801;" d file: +UINT32_MASK Tools/build/generate_opcode_h.py /^UINT32_MASK = (1<<32)-1$/;" v +UINTPTRT_FMT_UNIT Modules/selectmodule.c 1762;" d file: +UINTPTRT_FMT_UNIT Modules/selectmodule.c 1767;" d file: +UINTPTRT_FMT_UNIT Modules/selectmodule.c 1772;" d file: +UIT_BOOLEAN Lib/test/test_lib2to3/data/infinite_recursion.py /^UIT_BOOLEAN = 3$/;" v +UIT_ERROR Lib/test/test_lib2to3/data/infinite_recursion.py /^UIT_ERROR = 5$/;" v +UIT_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^UIT_INFO = 4$/;" v +UIT_NONE Lib/test/test_lib2to3/data/infinite_recursion.py /^UIT_NONE = 0$/;" v +UIT_PROMPT Lib/test/test_lib2to3/data/infinite_recursion.py /^UIT_PROMPT = 1$/;" v +UIT_VERIFY Lib/test/test_lib2to3/data/infinite_recursion.py /^UIT_VERIFY = 2$/;" v +UIText Lib/msilib/schema.py /^UIText = Table('UIText')$/;" v +UIText Lib/msilib/text.py /^UIText = [$/;" v +UI_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^UI_METHOD = ui_method_st$/;" v +UI_STRING Lib/test/test_lib2to3/data/infinite_recursion.py /^UI_STRING = ui_string_st$/;" v +UI_string_types Lib/test/test_lib2to3/data/infinite_recursion.py /^UI_string_types = c_int # enum$/;" v +UKSummerTime Lib/test/datetimetester.py /^ class UKSummerTime(tzinfo):$/;" c function:TestTZInfo.test_issue23600 +ULLONG_MAX Lib/test/test_capi/test_getargs.py /^ULLONG_MAX = 2**64-1$/;" v +ULLong Python/dtoa.c /^typedef uint64_t ULLong;$/;" t file: +ULONG Lib/ctypes/wintypes.py /^ULONG = ctypes.c_ulong$/;" v +ULbits Python/dtoa.c 1134;" d file: +ULong Include/internal/pycore_dtoa.h /^typedef uint32_t ULong;$/;" t +UMOFILE Lib/test/test_gettext.py /^UMOFILE = os.path.join(LOCALEDIR, 'ugettext.mo')$/;" v +UNABLE_READ_INFO_PYTHON_FRAME Tools/gdb/libpython.py /^UNABLE_READ_INFO_PYTHON_FRAME = 'Unable to read information on python frame'$/;" v +UNAME_S Tools/peg_generator/Makefile /^UNAME_S := $(shell uname -s)$/;" m +UNARY_INVERT Include/opcode.h 20;" d +UNARY_NEGATIVE Include/opcode.h 18;" d +UNARY_NOT Include/opcode.h 19;" d +UNAUTHORIZED Lib/http/__init__.py /^ UNAUTHORIZED = (401, 'Unauthorized',$/;" v class:HTTPStatus +UNAUTHORIZED Lib/test/test_httplib.py /^ UNAUTHORIZED = (401, 'Unauthorized',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +UNAVAILABLE_FOR_LEGAL_REASONS Lib/http/__init__.py /^ UNAVAILABLE_FOR_LEGAL_REASONS = (451,$/;" v class:HTTPStatus +UNAVAILABLE_FOR_LEGAL_REASONS Lib/test/test_httplib.py /^ UNAVAILABLE_FOR_LEGAL_REASONS = (451,$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +UNBIND Modules/_testcapi/long.c 26;" d file: +UNBOUNDFREE_ERROR_MSG Python/ceval.c 227;" d file: +UNBOUNDLOCAL_ERROR_MSG Python/ceval.c 225;" d file: +UNCAUGHT_EXC Lib/test/libregrtest/runtest.py /^ UNCAUGHT_EXC = "UNCAUGHT_EXC"$/;" v class:State +UNCHECKED_HASH Lib/py_compile.py /^ UNCHECKED_HASH = 3$/;" v class:PycInvalidationMode +UNCOMPARABLE_A Lib/test/test_enum.py /^UNCOMPARABLE_A = 5$/;" v +UNCOMPARABLE_B Lib/test/test_enum.py /^UNCOMPARABLE_B = 'value'$/;" v +UNCOMPARABLE_C Lib/test/test_enum.py /^UNCOMPARABLE_C = (9, 1) # naming order is broken on purpose$/;" v +UNDEFINED_FUTURE_FEATURE Python/future.c 4;" d file: +UNDERLINE Lib/tkinter/constants.py /^UNDERLINE='underline'$/;" v +UNDERSCORE Lib/email/generator.py /^UNDERSCORE = '_'$/;" v +UNDIAGONALIZE Modules/_blake2/impl/blake2b-round.h 101;" d +UNDIAGONALIZE Modules/_blake2/impl/blake2b-round.h 128;" d +UNDIAGONALIZE Modules/_blake2/impl/blake2s-round.h 65;" d +UNEXPECTED_MESSAGE Lib/ssl.py /^ UNEXPECTED_MESSAGE = 10$/;" v class:_TLSAlertType +UNEXPECTED_MESSAGE Lib/test/test_ssl.py /^ UNEXPECTED_MESSAGE = 10$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +UNICODE Lib/pickle.py /^UNICODE = b'V' # push Unicode string; raw-unicode-escaped'd argument$/;" v +UNICODE Modules/_pickle.c /^ UNICODE = 'V',$/;" e enum:opcode file: +UNICODE Modules/_pickle.c 49;" d file: +UNICODE Tools/build/umarshal.py /^ UNICODE = ord('u')$/;" v class:Type +UNICODEDATA_UCD_BIDIRECTIONAL_METHODDEF Modules/clinic/unicodedata.c.h 204;" d +UNICODEDATA_UCD_CATEGORY_METHODDEF Modules/clinic/unicodedata.c.h 166;" d +UNICODEDATA_UCD_COMBINING_METHODDEF Modules/clinic/unicodedata.c.h 242;" d +UNICODEDATA_UCD_DECIMAL_METHODDEF Modules/clinic/unicodedata.c.h 21;" d +UNICODEDATA_UCD_DECOMPOSITION_METHODDEF Modules/clinic/unicodedata.c.h 365;" d +UNICODEDATA_UCD_DIGIT_METHODDEF Modules/clinic/unicodedata.c.h 71;" d +UNICODEDATA_UCD_EAST_ASIAN_WIDTH_METHODDEF Modules/clinic/unicodedata.c.h 327;" d +UNICODEDATA_UCD_IS_NORMALIZED_METHODDEF Modules/clinic/unicodedata.c.h 403;" d +UNICODEDATA_UCD_LOOKUP_METHODDEF Modules/clinic/unicodedata.c.h 546;" d +UNICODEDATA_UCD_MIRRORED_METHODDEF Modules/clinic/unicodedata.c.h 286;" d +UNICODEDATA_UCD_NAME_METHODDEF Modules/clinic/unicodedata.c.h 498;" d +UNICODEDATA_UCD_NORMALIZE_METHODDEF Modules/clinic/unicodedata.c.h 450;" d +UNICODEDATA_UCD_NUMERIC_METHODDEF Modules/clinic/unicodedata.c.h 120;" d +UNICODE_CAPITALIZE_METHODDEF Objects/clinic/unicodeobject.c.h 59;" d +UNICODE_CASEFOLD_METHODDEF Objects/clinic/unicodeobject.c.h 77;" d +UNICODE_CENTER_METHODDEF Objects/clinic/unicodeobject.c.h 97;" d +UNICODE_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 122;" d +UNICODE_DATA Tools/unicode/makeunicodedata.py /^UNICODE_DATA = "UnicodeData%s.txt"$/;" v +UNICODE_ENCODE_METHODDEF Objects/clinic/unicodeobject.c.h 153;" d +UNICODE_EXPANDTABS_METHODDEF Objects/clinic/unicodeobject.c.h 246;" d +UNICODE_GUARD_ENV Lib/test/libregrtest/setup.py /^UNICODE_GUARD_ENV = "PYTHONREGRTEST_UNICODE_GUARD"$/;" v +UNICODE_ISALNUM_METHODDEF Objects/clinic/unicodeobject.c.h 438;" d +UNICODE_ISALPHA_METHODDEF Objects/clinic/unicodeobject.c.h 417;" d +UNICODE_ISASCII_METHODDEF Objects/clinic/unicodeobject.c.h 312;" d +UNICODE_ISDECIMAL_METHODDEF Objects/clinic/unicodeobject.c.h 459;" d +UNICODE_ISDIGIT_METHODDEF Objects/clinic/unicodeobject.c.h 480;" d +UNICODE_ISIDENTIFIER_METHODDEF Objects/clinic/unicodeobject.c.h 522;" d +UNICODE_ISLOWER_METHODDEF Objects/clinic/unicodeobject.c.h 333;" d +UNICODE_ISNUMERIC_METHODDEF Objects/clinic/unicodeobject.c.h 501;" d +UNICODE_ISPRINTABLE_METHODDEF Objects/clinic/unicodeobject.c.h 543;" d +UNICODE_ISSPACE_METHODDEF Objects/clinic/unicodeobject.c.h 396;" d +UNICODE_ISTITLE_METHODDEF Objects/clinic/unicodeobject.c.h 375;" d +UNICODE_ISUPPER_METHODDEF Objects/clinic/unicodeobject.c.h 354;" d +UNICODE_JOIN_METHODDEF Objects/clinic/unicodeobject.c.h 566;" d +UNICODE_LJUST_METHODDEF Objects/clinic/unicodeobject.c.h 577;" d +UNICODE_LOWER_METHODDEF Objects/clinic/unicodeobject.c.h 624;" d +UNICODE_LSTRIP_METHODDEF Objects/clinic/unicodeobject.c.h 678;" d +UNICODE_MAKETRANS_METHODDEF Objects/clinic/unicodeobject.c.h 1239;" d +UNICODE_PARTITION_METHODDEF Objects/clinic/unicodeobject.c.h 1032;" d +UNICODE_REMOVEPREFIX_METHODDEF Objects/clinic/unicodeobject.c.h 816;" d +UNICODE_REMOVESUFFIX_METHODDEF Objects/clinic/unicodeobject.c.h 852;" d +UNICODE_REPLACE_METHODDEF Objects/clinic/unicodeobject.c.h 751;" d +UNICODE_RJUST_METHODDEF Objects/clinic/unicodeobject.c.h 886;" d +UNICODE_RPARTITION_METHODDEF Objects/clinic/unicodeobject.c.h 1048;" d +UNICODE_RSPLIT_METHODDEF Objects/clinic/unicodeobject.c.h 1069;" d +UNICODE_RSTRIP_METHODDEF Objects/clinic/unicodeobject.c.h 712;" d +UNICODE_SIZEOF_METHODDEF Objects/clinic/unicodeobject.c.h 1397;" d +UNICODE_SPLITLINES_METHODDEF Objects/clinic/unicodeobject.c.h 1150;" d +UNICODE_SPLIT_METHODDEF Objects/clinic/unicodeobject.c.h 947;" d +UNICODE_STRIP_METHODDEF Objects/clinic/unicodeobject.c.h 644;" d +UNICODE_SWAPCASE_METHODDEF Objects/clinic/unicodeobject.c.h 1213;" d +UNICODE_TITLE_METHODDEF Objects/clinic/unicodeobject.c.h 38;" d +UNICODE_TRANSLATE_METHODDEF Objects/clinic/unicodeobject.c.h 1300;" d +UNICODE_UPPER_METHODDEF Objects/clinic/unicodeobject.c.h 1309;" d +UNICODE_ZFILL_METHODDEF Objects/clinic/unicodeobject.c.h 1329;" d +UNICODE___FORMAT___METHODDEF Objects/clinic/unicodeobject.c.h 1365;" d +UNIDATA_VERSION Modules/unicodedata_db.h 3;" d +UNIDATA_VERSION Tools/unicode/makeunicodedata.py /^UNIDATA_VERSION = "15.0.0"$/;" v +UNIHAN Tools/unicode/makeunicodedata.py /^UNIHAN = "Unihan%s.zip"$/;" v +UNIINV Modules/cjkcodecs/cjkcodecs.h 16;" d +UNINITIALIZED Objects/frameobject.c 167;" d file: +UNINITIALIZED_INT Modules/_testcapi/util.h 32;" d +UNINITIALIZED_PTR Modules/_testcapi/util.h 28;" d +UNINITIALIZED_SIZE Modules/_testcapi/util.h 30;" d +UNION Tools/c-analyzer/c_parser/info.py /^ UNION = 'union'$/;" v class:KIND +UNIQUE Lib/enum.py /^ UNIQUE = "one name per value"$/;" v class:EnumCheck +UNITS Lib/tkinter/constants.py /^UNITS='units'$/;" v +UNIVERSALARCHS Mac/BuildScript/build-installer.py /^UNIVERSALARCHS = '32-bit'$/;" v +UNIVERSALOPTS Mac/BuildScript/build-installer.py /^UNIVERSALOPTS = tuple(universal_opts_map.keys())$/;" v +UNIX Modules/mmapmodule.c 37;" d file: +UNIXY Tools/build/stable_abi.py /^UNIXY = MACOS or (sys.platform == "linux") # XXX should this be "not Windows"?$/;" v +UNIX_PATH_MAX Lib/test/test_socket.py /^ UNIX_PATH_MAX = 108$/;" v class:TestLinuxAbstractNamespace +UNI_UNDEFINED Tools/unicode/gencodec.py /^UNI_UNDEFINED = chr(0xFFFE)$/;" v +UNKNOWN Lib/dis.py /^UNKNOWN = _Unknown()$/;" v +UNKNOWN Tools/build/umarshal.py /^ UNKNOWN = ord('?')$/;" v class:Type +UNKNOWN Tools/c-analyzer/c_analyzer/info.py /^UNKNOWN = _misc.Labeled('UNKNOWN')$/;" v +UNKNOWN Tools/c-analyzer/c_common/tables.py /^UNKNOWN = '???'$/;" v +UNKNOWN8BIT Lib/email/charset.py /^UNKNOWN8BIT = 'unknown-8bit'$/;" v +UNKNOWN_CA Lib/ssl.py /^ UNKNOWN_CA = 48$/;" v class:_TLSAlertType +UNKNOWN_CA Lib/test/test_ssl.py /^ UNKNOWN_CA = 48$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +UNKNOWN_ENC Modules/expat/xmltok.c /^ UNKNOWN_ENC = -1,$/;" e enum:__anon604 file: +UNKNOWN_FORMAT Lib/test/test_array.py /^UNKNOWN_FORMAT = -1$/;" v +UNKNOWN_FORMAT Modules/arraymodule.c /^ UNKNOWN_FORMAT = -1,$/;" e enum:machine_format_code file: +UNKNOWN_PSK_IDENTITY Lib/ssl.py /^ UNKNOWN_PSK_IDENTITY = 115$/;" v class:_TLSAlertType +UNKNOWN_PSK_IDENTITY Lib/test/test_ssl.py /^ UNKNOWN_PSK_IDENTITY = 115$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +UNLIKELY Objects/obmalloc.c 837;" d file: +UNLIKELY Objects/obmalloc.c 840;" d file: +UNLINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2756;" d file: +UNLINKAT_DIR_FD_CONVERTER Modules/posixmodule.c 2758;" d file: +UNNAMED_FIELDS Objects/structseq.c 48;" d file: +UNNAMED_FIELDS_TP Objects/structseq.c 46;" d file: +UNPACK_EX Include/opcode.h 55;" d +UNPACK_FROM_METHODDEF Modules/clinic/_struct.c.h 329;" d +UNPACK_METHODDEF Modules/clinic/_struct.c.h 280;" d +UNPACK_SEQUENCE Include/opcode.h 53;" d +UNPACK_SEQUENCE_LIST Include/opcode.h 215;" d +UNPACK_SEQUENCE_TUPLE Include/opcode.h 216;" d +UNPACK_SEQUENCE_TWO_TUPLE Include/opcode.h 217;" d +UNPACK_SINGLE Objects/memoryobject.c 1742;" d file: +UNPROCESSABLE_ENTITY Lib/http/__init__.py /^ UNPROCESSABLE_ENTITY = 422, 'Unprocessable Entity'$/;" v class:HTTPStatus +UNPROCESSABLE_ENTITY Lib/test/test_httplib.py /^ UNPROCESSABLE_ENTITY = 422, 'Unprocessable Entity'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +UNRECOGNIZED_NAME Lib/ssl.py /^ UNRECOGNIZED_NAME = 112$/;" v class:_TLSAlertType +UNRECOGNIZED_NAME Lib/test/test_ssl.py /^ UNRECOGNIZED_NAME = 112$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +UNSIGNAL_ASYNC_EXC Python/ceval_gil.c /^UNSIGNAL_ASYNC_EXC(PyInterpreterState *interp)$/;" f file: +UNSIGNAL_PENDING_CALLS Python/ceval_gil.c /^UNSIGNAL_PENDING_CALLS(PyInterpreterState *interp)$/;" f file: +UNSIGNAL_PENDING_SIGNALS Python/ceval_gil.c /^UNSIGNAL_PENDING_SIGNALS(PyInterpreterState *interp)$/;" f file: +UNSIGNED_CHAR_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 429;" d +UNSIGNED_INT16_BE Lib/test/test_array.py /^UNSIGNED_INT16_BE = 3$/;" v +UNSIGNED_INT16_BE Modules/arraymodule.c /^ UNSIGNED_INT16_BE = 3,$/;" e enum:machine_format_code file: +UNSIGNED_INT16_LE Lib/test/test_array.py /^UNSIGNED_INT16_LE = 2$/;" v +UNSIGNED_INT16_LE Modules/arraymodule.c /^ UNSIGNED_INT16_LE = 2,$/;" e enum:machine_format_code file: +UNSIGNED_INT32_BE Lib/test/test_array.py /^UNSIGNED_INT32_BE = 7$/;" v +UNSIGNED_INT32_BE Modules/arraymodule.c /^ UNSIGNED_INT32_BE = 7,$/;" e enum:machine_format_code file: +UNSIGNED_INT32_LE Lib/test/test_array.py /^UNSIGNED_INT32_LE = 6$/;" v +UNSIGNED_INT32_LE Modules/arraymodule.c /^ UNSIGNED_INT32_LE = 6,$/;" e enum:machine_format_code file: +UNSIGNED_INT64_BE Lib/test/test_array.py /^UNSIGNED_INT64_BE = 11$/;" v +UNSIGNED_INT64_BE Modules/arraymodule.c /^ UNSIGNED_INT64_BE = 11,$/;" e enum:machine_format_code file: +UNSIGNED_INT64_LE Lib/test/test_array.py /^UNSIGNED_INT64_LE = 10$/;" v +UNSIGNED_INT64_LE Modules/arraymodule.c /^ UNSIGNED_INT64_LE = 10,$/;" e enum:machine_format_code file: +UNSIGNED_INT8 Lib/test/test_array.py /^UNSIGNED_INT8 = 0$/;" v +UNSIGNED_INT8 Modules/arraymodule.c /^ UNSIGNED_INT8 = 0,$/;" e enum:machine_format_code file: +UNSIGNED_INT_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 671;" d +UNSIGNED_LONG_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 754;" d +UNSIGNED_LONG_LONG_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 838;" d +UNSIGNED_SHORT_CONVERTER_METHODDEF Modules/clinic/_testclinic.c.h 564;" d +UNSLOT Objects/typeobject.c 9376;" d file: +UNSLOT Objects/typeobject.c 9400;" d file: +UNSUPPORTED Lib/asyncio/constants.py /^ UNSUPPORTED = enum.auto()$/;" v class:_SendfileMode +UNSUPPORTED_CERTIFICATE Lib/ssl.py /^ UNSUPPORTED_CERTIFICATE = 43$/;" v class:_TLSAlertType +UNSUPPORTED_CERTIFICATE Lib/test/test_ssl.py /^ UNSUPPORTED_CERTIFICATE = 43$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +UNSUPPORTED_ENCODING Lib/xmlrpc/client.py /^UNSUPPORTED_ENCODING = -32701$/;" v +UNSUPPORTED_EXTENSION Lib/ssl.py /^ UNSUPPORTED_EXTENSION = 110$/;" v class:_TLSAlertType +UNSUPPORTED_EXTENSION Lib/test/test_ssl.py /^ UNSUPPORTED_EXTENSION = 110$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +UNSUPPORTED_MEDIA_TYPE Lib/http/__init__.py /^ UNSUPPORTED_MEDIA_TYPE = (415, 'Unsupported Media Type',$/;" v class:HTTPStatus +UNSUPPORTED_MEDIA_TYPE Lib/test/test_httplib.py /^ UNSUPPORTED_MEDIA_TYPE = (415, 'Unsupported Media Type',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +UNUSED Modules/_decimal/_decimal.c 64;" d file: +UNUSED Modules/_decimal/_decimal.c 66;" d file: +UNUSED Parser/pegen.h 253;" d +UNUSED Tools/cases_generator/generate_cases.py /^UNUSED = "unused"$/;" v +UNUSED_P Modules/expat/internal.h 135;" d +UNWRAP Objects/weakrefobject.c 407;" d file: +UNWRAPPED Lib/asyncio/sslproto.py /^ UNWRAPPED = "UNWRAPPED"$/;" v class:SSLProtocolState +UOFS Lib/test/datetimetester.py /^ class UOFS(DST):$/;" c function:TestDateTimeTZ.test_utctimetuple +UOp Tools/cases_generator/parser.py /^UOp = OpName | CacheEffect$/;" v +UPDATEINTERVAL Lib/idlelib/codecontext.py /^ UPDATEINTERVAL = 100 # millisec$/;" v class:CodeContext +UPDATE_MISS_STATS Python/ceval_macros.h 254;" d +UPDATE_MISS_STATS Python/ceval_macros.h 268;" d +UPGRADE_REQUIRED Lib/http/__init__.py /^ UPGRADE_REQUIRED = 426, 'Upgrade Required'$/;" v class:HTTPStatus +UPGRADE_REQUIRED Lib/test/test_httplib.py /^ UPGRADE_REQUIRED = 426, 'Upgrade Required'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +UPPER_MASK Modules/_randommodule.c 88;" d file: +UPPER_MASK Objects/unicodectype.c 18;" d file: +UPPER_MASK Tools/unicode/makeunicodedata.py /^UPPER_MASK = 0x80$/;" v +UP_EVENTS Lib/test/test_monitoring.py /^UP_EVENTS = (E.C_RETURN, E.C_RAISE, E.PY_RETURN, E.PY_UNWIND, E.PY_YIELD)$/;" v +UP_TO_NEWLINE Lib/pickletools.py /^UP_TO_NEWLINE = -1$/;" v +URANUS Lib/test/test_enum.py /^ URANUS = (8.686e+25, 2.5559e7)$/;" v class:TestSpecial.test_init.Planet +URL Lib/test/test_hashlib.py /^URL = "http:\/\/www.pythontest.net\/hashlib\/{}.txt"$/;" v +URL Lib/test/test_urllib2_localnet.py /^ URL = "http:\/\/localhost"$/;" v class:ProxyAuthTests +URL Lib/test/test_webbrowser.py /^URL = 'https:\/\/www.example.com'$/;" v +URL Lib/test/test_xmlrpc.py /^ URL = "http:\/\/%s:%d"%(ADDR, PORT)$/;" v class:http_multi_server.BrokenDispatcher +URL Lib/test/test_xmlrpc.py /^ URL = "http:\/\/%s:%d"%(ADDR, PORT)$/;" v class:http_server.MyXMLRPCServer +URL PCbuild/urlretrieve.py /^ URL = sys.argv[1]$/;" v +URL Tools/msi/purge.py /^URL = "https:\/\/www.python.org\/ftp\/python\/{}\/".format(m.group(1))$/;" v +URL2PathNameTests Lib/test/test_urllib.py /^class URL2PathNameTests(unittest.TestCase):$/;" c +URLError Lib/urllib/error.py /^class URLError(OSError):$/;" c +URLTimeoutTest Lib/test/test_urllibnet.py /^class URLTimeoutTest(unittest.TestCase):$/;" c +URLopener Lib/urllib/request.py /^class URLopener:$/;" c +URLopener_Tests Lib/test/test_urllib.py /^class URLopener_Tests(FakeHTTPMixin, unittest.TestCase):$/;" c +URandomFDTests Lib/test/test_os.py /^class URandomFDTests(unittest.TestCase):$/;" c +URandomTests Lib/test/test_os.py /^class URandomTests(unittest.TestCase):$/;" c +US Lib/curses/ascii.py /^US = 0x1f # ^_$/;" v +USABLE_FRACTION Objects/dictobject.c 410;" d file: +USASCII Lib/email/header.py /^USASCII = Charset('us-ascii')$/;" v +USE Include/internal/pycore_symtable.h 116;" d +USER Lib/imaplib.py /^ USER = getpass.getuser()$/;" v +USER Lib/test/test_urllib2_localnet.py /^ USER = "testUser"$/;" v class:BasicAuthTests +USER Lib/test/test_urllib2_localnet.py /^ USER = "tester"$/;" v class:ProxyAuthTests +USER Lib/test/test_urllib2_localnet.py /^ USER = 'testUser'$/;" v class:BasicAuthHandler +USER Tools/msi/uploadrelease.bat /^if "%1" EQU "--user" (set USER=%~2) && shift && shift && goto CheckOpts$/;" v +USER Tools/msi/uploadrelease.bat /^if "%1" EQU "-u" (set USER=%~2) && shift && shift && goto CheckOpts$/;" v +USER Tools/msi/uploadrelease.bat /^set USER=$/;" v +USEROBJECTFLAGS Lib/test/support/__init__.py /^ class USEROBJECTFLAGS(ctypes.Structure):$/;" c function:_is_gui_available +USER_BASE Lib/site.py /^USER_BASE = None$/;" v +USER_CANCELED Lib/ssl.py /^ USER_CANCELED = 90$/;" v class:_TLSAlertType +USER_CANCELED Lib/test/test_ssl.py /^ USER_CANCELED = 90$/;" v class:TestEnumerations.test_tlsalerttype.Checked_TLSAlertType +USER_PASSWD Lib/test/test_urllib2_localnet.py /^ USER_PASSWD = "%s:%s" % (USER, PASSWD)$/;" v class:BasicAuthHandler +USER_SITE Lib/site.py /^USER_SITE = None$/;" v +USE_BLUETOOTH Modules/socketmodule.c 483;" d file: +USE_BLUETOOTH Modules/socketmodule.c 518;" d file: +USE_CLOSEFROM Python/fileutils.c 2874;" d file: +USE_COMPUTED_GOTOS Modules/_sre/sre_lib.h 536;" d +USE_COMPUTED_GOTOS Modules/_sre/sre_lib.h 541;" d +USE_COMPUTED_GOTOS Modules/_sre/sre_lib.h 542;" d +USE_COMPUTED_GOTOS Python/bytecodes.c 39;" d file: +USE_COMPUTED_GOTOS Python/ceval_macros.h 52;" d +USE_COMPUTED_GOTOS Python/ceval_macros.h 58;" d +USE_COMPUTED_GOTOS Python/ceval_macros.h 59;" d +USE_CTERMID_R Modules/posixmodule.c 484;" d file: +USE_CWD Tools/c-analyzer/c_common/fsutil.py /^USE_CWD = object()$/;" v +USE_DEPRECATED_TOMMATH_API Modules/_tkinter.c 69;" d file: +USE_DEPRECATED_TOMMATH_API Modules/_tkinter.c 71;" d file: +USE_FDWALK Python/fileutils.c 2878;" d file: +USE_FORCE_ASCII Python/fileutils.c 173;" d file: +USE_G2 Modules/cjkcodecs/_codecs_iso2022.c 120;" d file: +USE_GETHOSTBYNAME_LOCK Modules/socketmodule.c 202;" d file: +USE_INET_ATON_WEAKLINK Modules/socketmodule.c 450;" d file: +USE_INTERIOR_NODES Include/internal/pycore_obmalloc.h 557;" d +USE_JISX0208_EXT Modules/cjkcodecs/_codecs_iso2022.c 121;" d file: +USE_LABEL Python/compile.c 119;" d file: +USE_LARGE_ARENAS Include/internal/pycore_obmalloc.h 190;" d +USE_LARGE_POOLS Include/internal/pycore_obmalloc.h 193;" d +USE_PROCESS_GROUP Lib/test/libregrtest/runtest_mp.py /^USE_PROCESS_GROUP = (hasattr(os, "setsid") and hasattr(os, "killpg"))$/;" v +USE_PROXY Lib/http/__init__.py /^ USE_PROXY = (305, 'Use Proxy',$/;" v class:HTTPStatus +USE_PROXY Lib/test/test_httplib.py /^ USE_PROXY = (305, 'Use Proxy',$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +USE_SEMAPHORES Python/thread_pthread.h 100;" d +USE_SEMAPHORES Python/thread_pthread.h 102;" d +USE_SOCKET PC/pyconfig.h 72;" d +USE_STACKCHECK Include/pythonrun.h 32;" d +USE_TCL_UNICODE Modules/_tkinter.c 117;" d file: +USE_TCL_UNICODE Modules/_tkinter.c 119;" d file: +USE_XATTRS Modules/posixmodule.c 290;" d file: +USE_XML Lib/test/support/testresult.py /^ USE_XML = False$/;" v class:RegressionTestResult +USHORT Lib/ctypes/wintypes.py /^USHORT = ctypes.c_ushort$/;" v +USING PCbuild/urlretrieve.py /^ USING = "urllib.retrieve"$/;" v +USING PCbuild/urlretrieve.py /^ USING = "urllib.request.urlretrieve"$/;" v +USING PCbuild/urlretrieve.py /^ USING = "requests.get"$/;" v +USING_BINARY_PAIR_SEARCH Modules/cjkcodecs/_codecs_iso2022.c 8;" d file: +USING_BINARY_PAIR_SEARCH Modules/cjkcodecs/_codecs_jp.c 7;" d file: +USING_IMPORTED_MAPS Modules/cjkcodecs/_codecs_hk.c 7;" d file: +USING_IMPORTED_MAPS Modules/cjkcodecs/_codecs_iso2022.c 7;" d file: +USING_LINUXTHREADS Lib/test/test_os.py /^ USING_LINUXTHREADS = False$/;" v +USING_LINUXTHREADS Lib/test/test_os.py /^ USING_LINUXTHREADS = sys.thread_info.version.startswith("linuxthreads")$/;" v +USING_PTHREAD_COND Lib/test/test_threadsignals.py /^USING_PTHREAD_COND = (sys.thread_info.name == 'pthread'$/;" v +USING_STRINGS Lib/test/dataclass_module_1.py /^USING_STRINGS = False$/;" v +USING_STRINGS Lib/test/dataclass_module_1_str.py /^USING_STRINGS = True$/;" v +USING_STRINGS Lib/test/dataclass_module_2.py /^USING_STRINGS = False$/;" v +USING_STRINGS Lib/test/dataclass_module_2_str.py /^USING_STRINGS = True$/;" v +USTAR_FORMAT Lib/tarfile.py /^USTAR_FORMAT = 0 # POSIX.1-1988 (ustar) format$/;" v +USTimeZone Doc/includes/tzinfo_examples.py /^class USTimeZone(tzinfo):$/;" c +USTimeZone Lib/test/datetimetester.py /^class USTimeZone(tzinfo):$/;" c +USTimeZone2 Lib/test/datetimetester.py /^class USTimeZone2(tzinfo2):$/;" c +US_ASCII_ENC Modules/expat/xmltok.c /^ US_ASCII_ENC,$/;" e enum:__anon604 file: +US_TO_NS Lib/test/test_time.py /^US_TO_NS = 10 ** 3$/;" v +US_TO_NS Python/pytime.c 24;" d file: +USub Include/internal/pycore_ast.h /^typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;$/;" e enum:_unaryop +USub_singleton Include/internal/pycore_ast_state.h /^ PyObject *USub_singleton;$/;" m struct:ast_state +USub_type Include/internal/pycore_ast_state.h /^ PyObject *USub_type;$/;" m struct:ast_state +UTC Lib/test/test_logging.py /^class UTC(datetime.tzinfo):$/;" c +UTC Lib/test/test_zoneinfo/test_zoneinfo_property.py /^UTC = datetime.timezone.utc$/;" v +UTC_ZONES Lib/http/cookiejar.py /^UTC_ZONES = {"GMT": None, "UTC": None, "UT": None, "Z": None}$/;" v +UTF16BETest Lib/test/test_codecs.py /^class UTF16BETest(ReadTest, unittest.TestCase):$/;" c +UTF16ExTest Lib/test/test_codecs.py /^class UTF16ExTest(unittest.TestCase):$/;" c +UTF16LETest Lib/test/test_codecs.py /^class UTF16LETest(ReadTest, unittest.TestCase):$/;" c +UTF16Test Lib/test/test_codecs.py /^class UTF16Test(ReadTest, unittest.TestCase):$/;" c +UTF16_BE Lib/test/test_array.py /^UTF16_BE = 19$/;" v +UTF16_BE Modules/arraymodule.c /^ UTF16_BE = 19,$/;" e enum:machine_format_code file: +UTF16_LE Lib/test/test_array.py /^UTF16_LE = 18$/;" v +UTF16_LE Modules/arraymodule.c /^ UTF16_LE = 18,$/;" e enum:machine_format_code file: +UTF32BETest Lib/test/test_codecs.py /^class UTF32BETest(ReadTest, unittest.TestCase):$/;" c +UTF32LETest Lib/test/test_codecs.py /^class UTF32LETest(ReadTest, unittest.TestCase):$/;" c +UTF32Test Lib/test/test_codecs.py /^class UTF32Test(ReadTest, unittest.TestCase):$/;" c +UTF32_BE Lib/test/test_array.py /^UTF32_BE = 21$/;" v +UTF32_BE Modules/arraymodule.c /^ UTF32_BE = 21$/;" e enum:machine_format_code file: +UTF32_LE Lib/test/test_array.py /^UTF32_LE = 20$/;" v +UTF32_LE Modules/arraymodule.c /^ UTF32_LE = 20,$/;" e enum:machine_format_code file: +UTF7Test Lib/test/test_codecs.py /^class UTF7Test(ReadTest, unittest.TestCase):$/;" c +UTF8 Lib/email/header.py /^UTF8 = Charset('utf-8')$/;" v +UTF8AppendServer Lib/test/test_imaplib.py /^ class UTF8AppendServer(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_enable_UTF8_True_append +UTF8AppendServer Lib/test/test_imaplib.py /^ class UTF8AppendServer(self.UTF8Server):$/;" c function:ThreadedNetworkedTests.test_enable_UTF8_True_append +UTF8ModeTests Lib/test/test_utf8_mode.py /^class UTF8ModeTests(unittest.TestCase):$/;" c +UTF8Server Lib/test/test_imaplib.py /^ class UTF8Server(SimpleIMAPHandler):$/;" c function:NewIMAPTestsMixin.test_search_disallows_charset_in_utf8_mode +UTF8Server Lib/test/test_imaplib.py /^ class UTF8Server(SimpleIMAPHandler):$/;" c class:ThreadedNetworkedTests +UTF8SigTest Lib/test/test_codecs.py /^class UTF8SigTest(UTF8Test, unittest.TestCase):$/;" c +UTF8Test Lib/test/test_codecs.py /^class UTF8Test(ReadTest, unittest.TestCase):$/;" c +UTF8ValidatorTest Lib/test/test_source_encoding.py /^class UTF8ValidatorTest(unittest.TestCase):$/;" c +UTF8_BUG_XMLFILE Lib/test/test_xml_etree.py /^UTF8_BUG_XMLFILE = findfile("expat224_utf8_bug.xml", subdir="xmltestdata")$/;" v +UTF8_GET_NAMING2 Modules/expat/xmltok.c 85;" d file: +UTF8_GET_NAMING3 Modules/expat/xmltok.c 95;" d file: +UTF8_INVALID2 Modules/expat/xmltok.c 112;" d file: +UTF8_INVALID3 Modules/expat/xmltok.c 115;" d file: +UTF8_INVALID4 Modules/expat/xmltok.c 124;" d file: +UTF8_MODE_ERRORS Lib/test/test_embed.py /^ UTF8_MODE_ERRORS = ('surrogatepass' if MS_WINDOWS else 'surrogateescape')$/;" v class:InitConfigTests +UTF8_cval1 Modules/expat/xmltok.c /^ UTF8_cval1 = 0x00,$/;" e enum:__anon603 file: +UTF8_cval2 Modules/expat/xmltok.c /^ UTF8_cval2 = 0xc0,$/;" e enum:__anon603 file: +UTF8_cval3 Modules/expat/xmltok.c /^ UTF8_cval3 = 0xe0,$/;" e enum:__anon603 file: +UTF8_cval4 Modules/expat/xmltok.c /^ UTF8_cval4 = 0xf0$/;" e enum:__anon603 file: +UTF_16BE_ENC Modules/expat/xmltok.c /^ UTF_16BE_ENC,$/;" e enum:__anon604 file: +UTF_16LE_ENC Modules/expat/xmltok.c /^ UTF_16LE_ENC,$/;" e enum:__anon604 file: +UTF_16_ENC Modules/expat/xmltok.c /^ UTF_16_ENC,$/;" e enum:__anon604 file: +UTF_8_ENC Modules/expat/xmltok.c /^ UTF_8_ENC,$/;" e enum:__anon604 file: +UTIME_HAVE_NOFOLLOW_SYMLINKS Modules/posixmodule.c 6061;" d file: +UTIME_TO_TIMESPEC Modules/posixmodule.c 5938;" d file: +UTIME_TO_TIMEVAL Modules/posixmodule.c 5951;" d file: +UTIME_TO_TIME_T Modules/posixmodule.c 5975;" d file: +UTIME_TO_UTIMBUF Modules/posixmodule.c 5964;" d file: +UUFileTest Lib/test/test_uu.py /^class UUFileTest(unittest.TestCase):$/;" c +UUID Lib/uuid.py /^class UUID:$/;" c +UUStdIOTest Lib/test/test_uu.py /^class UUStdIOTest(unittest.TestCase):$/;" c +UUTest Lib/test/test_uu.py /^class UUTest(unittest.TestCase):$/;" c +U_get Modules/_ctypes/cfield.c /^U_get(void *ptr, Py_ssize_t size)$/;" f file: +U_set Modules/_ctypes/cfield.c /^U_set(void *ptr, PyObject *value, Py_ssize_t length)$/;" f file: +UcdFile Tools/unicode/makeunicodedata.py /^class UcdFile:$/;" c +UcdRecord Tools/unicode/makeunicodedata.py /^class UcdRecord:$/;" c +UiThreadProc Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static DWORD WINAPI UiThreadProc(__in LPVOID pvContext) {$/;" f class:PythonBootstrapperApplication file: +UnBrokenInt Lib/test/test_enum.py /^ class UnBrokenInt(int):$/;" c function:TestSpecial.test_inherited_data_type +UnReadable Lib/test/test_io.py /^ class UnReadable(self.BytesIO):$/;" c function:TextIOWrapperTest.test_unreadable +UnameResultType Modules/posixmodule.c /^ PyObject *UnameResultType;$/;" m struct:__anon477 file: +UnannotatedClass Lib/test/inspect_stock_annotations.py /^class UnannotatedClass:$/;" c +UnannotatedClass Lib/test/inspect_stringized_annotations.py /^class UnannotatedClass:$/;" c +UnaryOp Include/internal/pycore_ast.h /^ } UnaryOp;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon81 +UnaryOpTestCase Lib/test/test_unary.py /^class UnaryOpTestCase(unittest.TestCase):$/;" c +UnaryOp_fields Python/Python-ast.c /^static const char * const UnaryOp_fields[]={$/;" v file: +UnaryOp_kind Include/internal/pycore_ast.h /^enum _expr_kind {BoolOp_kind=1, NamedExpr_kind=2, BinOp_kind=3, UnaryOp_kind=4,$/;" e enum:_expr_kind +UnaryOp_type Include/internal/pycore_ast_state.h /^ PyObject *UnaryOp_type;$/;" m struct:ast_state +UnaryRestricted Modules/_decimal/tests/deccheck.py /^UnaryRestricted = [$/;" v +UnawaitedWarningDuringShutdownTest Lib/test/test_coroutines.py /^class UnawaitedWarningDuringShutdownTest(unittest.TestCase):$/;" c +UnbufferedFileObjectClassTestCase Lib/test/test_socket.py /^class UnbufferedFileObjectClassTestCase(FileObjectClassTestCase):$/;" c +Uncollectable Lib/test/test_gc.py /^class Uncollectable(object):$/;" c +UncompressedZipImportTestCase Lib/test/test_zipimport.py /^class UncompressedZipImportTestCase(ImportHooksBaseTestCase):$/;" c +UnconditionallyRaise Lib/test/test_fileinput.py /^class UnconditionallyRaise:$/;" c +UndecodableBytesDefect Lib/email/errors.py /^class UndecodableBytesDefect(MessageDefect):$/;" c +Underflow Lib/_pydecimal.py /^class Underflow(Inexact, Rounded, Subnormal):$/;" c +UndoDelegator Lib/idlelib/idle_test/mock_idle.py /^class UndoDelegator:$/;" c +UndoDelegator Lib/idlelib/pyshell.py /^ UndoDelegator = ModifiedUndoDelegator$/;" v class:PyShell +UndoDelegator Lib/idlelib/undo.py /^class UndoDelegator(Delegator):$/;" c +UndoDelegatorTest Lib/idlelib/idle_test/test_undo.py /^class UndoDelegatorTest(unittest.TestCase):$/;" c +UnexpectedException Lib/doctest.py /^class UnexpectedException(Exception):$/;" c +Unhashable Lib/test/test_dataclasses.py /^ class Unhashable:$/;" c function:TestCase.test_no_unhashable_default +UnhashableEG Lib/test/test_except_star.py /^ class UnhashableEG(ExceptionGroup):$/;" c class:TestExceptStar_WeirdExceptionGroupSubclass +UnhashableExc Lib/test/test_except_star.py /^ class UnhashableExc(ValueError):$/;" c class:TestExceptStar_WeirdLeafExceptions +UnhashableException Lib/idlelib/idle_test/test_run.py /^ class UnhashableException(Exception):$/;" c function:ExceptionTest.test_print_exception_unhashable +UnhashableException Lib/test/test_traceback.py /^ class UnhashableException(Exception):$/;" c function:TestTracebackException.test_unhashable +UnhashableException Lib/test/test_traceback.py /^ class UnhashableException(Exception):$/;" c function:TracebackFormatTests.test_unhashable +UnicodeData Tools/unicode/makeunicodedata.py /^class UnicodeData:$/;" c +UnicodeDatabaseTest Lib/test/test_unicodedata.py /^class UnicodeDatabaseTest(unittest.TestCase):$/;" c +UnicodeDecodeError_init Objects/exceptions.c /^UnicodeDecodeError_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +UnicodeDecodeError_str Objects/exceptions.c /^UnicodeDecodeError_str(PyObject *self)$/;" f file: +UnicodeEncodeError_init Objects/exceptions.c /^UnicodeEncodeError_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +UnicodeEncodeError_str Objects/exceptions.c /^UnicodeEncodeError_str(PyObject *self)$/;" f file: +UnicodeError_clear Objects/exceptions.c /^UnicodeError_clear(PyUnicodeErrorObject *self)$/;" f file: +UnicodeError_dealloc Objects/exceptions.c /^UnicodeError_dealloc(PyUnicodeErrorObject *self)$/;" f file: +UnicodeError_members Objects/exceptions.c /^static PyMemberDef UnicodeError_members[] = {$/;" v file: +UnicodeError_traverse Objects/exceptions.c /^UnicodeError_traverse(PyUnicodeErrorObject *self, visitproc visit, void *arg)$/;" f file: +UnicodeEscapeTest Lib/test/test_codecs.py /^class UnicodeEscapeTest(ReadTest, unittest.TestCase):$/;" c +UnicodeFileTests Lib/test/test_unicode_file_functions.py /^class UnicodeFileTests(unittest.TestCase):$/;" c +UnicodeFunctionsTest Lib/test/test_unicodedata.py /^class UnicodeFunctionsTest(UnicodeDatabaseTest):$/;" c +UnicodeMethodsTest Lib/test/test_unicodedata.py /^class UnicodeMethodsTest(unittest.TestCase):$/;" c +UnicodeMiscTest Lib/test/test_unicodedata.py /^class UnicodeMiscTest(UnicodeDatabaseTest):$/;" c +UnicodeNFCFileTests Lib/test/test_unicode_file_functions.py /^class UnicodeNFCFileTests(UnicodeFileTests):$/;" c +UnicodeNFDFileTests Lib/test/test_unicode_file_functions.py /^class UnicodeNFDFileTests(UnicodeFileTests):$/;" c +UnicodeNFKCFileTests Lib/test/test_unicode_file_functions.py /^class UnicodeNFKCFileTests(UnicodeFileTests):$/;" c +UnicodeNFKDFileTests Lib/test/test_unicode_file_functions.py /^class UnicodeNFKDFileTests(UnicodeFileTests):$/;" c +UnicodeNamesTest Lib/test/test_ucn.py /^class UnicodeNamesTest(unittest.TestCase):$/;" c +UnicodeReadFileObjectClassTestCase Lib/test/test_socket.py /^class UnicodeReadFileObjectClassTestCase(FileObjectClassTestCase):$/;" c +UnicodeReadWriteFileObjectClassTestCase Lib/test/test_socket.py /^class UnicodeReadWriteFileObjectClassTestCase(FileObjectClassTestCase):$/;" c +UnicodeTest Lib/test/test_array.py /^class UnicodeTest(StringTest, unittest.TestCase):$/;" c +UnicodeTest Lib/test/test_tarfile.py /^class UnicodeTest:$/;" c +UnicodeTest Lib/test/test_unicode.py /^ unittest.TestCase):$/;" c +UnicodeTestCase Lib/test/test_ctypes/test_unicode.py /^class UnicodeTestCase(unittest.TestCase):$/;" c +UnicodeTranslateError_init Objects/exceptions.c /^UnicodeTranslateError_init(PyUnicodeErrorObject *self, PyObject *args,$/;" f file: +UnicodeTranslateError_str Objects/exceptions.c /^UnicodeTranslateError_str(PyObject *self)$/;" f file: +UnicodeTranslationsPluralTest Lib/test/test_gettext.py /^class UnicodeTranslationsPluralTest(GettextBaseTest):$/;" c +UnicodeTranslationsTest Lib/test/test_gettext.py /^class UnicodeTranslationsTest(GettextBaseTest):$/;" c +UnicodeWriteFileObjectClassTestCase Lib/test/test_socket.py /^class UnicodeWriteFileObjectClassTestCase(FileObjectClassTestCase):$/;" c +UnimplementedFileMode Lib/http/client.py /^class UnimplementedFileMode(HTTPException):$/;" c +UninitialisedConnectionTests Lib/test/test_sqlite3/test_dbapi.py /^class UninitialisedConnectionTests(unittest.TestCase):$/;" c +Union Lib/typing.py /^def Union(self, parameters):$/;" f +Union Tools/c-analyzer/c_parser/info.py /^class Union(_StructUnion):$/;" c +UnionTests Lib/test/test_types.py /^class UnionTests(unittest.TestCase):$/;" c +UnionTests Lib/test/test_typing.py /^class UnionTests(BaseTestCase):$/;" c +UnionType Lib/types.py /^UnionType = type(int | str)$/;" v +UnionType_Type Modules/_ctypes/_ctypes.c /^static PyTypeObject UnionType_Type = {$/;" v file: +UnionType_new Modules/_ctypes/_ctypes.c /^UnionType_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +UnionType_setattro Modules/_ctypes/_ctypes.c /^UnionType_setattro(PyObject *self, PyObject *key, PyObject *value)$/;" f file: +Union_Type Modules/_ctypes/_ctypes.c /^static PyTypeObject Union_Type = {$/;" v file: +UniqueAddressHeader Lib/email/headerregistry.py /^class UniqueAddressHeader(AddressHeader):$/;" c +UniqueDateHeader Lib/email/headerregistry.py /^class UniqueDateHeader(DateHeader):$/;" c +UniqueEnum Lib/test/test_enum.py /^ class UniqueEnum(Enum):$/;" c function:TestSpecial.test_no_duplicates +UniqueException Lib/test/test_contextlib.py /^ class UniqueException(Exception): pass$/;" c function:TestBaseExitStack.test_dont_reraise_RuntimeError +UniqueRuntimeError Lib/test/test_contextlib.py /^ class UniqueRuntimeError(RuntimeError): pass$/;" c function:TestBaseExitStack.test_dont_reraise_RuntimeError +UniqueSingleAddressHeader Lib/email/headerregistry.py /^class UniqueSingleAddressHeader(SingleAddressHeader):$/;" c +UniqueUnstructuredHeader Lib/email/headerregistry.py /^class UniqueUnstructuredHeader(UnstructuredHeader):$/;" c +UnivariateCommonMixin Lib/test/test_statistics.py /^class UnivariateCommonMixin:$/;" c +UnivariateTypeMixin Lib/test/test_statistics.py /^class UnivariateTypeMixin:$/;" c +UnixBrowser Lib/webbrowser.py /^class UnixBrowser(BaseBrowser):$/;" c +UnixCCompiler Tools/c-analyzer/distutils/unixccompiler.py /^class UnixCCompiler(CCompiler):$/;" c +UnixDatagramHandlerTest Lib/test/test_logging.py /^class UnixDatagramHandlerTest(DatagramHandlerTest):$/;" c +UnixDatagramServer Lib/socketserver.py /^ class UnixDatagramServer(UDPServer):$/;" c class:ThreadingTCPServer +UnixEventLoopTestsMixin Lib/test/test_asyncio/test_events.py /^ class UnixEventLoopTestsMixin(EventLoopTestsMixin):$/;" c class:SubprocessTestsMixin +UnixGetpassTest Lib/test/test_getpass.py /^class UnixGetpassTest(unittest.TestCase):$/;" c +UnixHTTPServer Lib/test/test_asyncio/utils.py /^ class UnixHTTPServer(socketserver.UnixStreamServer, HTTPServer):$/;" c function:_run_test_server +UnixReadPipeTransportTests Lib/test/test_asyncio/test_unix_events.py /^class UnixReadPipeTransportTests(test_utils.TestCase):$/;" c +UnixSSLWSGIServer Lib/test/test_asyncio/utils.py /^ class UnixSSLWSGIServer(SSLWSGIServerMixin, SilentUnixWSGIServer):$/;" c function:_run_test_server +UnixSocketHandlerTest Lib/test/test_logging.py /^class UnixSocketHandlerTest(SocketHandlerTest):$/;" c +UnixSocketTestBase Lib/test/test_socket.py /^class UnixSocketTestBase(SocketTestBase):$/;" c +UnixStreamBase Lib/test/test_socket.py /^class UnixStreamBase(UnixSocketTestBase):$/;" c +UnixStreamServer Lib/socketserver.py /^ class UnixStreamServer(TCPServer):$/;" c class:ThreadingTCPServer +UnixSysLogHandlerTest Lib/test/test_logging.py /^class UnixSysLogHandlerTest(SysLogHandlerTest):$/;" c +UnixWSGIServer Lib/test/test_asyncio/utils.py /^ class UnixWSGIServer(UnixHTTPServer, WSGIServer):$/;" c function:_run_test_server +UnixWritePipeTransportTests Lib/test/test_asyncio/test_unix_events.py /^class UnixWritePipeTransportTests(test_utils.TestCase):$/;" c +UnknownFileError Tools/c-analyzer/distutils/errors.py /^class UnknownFileError (CCompilerError):$/;" c +UnknownHandler Lib/urllib/request.py /^class UnknownHandler(BaseHandler):$/;" c +UnknownProtocol Lib/http/client.py /^class UnknownProtocol(HTTPException):$/;" c +UnknownTransferEncoding Lib/http/client.py /^class UnknownTransferEncoding(HTTPException):$/;" c +UnlimitedSequenceClass Lib/test/test_iter.py /^class UnlimitedSequenceClass:$/;" c +Unmap Lib/test/test_tkinter/test_misc.py /^ Unmap = '18'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Unmap Lib/tkinter/__init__.py /^ Unmap = '18'$/;" v class:EventType +Unmarshaller Lib/xmlrpc/client.py /^class Unmarshaller:$/;" c +Unorderable Lib/test/test_pprint.py /^class Unorderable:$/;" c +UnorderableRow Lib/test/test_sqlite3/test_dump.py /^ class UnorderableRow:$/;" c function:DumpTests.test_unorderable_row +Unpack Lib/typing.py /^def Unpack(self, parameters):$/;" f +UnpackIteratorTest Lib/test/test_struct.py /^class UnpackIteratorTest(unittest.TestCase):$/;" c +UnpackTests Lib/test/test_typing.py /^class UnpackTests(BaseTestCase):$/;" c +Unpacker Lib/xdrlib.py /^class Unpacker:$/;" c +UnparseTestCase Lib/test/test_unparse.py /^class UnparseTestCase(ASTTestCase):$/;" c +UnparsedEntityDecl Modules/pyexpat.c /^ UnparsedEntityDecl,$/;" e enum:HandlerTypes file: +UnparsedEntityDeclHandler Lib/test/test_pyexpat.py /^ def UnparsedEntityDeclHandler(self, *args):$/;" m class:ParseTest.Outputter +Unpickler Lib/test/test_pickle.py /^ Unpickler = pickle._Unpickler$/;" v class:PyPickleTests +UnpicklerMemoProxyObject Modules/_pickle.c /^} UnpicklerMemoProxyObject;$/;" t typeref:struct:__anon453 file: +UnpicklerMemoProxyType Modules/_pickle.c /^ PyTypeObject *UnpicklerMemoProxyType;$/;" m struct:__anon448 file: +UnpicklerMemoProxy_New Modules/_pickle.c /^UnpicklerMemoProxy_New(UnpicklerObject *unpickler)$/;" f file: +UnpicklerMemoProxy_clear Modules/_pickle.c /^UnpicklerMemoProxy_clear(UnpicklerMemoProxyObject *self)$/;" f file: +UnpicklerMemoProxy_dealloc Modules/_pickle.c /^UnpicklerMemoProxy_dealloc(UnpicklerMemoProxyObject *self)$/;" f file: +UnpicklerMemoProxy_traverse Modules/_pickle.c /^UnpicklerMemoProxy_traverse(UnpicklerMemoProxyObject *self,$/;" f file: +UnpicklerObject Modules/_pickle.c /^typedef struct UnpicklerObject {$/;" s file: +UnpicklerObject Modules/_pickle.c /^} UnpicklerObject;$/;" t typeref:struct:UnpicklerObject file: +Unpickler_Type Modules/_pickle.c /^ PyTypeObject *Unpickler_Type;$/;" m struct:__anon448 file: +Unpickler_clear Modules/_pickle.c /^Unpickler_clear(UnpicklerObject *self)$/;" f file: +Unpickler_dealloc Modules/_pickle.c /^Unpickler_dealloc(UnpicklerObject *self)$/;" f file: +Unpickler_get_memo Modules/_pickle.c /^Unpickler_get_memo(UnpicklerObject *self, void *Py_UNUSED(ignored))$/;" f file: +Unpickler_get_persload Modules/_pickle.c /^Unpickler_get_persload(UnpicklerObject *self, void *Py_UNUSED(ignored))$/;" f file: +Unpickler_getsets Modules/_pickle.c /^static PyGetSetDef Unpickler_getsets[] = {$/;" v file: +Unpickler_methods Modules/_pickle.c /^static struct PyMethodDef Unpickler_methods[] = {$/;" v typeref:struct:PyMethodDef file: +Unpickler_set_memo Modules/_pickle.c /^Unpickler_set_memo(UnpicklerObject *self, PyObject *obj, void *Py_UNUSED(ignored))$/;" f file: +Unpickler_set_persload Modules/_pickle.c /^Unpickler_set_persload(UnpicklerObject *self, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +Unpickler_traverse Modules/_pickle.c /^Unpickler_traverse(UnpicklerObject *self, visitproc visit, void *arg)$/;" f file: +UnpicklingError Lib/pickle.py /^class UnpicklingError(PickleError):$/;" c +UnpicklingError Modules/_pickle.c /^ PyObject *UnpicklingError;$/;" m struct:__anon448 file: +Unprintable Lib/test/test_traceback.py /^ class Unprintable:$/;" c function:BaseExceptionReportingTests.test_exception_with_invalid_notes +UnquotingTests Lib/test/test_urllib.py /^class UnquotingTests(unittest.TestCase):$/;" c +UnraisableHookArgsType Python/errors.c /^static PyTypeObject UnraisableHookArgsType;$/;" v file: +UnraisableHookArgs_desc Python/errors.c /^static PyStructSequence_Desc UnraisableHookArgs_desc = {$/;" v file: +UnraisableHookArgs_fields Python/errors.c /^static PyStructSequence_Field UnraisableHookArgs_fields[] = {$/;" v file: +UnraisableHookTest Lib/test/test_sys.py /^class UnraisableHookTest(unittest.TestCase):$/;" c +Unrelated Lib/test/test_descr.py /^ class Unrelated(object):$/;" c function:.test_slots_descriptor +UnrelatedProtocol Lib/test/test_typing.py /^ class UnrelatedProtocol(Protocol):$/;" c function:ProtocolTests.test_implicit_issubclass_between_two_protocols +Unrepresentable Lib/test/test_traceback.py /^class Unrepresentable:$/;" c +UnsafeHTTPConnection Lib/test/test_httplib.py /^ class UnsafeHTTPConnection(client.HTTPConnection):$/;" c function:BasicTest.test_putrequest_override_domain_validation +UnsafeHTTPConnection Lib/test/test_httplib.py /^ class UnsafeHTTPConnection(client.HTTPConnection):$/;" c function:BasicTest.test_putrequest_override_encoding +UnsafeHTTPConnection Lib/test/test_httplib.py /^ class UnsafeHTTPConnection(client.HTTPConnection):$/;" c function:BasicTest.test_putrequest_override_host_validation +UnsafeMailcapInput Lib/mailcap.py /^class UnsafeMailcapInput(Warning):$/;" c +Unseekable Lib/test/test_zipfile/test_core.py /^class Unseekable:$/;" c +UnseekableIO Lib/test/audiotests.py /^class UnseekableIO(io.FileIO):$/;" c +UnseekableIO Lib/test/pickletester.py /^class UnseekableIO(io.BytesIO):$/;" c +UnseekableIO Lib/test/test_gzip.py /^class UnseekableIO(io.BytesIO):$/;" c +UnseekableIO Lib/test/test_imghdr.py /^class UnseekableIO(io.FileIO):$/;" c +UnseekableReader Lib/test/test_io.py /^ class UnseekableReader(self.MockUnseekableIO):$/;" c function:IOTest.test_optional_abilities.text_reader +UnseekableTests Lib/test/test_zipfile/test_core.py /^class UnseekableTests(unittest.TestCase):$/;" c +UnseekableWriter Lib/test/test_io.py /^ class UnseekableWriter(self.MockUnseekableIO):$/;" c function:IOTest.test_optional_abilities.text_writer +UnsetVar Modules/_tkinter.c /^UnsetVar(TkappObject *self, PyObject *args, int flags)$/;" f file: +UnsignedByteTest Lib/test/test_array.py /^class UnsignedByteTest(UnsignedNumberTest, unittest.TestCase):$/;" c +UnsignedIntTest Lib/test/test_array.py /^class UnsignedIntTest(UnsignedNumberTest, unittest.TestCase):$/;" c +UnsignedLongLongTest Lib/test/test_array.py /^class UnsignedLongLongTest(UnsignedNumberTest, unittest.TestCase):$/;" c +UnsignedLongTest Lib/test/test_array.py /^class UnsignedLongTest(UnsignedNumberTest, unittest.TestCase):$/;" c +UnsignedNumberTest Lib/test/test_array.py /^class UnsignedNumberTest(IntegerNumberTest):$/;" c +UnsignedShortTest Lib/test/test_array.py /^class UnsignedShortTest(UnsignedNumberTest, unittest.TestCase):$/;" c +Unsigned_TestCase Lib/test/test_capi/test_getargs.py /^class Unsigned_TestCase(unittest.TestCase):$/;" c +UnstructuredHeader Lib/email/headerregistry.py /^class UnstructuredHeader:$/;" c +UnstructuredTokenList Lib/email/_header_value_parser.py /^class UnstructuredTokenList(TokenList):$/;" c +UnsupportedError Tools/freeze/test/freeze.py /^class UnsupportedError(Exception):$/;" c +UnsupportedOperation Lib/_pyio.py /^ UnsupportedOperation = io.UnsupportedOperation$/;" v +UnsupportedOperation Lib/_pyio.py /^ class UnsupportedOperation(OSError, ValueError):$/;" c +UnsupportedOperation Lib/test/test_io.py /^ UnsupportedOperation = io.UnsupportedOperation$/;" v class:CMockUnseekableIO +UnsupportedOperation Lib/test/test_io.py /^ UnsupportedOperation = pyio.UnsupportedOperation$/;" v class:PyMockUnseekableIO +UnsupportedOperation Lib/test/test_memoryio.py /^ UnsupportedOperation = io.UnsupportedOperation$/;" v class:CBytesIOTest +UnsupportedOperation Lib/test/test_memoryio.py /^ UnsupportedOperation = io.UnsupportedOperation$/;" v class:CStringIOPickleTest +UnsupportedOperation Lib/test/test_memoryio.py /^ UnsupportedOperation = io.UnsupportedOperation$/;" v class:CStringIOTest +UnsupportedOperation Lib/test/test_memoryio.py /^ UnsupportedOperation = pyio.UnsupportedOperation$/;" v class:PyBytesIOTest +UnsupportedOperation Lib/test/test_memoryio.py /^ UnsupportedOperation = pyio.UnsupportedOperation$/;" v class:PyStringIOPickleTest +UnsupportedOperation Lib/test/test_memoryio.py /^ UnsupportedOperation = pyio.UnsupportedOperation$/;" v class:PyStringIOTest +UnsupportedSelectionError Tools/c-analyzer/c_common/scriptutil.py /^class UnsupportedSelectionError(Exception):$/;" c +UnsupportedType Tools/stringbench/stringbench.py /^class UnsupportedType(TypeError):$/;" c +Untagged_response Lib/imaplib.py /^Untagged_response = re.compile(br'\\* (?P[A-Z-]+)( (?P.*))?')$/;" v +Untagged_status Lib/imaplib.py /^Untagged_status = re.compile($/;" v +Untokenizer Lib/lib2to3/pgen2/tokenize.py /^class Untokenizer:$/;" c +Untokenizer Lib/tokenize.py /^class Untokenizer:$/;" c +Untotal Lib/test/test_typing.py /^ class Untotal(TypedDict, total=False):$/;" c function:TypedDictTests.test_multiple_inheritance +UnwindRecorder Lib/test/test_monitoring.py /^class UnwindRecorder(ExceptionRecorder):$/;" c +UpdateUIStrings Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT UpdateUIStrings(__in BOOTSTRAPPER_ACTION action) {$/;" f class:PythonBootstrapperApplication file: +UpdatingFile Lib/test/test_httplib.py /^ class UpdatingFile(io.TextIOBase):$/;" c function:BasicTest.test_send_updating_file +Upgrade Lib/msilib/schema.py /^Upgrade = Table('Upgrade')$/;" v +UpperProto Lib/test/test_asyncio/test_windows_events.py /^class UpperProto(asyncio.Protocol):$/;" c +UrlParseTestCase Lib/test/test_urlparse.py /^class UrlParseTestCase(unittest.TestCase):$/;" c +UsabilityTest Lib/test/test_decimal.py /^class UsabilityTest:$/;" c +Usage PCbuild/build.bat /^:Usage$/;" l +Usage PCbuild/prepare_libffi.bat /^:Usage$/;" l +Usage PCbuild/prepare_ssl.bat /^:Usage$/;" l +Usage PCbuild/prepare_tcltk.bat /^:Usage$/;" l +UsageTests Lib/test/test_baseexception.py /^class UsageTests(unittest.TestCase):$/;" c +UseBuiltinTypesTestCase Lib/test/test_xmlrpc.py /^class UseBuiltinTypesTestCase(unittest.TestCase):$/;" c +UseCache Lib/test/test_importlib/import_/test_caching.py /^class UseCache:$/;" c +UseFirstUserAgentWildcardTest Lib/test/test_robotparser.py /^class UseFirstUserAgentWildcardTest(BaseRobotTest, unittest.TestCase):$/;" c +UseTestMarker PCbuild/build.bat /^if "%~1"=="--test-marker" (set UseTestMarker=true) & shift & goto CheckOpts$/;" v +User Lib/test/test_dataclasses.py /^ class User:$/;" c function:TestCase.test_helper_asdict_builtin_containers +User Lib/test/test_dataclasses.py /^ class User:$/;" c function:TestCase.test_helper_asdict_nested +User Lib/test/test_dataclasses.py /^ class User:$/;" c function:TestCase.test_helper_astuple_builtin_containers +User Lib/test/test_dataclasses.py /^ class User:$/;" c function:TestCase.test_helper_astuple_nested +User Lib/test/test_typing.py /^ class User: pass$/;" c function:TypeTests.test_type_basic +User Lib/test/test_typing.py /^ class User: pass$/;" c function:TypeTests.test_type_typevar +UserAgentGoogleMobileTest Lib/test/test_robotparser.py /^class UserAgentGoogleMobileTest(UserAgentOrderingTest):$/;" c +UserAgentOrderingTest Lib/test/test_robotparser.py /^class UserAgentOrderingTest(BaseRobotTest, unittest.TestCase):$/;" c +UserAgentWildcardTest Lib/test/test_robotparser.py /^class UserAgentWildcardTest(BaseRobotTest, unittest.TestCase):$/;" c +UserClass Lib/test/test_gc.py /^ class UserClass:$/;" c function:GCTests.test_is_tracked +UserClassSlots Lib/test/test_gc.py /^ class UserClassSlots:$/;" c function:GCTests.test_is_tracked +UserDataHandler Lib/test/test_minidom.py /^ class UserDataHandler:$/;" c class:MinidomTest +UserDataHandler Lib/xml/dom/__init__.py /^class UserDataHandler:$/;" c +UserDict Lib/collections/__init__.py /^class UserDict(_collections_abc.MutableMapping):$/;" c +UserDictTest Lib/test/test_userdict.py /^class UserDictTest(mapping_tests.TestHashMappingProtocol):$/;" c +UserFloatSlots Lib/test/test_gc.py /^ class UserFloatSlots(float):$/;" c function:GCTests.test_is_tracked +UserId Lib/test/test_dataclasses.py /^ class UserId:$/;" c function:TestCase.test_helper_asdict_nested +UserId Lib/test/test_dataclasses.py /^ class UserId:$/;" c function:TestCase.test_helper_astuple_nested +UserInputTaggingDelegator Lib/idlelib/pyshell.py /^class UserInputTaggingDelegator(Delegator):$/;" c +UserInt Lib/test/test_gc.py /^ class UserInt(int):$/;" c function:GCTests.test_is_tracked +UserIntSlots Lib/test/test_gc.py /^ class UserIntSlots(int):$/;" c function:GCTests.test_is_tracked +UserList Lib/collections/__init__.py /^class UserList(_collections_abc.MutableSequence):$/;" c +UserListTest Lib/test/test_userlist.py /^class UserListTest(list_tests.CommonTest):$/;" c +UserLong Lib/test/test_descr.py /^ class UserLong(object):$/;" c function:AAAPTypesLongInitTest.test_pytype_long_ready +UserString Lib/collections/__init__.py /^class UserString(_collections_abc.Sequence):$/;" c +UserStringTest Lib/test/test_userstring.py /^ ):$/;" c +UsingDeprecatedTrashcanMacro Include/cpython/object.h /^Py_DEPRECATED(3.11) typedef int UsingDeprecatedTrashcanMacro;$/;" t +Using__package__ Lib/test/test_importlib/import_/test___package__.py /^class Using__package__:$/;" c +Using__package__PEP451 Lib/test/test_importlib/import_/test___package__.py /^class Using__package__PEP451(Using__package__):$/;" c +UstarReadTest Lib/test/test_tarfile.py /^class UstarReadTest(ReadTest, unittest.TestCase):$/;" c +UstarUnicodeTest Lib/test/test_tarfile.py /^class UstarUnicodeTest(UnicodeTest, unittest.TestCase):$/;" c +UtilTest Lib/idlelib/idle_test/test_util.py /^class UtilTest(unittest.TestCase):$/;" c +UtilityTests Lib/test/test_wsgiref.py /^class UtilityTests(TestCase):$/;" c +Utility_Tests Lib/test/test_urllib.py /^class Utility_Tests(unittest.TestCase):$/;" c +Utility_Tests Lib/test/test_urlparse.py /^class Utility_Tests(unittest.TestCase):$/;" c +UtimeTests Lib/test/test_os.py /^class UtimeTests(unittest.TestCase):$/;" c +V Lib/test/test_binop.py /^class V(OperationLogger):$/;" c +V Lib/test/test_ctypes/test_arrays.py /^ class V(U):$/;" c function:ArrayTestCase.test_subclass +V Lib/test/test_functools.py /^ class V(c.Sized, S):$/;" c function:TestSingleDispatch.test_mro_conflicts +V Lib/test/test_genericalias.py /^V = TypeVar('V')$/;" v +V Lib/test/test_statistics.py /^ class V(T): pass$/;" c function:CoerceTest.check_type_coercions +V Lib/test/test_typing.py /^ class V(T): pass$/;" c function:TypeVarTests.test_cannot_subclass +V Lib/test/test_typing.py /^ class V(TypeVar): pass$/;" c function:TypeVarTests.test_cannot_subclass +V1 Modules/expat/xmlparse.c 2473;" d file: +V1 Modules/expat/xmlparse.c 2478;" d file: +V2 Modules/expat/xmlparse.c 2474;" d file: +V2 Modules/expat/xmlparse.c 2479;" d file: +VA Lib/test/test_inspect.py /^ class VA(metaclass=Meta):$/;" c function:TestClassesAndFunctions.test_classify_DynamicClassAttribute +VAL1 Lib/test/test_enum.py /^ VAL1 = 'val1'$/;" v class:TestSpecial.test_missing_exceptions_reset.TestEnum +VAL2 Lib/test/test_enum.py /^ VAL2 = 'val2'$/;" v class:TestSpecial.test_missing_exceptions_reset.TestEnum +VALIDATE_ARRAY_NODE Python/hamt.c 380;" d file: +VALIDATE_ARRAY_NODE Python/hamt.c 383;" d file: +VALIDATE_POSITIONS Python/ast.c 27;" d file: +VALIDATION_ERR Lib/xml/dom/__init__.py /^VALIDATION_ERR = 16$/;" v +VALID_FILES Lib/test/test_tomllib/test_data.py /^VALID_FILES = tuple((DATA_DIR \/ "valid").glob("**\/*.toml"))$/;" v +VALID_FILES_EXPECTED Lib/test/test_tomllib/test_data.py /^VALID_FILES_EXPECTED = tuple(_expected_files)$/;" v +VALID_KEYS Lib/test/test_zoneinfo/test_zoneinfo_property.py /^VALID_KEYS = _valid_keys()$/;" v +VALID_MODULE_NAME Lib/unittest/loader.py /^VALID_MODULE_NAME = re.compile(r'[_a-z]\\w*\\.py$', re.IGNORECASE)$/;" v +VALID_READ_BUFFER Modules/_io/bufferedio.c 368;" d file: +VALID_UNDERSCORE_LITERALS Lib/test/test_grammar.py /^VALID_UNDERSCORE_LITERALS = [$/;" v +VALID_WRITE_BUFFER Modules/_io/bufferedio.c 371;" d file: +VALUE Modules/_testinternalcapi.c 218;" d file: +VAR Lib/test/test_unittest/test_async_case.py /^VAR = contextvars.ContextVar('VAR', default=())$/;" v +VARARG_AND_POSONLY_METHODDEF Modules/clinic/_testclinic.c.h 2394;" d +VARARG_METHODDEF Modules/clinic/_testclinic.c.h 2430;" d +VARARG_WITH_DEFAULT_METHODDEF Modules/clinic/_testclinic.c.h 2487;" d +VARARG_WITH_ONLY_DEFAULTS_METHODDEF Modules/clinic/_testclinic.c.h 2555;" d +VARIABLE Tools/c-analyzer/c_parser/info.py /^ VARIABLE = 'variable'$/;" v class:KIND +VARIANT_ALSO_NEGOTIATES Lib/http/__init__.py /^ VARIANT_ALSO_NEGOTIATES = 506, 'Variant Also Negotiates'$/;" v class:HTTPStatus +VARIANT_ALSO_NEGOTIATES Lib/test/test_httplib.py /^ VARIANT_ALSO_NEGOTIATES = 506, 'Variant Also Negotiates'$/;" v class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +VARIANT_BOOL Lib/ctypes/wintypes.py /^class VARIANT_BOOL(ctypes._SimpleCData):$/;" c +VARIANT_FALSE Modules/_ctypes/cfield.c 643;" d file: +VARIANT_TRUE Modules/_ctypes/cfield.c 644;" d file: +VAR_DECL Tools/c-analyzer/c_parser/parser/_common.py /^VAR_DECL = set_capture_groups(_VAR_DECL, ($/;" v +VAR_KEYWORD Lib/inspect.py /^ VAR_KEYWORD = _VAR_KEYWORD$/;" v class:Parameter +VAR_KEYWORD Lib/inspect.py /^ VAR_KEYWORD = 'variadic keyword'$/;" v class:_ParameterKind +VAR_POSITIONAL Lib/inspect.py /^ VAR_POSITIONAL = _VAR_POSITIONAL$/;" v class:Parameter +VAR_POSITIONAL Lib/inspect.py /^ VAR_POSITIONAL = 'variadic positional'$/;" v class:_ParameterKind +VA_LIST_IS_ARRAY Include/pymacconfig.h 27;" d +VA_LIST_IS_ARRAY Include/pymacconfig.h 29;" d +VBAR Include/internal/pycore_token.h 34;" d +VBAR Lib/lib2to3/pgen2/token.py /^VBAR = 18$/;" v +VBAR Lib/token.py /^VBAR = 18$/;" v +VBAREQUAL Include/internal/pycore_token.h 58;" d +VBAREQUAL Lib/lib2to3/pgen2/token.py /^VBAREQUAL = 43$/;" v +VBAREQUAL Lib/token.py /^VBAREQUAL = 42$/;" v +VBase Modules/unicodedata.c 485;" d file: +VCVARSALL PCbuild/prepare_libffi.bat /^ for \/F "tokens=*" %%i in ('"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere.exe" -property installationPath -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64') DO @(set VCVARSALL="%%i\\VC\\Auxiliary\\Build\\vcvarsall.bat")$/;" v +VCVARS_PLATFORM PCbuild/prepare_libffi.bat /^set VCVARS_PLATFORM=%1$/;" v +VCount Modules/unicodedata.c 488;" d file: +VENUS Lib/test/test_enum.py /^ VENUS = (4.869e+24, 6.0518e6)$/;" v class:TestSpecial.test_init.Planet +VENVDIR Doc/Makefile /^VENVDIR = .\/venv$/;" m +VENVDIR Tools/peg_generator/Makefile /^VENVDIR ?= .\/venv$/;" m +VENVPYTHON Tools/peg_generator/Makefile /^VENVPYTHON ?= $(VENVDIR)\/bin\/python$/;" m +VENV_DIRS_ONLY PC/layout/main.py /^VENV_DIRS_ONLY = FileNameSet("venv", "ensurepip")$/;" v +VENV_LANDMARK Modules/getpath.py /^ VENV_LANDMARK = 'pyvenv.cfg'$/;" v +VERBOSE Lib/test/test_logging.py /^VERBOSE = 115$/;" v +VERBOSE Mac/BuildScript/build-installer.py /^VERBOSE = 1$/;" v +VERBOSE Modules/_sre/sre.c 55;" d file: +VERBOSITY Tools/c-analyzer/c_common/logging.py /^VERBOSITY = 3$/;" v +VERBOSITY Tools/c-analyzer/c_common/scriptutil.py /^VERBOSITY = 3$/;" v +VERSION Lib/random.py /^ VERSION = 3 # used by getstate\/setstate$/;" v class:Random +VERSION Lib/xml/etree/ElementTree.py /^VERSION = "1.3.0"$/;" v +VERSION Tools/c-analyzer/distutils/msvc9compiler.py /^VERSION = get_build_version()$/;" v +VERSION Tools/stringbench/stringbench.py /^VERSION = '2.0'$/;" v +VERSION Tools/unicode/makeunicodedata.py /^VERSION = "3.3"$/;" v +VERSIONS Lib/gettext.py /^ VERSIONS = (0, 1)$/;" v class:GNUTranslations +VERSION_MAJOR Lib/test/test_getpath.py /^ VERSION_MAJOR=9, # fixed version number for ease$/;" v class:MockGetPathTests +VERSION_MINOR Lib/test/test_getpath.py /^ VERSION_MINOR=8, # of testing$/;" v class:MockGetPathTests +VERSION_RE Tools/msi/purge.py /^VERSION_RE = re.compile(r'(\\d+\\.\\d+\\.\\d+)([A-Za-z_]+\\d+)?$')$/;" v +VERTICAL Lib/tkinter/constants.py /^VERTICAL='vertical'$/;" v +VERY_LARGE Lib/test/test_capi/test_getargs.py /^VERY_LARGE = 0xFF0000121212121212121242$/;" v +VER_DOT PC/layout/support/constants.py /^VER_DOT = "{}.{}".format(VER_MAJOR, VER_MINOR)$/;" v +VER_FIELD3 PC/layout/support/constants.py /^VER_FIELD3 = VER_MICRO << 8 | VER_FIELD4$/;" v +VER_SUFFIX PC/layout/support/constants.py /^VER_SUFFIX = _get_suffix(VER_FIELD4)$/;" v +VFORK_USABLE Modules/_posixsubprocess.c 49;" d file: +VHGrid Lib/test/test_descr.py /^ class VHGrid(VerticalGrid, HorizontalGrid): pass$/;" c function:.test_mro_disagreement +VIEW_ADDR Objects/memoryobject.c 222;" d file: +VIRTUAL_ENV Lib/venv/scripts/nt/activate.bat /^set VIRTUAL_ENV=__VENV_DIR__$/;" v +VIRTUAL_ENV Lib/venv/scripts/nt/deactivate.bat /^set VIRTUAL_ENV=$/;" v +VIRTUAL_ENV_PROMPT Lib/venv/scripts/nt/activate.bat /^set VIRTUAL_ENV_PROMPT=__VENV_PROMPT__$/;" v +VIRTUAL_ENV_PROMPT Lib/venv/scripts/nt/deactivate.bat /^set VIRTUAL_ENV_PROMPT=$/;" v +VISIBLE_SIZE Objects/structseq.c 39;" d file: +VISIBLE_SIZE_TP Objects/structseq.c 40;" d file: +VISIT Python/compile.c 1206;" d file: +VISIT Python/symtable.c 1380;" d file: +VISITED Python/flowgraph.c 1202;" d file: +VISIT_CALLBACK_CONTEXT Modules/_sqlite/connection.c 351;" d file: +VISIT_CALLBACK_CONTEXT Modules/_sqlite/connection.c 371;" d file: +VISIT_CONTAINER Parser/action_helpers.c 1150;" d file: +VISIT_IN_SCOPE Python/compile.c 1209;" d file: +VISIT_QUIT Python/symtable.c 1377;" d file: +VISIT_SEQ Python/compile.c 1212;" d file: +VISIT_SEQ Python/symtable.c 1384;" d file: +VISIT_SEQ_IN_SCOPE Python/compile.c 1221;" d file: +VISIT_SEQ_TAIL Python/symtable.c 1394;" d file: +VISIT_SEQ_WITH_NULL Python/symtable.c 1404;" d file: +VOID_HANDLER Modules/pyexpat.c 459;" d file: +VOID_P_ALIGN Modules/_struct.c 92;" d file: +VPATH Lib/test/test_getpath.py /^ VPATH="",$/;" v class:MockGetPathTests +VSOCKPORT Lib/test/test_socket.py /^VSOCKPORT = 1234$/;" v +VSTOOLS PCbuild/env.bat /^for \/F "tokens=*" %%i in ('"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere.exe" -property installationPath -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64') DO @(set VSTOOLS=%%i\\VC\\Auxiliary\\Build\\vcvarsall.bat)$/;" v +VSTOOLS PCbuild/env.bat /^if not defined VSTOOLS set VSTOOLS=%VS100COMNTOOLS%$/;" v +VSTOOLS PCbuild/env.bat /^if not defined VSTOOLS set VSTOOLS=%VS110COMNTOOLS%$/;" v +VSTOOLS PCbuild/env.bat /^if not defined VSTOOLS set VSTOOLS=%VS120COMNTOOLS%$/;" v +VSTOOLS PCbuild/env.bat /^if not defined VSTOOLS set VSTOOLS=%VS140COMNTOOLS%$/;" v +VSTOOLS PCbuild/env.bat /^set VSTOOLS=$/;" v +VSWTC Modules/termios.c 547;" d file: +VSWTCH Modules/termios.c 551;" d file: +VS_BASE Tools/c-analyzer/distutils/msvc9compiler.py /^ VS_BASE = r"Software\\Microsoft\\VisualStudio\\%0.1f"$/;" v +VS_BASE Tools/c-analyzer/distutils/msvc9compiler.py /^ VS_BASE = r"Software\\Wow6432Node\\Microsoft\\VisualStudio\\%0.1f"$/;" v +VS_FIXEDFILEINFO PC/validate_ucrtbase.py /^class VS_FIXEDFILEINFO(Structure):$/;" c +VT Lib/curses/ascii.py /^VT = 0x0b # ^K$/;" v +VT Lib/typing.py /^VT = TypeVar('VT') # Value type.$/;" v +VT3270REGIME Lib/telnetlib.py /^VT3270REGIME = bytes([29]) # 3270 regime$/;" v +VTABLE Modules/expat/xmltok.c 76;" d file: +VTABLE Modules/expat/xmltok.c 781;" d file: +VTABLE Modules/expat/xmltok.c 782;" d file: +VTABLE Modules/expat/xmltok.c 916;" d file: +VTABLE Modules/expat/xmltok.c 917;" d file: +VTABLE1 Modules/expat/xmltok.c 68;" d file: +VTRACE Modules/_sre/sre.c 1610;" d file: +VTRACE Modules/_sre/sre.c 1612;" d file: +VT_co Lib/typing.py /^VT_co = TypeVar('VT_co', covariant=True) # Value type covariant containers.$/;" v +VVERBOSE Modules/_sre/sre.c 1606;" d file: +VW Lib/idlelib/idle_test/test_textview.py /^class VW(tv.ViewWindow): # Used in ViewWindowTest.$/;" c +VXWORKS Lib/test/test_utf8_mode.py /^VXWORKS = (sys.platform == "vxworks")$/;" v +V_co Lib/typing.py /^V_co = TypeVar('V_co', covariant=True) # Any type covariant containers.$/;" v +ValidBytes Lib/test/test_long.py /^ class ValidBytes:$/;" c function:LongTest.test_from_bytes +ValidateOperatingSystem Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ void ValidateOperatingSystem() {$/;" f class:PythonBootstrapperApplication file: +ValidationErr Lib/xml/dom/__init__.py /^class ValidationErr(DOMException):$/;" c +ValidationError Tools/peg_generator/pegen/validator.py /^class ValidationError(Exception):$/;" c +ValidationTest Lib/idlelib/idle_test/test_config_key.py /^class ValidationTest(unittest.TestCase):$/;" c +Validator Lib/idlelib/idle_test/test_config_key.py /^ class Validator(config_key.GetKeysFrame):$/;" c class:ValidationTest +Value Lib/email/_header_value_parser.py /^class Value(TokenList):$/;" c +Value Lib/multiprocessing/context.py /^ def Value(self, typecode_or_type, *args, lock=True):$/;" m class:BaseContext +Value Lib/multiprocessing/dummy/__init__.py /^class Value(object):$/;" c +Value Lib/multiprocessing/managers.py /^class Value(object):$/;" c +Value Lib/multiprocessing/sharedctypes.py /^def Value(typecode_or_type, *args, lock=True, ctx=None):$/;" f +Value Lib/test/_test_multiprocessing.py /^ Value = property(operator.attrgetter('manager.Value'))$/;" v class:ManagerMixin +Value Lib/test/_test_multiprocessing.py /^ Value = staticmethod(multiprocessing.Value)$/;" v class:ProcessesMixin +Value Lib/test/_test_multiprocessing.py /^ Value = staticmethod(multiprocessing.dummy.Value)$/;" v class:ThreadsMixin +Value Lib/test/test_baseexception.py /^ class Value(str):$/;" c function:ExceptionClassTests.test_setstate_refcount_no_crash +Value Lib/test/test_ctypes/test_array_in_pointer.py /^class Value(Structure):$/;" c +ValueProxy Lib/multiprocessing/managers.py /^class ValueProxy(BaseProxy):$/;" c +ValueProxy Lib/test/test_genericalias.py /^ ValueProxy = None$/;" v +ValueTerminal Lib/email/_header_value_parser.py /^class ValueTerminal(Terminal):$/;" c +Values Lib/optparse.py /^class Values:$/;" c +ValuesTestCase Lib/test/test_ctypes/test_values.py /^class ValuesTestCase(unittest.TestCase):$/;" c +ValuesView Lib/_collections_abc.py /^class ValuesView(MappingView, Collection):$/;" c +ValuesView Lib/typing.py /^ValuesView = _alias(collections.abc.ValuesView, 1)$/;" v +Var Lib/idlelib/idle_test/mock_tk.py /^class Var:$/;" c +Var Lib/test/test_tkinter/test_variables.py /^class Var(Variable):$/;" c +VarEvent Modules/_tkinter.c /^typedef struct VarEvent {$/;" s file: +VarEvent Modules/_tkinter.c /^} VarEvent;$/;" t typeref:struct:VarEvent file: +VarSizeTest Lib/test/test_ctypes/test_varsize_struct.py /^class VarSizeTest(unittest.TestCase):$/;" c +VarTrace Lib/idlelib/configdialog.py /^class VarTrace:$/;" c +VarTraceTest Lib/idlelib/idle_test/test_configdialog.py /^class VarTraceTest(unittest.TestCase):$/;" c +VarType Tools/c-analyzer/c_parser/info.py /^class VarType(namedtuple('VarType', 'typequal typespec abstract')):$/;" c +Variable Lib/tkinter/__init__.py /^class Variable:$/;" c +Variable Tools/c-analyzer/c_parser/info.py /^class Variable(Declaration):$/;" c +VariablesTreeItem Lib/idlelib/stackviewer.py /^class VariablesTreeItem(ObjectTreeItem):$/;" c +VarianceStdevMixin Lib/test/test_statistics.py /^class VarianceStdevMixin(UnivariateCommonMixin):$/;" c +Varies Lib/test/datetimetester.py /^ class Varies(tzinfo):$/;" c function:TestDateTimeTZ.test_mixed_compare +Varies Lib/test/datetimetester.py /^ class Varies(tzinfo):$/;" c function:TestTimeTZ.test_mixed_compare +Vec2D Lib/test/test_turtle.py /^Vec2D = turtle.Vec2D$/;" v +Vec2D Lib/turtle.py /^class Vec2D(tuple):$/;" c +Vector Lib/test/test_richcmp.py /^class Vector:$/;" c +VectorCallClass_members Modules/_testcapi/vectorcall.c /^PyMemberDef VectorCallClass_members[] = {$/;" v +VectorCallClass_methods Modules/_testcapi/vectorcall.c /^PyMethodDef VectorCallClass_methods[] = {$/;" v +VectorCallClass_slots Modules/_testcapi/vectorcall.c /^PyType_Slot VectorCallClass_slots[] = {$/;" v +VectorCallClass_tpcall Modules/_testcapi/vectorcall.c /^VectorCallClass_tpcall(PyObject *self, PyObject *args, PyObject *kwargs) {$/;" f +VectorCallClass_vectorcall Modules/_testcapi/vectorcall.c /^VectorCallClass_vectorcall(PyObject *callable,$/;" f +VectorComparisonMixin Lib/test/test_turtle.py /^class VectorComparisonMixin:$/;" c +VectorTest Lib/test/test_richcmp.py /^class VectorTest(unittest.TestCase):$/;" c +Verb Lib/msilib/schema.py /^Verb = Table('Verb')$/;" v +Verbosity Lib/test/support/_hypothesis_stubs/__init__.py /^class Verbosity(Enum):$/;" c +VerifyError Modules/_decimal/tests/deccheck.py /^class VerifyError(Exception):$/;" c +Version PC/layout/support/appxmanifest.py /^ Version="{}.{}.{}.0".format(VER_MAJOR, VER_MINOR, VER_FIELD3),$/;" v +Version PCbuild/build.bat /^:Version$/;" l +VersionInfoType Python/sysmodule.c /^static PyTypeObject VersionInfoType;$/;" v file: +VersionTestCase Lib/test/test_zlib.py /^class VersionTestCase(unittest.TestCase):$/;" c +VerticalGrid Lib/test/test_descr.py /^ class VerticalGrid(GridLayout): pass$/;" c function:.test_mro_disagreement +VerticalScrolledFrame Lib/idlelib/configdialog.py /^class VerticalScrolledFrame(Frame):$/;" c +VeryActiveThread Lib/test/test_winreg.py /^ class VeryActiveThread(threading.Thread):$/;" c function:LocalWinregTests.test_changing_value +VeryAnnotated Lib/test/_typed_dict_helper.py /^class VeryAnnotated(TypedDict, total=False):$/;" c +VerySpecificFilter Lib/test/test_logging.py /^class VerySpecificFilter(logging.Filter):$/;" c +ViewFrame Lib/idlelib/textview.py /^class ViewFrame(Frame):$/;" c +ViewFrameTest Lib/idlelib/idle_test/test_textview.py /^class ViewFrameTest(unittest.TestCase):$/;" c +ViewFunctionTest Lib/idlelib/idle_test/test_textview.py /^class ViewFunctionTest(unittest.TestCase):$/;" c +ViewWindow Lib/idlelib/textview.py /^class ViewWindow(Toplevel):$/;" c +ViewWindowTest Lib/idlelib/idle_test/test_textview.py /^class ViewWindowTest(unittest.TestCase):$/;" c +ViewWindow_spec Lib/idlelib/idle_test/htest.py /^ViewWindow_spec = {$/;" v +VirtualEvent Lib/test/test_tkinter/test_misc.py /^ VirtualEvent = '35' # undocumented$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +VirtualEvent Lib/tkinter/__init__.py /^ VirtualEvent = '35' # undocumented$/;" v class:EventType +VirtualPyObject Lib/test/test_cppext/extension.cpp /^VirtualPyObject::VirtualPyObject() {$/;" f class:VirtualPyObject +VirtualPyObject Lib/test/test_cppext/extension.cpp /^class VirtualPyObject : public PyObject {$/;" c file: +VirtualPyObject_Slots Lib/test/test_cppext/extension.cpp /^PyType_Slot VirtualPyObject_Slots[] = {$/;" v +VirtualPyObject_Spec Lib/test/test_cppext/extension.cpp /^PyType_Spec VirtualPyObject_Spec = {$/;" v +Visibility Lib/test/test_tkinter/test_misc.py /^ Visibility = '15'$/;" v class:MiscTest.test_eventtype_enum.CheckedEventType +Visibility Lib/tkinter/__init__.py /^ Visibility = '15'$/;" v class:EventType +Visitor Lib/test/test_ast.py /^ class Visitor(self.visitor_class):$/;" c function:BaseNodeVisitorCases.test_old_constant_nodes +Visitor Lib/test/test_peg_generator/test_pegen.py /^ class Visitor(GrammarVisitor):$/;" c class:TestGrammarVisitor +Visitor Lib/test/test_typing.py /^ class Visitor(G[T]):$/;" c function:GenericTests.test_nested +VisitorBase Parser/asdl.py /^class VisitorBase(object):$/;" c +VolumeSerialNumber Include/internal/pycore_fileutils_windows.h /^ LARGE_INTEGER VolumeSerialNumber;$/;" m struct:_FILE_STAT_BASIC_INFORMATION +W Lib/test/test_ctypes/test_arrays.py /^ class W(V):$/;" c function:ArrayTestCase.test_subclass +W Lib/test/test_ctypes/test_structures.py /^ class W(Structure):$/;" c function:StructureTestCase.test_positional_args +W Lib/test/test_descr.py /^ class W(object):$/;" c function:.test_slots_special +W Lib/test/test_enum.py /^ W = 1 << 1$/;" v class:OldTestIntFlag.test_format.NewPerm +W Lib/test/test_enum.py /^ W = 1 << 1$/;" v class:OldTestIntFlag.Perm +W Lib/test/test_statistics.py /^ class W(U): pass$/;" c function:CoerceTest.check_type_coercions +W Lib/test/test_typing.py /^ class W(X[int]):$/;" c function:GenericTests.test_init_subclass +W Lib/tkinter/constants.py /^W='w'$/;" v +WAIT_ACTIVE_CHILDREN_TIMEOUT Lib/test/_test_multiprocessing.py /^WAIT_ACTIVE_CHILDREN_TIMEOUT = 5.0$/;" v +WAIT_FOR_STDIN Modules/_tkinter.c 105;" d file: +WAIT_FOR_STDIN Modules/_tkinter.c 130;" d file: +WAIT_LOCK Include/pythread.h 33;" d +WAIT_STATUS_INT Modules/posixmodule.c 474;" d file: +WAIT_STATUS_INT Modules/posixmodule.c 478;" d file: +WAIT_TYPE Modules/posixmodule.c 473;" d file: +WAIT_TYPE Modules/posixmodule.c 477;" d file: +WARN Lib/logging/__init__.py /^WARN = WARNING$/;" v +WARN Python/structmember.c 102;" d file: +WARN Tools/c-analyzer/distutils/log.py /^WARN = 3$/;" v +WARNING Lib/logging/__init__.py /^WARNING = 30$/;" v +WARNING Lib/tkinter/messagebox.py /^WARNING = "warning"$/;" v +WARNINGS_FILTERS_MUTATED_METHODDEF Python/clinic/_warnings.c.h 238;" d +WARNINGS_WARN_EXPLICIT_METHODDEF Python/clinic/_warnings.c.h 137;" d +WARNINGS_WARN_METHODDEF Python/clinic/_warnings.c.h 31;" d +WARNING_PATTERN Doc/tools/check-warnings.py /^WARNING_PATTERN = re.compile($/;" v +WASI Tools/wasm/wasm_build.py /^WASI = Platform($/;" v +WASI_SDK_PATH Tools/wasm/wasm_build.py /^WASI_SDK_PATH = pathlib.Path(os.environ.get("WASI_SDK_PATH", "\/opt\/wasi-sdk"))$/;" v +WASMTOOLS Tools/wasm/wasm_build.py /^WASMTOOLS = SRCDIR \/ "Tools" \/ "wasm"$/;" v +WASM_DYNLOAD Tools/wasm/wasm_assets.py /^WASM_DYNLOAD = WASM_STDLIB \/ "lib-dynload"$/;" v +WASM_LIB Tools/wasm/wasm_assets.py /^WASM_LIB = pathlib.PurePath("lib")$/;" v +WASM_STDLIB Tools/wasm/wasm_assets.py /^WASM_STDLIB = ($/;" v +WASM_STDLIB_ZIP Tools/wasm/wasm_assets.py /^WASM_STDLIB_ZIP = ($/;" v +WASM_WEBSERVER Tools/wasm/wasm_build.py /^WASM_WEBSERVER = WASMTOOLS \/ "wasm_webserver.py"$/;" v +WAVE_FORMAT_EXTENSIBLE Lib/wave.py /^WAVE_FORMAT_EXTENSIBLE = 0xFFFE$/;" v +WAVE_FORMAT_PCM Lib/wave.py /^WAVE_FORMAT_PCM = 0x0001$/;" v +WCHAR Lib/ctypes/wintypes.py /^WCHAR = ctypes.c_wchar$/;" v +WCSTOK Python/initconfig.c 2587;" d file: +WCSTOK Python/initconfig.c 2589;" d file: +WC_ERR_INVALID_CHARS Objects/unicodeobject.c 6900;" d file: +WCharArray_get_value Modules/_ctypes/_ctypes.c /^WCharArray_get_value(CDataObject *self, void *Py_UNUSED(ignored))$/;" f file: +WCharArray_getsets Modules/_ctypes/_ctypes.c /^static PyGetSetDef WCharArray_getsets[] = {$/;" v file: +WCharArray_set_value Modules/_ctypes/_ctypes.c /^WCharArray_set_value(CDataObject *self, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +WCharPointersTestCase Lib/test/test_ctypes/test_prototypes.py /^class WCharPointersTestCase(unittest.TestCase):$/;" c +WCmdLineTests Lib/test/test_warnings/__init__.py /^class WCmdLineTests(BaseTest):$/;" c +WEDNESDAY Lib/calendar.py /^ WEDNESDAY = 2$/;" v class:Day +WEDNESDAY Lib/test/test_enum.py /^ WEDNESDAY = auto(), 'WED'$/;" v class:TestInternals.test_multiple_auto_on_line.Hah +WEEKDAY_RE Lib/http/cookiejar.py /^WEEKDAY_RE = re.compile($/;" v +WEST Lib/test/test_enum.py /^ WEST = 'west'$/;" v class:TestSpecial.setUp.Directional +WEXITSTATUS Modules/posixmodule.c 468;" d file: +WFERR_NESTEDTOODEEP Python/marshal.c 80;" d file: +WFERR_NOMEMORY Python/marshal.c 81;" d file: +WFERR_OK Python/marshal.c 78;" d file: +WFERR_UNMARSHALLABLE Python/marshal.c 79;" d file: +WFILE Python/marshal.c /^} WFILE;$/;" t typeref:struct:__anon699 file: +WFile Lib/test/test_argparse.py /^class WFile(object):$/;" c +WHEEL_DIR Tools/build/verify_ensurepip_wheels.py /^WHEEL_DIR = ENSURE_PIP_ROOT \/ "_bundled"$/;" v +WHILE_LOOP Python/compile.c /^enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END,$/;" e enum:fblocktype file: +WHITE Lib/test/test_enum.py /^ WHITE = -1$/;" v class:TestVerify.test_negative_alias.Color +WHITE Lib/test/test_enum.py /^ WHITE = RED|GREEN|BLUE$/;" v class:OldTestFlag.Color +WHITE Lib/test/test_enum.py /^ WHITE = RED|GREEN|BLUE$/;" v class:OldTestIntFlag.Color +WHITESPACE Lib/json/decoder.py /^WHITESPACE = re.compile(r'[ \\t\\n\\r]*', FLAGS)$/;" v +WHITESPACE Lib/re/_parser.py /^WHITESPACE = frozenset(" \\t\\n\\r\\v\\f")$/;" v +WHITESPACE_KEYS Lib/idlelib/config_key.py /^WHITESPACE_KEYS = ('Tab', 'Space', 'Return')$/;" v +WHITESPACE_STR Lib/json/decoder.py /^WHITESPACE_STR = ' \\t\\n\\r'$/;" v +WIDTH Tools/c-analyzer/c_common/tables.py /^WIDTH = 20$/;" v +WIFEXITED Modules/posixmodule.c 465;" d file: +WILDCARD_CHECK Python/compile.c 6547;" d file: +WILDCARD_CHECK Python/compile.c 7365;" d file: +WILDCARD_STAR_CHECK Python/compile.c 6550;" d file: +WILDCARD_STAR_CHECK Python/compile.c 7366;" d file: +WILL Lib/telnetlib.py /^WILL = bytes([251])$/;" v +WILL_OVERFLOW Objects/frameobject.c 171;" d file: +WIN32 Lib/test/_test_multiprocessing.py /^WIN32 = (sys.platform == "win32")$/;" v +WIN32_FIND_DATAA Lib/ctypes/wintypes.py /^class WIN32_FIND_DATAA(ctypes.Structure):$/;" c +WIN32_FIND_DATAW Lib/ctypes/wintypes.py /^class WIN32_FIND_DATAW(ctypes.Structure):$/;" c +WIN32_LEAN_AND_MEAN Include/internal/pycore_condvar.h 40;" d +WIN32_LEAN_AND_MEAN Modules/_io/fileio.c 41;" d file: +WIN32_LEAN_AND_MEAN Modules/_io/winconsoleio.c 26;" d file: +WIN32_LEAN_AND_MEAN Modules/_localemodule.c 39;" d file: +WIN32_LEAN_AND_MEAN Modules/_multiprocessing/multiprocessing.h 16;" d +WIN32_LEAN_AND_MEAN Modules/errnomodule.c 9;" d file: +WIN32_LEAN_AND_MEAN Modules/expat/winconfig.h 38;" d +WIN32_LEAN_AND_MEAN Modules/expat/winconfig.h 40;" d +WIN32_LEAN_AND_MEAN Modules/selectmodule.c 61;" d file: +WIN32_LEAN_AND_MEAN Modules/timemodule.c 34;" d file: +WIN32_LEAN_AND_MEAN PC/WinMain.c 5;" d file: +WIN32_LEAN_AND_MEAN PC/_testconsole.c 15;" d file: +WIN32_LEAN_AND_MEAN PC/python_uwp.cpp 6;" d file: +WIN32_LEAN_AND_MEAN Parser/myreadline.c 17;" d file: +WIN32_LEAN_AND_MEAN Python/sysmodule.c 41;" d file: +WIN64_MACHINE Lib/test/test_winreg.py /^WIN64_MACHINE = True if machine() == "AMD64" else False$/;" v +WINAPI_CONSTANT Modules/_winapi.c 2207;" d file: +WINAPI_CONSTANT Modules/overlapped.c 1998;" d file: +WINCONFIG_H Modules/expat/winconfig.h 36;" d +WINCONFIG_SEQUENCE Lib/idlelib/autocomplete_w.py /^WINCONFIG_SEQUENCE = ""$/;" v +WINDOW Lib/tkinter/tix.py /^WINDOW = 'window'$/;" v +WINDOWS_FEATURE_MACROS Lib/test/test_stable_abi_ctypes.py /^WINDOWS_FEATURE_MACROS = {'HAVE_FORK': False,$/;" v +WINDOWS_LEAN_AND_MEAN Modules/_winapi.c 43;" d file: +WINDOWS_LEAN_AND_MEAN Modules/overlapped.c 13;" d file: +WINDOWS_MODULES Tools/build/check_extension_modules.py /^WINDOWS_MODULES = {$/;" v +WINDOW_HAS_FLAGS Include/py_curses.h 43;" d +WINENV Lib/multiprocessing/popen_spawn_win32.py /^WINENV = not _path_eq(sys.executable, sys._base_executable)$/;" v +WINEXE Lib/multiprocessing/popen_spawn_win32.py /^WINEXE = (sys.platform == 'win32' and getattr(sys, 'frozen', False))$/;" v +WINEXE Lib/multiprocessing/spawn.py /^ WINEXE = False$/;" v +WINEXE Lib/multiprocessing/spawn.py /^ WINEXE = getattr(sys, 'frozen', False)$/;" v +WINFUNCTYPE Lib/ctypes/__init__.py /^ def WINFUNCTYPE(restype, *argtypes, **kw):$/;" f function:CFUNCTYPE +WINFUNCTYPE Lib/test/test_ctypes/test_funcptr.py /^ WINFUNCTYPE = CFUNCTYPE$/;" v +WINFUNCTYPE Lib/test/test_ctypes/test_functions.py /^ WINFUNCTYPE = CFUNCTYPE$/;" v +WINGET_ARGUMENTS PC/launcher2.c /^const wchar_t *WINGET_ARGUMENTS = L"install -q %s --exact --accept-package-agreements --source msstore";$/;" v +WINGET_COMMAND PC/launcher2.c /^const wchar_t *WINGET_COMMAND = L"Microsoft\\\\WindowsApps\\\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\\\\winget.exe";$/;" v +WINREG_CLOSEKEY_METHODDEF PC/clinic/winreg.c.h 169;" d +WINREG_CLOSEKEY_METHODDEF PC/clinic/winreg.c.h 1708;" d +WINREG_CONNECTREGISTRY_METHODDEF PC/clinic/winreg.c.h 1712;" d +WINREG_CONNECTREGISTRY_METHODDEF PC/clinic/winreg.c.h 191;" d +WINREG_CREATEKEYEX_METHODDEF PC/clinic/winreg.c.h 1720;" d +WINREG_CREATEKEYEX_METHODDEF PC/clinic/winreg.c.h 336;" d +WINREG_CREATEKEY_METHODDEF PC/clinic/winreg.c.h 1716;" d +WINREG_CREATEKEY_METHODDEF PC/clinic/winreg.c.h 261;" d +WINREG_DELETEKEYEX_METHODDEF PC/clinic/winreg.c.h 1728;" d +WINREG_DELETEKEYEX_METHODDEF PC/clinic/winreg.c.h 521;" d +WINREG_DELETEKEY_METHODDEF PC/clinic/winreg.c.h 1724;" d +WINREG_DELETEKEY_METHODDEF PC/clinic/winreg.c.h 453;" d +WINREG_DELETEVALUE_METHODDEF PC/clinic/winreg.c.h 1732;" d +WINREG_DELETEVALUE_METHODDEF PC/clinic/winreg.c.h 621;" d +WINREG_DISABLEREFLECTIONKEY_METHODDEF PC/clinic/winreg.c.h 1594;" d +WINREG_DISABLEREFLECTIONKEY_METHODDEF PC/clinic/winreg.c.h 1788;" d +WINREG_ENABLEREFLECTIONKEY_METHODDEF PC/clinic/winreg.c.h 1632;" d +WINREG_ENABLEREFLECTIONKEY_METHODDEF PC/clinic/winreg.c.h 1792;" d +WINREG_ENUMKEY_METHODDEF PC/clinic/winreg.c.h 1736;" d +WINREG_ENUMKEY_METHODDEF PC/clinic/winreg.c.h 681;" d +WINREG_ENUMVALUE_METHODDEF PC/clinic/winreg.c.h 1740;" d +WINREG_ENUMVALUE_METHODDEF PC/clinic/winreg.c.h 738;" d +WINREG_EXPANDENVIRONMENTSTRINGS_METHODDEF PC/clinic/winreg.c.h 1744;" d +WINREG_EXPANDENVIRONMENTSTRINGS_METHODDEF PC/clinic/winreg.c.h 777;" d +WINREG_FLUSHKEY_METHODDEF PC/clinic/winreg.c.h 1748;" d +WINREG_FLUSHKEY_METHODDEF PC/clinic/winreg.c.h 830;" d +WINREG_HKEYTYPE_CLOSE_METHODDEF PC/clinic/winreg.c.h 1692;" d +WINREG_HKEYTYPE_CLOSE_METHODDEF PC/clinic/winreg.c.h 21;" d +WINREG_HKEYTYPE_DETACH_METHODDEF PC/clinic/winreg.c.h 1696;" d +WINREG_HKEYTYPE_DETACH_METHODDEF PC/clinic/winreg.c.h 51;" d +WINREG_HKEYTYPE___ENTER___METHODDEF PC/clinic/winreg.c.h 1700;" d +WINREG_HKEYTYPE___ENTER___METHODDEF PC/clinic/winreg.c.h 72;" d +WINREG_HKEYTYPE___EXIT___METHODDEF PC/clinic/winreg.c.h 1704;" d +WINREG_HKEYTYPE___EXIT___METHODDEF PC/clinic/winreg.c.h 99;" d +WINREG_KEY Modules/getpath.py /^ WINREG_KEY = f'SOFTWARE\\\\Python\\\\PythonCore\\\\{PYWINVER}\\\\PythonPath'$/;" v +WINREG_LOADKEY_METHODDEF PC/clinic/winreg.c.h 1752;" d +WINREG_LOADKEY_METHODDEF PC/clinic/winreg.c.h 883;" d +WINREG_OPENKEYEX_METHODDEF PC/clinic/winreg.c.h 1071;" d +WINREG_OPENKEYEX_METHODDEF PC/clinic/winreg.c.h 1760;" d +WINREG_OPENKEY_METHODDEF PC/clinic/winreg.c.h 1756;" d +WINREG_OPENKEY_METHODDEF PC/clinic/winreg.c.h 954;" d +WINREG_QUERYINFOKEY_METHODDEF PC/clinic/winreg.c.h 1184;" d +WINREG_QUERYINFOKEY_METHODDEF PC/clinic/winreg.c.h 1764;" d +WINREG_QUERYREFLECTIONKEY_METHODDEF PC/clinic/winreg.c.h 1668;" d +WINREG_QUERYREFLECTIONKEY_METHODDEF PC/clinic/winreg.c.h 1796;" d +WINREG_QUERYVALUEEX_METHODDEF PC/clinic/winreg.c.h 1290;" d +WINREG_QUERYVALUEEX_METHODDEF PC/clinic/winreg.c.h 1772;" d +WINREG_QUERYVALUE_METHODDEF PC/clinic/winreg.c.h 1229;" d +WINREG_QUERYVALUE_METHODDEF PC/clinic/winreg.c.h 1768;" d +WINREG_SAVEKEY_METHODDEF PC/clinic/winreg.c.h 1356;" d +WINREG_SAVEKEY_METHODDEF PC/clinic/winreg.c.h 1776;" d +WINREG_SETVALUEEX_METHODDEF PC/clinic/winreg.c.h 1524;" d +WINREG_SETVALUEEX_METHODDEF PC/clinic/winreg.c.h 1784;" d +WINREG_SETVALUE_METHODDEF PC/clinic/winreg.c.h 1422;" d +WINREG_SETVALUE_METHODDEF PC/clinic/winreg.c.h 1780;" d +WINSDK_BASE Tools/c-analyzer/distutils/msvc9compiler.py /^ WINSDK_BASE = r"Software\\Microsoft\\Microsoft SDKs\\Windows"$/;" v +WINSDK_BASE Tools/c-analyzer/distutils/msvc9compiler.py /^ WINSDK_BASE = r"Software\\Wow6432Node\\Microsoft\\Microsoft SDKs\\Windows"$/;" v +WINSERVICE Lib/multiprocessing/popen_spawn_win32.py /^WINSERVICE = sys.executable.lower().endswith("pythonservice.exe")$/;" v +WINSERVICE Lib/multiprocessing/spawn.py /^ WINSERVICE = False$/;" v +WINSERVICE Lib/multiprocessing/spawn.py /^ WINSERVICE = sys.executable and sys.executable.lower().endswith("pythonservice.exe")$/;" v +WINSOUND_BEEP_METHODDEF PC/clinic/winsound.c.h 88;" d +WINSOUND_MESSAGEBEEP_METHODDEF PC/clinic/winsound.c.h 153;" d +WINSOUND_PLAYSOUND_METHODDEF PC/clinic/winsound.c.h 22;" d +WINTER Lib/test/test_enum.py /^ WINTER = 4$/;" v class:TestSpecial.setUp.Season +WINTER Lib/test/test_enum.py /^ WINTER = 4$/;" v class:TestSpecial.test_iteration_order.Season +WINVER PC/pyconfig.h 180;" d +WIN_VER Lib/test/test_winreg.py /^WIN_VER = sys.getwindowsversion()[:2]$/;" v +WITH Python/compile.c /^ WITH, ASYNC_WITH, HANDLER_CLEANUP, POP_VALUE, EXCEPTION_HANDLER,$/;" e enum:fblocktype file: +WITH_DECIMAL_CONTEXTVAR PC/pyconfig.h 500;" d +WITH_DOC_STRINGS PC/pyconfig.h 503;" d +WITH_EXCEPT_START Include/opcode.h 32;" d +WITH_FREELISTS PC/pyconfig.h 515;" d +WITH_MOD Modules/_asynciomodule.c 3667;" d file: +WITH_MOD Modules/_asynciomodule.c 3722;" d file: +WITH_PYLONG_MODULE Objects/longobject.c 33;" d file: +WITH_PYMALLOC PC/pyconfig.h 512;" d +WITH_PYMALLOC_RADIX_TREE Include/internal/pycore_obmalloc.h 185;" d +WITH_THREAD Include/pyport.h 657;" d +WITH_THREAD PC/pyconfig.h 70;" d +WM_PYBA_APPLY_PACKAGES Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const int WM_PYBA_APPLY_PACKAGES = WM_APP + 103;$/;" v file: +WM_PYBA_CHANGE_STATE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const int WM_PYBA_CHANGE_STATE = WM_APP + 104;$/;" v file: +WM_PYBA_DETECT_PACKAGES Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const int WM_PYBA_DETECT_PACKAGES = WM_APP + 101;$/;" v file: +WM_PYBA_PLAN_PACKAGES Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const int WM_PYBA_PLAN_PACKAGES = WM_APP + 102;$/;" v file: +WM_PYBA_SHOW_FAILURE Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const int WM_PYBA_SHOW_FAILURE = WM_APP + 105;$/;" v file: +WM_PYBA_SHOW_HELP Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static const int WM_PYBA_SHOW_HELP = WM_APP + 100;$/;" v file: +WNDCLASS Lib/test/test_ctypes/test_funcptr.py /^ class WNDCLASS(Structure):$/;" c function:CFuncPtrTestCase.test_structures +WO Lib/test/test_enum.py /^ WO = 1$/;" v class:OldTestFlag.Open +WO Lib/test/test_enum.py /^ WO = 1$/;" v class:OldTestIntFlag.Open +WONT Lib/telnetlib.py /^WONT = bytes([252])$/;" v +WORD Lib/ctypes/wintypes.py /^WORD = ctypes.c_ushort$/;" v +WORD Lib/tkinter/constants.py /^WORD='word'$/;" v +WORDS_BIGENDIAN Include/pymacconfig.h 21;" d +WORDS_BIGENDIAN Include/pymacconfig.h 77;" d +WORD_AT Python/dynload_win.c 56;" d file: +WORD_BIT PC/pyconfig.h 65;" d +WORD_PATTERN Lib/logging/config.py /^ WORD_PATTERN = re.compile(r'^\\s*(\\w+)\\s*')$/;" v class:BaseConfigurator +WORKDIR Mac/BuildScript/build-installer.py /^WORKDIR = "\/tmp\/_py"$/;" v +WPARAM Lib/ctypes/wintypes.py /^ WPARAM = ctypes.c_ulong$/;" v +WPARAM Lib/ctypes/wintypes.py /^ WPARAM = ctypes.c_ulonglong$/;" v +WRAP Lib/test/test_capi/test_watchers.py /^ WRAP = 2 # appends modified type wrapped in list to global event list$/;" v class:TestTypeWatchers +WRAPPED Lib/asyncio/sslproto.py /^ WRAPPED = "WRAPPED"$/;" v class:SSLProtocolState +WRAPPERS Lib/xmlrpc/client.py /^WRAPPERS = (DateTime, Binary)$/;" v +WRAPPER_ASSIGNMENTS Lib/functools.py /^WRAPPER_ASSIGNMENTS = ('__module__', '__name__', '__qualname__', '__doc__',$/;" v +WRAPPER_UPDATES Lib/functools.py /^WRAPPER_UPDATES = ('__dict__',)$/;" v +WRAP_BINARY Objects/weakrefobject.c 424;" d file: +WRAP_METHOD Objects/weakrefobject.c 457;" d file: +WRAP_TERNARY Objects/weakrefobject.c 440;" d file: +WRAP_UNARY Objects/weakrefobject.c 414;" d file: +WRITABLE Lib/inspect.py /^ WRITABLE = 0x1$/;" v class:BufferFlags +WRITABLE Lib/tkinter/__init__.py /^WRITABLE = _tkinter.WRITABLE$/;" v +WRITE Lib/inspect.py /^ WRITE = 0x200$/;" v class:BufferFlags +WRITEBYTE1 Modules/cjkcodecs/cjkcodecs.h 181;" d +WRITEBYTE2 Modules/cjkcodecs/cjkcodecs.h 186;" d +WRITEBYTE3 Modules/cjkcodecs/cjkcodecs.h 192;" d +WRITEBYTE4 Modules/cjkcodecs/cjkcodecs.h 199;" d +WRITEMODE Lib/test/test_univnewlines.py /^ WRITEMODE = 'wb'$/;" v class:TestGenericUnivNewlines +WRITE_ASCII_CHAR Objects/unicodeobject.c 5862;" d file: +WRITE_ASCII_CHAR Objects/unicodeobject.c 6053;" d file: +WRITE_BUF_SIZE Modules/_pickle.c /^ WRITE_BUF_SIZE = 4096,$/;" e enum:__anon447 file: +WRITE_BYTES Objects/bytesobject.c 206;" d file: +WRITE_BYTES Objects/bytesobject.c 362;" d file: +WRITE_CHAR Objects/unicodeobject.c 5869;" d file: +WRITE_CHAR Objects/unicodeobject.c 6054;" d file: +WRITE_CHAR Objects/unicodeobject.c 6267;" d file: +WRITE_CHAR Objects/unicodeobject.c 6354;" d file: +WRITE_DIGITS Objects/longobject.c 1900;" d file: +WRITE_DIGITS Objects/longobject.c 1958;" d file: +WRITE_DIGITS Objects/longobject.c 2064;" d file: +WRITE_DIGITS Objects/longobject.c 2135;" d file: +WRITE_UNICODE_DIGITS Objects/longobject.c 1923;" d file: +WRITE_UNICODE_DIGITS Objects/longobject.c 1959;" d file: +WRITE_UNICODE_DIGITS Objects/longobject.c 2102;" d file: +WRITE_UNICODE_DIGITS Objects/longobject.c 2136;" d file: +WRONG_DOCUMENT_ERR Lib/xml/dom/__init__.py /^WRONG_DOCUMENT_ERR = 4$/;" v +WSAEAGAIN Modules/socketmodule.c 634;" d file: +WSGIRequestHandler Lib/wsgiref/simple_server.py /^class WSGIRequestHandler(BaseHTTPRequestHandler):$/;" c +WSGIServer Lib/wsgiref/simple_server.py /^class WSGIServer(HTTPServer):$/;" c +WSGIWarning Lib/wsgiref/validate.py /^class WSGIWarning(Warning):$/;" c +WSP Lib/email/_header_value_parser.py /^WSP = set(' \\t')$/;" v +WStringArrayTestCase Lib/test/test_ctypes/test_strings.py /^class WStringArrayTestCase(unittest.TestCase):$/;" c +WStringTestCase Lib/test/test_ctypes/test_strings.py /^class WStringTestCase(unittest.TestCase):$/;" c +WTERMSIG Modules/posixmodule.c 471;" d file: +WUNIT Lib/turtledemo/nim.py /^WUNIT = SCREENWIDTH \/\/ ((MAXSTICKS \/\/ 5) * 11 + (MAXSTICKS % 5) * 2)$/;" v +W_EMPTY Python/hamt.c /^typedef enum {W_ERROR, W_NOT_FOUND, W_EMPTY, W_NEWNODE} hamt_without_t;$/;" e enum:__anon678 file: +W_ERROR Python/hamt.c /^typedef enum {W_ERROR, W_NOT_FOUND, W_EMPTY, W_NEWNODE} hamt_without_t;$/;" e enum:__anon678 file: +W_NEWNODE Python/hamt.c /^typedef enum {W_ERROR, W_NOT_FOUND, W_EMPTY, W_NEWNODE} hamt_without_t;$/;" e enum:__anon678 file: +W_NOT_FOUND Python/hamt.c /^typedef enum {W_ERROR, W_NOT_FOUND, W_EMPTY, W_NEWNODE} hamt_without_t;$/;" e enum:__anon678 file: +W_OFF Modules/_csv.c 1374;" d file: +W_OK Modules/posixmodule.c 3130;" d file: +W_SIZE Python/marshal.c 187;" d file: +W_SIZE Python/marshal.c 196;" d file: +W_TYPE Python/marshal.c 225;" d file: +WackyComparator Lib/test/test_sort.py /^ class WackyComparator(int):$/;" c function:TestOptimizedCompares.test_unsafe_object_compare +WackyList1 Lib/test/test_sort.py /^ class WackyList1(list):$/;" c function:TestOptimizedCompares.test_unsafe_object_compare +WackyList2 Lib/test/test_sort.py /^ class WackyList2(list):$/;" c function:TestOptimizedCompares.test_unsafe_object_compare +Wait3Test Lib/test/test_wait3.py /^class Wait3Test(ForkWait):$/;" c +Wait4Test Lib/test/test_wait4.py /^class Wait4Test(ForkWait):$/;" c +WaitForMainloop Modules/_tkinter.c /^WaitForMainloop(TkappObject* self)$/;" f file: +WaitForShieldTests Lib/test/test_asyncio/test_waitfor.py /^class WaitForShieldTests(unittest.IsolatedAsyncioTestCase):$/;" c +WaitTests Lib/test/test_concurrent_futures/test_wait.py /^class WaitTests:$/;" c +WaitidResultType Modules/posixmodule.c /^ PyObject *WaitidResultType;$/;" m struct:__anon477 file: +WakeupFDTests Lib/test/test_signal.py /^class WakeupFDTests(unittest.TestCase):$/;" c +WakeupSignalTests Lib/test/test_signal.py /^class WakeupSignalTests(unittest.TestCase):$/;" c +WakeupSocketSignalTests Lib/test/test_signal.py /^class WakeupSocketSignalTests(unittest.TestCase):$/;" c +WalkTests Lib/test/test_os.py /^class WalkTests(unittest.TestCase):$/;" c +WalkTests Lib/test/test_pathlib.py /^class WalkTests(unittest.TestCase):$/;" c +WarnTests Lib/test/test_warnings/__init__.py /^class WarnTests(BaseTest):$/;" c +Warning Modules/_sqlite/connection.h /^ PyObject* Warning;$/;" m struct:__anon359 +Warning Modules/_sqlite/module.h /^ PyObject *Warning;$/;" m struct:__anon355 +WarningMessage Lib/warnings.py /^class WarningMessage(object):$/;" c +WarningTest Lib/idlelib/idle_test/test_config.py /^class WarningTest(unittest.TestCase):$/;" c +WarningsDisplayTests Lib/test/test_warnings/__init__.py /^class WarningsDisplayTests(BaseTest):$/;" c +WarningsRecorder Lib/test/support/warnings_helper.py /^class WarningsRecorder(object):$/;" c +WarningsState Python/_warnings.c /^typedef struct _warnings_runtime_state WarningsState;$/;" t typeref:struct:_warnings_runtime_state file: +WarningsTest Lib/test/test_logging.py /^class WarningsTest(BaseTest):$/;" c +WatchedFileHandler Lib/logging/handlers.py /^class WatchedFileHandler(logging.FileHandler):$/;" c +Watcher Lib/test/test_asyncio/test_subprocess.py /^ Watcher = None$/;" v class:SubprocessMixin.SubprocessWatcherMixin +Water Lib/test/test_enum.py /^ class Water(Flag, boundary=STRICT):$/;" c function:OldTestFlag.test_boundary +Water Lib/test/test_enum.py /^ class Water(IntFlag, boundary=CONFORM):$/;" c function:OldTestIntFlag.test_boundary +WaveLowLevelTest Lib/test/test_wave.py /^class WaveLowLevelTest(unittest.TestCase):$/;" c +WavePCM16Test Lib/test/test_wave.py /^class WavePCM16Test(WaveTest, unittest.TestCase):$/;" c +WavePCM24ExtTest Lib/test/test_wave.py /^class WavePCM24ExtTest(WaveTest, unittest.TestCase):$/;" c +WavePCM24Test Lib/test/test_wave.py /^class WavePCM24Test(WaveTest, unittest.TestCase):$/;" c +WavePCM32Test Lib/test/test_wave.py /^class WavePCM32Test(WaveTest, unittest.TestCase):$/;" c +WavePCM8Test Lib/test/test_wave.py /^class WavePCM8Test(WaveTest, unittest.TestCase):$/;" c +WaveTest Lib/test/test_wave.py /^ audiotests.AudioTestsWithSourceFile):$/;" c +Wave_read Lib/wave.py /^class Wave_read:$/;" c +Wave_write Lib/wave.py /^class Wave_write:$/;" c +Weak Lib/test/test_descr.py /^ class Weak(object):$/;" c function:.test_weakrefs +Weak Lib/test/test_threading_local.py /^class Weak(object):$/;" c +WeakKeyDictionary Lib/weakref.py /^class WeakKeyDictionary(_collections_abc.MutableMapping):$/;" c +WeakKeyDictionaryTestCase Lib/test/test_weakref.py /^class WeakKeyDictionaryTestCase(mapping_tests.BasicTestMappingProtocol):$/;" c +WeakMethod Lib/weakref.py /^class WeakMethod(ref):$/;" c +WeakMethodTestCase Lib/test/test_weakref.py /^class WeakMethodTestCase(unittest.TestCase):$/;" c +WeakSet Lib/_weakrefset.py /^class WeakSet:$/;" c +WeakSetSubclass Lib/test/test_weakset.py /^class WeakSetSubclass(WeakSet):$/;" c +WeakSetWithSlots Lib/test/test_weakset.py /^class WeakSetWithSlots(WeakSet):$/;" c +WeakValueDictionary Lib/weakref.py /^class WeakValueDictionary(_collections_abc.MutableMapping):$/;" c +WeakValueDictionaryTestCase Lib/test/test_weakref.py /^class WeakValueDictionaryTestCase(mapping_tests.BasicTestMappingProtocol):$/;" c +WeirdMetadataTest Lib/test/test_gettext.py /^class WeirdMetadataTest(GettextBaseTest):$/;" c +WeirdProto Lib/test/test_typing.py /^ class WeirdProto(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance +WeirdProto2 Lib/test/test_typing.py /^ class WeirdProto2(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance +WeirdZoneTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class WeirdZoneTest(ZoneInfoTestBase):$/;" c +WeirderProto Lib/test/test_typing.py /^ class WeirderProto(Protocol):$/;" c function:ProtocolTests.test_protocols_isinstance +WeirdlyQuotedMovie Lib/test/test_typing.py /^class WeirdlyQuotedMovie(TypedDict):$/;" c +WhatToRelease Lib/test/test_buffer.py /^ class WhatToRelease:$/;" c function:TestPythonBufferProtocol.test_release_buffer +WhatToRelease Lib/test/test_buffer.py /^ class WhatToRelease:$/;" c function:TestPythonBufferProtocol.test_same_buffer_returned +Whatever Lib/test/test_iter.py /^ class Whatever:$/;" c function:TestCase.test_writelines +WheelBoat Lib/test/test_descr.py /^ class WheelBoat(Boat): pass$/;" c function:ClassPropertiesAndMethods.test_monotonicity +WhereEnum Lib/test/test_enum.py /^ class WhereEnum(OurEnum):$/;" c function:OldTestFlag.test_init_subclass +WhichComments Lib/test/inspect_fodder.py /^class WhichComments:$/;" c +WhichDBTestCase Lib/test/test_dbm.py /^class WhichDBTestCase(unittest.TestCase):$/;" c +While Include/internal/pycore_ast.h /^ } While;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon63 +While_fields Python/Python-ast.c /^static const char * const While_fields[]={$/;" v file: +While_kind Include/internal/pycore_ast.h /^ For_kind=10, AsyncFor_kind=11, While_kind=12, If_kind=13,$/;" e enum:_stmt_kind +While_type Include/internal/pycore_ast_state.h /^ PyObject *While_type;$/;" m struct:ast_state +WhiteSpaceTerminal Lib/email/_header_value_parser.py /^class WhiteSpaceTerminal(Terminal):$/;" c +WhiteSpaceTokenList Lib/email/_header_value_parser.py /^class WhiteSpaceTokenList(TokenList):$/;" c +Whitespace Lib/lib2to3/pgen2/tokenize.py /^Whitespace = r'[ \\f\\t]*'$/;" v +Whitespace Lib/tabnanny.py /^class Whitespace:$/;" c +Whitespace Lib/tokenize.py /^Whitespace = r'[ \\f\\t]*'$/;" v +WhoseEnum Lib/test/test_enum.py /^ class WhoseEnum(TheirEnum):$/;" c function:OldTestFlag.test_init_subclass +WhyWouldYouDoThis Lib/test/test_typing.py /^ class WhyWouldYouDoThis:$/;" c function:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects +WideIntType Modules/_tkinter.c /^ const Tcl_ObjType *WideIntType;$/;" m struct:__anon334 file: +Widget Lib/tkinter/__init__.py /^class Widget(BaseWidget, Pack, Place, Grid):$/;" c +Widget Lib/tkinter/ttk.py /^class Widget(tkinter.Widget):$/;" c +WidgetRedirector Lib/idlelib/redirector.py /^class WidgetRedirector:$/;" c +WidgetRedirectorTest Lib/idlelib/idle_test/test_redirector.py /^class WidgetRedirectorTest(unittest.TestCase):$/;" c +WidgetTest Lib/test/test_ttk/test_widgets.py /^class WidgetTest(AbstractTkTest, unittest.TestCase):$/;" c +WierdNum Lib/test/test_json/test_enum.py /^class WierdNum(float, Enum):$/;" c +WildcardPattern Lib/lib2to3/pytree.py /^class WildcardPattern(BasePattern):$/;" c +WillElevate Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL WillElevate() {$/;" f class:PythonBootstrapperApplication file: +Win32ErrorTests Lib/test/test_os.py /^class Win32ErrorTests(unittest.TestCase):$/;" c +Win32JunctionTests Lib/test/test_os.py /^class Win32JunctionTests(unittest.TestCase):$/;" c +Win32KillTests Lib/test/test_os.py /^class Win32KillTests(unittest.TestCase):$/;" c +Win32ListdirTests Lib/test/test_os.py /^class Win32ListdirTests(unittest.TestCase):$/;" c +Win32ListdriveTests Lib/test/test_os.py /^class Win32ListdriveTests(unittest.TestCase):$/;" c +Win32MimeTypesTestCase Lib/test/test_mimetypes.py /^class Win32MimeTypesTestCase(unittest.TestCase):$/;" c +Win32NtTests Lib/test/test_os.py /^class Win32NtTests(unittest.TestCase):$/;" c +Win32ProcessTestCase Lib/test/test_subprocess.py /^class Win32ProcessTestCase(BaseTestCase):$/;" c +Win32SymlinkTests Lib/test/test_os.py /^class Win32SymlinkTests(unittest.TestCase):$/;" c +Win64 Lib/msilib/__init__.py /^Win64 = AMD64$/;" v +Win64WinregTests Lib/test/test_winreg.py /^class Win64WinregTests(BaseWinregTests):$/;" c +WinApiState Modules/_winapi.c /^} WinApiState;$/;" t typeref:struct:__anon534 file: +WinDLL Lib/ctypes/__init__.py /^ class WinDLL(CDLL):$/;" c +WinError Lib/ctypes/__init__.py /^ def WinError(code=None, descr=None):$/;" f +WinFunctionType Lib/ctypes/__init__.py /^ class WinFunctionType(_CFuncPtr):$/;" c function:CFUNCTYPE.WINFUNCTYPE +WinPage Lib/idlelib/configdialog.py /^class WinPage(Frame):$/;" c +WinPageTest Lib/idlelib/idle_test/test_configdialog.py /^class WinPageTest(unittest.TestCase):$/;" c +WinPolicyTests Lib/test/test_asyncio/test_windows_events.py /^class WinPolicyTests(test_utils.TestCase):$/;" c +WinTypesTest Lib/test/test_ctypes/test_wintypes.py /^class WinTypesTest(unittest.TestCase):$/;" c +WindowFunctionTests Lib/test/test_sqlite3/test_userfunctions.py /^class WindowFunctionTests(unittest.TestCase):$/;" c +WindowList Lib/idlelib/window.py /^class WindowList:$/;" c +WindowListTest Lib/idlelib/idle_test/test_window.py /^class WindowListTest(unittest.TestCase):$/;" c +WindowResultTest Lib/idlelib/idle_test/test_config_key.py /^class WindowResultTest(unittest.TestCase):$/;" c +WindowSumInt Lib/test/test_sqlite3/test_userfunctions.py /^class WindowSumInt:$/;" c +Window_NoArg2TupleReturnFunction Modules/_cursesmodule.c 586;" d file: +Window_NoArgNoReturnFunction Modules/_cursesmodule.c 569;" d file: +Window_NoArgNoReturnVoidFunction Modules/_cursesmodule.c 580;" d file: +Window_NoArgTrueFalseFunction Modules/_cursesmodule.c 574;" d file: +Window_OneArgNoReturnFunction Modules/_cursesmodule.c 601;" d file: +Window_OneArgNoReturnVoidFunction Modules/_cursesmodule.c 593;" d file: +Window_TwoArgNoReturnFunction Modules/_cursesmodule.c 609;" d file: +WindowsBootstrapPathTests Lib/test/test_importlib/test_windows.py /^class WindowsBootstrapPathTests(unittest.TestCase):$/;" c +WindowsConsoleIOTests Lib/test/test_winconsoleio.py /^class WindowsConsoleIOTests(unittest.TestCase):$/;" c +WindowsDefault Lib/webbrowser.py /^ class WindowsDefault(BaseBrowser):$/;" c +WindowsExtensionSuffixTests Lib/test/test_importlib/test_windows.py /^class WindowsExtensionSuffixTests:$/;" c +WindowsLoadTracker Lib/test/libregrtest/win_utils.py /^class WindowsLoadTracker():$/;" c +WindowsPath Lib/pathlib.py /^class WindowsPath(Path, PureWindowsPath):$/;" c +WindowsPathAsPureTest Lib/test/test_pathlib.py /^class WindowsPathAsPureTest(PureWindowsPathTest):$/;" c +WindowsPathTest Lib/test/test_pathlib.py /^class WindowsPathTest(_BasePathTest, unittest.TestCase):$/;" c +WindowsProactorEventLoopPolicy Lib/asyncio/windows_events.py /^class WindowsProactorEventLoopPolicy(events.BaseDefaultEventLoopPolicy):$/;" c +WindowsRegistryFinder Lib/importlib/_bootstrap_external.py /^class WindowsRegistryFinder:$/;" c +WindowsRegistryFinderTests Lib/test/test_importlib/test_windows.py /^class WindowsRegistryFinderTests:$/;" c +WindowsSelectorEventLoopPolicy Lib/asyncio/windows_events.py /^class WindowsSelectorEventLoopPolicy(events.BaseDefaultEventLoopPolicy):$/;" c +WindowsSignalTests Lib/test/test_signal.py /^class WindowsSignalTests(unittest.TestCase):$/;" c +WindowsVersionType Python/sysmodule.c /^static PyTypeObject WindowsVersionType = {0, 0, 0, 0, 0, 0};$/;" v file: +With Include/internal/pycore_ast.h /^ } With;$/;" m union:_stmt::__anon51 typeref:struct:_stmt::__anon51::__anon65 +WithAsyncContextManager Lib/test/test_unittest/testmock/testasync.py /^ class WithAsyncContextManager:$/;" c class:AsyncContextManagerTest +WithAsyncIterator Lib/test/test_unittest/testmock/testasync.py /^ class WithAsyncIterator(object):$/;" c class:AsyncIteratorTest +WithClassMethod Lib/test/test_unittest/testmock/testhelpers.py /^ class WithClassMethod:$/;" c function:TestCallablePredicate.test_classmethod +WithClassRef Lib/test/test_super.py /^ class WithClassRef(metaclass=Meta):$/;" c class:TestSuper.test___classcell___missing.WithoutClassRef +WithClassRef Lib/test/test_super.py /^ class WithClassRef(metaclass=Meta):$/;" c function:TestSuper.test___classcell___expected_behaviour +WithGenAnext Lib/test/test_asyncgen.py /^ class WithGenAnext:$/;" c function:AsyncGenAsyncioTest.test_anext_return_generator +WithImplicitAny Lib/test/test_typing.py /^ class WithImplicitAny(B):$/;" c function:TypedDictTests.test_implicit_any_inheritance +WithInherited Lib/test/test_copyreg.py /^class WithInherited(WithSingleString):$/;" c +WithIterAnext Lib/test/test_asyncgen.py /^ class WithIterAnext:$/;" c function:AsyncGenAsyncioTest.test_anext_return_iterator +WithMeta Lib/test/test_typing.py /^ class WithMeta(metaclass=Meta): ...$/;" c function:FinalDecoratorTests.test_dunder_final +WithMetaclass Lib/test/test_copy.py /^ class WithMetaclass(metaclass=abc.ABCMeta):$/;" c function:TestCopy.test_copy_atomic +WithNoneDefault Lib/test/test_typing.py /^ class WithNoneDefault:$/;" c function:GetTypeHintTests.test_get_type_hints_classes_no_implicit_optional +WithOverride Lib/test/test_typing.py /^ class WithOverride:$/;" c function:OverrideDecoratorTests.test_multiple_decorators +WithOverride Lib/test/test_typing.py /^ class WithOverride:$/;" c function:OverrideDecoratorTests.test_silent_failure +WithPrivate Lib/test/test_copyreg.py /^class WithPrivate(object):$/;" c +WithRaisingAwaitableAnext Lib/test/test_asyncgen.py /^ class WithRaisingAwaitableAnext:$/;" c function:AsyncGenAsyncioTest.test_anext_await_raises +WithSet Lib/test/test_collections.py /^class WithSet(MutableSet):$/;" c +WithSingleDispatch Lib/test/test_functools.py /^ class WithSingleDispatch:$/;" c function:TestSingleDispatch.test_double_wrapped_methods +WithSingleString Lib/test/test_copyreg.py /^class WithSingleString(object):$/;" c +WithStaticMethod Lib/test/test_unittest/testmock/testhelpers.py /^ class WithStaticMethod:$/;" c function:TestCallablePredicate.test_staticmethod +WithStmtTest Lib/test/test_codecs.py /^class WithStmtTest(unittest.TestCase):$/;" c +WithSyncContextManager Lib/test/test_unittest/testmock/testasync.py /^ class WithSyncContextManager:$/;" c class:AsyncContextManagerTest +WithTest Lib/test/test_unittest/testmock/testwith.py /^class WithTest(unittest.TestCase):$/;" c +WithWeakref Lib/test/test_copyreg.py /^class WithWeakref(object):$/;" c +With_fields Python/Python-ast.c /^static const char * const With_fields[]={$/;" v file: +With_kind Include/internal/pycore_ast.h /^ With_kind=14, AsyncWith_kind=15, Match_kind=16,$/;" e enum:_stmt_kind +With_type Include/internal/pycore_ast_state.h /^ PyObject *With_type;$/;" m struct:ast_state +WithoutClassRef Lib/test/test_super.py /^ class WithoutClassRef(metaclass=Meta):$/;" c function:TestSuper.test___classcell___expected_behaviour +WithoutClassRef Lib/test/test_super.py /^ class WithoutClassRef(metaclass=Meta):$/;" c function:TestSuper.test___classcell___missing +WithoutSingleDispatch Lib/test/test_functools.py /^ class WithoutSingleDispatch:$/;" c function:TestSingleDispatch.test_double_wrapped_methods +WithoutSlots Lib/test/test_copyreg.py /^class WithoutSlots(object):$/;" c +Wm Lib/tkinter/__init__.py /^class Wm:$/;" c +WmInfoGatheringError Lib/idlelib/zoomheight.py /^class WmInfoGatheringError(Exception):$/;" c +WmiTests Lib/test/test_wmi.py /^class WmiTests(unittest.TestCase):$/;" c +WndProc Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ static LRESULT CALLBACK WndProc($/;" f class:PythonBootstrapperApplication file: +Word Lib/email/_header_value_parser.py /^class Word(TokenList):$/;" c +WorkAlways Lib/test/test_descr.py /^ class WorkAlways(type):$/;" c function:.test_mutable_bases_with_failing_mro +WorkOnce Lib/test/test_descr.py /^ class WorkOnce(type):$/;" c function:.test_mutable_bases_with_failing_mro +Worker Lib/test/test_importlib/threaded_import_hangers.py /^class Worker(threading.Thread):$/;" c +Worker Lib/test/test_threading.py /^ class Worker(threading.Thread):$/;" c function:ThreadTests.test_PyThreadState_SetAsyncExc +WorkerJob Lib/test/libregrtest/runtest_mp.py /^class WorkerJob:$/;" c +WorseStruct Lib/test/test_ctypes/test_parameters.py /^ class WorseStruct(Structure):$/;" c function:SimpleTypesTestCase.test_issue31311 +WrapTestCase Lib/test/test_textwrap.py /^class WrapTestCase(BaseTestCase):$/;" c +Wrapped Lib/test/test_inspect.py /^ class Wrapped:$/;" c function:TestSignatureObject.test_signature_on_callable_objects +WrappedCalltip Lib/idlelib/idle_test/test_calltip.py /^class WrappedCalltip(calltip.Calltip):$/;" c +WrappedLineHeightChangeDelegator Lib/idlelib/sidebar.py /^class WrappedLineHeightChangeDelegator(Delegator):$/;" c +WrappedObjectTreeItem Lib/idlelib/debugobj_r.py /^class WrappedObjectTreeItem:$/;" c +WrappedObjectTreeItemTest Lib/idlelib/idle_test/test_debugobj_r.py /^class WrappedObjectTreeItemTest(unittest.TestCase):$/;" c +Wrapper Lib/test/test_coroutines.py /^ class Wrapper:$/;" c function:CoroutineTest.test_await_14 +Wrapper Lib/test/test_decorators.py /^ class Wrapper:$/;" c function:TestDecorators.test_wrapped_descriptor_inside_classmethod +Wrapper Lib/test/test_descr.py /^ class Wrapper(object):$/;" c function:.test_dir +Wrapper Lib/test/test_doctest.py /^class Wrapper:$/;" c +Wrapper Lib/test/test_typing.py /^ class Wrapper:$/;" c function:FinalDecoratorTests.test_dunder_final +Wrapper Lib/test/test_unicode.py /^ class Wrapper:$/;" c function:UnicodeTest.test_formatting +WrapperDescriptorType Lib/types.py /^WrapperDescriptorType = type(object.__init__)$/;" v +Wrapper_Check Objects/descrobject.c 1283;" d file: +WriteSubprocessPipeProto Lib/asyncio/base_subprocess.py /^class WriteSubprocessPipeProto(protocols.BaseProtocol):$/;" c +WriteTest Lib/test/test_tarfile.py /^class WriteTest(WriteTestBase, unittest.TestCase):$/;" c +WriteTestBase Lib/test/test_tarfile.py /^class WriteTestBase(TarTest):$/;" c +WriteTests Lib/test/test_telnetlib.py /^class WriteTests(unittest.TestCase):$/;" c +WriteTransport Lib/asyncio/transports.py /^class WriteTransport(BaseTransport):$/;" c +WriteWrapper Lib/wsgiref/validate.py /^class WriteWrapper:$/;" c +WriterObj Modules/_csv.c /^} WriterObj;$/;" t typeref:struct:__anon626 file: +WriterXmlgenTest Lib/test/test_sax.py /^class WriterXmlgenTest(BytesXmlgenTest):$/;" c +Writer_Type_slots Modules/_csv.c /^static PyType_Slot Writer_Type_slots[] = {$/;" v file: +Writer_Type_spec Modules/_csv.c /^PyType_Spec Writer_Type_spec = {$/;" v +Writer_clear Modules/_csv.c /^Writer_clear(WriterObj *self)$/;" f file: +Writer_dealloc Modules/_csv.c /^Writer_dealloc(WriterObj *self)$/;" f file: +Writer_memberlist Modules/_csv.c /^static struct PyMemberDef Writer_memberlist[] = {$/;" v typeref:struct:PyMemberDef file: +Writer_methods Modules/_csv.c /^static struct PyMethodDef Writer_methods[] = {$/;" v typeref:struct:PyMethodDef file: +Writer_traverse Modules/_csv.c /^Writer_traverse(WriterObj *self, visitproc visit, void *arg)$/;" f file: +Wrong Lib/test/test_enum.py /^ class Wrong(Enum, str):$/;" c function:TestSpecial.test_wrong_inheritance_order +Wrong Lib/test/test_enum.py /^ class Wrong(self.enum_type):$/;" c function:_EnumTests.test_invalid_names +Wrong Lib/test/test_typing.py /^ class Wrong(*bases):$/;" c class:TypedDictTests.test_multiple_inheritance.ChildWithInlineAndOptional +WrongArity Lib/test/test_buffer.py /^ class WrongArity:$/;" c function:TestPythonBufferProtocol.test_bad_buffer_method +WrongDocumentErr Lib/xml/dom/__init__.py /^class WrongDocumentErr(DOMException):$/;" c +WrongModuleMakeDataclass Lib/test/test_dataclasses.py /^WrongModuleMakeDataclass = make_dataclass('WrongModuleMakeDataclass',$/;" v +WrongNameMakeDataclass Lib/test/test_dataclasses.py /^WrongNameMakeDataclass = make_dataclass('Wrong', [('x', int)])$/;" v +WrongRepr Lib/test/test_unicode.py /^ class WrongRepr:$/;" c function:UnicodeTest.test_ascii +WrongRepr Lib/test/test_unicode.py /^ class WrongRepr:$/;" c function:UnicodeTest.test_repr +WsgiHandler Lib/test/test_wsgiref.py /^ class WsgiHandler(NoLogRequestHandler, WSGIRequestHandler):$/;" c function:IntegrationTests.test_interrupted_write +X Lib/test/inspect_fodder2.py /^ class X:$/;" c function:f +X Lib/test/string_tests.py /^ class X(object): pass$/;" c function:MixinStrUnicodeUserStringTest.test_formatting +X Lib/test/test_ast.py /^ class X:$/;" c function:AST_Tests.test_AST_garbage_collection +X Lib/test/test_binop.py /^class X(object):$/;" c +X Lib/test/test_bool.py /^ class X:$/;" c function:BoolTest.test_bool_called_at_least_once +X Lib/test/test_builtin.py /^ class X:$/;" c function:BuiltinTest.test_eval +X Lib/test/test_builtin.py /^ class X:$/;" c function:BuiltinTest.test_hash +X Lib/test/test_bytes.py /^ class X:$/;" c function:BaseBytesTest.test_from_mutating_list +X Lib/test/test_call.py /^ class X:$/;" c function:TestPEP590.test_setvectorcall_load_attr_specialization_deopt +X Lib/test/test_call.py /^ class X:$/;" c function:TestPEP590.test_setvectorcall_load_attr_specialization_skip +X Lib/test/test_collections.py /^ class X(ByteString): pass$/;" c function:TestCollectionABCs.test_ByteString +X Lib/test/test_ctypes/test_arrays.py /^ class X(T):$/;" c function:ArrayTestCase.test_subclass +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_signed +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_single_bitfield_size +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_unsigned +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_anon_bitfields +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_longlong +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_mixed_1 +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_mixed_2 +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_mixed_3 +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_mixed_4 +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_multi_bitfields_size +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_uint32 +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_uint64 +X Lib/test/test_ctypes/test_bitfields.py /^ class X(Structure):$/;" c function:BitFieldTest.test_ulonglong +X Lib/test/test_ctypes/test_bytes.py /^ class X(Structure):$/;" c function:BytesTest.test_struct +X Lib/test/test_ctypes/test_bytes.py /^ class X(Structure):$/;" c function:BytesTest.test_struct_W +X Lib/test/test_ctypes/test_callbacks.py /^ class X(Structure):$/;" c function:SampleCallbacksTestCase.test_callback_large_struct +X Lib/test/test_ctypes/test_callbacks.py /^ class X:$/;" c function:Callbacks.test_issue_7959 +X Lib/test/test_ctypes/test_delattr.py /^class X(Structure):$/;" c +X Lib/test/test_ctypes/test_frombuffer.py /^class X(Structure):$/;" c +X Lib/test/test_ctypes/test_functions.py /^ class X(object, Array):$/;" c function:FunctionTestCase.test_mro +X Lib/test/test_ctypes/test_functions.py /^ class X(object, Structure):$/;" c function:FunctionTestCase.test_mro +X Lib/test/test_ctypes/test_functions.py /^ class X(object, _Pointer):$/;" c function:FunctionTestCase.test_mro +X Lib/test/test_ctypes/test_functions.py /^ class X(object, _SimpleCData):$/;" c function:FunctionTestCase.test_mro +X Lib/test/test_ctypes/test_init.py /^class X(Structure):$/;" c +X Lib/test/test_ctypes/test_internals.py /^ class X(Structure):$/;" c function:ObjectsTestCase.test_embedded_structs +X Lib/test/test_ctypes/test_internals.py /^ class X(Structure):$/;" c function:ObjectsTestCase.test_ptr_struct +X Lib/test/test_ctypes/test_internals.py /^ class X(Structure):$/;" c function:ObjectsTestCase.test_simple_struct +X Lib/test/test_ctypes/test_internals.py /^ class X(Structure):$/;" c function:ObjectsTestCase.test_xxx +X Lib/test/test_ctypes/test_keeprefs.py /^ class X(Structure):$/;" c function:ArrayTestCase.test_cint_array +X Lib/test/test_ctypes/test_keeprefs.py /^ class X(Structure):$/;" c function:StructureTestCase.test_ccharp_struct +X Lib/test/test_ctypes/test_keeprefs.py /^ class X(Structure):$/;" c function:StructureTestCase.test_cint_struct +X Lib/test/test_ctypes/test_parameters.py /^ class X(Structure):$/;" c function:SimpleTypesTestCase.test_from_param_result_refcount +X Lib/test/test_ctypes/test_pickling.py /^class X(Structure):$/;" c +X Lib/test/test_ctypes/test_prototypes.py /^ class X:$/;" c function:CharPointersTestCase.test_instance +X Lib/test/test_ctypes/test_refcounts.py /^ class X(ctypes.Structure):$/;" c function:RefcountTestCase.test_refcount +X Lib/test/test_ctypes/test_repr.py /^ class X(base):$/;" c +X Lib/test/test_ctypes/test_repr.py /^class X(c_char):$/;" c +X Lib/test/test_ctypes/test_simplesubclasses.py /^ class X(Structure):$/;" c function:Test.test_int_struct +X Lib/test/test_ctypes/test_stringptr.py /^ class X(Structure):$/;" c function:StringPtrTestCase.test__POINTER_c_char +X Lib/test/test_ctypes/test_stringptr.py /^ class X(Structure):$/;" c function:StringPtrTestCase.test__c_char_p +X Lib/test/test_ctypes/test_struct_fields.py /^ class X(Structure):$/;" c function:StructFieldsTestCase.test_1_A +X Lib/test/test_ctypes/test_struct_fields.py /^ class X(Structure):$/;" c function:StructFieldsTestCase.test_1_B +X Lib/test/test_ctypes/test_struct_fields.py /^ class X(Structure):$/;" c function:StructFieldsTestCase.test_2 +X Lib/test/test_ctypes/test_struct_fields.py /^ class X(Structure):$/;" c function:StructFieldsTestCase.test_3 +X Lib/test/test_ctypes/test_struct_fields.py /^ class X(Structure):$/;" c function:StructFieldsTestCase.test_4 +X Lib/test/test_ctypes/test_struct_fields.py /^ class X(Structure):$/;" c function:StructFieldsTestCase.test_5 +X Lib/test/test_ctypes/test_struct_fields.py /^ class X(Structure):$/;" c function:StructFieldsTestCase.test_6 +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:StructureTestCase.test_simple_structs +X Lib/test/test_ctypes/test_structures.py /^ class X(Union):$/;" c function:StructureTestCase.test_unions +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:StructureTestCase.test_abstract_class +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:StructureTestCase.test_empty +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:StructureTestCase.test_fields +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:StructureTestCase.test_packed +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:StructureTestCase.test_pass_by_value_in_register +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:StructureTestCase.test_struct_alignment +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:SubclassesTest.test_subclass +X Lib/test/test_ctypes/test_structures.py /^ class X(Structure):$/;" c function:SubclassesTest.test_subclass_delayed +X Lib/test/test_ctypes/test_structures.py /^ class X(Union):$/;" c function:StructureTestCase.test_fields +X Lib/test/test_ctypes/test_structures.py /^ class X(W):$/;" c function:StructureTestCase.test_positional_args +X Lib/test/test_ctypes/test_unaligned_structures.py /^ class X(Structure):$/;" c +X Lib/test/test_ctypes/test_varsize_struct.py /^ class X(Structure):$/;" c function:VarSizeTest.test_resize +X Lib/test/test_dataclasses.py /^ class X:$/;" c function:TestCase.test_field_with_special_single_underscore_names +X Lib/test/test_dataclasses.py /^ class X:$/;" c function:TestMatchArgs.test_bpo_43764 +X Lib/test/test_dataclasses.py /^ class X:$/;" c function:TestMatchArgs.test_match_args_argument +X Lib/test/test_decimal.py /^ class X(float):$/;" c function:CWhitebox.test_internal_use_of_overridden_methods +X Lib/test/test_deque.py /^ class X(deque):$/;" c function:TestSubclass.test_bug_31608 +X Lib/test/test_deque.py /^ class X(deque):$/;" c function:TestSubclass.test_strange_subclass +X Lib/test/test_descr.py /^ class X(cls):$/;" c function:MroTest.test_incomplete_extend.M.mro +X Lib/test/test_descr.py /^ class X(C, int()):$/;" c class:ClassPropertiesAndMethods.test_metaclass.F2 +X Lib/test/test_descr.py /^ class X(Checker):$/;" c class:.test_special_method_lookup.ErrDescr +X Lib/test/test_descr.py /^ class X(O, type(None)):$/;" c class:.test_unsubclassable_types.O +X Lib/test/test_descr.py /^ class X(int(), C):$/;" c class:ClassPropertiesAndMethods.test_metaclass.F2 +X Lib/test/test_descr.py /^ class X(object):$/;" c function:.test_testcapi_no_segfault +X Lib/test/test_descr.py /^ class X(object, metaclass=_metaclass):$/;" c class:.test_altmro.X +X Lib/test/test_descr.py /^ class X(object, type(None)):$/;" c function:.test_unsubclassable_types +X Lib/test/test_descr.py /^ class X(type(None)):$/;" c function:.test_unsubclassable_types +X Lib/test/test_descr.py /^ class X(type(None), O):$/;" c class:.test_unsubclassable_types.O +X Lib/test/test_descr.py /^ class X(type(None), object):$/;" c function:.test_unsubclassable_types +X Lib/test/test_descr.py /^ class X:$/;" c function:.test_slot_shadows_class_variable +X Lib/test/test_descr.py /^ class X(A): pass$/;" c function:ClassPropertiesAndMethods.test_ex5_from_c3_switch +X Lib/test/test_descr.py /^ class X(D,B,C,A, metaclass=PerverseMetaType):$/;" c function:.test_altmro +X Lib/test/test_descr.py /^ class X(dict):$/;" c function:.test_cycle_through_dict +X Lib/test/test_descr.py /^ class X(dict):$/;" c function:.test_mixing_slot_wrappers +X Lib/test/test_descr.py /^ class X(metaclass=Meta):$/;" c function:.test_set_and_no_get +X Lib/test/test_descr.py /^ class X(metaclass=func):$/;" c function:ClassPropertiesAndMethods.test_metaclass +X Lib/test/test_descr.py /^ class X(object):$/;" c function:.test_abstractmethods +X Lib/test/test_descr.py /^ class X(object):$/;" c function:.test_set_and_no_get +X Lib/test/test_descr.py /^ class X(object):$/;" c function:.test_slots +X Lib/test/test_descr.py /^ class X(object):$/;" c function:.test_unsubclassable_types +X Lib/test/test_descr.py /^ class X:$/;" c function:.test_bpo25750 +X Lib/test/test_descr.py /^ class X:$/;" c function:.test_qualname +X Lib/test/test_descr.py /^ class X:$/;" c function:.test_set_doc +X Lib/test/test_dict.py /^ class X():$/;" c function:DictTest.test_equal_operator_modifying_operand +X Lib/test/test_dict.py /^ class X(int):$/;" c function:DictTest.test_fromkeys_operator_modifying_dict_operand +X Lib/test/test_dict.py /^ class X(int):$/;" c function:DictTest.test_fromkeys_operator_modifying_set_operand +X Lib/test/test_dict.py /^ class X(int):$/;" c function:DictTest.test_oob_indexing_dictiter_iternextitem +X Lib/test/test_dict.py /^ class X(object):$/;" c function:DictTest.test_resize2 +X Lib/test/test_dict.py /^ class X:$/;" c function:DictTest.test_dictitems_contains_use_after_free +X Lib/test/test_dict.py /^ class X:$/;" c function:DictTest.test_init_use_after_free +X Lib/test/test_dict.py /^ class X:$/;" c function:DictTest.test_merge_and_mutate +X Lib/test/test_enum.py /^ X = 1 << 0$/;" v class:OldTestIntFlag.test_format.NewPerm +X Lib/test/test_enum.py /^ X = 1$/;" v class:TestSpecial.test_contains_different_types_same_members.IntEnum1 +X Lib/test/test_enum.py /^ X = 1$/;" v class:TestSpecial.test_contains_different_types_same_members.IntFlag1 +X Lib/test/test_enum.py /^ X = 1$/;" v class:TestSpecial.test_contains_name_and_value_overlap.IntEnum1 +X Lib/test/test_enum.py /^ X = 1$/;" v class:TestSpecial.test_contains_name_and_value_overlap.IntEnum2 +X Lib/test/test_enum.py /^ X = 2$/;" v class:TestSpecial.test_contains_name_and_value_overlap.IntEnum3 +X Lib/test/test_enum.py /^ X = 4$/;" v class:_FlagTests.test_closed_invert_expectations.ClosedXYZ +X Lib/test/test_enum.py /^ X = 4$/;" v class:_FlagTests.test_open_invert_expectations.OpenXYZ +X Lib/test/test_enum.py /^ X = 1 << 0$/;" v class:OldTestIntFlag.Perm +X Lib/test/test_enumerate.py /^class X:$/;" c +X Lib/test/test_fstring.py /^ class X:$/;" c function:.test_side_effect_order +X Lib/test/test_fstring.py /^ class X:$/;" c function:TestCase.test__format__lookup +X Lib/test/test_fstring.py /^ class X:$/;" c function:TestCase.test_ast +X Lib/test/test_functools.py /^ class X:$/;" c class:TestSingleDispatch.test_cache_invalidation.TracingDict +X Lib/test/test_functools.py /^ class X(D, C, B):$/;" c function:TestSingleDispatch.test_c3_abc +X Lib/test/test_functools.py /^ class X(int):$/;" c function:TestLRU.test_lru_method +X Lib/test/test_genericalias.py /^ class X(list):$/;" c function:BaseTest.test_copy +X Lib/test/test_heapq.py /^class X:$/;" c +X Lib/test/test_isinstance.py /^ class X:$/;" c function:TestIsInstanceIsSubclass.test_infinite_cycle_in_bases +X Lib/test/test_isinstance.py /^ class X:$/;" c function:TestIsInstanceIsSubclass.test_infinite_recursion_in_bases +X Lib/test/test_isinstance.py /^ class X:$/;" c function:TestIsInstanceIsSubclass.test_infinitely_many_bases +X Lib/test/test_itertools.py /^class X:$/;" c +X Lib/test/test_json/test_dump.py /^ class X:$/;" c function:TestDump.test_encode_evil_dict +X Lib/test/test_keywordonlyarg.py /^ class X:$/;" c function:KeywordOnlyArgTestCase.test_mangling +X Lib/test/test_list.py /^ class X:$/;" c function:ListTest.test_count_index_remove_crashes +X Lib/test/test_list.py /^ class X:$/;" c function:ListTest.test_equal_operator_modifying_operand +X Lib/test/test_mmap.py /^ class X:$/;" c function:MmapTests.test_mmap_closed_by_int_scenarios.MmapClosedByIntContext.__enter__ +X Lib/test/test_operator.py /^ class X(object):$/;" c function:OperatorTestCase.test_length_hint +X Lib/test/test_positional_only_arg.py /^ class X:$/;" c function:PositionalOnlyTestCase.test_mangling +X Lib/test/test_pydoc.py /^ class X:$/;" c function:TestDescriptions.test_classmethod +X Lib/test/test_pydoc.py /^ class X:$/;" c function:TestDescriptions.test_custom_data_descriptor +X Lib/test/test_pydoc.py /^ class X:$/;" c function:TestDescriptions.test_custom_non_data_descriptor +X Lib/test/test_pydoc.py /^ class X:$/;" c function:TestDescriptions.test_staticmethod +X Lib/test/test_scope.py /^ class X:$/;" c function:ScopeTests.testClassNamespaceOverridesClosure +X Lib/test/test_set.py /^ class X:$/;" c function:TestWeirdBugs.test_merge_and_mutate +X Lib/test/test_set.py /^class X:$/;" c +X Lib/test/test_slice.py /^ class X(object):$/;" c function:SliceTest.test_setslice_without_getslice +X Lib/test/test_sqlite3/test_regression.py /^ class X:$/;" c function:RegressionTests.test_bind_mutating_list +X Lib/test/test_super.py /^ class X(A):$/;" c function:TestSuper.test_various___class___pathologies +X Lib/test/test_super.py /^ class X:$/;" c function:TestSuper.test___class___classmethod +X Lib/test/test_super.py /^ class X:$/;" c function:TestSuper.test___class___instancemethod +X Lib/test/test_super.py /^ class X:$/;" c function:TestSuper.test___class___staticmethod +X Lib/test/test_super.py /^ class X:$/;" c function:TestSuper.test_cell_as_self +X Lib/test/test_super.py /^ class X:$/;" c function:TestSuper.test_obscure_super_errors +X Lib/test/test_super.py /^ class X:$/;" c function:TestSuper.test_various___class___pathologies +X Lib/test/test_sys.py /^ class X(Exception):$/;" c class:UnraisableHookTest.test_original_unraisablehook_exception_qualname.A.B +X Lib/test/test_threading_local.py /^ class X:$/;" c function:BaseLocalTest.test_cycle_collection +X Lib/test/test_traceback.py /^ class X(Exception):$/;" c class:BaseExceptionReportingTests.test_exception_qualname.A.B +X Lib/test/test_traceback.py /^ class X(Exception):$/;" c function:BaseExceptionReportingTests.test_exception_bad__str__ +X Lib/test/test_traceback.py /^ class X(Exception):$/;" c function:BaseExceptionReportingTests.test_exception_modulename +X Lib/test/test_traceback.py /^ class X(Exception):$/;" c function:BaseExceptionReportingTests.test_exception_modulename_not_unicode +X Lib/test/test_traceback.py /^ class X(Exception):$/;" c function:TracebackCases.test_format_exception_only_bad__str__ +X Lib/test/test_type_params.py /^ class X:$/;" c function:TypeParamsClassScopeTest.test_alias +X Lib/test/test_type_params.py /^ class X:$/;" c function:TypeParamsClassScopeTest.test_bound +X Lib/test/test_type_params.py /^ class X:$/;" c function:TypeParamsClassScopeTest.test_modified_later +X Lib/test/test_types.py /^ X = types.new_class("X", (C, int()))$/;" v class:ClassCreationTests.test_metaclass_override_callable.BNotMeta +X Lib/test/test_types.py /^ X = types.new_class("X", (int(), C))$/;" v class:ClassCreationTests.test_metaclass_override_callable.BNotMeta +X Lib/test/test_typing.py /^ class X(NamedTuple, A):$/;" c class:NamedTupleTests.test_multiple_inheritance.A +X Lib/test/test_typing.py /^ class X(NamedTuple, NamedTuple):$/;" c class:NamedTupleTests.test_multiple_inheritance.A +X Lib/test/test_typing.py /^ class X(NamedTuple, tuple):$/;" c class:NamedTupleTests.test_multiple_inheritance.A +X Lib/test/test_typing.py /^ class X(Annotated[int, (1, 10)]): ...$/;" c function:AnnotatedTests.test_annotated_mro +X Lib/test/test_typing.py /^ class X(Generic[*Ts, P]):$/;" c function:ParamSpecTests.test_typevartuple_and_paramspecs_in_user_generics +X Lib/test/test_typing.py /^ class X(Generic[P, P2]):$/;" c function:ParamSpecTests.test_multiple_paramspecs_in_user_generics +X Lib/test/test_typing.py /^ class X(Generic[T, P]):$/;" c function:ParamSpecTests.test_typevartuple_and_paramspecs_in_generic_aliases +X Lib/test/test_typing.py /^ class X(Generic[T, P]):$/;" c function:ParamSpecTests.test_user_generics +X Lib/test/test_typing.py /^ class X(NamedTuple, Generic[T]):$/;" c function:NamedTupleTests.test_generic +X Lib/test/test_typing.py /^ class X(typing.Generic[T]):$/;" c function:GenericTests.test_init_subclass +X Lib/test/test_typing.py /^ class X[T](NamedTuple):$/;" c function:NamedTupleTests.test_generic_pep695 +X Lib/test/test_unittest/testmock/support.py /^class X(object):$/;" c +X Lib/test/test_unittest/testmock/testmock.py /^ class X(object):$/;" c function:MockTest.test_repr_with_spec +X Lib/test/test_unittest/testmock/testmock.py /^ class X(object):$/;" c function:MockTest.test_setting_attribute_with_spec_set +X Lib/test/test_unittest/testmock/testmock.py /^ class X(object):$/;" c function:MockTest.test_spec_class +X Lib/test/test_unittest/testmock/testmock.py /^ class X:$/;" c function:MockTest.test_spec_class_no_object_base +X Lib/test/test_warnings/__init__.py /^ class X:$/;" c function:FilterTests.test_mutate_filter_list +X Lib/test/test_xml_etree.py /^ class X(ET.Element):$/;" c function:BadElementTest.test_remove_with_mutating +X Lib/test/test_xml_etree.py /^ class X(str):$/;" c function:BadElementTest.test_element_get_tail +X Lib/test/test_xml_etree.py /^ class X(str):$/;" c function:BadElementTest.test_element_get_text +X Lib/test/test_xml_etree.py /^ class X:$/;" c function:BadElementTest.test_ass_subscr +X Lib/test/test_xml_etree.py /^ class X:$/;" c function:BadElementTest.test_extend_mutable_list +X Lib/test/test_xml_etree.py /^ class X:$/;" c function:BadElementTest.test_extend_mutable_list2 +X Lib/test/test_xml_etree.py /^ class X:$/;" c function:BadElementTest.test_subscr +X Lib/test/test_xml_etree_c.py /^ class X:$/;" c function:MiscTests.test_bpo_31728 +X Lib/test/test_xml_etree_c.py /^ class X:$/;" c function:MiscTests.test_dict_disappearing_during_get_item +X Lib/tkinter/constants.py /^X='x'$/;" v +X3PAD Lib/telnetlib.py /^X3PAD = bytes([30]) # X.3 PAD$/;" v +X509 Lib/test/test_lib2to3/data/infinite_recursion.py /^X509 = x509_st$/;" v +X509_ALGOR Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_ALGOR = X509_algor_st$/;" v +X509_ATTRIBUTE Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_ATTRIBUTE = x509_attributes_st$/;" v +X509_CERT_AUX Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_CERT_AUX = x509_cert_aux_st$/;" v +X509_CERT_FILE_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_CERT_FILE_CTX = x509_file_st$/;" v +X509_CINF Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_CINF = x509_cinf_st$/;" v +X509_CRL Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_CRL = X509_crl_st$/;" v +X509_CRL_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_CRL_INFO = X509_crl_info_st$/;" v +X509_EXTENSION Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_EXTENSION = X509_extension_st$/;" v +X509_HASH_DIR_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_HASH_DIR_CTX = x509_hash_dir_st$/;" v +X509_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_INFO = X509_info_st$/;" v +X509_LOOKUP Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_LOOKUP = x509_lookup_st$/;" v +X509_LOOKUP_METHOD Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_LOOKUP_METHOD = x509_lookup_method_st$/;" v +X509_NAME Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_NAME = X509_name_st$/;" v +X509_NAME_ENTRY Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_NAME_ENTRY = X509_name_entry_st$/;" v +X509_NAME_MAXLEN Modules/_ssl.c 271;" d file: +X509_OBJECT Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_OBJECT = x509_object_st$/;" v +X509_OBJECTS Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_OBJECTS = X509_objects_st$/;" v +X509_PKEY Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_PKEY = private_key_st$/;" v +X509_PUBKEY Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_PUBKEY = X509_pubkey_st$/;" v +X509_REQ Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_REQ = X509_req_st$/;" v +X509_REQ_INFO Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_REQ_INFO = X509_req_info_st$/;" v +X509_REVOKED Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_REVOKED = X509_revoked_st$/;" v +X509_SIG Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_SIG = X509_sig_st$/;" v +X509_STORE Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_STORE = x509_store_st$/;" v +X509_STORE_CTX Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_STORE_CTX = x509_store_ctx_st$/;" v +X509_TRUST Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_TRUST = x509_trust_st$/;" v +X509_VAL Lib/test/test_lib2to3/data/infinite_recursion.py /^X509_VAL = X509_val_st$/;" v +X509_algor_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_algor_st(Structure):$/;" c +X509_crl_info_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_crl_info_st(Structure):$/;" c +X509_crl_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_crl_st(Structure):$/;" c +X509_extension_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_extension_st(Structure):$/;" c +X509_info_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_info_st(Structure):$/;" c +X509_name_entry_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_name_entry_st(Structure):$/;" c +X509_name_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_name_st(Structure):$/;" c +X509_objects_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_objects_st(Structure):$/;" c +X509_pubkey_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_pubkey_st(Structure):$/;" c +X509_req_info_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_req_info_st(Structure):$/;" c +X509_req_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_req_st(Structure):$/;" c +X509_revoked_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_revoked_st(Structure):$/;" c +X509_sig_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_sig_st(Structure):$/;" c +X509_val_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class X509_val_st(Structure):$/;" c +XASCII Lib/telnetlib.py /^XASCII = bytes([17]) # extended ascii character set$/;" v +XAUTH Lib/telnetlib.py /^XAUTH = bytes([41]) # XAUTH$/;" v +XAxis Lib/test/test_typing.py /^class XAxis(Protocol):$/;" c +XDISPLOC Lib/telnetlib.py /^XDISPLOC = bytes([35]) # X Display Location$/;" v +XDRTest Lib/test/test_xdrlib.py /^class XDRTest(unittest.TestCase):$/;" c +XFormatter Lib/test/test_string.py /^ class XFormatter(string.Formatter):$/;" c function:ModuleTest.test_override_convert_field +XGLTYPE Lib/tarfile.py /^XGLTYPE = b"g" # POSIX.1-2001 global header$/;" v +XHDTYPE Lib/tarfile.py /^XHDTYPE = b"x" # POSIX.1-2001 extended header$/;" v +XHTML_NAMESPACE Lib/xml/dom/__init__.py /^XHTML_NAMESPACE = "http:\/\/www.w3.org\/1999\/xhtml"$/;" v +XID_CONTINUE_MASK Objects/unicodectype.c 20;" d file: +XID_CONTINUE_MASK Tools/unicode/makeunicodedata.py /^XID_CONTINUE_MASK = 0x200$/;" v +XID_START_MASK Objects/unicodectype.c 19;" d file: +XID_START_MASK Tools/unicode/makeunicodedata.py /^XID_START_MASK = 0x100$/;" v +XINCLUDE Lib/test/test_xml_etree.py /^XINCLUDE = {}$/;" v +XINCLUDE Lib/xml/etree/ElementInclude.py /^XINCLUDE = "{http:\/\/www.w3.org\/2001\/XInclude}"$/;" v +XINCLUDE_BAD Lib/test/test_xml_etree.py /^XINCLUDE_BAD = {}$/;" v +XINCLUDE_FALLBACK Lib/xml/etree/ElementInclude.py /^XINCLUDE_FALLBACK = XINCLUDE + "fallback"$/;" v +XINCLUDE_INCLUDE Lib/xml/etree/ElementInclude.py /^XINCLUDE_INCLUDE = XINCLUDE + "include"$/;" v +XIncludeTest Lib/test/test_xml_etree.py /^class XIncludeTest(unittest.TestCase):$/;" c +XK Lib/test/test_typing.py /^XK = TypeVar('XK', str, bytes)$/;" v +XML Lib/xml/etree/ElementTree.py /^def XML(text, parser=None):$/;" f +XMLCALL Modules/expat/expat_external.h 74;" d +XMLCALL Modules/expat/expat_external.h 76;" d +XMLCALL Modules/expat/expat_external.h 88;" d +XMLFilterBase Lib/xml/sax/saxutils.py /^class XMLFilterBase(xmlreader.XMLReader):$/;" c +XMLFilterBaseTest Lib/test/test_sax.py /^class XMLFilterBaseTest(unittest.TestCase):$/;" c +XMLGenerator Lib/xml/sax/saxutils.py /^class XMLGenerator(handler.ContentHandler):$/;" c +XMLID Lib/xml/etree/ElementTree.py /^def XMLID(text, parser=None):$/;" f +XMLIMPORT Modules/expat/expat_external.h 108;" d +XMLIMPORT Modules/expat/expat_external.h 113;" d +XMLIMPORT Modules/expat/expat_external.h 97;" d +XMLNS_NAMESPACE Lib/xml/dom/__init__.py /^XMLNS_NAMESPACE = "http:\/\/www.w3.org\/2000\/xmlns\/"$/;" v +XMLPARSEAPI Modules/expat/expat_external.h 130;" d +XMLPARSE_GETTER_DEF Modules/pyexpat.c 1472;" d file: +XMLPARSE_GETTER_DEF Modules/pyexpat.c 1495;" d file: +XMLPARSE_GETTER_SETTER_DEF Modules/pyexpat.c 1474;" d file: +XMLPARSE_GETTER_SETTER_DEF Modules/pyexpat.c 1496;" d file: +XMLParser Lib/xml/etree/ElementTree.py /^class XMLParser:$/;" c +XMLParserObject Modules/_elementtree.c /^} XMLParserObject;$/;" t typeref:struct:__anon386 file: +XMLParserTest Lib/test/test_xml_etree.py /^class XMLParserTest(unittest.TestCase):$/;" c +XMLParser_Type Modules/_elementtree.c /^ PyTypeObject *XMLParser_Type;$/;" m struct:__anon381 file: +XMLPullParser Lib/xml/etree/ElementTree.py /^class XMLPullParser:$/;" c +XMLPullParserTest Lib/test/test_xml_etree.py /^class XMLPullParserTest(unittest.TestCase):$/;" c +XMLRPCDocGenerator Lib/xmlrpc/server.py /^class XMLRPCDocGenerator:$/;" c +XMLRPCTestCase Lib/test/test_xmlrpc.py /^class XMLRPCTestCase(unittest.TestCase):$/;" c +XMLReader Lib/xml/sax/xmlreader.py /^class XMLReader:$/;" c +XML_ACCOUNT_DIRECT Modules/expat/xmlparse.c /^ XML_ACCOUNT_DIRECT, \/* bytes directly passed to the Expat parser *\/$/;" e enum:XML_Account file: +XML_ACCOUNT_ENTITY_EXPANSION Modules/expat/xmlparse.c /^ XML_ACCOUNT_ENTITY_EXPANSION, \/* intermediate bytes produced during entity$/;" e enum:XML_Account file: +XML_ACCOUNT_NONE Modules/expat/xmlparse.c /^ XML_ACCOUNT_NONE \/* i.e. do not account, was accounted already *\/$/;" e enum:XML_Account file: +XML_ATTRIBUTE_VALUE_LITERAL Modules/expat/xmltok.h 138;" d +XML_ATTR_ALLOC_SIZE Modules/expat/expat_external.h 125;" d +XML_ATTR_ALLOC_SIZE Modules/expat/expat_external.h 127;" d +XML_ATTR_MALLOC Modules/expat/expat_external.h 118;" d +XML_ATTR_MALLOC Modules/expat/expat_external.h 120;" d +XML_Account Modules/expat/xmlparse.c /^enum XML_Account {$/;" g file: +XML_AttlistDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_AttlistDeclHandler)($/;" t +XML_AttrInfo Modules/expat/expat.h /^} XML_AttrInfo;$/;" t typeref:struct:__anon599 +XML_BUILDING_EXPAT Modules/expat/xmlparse.c 61;" d file: +XML_Bool Modules/expat/expat.h /^typedef unsigned char XML_Bool;$/;" t +XML_CDATA_SECTION_STATE Modules/expat/xmltok.h 132;" d +XML_COMBINED_VERSION Modules/pyexpat.c 16;" d file: +XML_CONTENT_STATE Modules/expat/xmltok.h 131;" d +XML_CONTEXT_BYTES Modules/expat/expat_config.h 19;" d +XML_CONVERT_COMPLETED Modules/expat/xmltok.h /^ XML_CONVERT_COMPLETED = 0,$/;" e enum:XML_Convert_Result +XML_CONVERT_INPUT_INCOMPLETE Modules/expat/xmltok.h /^ XML_CONVERT_INPUT_INCOMPLETE = 1,$/;" e enum:XML_Convert_Result +XML_CONVERT_OUTPUT_EXHAUSTED Modules/expat/xmltok.h /^ XML_CONVERT_OUTPUT_EXHAUSTED$/;" e enum:XML_Convert_Result +XML_CQUANT_NONE Modules/expat/expat.h /^ XML_CQUANT_NONE,$/;" e enum:XML_Content_Quant +XML_CQUANT_OPT Modules/expat/expat.h /^ XML_CQUANT_OPT,$/;" e enum:XML_Content_Quant +XML_CQUANT_PLUS Modules/expat/expat.h /^ XML_CQUANT_PLUS$/;" e enum:XML_Content_Quant +XML_CQUANT_REP Modules/expat/expat.h /^ XML_CQUANT_REP,$/;" e enum:XML_Content_Quant +XML_CTYPE_ANY Modules/expat/expat.h /^ XML_CTYPE_ANY,$/;" e enum:XML_Content_Type +XML_CTYPE_CHOICE Modules/expat/expat.h /^ XML_CTYPE_CHOICE,$/;" e enum:XML_Content_Type +XML_CTYPE_EMPTY Modules/expat/expat.h /^ XML_CTYPE_EMPTY = 1,$/;" e enum:XML_Content_Type +XML_CTYPE_MIXED Modules/expat/expat.h /^ XML_CTYPE_MIXED,$/;" e enum:XML_Content_Type +XML_CTYPE_NAME Modules/expat/expat.h /^ XML_CTYPE_NAME,$/;" e enum:XML_Content_Type +XML_CTYPE_SEQ Modules/expat/expat.h /^ XML_CTYPE_SEQ$/;" e enum:XML_Content_Type +XML_Char Modules/expat/expat_external.h /^typedef char XML_Char;$/;" t +XML_Char Modules/expat/expat_external.h /^typedef unsigned short XML_Char;$/;" t +XML_Char Modules/expat/expat_external.h /^typedef wchar_t XML_Char;$/;" t +XML_CharacterDataHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_CharacterDataHandler)(void *userData,$/;" t +XML_CommentHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_CommentHandler)(void *userData, const XML_Char *data);$/;" t +XML_Content Modules/expat/expat.h /^typedef struct XML_cp XML_Content;$/;" t typeref:struct:XML_cp +XML_Content_Quant Modules/expat/expat.h /^enum XML_Content_Quant {$/;" g +XML_Content_Type Modules/expat/expat.h /^enum XML_Content_Type {$/;" g +XML_Convert_Result Modules/expat/xmltok.h /^enum XML_Convert_Result {$/;" g +XML_DTD Modules/expat/expat_config.h 18;" d +XML_DefaultCurrent Modules/expat/pyexpatns.h 44;" d +XML_DefaultCurrent Modules/expat/xmlparse.c /^XML_DefaultCurrent(XML_Parser parser) {$/;" f +XML_DefaultHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_DefaultHandler)(void *userData, const XML_Char *s,$/;" t +XML_ENABLE_VISIBILITY Modules/expat/expat_external.h 104;" d +XML_ENCODE_MAX Modules/expat/xmlparse.c 149;" d file: +XML_ENCODE_MAX Modules/expat/xmlparse.c 157;" d file: +XML_ENTITY_VALUE_LITERAL Modules/expat/xmltok.h 139;" d +XML_ERROR_ABORTED Modules/expat/expat.h /^ XML_ERROR_ABORTED,$/;" e enum:XML_Error +XML_ERROR_AMPLIFICATION_LIMIT_BREACH Modules/expat/expat.h /^ XML_ERROR_AMPLIFICATION_LIMIT_BREACH$/;" e enum:XML_Error +XML_ERROR_ASYNC_ENTITY Modules/expat/expat.h /^ XML_ERROR_ASYNC_ENTITY,$/;" e enum:XML_Error +XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF Modules/expat/expat.h /^ XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF,$/;" e enum:XML_Error +XML_ERROR_BAD_CHAR_REF Modules/expat/expat.h /^ XML_ERROR_BAD_CHAR_REF,$/;" e enum:XML_Error +XML_ERROR_BINARY_ENTITY_REF Modules/expat/expat.h /^ XML_ERROR_BINARY_ENTITY_REF,$/;" e enum:XML_Error +XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING Modules/expat/expat.h /^ XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING,$/;" e enum:XML_Error +XML_ERROR_DUPLICATE_ATTRIBUTE Modules/expat/expat.h /^ XML_ERROR_DUPLICATE_ATTRIBUTE,$/;" e enum:XML_Error +XML_ERROR_ENTITY_DECLARED_IN_PE Modules/expat/expat.h /^ XML_ERROR_ENTITY_DECLARED_IN_PE,$/;" e enum:XML_Error +XML_ERROR_EXTERNAL_ENTITY_HANDLING Modules/expat/expat.h /^ XML_ERROR_EXTERNAL_ENTITY_HANDLING,$/;" e enum:XML_Error +XML_ERROR_FEATURE_REQUIRES_XML_DTD Modules/expat/expat.h /^ XML_ERROR_FEATURE_REQUIRES_XML_DTD,$/;" e enum:XML_Error +XML_ERROR_FINISHED Modules/expat/expat.h /^ XML_ERROR_FINISHED,$/;" e enum:XML_Error +XML_ERROR_INCOMPLETE_PE Modules/expat/expat.h /^ XML_ERROR_INCOMPLETE_PE,$/;" e enum:XML_Error +XML_ERROR_INCORRECT_ENCODING Modules/expat/expat.h /^ XML_ERROR_INCORRECT_ENCODING,$/;" e enum:XML_Error +XML_ERROR_INVALID_ARGUMENT Modules/expat/expat.h /^ XML_ERROR_INVALID_ARGUMENT,$/;" e enum:XML_Error +XML_ERROR_INVALID_TOKEN Modules/expat/expat.h /^ XML_ERROR_INVALID_TOKEN,$/;" e enum:XML_Error +XML_ERROR_JUNK_AFTER_DOC_ELEMENT Modules/expat/expat.h /^ XML_ERROR_JUNK_AFTER_DOC_ELEMENT,$/;" e enum:XML_Error +XML_ERROR_MISPLACED_XML_PI Modules/expat/expat.h /^ XML_ERROR_MISPLACED_XML_PI,$/;" e enum:XML_Error +XML_ERROR_NONE Modules/expat/expat.h /^ XML_ERROR_NONE,$/;" e enum:XML_Error +XML_ERROR_NOT_STANDALONE Modules/expat/expat.h /^ XML_ERROR_NOT_STANDALONE,$/;" e enum:XML_Error +XML_ERROR_NOT_SUSPENDED Modules/expat/expat.h /^ XML_ERROR_NOT_SUSPENDED,$/;" e enum:XML_Error +XML_ERROR_NO_BUFFER Modules/expat/expat.h /^ XML_ERROR_NO_BUFFER,$/;" e enum:XML_Error +XML_ERROR_NO_ELEMENTS Modules/expat/expat.h /^ XML_ERROR_NO_ELEMENTS,$/;" e enum:XML_Error +XML_ERROR_NO_MEMORY Modules/expat/expat.h /^ XML_ERROR_NO_MEMORY,$/;" e enum:XML_Error +XML_ERROR_PARAM_ENTITY_REF Modules/expat/expat.h /^ XML_ERROR_PARAM_ENTITY_REF,$/;" e enum:XML_Error +XML_ERROR_PARTIAL_CHAR Modules/expat/expat.h /^ XML_ERROR_PARTIAL_CHAR,$/;" e enum:XML_Error +XML_ERROR_PUBLICID Modules/expat/expat.h /^ XML_ERROR_PUBLICID,$/;" e enum:XML_Error +XML_ERROR_RECURSIVE_ENTITY_REF Modules/expat/expat.h /^ XML_ERROR_RECURSIVE_ENTITY_REF,$/;" e enum:XML_Error +XML_ERROR_RESERVED_NAMESPACE_URI Modules/expat/expat.h /^ XML_ERROR_RESERVED_NAMESPACE_URI,$/;" e enum:XML_Error +XML_ERROR_RESERVED_PREFIX_XML Modules/expat/expat.h /^ XML_ERROR_RESERVED_PREFIX_XML,$/;" e enum:XML_Error +XML_ERROR_RESERVED_PREFIX_XMLNS Modules/expat/expat.h /^ XML_ERROR_RESERVED_PREFIX_XMLNS,$/;" e enum:XML_Error +XML_ERROR_SUSPENDED Modules/expat/expat.h /^ XML_ERROR_SUSPENDED,$/;" e enum:XML_Error +XML_ERROR_SUSPEND_PE Modules/expat/expat.h /^ XML_ERROR_SUSPEND_PE,$/;" e enum:XML_Error +XML_ERROR_SYNTAX Modules/expat/expat.h /^ XML_ERROR_SYNTAX,$/;" e enum:XML_Error +XML_ERROR_TAG_MISMATCH Modules/expat/expat.h /^ XML_ERROR_TAG_MISMATCH,$/;" e enum:XML_Error +XML_ERROR_TEXT_DECL Modules/expat/expat.h /^ XML_ERROR_TEXT_DECL,$/;" e enum:XML_Error +XML_ERROR_UNBOUND_PREFIX Modules/expat/expat.h /^ XML_ERROR_UNBOUND_PREFIX,$/;" e enum:XML_Error +XML_ERROR_UNCLOSED_CDATA_SECTION Modules/expat/expat.h /^ XML_ERROR_UNCLOSED_CDATA_SECTION,$/;" e enum:XML_Error +XML_ERROR_UNCLOSED_TOKEN Modules/expat/expat.h /^ XML_ERROR_UNCLOSED_TOKEN,$/;" e enum:XML_Error +XML_ERROR_UNDECLARING_PREFIX Modules/expat/expat.h /^ XML_ERROR_UNDECLARING_PREFIX,$/;" e enum:XML_Error +XML_ERROR_UNDEFINED_ENTITY Modules/expat/expat.h /^ XML_ERROR_UNDEFINED_ENTITY,$/;" e enum:XML_Error +XML_ERROR_UNEXPECTED_STATE Modules/expat/expat.h /^ XML_ERROR_UNEXPECTED_STATE,$/;" e enum:XML_Error +XML_ERROR_UNKNOWN_ENCODING Modules/expat/expat.h /^ XML_ERROR_UNKNOWN_ENCODING,$/;" e enum:XML_Error +XML_ERROR_XML_DECL Modules/expat/expat.h /^ XML_ERROR_XML_DECL,$/;" e enum:XML_Error +XML_ElementDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_ElementDeclHandler)(void *userData,$/;" t +XML_Encoding Modules/expat/expat.h /^} XML_Encoding;$/;" t typeref:struct:__anon598 +XML_EndCdataSectionHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_EndCdataSectionHandler)(void *userData);$/;" t +XML_EndDoctypeDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_EndDoctypeDeclHandler)(void *userData);$/;" t +XML_EndElementHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_EndElementHandler)(void *userData,$/;" t +XML_EndNamespaceDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_EndNamespaceDeclHandler)(void *userData,$/;" t +XML_EntityDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_EntityDeclHandler)($/;" t +XML_Error Modules/expat/expat.h /^enum XML_Error {$/;" g +XML_ErrorString Modules/expat/pyexpatns.h 45;" d +XML_ErrorString Modules/expat/xmlparse.c /^XML_ErrorString(enum XML_Error code) {$/;" f +XML_ExpatVersion Modules/expat/pyexpatns.h 46;" d +XML_ExpatVersion Modules/expat/xmlparse.c /^XML_ExpatVersion(void) {$/;" f +XML_ExpatVersionInfo Modules/expat/pyexpatns.h 47;" d +XML_ExpatVersionInfo Modules/expat/xmlparse.c /^XML_ExpatVersionInfo(void) {$/;" f +XML_Expat_Version Modules/expat/expat.h /^} XML_Expat_Version;$/;" t typeref:struct:__anon601 +XML_ExternalEntityParserCreate Modules/expat/pyexpatns.h 48;" d +XML_ExternalEntityParserCreate Modules/expat/xmlparse.c /^XML_ExternalEntityParserCreate(XML_Parser oldParser, const XML_Char *context,$/;" f +XML_ExternalEntityRefHandler Modules/expat/expat.h /^typedef int(XMLCALL *XML_ExternalEntityRefHandler)(XML_Parser parser,$/;" t +XML_FALSE Modules/expat/expat.h 56;" d +XML_FEATURE_ATTR_INFO Modules/expat/expat.h /^ XML_FEATURE_ATTR_INFO,$/;" e enum:XML_FeatureEnum +XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_ACTIVATION_THRESHOLD_DEFAULT Modules/expat/expat.h /^ XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_ACTIVATION_THRESHOLD_DEFAULT$/;" e enum:XML_FeatureEnum +XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_MAXIMUM_AMPLIFICATION_DEFAULT Modules/expat/expat.h /^ XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_MAXIMUM_AMPLIFICATION_DEFAULT,$/;" e enum:XML_FeatureEnum +XML_FEATURE_CONTEXT_BYTES Modules/expat/expat.h /^ XML_FEATURE_CONTEXT_BYTES,$/;" e enum:XML_FeatureEnum +XML_FEATURE_DTD Modules/expat/expat.h /^ XML_FEATURE_DTD,$/;" e enum:XML_FeatureEnum +XML_FEATURE_END Modules/expat/expat.h /^ XML_FEATURE_END = 0,$/;" e enum:XML_FeatureEnum +XML_FEATURE_LARGE_SIZE Modules/expat/expat.h /^ XML_FEATURE_LARGE_SIZE,$/;" e enum:XML_FeatureEnum +XML_FEATURE_MIN_SIZE Modules/expat/expat.h /^ XML_FEATURE_MIN_SIZE,$/;" e enum:XML_FeatureEnum +XML_FEATURE_NS Modules/expat/expat.h /^ XML_FEATURE_NS,$/;" e enum:XML_FeatureEnum +XML_FEATURE_SIZEOF_XML_CHAR Modules/expat/expat.h /^ XML_FEATURE_SIZEOF_XML_CHAR,$/;" e enum:XML_FeatureEnum +XML_FEATURE_SIZEOF_XML_LCHAR Modules/expat/expat.h /^ XML_FEATURE_SIZEOF_XML_LCHAR,$/;" e enum:XML_FeatureEnum +XML_FEATURE_UNICODE Modules/expat/expat.h /^ XML_FEATURE_UNICODE,$/;" e enum:XML_FeatureEnum +XML_FEATURE_UNICODE_WCHAR_T Modules/expat/expat.h /^ XML_FEATURE_UNICODE_WCHAR_T,$/;" e enum:XML_FeatureEnum +XML_FINISHED Modules/expat/expat.h /^enum XML_Parsing { XML_INITIALIZED, XML_PARSING, XML_FINISHED, XML_SUSPENDED };$/;" e enum:XML_Parsing +XML_Feature Modules/expat/expat.h /^} XML_Feature;$/;" t typeref:struct:__anon602 +XML_FeatureEnum Modules/expat/expat.h /^enum XML_FeatureEnum {$/;" g +XML_FreeContentModel Modules/expat/pyexpatns.h 49;" d +XML_FreeContentModel Modules/expat/xmlparse.c /^XML_FreeContentModel(XML_Parser parser, XML_Content *model) {$/;" f +XML_GetAttributeInfo Modules/expat/xmlparse.c /^XML_GetAttributeInfo(XML_Parser parser) {$/;" f +XML_GetBase Modules/expat/pyexpatns.h 50;" d +XML_GetBase Modules/expat/xmlparse.c /^XML_GetBase(XML_Parser parser) {$/;" f +XML_GetBuffer Modules/expat/pyexpatns.h 51;" d +XML_GetBuffer Modules/expat/xmlparse.c /^XML_GetBuffer(XML_Parser parser, int len) {$/;" f +XML_GetCurrentByteCount Modules/expat/pyexpatns.h 52;" d +XML_GetCurrentByteCount Modules/expat/xmlparse.c /^XML_GetCurrentByteCount(XML_Parser parser) {$/;" f +XML_GetCurrentByteIndex Modules/expat/pyexpatns.h 53;" d +XML_GetCurrentByteIndex Modules/expat/xmlparse.c /^XML_GetCurrentByteIndex(XML_Parser parser) {$/;" f +XML_GetCurrentColumnNumber Modules/expat/pyexpatns.h 54;" d +XML_GetCurrentColumnNumber Modules/expat/xmlparse.c /^XML_GetCurrentColumnNumber(XML_Parser parser) {$/;" f +XML_GetCurrentLineNumber Modules/expat/pyexpatns.h 55;" d +XML_GetCurrentLineNumber Modules/expat/xmlparse.c /^XML_GetCurrentLineNumber(XML_Parser parser) {$/;" f +XML_GetErrorByteIndex Modules/expat/expat.h 970;" d +XML_GetErrorCode Modules/expat/pyexpatns.h 56;" d +XML_GetErrorCode Modules/expat/xmlparse.c /^XML_GetErrorCode(XML_Parser parser) {$/;" f +XML_GetErrorColumnNumber Modules/expat/expat.h 969;" d +XML_GetErrorLineNumber Modules/expat/expat.h 968;" d +XML_GetFeatureList Modules/expat/pyexpatns.h 57;" d +XML_GetFeatureList Modules/expat/xmlparse.c /^XML_GetFeatureList(void) {$/;" f +XML_GetIdAttributeIndex Modules/expat/pyexpatns.h 58;" d +XML_GetIdAttributeIndex Modules/expat/xmlparse.c /^XML_GetIdAttributeIndex(XML_Parser parser) {$/;" f +XML_GetInputContext Modules/expat/pyexpatns.h 59;" d +XML_GetInputContext Modules/expat/xmlparse.c /^XML_GetInputContext(XML_Parser parser, int *offset, int *size) {$/;" f +XML_GetParsingStatus Modules/expat/pyexpatns.h 60;" d +XML_GetParsingStatus Modules/expat/xmlparse.c /^XML_GetParsingStatus(XML_Parser parser, XML_ParsingStatus *status) {$/;" f +XML_GetSpecifiedAttributeCount Modules/expat/pyexpatns.h 61;" d +XML_GetSpecifiedAttributeCount Modules/expat/xmlparse.c /^XML_GetSpecifiedAttributeCount(XML_Parser parser) {$/;" f +XML_GetUserData Modules/expat/expat.h 678;" d +XML_IGNORE_SECTION_STATE Modules/expat/xmltok.h 134;" d +XML_INITIALIZED Modules/expat/expat.h /^enum XML_Parsing { XML_INITIALIZED, XML_PARSING, XML_FINISHED, XML_SUSPENDED };$/;" e enum:XML_Parsing +XML_Index Modules/expat/expat_external.h /^typedef long XML_Index;$/;" t +XML_Index Modules/expat/expat_external.h /^typedef long long XML_Index;$/;" t +XML_L Modules/expat/xmlparse.c 180;" d file: +XML_L Modules/expat/xmlparse.c 183;" d file: +XML_L Modules/expat/xmlparse.c 189;" d file: +XML_LChar Modules/expat/expat_external.h /^typedef char XML_LChar;$/;" t +XML_LChar Modules/expat/expat_external.h /^typedef wchar_t XML_LChar;$/;" t +XML_MAJOR_VERSION Modules/expat/expat.h 1056;" d +XML_MICRO_VERSION Modules/expat/expat.h 1058;" d +XML_MINOR_VERSION Modules/expat/expat.h 1057;" d +XML_MemFree Modules/expat/pyexpatns.h 70;" d +XML_MemFree Modules/expat/xmlparse.c /^XML_MemFree(XML_Parser parser, void *ptr) {$/;" f +XML_MemMalloc Modules/expat/pyexpatns.h 71;" d +XML_MemMalloc Modules/expat/xmlparse.c /^XML_MemMalloc(XML_Parser parser, size_t size) {$/;" f +XML_MemRealloc Modules/expat/pyexpatns.h 72;" d +XML_MemRealloc Modules/expat/xmlparse.c /^XML_MemRealloc(XML_Parser parser, void *ptr, size_t size) {$/;" f +XML_Memory_Handling_Suite Modules/expat/expat.h /^} XML_Memory_Handling_Suite;$/;" t typeref:struct:__anon597 +XML_NAMESPACE Lib/xml/dom/__init__.py /^XML_NAMESPACE = "http:\/\/www.w3.org\/XML\/1998\/namespace"$/;" v +XML_NS Modules/expat/expat_config.h 17;" d +XML_N_LITERAL_TYPES Modules/expat/xmltok.h 137;" d +XML_N_STATES Modules/expat/xmltok.h 125;" d +XML_N_STATES Modules/expat/xmltok.h 127;" d +XML_NotStandaloneHandler Modules/expat/expat.h /^typedef int(XMLCALL *XML_NotStandaloneHandler)(void *userData);$/;" t +XML_NotationDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_NotationDeclHandler)(void *userData,$/;" t +XML_PARAM_ENTITY_PARSING_ALWAYS Modules/expat/expat.h /^ XML_PARAM_ENTITY_PARSING_ALWAYS$/;" e enum:XML_ParamEntityParsing +XML_PARAM_ENTITY_PARSING_NEVER Modules/expat/expat.h /^ XML_PARAM_ENTITY_PARSING_NEVER,$/;" e enum:XML_ParamEntityParsing +XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE Modules/expat/expat.h /^ XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE,$/;" e enum:XML_ParamEntityParsing +XML_PARSING Modules/expat/expat.h /^enum XML_Parsing { XML_INITIALIZED, XML_PARSING, XML_FINISHED, XML_SUSPENDED };$/;" e enum:XML_Parsing +XML_POOR_ENTROPY Modules/expat/expat_config.h 23;" d +XML_PROLOG_STATE Modules/expat/xmltok.h 130;" d +XML_ParamEntityParsing Modules/expat/expat.h /^enum XML_ParamEntityParsing {$/;" g +XML_Parse Modules/expat/pyexpatns.h 73;" d +XML_Parse Modules/expat/xmlparse.c /^XML_Parse(XML_Parser parser, const char *s, int len, int isFinal) {$/;" f +XML_ParseBuffer Modules/expat/pyexpatns.h 74;" d +XML_ParseBuffer Modules/expat/xmlparse.c /^XML_ParseBuffer(XML_Parser parser, int len, int isFinal) {$/;" f +XML_Parser Modules/expat/expat.h /^typedef struct XML_ParserStruct *XML_Parser;$/;" t typeref:struct:XML_ParserStruct +XML_ParserCreate Modules/expat/pyexpatns.h 75;" d +XML_ParserCreate Modules/expat/xmlparse.c /^XML_ParserCreate(const XML_Char *encodingName) {$/;" f +XML_ParserCreateNS Modules/expat/pyexpatns.h 77;" d +XML_ParserCreateNS Modules/expat/xmlparse.c /^XML_ParserCreateNS(const XML_Char *encodingName, XML_Char nsSep) {$/;" f +XML_ParserCreate_MM Modules/expat/pyexpatns.h 76;" d +XML_ParserCreate_MM Modules/expat/xmlparse.c /^XML_ParserCreate_MM(const XML_Char *encodingName,$/;" f +XML_ParserFree Modules/expat/pyexpatns.h 78;" d +XML_ParserFree Modules/expat/xmlparse.c /^XML_ParserFree(XML_Parser parser) {$/;" f +XML_ParserReset Modules/expat/pyexpatns.h 79;" d +XML_ParserReset Modules/expat/xmlparse.c /^XML_ParserReset(XML_Parser parser, const XML_Char *encodingName) {$/;" f +XML_ParserStruct Modules/expat/xmlparse.c /^struct XML_ParserStruct {$/;" s file: +XML_Parsing Modules/expat/expat.h /^enum XML_Parsing { XML_INITIALIZED, XML_PARSING, XML_FINISHED, XML_SUSPENDED };$/;" g +XML_ParsingStatus Modules/expat/expat.h /^} XML_ParsingStatus;$/;" t typeref:struct:__anon600 +XML_ProcessingInstructionHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_ProcessingInstructionHandler)(void *userData,$/;" t +XML_ROLE_ATTLIST_ELEMENT_NAME Modules/expat/xmlrole.h /^ XML_ROLE_ATTLIST_ELEMENT_NAME,$/;" e enum:__anon606 +XML_ROLE_ATTLIST_NONE Modules/expat/xmlrole.h /^ XML_ROLE_ATTLIST_NONE,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_ENUM_VALUE Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_ENUM_VALUE,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_NAME Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_NAME,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_NOTATION_VALUE Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_NOTATION_VALUE,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_CDATA Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_CDATA,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_ENTITIES Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_ENTITIES,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_ENTITY Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_ENTITY,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_ID Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_ID,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_IDREF Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_IDREF,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_IDREFS Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_IDREFS,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_NMTOKEN Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_NMTOKEN,$/;" e enum:__anon606 +XML_ROLE_ATTRIBUTE_TYPE_NMTOKENS Modules/expat/xmlrole.h /^ XML_ROLE_ATTRIBUTE_TYPE_NMTOKENS,$/;" e enum:__anon606 +XML_ROLE_COMMENT Modules/expat/xmlrole.h /^ XML_ROLE_COMMENT,$/;" e enum:__anon606 +XML_ROLE_CONTENT_ANY Modules/expat/xmlrole.h /^ XML_ROLE_CONTENT_ANY,$/;" e enum:__anon606 +XML_ROLE_CONTENT_ELEMENT Modules/expat/xmlrole.h /^ XML_ROLE_CONTENT_ELEMENT,$/;" e enum:__anon606 +XML_ROLE_CONTENT_ELEMENT_OPT Modules/expat/xmlrole.h /^ XML_ROLE_CONTENT_ELEMENT_OPT,$/;" e enum:__anon606 +XML_ROLE_CONTENT_ELEMENT_PLUS Modules/expat/xmlrole.h /^ XML_ROLE_CONTENT_ELEMENT_PLUS,$/;" e enum:__anon606 +XML_ROLE_CONTENT_ELEMENT_REP Modules/expat/xmlrole.h /^ XML_ROLE_CONTENT_ELEMENT_REP,$/;" e enum:__anon606 +XML_ROLE_CONTENT_EMPTY Modules/expat/xmlrole.h /^ XML_ROLE_CONTENT_EMPTY,$/;" e enum:__anon606 +XML_ROLE_CONTENT_PCDATA Modules/expat/xmlrole.h /^ XML_ROLE_CONTENT_PCDATA,$/;" e enum:__anon606 +XML_ROLE_DEFAULT_ATTRIBUTE_VALUE Modules/expat/xmlrole.h /^ XML_ROLE_DEFAULT_ATTRIBUTE_VALUE,$/;" e enum:__anon606 +XML_ROLE_DOCTYPE_CLOSE Modules/expat/xmlrole.h /^ XML_ROLE_DOCTYPE_CLOSE,$/;" e enum:__anon606 +XML_ROLE_DOCTYPE_INTERNAL_SUBSET Modules/expat/xmlrole.h /^ XML_ROLE_DOCTYPE_INTERNAL_SUBSET,$/;" e enum:__anon606 +XML_ROLE_DOCTYPE_NAME Modules/expat/xmlrole.h /^ XML_ROLE_DOCTYPE_NAME,$/;" e enum:__anon606 +XML_ROLE_DOCTYPE_NONE Modules/expat/xmlrole.h /^ XML_ROLE_DOCTYPE_NONE,$/;" e enum:__anon606 +XML_ROLE_DOCTYPE_PUBLIC_ID Modules/expat/xmlrole.h /^ XML_ROLE_DOCTYPE_PUBLIC_ID,$/;" e enum:__anon606 +XML_ROLE_DOCTYPE_SYSTEM_ID Modules/expat/xmlrole.h /^ XML_ROLE_DOCTYPE_SYSTEM_ID,$/;" e enum:__anon606 +XML_ROLE_ELEMENT_NAME Modules/expat/xmlrole.h /^ XML_ROLE_ELEMENT_NAME,$/;" e enum:__anon606 +XML_ROLE_ELEMENT_NONE Modules/expat/xmlrole.h /^ XML_ROLE_ELEMENT_NONE,$/;" e enum:__anon606 +XML_ROLE_ENTITY_COMPLETE Modules/expat/xmlrole.h /^ XML_ROLE_ENTITY_COMPLETE,$/;" e enum:__anon606 +XML_ROLE_ENTITY_NONE Modules/expat/xmlrole.h /^ XML_ROLE_ENTITY_NONE,$/;" e enum:__anon606 +XML_ROLE_ENTITY_NOTATION_NAME Modules/expat/xmlrole.h /^ XML_ROLE_ENTITY_NOTATION_NAME,$/;" e enum:__anon606 +XML_ROLE_ENTITY_PUBLIC_ID Modules/expat/xmlrole.h /^ XML_ROLE_ENTITY_PUBLIC_ID,$/;" e enum:__anon606 +XML_ROLE_ENTITY_SYSTEM_ID Modules/expat/xmlrole.h /^ XML_ROLE_ENTITY_SYSTEM_ID,$/;" e enum:__anon606 +XML_ROLE_ENTITY_VALUE Modules/expat/xmlrole.h /^ XML_ROLE_ENTITY_VALUE,$/;" e enum:__anon606 +XML_ROLE_ERROR Modules/expat/xmlrole.h /^ XML_ROLE_ERROR = -1,$/;" e enum:__anon606 +XML_ROLE_FIXED_ATTRIBUTE_VALUE Modules/expat/xmlrole.h /^ XML_ROLE_FIXED_ATTRIBUTE_VALUE,$/;" e enum:__anon606 +XML_ROLE_GENERAL_ENTITY_NAME Modules/expat/xmlrole.h /^ XML_ROLE_GENERAL_ENTITY_NAME,$/;" e enum:__anon606 +XML_ROLE_GROUP_CHOICE Modules/expat/xmlrole.h /^ XML_ROLE_GROUP_CHOICE,$/;" e enum:__anon606 +XML_ROLE_GROUP_CLOSE Modules/expat/xmlrole.h /^ XML_ROLE_GROUP_CLOSE,$/;" e enum:__anon606 +XML_ROLE_GROUP_CLOSE_OPT Modules/expat/xmlrole.h /^ XML_ROLE_GROUP_CLOSE_OPT,$/;" e enum:__anon606 +XML_ROLE_GROUP_CLOSE_PLUS Modules/expat/xmlrole.h /^ XML_ROLE_GROUP_CLOSE_PLUS,$/;" e enum:__anon606 +XML_ROLE_GROUP_CLOSE_REP Modules/expat/xmlrole.h /^ XML_ROLE_GROUP_CLOSE_REP,$/;" e enum:__anon606 +XML_ROLE_GROUP_OPEN Modules/expat/xmlrole.h /^ XML_ROLE_GROUP_OPEN,$/;" e enum:__anon606 +XML_ROLE_GROUP_SEQUENCE Modules/expat/xmlrole.h /^ XML_ROLE_GROUP_SEQUENCE,$/;" e enum:__anon606 +XML_ROLE_IGNORE_SECT Modules/expat/xmlrole.h /^ XML_ROLE_IGNORE_SECT,$/;" e enum:__anon606 +XML_ROLE_IMPLIED_ATTRIBUTE_VALUE Modules/expat/xmlrole.h /^ XML_ROLE_IMPLIED_ATTRIBUTE_VALUE,$/;" e enum:__anon606 +XML_ROLE_INNER_PARAM_ENTITY_REF Modules/expat/xmlrole.h /^ XML_ROLE_INNER_PARAM_ENTITY_REF,$/;" e enum:__anon606 +XML_ROLE_INSTANCE_START Modules/expat/xmlrole.h /^ XML_ROLE_INSTANCE_START,$/;" e enum:__anon606 +XML_ROLE_NONE Modules/expat/xmlrole.h /^ XML_ROLE_NONE = 0,$/;" e enum:__anon606 +XML_ROLE_NOTATION_NAME Modules/expat/xmlrole.h /^ XML_ROLE_NOTATION_NAME,$/;" e enum:__anon606 +XML_ROLE_NOTATION_NONE Modules/expat/xmlrole.h /^ XML_ROLE_NOTATION_NONE,$/;" e enum:__anon606 +XML_ROLE_NOTATION_NO_SYSTEM_ID Modules/expat/xmlrole.h /^ XML_ROLE_NOTATION_NO_SYSTEM_ID,$/;" e enum:__anon606 +XML_ROLE_NOTATION_PUBLIC_ID Modules/expat/xmlrole.h /^ XML_ROLE_NOTATION_PUBLIC_ID,$/;" e enum:__anon606 +XML_ROLE_NOTATION_SYSTEM_ID Modules/expat/xmlrole.h /^ XML_ROLE_NOTATION_SYSTEM_ID,$/;" e enum:__anon606 +XML_ROLE_PARAM_ENTITY_NAME Modules/expat/xmlrole.h /^ XML_ROLE_PARAM_ENTITY_NAME,$/;" e enum:__anon606 +XML_ROLE_PARAM_ENTITY_REF Modules/expat/xmlrole.h /^ XML_ROLE_PARAM_ENTITY_REF$/;" e enum:__anon606 +XML_ROLE_PI Modules/expat/xmlrole.h /^ XML_ROLE_PI,$/;" e enum:__anon606 +XML_ROLE_REQUIRED_ATTRIBUTE_VALUE Modules/expat/xmlrole.h /^ XML_ROLE_REQUIRED_ATTRIBUTE_VALUE,$/;" e enum:__anon606 +XML_ROLE_TEXT_DECL Modules/expat/xmlrole.h /^ XML_ROLE_TEXT_DECL,$/;" e enum:__anon606 +XML_ROLE_XML_DECL Modules/expat/xmlrole.h /^ XML_ROLE_XML_DECL,$/;" e enum:__anon606 +XML_ResumeParser Modules/expat/pyexpatns.h 84;" d +XML_ResumeParser Modules/expat/xmlparse.c /^XML_ResumeParser(XML_Parser parser) {$/;" f +XML_STATUS_ERROR Modules/expat/expat.h /^ XML_STATUS_ERROR = 0,$/;" e enum:XML_Status +XML_STATUS_ERROR Modules/expat/expat.h 73;" d +XML_STATUS_OK Modules/expat/expat.h /^ XML_STATUS_OK = 1,$/;" e enum:XML_Status +XML_STATUS_OK Modules/expat/expat.h 75;" d +XML_STATUS_SUSPENDED Modules/expat/expat.h /^ XML_STATUS_SUSPENDED = 2$/;" e enum:XML_Status +XML_STATUS_SUSPENDED Modules/expat/expat.h 77;" d +XML_SUSPENDED Modules/expat/expat.h /^enum XML_Parsing { XML_INITIALIZED, XML_PARSING, XML_FINISHED, XML_SUSPENDED };$/;" e enum:XML_Parsing +XML_SetAttlistDeclHandler Modules/expat/pyexpatns.h 85;" d +XML_SetAttlistDeclHandler Modules/expat/xmlparse.c /^XML_SetAttlistDeclHandler(XML_Parser parser, XML_AttlistDeclHandler attdecl) {$/;" f +XML_SetBase Modules/expat/pyexpatns.h 86;" d +XML_SetBase Modules/expat/xmlparse.c /^XML_SetBase(XML_Parser parser, const XML_Char *p) {$/;" f +XML_SetBillionLaughsAttackProtectionActivationThreshold Modules/expat/pyexpatns.h 87;" d +XML_SetBillionLaughsAttackProtectionActivationThreshold Modules/expat/xmlparse.c /^XML_SetBillionLaughsAttackProtectionActivationThreshold($/;" f +XML_SetBillionLaughsAttackProtectionMaximumAmplification Modules/expat/pyexpatns.h 88;" d +XML_SetBillionLaughsAttackProtectionMaximumAmplification Modules/expat/xmlparse.c /^XML_SetBillionLaughsAttackProtectionMaximumAmplification($/;" f +XML_SetCdataSectionHandler Modules/expat/pyexpatns.h 89;" d +XML_SetCdataSectionHandler Modules/expat/xmlparse.c /^XML_SetCdataSectionHandler(XML_Parser parser,$/;" f +XML_SetCharacterDataHandler Modules/expat/pyexpatns.h 90;" d +XML_SetCharacterDataHandler Modules/expat/xmlparse.c /^XML_SetCharacterDataHandler(XML_Parser parser,$/;" f +XML_SetCommentHandler Modules/expat/pyexpatns.h 91;" d +XML_SetCommentHandler Modules/expat/xmlparse.c /^XML_SetCommentHandler(XML_Parser parser, XML_CommentHandler handler) {$/;" f +XML_SetDefaultHandler Modules/expat/pyexpatns.h 92;" d +XML_SetDefaultHandler Modules/expat/xmlparse.c /^XML_SetDefaultHandler(XML_Parser parser, XML_DefaultHandler handler) {$/;" f +XML_SetDefaultHandlerExpand Modules/expat/pyexpatns.h 93;" d +XML_SetDefaultHandlerExpand Modules/expat/xmlparse.c /^XML_SetDefaultHandlerExpand(XML_Parser parser, XML_DefaultHandler handler) {$/;" f +XML_SetDoctypeDeclHandler Modules/expat/pyexpatns.h 94;" d +XML_SetDoctypeDeclHandler Modules/expat/xmlparse.c /^XML_SetDoctypeDeclHandler(XML_Parser parser, XML_StartDoctypeDeclHandler start,$/;" f +XML_SetElementDeclHandler Modules/expat/pyexpatns.h 95;" d +XML_SetElementDeclHandler Modules/expat/xmlparse.c /^XML_SetElementDeclHandler(XML_Parser parser, XML_ElementDeclHandler eldecl) {$/;" f +XML_SetElementHandler Modules/expat/pyexpatns.h 96;" d +XML_SetElementHandler Modules/expat/xmlparse.c /^XML_SetElementHandler(XML_Parser parser, XML_StartElementHandler start,$/;" f +XML_SetEncoding Modules/expat/pyexpatns.h 97;" d +XML_SetEncoding Modules/expat/xmlparse.c /^XML_SetEncoding(XML_Parser parser, const XML_Char *encodingName) {$/;" f +XML_SetEndCdataSectionHandler Modules/expat/pyexpatns.h 98;" d +XML_SetEndCdataSectionHandler Modules/expat/xmlparse.c /^XML_SetEndCdataSectionHandler(XML_Parser parser,$/;" f +XML_SetEndDoctypeDeclHandler Modules/expat/pyexpatns.h 99;" d +XML_SetEndDoctypeDeclHandler Modules/expat/xmlparse.c /^XML_SetEndDoctypeDeclHandler(XML_Parser parser, XML_EndDoctypeDeclHandler end) {$/;" f +XML_SetEndElementHandler Modules/expat/pyexpatns.h 100;" d +XML_SetEndElementHandler Modules/expat/xmlparse.c /^XML_SetEndElementHandler(XML_Parser parser, XML_EndElementHandler end) {$/;" f +XML_SetEndNamespaceDeclHandler Modules/expat/pyexpatns.h 101;" d +XML_SetEndNamespaceDeclHandler Modules/expat/xmlparse.c /^XML_SetEndNamespaceDeclHandler(XML_Parser parser,$/;" f +XML_SetEntityDeclHandler Modules/expat/pyexpatns.h 102;" d +XML_SetEntityDeclHandler Modules/expat/xmlparse.c /^XML_SetEntityDeclHandler(XML_Parser parser, XML_EntityDeclHandler handler) {$/;" f +XML_SetExternalEntityRefHandler Modules/expat/pyexpatns.h 103;" d +XML_SetExternalEntityRefHandler Modules/expat/xmlparse.c /^XML_SetExternalEntityRefHandler(XML_Parser parser,$/;" f +XML_SetExternalEntityRefHandlerArg Modules/expat/pyexpatns.h 104;" d +XML_SetExternalEntityRefHandlerArg Modules/expat/xmlparse.c /^XML_SetExternalEntityRefHandlerArg(XML_Parser parser, void *arg) {$/;" f +XML_SetHashSalt Modules/expat/pyexpatns.h 105;" d +XML_SetHashSalt Modules/expat/xmlparse.c /^XML_SetHashSalt(XML_Parser parser, unsigned long hash_salt) {$/;" f +XML_SetNamespaceDeclHandler Modules/expat/pyexpatns.h 106;" d +XML_SetNamespaceDeclHandler Modules/expat/xmlparse.c /^XML_SetNamespaceDeclHandler(XML_Parser parser,$/;" f +XML_SetNotStandaloneHandler Modules/expat/pyexpatns.h 108;" d +XML_SetNotStandaloneHandler Modules/expat/xmlparse.c /^XML_SetNotStandaloneHandler(XML_Parser parser,$/;" f +XML_SetNotationDeclHandler Modules/expat/pyexpatns.h 107;" d +XML_SetNotationDeclHandler Modules/expat/xmlparse.c /^XML_SetNotationDeclHandler(XML_Parser parser, XML_NotationDeclHandler handler) {$/;" f +XML_SetParamEntityParsing Modules/expat/pyexpatns.h 109;" d +XML_SetParamEntityParsing Modules/expat/xmlparse.c /^XML_SetParamEntityParsing(XML_Parser parser,$/;" f +XML_SetProcessingInstructionHandler Modules/expat/pyexpatns.h 110;" d +XML_SetProcessingInstructionHandler Modules/expat/xmlparse.c /^XML_SetProcessingInstructionHandler(XML_Parser parser,$/;" f +XML_SetReturnNSTriplet Modules/expat/pyexpatns.h 111;" d +XML_SetReturnNSTriplet Modules/expat/xmlparse.c /^XML_SetReturnNSTriplet(XML_Parser parser, int do_nst) {$/;" f +XML_SetSkippedEntityHandler Modules/expat/pyexpatns.h 112;" d +XML_SetSkippedEntityHandler Modules/expat/xmlparse.c /^XML_SetSkippedEntityHandler(XML_Parser parser,$/;" f +XML_SetStartCdataSectionHandler Modules/expat/pyexpatns.h 113;" d +XML_SetStartCdataSectionHandler Modules/expat/xmlparse.c /^XML_SetStartCdataSectionHandler(XML_Parser parser,$/;" f +XML_SetStartDoctypeDeclHandler Modules/expat/pyexpatns.h 114;" d +XML_SetStartDoctypeDeclHandler Modules/expat/xmlparse.c /^XML_SetStartDoctypeDeclHandler(XML_Parser parser,$/;" f +XML_SetStartElementHandler Modules/expat/pyexpatns.h 115;" d +XML_SetStartElementHandler Modules/expat/xmlparse.c /^XML_SetStartElementHandler(XML_Parser parser, XML_StartElementHandler start) {$/;" f +XML_SetStartNamespaceDeclHandler Modules/expat/pyexpatns.h 116;" d +XML_SetStartNamespaceDeclHandler Modules/expat/xmlparse.c /^XML_SetStartNamespaceDeclHandler(XML_Parser parser,$/;" f +XML_SetUnknownEncodingHandler Modules/expat/pyexpatns.h 117;" d +XML_SetUnknownEncodingHandler Modules/expat/xmlparse.c /^XML_SetUnknownEncodingHandler(XML_Parser parser,$/;" f +XML_SetUnparsedEntityDeclHandler Modules/expat/pyexpatns.h 118;" d +XML_SetUnparsedEntityDeclHandler Modules/expat/xmlparse.c /^XML_SetUnparsedEntityDeclHandler(XML_Parser parser,$/;" f +XML_SetUserData Modules/expat/pyexpatns.h 119;" d +XML_SetUserData Modules/expat/xmlparse.c /^XML_SetUserData(XML_Parser parser, void *p) {$/;" f +XML_SetXmlDeclHandler Modules/expat/pyexpatns.h 120;" d +XML_SetXmlDeclHandler Modules/expat/xmlparse.c /^XML_SetXmlDeclHandler(XML_Parser parser, XML_XmlDeclHandler handler) {$/;" f +XML_Size Modules/expat/expat_external.h /^typedef unsigned long XML_Size;$/;" t +XML_Size Modules/expat/expat_external.h /^typedef unsigned long long XML_Size;$/;" t +XML_SkippedEntityHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_SkippedEntityHandler)(void *userData,$/;" t +XML_StartCdataSectionHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_StartCdataSectionHandler)(void *userData);$/;" t +XML_StartDoctypeDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_StartDoctypeDeclHandler)(void *userData,$/;" t +XML_StartElementHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_StartElementHandler)(void *userData,$/;" t +XML_StartNamespaceDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_StartNamespaceDeclHandler)(void *userData,$/;" t +XML_Status Modules/expat/expat.h /^enum XML_Status {$/;" g +XML_StopParser Modules/expat/pyexpatns.h 122;" d +XML_StopParser Modules/expat/xmlparse.c /^XML_StopParser(XML_Parser parser, XML_Bool resumable) {$/;" f +XML_T Modules/expat/xmlparse.c 179;" d file: +XML_T Modules/expat/xmlparse.c 182;" d file: +XML_T Modules/expat/xmlparse.c 188;" d file: +XML_TOK_ATTRIBUTE_VALUE_S Modules/expat/xmltok.h 110;" d +XML_TOK_BOM Modules/expat/xmltok.h 79;" d +XML_TOK_CDATA_SECT_CLOSE Modules/expat/xmltok.h 113;" d +XML_TOK_CDATA_SECT_OPEN Modules/expat/xmltok.h 69;" d +XML_TOK_CHAR_REF Modules/expat/xmltok.h 71;" d +XML_TOK_CLOSE_BRACKET Modules/expat/xmltok.h 93;" d +XML_TOK_CLOSE_PAREN Modules/expat/xmltok.h 91;" d +XML_TOK_CLOSE_PAREN_ASTERISK Modules/expat/xmltok.h 105;" d +XML_TOK_CLOSE_PAREN_PLUS Modules/expat/xmltok.h 106;" d +XML_TOK_CLOSE_PAREN_QUESTION Modules/expat/xmltok.h 104;" d +XML_TOK_COMMA Modules/expat/xmltok.h 107;" d +XML_TOK_COMMENT Modules/expat/xmltok.h 78;" d +XML_TOK_COND_SECT_CLOSE Modules/expat/xmltok.h 103;" d +XML_TOK_COND_SECT_OPEN Modules/expat/xmltok.h 102;" d +XML_TOK_DATA_CHARS Modules/expat/xmltok.h 67;" d +XML_TOK_DATA_NEWLINE Modules/expat/xmltok.h 68;" d +XML_TOK_DECL_CLOSE Modules/expat/xmltok.h 84;" d +XML_TOK_DECL_OPEN Modules/expat/xmltok.h 83;" d +XML_TOK_EMPTY_ELEMENT_NO_ATTS Modules/expat/xmltok.h 65;" d +XML_TOK_EMPTY_ELEMENT_WITH_ATTS Modules/expat/xmltok.h 64;" d +XML_TOK_END_TAG Modules/expat/xmltok.h 66;" d +XML_TOK_ENTITY_REF Modules/expat/xmltok.h 70;" d +XML_TOK_IGNORE_SECT Modules/expat/xmltok.h 121;" d +XML_TOK_IMPL_C Modules/expat/xmltok.c 304;" d file: +XML_TOK_IMPL_C Modules/expat/xmltok.c 306;" d file: +XML_TOK_IMPL_C Modules/expat/xmltok.c 933;" d file: +XML_TOK_IMPL_C Modules/expat/xmltok.c 935;" d file: +XML_TOK_INSTANCE_START Modules/expat/xmltok.h 96;" d +XML_TOK_INVALID Modules/expat/xmltok.h 57;" d +XML_TOK_LITERAL Modules/expat/xmltok.h 94;" d +XML_TOK_NAME Modules/expat/xmltok.h 85;" d +XML_TOK_NAME_ASTERISK Modules/expat/xmltok.h 100;" d +XML_TOK_NAME_PLUS Modules/expat/xmltok.h 101;" d +XML_TOK_NAME_QUESTION Modules/expat/xmltok.h 99;" d +XML_TOK_NMTOKEN Modules/expat/xmltok.h 86;" d +XML_TOK_NONE Modules/expat/xmltok.h 51;" d +XML_TOK_NS_C Modules/expat/xmltok.c 1650;" d file: +XML_TOK_NS_C Modules/expat/xmltok.c 1652;" d file: +XML_TOK_NS_C Modules/expat/xmltok.c 1661;" d file: +XML_TOK_NS_C Modules/expat/xmltok.c 1663;" d file: +XML_TOK_OPEN_BRACKET Modules/expat/xmltok.h 92;" d +XML_TOK_OPEN_PAREN Modules/expat/xmltok.h 90;" d +XML_TOK_OR Modules/expat/xmltok.h 88;" d +XML_TOK_PARAM_ENTITY_REF Modules/expat/xmltok.h 95;" d +XML_TOK_PARTIAL Modules/expat/xmltok.h 56;" d +XML_TOK_PARTIAL_CHAR Modules/expat/xmltok.h 55;" d +XML_TOK_PERCENT Modules/expat/xmltok.h 89;" d +XML_TOK_PI Modules/expat/xmltok.h 76;" d +XML_TOK_POUND_NAME Modules/expat/xmltok.h 87;" d +XML_TOK_PREFIXED_NAME Modules/expat/xmltok.h 118;" d +XML_TOK_PROLOG_S Modules/expat/xmltok.h 82;" d +XML_TOK_START_TAG_NO_ATTS Modules/expat/xmltok.h 63;" d +XML_TOK_START_TAG_WITH_ATTS Modules/expat/xmltok.h 62;" d +XML_TOK_TRAILING_CR Modules/expat/xmltok.h 52;" d +XML_TOK_TRAILING_RSQB Modules/expat/xmltok.h 45;" d +XML_TOK_XML_DECL Modules/expat/xmltok.h 77;" d +XML_TRUE Modules/expat/expat.h 55;" d +XML_UNICODE Modules/expat/expat_external.h 138;" d +XML_UTF16_ENCODE_MAX Modules/expat/xmltok.h 144;" d +XML_UTF8_ENCODE_MAX Modules/expat/xmltok.h 142;" d +XML_UnknownEncodingHandler Modules/expat/expat.h /^typedef int(XMLCALL *XML_UnknownEncodingHandler)(void *encodingHandlerData,$/;" t +XML_UnparsedEntityDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_UnparsedEntityDeclHandler)($/;" t +XML_UseForeignDTD Modules/expat/pyexpatns.h 123;" d +XML_UseForeignDTD Modules/expat/xmlparse.c /^XML_UseForeignDTD(XML_Parser parser, XML_Bool useDTD) {$/;" f +XML_UseParserAsHandlerArg Modules/expat/pyexpatns.h 124;" d +XML_UseParserAsHandlerArg Modules/expat/xmlparse.c /^XML_UseParserAsHandlerArg(XML_Parser parser) {$/;" f +XML_XmlDeclHandler Modules/expat/expat.h /^typedef void(XMLCALL *XML_XmlDeclHandler)(void *userData,$/;" t +XML_cp Modules/expat/expat.h /^struct XML_cp {$/;" s +XMeth Lib/test/test_typing.py /^class XMeth(NamedTuple):$/;" c +XMethBad Lib/test/test_typing.py /^ class XMethBad(NamedTuple):$/;" c function:NamedTupleTests.test_annotation_usage_with_methods +XMethBad2 Lib/test/test_typing.py /^ class XMethBad2(NamedTuple):$/;" c function:NamedTupleTests.test_annotation_usage_with_methods +XN Lib/test/test_binop.py /^class XN:$/;" c +XOR Tools/cases_generator/lexer.py /^XOR = r'\\^'$/;" v +XRepr Lib/test/test_typing.py /^class XRepr(NamedTuple):$/;" c +XV Lib/test/test_typing.py /^XV = TypeVar('XV')$/;" v +XView Lib/tkinter/__init__.py /^class XView:$/;" c +XX Lib/test/test_ctypes/test_structures.py /^ class XX(Structure):$/;" c function:StructureTestCase.test_empty +XX Lib/test/test_ctypes/test_structures.py /^ class XX(Structure):$/;" c function:StructureTestCase.test_struct_alignment +XXX_test_from_import_usage Lib/test/test_lib2to3/test_fixers.py /^ def XXX_test_from_import_usage(self):$/;" m class:Test_renames +X_OK Modules/posixmodule.c 3133;" d file: +X_REGION Lib/tkinter/tix.py /^X_REGION = 'x-region'$/;" v +XmlAttributeValueTok Modules/expat/xmltok.h 248;" d +XmlBigCount Modules/expat/xmlparse.c /^typedef unsigned long long XmlBigCount;$/;" t file: +XmlCdataSectionTok Modules/expat/xmltok.h 232;" d +XmlCharRefNumber Modules/expat/xmltok.h 264;" d +XmlClient Lib/multiprocessing/connection.py /^def XmlClient(*args, **kwds):$/;" f +XmlContentTok Modules/expat/xmltok.h 229;" d +XmlConvert Modules/expat/xmlparse.c 150;" d file: +XmlConvert Modules/expat/xmlparse.c 158;" d file: +XmlDecl Modules/pyexpat.c /^ XmlDecl,$/;" e enum:HandlerTypes file: +XmlDeclHandler Lib/test/test_pyexpat.py /^ def XmlDeclHandler(self, *args):$/;" m class:ParseTest.Outputter +XmlEncode Modules/expat/xmlparse.c 153;" d file: +XmlEncode Modules/expat/xmlparse.c 161;" d file: +XmlEntityValueTok Modules/expat/xmltok.h 251;" d +XmlGetAttributes Modules/expat/xmltok.h 261;" d +XmlGetInternalEncoding Modules/expat/xmlparse.c 151;" d file: +XmlGetInternalEncoding Modules/expat/xmlparse.c 159;" d file: +XmlGetInternalEncodingNS Modules/expat/xmlparse.c 152;" d file: +XmlGetInternalEncodingNS Modules/expat/xmlparse.c 160;" d file: +XmlGetInternalEncodingNS Modules/expat/xmlparse.c 170;" d file: +XmlGetInternalEncodingNS Modules/expat/xmlparse.c 171;" d file: +XmlGetUtf16InternalEncoding Modules/expat/pyexpatns.h 62;" d +XmlGetUtf16InternalEncoding Modules/expat/xmltok_ns.c /^NS(XmlGetUtf16InternalEncoding)(void) {$/;" f +XmlGetUtf16InternalEncodingNS Modules/expat/pyexpatns.h 63;" d +XmlGetUtf8InternalEncoding Modules/expat/pyexpatns.h 64;" d +XmlGetUtf8InternalEncoding Modules/expat/xmltok_ns.c /^NS(XmlGetUtf8InternalEncoding)(void) {$/;" f +XmlGetUtf8InternalEncodingNS Modules/expat/pyexpatns.h 65;" d +XmlIgnoreSectionTok Modules/expat/xmltok.h 237;" d +XmlInitEncoding Modules/expat/pyexpatns.h 66;" d +XmlInitEncoding Modules/expat/xmltok_ns.c /^NS(XmlInitEncoding)(INIT_ENCODING *p, const ENCODING **encPtr,$/;" f +XmlInitEncodingNS Modules/expat/pyexpatns.h 67;" d +XmlInitEncodingNS Modules/expat/xmlparse.c 168;" d file: +XmlInitUnknownEncoding Modules/expat/pyexpatns.h 68;" d +XmlInitUnknownEncoding Modules/expat/xmltok.c /^XmlInitUnknownEncoding(void *mem, int *table, CONVERTER convert,$/;" f +XmlInitUnknownEncodingNS Modules/expat/pyexpatns.h 69;" d +XmlInitUnknownEncodingNS Modules/expat/xmlparse.c 169;" d file: +XmlInitUnknownEncodingNS Modules/expat/xmltok.c /^XmlInitUnknownEncodingNS(void *mem, int *table, CONVERTER convert,$/;" f +XmlIsPublicId Modules/expat/xmltok.h 272;" d +XmlListener Lib/multiprocessing/connection.py /^class XmlListener(Listener):$/;" c +XmlLiteralTok Modules/expat/xmltok.h 245;" d +XmlNameLength Modules/expat/xmltok.h 257;" d +XmlNameMatchesAscii Modules/expat/xmltok.h 254;" d +XmlParseXmlDecl Modules/expat/pyexpatns.h 80;" d +XmlParseXmlDecl Modules/expat/xmltok_ns.c /^NS(XmlParseXmlDecl)(int isGeneralTextEntity, const ENCODING *enc,$/;" f +XmlParseXmlDeclNS Modules/expat/pyexpatns.h 81;" d +XmlParseXmlDeclNS Modules/expat/xmlparse.c 172;" d file: +XmlPredefinedEntityName Modules/expat/xmltok.h 266;" d +XmlPrologStateInit Modules/expat/pyexpatns.h 82;" d +XmlPrologStateInit Modules/expat/xmlrole.c /^XmlPrologStateInit(PROLOG_STATE *state) {$/;" f +XmlPrologStateInitExternalEntity Modules/expat/pyexpatns.h 83;" d +XmlPrologStateInitExternalEntity Modules/expat/xmlrole.c /^XmlPrologStateInitExternalEntity(PROLOG_STATE *state) {$/;" f +XmlPrologStateInitExternalEntity Modules/expat/xmlrole.h 42;" d +XmlPrologTok Modules/expat/xmltok.h 226;" d +XmlReaderTest Lib/test/test_sax.py /^class XmlReaderTest(XmlTestBase):$/;" c +XmlRole_INCLUDED Modules/expat/xmlrole.h 37;" d +XmlSizeOfUnknownEncoding Modules/expat/pyexpatns.h 121;" d +XmlSizeOfUnknownEncoding Modules/expat/xmltok.c /^XmlSizeOfUnknownEncoding(void) {$/;" f +XmlSkipS Modules/expat/xmltok.h 259;" d +XmlTestBase Lib/test/test_sax.py /^class XmlTestBase(unittest.TestCase):$/;" c +XmlTok Modules/expat/xmltok.h 223;" d +XmlTok_INCLUDED Modules/expat/xmltok.h 38;" d +XmlTokenRole Modules/expat/xmlrole.h 135;" d +XmlUpdatePosition Modules/expat/xmltok.h 269;" d +XmlUtf16Convert Modules/expat/xmltok.h 278;" d +XmlUtf16Encode Modules/expat/pyexpatns.h 125;" d +XmlUtf16Encode Modules/expat/xmltok.c /^XmlUtf16Encode(int charNum, unsigned short *buf) {$/;" f +XmlUtf8Convert Modules/expat/xmltok.h 275;" d +XmlUtf8Encode Modules/expat/pyexpatns.h 126;" d +XmlUtf8Encode Modules/expat/xmltok.c /^XmlUtf8Encode(int c, char *buf) {$/;" f +XmlgenTest Lib/test/test_sax.py /^class XmlgenTest:$/;" c +XxoObject Modules/xxlimited.c /^} XxoObject;$/;" t typeref:struct:__anon391 file: +XxoObject Modules/xxlimited_35.c /^} XxoObject;$/;" t typeref:struct:__anon313 file: +XxoObject Modules/xxmodule.c /^} XxoObject;$/;" t typeref:struct:__anon299 file: +XxoObject_Check Modules/xxlimited_35.c 23;" d file: +XxoObject_Check Modules/xxmodule.c 28;" d file: +Xxo_Type Modules/xxlimited.c /^ PyObject *Xxo_Type; \/\/ Xxo class$/;" m struct:__anon390 file: +Xxo_Type Modules/xxlimited_35.c /^static PyObject *Xxo_Type;$/;" v file: +Xxo_Type Modules/xxmodule.c /^static PyTypeObject Xxo_Type = {$/;" v file: +Xxo_Type Modules/xxmodule.c /^static PyTypeObject Xxo_Type;$/;" v file: +Xxo_Type_slots Modules/xxlimited.c /^static PyType_Slot Xxo_Type_slots[] = {$/;" v file: +Xxo_Type_slots Modules/xxlimited_35.c /^static PyType_Slot Xxo_Type_slots[] = {$/;" v file: +Xxo_Type_spec Modules/xxlimited.c /^static PyType_Spec Xxo_Type_spec = {$/;" v file: +Xxo_Type_spec Modules/xxlimited_35.c /^static PyType_Spec Xxo_Type_spec = {$/;" v file: +Xxo_clear Modules/xxlimited.c /^Xxo_clear(XxoObject *self)$/;" f file: +Xxo_clear Modules/xxlimited_35.c /^Xxo_clear(XxoObject *self)$/;" f file: +Xxo_dealloc Modules/xxlimited.c /^Xxo_dealloc(PyObject *self)$/;" f file: +Xxo_dealloc Modules/xxmodule.c /^Xxo_dealloc(XxoObject *self)$/;" f file: +Xxo_demo Modules/xxlimited.c /^Xxo_demo(XxoObject *self, PyTypeObject *defining_class,$/;" f file: +Xxo_demo Modules/xxlimited_35.c /^Xxo_demo(XxoObject *self, PyObject *args)$/;" f file: +Xxo_demo Modules/xxmodule.c /^Xxo_demo(XxoObject *self, PyObject *args)$/;" f file: +Xxo_finalize Modules/xxlimited.c /^Xxo_finalize(PyObject *self_obj)$/;" f file: +Xxo_finalize Modules/xxlimited_35.c /^Xxo_finalize(XxoObject *self)$/;" f file: +Xxo_get_x_exports Modules/xxlimited.c /^Xxo_get_x_exports(XxoObject *self, void *c)$/;" f file: +Xxo_getattro Modules/xxlimited.c /^Xxo_getattro(XxoObject *self, PyObject *name)$/;" f file: +Xxo_getattro Modules/xxlimited_35.c /^Xxo_getattro(XxoObject *self, PyObject *name)$/;" f file: +Xxo_getattro Modules/xxmodule.c /^Xxo_getattro(XxoObject *self, PyObject *name)$/;" f file: +Xxo_getbuffer Modules/xxlimited.c /^Xxo_getbuffer(XxoObject *self, Py_buffer *view, int flags)$/;" f file: +Xxo_getsetlist Modules/xxlimited.c /^static PyGetSetDef Xxo_getsetlist[] = {$/;" v file: +Xxo_methods Modules/xxlimited.c /^static PyMethodDef Xxo_methods[] = {$/;" v file: +Xxo_methods Modules/xxlimited_35.c /^static PyMethodDef Xxo_methods[] = {$/;" v file: +Xxo_methods Modules/xxmodule.c /^static PyMethodDef Xxo_methods[] = {$/;" v file: +Xxo_releasebuffer Modules/xxlimited.c /^Xxo_releasebuffer(XxoObject *self, Py_buffer *view)$/;" f file: +Xxo_setattr Modules/xxlimited_35.c /^Xxo_setattr(XxoObject *self, const char *name, PyObject *v)$/;" f file: +Xxo_setattr Modules/xxmodule.c /^Xxo_setattr(XxoObject *self, const char *name, PyObject *v)$/;" f file: +Xxo_setattro Modules/xxlimited.c /^Xxo_setattro(XxoObject *self, PyObject *name, PyObject *v)$/;" f file: +Xxo_traverse Modules/xxlimited.c /^Xxo_traverse(PyObject *self_obj, visitproc visit, void *arg)$/;" f file: +Xxo_traverse Modules/xxlimited_35.c /^Xxo_traverse(XxoObject *self, visitproc visit, void *arg)$/;" f file: +Y Lib/test/ann_module.py /^class Y(F):$/;" c +Y Lib/test/test_bytes.py /^ class Y:$/;" c function:BaseBytesTest.test_from_mutating_list +Y Lib/test/test_ctypes/test_anon.py /^ class Y(Structure):$/;" c function:AnonTest.test_anon +Y Lib/test/test_ctypes/test_anon.py /^ class Y(Structure):$/;" c function:AnonTest.test_nested +Y Lib/test/test_ctypes/test_arrays.py /^ class Y(T):$/;" c function:ArrayTestCase.test_subclass +Y Lib/test/test_ctypes/test_bitfields.py /^ class Y(Structure):$/;" c function:BitFieldTest.test_anon_bitfields +Y Lib/test/test_ctypes/test_init.py /^class Y(Structure):$/;" c +Y Lib/test/test_ctypes/test_internals.py /^ class Y(Structure):$/;" c function:ObjectsTestCase.test_embedded_structs +Y Lib/test/test_ctypes/test_internals.py /^ class Y(Structure):$/;" c function:ObjectsTestCase.test_xxx +Y Lib/test/test_ctypes/test_parameters.py /^ class Y(Structure):$/;" c function:SimpleTypesTestCase.test_from_param_result_refcount +Y Lib/test/test_ctypes/test_pickling.py /^class Y(X):$/;" c +Y Lib/test/test_ctypes/test_struct_fields.py /^ class Y(Structure):$/;" c function:StructFieldsTestCase.test_3 +Y Lib/test/test_ctypes/test_struct_fields.py /^ class Y(X):$/;" c function:StructFieldsTestCase.test_4 +Y Lib/test/test_ctypes/test_structures.py /^ class Y(Structure):$/;" c function:StructureTestCase.test_struct_alignment +Y Lib/test/test_ctypes/test_structures.py /^ class Y(Union):$/;" c function:StructureTestCase.test_empty +Y Lib/test/test_ctypes/test_structures.py /^ class Y(X):$/;" c function:StructureTestCase.test_positional_args +Y Lib/test/test_ctypes/test_structures.py /^ class Y(X):$/;" c function:SubclassesTest.test_subclass +Y Lib/test/test_ctypes/test_structures.py /^ class Y(X):$/;" c function:SubclassesTest.test_subclass_delayed +Y Lib/test/test_ctypes/test_unaligned_structures.py /^ class Y(SwappedStructure):$/;" c +Y Lib/test/test_dataclasses.py /^ class Y:$/;" c function:TestCase.test_field_with_special_single_underscore_names +Y Lib/test/test_dataclasses.py /^ class Y:$/;" c function:TestMatchArgs.test_match_args_argument +Y Lib/test/test_decimal.py /^ class Y(float):$/;" c function:CWhitebox.test_internal_use_of_overridden_methods +Y Lib/test/test_descr.py /^ class Y(A): pass$/;" c function:ClassPropertiesAndMethods.test_ex5_from_c3_switch +Y Lib/test/test_descr.py /^ class Y(object, metaclass=func):$/;" c function:ClassPropertiesAndMethods.test_metaclass +Y Lib/test/test_descr.py /^ class Y:$/;" c function:.test_qualname +Y Lib/test/test_dict.py /^ class Y:$/;" c function:DictTest.test_equal_operator_modifying_operand +Y Lib/test/test_enum.py /^ Y = 1$/;" v class:TestSpecial.test_contains_name_and_value_overlap.IntEnum4 +Y Lib/test/test_enum.py /^ Y = 2$/;" v class:_FlagTests.test_closed_invert_expectations.ClosedXYZ +Y Lib/test/test_enum.py /^ Y = 2$/;" v class:_FlagTests.test_open_invert_expectations.OpenXYZ +Y Lib/test/test_inspect.py /^ def Y(le):$/;" f function:TestGetClosureVars.test_nonlocal_vars +Y Lib/test/test_list.py /^ class Y:$/;" c function:ListTest.test_equal_operator_modifying_operand +Y Lib/test/test_typing.py /^ class Y(C[int]):$/;" c function:GenericTests.test_repr_2 +Y Lib/test/test_typing.py /^ class Y(Generic[P, *Ts]):$/;" c function:ParamSpecTests.test_typevartuple_and_paramspecs_in_user_generics +Y Lib/test/test_typing.py /^ class Y(Generic[P, T]):$/;" c function:ParamSpecTests.test_typevartuple_and_paramspecs_in_generic_aliases +Y Lib/test/test_typing.py /^ class Y(Generic[T], NamedTuple):$/;" c function:NamedTupleTests.test_generic +Y Lib/test/test_typing.py /^ class Y(X):$/;" c function:GenericTests.test_init_subclass +Y Lib/test/test_xml_etree.py /^ class Y(X, ET.Element):$/;" c function:BadElementTest.test_extend_mutable_list +Y Lib/test/test_xml_etree.py /^ class Y(X, ET.Element):$/;" c function:BadElementTest.test_extend_mutable_list2 +Y Lib/tkinter/constants.py /^Y='y'$/;" v +Y1900Tests Lib/test/test_strftime.py /^class Y1900Tests(unittest.TestCase):$/;" c +YAxis Lib/test/test_typing.py /^class YAxis(Protocol):$/;" c +YELLOW Lib/test/test_enum.py /^ YELLOW = 3$/;" v class:TestStdLib.test_test_simple_enum.CheckedColor +YELLOW Lib/test/test_enum.py /^ YELLOW = 3$/;" v class:TestStdLib.test_test_simple_enum.SimpleColor +YELLOW Lib/test/test_enum.py /^ YELLOW = 3$/;" v class:TestStdLib.Color +YES Lib/test/test_enum.py /^ YES = 1$/;" v class:TestSpecial.test_member_from_member_access.Di +YES Lib/tkinter/messagebox.py /^YES = "yes"$/;" v +YES Modules/getaddrinfo.c 69;" d file: +YES Modules/getnameinfo.c 55;" d file: +YES Modules/unicodedata.c /^typedef enum {YES = 0, MAYBE = 1, NO = 2} QuickcheckResult;$/;" e enum:__anon643 file: +YESNO Lib/tkinter/messagebox.py /^YESNO = "yesno"$/;" v +YESNOCANCEL Lib/tkinter/messagebox.py /^YESNOCANCEL = "yesnocancel"$/;" v +YIELD Lib/ast.py /^ YIELD = auto() # 'yield', 'yield from'$/;" v class:_Precedence +YIELD Lib/test/test_ast.py /^ YIELD = enum.auto() # 'yield', 'yield from'$/;" v class:AST_Tests.test_precedence_enum._Precedence +YIELD_VALUE Include/opcode.h 107;" d +YPPROC_MAPLIST Modules/nismodule.c 273;" d file: +YPPROG Modules/nismodule.c 276;" d file: +YPVERS Modules/nismodule.c 279;" d file: +YView Lib/tkinter/__init__.py /^class YView:$/;" c +Y_REGION Lib/tkinter/tix.py /^Y_REGION = 'y-region'$/;" v +Yield Include/internal/pycore_ast.h /^ } Yield;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon91 +YieldFrom Include/internal/pycore_ast.h /^ } YieldFrom;$/;" m union:_expr::__anon77 typeref:struct:_expr::__anon77::__anon92 +YieldFromTests Lib/test/test_generators.py /^class YieldFromTests(unittest.TestCase):$/;" c +YieldFrom_fields Python/Python-ast.c /^static const char * const YieldFrom_fields[]={$/;" v file: +YieldFrom_kind Include/internal/pycore_ast.h /^ YieldFrom_kind=15, Compare_kind=16, Call_kind=17,$/;" e enum:_expr_kind +YieldFrom_type Include/internal/pycore_ast_state.h /^ PyObject *YieldFrom_type;$/;" m struct:ast_state +YieldRemover Lib/test/test_ast.py /^ class YieldRemover(ast.NodeTransformer):$/;" c function:NodeTransformerTests.test_node_remove_from_list +Yield_fields Python/Python-ast.c /^static const char * const Yield_fields[]={$/;" v file: +Yield_kind Include/internal/pycore_ast.h /^ GeneratorExp_kind=12, Await_kind=13, Yield_kind=14,$/;" e enum:_expr_kind +Yield_type Include/internal/pycore_ast_state.h /^ PyObject *Yield_type;$/;" m struct:ast_state +Z Lib/test/test_builtin.py /^ class Z(int):$/;" c function:BuiltinTest.test_hash +Z Lib/test/test_capi/test_misc.py /^ class Z(object):$/;" c function:CAPITest.test_seq_bytes_to_charp_array +Z Lib/test/test_capi/test_misc.py /^ class Z(object):$/;" c function:CAPITest.test_subprocess_fork_exec +Z Lib/test/test_collections.py /^ class Z(ByteString, Awaitable): pass$/;" c function:TestCollectionABCs.test_ByteString +Z Lib/test/test_ctypes/test_structures.py /^ class Z(X):$/;" c function:SubclassesTest.test_subclass +Z Lib/test/test_ctypes/test_structures.py /^ class Z(X):$/;" c function:SubclassesTest.test_subclass_delayed +Z Lib/test/test_ctypes/test_structures.py /^ class Z(Y):$/;" c function:StructureTestCase.test_positional_args +Z Lib/test/test_dataclasses.py /^ class Z(Y):$/;" c function:TestMatchArgs.test_match_args_argument +Z Lib/test/test_decimal.py /^ class Z(float):$/;" c function:CWhitebox.test_internal_use_of_overridden_methods +Z Lib/test/test_descr.py /^ class Z(D, metaclass=func):$/;" c function:ClassPropertiesAndMethods.test_metaclass +Z Lib/test/test_descr.py /^ class Z(X,B,Y,C): pass$/;" c function:ClassPropertiesAndMethods.test_ex5_from_c3_switch +Z Lib/test/test_descr.py /^ class Z(complex):$/;" c function:.test_rich_comparisons +Z Lib/test/test_enum.py /^ Z = 1$/;" v class:_FlagTests.test_closed_invert_expectations.ClosedXYZ +Z Lib/test/test_enum.py /^ Z = 1$/;" v class:_FlagTests.test_open_invert_expectations.OpenXYZ +Z Lib/test/test_gc.py /^ class Z(A): # resurrecting __del__$/;" c function:GCTests.test_resurrection_does_not_block_cleanup_of_other_objects +Z Lib/test/test_gc.py /^ class Z:$/;" c function:GCTests.test_trash_weakref_clear +Z Lib/test/test_list.py /^ class Z:$/;" c function:ListTest.test_equal_operator_modifying_operand +Z Lib/test/test_typing.py /^ class Z(Generic[P]):$/;" c function:ParamSpecTests.test_user_generics +Z Lib/test/test_typing.py /^ class Z(Y):$/;" c function:GenericTests.test_init_subclass +ZERO Doc/includes/tzinfo_examples.py /^ZERO = timedelta(0)$/;" v +ZERO Lib/test/datetimetester.py /^ZERO = timedelta(0)$/;" v +ZERO Lib/test/test_logging.py /^ZERO = datetime.timedelta(0)$/;" v +ZERO Lib/test/test_zoneinfo/test_zoneinfo.py /^ZERO = timedelta(0)$/;" v +ZERO Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ZERO = datetime.timedelta(0)$/;" v +ZERO_DIVISION Lib/test/test_complex.py /^ZERO_DIVISION = ($/;" v +ZERO_OR_MORE Lib/argparse.py /^ZERO_OR_MORE = '*'$/;" v +ZERO_RETURN_CMD Lib/test/test_subprocess.py /^ZERO_RETURN_CMD = (sys.executable, '-c', 'pass')$/;" v +ZIP64_EXTRA Lib/test/test_zipfile/test_core.py /^ ZIP64_EXTRA = 1$/;" v class:StripExtraTests +ZIP64_LIMIT Lib/zipfile/__init__.py /^ZIP64_LIMIT = (1 << 31) - 1$/;" v +ZIP64_VERSION Lib/zipfile/__init__.py /^ZIP64_VERSION = 45$/;" v +ZIP_BZIP2 Lib/zipfile/__init__.py /^ZIP_BZIP2 = 12$/;" v +ZIP_DEFLATED Lib/zipfile/__init__.py /^ZIP_DEFLATED = 8$/;" v +ZIP_FILECOUNT_LIMIT Lib/zipfile/__init__.py /^ZIP_FILECOUNT_LIMIT = (1 << 16) - 1$/;" v +ZIP_LANDMARK Modules/getpath.py /^ ZIP_LANDMARK = f'python{VERSION_MAJOR}{VERSION_MINOR}{PYDEBUGEXT or ""}.zip'$/;" v +ZIP_LANDMARK Modules/getpath.py /^ ZIP_LANDMARK = f'{platlibdir}\/python{VERSION_MAJOR}{VERSION_MINOR}.zip'$/;" v +ZIP_LZMA Lib/zipfile/__init__.py /^ZIP_LZMA = 14$/;" v +ZIP_MAX_COMMENT Lib/zipfile/__init__.py /^ZIP_MAX_COMMENT = (1 << 16) - 1$/;" v +ZIP_MODULE Lib/test/test_importlib/resources/test_resource.py /^ ZIP_MODULE = zipdata01 # type: ignore$/;" v class:ResourceFromZipsTest01 +ZIP_MODULE Lib/test/test_importlib/resources/test_resource.py /^ ZIP_MODULE = zipdata02 # type: ignore$/;" v class:ResourceFromZipsTest02 +ZIP_MODULE Lib/test/test_importlib/resources/util.py /^ ZIP_MODULE = None$/;" v class:ZipSetupBase +ZIP_MODULE Lib/test/test_importlib/resources/util.py /^ ZIP_MODULE = zipdata01 # type: ignore$/;" v class:ZipSetup +ZIP_STORED Lib/zipfile/__init__.py /^ZIP_STORED = 0$/;" v +ZISubclass Lib/test/test_zoneinfo/test_zoneinfo.py /^ class ZISubclass(cls.klass):$/;" c function:ZoneInfoSubclassTest.setUpClass +ZLIB_ADD_INT_MACRO Modules/zlibmodule.c 2046;" d file: +ZLIB_ADLER32_METHODDEF Modules/clinic/zlibmodule.c.h 1009;" d +ZLIB_COMPRESSOBJ_METHODDEF Modules/clinic/zlibmodule.c.h 236;" d +ZLIB_COMPRESS_COMPRESS_METHODDEF Modules/clinic/zlibmodule.c.h 441;" d +ZLIB_COMPRESS_COPY_METHODDEF Modules/clinic/zlibmodule.c.h 1110;" d +ZLIB_COMPRESS_COPY_METHODDEF Modules/clinic/zlibmodule.c.h 650;" d +ZLIB_COMPRESS_FLUSH_METHODDEF Modules/clinic/zlibmodule.c.h 598;" d +ZLIB_COMPRESS_METHODDEF Modules/clinic/zlibmodule.c.h 24;" d +ZLIB_COMPRESS___COPY___METHODDEF Modules/clinic/zlibmodule.c.h 1114;" d +ZLIB_COMPRESS___COPY___METHODDEF Modules/clinic/zlibmodule.c.h 675;" d +ZLIB_COMPRESS___DEEPCOPY___METHODDEF Modules/clinic/zlibmodule.c.h 1118;" d +ZLIB_COMPRESS___DEEPCOPY___METHODDEF Modules/clinic/zlibmodule.c.h 700;" d +ZLIB_CRC32_METHODDEF Modules/clinic/zlibmodule.c.h 1062;" d +ZLIB_DECOMPRESSOBJ_METHODDEF Modules/clinic/zlibmodule.c.h 364;" d +ZLIB_DECOMPRESS_COPY_METHODDEF Modules/clinic/zlibmodule.c.h 1122;" d +ZLIB_DECOMPRESS_COPY_METHODDEF Modules/clinic/zlibmodule.c.h 748;" d +ZLIB_DECOMPRESS_DECOMPRESS_METHODDEF Modules/clinic/zlibmodule.c.h 507;" d +ZLIB_DECOMPRESS_FLUSH_METHODDEF Modules/clinic/zlibmodule.c.h 847;" d +ZLIB_DECOMPRESS_METHODDEF Modules/clinic/zlibmodule.c.h 117;" d +ZLIB_DECOMPRESS___COPY___METHODDEF Modules/clinic/zlibmodule.c.h 1126;" d +ZLIB_DECOMPRESS___COPY___METHODDEF Modules/clinic/zlibmodule.c.h 773;" d +ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF Modules/clinic/zlibmodule.c.h 1130;" d +ZLIB_DECOMPRESS___DEEPCOPY___METHODDEF Modules/clinic/zlibmodule.c.h 798;" d +ZLIB_ZLIBDECOMPRESSOR_DECOMPRESS_METHODDEF Modules/clinic/zlibmodule.c.h 919;" d +ZONEINFO_DATA Lib/test/test_zoneinfo/test_zoneinfo.py /^ZONEINFO_DATA = None$/;" v +ZONEINFO_DATA_V1 Lib/test/test_zoneinfo/test_zoneinfo.py /^ZONEINFO_DATA_V1 = None$/;" v +ZONEINFO_JSON Lib/test/test_zoneinfo/test_zoneinfo.py /^ZONEINFO_JSON = DATA_DIR \/ "zoneinfo_data.json"$/;" v +ZONEINFO_STRONG_CACHE Modules/_zoneinfo.c /^ StrongCacheNode *ZONEINFO_STRONG_CACHE;$/;" m struct:__anon641 file: +ZONEINFO_STRONG_CACHE_MAX_SIZE Modules/_zoneinfo.c /^static const size_t ZONEINFO_STRONG_CACHE_MAX_SIZE = 8;$/;" v file: +ZONEINFO_WEAK_CACHE Modules/_zoneinfo.c /^ PyObject *ZONEINFO_WEAK_CACHE;$/;" m struct:__anon641 file: +ZONEINFO_ZONEINFO_CLEAR_CACHE_METHODDEF Modules/clinic/_zoneinfo.c.h 136;" d +ZONEINFO_ZONEINFO_DST_METHODDEF Modules/clinic/_zoneinfo.c.h 241;" d +ZONEINFO_ZONEINFO_FROM_FILE_METHODDEF Modules/clinic/_zoneinfo.c.h 17;" d +ZONEINFO_ZONEINFO_NO_CACHE_METHODDEF Modules/clinic/_zoneinfo.c.h 80;" d +ZONEINFO_ZONEINFO_TZNAME_METHODDEF Modules/clinic/_zoneinfo.c.h 284;" d +ZONEINFO_ZONEINFO_UTCOFFSET_METHODDEF Modules/clinic/_zoneinfo.c.h 197;" d +ZONEINFO_ZONEINFO__UNPICKLE_METHODDEF Modules/clinic/_zoneinfo.c.h 328;" d +ZZ Lib/test/test_descr.py /^ class ZZ(complex):$/;" c function:.test_rich_comparisons +ZZDummyTest Lib/idlelib/idle_test/test_zzdummy.py /^class ZZDummyTest(unittest.TestCase):$/;" c +Z_get Modules/_ctypes/cfield.c /^Z_get(void *ptr, Py_ssize_t size)$/;" f file: +Z_set Modules/_ctypes/cfield.c /^Z_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +ZeroCopyBytearray Lib/test/pickletester.py /^class ZeroCopyBytearray(bytearray):$/;" c +ZeroCopyBytes Lib/test/pickletester.py /^class ZeroCopyBytes(bytes):$/;" c +ZipAppCmdlineTest Lib/test/test_zipapp.py /^class ZipAppCmdlineTest(unittest.TestCase):$/;" c +ZipAppError Lib/zipapp.py /^class ZipAppError(ValueError):$/;" c +ZipAppTest Lib/test/test_zipapp.py /^class ZipAppTest(unittest.TestCase):$/;" c +ZipExtFile Lib/zipfile/__init__.py /^class ZipExtFile(io.BufferedIOBase):$/;" c +ZipFile Lib/zipfile/__init__.py /^class ZipFile:$/;" c +ZipFixtures Lib/test/test_importlib/fixtures.py /^class ZipFixtures:$/;" c +ZipImportError Lib/zipimport.py /^class ZipImportError(ImportError):$/;" c +ZipInfo Lib/zipfile/__init__.py /^class ZipInfo (object):$/;" c +ZipInfoTests Lib/test/test_zipfile/test_core.py /^class ZipInfoTests(unittest.TestCase):$/;" c +ZipReader Lib/importlib/resources/readers.py /^class ZipReader(abc.TraversableResources):$/;" c +ZipSetup Lib/test/test_importlib/resources/util.py /^class ZipSetup(ZipSetupBase):$/;" c +ZipSetupBase Lib/test/test_importlib/resources/util.py /^class ZipSetupBase:$/;" c +ZipSupportTests Lib/test/test_zipimport_support.py /^class ZipSupportTests(unittest.TestCase):$/;" c +ZipWithMissingDirectory Lib/test/test_importlib/test_namespace_pkgs.py /^class ZipWithMissingDirectory(NamespacePackageTest):$/;" c +ZlibDecompressor Modules/zlibmodule.c /^} ZlibDecompressor;$/;" t typeref:struct:__anon307 file: +ZlibDecompressorTest Lib/test/test_zlib.py /^class ZlibDecompressorTest(unittest.TestCase):$/;" c +ZlibDecompressorType Modules/zlibmodule.c /^ PyTypeObject *ZlibDecompressorType;$/;" m struct:__anon305 file: +ZlibDecompressor__new__ Modules/zlibmodule.c /^ZlibDecompressor__new__(PyTypeObject *cls,$/;" f file: +ZlibDecompressor_dealloc Modules/zlibmodule.c /^ZlibDecompressor_dealloc(ZlibDecompressor *self)$/;" f file: +ZlibDecompressor_members Modules/zlibmodule.c /^static PyMemberDef ZlibDecompressor_members[] = {$/;" v file: +ZlibDecompressor_methods Modules/zlibmodule.c /^static PyMethodDef ZlibDecompressor_methods[] = {$/;" v file: +ZlibDecompressor_type_slots Modules/zlibmodule.c /^static PyType_Slot ZlibDecompressor_type_slots[] = {$/;" v file: +ZlibDecompressor_type_spec Modules/zlibmodule.c /^static PyType_Spec ZlibDecompressor_type_spec = {$/;" v file: +ZlibError Modules/zlibmodule.c /^ PyObject *ZlibError;$/;" m struct:__anon305 file: +ZoneDumpData Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneDumpData:$/;" c +ZoneInfo Lib/test/datetimetester.py /^class ZoneInfo(tzinfo):$/;" c +ZoneInfo Lib/zoneinfo/_zoneinfo.py /^class ZoneInfo(tzinfo):$/;" c +ZoneInfoCacheTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneInfoCacheTest(TzPathUserMixin, ZoneInfoTestBase):$/;" c +ZoneInfoCacheTest Lib/test/test_zoneinfo/test_zoneinfo_property.py /^class ZoneInfoCacheTest(ZoneInfoTestBase):$/;" c +ZoneInfoCompleteTest Lib/test/datetimetester.py /^class ZoneInfoCompleteTest(unittest.TestSuite):$/;" c +ZoneInfoData Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneInfoData:$/;" c +ZoneInfoDatetimeSubclassTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneInfoDatetimeSubclassTest(DatetimeSubclassMixin, ZoneInfoTest):$/;" c +ZoneInfoNotFoundError Lib/zoneinfo/_common.py /^class ZoneInfoNotFoundError(KeyError):$/;" c +ZoneInfoPickleTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneInfoPickleTest(TzPathUserMixin, ZoneInfoTestBase):$/;" c +ZoneInfoPickleTest Lib/test/test_zoneinfo/test_zoneinfo_property.py /^class ZoneInfoPickleTest(ZoneInfoTestBase):$/;" c +ZoneInfoSubclassTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneInfoSubclassTest(ZoneInfoTest):$/;" c +ZoneInfoTest Lib/test/datetimetester.py /^class ZoneInfoTest(unittest.TestCase):$/;" c +ZoneInfoTest Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneInfoTest(TzPathUserMixin, ZoneInfoTestBase):$/;" c +ZoneInfoTest Lib/test/test_zoneinfo/test_zoneinfo_property.py /^class ZoneInfoTest(ZoneInfoTestBase):$/;" c +ZoneInfoTestBase Lib/test/test_zoneinfo/_support.py /^class ZoneInfoTestBase(unittest.TestCase):$/;" c +ZoneInfoTestBase Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ZoneInfoTestBase = test_support.ZoneInfoTestBase$/;" v +ZoneInfoType Modules/_zoneinfo.c /^ PyTypeObject *ZoneInfoType;$/;" m struct:__anon641 file: +ZoneInfoV1Test Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneInfoV1Test(ZoneInfoTest):$/;" c +ZoneOffset Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneOffset:$/;" c +ZoneTransition Lib/test/test_zoneinfo/test_zoneinfo.py /^class ZoneTransition:$/;" c +ZoomHeight Lib/idlelib/zoomheight.py /^class ZoomHeight:$/;" c +ZzDummy Lib/idlelib/zzdummy.py /^class ZzDummy:$/;" c +_ Lib/getopt.py /^ def _(s): return s$/;" f +_ Lib/importlib/resources/_common.py /^def _(cand: None) -> types.ModuleType:$/;" f +_ Lib/importlib/resources/_common.py /^def _(cand: str) -> types.ModuleType:$/;" f +_ Lib/importlib/resources/_common.py /^def _(path):$/;" f +_ Lib/optparse.py /^_ = gettext$/;" v +_ Lib/test/test_deque.py /^ _ = 3 in d$/;" v class:TestBasic.test_contains_count_stop_crashes.A +_ Lib/test/test_deque.py /^ _ = d.count(3)$/;" v class:TestBasic.test_contains_count_stop_crashes.A +_ Lib/test/test_functools.py /^ def _(arg):$/;" f function:TestSingleDispatch.test_invalid_registrations.i +_ Lib/test/test_functools.py /^ def _(arg):$/;" m class:TestSingleDispatch.test_staticmethod_register.A +_ Lib/test/test_functools.py /^ def _(arg: int):$/;" m class:TestSingleDispatch.test_staticmethod_type_ann_register.A +_ Lib/test/test_functools.py /^ def _(arg: list[int] | str):$/;" f function:TestSingleDispatch.test_register_genericalias_annotation.f +_ Lib/test/test_functools.py /^ def _(arg: list[int]):$/;" f function:TestSingleDispatch.test_register_genericalias_annotation.f +_ Lib/test/test_functools.py /^ def _(arg: str):$/;" m class:TestSingleDispatch.test_staticmethod_type_ann_register.A +_ Lib/test/test_functools.py /^ def _(arg: typing.Iterable[str]):$/;" f function:TestSingleDispatch.test_invalid_registrations.i +_ Lib/test/test_functools.py /^ def _(arg: typing.List[float] | bytes):$/;" f function:TestSingleDispatch.test_register_genericalias_annotation.f +_ Lib/test/test_functools.py /^ def _(arg: typing.List[float]):$/;" f function:TestSingleDispatch.test_register_genericalias_annotation.f +_ Lib/test/test_functools.py /^ def _(arg: typing.Union[int, typing.Iterable[str]]):$/;" f function:TestSingleDispatch.test_invalid_registrations.i +_ Lib/test/test_functools.py /^ def _(cls, arg):$/;" m class:TestSingleDispatch.test_classmethod_register.A +_ Lib/test/test_functools.py /^ def _(cls, arg: int):$/;" m class:TestSingleDispatch.test_classmethod_type_ann_register.A +_ Lib/test/test_functools.py /^ def _(cls, arg: str):$/;" m class:TestSingleDispatch.test_classmethod_type_ann_register.A +_ Lib/test/test_functools.py /^ def _(self, arg):$/;" m class:TestSingleDispatch.test_method_register.A +_ Lib/test/test_functools.py /^ def _(self, arg: int):$/;" m class:TestSingleDispatch.test_type_ann_register.A +_ Lib/test/test_functools.py /^ def _(self, arg: str):$/;" m class:TestSingleDispatch.test_type_ann_register.A +_ Lib/test/test_functools.py /^ class _:$/;" c function:TestSingleDispatch.test_annotations +_ Lib/test/test_functools.py /^ def _(a):$/;" f function:TestSingleDispatch.test_false_meta +_ Lib/test/test_functools.py /^ def _(arg):$/;" f function:TestSingleDispatch.test_mro_conflicts +_ Lib/test/test_functools.py /^ def _(arg: "collections.abc.Sequence"):$/;" f function:TestSingleDispatch.test_annotations +_ Lib/test/test_functools.py /^ def _(arg: collections.abc.Mapping):$/;" f function:TestSingleDispatch.test_annotations +_ Lib/test/test_functools.py /^ def _(arg: int | None):$/;" f function:TestSingleDispatch.test_union_None +_ Lib/test/test_functools.py /^ def _(arg: int | float):$/;" f function:TestSingleDispatch.test_union +_ Lib/test/test_functools.py /^ def _(arg: int | str):$/;" f function:TestSingleDispatch.test_union_conflict +_ Lib/test/test_functools.py /^ def _(arg: typing.Union[str, None]):$/;" f function:TestSingleDispatch.test_union_None +_ Lib/test/test_functools.py /^ def _(arg: typing.Union[str, bytes]):$/;" f function:TestSingleDispatch.test_union +_ Lib/test/test_functools.py /^ def _(arg: typing.Union[str, bytes]):$/;" f function:TestSingleDispatch.test_union_conflict +_ Lib/test/test_functools.py /^ def _(cls, arg):$/;" f function:TestSingleDispatch.test_callable_register +_ Lib/test/test_functools.py /^ def _(obj):$/;" f function:TestSingleDispatch.test_c_classes +_ Lib/test/test_importlib/_path.py /^def _(content: bytes, path):$/;" f +_ Lib/test/test_importlib/_path.py /^def _(content: str, path):$/;" f +_ Lib/test/test_importlib/resources/_path.py /^def _(content: bytes, path):$/;" f +_ Lib/test/test_importlib/resources/_path.py /^def _(content: str, path):$/;" f +_ Lib/test/test_xmlrpc.py /^ def _(x, y):$/;" m class:http_server.MyXMLRPCServer +_ Tools/i18n/pygettext.py /^ _ = fintl.gettext$/;" v +_ Tools/i18n/pygettext.py /^ _ = lambda s: s$/;" v +_150_re Lib/ftplib.py /^_150_re = None$/;" v +_1G Lib/test/support/__init__.py /^_1G = 1024 * _1M$/;" v +_1M Lib/test/support/__init__.py /^_1M = 1024*1024$/;" v +_227_re Lib/ftplib.py /^_227_re = None$/;" v +_2G Lib/test/support/__init__.py /^_2G = 2 * _1G$/;" v +_2TO3_FIXERS Lib/test/test_lib2to3/test_refactor.py /^_2TO3_FIXERS = refactor.get_fixers_from_package("lib2to3.fixes")$/;" v +_4G Lib/test/support/__init__.py /^_4G = 4 * _1G$/;" v +_85encode Lib/base64.py /^def _85encode(b, chars, chars2, pad=False, foldnuls=False, foldspaces=False):$/;" f +_A85END Lib/base64.py /^_A85END = b"~>"$/;" v +_A85START Lib/base64.py /^_A85START = b"<~"$/;" v +_ABC Lib/ast.py /^class _ABC(type):$/;" c +_ABC_GET_CACHE_TOKEN_METHODDEF Modules/clinic/_abc.c.h 157;" d +_ABC__ABC_INIT_METHODDEF Modules/clinic/_abc.c.h 52;" d +_ABC__ABC_INSTANCECHECK_METHODDEF Modules/clinic/_abc.c.h 91;" d +_ABC__ABC_REGISTER_METHODDEF Modules/clinic/_abc.c.h 61;" d +_ABC__ABC_SUBCLASSCHECK_METHODDEF Modules/clinic/_abc.c.h 122;" d +_ABC__GET_DUMP_METHODDEF Modules/clinic/_abc.c.h 43;" d +_ABC__RESET_CACHES_METHODDEF Modules/clinic/_abc.c.h 30;" d +_ABC__RESET_REGISTRY_METHODDEF Modules/clinic/_abc.c.h 19;" d +_AIFC_version Lib/aifc.py /^_AIFC_version = 0xA2805140 # Version 1 of AIFF-C$/;" v +_ALLOWED_DIGESTS Lib/multiprocessing/connection.py /^_ALLOWED_DIGESTS = frozenset($/;" v +_ALLOWED_FILTER_RETURNS Lib/xml/dom/expatbuilder.py /^_ALLOWED_FILTER_RETURNS = (FILTER_ACCEPT, FILTER_REJECT, FILTER_SKIP)$/;" v +_ALL_ONES Lib/ipaddress.py /^ _ALL_ONES = (2**IPV4LENGTH) - 1$/;" v class:_BaseV4 +_ALL_ONES Lib/ipaddress.py /^ _ALL_ONES = (2**IPV6LENGTH) - 1$/;" v class:_BaseV6 +_ALL_QUOTES Lib/ast.py /^_ALL_QUOTES = (*_SINGLE_QUOTES, *_MULTI_QUOTES)$/;" v +_ALWAYS_EQ Lib/test/support/__init__.py /^class _ALWAYS_EQ:$/;" c +_ALWAYS_SAFE Lib/urllib/parse.py /^_ALWAYS_SAFE = frozenset(b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'$/;" v +_ALWAYS_SAFE_BYTES Lib/urllib/parse.py /^_ALWAYS_SAFE_BYTES = bytes(_ALWAYS_SAFE)$/;" v +_ALWAYS_STR Lib/sysconfig.py /^_ALWAYS_STR = {$/;" v +_ANY Lib/unittest/mock.py /^class _ANY(object):$/;" c +_APS_NEXT_COMMAND_VALUE Tools/msi/bundle/bootstrap/resource.h 21;" d +_APS_NEXT_CONTROL_VALUE Tools/msi/bundle/bootstrap/resource.h 22;" d +_APS_NEXT_RESOURCE_VALUE Tools/msi/bundle/bootstrap/resource.h 20;" d +_APS_NEXT_SYMED_VALUE Tools/msi/bundle/bootstrap/resource.h 23;" d +_ARCHIVE_FORMATS Lib/shutil.py /^_ARCHIVE_FORMATS = {$/;" v +_ARGS PCbuild/env.bat /^if NOT DEFINED _ARGS set _ARGS=amd64$/;" v +_ARGS PCbuild/env.bat /^set _ARGS=%*$/;" v +_ASCII_ID_CHARS Lib/idlelib/hyperparser.py /^_ASCII_ID_CHARS = frozenset(string.ascii_letters + string.digits + "_")$/;" v +_ASCII_ID_FIRST_CHARS Lib/idlelib/hyperparser.py /^_ASCII_ID_FIRST_CHARS = frozenset(string.ascii_letters + "_")$/;" v +_ASDL_SEQ_HEAD Include/internal/pycore_asdl.h 24;" d +_ASN1Object Lib/ssl.py /^class _ASN1Object(namedtuple("_ASN1Object", "nid shortname longname oid")):$/;" c +_ASSERT_CODES Lib/re/_compiler.py /^_ASSERT_CODES = {ASSERT, ASSERT_NOT}$/;" v +_ASSERT_NEVER_REPR_MAX_LENGTH Lib/typing.py /^_ASSERT_NEVER_REPR_MAX_LENGTH = 100$/;" v +_ASYNCIO_CURRENT_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1437;" d +_ASYNCIO_FUTURE_ADD_DONE_CALLBACK_METHODDEF Modules/clinic/_asynciomodule.c.h 234;" d +_ASYNCIO_FUTURE_CANCELLED_METHODDEF Modules/clinic/_asynciomodule.c.h 408;" d +_ASYNCIO_FUTURE_CANCEL_METHODDEF Modules/clinic/_asynciomodule.c.h 347;" d +_ASYNCIO_FUTURE_DONE_METHODDEF Modules/clinic/_asynciomodule.c.h 429;" d +_ASYNCIO_FUTURE_EXCEPTION_METHODDEF Modules/clinic/_asynciomodule.c.h 114;" d +_ASYNCIO_FUTURE_GET_LOOP_METHODDEF Modules/clinic/_asynciomodule.c.h 447;" d +_ASYNCIO_FUTURE_REMOVE_DONE_CALLBACK_METHODDEF Modules/clinic/_asynciomodule.c.h 299;" d +_ASYNCIO_FUTURE_RESULT_METHODDEF Modules/clinic/_asynciomodule.c.h 91;" d +_ASYNCIO_FUTURE_SET_EXCEPTION_METHODDEF Modules/clinic/_asynciomodule.c.h 186;" d +_ASYNCIO_FUTURE_SET_RESULT_METHODDEF Modules/clinic/_asynciomodule.c.h 139;" d +_ASYNCIO_FUTURE__MAKE_CANCELLED_ERROR_METHODDEF Modules/clinic/_asynciomodule.c.h 472;" d +_ASYNCIO_GET_EVENT_LOOP_METHODDEF Modules/clinic/_asynciomodule.c.h 989;" d +_ASYNCIO_GET_RUNNING_LOOP_METHODDEF Modules/clinic/_asynciomodule.c.h 1009;" d +_ASYNCIO_TASK_CANCELLING_METHODDEF Modules/clinic/_asynciomodule.c.h 680;" d +_ASYNCIO_TASK_CANCEL_METHODDEF Modules/clinic/_asynciomodule.c.h 617;" d +_ASYNCIO_TASK_GET_CONTEXT_METHODDEF Modules/clinic/_asynciomodule.c.h 906;" d +_ASYNCIO_TASK_GET_CORO_METHODDEF Modules/clinic/_asynciomodule.c.h 889;" d +_ASYNCIO_TASK_GET_NAME_METHODDEF Modules/clinic/_asynciomodule.c.h 923;" d +_ASYNCIO_TASK_GET_STACK_METHODDEF Modules/clinic/_asynciomodule.c.h 739;" d +_ASYNCIO_TASK_PRINT_STACK_METHODDEF Modules/clinic/_asynciomodule.c.h 806;" d +_ASYNCIO_TASK_SET_EXCEPTION_METHODDEF Modules/clinic/_asynciomodule.c.h 881;" d +_ASYNCIO_TASK_SET_NAME_METHODDEF Modules/clinic/_asynciomodule.c.h 940;" d +_ASYNCIO_TASK_SET_RESULT_METHODDEF Modules/clinic/_asynciomodule.c.h 873;" d +_ASYNCIO_TASK_UNCANCEL_METHODDEF Modules/clinic/_asynciomodule.c.h 703;" d +_ASYNCIO_TASK__MAKE_CANCELLED_ERROR_METHODDEF Modules/clinic/_asynciomodule.c.h 580;" d +_ASYNCIO__ENTER_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1259;" d +_ASYNCIO__GET_RUNNING_LOOP_METHODDEF Modules/clinic/_asynciomodule.c.h 952;" d +_ASYNCIO__LEAVE_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1320;" d +_ASYNCIO__REGISTER_EAGER_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1086;" d +_ASYNCIO__REGISTER_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1029;" d +_ASYNCIO__SET_RUNNING_LOOP_METHODDEF Modules/clinic/_asynciomodule.c.h 973;" d +_ASYNCIO__SWAP_CURRENT_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1379;" d +_ASYNCIO__UNREGISTER_EAGER_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1200;" d +_ASYNCIO__UNREGISTER_TASK_METHODDEF Modules/clinic/_asynciomodule.c.h 1143;" d +_AS_COMPLETED Lib/concurrent/futures/_base.py /^_AS_COMPLETED = '_AS_COMPLETED'$/;" v +_ATOMIC_TYPES Lib/dataclasses.py /^_ATOMIC_TYPES = frozenset({$/;" v +_ATTRIB_DENY_LIST Lib/unittest/mock.py /^_ATTRIB_DENY_LIST = frozenset({$/;" v +_Accumulator Lib/email/header.py /^class _Accumulator(list):$/;" c +_AcquireFutures Lib/concurrent/futures/_base.py /^class _AcquireFutures(object):$/;" c +_ActionsContainer Lib/argparse.py /^class _ActionsContainer(object):$/;" c +_AddedDllDirectory Lib/os.py /^ class _AddedDllDirectory:$/;" c +_Africa_Abidjan Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _Africa_Abidjan():$/;" f function:ZoneDumpData._populate_zonedump_data +_Africa_Casablanca Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _Africa_Casablanca():$/;" f function:ZoneDumpData._populate_zonedump_data +_AllCompletedWaiter Lib/concurrent/futures/_base.py /^class _AllCompletedWaiter(_Waiter):$/;" c +_America_Los_Angeles Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _America_Los_Angeles():$/;" f function:ZoneDumpData._populate_zonedump_data +_America_Santiago Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _America_Santiago():$/;" f function:ZoneDumpData._populate_zonedump_data +_Anchors Lib/traceback.py /^_Anchors = collections.namedtuple($/;" v +_AnnotatedAlias Lib/typing.py /^class _AnnotatedAlias(_NotIterable, _GenericAlias, _root=True):$/;" c +_Annotated_test_G Lib/test/test_typing.py /^ class _Annotated_test_G(Generic[T]):$/;" c function:AnnotatedTests.test_pickle +_AnyComparer Lib/unittest/mock.py /^class _AnyComparer(list):$/;" c +_AnyMeta Lib/typing.py /^class _AnyMeta(type):$/;" c +_AppendAction Lib/argparse.py /^class _AppendAction(Action):$/;" c +_AppendConstAction Lib/argparse.py /^class _AppendConstAction(Action):$/;" c +_ArgParser Lib/test/libregrtest/cmdline.py /^class _ArgParser(argparse.ArgumentParser):$/;" c +_ArgumentGroup Lib/argparse.py /^class _ArgumentGroup(_ActionsContainer):$/;" c +_AsCompletedWaiter Lib/concurrent/futures/_base.py /^class _AsCompletedWaiter(_Waiter):$/;" c +_Asia_Tokyo Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _Asia_Tokyo():$/;" f function:ZoneDumpData._populate_zonedump_data +_AssertLogsContext Lib/unittest/_log.py /^class _AssertLogsContext(_BaseTestCaseContext):$/;" c +_AssertRaisesBaseContext Lib/unittest/case.py /^class _AssertRaisesBaseContext(_BaseTestCaseContext):$/;" c +_AssertRaisesContext Lib/unittest/case.py /^class _AssertRaisesContext(_AssertRaisesBaseContext):$/;" c +_AssertWarnsContext Lib/unittest/case.py /^class _AssertWarnsContext(_AssertRaisesBaseContext):$/;" c +_AsyncGeneratorContextManager Lib/contextlib.py /^):$/;" c +_AsyncIterator Lib/unittest/mock.py /^class _AsyncIterator:$/;" c +_AttributeHolder Lib/argparse.py /^class _AttributeHolder(object):$/;" c +_Australia_Sydney Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _Australia_Sydney():$/;" f function:ZoneDumpData._populate_zonedump_data +_Authenticator Lib/imaplib.py /^class _Authenticator:$/;" c +_BASE_EXEC_PREFIX Lib/sysconfig.py /^_BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)$/;" v +_BASE_PREFIX Lib/sysconfig.py /^_BASE_PREFIX = os.path.normpath(sys.base_prefix)$/;" v +_BATCHSIZE Lib/pickle.py /^ _BATCHSIZE = 1000$/;" v class:_Pickler +_BINARY_FORMAT Lib/plistlib.py /^_BINARY_FORMAT = {1: 'B', 2: 'H', 4: 'L', 8: 'Q'}$/;" v +_BISECT_BISECT_LEFT_METHODDEF Modules/clinic/_bisectmodule.c.h 239;" d +_BISECT_BISECT_RIGHT_METHODDEF Modules/clinic/_bisectmodule.c.h 26;" d +_BISECT_INSORT_LEFT_METHODDEF Modules/clinic/_bisectmodule.c.h 347;" d +_BISECT_INSORT_RIGHT_METHODDEF Modules/clinic/_bisectmodule.c.h 134;" d +_BITS_TRANS Lib/re/_compiler.py /^_BITS_TRANS = b'0' + b'1' * 255$/;" v +_BLAKE2_BLAKE2B_COPY_METHODDEF Modules/_blake2/clinic/blake2b_impl.c.h 223;" d +_BLAKE2_BLAKE2B_DIGEST_METHODDEF Modules/_blake2/clinic/blake2b_impl.c.h 250;" d +_BLAKE2_BLAKE2B_HEXDIGEST_METHODDEF Modules/_blake2/clinic/blake2b_impl.c.h 268;" d +_BLAKE2_BLAKE2B_UPDATE_METHODDEF Modules/_blake2/clinic/blake2b_impl.c.h 241;" d +_BLAKE2_BLAKE2S_COPY_METHODDEF Modules/_blake2/clinic/blake2s_impl.c.h 223;" d +_BLAKE2_BLAKE2S_DIGEST_METHODDEF Modules/_blake2/clinic/blake2s_impl.c.h 250;" d +_BLAKE2_BLAKE2S_HEXDIGEST_METHODDEF Modules/_blake2/clinic/blake2s_impl.c.h 268;" d +_BLAKE2_BLAKE2S_UPDATE_METHODDEF Modules/_blake2/clinic/blake2s_impl.c.h 241;" d +_BLOCKSIZE Lib/dbm/dumb.py /^_BLOCKSIZE = 512$/;" v +_BT_HCI_MEMB Modules/socketmodule.c 495;" d file: +_BT_HCI_MEMB Modules/socketmodule.c 505;" d file: +_BT_HCI_MEMB Modules/socketmodule.c 510;" d file: +_BT_L2_MEMB Modules/socketmodule.c 493;" d file: +_BT_L2_MEMB Modules/socketmodule.c 503;" d file: +_BT_L2_MEMB Modules/socketmodule.c 508;" d file: +_BT_RC_MEMB Modules/socketmodule.c 494;" d file: +_BT_RC_MEMB Modules/socketmodule.c 504;" d file: +_BT_RC_MEMB Modules/socketmodule.c 509;" d file: +_BT_RC_MEMB Modules/socketmodule.c 521;" d file: +_BT_SCO_MEMB Modules/socketmodule.c 506;" d file: +_BT_SCO_MEMB Modules/socketmodule.c 511;" d file: +_BZ2_BZ2COMPRESSOR_COMPRESS_METHODDEF Modules/clinic/_bz2module.c.h 22;" d +_BZ2_BZ2COMPRESSOR_FLUSH_METHODDEF Modules/clinic/_bz2module.c.h 62;" d +_BZ2_BZ2DECOMPRESSOR_DECOMPRESS_METHODDEF Modules/clinic/_bz2module.c.h 135;" d +_BZ2_SUPPORTED Lib/shutil.py /^ _BZ2_SUPPORTED = False$/;" v +_BZ2_SUPPORTED Lib/shutil.py /^ _BZ2_SUPPORTED = True$/;" v +_BarrierState Lib/asyncio/locks.py /^class _BarrierState(enum.Enum):$/;" c +_BaseAddress Lib/ipaddress.py /^class _BaseAddress(_IPAddressBase):$/;" c +_BaseConstants Lib/ipaddress.py /^class _BaseConstants:$/;" c +_BaseExitStack Lib/contextlib.py /^class _BaseExitStack:$/;" c +_BaseGenericAlias Lib/typing.py /^class _BaseGenericAlias(_Final, _root=True):$/;" c +_BaseLoggingResult Lib/test/test_unittest/support.py /^class _BaseLoggingResult(unittest.TestResult):$/;" c +_BaseNetwork Lib/ipaddress.py /^class _BaseNetwork(_IPAddressBase):$/;" c +_BasePathTest Lib/test/test_pathlib.py /^class _BasePathTest(object):$/;" c +_BasePurePathSubclass Lib/test/test_pathlib.py /^class _BasePurePathSubclass(object):$/;" c +_BasePurePathTest Lib/test/test_pathlib.py /^class _BasePurePathTest(object):$/;" c +_BaseSelectorImpl Lib/selectors.py /^class _BaseSelectorImpl(BaseSelector):$/;" c +_BaseTestCaseContext Lib/unittest/case.py /^class _BaseTestCaseContext:$/;" c +_BaseV4 Lib/ipaddress.py /^class _BaseV4:$/;" c +_BaseV6 Lib/ipaddress.py /^class _BaseV6:$/;" c +_BaseWaitHandleFuture Lib/asyncio/windows_events.py /^class _BaseWaitHandleFuture(futures.Future):$/;" c +_BinaryPlistParser Lib/plistlib.py /^class _BinaryPlistParser:$/;" c +_BinaryPlistWriter Lib/plistlib.py /^class _BinaryPlistWriter (object):$/;" c +_BlockingOnManager Lib/importlib/_bootstrap.py /^class _BlockingOnManager:$/;" c +_BlocksOutputBuffer Include/internal/pycore_blocks_output_buffer.h /^} _BlocksOutputBuffer;$/;" t typeref:struct:__anon140 +_BlocksOutputBuffer_Finish Include/internal/pycore_blocks_output_buffer.h /^_BlocksOutputBuffer_Finish(_BlocksOutputBuffer *buffer,$/;" f +_BlocksOutputBuffer_GetDataSize Include/internal/pycore_blocks_output_buffer.h /^_BlocksOutputBuffer_GetDataSize(_BlocksOutputBuffer *buffer,$/;" f +_BlocksOutputBuffer_Grow Include/internal/pycore_blocks_output_buffer.h /^_BlocksOutputBuffer_Grow(_BlocksOutputBuffer *buffer,$/;" f +_BlocksOutputBuffer_InitAndGrow Include/internal/pycore_blocks_output_buffer.h /^_BlocksOutputBuffer_InitAndGrow(_BlocksOutputBuffer *buffer,$/;" f +_BlocksOutputBuffer_InitWithSize Include/internal/pycore_blocks_output_buffer.h /^_BlocksOutputBuffer_InitWithSize(_BlocksOutputBuffer *buffer,$/;" f +_BlocksOutputBuffer_OnError Include/internal/pycore_blocks_output_buffer.h /^_BlocksOutputBuffer_OnError(_BlocksOutputBuffer *buffer)$/;" f +_BrokenDataDescriptor Lib/test/test_inspect.py /^class _BrokenDataDescriptor(object):$/;" c +_BrokenMethodDescriptor Lib/test/test_inspect.py /^class _BrokenMethodDescriptor(object):$/;" c +_BufferedIOMixin Lib/_pyio.py /^class _BufferedIOMixin(BufferedIOBase):$/;" c +_C Lib/multiprocessing/reduction.py /^class _C:$/;" c +_C Lib/test/test_dis.py /^class _C:$/;" c +_C Lib/types.py /^class _C:$/;" c +_CACHE_MAX_SIZE Lib/_strptime.py /^_CACHE_MAX_SIZE = 5 # Max number of regexes stored in _regex_cache$/;" v +_CANCELLED Lib/asyncio/base_futures.py /^_CANCELLED = 'CANCELLED'$/;" v +_CANCELLED Lib/asyncio/futures.py /^_CANCELLED = base_futures._CANCELLED$/;" v +_CASE_COST Lib/traceback.py /^_CASE_COST = 1$/;" v +_CASE_COST Tools/build/generate_levenshtein_examples.py /^_CASE_COST = 1$/;" v +_CASE_INSENSITIVE_PLATFORMS Lib/importlib/_bootstrap_external.py /^_CASE_INSENSITIVE_PLATFORMS = (_CASE_INSENSITIVE_PLATFORMS_BYTES_KEY$/;" v +_CASE_INSENSITIVE_PLATFORMS_BYTES_KEY Lib/importlib/_bootstrap_external.py /^_CASE_INSENSITIVE_PLATFORMS_BYTES_KEY = 'cygwin', 'darwin'$/;" v +_CASE_INSENSITIVE_PLATFORMS_STR_KEY Lib/importlib/_bootstrap_external.py /^_CASE_INSENSITIVE_PLATFORMS_STR_KEY = 'win',$/;" v +_CD64_CREATE_VERSION Lib/zipfile/__init__.py /^_CD64_CREATE_VERSION = 2$/;" v +_CD64_DIRECTORY_RECSIZE Lib/zipfile/__init__.py /^_CD64_DIRECTORY_RECSIZE = 1$/;" v +_CD64_DIRECTORY_SIZE Lib/zipfile/__init__.py /^_CD64_DIRECTORY_SIZE = 8$/;" v +_CD64_DISK_NUMBER Lib/zipfile/__init__.py /^_CD64_DISK_NUMBER = 4$/;" v +_CD64_DISK_NUMBER_START Lib/zipfile/__init__.py /^_CD64_DISK_NUMBER_START = 5$/;" v +_CD64_EXTRACT_VERSION Lib/zipfile/__init__.py /^_CD64_EXTRACT_VERSION = 3$/;" v +_CD64_NUMBER_ENTRIES_THIS_DISK Lib/zipfile/__init__.py /^_CD64_NUMBER_ENTRIES_THIS_DISK = 6$/;" v +_CD64_NUMBER_ENTRIES_TOTAL Lib/zipfile/__init__.py /^_CD64_NUMBER_ENTRIES_TOTAL = 7$/;" v +_CD64_OFFSET_START_CENTDIR Lib/zipfile/__init__.py /^_CD64_OFFSET_START_CENTDIR = 9$/;" v +_CD64_SIGNATURE Lib/zipfile/__init__.py /^_CD64_SIGNATURE = 0$/;" v +_CD_COMMENT_LENGTH Lib/zipfile/__init__.py /^_CD_COMMENT_LENGTH = 14$/;" v +_CD_COMPRESSED_SIZE Lib/zipfile/__init__.py /^_CD_COMPRESSED_SIZE = 10$/;" v +_CD_COMPRESS_TYPE Lib/zipfile/__init__.py /^_CD_COMPRESS_TYPE = 6$/;" v +_CD_CRC Lib/zipfile/__init__.py /^_CD_CRC = 9$/;" v +_CD_CREATE_SYSTEM Lib/zipfile/__init__.py /^_CD_CREATE_SYSTEM = 2$/;" v +_CD_CREATE_VERSION Lib/zipfile/__init__.py /^_CD_CREATE_VERSION = 1$/;" v +_CD_DATE Lib/zipfile/__init__.py /^_CD_DATE = 8$/;" v +_CD_DISK_NUMBER_START Lib/zipfile/__init__.py /^_CD_DISK_NUMBER_START = 15$/;" v +_CD_EXTERNAL_FILE_ATTRIBUTES Lib/zipfile/__init__.py /^_CD_EXTERNAL_FILE_ATTRIBUTES = 17$/;" v +_CD_EXTRACT_SYSTEM Lib/zipfile/__init__.py /^_CD_EXTRACT_SYSTEM = 4$/;" v +_CD_EXTRACT_VERSION Lib/zipfile/__init__.py /^_CD_EXTRACT_VERSION = 3$/;" v +_CD_EXTRA_FIELD_LENGTH Lib/zipfile/__init__.py /^_CD_EXTRA_FIELD_LENGTH = 13$/;" v +_CD_FILENAME_LENGTH Lib/zipfile/__init__.py /^_CD_FILENAME_LENGTH = 12$/;" v +_CD_FLAG_BITS Lib/zipfile/__init__.py /^_CD_FLAG_BITS = 5$/;" v +_CD_INTERNAL_FILE_ATTRIBUTES Lib/zipfile/__init__.py /^_CD_INTERNAL_FILE_ATTRIBUTES = 16$/;" v +_CD_LOCAL_HEADER_OFFSET Lib/zipfile/__init__.py /^_CD_LOCAL_HEADER_OFFSET = 18$/;" v +_CD_SIGNATURE Lib/zipfile/__init__.py /^_CD_SIGNATURE = 0$/;" v +_CD_TIME Lib/zipfile/__init__.py /^_CD_TIME = 7$/;" v +_CD_UNCOMPRESSED_SIZE Lib/zipfile/__init__.py /^_CD_UNCOMPRESSED_SIZE = 11$/;" v +_CDataObject_HasExternalBuffer Modules/_ctypes/ctypes.h 156;" d +_CFG Lib/turtle.py /^_CFG = {"width" : 0.5, # Screen$/;" v +_CHALLENGE Lib/multiprocessing/connection.py /^_CHALLENGE = b'#CHALLENGE#'$/;" v +_CHECK_ERRORS Lib/_pyio.py /^_CHECK_ERRORS = _IOBASE_EMITS_UNRAISABLE$/;" v +_CHUNK_SIZE Lib/_pyio.py /^ _CHUNK_SIZE = 2048$/;" v class:TextIOWrapper +_CJKCODECS_H_ Modules/cjkcodecs/cjkcodecs.h 8;" d +_CLEANUP_FUNCS Lib/multiprocessing/resource_tracker.py /^_CLEANUP_FUNCS = {$/;" v +_CLEARCACHE_METHODDEF Modules/clinic/_struct.c.h 223;" d +_CLEAR_GLOBALS_METHODDEF Modules/_testsinglephase.c 246;" d file: +_CLEAR_MODULE_STATE_METHODDEF Modules/_testsinglephase.c 265;" d file: +_CODEBITS Lib/re/_compiler.py /^_CODEBITS = _sre.CODESIZE * 8$/;" v +_CODECS_ASCII_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1344;" d +_CODECS_ASCII_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2426;" d +_CODECS_CHARMAP_BUILD_METHODDEF Modules/clinic/_codecsmodule.c.h 2547;" d +_CODECS_CHARMAP_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1406;" d +_CODECS_CHARMAP_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2484;" d +_CODECS_CODE_PAGE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1623;" d +_CODECS_CODE_PAGE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2858;" d +_CODECS_CODE_PAGE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2702;" d +_CODECS_CODE_PAGE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2870;" d +_CODECS_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 184;" d +_CODECS_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 84;" d +_CODECS_ESCAPE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 277;" d +_CODECS_ESCAPE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 349;" d +_CODECS_LATIN_1_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1282;" d +_CODECS_LATIN_1_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2368;" d +_CODECS_LOOKUP_ERROR_METHODDEF Modules/clinic/_codecsmodule.c.h 2818;" d +_CODECS_LOOKUP_METHODDEF Modules/clinic/_codecsmodule.c.h 41;" d +_CODECS_MBCS_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1475;" d +_CODECS_MBCS_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2850;" d +_CODECS_MBCS_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2580;" d +_CODECS_MBCS_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2862;" d +_CODECS_OEM_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1549;" d +_CODECS_OEM_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2854;" d +_CODECS_OEM_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2641;" d +_CODECS_OEM_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2866;" d +_CODECS_RAW_UNICODE_ESCAPE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1202;" d +_CODECS_RAW_UNICODE_ESCAPE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2310;" d +_CODECS_READBUFFER_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1700;" d +_CODECS_REGISTER_ERROR_METHODDEF Modules/clinic/_codecsmodule.c.h 2772;" d +_CODECS_REGISTER_METHODDEF Modules/clinic/_codecsmodule.c.h 21;" d +_CODECS_UNICODE_ESCAPE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1122;" d +_CODECS_UNICODE_ESCAPE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2252;" d +_CODECS_UNREGISTER_METHODDEF Modules/clinic/_codecsmodule.c.h 32;" d +_CODECS_UTF_16_BE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 684;" d +_CODECS_UTF_16_BE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2012;" d +_CODECS_UTF_16_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 544;" d +_CODECS_UTF_16_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1888;" d +_CODECS_UTF_16_EX_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 755;" d +_CODECS_UTF_16_LE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 614;" d +_CODECS_UTF_16_LE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1954;" d +_CODECS_UTF_32_BE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 973;" d +_CODECS_UTF_32_BE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2194;" d +_CODECS_UTF_32_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 833;" d +_CODECS_UTF_32_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2070;" d +_CODECS_UTF_32_EX_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1044;" d +_CODECS_UTF_32_LE_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 903;" d +_CODECS_UTF_32_LE_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 2136;" d +_CODECS_UTF_7_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 404;" d +_CODECS_UTF_7_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1772;" d +_CODECS_UTF_8_DECODE_METHODDEF Modules/clinic/_codecsmodule.c.h 474;" d +_CODECS_UTF_8_ENCODE_METHODDEF Modules/clinic/_codecsmodule.c.h 1830;" d +_CODE_ATTRS Lib/unittest/mock.py /^_CODE_ATTRS = dir(CodeType)$/;" v +_CODE_SIG Lib/unittest/mock.py /^_CODE_SIG = inspect.signature(partial(CodeType.__init__, None))$/;" v +_COLLECTIONS__COUNT_ELEMENTS_METHODDEF Modules/clinic/_collectionsmodule.c.h 17;" d +_COLOR_CONTENT_FUNC Modules/_cursesmodule.c 153;" d file: +_COLOR_CONTENT_FUNC Modules/_cursesmodule.c 160;" d file: +_COMPILERS Tools/c-analyzer/c_parser/preprocessor/__init__.py /^_COMPILERS = {$/;" v +_COMPILER_CONFIG_VARS Lib/_osx_support.py /^_COMPILER_CONFIG_VARS = ('BLDSHARED', 'LDSHARED', 'CC', 'CXX')$/;" v +_COMPRESS_LEVEL_BEST Lib/gzip.py /^_COMPRESS_LEVEL_BEST = 9$/;" v +_COMPRESS_LEVEL_FAST Lib/gzip.py /^_COMPRESS_LEVEL_FAST = 1$/;" v +_COMPRESS_LEVEL_TRADEOFF Lib/gzip.py /^_COMPRESS_LEVEL_TRADEOFF = 6$/;" v +_CONDVAR_IMPL_H_ Python/condvar.h 41;" d +_CONFIG_VARS Lib/sysconfig.py /^_CONFIG_VARS = None$/;" v +_CONFIG_VARS_INITIALIZED Lib/sysconfig.py /^_CONFIG_VARS_INITIALIZED = False$/;" v +_CONFIG_VARS_LOCK Lib/sysconfig.py /^_CONFIG_VARS_LOCK = threading.RLock()$/;" v +_CONSTANTS Lib/json/decoder.py /^_CONSTANTS = {$/;" v +_CONTEXTVARS_CONTEXTVAR_GET_METHODDEF Python/clinic/context.c.h 135;" d +_CONTEXTVARS_CONTEXTVAR_RESET_METHODDEF Python/clinic/context.c.h 184;" d +_CONTEXTVARS_CONTEXTVAR_SET_METHODDEF Python/clinic/context.c.h 172;" d +_CONTEXTVARS_CONTEXT_COPY_METHODDEF Python/clinic/context.c.h 111;" d +_CONTEXTVARS_CONTEXT_GET_METHODDEF Python/clinic/context.c.h 20;" d +_CONTEXTVARS_CONTEXT_ITEMS_METHODDEF Python/clinic/context.c.h 57;" d +_CONTEXTVARS_CONTEXT_KEYS_METHODDEF Python/clinic/context.c.h 75;" d +_CONTEXTVARS_CONTEXT_VALUES_METHODDEF Python/clinic/context.c.h 93;" d +_CONTEXTVARS_COPY_CONTEXT_METHODDEF Modules/clinic/_contextvarsmodule.c.h 16;" d +_COORD Lib/ctypes/wintypes.py /^class _COORD(ctypes.Structure):$/;" c +_COROUTINE_TYPES Lib/asyncio/coroutines.py /^_COROUTINE_TYPES = (types.CoroutineType, collections.abc.Coroutine)$/;" v +_CR Lib/_pyio.py /^ _CR = 2$/;" v class:IncrementalNewlineDecoder +_CRAM_MD5_AUTH Lib/imaplib.py /^ def _CRAM_MD5_AUTH(self, challenge):$/;" m class:IMAP4 +_CRLF Lib/_pyio.py /^ _CRLF = 4$/;" v class:IncrementalNewlineDecoder +_CRLF Lib/nntplib.py /^_CRLF = b'\\r\\n'$/;" v +_CRLock Lib/threading.py /^ _CRLock = None$/;" v +_CRLock Lib/threading.py /^ _CRLock = _thread.RLock$/;" v +_CRT_NONSTDC_NO_DEPRECATE PC/pyconfig.h 48;" d +_CRT_RAND_S Modules/expat/xmlparse.c 72;" d file: +_CRT_SECURE_NO_DEPRECATE PC/pyconfig.h 45;" d +_CSV_FIELD_SIZE_LIMIT_METHODDEF Modules/clinic/_csv.c.h 156;" d +_CSV_GET_DIALECT_METHODDEF Modules/clinic/_csv.c.h 96;" d +_CSV_LIST_DIALECTS_METHODDEF Modules/clinic/_csv.c.h 19;" d +_CSV_UNREGISTER_DIALECT_METHODDEF Modules/clinic/_csv.c.h 39;" d +_CS_IDLE Lib/http/client.py /^_CS_IDLE = 'Idle'$/;" v +_CS_REQ_SENT Lib/http/client.py /^_CS_REQ_SENT = 'Request-sent'$/;" v +_CS_REQ_STARTED Lib/http/client.py /^_CS_REQ_STARTED = 'Request-started'$/;" v +_CURSES_BAUDRATE_METHODDEF Modules/clinic/_cursesmodule.c.h 1863;" d +_CURSES_BEEP_METHODDEF Modules/clinic/_cursesmodule.c.h 1881;" d +_CURSES_CAN_CHANGE_COLOR_METHODDEF Modules/clinic/_cursesmodule.c.h 1899;" d +_CURSES_CBREAK_METHODDEF Modules/clinic/_cursesmodule.c.h 1926;" d +_CURSES_COLOR_CONTENT_METHODDEF Modules/clinic/_cursesmodule.c.h 1967;" d +_CURSES_COLOR_NUM_TYPE Modules/_cursesmodule.c 150;" d file: +_CURSES_COLOR_NUM_TYPE Modules/_cursesmodule.c 157;" d file: +_CURSES_COLOR_PAIR_METHODDEF Modules/clinic/_cursesmodule.c.h 2000;" d +_CURSES_COLOR_VAL_TYPE Modules/_cursesmodule.c 149;" d file: +_CURSES_COLOR_VAL_TYPE Modules/_cursesmodule.c 156;" d file: +_CURSES_CURS_SET_METHODDEF Modules/clinic/_cursesmodule.c.h 2036;" d +_CURSES_DEF_PROG_MODE_METHODDEF Modules/clinic/_cursesmodule.c.h 2068;" d +_CURSES_DEF_SHELL_MODE_METHODDEF Modules/clinic/_cursesmodule.c.h 2090;" d +_CURSES_DELAY_OUTPUT_METHODDEF Modules/clinic/_cursesmodule.c.h 2111;" d +_CURSES_DOUPDATE_METHODDEF Modules/clinic/_cursesmodule.c.h 2139;" d +_CURSES_ECHO_METHODDEF Modules/clinic/_cursesmodule.c.h 2162;" d +_CURSES_ENDWIN_METHODDEF Modules/clinic/_cursesmodule.c.h 2197;" d +_CURSES_ERASECHAR_METHODDEF Modules/clinic/_cursesmodule.c.h 2215;" d +_CURSES_FILTER_METHODDEF Modules/clinic/_cursesmodule.c.h 1843;" d +_CURSES_FILTER_METHODDEF Modules/clinic/_cursesmodule.c.h 4238;" d +_CURSES_FLASH_METHODDEF Modules/clinic/_cursesmodule.c.h 2235;" d +_CURSES_FLUSHINP_METHODDEF Modules/clinic/_cursesmodule.c.h 2256;" d +_CURSES_GETMOUSE_METHODDEF Modules/clinic/_cursesmodule.c.h 2303;" d +_CURSES_GETMOUSE_METHODDEF Modules/clinic/_cursesmodule.c.h 4246;" d +_CURSES_GETSYX_METHODDEF Modules/clinic/_cursesmodule.c.h 2278;" d +_CURSES_GETSYX_METHODDEF Modules/clinic/_cursesmodule.c.h 4242;" d +_CURSES_GETWIN_METHODDEF Modules/clinic/_cursesmodule.c.h 2400;" d +_CURSES_GET_ESCDELAY_METHODDEF Modules/clinic/_cursesmodule.c.h 2770;" d +_CURSES_GET_ESCDELAY_METHODDEF Modules/clinic/_cursesmodule.c.h 4258;" d +_CURSES_GET_TABSIZE_METHODDEF Modules/clinic/_cursesmodule.c.h 2834;" d +_CURSES_GET_TABSIZE_METHODDEF Modules/clinic/_cursesmodule.c.h 4266;" d +_CURSES_HALFDELAY_METHODDEF Modules/clinic/_cursesmodule.c.h 2414;" d +_CURSES_HAS_COLORS_METHODDEF Modules/clinic/_cursesmodule.c.h 2457;" d +_CURSES_HAS_EXTENDED_COLOR_SUPPORT_METHODDEF Modules/clinic/_cursesmodule.c.h 4213;" d +_CURSES_HAS_IC_METHODDEF Modules/clinic/_cursesmodule.c.h 2475;" d +_CURSES_HAS_IL_METHODDEF Modules/clinic/_cursesmodule.c.h 2493;" d +_CURSES_HAS_KEY_METHODDEF Modules/clinic/_cursesmodule.c.h 2516;" d +_CURSES_HAS_KEY_METHODDEF Modules/clinic/_cursesmodule.c.h 4254;" d +_CURSES_INITSCR_METHODDEF Modules/clinic/_cursesmodule.c.h 2652;" d +_CURSES_INIT_COLOR_FUNC Modules/_cursesmodule.c 151;" d file: +_CURSES_INIT_COLOR_FUNC Modules/_cursesmodule.c 158;" d file: +_CURSES_INIT_COLOR_METHODDEF Modules/clinic/_cursesmodule.c.h 2559;" d +_CURSES_INIT_PAIR_FUNC Modules/_cursesmodule.c 152;" d file: +_CURSES_INIT_PAIR_FUNC Modules/_cursesmodule.c 159;" d file: +_CURSES_INIT_PAIR_METHODDEF Modules/clinic/_cursesmodule.c.h 2612;" d +_CURSES_INTRFLUSH_METHODDEF Modules/clinic/_cursesmodule.c.h 2891;" d +_CURSES_ISENDWIN_METHODDEF Modules/clinic/_cursesmodule.c.h 2919;" d +_CURSES_IS_TERM_RESIZED_METHODDEF Modules/clinic/_cursesmodule.c.h 2944;" d +_CURSES_IS_TERM_RESIZED_METHODDEF Modules/clinic/_cursesmodule.c.h 4274;" d +_CURSES_KEYNAME_METHODDEF Modules/clinic/_cursesmodule.c.h 2985;" d +_CURSES_KILLCHAR_METHODDEF Modules/clinic/_cursesmodule.c.h 3013;" d +_CURSES_LONGNAME_METHODDEF Modules/clinic/_cursesmodule.c.h 3034;" d +_CURSES_META_METHODDEF Modules/clinic/_cursesmodule.c.h 3055;" d +_CURSES_MOUSEINTERVAL_METHODDEF Modules/clinic/_cursesmodule.c.h 3092;" d +_CURSES_MOUSEINTERVAL_METHODDEF Modules/clinic/_cursesmodule.c.h 4278;" d +_CURSES_MOUSEMASK_METHODDEF Modules/clinic/_cursesmodule.c.h 3129;" d +_CURSES_MOUSEMASK_METHODDEF Modules/clinic/_cursesmodule.c.h 4282;" d +_CURSES_NAPMS_METHODDEF Modules/clinic/_cursesmodule.c.h 3163;" d +_CURSES_NEWPAD_METHODDEF Modules/clinic/_cursesmodule.c.h 3196;" d +_CURSES_NEWWIN_METHODDEF Modules/clinic/_cursesmodule.c.h 3242;" d +_CURSES_NL_METHODDEF Modules/clinic/_cursesmodule.c.h 3293;" d +_CURSES_NOCBREAK_METHODDEF Modules/clinic/_cursesmodule.c.h 3330;" d +_CURSES_NOECHO_METHODDEF Modules/clinic/_cursesmodule.c.h 3350;" d +_CURSES_NONL_METHODDEF Modules/clinic/_cursesmodule.c.h 3371;" d +_CURSES_NOQIFLUSH_METHODDEF Modules/clinic/_cursesmodule.c.h 3392;" d +_CURSES_NORAW_METHODDEF Modules/clinic/_cursesmodule.c.h 3412;" d +_CURSES_PAIR_CONTENT_FUNC Modules/_cursesmodule.c 154;" d file: +_CURSES_PAIR_CONTENT_FUNC Modules/_cursesmodule.c 161;" d file: +_CURSES_PAIR_CONTENT_METHODDEF Modules/clinic/_cursesmodule.c.h 3433;" d +_CURSES_PAIR_NUMBER_METHODDEF Modules/clinic/_cursesmodule.c.h 3462;" d +_CURSES_PANEL_BOTTOM_PANEL_METHODDEF Modules/clinic/_curses_panel.c.h 347;" d +_CURSES_PANEL_NEW_PANEL_METHODDEF Modules/clinic/_curses_panel.c.h 365;" d +_CURSES_PANEL_PANEL_ABOVE_METHODDEF Modules/clinic/_curses_panel.c.h 107;" d +_CURSES_PANEL_PANEL_BELOW_METHODDEF Modules/clinic/_curses_panel.c.h 125;" d +_CURSES_PANEL_PANEL_BOTTOM_METHODDEF Modules/clinic/_curses_panel.c.h 17;" d +_CURSES_PANEL_PANEL_HIDDEN_METHODDEF Modules/clinic/_curses_panel.c.h 143;" d +_CURSES_PANEL_PANEL_HIDE_METHODDEF Modules/clinic/_curses_panel.c.h 41;" d +_CURSES_PANEL_PANEL_MOVE_METHODDEF Modules/clinic/_curses_panel.c.h 161;" d +_CURSES_PANEL_PANEL_REPLACE_METHODDEF Modules/clinic/_curses_panel.c.h 231;" d +_CURSES_PANEL_PANEL_SET_USERPTR_METHODDEF Modules/clinic/_curses_panel.c.h 280;" d +_CURSES_PANEL_PANEL_SHOW_METHODDEF Modules/clinic/_curses_panel.c.h 63;" d +_CURSES_PANEL_PANEL_TOP_METHODDEF Modules/clinic/_curses_panel.c.h 85;" d +_CURSES_PANEL_PANEL_USERPTR_METHODDEF Modules/clinic/_curses_panel.c.h 324;" d +_CURSES_PANEL_PANEL_WINDOW_METHODDEF Modules/clinic/_curses_panel.c.h 213;" d +_CURSES_PANEL_TOP_PANEL_METHODDEF Modules/clinic/_curses_panel.c.h 394;" d +_CURSES_PANEL_UPDATE_PANELS_METHODDEF Modules/clinic/_curses_panel.c.h 414;" d +_CURSES_PUTP_METHODDEF Modules/clinic/_cursesmodule.c.h 3492;" d +_CURSES_QIFLUSH_METHODDEF Modules/clinic/_cursesmodule.c.h 3525;" d +_CURSES_RAW_METHODDEF Modules/clinic/_cursesmodule.c.h 3588;" d +_CURSES_RESETTY_METHODDEF Modules/clinic/_cursesmodule.c.h 3659;" d +_CURSES_RESET_PROG_MODE_METHODDEF Modules/clinic/_cursesmodule.c.h 3623;" d +_CURSES_RESET_SHELL_MODE_METHODDEF Modules/clinic/_cursesmodule.c.h 3641;" d +_CURSES_RESIZETERM_METHODDEF Modules/clinic/_cursesmodule.c.h 3687;" d +_CURSES_RESIZETERM_METHODDEF Modules/clinic/_cursesmodule.c.h 4290;" d +_CURSES_RESIZE_TERM_METHODDEF Modules/clinic/_cursesmodule.c.h 3738;" d +_CURSES_RESIZE_TERM_METHODDEF Modules/clinic/_cursesmodule.c.h 4294;" d +_CURSES_SAVETTY_METHODDEF Modules/clinic/_cursesmodule.c.h 3776;" d +_CURSES_SETSYX_METHODDEF Modules/clinic/_cursesmodule.c.h 3803;" d +_CURSES_SETSYX_METHODDEF Modules/clinic/_cursesmodule.c.h 4298;" d +_CURSES_SETUPTERM_METHODDEF Modules/clinic/_cursesmodule.c.h 2677;" d +_CURSES_SET_ESCDELAY_METHODDEF Modules/clinic/_cursesmodule.c.h 2799;" d +_CURSES_SET_ESCDELAY_METHODDEF Modules/clinic/_cursesmodule.c.h 4262;" d +_CURSES_SET_TABSIZE_METHODDEF Modules/clinic/_cursesmodule.c.h 2862;" d +_CURSES_SET_TABSIZE_METHODDEF Modules/clinic/_cursesmodule.c.h 4270;" d +_CURSES_START_COLOR_METHODDEF Modules/clinic/_cursesmodule.c.h 3848;" d +_CURSES_TERMATTRS_METHODDEF Modules/clinic/_cursesmodule.c.h 3866;" d +_CURSES_TERMNAME_METHODDEF Modules/clinic/_cursesmodule.c.h 3884;" d +_CURSES_TIGETFLAG_METHODDEF Modules/clinic/_cursesmodule.c.h 3908;" d +_CURSES_TIGETNUM_METHODDEF Modules/clinic/_cursesmodule.c.h 3951;" d +_CURSES_TIGETSTR_METHODDEF Modules/clinic/_cursesmodule.c.h 3994;" d +_CURSES_TPARM_METHODDEF Modules/clinic/_cursesmodule.c.h 4035;" d +_CURSES_TYPEAHEAD_METHODDEF Modules/clinic/_cursesmodule.c.h 4080;" d +_CURSES_TYPEAHEAD_METHODDEF Modules/clinic/_cursesmodule.c.h 4302;" d +_CURSES_UNCTRL_METHODDEF Modules/clinic/_cursesmodule.c.h 4113;" d +_CURSES_UNGETCH_METHODDEF Modules/clinic/_cursesmodule.c.h 4122;" d +_CURSES_UNGETMOUSE_METHODDEF Modules/clinic/_cursesmodule.c.h 2327;" d +_CURSES_UNGETMOUSE_METHODDEF Modules/clinic/_cursesmodule.c.h 4250;" d +_CURSES_UNGET_WCH_METHODDEF Modules/clinic/_cursesmodule.c.h 4133;" d +_CURSES_UNGET_WCH_METHODDEF Modules/clinic/_cursesmodule.c.h 4306;" d +_CURSES_UPDATE_LINES_COLS_METHODDEF Modules/clinic/_cursesmodule.c.h 3561;" d +_CURSES_UPDATE_LINES_COLS_METHODDEF Modules/clinic/_cursesmodule.c.h 4286;" d +_CURSES_USE_DEFAULT_COLORS_METHODDEF Modules/clinic/_cursesmodule.c.h 4190;" d +_CURSES_USE_DEFAULT_COLORS_METHODDEF Modules/clinic/_cursesmodule.c.h 4314;" d +_CURSES_USE_ENV_METHODDEF Modules/clinic/_cursesmodule.c.h 4155;" d +_CURSES_USE_ENV_METHODDEF Modules/clinic/_cursesmodule.c.h 4310;" d +_CURSES_WINDOW_ADDCH_METHODDEF Modules/clinic/_cursesmodule.c.h 29;" d +_CURSES_WINDOW_ADDNSTR_METHODDEF Modules/clinic/_cursesmodule.c.h 175;" d +_CURSES_WINDOW_ADDSTR_METHODDEF Modules/clinic/_cursesmodule.c.h 101;" d +_CURSES_WINDOW_ATTROFF_METHODDEF Modules/clinic/_cursesmodule.c.h 278;" d +_CURSES_WINDOW_ATTRON_METHODDEF Modules/clinic/_cursesmodule.c.h 306;" d +_CURSES_WINDOW_ATTRSET_METHODDEF Modules/clinic/_cursesmodule.c.h 334;" d +_CURSES_WINDOW_BKGDSET_METHODDEF Modules/clinic/_cursesmodule.c.h 367;" d +_CURSES_WINDOW_BKGD_METHODDEF Modules/clinic/_cursesmodule.c.h 241;" d +_CURSES_WINDOW_BORDER_METHODDEF Modules/clinic/_cursesmodule.c.h 430;" d +_CURSES_WINDOW_BOX_METHODDEF Modules/clinic/_cursesmodule.c.h 506;" d +_CURSES_WINDOW_DELCH_METHODDEF Modules/clinic/_cursesmodule.c.h 549;" d +_CURSES_WINDOW_DERWIN_METHODDEF Modules/clinic/_cursesmodule.c.h 600;" d +_CURSES_WINDOW_ECHOCHAR_METHODDEF Modules/clinic/_cursesmodule.c.h 650;" d +_CURSES_WINDOW_ENCLOSE_METHODDEF Modules/clinic/_cursesmodule.c.h 4226;" d +_CURSES_WINDOW_ENCLOSE_METHODDEF Modules/clinic/_cursesmodule.c.h 695;" d +_CURSES_WINDOW_GETBKGD_METHODDEF Modules/clinic/_cursesmodule.c.h 733;" d +_CURSES_WINDOW_GETCH_METHODDEF Modules/clinic/_cursesmodule.c.h 768;" d +_CURSES_WINDOW_GETKEY_METHODDEF Modules/clinic/_cursesmodule.c.h 820;" d +_CURSES_WINDOW_GET_WCH_METHODDEF Modules/clinic/_cursesmodule.c.h 4230;" d +_CURSES_WINDOW_GET_WCH_METHODDEF Modules/clinic/_cursesmodule.c.h 868;" d +_CURSES_WINDOW_HLINE_METHODDEF Modules/clinic/_cursesmodule.c.h 919;" d +_CURSES_WINDOW_INCH_METHODDEF Modules/clinic/_cursesmodule.c.h 1055;" d +_CURSES_WINDOW_INSCH_METHODDEF Modules/clinic/_cursesmodule.c.h 990;" d +_CURSES_WINDOW_INSNSTR_METHODDEF Modules/clinic/_cursesmodule.c.h 1189;" d +_CURSES_WINDOW_INSSTR_METHODDEF Modules/clinic/_cursesmodule.c.h 1113;" d +_CURSES_WINDOW_IS_LINETOUCHED_METHODDEF Modules/clinic/_cursesmodule.c.h 1255;" d +_CURSES_WINDOW_NOUTREFRESH_METHODDEF Modules/clinic/_cursesmodule.c.h 1287;" d +_CURSES_WINDOW_NOUTREFRESH_METHODDEF Modules/clinic/_cursesmodule.c.h 1341;" d +_CURSES_WINDOW_NOUTREFRESH_METHODDEF Modules/clinic/_cursesmodule.c.h 4234;" d +_CURSES_WINDOW_OVERLAY_METHODDEF Modules/clinic/_cursesmodule.c.h 1368;" d +_CURSES_WINDOW_OVERWRITE_METHODDEF Modules/clinic/_cursesmodule.c.h 1426;" d +_CURSES_WINDOW_PUTWIN_METHODDEF Modules/clinic/_cursesmodule.c.h 1479;" d +_CURSES_WINDOW_REDRAWLN_METHODDEF Modules/clinic/_cursesmodule.c.h 1495;" d +_CURSES_WINDOW_REFRESH_METHODDEF Modules/clinic/_cursesmodule.c.h 1541;" d +_CURSES_WINDOW_SCROLL_METHODDEF Modules/clinic/_cursesmodule.c.h 1688;" d +_CURSES_WINDOW_SETSCRREG_METHODDEF Modules/clinic/_cursesmodule.c.h 1593;" d +_CURSES_WINDOW_SUBWIN_METHODDEF Modules/clinic/_cursesmodule.c.h 1640;" d +_CURSES_WINDOW_TOUCHLINE_METHODDEF Modules/clinic/_cursesmodule.c.h 1728;" d +_CURSES_WINDOW_VLINE_METHODDEF Modules/clinic/_cursesmodule.c.h 1781;" d +_C_BUILTIN Lib/modulefinder.py /^_C_BUILTIN = 6$/;" v +_C_EXTENSION Lib/modulefinder.py /^_C_EXTENSION = 3$/;" v +_C_LOCALE_WARNING Python/pylifecycle.c /^static const char *_C_LOCALE_WARNING =$/;" v file: +_C_UTF8_LOCALES Lib/test/test_c_locale_coercion.py /^_C_UTF8_LOCALES = ("C.UTF-8", "C.utf8", "UTF-8")$/;" v +_CacheInfo Lib/functools.py /^_CacheInfo = namedtuple("CacheInfo", ["hits", "misses", "maxsize", "currsize"])$/;" v +_CalendarOffset Lib/zoneinfo/_zoneinfo.py /^class _CalendarOffset:$/;" c +_Call Lib/test/test_lib2to3/test_util.py /^ def _Call(self, name, args=None, prefix=None):$/;" m class:Test_Call +_Call Lib/unittest/mock.py /^class _Call(tuple):$/;" c +_CallItem Lib/concurrent/futures/process.py /^class _CallItem(object):$/;" c +_CallList Lib/unittest/mock.py /^class _CallList(list):$/;" c +_CallPythonObject Modules/_ctypes/callbacks.c /^static void _CallPythonObject(void *mem,$/;" f file: +_CallableGenericAlias Lib/_collections_abc.py /^class _CallableGenericAlias(GenericAlias):$/;" c +_CallableGenericAlias Lib/typing.py /^class _CallableGenericAlias(_NotIterable, _GenericAlias, _root=True):$/;" c +_CallableType Lib/typing.py /^class _CallableType(_SpecialGenericAlias, _root=True):$/;" c +_CandidateLocale Python/pylifecycle.c /^typedef struct _CandidateLocale {$/;" s file: +_CapturingHandler Lib/unittest/_log.py /^class _CapturingHandler(logging.Handler):$/;" c +_ChannelEnd Lib/test/support/interpreters.py /^class _ChannelEnd:$/;" c +_ChoicesPseudoAction Lib/argparse.py /^ class _ChoicesPseudoAction(Action):$/;" c class:_SubParsersAction +_Chunk Lib/wave.py /^class _Chunk:$/;" c +_ClassFinder Lib/inspect.py /^class _ClassFinder(ast.NodeVisitor):$/;" c +_ClosedDict Lib/shelve.py /^class _ClosedDict(collections.abc.MutableMapping):$/;" c +_ClosedParser Lib/xml/sax/expatreader.py /^class _ClosedParser:$/;" c +_ComplexBinder Lib/idlelib/multicall.py /^class _ComplexBinder:$/;" c +_CompressedWriteTest Lib/test/test_tarfile.py /^class _CompressedWriteTest(TarTest):$/;" c +_ConcatenateGenericAlias Lib/typing.py /^class _ConcatenateGenericAlias(_GenericAlias, _root=True):$/;" c +_ConnectionBase Lib/multiprocessing/connection.py /^class _ConnectionBase:$/;" c +_ContextManager Lib/_pydecimal.py /^class _ContextManager(object):$/;" c +_ContextManagerMixin Lib/asyncio/locks.py /^class _ContextManagerMixin:$/;" c +_CountAction Lib/argparse.py /^class _CountAction(Action):$/;" c +_DATA_DIR Tools/c-analyzer/cpython/_analyzer.py /^_DATA_DIR = os.path.dirname(__file__)$/;" v +_DAYNAMES Lib/_pydatetime.py /^_DAYNAMES = [None, "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]$/;" v +_DAYS_BEFORE_MONTH Lib/_pydatetime.py /^_DAYS_BEFORE_MONTH = [-1] # -1 is a placeholder for indexing purposes.$/;" v +_DAYS_BEFORE_MONTH Lib/zoneinfo/_zoneinfo.py /^ _DAYS_BEFORE_MONTH = ($/;" v class:_CalendarOffset +_DAYS_IN_MONTH Lib/_pydatetime.py /^_DAYS_IN_MONTH = [-1, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]$/;" v +_DBM_DBM_CLOSE_METHODDEF Modules/clinic/_dbmmodule.c.h 17;" d +_DBM_DBM_GET_METHODDEF Modules/clinic/_dbmmodule.c.h 57;" d +_DBM_DBM_KEYS_METHODDEF Modules/clinic/_dbmmodule.c.h 35;" d +_DBM_DBM_SETDEFAULT_METHODDEF Modules/clinic/_dbmmodule.c.h 103;" d +_DD_SIGNATURE Lib/zipfile/__init__.py /^_DD_SIGNATURE = 0x08074b50$/;" v +_DEFAULT_FIXERS Lib/test/test_lib2to3/test_refactor.py /^ _DEFAULT_FIXERS = refactor.get_fixers_from_package("myfixes")$/;" v +_DEFAULT_INTERPOLATION Lib/configparser.py /^ _DEFAULT_INTERPOLATION = BasicInterpolation()$/;" v class:ConfigParser +_DEFAULT_INTERPOLATION Lib/configparser.py /^ _DEFAULT_INTERPOLATION = Interpolation()$/;" v class:RawConfigParser +_DEFAULT_INTERPOLATION Lib/test/test_configparser.py /^ _DEFAULT_INTERPOLATION = None$/;" v class:ConfigParserTestCaseNoInterpolation.test_none_as_default_interpolation.CustomConfigParser +_DEFAULT_LIMIT Lib/asyncio/streams.py /^_DEFAULT_LIMIT = 2 ** 16 # 64 KiB$/;" v +_DEFAULT_OVERVIEW_FMT Lib/nntplib.py /^_DEFAULT_OVERVIEW_FMT = [$/;" v +_DEPRECATED_CLASS_MESSAGE Lib/ast.py /^_DEPRECATED_CLASS_MESSAGE = ($/;" v +_DEPRECATED_MSG Lib/warnings.py /^_DEPRECATED_MSG = "{name!r} is deprecated and slated for removal in Python {remove}"$/;" v +_DEPRECATED_VALUE_ALIAS_MESSAGE Lib/ast.py /^_DEPRECATED_VALUE_ALIAS_MESSAGE = ($/;" v +_DEPRECATION_MSG Lib/mailcap.py /^_DEPRECATION_MSG = ('The {name} module is deprecated and will be removed in '$/;" v +_DI100Y Lib/_pydatetime.py /^_DI100Y = _days_before_year(101) # " " " " 100 "$/;" v +_DI400Y Lib/_pydatetime.py /^_DI400Y = _days_before_year(401) # number of days in 400 years$/;" v +_DI4Y Lib/_pydatetime.py /^_DI4Y = _days_before_year(5) # " " " " 4 "$/;" v +_DISCARD_FREE_SPACE_LARGER_THAN Lib/multiprocessing/heap.py /^ _DISCARD_FREE_SPACE_LARGER_THAN = 4 * 1024 ** 2 # 4 MB$/;" v class:Heap +_DISCONNECTED Lib/test/support/asyncore.py /^_DISCONNECTED = frozenset({ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE,$/;" v +_DIV_LIMIT Lib/_pylong.py /^_DIV_LIMIT = 4000$/;" v +_DK_ENTRIES Include/internal/pycore_dict.h /^static inline void* _DK_ENTRIES(PyDictKeysObject *dk) {$/;" f +_DOUBLE_ARENA_SIZE_UNTIL Lib/multiprocessing/heap.py /^ _DOUBLE_ARENA_SIZE_UNTIL = 4 * 1024 ** 2$/;" v class:Heap +_DUMMY_SYMLINK Lib/test/test_posix.py /^_DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),$/;" v +_Database Lib/dbm/dumb.py /^class _Database(collections.abc.MutableMapping):$/;" c +_DataclassParams Lib/dataclasses.py /^class _DataclassParams:$/;" c +_DayOffset Lib/zoneinfo/_zoneinfo.py /^class _DayOffset:$/;" c +_DeadlockError Lib/importlib/_bootstrap.py /^class _DeadlockError(RuntimeError):$/;" c +_DebugResult Lib/unittest/suite.py /^class _DebugResult(object):$/;" c +_DefragResultBase Lib/urllib/parse.py /^_DefragResultBase = namedtuple('DefragResult', 'url fragment')$/;" v +_DeprecateByteStringMeta Lib/_collections_abc.py /^class _DeprecateByteStringMeta(ABCMeta):$/;" c +_DeprecatedGenericAlias Lib/typing.py /^class _DeprecatedGenericAlias(_SpecialGenericAlias, _root=True):$/;" c +_DeprecatedTest Lib/test/test_warnings/__init__.py /^class _DeprecatedTest(BaseTest, unittest.TestCase):$/;" c +_DeprecatedType Lib/typing.py /^class _DeprecatedType(type):$/;" c +_Dialog Lib/tkinter/filedialog.py /^class _Dialog(commondialog.Dialog):$/;" c +_DictRemover_call Modules/_ctypes/_ctypes.c /^_DictRemover_call(PyObject *myself, PyObject *args, PyObject *kw)$/;" f file: +_DictRemover_clear Modules/_ctypes/_ctypes.c /^_DictRemover_clear(DictRemoverObject *self)$/;" f file: +_DictRemover_dealloc Modules/_ctypes/_ctypes.c /^_DictRemover_dealloc(PyObject *myself)$/;" f file: +_DictRemover_traverse Modules/_ctypes/_ctypes.c /^_DictRemover_traverse(DictRemoverObject *self, visitproc visit, void *arg)$/;" f file: +_DoNothing Lib/test/test_statistics.py /^class _DoNothing:$/;" c +_DocTestSuite Lib/doctest.py /^class _DocTestSuite(unittest.TestSuite):$/;" c +_DoubleRecursiveWildcardSelector Lib/pathlib.py /^class _DoubleRecursiveWildcardSelector(_RecursiveWildcardSelector):$/;" c +_DumbXMLWriter Lib/plistlib.py /^class _DumbXMLWriter:$/;" c +_DummyDecl Modules/pyexpat.c /^ _DummyDecl$/;" e enum:HandlerTypes file: +_DummyList Lib/test/_test_multiprocessing.py /^class _DummyList(object):$/;" c +_DummyModuleLock Lib/importlib/_bootstrap.py /^class _DummyModuleLock:$/;" c +_DummyThread Lib/threading.py /^class _DummyThread(Thread):$/;" c +_DupFd Lib/multiprocessing/popen_forkserver.py /^class _DupFd(object):$/;" c +_DupFd Lib/multiprocessing/popen_spawn_posix.py /^class _DupFd(object):$/;" c +_ECD_COMMENT Lib/zipfile/__init__.py /^_ECD_COMMENT = 8$/;" v +_ECD_COMMENT_SIZE Lib/zipfile/__init__.py /^_ECD_COMMENT_SIZE = 7$/;" v +_ECD_DISK_NUMBER Lib/zipfile/__init__.py /^_ECD_DISK_NUMBER = 1$/;" v +_ECD_DISK_START Lib/zipfile/__init__.py /^_ECD_DISK_START = 2$/;" v +_ECD_ENTRIES_THIS_DISK Lib/zipfile/__init__.py /^_ECD_ENTRIES_THIS_DISK = 3$/;" v +_ECD_ENTRIES_TOTAL Lib/zipfile/__init__.py /^_ECD_ENTRIES_TOTAL = 4$/;" v +_ECD_LOCATION Lib/zipfile/__init__.py /^_ECD_LOCATION = 9$/;" v +_ECD_OFFSET Lib/zipfile/__init__.py /^_ECD_OFFSET = 6$/;" v +_ECD_SIGNATURE Lib/zipfile/__init__.py /^_ECD_SIGNATURE = 0$/;" v +_ECD_SIZE Lib/zipfile/__init__.py /^_ECD_SIZE = 5$/;" v +_ELEMENTTREE_ELEMENT_APPEND_METHODDEF Modules/clinic/_elementtree.c.h 16;" d +_ELEMENTTREE_ELEMENT_CLEAR_METHODDEF Modules/clinic/_elementtree.c.h 63;" d +_ELEMENTTREE_ELEMENT_EXTEND_METHODDEF Modules/clinic/_elementtree.c.h 216;" d +_ELEMENTTREE_ELEMENT_FINDALL_METHODDEF Modules/clinic/_elementtree.c.h 391;" d +_ELEMENTTREE_ELEMENT_FINDTEXT_METHODDEF Modules/clinic/_elementtree.c.h 321;" d +_ELEMENTTREE_ELEMENT_FIND_METHODDEF Modules/clinic/_elementtree.c.h 259;" d +_ELEMENTTREE_ELEMENT_GET_METHODDEF Modules/clinic/_elementtree.c.h 515;" d +_ELEMENTTREE_ELEMENT_INSERT_METHODDEF Modules/clinic/_elementtree.c.h 658;" d +_ELEMENTTREE_ELEMENT_ITEMS_METHODDEF Modules/clinic/_elementtree.c.h 703;" d +_ELEMENTTREE_ELEMENT_ITERFIND_METHODDEF Modules/clinic/_elementtree.c.h 453;" d +_ELEMENTTREE_ELEMENT_ITERTEXT_METHODDEF Modules/clinic/_elementtree.c.h 637;" d +_ELEMENTTREE_ELEMENT_ITER_METHODDEF Modules/clinic/_elementtree.c.h 577;" d +_ELEMENTTREE_ELEMENT_KEYS_METHODDEF Modules/clinic/_elementtree.c.h 720;" d +_ELEMENTTREE_ELEMENT_MAKEELEMENT_METHODDEF Modules/clinic/_elementtree.c.h 737;" d +_ELEMENTTREE_ELEMENT_REMOVE_METHODDEF Modules/clinic/_elementtree.c.h 786;" d +_ELEMENTTREE_ELEMENT_SET_METHODDEF Modules/clinic/_elementtree.c.h 814;" d +_ELEMENTTREE_ELEMENT___COPY___METHODDEF Modules/clinic/_elementtree.c.h 80;" d +_ELEMENTTREE_ELEMENT___DEEPCOPY___METHODDEF Modules/clinic/_elementtree.c.h 101;" d +_ELEMENTTREE_ELEMENT___GETSTATE___METHODDEF Modules/clinic/_elementtree.c.h 156;" d +_ELEMENTTREE_ELEMENT___SETSTATE___METHODDEF Modules/clinic/_elementtree.c.h 173;" d +_ELEMENTTREE_ELEMENT___SIZEOF___METHODDEF Modules/clinic/_elementtree.c.h 129;" d +_ELEMENTTREE_TREEBUILDER_CLOSE_METHODDEF Modules/clinic/_elementtree.c.h 1030;" d +_ELEMENTTREE_TREEBUILDER_COMMENT_METHODDEF Modules/clinic/_elementtree.c.h 988;" d +_ELEMENTTREE_TREEBUILDER_DATA_METHODDEF Modules/clinic/_elementtree.c.h 972;" d +_ELEMENTTREE_TREEBUILDER_END_METHODDEF Modules/clinic/_elementtree.c.h 980;" d +_ELEMENTTREE_TREEBUILDER_PI_METHODDEF Modules/clinic/_elementtree.c.h 996;" d +_ELEMENTTREE_TREEBUILDER_START_METHODDEF Modules/clinic/_elementtree.c.h 1047;" d +_ELEMENTTREE_XMLPARSER_CLOSE_METHODDEF Modules/clinic/_elementtree.c.h 1159;" d +_ELEMENTTREE_XMLPARSER_FEED_METHODDEF Modules/clinic/_elementtree.c.h 1176;" d +_ELEMENTTREE_XMLPARSER__PARSE_WHOLE_METHODDEF Modules/clinic/_elementtree.c.h 1184;" d +_ELEMENTTREE_XMLPARSER__SETEVENTS_METHODDEF Modules/clinic/_elementtree.c.h 1192;" d +_ELEMENTTREE__SET_FACTORIES_METHODDEF Modules/clinic/_elementtree.c.h 942;" d +_EMPTY_METADATA Lib/dataclasses.py /^_EMPTY_METADATA = types.MappingProxyType({})$/;" v +_EPOCH Lib/_pydatetime.py /^_EPOCH = datetime(1970, 1, 1, tzinfo=timezone.utc)$/;" v +_EPOCH_ORD Lib/calendar.py /^_EPOCH_ORD = datetime.date(EPOCH, 1, 1).toordinal()$/;" v +_EPSILON Lib/test/test_asyncio/test_waitfor.py /^_EPSILON = 0.0001$/;" v +_ERR PCbuild/blurb.bat /^set _ERR=%ERRORLEVEL%$/;" v +_ERR_MSG Lib/importlib/_bootstrap.py /^_ERR_MSG = _ERR_MSG_PREFIX + '{!r}'$/;" v +_ERR_MSG_PREFIX Lib/importlib/_bootstrap.py /^_ERR_MSG_PREFIX = 'No module named '$/;" v +_EVENT_READ Lib/selectors.py /^ _EVENT_READ = select.EPOLLIN$/;" v class:_PollLikeSelector.EpollSelector +_EVENT_READ Lib/selectors.py /^ _EVENT_READ = select.POLLIN$/;" v class:_PollLikeSelector.DevpollSelector +_EVENT_READ Lib/selectors.py /^ _EVENT_READ = select.POLLIN$/;" v class:_PollLikeSelector.PollSelector +_EVENT_READ Lib/selectors.py /^ _EVENT_READ = None$/;" v class:_PollLikeSelector +_EVENT_WRITE Lib/selectors.py /^ _EVENT_WRITE = select.EPOLLOUT$/;" v class:_PollLikeSelector.EpollSelector +_EVENT_WRITE Lib/selectors.py /^ _EVENT_WRITE = select.POLLOUT$/;" v class:_PollLikeSelector.DevpollSelector +_EVENT_WRITE Lib/selectors.py /^ _EVENT_WRITE = select.POLLOUT$/;" v class:_PollLikeSelector.PollSelector +_EVENT_WRITE Lib/selectors.py /^ _EVENT_WRITE = None$/;" v class:_PollLikeSelector +_EXEC_PREFIX Lib/sysconfig.py /^_EXEC_PREFIX = os.path.normpath(sys.exec_prefix)$/;" v +_EXPORT_INT Modules/ossaudiodev.c 1048;" d file: +_EXTRA_CASES Lib/re/_casefix.py /^_EXTRA_CASES = {$/;" v +_EXTRA_FIELD_STRUCT Lib/zipfile/__init__.py /^_EXTRA_FIELD_STRUCT = struct.Struct('$/;" v +_HashInheritanceTester_Type Modules/_testcapimodule.c /^static PyTypeObject _HashInheritanceTester_Type = {$/;" v file: +_HashedSeq Lib/functools.py /^class _HashedSeq(list):$/;" c +_HelpAction Lib/argparse.py /^class _HelpAction(Action):$/;" c +_Helper Lib/_sitebuiltins.py /^class _Helper(object):$/;" c +_ID_KEYWORDS Lib/idlelib/hyperparser.py /^ _ID_KEYWORDS = frozenset({"True", "False", "None"})$/;" v class:HyperParser +_IGNORED Tools/c-analyzer/cpython/_analyzer.py /^_IGNORED = {$/;" v +_IGNORED_ERRNOS Lib/pathlib.py /^_IGNORED_ERRNOS = (ENOENT, ENOTDIR, EBADF, ELOOP)$/;" v +_IGNORED_SIGNALS Lib/multiprocessing/resource_tracker.py /^_IGNORED_SIGNALS = (signal.SIGINT, signal.SIGTERM)$/;" v +_IGNORED_WINERRORS Lib/pathlib.py /^_IGNORED_WINERRORS = ($/;" v +_IMP_ACQUIRE_LOCK_METHODDEF Python/clinic/import.c.h 40;" d +_IMP_CREATE_BUILTIN_METHODDEF Python/clinic/import.c.h 125;" d +_IMP_CREATE_DYNAMIC_METHODDEF Python/clinic/import.c.h 484;" d +_IMP_CREATE_DYNAMIC_METHODDEF Python/clinic/import.c.h 645;" d +_IMP_EXEC_BUILTIN_METHODDEF Python/clinic/import.c.h 552;" d +_IMP_EXEC_DYNAMIC_METHODDEF Python/clinic/import.c.h 522;" d +_IMP_EXEC_DYNAMIC_METHODDEF Python/clinic/import.c.h 649;" d +_IMP_EXTENSION_SUFFIXES_METHODDEF Python/clinic/import.c.h 134;" d +_IMP_FIND_FROZEN_METHODDEF Python/clinic/import.c.h 192;" d +_IMP_GET_FROZEN_OBJECT_METHODDEF Python/clinic/import.c.h 264;" d +_IMP_INIT_FROZEN_METHODDEF Python/clinic/import.c.h 152;" d +_IMP_IS_BUILTIN_METHODDEF Python/clinic/import.c.h 338;" d +_IMP_IS_FROZEN_METHODDEF Python/clinic/import.c.h 370;" d +_IMP_IS_FROZEN_PACKAGE_METHODDEF Python/clinic/import.c.h 306;" d +_IMP_LOCK_HELD_METHODDEF Python/clinic/import.c.h 19;" d +_IMP_RELEASE_LOCK_METHODDEF Python/clinic/import.c.h 60;" d +_IMP_SOURCE_HASH_METHODDEF Python/clinic/import.c.h 579;" d +_IMP__FIX_CO_FILENAME_METHODDEF Python/clinic/import.c.h 83;" d +_IMP__FROZEN_MODULE_NAMES_METHODDEF Python/clinic/import.c.h 402;" d +_IMP__OVERRIDE_FROZEN_MODULES_FOR_TESTS_METHODDEF Python/clinic/import.c.h 423;" d +_IMP__OVERRIDE_MULTI_INTERP_EXTENSIONS_CHECK_METHODDEF Python/clinic/import.c.h 453;" d +_INDENT Lib/idlelib/calltip.py /^_INDENT = ' '*4 # for wrapped signatures$/;" v +_INDENT_RE Lib/doctest.py /^ _INDENT_RE = re.compile(r'^([ ]*)(?=\\S)', re.MULTILINE)$/;" v class:DocTestParser +_INFSTR Lib/ast.py /^_INFSTR = "1e" + repr(sys.float_info.max_10_exp + 1)$/;" v +_INITPRE Lib/_osx_support.py /^_INITPRE = '_OSX_SUPPORT_INITIAL_'$/;" v +_INSTALL_SCHEMES Lib/sysconfig.py /^_INSTALL_SCHEMES = {$/;" v +_INTERNAL_trim_to_complete_utf8_characters Modules/expat/xmltok.c /^_INTERNAL_trim_to_complete_utf8_characters(const char *from,$/;" f +_INT_BITS Lib/dis.py /^_INT_BITS = 32$/;" v +_INT_OVERFLOW Lib/dis.py /^_INT_OVERFLOW = 2 ** (_INT_BITS - 1)$/;" v +_IOBASE_EMITS_UNRAISABLE Lib/_pyio.py /^_IOBASE_EMITS_UNRAISABLE = (hasattr(sys, "gettotalrefcount") or sys.flags.dev_mode)$/;" v +_IO_BUFFEREDWRITER_WRITE_METHODDEF Modules/_io/clinic/bufferedio.c.h 936;" d +_IO_BYTESIO_CLOSE_METHODDEF Modules/_io/clinic/bytesio.c.h 471;" d +_IO_BYTESIO_FLUSH_METHODDEF Modules/_io/clinic/bytesio.c.h 71;" d +_IO_BYTESIO_GETBUFFER_METHODDEF Modules/_io/clinic/bytesio.c.h 89;" d +_IO_BYTESIO_GETVALUE_METHODDEF Modules/_io/clinic/bytesio.c.h 111;" d +_IO_BYTESIO_ISATTY_METHODDEF Modules/_io/clinic/bytesio.c.h 131;" d +_IO_BYTESIO_READ1_METHODDEF Modules/_io/clinic/bytesio.c.h 207;" d +_IO_BYTESIO_READABLE_METHODDEF Modules/_io/clinic/bytesio.c.h 17;" d +_IO_BYTESIO_READINTO_METHODDEF Modules/_io/clinic/bytesio.c.h 318;" d +_IO_BYTESIO_READLINES_METHODDEF Modules/_io/clinic/bytesio.c.h 283;" d +_IO_BYTESIO_READLINE_METHODDEF Modules/_io/clinic/bytesio.c.h 245;" d +_IO_BYTESIO_READ_METHODDEF Modules/_io/clinic/bytesio.c.h 170;" d +_IO_BYTESIO_SEEKABLE_METHODDEF Modules/_io/clinic/bytesio.c.h 53;" d +_IO_BYTESIO_SEEK_METHODDEF Modules/_io/clinic/bytesio.c.h 399;" d +_IO_BYTESIO_TELL_METHODDEF Modules/_io/clinic/bytesio.c.h 149;" d +_IO_BYTESIO_TRUNCATE_METHODDEF Modules/_io/clinic/bytesio.c.h 359;" d +_IO_BYTESIO_WRITABLE_METHODDEF Modules/_io/clinic/bytesio.c.h 35;" d +_IO_BYTESIO_WRITELINES_METHODDEF Modules/_io/clinic/bytesio.c.h 462;" d +_IO_BYTESIO_WRITE_METHODDEF Modules/_io/clinic/bytesio.c.h 449;" d +_IO_FILEIO_CLOSE_METHODDEF Modules/_io/clinic/fileio.c.h 20;" d +_IO_FILEIO_FILENO_METHODDEF Modules/_io/clinic/fileio.c.h 145;" d +_IO_FILEIO_ISATTY_METHODDEF Modules/_io/clinic/fileio.c.h 524;" d +_IO_FILEIO_READABLE_METHODDEF Modules/_io/clinic/fileio.c.h 163;" d +_IO_FILEIO_READALL_METHODDEF Modules/_io/clinic/fileio.c.h 276;" d +_IO_FILEIO_READINTO_METHODDEF Modules/_io/clinic/fileio.c.h 217;" d +_IO_FILEIO_READ_METHODDEF Modules/_io/clinic/fileio.c.h 298;" d +_IO_FILEIO_SEEKABLE_METHODDEF Modules/_io/clinic/fileio.c.h 199;" d +_IO_FILEIO_SEEK_METHODDEF Modules/_io/clinic/fileio.c.h 413;" d +_IO_FILEIO_TELL_METHODDEF Modules/_io/clinic/fileio.c.h 452;" d +_IO_FILEIO_TRUNCATE_METHODDEF Modules/_io/clinic/fileio.c.h 475;" d +_IO_FILEIO_TRUNCATE_METHODDEF Modules/_io/clinic/fileio.c.h 537;" d +_IO_FILEIO_WRITABLE_METHODDEF Modules/_io/clinic/fileio.c.h 181;" d +_IO_FILEIO_WRITE_METHODDEF Modules/_io/clinic/fileio.c.h 351;" d +_IO_INCREMENTALNEWLINEDECODER_DECODE_METHODDEF Modules/_io/clinic/textio.c.h 282;" d +_IO_INCREMENTALNEWLINEDECODER_GETSTATE_METHODDEF Modules/_io/clinic/textio.c.h 347;" d +_IO_INCREMENTALNEWLINEDECODER_RESET_METHODDEF Modules/_io/clinic/textio.c.h 372;" d +_IO_INCREMENTALNEWLINEDECODER_SETSTATE_METHODDEF Modules/_io/clinic/textio.c.h 364;" d +_IO_OPEN_CODE_METHODDEF Modules/_io/clinic/_iomodule.c.h 355;" d +_IO_OPEN_METHODDEF Modules/_io/clinic/_iomodule.c.h 130;" d +_IO_STRINGIO_CLOSE_METHODDEF Modules/_io/clinic/stringio.c.h 235;" d +_IO_STRINGIO_GETVALUE_METHODDEF Modules/_io/clinic/stringio.c.h 17;" d +_IO_STRINGIO_READABLE_METHODDEF Modules/_io/clinic/stringio.c.h 323;" d +_IO_STRINGIO_READLINE_METHODDEF Modules/_io/clinic/stringio.c.h 92;" d +_IO_STRINGIO_READ_METHODDEF Modules/_io/clinic/stringio.c.h 56;" d +_IO_STRINGIO_SEEKABLE_METHODDEF Modules/_io/clinic/stringio.c.h 359;" d +_IO_STRINGIO_SEEK_METHODDEF Modules/_io/clinic/stringio.c.h 170;" d +_IO_STRINGIO_TELL_METHODDEF Modules/_io/clinic/stringio.c.h 35;" d +_IO_STRINGIO_TRUNCATE_METHODDEF Modules/_io/clinic/stringio.c.h 130;" d +_IO_STRINGIO_WRITABLE_METHODDEF Modules/_io/clinic/stringio.c.h 341;" d +_IO_STRINGIO_WRITE_METHODDEF Modules/_io/clinic/stringio.c.h 221;" d +_IO_TEXTIOWRAPPER_CLOSE_METHODDEF Modules/_io/clinic/textio.c.h 974;" d +_IO_TEXTIOWRAPPER_DETACH_METHODDEF Modules/_io/clinic/textio.c.h 643;" d +_IO_TEXTIOWRAPPER_FILENO_METHODDEF Modules/_io/clinic/textio.c.h 872;" d +_IO_TEXTIOWRAPPER_FLUSH_METHODDEF Modules/_io/clinic/textio.c.h 957;" d +_IO_TEXTIOWRAPPER_ISATTY_METHODDEF Modules/_io/clinic/textio.c.h 940;" d +_IO_TEXTIOWRAPPER_READABLE_METHODDEF Modules/_io/clinic/textio.c.h 906;" d +_IO_TEXTIOWRAPPER_READLINE_METHODDEF Modules/_io/clinic/textio.c.h 724;" d +_IO_TEXTIOWRAPPER_READ_METHODDEF Modules/_io/clinic/textio.c.h 691;" d +_IO_TEXTIOWRAPPER_RECONFIGURE_METHODDEF Modules/_io/clinic/textio.c.h 553;" d +_IO_TEXTIOWRAPPER_SEEKABLE_METHODDEF Modules/_io/clinic/textio.c.h 889;" d +_IO_TEXTIOWRAPPER_SEEK_METHODDEF Modules/_io/clinic/textio.c.h 784;" d +_IO_TEXTIOWRAPPER_TELL_METHODDEF Modules/_io/clinic/textio.c.h 824;" d +_IO_TEXTIOWRAPPER_TRUNCATE_METHODDEF Modules/_io/clinic/textio.c.h 841;" d +_IO_TEXTIOWRAPPER_WRITABLE_METHODDEF Modules/_io/clinic/textio.c.h 923;" d +_IO_TEXTIOWRAPPER_WRITE_METHODDEF Modules/_io/clinic/textio.c.h 660;" d +_IO_TEXT_ENCODING_METHODDEF Modules/_io/clinic/_iomodule.c.h 315;" d +_IO__BUFFEREDIOBASE_DETACH_METHODDEF Modules/_io/clinic/bufferedio.c.h 94;" d +_IO__BUFFEREDIOBASE_READ1_METHODDEF Modules/_io/clinic/bufferedio.c.h 185;" d +_IO__BUFFEREDIOBASE_READINTO1_METHODDEF Modules/_io/clinic/bufferedio.c.h 53;" d +_IO__BUFFEREDIOBASE_READINTO_METHODDEF Modules/_io/clinic/bufferedio.c.h 16;" d +_IO__BUFFEREDIOBASE_READ_METHODDEF Modules/_io/clinic/bufferedio.c.h 131;" d +_IO__BUFFEREDIOBASE_WRITE_METHODDEF Modules/_io/clinic/bufferedio.c.h 242;" d +_IO__BUFFERED_CLOSE_METHODDEF Modules/_io/clinic/bufferedio.c.h 327;" d +_IO__BUFFERED_DETACH_METHODDEF Modules/_io/clinic/bufferedio.c.h 344;" d +_IO__BUFFERED_FILENO_METHODDEF Modules/_io/clinic/bufferedio.c.h 412;" d +_IO__BUFFERED_FLUSH_METHODDEF Modules/_io/clinic/bufferedio.c.h 446;" d +_IO__BUFFERED_ISATTY_METHODDEF Modules/_io/clinic/bufferedio.c.h 429;" d +_IO__BUFFERED_PEEK_METHODDEF Modules/_io/clinic/bufferedio.c.h 463;" d +_IO__BUFFERED_READ1_METHODDEF Modules/_io/clinic/bufferedio.c.h 538;" d +_IO__BUFFERED_READABLE_METHODDEF Modules/_io/clinic/bufferedio.c.h 378;" d +_IO__BUFFERED_READINTO1_METHODDEF Modules/_io/clinic/bufferedio.c.h 617;" d +_IO__BUFFERED_READINTO_METHODDEF Modules/_io/clinic/bufferedio.c.h 580;" d +_IO__BUFFERED_READLINE_METHODDEF Modules/_io/clinic/bufferedio.c.h 654;" d +_IO__BUFFERED_READ_METHODDEF Modules/_io/clinic/bufferedio.c.h 505;" d +_IO__BUFFERED_SEEKABLE_METHODDEF Modules/_io/clinic/bufferedio.c.h 361;" d +_IO__BUFFERED_SEEK_METHODDEF Modules/_io/clinic/bufferedio.c.h 704;" d +_IO__BUFFERED_SIMPLE_FLUSH_METHODDEF Modules/_io/clinic/bufferedio.c.h 310;" d +_IO__BUFFERED_TELL_METHODDEF Modules/_io/clinic/bufferedio.c.h 687;" d +_IO__BUFFERED_TRUNCATE_METHODDEF Modules/_io/clinic/bufferedio.c.h 740;" d +_IO__BUFFERED_WRITABLE_METHODDEF Modules/_io/clinic/bufferedio.c.h 395;" d +_IO__BUFFERED__DEALLOC_WARN_METHODDEF Modules/_io/clinic/bufferedio.c.h 302;" d +_IO__BUFFERED___SIZEOF___METHODDEF Modules/_io/clinic/bufferedio.c.h 285;" d +_IO__IOBASE_CLOSE_METHODDEF Modules/_io/clinic/iobase.c.h 178;" d +_IO__IOBASE_FILENO_METHODDEF Modules/_io/clinic/iobase.c.h 259;" d +_IO__IOBASE_FLUSH_METHODDEF Modules/_io/clinic/iobase.c.h 158;" d +_IO__IOBASE_ISATTY_METHODDEF Modules/_io/clinic/iobase.c.h 283;" d +_IO__IOBASE_READABLE_METHODDEF Modules/_io/clinic/iobase.c.h 219;" d +_IO__IOBASE_READLINES_METHODDEF Modules/_io/clinic/iobase.c.h 345;" d +_IO__IOBASE_READLINE_METHODDEF Modules/_io/clinic/iobase.c.h 307;" d +_IO__IOBASE_SEEKABLE_METHODDEF Modules/_io/clinic/iobase.c.h 199;" d +_IO__IOBASE_SEEK_METHODDEF Modules/_io/clinic/iobase.c.h 31;" d +_IO__IOBASE_TELL_METHODDEF Modules/_io/clinic/iobase.c.h 87;" d +_IO__IOBASE_TRUNCATE_METHODDEF Modules/_io/clinic/iobase.c.h 108;" d +_IO__IOBASE_WRITABLE_METHODDEF Modules/_io/clinic/iobase.c.h 239;" d +_IO__IOBASE_WRITELINES_METHODDEF Modules/_io/clinic/iobase.c.h 382;" d +_IO__RAWIOBASE_READALL_METHODDEF Modules/_io/clinic/iobase.c.h 433;" d +_IO__RAWIOBASE_READ_METHODDEF Modules/_io/clinic/iobase.c.h 390;" d +_IO__TEXTIOBASE_DETACH_METHODDEF Modules/_io/clinic/textio.c.h 19;" d +_IO__TEXTIOBASE_READLINE_METHODDEF Modules/_io/clinic/textio.c.h 98;" d +_IO__TEXTIOBASE_READ_METHODDEF Modules/_io/clinic/textio.c.h 44;" d +_IO__TEXTIOBASE_WRITE_METHODDEF Modules/_io/clinic/textio.c.h 152;" d +_IO__WINDOWSCONSOLEIO_CLOSE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 22;" d +_IO__WINDOWSCONSOLEIO_CLOSE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 434;" d +_IO__WINDOWSCONSOLEIO_FILENO_METHODDEF Modules/_io/clinic/winconsoleio.c.h 148;" d +_IO__WINDOWSCONSOLEIO_FILENO_METHODDEF Modules/_io/clinic/winconsoleio.c.h 438;" d +_IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF Modules/_io/clinic/winconsoleio.c.h 419;" d +_IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF Modules/_io/clinic/winconsoleio.c.h 466;" d +_IO__WINDOWSCONSOLEIO_READABLE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 170;" d +_IO__WINDOWSCONSOLEIO_READABLE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 442;" d +_IO__WINDOWSCONSOLEIO_READALL_METHODDEF Modules/_io/clinic/winconsoleio.c.h 277;" d +_IO__WINDOWSCONSOLEIO_READALL_METHODDEF Modules/_io/clinic/winconsoleio.c.h 454;" d +_IO__WINDOWSCONSOLEIO_READINTO_METHODDEF Modules/_io/clinic/winconsoleio.c.h 214;" d +_IO__WINDOWSCONSOLEIO_READINTO_METHODDEF Modules/_io/clinic/winconsoleio.c.h 450;" d +_IO__WINDOWSCONSOLEIO_READ_METHODDEF Modules/_io/clinic/winconsoleio.c.h 303;" d +_IO__WINDOWSCONSOLEIO_READ_METHODDEF Modules/_io/clinic/winconsoleio.c.h 458;" d +_IO__WINDOWSCONSOLEIO_WRITABLE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 192;" d +_IO__WINDOWSCONSOLEIO_WRITABLE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 446;" d +_IO__WINDOWSCONSOLEIO_WRITE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 360;" d +_IO__WINDOWSCONSOLEIO_WRITE_METHODDEF Modules/_io/clinic/winconsoleio.c.h 462;" d +_IPAddressBase Lib/ipaddress.py /^class _IPAddressBase:$/;" c +_IPv4Constants Lib/ipaddress.py /^class _IPv4Constants:$/;" c +_IPv6Constants Lib/ipaddress.py /^class _IPv6Constants:$/;" c +_IS_ASCII_ID_CHAR Lib/idlelib/hyperparser.py /^_IS_ASCII_ID_CHAR = [(chr(x) in _ASCII_ID_CHARS) for x in range(128)]$/;" v +_IS_ASCII_ID_FIRST_CHAR Lib/idlelib/hyperparser.py /^ [(chr(x) in _ASCII_ID_FIRST_CHARS) for x in range(128)]$/;" v +_IS_BLANK_OR_COMMENT Lib/doctest.py /^ _IS_BLANK_OR_COMMENT = re.compile(r'^[ ]*(#.*)?$').match$/;" v class:DocTestParser +_IdentityCallable Lib/typing.py /^class _IdentityCallable(Protocol):$/;" c +_Ignore Lib/trace.py /^class _Ignore:$/;" c +_ImportLockContext Lib/importlib/_bootstrap.py /^class _ImportLockContext:$/;" c +_ImporterMock Lib/test/test_importlib/util.py /^class _ImporterMock:$/;" c +_Infinity Lib/_pydecimal.py /^_Infinity = Decimal('Inf')$/;" v +_Info Lib/weakref.py /^ class _Info:$/;" c class:finalize +_Instruction Lib/dis.py /^_Instruction = collections.namedtuple($/;" v +_IntTupleFromSsizet Objects/memoryobject.c /^_IntTupleFromSsizet(int len, Py_ssize_t *vals)$/;" f file: +_InternalNameMapperState Modules/_hashopenssl.c /^} _InternalNameMapperState;$/;" t typeref:struct:_internal_name_mapper_state file: +_InterruptHandler Lib/unittest/signals.py /^class _InterruptHandler(object):$/;" c +_InvalidEwError Lib/email/_header_value_parser.py /^class _InvalidEwError(errors.HeaderParseError):$/;" c +_IsCContiguous Objects/abstract.c /^_IsCContiguous(const Py_buffer *view)$/;" f file: +_IsExpandable Lib/idlelib/tree.py /^ def _IsExpandable(self):$/;" m class:TreeItem +_IsFortranContiguous Objects/abstract.c /^_IsFortranContiguous(const Py_buffer *view)$/;" f file: +_IsoCalendarDate Lib/_pydatetime.py /^_IsoCalendarDate = IsoCalendarDate$/;" v +_IterationGuard Lib/_weakrefset.py /^class _IterationGuard:$/;" c +_KEEP Lib/tarfile.py /^_KEEP = object()$/;" v +_KEYCRE Lib/configparser.py /^ _KEYCRE = re.compile(r"%\\(([^)]*)\\)s|.")$/;" v class:LegacyInterpolation +_KEYCRE Lib/configparser.py /^ _KEYCRE = re.compile(r"%\\(([^)]+)\\)s")$/;" v class:BasicInterpolation +_KEYCRE Lib/configparser.py /^ _KEYCRE = re.compile(r"\\$\\{([^}]+)\\}")$/;" v class:ExtendedInterpolation +_KEYWORD Tools/c-analyzer/c_parser/parser/_regexes.py /^_KEYWORD = ''.join(_KEYWORD.split())$/;" v +_KEYWORD_ONLY Lib/inspect.py /^_KEYWORD_ONLY = _ParameterKind.KEYWORD_ONLY$/;" v +_KIND Tools/c-analyzer/c_analyzer/match.py /^_KIND = _info.KIND$/;" v +_KIND Tools/c-analyzer/c_parser/match.py /^_KIND = _info.KIND$/;" v +_KNOWN Tools/c-analyzer/cpython/_analyzer.py /^_KNOWN = {$/;" v +_KRML_CHECK_SIZE_PRAGMA Modules/_hacl/include/krml/internal/target.h 64;" d +_KRML_CHECK_SIZE_PRAGMA Modules/_hacl/include/krml/internal/target.h 67;" d +_KWLIST_VARIANTS Tools/c-analyzer/cpython/_analyzer.py /^_KWLIST_VARIANTS = [$/;" v +_KW_ONLY_TYPE Lib/dataclasses.py /^class _KW_ONLY_TYPE:$/;" c +_LANGUAGE Lib/turtle.py /^_LANGUAGE = _CFG["language"]$/;" v +_LARGEST Lib/test/support/__init__.py /^class _LARGEST:$/;" c +_LEGACY_LENGTHS Lib/multiprocessing/connection.py /^_LEGACY_LENGTHS = (_MD5ONLY_MESSAGE_LENGTH, _MD5_DIGEST_LEN)$/;" v +_LF Lib/_pyio.py /^ _LF = 1$/;" v class:IncrementalNewlineDecoder +_LIBFFI_OUT PCbuild/prepare_libffi.bat /^set _LIBFFI_OUT=%LIBFFI_OUT%\\%ARCH%$/;" v +_LITERAL_CODES Lib/re/_compiler.py /^_LITERAL_CODES = {LITERAL, NOT_LITERAL}$/;" v +_LOCALE_BINDTEXTDOMAIN_METHODDEF Modules/clinic/_localemodule.c.h 451;" d +_LOCALE_BINDTEXTDOMAIN_METHODDEF Modules/clinic/_localemodule.c.h 605;" d +_LOCALE_BIND_TEXTDOMAIN_CODESET_METHODDEF Modules/clinic/_localemodule.c.h 498;" d +_LOCALE_BIND_TEXTDOMAIN_CODESET_METHODDEF Modules/clinic/_localemodule.c.h 609;" d +_LOCALE_DCGETTEXT_METHODDEF Modules/clinic/_localemodule.c.h 336;" d +_LOCALE_DCGETTEXT_METHODDEF Modules/clinic/_localemodule.c.h 597;" d +_LOCALE_DGETTEXT_METHODDEF Modules/clinic/_localemodule.c.h 273;" d +_LOCALE_DGETTEXT_METHODDEF Modules/clinic/_localemodule.c.h 593;" d +_LOCALE_GETENCODING_METHODDEF Modules/clinic/_localemodule.c.h 560;" d +_LOCALE_GETTEXT_METHODDEF Modules/clinic/_localemodule.c.h 230;" d +_LOCALE_GETTEXT_METHODDEF Modules/clinic/_localemodule.c.h 589;" d +_LOCALE_LOCALECONV_METHODDEF Modules/clinic/_localemodule.c.h 71;" d +_LOCALE_NL_LANGINFO_METHODDEF Modules/clinic/_localemodule.c.h 196;" d +_LOCALE_NL_LANGINFO_METHODDEF Modules/clinic/_localemodule.c.h 585;" d +_LOCALE_SETLOCALE_METHODDEF Modules/clinic/_localemodule.c.h 17;" d +_LOCALE_STRCOLL_METHODDEF Modules/clinic/_localemodule.c.h 573;" d +_LOCALE_STRCOLL_METHODDEF Modules/clinic/_localemodule.c.h 91;" d +_LOCALE_STRXFRM_METHODDEF Modules/clinic/_localemodule.c.h 139;" d +_LOCALE_STRXFRM_METHODDEF Modules/clinic/_localemodule.c.h 577;" d +_LOCALE_TEXTDOMAIN_METHODDEF Modules/clinic/_localemodule.c.h 405;" d +_LOCALE_TEXTDOMAIN_METHODDEF Modules/clinic/_localemodule.c.h 601;" d +_LOCALE__GETDEFAULTLOCALE_METHODDEF Modules/clinic/_localemodule.c.h 174;" d +_LOCALE__GETDEFAULTLOCALE_METHODDEF Modules/clinic/_localemodule.c.h 581;" d +_LOCALHOST Lib/socket.py /^_LOCALHOST = '127.0.0.1'$/;" v +_LOCALHOST_V6 Lib/socket.py /^_LOCALHOST_V6 = '::1'$/;" v +_LONGRESP Lib/nntplib.py /^_LONGRESP = {$/;" v +_LSPROF_PROFILER_GETSTATS_METHODDEF Modules/clinic/_lsprof.c.h 39;" d +_LZMA_IS_CHECK_SUPPORTED_METHODDEF Modules/clinic/_lzmamodule.c.h 274;" d +_LZMA_LZMACOMPRESSOR_COMPRESS_METHODDEF Modules/clinic/_lzmamodule.c.h 22;" d +_LZMA_LZMACOMPRESSOR_FLUSH_METHODDEF Modules/clinic/_lzmamodule.c.h 62;" d +_LZMA_LZMADECOMPRESSOR_DECOMPRESS_METHODDEF Modules/clinic/_lzmamodule.c.h 93;" d +_LZMA_SUPPORTED Lib/shutil.py /^ _LZMA_SUPPORTED = False$/;" v +_LZMA_SUPPORTED Lib/shutil.py /^ _LZMA_SUPPORTED = True$/;" v +_LZMA__DECODE_FILTER_PROPERTIES_METHODDEF Modules/clinic/_lzmamodule.c.h 304;" d +_LZMA__ENCODE_FILTER_PROPERTIES_METHODDEF Modules/_lzmamodule.c 1407;" d file: +_LazyModule Lib/importlib/util.py /^class _LazyModule(types.ModuleType):$/;" c +_LegalChars Lib/http/cookies.py /^_LegalChars = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~:"$/;" v +_LegalKeyChars Lib/http/cookies.py /^_LegalKeyChars = r"\\w\\d!#%&'~_`><@,:\/\\$\\*\\+\\-\\.\\^\\|\\)\\(\\?\\}\\{\\="$/;" v +_LegalValueChars Lib/http/cookies.py /^_LegalValueChars = _LegalKeyChars + r'\\[\\]'$/;" v +_Link Lib/collections/__init__.py /^class _Link(object):$/;" c +_List Lib/importlib/_bootstrap.py /^class _List(list):$/;" c +_ListDataStream Lib/xml/etree/ElementTree.py /^class _ListDataStream(io.BufferedIOBase):$/;" c +_Literal Lib/imaplib.py /^_Literal = br'.*{(?P\\d+)}$'$/;" v +_LiteralGenericAlias Lib/typing.py /^class _LiteralGenericAlias(_GenericAlias, _root=True):$/;" c +_LiteralSpecialForm Lib/typing.py /^class _LiteralSpecialForm(_SpecialForm, _root=True):$/;" c +_LoaderBasics Lib/importlib/_bootstrap_external.py /^class _LoaderBasics:$/;" c +_Local Lib/asyncio/events.py /^ class _Local(threading.local):$/;" c class:BaseDefaultEventLoopPolicy +_LocaleCoercionTarget Python/pylifecycle.c /^} _LocaleCoercionTarget;$/;" t typeref:struct:_CandidateLocale file: +_LocaleHandlingTestCase Lib/test/test_c_locale_coercion.py /^class _LocaleHandlingTestCase(unittest.TestCase):$/;" c +_LocaleTests Lib/test/test__locale.py /^class _LocaleTests(unittest.TestCase):$/;" c +_Log10Memoize Lib/_pydecimal.py /^class _Log10Memoize(object):$/;" c +_LoggingWatcher Lib/unittest/_log.py /^_LoggingWatcher = collections.namedtuple("_LoggingWatcher",$/;" v +_LoopBoundMixin Lib/asyncio/mixins.py /^class _LoopBoundMixin:$/;" c +_LowLevelFile Lib/tarfile.py /^class _LowLevelFile:$/;" c +_MAC_DELIM Lib/uuid.py /^ _MAC_DELIM = b'.'$/;" v +_MAC_DELIM Lib/uuid.py /^_MAC_DELIM = b':'$/;" v +_MAC_OMITS_LEADING_ZEROES Lib/uuid.py /^ _MAC_OMITS_LEADING_ZEROES = True$/;" v +_MAC_OMITS_LEADING_ZEROES Lib/uuid.py /^_MAC_OMITS_LEADING_ZEROES = False$/;" v +_MARKERS Tools/c-analyzer/cpython/_capi.py /^_MARKERS = {$/;" v +_MASK_COMPRESSED_PATCH Lib/zipfile/__init__.py /^_MASK_COMPRESSED_PATCH = 1 << 5$/;" v +_MASK_COMPRESS_OPTION_1 Lib/zipfile/__init__.py /^_MASK_COMPRESS_OPTION_1 = 1 << 1$/;" v +_MASK_ENCRYPTED Lib/zipfile/__init__.py /^_MASK_ENCRYPTED = 1 << 0$/;" v +_MASK_STRONG_ENCRYPTION Lib/zipfile/__init__.py /^_MASK_STRONG_ENCRYPTION = 1 << 6$/;" v +_MASK_USE_DATA_DESCRIPTOR Lib/zipfile/__init__.py /^_MASK_USE_DATA_DESCRIPTOR = 1 << 3$/;" v +_MASK_UTF_FILENAME Lib/zipfile/__init__.py /^_MASK_UTF_FILENAME = 1 << 11$/;" v +_MATCH_PATTERNS Lib/test/test_ast.py /^ _MATCH_PATTERNS = [$/;" v class:ASTValidatorTests +_MAXCACHE Lib/re/__init__.py /^_MAXCACHE = 512$/;" v +_MAXCACHE2 Lib/re/__init__.py /^_MAXCACHE2 = 256$/;" v +_MAXCHALLENGE Lib/smtplib.py /^_MAXCHALLENGE = 5 # Maximum number of AUTH challenges sent$/;" v +_MAXFD Lib/test/subprocessdata/fd_status.py /^ _MAXFD = 256$/;" v +_MAXFD Lib/test/subprocessdata/fd_status.py /^ _MAXFD = os.sysconf("SC_OPEN_MAX")$/;" v +_MAXHEADERS Lib/http/client.py /^_MAXHEADERS = 100$/;" v +_MAXLINE Lib/http/client.py /^_MAXLINE = 65536$/;" v +_MAXLINE Lib/imaplib.py /^_MAXLINE = 1000000$/;" v +_MAXLINE Lib/nntplib.py /^_MAXLINE = 2048$/;" v +_MAXLINE Lib/poplib.py /^_MAXLINE = 2048$/;" v +_MAXLINE Lib/smtplib.py /^_MAXLINE = 8192 # more than 8 times larger than RFC 821, 4.5.3$/;" v +_MAXORDINAL Lib/_pydatetime.py /^_MAXORDINAL = 3652059 # date.max.toordinal()$/;" v +_MAX_CANDIDATE_ITEMS Lib/traceback.py /^_MAX_CANDIDATE_ITEMS = 750$/;" v +_MAX_COLS Lib/idlelib/calltip.py /^_MAX_COLS = 85$/;" v +_MAX_DIGEST_LEN Lib/multiprocessing/connection.py /^_MAX_DIGEST_LEN = max(len(_) for _ in _ALLOWED_DIGESTS)$/;" v +_MAX_LENGTH Lib/unittest/util.py /^_MAX_LENGTH = 80$/;" v +_MAX_LINES Lib/idlelib/calltip.py /^_MAX_LINES = 5 # enough for bytes$/;" v +_MAX_STRING_SIZE Lib/traceback.py /^_MAX_STRING_SIZE = 40$/;" v +_MAX_STR_DIGITS_ERROR_FMT_TO_INT Objects/longobject.c 29;" d file: +_MAX_STR_DIGITS_ERROR_FMT_TO_STR Objects/longobject.c 30;" d file: +_MAX_WINDOWS_WORKERS Lib/concurrent/futures/process.py /^_MAX_WINDOWS_WORKERS = 63 - 2$/;" v +_MD5ONLY_MESSAGE_LENGTH Lib/multiprocessing/connection.py /^_MD5ONLY_MESSAGE_LENGTH = 20$/;" v +_MD5_DIGEST_LEN Lib/multiprocessing/connection.py /^_MD5_DIGEST_LEN = 16$/;" v +_MD5_MD5_METHODDEF Modules/clinic/md5module.c.h 84;" d +_METHODS_EXPECTING_BODY Lib/http/client.py /^_METHODS_EXPECTING_BODY = {'PATCH', 'POST', 'PUT'}$/;" v +_MIDNIGHT Lib/logging/handlers.py /^_MIDNIGHT = 24 * 60 * 60 # number of seconds in a day$/;" v +_MIME_Version_adding_CM Lib/test/test_email/test_message.py /^ class _MIME_Version_adding_CM:$/;" c class:TestEmailMessage +_MIN_BEGIN_LEN Lib/unittest/util.py /^_MIN_BEGIN_LEN = 5$/;" v +_MIN_CANCELLED_TIMER_HANDLES_FRACTION Lib/asyncio/base_events.py /^_MIN_CANCELLED_TIMER_HANDLES_FRACTION = 0.5$/;" v +_MIN_COMMON_LEN Lib/unittest/util.py /^_MIN_COMMON_LEN = 5$/;" v +_MIN_DIFF_LEN Lib/unittest/util.py /^ (_MIN_BEGIN_LEN + _PLACEHOLDER_LEN + _MIN_COMMON_LEN +$/;" v +_MIN_END_LEN Lib/unittest/util.py /^_MIN_END_LEN = 5$/;" v +_MIN_SCHEDULED_TIMER_HANDLES Lib/asyncio/base_events.py /^_MIN_SCHEDULED_TIMER_HANDLES = 100$/;" v +_MISSING Tools/wasm/wasm_build.py /^_MISSING = pathlib.PurePath("MISSING")$/;" v +_MISSING_TYPE Lib/dataclasses.py /^class _MISSING_TYPE:$/;" c +_MODE_CLOSED Lib/bz2.py /^_MODE_CLOSED = 0$/;" v +_MODE_CLOSED Lib/lzma.py /^_MODE_CLOSED = 0$/;" v +_MODE_READ Lib/bz2.py /^_MODE_READ = 1$/;" v +_MODE_READ Lib/lzma.py /^_MODE_READ = 1$/;" v +_MODE_WRITE Lib/bz2.py /^_MODE_WRITE = 3$/;" v +_MODE_WRITE Lib/lzma.py /^_MODE_WRITE = 3$/;" v +_MODULE_IDENTIFIER_RE Lib/dataclasses.py /^_MODULE_IDENTIFIER_RE = re.compile(r'^(?:\\s*(\\w+)\\s*\\.)?\\s*(\\w+)')$/;" v +_MONTHNAMES Lib/_pydatetime.py /^_MONTHNAMES = [None, "Jan", "Feb", "Mar", "Apr", "May", "Jun",$/;" v +_MOVE_COST Lib/traceback.py /^_MOVE_COST = 2$/;" v +_MOVE_COST Tools/build/generate_levenshtein_examples.py /^_MOVE_COST = 2$/;" v +_MSI_CREATERECORD_METHODDEF PC/clinic/_msi.c.h 677;" d +_MSI_DATABASE_CLOSE_METHODDEF PC/clinic/_msi.c.h 83;" d +_MSI_DATABASE_COMMIT_METHODDEF PC/clinic/_msi.c.h 577;" d +_MSI_DATABASE_GETSUMMARYINFORMATION_METHODDEF PC/clinic/_msi.c.h 598;" d +_MSI_DATABASE_OPENVIEW_METHODDEF PC/clinic/_msi.c.h 542;" d +_MSI_FCICREATE_METHODDEF PC/clinic/_msi.c.h 41;" d +_MSI_OPENDATABASE_METHODDEF PC/clinic/_msi.c.h 631;" d +_MSI_RECORD_CLEARDATA_METHODDEF PC/clinic/_msi.c.h 175;" d +_MSI_RECORD_GETFIELDCOUNT_METHODDEF PC/clinic/_msi.c.h 101;" d +_MSI_RECORD_GETINTEGER_METHODDEF PC/clinic/_msi.c.h 119;" d +_MSI_RECORD_GETSTRING_METHODDEF PC/clinic/_msi.c.h 147;" d +_MSI_RECORD_SETINTEGER_METHODDEF PC/clinic/_msi.c.h 279;" d +_MSI_RECORD_SETSTREAM_METHODDEF PC/clinic/_msi.c.h 236;" d +_MSI_RECORD_SETSTRING_METHODDEF PC/clinic/_msi.c.h 193;" d +_MSI_SUMMARYINFORMATION_GETPROPERTYCOUNT_METHODDEF PC/clinic/_msi.c.h 346;" d +_MSI_SUMMARYINFORMATION_GETPROPERTY_METHODDEF PC/clinic/_msi.c.h 318;" d +_MSI_SUMMARYINFORMATION_PERSIST_METHODDEF PC/clinic/_msi.c.h 403;" d +_MSI_SUMMARYINFORMATION_SETPROPERTY_METHODDEF PC/clinic/_msi.c.h 369;" d +_MSI_UUIDCREATE_METHODDEF PC/clinic/_msi.c.h 17;" d +_MSI_VIEW_CLOSE_METHODDEF PC/clinic/_msi.c.h 521;" d +_MSI_VIEW_EXECUTE_METHODDEF PC/clinic/_msi.c.h 425;" d +_MSI_VIEW_FETCH_METHODDEF PC/clinic/_msi.c.h 434;" d +_MSI_VIEW_GETCOLUMNINFO_METHODDEF PC/clinic/_msi.c.h 455;" d +_MSI_VIEW_MODIFY_METHODDEF PC/clinic/_msi.c.h 488;" d +_MS_WINDOWS Lib/importlib/_bootstrap_external.py /^_MS_WINDOWS = (sys.platform == 'win32')$/;" v +_MULTIBYTECODEC_MULTIBYTECODEC_DECODE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 108;" d +_MULTIBYTECODEC_MULTIBYTECODEC_ENCODE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 22;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALDECODER_DECODE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 328;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALDECODER_GETSTATE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 405;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALDECODER_RESET_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 451;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALDECODER_SETSTATE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 422;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALENCODER_ENCODE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 199;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALENCODER_GETSTATE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 265;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALENCODER_RESET_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 311;" d +_MULTIBYTECODEC_MULTIBYTEINCREMENTALENCODER_SETSTATE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 282;" d +_MULTIBYTECODEC_MULTIBYTESTREAMREADER_READLINES_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 532;" d +_MULTIBYTECODEC_MULTIBYTESTREAMREADER_READLINE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 500;" d +_MULTIBYTECODEC_MULTIBYTESTREAMREADER_READ_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 468;" d +_MULTIBYTECODEC_MULTIBYTESTREAMREADER_RESET_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 564;" d +_MULTIBYTECODEC_MULTIBYTESTREAMWRITER_RESET_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 669;" d +_MULTIBYTECODEC_MULTIBYTESTREAMWRITER_WRITELINES_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 625;" d +_MULTIBYTECODEC_MULTIBYTESTREAMWRITER_WRITE_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 581;" d +_MULTIBYTECODEC___CREATE_CODEC_METHODDEF Modules/cjkcodecs/clinic/multibytecodec.c.h 691;" d +_MULTIPROCESSING_CLOSESOCKET_METHODDEF Modules/_multiprocessing/clinic/multiprocessing.c.h 165;" d +_MULTIPROCESSING_CLOSESOCKET_METHODDEF Modules/_multiprocessing/clinic/multiprocessing.c.h 18;" d +_MULTIPROCESSING_RECV_METHODDEF Modules/_multiprocessing/clinic/multiprocessing.c.h 169;" d +_MULTIPROCESSING_RECV_METHODDEF Modules/_multiprocessing/clinic/multiprocessing.c.h 49;" d +_MULTIPROCESSING_SEMLOCK_ACQUIRE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 116;" d +_MULTIPROCESSING_SEMLOCK_ACQUIRE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 19;" d +_MULTIPROCESSING_SEMLOCK_ACQUIRE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 507;" d +_MULTIPROCESSING_SEMLOCK_RELEASE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 191;" d +_MULTIPROCESSING_SEMLOCK_RELEASE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 511;" d +_MULTIPROCESSING_SEMLOCK_RELEASE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 94;" d +_MULTIPROCESSING_SEMLOCK__AFTER_FORK_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 422;" d +_MULTIPROCESSING_SEMLOCK__AFTER_FORK_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 535;" d +_MULTIPROCESSING_SEMLOCK__COUNT_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 334;" d +_MULTIPROCESSING_SEMLOCK__COUNT_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 519;" d +_MULTIPROCESSING_SEMLOCK__GET_VALUE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 378;" d +_MULTIPROCESSING_SEMLOCK__GET_VALUE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 527;" d +_MULTIPROCESSING_SEMLOCK__IS_MINE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 356;" d +_MULTIPROCESSING_SEMLOCK__IS_MINE_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 523;" d +_MULTIPROCESSING_SEMLOCK__IS_ZERO_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 400;" d +_MULTIPROCESSING_SEMLOCK__IS_ZERO_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 531;" d +_MULTIPROCESSING_SEMLOCK__REBUILD_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 297;" d +_MULTIPROCESSING_SEMLOCK__REBUILD_METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 515;" d +_MULTIPROCESSING_SEMLOCK___ENTER___METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 444;" d +_MULTIPROCESSING_SEMLOCK___ENTER___METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 539;" d +_MULTIPROCESSING_SEMLOCK___EXIT___METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 466;" d +_MULTIPROCESSING_SEMLOCK___EXIT___METHODDEF Modules/_multiprocessing/clinic/semaphore.c.h 543;" d +_MULTIPROCESSING_SEM_UNLINK_METHODDEF Modules/_multiprocessing/clinic/multiprocessing.c.h 133;" d +_MULTIPROCESSING_SEND_METHODDEF Modules/_multiprocessing/clinic/multiprocessing.c.h 173;" d +_MULTIPROCESSING_SEND_METHODDEF Modules/_multiprocessing/clinic/multiprocessing.c.h 88;" d +_MULTI_QUOTES Lib/ast.py /^_MULTI_QUOTES = ('"""', "'''")$/;" v +_MainProcess Lib/multiprocessing/process.py /^class _MainProcess(BaseProcess):$/;" c +_MainThread Lib/threading.py /^class _MainThread(Thread):$/;" c +_MemoryWatchdog Lib/test/support/__init__.py /^class _MemoryWatchdog:$/;" c +_Method Lib/crypt.py /^class _Method(_namedtuple('_Method', 'name ident salt_chars total_size')):$/;" c +_Method Lib/xmlrpc/client.py /^class _Method:$/;" c +_MinimalOutputTests Lib/test/test_enum.py /^class _MinimalOutputTests:$/;" c +_Mismatch Lib/unittest/util.py /^_Mismatch = namedtuple('Mismatch', 'actual expected value')$/;" v +_MixedOutputTests Lib/test/test_enum.py /^class _MixedOutputTests:$/;" c +_MockIter Lib/unittest/mock.py /^class _MockIter(object):$/;" c +_ModifiedArgv0 Lib/runpy.py /^class _ModifiedArgv0(object):$/;" c +_ModuleBrowser Lib/pyclbr.py /^class _ModuleBrowser(ast.NodeVisitor):$/;" c +_ModuleLock Lib/importlib/_bootstrap.py /^class _ModuleLock:$/;" c +_ModuleLockManager Lib/importlib/_bootstrap.py /^class _ModuleLockManager:$/;" c +_ModuleTarget Lib/pdb.py /^class _ModuleTarget(str):$/;" c +_MultiCallMethod Lib/xmlrpc/client.py /^class _MultiCallMethod:$/;" c +_MultibyteStatefulCodec_HEAD Modules/cjkcodecs/multibytecodec.h 75;" d +_MultibyteStatefulDecoder_HEAD Modules/cjkcodecs/multibytecodec.h 93;" d +_MultibyteStatefulEncoder_HEAD Modules/cjkcodecs/multibytecodec.h 85;" d +_MutuallyExclusiveGroup Lib/argparse.py /^class _MutuallyExclusiveGroup(_ArgumentGroup):$/;" c +_NAMED_FILTERS Lib/tarfile.py /^_NAMED_FILTERS = {$/;" v +_NAME_PATTERN Lib/pkgutil.py /^_NAME_PATTERN = None$/;" v +_NCURSES_EXTENDED_COLOR_FUNCS Modules/_cursesmodule.c 143;" d file: +_NCURSES_EXTENDED_COLOR_FUNCS Modules/_cursesmodule.c 145;" d file: +_NEEDS_LOADING Lib/importlib/_bootstrap.py /^_NEEDS_LOADING = object()$/;" v +_NEVER_EQ Lib/test/support/__init__.py /^class _NEVER_EQ:$/;" c +_NNTPServerIO Lib/test/test_nntplib.py /^class _NNTPServerIO(io.RawIOBase):$/;" c +_NODE_DONE Lib/graphlib.py /^_NODE_DONE = -2$/;" v +_NODE_OUT Lib/graphlib.py /^_NODE_OUT = -1$/;" v +_NOT_FOUND Lib/functools.py /^_NOT_FOUND = object()$/;" v +_NOT_SET Lib/test/support/interpreters.py /^_NOT_SET = object()$/;" v +_NOT_SET Lib/test/support/socket_helper.py /^_NOT_SET = object()$/;" v +_NOT_SET Tools/c-analyzer/c_common/clsutil.py /^_NOT_SET = object()$/;" v +_NOT_SET Tools/c-analyzer/c_common/scriptutil.py /^_NOT_SET = object()$/;" v +_NO_TESTS_EXITCODE Lib/unittest/main.py /^_NO_TESTS_EXITCODE = 5$/;" v +_NO_TTINFO Lib/zoneinfo/_zoneinfo.py /^_NO_TTINFO = _ttinfo(None, None, None)$/;" v +_NRMUTEX Python/thread_nt.h /^typedef struct _NRMUTEX$/;" s +_NaN Lib/_pydecimal.py /^_NaN = Decimal('NaN')$/;" v +_NamedIntConstant Lib/re/_constants.py /^class _NamedIntConstant(int):$/;" c +_NamedTuple Lib/typing.py /^_NamedTuple = type.__new__(NamedTupleMeta, 'NamedTuple', (), {})$/;" v +_NamespaceLoader Lib/importlib/_bootstrap_external.py /^_NamespaceLoader = NamespaceLoader$/;" v +_NamespacePath Lib/importlib/_bootstrap_external.py /^class _NamespacePath:$/;" c +_NegativeInfinity Lib/_pydecimal.py /^_NegativeInfinity = Decimal('-Inf')$/;" v +_NegativeOne Lib/_pydecimal.py /^_NegativeOne = Decimal(-1)$/;" v +_NetlocResultMixinBase Lib/urllib/parse.py /^class _NetlocResultMixinBase(object):$/;" c +_NetlocResultMixinBytes Lib/urllib/parse.py /^class _NetlocResultMixinBytes(_NetlocResultMixinBase, _ResultMixinBytes):$/;" c +_NetlocResultMixinStr Lib/urllib/parse.py /^class _NetlocResultMixinStr(_NetlocResultMixinBase, _ResultMixinStr):$/;" c +_NoThreads Lib/socketserver.py /^class _NoThreads:$/;" c +_NodeInfo Lib/graphlib.py /^class _NodeInfo:$/;" c +_NonUserDefinedCallables Lib/inspect.py /^_NonUserDefinedCallables = (types.WrapperDescriptorType,$/;" v +_NotAnIntOrString Lib/test/test_logging.py /^ class _NotAnIntOrString:$/;" c function:ModuleLevelMiscTest.test_disable +_NotIterable Lib/typing.py /^class _NotIterable:$/;" c +_ODictNode Objects/odictobject.c /^typedef struct _odictnode _ODictNode;$/;" t typeref:struct:_odictnode file: +_OLD_CODEPAGE Lib/venv/scripts/nt/activate.bat /^ set _OLD_CODEPAGE=$/;" v +_OLD_CODEPAGE Lib/venv/scripts/nt/activate.bat /^ set _OLD_CODEPAGE=%%a$/;" v +_OLD_VIRTUAL_PATH Lib/venv/scripts/nt/activate.bat /^if not defined _OLD_VIRTUAL_PATH set _OLD_VIRTUAL_PATH=%PATH%$/;" v +_OLD_VIRTUAL_PATH Lib/venv/scripts/nt/deactivate.bat /^set _OLD_VIRTUAL_PATH=$/;" v +_OLD_VIRTUAL_PROMPT Lib/venv/scripts/nt/activate.bat /^set _OLD_VIRTUAL_PROMPT=%PROMPT%$/;" v +_OLD_VIRTUAL_PROMPT Lib/venv/scripts/nt/deactivate.bat /^set _OLD_VIRTUAL_PROMPT=$/;" v +_OLD_VIRTUAL_PYTHONHOME Lib/venv/scripts/nt/activate.bat /^if defined PYTHONHOME set _OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%$/;" v +_OLD_VIRTUAL_PYTHONHOME Lib/venv/scripts/nt/deactivate.bat /^ set _OLD_VIRTUAL_PYTHONHOME=$/;" v +_ONE Lib/random.py /^_ONE = 1$/;" v +_OPARG_WIDTH Lib/dis.py /^_OPARG_WIDTH = 5$/;" v +_OPCODE_GET_SPECIALIZATION_STATS_METHODDEF Modules/clinic/_opcode.c.h 95;" d +_OPCODE_STACK_EFFECT_METHODDEF Modules/clinic/_opcode.c.h 17;" d +_OPERATOR_ABS_METHODDEF Modules/clinic/_operator.c.h 273;" d +_OPERATOR_ADD_METHODDEF Modules/clinic/_operator.c.h 45;" d +_OPERATOR_AND__METHODDEF Modules/clinic/_operator.c.h 388;" d +_OPERATOR_CALL_METHODDEF Modules/_operator.c 894;" d file: +_OPERATOR_CONCAT_METHODDEF Modules/clinic/_operator.c.h 838;" d +_OPERATOR_CONTAINS_METHODDEF Modules/clinic/_operator.c.h 898;" d +_OPERATOR_COUNTOF_METHODDEF Modules/clinic/_operator.c.h 968;" d +_OPERATOR_DELITEM_METHODDEF Modules/clinic/_operator.c.h 1066;" d +_OPERATOR_EQ_METHODDEF Modules/clinic/_operator.c.h 1096;" d +_OPERATOR_FLOORDIV_METHODDEF Modules/clinic/_operator.c.h 165;" d +_OPERATOR_GETITEM_METHODDEF Modules/clinic/_operator.c.h 1003;" d +_OPERATOR_GE_METHODDEF Modules/clinic/_operator.c.h 1246;" d +_OPERATOR_GT_METHODDEF Modules/clinic/_operator.c.h 1216;" d +_OPERATOR_IADD_METHODDEF Modules/clinic/_operator.c.h 478;" d +_OPERATOR_IAND_METHODDEF Modules/clinic/_operator.c.h 748;" d +_OPERATOR_ICONCAT_METHODDEF Modules/clinic/_operator.c.h 868;" d +_OPERATOR_IFLOORDIV_METHODDEF Modules/clinic/_operator.c.h 598;" d +_OPERATOR_ILSHIFT_METHODDEF Modules/clinic/_operator.c.h 688;" d +_OPERATOR_IMATMUL_METHODDEF Modules/clinic/_operator.c.h 568;" d +_OPERATOR_IMOD_METHODDEF Modules/clinic/_operator.c.h 658;" d +_OPERATOR_IMUL_METHODDEF Modules/clinic/_operator.c.h 538;" d +_OPERATOR_INDEXOF_METHODDEF Modules/clinic/_operator.c.h 933;" d +_OPERATOR_INDEX_METHODDEF Modules/clinic/_operator.c.h 1336;" d +_OPERATOR_INVERT_METHODDEF Modules/clinic/_operator.c.h 291;" d +_OPERATOR_INV_METHODDEF Modules/clinic/_operator.c.h 282;" d +_OPERATOR_IOR_METHODDEF Modules/clinic/_operator.c.h 808;" d +_OPERATOR_IPOW_METHODDEF Modules/clinic/_operator.c.h 1306;" d +_OPERATOR_IRSHIFT_METHODDEF Modules/clinic/_operator.c.h 718;" d +_OPERATOR_ISUB_METHODDEF Modules/clinic/_operator.c.h 508;" d +_OPERATOR_IS_NOT_METHODDEF Modules/clinic/_operator.c.h 1375;" d +_OPERATOR_IS__METHODDEF Modules/clinic/_operator.c.h 1345;" d +_OPERATOR_ITRUEDIV_METHODDEF Modules/clinic/_operator.c.h 628;" d +_OPERATOR_IXOR_METHODDEF Modules/clinic/_operator.c.h 778;" d +_OPERATOR_LENGTH_HINT_METHODDEF Modules/clinic/_operator.c.h 1411;" d +_OPERATOR_LE_METHODDEF Modules/clinic/_operator.c.h 1186;" d +_OPERATOR_LSHIFT_METHODDEF Modules/clinic/_operator.c.h 300;" d +_OPERATOR_LT_METHODDEF Modules/clinic/_operator.c.h 1156;" d +_OPERATOR_MATMUL_METHODDEF Modules/clinic/_operator.c.h 135;" d +_OPERATOR_MOD_METHODDEF Modules/clinic/_operator.c.h 225;" d +_OPERATOR_MUL_METHODDEF Modules/clinic/_operator.c.h 105;" d +_OPERATOR_NEG_METHODDEF Modules/clinic/_operator.c.h 255;" d +_OPERATOR_NE_METHODDEF Modules/clinic/_operator.c.h 1126;" d +_OPERATOR_NOT__METHODDEF Modules/clinic/_operator.c.h 360;" d +_OPERATOR_OR__METHODDEF Modules/clinic/_operator.c.h 448;" d +_OPERATOR_POS_METHODDEF Modules/clinic/_operator.c.h 264;" d +_OPERATOR_POW_METHODDEF Modules/clinic/_operator.c.h 1276;" d +_OPERATOR_RSHIFT_METHODDEF Modules/clinic/_operator.c.h 330;" d +_OPERATOR_SETITEM_METHODDEF Modules/clinic/_operator.c.h 1033;" d +_OPERATOR_SUB_METHODDEF Modules/clinic/_operator.c.h 75;" d +_OPERATOR_TRUEDIV_METHODDEF Modules/clinic/_operator.c.h 195;" d +_OPERATOR_TRUTH_METHODDEF Modules/clinic/_operator.c.h 17;" d +_OPERATOR_XOR_METHODDEF Modules/clinic/_operator.c.h 418;" d +_OPERATOR__COMPARE_DIGEST_METHODDEF Modules/clinic/_operator.c.h 1472;" d +_OPNAME_WIDTH Lib/dis.py /^_OPNAME_WIDTH = 20$/;" v +_OPT Lib/importlib/_bootstrap_external.py /^_OPT = 'opt-'$/;" v +_OPTION_DIRECTIVE_RE Lib/doctest.py /^ _OPTION_DIRECTIVE_RE = re.compile(r'#\\s*doctest:\\s*([^\\n\\'"]*)$',$/;" v class:DocTestParser +_ORIGIN Lib/importlib/_bootstrap.py /^ _ORIGIN = "built-in"$/;" v class:BuiltinImporter +_ORIGIN Lib/importlib/_bootstrap.py /^ _ORIGIN = "frozen"$/;" v class:FrozenImporter +_OS_GETTERS Lib/uuid.py /^ _OS_GETTERS = []$/;" v +_OS_GETTERS Lib/uuid.py /^ _OS_GETTERS = [_ifconfig_getnode, _arp_getnode, _netstat_getnode]$/;" v +_OS_GETTERS Lib/uuid.py /^ _OS_GETTERS = [_ifconfig_getnode, _ip_getnode, _arp_getnode,$/;" v +_OS_GETTERS Lib/uuid.py /^ _OS_GETTERS = [_netstat_getnode]$/;" v +_OTHER_ENDIAN Lib/ctypes/_endian.py /^ _OTHER_ENDIAN = "__ctype_be__"$/;" v class:_swapped_union_meta +_OTHER_ENDIAN Lib/ctypes/_endian.py /^ _OTHER_ENDIAN = "__ctype_le__"$/;" v class:_swapped_union_meta +_OTHER_SUPPORTED_TYPES Tools/c-analyzer/cpython/_analyzer.py /^_OTHER_SUPPORTED_TYPES = {$/;" v +_OVERLAPPED_BINDLOCAL_METHODDEF Modules/clinic/overlapped.c.h 385;" d +_OVERLAPPED_CREATEEVENT_METHODDEF Modules/clinic/overlapped.c.h 270;" d +_OVERLAPPED_CREATEIOCOMPLETIONPORT_METHODDEF Modules/clinic/overlapped.c.h 17;" d +_OVERLAPPED_FORMATMESSAGE_METHODDEF Modules/clinic/overlapped.c.h 421;" d +_OVERLAPPED_GETQUEUEDCOMPLETIONSTATUS_METHODDEF Modules/clinic/overlapped.c.h 67;" d +_OVERLAPPED_OVERLAPPED_ACCEPTEX_METHODDEF Modules/clinic/overlapped.c.h 835;" d +_OVERLAPPED_OVERLAPPED_CANCEL_METHODDEF Modules/clinic/overlapped.c.h 510;" d +_OVERLAPPED_OVERLAPPED_CONNECTEX_METHODDEF Modules/clinic/overlapped.c.h 875;" d +_OVERLAPPED_OVERLAPPED_CONNECTNAMEDPIPE_METHODDEF Modules/clinic/overlapped.c.h 1010;" d +_OVERLAPPED_OVERLAPPED_CONNECTPIPE_METHODDEF Modules/clinic/overlapped.c.h 1039;" d +_OVERLAPPED_OVERLAPPED_DISCONNECTEX_METHODDEF Modules/clinic/overlapped.c.h 913;" d +_OVERLAPPED_OVERLAPPED_GETRESULT_METHODDEF Modules/clinic/overlapped.c.h 531;" d +_OVERLAPPED_OVERLAPPED_READFILEINTO_METHODDEF Modules/clinic/overlapped.c.h 602;" d +_OVERLAPPED_OVERLAPPED_READFILE_METHODDEF Modules/clinic/overlapped.c.h 566;" d +_OVERLAPPED_OVERLAPPED_TRANSMITFILE_METHODDEF Modules/clinic/overlapped.c.h 950;" d +_OVERLAPPED_OVERLAPPED_WRITEFILE_METHODDEF Modules/clinic/overlapped.c.h 741;" d +_OVERLAPPED_OVERLAPPED_WSARECVFROMINTO_METHODDEF Modules/clinic/overlapped.c.h 1214;" d +_OVERLAPPED_OVERLAPPED_WSARECVFROM_METHODDEF Modules/clinic/overlapped.c.h 1169;" d +_OVERLAPPED_OVERLAPPED_WSARECVINTO_METHODDEF Modules/clinic/overlapped.c.h 691;" d +_OVERLAPPED_OVERLAPPED_WSARECV_METHODDEF Modules/clinic/overlapped.c.h 647;" d +_OVERLAPPED_OVERLAPPED_WSASENDTO_METHODDEF Modules/clinic/overlapped.c.h 1113;" d +_OVERLAPPED_OVERLAPPED_WSASEND_METHODDEF Modules/clinic/overlapped.c.h 786;" d +_OVERLAPPED_POSTQUEUEDCOMPLETIONSTATUS_METHODDEF Modules/clinic/overlapped.c.h 104;" d +_OVERLAPPED_REGISTERWAITWITHQUEUE_METHODDEF Modules/clinic/overlapped.c.h 154;" d +_OVERLAPPED_RESETEVENT_METHODDEF Modules/clinic/overlapped.c.h 355;" d +_OVERLAPPED_SETEVENT_METHODDEF Modules/clinic/overlapped.c.h 327;" d +_OVERLAPPED_UNREGISTERWAITEX_METHODDEF Modules/clinic/overlapped.c.h 230;" d +_OVERLAPPED_UNREGISTERWAIT_METHODDEF Modules/clinic/overlapped.c.h 202;" d +_OVERLAPPED_WSACONNECT_METHODDEF Modules/clinic/overlapped.c.h 1075;" d +_OVERVIEW_FMT_ALTERNATIVES Lib/nntplib.py /^_OVERVIEW_FMT_ALTERNATIVES = {$/;" v +_O_CREX Lib/multiprocessing/shared_memory.py /^_O_CREX = os.O_CREAT | os.O_EXCL$/;" v +_O_TMPFILE_WORKS Lib/tempfile.py /^ _O_TMPFILE_WORKS = hasattr(_os, 'O_TMPFILE')$/;" v +_Object Lib/pyclbr.py /^class _Object:$/;" c +_OctalPatt Lib/http/cookies.py /^_OctalPatt = re.compile(r"\\\\[0-3][0-7][0-7]")$/;" v +_Omitted Lib/_pydatetime.py /^ _Omitted = object()$/;" v class:timezone +_One Lib/_pydecimal.py /^_One = Decimal(1)$/;" v +_One Lib/test/test_unittest/testmock/testmock.py /^ class _One(object):$/;" c function:MockTest.test_mock_add_spec +_OptionError Lib/warnings.py /^class _OptionError(Exception):$/;" c +_OrderedChainMap Lib/unittest/case.py /^class _OrderedChainMap(collections.ChainMap):$/;" c +_OrderedDictItemsView Lib/collections/__init__.py /^class _OrderedDictItemsView(_collections_abc.ItemsView):$/;" c +_OrderedDictKeysView Lib/collections/__init__.py /^class _OrderedDictKeysView(_collections_abc.KeysView):$/;" c +_OrderedDictValuesView Lib/collections/__init__.py /^class _OrderedDictValuesView(_collections_abc.ValuesView):$/;" c +_OurHandler Lib/test/test_logging.py /^ class _OurHandler(logging.Handler):$/;" c function:HandlerTest.test_post_fork_child_no_deadlock +_Outcome Lib/unittest/case.py /^class _Outcome(object):$/;" c +_Outer__attr Lib/test/test_patma.py /^ _Outer__attr = "bacon"$/;" v class:TestPatma.test_patma_249.C +_OutputRedirectingPdb Lib/doctest.py /^class _OutputRedirectingPdb(pdb.Pdb):$/;" c +_OverlappedFuture Lib/asyncio/windows_events.py /^class _OverlappedFuture(futures.Future):$/;" c +_PACKAGES Lib/ensurepip/__init__.py /^_PACKAGES = None$/;" v +_PACKAGE_NAMES Lib/ensurepip/__init__.py /^_PACKAGE_NAMES = ('pip',)$/;" v +_PARAMS Lib/dataclasses.py /^_PARAMS = '__dataclass_params__'$/;" v +_PATTERN_GRAMMAR_FILE Lib/lib2to3/pygram.py /^_PATTERN_GRAMMAR_FILE = os.path.join(os.path.dirname(__file__),$/;" v +_PENDING Lib/asyncio/base_futures.py /^_PENDING = 'PENDING'$/;" v +_PENDING Lib/asyncio/futures.py /^_PENDING = base_futures._PENDING$/;" v +_PICKLE_DUMPS_METHODDEF Modules/clinic/_pickle.c.h 699;" d +_PICKLE_DUMP_METHODDEF Modules/clinic/_pickle.c.h 594;" d +_PICKLE_LOADS_METHODDEF Modules/clinic/_pickle.c.h 932;" d +_PICKLE_LOAD_METHODDEF Modules/clinic/_pickle.c.h 806;" d +_PICKLE_PICKLERMEMOPROXY_CLEAR_METHODDEF Modules/clinic/_pickle.c.h 221;" d +_PICKLE_PICKLERMEMOPROXY_COPY_METHODDEF Modules/clinic/_pickle.c.h 239;" d +_PICKLE_PICKLERMEMOPROXY___REDUCE___METHODDEF Modules/clinic/_pickle.c.h 257;" d +_PICKLE_PICKLER_CLEAR_MEMO_METHODDEF Modules/clinic/_pickle.c.h 22;" d +_PICKLE_PICKLER_DUMP_METHODDEF Modules/clinic/_pickle.c.h 40;" d +_PICKLE_PICKLER___SIZEOF___METHODDEF Modules/clinic/_pickle.c.h 84;" d +_PICKLE_UNPICKLERMEMOPROXY_CLEAR_METHODDEF Modules/clinic/_pickle.c.h 514;" d +_PICKLE_UNPICKLERMEMOPROXY_COPY_METHODDEF Modules/clinic/_pickle.c.h 532;" d +_PICKLE_UNPICKLERMEMOPROXY___REDUCE___METHODDEF Modules/clinic/_pickle.c.h 550;" d +_PICKLE_UNPICKLER_FIND_CLASS_METHODDEF Modules/clinic/_pickle.c.h 308;" d +_PICKLE_UNPICKLER_LOAD_METHODDEF Modules/clinic/_pickle.c.h 279;" d +_PICKLE_UNPICKLER___SIZEOF___METHODDEF Modules/clinic/_pickle.c.h 355;" d +_PIPE_BUF Lib/subprocess.py /^ _PIPE_BUF = getattr(select, 'PIPE_BUF', 512)$/;" v +_PIP_VERSION Lib/ensurepip/__init__.py /^_PIP_VERSION = "23.2.1"$/;" v +_PKG_DIRECTORY Lib/modulefinder.py /^_PKG_DIRECTORY = 5$/;" v +_PLACEHOLDER_LEN Lib/unittest/util.py /^_PLACEHOLDER_LEN = 12$/;" v +_POPULATE Lib/importlib/_bootstrap_external.py /^_POPULATE = object()$/;" v +_POSITIONAL_ONLY Lib/inspect.py /^_POSITIONAL_ONLY = _ParameterKind.POSITIONAL_ONLY$/;" v +_POSITIONAL_OR_KEYWORD Lib/inspect.py /^_POSITIONAL_OR_KEYWORD = _ParameterKind.POSITIONAL_OR_KEYWORD$/;" v +_POSIXSHMEM_SHM_OPEN_METHODDEF Modules/_multiprocessing/clinic/posixshmem.c.h 169;" d +_POSIXSHMEM_SHM_OPEN_METHODDEF Modules/_multiprocessing/clinic/posixshmem.c.h 19;" d +_POSIXSHMEM_SHM_UNLINK_METHODDEF Modules/_multiprocessing/clinic/posixshmem.c.h 110;" d +_POSIXSHMEM_SHM_UNLINK_METHODDEF Modules/_multiprocessing/clinic/posixshmem.c.h 173;" d +_POSIX_THREADS Include/cpython/pthread_stubs.h 9;" d +_POSIX_THREADS Include/internal/pycore_pythread.h 30;" d +_POST_INIT_NAME Lib/dataclasses.py /^_POST_INIT_NAME = '__post_init__'$/;" v +_PREFIX Lib/sysconfig.py /^_PREFIX = os.path.normpath(sys.prefix)$/;" v +_PRINT_WORKING_MSG_INTERVAL Lib/test/test_zipfile64.py /^_PRINT_WORKING_MSG_INTERVAL = 60$/;" v +_PROJECTS Lib/ensurepip/__init__.py /^_PROJECTS = [$/;" v +_PROJECT_BASE Lib/sysconfig.py /^ _PROJECT_BASE = _BASE_PREFIX$/;" v +_PROJECT_BASE Lib/sysconfig.py /^ _PROJECT_BASE = _safe_realpath(os.environ["_PYTHON_PROJECT_BASE"])$/;" v +_PROJECT_BASE Lib/sysconfig.py /^ _PROJECT_BASE = _safe_realpath(os.getcwd())$/;" v +_PROJECT_BASE Lib/sysconfig.py /^ _PROJECT_BASE = _sys_home$/;" v +_PROTOCOL_NAMES Lib/ssl.py /^_PROTOCOL_NAMES = {value: name for name, value in _SSLMethod.__members__.items()}$/;" v +_PROTO_ALLOWLIST Lib/typing.py /^_PROTO_ALLOWLIST = {$/;" v +_PYCACHE Lib/importlib/_bootstrap_external.py /^_PYCACHE = '__pycache__'$/;" v +_PYPEGEN_NSTATISTICS Include/internal/pycore_parser.h 18;" d +_PYTHONFRAMEWORK PC/pyconfig.h 737;" d +_PYTHON_BUILD Lib/sysconfig.py /^_PYTHON_BUILD = is_python_build()$/;" v +_PYTHON_FILES_WITH_TABS Tools/patchcheck/patchcheck.py /^_PYTHON_FILES_WITH_TABS = frozenset({$/;" v +_PYTHON_HACL_NAMESPACES_H Modules/_hacl/python_hacl_namespaces.h 2;" d +_PYTHON_MULTIBYTECODEC_H_ Modules/cjkcodecs/multibytecodec.h 8;" d +_PYTIME_FROMSECONDS Include/cpython/pytime.h 131;" d +_PY_COMPILED Lib/modulefinder.py /^_PY_COMPILED = 2$/;" v +_PY_DATETIME_IMPL Modules/_datetimemodule.c 8;" d file: +_PY_DEC_ROUND_GUARD Modules/_decimal/_decimal.c 212;" d file: +_PY_DEC_ROUND_GUARD Modules/_decimal/_decimal.c 214;" d file: +_PY_EMULATED_WIN_CV Include/internal/pycore_condvar.h 48;" d +_PY_EMULATED_WIN_CV Include/internal/pycore_condvar.h 53;" d +_PY_EMULATED_WIN_CV Include/internal/pycore_condvar.h 54;" d +_PY_FASTCALL_SMALL_STACK Include/cpython/abstract.h 34;" d +_PY_FROZEN Lib/modulefinder.py /^_PY_FROZEN = 7$/;" v +_PY_HAVE_BUILTIN_BSWAP Include/internal/pycore_bitutils.h 25;" d +_PY_INTERPRETER Objects/genobject.c 3;" d file: +_PY_INTERPRETER Python/ceval.c 3;" d file: +_PY_INTERPRETER Python/frame.c 2;" d file: +_PY_INTERPRETER Python/intrinsics.c 2;" d file: +_PY_LONG_DEFAULT_MAX_STR_DIGITS Include/internal/pycore_long.h 29;" d +_PY_LONG_MAX_STR_DIGITS_THRESHOLD Include/internal/pycore_long.h 42;" d +_PY_MONITORING_EVENTS Include/cpython/code.h 16;" d +_PY_MONITORING_LOCAL_EVENTS Include/cpython/code.h 12;" d +_PY_MONITORING_UNGROUPED_EVENTS Include/cpython/code.h 14;" d +_PY_NSMALLNEGINTS Include/internal/pycore_global_objects.h 20;" d +_PY_NSMALLPOSINTS Include/internal/pycore_global_objects.h 19;" d +_PY_PORT_CTYPE_UTF8_ISSUE Include/pyport.h 453;" d +_PY_READ_MAX Include/internal/pycore_fileutils.h 58;" d +_PY_READ_MAX Include/internal/pycore_fileutils.h 63;" d +_PY_SHORT_FLOAT_REPR Include/internal/pycore_pymath.h 187;" d +_PY_SHORT_FLOAT_REPR Include/internal/pycore_pymath.h 194;" d +_PY_SHORT_FLOAT_REPR Include/internal/pycore_pymath.h 198;" d +_PY_SOURCE Lib/modulefinder.py /^_PY_SOURCE = 1$/;" v +_PY_USE_CV_LOCKS Python/thread_nt.h 15;" d +_PY_VERSION Lib/sysconfig.py /^_PY_VERSION = sys.version.split()[0]$/;" v +_PY_VERSION_SHORT Lib/sysconfig.py /^_PY_VERSION_SHORT = f'{sys.version_info[0]}.{sys.version_info[1]}'$/;" v +_PY_VERSION_SHORT_NO_DOT Lib/sysconfig.py /^_PY_VERSION_SHORT_NO_DOT = f'{sys.version_info[0]}{sys.version_info[1]}'$/;" v +_PY_WRITE_MAX Include/internal/pycore_fileutils.h 59;" d +_PY_WRITE_MAX Include/internal/pycore_fileutils.h 64;" d +_P_NOWAIT Modules/posixmodule.c 389;" d file: +_P_NOWAITO Modules/posixmodule.c 390;" d file: +_P_WAIT Modules/posixmodule.c 388;" d file: +_Pacific_Kiritimati Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _Pacific_Kiritimati():$/;" f function:ZoneDumpData._populate_zonedump_data +_Package Lib/ensurepip/__init__.py /^_Package = collections.namedtuple('Package',$/;" v +_PaddedFile Lib/gzip.py /^class _PaddedFile:$/;" c +_ParameterKind Lib/inspect.py /^class _ParameterKind(enum.IntEnum):$/;" c +_ParentProcess Lib/multiprocessing/process.py /^class _ParentProcess(BaseProcess):$/;" c +_ParentSelector Lib/pathlib.py /^class _ParentSelector(_Selector):$/;" c +_ParseResultBase Lib/urllib/parse.py /^_ParseResultBase = namedtuple($/;" v +_ParserBase Lib/test/test_clinic.py /^class _ParserBase(TestCase):$/;" c +_PartialFile Lib/mailbox.py /^class _PartialFile(_ProxyFile):$/;" c +_PathParents Lib/pathlib.py /^class _PathParents(Sequence):$/;" c +_PickleUsingNameMixin Lib/typing.py /^class _PickleUsingNameMixin:$/;" c +_Pickle_ClearState Modules/_pickle.c /^_Pickle_ClearState(PickleState *st)$/;" f file: +_Pickle_FastCall Modules/_pickle.c /^_Pickle_FastCall(PyObject *func, PyObject *obj)$/;" f file: +_Pickle_FindStateByType Modules/_pickle.c /^_Pickle_FindStateByType(PyTypeObject *tp)$/;" f file: +_Pickle_GetState Modules/_pickle.c /^_Pickle_GetState(PyObject *module)$/;" f file: +_Pickle_GetStateByClass Modules/_pickle.c /^_Pickle_GetStateByClass(PyTypeObject *cls)$/;" f file: +_Pickle_InitState Modules/_pickle.c /^_Pickle_InitState(PickleState *st)$/;" f file: +_Pickler Lib/pickle.py /^class _Pickler:$/;" c +_Pickler_ClearBuffer Modules/_pickle.c /^_Pickler_ClearBuffer(PicklerObject *self)$/;" f file: +_Pickler_CommitFrame Modules/_pickle.c /^_Pickler_CommitFrame(PicklerObject *self)$/;" f file: +_Pickler_FlushToFile Modules/_pickle.c /^_Pickler_FlushToFile(PicklerObject *self)$/;" f file: +_Pickler_GetString Modules/_pickle.c /^_Pickler_GetString(PicklerObject *self)$/;" f file: +_Pickler_New Modules/_pickle.c /^_Pickler_New(PickleState *st)$/;" f file: +_Pickler_OpcodeBoundary Modules/_pickle.c /^_Pickler_OpcodeBoundary(PicklerObject *self)$/;" f file: +_Pickler_SetBufferCallback Modules/_pickle.c /^_Pickler_SetBufferCallback(PicklerObject *self, PyObject *buffer_callback)$/;" f file: +_Pickler_SetOutputStream Modules/_pickle.c /^_Pickler_SetOutputStream(PicklerObject *self, PyObject *file)$/;" f file: +_Pickler_SetProtocol Modules/_pickle.c /^_Pickler_SetProtocol(PicklerObject *self, PyObject *protocol, int fix_imports)$/;" f file: +_Pickler_Write Modules/_pickle.c /^_Pickler_Write(PicklerObject *self, const char *s, Py_ssize_t data_len)$/;" f file: +_Pickler_write_bytes Modules/_pickle.c /^_Pickler_write_bytes(PicklerObject *self,$/;" f file: +_PlainOutputTests Lib/test/test_enum.py /^class _PlainOutputTests:$/;" c +_PlainTextDoc Lib/pydoc.py /^class _PlainTextDoc(TextDoc):$/;" c +_PlistParser Lib/plistlib.py /^class _PlistParser:$/;" c +_PlistWriter Lib/plistlib.py /^class _PlistWriter(_DumbXMLWriter):$/;" c +_PolicyBase Lib/email/_policybase.py /^class _PolicyBase:$/;" c +_PollLikeSelector Lib/selectors.py /^class _PollLikeSelector(_BaseSelectorImpl):$/;" c +_PoolCache Lib/multiprocessing/pool.py /^class _PoolCache(dict):$/;" c +_Popen Lib/multiprocessing/context.py /^ def _Popen(process_obj):$/;" m class:.ForkProcess +_Popen Lib/multiprocessing/context.py /^ def _Popen(process_obj):$/;" m class:.ForkServerProcess +_Popen Lib/multiprocessing/context.py /^ def _Popen(process_obj):$/;" m class:.SpawnProcess +_Popen Lib/multiprocessing/context.py /^ def _Popen(process_obj):$/;" m class:Process +_Popen Lib/multiprocessing/process.py /^ def _Popen(self):$/;" m class:BaseProcess +_PopenSelector Lib/subprocess.py /^ _PopenSelector = selectors.PollSelector$/;" v class:.Handle +_PopenSelector Lib/subprocess.py /^ _PopenSelector = selectors.SelectSelector$/;" v class:.Handle +_PosixSpawnMixin Lib/test/test_posix.py /^class _PosixSpawnMixin:$/;" c +_Precedence Lib/ast.py /^class _Precedence:$/;" c +_Precedence Lib/test/test_ast.py /^ class _Precedence(enum.IntEnum):$/;" c function:AST_Tests.test_precedence_enum +_Printer Lib/_sitebuiltins.py /^class _Printer(object):$/;" c +_ProactorBasePipeTransport Lib/asyncio/proactor_events.py /^ transports.BaseTransport):$/;" c +_ProactorBaseWritePipeTransport Lib/asyncio/proactor_events.py /^ transports.WriteTransport):$/;" c +_ProactorDatagramTransport Lib/asyncio/proactor_events.py /^ transports.DatagramTransport):$/;" c +_ProactorDuplexPipeTransport Lib/asyncio/proactor_events.py /^ transports.Transport):$/;" c +_ProactorReadPipeTransport Lib/asyncio/proactor_events.py /^ transports.ReadTransport):$/;" c +_ProactorSocketTransport Lib/asyncio/proactor_events.py /^ transports.Transport):$/;" c +_ProactorWritePipeTransport Lib/asyncio/proactor_events.py /^class _ProactorWritePipeTransport(_ProactorBaseWritePipeTransport):$/;" c +_Processor Lib/platform.py /^class _Processor:$/;" c +_ProfileOutput Lib/test/test_cprofile.py /^_ProfileOutput = {}$/;" v +_ProfileOutput Lib/test/test_profile.py /^_ProfileOutput = {}$/;" v +_ProfilerContext Modules/_lsprof.c /^typedef struct _ProfilerContext {$/;" s file: +_ProfilerEntry Modules/_lsprof.c /^typedef struct _ProfilerEntry {$/;" s file: +_ProfilerSubEntry Modules/_lsprof.c /^typedef struct _ProfilerSubEntry {$/;" s file: +_PropertyUnreachableAttribute Lib/test/test_property.py /^class _PropertyUnreachableAttribute:$/;" c +_ProtocolMeta Lib/typing.py /^class _ProtocolMeta(ABCMeta):$/;" c +_ProxyFile Lib/mailbox.py /^class _ProxyFile:$/;" c +_PyASCIIObject_CAST Include/cpython/unicodeobject.h 175;" d +_PyASCIIObject_INIT Include/internal/pycore_runtime_init.h 169;" d +_PyASTOptimizeState Include/internal/pycore_compile.h /^} _PyASTOptimizeState;$/;" t typeref:struct:__anon150 +_PyAST_AnnAssign Python/Python-ast.c /^_PyAST_AnnAssign(expr_ty target, expr_ty annotation, expr_ty value, int simple,$/;" f +_PyAST_Assert Python/Python-ast.c /^_PyAST_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, int$/;" f +_PyAST_Assign Python/Python-ast.c /^_PyAST_Assign(asdl_expr_seq * targets, expr_ty value, string type_comment, int$/;" f +_PyAST_AsyncFor Python/Python-ast.c /^_PyAST_AsyncFor(expr_ty target, expr_ty iter, asdl_stmt_seq * body,$/;" f +_PyAST_AsyncFunctionDef Python/Python-ast.c /^_PyAST_AsyncFunctionDef(identifier name, arguments_ty args, asdl_stmt_seq *$/;" f +_PyAST_AsyncWith Python/Python-ast.c /^_PyAST_AsyncWith(asdl_withitem_seq * items, asdl_stmt_seq * body, string$/;" f +_PyAST_Attribute Python/Python-ast.c /^_PyAST_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int$/;" f +_PyAST_AugAssign Python/Python-ast.c /^_PyAST_AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int$/;" f +_PyAST_Await Python/Python-ast.c /^_PyAST_Await(expr_ty value, int lineno, int col_offset, int end_lineno, int$/;" f +_PyAST_BinOp Python/Python-ast.c /^_PyAST_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int$/;" f +_PyAST_BoolOp Python/Python-ast.c /^_PyAST_BoolOp(boolop_ty op, asdl_expr_seq * values, int lineno, int col_offset,$/;" f +_PyAST_Break Python/Python-ast.c /^_PyAST_Break(int lineno, int col_offset, int end_lineno, int end_col_offset,$/;" f +_PyAST_Call Python/Python-ast.c /^_PyAST_Call(expr_ty func, asdl_expr_seq * args, asdl_keyword_seq * keywords,$/;" f +_PyAST_ClassDef Python/Python-ast.c /^_PyAST_ClassDef(identifier name, asdl_expr_seq * bases, asdl_keyword_seq *$/;" f +_PyAST_Compare Python/Python-ast.c /^_PyAST_Compare(expr_ty left, asdl_int_seq * ops, asdl_expr_seq * comparators,$/;" f +_PyAST_Compile Python/compile.c /^_PyAST_Compile(mod_ty mod, PyObject *filename, PyCompilerFlags *pflags,$/;" f +_PyAST_Constant Python/Python-ast.c /^_PyAST_Constant(constant value, string kind, int lineno, int col_offset, int$/;" f +_PyAST_Continue Python/Python-ast.c /^_PyAST_Continue(int lineno, int col_offset, int end_lineno, int end_col_offset,$/;" f +_PyAST_Delete Python/Python-ast.c /^_PyAST_Delete(asdl_expr_seq * targets, int lineno, int col_offset, int$/;" f +_PyAST_Dict Python/Python-ast.c /^_PyAST_Dict(asdl_expr_seq * keys, asdl_expr_seq * values, int lineno, int$/;" f +_PyAST_DictComp Python/Python-ast.c /^_PyAST_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq *$/;" f +_PyAST_ExceptHandler Python/Python-ast.c /^_PyAST_ExceptHandler(expr_ty type, identifier name, asdl_stmt_seq * body, int$/;" f +_PyAST_Expr Python/Python-ast.c /^_PyAST_Expr(expr_ty value, int lineno, int col_offset, int end_lineno, int$/;" f +_PyAST_ExprAsUnicode Python/ast_unparse.c /^_PyAST_ExprAsUnicode(expr_ty e)$/;" f +_PyAST_Expression Python/Python-ast.c /^_PyAST_Expression(expr_ty body, PyArena *arena)$/;" f +_PyAST_Fini Python/Python-ast.c /^void _PyAST_Fini(PyInterpreterState *interp)$/;" f +_PyAST_For Python/Python-ast.c /^_PyAST_For(expr_ty target, expr_ty iter, asdl_stmt_seq * body, asdl_stmt_seq *$/;" f +_PyAST_FormattedValue Python/Python-ast.c /^_PyAST_FormattedValue(expr_ty value, int conversion, expr_ty format_spec, int$/;" f +_PyAST_FunctionDef Python/Python-ast.c /^_PyAST_FunctionDef(identifier name, arguments_ty args, asdl_stmt_seq * body,$/;" f +_PyAST_FunctionType Python/Python-ast.c /^_PyAST_FunctionType(asdl_expr_seq * argtypes, expr_ty returns, PyArena *arena)$/;" f +_PyAST_GeneratorExp Python/Python-ast.c /^_PyAST_GeneratorExp(expr_ty elt, asdl_comprehension_seq * generators, int$/;" f +_PyAST_GetDocString Python/ast.c /^_PyAST_GetDocString(asdl_stmt_seq *body)$/;" f +_PyAST_Global Python/Python-ast.c /^_PyAST_Global(asdl_identifier_seq * names, int lineno, int col_offset, int$/;" f +_PyAST_If Python/Python-ast.c /^_PyAST_If(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int$/;" f +_PyAST_IfExp Python/Python-ast.c /^_PyAST_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int$/;" f +_PyAST_Import Python/Python-ast.c /^_PyAST_Import(asdl_alias_seq * names, int lineno, int col_offset, int$/;" f +_PyAST_ImportFrom Python/Python-ast.c /^_PyAST_ImportFrom(identifier module, asdl_alias_seq * names, int level, int$/;" f +_PyAST_Interactive Python/Python-ast.c /^_PyAST_Interactive(asdl_stmt_seq * body, PyArena *arena)$/;" f +_PyAST_JoinedStr Python/Python-ast.c /^_PyAST_JoinedStr(asdl_expr_seq * values, int lineno, int col_offset, int$/;" f +_PyAST_Lambda Python/Python-ast.c /^_PyAST_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, int$/;" f +_PyAST_List Python/Python-ast.c /^_PyAST_List(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int$/;" f +_PyAST_ListComp Python/Python-ast.c /^_PyAST_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int lineno,$/;" f +_PyAST_Match Python/Python-ast.c /^_PyAST_Match(expr_ty subject, asdl_match_case_seq * cases, int lineno, int$/;" f +_PyAST_MatchAs Python/Python-ast.c /^_PyAST_MatchAs(pattern_ty pattern, identifier name, int lineno, int col_offset,$/;" f +_PyAST_MatchClass Python/Python-ast.c /^_PyAST_MatchClass(expr_ty cls, asdl_pattern_seq * patterns, asdl_identifier_seq$/;" f +_PyAST_MatchMapping Python/Python-ast.c /^_PyAST_MatchMapping(asdl_expr_seq * keys, asdl_pattern_seq * patterns,$/;" f +_PyAST_MatchOr Python/Python-ast.c /^_PyAST_MatchOr(asdl_pattern_seq * patterns, int lineno, int col_offset, int$/;" f +_PyAST_MatchSequence Python/Python-ast.c /^_PyAST_MatchSequence(asdl_pattern_seq * patterns, int lineno, int col_offset,$/;" f +_PyAST_MatchSingleton Python/Python-ast.c /^_PyAST_MatchSingleton(constant value, int lineno, int col_offset, int$/;" f +_PyAST_MatchStar Python/Python-ast.c /^_PyAST_MatchStar(identifier name, int lineno, int col_offset, int end_lineno,$/;" f +_PyAST_MatchValue Python/Python-ast.c /^_PyAST_MatchValue(expr_ty value, int lineno, int col_offset, int end_lineno,$/;" f +_PyAST_Module Python/Python-ast.c /^_PyAST_Module(asdl_stmt_seq * body, asdl_type_ignore_seq * type_ignores,$/;" f +_PyAST_Name Python/Python-ast.c /^_PyAST_Name(identifier id, expr_context_ty ctx, int lineno, int col_offset, int$/;" f +_PyAST_NamedExpr Python/Python-ast.c /^_PyAST_NamedExpr(expr_ty target, expr_ty value, int lineno, int col_offset, int$/;" f +_PyAST_Nonlocal Python/Python-ast.c /^_PyAST_Nonlocal(asdl_identifier_seq * names, int lineno, int col_offset, int$/;" f +_PyAST_Optimize Python/ast_opt.c /^_PyAST_Optimize(mod_ty mod, PyArena *arena, _PyASTOptimizeState *state)$/;" f +_PyAST_ParamSpec Python/Python-ast.c /^_PyAST_ParamSpec(identifier name, int lineno, int col_offset, int end_lineno,$/;" f +_PyAST_Pass Python/Python-ast.c /^_PyAST_Pass(int lineno, int col_offset, int end_lineno, int end_col_offset,$/;" f +_PyAST_Raise Python/Python-ast.c /^_PyAST_Raise(expr_ty exc, expr_ty cause, int lineno, int col_offset, int$/;" f +_PyAST_Return Python/Python-ast.c /^_PyAST_Return(expr_ty value, int lineno, int col_offset, int end_lineno, int$/;" f +_PyAST_Set Python/Python-ast.c /^_PyAST_Set(asdl_expr_seq * elts, int lineno, int col_offset, int end_lineno,$/;" f +_PyAST_SetComp Python/Python-ast.c /^_PyAST_SetComp(expr_ty elt, asdl_comprehension_seq * generators, int lineno,$/;" f +_PyAST_Slice Python/Python-ast.c /^_PyAST_Slice(expr_ty lower, expr_ty upper, expr_ty step, int lineno, int$/;" f +_PyAST_Starred Python/Python-ast.c /^_PyAST_Starred(expr_ty value, expr_context_ty ctx, int lineno, int col_offset,$/;" f +_PyAST_Subscript Python/Python-ast.c /^_PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int lineno,$/;" f +_PyAST_Try Python/Python-ast.c /^_PyAST_Try(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers,$/;" f +_PyAST_TryStar Python/Python-ast.c /^_PyAST_TryStar(asdl_stmt_seq * body, asdl_excepthandler_seq * handlers,$/;" f +_PyAST_Tuple Python/Python-ast.c /^_PyAST_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int$/;" f +_PyAST_TypeAlias Python/Python-ast.c /^_PyAST_TypeAlias(expr_ty name, asdl_type_param_seq * type_params, expr_ty$/;" f +_PyAST_TypeIgnore Python/Python-ast.c /^_PyAST_TypeIgnore(int lineno, string tag, PyArena *arena)$/;" f +_PyAST_TypeVar Python/Python-ast.c /^_PyAST_TypeVar(identifier name, expr_ty bound, int lineno, int col_offset, int$/;" f +_PyAST_TypeVarTuple Python/Python-ast.c /^_PyAST_TypeVarTuple(identifier name, int lineno, int col_offset, int$/;" f +_PyAST_UnaryOp Python/Python-ast.c /^_PyAST_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset, int$/;" f +_PyAST_Validate Python/ast.c /^_PyAST_Validate(mod_ty mod)$/;" f +_PyAST_While Python/Python-ast.c /^_PyAST_While(expr_ty test, asdl_stmt_seq * body, asdl_stmt_seq * orelse, int$/;" f +_PyAST_With Python/Python-ast.c /^_PyAST_With(asdl_withitem_seq * items, asdl_stmt_seq * body, string$/;" f +_PyAST_Yield Python/Python-ast.c /^_PyAST_Yield(expr_ty value, int lineno, int col_offset, int end_lineno, int$/;" f +_PyAST_YieldFrom Python/Python-ast.c /^_PyAST_YieldFrom(expr_ty value, int lineno, int col_offset, int end_lineno, int$/;" f +_PyAST_alias Python/Python-ast.c /^_PyAST_alias(identifier name, identifier asname, int lineno, int col_offset,$/;" f +_PyAST_arg Python/Python-ast.c /^_PyAST_arg(identifier arg, expr_ty annotation, string type_comment, int lineno,$/;" f +_PyAST_arguments Python/Python-ast.c /^_PyAST_arguments(asdl_arg_seq * posonlyargs, asdl_arg_seq * args, arg_ty$/;" f +_PyAST_comprehension Python/Python-ast.c /^_PyAST_comprehension(expr_ty target, expr_ty iter, asdl_expr_seq * ifs, int$/;" f +_PyAST_keyword Python/Python-ast.c /^_PyAST_keyword(identifier arg, expr_ty value, int lineno, int col_offset, int$/;" f +_PyAST_match_case Python/Python-ast.c /^_PyAST_match_case(pattern_ty pattern, expr_ty guard, asdl_stmt_seq * body,$/;" f +_PyAST_withitem Python/Python-ast.c /^_PyAST_withitem(expr_ty context_expr, expr_ty optional_vars, PyArena *arena)$/;" f +_PyAnextAwaitable_Type Objects/iterobject.c /^PyTypeObject _PyAnextAwaitable_Type = {$/;" v +_PyArena_AddPyObject Python/pyarena.c /^_PyArena_AddPyObject(PyArena *arena, PyObject *obj)$/;" f +_PyArena_Free Python/pyarena.c /^_PyArena_Free(PyArena *arena)$/;" f +_PyArena_Malloc Python/pyarena.c /^_PyArena_Malloc(PyArena *arena, size_t size)$/;" f +_PyArena_New Python/pyarena.c /^_PyArena_New(void)$/;" f +_PyArg_BadArgument Python/getargs.c /^_PyArg_BadArgument(const char *fname, const char *displayname,$/;" f +_PyArg_CheckPositional Include/cpython/modsupport.h 42;" d +_PyArg_CheckPositional Python/getargs.c /^_PyArg_CheckPositional(const char *name, Py_ssize_t nargs,$/;" f +_PyArg_CheckPositional Python/getargs.c 2783;" d file: +_PyArg_Fini Python/getargs.c /^_PyArg_Fini(void)$/;" f +_PyArg_NoKeywords Include/cpython/modsupport.h 30;" d +_PyArg_NoKeywords Python/getargs.c /^_PyArg_NoKeywords(const char *funcname, PyObject *kwargs)$/;" f +_PyArg_NoKeywords Python/getargs.c 2883;" d file: +_PyArg_NoKwnames Include/cpython/modsupport.h 32;" d +_PyArg_NoKwnames Python/getargs.c /^_PyArg_NoKwnames(const char *funcname, PyObject *kwnames)$/;" f +_PyArg_NoKwnames Python/getargs.c 2884;" d file: +_PyArg_NoPositional Include/cpython/modsupport.h 34;" d +_PyArg_NoPositional Python/getargs.c /^_PyArg_NoPositional(const char *funcname, PyObject *args)$/;" f +_PyArg_NoPositional Python/getargs.c 2885;" d file: +_PyArg_ParseStack Include/cpython/modsupport.h 68;" d +_PyArg_ParseStack Python/getargs.c /^_PyArg_ParseStack(PyObject *const *args, Py_ssize_t nargs, const char *format, ...)$/;" f +_PyArg_ParseStackAndKeywords Include/cpython/modsupport.h 69;" d +_PyArg_ParseStackAndKeywords Python/getargs.c /^_PyArg_ParseStackAndKeywords(PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames,$/;" f +_PyArg_ParseStackAndKeywords_SizeT Python/getargs.c /^_PyArg_ParseStackAndKeywords_SizeT(PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames,$/;" f +_PyArg_ParseStack_SizeT Python/getargs.c /^_PyArg_ParseStack_SizeT(PyObject *const *args, Py_ssize_t nargs, const char *format, ...)$/;" f +_PyArg_ParseTupleAndKeywordsFast Include/cpython/modsupport.h 67;" d +_PyArg_ParseTupleAndKeywordsFast Python/getargs.c /^_PyArg_ParseTupleAndKeywordsFast(PyObject *args, PyObject *keywords,$/;" f +_PyArg_ParseTupleAndKeywordsFast_SizeT Python/getargs.c /^_PyArg_ParseTupleAndKeywordsFast_SizeT(PyObject *args, PyObject *keywords,$/;" f +_PyArg_ParseTupleAndKeywords_SizeT Python/getargs.c /^_PyArg_ParseTupleAndKeywords_SizeT(PyObject *args,$/;" f +_PyArg_ParseTuple_SizeT Python/getargs.c /^_PyArg_ParseTuple_SizeT(PyObject *args, const char *format, ...)$/;" f +_PyArg_Parse_SizeT Python/getargs.c /^_PyArg_Parse_SizeT(PyObject *args, const char *format, ...)$/;" f +_PyArg_Parser Include/cpython/modsupport.h /^typedef struct _PyArg_Parser {$/;" s +_PyArg_Parser Include/cpython/modsupport.h /^} _PyArg_Parser;$/;" t typeref:struct:_PyArg_Parser +_PyArg_UnpackKeywords Include/cpython/modsupport.h 102;" d +_PyArg_UnpackKeywords Python/getargs.c /^_PyArg_UnpackKeywords(PyObject *const *args, Py_ssize_t nargs,$/;" f +_PyArg_UnpackKeywords Python/getargs.c 2320;" d file: +_PyArg_UnpackKeywordsWithVararg Python/getargs.c /^_PyArg_UnpackKeywordsWithVararg(PyObject *const *args, Py_ssize_t nargs,$/;" f +_PyArg_UnpackStack Python/getargs.c /^_PyArg_UnpackStack(PyObject *const *args, Py_ssize_t nargs, const char *name,$/;" f +_PyArg_VaParseTupleAndKeywordsFast Include/cpython/modsupport.h 70;" d +_PyArg_VaParseTupleAndKeywordsFast Python/getargs.c /^_PyArg_VaParseTupleAndKeywordsFast(PyObject *args, PyObject *keywords,$/;" f +_PyArg_VaParseTupleAndKeywordsFast_SizeT Python/getargs.c /^_PyArg_VaParseTupleAndKeywordsFast_SizeT(PyObject *args, PyObject *keywords,$/;" f +_PyArg_VaParseTupleAndKeywords_SizeT Python/getargs.c /^_PyArg_VaParseTupleAndKeywords_SizeT(PyObject *args,$/;" f +_PyArg_VaParse_SizeT Python/getargs.c /^_PyArg_VaParse_SizeT(PyObject *args, const char *format, va_list va)$/;" f +_PyArgv Include/internal/pycore_initconfig.h /^typedef struct _PyArgv {$/;" s +_PyArgv Include/internal/pycore_initconfig.h /^} _PyArgv;$/;" t typeref:struct:_PyArgv +_PyArgv_AsWstrList Python/preconfig.c /^_PyArgv_AsWstrList(const _PyArgv *args, PyWideStringList *list)$/;" f +_PyAssemble_MakeCodeObject Python/assemble.c /^_PyAssemble_MakeCodeObject(_PyCompile_CodeUnitMetadata *umd, PyObject *const_cache,$/;" f +_PyAsyncGenASend_Type Objects/genobject.c /^PyTypeObject _PyAsyncGenASend_Type = {$/;" v +_PyAsyncGenAThrow_Type Objects/genobject.c /^PyTypeObject _PyAsyncGenAThrow_Type = {$/;" v +_PyAsyncGenValueWrapperNew Objects/genobject.c /^_PyAsyncGenValueWrapperNew(PyThreadState *tstate, PyObject *val)$/;" f +_PyAsyncGenWrappedValue Objects/genobject.c /^typedef struct _PyAsyncGenWrappedValue {$/;" s file: +_PyAsyncGenWrappedValue Objects/genobject.c /^} _PyAsyncGenWrappedValue;$/;" t typeref:struct:_PyAsyncGenWrappedValue file: +_PyAsyncGenWrappedValue_CheckExact Objects/genobject.c 1418;" d file: +_PyAsyncGenWrappedValue_Type Objects/genobject.c /^PyTypeObject _PyAsyncGenWrappedValue_Type = {$/;" v +_PyAsyncGen_ClearFreeLists Objects/genobject.c /^_PyAsyncGen_ClearFreeLists(PyInterpreterState *interp)$/;" f +_PyAsyncGen_Fini Objects/genobject.c /^_PyAsyncGen_Fini(PyInterpreterState *interp)$/;" f +_PyAsyncGen_MAXFREELIST Include/internal/pycore_genobject.h 24;" d +_PyAsyncGen_MAXFREELIST Include/internal/pycore_genobject.h 28;" d +_PyAtExit_Call Modules/atexitmodule.c /^_PyAtExit_Call(PyInterpreterState *interp)$/;" f +_PyAtExit_Fini Modules/atexitmodule.c /^_PyAtExit_Fini(PyInterpreterState *interp)$/;" f +_PyAtExit_Init Modules/atexitmodule.c /^_PyAtExit_Init(PyInterpreterState *interp)$/;" f +_PyAttrCache Include/internal/pycore_code.h /^} _PyAttrCache;$/;" t typeref:struct:__anon24 +_PyBaseExceptionGroupObject_cast Objects/exceptions.c /^_PyBaseExceptionGroupObject_cast(PyObject *exc)$/;" f file: +_PyBaseExceptionGroup_Check Include/pyerrors.h 73;" d +_PyBaseExceptionObject_cast Objects/exceptions.c /^_PyBaseExceptionObject_cast(PyObject *exc)$/;" f file: +_PyBasicblock_InsertInstruction Python/flowgraph.c /^_PyBasicblock_InsertInstruction(basicblock *block, int pos, cfg_instr *instr) {$/;" f +_PyBinaryOpCache Include/internal/pycore_code.h /^} _PyBinaryOpCache;$/;" t typeref:struct:__anon19 +_PyBinarySubscrCache Include/internal/pycore_code.h /^} _PyBinarySubscrCache;$/;" t typeref:struct:__anon22 +_PyBufferWrapper Objects/typeobject.c /^typedef struct _PyBufferWrapper {$/;" s file: +_PyBufferWrapper_Type Objects/typeobject.c /^PyTypeObject _PyBufferWrapper_Type = {$/;" v +_PyBuildSlice_Consume2 Objects/sliceobject.c /^_PyBuildSlice_Consume2(PyObject *start, PyObject *stop, PyObject *step)$/;" f file: +_PyBuildSlice_ConsumeRefs Objects/sliceobject.c /^_PyBuildSlice_ConsumeRefs(PyObject *start, PyObject *stop)$/;" f +_PyBuiltin_Init Python/bltinmodule.c /^_PyBuiltin_Init(PyInterpreterState *interp)$/;" f +_PyBuiltins_AddExceptions Objects/exceptions.c /^_PyBuiltins_AddExceptions(PyObject *bltinmod)$/;" f +_PyByteArray_CAST Include/cpython/bytearrayobject.h 17;" d +_PyByteArray_FromBufferObject Objects/bytearrayobject.c /^_PyByteArray_FromBufferObject(PyObject *obj)$/;" f file: +_PyByteArray_empty_string Objects/bytearrayobject.c /^char _PyByteArray_empty_string[] = "";$/;" v +_PyBytesWriter Include/cpython/bytesobject.h /^} _PyBytesWriter;$/;" t typeref:struct:__anon174 +_PyBytesWriter_Alloc Objects/bytesobject.c /^_PyBytesWriter_Alloc(_PyBytesWriter *writer, Py_ssize_t size)$/;" f +_PyBytesWriter_AsString Objects/bytesobject.c /^_PyBytesWriter_AsString(_PyBytesWriter *writer)$/;" f +_PyBytesWriter_CheckConsistency Objects/bytesobject.c /^_PyBytesWriter_CheckConsistency(_PyBytesWriter *writer, char *str)$/;" f +_PyBytesWriter_Dealloc Objects/bytesobject.c /^_PyBytesWriter_Dealloc(_PyBytesWriter *writer)$/;" f +_PyBytesWriter_Finish Objects/bytesobject.c /^_PyBytesWriter_Finish(_PyBytesWriter *writer, void *str)$/;" f +_PyBytesWriter_Init Objects/bytesobject.c /^_PyBytesWriter_Init(_PyBytesWriter *writer)$/;" f +_PyBytesWriter_Prepare Objects/bytesobject.c /^_PyBytesWriter_Prepare(_PyBytesWriter *writer, void *str, Py_ssize_t size)$/;" f +_PyBytesWriter_Resize Objects/bytesobject.c /^_PyBytesWriter_Resize(_PyBytesWriter *writer, void *str, Py_ssize_t size)$/;" f +_PyBytesWriter_WriteBytes Objects/bytesobject.c /^_PyBytesWriter_WriteBytes(_PyBytesWriter *writer, void *ptr,$/;" f +_PyBytes_CAST Include/cpython/bytesobject.h 32;" d +_PyBytes_CHAR_INIT Include/internal/pycore_runtime_init.h 153;" d +_PyBytes_DecodeEscape Objects/bytesobject.c /^PyObject *_PyBytes_DecodeEscape(const char *s,$/;" f +_PyBytes_Find Objects/bytesobject.c /^_PyBytes_Find(const char *haystack, Py_ssize_t len_haystack,$/;" f +_PyBytes_FormatEx Objects/bytesobject.c /^_PyBytes_FormatEx(const char *format, Py_ssize_t format_len,$/;" f +_PyBytes_FromBuffer Objects/bytesobject.c /^_PyBytes_FromBuffer(PyObject *x)$/;" f file: +_PyBytes_FromHex Objects/bytesobject.c /^_PyBytes_FromHex(PyObject *string, int use_bytearray)$/;" f +_PyBytes_FromIterator Objects/bytesobject.c /^_PyBytes_FromIterator(PyObject *it, PyObject *x)$/;" f file: +_PyBytes_FromList Objects/bytesobject.c /^_PyBytes_FromList(PyObject *x)$/;" f file: +_PyBytes_FromSize Objects/bytesobject.c /^_PyBytes_FromSize(Py_ssize_t size, int use_calloc)$/;" f file: +_PyBytes_FromTuple Objects/bytesobject.c /^_PyBytes_FromTuple(PyObject *x)$/;" f file: +_PyBytes_Join Objects/bytesobject.c /^_PyBytes_Join(PyObject *sep, PyObject *x)$/;" f +_PyBytes_Repeat Objects/bytesobject.c /^_PyBytes_Repeat(char* dest, Py_ssize_t len_dest,$/;" f +_PyBytes_Resize Objects/bytesobject.c /^_PyBytes_Resize(PyObject **pv, Py_ssize_t newsize)$/;" f +_PyBytes_ReverseFind Objects/bytesobject.c /^_PyBytes_ReverseFind(const char *haystack, Py_ssize_t len_haystack,$/;" f +_PyBytes_SIMPLE_INIT Include/internal/pycore_runtime_init.h 147;" d +_PyCData_set Modules/_ctypes/_ctypes.c /^_PyCData_set(CDataObject *dst, PyObject *type, SETFUNC setfunc, PyObject *value,$/;" f file: +_PyCFrame Include/cpython/pystate.h /^typedef struct _PyCFrame {$/;" s +_PyCFrame Include/cpython/pystate.h /^} _PyCFrame;$/;" t typeref:struct:_PyCFrame +_PyCFunctionFast Include/methodobject.h /^typedef PyObject *(*_PyCFunctionFast) (PyObject *, PyObject *const *, Py_ssize_t);$/;" t +_PyCFunctionFastWithKeywords Include/methodobject.h /^typedef PyObject *(*_PyCFunctionFastWithKeywords) (PyObject *,$/;" t +_PyCFunctionObject_CAST Include/cpython/methodobject.h 16;" d +_PyCFunctionWithKeywords_TrampolineCall Include/internal/pycore_object.h 436;" d +_PyCFunction_CAST Include/methodobject.h 45;" d +_PyCFunction_TrampolineCall Include/internal/pycore_object.h 428;" d +_PyCFunction_TrampolineCall Include/internal/pycore_object.h 434;" d +_PyCMethodObject_CAST Include/cpython/methodobject.h 28;" d +_PyCOND_T Include/internal/pycore_condvar.h /^typedef struct _PyCOND_T$/;" s +_PyCOND_WAIT_MS Python/condvar.h /^_PyCOND_WAIT_MS(PyCOND_T *cv, PyMUTEX_T *cs, DWORD ms)$/;" f +_PyCallCache Include/internal/pycore_code.h /^} _PyCallCache;$/;" t typeref:struct:__anon26 +_PyCfgBasicblock Include/internal/pycore_flowgraph.h /^} _PyCfgBasicblock;$/;" t typeref:struct:_PyCfgBasicblock_ +_PyCfgBasicblock_ Include/internal/pycore_flowgraph.h /^typedef struct _PyCfgBasicblock_ {$/;" s +_PyCfgBuilder Include/internal/pycore_flowgraph.h /^} _PyCfgBuilder;$/;" t typeref:struct:cfg_builder_ +_PyCfgBuilder_Addop Python/flowgraph.c /^_PyCfgBuilder_Addop(cfg_builder *g, int opcode, int oparg, location loc)$/;" f +_PyCfgBuilder_Fini Python/flowgraph.c /^_PyCfgBuilder_Fini(cfg_builder* g)$/;" f +_PyCfgBuilder_Init Python/flowgraph.c /^_PyCfgBuilder_Init(cfg_builder *g)$/;" f +_PyCfgBuilder_UseLabel Python/flowgraph.c /^_PyCfgBuilder_UseLabel(cfg_builder *g, jump_target_label lbl)$/;" f +_PyCfgExceptStack Include/internal/pycore_flowgraph.h /^} _PyCfgExceptStack;$/;" t typeref:struct:__anon169 +_PyCfgInstruction Include/internal/pycore_flowgraph.h /^} _PyCfgInstruction;$/;" t typeref:struct:__anon167 +_PyCfgJumpTargetLabel Include/internal/pycore_flowgraph.h /^} _PyCfgJumpTargetLabel;$/;" t typeref:struct:__anon168 +_PyCfg_BasicblockLastInstr Python/flowgraph.c /^_PyCfg_BasicblockLastInstr(const basicblock *b) {$/;" f +_PyCfg_ConvertPseudoOps Python/flowgraph.c /^_PyCfg_ConvertPseudoOps(basicblock *entryblock)$/;" f +_PyCfg_JumpLabelsToTargets Python/flowgraph.c /^_PyCfg_JumpLabelsToTargets(basicblock *entryblock)$/;" f +_PyCfg_OptimizeCodeUnit Python/flowgraph.c /^_PyCfg_OptimizeCodeUnit(cfg_builder *g, PyObject *consts, PyObject *const_cache,$/;" f +_PyCfg_ResolveJumps Python/flowgraph.c /^_PyCfg_ResolveJumps(_PyCfgBuilder *g)$/;" f +_PyCfg_Stackdepth Python/flowgraph.c /^_PyCfg_Stackdepth(basicblock *entryblock, int code_flags)$/;" f +_PyChannelState Modules/_xxinterpchannelsmodule.c /^} _PyChannelState;$/;" t typeref:struct:_channel file: +_PyCoCached Include/cpython/code.h /^} _PyCoCached;$/;" t typeref:struct:__anon227 +_PyCoLineInstrumentationData Include/cpython/code.h /^} _PyCoLineInstrumentationData;$/;" t typeref:struct:__anon228 +_PyCoMonitoringData Include/cpython/code.h /^} _PyCoMonitoringData;$/;" t typeref:struct:__anon229 +_PyCodeConstructor Include/internal/pycore_code.h /^struct _PyCodeConstructor {$/;" s +_PyCodeLocationInfoKind Include/cpython/code.h /^typedef enum _PyCodeLocationInfoKind {$/;" g +_PyCodeLocationInfoKind Include/cpython/code.h /^} _PyCodeLocationInfoKind;$/;" t typeref:enum:_PyCodeLocationInfoKind +_PyCodeObjectExtra Objects/codeobject.c /^} _PyCodeObjectExtra;$/;" t typeref:struct:__anon745 file: +_PyCode_CODE Include/cpython/code.h 226;" d +_PyCode_CheckLineNumber Objects/codeobject.c /^_PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds)$/;" f +_PyCode_ConstantKey Objects/codeobject.c /^_PyCode_ConstantKey(PyObject *op)$/;" f +_PyCode_DEF Include/cpython/code.h 109;" d +_PyCode_GetCellvars Objects/codeobject.c /^_PyCode_GetCellvars(PyCodeObject *co)$/;" f +_PyCode_GetCode Objects/codeobject.c /^_PyCode_GetCode(PyCodeObject *co)$/;" f +_PyCode_GetExtra Include/cpython/code.h /^_PyCode_GetExtra(PyObject *code, Py_ssize_t index, void **extra)$/;" f +_PyCode_GetFreevars Objects/codeobject.c /^_PyCode_GetFreevars(PyCodeObject *co)$/;" f +_PyCode_GetVarnames Objects/codeobject.c /^_PyCode_GetVarnames(PyCodeObject *co)$/;" f +_PyCode_InitAddressRange Objects/codeobject.c /^_PyCode_InitAddressRange(PyCodeObject* co, PyCodeAddressRange *bounds)$/;" f +_PyCode_NBYTES Include/cpython/code.h 227;" d +_PyCode_New Objects/codeobject.c /^_PyCode_New(struct _PyCodeConstructor *con)$/;" f +_PyCode_Quicken Python/specialize.c /^_PyCode_Quicken(PyCodeObject *code)$/;" f +_PyCode_SetExtra Include/cpython/code.h /^_PyCode_SetExtra(PyObject *code, Py_ssize_t index, void *extra)$/;" f +_PyCode_Validate Objects/codeobject.c /^_PyCode_Validate(struct _PyCodeConstructor *con)$/;" f +_PyCodecInfo_GetIncrementalDecoder Python/codecs.c /^PyObject *_PyCodecInfo_GetIncrementalDecoder(PyObject *codec_info,$/;" f +_PyCodecInfo_GetIncrementalEncoder Python/codecs.c /^PyObject *_PyCodecInfo_GetIncrementalEncoder(PyObject *codec_info,$/;" f +_PyCodecRegistry_Init Python/codecs.c /^static int _PyCodecRegistry_Init(void)$/;" f file: +_PyCodec_DecodeInternal Python/codecs.c /^_PyCodec_DecodeInternal(PyObject *object,$/;" f file: +_PyCodec_DecodeText Python/codecs.c /^PyObject *_PyCodec_DecodeText(PyObject *object,$/;" f +_PyCodec_EncodeInternal Python/codecs.c /^_PyCodec_EncodeInternal(PyObject *object,$/;" f file: +_PyCodec_EncodeText Python/codecs.c /^PyObject *_PyCodec_EncodeText(PyObject *object,$/;" f +_PyCodec_Lookup Python/codecs.c /^PyObject *_PyCodec_Lookup(const char *encoding)$/;" f +_PyCodec_LookupTextEncoding Python/codecs.c /^PyObject * _PyCodec_LookupTextEncoding(const char *encoding,$/;" f +_PyCodec_TextDecoder Python/codecs.c /^static PyObject * _PyCodec_TextDecoder(const char *encoding)$/;" f file: +_PyCodec_TextEncoder Python/codecs.c /^static PyObject * _PyCodec_TextEncoder(const char *encoding)$/;" f file: +_PyCompactUnicodeObject_CAST Include/cpython/unicodeobject.h 178;" d +_PyCompareOpCache Include/internal/pycore_code.h /^} _PyCompareOpCache;$/;" t typeref:struct:__anon21 +_PyCompile_Assemble Python/compile.c /^_PyCompile_Assemble(_PyCompile_CodeUnitMetadata *umd, PyObject *filename,$/;" f +_PyCompile_CodeGen Python/compile.c /^_PyCompile_CodeGen(PyObject *ast, PyObject *filename, PyCompilerFlags *pflags,$/;" f +_PyCompile_CodeUnitMetadata Include/internal/pycore_compile.h /^} _PyCompile_CodeUnitMetadata;$/;" t typeref:struct:__anon154 +_PyCompile_ConstCacheMergeOne Python/compile.c /^_PyCompile_ConstCacheMergeOne(PyObject *const_cache, PyObject **obj)$/;" f +_PyCompile_EnsureArrayLargeEnough Python/compile.c /^_PyCompile_EnsureArrayLargeEnough(int idx, void **array, int *alloc,$/;" f +_PyCompile_ExceptHandlerInfo Include/internal/pycore_compile.h /^} _PyCompile_ExceptHandlerInfo;$/;" t typeref:struct:__anon151 +_PyCompile_InstrSize Python/compile.c /^_PyCompile_InstrSize(int opcode, int oparg)$/;" f +_PyCompile_Instruction Include/internal/pycore_compile.h /^} _PyCompile_Instruction;$/;" t typeref:struct:__anon152 +_PyCompile_InstructionSequence Include/internal/pycore_compile.h /^} _PyCompile_InstructionSequence;$/;" t typeref:struct:__anon153 +_PyCompile_OptimizeCfg Python/compile.c /^_PyCompile_OptimizeCfg(PyObject *instructions, PyObject *consts, int nlocals)$/;" f +_PyCompilerFlags_INIT Include/cpython/compile.h 31;" d +_PyCompilerSrcLocation Include/cpython/compile.h /^} _PyCompilerSrcLocation;$/;" t typeref:struct:__anon206 +_PyComplex_FormatAdvancedWriter Python/formatter_unicode.c /^_PyComplex_FormatAdvancedWriter(_PyUnicodeWriter *writer,$/;" f +_PyConfigInitEnum Include/internal/pycore_initconfig.h /^} _PyConfigInitEnum;$/;" t typeref:enum:__anon164 +_PyConfig_AsDict Python/initconfig.c /^_PyConfig_AsDict(const PyConfig *config)$/;" f +_PyConfig_Copy Python/initconfig.c /^_PyConfig_Copy(PyConfig *config, const PyConfig *config2)$/;" f +_PyConfig_FromDict Python/initconfig.c /^_PyConfig_FromDict(PyConfig *config, PyObject *dict)$/;" f +_PyConfig_INIT_COMPAT Include/internal/pycore_initconfig.h /^ _PyConfig_INIT_COMPAT = 1,$/;" e enum:__anon164 +_PyConfig_INIT_ISOLATED Include/internal/pycore_initconfig.h /^ _PyConfig_INIT_ISOLATED = 3$/;" e enum:__anon164 +_PyConfig_INIT_PYTHON Include/internal/pycore_initconfig.h /^ _PyConfig_INIT_PYTHON = 2,$/;" e enum:__anon164 +_PyConfig_InitCompatConfig Python/initconfig.c /^_PyConfig_InitCompatConfig(PyConfig *config)$/;" f +_PyConfig_InitImportConfig Python/initconfig.c /^_PyConfig_InitImportConfig(PyConfig *config)$/;" f +_PyConfig_InitPathConfig Modules/getpath.c /^_PyConfig_InitPathConfig(PyConfig *config, int compute_path_config)$/;" f +_PyConfig_InitPathConfig Modules/getpath_noop.c /^_PyConfig_InitPathConfig(PyConfig *config, int compute_path_config)$/;" f +_PyConfig_Read Python/initconfig.c /^_PyConfig_Read(PyConfig *config, int compute_path_config)$/;" f +_PyConfig_SetPyArgv Python/initconfig.c /^_PyConfig_SetPyArgv(PyConfig *config, const _PyArgv *args)$/;" f +_PyConfig_Write Python/initconfig.c /^_PyConfig_Write(const PyConfig *config, _PyRuntimeState *runtime)$/;" f +_PyContextTokenMissing Include/internal/pycore_context.h /^} _PyContextTokenMissing;$/;" t typeref:struct:__anon139 +_PyContextTokenMissing_Type Python/context.c /^PyTypeObject _PyContextTokenMissing_Type = {$/;" v +_PyContext_ClearFreeList Python/context.c /^_PyContext_ClearFreeList(PyInterpreterState *interp)$/;" f +_PyContext_Enter Python/context.c /^_PyContext_Enter(PyThreadState *ts, PyObject *octx)$/;" f file: +_PyContext_Exit Python/context.c /^_PyContext_Exit(PyThreadState *ts, PyObject *octx)$/;" f file: +_PyContext_Fini Python/context.c /^_PyContext_Fini(PyInterpreterState *interp)$/;" f +_PyContext_Init Python/context.c /^_PyContext_Init(PyInterpreterState *interp)$/;" f +_PyContext_NewHamtForTests Python/context.c /^_PyContext_NewHamtForTests(void)$/;" f +_PyCoroWrapper_Type Objects/genobject.c /^PyTypeObject _PyCoroWrapper_Type = {$/;" v +_PyCoro_GetAwaitableIter Objects/genobject.c /^_PyCoro_GetAwaitableIter(PyObject *o)$/;" f +_PyCrossInterpreterData Include/cpython/pystate.h /^typedef struct _xid _PyCrossInterpreterData;$/;" t typeref:struct:_xid +_PyCrossInterpreterData_Clear Python/pystate.c /^_PyCrossInterpreterData_Clear(PyInterpreterState *interp,$/;" f +_PyCrossInterpreterData_Init Python/pystate.c /^_PyCrossInterpreterData_Init(_PyCrossInterpreterData *data,$/;" f +_PyCrossInterpreterData_InitWithSize Python/pystate.c /^_PyCrossInterpreterData_InitWithSize(_PyCrossInterpreterData *data,$/;" f +_PyCrossInterpreterData_Lookup Python/pystate.c /^_PyCrossInterpreterData_Lookup(PyObject *obj)$/;" f +_PyCrossInterpreterData_NewObject Python/pystate.c /^_PyCrossInterpreterData_NewObject(_PyCrossInterpreterData *data)$/;" f +_PyCrossInterpreterData_RegisterClass Python/pystate.c /^_PyCrossInterpreterData_RegisterClass(PyTypeObject *cls,$/;" f +_PyCrossInterpreterData_Release Python/pystate.c /^_PyCrossInterpreterData_Release(_PyCrossInterpreterData *data)$/;" f +_PyCrossInterpreterData_UnregisterClass Python/pystate.c /^_PyCrossInterpreterData_UnregisterClass(PyTypeObject *cls)$/;" f +_PyDateTime_BaseDateTime Include/datetime.h /^} _PyDateTime_BaseDateTime; \/* hastzinfo false *\/$/;" t typeref:struct:__anon268 +_PyDateTime_BaseTZInfo Include/datetime.h /^} _PyDateTime_BaseTZInfo;$/;" t typeref:struct:__anon264 +_PyDateTime_BaseTime Include/datetime.h /^} _PyDateTime_BaseTime; \/* hastzinfo false *\/$/;" t typeref:struct:__anon265 +_PyDateTime_DATETIMEHEAD Include/datetime.h 100;" d +_PyDateTime_DATETIME_DATASIZE Include/datetime.h 31;" d +_PyDateTime_DATE_DATASIZE Include/datetime.h 25;" d +_PyDateTime_HAS_TZINFO Include/datetime.h 120;" d +_PyDateTime_TIMEHEAD Include/datetime.h 72;" d +_PyDateTime_TIME_DATASIZE Include/datetime.h 28;" d +_PyDeadline_Get Python/pytime.c /^_PyDeadline_Get(_PyTime_t deadline)$/;" f +_PyDeadline_Init Python/pytime.c /^_PyDeadline_Init(_PyTime_t timeout)$/;" f +_PyDebugAllocatorStats Objects/obmalloc.c /^_PyDebugAllocatorStats(FILE *out,$/;" f +_PyDebug_PrintTotalRefs Objects/object.c /^_PyDebug_PrintTotalRefs(void) {$/;" f +_PyDictKeys_DecRef Objects/dictobject.c /^_PyDictKeys_DecRef(PyDictKeysObject *keys)$/;" f +_PyDictKeys_GetVersionForCurrentState Objects/dictobject.c /^uint32_t _PyDictKeys_GetVersionForCurrentState(PyInterpreterState *interp,$/;" f +_PyDictKeys_StringLookup Objects/dictobject.c /^_PyDictKeys_StringLookup(PyDictKeysObject* dk, PyObject *key)$/;" f +_PyDictOrValues_GetDict Include/internal/pycore_object.h /^_PyDictOrValues_GetDict(PyDictOrValues dorv)$/;" f +_PyDictOrValues_GetValues Include/internal/pycore_object.h /^_PyDictOrValues_GetValues(PyDictOrValues dorv)$/;" f +_PyDictOrValues_IsValues Include/internal/pycore_object.h /^_PyDictOrValues_IsValues(PyDictOrValues dorv)$/;" f +_PyDictOrValues_SetValues Include/internal/pycore_object.h /^_PyDictOrValues_SetValues(PyDictOrValues *ptr, PyDictValues *values)$/;" f +_PyDictValues_AddToInsertionOrder Include/internal/pycore_dict.h /^_PyDictValues_AddToInsertionOrder(PyDictValues *values, Py_ssize_t ix)$/;" f +_PyDictViewObject Include/cpython/dictobject.h /^} _PyDictViewObject;$/;" t typeref:struct:__anon196 +_PyDictView_Intersect Objects/dictobject.c /^_PyDictView_Intersect(PyObject* self, PyObject *other)$/;" f +_PyDictView_New Objects/dictobject.c /^_PyDictView_New(PyObject *dict, PyTypeObject *type)$/;" f +_PyDict_CheckConsistency Objects/dictobject.c /^_PyDict_CheckConsistency(PyObject *op, int check_content)$/;" f +_PyDict_ClearFreeList Objects/dictobject.c /^_PyDict_ClearFreeList(PyInterpreterState *interp)$/;" f +_PyDict_ContainsId Objects/dictobject.c /^_PyDict_ContainsId(PyObject *op, _Py_Identifier *key)$/;" f +_PyDict_Contains_KnownHash Objects/dictobject.c /^_PyDict_Contains_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash)$/;" f +_PyDict_DebugMallocStats Objects/dictobject.c /^_PyDict_DebugMallocStats(FILE *out)$/;" f +_PyDict_DelItemId Objects/dictobject.c /^_PyDict_DelItemId(PyObject *v, _Py_Identifier *key)$/;" f +_PyDict_DelItemIf Objects/dictobject.c /^_PyDict_DelItemIf(PyObject *op, PyObject *key,$/;" f +_PyDict_DelItem_KnownHash Objects/dictobject.c /^_PyDict_DelItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash)$/;" f +_PyDict_Fini Objects/dictobject.c /^_PyDict_Fini(PyInterpreterState *interp)$/;" f +_PyDict_FromItems Objects/dictobject.c /^_PyDict_FromItems(PyObject *const *keys, Py_ssize_t keys_offset,$/;" f +_PyDict_FromKeys Objects/dictobject.c /^_PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value)$/;" f +_PyDict_GetItemIdWithError Objects/dictobject.c /^_PyDict_GetItemIdWithError(PyObject *dp, _Py_Identifier *key)$/;" f +_PyDict_GetItemStringWithError Objects/dictobject.c /^_PyDict_GetItemStringWithError(PyObject *v, const char *key)$/;" f +_PyDict_GetItemWithError Objects/dictobject.c /^_PyDict_GetItemWithError(PyObject *dp, PyObject *kv)$/;" f +_PyDict_GetItem_KnownHash Objects/dictobject.c /^_PyDict_GetItem_KnownHash(PyObject *op, PyObject *key, Py_hash_t hash)$/;" f +_PyDict_HasOnlyStringKeys Objects/dictobject.c /^_PyDict_HasOnlyStringKeys(PyObject *dict)$/;" f +_PyDict_HasSplitTable Include/cpython/dictobject.h 68;" d +_PyDict_KeysSize Objects/dictobject.c /^_PyDict_KeysSize(PyDictKeysObject *keys)$/;" f +_PyDict_LoadGlobal Objects/dictobject.c /^_PyDict_LoadGlobal(PyDictObject *globals, PyDictObject *builtins, PyObject *key)$/;" f +_PyDict_LookupIndex Objects/dictobject.c /^_PyDict_LookupIndex(PyDictObject *mp, PyObject *key)$/;" f +_PyDict_MaybeUntrack Objects/dictobject.c /^_PyDict_MaybeUntrack(PyObject *op)$/;" f +_PyDict_MergeEx Objects/dictobject.c /^_PyDict_MergeEx(PyObject *a, PyObject *b, int override)$/;" f +_PyDict_NewKeysForClass Objects/dictobject.c /^_PyDict_NewKeysForClass(void)$/;" f +_PyDict_NewPresized Objects/dictobject.c /^_PyDict_NewPresized(Py_ssize_t minused)$/;" f +_PyDict_Next Objects/dictobject.c /^_PyDict_Next(PyObject *op, Py_ssize_t *ppos, PyObject **pkey,$/;" f +_PyDict_NotifyEvent Include/internal/pycore_dict.h /^_PyDict_NotifyEvent(PyInterpreterState *interp,$/;" f +_PyDict_Pop Objects/dictobject.c /^_PyDict_Pop(PyObject *dict, PyObject *key, PyObject *deflt)$/;" f +_PyDict_Pop_KnownHash Objects/dictobject.c /^_PyDict_Pop_KnownHash(PyObject *dict, PyObject *key, Py_hash_t hash, PyObject *deflt)$/;" f +_PyDict_SendEvent Objects/dictobject.c /^_PyDict_SendEvent(int watcher_bits,$/;" f +_PyDict_SetItemId Objects/dictobject.c /^_PyDict_SetItemId(PyObject *v, _Py_Identifier *key, PyObject *item)$/;" f +_PyDict_SetItem_KnownHash Objects/dictobject.c /^_PyDict_SetItem_KnownHash(PyObject *op, PyObject *key, PyObject *value,$/;" f +_PyDict_SetItem_Take2 Objects/dictobject.c /^_PyDict_SetItem_Take2(PyDictObject *mp, PyObject *key, PyObject *value)$/;" f +_PyDict_SizeOf Objects/dictobject.c /^_PyDict_SizeOf(PyDictObject *mp)$/;" f +_PyEncoderObject Modules/_json.c /^typedef struct _PyEncoderObject {$/;" s file: +_PyErr_BadInternalCall Python/errors.c /^_PyErr_BadInternalCall(const char *filename, int lineno)$/;" f +_PyErr_ChainExceptions Python/errors.c /^_PyErr_ChainExceptions(PyObject *typ, PyObject *val, PyObject *tb)$/;" f +_PyErr_ChainExceptions1 Python/errors.c /^_PyErr_ChainExceptions1(PyObject *exc)$/;" f +_PyErr_ChainStackItem Python/errors.c /^_PyErr_ChainStackItem(_PyErr_StackItem *exc_info)$/;" f +_PyErr_CheckSignals Modules/signalmodule.c /^_PyErr_CheckSignals(void)$/;" f +_PyErr_CheckSignalsTstate Modules/signalmodule.c /^_PyErr_CheckSignalsTstate(PyThreadState *tstate)$/;" f +_PyErr_Clear Python/errors.c /^_PyErr_Clear(PyThreadState *tstate)$/;" f +_PyErr_ClearExcState Include/internal/pycore_pyerrors.h /^static inline void _PyErr_ClearExcState(_PyErr_StackItem *exc_state)$/;" f +_PyErr_CreateException Python/errors.c /^_PyErr_CreateException(PyObject *exception_type, PyObject *value)$/;" f file: +_PyErr_Display Python/pythonrun.c /^_PyErr_Display(PyObject *file, PyObject *unused, PyObject *value, PyObject *tb)$/;" f +_PyErr_DisplayException Python/pythonrun.c /^void _PyErr_DisplayException(PyObject *file, PyObject *exc)$/;" f +_PyErr_ExceptionMatches Python/errors.c /^_PyErr_ExceptionMatches(PyThreadState *tstate, PyObject *exc)$/;" f +_PyErr_Fetch Python/errors.c /^_PyErr_Fetch(PyThreadState *tstate, PyObject **p_type, PyObject **p_value,$/;" f +_PyErr_FiniTypes Python/errors.c /^_PyErr_FiniTypes(PyInterpreterState *interp)$/;" f +_PyErr_Format Python/errors.c /^_PyErr_Format(PyThreadState *tstate, PyObject *exception,$/;" f +_PyErr_FormatFromCause Python/errors.c /^_PyErr_FormatFromCause(PyObject *exception, const char *format, ...)$/;" f +_PyErr_FormatFromCauseTstate Python/errors.c /^_PyErr_FormatFromCauseTstate(PyThreadState *tstate, PyObject *exception,$/;" f +_PyErr_FormatNote Python/errors.c /^_PyErr_FormatNote(const char *format, ...)$/;" f +_PyErr_FormatV Python/errors.c /^_PyErr_FormatV(PyThreadState *tstate, PyObject *exception,$/;" f file: +_PyErr_FormatVFromCause Python/errors.c /^_PyErr_FormatVFromCause(PyThreadState *tstate, PyObject *exception,$/;" f file: +_PyErr_GetExcInfo Python/errors.c /^_PyErr_GetExcInfo(PyThreadState *tstate,$/;" f +_PyErr_GetHandledException Python/errors.c /^_PyErr_GetHandledException(PyThreadState *tstate)$/;" f +_PyErr_GetRaisedException Python/errors.c /^_PyErr_GetRaisedException(PyThreadState *tstate) {$/;" f +_PyErr_GetTopmostException Python/errors.c /^_PyErr_GetTopmostException(PyThreadState *tstate)$/;" f +_PyErr_InitTypes Python/errors.c /^_PyErr_InitTypes(PyInterpreterState *interp)$/;" f +_PyErr_NoMemory Objects/exceptions.c /^_PyErr_NoMemory(PyThreadState *tstate)$/;" f +_PyErr_NormalizeException Python/errors.c /^_PyErr_NormalizeException(PyThreadState *tstate, PyObject **exc,$/;" f +_PyErr_Occurred Include/internal/pycore_pyerrors.h /^static inline PyObject* _PyErr_Occurred(PyThreadState *tstate)$/;" f +_PyErr_Print Python/pythonrun.c /^_PyErr_Print(PyThreadState *tstate)$/;" f +_PyErr_PrintEx Python/pythonrun.c /^_PyErr_PrintEx(PyThreadState *tstate, int set_sys_last_vars)$/;" f file: +_PyErr_ProgramDecodedTextObject Python/errors.c /^_PyErr_ProgramDecodedTextObject(PyObject *filename, int lineno, const char* encoding)$/;" f +_PyErr_Restore Python/errors.c /^_PyErr_Restore(PyThreadState *tstate, PyObject *type, PyObject *value,$/;" f +_PyErr_SetFromPyStatus Python/initconfig.c /^_PyErr_SetFromPyStatus(PyStatus status)$/;" f +_PyErr_SetHandledException Python/errors.c /^_PyErr_SetHandledException(PyThreadState *tstate, PyObject *exc)$/;" f +_PyErr_SetImportErrorSubclassWithNameFrom Python/errors.c /^_PyErr_SetImportErrorSubclassWithNameFrom($/;" f file: +_PyErr_SetImportErrorWithNameFrom Python/errors.c /^_PyErr_SetImportErrorWithNameFrom(PyObject *msg, PyObject *name, PyObject *path, PyObject* from_name)$/;" f +_PyErr_SetKeyError Python/errors.c /^_PyErr_SetKeyError(PyObject *arg)$/;" f +_PyErr_SetNone Python/errors.c /^_PyErr_SetNone(PyThreadState *tstate, PyObject *exception)$/;" f +_PyErr_SetObject Python/errors.c /^_PyErr_SetObject(PyThreadState *tstate, PyObject *exception, PyObject *value)$/;" f +_PyErr_SetRaisedException Python/errors.c /^_PyErr_SetRaisedException(PyThreadState *tstate, PyObject *exc)$/;" f +_PyErr_SetString Python/errors.c /^_PyErr_SetString(PyThreadState *tstate, PyObject *exception,$/;" f +_PyErr_StackItem Include/cpython/pystate.h /^} _PyErr_StackItem;$/;" t typeref:struct:_err_stackitem +_PyErr_StackItemToExcInfoTuple Python/errors.c /^_PyErr_StackItemToExcInfoTuple(_PyErr_StackItem *err_info)$/;" f +_PyErr_WarnFormat Python/_warnings.c /^_PyErr_WarnFormat(PyObject *source, PyObject *category, Py_ssize_t stack_level,$/;" f file: +_PyErr_WarnFormatV Python/_warnings.c /^_PyErr_WarnFormatV(PyObject *source,$/;" f file: +_PyErr_WarnUnawaitedCoroutine Python/_warnings.c /^_PyErr_WarnUnawaitedCoroutine(PyObject *coro)$/;" f +_PyErr_WriteUnraisableDefaultHook Python/errors.c /^_PyErr_WriteUnraisableDefaultHook(PyObject *args)$/;" f +_PyErr_WriteUnraisableMsg Python/errors.c /^_PyErr_WriteUnraisableMsg(const char *err_msg_str, PyObject *obj)$/;" f +_PyEvalFrameClearAndPop Python/ceval.c /^_PyEvalFrameClearAndPop(PyThreadState *tstate, _PyInterpreterFrame * frame)$/;" f file: +_PyEvalFramePushAndInit Python/ceval.c /^_PyEvalFramePushAndInit(PyThreadState *tstate, PyFunctionObject *func,$/;" f file: +_PyEvalFramePushAndInit_Ex Python/ceval.c /^_PyEvalFramePushAndInit_Ex(PyThreadState *tstate, PyFunctionObject *func,$/;" f file: +_PyEval_AcquireLock Python/ceval_gil.c /^_PyEval_AcquireLock(PyThreadState *tstate)$/;" f +_PyEval_AddPendingCall Python/ceval_gil.c /^_PyEval_AddPendingCall(PyInterpreterState *interp,$/;" f +_PyEval_BuiltinsFromGlobals Objects/frameobject.c /^_PyEval_BuiltinsFromGlobals(PyThreadState *tstate, PyObject *globals)$/;" f +_PyEval_CallTracing Python/ceval.c /^_PyEval_CallTracing(PyObject *func, PyObject *args)$/;" f +_PyEval_EvalFrame Include/internal/pycore_ceval.h /^_PyEval_EvalFrame(PyThreadState *tstate, struct _PyInterpreterFrame *frame, int throwflag)$/;" f +_PyEval_EvalFrameDefault Python/ceval.c /^_PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int throwflag)$/;" f +_PyEval_Fini Python/ceval_gil.c /^_PyEval_Fini(void)$/;" f +_PyEval_FiniGIL Python/ceval_gil.c /^_PyEval_FiniGIL(PyInterpreterState *interp)$/;" f +_PyEval_FiniState Python/ceval_gil.c /^_PyEval_FiniState(struct _ceval_state *ceval)$/;" f +_PyEval_GetAsyncGenFinalizer Python/ceval.c /^_PyEval_GetAsyncGenFinalizer(void)$/;" f +_PyEval_GetAsyncGenFirstiter Python/ceval.c /^_PyEval_GetAsyncGenFirstiter(void)$/;" f +_PyEval_GetBuiltin Python/ceval.c /^_PyEval_GetBuiltin(PyObject *name)$/;" f +_PyEval_GetBuiltinId Python/ceval.c /^_PyEval_GetBuiltinId(_Py_Identifier *name)$/;" f +_PyEval_GetBuiltins Python/ceval.c /^_PyEval_GetBuiltins(PyThreadState *tstate)$/;" f +_PyEval_GetCoroutineOriginTrackingDepth Python/ceval.c /^_PyEval_GetCoroutineOriginTrackingDepth(void)$/;" f +_PyEval_GetFrame Python/ceval.c /^_PyEval_GetFrame(void)$/;" f +_PyEval_GetFrameLocals Python/ceval.c /^_PyEval_GetFrameLocals(void)$/;" f +_PyEval_GetSwitchInterval Python/ceval_gil.c /^unsigned long _PyEval_GetSwitchInterval(void)$/;" f +_PyEval_InitGIL Python/ceval_gil.c /^_PyEval_InitGIL(PyThreadState *tstate, int own_gil)$/;" f +_PyEval_InitState Python/ceval_gil.c /^_PyEval_InitState(PyInterpreterState *interp, PyThread_type_lock pending_lock)$/;" f +_PyEval_MakePendingCalls Python/ceval_gil.c /^_PyEval_MakePendingCalls(PyThreadState *tstate)$/;" f +_PyEval_RUNTIME_PERF_INIT Include/internal/pycore_ceval_state.h 75;" d +_PyEval_RUNTIME_PERF_INIT Include/internal/pycore_ceval_state.h 81;" d +_PyEval_ReInitThreads Python/ceval_gil.c /^_PyEval_ReInitThreads(PyThreadState *tstate)$/;" f +_PyEval_ReleaseLock Python/ceval_gil.c /^_PyEval_ReleaseLock(PyInterpreterState *interp, PyThreadState *tstate)$/;" f +_PyEval_RequestCodeExtraIndex Include/cpython/ceval.h /^_PyEval_RequestCodeExtraIndex(freefunc f) {$/;" f +_PyEval_SetAsyncGenFinalizer Python/ceval.c /^_PyEval_SetAsyncGenFinalizer(PyObject *finalizer)$/;" f +_PyEval_SetAsyncGenFirstiter Python/ceval.c /^_PyEval_SetAsyncGenFirstiter(PyObject *firstiter)$/;" f +_PyEval_SetCoroutineOriginTrackingDepth Python/ceval.c /^_PyEval_SetCoroutineOriginTrackingDepth(int depth)$/;" f +_PyEval_SetProfile Python/legacy_tracing.c /^_PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg)$/;" f +_PyEval_SetSwitchInterval Python/ceval_gil.c /^void _PyEval_SetSwitchInterval(unsigned long microseconds)$/;" f +_PyEval_SetTrace Python/legacy_tracing.c /^_PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg)$/;" f +_PyEval_SignalAsyncExc Python/ceval_gil.c /^_PyEval_SignalAsyncExc(PyInterpreterState *interp)$/;" f +_PyEval_SignalReceived Python/ceval_gil.c /^_PyEval_SignalReceived(PyInterpreterState *interp)$/;" f +_PyEval_SliceIndex Python/ceval.c /^_PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi)$/;" f +_PyEval_SliceIndexNotNone Python/ceval.c /^_PyEval_SliceIndexNotNone(PyObject *v, Py_ssize_t *pi)$/;" f +_PyEval_ThreadsInitialized Python/ceval_gil.c /^_PyEval_ThreadsInitialized(void)$/;" f +_PyEval_Vector Python/ceval.c /^_PyEval_Vector(PyThreadState *tstate, PyFunctionObject *func,$/;" f +_PyExc_BaseException Objects/exceptions.c /^static PyTypeObject _PyExc_BaseException = {$/;" v file: +_PyExc_ClearExceptionGroupType Objects/exceptions.c /^_PyExc_ClearExceptionGroupType(PyInterpreterState *interp)$/;" f +_PyExc_CreateExceptionGroup Objects/exceptions.c /^_PyExc_CreateExceptionGroup(const char *msg_str, PyObject *excs)$/;" f +_PyExc_Fini Objects/exceptions.c /^_PyExc_Fini(PyInterpreterState *interp)$/;" f +_PyExc_FiniTypes Objects/exceptions.c /^_PyExc_FiniTypes(PyInterpreterState *interp)$/;" f file: +_PyExc_InitGlobalObjects Objects/exceptions.c /^_PyExc_InitGlobalObjects(PyInterpreterState *interp)$/;" f +_PyExc_InitState Objects/exceptions.c /^_PyExc_InitState(PyInterpreterState *interp)$/;" f +_PyExc_InitTypes Objects/exceptions.c /^_PyExc_InitTypes(PyInterpreterState *interp)$/;" f +_PyExc_MemoryError Objects/exceptions.c /^PyTypeObject _PyExc_MemoryError = {$/;" v +_PyExc_PrepReraiseStar Objects/exceptions.c /^_PyExc_PrepReraiseStar(PyObject *orig, PyObject *excs)$/;" f +_PyExc_UnicodeDecodeError Objects/exceptions.c /^static PyTypeObject _PyExc_UnicodeDecodeError = {$/;" v file: +_PyExc_UnicodeEncodeError Objects/exceptions.c /^static PyTypeObject _PyExc_UnicodeEncodeError = {$/;" v file: +_PyExc_UnicodeTranslateError Objects/exceptions.c /^static PyTypeObject _PyExc_UnicodeTranslateError = {$/;" v file: +_PyException_AddNote Objects/exceptions.c /^_PyException_AddNote(PyObject *exc, PyObject *note)$/;" f +_PyFaulthandler_Fini Modules/faulthandler.c /^void _PyFaulthandler_Fini(void)$/;" f +_PyFaulthandler_Init Modules/faulthandler.c /^_PyFaulthandler_Init(int enable)$/;" f +_PyFileIO_closed Modules/_io/fileio.c /^_PyFileIO_closed(PyObject *self)$/;" f +_PyFloat_CAST Include/cpython/floatobject.h 10;" d +_PyFloat_ClearFreeList Objects/floatobject.c /^_PyFloat_ClearFreeList(PyInterpreterState *interp)$/;" f +_PyFloat_DebugMallocStats Objects/floatobject.c /^_PyFloat_DebugMallocStats(FILE *out)$/;" f +_PyFloat_ExactDealloc Objects/floatobject.c /^_PyFloat_ExactDealloc(PyObject *obj)$/;" f +_PyFloat_Fini Objects/floatobject.c /^_PyFloat_Fini(PyInterpreterState *interp)$/;" f +_PyFloat_FiniType Objects/floatobject.c /^_PyFloat_FiniType(PyInterpreterState *interp)$/;" f +_PyFloat_FormatAdvancedWriter Python/formatter_unicode.c /^_PyFloat_FormatAdvancedWriter(_PyUnicodeWriter *writer,$/;" f +_PyFloat_FromPyTime Modules/timemodule.c /^_PyFloat_FromPyTime(_PyTime_t t)$/;" f file: +_PyFloat_InitState Objects/floatobject.c /^_PyFloat_InitState(PyInterpreterState *interp)$/;" f +_PyFloat_InitTypes Objects/floatobject.c /^_PyFloat_InitTypes(PyInterpreterState *interp)$/;" f +_PyForIterCache Include/internal/pycore_code.h /^} _PyForIterCache;$/;" t typeref:struct:__anon28 +_PyFrameEvalFunction Include/cpython/pystate.h /^typedef PyObject* (*_PyFrameEvalFunction)(PyThreadState *tstate, struct _PyInterpreterFrame *, int);$/;" t +_PyFrame_ClearExceptCode Python/frame.c /^_PyFrame_ClearExceptCode(_PyInterpreterFrame *frame)$/;" f +_PyFrame_Copy Python/frame.c /^_PyFrame_Copy(_PyInterpreterFrame *src, _PyInterpreterFrame *dest)$/;" f +_PyFrame_FastToLocalsWithError Objects/frameobject.c /^_PyFrame_FastToLocalsWithError(_PyInterpreterFrame *frame)$/;" f +_PyFrame_GetFirstComplete Include/internal/pycore_frame.h /^_PyFrame_GetFirstComplete(_PyInterpreterFrame *frame)$/;" f +_PyFrame_GetFrameObject Include/internal/pycore_frame.h /^_PyFrame_GetFrameObject(_PyInterpreterFrame *frame)$/;" f +_PyFrame_GetGenerator Include/internal/pycore_frame.h /^PyGenObject *_PyFrame_GetGenerator(_PyInterpreterFrame *frame)$/;" f +_PyFrame_GetLocals Objects/frameobject.c /^_PyFrame_GetLocals(_PyInterpreterFrame *frame, int include_hidden)$/;" f +_PyFrame_GetLocalsArray Include/internal/pycore_frame.h /^_PyFrame_GetLocalsArray(_PyInterpreterFrame *frame)$/;" f +_PyFrame_GetStackPointer Include/internal/pycore_frame.h /^_PyFrame_GetStackPointer(_PyInterpreterFrame *frame)$/;" f +_PyFrame_GetState Objects/frameobject.c /^_PyFrame_GetState(PyFrameObject *frame)$/;" f file: +_PyFrame_Initialize Include/internal/pycore_frame.h /^_PyFrame_Initialize($/;" f +_PyFrame_IsEntryFrame Objects/frameobject.c /^_PyFrame_IsEntryFrame(PyFrameObject *frame)$/;" f +_PyFrame_IsIncomplete Include/internal/pycore_frame.h /^_PyFrame_IsIncomplete(_PyInterpreterFrame *frame)$/;" f +_PyFrame_LocalsToFast Objects/frameobject.c /^_PyFrame_LocalsToFast(_PyInterpreterFrame *frame, int clear)$/;" f +_PyFrame_MakeAndSetFrameObject Python/frame.c /^_PyFrame_MakeAndSetFrameObject(_PyInterpreterFrame *frame)$/;" f +_PyFrame_New_NoTrack Objects/frameobject.c /^_PyFrame_New_NoTrack(PyCodeObject *code)$/;" f +_PyFrame_NumSlotsForCodeObject Include/internal/pycore_frame.h /^_PyFrame_NumSlotsForCodeObject(PyCodeObject *code)$/;" f +_PyFrame_OpAlreadyRan Objects/frameobject.c /^_PyFrame_OpAlreadyRan(_PyInterpreterFrame *frame, int opcode, int oparg)$/;" f file: +_PyFrame_PushUnchecked Include/internal/pycore_frame.h /^_PyFrame_PushUnchecked(PyThreadState *tstate, PyFunctionObject *func, int null_locals_from)$/;" f +_PyFrame_SetStackPointer Include/internal/pycore_frame.h /^_PyFrame_SetStackPointer(_PyInterpreterFrame *frame, PyObject **stack_pointer)$/;" f +_PyFrame_StackPeek Include/internal/pycore_frame.h /^static inline PyObject *_PyFrame_StackPeek(_PyInterpreterFrame *f) {$/;" f +_PyFrame_StackPop Include/internal/pycore_frame.h /^static inline PyObject *_PyFrame_StackPop(_PyInterpreterFrame *f) {$/;" f +_PyFrame_StackPush Include/internal/pycore_frame.h /^static inline void _PyFrame_StackPush(_PyInterpreterFrame *f, PyObject *value) {$/;" f +_PyFrame_Stackbase Include/internal/pycore_frame.h /^static inline PyObject **_PyFrame_Stackbase(_PyInterpreterFrame *f) {$/;" f +_PyFrame_Traverse Python/frame.c /^_PyFrame_Traverse(_PyInterpreterFrame *frame, visitproc visit, void *arg)$/;" f +_PyFunction_CAST Include/cpython/funcobject.h 88;" d +_PyFunction_FromConstructor Objects/funcobject.c /^_PyFunction_FromConstructor(PyFrameConstructor *constr)$/;" f +_PyFunction_GetVersionForCurrentState Objects/funcobject.c /^uint32_t _PyFunction_GetVersionForCurrentState(PyFunctionObject *func)$/;" f +_PyFunction_Vectorcall Objects/call.c /^_PyFunction_Vectorcall(PyObject *func, PyObject* const* stack,$/;" f +_PyFuture Lib/asyncio/futures.py /^_PyFuture = Future$/;" v +_PyFuture_FromAST Python/future.c /^_PyFuture_FromAST(mod_ty mod, PyObject *filename, PyFutureFeatures *ff)$/;" f +_PyGCHead_FINALIZED Include/internal/pycore_gc.h /^static inline int _PyGCHead_FINALIZED(PyGC_Head *gc) {$/;" f +_PyGCHead_NEXT Include/internal/pycore_gc.h /^static inline PyGC_Head* _PyGCHead_NEXT(PyGC_Head *gc) {$/;" f +_PyGCHead_PREV Include/internal/pycore_gc.h /^static inline PyGC_Head* _PyGCHead_PREV(PyGC_Head *gc) {$/;" f +_PyGCHead_SET_FINALIZED Include/internal/pycore_gc.h /^static inline void _PyGCHead_SET_FINALIZED(PyGC_Head *gc) {$/;" f +_PyGCHead_SET_NEXT Include/internal/pycore_gc.h /^static inline void _PyGCHead_SET_NEXT(PyGC_Head *gc, PyGC_Head *next) {$/;" f +_PyGCHead_SET_PREV Include/internal/pycore_gc.h /^static inline void _PyGCHead_SET_PREV(PyGC_Head *gc, PyGC_Head *prev) {$/;" f +_PyGC_CollectNoFail Modules/gcmodule.c /^_PyGC_CollectNoFail(PyThreadState *tstate)$/;" f +_PyGC_Dump Modules/gcmodule.c /^_PyGC_Dump(PyGC_Head *g)$/;" f +_PyGC_DumpShutdownStats Modules/gcmodule.c /^_PyGC_DumpShutdownStats(PyInterpreterState *interp)$/;" f +_PyGC_FINALIZED Include/cpython/objimpl.h 85;" d +_PyGC_FINALIZED Include/internal/pycore_gc.h /^static inline int _PyGC_FINALIZED(PyObject *op) {$/;" f +_PyGC_Fini Modules/gcmodule.c /^_PyGC_Fini(PyInterpreterState *interp)$/;" f +_PyGC_Head_UNUSED Include/internal/pycore_gc.h 25;" d +_PyGC_Init Modules/gcmodule.c /^_PyGC_Init(PyInterpreterState *interp)$/;" f +_PyGC_InitState Modules/gcmodule.c /^_PyGC_InitState(GCState *gcstate)$/;" f +_PyGC_PREV_MASK Include/internal/pycore_gc.h 54;" d +_PyGC_PREV_MASK_COLLECTING Include/internal/pycore_gc.h 51;" d +_PyGC_PREV_MASK_FINALIZED Include/internal/pycore_gc.h 49;" d +_PyGC_PREV_SHIFT Include/internal/pycore_gc.h 53;" d +_PyGC_SET_FINALIZED Include/internal/pycore_gc.h /^static inline void _PyGC_SET_FINALIZED(PyObject *op) {$/;" f +_PyGILState_Fini Python/pystate.c /^_PyGILState_Fini(PyInterpreterState *interp)$/;" f +_PyGILState_GetInterpreterStateUnsafe Python/pystate.c /^_PyGILState_GetInterpreterStateUnsafe(void)$/;" f +_PyGILState_Init Python/pystate.c /^_PyGILState_Init(PyInterpreterState *interp)$/;" f +_PyGILState_SetTstate Python/pystate.c /^_PyGILState_SetTstate(PyThreadState *tstate)$/;" f +_PyGenObject_HEAD Include/cpython/genobject.h 14;" d +_PyGenObject_HEAD Include/cpython/genobject.h 83;" d +_PyGen_FetchStopIterationValue Objects/genobject.c /^_PyGen_FetchStopIterationValue(PyObject **pvalue)$/;" f +_PyGen_Finalize Objects/genobject.c /^_PyGen_Finalize(PyObject *self)$/;" f +_PyGen_GetCode Objects/genobject.c /^_PyGen_GetCode(PyGenObject *gen) {$/;" f file: +_PyGen_SetStopIterationValue Objects/genobject.c /^_PyGen_SetStopIterationValue(PyObject *value)$/;" f +_PyGen_yf Objects/genobject.c /^_PyGen_yf(PyGenObject *gen)$/;" f +_PyGenericAlias_Check Include/internal/pycore_unionobject.h 15;" d +_PyHASH_10INV Lib/_pydecimal.py /^_PyHASH_10INV = pow(10, _PyHASH_MODULUS - 2, _PyHASH_MODULUS)$/;" v +_PyHASH_10INV Modules/_decimal/tests/bignum.py /^_PyHASH_10INV = pow(10, _PyHASH_MODULUS - 2, _PyHASH_MODULUS)$/;" v +_PyHASH_BITS Include/pyhash.h 25;" d +_PyHASH_BITS Include/pyhash.h 27;" d +_PyHASH_IMAG Include/pyhash.h 32;" d +_PyHASH_INF Include/pyhash.h 31;" d +_PyHASH_INF Lib/_pydecimal.py /^_PyHASH_INF = sys.hash_info.inf$/;" v +_PyHASH_INF Lib/fractions.py /^_PyHASH_INF = sys.hash_info.inf$/;" v +_PyHASH_INF Lib/test/test_numeric_tower.py /^_PyHASH_INF = sys.hash_info.inf$/;" v +_PyHASH_INF Modules/_decimal/tests/bignum.py /^_PyHASH_INF = sys.hash_info.inf$/;" v +_PyHASH_MODULUS Include/pyhash.h 30;" d +_PyHASH_MODULUS Lib/_pydecimal.py /^_PyHASH_MODULUS = sys.hash_info.modulus$/;" v +_PyHASH_MODULUS Lib/fractions.py /^_PyHASH_MODULUS = sys.hash_info.modulus$/;" v +_PyHASH_MODULUS Lib/test/test_numeric_tower.py /^_PyHASH_MODULUS = sys.hash_info.modulus$/;" v +_PyHASH_MODULUS Modules/_decimal/tests/bignum.py /^_PyHASH_MODULUS = sys.hash_info.modulus$/;" v +_PyHASH_MULTIPLIER Include/pyhash.h 18;" d +_PyHASH_NAN Lib/_pydecimal.py /^_PyHASH_NAN = sys.hash_info.nan$/;" v +_PyHASH_NAN Modules/_decimal/tests/bignum.py /^_PyHASH_NAN = sys.hash_info.nan$/;" v +_PyHASH_SLICE_PART Objects/sliceobject.c 659;" d file: +_PyHASH_SLICE_PART Objects/sliceobject.c 671;" d file: +_PyHASH_XXPRIME_1 Objects/sliceobject.c 644;" d file: +_PyHASH_XXPRIME_1 Objects/sliceobject.c 649;" d file: +_PyHASH_XXPRIME_1 Objects/tupleobject.c 305;" d file: +_PyHASH_XXPRIME_1 Objects/tupleobject.c 310;" d file: +_PyHASH_XXPRIME_2 Objects/sliceobject.c 645;" d file: +_PyHASH_XXPRIME_2 Objects/sliceobject.c 650;" d file: +_PyHASH_XXPRIME_2 Objects/tupleobject.c 306;" d file: +_PyHASH_XXPRIME_2 Objects/tupleobject.c 311;" d file: +_PyHASH_XXPRIME_5 Objects/sliceobject.c 646;" d file: +_PyHASH_XXPRIME_5 Objects/sliceobject.c 651;" d file: +_PyHASH_XXPRIME_5 Objects/tupleobject.c 307;" d file: +_PyHASH_XXPRIME_5 Objects/tupleobject.c 312;" d file: +_PyHASH_XXROTATE Objects/sliceobject.c 647;" d file: +_PyHASH_XXROTATE Objects/sliceobject.c 652;" d file: +_PyHASH_XXROTATE Objects/tupleobject.c 308;" d file: +_PyHASH_XXROTATE Objects/tupleobject.c 313;" d file: +_PyHamtItems_Type Python/hamt.c /^PyTypeObject _PyHamtItems_Type = {$/;" v +_PyHamtKeys_Type Python/hamt.c /^PyTypeObject _PyHamtKeys_Type = {$/;" v +_PyHamtValues_Type Python/hamt.c /^PyTypeObject _PyHamtValues_Type = {$/;" v +_PyHamt_ArrayNode_Type Python/hamt.c /^PyTypeObject _PyHamt_ArrayNode_Type = {$/;" v +_PyHamt_Assoc Python/hamt.c /^_PyHamt_Assoc(PyHamtObject *o, PyObject *key, PyObject *val)$/;" f +_PyHamt_BitmapNode_Type Python/hamt.c /^PyTypeObject _PyHamt_BitmapNode_Type = {$/;" v +_PyHamt_CollisionNode_Type Python/hamt.c /^PyTypeObject _PyHamt_CollisionNode_Type = {$/;" v +_PyHamt_Eq Python/hamt.c /^_PyHamt_Eq(PyHamtObject *v, PyHamtObject *w)$/;" f +_PyHamt_Find Python/hamt.c /^_PyHamt_Find(PyHamtObject *o, PyObject *key, PyObject **val)$/;" f +_PyHamt_Len Python/hamt.c /^_PyHamt_Len(PyHamtObject *o)$/;" f +_PyHamt_New Python/hamt.c /^_PyHamt_New(void)$/;" f +_PyHamt_NewIterItems Python/hamt.c /^_PyHamt_NewIterItems(PyHamtObject *o)$/;" f +_PyHamt_NewIterKeys Python/hamt.c /^_PyHamt_NewIterKeys(PyHamtObject *o)$/;" f +_PyHamt_NewIterValues Python/hamt.c /^_PyHamt_NewIterValues(PyHamtObject *o)$/;" f +_PyHamt_Type Python/hamt.c /^PyTypeObject _PyHamt_Type = {$/;" v +_PyHamt_Without Python/hamt.c /^_PyHamt_Without(PyHamtObject *o, PyObject *key)$/;" f +_PyHash_Fini Python/pyhash.c /^_PyHash_Fini(void)$/;" f +_PyHeapType_GET_MEMBERS Objects/typeobject.c /^_PyHeapType_GET_MEMBERS(PyHeapTypeObject* type)$/;" f file: +_PyIOBase_cannot_pickle Modules/_io/iobase.c /^_PyIOBase_cannot_pickle(PyObject *self, PyObject *args)$/;" f +_PyIOBase_check_closed Modules/_io/iobase.c /^_PyIOBase_check_closed(PyObject *self, PyObject *args)$/;" f +_PyIOBase_check_readable Modules/_io/iobase.c /^_PyIOBase_check_readable(_PyIO_State *state, PyObject *self, PyObject *args)$/;" f +_PyIOBase_check_seekable Modules/_io/iobase.c /^_PyIOBase_check_seekable(_PyIO_State *state, PyObject *self, PyObject *args)$/;" f +_PyIOBase_check_writable Modules/_io/iobase.c /^_PyIOBase_check_writable(_PyIO_State *state, PyObject *self, PyObject *args)$/;" f +_PyIOBase_finalize Modules/_io/iobase.c /^_PyIOBase_finalize(PyObject *self)$/;" f +_PyIO_Module Modules/_io/_iomodule.c /^struct PyModuleDef _PyIO_Module = {$/;" v typeref:struct:PyModuleDef +_PyIO_State Modules/_io/_iomodule.h /^typedef struct _io_state _PyIO_State; \/\/ Forward decl.$/;" t typeref:struct:_io_state +_PyIO_find_line_ending Modules/_io/textio.c /^_PyIO_find_line_ending($/;" f +_PyIO_get_console_type Modules/_io/winconsoleio.c /^char _PyIO_get_console_type(PyObject *path_or_fd) {$/;" f +_PyIO_trap_eintr Modules/_io/bufferedio.c /^_PyIO_trap_eintr(void)$/;" f +_PyImport_AcquireLock Python/import.c /^_PyImport_AcquireLock(PyInterpreterState *interp)$/;" f +_PyImport_BlessMyLoader Python/import.c /^_PyImport_BlessMyLoader(PyInterpreterState *interp, PyObject *module_globals)$/;" f +_PyImport_CheckSubinterpIncompatibleExtensionAllowed Python/import.c /^_PyImport_CheckSubinterpIncompatibleExtensionAllowed(const char *name)$/;" f +_PyImport_ClearCore Python/import.c /^_PyImport_ClearCore(PyInterpreterState *interp)$/;" f +_PyImport_ClearExtension Python/import.c /^_PyImport_ClearExtension(PyObject *name, PyObject *filename)$/;" f +_PyImport_ClearModules Python/import.c /^_PyImport_ClearModules(PyInterpreterState *interp)$/;" f +_PyImport_ClearModulesByIndex Python/import.c /^_PyImport_ClearModulesByIndex(PyInterpreterState *interp)$/;" f +_PyImport_DynLoadFiletab Python/dynload_hpux.c /^const char *_PyImport_DynLoadFiletab[] = {SHLIB_EXT, ".sl", NULL};$/;" v +_PyImport_DynLoadFiletab Python/dynload_shlib.c /^const char *_PyImport_DynLoadFiletab[] = {$/;" v +_PyImport_DynLoadFiletab Python/dynload_stub.c /^const char *_PyImport_DynLoadFiletab[] = {NULL};$/;" v +_PyImport_DynLoadFiletab Python/dynload_win.c /^const char *_PyImport_DynLoadFiletab[] = {$/;" v +_PyImport_FindSharedFuncptr Python/dynload_hpux.c /^dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix,$/;" f +_PyImport_FindSharedFuncptr Python/dynload_shlib.c /^_PyImport_FindSharedFuncptr(const char *prefix,$/;" f +_PyImport_FindSharedFuncptrWindows Python/dynload_win.c /^dl_funcptr _PyImport_FindSharedFuncptrWindows(const char *prefix,$/;" f +_PyImport_Fini Python/import.c /^_PyImport_Fini(void)$/;" f +_PyImport_Fini2 Python/import.c /^_PyImport_Fini2(void)$/;" f +_PyImport_FiniCore Python/import.c /^_PyImport_FiniCore(PyInterpreterState *interp)$/;" f +_PyImport_FiniExternal Python/import.c /^_PyImport_FiniExternal(PyInterpreterState *interp)$/;" f +_PyImport_FixupBuiltin Python/import.c /^_PyImport_FixupBuiltin(PyObject *mod, const char *name, PyObject *modules)$/;" f +_PyImport_FixupExtensionObject Python/import.c /^_PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,$/;" f +_PyImport_FrozenAliases Programs/_bootstrap_python.c /^const struct _module_alias *_PyImport_FrozenAliases = aliases;$/;" v typeref:struct:_module_alias +_PyImport_FrozenAliases Programs/_freeze_module.c /^const struct _module_alias *_PyImport_FrozenAliases;$/;" v typeref:struct:_module_alias +_PyImport_FrozenAliases Python/frozen.c /^const struct _module_alias *_PyImport_FrozenAliases = aliases;$/;" v typeref:struct:_module_alias +_PyImport_FrozenBootstrap Programs/_bootstrap_python.c /^const struct _frozen *_PyImport_FrozenBootstrap = bootstrap_modules;$/;" v typeref:struct:_frozen +_PyImport_FrozenBootstrap Programs/_freeze_module.c /^const struct _frozen *_PyImport_FrozenBootstrap;$/;" v typeref:struct:_frozen +_PyImport_FrozenBootstrap Python/frozen.c /^const struct _frozen *_PyImport_FrozenBootstrap = bootstrap_modules;$/;" v typeref:struct:_frozen +_PyImport_FrozenStdlib Programs/_bootstrap_python.c /^const struct _frozen *_PyImport_FrozenStdlib = stdlib_modules;$/;" v typeref:struct:_frozen +_PyImport_FrozenStdlib Programs/_freeze_module.c /^const struct _frozen *_PyImport_FrozenStdlib;$/;" v typeref:struct:_frozen +_PyImport_FrozenStdlib Python/frozen.c /^const struct _frozen *_PyImport_FrozenStdlib = stdlib_modules;$/;" v typeref:struct:_frozen +_PyImport_FrozenTest Programs/_bootstrap_python.c /^const struct _frozen *_PyImport_FrozenTest = test_modules;$/;" v typeref:struct:_frozen +_PyImport_FrozenTest Programs/_freeze_module.c /^const struct _frozen *_PyImport_FrozenTest;$/;" v typeref:struct:_frozen +_PyImport_FrozenTest Python/frozen.c /^const struct _frozen *_PyImport_FrozenTest = test_modules;$/;" v typeref:struct:_frozen +_PyImport_GetBuiltinModuleNames Python/import.c /^_PyImport_GetBuiltinModuleNames(void)$/;" f +_PyImport_GetDLOpenFlags Python/import.c /^_PyImport_GetDLOpenFlags(PyInterpreterState *interp)$/;" f +_PyImport_GetImportlibExternalLoader Python/import.c /^_PyImport_GetImportlibExternalLoader(PyInterpreterState *interp,$/;" f +_PyImport_GetImportlibLoader Python/import.c /^_PyImport_GetImportlibLoader(PyInterpreterState *interp,$/;" f +_PyImport_GetModuleAttr Python/import.c /^_PyImport_GetModuleAttr(PyObject *modname, PyObject *attrname)$/;" f +_PyImport_GetModuleAttrString Python/import.c /^_PyImport_GetModuleAttrString(const char *modname, const char *attrname)$/;" f +_PyImport_GetModuleId Python/import.c /^_PyImport_GetModuleId(_Py_Identifier *nameid)$/;" f +_PyImport_GetModules Python/import.c /^_PyImport_GetModules(PyInterpreterState *interp)$/;" f +_PyImport_GetNextModuleIndex Python/import.c /^_PyImport_GetNextModuleIndex(void)$/;" f +_PyImport_ImportlibModuleRepr Python/import.c /^_PyImport_ImportlibModuleRepr(PyInterpreterState *interp, PyObject *m)$/;" f +_PyImport_Init Python/import.c /^_PyImport_Init(void)$/;" f +_PyImport_InitCore Python/import.c /^_PyImport_InitCore(PyThreadState *tstate, PyObject *sysmod, int importlib)$/;" f +_PyImport_InitDefaultImportFunc Python/import.c /^_PyImport_InitDefaultImportFunc(PyInterpreterState *interp)$/;" f +_PyImport_InitExternal Python/import.c /^_PyImport_InitExternal(PyThreadState *tstate)$/;" f +_PyImport_InitFunc_TrampolineCall Python/importdl.h 18;" d +_PyImport_InitModules Python/import.c /^_PyImport_InitModules(PyInterpreterState *interp)$/;" f +_PyImport_Inittab PC/config.c /^struct _inittab _PyImport_Inittab[] = {$/;" v typeref:struct:_inittab +_PyImport_Inittab PC/config_minimal.c /^struct _inittab _PyImport_Inittab[] = {$/;" v typeref:struct:_inittab +_PyImport_IsDefaultImportFunc Python/import.c /^_PyImport_IsDefaultImportFunc(PyInterpreterState *interp, PyObject *func)$/;" f +_PyImport_IsInitialized Python/import.c /^_PyImport_IsInitialized(PyInterpreterState *interp)$/;" f +_PyImport_LoadDynamicModuleWithSpec Python/importdl.c /^_PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *fp)$/;" f +_PyImport_ReInitLock Python/import.c /^_PyImport_ReInitLock(PyInterpreterState *interp)$/;" f +_PyImport_ReleaseLock Python/import.c /^_PyImport_ReleaseLock(PyInterpreterState *interp)$/;" f +_PyImport_ResolveNameWithPackageContext Python/import.c /^_PyImport_ResolveNameWithPackageContext(const char *name)$/;" f +_PyImport_SetDLOpenFlags Python/import.c /^_PyImport_SetDLOpenFlags(PyInterpreterState *interp, int new_val)$/;" f +_PyImport_SetModule Python/import.c /^_PyImport_SetModule(PyObject *name, PyObject *m)$/;" f +_PyImport_SetModuleString Python/import.c /^_PyImport_SetModuleString(const char *name, PyObject *m)$/;" f +_PyImport_SwapPackageContext Python/import.c /^_PyImport_SwapPackageContext(const char *newcontext)$/;" f +_PyIncrementalNewlineDecoder_decode Modules/_io/textio.c /^_PyIncrementalNewlineDecoder_decode(PyObject *myself,$/;" f +_PyIndex_Check Include/internal/pycore_abstract.h /^_PyIndex_Check(PyObject *obj)$/;" f +_PyInstanceMethod_CAST Include/cpython/classobject.h 56;" d +_PyInstrumentation_DISABLE Python/instrumentation.c /^PyObject _PyInstrumentation_DISABLE =$/;" v +_PyInstrumentation_MISSING Python/instrumentation.c /^PyObject _PyInstrumentation_MISSING =$/;" v +_PyInterpreterConfig_INIT Include/cpython/pylifecycle.h 83;" d +_PyInterpreterConfig_LEGACY_INIT Include/cpython/pylifecycle.h 94;" d +_PyInterpreterFrame Include/internal/pycore_frame.h /^typedef struct _PyInterpreterFrame {$/;" s +_PyInterpreterFrame Include/internal/pycore_frame.h /^} _PyInterpreterFrame;$/;" t typeref:struct:_PyInterpreterFrame +_PyInterpreterFrame_LASTI Include/internal/pycore_frame.h 75;" d +_PyInterpreterID_LookUp Objects/interpreteridobject.c /^_PyInterpreterID_LookUp(PyObject *requested_id)$/;" f +_PyInterpreterID_New Objects/interpreteridobject.c /^PyObject *_PyInterpreterID_New(int64_t id)$/;" f +_PyInterpreterID_Type Objects/interpreteridobject.c /^PyTypeObject _PyInterpreterID_Type = {$/;" v +_PyInterpreterState_Clear Python/pystate.c /^_PyInterpreterState_Clear(PyThreadState *tstate)$/;" f +_PyInterpreterState_DeleteExceptMain Python/pystate.c /^_PyInterpreterState_DeleteExceptMain(_PyRuntimeState *runtime)$/;" f +_PyInterpreterState_Enable Python/pystate.c /^_PyInterpreterState_Enable(_PyRuntimeState *runtime)$/;" f +_PyInterpreterState_FinalizeAllocatedBlocks Objects/obmalloc.c /^_PyInterpreterState_FinalizeAllocatedBlocks(PyInterpreterState *interp)$/;" f +_PyInterpreterState_FinalizeRefTotal Objects/object.c /^_PyInterpreterState_FinalizeRefTotal(PyInterpreterState *interp)$/;" f +_PyInterpreterState_GET Include/internal/pycore_pystate.h /^static inline PyInterpreterState* _PyInterpreterState_GET(void) {$/;" f +_PyInterpreterState_Get Include/cpython/pystate.h 266;" d +_PyInterpreterState_GetAllocatedBlocks Objects/obmalloc.c /^_PyInterpreterState_GetAllocatedBlocks(PyInterpreterState *interp)$/;" f +_PyInterpreterState_GetConfig Python/pystate.c /^_PyInterpreterState_GetConfig(PyInterpreterState *interp)$/;" f +_PyInterpreterState_GetConfigCopy Python/pystate.c /^_PyInterpreterState_GetConfigCopy(PyConfig *config)$/;" f +_PyInterpreterState_GetEvalFrameFunc Python/pystate.c /^_PyInterpreterState_GetEvalFrameFunc(PyInterpreterState *interp)$/;" f +_PyInterpreterState_GetFinalizing Include/internal/pycore_interp.h /^_PyInterpreterState_GetFinalizing(PyInterpreterState *interp) {$/;" f +_PyInterpreterState_GetIDObject Objects/interpreteridobject.c /^_PyInterpreterState_GetIDObject(PyInterpreterState *interp)$/;" f +_PyInterpreterState_GetMainModule Python/pystate.c /^_PyInterpreterState_GetMainModule(PyInterpreterState *interp)$/;" f +_PyInterpreterState_GetRefTotal Objects/object.c /^_PyInterpreterState_GetRefTotal(PyInterpreterState *interp)$/;" f +_PyInterpreterState_HasFeature Python/pystate.c /^_PyInterpreterState_HasFeature(PyInterpreterState *interp, unsigned long feature)$/;" f +_PyInterpreterState_IDDecref Python/pystate.c /^_PyInterpreterState_IDDecref(PyInterpreterState *interp)$/;" f +_PyInterpreterState_IDIncref Python/pystate.c /^_PyInterpreterState_IDIncref(PyInterpreterState *interp)$/;" f +_PyInterpreterState_IDInitref Python/pystate.c /^_PyInterpreterState_IDInitref(PyInterpreterState *interp)$/;" f +_PyInterpreterState_INIT Include/internal/pycore_runtime_init.h 87;" d +_PyInterpreterState_LookUpID Python/pystate.c /^_PyInterpreterState_LookUpID(int64_t requested_id)$/;" f +_PyInterpreterState_Main Include/internal/pycore_pystate.h /^_PyInterpreterState_Main(void)$/;" f +_PyInterpreterState_RequireIDRef Python/pystate.c /^_PyInterpreterState_RequireIDRef(PyInterpreterState *interp, int required)$/;" f +_PyInterpreterState_RequiresIDRef Python/pystate.c /^_PyInterpreterState_RequiresIDRef(PyInterpreterState *interp)$/;" f +_PyInterpreterState_SetConfig Python/pylifecycle.c /^_PyInterpreterState_SetConfig(const PyConfig *src_config)$/;" f +_PyInterpreterState_SetEvalFrameFunc Python/pystate.c /^_PyInterpreterState_SetEvalFrameFunc(PyInterpreterState *interp,$/;" f +_PyInterpreterState_SetFinalizing Include/internal/pycore_interp.h /^_PyInterpreterState_SetFinalizing(PyInterpreterState *interp, PyThreadState *tstate) {$/;" f +_PyIntrinsics_BinaryFunctions Python/intrinsics.c /^_PyIntrinsics_BinaryFunctions[] = {$/;" v +_PyIntrinsics_UnaryFunctions Python/intrinsics.c /^_PyIntrinsics_UnaryFunctions[] = {$/;" v +_PyIsPerfTrampolineActive Python/perf_trampoline.c /^_PyIsPerfTrampolineActive(void)$/;" f +_PyIsSelectable_fd Include/fileobject.h 35;" d +_PyIsSelectable_fd Include/fileobject.h 37;" d +_PyLegacyEventHandler Python/legacy_tracing.c /^typedef struct _PyLegacyEventHandler {$/;" s file: +_PyLegacyEventHandler Python/legacy_tracing.c /^} _PyLegacyEventHandler;$/;" t typeref:struct:_PyLegacyEventHandler file: +_PyLegacyEventHandler_Type Python/legacy_tracing.c /^PyTypeObject _PyLegacyEventHandler_Type = {$/;" v +_PyLineIterator Objects/codeobject.c /^PyTypeObject _PyLineIterator = {$/;" v +_PyLineTable_InitAddressRange Objects/codeobject.c /^_PyLineTable_InitAddressRange(const char *linetable, Py_ssize_t length, int firstlineno, PyCodeAddressRange *range)$/;" f +_PyLineTable_NextAddressRange Objects/codeobject.c /^_PyLineTable_NextAddressRange(PyCodeAddressRange *range)$/;" f +_PyLineTable_PreviousAddressRange Objects/codeobject.c /^_PyLineTable_PreviousAddressRange(PyCodeAddressRange *range)$/;" f +_PyListIterObject Include/internal/pycore_list.h /^} _PyListIterObject;$/;" t typeref:struct:__anon157 +_PyList_AppendTakeRef Include/internal/pycore_list.h /^_PyList_AppendTakeRef(PyListObject *self, PyObject *newitem)$/;" f +_PyList_AppendTakeRefListResize Objects/listobject.c /^_PyList_AppendTakeRefListResize(PyListObject *self, PyObject *newitem)$/;" f +_PyList_CAST Include/cpython/listobject.h 28;" d +_PyList_ClearFreeList Objects/listobject.c /^_PyList_ClearFreeList(PyInterpreterState *interp)$/;" f +_PyList_DebugMallocStats Objects/listobject.c /^_PyList_DebugMallocStats(FILE *out)$/;" f +_PyList_Extend Objects/listobject.c /^_PyList_Extend(PyListObject *self, PyObject *iterable)$/;" f +_PyList_Fini Objects/listobject.c /^_PyList_Fini(PyInterpreterState *interp)$/;" f +_PyList_FromArraySteal Objects/listobject.c /^_PyList_FromArraySteal(PyObject *const *src, Py_ssize_t n)$/;" f +_PyList_ITEMS Include/internal/pycore_list.h 38;" d +_PyLoadGlobalCache Include/internal/pycore_code.h /^} _PyLoadGlobalCache;$/;" t typeref:struct:__anon18 +_PyLoadMethodCache Include/internal/pycore_code.h /^} _PyLoadMethodCache;$/;" t typeref:struct:__anon25 +_PyLocals_GetKind Include/internal/pycore_code.h /^_PyLocals_GetKind(PyObject *kinds, int i)$/;" f +_PyLocals_Kind Include/internal/pycore_code.h /^typedef unsigned char _PyLocals_Kind;$/;" t +_PyLocals_SetKind Include/internal/pycore_code.h /^_PyLocals_SetKind(PyObject *kinds, int i, _PyLocals_Kind kind)$/;" f +_PyLongValue Include/cpython/longintrepr.h /^typedef struct _PyLongValue {$/;" s +_PyLongValue Include/cpython/longintrepr.h /^} _PyLongValue;$/;" t typeref:struct:_PyLongValue +_PyLong_Add Objects/longobject.c /^_PyLong_Add(PyLongObject *a, PyLongObject *b)$/;" f +_PyLong_AsByteArray Objects/longobject.c /^_PyLong_AsByteArray(PyLongObject* v,$/;" f +_PyLong_AsInt Objects/longobject.c /^_PyLong_AsInt(PyObject *obj)$/;" f +_PyLong_AsMode_t Modules/_stat.c /^_PyLong_AsMode_t(PyObject *op)$/;" f file: +_PyLong_AsTime_t Python/pytime.c /^_PyLong_AsTime_t(PyObject *obj)$/;" f +_PyLong_AsUnsignedLongLongMask Objects/longobject.c /^_PyLong_AsUnsignedLongLongMask(PyObject *vv)$/;" f file: +_PyLong_AsUnsignedLongMask Objects/longobject.c /^_PyLong_AsUnsignedLongMask(PyObject *vv)$/;" f file: +_PyLong_BothAreCompact Include/internal/pycore_long.h /^_PyLong_BothAreCompact(const PyLongObject* a, const PyLongObject* b) {$/;" f +_PyLong_CompactSign Include/internal/pycore_long.h /^_PyLong_CompactSign(const PyLongObject *op)$/;" f +_PyLong_CompactValue Include/cpython/longintrepr.h /^_PyLong_CompactValue(const PyLongObject *op)$/;" f +_PyLong_Copy Objects/longobject.c /^_PyLong_Copy(PyLongObject *src)$/;" f +_PyLong_DECIMAL_BASE Include/cpython/longintrepr.h 49;" d +_PyLong_DECIMAL_BASE Include/cpython/longintrepr.h 57;" d +_PyLong_DECIMAL_SHIFT Include/cpython/longintrepr.h 48;" d +_PyLong_DECIMAL_SHIFT Include/cpython/longintrepr.h 56;" d +_PyLong_DIGIT_INIT Include/internal/pycore_long.h 241;" d +_PyLong_DigitCount Include/internal/pycore_long.h /^_PyLong_DigitCount(const PyLongObject *op)$/;" f +_PyLong_DigitValue Objects/longobject.c /^unsigned char _PyLong_DigitValue[256] = {$/;" v +_PyLong_DivmodNear Objects/longobject.c /^_PyLong_DivmodNear(PyObject *a, PyObject *b)$/;" f +_PyLong_FALSE_TAG Include/internal/pycore_long.h 252;" d +_PyLong_FileDescriptor_Converter Objects/fileobject.c /^_PyLong_FileDescriptor_Converter(PyObject *o, void *ptr)$/;" f +_PyLong_FiniTypes Objects/longobject.c /^_PyLong_FiniTypes(PyInterpreterState *interp)$/;" f +_PyLong_FlipSign Include/internal/pycore_long.h /^_PyLong_FlipSign(PyLongObject *op) {$/;" f +_PyLong_Format Objects/longobject.c /^_PyLong_Format(PyObject *obj, int base)$/;" f +_PyLong_FormatAdvancedWriter Python/formatter_unicode.c /^_PyLong_FormatAdvancedWriter(_PyUnicodeWriter *writer,$/;" f +_PyLong_FormatBytesWriter Objects/longobject.c /^_PyLong_FormatBytesWriter(_PyBytesWriter *writer, char *str,$/;" f +_PyLong_FormatWriter Objects/longobject.c /^_PyLong_FormatWriter(_PyUnicodeWriter *writer,$/;" f +_PyLong_Frexp Objects/longobject.c /^_PyLong_Frexp(PyLongObject *a, Py_ssize_t *e)$/;" f +_PyLong_FromByteArray Objects/longobject.c /^_PyLong_FromByteArray(const unsigned char* bytes, size_t n,$/;" f +_PyLong_FromBytes Objects/longobject.c /^_PyLong_FromBytes(const char *s, Py_ssize_t len, int base)$/;" f +_PyLong_FromDev Modules/posixmodule.c 920;" d file: +_PyLong_FromDigits Objects/longobject.c /^_PyLong_FromDigits(int negative, Py_ssize_t digit_count, digit *digits)$/;" f +_PyLong_FromGid Modules/posixmodule.c /^_PyLong_FromGid(gid_t gid)$/;" f +_PyLong_FromLarge Objects/longobject.c /^_PyLong_FromLarge(stwodigits ival)$/;" f file: +_PyLong_FromMedium Objects/longobject.c /^_PyLong_FromMedium(sdigit x)$/;" f file: +_PyLong_FromSTwoDigits Objects/longobject.c /^_PyLong_FromSTwoDigits(stwodigits x)$/;" f file: +_PyLong_FromTime_t Python/pytime.c /^_PyLong_FromTime_t(time_t t)$/;" f +_PyLong_FromUid Modules/posixmodule.c /^_PyLong_FromUid(uid_t uid)$/;" f +_PyLong_FromUnsignedChar Include/internal/pycore_long.h /^static inline PyObject* _PyLong_FromUnsignedChar(unsigned char i)$/;" f +_PyLong_GCD Objects/longobject.c /^_PyLong_GCD(PyObject *aarg, PyObject *barg)$/;" f +_PyLong_GetOne Include/internal/pycore_long.h /^static inline PyObject* _PyLong_GetOne(void)$/;" f +_PyLong_GetZero Include/internal/pycore_long.h /^static inline PyObject* _PyLong_GetZero(void)$/;" f +_PyLong_InitTypes Objects/longobject.c /^_PyLong_InitTypes(PyInterpreterState *interp)$/;" f +_PyLong_IsCompact Include/cpython/longintrepr.h /^_PyLong_IsCompact(const PyLongObject* op) {$/;" f +_PyLong_IsNegative Include/internal/pycore_long.h /^_PyLong_IsNegative(const PyLongObject *op)$/;" f +_PyLong_IsNonNegativeCompact Include/internal/pycore_long.h /^_PyLong_IsNonNegativeCompact(const PyLongObject* op) {$/;" f +_PyLong_IsPositive Include/internal/pycore_long.h /^_PyLong_IsPositive(const PyLongObject *op)$/;" f +_PyLong_IsZero Include/internal/pycore_long.h /^_PyLong_IsZero(const PyLongObject *op)$/;" f +_PyLong_Lshift Objects/longobject.c /^_PyLong_Lshift(PyObject *a, size_t shiftby)$/;" f +_PyLong_Multiply Objects/longobject.c /^_PyLong_Multiply(PyLongObject *a, PyLongObject *b)$/;" f +_PyLong_NON_SIZE_BITS Include/cpython/longintrepr.h 105;" d +_PyLong_Negate Objects/longobject.c /^_PyLong_Negate(PyLongObject **x_p)$/;" f +_PyLong_New Objects/longobject.c /^_PyLong_New(Py_ssize_t size)$/;" f +_PyLong_NonCompactSign Include/internal/pycore_long.h /^_PyLong_NonCompactSign(const PyLongObject *op)$/;" f +_PyLong_NumBits Objects/longobject.c /^_PyLong_NumBits(PyObject *vv)$/;" f +_PyLong_Rshift Objects/longobject.c /^_PyLong_Rshift(PyObject *a, size_t shiftby)$/;" f +_PyLong_SIGN_MASK Include/cpython/longintrepr.h 104;" d +_PyLong_SMALL_INTS Include/internal/pycore_long.h 58;" d +_PyLong_SameSign Include/internal/pycore_long.h /^_PyLong_SameSign(const PyLongObject *a, const PyLongObject *b)$/;" f +_PyLong_SetDigitCount Include/internal/pycore_long.h /^_PyLong_SetDigitCount(PyLongObject *op, Py_ssize_t size)$/;" f +_PyLong_SetSignAndDigitCount Include/internal/pycore_long.h /^_PyLong_SetSignAndDigitCount(PyLongObject *op, int sign, Py_ssize_t size)$/;" f +_PyLong_Sign Objects/longobject.c /^_PyLong_Sign(PyObject *vv)$/;" f +_PyLong_SignedDigitCount Include/internal/pycore_long.h /^_PyLong_SignedDigitCount(const PyLongObject *op)$/;" f +_PyLong_Size_t_Converter Objects/longobject.c /^_PyLong_Size_t_Converter(PyObject *obj, void *ptr)$/;" f +_PyLong_Subtract Objects/longobject.c /^_PyLong_Subtract(PyLongObject *a, PyLongObject *b)$/;" f +_PyLong_TRUE_TAG Include/internal/pycore_long.h 253;" d +_PyLong_UnsignedInt_Converter Objects/longobject.c /^_PyLong_UnsignedInt_Converter(PyObject *obj, void *ptr)$/;" f +_PyLong_UnsignedLongLong_Converter Objects/longobject.c /^_PyLong_UnsignedLongLong_Converter(PyObject *obj, void *ptr)$/;" f +_PyLong_UnsignedLong_Converter Objects/longobject.c /^_PyLong_UnsignedLong_Converter(PyObject *obj, void *ptr)$/;" f +_PyLong_UnsignedShort_Converter Objects/longobject.c /^_PyLong_UnsignedShort_Converter(PyObject *obj, void *ptr)$/;" f +_PyManagedBufferObject Include/cpython/memoryobject.h /^} _PyManagedBufferObject;$/;" t typeref:struct:__anon190 +_PyManagedBuffer_FromObject Objects/memoryobject.c /^_PyManagedBuffer_FromObject(PyObject *base, int flags)$/;" f file: +_PyManagedBuffer_Type Objects/memoryobject.c /^PyTypeObject _PyManagedBuffer_Type = {$/;" v +_PyMem Objects/obmalloc.c 208;" d file: +_PyMem_ArenaAlloc Objects/obmalloc.c /^_PyMem_ArenaAlloc(void *Py_UNUSED(ctx), size_t size)$/;" f +_PyMem_ArenaFree Objects/obmalloc.c /^_PyMem_ArenaFree(void *Py_UNUSED(ctx), void *ptr,$/;" f +_PyMem_Debug Objects/obmalloc.c 210;" d file: +_PyMem_DebugCalloc Objects/obmalloc.c /^_PyMem_DebugCalloc(void *ctx, size_t nelem, size_t elsize)$/;" f +_PyMem_DebugCheckAddress Objects/obmalloc.c /^_PyMem_DebugCheckAddress(const char *func, char api, const void *p)$/;" f file: +_PyMem_DebugCheckGIL Objects/obmalloc.c /^_PyMem_DebugCheckGIL(const char *func)$/;" f file: +_PyMem_DebugEnabled Objects/obmalloc.c /^_PyMem_DebugEnabled(void)$/;" f file: +_PyMem_DebugFree Objects/obmalloc.c /^_PyMem_DebugFree(void *ctx, void *ptr)$/;" f +_PyMem_DebugMalloc Objects/obmalloc.c /^_PyMem_DebugMalloc(void *ctx, size_t nbytes)$/;" f +_PyMem_DebugRawAlloc Objects/obmalloc.c /^_PyMem_DebugRawAlloc(int use_calloc, void *ctx, size_t nbytes)$/;" f file: +_PyMem_DebugRawCalloc Objects/obmalloc.c /^_PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize)$/;" f +_PyMem_DebugRawFree Objects/obmalloc.c /^_PyMem_DebugRawFree(void *ctx, void *p)$/;" f +_PyMem_DebugRawMalloc Objects/obmalloc.c /^_PyMem_DebugRawMalloc(void *ctx, size_t nbytes)$/;" f +_PyMem_DebugRawRealloc Objects/obmalloc.c /^_PyMem_DebugRawRealloc(void *ctx, void *p, size_t nbytes)$/;" f +_PyMem_DebugRealloc Objects/obmalloc.c /^_PyMem_DebugRealloc(void *ctx, void *ptr, size_t nbytes)$/;" f +_PyMem_DumpFrame Python/tracemalloc.c /^_PyMem_DumpFrame(int fd, frame_t * frame)$/;" f file: +_PyMem_DumpTraceback Python/tracemalloc.c /^_PyMem_DumpTraceback(int fd, const void *ptr)$/;" f +_PyMem_GetAllocatorName Objects/obmalloc.c /^_PyMem_GetAllocatorName(const char *name, PyMemAllocatorName *allocator)$/;" f +_PyMem_GetCurrentAllocatorName Objects/obmalloc.c /^_PyMem_GetCurrentAllocatorName(void)$/;" f +_PyMem_IsPtrFreed Include/internal/pycore_pymem.h /^static inline int _PyMem_IsPtrFreed(const void *ptr)$/;" f +_PyMem_PymallocEnabled Objects/obmalloc.c /^_PyMem_PymallocEnabled(void)$/;" f file: +_PyMem_Raw Objects/obmalloc.c 207;" d file: +_PyMem_RawCalloc Objects/obmalloc.c /^_PyMem_RawCalloc(void *Py_UNUSED(ctx), size_t nelem, size_t elsize)$/;" f +_PyMem_RawFree Objects/obmalloc.c /^_PyMem_RawFree(void *Py_UNUSED(ctx), void *ptr)$/;" f +_PyMem_RawMalloc Objects/obmalloc.c /^_PyMem_RawMalloc(void *Py_UNUSED(ctx), size_t size)$/;" f +_PyMem_RawRealloc Objects/obmalloc.c /^_PyMem_RawRealloc(void *Py_UNUSED(ctx), void *ptr, size_t size)$/;" f +_PyMem_RawStrdup Objects/obmalloc.c /^_PyMem_RawStrdup(const char *str)$/;" f +_PyMem_RawWcsdup Objects/obmalloc.c /^_PyMem_RawWcsdup(const wchar_t *str)$/;" f +_PyMem_SetDefaultAllocator Objects/obmalloc.c /^_PyMem_SetDefaultAllocator(PyMemAllocatorDomain domain,$/;" f +_PyMem_SetupAllocators Objects/obmalloc.c /^_PyMem_SetupAllocators(PyMemAllocatorName allocator)$/;" f +_PyMem_Strdup Objects/obmalloc.c /^_PyMem_Strdup(const char *str)$/;" f +_PyMemoTable_Lookup Modules/_pickle.c /^_PyMemoTable_Lookup(PyMemoTable *self, PyObject *key)$/;" f file: +_PyMemoTable_ResizeTable Modules/_pickle.c /^_PyMemoTable_ResizeTable(PyMemoTable *self, size_t min_size)$/;" f file: +_PyMemoryIter_Type Objects/memoryobject.c /^PyTypeObject _PyMemoryIter_Type = {$/;" v +_PyMemoryIter_Type Objects/memoryobject.c /^PyTypeObject _PyMemoryIter_Type;$/;" v +_PyMemoryView_CAST Include/cpython/memoryobject.h 40;" d +_PyMemoryView_FromBufferProc Objects/memoryobject.c /^_PyMemoryView_FromBufferProc(PyObject *v, int flags, getbufferproc bufferproc)$/;" f +_PyMethodWrapper_Type Objects/descrobject.c /^PyTypeObject _PyMethodWrapper_Type = {$/;" v +_PyMethod_CAST Include/cpython/classobject.h 29;" d +_PyModuleSpec_IsInitializing Objects/moduleobject.c /^_PyModuleSpec_IsInitializing(PyObject *spec)$/;" f +_PyModuleSpec_IsUninitializedSubmodule Objects/moduleobject.c /^_PyModuleSpec_IsUninitializedSubmodule(PyObject *spec, PyObject *name)$/;" f +_PyModule_Add Python/modsupport.c /^_PyModule_Add(PyObject *mod, const char *name, PyObject *value)$/;" f +_PyModule_Clear Objects/moduleobject.c /^_PyModule_Clear(PyObject *m)$/;" f +_PyModule_ClearDict Objects/moduleobject.c /^_PyModule_ClearDict(PyObject *d)$/;" f +_PyModule_CreateInitialized Objects/moduleobject.c /^_PyModule_CreateInitialized(PyModuleDef* module, int module_api_version)$/;" f +_PyModule_GetDef Include/internal/pycore_moduleobject.h /^static inline PyModuleDef* _PyModule_GetDef(PyObject *mod) {$/;" f +_PyModule_GetDict Include/internal/pycore_moduleobject.h /^static inline PyObject* _PyModule_GetDict(PyObject *mod) {$/;" f +_PyModule_GetState Include/internal/pycore_moduleobject.h /^static inline void* _PyModule_GetState(PyObject* mod) {$/;" f +_PyModule_IsExtension Objects/moduleobject.c /^_PyModule_IsExtension(PyObject *obj)$/;" f +_PyMonitoringEventSet Include/internal/pycore_instruments.h /^typedef uint32_t _PyMonitoringEventSet;$/;" t +_PyMonitoring_RegisterCallback Python/instrumentation.c /^_PyMonitoring_RegisterCallback(int tool_id, int event_id, PyObject *obj)$/;" f +_PyMonitoring_SetEvents Python/instrumentation.c /^_PyMonitoring_SetEvents(int tool_id, _PyMonitoringEventSet events)$/;" f +_PyMonitoring_SetLocalEvents Python/instrumentation.c /^_PyMonitoring_SetLocalEvents(PyCodeObject *code, int tool_id, _PyMonitoringEventSet events)$/;" f +_PyMp_SemLockType_slots Modules/_multiprocessing/semaphore.c /^static PyType_Slot _PyMp_SemLockType_slots[] = {$/;" v file: +_PyMp_SemLockType_spec Modules/_multiprocessing/semaphore.c /^PyType_Spec _PyMp_SemLockType_spec = {$/;" v +_PyMp_SetError Modules/_multiprocessing/multiprocessing.c /^_PyMp_SetError(PyObject *Type, int num)$/;" f +_PyMp_sem_unlink Modules/_multiprocessing/semaphore.c /^_PyMp_sem_unlink(const char *name)$/;" f +_PyNamespaceObject Objects/namespaceobject.c /^} _PyNamespaceObject;$/;" t typeref:struct:__anon729 file: +_PyNamespace_New Objects/namespaceobject.c /^_PyNamespace_New(PyObject *kwds)$/;" f +_PyNamespace_Type Objects/namespaceobject.c /^PyTypeObject _PyNamespace_Type = {$/;" v +_PyNone_Type Objects/object.c /^PyTypeObject _PyNone_Type = {$/;" v +_PyNotImplemented_Type Objects/object.c /^PyTypeObject _PyNotImplemented_Type = {$/;" v +_PyNumber_InPlacePowerNoMod Objects/abstract.c /^_PyNumber_InPlacePowerNoMod(PyObject *lhs, PyObject *rhs)$/;" f +_PyNumber_Index Objects/abstract.c /^_PyNumber_Index(PyObject *item)$/;" f +_PyNumber_PowerNoMod Objects/abstract.c /^_PyNumber_PowerNoMod(PyObject *lhs, PyObject *rhs)$/;" f +_PyODict_SetItem_KnownHash Objects/odictobject.c /^_PyODict_SetItem_KnownHash(PyObject *od, PyObject *key, PyObject *value,$/;" f file: +_PyOS_GetOpt Python/getopt.c /^int _PyOS_GetOpt(Py_ssize_t argc, wchar_t * const *argv, int *longindex)$/;" f +_PyOS_InterruptOccurred Modules/signalmodule.c /^_PyOS_InterruptOccurred(PyThreadState *tstate)$/;" f +_PyOS_IsMainThread Modules/signalmodule.c /^_PyOS_IsMainThread(void)$/;" f +_PyOS_LongOption Include/internal/pycore_getopt.h /^} _PyOS_LongOption;$/;" t typeref:struct:__anon158 +_PyOS_ReadlineLock Parser/myreadline.c /^static PyThread_type_lock _PyOS_ReadlineLock = NULL;$/;" v file: +_PyOS_ReadlineTState Parser/myreadline.c /^PyThreadState* _PyOS_ReadlineTState = NULL;$/;" v +_PyOS_ResetGetOpt Python/getopt.c /^void _PyOS_ResetGetOpt(void)$/;" f +_PyOS_SigintEvent Modules/signalmodule.c /^void *_PyOS_SigintEvent(void)$/;" f +_PyOS_URandom Python/bootstrap_hash.c /^_PyOS_URandom(void *buffer, Py_ssize_t size)$/;" f +_PyOS_URandomNonblock Python/bootstrap_hash.c /^_PyOS_URandomNonblock(void *buffer, Py_ssize_t size)$/;" f +_PyOS_WindowsConsoleReadline Parser/myreadline.c /^_PyOS_WindowsConsoleReadline(PyThreadState *tstate, HANDLE hStdIn)$/;" f +_PyOS_ascii_formatd Python/pystrtod.c /^_PyOS_ascii_formatd(char *buffer,$/;" f file: +_PyOS_ascii_strtod Python/pystrtod.c /^_PyOS_ascii_strtod(const char *nptr, char **endptr)$/;" f file: +_PyOS_getfullpathname Modules/posixmodule.c /^_PyOS_getfullpathname(const wchar_t *path, wchar_t **abspath_p)$/;" f +_PyOS_mystrnicmp_hack Python/pylifecycle.c /^int (*_PyOS_mystrnicmp_hack)(const char *, const char *, Py_ssize_t) = \\$/;" v +_PyOS_optarg Python/getopt.c /^const wchar_t *_PyOS_optarg = NULL; \/* optional argument *\/$/;" v +_PyOS_opterr Python/getopt.c /^int _PyOS_opterr = 1; \/* generate error messages *\/$/;" v +_PyOS_optind Python/getopt.c /^Py_ssize_t _PyOS_optind = 1; \/* index into argv array *\/$/;" v +_PyObject Objects/obmalloc.c 209;" d file: +_PyObjectDict_SetItem Objects/dictobject.c /^_PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr,$/;" f +_PyObject_ASSERT Include/cpython/object.h 433;" d +_PyObject_ASSERT_FAILED_MSG Include/cpython/object.h 436;" d +_PyObject_ASSERT_FROM Include/cpython/object.h 420;" d +_PyObject_ASSERT_FROM Include/cpython/object.h 424;" d +_PyObject_ASSERT_WITH_MSG Include/cpython/object.h 431;" d +_PyObject_Arena Objects/obmalloc.c 211;" d file: +_PyObject_AssertFailed Objects/object.c /^_PyObject_AssertFailed(PyObject *obj, const char *expr, const char *msg,$/;" f +_PyObject_CAST Include/object.h 194;" d +_PyObject_Call Objects/call.c /^_PyObject_Call(PyThreadState *tstate, PyObject *callable,$/;" f +_PyObject_CallFunctionVa Objects/call.c /^_PyObject_CallFunctionVa(PyThreadState *tstate, PyObject *callable,$/;" f file: +_PyObject_CallFunction_SizeT Objects/call.c /^_PyObject_CallFunction_SizeT(PyObject *callable, const char *format, ...)$/;" f +_PyObject_CallMethod Objects/call.c /^_PyObject_CallMethod(PyObject *obj, PyObject *name,$/;" f +_PyObject_CallMethodFormat Objects/call.c /^PyObject * _PyObject_CallMethodFormat(PyThreadState *tstate, PyObject *callable,$/;" f +_PyObject_CallMethodId Include/cpython/abstract.h 8;" d +_PyObject_CallMethodId Objects/call.c /^_PyObject_CallMethodId(PyObject *obj, _Py_Identifier *name,$/;" f +_PyObject_CallMethodIdNoArgs Include/cpython/abstract.h /^_PyObject_CallMethodIdNoArgs(PyObject *self, _Py_Identifier *name)$/;" f +_PyObject_CallMethodIdObjArgs Objects/call.c /^_PyObject_CallMethodIdObjArgs(PyObject *obj, _Py_Identifier *name, ...)$/;" f +_PyObject_CallMethodIdOneArg Include/cpython/abstract.h /^_PyObject_CallMethodIdOneArg(PyObject *self, _Py_Identifier *name, PyObject *arg)$/;" f +_PyObject_CallMethodId_SizeT Objects/call.c /^_PyObject_CallMethodId_SizeT(PyObject *obj, _Py_Identifier *name,$/;" f +_PyObject_CallMethodNoArgs Include/cpython/abstract.h 71;" d +_PyObject_CallMethodOneArg Include/cpython/abstract.h 72;" d +_PyObject_CallMethod_SizeT Objects/call.c /^_PyObject_CallMethod_SizeT(PyObject *obj, const char *name,$/;" f +_PyObject_CallNoArgs Include/internal/pycore_call.h /^_PyObject_CallNoArgs(PyObject *func) {$/;" f +_PyObject_CallNoArgsTstate Include/internal/pycore_call.h /^_PyObject_CallNoArgsTstate(PyThreadState *tstate, PyObject *func) {$/;" f +_PyObject_CallOneArg Include/cpython/abstract.h 70;" d +_PyObject_Call_Prepend Objects/call.c /^_PyObject_Call_Prepend(PyThreadState *tstate, PyObject *callable,$/;" f +_PyObject_Calloc Objects/obmalloc.c /^_PyObject_Calloc(void *ctx, size_t nelem, size_t elsize)$/;" f +_PyObject_CheckConsistency Objects/object.c /^_PyObject_CheckConsistency(PyObject *op, int check_content)$/;" f +_PyObject_CheckCrossInterpreterData Python/pystate.c /^_PyObject_CheckCrossInterpreterData(PyObject *obj)$/;" f +_PyObject_ClearManagedDict Objects/dictobject.c /^_PyObject_ClearManagedDict(PyObject *obj)$/;" f +_PyObject_ComputedDictPointer Objects/object.c /^_PyObject_ComputedDictPointer(PyObject *obj)$/;" f +_PyObject_DebugDumpAddress Objects/obmalloc.c /^_PyObject_DebugDumpAddress(const void *p)$/;" f file: +_PyObject_DebugMallocStats Objects/obmalloc.c /^_PyObject_DebugMallocStats(FILE *out)$/;" f +_PyObject_DebugTypeStats Objects/object.c /^_PyObject_DebugTypeStats(FILE *out)$/;" f +_PyObject_DictOrValuesPointer Include/internal/pycore_object.h /^_PyObject_DictOrValuesPointer(PyObject *obj)$/;" f +_PyObject_Dump Objects/object.c /^_PyObject_Dump(PyObject* op)$/;" f +_PyObject_EXTRA_INIT Include/object.h 71;" d +_PyObject_EXTRA_INIT Include/object.h 75;" d +_PyObject_FastCall Objects/call.c /^_PyObject_FastCall(PyObject *func, PyObject *const *args, Py_ssize_t nargs)$/;" f +_PyObject_FastCallDict Include/cpython/abstract.h 68;" d +_PyObject_FastCallDictTstate Objects/call.c /^_PyObject_FastCallDictTstate(PyThreadState *tstate, PyObject *callable,$/;" f +_PyObject_FastCallTstate Include/internal/pycore_call.h /^_PyObject_FastCallTstate(PyThreadState *tstate, PyObject *func, PyObject *const *args, Py_ssize_t nargs)$/;" f +_PyObject_Free Objects/obmalloc.c /^_PyObject_Free(void *ctx, void *p)$/;" f +_PyObject_FreeInstanceAttributes Objects/dictobject.c /^_PyObject_FreeInstanceAttributes(PyObject *self)$/;" f +_PyObject_FunctionStr Objects/object.c /^_PyObject_FunctionStr(PyObject *x)$/;" f +_PyObject_GC_IS_TRACKED Include/internal/pycore_gc.h /^static inline int _PyObject_GC_IS_TRACKED(PyObject *op) {$/;" f +_PyObject_GC_IS_TRACKED Include/internal/pycore_gc.h 32;" d +_PyObject_GC_Link Modules/gcmodule.c /^_PyObject_GC_Link(PyObject *op)$/;" f +_PyObject_GC_MAY_BE_TRACKED Include/internal/pycore_gc.h /^static inline int _PyObject_GC_MAY_BE_TRACKED(PyObject *obj) {$/;" f +_PyObject_GC_New Modules/gcmodule.c /^_PyObject_GC_New(PyTypeObject *tp)$/;" f +_PyObject_GC_NewVar Modules/gcmodule.c /^_PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems)$/;" f +_PyObject_GC_Resize Modules/gcmodule.c /^_PyObject_GC_Resize(PyVarObject *op, Py_ssize_t nitems)$/;" f +_PyObject_GC_TRACK Include/internal/pycore_object.h /^static inline void _PyObject_GC_TRACK($/;" f +_PyObject_GC_TRACK Include/internal/pycore_object.h 256;" d +_PyObject_GC_TRACK Include/internal/pycore_object.h 261;" d +_PyObject_GC_UNTRACK Include/internal/pycore_object.h /^static inline void _PyObject_GC_UNTRACK($/;" f +_PyObject_GC_UNTRACK Include/internal/pycore_object.h 258;" d +_PyObject_GC_UNTRACK Include/internal/pycore_object.h 263;" d +_PyObject_GET_WEAKREFS_LISTPTR Include/internal/pycore_object.h /^_PyObject_GET_WEAKREFS_LISTPTR(PyObject *op)$/;" f +_PyObject_GET_WEAKREFS_LISTPTR_FROM_OFFSET Include/internal/pycore_object.h /^_PyObject_GET_WEAKREFS_LISTPTR_FROM_OFFSET(PyObject *op)$/;" f +_PyObject_GenericGetAttrWithDict Objects/object.c /^_PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name,$/;" f +_PyObject_GenericSetAttrWithDict Objects/object.c /^_PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name,$/;" f +_PyObject_GetAttrId Objects/object.c /^_PyObject_GetAttrId(PyObject *v, _Py_Identifier *name)$/;" f +_PyObject_GetCrossInterpreterData Python/pystate.c /^_PyObject_GetCrossInterpreterData(PyObject *obj, _PyCrossInterpreterData *data)$/;" f +_PyObject_GetDictPtr Objects/object.c /^_PyObject_GetDictPtr(PyObject *obj)$/;" f +_PyObject_GetInstanceAttribute Objects/dictobject.c /^_PyObject_GetInstanceAttribute(PyObject *obj, PyDictValues *values,$/;" f +_PyObject_GetItemsIter Objects/typeobject.c /^_PyObject_GetItemsIter(PyObject *obj, PyObject **listitems,$/;" f file: +_PyObject_GetMethod Objects/object.c /^_PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method)$/;" f +_PyObject_GetNewArguments Objects/typeobject.c /^_PyObject_GetNewArguments(PyObject *obj, PyObject **args, PyObject **kwargs)$/;" f file: +_PyObject_GetState Objects/typeobject.c /^_PyObject_GetState(PyObject *obj)$/;" f +_PyObject_HEAD_EXTRA Include/object.h 67;" d +_PyObject_HEAD_EXTRA Include/object.h 74;" d +_PyObject_HEAD_INIT Include/internal/pycore_object.h 25;" d +_PyObject_HasLen Objects/abstract.c /^_PyObject_HasLen(PyObject *o) {$/;" f +_PyObject_IS_GC Include/internal/pycore_object.h /^_PyObject_IS_GC(PyObject *obj)$/;" f +_PyObject_Init Include/internal/pycore_object.h /^_PyObject_Init(PyObject *op, PyTypeObject *typeobj)$/;" f +_PyObject_InitState Objects/object.c /^_PyObject_InitState(PyInterpreterState *interp)$/;" f +_PyObject_InitVar Include/internal/pycore_object.h /^_PyObject_InitVar(PyVarObject *op, PyTypeObject *typeobj, Py_ssize_t size)$/;" f +_PyObject_InitializeDict Objects/dictobject.c /^_PyObject_InitializeDict(PyObject *obj)$/;" f +_PyObject_IsAbstract Objects/object.c /^_PyObject_IsAbstract(PyObject *obj)$/;" f +_PyObject_IsFreed Objects/object.c /^_PyObject_IsFreed(PyObject *op)$/;" f +_PyObject_IsInstanceDictEmpty Objects/dictobject.c /^_PyObject_IsInstanceDictEmpty(PyObject *obj)$/;" f +_PyObject_LookupAttr Objects/object.c /^_PyObject_LookupAttr(PyObject *v, PyObject *name, PyObject **result)$/;" f +_PyObject_LookupAttrId Objects/object.c /^_PyObject_LookupAttrId(PyObject *v, _Py_Identifier *name, PyObject **result)$/;" f +_PyObject_LookupSpecial Include/cpython/object.h 280;" d +_PyObject_LookupSpecial Objects/typeobject.c /^_PyObject_LookupSpecial(PyObject *self, PyObject *attr)$/;" f +_PyObject_LookupSpecialId Objects/typeobject.c /^_PyObject_LookupSpecialId(PyObject *self, _Py_Identifier *attrid)$/;" f +_PyObject_MakeDictFromInstanceAttributes Objects/dictobject.c /^_PyObject_MakeDictFromInstanceAttributes(PyObject *obj, PyDictValues *values)$/;" f +_PyObject_MakeTpCall Objects/call.c /^_PyObject_MakeTpCall(PyThreadState *tstate, PyObject *callable,$/;" f +_PyObject_Malloc Objects/obmalloc.c /^_PyObject_Malloc(void *ctx, size_t nbytes)$/;" f +_PyObject_New Objects/object.c /^_PyObject_New(PyTypeObject *tp)$/;" f +_PyObject_NewVar Objects/object.c /^_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)$/;" f +_PyObject_NextNotImplemented Objects/object.c /^_PyObject_NextNotImplemented(PyObject *self)$/;" f +_PyObject_RealIsInstance Objects/abstract.c /^_PyObject_RealIsInstance(PyObject *inst, PyObject *cls)$/;" f +_PyObject_RealIsSubclass Objects/abstract.c /^_PyObject_RealIsSubclass(PyObject *derived, PyObject *cls)$/;" f +_PyObject_Realloc Objects/obmalloc.c /^_PyObject_Realloc(void *ctx, void *ptr, size_t nbytes)$/;" f +_PyObject_SIZE Include/cpython/objimpl.h /^static inline size_t _PyObject_SIZE(PyTypeObject *type) {$/;" f +_PyObject_SetAttrId Objects/object.c /^_PyObject_SetAttrId(PyObject *v, _Py_Identifier *name, PyObject *w)$/;" f +_PyObject_StoreInstanceAttribute Objects/dictobject.c /^_PyObject_StoreInstanceAttribute(PyObject *obj, PyDictValues *values,$/;" f +_PyObject_VAR_SIZE Include/cpython/objimpl.h /^static inline size_t _PyObject_VAR_SIZE(PyTypeObject *type, Py_ssize_t nitems) {$/;" f +_PyObject_VAR_SIZE Tools/gdb/libpython.py /^def _PyObject_VAR_SIZE(typeobj, nitems):$/;" f +_PyObject_Vectorcall Include/cpython/abstract.h 66;" d +_PyObject_VectorcallMethod Include/cpython/abstract.h 67;" d +_PyObject_VectorcallMethodId Include/cpython/abstract.h /^_PyObject_VectorcallMethodId($/;" f +_PyObject_VectorcallTstate Include/internal/pycore_call.h /^_PyObject_VectorcallTstate(PyThreadState *tstate, PyObject *callable,$/;" f +_PyObject_VirtualAlloc Objects/obmalloc.c /^_PyObject_VirtualAlloc(size_t size)$/;" f +_PyObject_VirtualFree Objects/obmalloc.c /^_PyObject_VirtualFree(void *obj, size_t size)$/;" f +_PyObject_VisitManagedDict Objects/dictobject.c /^_PyObject_VisitManagedDict(PyObject *obj, visitproc visit, void *arg)$/;" f +_PyOpcode_Caches Include/internal/pycore_opcode.h /^const uint8_t _PyOpcode_Caches[256] = {$/;" v +_PyOpcode_Deopt Include/internal/pycore_opcode.h /^const uint8_t _PyOpcode_Deopt[256] = {$/;" v +_PyOpcode_Jump Include/internal/pycore_opcode.h /^const uint32_t _PyOpcode_Jump[9] = {$/;" v +_PyOpcode_OpName Include/internal/pycore_opcode.h /^static const char *const _PyOpcode_OpName[267] = {$/;" v +_PyOpcode_num_popped Python/opcode_metadata.h /^_PyOpcode_num_popped(int opcode, int oparg, bool jump) {$/;" f +_PyOpcode_num_pushed Python/opcode_metadata.h /^_PyOpcode_num_pushed(int opcode, int oparg, bool jump) {$/;" f +_PyOpcode_opcode_metadata Python/opcode_metadata.h /^const struct opcode_metadata _PyOpcode_opcode_metadata[256] = {$/;" v typeref:struct:opcode_metadata +_PyParser_ASTFromFile Parser/peg_api.c /^_PyParser_ASTFromFile(FILE *fp, PyObject *filename_ob, const char *enc,$/;" f +_PyParser_ASTFromString Parser/peg_api.c /^_PyParser_ASTFromString(const char *str, PyObject* filename, int mode,$/;" f +_PyParser_TokenNames Parser/token.c /^const char * const _PyParser_TokenNames[] = {$/;" v +_PyPathConfig Python/pathconfig.c /^typedef struct _PyPathConfig {$/;" s file: +_PyPathConfig Python/pathconfig.c /^} _PyPathConfig;$/;" t typeref:struct:_PyPathConfig file: +_PyPathConfig_ClearGlobal Python/pathconfig.c /^_PyPathConfig_ClearGlobal(void)$/;" f +_PyPathConfig_ComputeSysPath0 Python/pathconfig.c /^_PyPathConfig_ComputeSysPath0(const PyWideStringList *argv, PyObject **path0_p)$/;" f +_PyPathConfig_GetGlobalModuleSearchPath Python/pathconfig.c /^_PyPathConfig_GetGlobalModuleSearchPath(void)$/;" f +_PyPathConfig_INIT Python/pathconfig.c 42;" d file: +_PyPathConfig_ReadGlobal Python/pathconfig.c /^_PyPathConfig_ReadGlobal(PyConfig *config)$/;" f +_PyPathConfig_UpdateGlobal Python/pathconfig.c /^_PyPathConfig_UpdateGlobal(const PyConfig *config)$/;" f +_PyPegen_Parser_Free Parser/pegen.c /^_PyPegen_Parser_Free(Parser *p)$/;" f +_PyPegen_Parser_New Parser/pegen.c /^_PyPegen_Parser_New(struct tok_state *tok, int start_rule, int flags,$/;" f +_PyPegen_add_type_comment_to_arg Parser/action_helpers.c /^_PyPegen_add_type_comment_to_arg(Parser *p, arg_ty a, Token *tc)$/;" f +_PyPegen_alias_for_star Parser/action_helpers.c /^_PyPegen_alias_for_star(Parser *p, int lineno, int col_offset, int end_lineno,$/;" f +_PyPegen_arguments_parsing_error Parser/action_helpers.c /^void *_PyPegen_arguments_parsing_error(Parser *p, expr_ty e) {$/;" f +_PyPegen_augoperator Parser/action_helpers.c /^_PyPegen_augoperator(Parser *p, operator_ty kind)$/;" f +_PyPegen_byte_offset_to_character_offset Parser/pegen.c /^_PyPegen_byte_offset_to_character_offset(PyObject *line, Py_ssize_t col_offset)$/;" f +_PyPegen_check_barry_as_flufl Parser/action_helpers.c /^_PyPegen_check_barry_as_flufl(Parser *p, Token* t) {$/;" f +_PyPegen_check_fstring_conversion Parser/action_helpers.c /^_PyPegen_check_fstring_conversion(Parser *p, Token* conv_token, expr_ty conv)$/;" f +_PyPegen_check_legacy_stmt Parser/action_helpers.c /^_PyPegen_check_legacy_stmt(Parser *p, expr_ty name) {$/;" f +_PyPegen_class_def_decorators Parser/action_helpers.c /^_PyPegen_class_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty class_def)$/;" f +_PyPegen_clear_memo_statistics Parser/pegen.c /^_PyPegen_clear_memo_statistics(void)$/;" f +_PyPegen_cmpop_expr_pair Parser/action_helpers.c /^_PyPegen_cmpop_expr_pair(Parser *p, cmpop_ty cmpop, expr_ty expr)$/;" f +_PyPegen_collect_call_seqs Parser/action_helpers.c /^expr_ty _PyPegen_collect_call_seqs(Parser *p, asdl_expr_seq *a, asdl_seq *b,$/;" f +_PyPegen_concatenate_strings Parser/action_helpers.c /^_PyPegen_concatenate_strings(Parser *p, asdl_expr_seq *strings,$/;" f +_PyPegen_constant_from_string Parser/action_helpers.c /^expr_ty _PyPegen_constant_from_string(Parser* p, Token* tok) {$/;" f +_PyPegen_constant_from_token Parser/action_helpers.c /^expr_ty _PyPegen_constant_from_token(Parser* p, Token* tok) {$/;" f +_PyPegen_decode_fstring_part Parser/action_helpers.c /^_PyPegen_decode_fstring_part(Parser* p, int is_raw, expr_ty constant, Token* token) {$/;" f file: +_PyPegen_decode_string Parser/string_parser.c /^_PyPegen_decode_string(Parser *p, int raw, const char *s, size_t len, Token *t)$/;" f +_PyPegen_decoded_constant_from_token Parser/action_helpers.c /^expr_ty _PyPegen_decoded_constant_from_token(Parser* p, Token* tok) {$/;" f +_PyPegen_dummy_name Parser/action_helpers.c /^_PyPegen_dummy_name(Parser *p, ...)$/;" f +_PyPegen_empty_arguments Parser/action_helpers.c /^_PyPegen_empty_arguments(Parser *p)$/;" f +_PyPegen_ensure_imaginary Parser/action_helpers.c /^_PyPegen_ensure_imaginary(Parser *p, expr_ty exp)$/;" f +_PyPegen_ensure_real Parser/action_helpers.c /^_PyPegen_ensure_real(Parser *p, expr_ty exp)$/;" f +_PyPegen_expect_forced_result Parser/pegen.c /^_PyPegen_expect_forced_result(Parser *p, void* result, const char* expected) {$/;" f +_PyPegen_expect_forced_token Parser/pegen.c /^_PyPegen_expect_forced_token(Parser *p, int type, const char* expected) {$/;" f +_PyPegen_expect_soft_keyword Parser/pegen.c /^_PyPegen_expect_soft_keyword(Parser *p, const char *keyword)$/;" f +_PyPegen_expect_token Parser/pegen.c /^_PyPegen_expect_token(Parser *p, int type)$/;" f +_PyPegen_fill_token Parser/pegen.c /^_PyPegen_fill_token(Parser *p)$/;" f +_PyPegen_formatted_value Parser/action_helpers.c /^expr_ty _PyPegen_formatted_value(Parser *p, expr_ty expression, Token *debug, ResultTokenWithMetadata *conversion,$/;" f +_PyPegen_function_def_decorators Parser/action_helpers.c /^_PyPegen_function_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty function_def)$/;" f +_PyPegen_get_cmpops Parser/action_helpers.c /^_PyPegen_get_cmpops(Parser *p, asdl_seq *seq)$/;" f +_PyPegen_get_expr_name Parser/action_helpers.c /^_PyPegen_get_expr_name(expr_ty e)$/;" f +_PyPegen_get_exprs Parser/action_helpers.c /^_PyPegen_get_exprs(Parser *p, asdl_seq *seq)$/;" f +_PyPegen_get_invalid_target Parser/action_helpers.c /^_PyPegen_get_invalid_target(expr_ty e, TARGETS_TYPE targets_type)$/;" f +_PyPegen_get_keys Parser/action_helpers.c /^_PyPegen_get_keys(Parser *p, asdl_seq *seq)$/;" f +_PyPegen_get_last_comprehension_item Parser/action_helpers.c /^_PyPegen_get_last_comprehension_item(comprehension_ty comprehension) {$/;" f +_PyPegen_get_last_nonnwhitespace_token Parser/pegen.c /^_PyPegen_get_last_nonnwhitespace_token(Parser *p)$/;" f +_PyPegen_get_memo_statistics Parser/pegen.c /^_PyPegen_get_memo_statistics(void)$/;" f +_PyPegen_get_pattern_keys Parser/action_helpers.c /^_PyPegen_get_pattern_keys(Parser *p, asdl_seq *seq)$/;" f +_PyPegen_get_patterns Parser/action_helpers.c /^_PyPegen_get_patterns(Parser *p, asdl_seq *seq)$/;" f +_PyPegen_get_values Parser/action_helpers.c /^_PyPegen_get_values(Parser *p, asdl_seq *seq)$/;" f +_PyPegen_insert_memo Parser/pegen.c /^_PyPegen_insert_memo(Parser *p, int mark, int type, void *node)$/;" f +_PyPegen_interactive_exit Parser/pegen.c /^_PyPegen_interactive_exit(Parser *p)$/;" f +_PyPegen_is_memoized Parser/pegen.c /^_PyPegen_is_memoized(Parser *p, int type, void *pres)$/;" f +_PyPegen_join_names_with_dot Parser/action_helpers.c /^_PyPegen_join_names_with_dot(Parser *p, expr_ty first_name, expr_ty second_name)$/;" f +_PyPegen_join_sequences Parser/action_helpers.c /^_PyPegen_join_sequences(Parser *p, asdl_seq *a, asdl_seq *b)$/;" f +_PyPegen_joined_str Parser/action_helpers.c /^_PyPegen_joined_str(Parser *p, Token* a, asdl_expr_seq* raw_expressions, Token*b) {$/;" f +_PyPegen_key_pattern_pair Parser/action_helpers.c /^_PyPegen_key_pattern_pair(Parser *p, expr_ty key, pattern_ty pattern)$/;" f +_PyPegen_key_value_pair Parser/action_helpers.c /^_PyPegen_key_value_pair(Parser *p, expr_ty key, expr_ty value)$/;" f +_PyPegen_keyword_or_starred Parser/action_helpers.c /^_PyPegen_keyword_or_starred(Parser *p, void *element, int is_keyword)$/;" f +_PyPegen_lookahead Parser/pegen.c /^_PyPegen_lookahead(int positive, void *(func)(Parser *), Parser *p)$/;" f +_PyPegen_lookahead_with_int Parser/pegen.c /^_PyPegen_lookahead_with_int(int positive, Token *(func)(Parser *, int), Parser *p, int arg)$/;" f +_PyPegen_lookahead_with_name Parser/pegen.c /^_PyPegen_lookahead_with_name(int positive, expr_ty (func)(Parser *), Parser *p)$/;" f +_PyPegen_lookahead_with_string Parser/pegen.c /^_PyPegen_lookahead_with_string(int positive, expr_ty (func)(Parser *, const char*), Parser *p, const char* arg)$/;" f +_PyPegen_make_arguments Parser/action_helpers.c /^_PyPegen_make_arguments(Parser *p, asdl_arg_seq *slash_without_default,$/;" f +_PyPegen_make_module Parser/action_helpers.c /^_PyPegen_make_module(Parser *p, asdl_stmt_seq *a) {$/;" f +_PyPegen_map_names_to_ids Parser/action_helpers.c /^_PyPegen_map_names_to_ids(Parser *p, asdl_expr_seq *seq)$/;" f +_PyPegen_name_default_pair Parser/action_helpers.c /^_PyPegen_name_default_pair(Parser *p, arg_ty arg, expr_ty value, Token *tc)$/;" f +_PyPegen_name_from_token Parser/pegen.c /^_PyPegen_name_from_token(Parser *p, Token* t)$/;" f file: +_PyPegen_name_token Parser/pegen.c /^_PyPegen_name_token(Parser *p)$/;" f +_PyPegen_new_identifier Parser/pegen.c /^_PyPegen_new_identifier(Parser *p, const char *n)$/;" f +_PyPegen_new_type_comment Parser/action_helpers.c /^_PyPegen_new_type_comment(Parser *p, const char *s)$/;" f +_PyPegen_nonparen_genexp_in_call Parser/action_helpers.c /^_PyPegen_nonparen_genexp_in_call(Parser *p, expr_ty args, asdl_comprehension_seq *comprehensions)$/;" f +_PyPegen_number_token Parser/pegen.c /^_PyPegen_number_token(Parser *p)$/;" f +_PyPegen_parse Parser/parser.c /^_PyPegen_parse(Parser *p)$/;" f +_PyPegen_parse_string Parser/string_parser.c /^_PyPegen_parse_string(Parser *p, Token *t)$/;" f +_PyPegen_raise_error Parser/pegen_errors.c /^_PyPegen_raise_error(Parser *p, PyObject *errtype, int use_mark, const char *errmsg, ...)$/;" f +_PyPegen_raise_error_known_location Parser/pegen_errors.c /^_PyPegen_raise_error_known_location(Parser *p, PyObject *errtype,$/;" f +_PyPegen_raise_tokenizer_init_error Parser/pegen_errors.c /^_PyPegen_raise_tokenizer_init_error(PyObject *filename)$/;" f +_PyPegen_run_parser Parser/pegen.c /^_PyPegen_run_parser(Parser *p)$/;" f +_PyPegen_run_parser_from_file_pointer Parser/pegen.c /^_PyPegen_run_parser_from_file_pointer(FILE *fp, int start_rule, PyObject *filename_ob,$/;" f +_PyPegen_run_parser_from_string Parser/pegen.c /^_PyPegen_run_parser_from_string(const char *str, int start_rule, PyObject *filename_ob,$/;" f +_PyPegen_seq_append_to_end Parser/action_helpers.c /^_PyPegen_seq_append_to_end(Parser *p, asdl_seq *seq, void *a)$/;" f +_PyPegen_seq_count_dots Parser/action_helpers.c /^_PyPegen_seq_count_dots(asdl_seq *seq)$/;" f +_PyPegen_seq_delete_starred_exprs Parser/action_helpers.c /^_PyPegen_seq_delete_starred_exprs(Parser *p, asdl_seq *kwargs)$/;" f +_PyPegen_seq_extract_starred_exprs Parser/action_helpers.c /^_PyPegen_seq_extract_starred_exprs(Parser *p, asdl_seq *kwargs)$/;" f +_PyPegen_seq_first_item Parser/action_helpers.c /^_PyPegen_seq_first_item(asdl_seq *seq)$/;" f +_PyPegen_seq_flatten Parser/action_helpers.c /^_PyPegen_seq_flatten(Parser *p, asdl_seq *seqs)$/;" f +_PyPegen_seq_insert_in_front Parser/action_helpers.c /^_PyPegen_seq_insert_in_front(Parser *p, void *a, asdl_seq *seq)$/;" f +_PyPegen_seq_last_item Parser/action_helpers.c /^_PyPegen_seq_last_item(asdl_seq *seq)$/;" f +_PyPegen_set_expr_context Parser/action_helpers.c /^_PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx)$/;" f +_PyPegen_setup_full_format_spec Parser/action_helpers.c /^_PyPegen_setup_full_format_spec(Parser *p, Token *colon, asdl_expr_seq *spec, int lineno, int col_offset,$/;" f +_PyPegen_singleton_seq Parser/action_helpers.c /^_PyPegen_singleton_seq(Parser *p, void *a)$/;" f +_PyPegen_slash_with_default Parser/action_helpers.c /^_PyPegen_slash_with_default(Parser *p, asdl_arg_seq *plain_names, asdl_seq *names_with_defaults)$/;" f +_PyPegen_soft_keyword_token Parser/pegen.c /^expr_ty _PyPegen_soft_keyword_token(Parser *p) {$/;" f +_PyPegen_star_etc Parser/action_helpers.c /^_PyPegen_star_etc(Parser *p, arg_ty vararg, asdl_seq *kwonlyargs, arg_ty kwarg)$/;" f +_PyPegen_string_token Parser/pegen.c /^_PyPegen_string_token(Parser *p)$/;" f +_PyPegen_tokenize_full_source_to_check_for_errors Parser/pegen_errors.c /^_PyPegen_tokenize_full_source_to_check_for_errors(Parser *p) {$/;" f file: +_PyPegen_update_memo Parser/pegen.c /^_PyPegen_update_memo(Parser *p, int mark, int type, void *node)$/;" f +_PyPerfTrampoline_AfterFork_Child Python/perf_trampoline.c /^_PyPerfTrampoline_AfterFork_Child(void)$/;" f +_PyPerfTrampoline_Fini Python/perf_trampoline.c /^_PyPerfTrampoline_Fini(void)$/;" f +_PyPerfTrampoline_GetCallbacks Python/perf_trampoline.c /^_PyPerfTrampoline_GetCallbacks(_PyPerf_Callbacks *callbacks)$/;" f +_PyPerfTrampoline_Init Python/perf_trampoline.c /^_PyPerfTrampoline_Init(int activate)$/;" f +_PyPerfTrampoline_SetCallbacks Python/perf_trampoline.c /^_PyPerfTrampoline_SetCallbacks(_PyPerf_Callbacks *callbacks)$/;" f +_PyPerf_Callbacks Include/internal/pycore_ceval.h /^} _PyPerf_Callbacks;$/;" t typeref:struct:__anon4 +_PyPositionsIterator Objects/codeobject.c /^PyTypeObject _PyPositionsIterator = {$/;" v +_PyPreCmdline Include/internal/pycore_initconfig.h /^} _PyPreCmdline;$/;" t typeref:struct:__anon163 +_PyPreCmdline_Clear Python/preconfig.c /^_PyPreCmdline_Clear(_PyPreCmdline *cmdline)$/;" f +_PyPreCmdline_INIT Include/internal/pycore_initconfig.h 106;" d +_PyPreCmdline_Read Python/preconfig.c /^_PyPreCmdline_Read(_PyPreCmdline *cmdline, const PyPreConfig *preconfig)$/;" f +_PyPreCmdline_SetArgv Python/preconfig.c /^_PyPreCmdline_SetArgv(_PyPreCmdline *cmdline, const _PyArgv *args)$/;" f +_PyPreCmdline_SetConfig Python/preconfig.c /^_PyPreCmdline_SetConfig(const _PyPreCmdline *cmdline, PyConfig *config)$/;" f +_PyPreConfig_AsDict Python/preconfig.c /^_PyPreConfig_AsDict(const PyPreConfig *config)$/;" f +_PyPreConfig_GetConfig Python/preconfig.c /^_PyPreConfig_GetConfig(PyPreConfig *preconfig, const PyConfig *config)$/;" f +_PyPreConfig_InitCompatConfig Python/preconfig.c /^_PyPreConfig_InitCompatConfig(PyPreConfig *config)$/;" f +_PyPreConfig_InitFromConfig Python/preconfig.c /^_PyPreConfig_InitFromConfig(PyPreConfig *preconfig, const PyConfig *config)$/;" f +_PyPreConfig_InitFromPreConfig Python/preconfig.c /^_PyPreConfig_InitFromPreConfig(PyPreConfig *config,$/;" f +_PyPreConfig_Read Python/preconfig.c /^_PyPreConfig_Read(PyPreConfig *config, const _PyArgv *args)$/;" f +_PyPreConfig_Write Python/preconfig.c /^_PyPreConfig_Write(const PyPreConfig *src_config)$/;" f +_PyPropertyObject Include/internal/pycore_descrobject.h /^typedef propertyobject _PyPropertyObject;$/;" t +_PyRLock Lib/threading.py /^_PyRLock = _RLock$/;" v +_PyRangeIterObject Include/internal/pycore_range.h /^} _PyRangeIterObject;$/;" t typeref:struct:__anon124 +_PyRun_AnyFileObject Python/pythonrun.c /^_PyRun_AnyFileObject(FILE *fp, PyObject *filename, int closeit,$/;" f +_PyRun_InteractiveLoopObject Python/pythonrun.c /^_PyRun_InteractiveLoopObject(FILE *fp, PyObject *filename, PyCompilerFlags *flags)$/;" f +_PyRun_SimpleFileObject Python/pythonrun.c /^_PyRun_SimpleFileObject(FILE *fp, PyObject *filename, int closeit,$/;" f +_PyRuntime Python/pylifecycle.c /^_PyRuntimeState _PyRuntime$/;" v +_PyRuntimeState Include/internal/pycore_runtime.h /^} _PyRuntimeState;$/;" t typeref:struct:pyruntimestate +_PyRuntimeState_Fini Python/pystate.c /^_PyRuntimeState_Fini(_PyRuntimeState *runtime)$/;" f +_PyRuntimeState_GetFinalizing Include/internal/pycore_runtime.h /^_PyRuntimeState_GetFinalizing(_PyRuntimeState *runtime) {$/;" f +_PyRuntimeState_INIT Include/internal/pycore_runtime_init.h 25;" d +_PyRuntimeState_Init Python/pystate.c /^_PyRuntimeState_Init(_PyRuntimeState *runtime)$/;" f +_PyRuntimeState_ReInitThreads Python/pystate.c /^_PyRuntimeState_ReInitThreads(_PyRuntimeState *runtime)$/;" f +_PyRuntimeState_SetFinalizing Include/internal/pycore_runtime.h /^_PyRuntimeState_SetFinalizing(_PyRuntimeState *runtime, PyThreadState *tstate) {$/;" f +_PyRuntime_Finalize Python/pylifecycle.c /^_PyRuntime_Finalize(void)$/;" f +_PyRuntime_Initialize Python/pylifecycle.c /^_PyRuntime_Initialize(void)$/;" f +_PySSLContext_get_keylog_filename Modules/_ssl/debughelpers.c /^_PySSLContext_get_keylog_filename(PySSLContext *self, void *c) {$/;" f file: +_PySSLContext_get_msg_callback Modules/_ssl/debughelpers.c /^_PySSLContext_get_msg_callback(PySSLContext *self, void *c) {$/;" f file: +_PySSLContext_set_keylog_filename Modules/_ssl/debughelpers.c /^_PySSLContext_set_keylog_filename(PySSLContext *self, PyObject *arg, void *c) {$/;" f file: +_PySSLContext_set_msg_callback Modules/_ssl/debughelpers.c /^_PySSLContext_set_msg_callback(PySSLContext *self, PyObject *arg, void *c) {$/;" f file: +_PySSLError Modules/_ssl.c /^} _PySSLError;$/;" t typeref:struct:__anon580 file: +_PySSLFixErrno Modules/_ssl.c /^static void _PySSLFixErrno(void) {$/;" f file: +_PySSLPasswordInfo Modules/_ssl.c /^} _PySSLPasswordInfo;$/;" t typeref:struct:__anon585 file: +_PySSL_BytesFromBIO Modules/_ssl/misc.c /^_PySSL_BytesFromBIO(_sslmodulestate *state, BIO *bio)$/;" f file: +_PySSL_CertificateFromX509 Modules/_ssl/cert.c /^_PySSL_CertificateFromX509(_sslmodulestate *state, X509 *cert, int upref)$/;" f file: +_PySSL_CertificateFromX509Stack Modules/_ssl/cert.c /^_PySSL_CertificateFromX509Stack(_sslmodulestate *state, STACK_OF(X509) *stack, int upref)$/;" f file: +_PySSL_FIX_ERRNO Modules/_ssl.c 114;" d file: +_PySSL_FIX_ERRNO Modules/_ssl.c 115;" d file: +_PySSL_FIX_ERRNO Modules/_ssl.c 38;" d file: +_PySSL_UnicodeFromBIO Modules/_ssl/misc.c /^_PySSL_UnicodeFromBIO(_sslmodulestate *state, BIO *bio, const char *error)$/;" f file: +_PySSL_errno Modules/_ssl.c /^static inline _PySSLError _PySSL_errno(int failed, const SSL *ssl, int retcode)$/;" f file: +_PySSL_keylog_callback Modules/_ssl/debughelpers.c /^_PySSL_keylog_callback(const SSL *ssl, const char *line)$/;" f file: +_PySSL_msg_callback Modules/_ssl/debughelpers.c /^_PySSL_msg_callback(int write_p, int version, int content_type,$/;" f file: +_PyST_GetScope Python/symtable.c /^_PyST_GetScope(PySTEntryObject *ste, PyObject *name)$/;" f +_PyST_GetSymbol Python/symtable.c /^_PyST_GetSymbol(PySTEntryObject *ste, PyObject *name)$/;" f +_PyST_IsFunctionLike Python/symtable.c /^_PyST_IsFunctionLike(PySTEntryObject *ste)$/;" f +_PyScannerObject Modules/_json.c /^typedef struct _PyScannerObject {$/;" s file: +_PySendCache Include/internal/pycore_code.h /^} _PySendCache;$/;" t typeref:struct:__anon29 +_PySequence_BytesToCharpArray Objects/abstract.c /^_PySequence_BytesToCharpArray(PyObject* self)$/;" f +_PySequence_IterSearch Objects/abstract.c /^_PySequence_IterSearch(PyObject *seq, PyObject *obj, int operation)$/;" f +_PySetDummy_Type Objects/setobject.c /^static PyTypeObject _PySetDummy_Type = {$/;" v file: +_PySet_CAST Include/cpython/setobject.h 61;" d +_PySet_Dummy Objects/setobject.c /^PyObject *_PySet_Dummy = dummy;$/;" v +_PySet_NextEntry Objects/setobject.c /^_PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash)$/;" f +_PySet_Update Objects/setobject.c /^_PySet_Update(PyObject *set, PyObject *iterable)$/;" f +_PyShimCodeDef Include/internal/pycore_code.h /^typedef struct _PyShimCodeDef {$/;" s +_PyShimCodeDef Include/internal/pycore_code.h /^} _PyShimCodeDef;$/;" t typeref:struct:_PyShimCodeDef +_PySignal_AfterFork Modules/signalmodule.c /^_PySignal_AfterFork(void)$/;" f +_PySignal_Fini Modules/signalmodule.c /^_PySignal_Fini(void)$/;" f +_PySignal_Init Modules/signalmodule.c /^_PySignal_Init(int install_signal_handlers)$/;" f +_PySimpleQueue Lib/queue.py /^class _PySimpleQueue:$/;" c +_PySlice_Fini Objects/sliceobject.c /^void _PySlice_Fini(PyInterpreterState *interp)$/;" f +_PySlice_FromIndices Objects/sliceobject.c /^_PySlice_FromIndices(Py_ssize_t istart, Py_ssize_t istop)$/;" f +_PySlice_GetLongIndices Objects/sliceobject.c /^_PySlice_GetLongIndices(PySliceObject *self, PyObject *length,$/;" f +_PySpecialization_ClassifyIterator Python/specialize.c /^ _PySpecialization_ClassifyIterator(PyObject *iter)$/;" f +_PyStackChunk Include/cpython/pystate.h /^} _PyStackChunk;$/;" t typeref:struct:_stack_chunk +_PyStack_AsDict Objects/call.c /^_PyStack_AsDict(PyObject *const *values, PyObject *kwnames)$/;" f +_PyStack_UnpackDict Objects/call.c /^_PyStack_UnpackDict(PyThreadState *tstate,$/;" f +_PyStack_UnpackDict_Free Objects/call.c /^_PyStack_UnpackDict_Free(PyObject *const *stack, Py_ssize_t nargs,$/;" f +_PyStack_UnpackDict_FreeNoDecRef Objects/call.c /^_PyStack_UnpackDict_FreeNoDecRef(PyObject *const *stack, PyObject *kwnames)$/;" f +_PyState_AddModule Python/import.c /^_PyState_AddModule(PyThreadState *tstate, PyObject* module, PyModuleDef* def)$/;" f +_PyStaticCode_Fini Objects/codeobject.c /^_PyStaticCode_Fini(PyCodeObject *co)$/;" f +_PyStaticCode_Init Objects/codeobject.c /^_PyStaticCode_Init(PyCodeObject *co)$/;" f +_PyStaticObject_CheckRefcnt Include/internal/pycore_global_objects_fini_generated.h /^_PyStaticObject_CheckRefcnt(PyObject *obj) {$/;" f +_PyStaticObjects_CheckRefcnt Include/internal/pycore_global_objects_fini_generated.h /^_PyStaticObjects_CheckRefcnt(PyInterpreterState *interp) {$/;" f +_PyStaticType_ClearWeakRefs Objects/weakrefobject.c /^_PyStaticType_ClearWeakRefs(PyInterpreterState *interp, PyTypeObject *type)$/;" f +_PyStaticType_Dealloc Objects/typeobject.c /^_PyStaticType_Dealloc(PyInterpreterState *interp, PyTypeObject *type)$/;" f +_PyStaticType_GET_WEAKREFS_LISTPTR Include/internal/pycore_typeobject.h /^_PyStaticType_GET_WEAKREFS_LISTPTR(static_builtin_state *state)$/;" f +_PyStaticType_GetState Objects/typeobject.c /^_PyStaticType_GetState(PyInterpreterState *interp, PyTypeObject *self)$/;" f +_PyStaticType_InitBuiltin Objects/typeobject.c /^_PyStaticType_InitBuiltin(PyInterpreterState *interp, PyTypeObject *self)$/;" f +_PyStatus_ERR Include/internal/pycore_initconfig.h 27;" d +_PyStatus_EXCEPTION Include/internal/pycore_initconfig.h 42;" d +_PyStatus_EXIT Include/internal/pycore_initconfig.h 34;" d +_PyStatus_GET_FUNC Include/internal/pycore_initconfig.h 19;" d +_PyStatus_GET_FUNC Include/internal/pycore_initconfig.h 21;" d +_PyStatus_IS_ERROR Include/internal/pycore_initconfig.h 38;" d +_PyStatus_IS_EXIT Include/internal/pycore_initconfig.h 40;" d +_PyStatus_NO_MEMORY Include/internal/pycore_initconfig.h 33;" d +_PyStatus_OK Include/internal/pycore_initconfig.h 24;" d +_PyStatus_TYPE_ERROR Include/cpython/initconfig.h /^ _PyStatus_TYPE_ERROR=1,$/;" e enum:__anon198::__anon199 +_PyStatus_TYPE_EXIT Include/cpython/initconfig.h /^ _PyStatus_TYPE_EXIT=2$/;" e enum:__anon198::__anon199 +_PyStatus_TYPE_OK Include/cpython/initconfig.h /^ _PyStatus_TYPE_OK=0,$/;" e enum:__anon198::__anon199 +_PyStatus_UPDATE_FUNC Include/internal/pycore_initconfig.h 44;" d +_PyStoreSubscrCache Include/internal/pycore_code.h /^} _PyStoreSubscrCache;$/;" t typeref:struct:__anon27 +_PyStructSequence_FiniBuiltin Objects/structseq.c /^_PyStructSequence_FiniBuiltin(PyInterpreterState *interp, PyTypeObject *type)$/;" f +_PyStructSequence_InitBuiltin Include/internal/pycore_structseq.h /^_PyStructSequence_InitBuiltin(PyInterpreterState *interp,$/;" f +_PyStructSequence_InitBuiltinWithFlags Objects/structseq.c /^_PyStructSequence_InitBuiltinWithFlags(PyInterpreterState *interp,$/;" f +_PyStructSequence_NewType Objects/structseq.c /^_PyStructSequence_NewType(PyStructSequence_Desc *desc, unsigned long tp_flags)$/;" f +_PySuperAttrCache Include/internal/pycore_code.h /^} _PySuperAttrCache;$/;" t typeref:struct:__anon23 +_PySuper_Lookup Objects/typeobject.c /^_PySuper_Lookup(PyTypeObject *su_type, PyObject *su_obj, PyObject *name, int *method)$/;" f +_PySymtable_Build Python/symtable.c /^_PySymtable_Build(mod_ty mod, PyObject *filename, PyFutureFeatures *future)$/;" f +_PySymtable_Free Python/symtable.c /^_PySymtable_Free(struct symtable *st)$/;" f +_PySys_AddWarnOptionWithError Python/sysmodule.c /^_PySys_AddWarnOptionWithError(PyThreadState *tstate, PyObject *option)$/;" f file: +_PySys_AddXOptionWithError Python/sysmodule.c /^_PySys_AddXOptionWithError(const wchar_t *s)$/;" f file: +_PySys_Audit Python/sysmodule.c /^_PySys_Audit(PyThreadState *tstate, const char *event,$/;" f +_PySys_ClearAttrString Python/sysmodule.c /^_PySys_ClearAttrString(PyInterpreterState *interp,$/;" f +_PySys_ClearAuditHooks Python/sysmodule.c /^_PySys_ClearAuditHooks(PyThreadState *ts)$/;" f +_PySys_Create Python/sysmodule.c /^_PySys_Create(PyThreadState *tstate, PyObject **sysmod_p)$/;" f +_PySys_FiniTypes Python/sysmodule.c /^_PySys_FiniTypes(PyInterpreterState *interp)$/;" f +_PySys_GetAttr Python/sysmodule.c /^_PySys_GetAttr(PyThreadState *tstate, PyObject *name)$/;" f +_PySys_GetObject Python/sysmodule.c /^_PySys_GetObject(PyInterpreterState *interp, const char *name)$/;" f file: +_PySys_GetSizeOf Python/sysmodule.c /^_PySys_GetSizeOf(PyObject *o)$/;" f +_PySys_ImplCacheTag Python/sysmodule.c /^const char *_PySys_ImplCacheTag = TAG;$/;" v +_PySys_ImplName Python/sysmodule.c /^const char *_PySys_ImplName = NAME;$/;" v +_PySys_InitCore Python/sysmodule.c /^_PySys_InitCore(PyThreadState *tstate, PyObject *sysdict)$/;" f file: +_PySys_ReadPreinitWarnOptions Python/sysmodule.c /^_PySys_ReadPreinitWarnOptions(PyWideStringList *options)$/;" f +_PySys_ReadPreinitXOptions Python/sysmodule.c /^_PySys_ReadPreinitXOptions(PyConfig *config)$/;" f +_PySys_SetAttr Python/sysmodule.c /^_PySys_SetAttr(PyObject *key, PyObject *v)$/;" f +_PySys_SetPreliminaryStderr Python/sysmodule.c /^_PySys_SetPreliminaryStderr(PyObject *sysdict)$/;" f file: +_PySys_UpdateConfig Python/sysmodule.c /^_PySys_UpdateConfig(PyThreadState *tstate)$/;" f +_PyTZINFO_HEAD Include/datetime.h 52;" d +_PyTask Lib/asyncio/tasks.py /^_PyTask = Task$/;" v +_PyTestCapi_Init_Abstract Modules/_testcapi/abstract.c /^_PyTestCapi_Init_Abstract(PyObject *m)$/;" f +_PyTestCapi_Init_Buffer Modules/_testcapi/buffer.c /^_PyTestCapi_Init_Buffer(PyObject *m) {$/;" f +_PyTestCapi_Init_Code Modules/_testcapi/code.c /^_PyTestCapi_Init_Code(PyObject *m) {$/;" f +_PyTestCapi_Init_DateTime Modules/_testcapi/datetime.c /^_PyTestCapi_Init_DateTime(PyObject *mod)$/;" f +_PyTestCapi_Init_Dict Modules/_testcapi/dict.c /^_PyTestCapi_Init_Dict(PyObject *m)$/;" f +_PyTestCapi_Init_Docstring Modules/_testcapi/docstring.c /^_PyTestCapi_Init_Docstring(PyObject *mod)$/;" f +_PyTestCapi_Init_Exceptions Modules/_testcapi/exceptions.c /^_PyTestCapi_Init_Exceptions(PyObject *mod)$/;" f +_PyTestCapi_Init_Float Modules/_testcapi/float.c /^_PyTestCapi_Init_Float(PyObject *mod)$/;" f +_PyTestCapi_Init_GC Modules/_testcapi/gc.c /^int _PyTestCapi_Init_GC(PyObject *mod)$/;" f +_PyTestCapi_Init_GetArgs Modules/_testcapi/getargs.c /^_PyTestCapi_Init_GetArgs(PyObject *mod)$/;" f +_PyTestCapi_Init_Heaptype Modules/_testcapi/heaptype.c /^_PyTestCapi_Init_Heaptype(PyObject *m) {$/;" f +_PyTestCapi_Init_HeaptypeRelative Modules/_testcapi/heaptype_relative.c /^_PyTestCapi_Init_HeaptypeRelative(PyObject *m) {$/;" f +_PyTestCapi_Init_Immortal Modules/_testcapi/immortal.c /^_PyTestCapi_Init_Immortal(PyObject *mod)$/;" f +_PyTestCapi_Init_Long Modules/_testcapi/long.c /^_PyTestCapi_Init_Long(PyObject *mod)$/;" f +_PyTestCapi_Init_Mem Modules/_testcapi/mem.c /^_PyTestCapi_Init_Mem(PyObject *mod)$/;" f +_PyTestCapi_Init_PyOS Modules/_testcapi/pyos.c /^_PyTestCapi_Init_PyOS(PyObject *mod)$/;" f +_PyTestCapi_Init_PyTime Modules/_testcapi/pytime.c /^_PyTestCapi_Init_PyTime(PyObject *mod)$/;" f +_PyTestCapi_Init_Structmember Modules/_testcapi/structmember.c /^_PyTestCapi_Init_Structmember(PyObject *m)$/;" f +_PyTestCapi_Init_Unicode Modules/_testcapi/unicode.c /^_PyTestCapi_Init_Unicode(PyObject *m) {$/;" f +_PyTestCapi_Init_Vectorcall Modules/_testcapi/vectorcall.c /^_PyTestCapi_Init_Vectorcall(PyObject *m) {$/;" f +_PyTestCapi_Init_VectorcallLimited Modules/_testcapi/vectorcall_limited.c /^_PyTestCapi_Init_VectorcallLimited(PyObject *m) {$/;" f +_PyTestCapi_Init_Watchers Modules/_testcapi/watchers.c /^_PyTestCapi_Init_Watchers(PyObject *mod)$/;" f +_PyThreadState_Bind Python/pystate.c /^_PyThreadState_Bind(PyThreadState *tstate)$/;" f +_PyThreadState_DeleteCurrent Python/pystate.c /^_PyThreadState_DeleteCurrent(PyThreadState *tstate)$/;" f +_PyThreadState_DeleteExcept Python/pystate.c /^_PyThreadState_DeleteExcept(PyThreadState *tstate)$/;" f +_PyThreadState_GET Include/internal/pycore_pystate.h /^_PyThreadState_GET(void)$/;" f +_PyThreadState_GetCurrent Python/pystate.c /^_PyThreadState_GetCurrent(void)$/;" f +_PyThreadState_GetDict Python/pystate.c /^_PyThreadState_GetDict(PyThreadState *tstate)$/;" f +_PyThreadState_GetFrame Include/internal/pycore_frame.h /^_PyThreadState_GetFrame(PyThreadState *tstate)$/;" f +_PyThreadState_HasStackSpace Include/internal/pycore_frame.h /^_PyThreadState_HasStackSpace(PyThreadState *tstate, int size)$/;" f +_PyThreadState_INIT Include/internal/pycore_runtime_init.h 128;" d +_PyThreadState_Init Python/pystate.c /^_PyThreadState_Init(PyThreadState *tstate)$/;" f +_PyThreadState_New Python/pystate.c /^_PyThreadState_New(PyInterpreterState *interp)$/;" f +_PyThreadState_PopFrame Python/pystate.c /^_PyThreadState_PopFrame(PyThreadState *tstate, _PyInterpreterFrame * frame)$/;" f +_PyThreadState_Prealloc Python/pystate.c /^_PyThreadState_Prealloc(PyInterpreterState *interp)$/;" f +_PyThreadState_PushFrame Python/pystate.c /^_PyThreadState_PushFrame(PyThreadState *tstate, size_t size)$/;" f +_PyThreadState_Swap Python/pystate.c /^_PyThreadState_Swap(_PyRuntimeState *runtime, PyThreadState *newts)$/;" f +_PyThreadState_SwapNoGIL Python/pystate.c /^_PyThreadState_SwapNoGIL(PyThreadState *newts)$/;" f +_PyThreadState_UncheckedGet Python/pystate.c /^_PyThreadState_UncheckedGet(void)$/;" f +_PyThread_CurrentExceptions Python/pystate.c /^_PyThread_CurrentExceptions(void)$/;" f +_PyThread_CurrentFrames Python/pystate.c /^_PyThread_CurrentFrames(void)$/;" f +_PyThread_FiniType Python/thread.c /^_PyThread_FiniType(PyInterpreterState *interp)$/;" f +_PyThread_at_fork_reinit Python/thread_pthread.h /^_PyThread_at_fork_reinit(PyThread_type_lock *lock)$/;" f +_PyThread_cond_after Python/thread_pthread.h /^_PyThread_cond_after(long long us, struct timespec *abs)$/;" f +_PyThread_cond_init Python/thread_pthread.h /^_PyThread_cond_init(PyCOND_T *cond)$/;" f +_PyTime Lib/test/test_time.py /^class _PyTime(enum.IntEnum):$/;" c +_PyTime_Add Python/pytime.c /^_PyTime_Add(_PyTime_t t1, _PyTime_t t2)$/;" f +_PyTime_As100Nanoseconds Python/pytime.c /^_PyTime_As100Nanoseconds(_PyTime_t t, _PyTime_round_t round)$/;" f +_PyTime_AsLong Python/pytime.c /^_PyTime_AsLong(_PyTime_t t, long *t2)$/;" f file: +_PyTime_AsMicroseconds Python/pytime.c /^_PyTime_AsMicroseconds(_PyTime_t t, _PyTime_round_t round)$/;" f +_PyTime_AsMilliseconds Python/pytime.c /^_PyTime_AsMilliseconds(_PyTime_t t, _PyTime_round_t round)$/;" f +_PyTime_AsNanoseconds Python/pytime.c /^_PyTime_AsNanoseconds(_PyTime_t t)$/;" f +_PyTime_AsNanosecondsObject Python/pytime.c /^_PyTime_AsNanosecondsObject(_PyTime_t t)$/;" f +_PyTime_AsSecondsDouble Python/pytime.c /^_PyTime_AsSecondsDouble(_PyTime_t t)$/;" f +_PyTime_AsTime_t Python/pytime.c /^_PyTime_AsTime_t(_PyTime_t t, time_t *t2)$/;" f file: +_PyTime_AsTimespec Python/pytime.c /^_PyTime_AsTimespec(_PyTime_t t, struct timespec *ts)$/;" f +_PyTime_AsTimespec_clamp Python/pytime.c /^_PyTime_AsTimespec_clamp(_PyTime_t t, struct timespec *ts)$/;" f +_PyTime_AsTimeval Python/pytime.c /^_PyTime_AsTimeval(_PyTime_t t, struct timeval *tv, _PyTime_round_t round)$/;" f +_PyTime_AsTimevalTime_t Python/pytime.c /^_PyTime_AsTimevalTime_t(_PyTime_t t, time_t *p_secs, int *us,$/;" f +_PyTime_AsTimeval_clamp Python/pytime.c /^_PyTime_AsTimeval_clamp(_PyTime_t t, struct timeval *tv, _PyTime_round_t round)$/;" f +_PyTime_FromMicrosecondsClamp Python/pytime.c /^_PyTime_FromMicrosecondsClamp(_PyTime_t us)$/;" f +_PyTime_FromMillisecondsObject Python/pytime.c /^_PyTime_FromMillisecondsObject(_PyTime_t *tp, PyObject *obj, _PyTime_round_t round)$/;" f +_PyTime_FromNanoseconds Python/pytime.c /^_PyTime_FromNanoseconds(_PyTime_t ns)$/;" f +_PyTime_FromNanosecondsObject Python/pytime.c /^_PyTime_FromNanosecondsObject(_PyTime_t *tp, PyObject *obj)$/;" f +_PyTime_FromSeconds Python/pytime.c /^_PyTime_FromSeconds(int seconds)$/;" f +_PyTime_FromSecondsObject Python/pytime.c /^_PyTime_FromSecondsObject(_PyTime_t *tp, PyObject *obj, _PyTime_round_t round)$/;" f +_PyTime_FromTimespec Python/pytime.c /^_PyTime_FromTimespec(_PyTime_t *tp, struct timespec *ts)$/;" f +_PyTime_FromTimeval Python/pytime.c /^_PyTime_FromTimeval(_PyTime_t *tp, struct timeval *tv)$/;" f +_PyTime_GetClockWithInfo Modules/timemodule.c /^_PyTime_GetClockWithInfo(_PyTime_t *tp, _Py_clock_info_t *info)$/;" f file: +_PyTime_GetMonotonicClock Python/pytime.c /^_PyTime_GetMonotonicClock(void)$/;" f +_PyTime_GetMonotonicClockWithInfo Python/pytime.c /^_PyTime_GetMonotonicClockWithInfo(_PyTime_t *tp, _Py_clock_info_t *info)$/;" f +_PyTime_GetPerfCounter Python/pytime.c /^_PyTime_GetPerfCounter(void)$/;" f +_PyTime_GetPerfCounterWithInfo Python/pytime.c /^_PyTime_GetPerfCounterWithInfo(_PyTime_t *t, _Py_clock_info_t *info)$/;" f +_PyTime_GetProcessTimeWithInfo Modules/timemodule.c /^_PyTime_GetProcessTimeWithInfo(_PyTime_t *tp, _Py_clock_info_t *info)$/;" f file: +_PyTime_GetSystemClock Python/pytime.c /^_PyTime_GetSystemClock(void)$/;" f +_PyTime_GetSystemClockWithInfo Python/pytime.c /^_PyTime_GetSystemClockWithInfo(_PyTime_t *t, _Py_clock_info_t *info)$/;" f +_PyTime_GetThreadTimeWithInfo Modules/timemodule.c /^_PyTime_GetThreadTimeWithInfo(_PyTime_t *tp, _Py_clock_info_t *info)$/;" f file: +_PyTime_Init Modules/timemodule.c /^_PyTime_Init(void)$/;" f +_PyTime_MAX Include/cpython/pytime.h 67;" d +_PyTime_MAX Lib/test/test_time.py /^_PyTime_MAX = 2 ** 63 - 1$/;" v +_PyTime_MIN Include/cpython/pytime.h 65;" d +_PyTime_MIN Lib/test/test_time.py /^_PyTime_MIN = -2 ** 63$/;" v +_PyTime_Mul Python/pytime.c /^_PyTime_Mul(_PyTime_t t, _PyTime_t k)$/;" f file: +_PyTime_MulDiv Python/pytime.c /^_PyTime_MulDiv(_PyTime_t ticks, _PyTime_t mul, _PyTime_t div)$/;" f +_PyTime_ObjectToTime_t Python/pytime.c /^_PyTime_ObjectToTime_t(PyObject *obj, time_t *sec, _PyTime_round_t round)$/;" f +_PyTime_ObjectToTimespec Python/pytime.c /^_PyTime_ObjectToTimespec(PyObject *obj, time_t *sec, long *nsec,$/;" f +_PyTime_ObjectToTimeval Python/pytime.c /^_PyTime_ObjectToTimeval(PyObject *obj, time_t *sec, long *usec,$/;" f +_PyTime_ROUND_CEILING Include/cpython/pytime.h /^ _PyTime_ROUND_CEILING=1,$/;" e enum:__anon175 +_PyTime_ROUND_FLOOR Include/cpython/pytime.h /^ _PyTime_ROUND_FLOOR=0,$/;" e enum:__anon175 +_PyTime_ROUND_HALF_EVEN Include/cpython/pytime.h /^ _PyTime_ROUND_HALF_EVEN=2,$/;" e enum:__anon175 +_PyTime_ROUND_TIMEOUT Include/cpython/pytime.h /^ _PyTime_ROUND_TIMEOUT = _PyTime_ROUND_UP$/;" e enum:__anon175 +_PyTime_ROUND_UP Include/cpython/pytime.h /^ _PyTime_ROUND_UP=3,$/;" e enum:__anon175 +_PyTime_gmtime Python/pytime.c /^_PyTime_gmtime(time_t t, struct tm *tm)$/;" f +_PyTime_localtime Python/pytime.c /^_PyTime_localtime(time_t t, struct tm *tm)$/;" f +_PyTime_round_t Include/cpython/pytime.h /^} _PyTime_round_t;$/;" t typeref:enum:__anon175 +_PyTime_t Include/cpython/pytime.h /^typedef int64_t _PyTime_t;$/;" t +_PyToken_Free Parser/tokenizer.c /^_PyToken_Free(struct token *token) {$/;" f +_PyToken_Init Parser/tokenizer.c /^_PyToken_Init(struct token *token) {$/;" f +_PyToken_OneChar Parser/token.c /^_PyToken_OneChar(int c1)$/;" f +_PyToken_ThreeChars Parser/token.c /^_PyToken_ThreeChars(int c1, int c2, int c3)$/;" f +_PyToken_TwoChars Parser/token.c /^_PyToken_TwoChars(int c1, int c2)$/;" f +_PyTokenizer_FindEncodingFilename Parser/tokenizer.c /^_PyTokenizer_FindEncodingFilename(int fd, PyObject *filename)$/;" f +_PyTokenizer_Free Parser/tokenizer.c /^_PyTokenizer_Free(struct tok_state *tok)$/;" f +_PyTokenizer_FromFile Parser/tokenizer.c /^_PyTokenizer_FromFile(FILE *fp, const char* enc,$/;" f +_PyTokenizer_FromReadline Parser/tokenizer.c /^_PyTokenizer_FromReadline(PyObject* readline, const char* enc,$/;" f +_PyTokenizer_FromString Parser/tokenizer.c /^_PyTokenizer_FromString(const char *str, int exec_input, int preserve_crlf)$/;" f +_PyTokenizer_FromUTF8 Parser/tokenizer.c /^_PyTokenizer_FromUTF8(const char *str, int exec_input, int preserve_crlf)$/;" f +_PyTokenizer_Get Parser/tokenizer.c /^_PyTokenizer_Get(struct tok_state *tok, struct token *token)$/;" f +_PyTraceBack_FromFrame Python/traceback.c /^_PyTraceBack_FromFrame(PyObject *tb_next, PyFrameObject *frame)$/;" f +_PyTraceBack_Print_Indented Python/traceback.c /^_PyTraceBack_Print_Indented(PyObject *v, int indent, const char *margin,$/;" f +_PyTraceMalloc_ClearTraces Python/tracemalloc.c /^_PyTraceMalloc_ClearTraces(void)$/;" f +_PyTraceMalloc_Config Include/internal/pycore_tracemalloc.h /^struct _PyTraceMalloc_Config {$/;" s +_PyTraceMalloc_Fini Python/tracemalloc.c /^_PyTraceMalloc_Fini(void)$/;" f +_PyTraceMalloc_GetMemory Python/tracemalloc.c /^_PyTraceMalloc_GetMemory(void) {$/;" f +_PyTraceMalloc_GetObjectTraceback Python/tracemalloc.c /^_PyTraceMalloc_GetObjectTraceback(PyObject *obj)$/;" f +_PyTraceMalloc_GetTraceback Python/tracemalloc.c /^_PyTraceMalloc_GetTraceback(unsigned int domain, uintptr_t ptr)$/;" f +_PyTraceMalloc_GetTracebackLimit Python/tracemalloc.c /^int _PyTraceMalloc_GetTracebackLimit(void) {$/;" f +_PyTraceMalloc_GetTracedMemory Python/tracemalloc.c /^_PyTraceMalloc_GetTracedMemory(void)$/;" f +_PyTraceMalloc_GetTraces Python/tracemalloc.c /^_PyTraceMalloc_GetTraces(void)$/;" f +_PyTraceMalloc_Init Python/tracemalloc.c /^_PyTraceMalloc_Init(void)$/;" f +_PyTraceMalloc_IsTracing Python/tracemalloc.c /^_PyTraceMalloc_IsTracing(void)$/;" f +_PyTraceMalloc_NewReference Python/tracemalloc.c /^_PyTraceMalloc_NewReference(PyObject *op)$/;" f +_PyTraceMalloc_ResetPeak Python/tracemalloc.c /^_PyTraceMalloc_ResetPeak(void)$/;" f +_PyTraceMalloc_Start Python/tracemalloc.c /^_PyTraceMalloc_Start(int max_nframe)$/;" f +_PyTraceMalloc_Stop Python/tracemalloc.c /^_PyTraceMalloc_Stop(void)$/;" f +_PyTraceback_Add Python/traceback.c /^void _PyTraceback_Add(const char *funcname, const char *filename, int lineno)$/;" f +_PyTrash_UNWIND_LEVEL Objects/object.c 2421;" d file: +_PyTrash_begin Objects/object.c /^_PyTrash_begin(PyThreadState *tstate, PyObject *op)$/;" f +_PyTrash_clear_state Objects/object.c /^_PyTrash_clear_state(PyThreadState *tstate)$/;" f file: +_PyTrash_cond Objects/object.c /^_PyTrash_cond(PyObject *op, destructor dealloc)$/;" f +_PyTrash_end Objects/object.c /^_PyTrash_end(PyThreadState *tstate)$/;" f +_PyTrash_get_state Objects/object.c /^_PyTrash_get_state(PyThreadState *tstate)$/;" f file: +_PyTrash_thread_deposit_object Objects/object.c /^_PyTrash_thread_deposit_object(struct _py_trashcan *trash, PyObject *op)$/;" f file: +_PyTrash_thread_destroy_chain Objects/object.c /^_PyTrash_thread_destroy_chain(struct _py_trashcan *trash)$/;" f file: +_PyTupleIterObject Include/internal/pycore_tuple.h /^} _PyTupleIterObject;$/;" t typeref:struct:__anon143 +_PyTuple_CAST Include/cpython/tupleobject.h 17;" d +_PyTuple_ClearFreeList Objects/tupleobject.c /^_PyTuple_ClearFreeList(PyInterpreterState *interp)$/;" f +_PyTuple_DebugMallocStats Objects/tupleobject.c /^_PyTuple_DebugMallocStats(FILE *out)$/;" f +_PyTuple_Fini Objects/tupleobject.c /^_PyTuple_Fini(PyInterpreterState *interp)$/;" f +_PyTuple_FromArray Objects/tupleobject.c /^_PyTuple_FromArray(PyObject *const *src, Py_ssize_t n)$/;" f +_PyTuple_FromArraySteal Objects/tupleobject.c /^_PyTuple_FromArraySteal(PyObject *const *src, Py_ssize_t n)$/;" f +_PyTuple_ITEMS Include/internal/pycore_tuple.h 64;" d +_PyTuple_MaybeUntrack Objects/tupleobject.c /^_PyTuple_MaybeUntrack(PyObject *op)$/;" f +_PyTuple_Resize Objects/tupleobject.c /^_PyTuple_Resize(PyObject **pv, Py_ssize_t newsize)$/;" f +_PyTypeAlias_Type Objects/typevarobject.c /^PyTypeObject _PyTypeAlias_Type = {$/;" v +_PyType_AllocNoTrack Objects/typeobject.c /^_PyType_AllocNoTrack(PyTypeObject *type, Py_ssize_t nitems)$/;" f +_PyType_CAST Include/object.h 981;" d +_PyType_CalculateMetaclass Objects/typeobject.c /^_PyType_CalculateMetaclass(PyTypeObject *metatype, PyObject *bases)$/;" f +_PyType_CheckConsistency Objects/typeobject.c /^_PyType_CheckConsistency(PyTypeObject *type)$/;" f +_PyType_ClearCache Objects/typeobject.c /^_PyType_ClearCache(PyInterpreterState *interp)$/;" f file: +_PyType_DocWithoutSignature Objects/typeobject.c /^_PyType_DocWithoutSignature(const char *name, const char *internal_doc)$/;" f file: +_PyType_FromMetaclass_impl Objects/typeobject.c /^_PyType_FromMetaclass_impl($/;" f file: +_PyType_GetBases Objects/typeobject.c /^_PyType_GetBases(PyTypeObject *self)$/;" f +_PyType_GetDict Objects/typeobject.c /^_PyType_GetDict(PyTypeObject *self)$/;" f +_PyType_GetDocFromInternalDoc Objects/typeobject.c /^_PyType_GetDocFromInternalDoc(const char *name, const char *internal_doc)$/;" f +_PyType_GetMRO Objects/typeobject.c /^_PyType_GetMRO(PyTypeObject *self)$/;" f +_PyType_GetModuleState Include/internal/pycore_typeobject.h /^_PyType_GetModuleState(PyTypeObject *type)$/;" f +_PyType_GetSlotNames Objects/typeobject.c /^_PyType_GetSlotNames(PyTypeObject *cls)$/;" f file: +_PyType_GetSubclasses Objects/typeobject.c /^_PyType_GetSubclasses(PyTypeObject *self)$/;" f +_PyType_GetTextSignatureFromInternalDoc Objects/typeobject.c /^_PyType_GetTextSignatureFromInternalDoc(const char *name, const char *internal_doc)$/;" f +_PyType_HasFeature Include/internal/pycore_object.h /^_PyType_HasFeature(PyTypeObject *type, unsigned long feature) {$/;" f +_PyType_HasSubclasses Objects/typeobject.c /^_PyType_HasSubclasses(PyTypeObject *self)$/;" f +_PyType_IS_GC Include/internal/pycore_object.h 336;" d +_PyType_InitCache Objects/typeobject.c /^_PyType_InitCache(PyInterpreterState *interp)$/;" f +_PyType_IsReady Include/internal/pycore_typeobject.h /^_PyType_IsReady(PyTypeObject *type)$/;" f +_PyType_Lookup Objects/typeobject.c /^_PyType_Lookup(PyTypeObject *type, PyObject *name)$/;" f +_PyType_LookupId Objects/typeobject.c /^_PyType_LookupId(PyTypeObject *type, _Py_Identifier *name)$/;" f +_PyType_Name Objects/typeobject.c /^_PyType_Name(PyTypeObject *type)$/;" f +_PyType_PreHeaderSize Include/internal/pycore_object.h /^_PyType_PreHeaderSize(PyTypeObject *tp)$/;" f +_PyType_SUPPORTS_WEAKREFS Include/internal/pycore_object.h /^static inline int _PyType_SUPPORTS_WEAKREFS(PyTypeObject *type) {$/;" f +_PyTypes_Fini Objects/typeobject.c /^_PyTypes_Fini(PyInterpreterState *interp)$/;" f +_PyTypes_FiniTypes Objects/object.c /^_PyTypes_FiniTypes(PyInterpreterState *interp)$/;" f +_PyTypes_InitTypes Objects/object.c /^_PyTypes_InitTypes(PyInterpreterState *interp)$/;" f +_PyUnicodeASCIIIter_Type Objects/unicodeobject.c /^PyTypeObject _PyUnicodeASCIIIter_Type = {$/;" v +_PyUnicodeObject_CAST Include/cpython/unicodeobject.h 181;" d +_PyUnicodeTranslateError_Create Objects/exceptions.c /^_PyUnicodeTranslateError_Create($/;" f +_PyUnicodeWriter Include/cpython/unicodeobject.h /^} _PyUnicodeWriter ;$/;" t typeref:struct:__anon236 +_PyUnicodeWriter_Dealloc Objects/unicodeobject.c /^_PyUnicodeWriter_Dealloc(_PyUnicodeWriter *writer)$/;" f +_PyUnicodeWriter_Finish Objects/unicodeobject.c /^_PyUnicodeWriter_Finish(_PyUnicodeWriter *writer)$/;" f +_PyUnicodeWriter_Init Objects/unicodeobject.c /^_PyUnicodeWriter_Init(_PyUnicodeWriter *writer)$/;" f +_PyUnicodeWriter_InitWithBuffer Objects/unicodeobject.c /^_PyUnicodeWriter_InitWithBuffer(_PyUnicodeWriter *writer, PyObject *buffer)$/;" f file: +_PyUnicodeWriter_Prepare Include/cpython/unicodeobject.h 521;" d +_PyUnicodeWriter_PrepareInternal Objects/unicodeobject.c /^_PyUnicodeWriter_PrepareInternal(_PyUnicodeWriter *writer,$/;" f +_PyUnicodeWriter_PrepareKind Include/cpython/unicodeobject.h 540;" d +_PyUnicodeWriter_PrepareKindInternal Objects/unicodeobject.c /^_PyUnicodeWriter_PrepareKindInternal(_PyUnicodeWriter *writer,$/;" f +_PyUnicodeWriter_Update Objects/unicodeobject.c /^_PyUnicodeWriter_Update(_PyUnicodeWriter *writer)$/;" f file: +_PyUnicodeWriter_WriteASCIIString Objects/unicodeobject.c /^_PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,$/;" f +_PyUnicodeWriter_WriteChar Objects/unicodeobject.c /^_PyUnicodeWriter_WriteChar(_PyUnicodeWriter *writer, Py_UCS4 ch)$/;" f +_PyUnicodeWriter_WriteCharInline Objects/unicodeobject.c /^_PyUnicodeWriter_WriteCharInline(_PyUnicodeWriter *writer, Py_UCS4 ch)$/;" f file: +_PyUnicodeWriter_WriteLatin1String Objects/unicodeobject.c /^_PyUnicodeWriter_WriteLatin1String(_PyUnicodeWriter *writer,$/;" f +_PyUnicodeWriter_WriteStr Objects/unicodeobject.c /^_PyUnicodeWriter_WriteStr(_PyUnicodeWriter *writer, PyObject *str)$/;" f +_PyUnicodeWriter_WriteSubstring Objects/unicodeobject.c /^_PyUnicodeWriter_WriteSubstring(_PyUnicodeWriter *writer, PyObject *str,$/;" f +_PyUnicode_ASCII_BASE_INIT Include/internal/pycore_runtime_init.h 158;" d +_PyUnicode_AsASCIIString Objects/unicodeobject.c /^_PyUnicode_AsASCIIString(PyObject *unicode, const char *errors)$/;" f +_PyUnicode_AsLatin1String Objects/unicodeobject.c /^_PyUnicode_AsLatin1String(PyObject *unicode, const char *errors)$/;" f +_PyUnicode_AsString Include/cpython/unicodeobject.h 627;" d +_PyUnicode_AsUTF8String Objects/unicodeobject.c /^_PyUnicode_AsUTF8String(PyObject *unicode, const char *errors)$/;" f +_PyUnicode_BidirectionalNames Modules/unicodedata_db.h /^const char *_PyUnicode_BidirectionalNames[] = {$/;" v +_PyUnicode_CHECK Objects/unicodeobject.c 111;" d file: +_PyUnicode_CHECK Objects/unicodeobject.c 113;" d file: +_PyUnicode_COMPACT_DATA Include/cpython/unicodeobject.h /^static inline void* _PyUnicode_COMPACT_DATA(PyObject *op) {$/;" f +_PyUnicode_CONVERT_BYTES Objects/unicodeobject.c 163;" d file: +_PyUnicode_CategoryNames Modules/unicodedata_db.h /^const char *_PyUnicode_CategoryNames[] = {$/;" v +_PyUnicode_CheckConsistency Objects/unicodeobject.c /^_PyUnicode_CheckConsistency(PyObject *op, int check_content)$/;" f +_PyUnicode_ClearInterned Objects/unicodeobject.c /^_PyUnicode_ClearInterned(PyInterpreterState *interp)$/;" f +_PyUnicode_Copy Objects/unicodeobject.c /^_PyUnicode_Copy(PyObject *unicode)$/;" f +_PyUnicode_DATA_ANY Objects/unicodeobject.c 143;" d file: +_PyUnicode_DatabaseRecord Modules/unicodedata.c /^} _PyUnicode_DatabaseRecord;$/;" t typeref:struct:__anon642 file: +_PyUnicode_Database_Records Modules/unicodedata_db.h /^const _PyUnicode_DatabaseRecord _PyUnicode_Database_Records[] = {$/;" v +_PyUnicode_DecodeRawUnicodeEscapeStateful Objects/unicodeobject.c /^_PyUnicode_DecodeRawUnicodeEscapeStateful(const char *s,$/;" f +_PyUnicode_DecodeUnicodeEscapeInternal Objects/unicodeobject.c /^_PyUnicode_DecodeUnicodeEscapeInternal(const char *s,$/;" f +_PyUnicode_DecodeUnicodeEscapeStateful Objects/unicodeobject.c /^_PyUnicode_DecodeUnicodeEscapeStateful(const char *s,$/;" f +_PyUnicode_Dump Objects/unicodeobject.c /^_PyUnicode_Dump(PyObject *op)$/;" f +_PyUnicode_EQ Objects/unicodeobject.c /^_PyUnicode_EQ(PyObject *aa, PyObject *bb)$/;" f +_PyUnicode_EastAsianWidthNames Modules/unicodedata_db.h /^const char *_PyUnicode_EastAsianWidthNames[] = {$/;" v +_PyUnicode_EnableLegacyWindowsFSEncoding Objects/unicodeobject.c /^_PyUnicode_EnableLegacyWindowsFSEncoding(void)$/;" f +_PyUnicode_EncodeCharmap Objects/unicodeobject.c /^_PyUnicode_EncodeCharmap(PyObject *unicode,$/;" f +_PyUnicode_EncodeUTF16 Objects/unicodeobject.c /^_PyUnicode_EncodeUTF16(PyObject *str,$/;" f +_PyUnicode_EncodeUTF32 Objects/unicodeobject.c /^_PyUnicode_EncodeUTF32(PyObject *str,$/;" f +_PyUnicode_EncodeUTF7 Objects/unicodeobject.c /^_PyUnicode_EncodeUTF7(PyObject *str,$/;" f +_PyUnicode_Equal Objects/unicodeobject.c /^_PyUnicode_Equal(PyObject *str1, PyObject *str2)$/;" f +_PyUnicode_EqualToASCIIId Objects/unicodeobject.c /^_PyUnicode_EqualToASCIIId(PyObject *left, _Py_Identifier *right)$/;" f +_PyUnicode_EqualToASCIIString Objects/unicodeobject.c /^_PyUnicode_EqualToASCIIString(PyObject *unicode, const char *str)$/;" f +_PyUnicode_ExactDealloc Objects/unicodeobject.c /^_PyUnicode_ExactDealloc(PyObject *op)$/;" f +_PyUnicode_ExtendedCase Objects/unicodetype_db.h /^const Py_UCS4 _PyUnicode_ExtendedCase[] = {$/;" v +_PyUnicode_FastCopyCharacters Objects/unicodeobject.c /^_PyUnicode_FastCopyCharacters($/;" f +_PyUnicode_FastFill Objects/unicodeobject.c /^_PyUnicode_FastFill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length,$/;" f +_PyUnicode_FindMaxChar Objects/unicodeobject.c /^_PyUnicode_FindMaxChar(PyObject *unicode, Py_ssize_t start, Py_ssize_t end)$/;" f +_PyUnicode_Fini Objects/unicodeobject.c /^_PyUnicode_Fini(PyInterpreterState *interp)$/;" f +_PyUnicode_FiniEncodings Objects/unicodeobject.c /^_PyUnicode_FiniEncodings(struct _Py_unicode_fs_codec *fs_codec)$/;" f file: +_PyUnicode_FiniTypes Objects/unicodeobject.c /^_PyUnicode_FiniTypes(PyInterpreterState *interp)$/;" f +_PyUnicode_FormatAdvancedWriter Python/formatter_unicode.c /^_PyUnicode_FormatAdvancedWriter(_PyUnicodeWriter *writer,$/;" f +_PyUnicode_FormatLong Objects/unicodeobject.c /^_PyUnicode_FormatLong(PyObject *val, int alt, int prec, int type)$/;" f +_PyUnicode_FromASCII Objects/unicodeobject.c /^_PyUnicode_FromASCII(const char *buffer, Py_ssize_t size)$/;" f +_PyUnicode_FromId Objects/unicodeobject.c /^_PyUnicode_FromId(_Py_Identifier *id)$/;" f +_PyUnicode_FromUCS1 Objects/unicodeobject.c /^_PyUnicode_FromUCS1(const Py_UCS1* u, Py_ssize_t size)$/;" f file: +_PyUnicode_FromUCS2 Objects/unicodeobject.c /^_PyUnicode_FromUCS2(const Py_UCS2 *u, Py_ssize_t size)$/;" f file: +_PyUnicode_FromUCS4 Objects/unicodeobject.c /^_PyUnicode_FromUCS4(const Py_UCS4 *u, Py_ssize_t size)$/;" f file: +_PyUnicode_GET_LENGTH Objects/unicodeobject.c 140;" d file: +_PyUnicode_HASH Objects/unicodeobject.c 135;" d file: +_PyUnicode_HAS_UTF8_MEMORY Objects/unicodeobject.c 153;" d file: +_PyUnicode_InitEncodings Objects/unicodeobject.c /^_PyUnicode_InitEncodings(PyThreadState *tstate)$/;" f +_PyUnicode_InitGlobalObjects Objects/unicodeobject.c /^_PyUnicode_InitGlobalObjects(PyInterpreterState *interp)$/;" f +_PyUnicode_InitState Objects/unicodeobject.c /^_PyUnicode_InitState(PyInterpreterState *interp)$/;" f +_PyUnicode_InitStaticStrings Include/internal/pycore_unicodeobject_generated.h /^_PyUnicode_InitStaticStrings(PyInterpreterState *interp) {$/;" f +_PyUnicode_InitTypes Objects/unicodeobject.c /^_PyUnicode_InitTypes(PyInterpreterState *interp)$/;" f +_PyUnicode_InsertThousandsGrouping Objects/unicodeobject.c /^_PyUnicode_InsertThousandsGrouping($/;" f +_PyUnicode_InternInPlace Objects/unicodeobject.c /^_PyUnicode_InternInPlace(PyInterpreterState *interp, PyObject **p)$/;" f +_PyUnicode_InternedSize Objects/unicodeobject.c /^_PyUnicode_InternedSize(void)$/;" f +_PyUnicode_IsAlpha Objects/unicodectype.c /^int _PyUnicode_IsAlpha(Py_UCS4 ch)$/;" f +_PyUnicode_IsCaseIgnorable Objects/unicodectype.c /^int _PyUnicode_IsCaseIgnorable(Py_UCS4 ch)$/;" f +_PyUnicode_IsCased Objects/unicodectype.c /^int _PyUnicode_IsCased(Py_UCS4 ch)$/;" f +_PyUnicode_IsDecimalDigit Objects/unicodectype.c /^int _PyUnicode_IsDecimalDigit(Py_UCS4 ch)$/;" f +_PyUnicode_IsDigit Objects/unicodectype.c /^int _PyUnicode_IsDigit(Py_UCS4 ch)$/;" f +_PyUnicode_IsLinebreak Objects/unicodetype_db.h /^int _PyUnicode_IsLinebreak(const Py_UCS4 ch)$/;" f +_PyUnicode_IsLowercase Objects/unicodectype.c /^int _PyUnicode_IsLowercase(Py_UCS4 ch)$/;" f +_PyUnicode_IsNumeric Objects/unicodectype.c /^int _PyUnicode_IsNumeric(Py_UCS4 ch)$/;" f +_PyUnicode_IsPrintable Objects/unicodectype.c /^int _PyUnicode_IsPrintable(Py_UCS4 ch)$/;" f +_PyUnicode_IsTitlecase Objects/unicodectype.c /^int _PyUnicode_IsTitlecase(Py_UCS4 ch)$/;" f +_PyUnicode_IsUppercase Objects/unicodectype.c /^int _PyUnicode_IsUppercase(Py_UCS4 ch)$/;" f +_PyUnicode_IsWhitespace Objects/unicodetype_db.h /^int _PyUnicode_IsWhitespace(const Py_UCS4 ch)$/;" f +_PyUnicode_IsXidContinue Objects/unicodectype.c /^int _PyUnicode_IsXidContinue(Py_UCS4 ch)$/;" f +_PyUnicode_IsXidStart Objects/unicodectype.c /^int _PyUnicode_IsXidStart(Py_UCS4 ch)$/;" f +_PyUnicode_JoinArray Objects/unicodeobject.c /^_PyUnicode_JoinArray(PyObject *separator, PyObject *const *items, Py_ssize_t seqlen)$/;" f +_PyUnicode_KIND Objects/unicodeobject.c 137;" d file: +_PyUnicode_LATIN1_INIT Include/internal/pycore_runtime_init.h 178;" d +_PyUnicode_LENGTH Objects/unicodeobject.c 131;" d file: +_PyUnicode_NONCOMPACT_DATA Include/cpython/unicodeobject.h /^static inline void* _PyUnicode_NONCOMPACT_DATA(PyObject *op) {$/;" f +_PyUnicode_Name_CAPI Include/internal/pycore_ucnhash.h /^} _PyUnicode_Name_CAPI;$/;" t typeref:struct:__anon9 +_PyUnicode_SHARE_UTF8 Objects/unicodeobject.c 146;" d file: +_PyUnicode_STATE Objects/unicodeobject.c 133;" d file: +_PyUnicode_ScanIdentifier Objects/unicodeobject.c /^_PyUnicode_ScanIdentifier(PyObject *self)$/;" f +_PyUnicode_ToDecimalDigit Objects/unicodectype.c /^int _PyUnicode_ToDecimalDigit(Py_UCS4 ch)$/;" f +_PyUnicode_ToDigit Objects/unicodectype.c /^int _PyUnicode_ToDigit(Py_UCS4 ch)$/;" f +_PyUnicode_ToFoldedFull Objects/unicodectype.c /^int _PyUnicode_ToFoldedFull(Py_UCS4 ch, Py_UCS4 *res)$/;" f +_PyUnicode_ToLowerFull Objects/unicodectype.c /^int _PyUnicode_ToLowerFull(Py_UCS4 ch, Py_UCS4 *res)$/;" f +_PyUnicode_ToLowercase Objects/unicodectype.c /^Py_UCS4 _PyUnicode_ToLowercase(Py_UCS4 ch)$/;" f +_PyUnicode_ToNumeric Objects/unicodetype_db.h /^double _PyUnicode_ToNumeric(Py_UCS4 ch)$/;" f +_PyUnicode_ToTitleFull Objects/unicodectype.c /^int _PyUnicode_ToTitleFull(Py_UCS4 ch, Py_UCS4 *res)$/;" f +_PyUnicode_ToTitlecase Objects/unicodectype.c /^Py_UCS4 _PyUnicode_ToTitlecase(Py_UCS4 ch)$/;" f +_PyUnicode_ToUpperFull Objects/unicodectype.c /^int _PyUnicode_ToUpperFull(Py_UCS4 ch, Py_UCS4 *res)$/;" f +_PyUnicode_ToUppercase Objects/unicodectype.c /^Py_UCS4 _PyUnicode_ToUppercase(Py_UCS4 ch)$/;" f +_PyUnicode_TransformDecimalAndSpaceToASCII Objects/unicodeobject.c /^_PyUnicode_TransformDecimalAndSpaceToASCII(PyObject *unicode)$/;" f +_PyUnicode_TranslateCharmap Objects/unicodeobject.c /^_PyUnicode_TranslateCharmap(PyObject *input,$/;" f file: +_PyUnicode_TypeRecord Objects/unicodectype.c /^} _PyUnicode_TypeRecord;$/;" t typeref:struct:__anon701 file: +_PyUnicode_TypeRecords Objects/unicodetype_db.h /^const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[] = {$/;" v +_PyUnicode_UTF8 Objects/unicodeobject.c 116;" d file: +_PyUnicode_UTF8_LENGTH Objects/unicodeobject.c 123;" d file: +_PyUnicode_WideCharString_Converter Objects/unicodeobject.c /^_PyUnicode_WideCharString_Converter(PyObject *obj, void *ptr)$/;" f +_PyUnicode_WideCharString_Opt_Converter Objects/unicodeobject.c /^_PyUnicode_WideCharString_Opt_Converter(PyObject *obj, void *ptr)$/;" f +_PyUnicode_XStrip Objects/unicodeobject.c /^_PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj)$/;" f +_PyUnicode_compact_data Objects/unicodeobject.c /^const void *_PyUnicode_compact_data(void *unicode_raw) {$/;" f +_PyUnicode_data Objects/unicodeobject.c /^const void *_PyUnicode_data(void *unicode_raw) {$/;" f +_PyUnicode_utf8 Objects/unicodeobject.c /^const char *_PyUnicode_utf8(void *unicode_raw){$/;" f +_PyUnion_Check Include/internal/pycore_unionobject.h 12;" d +_PyUnion_Type Objects/unionobject.c /^PyTypeObject _PyUnion_Type = {$/;" v +_PyUnpackSequenceCache Include/internal/pycore_code.h /^} _PyUnpackSequenceCache;$/;" t typeref:struct:__anon20 +_PyVarObject_CAST Include/object.h 202;" d +_PyVarObject_HEAD_INIT Include/internal/pycore_object.h 31;" d +_PyVectorcall_Call Objects/call.c /^_PyVectorcall_Call(PyThreadState *tstate, vectorcallfunc func,$/;" f file: +_PyVectorcall_Function Include/cpython/abstract.h 69;" d +_PyVectorcall_FunctionInline Include/internal/pycore_call.h /^_PyVectorcall_FunctionInline(PyObject *callable)$/;" f +_PyVectorcall_NARGS Include/cpython/abstract.h /^_PyVectorcall_NARGS(size_t n)$/;" f +_PyWarnings_Fini Python/_warnings.c /^_PyWarnings_Fini(PyInterpreterState *interp)$/;" f +_PyWarnings_Init Python/_warnings.c /^_PyWarnings_Init(void)$/;" f +_PyWarnings_InitState Python/_warnings.c /^_PyWarnings_InitState(PyInterpreterState *interp)$/;" f +_PyWeakReference Include/cpython/weakrefobject.h /^struct _PyWeakReference {$/;" s +_PyWeakref_CallableProxyType Objects/weakrefobject.c /^_PyWeakref_CallableProxyType = {$/;" v +_PyWeakref_ClearRef Objects/weakrefobject.c /^_PyWeakref_ClearRef(PyWeakReference *self)$/;" f +_PyWeakref_GetWeakrefCount Objects/weakrefobject.c /^_PyWeakref_GetWeakrefCount(PyWeakReference *head)$/;" f +_PyWeakref_ProxyType Objects/weakrefobject.c /^_PyWeakref_ProxyType = {$/;" v +_PyWeakref_RefType Objects/weakrefobject.c /^_PyWeakref_RefType = {$/;" v +_PyWideStringList_AsList Python/initconfig.c /^_PyWideStringList_AsList(const PyWideStringList *list)$/;" f +_PyWideStringList_CheckConsistency Python/initconfig.c /^_PyWideStringList_CheckConsistency(const PyWideStringList *list)$/;" f +_PyWideStringList_Clear Python/initconfig.c /^_PyWideStringList_Clear(PyWideStringList *list)$/;" f +_PyWideStringList_Copy Python/initconfig.c /^_PyWideStringList_Copy(PyWideStringList *list, const PyWideStringList *list2)$/;" f +_PyWideStringList_Extend Python/initconfig.c /^_PyWideStringList_Extend(PyWideStringList *list, const PyWideStringList *list2)$/;" f +_PyWideStringList_Find Python/initconfig.c /^_PyWideStringList_Find(PyWideStringList *list, const wchar_t *item)$/;" f file: +_PyWideStringList_INIT Include/internal/pycore_initconfig.h 49;" d +_PyWindowsConsoleIO_closed Modules/_io/winconsoleio.c /^_PyWindowsConsoleIO_closed(PyObject *self)$/;" f +_Py_ADDRESS_SANITIZER Include/pyport.h 748;" d +_Py_ADDRESS_SANITIZER Include/pyport.h 753;" d +_Py_ADJUST_ERANGE1 Include/internal/pycore_pymath.h /^static inline void _Py_ADJUST_ERANGE1(double x)$/;" f +_Py_ADJUST_ERANGE2 Include/internal/pycore_pymath.h /^static inline void _Py_ADJUST_ERANGE2(double x, double y)$/;" f +_Py_ALIGN_DOWN Include/pymacro.h 107;" d +_Py_ALIGN_UP Include/pymacro.h 109;" d +_Py_ANNOTATE_BARRIER_DESTROY Include/dynamic_annotations.h 305;" d +_Py_ANNOTATE_BARRIER_DESTROY Include/dynamic_annotations.h 335;" d +_Py_ANNOTATE_BARRIER_INIT Include/dynamic_annotations.h 292;" d +_Py_ANNOTATE_BARRIER_INIT Include/dynamic_annotations.h 332;" d +_Py_ANNOTATE_BARRIER_WAIT_AFTER Include/dynamic_annotations.h 301;" d +_Py_ANNOTATE_BARRIER_WAIT_AFTER Include/dynamic_annotations.h 334;" d +_Py_ANNOTATE_BARRIER_WAIT_BEFORE Include/dynamic_annotations.h 297;" d +_Py_ANNOTATE_BARRIER_WAIT_BEFORE Include/dynamic_annotations.h 333;" d +_Py_ANNOTATE_BENIGN_RACE Include/dynamic_annotations.h 192;" d +_Py_ANNOTATE_BENIGN_RACE Include/dynamic_annotations.h 351;" d +_Py_ANNOTATE_BENIGN_RACE_SIZED Include/dynamic_annotations.h 198;" d +_Py_ANNOTATE_BENIGN_RACE_SIZED Include/dynamic_annotations.h 352;" d +_Py_ANNOTATE_BENIGN_RACE_STATIC Include/dynamic_annotations.h 480;" d +_Py_ANNOTATE_BENIGN_RACE_STATIC Include/dynamic_annotations.h 495;" d +_Py_ANNOTATE_CONDVAR_LOCK_WAIT Include/dynamic_annotations.h 106;" d +_Py_ANNOTATE_CONDVAR_LOCK_WAIT Include/dynamic_annotations.h 336;" d +_Py_ANNOTATE_CONDVAR_SIGNAL Include/dynamic_annotations.h 116;" d +_Py_ANNOTATE_CONDVAR_SIGNAL Include/dynamic_annotations.h 338;" d +_Py_ANNOTATE_CONDVAR_SIGNAL_ALL Include/dynamic_annotations.h 120;" d +_Py_ANNOTATE_CONDVAR_SIGNAL_ALL Include/dynamic_annotations.h 339;" d +_Py_ANNOTATE_CONDVAR_WAIT Include/dynamic_annotations.h 111;" d +_Py_ANNOTATE_CONDVAR_WAIT Include/dynamic_annotations.h 337;" d +_Py_ANNOTATE_ENABLE_RACE_DETECTION Include/dynamic_annotations.h 248;" d +_Py_ANNOTATE_ENABLE_RACE_DETECTION Include/dynamic_annotations.h 365;" d +_Py_ANNOTATE_EXPECT_RACE Include/dynamic_annotations.h 313;" d +_Py_ANNOTATE_EXPECT_RACE Include/dynamic_annotations.h 350;" d +_Py_ANNOTATE_FLUSH_STATE Include/dynamic_annotations.h 322;" d +_Py_ANNOTATE_FLUSH_STATE Include/dynamic_annotations.h 367;" d +_Py_ANNOTATE_HAPPENS_AFTER Include/dynamic_annotations.h 125;" d +_Py_ANNOTATE_HAPPENS_AFTER Include/dynamic_annotations.h 341;" d +_Py_ANNOTATE_HAPPENS_BEFORE Include/dynamic_annotations.h 124;" d +_Py_ANNOTATE_HAPPENS_BEFORE Include/dynamic_annotations.h 340;" d +_Py_ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN Include/dynamic_annotations.h 222;" d +_Py_ANNOTATE_IGNORE_READS_AND_WRITES_BEGIN Include/dynamic_annotations.h 361;" d +_Py_ANNOTATE_IGNORE_READS_AND_WRITES_END Include/dynamic_annotations.h 229;" d +_Py_ANNOTATE_IGNORE_READS_AND_WRITES_END Include/dynamic_annotations.h 362;" d +_Py_ANNOTATE_IGNORE_READS_BEGIN Include/dynamic_annotations.h 206;" d +_Py_ANNOTATE_IGNORE_READS_BEGIN Include/dynamic_annotations.h 357;" d +_Py_ANNOTATE_IGNORE_READS_END Include/dynamic_annotations.h 210;" d +_Py_ANNOTATE_IGNORE_READS_END Include/dynamic_annotations.h 358;" d +_Py_ANNOTATE_IGNORE_SYNC_BEGIN Include/dynamic_annotations.h 237;" d +_Py_ANNOTATE_IGNORE_SYNC_BEGIN Include/dynamic_annotations.h 363;" d +_Py_ANNOTATE_IGNORE_SYNC_END Include/dynamic_annotations.h 241;" d +_Py_ANNOTATE_IGNORE_SYNC_END Include/dynamic_annotations.h 364;" d +_Py_ANNOTATE_IGNORE_WRITES_BEGIN Include/dynamic_annotations.h 214;" d +_Py_ANNOTATE_IGNORE_WRITES_BEGIN Include/dynamic_annotations.h 359;" d +_Py_ANNOTATE_IGNORE_WRITES_END Include/dynamic_annotations.h 218;" d +_Py_ANNOTATE_IGNORE_WRITES_END Include/dynamic_annotations.h 360;" d +_Py_ANNOTATE_MEMORY_ORDER Include/internal/pycore_atomic.h /^_Py_ANNOTATE_MEMORY_ORDER(const volatile void *address, _Py_memory_order order)$/;" f +_Py_ANNOTATE_MUTEX_IS_USED_AS_CONDVAR Include/dynamic_annotations.h 354;" d +_Py_ANNOTATE_NEW_MEMORY Include/dynamic_annotations.h 155;" d +_Py_ANNOTATE_NEW_MEMORY Include/dynamic_annotations.h 349;" d +_Py_ANNOTATE_NO_OP Include/dynamic_annotations.h 317;" d +_Py_ANNOTATE_NO_OP Include/dynamic_annotations.h 366;" d +_Py_ANNOTATE_PCQ_CREATE Include/dynamic_annotations.h 167;" d +_Py_ANNOTATE_PCQ_CREATE Include/dynamic_annotations.h 345;" d +_Py_ANNOTATE_PCQ_DESTROY Include/dynamic_annotations.h 171;" d +_Py_ANNOTATE_PCQ_DESTROY Include/dynamic_annotations.h 346;" d +_Py_ANNOTATE_PCQ_GET Include/dynamic_annotations.h 180;" d +_Py_ANNOTATE_PCQ_GET Include/dynamic_annotations.h 348;" d +_Py_ANNOTATE_PCQ_PUT Include/dynamic_annotations.h 176;" d +_Py_ANNOTATE_PCQ_PUT Include/dynamic_annotations.h 347;" d +_Py_ANNOTATE_PUBLISH_MEMORY_RANGE Include/dynamic_annotations.h 134;" d +_Py_ANNOTATE_PUBLISH_MEMORY_RANGE Include/dynamic_annotations.h 342;" d +_Py_ANNOTATE_PURE_HAPPENS_BEFORE_MUTEX Include/dynamic_annotations.h 144;" d +_Py_ANNOTATE_PURE_HAPPENS_BEFORE_MUTEX Include/dynamic_annotations.h 353;" d +_Py_ANNOTATE_RWLOCK_ACQUIRED Include/dynamic_annotations.h 277;" d +_Py_ANNOTATE_RWLOCK_ACQUIRED Include/dynamic_annotations.h 330;" d +_Py_ANNOTATE_RWLOCK_CREATE Include/dynamic_annotations.h 268;" d +_Py_ANNOTATE_RWLOCK_CREATE Include/dynamic_annotations.h 328;" d +_Py_ANNOTATE_RWLOCK_DESTROY Include/dynamic_annotations.h 272;" d +_Py_ANNOTATE_RWLOCK_DESTROY Include/dynamic_annotations.h 329;" d +_Py_ANNOTATE_RWLOCK_RELEASED Include/dynamic_annotations.h 281;" d +_Py_ANNOTATE_RWLOCK_RELEASED Include/dynamic_annotations.h 331;" d +_Py_ANNOTATE_SWAP_MEMORY_RANGE Include/dynamic_annotations.h 344;" d +_Py_ANNOTATE_THREAD_NAME Include/dynamic_annotations.h 259;" d +_Py_ANNOTATE_THREAD_NAME Include/dynamic_annotations.h 356;" d +_Py_ANNOTATE_TRACE_MEMORY Include/dynamic_annotations.h 255;" d +_Py_ANNOTATE_TRACE_MEMORY Include/dynamic_annotations.h 355;" d +_Py_ANNOTATE_UNPROTECTED_READ Include/dynamic_annotations.h /^ inline T _Py_ANNOTATE_UNPROTECTED_READ(const volatile T &x) {$/;" f +_Py_ANNOTATE_UNPROTECTED_READ Include/dynamic_annotations.h 494;" d +_Py_ANNOTATE_UNPUBLISH_MEMORY_RANGE Include/dynamic_annotations.h 343;" d +_Py_ANY_VARARGS Include/cpython/modsupport.h 37;" d +_Py_AS_GC Include/internal/pycore_gc.h /^static inline PyGC_Head* _Py_AS_GC(PyObject *op) {$/;" f +_Py_AddRefTotal Objects/object.c /^_Py_AddRefTotal(PyInterpreterState *interp, Py_ssize_t n)$/;" f +_Py_AddToAllObjects Objects/object.c /^_Py_AddToAllObjects(PyObject *op, int force)$/;" f +_Py_AtExit Modules/atexitmodule.c /^_Py_AtExit(PyInterpreterState *interp,$/;" f +_Py_AuditHookEntry Include/internal/pycore_runtime.h /^typedef struct _Py_AuditHookEntry {$/;" s +_Py_AuditHookEntry Include/internal/pycore_runtime.h /^} _Py_AuditHookEntry;$/;" t typeref:struct:_Py_AuditHookEntry +_Py_BEGIN_SUPPRESS_IPH Include/internal/pycore_fileutils.h 279;" d +_Py_BEGIN_SUPPRESS_IPH Include/internal/pycore_fileutils.h 285;" d +_Py_BreakPoint Objects/object.c /^_Py_BreakPoint(void)$/;" f +_Py_BuildValue_SizeT Python/modsupport.c /^_Py_BuildValue_SizeT(const char *format, ...)$/;" f +_Py_CAST Include/pyport.h 24;" d +_Py_CHECK_EMSCRIPTEN_SIGNALS Include/internal/pycore_emscripten_signal.h 12;" d +_Py_CHECK_EMSCRIPTEN_SIGNALS Include/internal/pycore_emscripten_signal.h 20;" d +_Py_CHECK_EMSCRIPTEN_SIGNALS_PERIODICALLY Include/internal/pycore_emscripten_signal.h 14;" d +_Py_CHECK_EMSCRIPTEN_SIGNALS_PERIODICALLY Include/internal/pycore_emscripten_signal.h 21;" d +_Py_CODEUNIT Include/cpython/code.h /^} _Py_CODEUNIT;$/;" t typeref:union:__anon225 +_Py_COMP_DIAG_IGNORE_DEPR_DECLS Include/pyport.h 336;" d +_Py_COMP_DIAG_IGNORE_DEPR_DECLS Include/pyport.h 342;" d +_Py_COMP_DIAG_IGNORE_DEPR_DECLS Include/pyport.h 347;" d +_Py_COMP_DIAG_IGNORE_DEPR_DECLS Include/pyport.h 351;" d +_Py_COMP_DIAG_POP Include/pyport.h 338;" d +_Py_COMP_DIAG_POP Include/pyport.h 344;" d +_Py_COMP_DIAG_POP Include/pyport.h 348;" d +_Py_COMP_DIAG_POP Include/pyport.h 352;" d +_Py_COMP_DIAG_PUSH Include/pyport.h 335;" d +_Py_COMP_DIAG_PUSH Include/pyport.h 341;" d +_Py_COMP_DIAG_PUSH Include/pyport.h 346;" d +_Py_COMP_DIAG_PUSH Include/pyport.h 350;" d +_Py_CheckEmscriptenSignals Python/emscripten_signal.c /^_Py_CheckEmscriptenSignals(void)$/;" f +_Py_CheckEmscriptenSignalsPeriodically Python/emscripten_signal.c /^_Py_CheckEmscriptenSignalsPeriodically(void)$/;" f +_Py_CheckFunctionResult Objects/call.c /^_Py_CheckFunctionResult(PyThreadState *tstate, PyObject *callable,$/;" f +_Py_CheckPython3 Python/dynload_win.c /^_Py_CheckPython3(void)$/;" f file: +_Py_CheckRecursiveCall Python/ceval.c /^_Py_CheckRecursiveCall(PyThreadState *tstate, const char *where)$/;" f +_Py_CheckRecursiveCallPy Python/ceval.c /^int _Py_CheckRecursiveCallPy($/;" f +_Py_CheckSlotResult Objects/call.c /^_Py_CheckSlotResult(PyObject *obj, const char *slot_name, int success)$/;" f +_Py_ClearArgcArgv Python/initconfig.c /^_Py_ClearArgcArgv(void)$/;" f +_Py_ClearFileSystemEncoding Python/preconfig.c /^_Py_ClearFileSystemEncoding(void)$/;" f +_Py_ClearImmortal Include/internal/pycore_object.h /^static inline void _Py_ClearImmortal(PyObject *op)$/;" f +_Py_ClearImmortal Include/internal/pycore_object.h 88;" d +_Py_ClearStandardStreamEncoding Python/initconfig.c /^_Py_ClearStandardStreamEncoding(void)$/;" f +_Py_CoerceLegacyLocale Python/pylifecycle.c /^_Py_CoerceLegacyLocale(int warn)$/;" f +_Py_ConvertWCharForm Python/fileutils.c /^_Py_ConvertWCharForm(const wchar_t *source, Py_ssize_t size,$/;" f file: +_Py_CreateMonitoringObject Python/instrumentation.c /^PyObject *_Py_CreateMonitoringObject(void)$/;" f +_Py_D PCbuild/find_python.bat /^@set _Py_D=$/;" v +_Py_D PCbuild/find_python.bat /^@set _Py_D=%~dp0$/;" v +_Py_DECLARE_STR Include/internal/pycore_global_strings.h 782;" d +_Py_DECREF_DecRefTotal Objects/object.c /^_Py_DECREF_DecRefTotal(void)$/;" f +_Py_DECREF_INT Objects/longobject.c /^_Py_DECREF_INT(PyLongObject *op)$/;" f file: +_Py_DECREF_NO_DEALLOC Include/internal/pycore_object.h /^_Py_DECREF_NO_DEALLOC(PyObject *op)$/;" f +_Py_DECREF_SPECIALIZED Include/internal/pycore_object.h /^_Py_DECREF_SPECIALIZED(PyObject *op, const destructor destruct)$/;" f +_Py_DECREF_SPECIALIZED Python/ceval.c 82;" d file: +_Py_DECREF_SPECIALIZED Python/ceval.c 83;" d file: +_Py_DECREF_STAT_INC Include/pystats.h 103;" d +_Py_DECREF_STAT_INC Include/pystats.h 91;" d +_Py_DECREF_STAT_INC Include/pystats.h 96;" d +_Py_DEC_MINALLOC Modules/_decimal/_decimal.c 70;" d file: +_Py_DEC_REFTOTAL Include/internal/pycore_object.h 134;" d +_Py_DEC_REFTOTAL Include/internal/pycore_object.h 54;" d +_Py_DEPRECATED_EXTERNALLY Include/pyport.h 328;" d +_Py_DEPRECATED_EXTERNALLY Include/pyport.h 330;" d +_Py_DLOPEN_FLAGS Include/internal/pycore_import.h 85;" d +_Py_DLOPEN_FLAGS Include/internal/pycore_import.h 87;" d +_Py_DLOPEN_FLAGS Include/internal/pycore_import.h 91;" d +_Py_Dealloc Objects/object.c /^_Py_Dealloc(PyObject *op)$/;" f +_Py_DecRef Objects/object.c /^_Py_DecRef(PyObject *o)$/;" f +_Py_DecRefTotal Objects/object.c /^_Py_DecRefTotal(PyInterpreterState *interp)$/;" f +_Py_DecodeLocaleEx Python/fileutils.c /^_Py_DecodeLocaleEx(const char* arg, wchar_t **wstr, size_t *wlen,$/;" f +_Py_DecodeNonUnicodeWchar Python/fileutils.c /^_Py_DecodeNonUnicodeWchar(const wchar_t *native, Py_ssize_t size)$/;" f +_Py_DecodeUTF8Ex Objects/unicodeobject.c /^_Py_DecodeUTF8Ex(const char *s, Py_ssize_t size, wchar_t **wstr, size_t *wlen,$/;" f +_Py_DecodeUTF8_surrogateescape Objects/unicodeobject.c /^_Py_DecodeUTF8_surrogateescape(const char *arg, Py_ssize_t arglen,$/;" f +_Py_Deepfreeze_Fini Programs/_bootstrap_python.c /^_Py_Deepfreeze_Fini(void)$/;" f +_Py_Deepfreeze_Fini Programs/_freeze_module.c /^_Py_Deepfreeze_Fini(void)$/;" f +_Py_Deepfreeze_Init Programs/_bootstrap_python.c /^int _Py_Deepfreeze_Init(void)$/;" f +_Py_Deepfreeze_Init Programs/_freeze_module.c /^int _Py_Deepfreeze_Init(void)$/;" f +_Py_Dev_Converter Modules/posixmodule.c /^_Py_Dev_Converter(PyObject *obj, void *p)$/;" f file: +_Py_DisplaySourceLine Python/traceback.c /^_Py_DisplaySourceLine(PyObject *f, PyObject *filename, int lineno, int indent,$/;" f +_Py_DumpASCII Python/traceback.c /^_Py_DumpASCII(int fd, PyObject *text)$/;" f +_Py_DumpDecimal Python/traceback.c /^_Py_DumpDecimal(int fd, size_t value)$/;" f +_Py_DumpExtensionModules Python/pylifecycle.c /^_Py_DumpExtensionModules(int fd, PyInterpreterState *interp)$/;" f +_Py_DumpHexadecimal Python/traceback.c /^_Py_DumpHexadecimal(int fd, uintptr_t value, Py_ssize_t width)$/;" f +_Py_DumpPathConfig Python/initconfig.c /^_Py_DumpPathConfig(PyThreadState *tstate)$/;" f +_Py_DumpTraceback Python/traceback.c /^_Py_DumpTraceback(int fd, PyThreadState *tstate)$/;" f +_Py_DumpTracebackThreads Python/traceback.c /^_Py_DumpTracebackThreads(int fd, PyInterpreterState *interp,$/;" f +_Py_EMBED_PREINIT_CHECK Programs/_testembed.c 263;" d file: +_Py_END_SUPPRESS_IPH Include/internal/pycore_fileutils.h 282;" d +_Py_END_SUPPRESS_IPH Include/internal/pycore_fileutils.h 286;" d +_Py_ERROR_BACKSLASHREPLACE Include/internal/pycore_fileutils.h /^ _Py_ERROR_BACKSLASHREPLACE,$/;" e enum:__anon159 +_Py_ERROR_IGNORE Include/internal/pycore_fileutils.h /^ _Py_ERROR_IGNORE,$/;" e enum:__anon159 +_Py_ERROR_OTHER Include/internal/pycore_fileutils.h /^ _Py_ERROR_OTHER$/;" e enum:__anon159 +_Py_ERROR_REPLACE Include/internal/pycore_fileutils.h /^ _Py_ERROR_REPLACE,$/;" e enum:__anon159 +_Py_ERROR_STRICT Include/internal/pycore_fileutils.h /^ _Py_ERROR_STRICT,$/;" e enum:__anon159 +_Py_ERROR_SURROGATEESCAPE Include/internal/pycore_fileutils.h /^ _Py_ERROR_SURROGATEESCAPE,$/;" e enum:__anon159 +_Py_ERROR_SURROGATEPASS Include/internal/pycore_fileutils.h /^ _Py_ERROR_SURROGATEPASS,$/;" e enum:__anon159 +_Py_ERROR_UNKNOWN Include/internal/pycore_fileutils.h /^ _Py_ERROR_UNKNOWN=0,$/;" e enum:__anon159 +_Py_ERROR_XMLCHARREFREPLACE Include/internal/pycore_fileutils.h /^ _Py_ERROR_XMLCHARREFREPLACE,$/;" e enum:__anon159 +_Py_EXTERNALS_DIR PCbuild/find_python.bat /^@if "%_Py_EXTERNALS_DIR%"=="" (set _Py_EXTERNALS_DIR=%_Py_D%\\..\\externals)$/;" v +_Py_EXTERNALS_DIR PCbuild/find_python.bat /^@set _Py_EXTERNALS_DIR=$/;" v +_Py_EXTERNALS_DIR PCbuild/find_python.bat /^@set _Py_EXTERNALS_DIR=%EXTERNALS_DIR%$/;" v +_Py_EllipsisObject Objects/sliceobject.c /^PyObject _Py_EllipsisObject = {$/;" v +_Py_EncodeLocaleEx Python/fileutils.c /^_Py_EncodeLocaleEx(const wchar_t *text, char **str,$/;" f +_Py_EncodeLocaleRaw Python/fileutils.c /^_Py_EncodeLocaleRaw(const wchar_t *text, size_t *error_pos)$/;" f +_Py_EncodeNonUnicodeWchar_InPlace Python/fileutils.c /^_Py_EncodeNonUnicodeWchar_InPlace(wchar_t *unicode, Py_ssize_t size)$/;" f +_Py_EncodeUTF8Ex Objects/unicodeobject.c /^_Py_EncodeUTF8Ex(const wchar_t *text, char **str, size_t *error_pos,$/;" f +_Py_EnsureFuncTstateNotNULL Include/internal/pycore_pystate.h /^_Py_EnsureFuncTstateNotNULL(const char *func, PyThreadState *tstate)$/;" f +_Py_EnsureTstateNotNULL Include/internal/pycore_pystate.h 101;" d +_Py_EnterRecursiveCall Include/internal/pycore_ceval.h /^static inline int _Py_EnterRecursiveCall(const char *where) {$/;" f +_Py_EnterRecursiveCallTstate Include/internal/pycore_ceval.h /^static inline int _Py_EnterRecursiveCallTstate(PyThreadState *tstate,$/;" f +_Py_EnterRecursivePy Python/ceval.c /^static inline int _Py_EnterRecursivePy(PyThreadState *tstate) {$/;" f file: +_Py_FORCE_UTF8_FS_ENCODING Include/pyport.h 698;" d +_Py_FORCE_UTF8_LOCALE Include/pyport.h 691;" d +_Py_FORMAT_OFFSET Modules/mmapmodule.c 794;" d file: +_Py_FalseStruct Objects/boolobject.c /^struct _longobject _Py_FalseStruct = {$/;" v typeref:struct:_longobject +_Py_FatalErrorFormat Python/pylifecycle.c /^_Py_FatalErrorFormat(const char *func, const char *format, ...)$/;" f +_Py_FatalErrorFunc Python/pylifecycle.c /^_Py_FatalErrorFunc(const char *func, const char *msg)$/;" f +_Py_FatalError_DumpTracebacks Python/pylifecycle.c /^_Py_FatalError_DumpTracebacks(int fd, PyInterpreterState *interp,$/;" f file: +_Py_FatalError_PrintExc Python/pylifecycle.c /^_Py_FatalError_PrintExc(PyThreadState *tstate)$/;" f file: +_Py_FatalRefcountError Include/internal/pycore_object.h 41;" d +_Py_FatalRefcountErrorFunc Python/pylifecycle.c /^_Py_FatalRefcountErrorFunc(const char *func, const char *msg)$/;" f +_Py_FdIsInteractive Python/pylifecycle.c /^_Py_FdIsInteractive(FILE *fp, PyObject *filename)$/;" f +_Py_FinalizeAllocatedBlocks Objects/obmalloc.c /^_Py_FinalizeAllocatedBlocks(_PyRuntimeState *runtime)$/;" f +_Py_FinalizeRefTotal Objects/object.c /^_Py_FinalizeRefTotal(_PyRuntimeState *runtime)$/;" f +_Py_FindSourceFile Python/traceback.c /^_Py_FindSourceFile(PyObject *filename, char* namebuf, size_t namelen, PyObject *io)$/;" f file: +_Py_FinishPendingCalls Python/ceval_gil.c /^_Py_FinishPendingCalls(PyThreadState *tstate)$/;" f +_Py_ForgetReference Objects/object.c /^_Py_ForgetReference(PyObject *op)$/;" f +_Py_FreeCharPArray Objects/abstract.c /^_Py_FreeCharPArray(char *const array[])$/;" f +_Py_GLOBAL_OBJECT Include/internal/pycore_global_objects.h 26;" d +_Py_GenericAliasIterType Objects/genericaliasobject.c /^PyTypeObject _Py_GenericAliasIterType = {$/;" v +_Py_GetAllocatedBlocks Include/internal/pycore_obmalloc.h 683;" d +_Py_GetBaseOpcode Python/instrumentation.c /^int _Py_GetBaseOpcode(PyCodeObject *code, int i)$/;" f +_Py_GetConfig Python/pystate.c /^_Py_GetConfig(void)$/;" f +_Py_GetConfigsAsDict Python/initconfig.c /^_Py_GetConfigsAsDict(void)$/;" f +_Py_GetEnv Python/preconfig.c /^_Py_GetEnv(int use_environment, const char *name)$/;" f +_Py_GetErrorHandler Objects/unicodeobject.c /^_Py_GetErrorHandler(const char *errors)$/;" f +_Py_GetFileInformationByName Include/internal/pycore_fileutils_windows.h /^static inline BOOL _Py_GetFileInformationByName($/;" f +_Py_GetFileInformationByName_ErrorIsTrustworthy Include/internal/pycore_fileutils_windows.h /^static inline BOOL _Py_GetFileInformationByName_ErrorIsTrustworthy(int error)$/;" f +_Py_GetForceASCII Python/fileutils.c /^_Py_GetForceASCII(void)$/;" f +_Py_GetGlobalAllocatedBlocks Objects/obmalloc.c /^_Py_GetGlobalAllocatedBlocks(void)$/;" f +_Py_GetGlobalRefTotal Objects/object.c /^_Py_GetGlobalRefTotal(void)$/;" f +_Py_GetGlobalVariablesAsDict Python/initconfig.c /^_Py_GetGlobalVariablesAsDict(void)$/;" f file: +_Py_GetLegacyRefTotal Objects/object.c /^_Py_GetLegacyRefTotal(void)$/;" f +_Py_GetLocaleEncoding Python/fileutils.c /^_Py_GetLocaleEncoding(void)$/;" f +_Py_GetLocaleEncodingObject Python/fileutils.c /^_Py_GetLocaleEncodingObject(void)$/;" f +_Py_GetLocaleconvNumeric Python/fileutils.c /^_Py_GetLocaleconvNumeric(struct lconv *lc,$/;" f +_Py_GetMainConfig Include/internal/pycore_pystate.h /^_Py_GetMainConfig(void)$/;" f +_Py_GetObjects Objects/object.c /^_Py_GetObjects(PyObject *self, PyObject *args)$/;" f +_Py_GetRefTotal Include/cpython/object.h 16;" d +_Py_GetSpecializationStats Python/specialize.c /^_Py_GetSpecializationStats(void) {$/;" f +_Py_GetStdlibDir Python/pathconfig.c /^_Py_GetStdlibDir(void)$/;" f +_Py_Get_Getpath_CodeObject Modules/getpath.c /^_Py_Get_Getpath_CodeObject(void)$/;" f +_Py_Gid_Converter Modules/posixmodule.c /^_Py_Gid_Converter(PyObject *obj, gid_t *p)$/;" f +_Py_GlobalMonitors Include/cpython/code.h /^typedef struct _Py_GlobalMonitors {$/;" s +_Py_GlobalMonitors Include/cpython/code.h /^} _Py_GlobalMonitors;$/;" t typeref:struct:_Py_GlobalMonitors +_Py_HAMT_MAX_TREE_DEPTH Include/internal/pycore_hamt.h 20;" d +_Py_HOST_PYTHON PCbuild/find_python.bat /^@if "%_Py_HOST_PYTHON%"=="" set _Py_HOST_PYTHON=py$/;" v +_Py_HOST_PYTHON PCbuild/find_python.bat /^@set _Py_HOST_PYTHON=$/;" v +_Py_HOST_PYTHON PCbuild/find_python.bat /^@set _Py_HOST_PYTHON=%HOST_PYTHON%$/;" v +_Py_HOT_FUNCTION Include/pyport.h 372;" d +_Py_HOT_FUNCTION Include/pyport.h 374;" d +_Py_HandlePending Python/ceval_gil.c /^_Py_HandlePending(PyThreadState *tstate)$/;" f +_Py_HandleSystemExit Python/pythonrun.c /^_Py_HandleSystemExit(int *exitcode_p)$/;" f +_Py_HasFileSystemDefaultEncodeErrors Python/preconfig.c /^int _Py_HasFileSystemDefaultEncodeErrors = 0;$/;" v +_Py_HashBytes Python/pyhash.c /^_Py_HashBytes(const void *src, Py_ssize_t len)$/;" f +_Py_HashDouble Python/pyhash.c /^_Py_HashDouble(PyObject *inst, double v)$/;" f +_Py_HashPointer Python/pyhash.c /^_Py_HashPointer(const void *p)$/;" f +_Py_HashPointerRaw Python/pyhash.c /^_Py_HashPointerRaw(const void *p)$/;" f +_Py_HashRandomization_Fini Python/bootstrap_hash.c /^_Py_HashRandomization_Fini(void)$/;" f +_Py_HashRandomization_Init Python/bootstrap_hash.c /^_Py_HashRandomization_Init(const PyConfig *config)$/;" f +_Py_HashSecret Python/pyhash.c /^_Py_HashSecret_t _Py_HashSecret = {{0}};$/;" v +_Py_HashSecret_Initialized Python/bootstrap_hash.c /^int _Py_HashSecret_Initialized = 0;$/;" v +_Py_HashSecret_Initialized Python/bootstrap_hash.c /^static int _Py_HashSecret_Initialized = 0;$/;" v file: +_Py_HashSecret_t Include/pyhash.h /^} _Py_HashSecret_t;$/;" t typeref:union:__anon256 +_Py_ID Include/internal/pycore_global_strings.h 767;" d +_Py_IDENTIFIER Include/cpython/object.h 55;" d +_Py_IMMORTAL_REFCNT Include/object.h 110;" d +_Py_IMMORTAL_REFCNT Include/object.h 125;" d +_Py_INCREF_IncRefTotal Objects/object.c /^_Py_INCREF_IncRefTotal(void)$/;" f +_Py_INCREF_STAT_INC Include/pystats.h 102;" d +_Py_INCREF_STAT_INC Include/pystats.h 90;" d +_Py_INCREF_STAT_INC Include/pystats.h 95;" d +_Py_INTERP_CACHED_OBJECT Include/internal/pycore_global_objects.h 57;" d +_Py_INTERP_SINGLETON Include/internal/pycore_global_objects.h 82;" d +_Py_INTERP_STATIC_OBJECT Include/internal/pycore_global_objects.h 80;" d +_Py_IS_ALIGNED Include/pymacro.h 112;" d +_Py_IS_TYPE_SIGNED Include/pymacro.h 161;" d +_Py_Identifier Include/cpython/object.h /^typedef struct _Py_Identifier {$/;" s +_Py_Identifier Include/cpython/object.h /^} _Py_Identifier;$/;" t typeref:struct:_Py_Identifier +_Py_IncRef Objects/object.c /^_Py_IncRef(PyObject *o)$/;" f +_Py_IncRefTotal Objects/object.c /^_Py_IncRefTotal(PyInterpreterState *interp)$/;" f +_Py_InitVersion Python/getversion.c /^void _Py_InitVersion(void)$/;" f +_Py_InitializeMain Python/pylifecycle.c /^_Py_InitializeMain(void)$/;" f +_Py_Instrument Python/instrumentation.c /^_Py_Instrument(PyCodeObject *code, PyInterpreterState *interp)$/;" f +_Py_Instrumentation_GetLine Python/instrumentation.c /^_Py_Instrumentation_GetLine(PyCodeObject *code, int index)$/;" f +_Py_IsCoreInitialized Python/pylifecycle.c /^_Py_IsCoreInitialized(void)$/;" f +_Py_IsFinalizing Python/pylifecycle.c /^_Py_IsFinalizing(void)$/;" f +_Py_IsImmortal Include/object.h /^static inline Py_ALWAYS_INLINE int _Py_IsImmortal(PyObject *op)$/;" f +_Py_IsImmortal Include/object.h 248;" d +_Py_IsInterpreterFinalizing Python/pylifecycle.c /^_Py_IsInterpreterFinalizing(PyInterpreterState *interp)$/;" f +_Py_IsLocaleCoercionTarget Python/pylifecycle.c /^_Py_IsLocaleCoercionTarget(const char *ctype_loc)$/;" f +_Py_IsMainInterpreter Include/internal/pycore_pystate.h /^_Py_IsMainInterpreter(PyInterpreterState *interp)$/;" f +_Py_IsMainInterpreterFinalizing Include/internal/pycore_pystate.h /^_Py_IsMainInterpreterFinalizing(PyInterpreterState *interp)$/;" f +_Py_IsMainThread Include/internal/pycore_pystate.h /^_Py_IsMainThread(void)$/;" f +_Py_KeyedHash Python/pyhash.c /^_Py_KeyedHash(uint64_t key, const void *src, Py_ssize_t src_sz)$/;" f +_Py_LeaveRecursiveCall Include/internal/pycore_ceval.h /^static inline void _Py_LeaveRecursiveCall(void) {$/;" f +_Py_LeaveRecursiveCallPy Python/ceval.c /^static inline void _Py_LeaveRecursiveCallPy(PyThreadState *tstate) {$/;" f file: +_Py_LeaveRecursiveCallTstate Include/internal/pycore_ceval.h /^static inline void _Py_LeaveRecursiveCallTstate(PyThreadState *tstate) {$/;" f +_Py_LegacyLocaleDetected Python/pylifecycle.c /^_Py_LegacyLocaleDetected(int warn)$/;" f +_Py_LocalMonitors Include/cpython/code.h /^typedef struct _Py_LocalMonitors {$/;" s +_Py_LocalMonitors Include/cpython/code.h /^} _Py_LocalMonitors;$/;" t typeref:struct:_Py_LocalMonitors +_Py_LocaleUsesNonUnicodeWchar Python/fileutils.c /^_Py_LocaleUsesNonUnicodeWchar(void)$/;" f +_Py_MAKE_CODEUNIT Include/cpython/code.h 67;" d +_Py_MANAGED_BUFFER_FREE_FORMAT Include/cpython/memoryobject.h 11;" d +_Py_MANAGED_BUFFER_RELEASED Include/cpython/memoryobject.h 10;" d +_Py_MAXIMUM_REPARSE_DATA_BUFFER_SIZE Modules/winreparse.h 46;" d +_Py_MAX_GLOBAL_TYPE_VERSION_TAG Include/internal/pycore_typeobject.h 17;" d +_Py_MAX_STATIC_BUILTIN_TYPES Include/internal/pycore_typeobject.h 43;" d +_Py_MEMORYVIEW_C Include/cpython/memoryobject.h 23;" d +_Py_MEMORYVIEW_FORTRAN Include/cpython/memoryobject.h 24;" d +_Py_MEMORYVIEW_PIL Include/cpython/memoryobject.h 26;" d +_Py_MEMORYVIEW_RELEASED Include/cpython/memoryobject.h 22;" d +_Py_MEMORYVIEW_RESTRICTED Include/cpython/memoryobject.h 27;" d +_Py_MEMORYVIEW_SCALAR Include/cpython/memoryobject.h 25;" d +_Py_MEMORY_SANITIZER Include/pyport.h 743;" d +_Py_MSBuild_Root PCbuild/find_msbuild.bat /^@for \/F "tokens=*" %%i in ('"%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere.exe" -property installationPath -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64') DO @(set _Py_MSBuild_Root=%%i\\MSBuild)$/;" v +_Py_MSBuild_Root PCbuild/find_msbuild.bat /^@set _Py_MSBuild_Root=$/;" v +_Py_MSBuild_Source PCbuild/find_msbuild.bat /^@if defined MSBUILD @if exist %MSBUILD% (set _Py_MSBuild_Source=Visual Studio installation) & goto :found$/;" v +_Py_MSBuild_Source PCbuild/find_msbuild.bat /^@if exist %MSBUILD% (set _Py_MSBuild_Source=registry) & goto :found$/;" v +_Py_MSBuild_Source PCbuild/find_msbuild.bat /^@set _Py_MSBuild_Source=$/;" v +_Py_MakeCoro Objects/genobject.c /^_Py_MakeCoro(PyFunctionObject *func)$/;" f +_Py_MakeRecCheck Include/internal/pycore_ceval.h /^static inline int _Py_MakeRecCheck(PyThreadState *tstate) {$/;" f +_Py_MakeRecCheck Include/internal/pycore_ceval.h /^static inline int _Py_MakeRecCheck(PyThreadState *tstate) {$/;" f +_Py_MakeShimCode Objects/codeobject.c /^_Py_MakeShimCode(const _PyShimCodeDef *codedef)$/;" f +_Py_Mangle Python/symtable.c /^_Py_Mangle(PyObject *privateobj, PyObject *ident)$/;" f +_Py_NO_RETURN Include/pyport.h 710;" d +_Py_NO_RETURN Include/pyport.h 712;" d +_Py_NO_RETURN Include/pyport.h 714;" d +_Py_NO_SANITIZE_ADDRESS Objects/obmalloc.c 174;" d file: +_Py_NO_SANITIZE_ADDRESS Objects/obmalloc.c 185;" d file: +_Py_NO_SANITIZE_ADDRESS Objects/obmalloc.c 196;" d file: +_Py_NO_SANITIZE_MEMORY Objects/obmalloc.c 181;" d file: +_Py_NO_SANITIZE_MEMORY Objects/obmalloc.c 202;" d file: +_Py_NO_SANITIZE_THREAD Objects/obmalloc.c 178;" d file: +_Py_NO_SANITIZE_THREAD Objects/obmalloc.c 191;" d file: +_Py_NO_SANITIZE_THREAD Objects/obmalloc.c 199;" d file: +_Py_NO_SANITIZE_UNDEFINED Modules/faulthandler.c 36;" d file: +_Py_NO_SANITIZE_UNDEFINED Modules/faulthandler.c 41;" d file: +_Py_NO_SANITIZE_UNDEFINED Modules/faulthandler.c 44;" d file: +_Py_NUGET PCbuild/find_python.bat /^@if "%_Py_NUGET%"=="" (set _Py_NUGET=%_Py_EXTERNALS_DIR%\\nuget.exe)$/;" v +_Py_NUGET PCbuild/find_python.bat /^@set _Py_NUGET=$/;" v +_Py_NUGET PCbuild/find_python.bat /^@set _Py_NUGET=%NUGET%$/;" v +_Py_NUGET_URL PCbuild/find_python.bat /^@if "%_Py_NUGET_URL%"=="" (set _Py_NUGET_URL=https:\/\/aka.ms\/nugetclidl)$/;" v +_Py_NUGET_URL PCbuild/find_python.bat /^@set _Py_NUGET_URL=$/;" v +_Py_NUGET_URL PCbuild/find_python.bat /^@set _Py_NUGET_URL=%NUGET_URL%$/;" v +_Py_NULL Include/pyport.h 30;" d +_Py_NULL Include/pyport.h 32;" d +_Py_NegativeRefcount Objects/object.c /^_Py_NegativeRefcount(const char *filename, int lineno, PyObject *op)$/;" f +_Py_NewRef Include/object.h /^static inline PyObject* _Py_NewRef(PyObject *obj)$/;" f +_Py_NewReference Objects/object.c /^_Py_NewReference(PyObject *op)$/;" f +_Py_NewReferenceNoTotal Objects/object.c /^_Py_NewReferenceNoTotal(PyObject *op)$/;" f +_Py_NoneStruct Objects/object.c /^PyObject _Py_NoneStruct = {$/;" v +_Py_NotImplementedStruct Objects/object.c /^PyObject _Py_NotImplementedStruct = {$/;" v +_Py_OPARG Include/cpython/code.h 49;" d +_Py_OPCODE Include/cpython/code.h 48;" d +_Py_Offer_Suggestions Python/suggestions.c /^_Py_Offer_Suggestions(PyObject *exception)$/;" f +_Py_PARSE_INTPTR Include/longobject.h 51;" d +_Py_PARSE_INTPTR Include/longobject.h 54;" d +_Py_PARSE_INTPTR Include/longobject.h 57;" d +_Py_PARSE_OFF_T Modules/mmapmodule.c 1203;" d file: +_Py_PARSE_OFF_T Modules/mmapmodule.c 1205;" d file: +_Py_PARSE_PID Include/longobject.h 35;" d +_Py_PARSE_PID Include/longobject.h 39;" d +_Py_PARSE_PID Include/longobject.h 43;" d +_Py_PARSE_UINTPTR Include/longobject.h 52;" d +_Py_PARSE_UINTPTR Include/longobject.h 55;" d +_Py_PARSE_UINTPTR Include/longobject.h 58;" d +_Py_PASTE_VERSION PC/pyconfig.h 107;" d +_Py_PREPARSE_DATA_BUFFER Modules/winreparse.h /^} _Py_REPARSE_DATA_BUFFER, *_Py_PREPARSE_DATA_BUFFER;$/;" t typeref:struct:__anon316 +_Py_PreInitEntry Python/sysmodule.c /^typedef struct _preinit_entry *_Py_PreInitEntry;$/;" t typeref:struct:_preinit_entry file: +_Py_PreInitializeFromConfig Python/pylifecycle.c /^_Py_PreInitializeFromConfig(const PyConfig *config,$/;" f +_Py_PreInitializeFromPyArgv Python/pylifecycle.c /^_Py_PreInitializeFromPyArgv(const PyPreConfig *src_config, const _PyArgv *args)$/;" f +_Py_PrintReferenceAddresses Objects/object.c /^_Py_PrintReferenceAddresses(PyInterpreterState *interp, FILE *fp)$/;" f +_Py_PrintReferences Objects/object.c /^_Py_PrintReferences(PyInterpreterState *interp, FILE *fp)$/;" f +_Py_PrintSpecializationStats Python/specialize.c /^_Py_PrintSpecializationStats(int to_file)$/;" f +_Py_Python_Source PCbuild/find_python.bat /^@set _Py_Python_Source=$/;" v +_Py_Quiet PCbuild/find_python.bat /^@if '%1' EQU '-q' (shift && set _Py_Quiet=1)$/;" v +_Py_Quiet PCbuild/find_python.bat /^@set _Py_Quiet=$/;" v +_Py_REPARSE_DATA_BUFFER Modules/winreparse.h /^} _Py_REPARSE_DATA_BUFFER, *_Py_PREPARSE_DATA_BUFFER;$/;" t typeref:struct:__anon316 +_Py_REPARSE_DATA_BUFFER_HEADER_SIZE Modules/winreparse.h 44;" d +_Py_RETURN_UNICODE_EMPTY Objects/unicodeobject.c 267;" d file: +_Py_RVALUE Include/pymacro.h 156;" d +_Py_RefTotal Objects/object.c /^Py_ssize_t _Py_RefTotal;$/;" v +_Py_RefcntAdd Include/internal/pycore_object.h /^static inline void _Py_RefcntAdd(PyObject* op, Py_ssize_t n)$/;" f +_Py_RefcntAdd Include/internal/pycore_object.h 69;" d +_Py_ResetForceASCII Python/fileutils.c /^_Py_ResetForceASCII(void)$/;" f +_Py_RestoreSignals Modules/signalmodule.c /^_Py_RestoreSignals(void)$/;" f +_Py_RunGC Modules/gcmodule.c /^_Py_RunGC(PyThreadState *tstate)$/;" f +_Py_SET_53BIT_PRECISION_END Include/internal/pycore_pymath.h 103;" d +_Py_SET_53BIT_PRECISION_END Include/internal/pycore_pymath.h 132;" d +_Py_SET_53BIT_PRECISION_END Include/internal/pycore_pymath.h 156;" d +_Py_SET_53BIT_PRECISION_END Include/internal/pycore_pymath.h 168;" d +_Py_SET_53BIT_PRECISION_HEADER Include/internal/pycore_pymath.h 118;" d +_Py_SET_53BIT_PRECISION_HEADER Include/internal/pycore_pymath.h 145;" d +_Py_SET_53BIT_PRECISION_HEADER Include/internal/pycore_pymath.h 166;" d +_Py_SET_53BIT_PRECISION_HEADER Include/internal/pycore_pymath.h 93;" d +_Py_SET_53BIT_PRECISION_START Include/internal/pycore_pymath.h 122;" d +_Py_SET_53BIT_PRECISION_START Include/internal/pycore_pymath.h 147;" d +_Py_SET_53BIT_PRECISION_START Include/internal/pycore_pymath.h 167;" d +_Py_SET_53BIT_PRECISION_START Include/internal/pycore_pymath.h 95;" d +_Py_SET_OPCODE Include/cpython/code.h 68;" d +_Py_SINGLETON Include/internal/pycore_global_objects.h 28;" d +_Py_SIZE_ROUND_DOWN Include/pymacro.h 102;" d +_Py_SIZE_ROUND_UP Include/pymacro.h 104;" d +_Py_SLIST_HEAD Include/internal/pycore_hashtable.h 23;" d +_Py_SLIST_ITEM_NEXT Include/internal/pycore_hashtable.h 21;" d +_Py_STATIC_CAST Include/pyport.h 19;" d +_Py_STATIC_CAST Include/pyport.h 21;" d +_Py_STR Include/internal/pycore_global_strings.h 769;" d +_Py_STRINGIZE PC/pyconfig.h 118;" d +_Py_STRINGIZE1 PC/pyconfig.h 119;" d +_Py_ScheduleGC Modules/gcmodule.c /^_Py_ScheduleGC(PyInterpreterState *interp)$/;" f +_Py_SetArgcArgv Python/initconfig.c /^_Py_SetArgcArgv(Py_ssize_t argc, wchar_t * const *argv)$/;" f file: +_Py_SetFileSystemEncoding Python/preconfig.c /^_Py_SetFileSystemEncoding(const char *encoding, const char *errors)$/;" f +_Py_SetImmortal Include/internal/pycore_object.h /^static inline void _Py_SetImmortal(PyObject *op)$/;" f +_Py_SetImmortal Include/internal/pycore_object.h 77;" d +_Py_SetLocaleFromEnv Python/pylifecycle.c /^_Py_SetLocaleFromEnv(int category)$/;" f +_Py_SetProgramFullPath Python/pathconfig.c /^_Py_SetProgramFullPath(const wchar_t *program_full_path)$/;" f +_Py_Sigset_Converter Modules/posixmodule.c /^_Py_Sigset_Converter(PyObject *obj, void *addr)$/;" f +_Py_SourceAsString Python/pythonrun.c /^_Py_SourceAsString(PyObject *cmd, const char *funcname, const char *what, PyCompilerFlags *cf, PyObject **cmd_copy)$/;" f +_Py_Specialize_BinaryOp Python/specialize.c /^_Py_Specialize_BinaryOp(PyObject *lhs, PyObject *rhs, _Py_CODEUNIT *instr,$/;" f +_Py_Specialize_BinarySubscr Python/specialize.c /^_Py_Specialize_BinarySubscr($/;" f +_Py_Specialize_Call Python/specialize.c /^_Py_Specialize_Call(PyObject *callable, _Py_CODEUNIT *instr, int nargs,$/;" f +_Py_Specialize_CompareOp Python/specialize.c /^_Py_Specialize_CompareOp(PyObject *lhs, PyObject *rhs, _Py_CODEUNIT *instr,$/;" f +_Py_Specialize_ForIter Python/specialize.c /^_Py_Specialize_ForIter(PyObject *iter, _Py_CODEUNIT *instr, int oparg)$/;" f +_Py_Specialize_LoadAttr Python/specialize.c /^_Py_Specialize_LoadAttr(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name)$/;" f +_Py_Specialize_LoadGlobal Python/specialize.c /^_Py_Specialize_LoadGlobal($/;" f +_Py_Specialize_LoadSuperAttr Python/specialize.c /^_Py_Specialize_LoadSuperAttr(PyObject *global_super, PyObject *cls, _Py_CODEUNIT *instr, int load_method) {$/;" f +_Py_Specialize_Send Python/specialize.c /^_Py_Specialize_Send(PyObject *receiver, _Py_CODEUNIT *instr)$/;" f +_Py_Specialize_StoreAttr Python/specialize.c /^_Py_Specialize_StoreAttr(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name)$/;" f +_Py_Specialize_StoreSubscr Python/specialize.c /^_Py_Specialize_StoreSubscr(PyObject *container, PyObject *sub, _Py_CODEUNIT *instr)$/;" f +_Py_Specialize_UnpackSequence Python/specialize.c /^_Py_Specialize_UnpackSequence(PyObject *seq, _Py_CODEUNIT *instr, int oparg)$/;" f +_Py_StandardStreamEncoding Python/initconfig.c /^static char *_Py_StandardStreamEncoding = NULL;$/;" v file: +_Py_StandardStreamErrors Python/initconfig.c /^static char *_Py_StandardStreamErrors = NULL;$/;" v file: +_Py_StatsClear Python/specialize.c /^_Py_StatsClear(void)$/;" f +_Py_SwappedOp Objects/object.c /^int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};$/;" v +_Py_SymtableStringObjectFlags Python/symtable.c /^_Py_SymtableStringObjectFlags(const char *str, PyObject *filename,$/;" f +_Py_TPFLAGS_HAVE_VECTORCALL Include/object.h 508;" d +_Py_TPFLAGS_MATCH_SELF Include/object.h 540;" d +_Py_TPFLAGS_STATIC_BUILTIN Include/object.h 470;" d +_Py_TYPEOF Include/pyport.h 735;" d +_Py_TYPE_BASE_VERSION_TAG Include/internal/pycore_typeobject.h 16;" d +_Py_T_NONE Include/descrobject.h 80;" d +_Py_T_OBJECT Include/descrobject.h 59;" d +_Py_ThreadCanHandleSignals Include/internal/pycore_pystate.h /^_Py_ThreadCanHandleSignals(PyInterpreterState *interp)$/;" f +_Py_TrueStruct Objects/boolobject.c /^struct _longobject _Py_TrueStruct = {$/;" v typeref:struct:_longobject +_Py_UTF8_Edit_Cost Python/suggestions.c /^_Py_UTF8_Edit_Cost(PyObject *a, PyObject *b, Py_ssize_t max_cost)$/;" f +_Py_Uid_Converter Modules/posixmodule.c /^_Py_Uid_Converter(PyObject *obj, uid_t *p)$/;" f +_Py_UniversalNewlineFgetsWithSize Objects/fileobject.c /^_Py_UniversalNewlineFgetsWithSize(char *buf, int n, FILE *stream, PyObject *fobj, size_t* size)$/;" f +_Py_VaBuildStack Include/cpython/modsupport.h 8;" d +_Py_VaBuildStack Python/modsupport.c /^_Py_VaBuildStack(PyObject **small_stack, Py_ssize_t small_stack_len,$/;" f +_Py_VaBuildStack_SizeT Python/modsupport.c /^_Py_VaBuildStack_SizeT(PyObject **small_stack, Py_ssize_t small_stack_len,$/;" f +_Py_VaBuildValue_SizeT Python/modsupport.c /^_Py_VaBuildValue_SizeT(const char *format, va_list va)$/;" f +_Py_WRITE_RESTRICTED Include/descrobject.h 85;" d +_Py_WriteIndent Python/traceback.c /^_Py_WriteIndent(int indent, PyObject *f)$/;" f +_Py_WriteIndentedMargin Python/traceback.c /^_Py_WriteIndentedMargin(int indent, const char *margin, PyObject *f)$/;" f +_Py_XNewRef Include/object.h /^static inline PyObject* _Py_XNewRef(PyObject *obj)$/;" f +_Py_XSTRINGIFY Include/pymacro.h 35;" d +_Py__has_builtin Include/pyport.h 724;" d +_Py__has_builtin Include/pyport.h 726;" d +_Py_abspath Python/fileutils.c /^_Py_abspath(const wchar_t *path, wchar_t **abspath_p)$/;" f +_Py_abstract_hack Objects/object.c /^Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;$/;" v +_Py_add_one_to_index_C Objects/abstract.c /^_Py_add_one_to_index_C(int nd, Py_ssize_t *index, const Py_ssize_t *shape)$/;" f +_Py_add_one_to_index_F Objects/abstract.c /^_Py_add_one_to_index_F(int nd, Py_ssize_t *index, const Py_ssize_t *shape)$/;" f +_Py_add_relfile Python/fileutils.c /^_Py_add_relfile(wchar_t *dirname, const wchar_t *relfile, size_t bufsize)$/;" f +_Py_ascii_whitespace Objects/unicodeobject.c /^const unsigned char _Py_ascii_whitespace[] = {$/;" v +_Py_async_gen_state Include/internal/pycore_genobject.h /^struct _Py_async_gen_state {$/;" s +_Py_atomic_address Include/internal/pycore_atomic.h /^typedef struct _Py_atomic_address {$/;" s +_Py_atomic_address Include/internal/pycore_atomic.h /^} _Py_atomic_address;$/;" t typeref:struct:_Py_atomic_address +_Py_atomic_int Include/internal/pycore_atomic.h /^typedef struct _Py_atomic_int {$/;" s +_Py_atomic_int Include/internal/pycore_atomic.h /^} _Py_atomic_int;$/;" t typeref:struct:_Py_atomic_int +_Py_atomic_load Include/internal/pycore_atomic.h 544;" d +_Py_atomic_load_32bit Include/internal/pycore_atomic.h 363;" d +_Py_atomic_load_32bit Include/internal/pycore_atomic.h 499;" d +_Py_atomic_load_32bit_impl Include/internal/pycore_atomic.h /^inline int _Py_atomic_load_32bit_impl(volatile int* value, int order) {$/;" f +_Py_atomic_load_64bit Include/internal/pycore_atomic.h 325;" d +_Py_atomic_load_64bit Include/internal/pycore_atomic.h 329;" d +_Py_atomic_load_64bit Include/internal/pycore_atomic.h 461;" d +_Py_atomic_load_64bit Include/internal/pycore_atomic.h 465;" d +_Py_atomic_load_64bit_impl Include/internal/pycore_atomic.h /^inline intptr_t _Py_atomic_load_64bit_impl(volatile uintptr_t* value, int order) {$/;" f +_Py_atomic_load_explicit Include/internal/pycore_atomic.h 194;" d +_Py_atomic_load_explicit Include/internal/pycore_atomic.h 371;" d +_Py_atomic_load_explicit Include/internal/pycore_atomic.h 507;" d +_Py_atomic_load_explicit Include/internal/pycore_atomic.h 537;" d +_Py_atomic_load_explicit Include/internal/pycore_atomic.h 62;" d +_Py_atomic_load_explicit Include/internal/pycore_atomic.h 96;" d +_Py_atomic_load_relaxed Include/internal/pycore_atomic.h 551;" d +_Py_atomic_load_relaxed_int32 Python/ceval.c 101;" d file: +_Py_atomic_load_relaxed_int32 Python/ceval.c 99;" d file: +_Py_atomic_load_relaxed_int32 Python/ceval_gil.c 54;" d file: +_Py_atomic_load_relaxed_int32 Python/ceval_gil.c 56;" d file: +_Py_atomic_signal_fence Include/internal/pycore_atomic.h /^_Py_atomic_signal_fence(_Py_memory_order order)$/;" f +_Py_atomic_signal_fence Include/internal/pycore_atomic.h 533;" d +_Py_atomic_signal_fence Include/internal/pycore_atomic.h 53;" d +_Py_atomic_signal_fence Include/internal/pycore_atomic.h 84;" d +_Py_atomic_size_get Include/internal/pycore_atomic_funcs.h /^static inline Py_ssize_t _Py_atomic_size_get(Py_ssize_t *var)$/;" f +_Py_atomic_size_set Include/internal/pycore_atomic_funcs.h /^static inline void _Py_atomic_size_set(Py_ssize_t *var, Py_ssize_t value)$/;" f +_Py_atomic_store Include/internal/pycore_atomic.h 542;" d +_Py_atomic_store_32bit Include/internal/pycore_atomic.h 276;" d +_Py_atomic_store_32bit Include/internal/pycore_atomic.h 412;" d +_Py_atomic_store_64bit Include/internal/pycore_atomic.h 260;" d +_Py_atomic_store_64bit Include/internal/pycore_atomic.h 273;" d +_Py_atomic_store_64bit Include/internal/pycore_atomic.h 396;" d +_Py_atomic_store_64bit Include/internal/pycore_atomic.h 409;" d +_Py_atomic_store_explicit Include/internal/pycore_atomic.h 164;" d +_Py_atomic_store_explicit Include/internal/pycore_atomic.h 366;" d +_Py_atomic_store_explicit Include/internal/pycore_atomic.h 502;" d +_Py_atomic_store_explicit Include/internal/pycore_atomic.h 535;" d +_Py_atomic_store_explicit Include/internal/pycore_atomic.h 59;" d +_Py_atomic_store_explicit Include/internal/pycore_atomic.h 90;" d +_Py_atomic_store_relaxed Include/internal/pycore_atomic.h 549;" d +_Py_atomic_thread_fence Include/internal/pycore_atomic.h /^_Py_atomic_thread_fence(_Py_memory_order order)$/;" f +_Py_atomic_thread_fence Include/internal/pycore_atomic.h 534;" d +_Py_atomic_thread_fence Include/internal/pycore_atomic.h 56;" d +_Py_atomic_thread_fence Include/internal/pycore_atomic.h 87;" d +_Py_attribute_data_to_stat Python/fileutils.c /^_Py_attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag,$/;" f +_Py_bit_length Include/internal/pycore_bitutils.h /^_Py_bit_length(unsigned long x)$/;" f +_Py_block_ty Include/internal/pycore_symtable.h /^} _Py_block_ty;$/;" t typeref:enum:_block_type +_Py_bswap16 Include/internal/pycore_bitutils.h /^_Py_bswap16(uint16_t word)$/;" f +_Py_bswap32 Include/internal/pycore_bitutils.h /^_Py_bswap32(uint32_t word)$/;" f +_Py_bswap64 Include/internal/pycore_bitutils.h /^_Py_bswap64(uint64_t word)$/;" f +_Py_bytes_capitalize Objects/bytes_methods.c /^_Py_bytes_capitalize(char *result, const char *s, Py_ssize_t len)$/;" f +_Py_bytes_characters_INIT Include/internal/pycore_runtime_init_generated.h 277;" d +_Py_bytes_contains Objects/bytes_methods.c /^_Py_bytes_contains(const char *str, Py_ssize_t len, PyObject *arg)$/;" f +_Py_bytes_count Objects/bytes_methods.c /^_Py_bytes_count(const char *str, Py_ssize_t len, PyObject *args)$/;" f +_Py_bytes_endswith Objects/bytes_methods.c /^_Py_bytes_endswith(const char *str, Py_ssize_t len, PyObject *args)$/;" f +_Py_bytes_find Objects/bytes_methods.c /^_Py_bytes_find(const char *str, Py_ssize_t len, PyObject *args)$/;" f +_Py_bytes_index Objects/bytes_methods.c /^_Py_bytes_index(const char *str, Py_ssize_t len, PyObject *args)$/;" f +_Py_bytes_isalnum Objects/bytes_methods.c /^_Py_bytes_isalnum(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_isalpha Objects/bytes_methods.c /^_Py_bytes_isalpha(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_isascii Objects/bytes_methods.c /^_Py_bytes_isascii(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_isdigit Objects/bytes_methods.c /^_Py_bytes_isdigit(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_islower Objects/bytes_methods.c /^_Py_bytes_islower(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_isspace Objects/bytes_methods.c /^_Py_bytes_isspace(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_istitle Objects/bytes_methods.c /^_Py_bytes_istitle(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_isupper Objects/bytes_methods.c /^_Py_bytes_isupper(const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_lower Objects/bytes_methods.c /^_Py_bytes_lower(char *result, const char *cptr, Py_ssize_t len)$/;" f +_Py_bytes_maketrans Objects/bytes_methods.c /^_Py_bytes_maketrans(Py_buffer *frm, Py_buffer *to)$/;" f +_Py_bytes_rfind Objects/bytes_methods.c /^_Py_bytes_rfind(const char *str, Py_ssize_t len, PyObject *args)$/;" f +_Py_bytes_rindex Objects/bytes_methods.c /^_Py_bytes_rindex(const char *str, Py_ssize_t len, PyObject *args)$/;" f +_Py_bytes_startswith Objects/bytes_methods.c /^_Py_bytes_startswith(const char *str, Py_ssize_t len, PyObject *args)$/;" f +_Py_bytes_swapcase Objects/bytes_methods.c /^_Py_bytes_swapcase(char *result, const char *s, Py_ssize_t len)$/;" f +_Py_bytes_tailmatch Objects/bytes_methods.c /^_Py_bytes_tailmatch(const char *str, Py_ssize_t len,$/;" f file: +_Py_bytes_title Objects/bytes_methods.c /^_Py_bytes_title(char *result, const char *s, Py_ssize_t len)$/;" f +_Py_bytes_upper Objects/bytes_methods.c /^_Py_bytes_upper(char *result, const char *cptr, Py_ssize_t len)$/;" f +_Py_c_abs Objects/complexobject.c /^_Py_c_abs(Py_complex z)$/;" f +_Py_c_diff Objects/complexobject.c /^_Py_c_diff(Py_complex a, Py_complex b)$/;" f +_Py_c_neg Objects/complexobject.c /^_Py_c_neg(Py_complex a)$/;" f +_Py_c_pow Objects/complexobject.c /^_Py_c_pow(Py_complex a, Py_complex b)$/;" f +_Py_c_prod Objects/complexobject.c /^_Py_c_prod(Py_complex a, Py_complex b)$/;" f +_Py_c_quot Objects/complexobject.c /^_Py_c_quot(Py_complex a, Py_complex b)$/;" f +_Py_c_sum Objects/complexobject.c /^_Py_c_sum(Py_complex a, Py_complex b)$/;" f +_Py_call_instrumentation Python/instrumentation.c /^_Py_call_instrumentation($/;" f +_Py_call_instrumentation_2args Python/instrumentation.c /^_Py_call_instrumentation_2args($/;" f +_Py_call_instrumentation_arg Python/instrumentation.c /^_Py_call_instrumentation_arg($/;" f +_Py_call_instrumentation_exc2 Python/instrumentation.c /^_Py_call_instrumentation_exc2($/;" f +_Py_call_instrumentation_instruction Python/instrumentation.c /^_Py_call_instrumentation_instruction(PyThreadState *tstate, _PyInterpreterFrame* frame, _Py_CODEUNIT *instr)$/;" f +_Py_call_instrumentation_jump Python/instrumentation.c /^_Py_call_instrumentation_jump($/;" f +_Py_call_instrumentation_line Python/instrumentation.c /^_Py_call_instrumentation_line(PyThreadState *tstate, _PyInterpreterFrame* frame, _Py_CODEUNIT *instr, _Py_CODEUNIT *prev)$/;" f +_Py_clear_generic_types Objects/typevarobject.c /^void _Py_clear_generic_types(PyInterpreterState *interp)$/;" f +_Py_clock_info_t Include/cpython/pytime.h /^} _Py_clock_info_t;$/;" t typeref:struct:__anon176 +_Py_closerange Python/fileutils.c /^_Py_closerange(int first, int last)$/;" f +_Py_comprehension_ty Include/internal/pycore_symtable.h /^ GeneratorExpression = 4 } _Py_comprehension_ty;$/;" t typeref:enum:_comprehension_type +_Py_context_state Include/internal/pycore_context.h /^struct _Py_context_state {$/;" s +_Py_convert_optional_to_ssize_t Python/modsupport.c /^_Py_convert_optional_to_ssize_t(PyObject *obj, void *result)$/;" f +_Py_ctype_table Python/pyctype.c /^const unsigned int _Py_ctype_table[256] = {$/;" v +_Py_ctype_tolower Python/pyctype.c /^const unsigned char _Py_ctype_tolower[256] = {$/;" v +_Py_ctype_toupper Python/pyctype.c /^const unsigned char _Py_ctype_toupper[256] = {$/;" v +_Py_daylight Modules/timemodule.c 46;" d file: +_Py_daylight Modules/timemodule.c 50;" d file: +_Py_device_encoding Python/fileutils.c /^_Py_device_encoding(int fd)$/;" f +_Py_dg_dtoa Python/dtoa.c /^_Py_dg_dtoa(double dd, int mode, int ndigits,$/;" f +_Py_dg_freedtoa Python/dtoa.c /^_Py_dg_freedtoa(char *s)$/;" f +_Py_dg_strtod Python/dtoa.c /^_Py_dg_strtod(const char *s00, char **se)$/;" f +_Py_dict_lookup Objects/dictobject.c /^_Py_dict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr)$/;" f +_Py_dict_state Include/internal/pycore_dict_state.h /^struct _Py_dict_state {$/;" s +_Py_dup Python/fileutils.c /^_Py_dup(int fd)$/;" f +_Py_error_handler Include/internal/pycore_fileutils.h /^} _Py_error_handler;$/;" t typeref:enum:__anon159 +_Py_exc_state Include/internal/pycore_exceptions.h /^struct _Py_exc_state {$/;" s +_Py_find_basename Python/fileutils.c /^_Py_find_basename(const wchar_t *filename)$/;" f +_Py_float_runtime_state Include/internal/pycore_floatobject.h /^struct _Py_float_runtime_state {$/;" s +_Py_float_state Include/internal/pycore_floatobject.h /^struct _Py_float_state {$/;" s +_Py_fopen_obj Python/fileutils.c /^_Py_fopen_obj(PyObject *path, const char *mode)$/;" f +_Py_fstat Python/fileutils.c /^_Py_fstat(int fd, struct _Py_stat_struct *status)$/;" f +_Py_fstat_noraise Python/fileutils.c /^_Py_fstat_noraise(int fd, struct _Py_stat_struct *status)$/;" f +_Py_get_387controlword Python/pymath.c /^unsigned short _Py_get_387controlword(void) {$/;" f +_Py_get_blocking Python/fileutils.c /^_Py_get_blocking(int fd)$/;" f +_Py_get_env_flag Python/preconfig.c /^_Py_get_env_flag(int use_environment, int *flag, const char *name)$/;" f +_Py_get_inheritable Python/fileutils.c /^_Py_get_inheritable(int fd)$/;" f +_Py_get_osfhandle Python/fileutils.c /^_Py_get_osfhandle(int fd)$/;" f +_Py_get_osfhandle_noraise Python/fileutils.c /^_Py_get_osfhandle_noraise(int fd)$/;" f +_Py_get_xoption Python/preconfig.c /^_Py_get_xoption(const PyWideStringList *xoptions, const wchar_t *name)$/;" f +_Py_gitidentifier Modules/getbuildinfo.c /^_Py_gitidentifier(void)$/;" f +_Py_gitversion Modules/getbuildinfo.c /^_Py_gitversion(void)$/;" f +_Py_global_strings Include/internal/pycore_global_strings.h /^struct _Py_global_strings {$/;" s +_Py_hashtable_allocator_t Include/internal/pycore_hashtable.h /^} _Py_hashtable_allocator_t;$/;" t typeref:struct:__anon131 +_Py_hashtable_clear Python/hashtable.c /^_Py_hashtable_clear(_Py_hashtable_t *ht)$/;" f +_Py_hashtable_compare_direct Python/hashtable.c /^_Py_hashtable_compare_direct(const void *key1, const void *key2)$/;" f +_Py_hashtable_compare_func Include/internal/pycore_hashtable.h /^typedef int (*_Py_hashtable_compare_func) (const void *key1, const void *key2);$/;" t +_Py_hashtable_destroy Python/hashtable.c /^_Py_hashtable_destroy(_Py_hashtable_t *ht)$/;" f +_Py_hashtable_destroy_entry Python/hashtable.c /^_Py_hashtable_destroy_entry(_Py_hashtable_t *ht, _Py_hashtable_entry_t *entry)$/;" f file: +_Py_hashtable_destroy_func Include/internal/pycore_hashtable.h /^typedef void (*_Py_hashtable_destroy_func) (void *key);$/;" t +_Py_hashtable_entry_t Include/internal/pycore_hashtable.h /^} _Py_hashtable_entry_t;$/;" t typeref:struct:__anon130 +_Py_hashtable_foreach Python/hashtable.c /^_Py_hashtable_foreach(_Py_hashtable_t *ht,$/;" f +_Py_hashtable_foreach_func Include/internal/pycore_hashtable.h /^typedef int (*_Py_hashtable_foreach_func) (_Py_hashtable_t *ht,$/;" t +_Py_hashtable_get Python/hashtable.c /^_Py_hashtable_get(_Py_hashtable_t *ht, const void *key)$/;" f +_Py_hashtable_get_entry Include/internal/pycore_hashtable.h /^_Py_hashtable_get_entry(_Py_hashtable_t *ht, const void *key)$/;" f +_Py_hashtable_get_entry_func Include/internal/pycore_hashtable.h /^typedef _Py_hashtable_entry_t* (*_Py_hashtable_get_entry_func)(_Py_hashtable_t *ht,$/;" t +_Py_hashtable_get_entry_generic Python/hashtable.c /^_Py_hashtable_get_entry_generic(_Py_hashtable_t *ht, const void *key)$/;" f +_Py_hashtable_get_entry_ptr Python/hashtable.c /^_Py_hashtable_get_entry_ptr(_Py_hashtable_t *ht, const void *key)$/;" f file: +_Py_hashtable_hash_func Include/internal/pycore_hashtable.h /^typedef Py_uhash_t (*_Py_hashtable_hash_func) (const void *key);$/;" t +_Py_hashtable_hash_ptr Python/hashtable.c /^_Py_hashtable_hash_ptr(const void *key)$/;" f +_Py_hashtable_new Python/hashtable.c /^_Py_hashtable_new(_Py_hashtable_hash_func hash_func,$/;" f +_Py_hashtable_new_full Python/hashtable.c /^_Py_hashtable_new_full(_Py_hashtable_hash_func hash_func,$/;" f +_Py_hashtable_set Python/hashtable.c /^_Py_hashtable_set(_Py_hashtable_t *ht, const void *key, void *value)$/;" f +_Py_hashtable_size Python/hashtable.c /^_Py_hashtable_size(const _Py_hashtable_t *ht)$/;" f +_Py_hashtable_steal Python/hashtable.c /^_Py_hashtable_steal(_Py_hashtable_t *ht, const void *key)$/;" f +_Py_hashtable_t Include/internal/pycore_hashtable.h /^struct _Py_hashtable_t {$/;" s +_Py_hashtable_t Include/internal/pycore_hashtable.h /^typedef struct _Py_hashtable_t _Py_hashtable_t;$/;" t typeref:struct:_Py_hashtable_t +_Py_initialize_generic Objects/typevarobject.c /^int _Py_initialize_generic(PyInterpreterState *interp)$/;" f +_Py_interp_cached_objects Include/internal/pycore_global_objects.h /^struct _Py_interp_cached_objects {$/;" s +_Py_interp_static_objects Include/internal/pycore_global_objects.h /^struct _Py_interp_static_objects {$/;" s +_Py_isabs Python/fileutils.c /^_Py_isabs(const wchar_t *path)$/;" f +_Py_join_relfile Python/fileutils.c /^_Py_join_relfile(const wchar_t *dirname, const wchar_t *relfile)$/;" f +_Py_list_state Include/internal/pycore_list.h /^struct _Py_list_state {$/;" s +_Py_log1p Modules/_math.h /^_Py_log1p(double x)$/;" f +_Py_long_state Include/internal/pycore_interp.h /^struct _Py_long_state {$/;" s +_Py_make_parameters Objects/genericaliasobject.c /^_Py_make_parameters(PyObject *args)$/;" f +_Py_make_typealias Objects/typevarobject.c /^_Py_make_typealias(PyThreadState* unused, PyObject *args)$/;" f +_Py_make_typevar Objects/typevarobject.c /^_Py_make_typevar(PyObject *name, PyObject *evaluate_bound, PyObject *evaluate_constraints)$/;" f +_Py_mbrtowc Python/fileutils.c /^_Py_mbrtowc(wchar_t *pwc, const char *str, size_t len, mbstate_t *pmbs)$/;" f file: +_Py_mbstowcs Python/fileutils.c /^_Py_mbstowcs(wchar_t *dest, const char *src, size_t n)$/;" f file: +_Py_memory_order Include/internal/pycore_atomic.h /^typedef enum _Py_memory_order {$/;" g +_Py_memory_order Include/internal/pycore_atomic.h /^} _Py_memory_order;$/;" t typeref:enum:_Py_memory_order +_Py_memory_order_acq_rel Include/internal/pycore_atomic.h /^ _Py_memory_order_acq_rel = __ATOMIC_ACQ_REL,$/;" e enum:_Py_memory_order +_Py_memory_order_acq_rel Include/internal/pycore_atomic.h /^ _Py_memory_order_acq_rel = memory_order_acq_rel,$/;" e enum:_Py_memory_order +_Py_memory_order_acq_rel Include/internal/pycore_atomic.h /^ _Py_memory_order_acq_rel,$/;" e enum:_Py_memory_order +_Py_memory_order_acquire Include/internal/pycore_atomic.h /^ _Py_memory_order_acquire = __ATOMIC_ACQUIRE,$/;" e enum:_Py_memory_order +_Py_memory_order_acquire Include/internal/pycore_atomic.h /^ _Py_memory_order_acquire = memory_order_acquire,$/;" e enum:_Py_memory_order +_Py_memory_order_acquire Include/internal/pycore_atomic.h /^ _Py_memory_order_acquire,$/;" e enum:_Py_memory_order +_Py_memory_order_relaxed Include/internal/pycore_atomic.h /^ _Py_memory_order_relaxed = __ATOMIC_RELAXED,$/;" e enum:_Py_memory_order +_Py_memory_order_relaxed Include/internal/pycore_atomic.h /^ _Py_memory_order_relaxed = memory_order_relaxed,$/;" e enum:_Py_memory_order +_Py_memory_order_relaxed Include/internal/pycore_atomic.h /^ _Py_memory_order_relaxed,$/;" e enum:_Py_memory_order +_Py_memory_order_release Include/internal/pycore_atomic.h /^ _Py_memory_order_release = __ATOMIC_RELEASE,$/;" e enum:_Py_memory_order +_Py_memory_order_release Include/internal/pycore_atomic.h /^ _Py_memory_order_release = memory_order_release,$/;" e enum:_Py_memory_order +_Py_memory_order_release Include/internal/pycore_atomic.h /^ _Py_memory_order_release,$/;" e enum:_Py_memory_order +_Py_memory_order_seq_cst Include/internal/pycore_atomic.h /^ _Py_memory_order_seq_cst = __ATOMIC_SEQ_CST$/;" e enum:_Py_memory_order +_Py_memory_order_seq_cst Include/internal/pycore_atomic.h /^ _Py_memory_order_seq_cst = memory_order_seq_cst$/;" e enum:_Py_memory_order +_Py_memory_order_seq_cst Include/internal/pycore_atomic.h /^ _Py_memory_order_seq_cst$/;" e enum:_Py_memory_order +_Py_memory_repeat Include/internal/pycore_list.h /^_Py_memory_repeat(char* dest, Py_ssize_t len_dest, Py_ssize_t len_src)$/;" f +_Py_mod_LAST_SLOT Include/moduleobject.h 84;" d +_Py_module_getattro Objects/moduleobject.c /^_Py_module_getattro(PyModuleObject *m, PyObject *name)$/;" f +_Py_module_getattro_impl Objects/moduleobject.c /^_Py_module_getattro_impl(PyModuleObject *m, PyObject *name, int suppress)$/;" f +_Py_next_func_version Programs/_bootstrap_python.c /^uint32_t _Py_next_func_version = 1;$/;" v +_Py_next_func_version Programs/_freeze_module.c /^uint32_t _Py_next_func_version = 1;$/;" v +_Py_normalize_encoding Objects/unicodeobject.c /^_Py_normalize_encoding(const char *encoding,$/;" f +_Py_normpath Python/fileutils.c /^_Py_normpath(wchar_t *path, Py_ssize_t size)$/;" f +_Py_normpath_and_size Python/fileutils.c /^_Py_normpath_and_size(wchar_t *path, Py_ssize_t size, Py_ssize_t *normsize)$/;" f +_Py_open Python/fileutils.c /^_Py_open(const char *pathname, int flags)$/;" f +_Py_open_cloexec_works Python/fileutils.c /^int _Py_open_cloexec_works = -1;$/;" v +_Py_open_impl Python/fileutils.c /^_Py_open_impl(const char *pathname, int flags, int gil_held)$/;" f file: +_Py_open_noraise Python/fileutils.c /^_Py_open_noraise(const char *pathname, int flags)$/;" f +_Py_open_osfhandle Python/fileutils.c /^_Py_open_osfhandle(void *handle, int flags)$/;" f +_Py_open_osfhandle_noraise Python/fileutils.c /^_Py_open_osfhandle_noraise(void *handle, int flags)$/;" f +_Py_parse_inf_or_nan Python/pystrtod.c /^_Py_parse_inf_or_nan(const char *p, char **endptr)$/;" f +_Py_path_config Python/pathconfig.c /^_PyPathConfig _Py_path_config = _PyPathConfig_INIT;$/;" v +_Py_perfmap_callbacks Python/perf_trampoline.c /^_PyPerf_Callbacks _Py_perfmap_callbacks = {$/;" v +_Py_popcount32 Include/internal/pycore_bitutils.h /^_Py_popcount32(uint32_t x)$/;" f +_Py_read Python/fileutils.c /^_Py_read(int fd, void *buf, size_t count)$/;" f +_Py_set_387controlword Python/pymath.c /^void _Py_set_387controlword(unsigned short cw) {$/;" f +_Py_set_blocking Python/fileutils.c /^_Py_set_blocking(int fd, int blocking)$/;" f +_Py_set_inheritable Python/fileutils.c /^_Py_set_inheritable(int fd, int inheritable, int *atomic_flag_works)$/;" f +_Py_set_inheritable_async_safe Python/fileutils.c /^_Py_set_inheritable_async_safe(int fd, int inheritable, int *atomic_flag_works)$/;" f +_Py_set_localsplus_info Objects/codeobject.c /^_Py_set_localsplus_info(int offset, PyObject *name, _PyLocals_Kind kind,$/;" f +_Py_sighandler_t Include/internal/pycore_faulthandler.h /^typedef PyOS_sighandler_t _Py_sighandler_t;$/;" t +_Py_sighandler_t Include/internal/pycore_faulthandler.h /^typedef struct sigaction _Py_sighandler_t;$/;" t typeref:struct:sigaction +_Py_silent_invalid_parameter_handler PC/invalid_parameter_handler.c /^_invalid_parameter_handler _Py_silent_invalid_parameter_handler = _silent_invalid_parameter_handler;$/;" v +_Py_slist_init Python/hashtable.c /^_Py_slist_init(_Py_slist_t *list)$/;" f file: +_Py_slist_item Include/internal/pycore_hashtable.h /^ _Py_slist_item_t _Py_slist_item;$/;" m struct:__anon130 +_Py_slist_item_s Include/internal/pycore_hashtable.h /^typedef struct _Py_slist_item_s {$/;" s +_Py_slist_item_t Include/internal/pycore_hashtable.h /^} _Py_slist_item_t;$/;" t typeref:struct:_Py_slist_item_s +_Py_slist_prepend Python/hashtable.c /^_Py_slist_prepend(_Py_slist_t *list, _Py_slist_item_t *item)$/;" f file: +_Py_slist_remove Python/hashtable.c /^_Py_slist_remove(_Py_slist_t *list, _Py_slist_item_t *previous,$/;" f file: +_Py_slist_t Include/internal/pycore_hashtable.h /^} _Py_slist_t;$/;" t typeref:struct:__anon129 +_Py_slot_tp_getattr_hook Objects/typeobject.c /^_Py_slot_tp_getattr_hook(PyObject *self, PyObject *name)$/;" f +_Py_slot_tp_getattro Objects/typeobject.c /^_Py_slot_tp_getattro(PyObject *self, PyObject *name)$/;" f +_Py_small_ints_INIT Include/internal/pycore_runtime_init_generated.h 12;" d +_Py_stat Python/fileutils.c /^_Py_stat(PyObject *path, struct stat *statbuf)$/;" f +_Py_stat_basic_info_to_stat Python/fileutils.c /^_Py_stat_basic_info_to_stat(FILE_STAT_BASIC_INFORMATION *info,$/;" f +_Py_stat_struct Include/internal/pycore_fileutils.h /^struct _Py_stat_struct {$/;" s +_Py_stat_struct Include/internal/pycore_fileutils.h 90;" d +_Py_static_objects Include/internal/pycore_global_objects.h /^struct _Py_static_objects {$/;" s +_Py_static_string Include/cpython/object.h 54;" d +_Py_static_string_init Include/cpython/object.h 53;" d +_Py_stdlib_module_names Python/stdlib_module_names.h /^static const char* _Py_stdlib_module_names[] = {$/;" v +_Py_str_ascii_INIT Include/internal/pycore_runtime_init_generated.h 1259;" d +_Py_str_identifiers_INIT Include/internal/pycore_runtime_init_generated.h 565;" d +_Py_str_latin1_INIT Include/internal/pycore_runtime_init_generated.h 1390;" d +_Py_str_literals_INIT Include/internal/pycore_runtime_init_generated.h 536;" d +_Py_str_to_int Python/preconfig.c /^_Py_str_to_int(const char *str, int *result)$/;" f +_Py_strhex Python/pystrhex.c /^PyObject * _Py_strhex(const char* argbuf, const Py_ssize_t arglen)$/;" f +_Py_strhex_bytes Python/pystrhex.c /^PyObject* _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen)$/;" f +_Py_strhex_bytes_with_sep Python/pystrhex.c /^PyObject* _Py_strhex_bytes_with_sep(const char* argbuf, const Py_ssize_t arglen,$/;" f +_Py_strhex_impl Python/pystrhex.c /^static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen,$/;" f file: +_Py_strhex_with_sep Python/pystrhex.c /^PyObject* _Py_strhex_with_sep(const char* argbuf, const Py_ssize_t arglen,$/;" f +_Py_string_to_number_with_underscores Python/pystrtod.c /^_Py_string_to_number_with_underscores($/;" f +_Py_subs_parameters Objects/genericaliasobject.c /^_Py_subs_parameters(PyObject *self, PyObject *args, PyObject *parameters, PyObject *item)$/;" f +_Py_subscript_generic Objects/typevarobject.c /^_Py_subscript_generic(PyThreadState* unused, PyObject *params)$/;" f +_Py_thread_local Include/pyport.h 667;" d +_Py_thread_local Include/pyport.h 669;" d +_Py_thread_local Include/pyport.h 671;" d +_Py_thread_local Include/pyport.h 673;" d +_Py_time_t_to_FILE_TIME Python/fileutils.c /^_Py_time_t_to_FILE_TIME(time_t time_in, int nsec_in, FILETIME *out_ptr)$/;" f +_Py_timezone Modules/timemodule.c 45;" d file: +_Py_timezone Modules/timemodule.c 49;" d file: +_Py_trampoline_func_end Python/asm_trampoline.S /^_Py_trampoline_func_end:$/;" l +_Py_trampoline_func_start Python/asm_trampoline.S /^_Py_trampoline_func_start:$/;" l +_Py_tss_t Include/cpython/pythread.h /^struct _Py_tss_t {$/;" s +_Py_tss_tstate Python/pystate.c /^_Py_thread_local PyThreadState *_Py_tss_tstate = NULL;$/;" v +_Py_tuple_state Include/internal/pycore_tuple.h /^struct _Py_tuple_state {$/;" s +_Py_type_getattro Objects/typeobject.c /^_Py_type_getattro(PyTypeObject *type, PyObject *name)$/;" f +_Py_type_getattro_impl Objects/typeobject.c /^_Py_type_getattro_impl(PyTypeObject *type, PyObject *name, int * suppress_missing_attribute)$/;" f +_Py_tzname Modules/timemodule.c 47;" d file: +_Py_tzname Modules/timemodule.c 51;" d file: +_Py_unicode_fs_codec Include/internal/pycore_unicodeobject.h /^struct _Py_unicode_fs_codec {$/;" s +_Py_unicode_ids Include/internal/pycore_unicodeobject.h /^struct _Py_unicode_ids {$/;" s +_Py_unicode_runtime_ids Include/internal/pycore_unicodeobject.h /^struct _Py_unicode_runtime_ids {$/;" s +_Py_unicode_runtime_state Include/internal/pycore_unicodeobject.h /^struct _Py_unicode_runtime_state {$/;" s +_Py_unicode_state Include/internal/pycore_unicodeobject.h /^struct _Py_unicode_state {$/;" s +_Py_union_args Objects/unionobject.c /^_Py_union_args(PyObject *self)$/;" f +_Py_union_type_or Objects/unionobject.c /^_Py_union_type_or(PyObject* self, PyObject* other)$/;" f +_Py_wfopen Python/fileutils.c /^_Py_wfopen(const wchar_t *path, const wchar_t *mode)$/;" f +_Py_wgetcwd Python/fileutils.c /^_Py_wgetcwd(wchar_t *buf, size_t buflen)$/;" f +_Py_wreadlink Python/fileutils.c /^_Py_wreadlink(const wchar_t *path, wchar_t *buf, size_t buflen)$/;" f +_Py_wrealpath Python/fileutils.c /^_Py_wrealpath(const wchar_t *path,$/;" f +_Py_write Python/fileutils.c /^_Py_write(int fd, const void *buf, size_t count)$/;" f +_Py_write_impl Python/fileutils.c /^_Py_write_impl(int fd, const void *buf, size_t count, int gil_held)$/;" f file: +_Py_write_noraise Python/fileutils.c /^_Py_write_noraise(int fd, const void *buf, size_t count)$/;" f +_Py_wstat Python/fileutils.c /^_Py_wstat(const wchar_t* path, struct stat *buf)$/;" f +_Pypegen_raise_decode_error Parser/pegen_errors.c /^_Pypegen_raise_decode_error(Parser *p)$/;" f +_Pypegen_set_syntax_error Parser/pegen_errors.c /^_Pypegen_set_syntax_error(Parser* p, Token* last_token) {$/;" f +_Pypegen_stack_overflow Parser/pegen_errors.c /^_Pypegen_stack_overflow(Parser *p)$/;" f +_Pypegen_tokenizer_error Parser/pegen_errors.c /^_Pypegen_tokenizer_error(Parser *p)$/;" f +_PythonRunResult Lib/test/support/script_helper.py /^ ("rc", "out", "err"))):$/;" c +_QByteMap Lib/email/_encoded_words.py /^class _QByteMap(dict):$/;" c +_QUEUE_SIMPLEQUEUE_EMPTY_METHODDEF Modules/clinic/_queuemodule.c.h 285;" d +_QUEUE_SIMPLEQUEUE_GET_METHODDEF Modules/clinic/_queuemodule.c.h 188;" d +_QUEUE_SIMPLEQUEUE_GET_NOWAIT_METHODDEF Modules/clinic/_queuemodule.c.h 262;" d +_QUEUE_SIMPLEQUEUE_PUT_METHODDEF Modules/clinic/_queuemodule.c.h 49;" d +_QUEUE_SIMPLEQUEUE_PUT_NOWAIT_METHODDEF Modules/clinic/_queuemodule.c.h 125;" d +_QUEUE_SIMPLEQUEUE_QSIZE_METHODDEF Modules/clinic/_queuemodule.c.h 313;" d +_QUOPRI_BODY_ENCODE_MAP Lib/email/quoprimime.py /^_QUOPRI_BODY_ENCODE_MAP = _QUOPRI_BODY_MAP[:]$/;" v +_QUOPRI_BODY_MAP Lib/email/quoprimime.py /^_QUOPRI_BODY_MAP = _QUOPRI_MAP[:]$/;" v +_QUOPRI_HEADER_MAP Lib/email/quoprimime.py /^_QUOPRI_HEADER_MAP = _QUOPRI_MAP[:]$/;" v +_QueryDialog Lib/tkinter/simpledialog.py /^class _QueryDialog(Dialog):$/;" c +_QueryFloat Lib/tkinter/simpledialog.py /^class _QueryFloat(_QueryDialog):$/;" c +_QueryInteger Lib/tkinter/simpledialog.py /^class _QueryInteger(_QueryDialog):$/;" c +_QueryString Lib/tkinter/simpledialog.py /^class _QueryString(_QueryDialog):$/;" c +_QueueJoinTestMixin Lib/test/test_asyncio/test_queues.py /^class _QueueJoinTestMixin:$/;" c +_QuotePatt Lib/http/cookies.py /^_QuotePatt = re.compile(r"[\\\\].")$/;" v +_Quoter Lib/urllib/parse.py /^class _Quoter(dict):$/;" c +_RAISE_SYNTAX_ERROR_INVALID_TARGET Parser/pegen.h /^_RAISE_SYNTAX_ERROR_INVALID_TARGET(Parser *p, TARGETS_TYPE type, void *e)$/;" f +_RANDOM_RANDOM_GETRANDBITS_METHODDEF Modules/clinic/_randommodule.c.h 97;" d +_RANDOM_RANDOM_GETSTATE_METHODDEF Modules/clinic/_randommodule.c.h 70;" d +_RANDOM_RANDOM_RANDOM_METHODDEF Modules/clinic/_randommodule.c.h 17;" d +_RANDOM_RANDOM_SEED_METHODDEF Modules/clinic/_randommodule.c.h 38;" d +_RANDOM_RANDOM_SETSTATE_METHODDEF Modules/clinic/_randommodule.c.h 88;" d +_RANGE_10 Tools/stringbench/stringbench.py /^_RANGE_10 = list(range(10))$/;" v +_RANGE_100 Tools/stringbench/stringbench.py /^_RANGE_100 = list(range(100))$/;" v +_RANGE_1000 Tools/stringbench/stringbench.py /^_RANGE_1000 = list(range(1000))$/;" v +_RAW_MAGIC_NUMBER Lib/importlib/_bootstrap_external.py /^_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c$/;" v +_READING_CODE_TEMPLATE Lib/test/test_file_eintr.py /^ _READING_CODE_TEMPLATE = ($/;" v class:TestFileIOSignalInterrupt +_RECURSIVE_CUTOFF Lib/traceback.py /^_RECURSIVE_CUTOFF = 3 # Also hardcoded in traceback.c.$/;" v +_RELOADING Lib/importlib/__init__.py /^_RELOADING = {}$/;" v +_REPEATCODES Lib/re/_parser.py /^_REPEATCODES = frozenset({MIN_REPEAT, MAX_REPEAT, POSSESSIVE_REPEAT})$/;" v +_REPEATING_CODES Lib/re/_compiler.py /^_REPEATING_CODES = {$/;" v +_RESTRICTED_SERVER_CIPHERS Lib/ssl.py /^_RESTRICTED_SERVER_CIPHERS = _DEFAULT_CIPHERS$/;" v +_RET Modules/_ctypes/cfield.c 447;" d file: +_RET Modules/_ctypes/cfield.c 449;" d file: +_RLock Lib/threading.py /^class _RLock:$/;" c +_RUNNING Lib/turtle.py /^ _RUNNING = True$/;" v class:TurtleScreen +_RandomNameSequence Lib/tempfile.py /^class _RandomNameSequence:$/;" c +_Readable Lib/wsgiref/types.py /^class _Readable(Protocol):$/;" c +_RealGetContents Lib/zipfile/__init__.py /^ def _RealGetContents(self):$/;" m class:ZipFile +_RecursiveWildcardSelector Lib/pathlib.py /^class _RecursiveWildcardSelector(_Selector):$/;" c +_RedirectStream Lib/contextlib.py /^class _RedirectStream(AbstractContextManager):$/;" c +_RemoteTraceback Lib/concurrent/futures/process.py /^class _RemoteTraceback(Exception):$/;" c +_ResourceSharer Lib/multiprocessing/resource_sharer.py /^class _ResourceSharer(object):$/;" c +_ResultItem Lib/concurrent/futures/process.py /^class _ResultItem(object):$/;" c +_ResultMixinBytes Lib/urllib/parse.py /^class _ResultMixinBytes(object):$/;" c +_ResultMixinStr Lib/urllib/parse.py /^class _ResultMixinStr(object):$/;" c +_Root Lib/turtle.py /^class _Root(TK.Tk):$/;" c +_Row Modules/_sqlite/row.h /^typedef struct _Row$/;" s +_RunningLoop Lib/asyncio/events.py /^class _RunningLoop(threading.local):$/;" c +_SCHEME_KEYS Lib/sysconfig.py /^_SCHEME_KEYS = ('stdlib', 'platstdlib', 'purelib', 'platlib', 'include',$/;" v +_SEARCH_ERROR Lib/modulefinder.py /^_SEARCH_ERROR = 0$/;" v +_SGIAPI Modules/socketmodule.c 217;" d file: +_SGIAPI Modules/socketmodule.c 218;" d file: +_SGI_MP_SOURCE Include/Python.h 16;" d +_SGI_MP_SOURCE Python/mystrtoul.c 5;" d file: +_SHA1_SHA1_METHODDEF Modules/clinic/sha1module.c.h 84;" d +_SHA2_SHA224_METHODDEF Modules/clinic/sha2module.c.h 225;" d +_SHA2_SHA256_METHODDEF Modules/clinic/sha2module.c.h 151;" d +_SHA2_SHA384_METHODDEF Modules/clinic/sha2module.c.h 373;" d +_SHA2_SHA512_METHODDEF Modules/clinic/sha2module.c.h 299;" d +_SHA3_SHA3_224_COPY_METHODDEF Modules/clinic/sha3module.c.h 86;" d +_SHA3_SHA3_224_DIGEST_METHODDEF Modules/clinic/sha3module.c.h 104;" d +_SHA3_SHA3_224_HEXDIGEST_METHODDEF Modules/clinic/sha3module.c.h 122;" d +_SHA3_SHA3_224_UPDATE_METHODDEF Modules/clinic/sha3module.c.h 140;" d +_SHA3_SHAKE_128_DIGEST_METHODDEF Modules/clinic/sha3module.c.h 149;" d +_SHA3_SHAKE_128_HEXDIGEST_METHODDEF Modules/clinic/sha3module.c.h 176;" d +_SHAKE_digest Modules/sha3module.c /^_SHAKE_digest(SHA3object *self, unsigned long digestlen, int hex)$/;" f file: +_SHM_NAME_PREFIX Lib/multiprocessing/shared_memory.py /^ _SHM_NAME_PREFIX = '\/psm_'$/;" v +_SHM_NAME_PREFIX Lib/multiprocessing/shared_memory.py /^ _SHM_NAME_PREFIX = 'wnsm_'$/;" v +_SHM_SAFE_NAME_LENGTH Lib/multiprocessing/shared_memory.py /^_SHM_SAFE_NAME_LENGTH = 14$/;" v +_SHUTTING_DOWN Lib/threading.py /^_SHUTTING_DOWN = False$/;" v +_SINGLE_QUOTES Lib/ast.py /^_SINGLE_QUOTES = ("'", '"')$/;" v +_SIP_ULL Modules/expat/siphash.h 109;" d +_SIZEOF_PYTIME_T Include/cpython/pytime.h 68;" d +_SKIPPED Tools/c-analyzer/c_analyzer/analyze.py /^_SKIPPED = Skipped()$/;" v +_SMALLEST Lib/test/support/__init__.py /^class _SMALLEST:$/;" c +_SMALL_RECT Lib/ctypes/wintypes.py /^class _SMALL_RECT(ctypes.Structure):$/;" c +_SPECIAL_NAMES Lib/typing.py /^_SPECIAL_NAMES = frozenset({$/;" v +_SQRT2 Lib/statistics.py /^_SQRT2 = sqrt(2.0)$/;" v +_SRE_ASCII_ISCASED_METHODDEF Modules/_sre/clinic/sre.c.h 43;" d +_SRE_ASCII_TOLOWER_METHODDEF Modules/_sre/clinic/sre.c.h 107;" d +_SRE_COMPILE_METHODDEF Modules/_sre/clinic/sre.c.h 984;" d +_SRE_GETCODESIZE_METHODDEF Modules/_sre/clinic/sre.c.h 16;" d +_SRE_SRE_MATCH_END_METHODDEF Modules/_sre/clinic/sre.c.h 1334;" d +_SRE_SRE_MATCH_EXPAND_METHODDEF Modules/_sre/clinic/sre.c.h 1116;" d +_SRE_SRE_MATCH_GROUPDICT_METHODDEF Modules/_sre/clinic/sre.c.h 1237;" d +_SRE_SRE_MATCH_GROUPS_METHODDEF Modules/_sre/clinic/sre.c.h 1174;" d +_SRE_SRE_MATCH_SPAN_METHODDEF Modules/_sre/clinic/sre.c.h 1371;" d +_SRE_SRE_MATCH_START_METHODDEF Modules/_sre/clinic/sre.c.h 1297;" d +_SRE_SRE_MATCH___COPY___METHODDEF Modules/_sre/clinic/sre.c.h 1402;" d +_SRE_SRE_MATCH___DEEPCOPY___METHODDEF Modules/_sre/clinic/sre.c.h 1419;" d +_SRE_SRE_PATTERN_FINDALL_METHODDEF Modules/_sre/clinic/sre.c.h 453;" d +_SRE_SRE_PATTERN_FINDITER_METHODDEF Modules/_sre/clinic/sre.c.h 547;" d +_SRE_SRE_PATTERN_FULLMATCH_METHODDEF Modules/_sre/clinic/sre.c.h 265;" d +_SRE_SRE_PATTERN_MATCH_METHODDEF Modules/_sre/clinic/sre.c.h 172;" d +_SRE_SRE_PATTERN_SCANNER_METHODDEF Modules/_sre/clinic/sre.c.h 639;" d +_SRE_SRE_PATTERN_SEARCH_METHODDEF Modules/_sre/clinic/sre.c.h 360;" d +_SRE_SRE_PATTERN_SPLIT_METHODDEF Modules/_sre/clinic/sre.c.h 732;" d +_SRE_SRE_PATTERN_SUBN_METHODDEF Modules/_sre/clinic/sre.c.h 882;" d +_SRE_SRE_PATTERN_SUB_METHODDEF Modules/_sre/clinic/sre.c.h 806;" d +_SRE_SRE_PATTERN___COPY___METHODDEF Modules/_sre/clinic/sre.c.h 958;" d +_SRE_SRE_PATTERN___DEEPCOPY___METHODDEF Modules/_sre/clinic/sre.c.h 975;" d +_SRE_SRE_SCANNER_MATCH_METHODDEF Modules/_sre/clinic/sre.c.h 1427;" d +_SRE_SRE_SCANNER_SEARCH_METHODDEF Modules/_sre/clinic/sre.c.h 1448;" d +_SRE_TEMPLATE_METHODDEF Modules/_sre/clinic/sre.c.h 1082;" d +_SRE_UNICODE_ISCASED_METHODDEF Modules/_sre/clinic/sre.c.h 75;" d +_SRE_UNICODE_TOLOWER_METHODDEF Modules/_sre/clinic/sre.c.h 139;" d +_SSLProtocolTransport Lib/asyncio/sslproto.py /^ transports.Transport):$/;" c +_SSLSocket Lib/ftplib.py /^ _SSLSocket = None$/;" v class:FTP +_SSLSocket Lib/ftplib.py /^ _SSLSocket = ssl.SSLSocket$/;" v +_SSL_CERTIFICATE_GET_INFO_METHODDEF Modules/_ssl/clinic/cert.c.h 78;" d +_SSL_CERTIFICATE_PUBLIC_BYTES_METHODDEF Modules/_ssl/clinic/cert.c.h 16;" d +_SSL_ENUM_CERTIFICATES_METHODDEF Modules/clinic/_ssl.c.h 1399;" d +_SSL_ENUM_CERTIFICATES_METHODDEF Modules/clinic/_ssl.c.h 1539;" d +_SSL_ENUM_CRLS_METHODDEF Modules/clinic/_ssl.c.h 1475;" d +_SSL_ENUM_CRLS_METHODDEF Modules/clinic/_ssl.c.h 1543;" d +_SSL_GET_DEFAULT_VERIFY_PATHS_METHODDEF Modules/clinic/_ssl.c.h 1265;" d +_SSL_MEMORYBIO_READ_METHODDEF Modules/clinic/_ssl.c.h 1058;" d +_SSL_MEMORYBIO_WRITE_EOF_METHODDEF Modules/clinic/_ssl.c.h 1133;" d +_SSL_MEMORYBIO_WRITE_METHODDEF Modules/clinic/_ssl.c.h 1095;" d +_SSL_NID2OBJ_METHODDEF Modules/clinic/_ssl.c.h 1363;" d +_SSL_RAND_ADD_METHODDEF Modules/clinic/_ssl.c.h 1154;" d +_SSL_RAND_BYTES_METHODDEF Modules/clinic/_ssl.c.h 1214;" d +_SSL_RAND_STATUS_METHODDEF Modules/clinic/_ssl.c.h 1245;" d +_SSL_TXT2OBJ_METHODDEF Modules/clinic/_ssl.c.h 1286;" d +_SSL__SSLCONTEXT_CERT_STORE_STATS_METHODDEF Modules/clinic/_ssl.c.h 943;" d +_SSL__SSLCONTEXT_GET_CA_CERTS_METHODDEF Modules/clinic/_ssl.c.h 967;" d +_SSL__SSLCONTEXT_GET_CIPHERS_METHODDEF Modules/clinic/_ssl.c.h 499;" d +_SSL__SSLCONTEXT_LOAD_CERT_CHAIN_METHODDEF Modules/clinic/_ssl.c.h 552;" d +_SSL__SSLCONTEXT_LOAD_DH_PARAMS_METHODDEF Modules/clinic/_ssl.c.h 697;" d +_SSL__SSLCONTEXT_LOAD_VERIFY_LOCATIONS_METHODDEF Modules/clinic/_ssl.c.h 621;" d +_SSL__SSLCONTEXT_SESSION_STATS_METHODDEF Modules/clinic/_ssl.c.h 894;" d +_SSL__SSLCONTEXT_SET_CIPHERS_METHODDEF Modules/clinic/_ssl.c.h 463;" d +_SSL__SSLCONTEXT_SET_DEFAULT_VERIFY_PATHS_METHODDEF Modules/clinic/_ssl.c.h 911;" d +_SSL__SSLCONTEXT_SET_ECDH_CURVE_METHODDEF Modules/clinic/_ssl.c.h 928;" d +_SSL__SSLCONTEXT__SET_ALPN_PROTOCOLS_METHODDEF Modules/clinic/_ssl.c.h 516;" d +_SSL__SSLCONTEXT__WRAP_BIO_METHODDEF Modules/clinic/_ssl.c.h 797;" d +_SSL__SSLCONTEXT__WRAP_SOCKET_METHODDEF Modules/clinic/_ssl.c.h 706;" d +_SSL__SSLSOCKET_CIPHER_METHODDEF Modules/clinic/_ssl.c.h 153;" d +_SSL__SSLSOCKET_COMPRESSION_METHODDEF Modules/clinic/_ssl.c.h 204;" d +_SSL__SSLSOCKET_DO_HANDSHAKE_METHODDEF Modules/clinic/_ssl.c.h 16;" d +_SSL__SSLSOCKET_GETPEERCERT_METHODDEF Modules/clinic/_ssl.c.h 68;" d +_SSL__SSLSOCKET_GET_CHANNEL_BINDING_METHODDEF Modules/clinic/_ssl.c.h 346;" d +_SSL__SSLSOCKET_GET_UNVERIFIED_CHAIN_METHODDEF Modules/clinic/_ssl.c.h 119;" d +_SSL__SSLSOCKET_GET_VERIFIED_CHAIN_METHODDEF Modules/clinic/_ssl.c.h 102;" d +_SSL__SSLSOCKET_PENDING_METHODDEF Modules/clinic/_ssl.c.h 260;" d +_SSL__SSLSOCKET_READ_METHODDEF Modules/clinic/_ssl.c.h 276;" d +_SSL__SSLSOCKET_SELECTED_ALPN_PROTOCOL_METHODDEF Modules/clinic/_ssl.c.h 187;" d +_SSL__SSLSOCKET_SHARED_CIPHERS_METHODDEF Modules/clinic/_ssl.c.h 136;" d +_SSL__SSLSOCKET_SHUTDOWN_METHODDEF Modules/clinic/_ssl.c.h 324;" d +_SSL__SSLSOCKET_VERIFY_CLIENT_POST_HANDSHAKE_METHODDEF Modules/clinic/_ssl.c.h 419;" d +_SSL__SSLSOCKET_VERSION_METHODDEF Modules/clinic/_ssl.c.h 170;" d +_SSL__SSLSOCKET_WRITE_METHODDEF Modules/clinic/_ssl.c.h 224;" d +_SSL__TEST_DECODE_CERT_METHODDEF Modules/clinic/_ssl.c.h 33;" d +_SSLv2_IF_EXISTS Lib/ssl.py /^_SSLv2_IF_EXISTS = getattr(_SSLMethod, 'PROTOCOL_SSLv2', None)$/;" v +_SS_ALIGNSIZE Modules/addrinfo.h 144;" d +_SS_MAXSIZE Modules/addrinfo.h 143;" d +_SS_PAD1SIZE Modules/addrinfo.h 145;" d +_SS_PAD2SIZE Modules/addrinfo.h 146;" d +_STATEFUL_METHODS Modules/cjkcodecs/cjkcodecs.h 264;" d +_STATELESS_METHODS Modules/cjkcodecs/cjkcodecs.h 271;" d +_STATE_TO_DESCRIPTION_MAP Lib/concurrent/futures/_base.py /^_STATE_TO_DESCRIPTION_MAP = {$/;" v +_STATISTICS__NORMAL_DIST_INV_CDF_METHODDEF Modules/clinic/_statisticsmodule.c.h 16;" d +_STORAGE Tools/c-analyzer/c_parser/parser/_regexes.py /^_STORAGE = 'auto register static extern _Thread_local'.split()$/;" v +_STR Lib/test/test_cppext/extension.cpp 17;" d file: +_STRATEGIES Lib/test/support/_hypothesis_stubs/strategies.py /^_STRATEGIES = {$/;" v +_STRINGIFY Python/initconfig.c 1803;" d file: +_STRINGIFY Python/initconfig.c 1826;" d file: +_STYLES Lib/logging/__init__.py /^_STYLES = {$/;" v +_SUCCESS_CODES Lib/re/_compiler.py /^_SUCCESS_CODES = {SUCCESS, FAILURE}$/;" v +_SVID3 Modules/posixmodule.c 12314;" d file: +_SWAP_SEP_AND_NEWLINE Lib/pathlib.py /^_SWAP_SEP_AND_NEWLINE = {$/;" v +_SYMTABLE_SYMTABLE_METHODDEF Modules/clinic/symtablemodule.c.h 17;" d +_SYNONYMS Doc/tools/extensions/pyspecific.py /^ _SYNONYMS = [$/;" v class:AuditEvent +_SYSTEM_VERSION Lib/_osx_support.py /^_SYSTEM_VERSION = None$/;" v +_SYSTEM_VERSION_TUPLE Lib/_osx_support.py /^_SYSTEM_VERSION_TUPLE = None$/;" v +_SafeQueue Lib/concurrent/futures/process.py /^class _SafeQueue(Queue):$/;" c +_Screen Lib/turtle.py /^class _Screen(TurtleScreen):$/;" c +_ScriptTarget Lib/pdb.py /^class _ScriptTarget(str):$/;" c +_SearchInfoBuffer PC/launcher2.c /^struct _SearchInfoBuffer {$/;" s file: +_Section Lib/argparse.py /^ class _Section(object):$/;" c class:HelpFormatter +_Selector Lib/pathlib.py /^class _Selector:$/;" c +_SelectorContext Lib/xml/etree/ElementPath.py /^class _SelectorContext:$/;" c +_SelectorDatagramTransport Lib/asyncio/selector_events.py /^class _SelectorDatagramTransport(_SelectorTransport, transports.DatagramTransport):$/;" c +_SelectorMapping Lib/selectors.py /^class _SelectorMapping(Mapping):$/;" c +_SelectorSocketTransport Lib/asyncio/selector_events.py /^class _SelectorSocketTransport(_SelectorTransport):$/;" c +_SelectorTransport Lib/asyncio/selector_events.py /^ transports.Transport):$/;" c +_SelectorTransportMock Lib/test/test_asyncio/test_base_events.py /^ class _SelectorTransportMock:$/;" c function:BaseEventLoopWithSelectorTests.test_create_connection_ssl_server_hostname_default +_SendfileFallbackProtocol Lib/asyncio/base_events.py /^class _SendfileFallbackProtocol(protocols.Protocol):$/;" c +_SendfileMode Lib/asyncio/constants.py /^class _SendfileMode(enum.Enum):$/;" c +_Sentinel Lib/traceback.py /^class _Sentinel:$/;" c +_Sentinel Lib/unittest/mock.py /^class _Sentinel(object):$/;" c +_SentinelObject Lib/unittest/mock.py /^class _SentinelObject(object):$/;" c +_Server Lib/multiprocessing/managers.py /^ _Server = SharedMemoryServer$/;" v class:SyncManager.SharedMemoryManager +_Server Lib/multiprocessing/managers.py /^ _Server = Server$/;" v class:BaseManager +_ServerSelector Lib/socketserver.py /^ _ServerSelector = selectors.PollSelector$/;" v +_ServerSelector Lib/socketserver.py /^ _ServerSelector = selectors.SelectSelector$/;" v +_SharedFile Lib/zipfile/__init__.py /^class _SharedFile:$/;" c +_SharedMemoryTracker Lib/multiprocessing/managers.py /^ class _SharedMemoryTracker:$/;" c class:SyncManager +_ShouldStop Lib/unittest/case.py /^class _ShouldStop(Exception):$/;" c +_SignedInfinity Lib/_pydecimal.py /^_SignedInfinity = (_Infinity, _NegativeInfinity)$/;" v +_SimpleBinder Lib/idlelib/multicall.py /^class _SimpleBinder:$/;" c +_SocketWriter Lib/socketserver.py /^class _SocketWriter(BufferedIOBase):$/;" c +_SpecState Lib/unittest/mock.py /^class _SpecState(object):$/;" c +_SpecialForm Lib/typing.py /^class _SpecialForm(_Final, _NotIterable, _root=True):$/;" c +_SpecialGenericAlias Lib/typing.py /^class _SpecialGenericAlias(_NotIterable, _BaseGenericAlias, _root=True):$/;" c +_SplitResultBase Lib/urllib/parse.py /^_SplitResultBase = namedtuple($/;" v +_SpoofOut Lib/doctest.py /^class _SpoofOut(StringIO):$/;" c +_State Lib/asyncio/runners.py /^class _State(enum.Enum):$/;" c +_State Lib/asyncio/timeouts.py /^class _State(enum.Enum):$/;" c +_StateAccessType_increment_count_noclinic Modules/_testmultiphase.c /^_StateAccessType_increment_count_noclinic(StateAccessTypeObject *self,$/;" f file: +_StderrHandler Lib/logging/__init__.py /^class _StderrHandler(StreamHandler):$/;" c +_Stop Lib/pickle.py /^class _Stop(Exception):$/;" c +_StoreAction Lib/argparse.py /^class _StoreAction(Action):$/;" c +_StoreConstAction Lib/argparse.py /^class _StoreConstAction(Action):$/;" c +_StoreFalseAction Lib/argparse.py /^class _StoreFalseAction(_StoreConstAction):$/;" c +_StoreTrueAction Lib/argparse.py /^class _StoreTrueAction(_StoreConstAction):$/;" c +_Stream Lib/tarfile.py /^class _Stream:$/;" c +_StreamProxy Lib/tarfile.py /^class _StreamProxy(object):$/;" c +_StructUnion Tools/c-analyzer/c_parser/info.py /^class _StructUnion(TypeDeclaration):$/;" c +_SubParsersAction Lib/argparse.py /^class _SubParsersAction(Action):$/;" c +_SubTest Lib/unittest/case.py /^class _SubTest(TestCase):$/;" c +_T Lib/importlib/metadata/_meta.py /^_T = TypeVar("_T")$/;" v +_TARGET_LOCALES Python/pylifecycle.c /^static _LocaleCoercionTarget _TARGET_LOCALES[] = {$/;" v file: +_TESTCAPI_ERR_SETFROMERRNOWITHFILENAME_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 253;" d +_TESTCAPI_ERR_SETSTRING_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 223;" d +_TESTCAPI_ERR_SET_RAISED_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 16;" d +_TESTCAPI_EXCEPTION_PRINT_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 25;" d +_TESTCAPI_EXC_SET_OBJECT_FETCH_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 193;" d +_TESTCAPI_EXC_SET_OBJECT_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 164;" d +_TESTCAPI_FATAL_ERROR_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 334;" d +_TESTCAPI_FLOAT_PACK_METHODDEF Modules/_testcapi/clinic/float.c.h 17;" d +_TESTCAPI_FLOAT_UNPACK_METHODDEF Modules/_testcapi/clinic/float.c.h 64;" d +_TESTCAPI_HAS_VECTORCALL_FLAG_METHODDEF Modules/_testcapi/clinic/vectorcall.c.h 86;" d +_TESTCAPI_MAKE_EXCEPTION_WITH_DOC_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 63;" d +_TESTCAPI_MAKE_VECTORCALL_CLASS_METHODDEF Modules/_testcapi/clinic/vectorcall.c.h 50;" d +_TESTCAPI_RAISE_EXCEPTION_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 285;" d +_TESTCAPI_RAISE_MEMORYERROR_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 317;" d +_TESTCAPI_SET_EXCEPTION_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 395;" d +_TESTCAPI_SET_EXC_INFO_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 363;" d +_TESTCAPI_SET_FUNC_DEFAULTS_VIA_CAPI_METHODDEF Modules/_testcapi/clinic/watchers.c.h 144;" d +_TESTCAPI_SET_FUNC_KWDEFAULTS_VIA_CAPI_METHODDEF Modules/_testcapi/clinic/watchers.c.h 174;" d +_TESTCAPI_TRACEBACK_PRINT_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 436;" d +_TESTCAPI_UNSTABLE_EXC_PREP_RERAISE_STAR_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 467;" d +_TESTCAPI_UNWATCH_DICT_METHODDEF Modules/_testcapi/clinic/watchers.c.h 48;" d +_TESTCAPI_UNWATCH_TYPE_METHODDEF Modules/_testcapi/clinic/watchers.c.h 112;" d +_TESTCAPI_VECTORCALLCLASS_SET_VECTORCALL_METHODDEF Modules/_testcapi/clinic/vectorcall.c.h 17;" d +_TESTCAPI_WATCH_DICT_METHODDEF Modules/_testcapi/clinic/watchers.c.h 16;" d +_TESTCAPI_WATCH_TYPE_METHODDEF Modules/_testcapi/clinic/watchers.c.h 80;" d +_TESTCAPI_WRITE_UNRAISABLE_EXC_METHODDEF Modules/_testcapi/clinic/exceptions.c.h 403;" d +_TESTCONSOLE_READ_OUTPUT_METHODDEF PC/clinic/_testconsole.c.h 141;" d +_TESTCONSOLE_READ_OUTPUT_METHODDEF PC/clinic/_testconsole.c.h 85;" d +_TESTCONSOLE_WRITE_INPUT_METHODDEF PC/clinic/_testconsole.c.h 137;" d +_TESTCONSOLE_WRITE_INPUT_METHODDEF PC/clinic/_testconsole.c.h 19;" d +_TESTINTERNALCAPI_ASSEMBLE_CODE_OBJECT_METHODDEF Modules/clinic/_testinternalcapi.c.h 154;" d +_TESTINTERNALCAPI_COMPILER_CODEGEN_METHODDEF Modules/clinic/_testinternalcapi.c.h 17;" d +_TESTINTERNALCAPI_OPTIMIZE_CFG_METHODDEF Modules/clinic/_testinternalcapi.c.h 91;" d +_TESTMULTIPHASE_STATEACCESSTYPE_GETMODULEBYDEF_BAD_DEF_METHODDEF Modules/clinic/_testmultiphase.c.h 43;" d +_TESTMULTIPHASE_STATEACCESSTYPE_GET_COUNT_METHODDEF Modules/clinic/_testmultiphase.c.h 149;" d +_TESTMULTIPHASE_STATEACCESSTYPE_GET_DEFINING_MODULE_METHODDEF Modules/clinic/_testmultiphase.c.h 20;" d +_TESTMULTIPHASE_STATEACCESSTYPE_INCREMENT_COUNT_CLINIC_METHODDEF Modules/clinic/_testmultiphase.c.h 70;" d +_TEST_CODECS Lib/test/test_codecs.py /^_TEST_CODECS = {}$/;" v +_TEST_LIFECYCLE_HOOKS Lib/test/libregrtest/runtest.py /^_TEST_LIFECYCLE_HOOKS = frozenset(($/;" v +_TEST_PATH Lib/zoneinfo/_tzpath.py /^_TEST_PATH = os.path.normpath(os.path.join("_", "_"))[:-1]$/;" v +_TEXT Modules/_decimal/libmpdec/vcdiv64.asm /^_TEXT SEGMENT$/;" l +_TIME_RE_STR Lib/tomllib/_re.py /^_TIME_RE_STR = r"([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])(?:\\.([0-9]{1,6})[0-9]*)?"$/;" v +_TKINTER_CREATE_METHODDEF Modules/clinic/_tkinter.c.h 669;" d +_TKINTER_GETBUSYWAITINTERVAL_METHODDEF Modules/clinic/_tkinter.c.h 839;" d +_TKINTER_SETBUSYWAITINTERVAL_METHODDEF Modules/clinic/_tkinter.c.h 811;" d +_TKINTER_TKAPP_ADDERRORINFO_METHODDEF Modules/clinic/_tkinter.c.h 124;" d +_TKINTER_TKAPP_CREATECOMMAND_METHODDEF Modules/clinic/_tkinter.c.h 336;" d +_TKINTER_TKAPP_CREATEFILEHANDLER_METHODDEF Modules/clinic/_tkinter.c.h 416;" d +_TKINTER_TKAPP_CREATEFILEHANDLER_METHODDEF Modules/clinic/_tkinter.c.h 862;" d +_TKINTER_TKAPP_CREATETIMERHANDLER_METHODDEF Modules/clinic/_tkinter.c.h 482;" d +_TKINTER_TKAPP_DELETECOMMAND_METHODDEF Modules/clinic/_tkinter.c.h 378;" d +_TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF Modules/clinic/_tkinter.c.h 455;" d +_TKINTER_TKAPP_DELETEFILEHANDLER_METHODDEF Modules/clinic/_tkinter.c.h 866;" d +_TKINTER_TKAPP_DOONEEVENT_METHODDEF Modules/clinic/_tkinter.c.h 549;" d +_TKINTER_TKAPP_EVALFILE_METHODDEF Modules/clinic/_tkinter.c.h 52;" d +_TKINTER_TKAPP_EVAL_METHODDEF Modules/clinic/_tkinter.c.h 16;" d +_TKINTER_TKAPP_EXPRBOOLEAN_METHODDEF Modules/clinic/_tkinter.c.h 292;" d +_TKINTER_TKAPP_EXPRDOUBLE_METHODDEF Modules/clinic/_tkinter.c.h 256;" d +_TKINTER_TKAPP_EXPRLONG_METHODDEF Modules/clinic/_tkinter.c.h 220;" d +_TKINTER_TKAPP_EXPRSTRING_METHODDEF Modules/clinic/_tkinter.c.h 184;" d +_TKINTER_TKAPP_GETBOOLEAN_METHODDEF Modules/clinic/_tkinter.c.h 176;" d +_TKINTER_TKAPP_GETDOUBLE_METHODDEF Modules/clinic/_tkinter.c.h 168;" d +_TKINTER_TKAPP_GETINT_METHODDEF Modules/clinic/_tkinter.c.h 160;" d +_TKINTER_TKAPP_INTERPADDR_METHODDEF Modules/clinic/_tkinter.c.h 600;" d +_TKINTER_TKAPP_LOADTK_METHODDEF Modules/clinic/_tkinter.c.h 617;" d +_TKINTER_TKAPP_MAINLOOP_METHODDEF Modules/clinic/_tkinter.c.h 515;" d +_TKINTER_TKAPP_QUIT_METHODDEF Modules/clinic/_tkinter.c.h 583;" d +_TKINTER_TKAPP_RECORD_METHODDEF Modules/clinic/_tkinter.c.h 88;" d +_TKINTER_TKAPP_SPLITLIST_METHODDEF Modules/clinic/_tkinter.c.h 328;" d +_TKINTER_TKAPP_WILLDISPATCH_METHODDEF Modules/clinic/_tkinter.c.h 634;" d +_TKINTER_TKTIMERTOKEN_DELETETIMERHANDLER_METHODDEF Modules/clinic/_tkinter.c.h 465;" d +_TKINTER__FLATTEN_METHODDEF Modules/clinic/_tkinter.c.h 651;" d +_TLSAlertType Lib/ssl.py /^class _TLSAlertType:$/;" c +_TLSContentType Lib/ssl.py /^class _TLSContentType:$/;" c +_TLSMessageType Lib/ssl.py /^class _TLSMessageType:$/;" c +_TPFLAGS_HAVE_GC Lib/test/support/__init__.py /^_TPFLAGS_HAVE_GC = 1<<14$/;" v +_TPFLAGS_HEAPTYPE Lib/test/support/__init__.py /^_TPFLAGS_HEAPTYPE = 1<<9$/;" v +_TRACEBACK_SOURCE_LINE_INDENT Python/traceback.c 734;" d file: +_TRACEMALLOC_CLEAR_TRACES_METHODDEF Modules/clinic/_tracemalloc.c.h 35;" d +_TRACEMALLOC_GET_TRACEBACK_LIMIT_METHODDEF Modules/clinic/_tracemalloc.c.h 150;" d +_TRACEMALLOC_GET_TRACED_MEMORY_METHODDEF Modules/clinic/_tracemalloc.c.h 190;" d +_TRACEMALLOC_GET_TRACEMALLOC_MEMORY_METHODDEF Modules/clinic/_tracemalloc.c.h 170;" d +_TRACEMALLOC_IS_TRACING_METHODDEF Modules/clinic/_tracemalloc.c.h 17;" d +_TRACEMALLOC_RESET_PEAK_METHODDEF Modules/clinic/_tracemalloc.c.h 210;" d +_TRACEMALLOC_START_METHODDEF Modules/clinic/_tracemalloc.c.h 92;" d +_TRACEMALLOC_STOP_METHODDEF Modules/clinic/_tracemalloc.c.h 129;" d +_TRACEMALLOC__GET_OBJECT_TRACEBACK_METHODDEF Modules/clinic/_tracemalloc.c.h 80;" d +_TRACEMALLOC__GET_TRACES_METHODDEF Modules/clinic/_tracemalloc.c.h 58;" d +_TRYMAP_DEC Modules/cjkcodecs/cjkcodecs.h 218;" d +_TRYMAP_ENC Modules/cjkcodecs/cjkcodecs.h 208;" d +_TYPE_MAPPING Lib/lib2to3/fixes/fix_types.py /^_TYPE_MAPPING = {$/;" v +_TYPING_INTERNALS Lib/typing.py /^_TYPING_INTERNALS = frozenset({$/;" v +_TYPING__IDFUNC_METHODDEF Modules/clinic/_typingmodule.c.h 16;" d +_TZInfo Lib/test/datetimetester.py /^class _TZInfo(tzinfo):$/;" c +_TZStr Lib/zoneinfo/_zoneinfo.py /^class _TZStr:$/;" c +_TZifHeader Lib/zoneinfo/_common.py /^class _TZifHeader:$/;" c +_Tellable Lib/zipfile/__init__.py /^class _Tellable:$/;" c +_TelnetSelector Lib/telnetlib.py /^ _TelnetSelector = selectors.PollSelector$/;" v +_TelnetSelector Lib/telnetlib.py /^ _TelnetSelector = selectors.SelectSelector$/;" v +_TempModule Lib/runpy.py /^class _TempModule(object):$/;" c +_TemporaryFileCloser Lib/tempfile.py /^class _TemporaryFileCloser:$/;" c +_TemporaryFileWrapper Lib/tempfile.py /^class _TemporaryFileWrapper:$/;" c +_TerminatingSelector Lib/pathlib.py /^class _TerminatingSelector:$/;" c +_Test4dYear Lib/test/test_time.py /^class _Test4dYear:$/;" c +_TestArray Lib/test/_test_multiprocessing.py /^class _TestArray(BaseTestCase):$/;" c +_TestAsctimeYear Lib/test/test_time.py /^class _TestAsctimeYear:$/;" c +_TestBarrier Lib/test/_test_multiprocessing.py /^class _TestBarrier(BaseTestCase):$/;" c +_TestClass Lib/doctest.py /^class _TestClass:$/;" c +_TestCondition Lib/test/_test_multiprocessing.py /^class _TestCondition(BaseTestCase):$/;" c +_TestConnection Lib/test/_test_multiprocessing.py /^class _TestConnection(BaseTestCase):$/;" c +_TestContainers Lib/test/_test_multiprocessing.py /^class _TestContainers(BaseTestCase):$/;" c +_TestContentManager Lib/test/test_email/test_message.py /^ class _TestContentManager:$/;" c class:TestEmailMessageBase +_TestEvent Lib/test/_test_multiprocessing.py /^class _TestEvent(BaseTestCase):$/;" c +_TestExecuteChildPopen Lib/test/test_subprocess.py /^ class _TestExecuteChildPopen(subprocess.Popen):$/;" c class:POSIXProcessTestCase +_TestFinalize Lib/test/_test_multiprocessing.py /^class _TestFinalize(BaseTestCase):$/;" c +_TestHeap Lib/test/_test_multiprocessing.py /^class _TestHeap(BaseTestCase):$/;" c +_TestImportStar Lib/test/_test_multiprocessing.py /^class _TestImportStar(unittest.TestCase):$/;" c +_TestListener Lib/test/_test_multiprocessing.py /^class _TestListener(BaseTestCase):$/;" c +_TestListenerClient Lib/test/_test_multiprocessing.py /^class _TestListenerClient(BaseTestCase):$/;" c +_TestLock Lib/test/_test_multiprocessing.py /^class _TestLock(BaseTestCase):$/;" c +_TestLogging Lib/test/_test_multiprocessing.py /^class _TestLogging(BaseTestCase):$/;" c +_TestManagerRestart Lib/test/_test_multiprocessing.py /^class _TestManagerRestart(BaseTestCase):$/;" c +_TestMboxMMDF Lib/test/test_mailbox.py /^class _TestMboxMMDF(_TestSingleFile):$/;" c +_TestMboxMMDFMessage Lib/test/test_mailbox.py /^class _TestMboxMMDFMessage:$/;" c +_TestMyManager Lib/test/_test_multiprocessing.py /^class _TestMyManager(BaseTestCase):$/;" c +_TestPicklingConnections Lib/test/_test_multiprocessing.py /^class _TestPicklingConnections(BaseTestCase):$/;" c +_TestPoll Lib/test/_test_multiprocessing.py /^class _TestPoll(BaseTestCase):$/;" c +_TestPollEintr Lib/test/_test_multiprocessing.py /^class _TestPollEintr(BaseTestCase):$/;" c +_TestPool Lib/test/_test_multiprocessing.py /^class _TestPool(BaseTestCase):$/;" c +_TestPoolWorkerErrors Lib/test/_test_multiprocessing.py /^class _TestPoolWorkerErrors(BaseTestCase):$/;" c +_TestPoolWorkerLifetime Lib/test/_test_multiprocessing.py /^class _TestPoolWorkerLifetime(BaseTestCase):$/;" c +_TestProcess Lib/test/_test_multiprocessing.py /^class _TestProcess(BaseTestCase):$/;" c +_TestQueue Lib/test/_test_multiprocessing.py /^class _TestQueue(BaseTestCase):$/;" c +_TestRemoteManager Lib/test/_test_multiprocessing.py /^class _TestRemoteManager(BaseTestCase):$/;" c +_TestSemaphore Lib/test/_test_multiprocessing.py /^class _TestSemaphore(BaseTestCase):$/;" c +_TestSetContentManager Lib/test/test_email/test_message.py /^ class _TestSetContentManager:$/;" c class:TestEmailMessageBase +_TestSetRaisingContentManager Lib/test/test_email/test_message.py /^ class _TestSetRaisingContentManager:$/;" c class:TestEmailMessageBase +_TestSharedCTypes Lib/test/_test_multiprocessing.py /^class _TestSharedCTypes(BaseTestCase):$/;" c +_TestSharedMemory Lib/test/_test_multiprocessing.py /^class _TestSharedMemory(BaseTestCase):$/;" c +_TestSingleFile Lib/test/test_mailbox.py /^class _TestSingleFile(TestMailbox):$/;" c +_TestStrftimeYear Lib/test/test_time.py /^class _TestStrftimeYear:$/;" c +_TestSubclassingProcess Lib/test/_test_multiprocessing.py /^class _TestSubclassingProcess(BaseTestCase):$/;" c +_TestValue Lib/test/_test_multiprocessing.py /^class _TestValue(BaseTestCase):$/;" c +_TextAccumulator Tools/clinic/clinic.py /^class _TextAccumulator(NamedTuple):$/;" c +_ThreadWakeup Lib/concurrent/futures/process.py /^class _ThreadWakeup:$/;" c +_Threads Lib/socketserver.py /^class _Threads(list):$/;" c +_TimeRE_cache Lib/_strptime.py /^_TimeRE_cache = TimeRE()$/;" v +_Traceback Lib/inspect.py /^_Traceback = namedtuple('_Traceback', 'filename lineno function code_context index')$/;" v +_Traces Lib/tracemalloc.py /^class _Traces(Sequence):$/;" c +_Translator Lib/http/cookies.py /^_Translator = {n: '\\\\%03o' % n$/;" v +_TriggerThread Lib/test/test_queue.py /^class _TriggerThread(threading.Thread):$/;" c +_TupleType Lib/typing.py /^class _TupleType(_SpecialGenericAlias, _root=True):$/;" c +_TurtleImage Lib/turtle.py /^class _TurtleImage(object):$/;" c +_Two Lib/test/test_unittest/testmock/testmock.py /^ class _Two(object):$/;" c function:MockTest.test_mock_add_spec +_TypedDict Lib/typing.py /^_TypedDict = type.__new__(_TypedDictMeta, 'TypedDict', (), {})$/;" v +_TypedDictMeta Lib/typing.py /^class _TypedDictMeta(type):$/;" c +_TypingEllipsis Lib/typing.py /^class _TypingEllipsis:$/;" c +_UNITCODES Lib/re/_parser.py /^_UNITCODES = frozenset({ANY, RANGE, IN, LITERAL, NOT_LITERAL, CATEGORY})$/;" v +_UNITERABLE_TYPES Lib/test/test_genericalias.py /^ _UNITERABLE_TYPES = (list, tuple)$/;" v class:TypeIterationTests +_UNITERABLE_TYPES Lib/test/test_typing.py /^ _UNITERABLE_TYPES = ($/;" v class:TypeIterationTests +_UNIT_CODES Lib/re/_compiler.py /^_UNIT_CODES = _LITERAL_CODES | {ANY, IN}$/;" v +_UNIVERSAL_CONFIG_VARS Lib/_osx_support.py /^_UNIVERSAL_CONFIG_VARS = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS', 'BASECFLAGS',$/;" v +_UNKNOWN Lib/http/client.py /^_UNKNOWN = 'UNKNOWN'$/;" v +_UNPACKED_TUPLES Lib/test/test_genericalias.py /^_UNPACKED_TUPLES = [$/;" v +_UNPACK_FORMATS Lib/shutil.py /^_UNPACK_FORMATS = {$/;" v +_UNRECOGNIZED_ARGS_ATTR Lib/argparse.py /^_UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'$/;" v +_UNSAFE_URL_BYTES_TO_REMOVE Lib/urllib/parse.py /^_UNSAFE_URL_BYTES_TO_REMOVE = ['\\t', '\\r', '\\n']$/;" v +_UNSET Lib/configparser.py /^_UNSET = object()$/;" v +_UNSPECIFIED Lib/test/support/bytecode_helper.py /^_UNSPECIFIED = object()$/;" v +_USER_BASE Lib/sysconfig.py /^_USER_BASE = None$/;" v +_USE_CP_SENDFILE Lib/shutil.py /^_USE_CP_SENDFILE = hasattr(os, "sendfile") and sys.platform.startswith("linux")$/;" v +_USE_POSIX Lib/multiprocessing/shared_memory.py /^ _USE_POSIX = False$/;" v +_USE_POSIX Lib/multiprocessing/shared_memory.py /^ _USE_POSIX = True$/;" v +_USE_POSIX_SPAWN Lib/subprocess.py /^_USE_POSIX_SPAWN = _use_posix_spawn()$/;" v +_USE_PTHREADS Include/internal/pycore_pythread.h 37;" d +_USE_VFORK Lib/subprocess.py /^_USE_VFORK = True$/;" v +_UTC_bytes Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _UTC_bytes(self):$/;" m class:TestModule +_Uint32Window Modules/zlibmodule.c /^} _Uint32Window;$/;" t typeref:struct:__anon304 file: +_UnescapedChars Lib/http/cookies.py /^_UnescapedChars = _LegalChars + ' ()\/<=>?@[]{}'$/;" v +_UnexpectedSuccess Lib/unittest/case.py /^class _UnexpectedSuccess(Exception):$/;" c +_Unframer Lib/pickle.py /^class _Unframer:$/;" c +_UnionGenericAlias Lib/typing.py /^class _UnionGenericAlias(_NotIterable, _GenericAlias, _root=True):$/;" c +_UnixDefaultEventLoopPolicy Lib/asyncio/unix_events.py /^class _UnixDefaultEventLoopPolicy(events.BaseDefaultEventLoopPolicy):$/;" c +_UnixReadPipeTransport Lib/asyncio/unix_events.py /^class _UnixReadPipeTransport(transports.ReadTransport):$/;" c +_UnixSelectorEventLoop Lib/asyncio/unix_events.py /^class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):$/;" c +_UnixSubprocessTransport Lib/asyncio/unix_events.py /^class _UnixSubprocessTransport(base_subprocess.BaseSubprocessTransport):$/;" c +_UnixWritePipeTransport Lib/asyncio/unix_events.py /^ transports.WriteTransport):$/;" c +_Unknown Lib/dis.py /^class _Unknown:$/;" c +_UnpackGenericAlias Lib/typing.py /^class _UnpackGenericAlias(_GenericAlias, _root=True):$/;" c +_Unparser Lib/ast.py /^class _Unparser(NodeVisitor):$/;" c +_Unpickler Lib/pickle.py /^class _Unpickler:$/;" c +_Unpickler_CopyLine Modules/_pickle.c /^_Unpickler_CopyLine(UnpicklerObject *self, char *line, Py_ssize_t len,$/;" f file: +_Unpickler_MemoCleanup Modules/_pickle.c /^_Unpickler_MemoCleanup(UnpicklerObject *self)$/;" f file: +_Unpickler_MemoGet Modules/_pickle.c /^_Unpickler_MemoGet(UnpicklerObject *self, size_t idx)$/;" f file: +_Unpickler_MemoPut Modules/_pickle.c /^_Unpickler_MemoPut(UnpicklerObject *self, size_t idx, PyObject *value)$/;" f file: +_Unpickler_New Modules/_pickle.c /^_Unpickler_New(PyObject *module)$/;" f file: +_Unpickler_NewMemo Modules/_pickle.c /^_Unpickler_NewMemo(Py_ssize_t new_size)$/;" f file: +_Unpickler_Read Modules/_pickle.c 1498;" d file: +_Unpickler_ReadFromFile Modules/_pickle.c /^_Unpickler_ReadFromFile(UnpicklerObject *self, Py_ssize_t n)$/;" f file: +_Unpickler_ReadImpl Modules/_pickle.c /^_Unpickler_ReadImpl(UnpicklerObject *self, PickleState *st, char **s, Py_ssize_t n)$/;" f file: +_Unpickler_ReadInto Modules/_pickle.c /^_Unpickler_ReadInto(PickleState *state, UnpicklerObject *self, char *buf,$/;" f file: +_Unpickler_Readline Modules/_pickle.c /^_Unpickler_Readline(PickleState *state, UnpicklerObject *self, char **result)$/;" f file: +_Unpickler_ResizeMemoList Modules/_pickle.c /^_Unpickler_ResizeMemoList(UnpicklerObject *self, size_t new_size)$/;" f file: +_Unpickler_SetBuffers Modules/_pickle.c /^_Unpickler_SetBuffers(UnpicklerObject *self, PyObject *buffers)$/;" f file: +_Unpickler_SetInputEncoding Modules/_pickle.c /^_Unpickler_SetInputEncoding(UnpicklerObject *self,$/;" f file: +_Unpickler_SetInputStream Modules/_pickle.c /^_Unpickler_SetInputStream(UnpicklerObject *self, PyObject *file)$/;" f file: +_Unpickler_SetStringInput Modules/_pickle.c /^_Unpickler_SetStringInput(UnpicklerObject *self, PyObject *input)$/;" f file: +_Unpickler_SkipConsumed Modules/_pickle.c /^_Unpickler_SkipConsumed(UnpicklerObject *self)$/;" f file: +_Unspecified Lib/msilib/__init__.py /^class _Unspecified:pass$/;" c +_Untagged_status Lib/imaplib.py /^_Untagged_status = br'\\* (?P\\d+) (?P[A-Z-]+)( (?P.*))?'$/;" v +_UpperCaser Lib/test/_test_multiprocessing.py /^class _UpperCaser(multiprocessing.Process):$/;" c +_Utils Lib/profile.py /^class _Utils:$/;" c +_UuidCreate Lib/uuid.py /^ _UuidCreate = None$/;" v +_VALIDATE_ATTR_VALUE Modules/_elementtree.c 2041;" d file: +_VAR_KEYWORD Lib/inspect.py /^_VAR_KEYWORD = _ParameterKind.VAR_KEYWORD$/;" v +_VAR_POSITIONAL Lib/inspect.py /^_VAR_POSITIONAL = _ParameterKind.VAR_POSITIONAL$/;" v +_Validation Lib/msilib/schema.py /^_Validation = Table('_Validation')$/;" v +_Validation_records Lib/msilib/schema.py /^_Validation_records = [$/;" v +_ValueFormatter Lib/email/header.py /^class _ValueFormatter:$/;" c +_VersionAction Lib/argparse.py /^class _VersionAction(Action):$/;" c +_VersionInfoType Lib/tkinter/__init__.py /^ ('major', 'minor', 'micro', 'releaselevel', 'serial'))):$/;" c +_W64 PC/pyconfig.h 189;" d +_WARNING_DETAILS Lib/warnings.py /^ _WARNING_DETAILS = ("message", "category", "filename", "lineno", "file",$/;" v class:WarningMessage +_WCHAR_T Include/py_curses.h 11;" d +_WEAKREF_GETWEAKREFCOUNT_METHODDEF Modules/clinic/_weakref.c.h 17;" d +_WEAKREF_GETWEAKREFS_METHODDEF Modules/clinic/_weakref.c.h 80;" d +_WEAKREF_PROXY_METHODDEF Modules/clinic/_weakref.c.h 92;" d +_WEAKREF__REMOVE_DEAD_WEAKREF_METHODDEF Modules/clinic/_weakref.c.h 45;" d +_WELCOME Lib/multiprocessing/connection.py /^_WELCOME = b'#WELCOME#'$/;" v +_WHATWG_C0_CONTROL_OR_SPACE Lib/urllib/parse.py /^_WHATWG_C0_CONTROL_OR_SPACE = '\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\t\\n\\x0b\\x0c\\r\\x0e\\x0f\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f '$/;" v +_WHEEL_PKG_DIR Lib/ensurepip/__init__.py /^_WHEEL_PKG_DIR = sysconfig.get_config_var('WHEEL_PKG_DIR')$/;" v +_WIFSTOPPED Lib/subprocess.py /^ _WIFSTOPPED = None$/;" v +_WIFSTOPPED Lib/subprocess.py /^ _WIFSTOPPED = os.WIFSTOPPED$/;" v +_WIN32_CLIENT_RELEASES Lib/platform.py /^_WIN32_CLIENT_RELEASES = [$/;" v +_WIN32_DCOM PC/_wmimodule.cpp 11;" d file: +_WIN32_SERVER_RELEASES Lib/platform.py /^_WIN32_SERVER_RELEASES = [$/;" v +_WIN32_WINNT PC/pyconfig.h 183;" d +_WIN32_WINNT PC/pyshellext.cpp 2;" d file: +_WINAPI_CLOSEHANDLE_METHODDEF Modules/clinic/_winapi.c.h 78;" d +_WINAPI_CONNECTNAMEDPIPE_METHODDEF Modules/clinic/_winapi.c.h 104;" d +_WINAPI_COPYFILE2_METHODDEF Modules/clinic/_winapi.c.h 1426;" d +_WINAPI_CREATEFILEMAPPING_METHODDEF Modules/clinic/_winapi.c.h 206;" d +_WINAPI_CREATEFILE_METHODDEF Modules/clinic/_winapi.c.h 160;" d +_WINAPI_CREATEJUNCTION_METHODDEF Modules/clinic/_winapi.c.h 252;" d +_WINAPI_CREATENAMEDPIPE_METHODDEF Modules/clinic/_winapi.c.h 303;" d +_WINAPI_CREATEPIPE_METHODDEF Modules/clinic/_winapi.c.h 355;" d +_WINAPI_CREATEPROCESS_METHODDEF Modules/clinic/_winapi.c.h 396;" d +_WINAPI_DUPLICATEHANDLE_METHODDEF Modules/clinic/_winapi.c.h 449;" d +_WINAPI_EXITPROCESS_METHODDEF Modules/clinic/_winapi.c.h 493;" d +_WINAPI_GETACP_METHODDEF Modules/clinic/_winapi.c.h 1245;" d +_WINAPI_GETCURRENTPROCESS_METHODDEF Modules/clinic/_winapi.c.h 520;" d +_WINAPI_GETEXITCODEPROCESS_METHODDEF Modules/clinic/_winapi.c.h 551;" d +_WINAPI_GETFILETYPE_METHODDEF Modules/clinic/_winapi.c.h 1262;" d +_WINAPI_GETLASTERROR_METHODDEF Modules/clinic/_winapi.c.h 582;" d +_WINAPI_GETMODULEFILENAME_METHODDEF Modules/clinic/_winapi.c.h 617;" d +_WINAPI_GETSTDHANDLE_METHODDEF Modules/clinic/_winapi.c.h 649;" d +_WINAPI_GETVERSION_METHODDEF Modules/clinic/_winapi.c.h 684;" d +_WINAPI_LCMAPSTRINGEX_METHODDEF Modules/clinic/_winapi.c.h 883;" d +_WINAPI_MAPVIEWOFFILE_METHODDEF Modules/clinic/_winapi.c.h 712;" d +_WINAPI_NEEDCURRENTDIRECTORYFOREXEPATH_METHODDEF Modules/clinic/_winapi.c.h 1378;" d +_WINAPI_OPENFILEMAPPING_METHODDEF Modules/clinic/_winapi.c.h 776;" d +_WINAPI_OPENPROCESS_METHODDEF Modules/clinic/_winapi.c.h 817;" d +_WINAPI_OVERLAPPED_CANCEL_METHODDEF Modules/clinic/_winapi.c.h 60;" d +_WINAPI_OVERLAPPED_GETBUFFER_METHODDEF Modules/clinic/_winapi.c.h 43;" d +_WINAPI_OVERLAPPED_GETOVERLAPPEDRESULT_METHODDEF Modules/clinic/_winapi.c.h 16;" d +_WINAPI_PEEKNAMEDPIPE_METHODDEF Modules/clinic/_winapi.c.h 855;" d +_WINAPI_READFILE_METHODDEF Modules/clinic/_winapi.c.h 941;" d +_WINAPI_SETNAMEDPIPEHANDLESTATE_METHODDEF Modules/clinic/_winapi.c.h 997;" d +_WINAPI_TERMINATEPROCESS_METHODDEF Modules/clinic/_winapi.c.h 1031;" d +_WINAPI_UNMAPVIEWOFFILE_METHODDEF Modules/clinic/_winapi.c.h 750;" d +_WINAPI_VIRTUALQUERYSIZE_METHODDEF Modules/clinic/_winapi.c.h 1060;" d +_WINAPI_WAITFORMULTIPLEOBJECTS_METHODDEF Modules/clinic/_winapi.c.h 1120;" d +_WINAPI_WAITFORSINGLEOBJECT_METHODDEF Modules/clinic/_winapi.c.h 1155;" d +_WINAPI_WAITNAMEDPIPE_METHODDEF Modules/clinic/_winapi.c.h 1091;" d +_WINAPI_WRITEFILE_METHODDEF Modules/clinic/_winapi.c.h 1189;" d +_WINAPI__MIMETYPES_READ_WINDOWS_REGISTRY_METHODDEF Modules/clinic/_winapi.c.h 1323;" d +_WINERROR_CANT_RESOLVE_FILENAME Lib/pathlib.py /^_WINERROR_CANT_RESOLVE_FILENAME = 1921 # broken symlink pointing to itself$/;" v +_WINERROR_INVALID_NAME Lib/pathlib.py /^_WINERROR_INVALID_NAME = 123 # fix for bpo-35306$/;" v +_WINERROR_NOT_READY Lib/pathlib.py /^_WINERROR_NOT_READY = 21 # drive exists but is not accessible$/;" v +_WIN_DEFAULT_PATHEXT Lib/shutil.py /^_WIN_DEFAULT_PATHEXT = ".COM;.EXE;.BAT;.CMD;.VBS;.JS;.WS;.MSC"$/;" v +_WIN_RESERVED_NAMES Lib/pathlib.py /^_WIN_RESERVED_NAMES = frozenset($/;" v +_WMI_EXEC_QUERY_METHODDEF PC/_wmimodule.cpp 27;" d file: +_WMI_EXEC_QUERY_METHODDEF PC/clinic/_wmimodule.cpp.h 20;" d +_WNOHANG Lib/subprocess.py /^ _WNOHANG = None$/;" v +_WNOHANG Lib/subprocess.py /^ _WNOHANG = os.WNOHANG$/;" v +_WRITE_BUFFER_SIZE Lib/gzip.py /^_WRITE_BUFFER_SIZE = 4 * io.DEFAULT_BUFFER_SIZE$/;" v +_WSTOPSIG Lib/subprocess.py /^ _WSTOPSIG = None$/;" v +_WSTOPSIG Lib/subprocess.py /^ _WSTOPSIG = os.WSTOPSIG$/;" v +_WaitCancelFuture Lib/asyncio/windows_events.py /^class _WaitCancelFuture(_BaseWaitHandleFuture):$/;" c +_WaitHandleFuture Lib/asyncio/windows_events.py /^class _WaitHandleFuture(_BaseWaitHandleFuture):$/;" c +_Waiter Lib/concurrent/futures/_base.py /^class _Waiter(object):$/;" c +_WarningsTests Lib/test/test_warnings/__init__.py /^class _WarningsTests(BaseTest, unittest.TestCase):$/;" c +_WeakValueDictionary Lib/importlib/_bootstrap.py /^class _WeakValueDictionary:$/;" c +_Widget Lib/idlelib/idle_test/test_tree.py /^ class _Widget:$/;" c function:TestScrollEvent.test_wheel_event +_WildcardSelector Lib/pathlib.py /^class _WildcardSelector(_Selector):$/;" c +_WindowsSelectorEventLoop Lib/asyncio/windows_events.py /^class _WindowsSelectorEventLoop(selector_events.BaseSelectorEventLoop):$/;" c +_WindowsSubprocessTransport Lib/asyncio/windows_events.py /^class _WindowsSubprocessTransport(base_subprocess.BaseSubprocessTransport):$/;" c +_WithLeadingUnderscoreAndPrivate Lib/test/test_copyreg.py /^class _WithLeadingUnderscoreAndPrivate(object):$/;" c +_WorkItem Lib/concurrent/futures/process.py /^class _WorkItem(object):$/;" c +_WorkItem Lib/concurrent/futures/thread.py /^class _WorkItem:$/;" c +_WorkRep Lib/_pydecimal.py /^class _WorkRep(object):$/;" c +_WriteBufferStream Lib/gzip.py /^class _WriteBufferStream(io.RawIOBase):$/;" c +_WritelnDecorator Lib/unittest/runner.py /^class _WritelnDecorator(object):$/;" c +_XOPEN_SOURCE Modules/socketmodule.c 220;" d file: +_ZLIB_SUPPORTED Lib/shutil.py /^ _ZLIB_SUPPORTED = False$/;" v +_ZLIB_SUPPORTED Lib/shutil.py /^ _ZLIB_SUPPORTED = True$/;" v +_ZONEDUMP_DATA Lib/test/test_zoneinfo/test_zoneinfo.py /^ _ZONEDUMP_DATA = None$/;" v class:ZoneDumpData +_Zero Lib/_pydecimal.py /^_Zero = Decimal(0)$/;" v +_ZeroCopyFileTest Lib/test/test_shutil.py /^class _ZeroCopyFileTest(object):$/;" c +_ZipDecrypter Lib/zipfile/__init__.py /^def _ZipDecrypter(pwd):$/;" f +_ZipWriteFile Lib/zipfile/__init__.py /^class _ZipWriteFile(io.BufferedIOBase):$/;" c +__APPLE_USE_RFC_3542 Modules/socketmodule.c 94;" d file: +__BLAKE2B_LOAD_SSE2_H__ Modules/_blake2/impl/blake2b-load-sse2.h 15;" d +__BLAKE2B_LOAD_SSE41_H__ Modules/_blake2/impl/blake2b-load-sse41.h 15;" d +__BLAKE2B_ROUND_H__ Modules/_blake2/impl/blake2b-round.h 15;" d +__BLAKE2S_LOAD_SSE2_H__ Modules/_blake2/impl/blake2s-load-sse2.h 15;" d +__BLAKE2S_LOAD_SSE41_H__ Modules/_blake2/impl/blake2s-load-sse41.h 15;" d +__BLAKE2S_LOAD_XOP_H__ Modules/_blake2/impl/blake2s-load-xop.h 15;" d +__BLAKE2S_ROUND_H__ Modules/_blake2/impl/blake2s-round.h 15;" d +__BLAKE2_CONFIG_H__ Modules/_blake2/impl/blake2-config.h 15;" d +__BLAKE2_H__ Modules/_blake2/impl/blake2.h 15;" d +__BLAKE2_IMPL_H__ Modules/_blake2/impl/blake2-impl.h 15;" d +__DYNAMIC_ANNOTATIONS_H__ Include/dynamic_annotations.h 57;" d +__FStar_UInt128_Verified_H Modules/_hacl/include/krml/FStar_UInt128_Verified.h 8;" d +__FStar_UInt128_Verified_H_DEFINED Modules/_hacl/include/krml/FStar_UInt128_Verified.h 345;" d +__FStar_UInt_8_16_32_64_H Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h 8;" d +__FStar_UInt_8_16_32_64_H_DEFINED Modules/_hacl/include/krml/FStar_UInt_8_16_32_64.h 106;" d +__GetRawExtensionKeys Lib/idlelib/config.py /^ def __GetRawExtensionKeys(self,extensionName):$/;" m class:IdleConf file: +__Hacl_Hash_MD5_H Modules/_hacl/Hacl_Hash_MD5.h 27;" d +__Hacl_Hash_MD5_H_DEFINED Modules/_hacl/Hacl_Hash_MD5.h 64;" d +__Hacl_Hash_SHA1_H Modules/_hacl/Hacl_Hash_SHA1.h 27;" d +__Hacl_Hash_SHA1_H_DEFINED Modules/_hacl/Hacl_Hash_SHA1.h 64;" d +__Hacl_Hash_SHA2_H Modules/_hacl/Hacl_Hash_SHA2.h 27;" d +__Hacl_Hash_SHA2_H_DEFINED Modules/_hacl/Hacl_Hash_SHA2.h 203;" d +__Hacl_Hash_SHA3_H Modules/_hacl/Hacl_Hash_SHA3.h 27;" d +__Hacl_Hash_SHA3_H_DEFINED Modules/_hacl/Hacl_Hash_SHA3.h 129;" d +__Hacl_Streaming_Types_H Modules/_hacl/Hacl_Streaming_Types.h 27;" d +__Hacl_Streaming_Types_H_DEFINED Modules/_hacl/Hacl_Streaming_Types.h 82;" d +__KRML_TARGET_H Modules/_hacl/include/krml/internal/target.h 5;" d +__LINECACHE_FILENAME_RE Lib/doctest.py /^ __LINECACHE_FILENAME_RE = re.compile(r' T:$/;" m class:SupportsAbs file: +__adapt__ Lib/test/test_sqlite3/test_types.py /^ def __adapt__(self):$/;" m class:ObjectAdaptationTests.test_custom_proto.CustomProto file: +__adapt__ Lib/test/test_sqlite3/test_types.py /^ def __adapt__(self):$/;" m class:ObjectAdaptationTests.test_defect_proto.DefectProto file: +__add__ Lib/_pydatetime.py /^ def __add__(self, other):$/;" m class:date file: +__add__ Lib/_pydatetime.py /^ def __add__(self, other):$/;" m class:datetime file: +__add__ Lib/_pydatetime.py /^ def __add__(self, other):$/;" m class:timedelta file: +__add__ Lib/_pydecimal.py /^ def __add__(self, other, context=None):$/;" m class:Decimal file: +__add__ Lib/collections/__init__.py /^ def __add__(self, other):$/;" m class:Counter file: +__add__ Lib/collections/__init__.py /^ def __add__(self, other):$/;" m class:UserList file: +__add__ Lib/collections/__init__.py /^ def __add__(self, other):$/;" m class:UserString file: +__add__ Lib/email/_parseaddr.py /^ def __add__(self, other):$/;" m class:AddressList file: +__add__ Lib/email/_policybase.py /^ def __add__(self, other):$/;" m class:_PolicyBase file: +__add__ Lib/ipaddress.py /^ def __add__(self, other):$/;" m class:_BaseAddress file: +__add__ Lib/numbers.py /^ def __add__(self, other):$/;" m class:Complex file: +__add__ Lib/operator.py /^__add__ = add$/;" v +__add__ Lib/statistics.py /^ def __add__(x1, x2):$/;" m class:NormalDist file: +__add__ Lib/test/datetimetester.py /^ def __add__(self, other):$/;" m class:TestTimeDelta.test_issue31752.Prod file: +__add__ Lib/test/test_array.py /^ def __add__(self, other):$/;" m class:Intable file: +__add__ Lib/test/test_augassign.py /^ def __add__(self, val):$/;" m class:AugAssignTest.testCustomMethods1.aug_test file: +__add__ Lib/test/test_augassign.py /^ def __add__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__add__ Lib/test/test_binop.py /^ def __add__(self, other):$/;" m class:Rat file: +__add__ Lib/test/test_descr.py /^ __add__ = str.__add__$/;" v class:.test_wrong_class_slot_wrapper.A +__add__ Lib/test/test_descr.py /^ def __add__(self, other):$/;" m class:.test_basic_inheritance.hexint file: +__add__ Lib/test/test_descr.py /^ def __add__(self, other):$/;" m class:.test_basic_inheritance.octlong file: +__add__ Lib/test/test_descr.py /^ def __add__(self, other):$/;" m class:.test_binary_operator_override.I file: +__add__ Lib/test/test_descr.py /^ def __add__(self, other):$/;" m class:OperatorsTest.test_ints.C file: +__add__ Lib/test/test_enum.py /^ def __add__(self, other):$/;" m class:TestSpecial.test_subclasses_with_direct_pickle_support.NamedInt file: +__add__ Lib/test/test_enum.py /^ def __add__(self, other):$/;" m class:TestSpecial.test_subclasses_with_getnewargs.NamedInt file: +__add__ Lib/test/test_enum.py /^ def __add__(self, other):$/;" m class:TestSpecial.test_subclasses_with_getnewargs_ex.NamedInt file: +__add__ Lib/test/test_enum.py /^ def __add__(self, other):$/;" m class:TestSpecial.test_subclasses_with_reduce.NamedInt file: +__add__ Lib/test/test_enum.py /^ def __add__(self, other):$/;" m class:TestSpecial.test_subclasses_with_reduce_ex.NamedInt file: +__add__ Lib/test/test_enum.py /^ def __add__(self, other):$/;" m class:TestSpecial.test_subclasses_without_direct_pickle_support.NamedInt file: +__add__ Lib/test/test_functools.py /^ def __add__(self, other):$/;" m class:BadTuple file: +__add__ Lib/test/test_math.py /^ def __add__(self, other):$/;" m class:MathTests.test_sumprod_stress.Flt file: +__add__ Lib/test/test_math.py /^ def __add__(self, other):$/;" m class:MathTests.test_sumprod_stress.Int file: +__add__ Lib/test/test_operator.py /^ def __add__(self, other):$/;" m class:Seq1 file: +__add__ Lib/test/test_operator.py /^ def __add__(self, other):$/;" m class:Seq2 file: +__add__ Lib/test/test_statistics.py /^ def __add__(self, other):$/;" m class:UnivariateCommonMixin.test_type_of_data_element.MyFloat file: +__add__ Lib/test/test_statistics.py /^ def __add__(self, other):$/;" m class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat file: +__add__ Lib/test/test_typing.py /^ def __add__(self, other):$/;" m class:XRepr file: +__add__ Lib/test/test_unicode.py /^ def __add__(self, o):$/;" m class:UnicodeTest.test_subclass_add.S file: +__add__ Lib/test/test_zoneinfo/test_zoneinfo.py /^ def __add__(self, other):$/;" m class:CZoneInfoTest.test_fold_mutate.to_subclass.SameAddSubclass file: +__add__ Lib/turtle.py /^ def __add__(self, other):$/;" m class:Vec2D file: +__add__ Lib/xml/dom/minicompat.py /^ def __add__(self, other):$/;" m class:EmptyNodeList file: +__addentry Tools/i18n/pygettext.py /^ def __addentry(self, msg, lineno=None, isdocstring=0):$/;" m class:TokenEater file: +__addr Lib/test/smtpd.py /^ def __addr(self):$/;" m class:SMTPChannel file: +__addr Lib/test/smtpd.py /^ def __addr(self, value):$/;" m class:SMTPChannel file: +__aenter__ Lib/asyncio/events.py /^ async def __aenter__(self):$/;" m class:AbstractServer file: +__aenter__ Lib/asyncio/locks.py /^ async def __aenter__(self):$/;" m class:Barrier file: +__aenter__ Lib/asyncio/locks.py /^ async def __aenter__(self):$/;" m class:_ContextManagerMixin file: +__aenter__ Lib/asyncio/taskgroups.py /^ async def __aenter__(self):$/;" m class:TaskGroup file: +__aenter__ Lib/asyncio/timeouts.py /^ async def __aenter__(self) -> "Timeout":$/;" m class:Timeout file: +__aenter__ Lib/contextlib.py /^ async def __aenter__(self):$/;" m class:AbstractAsyncContextManager file: +__aenter__ Lib/contextlib.py /^ async def __aenter__(self):$/;" m class:AsyncExitStack file: +__aenter__ Lib/contextlib.py /^ async def __aenter__(self):$/;" m class:_AsyncGeneratorContextManager file: +__aenter__ Lib/contextlib.py /^ async def __aenter__(self):$/;" m class:aclosing file: +__aenter__ Lib/contextlib.py /^ async def __aenter__(self):$/;" m class:nullcontext file: +__aenter__ Lib/test/test_contextlib_async.py /^ __aenter__ = None$/;" v class:TestAbstractAsyncContextManager.test_structural_subclassing.NoneAenter +__aenter__ Lib/test/test_contextlib_async.py /^ async def __aenter__(self):$/;" m class:TestAbstractAsyncContextManager.test_structural_subclassing.ManagerFromScratch file: +__aenter__ Lib/test/test_contextlib_async.py /^ async def __aenter__(self):$/;" m class:TestAsyncExitStack.test_async_push.ExitCM file: +__aenter__ Lib/test/test_contextlib_async.py /^ async def __aenter__(self):$/;" m class:TestAsyncExitStack.test_enter_async_context.TestCM file: +__aenter__ Lib/test/test_contextlib_async.py /^ async def __aenter__(self):$/;" m class:TestAsyncExitStack.test_enter_async_context_errors.LacksExit file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroAsyncIOCompatTest.test_asyncio_1.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_for_6.Manager file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_1.Manager file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_10.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_11.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_12.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_13.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_5.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_7.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_8.CM file: +__aenter__ Lib/test/test_coroutines.py /^ async def __aenter__(self):$/;" m class:CoroutineTest.test_with_9.CM file: +__aenter__ Lib/test/test_coroutines.py /^ def __aenter__(self):$/;" m class:CoroutineTest.test_with_2.CM file: +__aenter__ Lib/test/test_coroutines.py /^ def __aenter__(self):$/;" m class:CoroutineTest.test_with_6.CM file: +__aenter__ Lib/test/test_grammar.py /^ async def __aenter__(self):$/;" m class:GrammarTests.test_async_with.manager file: +__aenter__ Lib/test/test_sys_settrace.py /^ async def __aenter__(self):$/;" m class:asynctracecontext file: +__aenter__ Lib/test/test_typing.py /^ async def __aenter__(self) -> int:$/;" m class:ACM file: +__aenter__ Lib/test/test_unittest/test_async_case.py /^ async def __aenter__(self):$/;" m class:LacksExit file: +__aenter__ Lib/test/test_unittest/test_async_case.py /^ async def __aenter__(self):$/;" m class:TestCM file: +__aenter__ Lib/test/test_unittest/testmock/testasync.py /^ async def __aenter__(self, *args, **kwargs): pass$/;" m class:AsyncContextManagerTest.WithAsyncContextManager file: +__aexit__ Lib/asyncio/events.py /^ async def __aexit__(self, *exc):$/;" m class:AbstractServer file: +__aexit__ Lib/asyncio/locks.py /^ async def __aexit__(self, *args):$/;" m class:Barrier file: +__aexit__ Lib/asyncio/locks.py /^ async def __aexit__(self, exc_type, exc, tb):$/;" m class:_ContextManagerMixin file: +__aexit__ Lib/asyncio/taskgroups.py /^ async def __aexit__(self, et, exc, tb):$/;" m class:TaskGroup file: +__aexit__ Lib/asyncio/timeouts.py /^ async def __aexit__($/;" m class:Timeout file: +__aexit__ Lib/contextlib.py /^ async def __aexit__(self, *exc_details):$/;" m class:AsyncExitStack file: +__aexit__ Lib/contextlib.py /^ async def __aexit__(self, *exc_info):$/;" m class:aclosing file: +__aexit__ Lib/contextlib.py /^ async def __aexit__(self, *excinfo):$/;" m class:nullcontext file: +__aexit__ Lib/contextlib.py /^ async def __aexit__(self, exc_type, exc_value, traceback):$/;" m class:AbstractAsyncContextManager file: +__aexit__ Lib/contextlib.py /^ async def __aexit__(self, typ, value, traceback):$/;" m class:_AsyncGeneratorContextManager file: +__aexit__ Lib/test/test_contextlib_async.py /^ __aexit__ = None$/;" v class:TestAbstractAsyncContextManager.test_structural_subclassing.NoneAexit +__aexit__ Lib/test/test_contextlib_async.py /^ async def __aexit__(self, *args):$/;" m class:TestAbstractAsyncContextManager.test_enter.DefaultEnter file: +__aexit__ Lib/test/test_contextlib_async.py /^ async def __aexit__(self, *args):$/;" m class:TestAbstractAsyncContextManager.test_structural_subclassing.DefaultEnter file: +__aexit__ Lib/test/test_contextlib_async.py /^ async def __aexit__(self, *exc_details):$/;" m class:TestAsyncExitStack.test_async_push.ExitCM file: +__aexit__ Lib/test/test_contextlib_async.py /^ async def __aexit__(self, *exc_details):$/;" m class:TestAsyncExitStack.test_enter_async_context.TestCM file: +__aexit__ Lib/test/test_contextlib_async.py /^ async def __aexit__(self, *exc_info):$/;" m class:TestAsyncExitStack.test_enter_async_context_errors.LacksEnter file: +__aexit__ Lib/test/test_contextlib_async.py /^ async def __aexit__(self, exc_type, exc_value, traceback):$/;" m class:TestAbstractAsyncContextManager.test_structural_subclassing.ManagerFromScratch file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *args):$/;" m class:CoroutineTest.test_for_6.Manager file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *args):$/;" m class:CoroutineTest.test_with_1.Manager file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_10.CM file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_11.CM file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_12.CM file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_13.CM file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_9.CM file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, *exc):$/;" m class:CoroutineTest.test_with_5.CM file: +__aexit__ Lib/test/test_coroutines.py /^ async def __aexit__(self, exc_type, exc_val, exc_tb):$/;" m class:CoroAsyncIOCompatTest.test_asyncio_1.CM file: +__aexit__ Lib/test/test_coroutines.py /^ def __aexit__(self):$/;" m class:CoroutineTest.test_with_3.CM file: +__aexit__ Lib/test/test_coroutines.py /^ def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_6.CM file: +__aexit__ Lib/test/test_coroutines.py /^ def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_7.CM file: +__aexit__ Lib/test/test_coroutines.py /^ def __aexit__(self, *e):$/;" m class:CoroutineTest.test_with_8.CM file: +__aexit__ Lib/test/test_grammar.py /^ async def __aexit__(self, *exc):$/;" m class:GrammarTests.test_async_with.manager file: +__aexit__ Lib/test/test_sys_settrace.py /^ async def __aexit__(self, *exc_info):$/;" m class:asynctracecontext file: +__aexit__ Lib/test/test_typing.py /^ async def __aexit__(self, etype, eval, tb):$/;" m class:ACM file: +__aexit__ Lib/test/test_unittest/test_async_case.py /^ async def __aexit__(self, *exc_info):$/;" m class:LacksEnter file: +__aexit__ Lib/test/test_unittest/test_async_case.py /^ async def __aexit__(self, *exc_info):$/;" m class:TestCM file: +__aexit__ Lib/test/test_unittest/testmock/testasync.py /^ async def __aexit__(self, *args, **kwargs): pass$/;" m class:AsyncContextManagerTest.WithAsyncContextManager file: +__aiter__ Lib/_collections_abc.py /^ def __aiter__(self):$/;" m class:AsyncIterable file: +__aiter__ Lib/_collections_abc.py /^ def __aiter__(self):$/;" m class:AsyncIterator file: +__aiter__ Lib/asyncio/streams.py /^ def __aiter__(self):$/;" m class:StreamReader file: +__aiter__ Lib/test/test_asyncgen.py /^ def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_bad_await.bad_awaitable.MyAsyncIter file: +__aiter__ Lib/test/test_asyncgen.py /^ async def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_async_gen_aiter_class.Gen file: +__aiter__ Lib/test/test_asyncgen.py /^ async def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_async_gen_asyncio_03.Gen file: +__aiter__ Lib/test/test_asyncgen.py /^ def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_await_raises.WithRaisingAwaitableAnext file: +__aiter__ Lib/test/test_asyncgen.py /^ def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_return_generator.WithGenAnext file: +__aiter__ Lib/test/test_asyncgen.py /^ def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_return_iterator.WithIterAnext file: +__aiter__ Lib/test/test_asyncgen.py /^ def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_python_async_iterator_anext.MyAsyncIter file: +__aiter__ Lib/test/test_asyncgen.py /^ def __aiter__(self):$/;" m class:AsyncGenAsyncioTest.test_python_async_iterator_types_coroutine_anext.MyAsyncIterWithTypesCoro file: +__aiter__ Lib/test/test_collections.py /^ def __aiter__(self): return self$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.Gen file: +__aiter__ Lib/test/test_collections.py /^ def __aiter__(self): return self$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen1 file: +__aiter__ Lib/test/test_collections.py /^ def __aiter__(self): return self$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen2 file: +__aiter__ Lib/test/test_collections.py /^ def __aiter__(self):$/;" m class:TestOneTrickPonyABCs.test_AsyncIterable.AI file: +__aiter__ Lib/test/test_collections.py /^ def __aiter__(self):$/;" m class:TestOneTrickPonyABCs.test_AsyncIterator.AI file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_1.AsyncIter file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_11.F file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_3.I file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_4.I file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_6.Iterable file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_7.AI file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_8.AI file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_stop_iteration.AIter file: +__aiter__ Lib/test/test_coroutines.py /^ def __aiter__(self):$/;" m class:CoroutineTest.test_for_tuple.AIter file: +__aiter__ Lib/test/test_grammar.py /^ def __aiter__(self):$/;" m class:GrammarTests.test_async_for.AIter file: +__aiter__ Lib/test/test_sys_settrace.py /^ def __aiter__(self):$/;" m class:TraceTestCase.test_20_async_for_loop.AsyncIteratorWrapper file: +__aiter__ Lib/test/test_typing.py /^ def __aiter__(self) -> typing.AsyncIterator[T_a]:$/;" m class:AsyncIteratorWrapper file: +__aiter__ Lib/test/test_unittest/testmock/testasync.py /^ def __aiter__(self): pass$/;" m class:AsyncIteratorTest.WithAsyncIterator file: +__aiter__ Lib/unittest/mock.py /^ def __aiter__():$/;" f function:_get_async_iter file: +__all__ Lib/__future__.py /^__all__ = ["all_feature_names"] + all_feature_names$/;" v +__all__ Lib/_collections_abc.py /^__all__ = ["Awaitable", "Coroutine",$/;" v +__all__ Lib/_osx_support.py /^__all__ = [$/;" v +__all__ Lib/_pydatetime.py /^__all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",$/;" v +__all__ Lib/_pydecimal.py /^__all__ = [$/;" v +__all__ Lib/_strptime.py /^__all__ = []$/;" v +__all__ Lib/_threading_local.py /^__all__ = ["local"]$/;" v +__all__ Lib/_weakrefset.py /^__all__ = ['WeakSet']$/;" v +__all__ Lib/aifc.py /^__all__ = ["Error", "open"]$/;" v +__all__ Lib/argparse.py /^__all__ = [$/;" v +__all__ Lib/asyncio/__init__.py /^__all__ = (base_events.__all__ +$/;" v +__all__ Lib/asyncio/base_events.py /^__all__ = 'BaseEventLoop','Server',$/;" v +__all__ Lib/asyncio/base_futures.py /^__all__ = ()$/;" v +__all__ Lib/asyncio/coroutines.py /^__all__ = 'iscoroutinefunction', 'iscoroutine'$/;" v +__all__ Lib/asyncio/events.py /^__all__ = ($/;" v +__all__ Lib/asyncio/exceptions.py /^__all__ = ('BrokenBarrierError',$/;" v +__all__ Lib/asyncio/futures.py /^__all__ = ($/;" v +__all__ Lib/asyncio/locks.py /^__all__ = ('Lock', 'Event', 'Condition', 'Semaphore',$/;" v +__all__ Lib/asyncio/proactor_events.py /^__all__ = 'BaseProactorEventLoop',$/;" v +__all__ Lib/asyncio/protocols.py /^__all__ = ($/;" v +__all__ Lib/asyncio/queues.py /^__all__ = ('Queue', 'PriorityQueue', 'LifoQueue', 'QueueFull', 'QueueEmpty')$/;" v +__all__ Lib/asyncio/runners.py /^__all__ = ('Runner', 'run')$/;" v +__all__ Lib/asyncio/selector_events.py /^__all__ = 'BaseSelectorEventLoop',$/;" v +__all__ Lib/asyncio/staggered.py /^__all__ = 'staggered_race',$/;" v +__all__ Lib/asyncio/streams.py /^__all__ = ($/;" v +__all__ Lib/asyncio/subprocess.py /^__all__ = 'create_subprocess_exec', 'create_subprocess_shell'$/;" v +__all__ Lib/asyncio/taskgroups.py /^__all__ = ("TaskGroup",)$/;" v +__all__ Lib/asyncio/tasks.py /^__all__ = ($/;" v +__all__ Lib/asyncio/threads.py /^__all__ = "to_thread",$/;" v +__all__ Lib/asyncio/timeouts.py /^__all__ = ($/;" v +__all__ Lib/asyncio/transports.py /^__all__ = ($/;" v +__all__ Lib/asyncio/unix_events.py /^__all__ = ($/;" v +__all__ Lib/asyncio/windows_events.py /^__all__ = ($/;" v +__all__ Lib/asyncio/windows_utils.py /^__all__ = 'pipe', 'Popen', 'PIPE', 'PipeHandle'$/;" v +__all__ Lib/base64.py /^__all__ = [$/;" v +__all__ Lib/bdb.py /^__all__ = ["BdbQuit", "Bdb", "Breakpoint"]$/;" v +__all__ Lib/bz2.py /^__all__ = ["BZ2File", "BZ2Compressor", "BZ2Decompressor",$/;" v +__all__ Lib/cProfile.py /^__all__ = ["run", "runctx", "Profile"]$/;" v +__all__ Lib/calendar.py /^__all__ = ["IllegalMonthError", "IllegalWeekdayError", "setfirstweekday",$/;" v +__all__ Lib/cgi.py /^__all__ = ["MiniFieldStorage", "FieldStorage", "parse", "parse_multipart",$/;" v +__all__ Lib/cmd.py /^__all__ = ["Cmd"]$/;" v +__all__ Lib/code.py /^__all__ = ["InteractiveInterpreter", "InteractiveConsole", "interact",$/;" v +__all__ Lib/codecs.py /^__all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",$/;" v +__all__ Lib/codeop.py /^__all__ = ["compile_command", "Compile", "CommandCompiler"]$/;" v +__all__ Lib/collections/__init__.py /^__all__ = [$/;" v +__all__ Lib/colorsys.py /^__all__ = ["rgb_to_yiq","yiq_to_rgb","rgb_to_hls","hls_to_rgb",$/;" v +__all__ Lib/compileall.py /^__all__ = ["compile_dir","compile_file","compile_path"]$/;" v +__all__ Lib/concurrent/futures/__init__.py /^__all__ = ($/;" v +__all__ Lib/configparser.py /^__all__ = ("NoSectionError", "DuplicateOptionError", "DuplicateSectionError",$/;" v +__all__ Lib/contextlib.py /^__all__ = ["asynccontextmanager", "contextmanager", "closing", "nullcontext",$/;" v +__all__ Lib/contextvars.py /^__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')$/;" v +__all__ Lib/copy.py /^__all__ = ["Error", "copy", "deepcopy"]$/;" v +__all__ Lib/copyreg.py /^__all__ = ["pickle", "constructor",$/;" v +__all__ Lib/csv.py /^__all__ = ["QUOTE_MINIMAL", "QUOTE_ALL", "QUOTE_NONNUMERIC", "QUOTE_NONE",$/;" v +__all__ Lib/ctypes/macholib/dyld.py /^__all__ = [$/;" v +__all__ Lib/ctypes/macholib/dylib.py /^__all__ = ['dylib_info']$/;" v +__all__ Lib/ctypes/macholib/framework.py /^__all__ = ['framework_info']$/;" v +__all__ Lib/dataclasses.py /^__all__ = ['dataclass',$/;" v +__all__ Lib/datetime.py /^__all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",$/;" v +__all__ Lib/dbm/__init__.py /^__all__ = ['open', 'whichdb', 'error']$/;" v +__all__ Lib/dbm/dumb.py /^__all__ = ["error", "open"]$/;" v +__all__ Lib/difflib.py /^__all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher',$/;" v +__all__ Lib/dis.py /^__all__ = ["code_info", "dis", "disassemble", "distb", "disco",$/;" v +__all__ Lib/doctest.py /^__all__ = [$/;" v +__all__ Lib/email/__init__.py /^__all__ = [$/;" v +__all__ Lib/email/_encoded_words.py /^__all__ = ['decode_q',$/;" v +__all__ Lib/email/_parseaddr.py /^__all__ = [$/;" v +__all__ Lib/email/_policybase.py /^__all__ = [$/;" v +__all__ Lib/email/base64mime.py /^__all__ = [$/;" v +__all__ Lib/email/charset.py /^__all__ = [$/;" v +__all__ Lib/email/encoders.py /^__all__ = [$/;" v +__all__ Lib/email/feedparser.py /^__all__ = ['FeedParser', 'BytesFeedParser']$/;" v +__all__ Lib/email/generator.py /^__all__ = ['Generator', 'DecodedGenerator', 'BytesGenerator']$/;" v +__all__ Lib/email/header.py /^__all__ = [$/;" v +__all__ Lib/email/iterators.py /^__all__ = [$/;" v +__all__ Lib/email/message.py /^__all__ = ['Message', 'EmailMessage']$/;" v +__all__ Lib/email/mime/application.py /^__all__ = ["MIMEApplication"]$/;" v +__all__ Lib/email/mime/audio.py /^__all__ = ['MIMEAudio']$/;" v +__all__ Lib/email/mime/base.py /^__all__ = ['MIMEBase']$/;" v +__all__ Lib/email/mime/image.py /^__all__ = ['MIMEImage']$/;" v +__all__ Lib/email/mime/message.py /^__all__ = ['MIMEMessage']$/;" v +__all__ Lib/email/mime/multipart.py /^__all__ = ['MIMEMultipart']$/;" v +__all__ Lib/email/mime/nonmultipart.py /^__all__ = ['MIMENonMultipart']$/;" v +__all__ Lib/email/mime/text.py /^__all__ = ['MIMEText']$/;" v +__all__ Lib/email/parser.py /^__all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser',$/;" v +__all__ Lib/email/policy.py /^__all__ = [$/;" v +__all__ Lib/email/quoprimime.py /^__all__ = [$/;" v +__all__ Lib/email/utils.py /^__all__ = [$/;" v +__all__ Lib/ensurepip/__init__.py /^__all__ = ["version", "bootstrap"]$/;" v +__all__ Lib/enum.py /^__all__ = [$/;" v +__all__ Lib/filecmp.py /^__all__ = ['clear_cache', 'cmp', 'dircmp', 'cmpfiles', 'DEFAULT_IGNORES']$/;" v +__all__ Lib/fileinput.py /^__all__ = ["input", "close", "nextfile", "filename", "lineno", "filelineno",$/;" v +__all__ Lib/fnmatch.py /^__all__ = ["filter", "fnmatch", "fnmatchcase", "translate"]$/;" v +__all__ Lib/fractions.py /^__all__ = ['Fraction']$/;" v +__all__ Lib/ftplib.py /^__all__ = ["FTP", "error_reply", "error_temp", "error_perm", "error_proto",$/;" v +__all__ Lib/functools.py /^__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',$/;" v +__all__ Lib/genericpath.py /^__all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',$/;" v +__all__ Lib/getopt.py /^__all__ = ["GetoptError","error","getopt","gnu_getopt"]$/;" v +__all__ Lib/getpass.py /^__all__ = ["getpass","getuser","GetPassWarning"]$/;" v +__all__ Lib/gettext.py /^__all__ = ['NullTranslations', 'GNUTranslations', 'Catalog',$/;" v +__all__ Lib/glob.py /^__all__ = ["glob", "iglob", "escape"]$/;" v +__all__ Lib/graphlib.py /^__all__ = ["TopologicalSorter", "CycleError"]$/;" v +__all__ Lib/gzip.py /^__all__ = ["BadGzipFile", "GzipFile", "open", "compress", "decompress"]$/;" v +__all__ Lib/hashlib.py /^__all__ = __always_supported + ('new', 'algorithms_guaranteed',$/;" v +__all__ Lib/heapq.py /^__all__ = ['heappush', 'heappop', 'heapify', 'heapreplace', 'merge',$/;" v +__all__ Lib/html/__init__.py /^__all__ = ['escape', 'unescape']$/;" v +__all__ Lib/html/entities.py /^__all__ = ['html5', 'name2codepoint', 'codepoint2name', 'entitydefs']$/;" v +__all__ Lib/html/parser.py /^__all__ = ['HTMLParser']$/;" v +__all__ Lib/http/__init__.py /^__all__ = ['HTTPStatus', 'HTTPMethod']$/;" v +__all__ Lib/http/client.py /^__all__ = ["HTTPResponse", "HTTPConnection",$/;" v +__all__ Lib/http/cookiejar.py /^__all__ = ['Cookie', 'CookieJar', 'CookiePolicy', 'DefaultCookiePolicy',$/;" v +__all__ Lib/http/cookies.py /^__all__ = ["CookieError", "BaseCookie", "SimpleCookie"]$/;" v +__all__ Lib/http/server.py /^__all__ = [$/;" v +__all__ Lib/imaplib.py /^__all__ = ["IMAP4", "IMAP4_stream", "Internaldate2tuple",$/;" v +__all__ Lib/imghdr.py /^__all__ = ["what"]$/;" v +__all__ Lib/importlib/__init__.py /^__all__ = ['__import__', 'import_module', 'invalidate_caches', 'reload']$/;" v +__all__ Lib/importlib/abc.py /^__all__ = [$/;" v +__all__ Lib/importlib/metadata/__init__.py /^__all__ = [$/;" v +__all__ Lib/importlib/readers.py /^__all__ = ['FileReader', 'ZipReader', 'MultiplexedPath', 'NamespaceReader']$/;" v +__all__ Lib/importlib/resources/__init__.py /^__all__ = [$/;" v +__all__ Lib/importlib/resources/abc.py /^__all__ = ["ResourceReader", "Traversable", "TraversableResources"]$/;" v +__all__ Lib/importlib/simple.py /^__all__ = [$/;" v +__all__ Lib/inspect.py /^__all__ = [$/;" v +__all__ Lib/io.py /^__all__ = ["BlockingIOError", "open", "open_code", "IOBase", "RawIOBase",$/;" v +__all__ Lib/json/__init__.py /^__all__ = [$/;" v +__all__ Lib/json/decoder.py /^__all__ = ['JSONDecoder', 'JSONDecodeError']$/;" v +__all__ Lib/json/scanner.py /^__all__ = ['make_scanner']$/;" v +__all__ Lib/keyword.py /^__all__ = ["iskeyword", "issoftkeyword", "kwlist", "softkwlist"]$/;" v +__all__ Lib/lib2to3/pgen2/driver.py /^__all__ = ["Driver", "load_grammar"]$/;" v +__all__ Lib/lib2to3/pgen2/tokenize.py /^__all__ = [x for x in dir(token) if x[0] != '_'] + ["tokenize",$/;" v +__all__ Lib/linecache.py /^__all__ = ["getline", "clearcache", "checkcache", "lazycache"]$/;" v +__all__ Lib/locale.py /^__all__ = ["getlocale", "getdefaultlocale", "getpreferredencoding", "Error",$/;" v +__all__ Lib/logging/__init__.py /^__all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR',$/;" v +__all__ Lib/lzma.py /^__all__ = [$/;" v +__all__ Lib/mailbox.py /^__all__ = ['Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',$/;" v +__all__ Lib/mailcap.py /^__all__ = ["getcaps","findmatch"]$/;" v +__all__ Lib/mimetypes.py /^__all__ = [$/;" v +__all__ Lib/multiprocessing/__init__.py /^__all__ = [x for x in dir(context._default_context) if not x.startswith('_')]$/;" v +__all__ Lib/multiprocessing/connection.py /^__all__ = [ 'Client', 'Listener', 'Pipe', 'wait' ]$/;" v +__all__ Lib/multiprocessing/context.py /^__all__ = ()$/;" v +__all__ Lib/multiprocessing/dummy/__init__.py /^__all__ = [$/;" v +__all__ Lib/multiprocessing/dummy/connection.py /^__all__ = [ 'Client', 'Listener', 'Pipe' ]$/;" v +__all__ Lib/multiprocessing/forkserver.py /^__all__ = ['ensure_running', 'get_inherited_fds', 'connect_to_new_process',$/;" v +__all__ Lib/multiprocessing/heap.py /^__all__ = ['BufferWrapper']$/;" v +__all__ Lib/multiprocessing/managers.py /^__all__ = [ 'BaseManager', 'SyncManager', 'BaseProxy', 'Token' ]$/;" v +__all__ Lib/multiprocessing/pool.py /^__all__ = ['Pool', 'ThreadPool']$/;" v +__all__ Lib/multiprocessing/popen_fork.py /^__all__ = ['Popen']$/;" v +__all__ Lib/multiprocessing/popen_forkserver.py /^__all__ = ['Popen']$/;" v +__all__ Lib/multiprocessing/popen_spawn_posix.py /^__all__ = ['Popen']$/;" v +__all__ Lib/multiprocessing/popen_spawn_win32.py /^__all__ = ['Popen']$/;" v +__all__ Lib/multiprocessing/process.py /^__all__ = ['BaseProcess', 'current_process', 'active_children',$/;" v +__all__ Lib/multiprocessing/queues.py /^__all__ = ['Queue', 'SimpleQueue', 'JoinableQueue']$/;" v +__all__ Lib/multiprocessing/reduction.py /^__all__ = ['send_handle', 'recv_handle', 'ForkingPickler', 'register', 'dump']$/;" v +__all__ Lib/multiprocessing/resource_sharer.py /^__all__ = ['stop']$/;" v +__all__ Lib/multiprocessing/resource_tracker.py /^__all__ = ['ensure_running', 'register', 'unregister']$/;" v +__all__ Lib/multiprocessing/shared_memory.py /^__all__ = [ 'SharedMemory', 'ShareableList' ]$/;" v +__all__ Lib/multiprocessing/sharedctypes.py /^__all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']$/;" v +__all__ Lib/multiprocessing/spawn.py /^__all__ = ['_main', 'freeze_support', 'set_executable', 'get_executable',$/;" v +__all__ Lib/multiprocessing/synchronize.py /^__all__ = [$/;" v +__all__ Lib/multiprocessing/util.py /^__all__ = [$/;" v +__all__ Lib/netrc.py /^__all__ = ["netrc", "NetrcParseError"]$/;" v +__all__ Lib/nntplib.py /^__all__ = ["NNTP",$/;" v +__all__ Lib/ntpath.py /^__all__ = ["normcase","isabs","join","splitdrive","splitroot","split","splitext",$/;" v +__all__ Lib/numbers.py /^__all__ = ["Number", "Complex", "Real", "Rational", "Integral"]$/;" v +__all__ Lib/opcode.py /^__all__ = ["cmp_op", "hasarg", "hasconst", "hasname", "hasjrel", "hasjabs",$/;" v +__all__ Lib/operator.py /^__all__ = ['abs', 'add', 'and_', 'attrgetter', 'call', 'concat', 'contains', 'countOf',$/;" v +__all__ Lib/optparse.py /^__all__ = ['Option',$/;" v +__all__ Lib/os.py /^__all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep",$/;" v +__all__ Lib/pathlib.py /^__all__ = [$/;" v +__all__ Lib/pdb.py /^__all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace",$/;" v +__all__ Lib/pickle.py /^__all__ = ["PickleError", "PicklingError", "UnpicklingError", "Pickler",$/;" v +__all__ Lib/pickletools.py /^__all__ = ['dis', 'genops', 'optimize']$/;" v +__all__ Lib/pipes.py /^__all__ = ["Template"]$/;" v +__all__ Lib/pkgutil.py /^__all__ = [$/;" v +__all__ Lib/plistlib.py /^__all__ = [$/;" v +__all__ Lib/poplib.py /^__all__ = ["POP3","error_proto"]$/;" v +__all__ Lib/posixpath.py /^__all__ = ["normcase","isabs","join","splitdrive","splitroot","split","splitext",$/;" v +__all__ Lib/pprint.py /^__all__ = ["pprint","pformat","isreadable","isrecursive","saferepr",$/;" v +__all__ Lib/profile.py /^__all__ = ["run", "runctx", "Profile"]$/;" v +__all__ Lib/pstats.py /^__all__ = ["Stats", "SortKey", "FunctionProfile", "StatsProfile"]$/;" v +__all__ Lib/pty.py /^__all__ = ["openpty", "fork", "spawn"]$/;" v +__all__ Lib/py_compile.py /^__all__ = ["compile", "main", "PyCompileError", "PycInvalidationMode"]$/;" v +__all__ Lib/pyclbr.py /^__all__ = ["readmodule", "readmodule_ex", "Class", "Function"]$/;" v +__all__ Lib/pydoc.py /^__all__ = ['help']$/;" v +__all__ Lib/queue.py /^__all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue', 'SimpleQueue']$/;" v +__all__ Lib/quopri.py /^__all__ = ["encode", "decode", "encodestring", "decodestring"]$/;" v +__all__ Lib/random.py /^__all__ = [$/;" v +__all__ Lib/re/__init__.py /^__all__ = [$/;" v +__all__ Lib/reprlib.py /^__all__ = ["Repr", "repr", "recursive_repr"]$/;" v +__all__ Lib/rlcompleter.py /^__all__ = ["Completer"]$/;" v +__all__ Lib/runpy.py /^__all__ = [$/;" v +__all__ Lib/sched.py /^__all__ = ["scheduler"]$/;" v +__all__ Lib/secrets.py /^__all__ = ['choice', 'randbelow', 'randbits', 'SystemRandom',$/;" v +__all__ Lib/shelve.py /^__all__ = ["Shelf", "BsdDbShelf", "DbfilenameShelf", "open"]$/;" v +__all__ Lib/shlex.py /^__all__ = ["shlex", "split", "quote", "join"]$/;" v +__all__ Lib/shutil.py /^__all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",$/;" v +__all__ Lib/smtplib.py /^__all__ = ["SMTPException", "SMTPNotSupportedError", "SMTPServerDisconnected", "SMTPResponseException",$/;" v +__all__ Lib/sndhdr.py /^__all__ = ['what', 'whathdr']$/;" v +__all__ Lib/socket.py /^__all__ = ["fromfd", "getfqdn", "create_connection", "create_server",$/;" v +__all__ Lib/socketserver.py /^__all__ = ["BaseServer", "TCPServer", "UDPServer",$/;" v +__all__ Lib/statistics.py /^__all__ = [$/;" v +__all__ Lib/string.py /^__all__ = ["ascii_letters", "ascii_lowercase", "ascii_uppercase", "capwords",$/;" v +__all__ Lib/struct.py /^__all__ = [$/;" v +__all__ Lib/subprocess.py /^__all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput",$/;" v +__all__ Lib/symtable.py /^__all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"]$/;" v +__all__ Lib/sysconfig.py /^__all__ = [$/;" v +__all__ Lib/tabnanny.py /^__all__ = ["check", "NannyNag", "process_tokens"]$/;" v +__all__ Lib/tarfile.py /^__all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError", "ReadError",$/;" v +__all__ Lib/telnetlib.py /^__all__ = ["Telnet"]$/;" v +__all__ Lib/tempfile.py /^__all__ = [$/;" v +__all__ Lib/test/smtpd.py /^__all__ = [$/;" v +__all__ Lib/test/support/__init__.py /^__all__ = [$/;" v +__all__ Lib/test/support/_hypothesis_stubs/__init__.py /^__all__ = [$/;" v +__all__ Lib/test/support/_hypothesis_stubs/strategies.py /^__all__ = sorted(_STRATEGIES)$/;" v +__all__ Lib/test/support/interpreters.py /^__all__ = [$/;" v +__all__ Lib/test/test_lib2to3/data/infinite_recursion.py /^__all__ = ['ENGINE', 'pkcs7_enc_content_st', '__int16_t',$/;" v +__all__ Lib/test/test_tomllib/__init__.py /^__all__ = ("tomllib",)$/;" v +__all__ Lib/textwrap.py /^__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent', 'indent', 'shorten']$/;" v +__all__ Lib/threading.py /^__all__ = ['get_ident', 'active_count', 'Condition', 'current_thread',$/;" v +__all__ Lib/timeit.py /^__all__ = ["Timer", "timeit", "repeat", "default_timer"]$/;" v +__all__ Lib/tkinter/__init__.py /^__all__ = [name for name, obj in globals().items()$/;" v +__all__ Lib/tkinter/colorchooser.py /^__all__ = ["Chooser", "askcolor"]$/;" v +__all__ Lib/tkinter/commondialog.py /^__all__ = ["Dialog"]$/;" v +__all__ Lib/tkinter/dialog.py /^__all__ = ["Dialog"]$/;" v +__all__ Lib/tkinter/dnd.py /^__all__ = ["dnd_start", "DndHandler"]$/;" v +__all__ Lib/tkinter/filedialog.py /^__all__ = ["FileDialog", "LoadFileDialog", "SaveFileDialog",$/;" v +__all__ Lib/tkinter/font.py /^__all__ = ["NORMAL", "ROMAN", "BOLD", "ITALIC",$/;" v +__all__ Lib/tkinter/messagebox.py /^__all__ = ["showinfo", "showwarning", "showerror",$/;" v +__all__ Lib/tkinter/scrolledtext.py /^__all__ = ['ScrolledText']$/;" v +__all__ Lib/tkinter/ttk.py /^__all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",$/;" v +__all__ Lib/token.py /^__all__ = ['tok_name', 'ISTERMINAL', 'ISNONTERMINAL', 'ISEOF']$/;" v +__all__ Lib/tokenize.py /^__all__ = token.__all__ + ["tokenize", "generate_tokens", "detect_encoding",$/;" v +__all__ Lib/tomllib/__init__.py /^__all__ = ("loads", "load", "TOMLDecodeError")$/;" v +__all__ Lib/trace.py /^__all__ = ['Trace', 'CoverageResults']$/;" v +__all__ Lib/traceback.py /^__all__ = ['extract_stack', 'extract_tb', 'format_exception',$/;" v +__all__ Lib/tty.py /^__all__ = ["cfmakeraw", "cfmakecbreak", "setraw", "setcbreak"]$/;" v +__all__ Lib/turtle.py /^__all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +$/;" v +__all__ Lib/types.py /^__all__ = [n for n in globals() if n[:1] != '_']$/;" v +__all__ Lib/typing.py /^ __all__ = ['IO', 'TextIO', 'BinaryIO']$/;" v class:io +__all__ Lib/typing.py /^ __all__ = ['Pattern', 'Match']$/;" v class:re +__all__ Lib/typing.py /^__all__ = [$/;" v +__all__ Lib/unittest/__init__.py /^__all__ = ['TestResult', 'TestCase', 'IsolatedAsyncioTestCase', 'TestSuite',$/;" v +__all__ Lib/unittest/mock.py /^__all__ = ($/;" v +__all__ Lib/urllib/error.py /^__all__ = ['URLError', 'HTTPError', 'ContentTooShortError']$/;" v +__all__ Lib/urllib/parse.py /^__all__ = ["urlparse", "urlunparse", "urljoin", "urldefrag",$/;" v +__all__ Lib/urllib/request.py /^__all__ = [$/;" v +__all__ Lib/urllib/response.py /^__all__ = ['addbase', 'addclosehook', 'addinfo', 'addinfourl']$/;" v +__all__ Lib/urllib/robotparser.py /^__all__ = ["RobotFileParser"]$/;" v +__all__ Lib/uu.py /^__all__ = ["Error", "encode", "decode"]$/;" v +__all__ Lib/warnings.py /^__all__ = ["warn", "warn_explicit", "showwarning",$/;" v +__all__ Lib/wave.py /^__all__ = ["open", "Error", "Wave_read", "Wave_write"]$/;" v +__all__ Lib/weakref.py /^__all__ = ["ref", "proxy", "getweakrefcount", "getweakrefs",$/;" v +__all__ Lib/webbrowser.py /^__all__ = ["Error", "open", "open_new", "open_new_tab", "get", "register"]$/;" v +__all__ Lib/wsgiref/handlers.py /^__all__ = [$/;" v +__all__ Lib/wsgiref/simple_server.py /^__all__ = ['WSGIServer', 'WSGIRequestHandler', 'demo_app', 'make_server']$/;" v +__all__ Lib/wsgiref/types.py /^__all__ = [$/;" v +__all__ Lib/wsgiref/util.py /^__all__ = [$/;" v +__all__ Lib/wsgiref/validate.py /^__all__ = ['validator']$/;" v +__all__ Lib/xdrlib.py /^__all__ = ["Error", "Packer", "Unpacker", "ConversionError"]$/;" v +__all__ Lib/xml/__init__.py /^__all__ = ["dom", "parsers", "sax", "etree"]$/;" v +__all__ Lib/xml/dom/minicompat.py /^__all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"]$/;" v +__all__ Lib/xml/dom/xmlbuilder.py /^__all__ = ["DOMBuilder", "DOMEntityResolver", "DOMInputSource"]$/;" v +__all__ Lib/xml/etree/ElementTree.py /^__all__ = [$/;" v +__all__ Lib/zipapp.py /^__all__ = ['ZipAppError', 'create_archive', 'get_interpreter']$/;" v +__all__ Lib/zipfile/__init__.py /^__all__ = ["BadZipFile", "BadZipfile", "error",$/;" v +__all__ Lib/zipfile/_path/__init__.py /^__all__ = ['Path']$/;" v +__all__ Lib/zipimport.py /^__all__ = ['ZipImportError', 'zipimporter']$/;" v +__all__ Lib/zoneinfo/__init__.py /^__all__ = [$/;" v +__all__ PC/layout/support/appxmanifest.py /^__all__ = ["get_appx_layout"]$/;" v +__all__ PC/layout/support/catalog.py /^__all__ = ["PYTHON_CAT_NAME", "PYTHON_CDF_NAME"]$/;" v +__all__ PC/layout/support/logging.py /^__all__ = []$/;" v +__all__ PC/layout/support/nuspec.py /^__all__ = ["get_nuspec_layout"]$/;" v +__all__ PC/layout/support/options.py /^__all__ = []$/;" v +__all__ PC/layout/support/pip.py /^__all__ = ["extract_pip_files", "get_pip_layout"]$/;" v +__all__ PC/layout/support/props.py /^__all__ = ["get_props_layout"]$/;" v +__all__ Parser/asdl.py /^__all__ = [$/;" v +__all__ Tools/cases_generator/lexer.py /^__all__ = []$/;" v +__always_supported Lib/hashlib.py /^__always_supported = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512',$/;" v +__and__ Lib/_collections_abc.py /^ def __and__(self, other):$/;" m class:Set file: +__and__ Lib/_weakrefset.py /^ __and__ = intersection$/;" v class:WeakSet +__and__ Lib/collections/__init__.py /^ def __and__(self, other):$/;" m class:Counter file: +__and__ Lib/enum.py /^ def __and__(self, other):$/;" m class:Flag file: +__and__ Lib/numbers.py /^ def __and__(self, other):$/;" m class:Integral file: +__and__ Lib/operator.py /^__and__ = and_$/;" v +__and__ Lib/test/test_augassign.py /^ def __and__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__anext__ Lib/_collections_abc.py /^ async def __anext__(self):$/;" m class:AsyncGenerator file: +__anext__ Lib/_collections_abc.py /^ async def __anext__(self):$/;" m class:AsyncIterator file: +__anext__ Lib/asyncio/streams.py /^ async def __anext__(self):$/;" m class:StreamReader file: +__anext__ Lib/test/test_asyncgen.py /^ def __anext__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_bad_await.bad_awaitable.MyAsyncIter file: +__anext__ Lib/test/test_asyncgen.py /^ async def __anext__(self):$/;" m class:AsyncGenAsyncioTest.test_python_async_iterator_anext.MyAsyncIter file: +__anext__ Lib/test/test_asyncgen.py /^ def __anext__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_await_raises.WithRaisingAwaitableAnext file: +__anext__ Lib/test/test_asyncgen.py /^ def __anext__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_return_generator.WithGenAnext file: +__anext__ Lib/test/test_asyncgen.py /^ def __anext__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_return_iterator.WithIterAnext file: +__anext__ Lib/test/test_asyncgen.py /^ def __anext__(self):$/;" m class:AsyncGenAsyncioTest.test_python_async_iterator_types_coroutine_anext.MyAsyncIterWithTypesCoro file: +__anext__ Lib/test/test_collections.py /^ async def __anext__(self): return None$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.Gen file: +__anext__ Lib/test/test_collections.py /^ async def __anext__(self):$/;" m class:TestOneTrickPonyABCs.test_AsyncIterator.AI file: +__anext__ Lib/test/test_collections.py /^ async def __anext__(self):$/;" m class:TestOneTrickPonyABCs.test_AsyncIterator.AnextOnly file: +__anext__ Lib/test/test_collections.py /^ def __anext__(self): return None$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen1 file: +__anext__ Lib/test/test_collections.py /^ def __anext__(self): return None$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen2 file: +__anext__ Lib/test/test_coroutines.py /^ async def __anext__(self):$/;" m class:CoroutineTest.test_for_1.AsyncIter file: +__anext__ Lib/test/test_coroutines.py /^ async def __anext__(self):$/;" m class:CoroutineTest.test_for_6.Iterable file: +__anext__ Lib/test/test_coroutines.py /^ async def __anext__(self):$/;" m class:CoroutineTest.test_for_stop_iteration.AIter file: +__anext__ Lib/test/test_coroutines.py /^ async def __anext__(self):$/;" m class:CoroutineTest.test_for_tuple.AIter file: +__anext__ Lib/test/test_coroutines.py /^ def __anext__(self):$/;" m class:CoroutineTest.test_for_11.F file: +__anext__ Lib/test/test_coroutines.py /^ def __anext__(self):$/;" m class:CoroutineTest.test_for_4.I file: +__anext__ Lib/test/test_grammar.py /^ async def __anext__(self):$/;" m class:GrammarTests.test_async_for.AIter file: +__anext__ Lib/test/test_sys_settrace.py /^ async def __anext__(self):$/;" m class:TraceTestCase.test_20_async_for_loop.AsyncIteratorWrapper file: +__anext__ Lib/test/test_typing.py /^ async def __anext__(self) -> T_a:$/;" m class:AsyncIteratorWrapper file: +__anext__ Lib/test/test_unittest/testmock/testasync.py /^ async def __anext__(self): pass$/;" m class:AsyncIteratorTest.WithAsyncIterator file: +__anext__ Lib/unittest/mock.py /^ async def __anext__(self):$/;" m class:_AsyncIterator file: +__annotations__ Lib/test/ann_module2.py /^__annotations__ = {}$/;" v +__annotations__ Lib/test/test_inspect.py /^ __annotations__ = func.__annotations__$/;" v class:TestSignatureObject.test_signature_functionlike_class.funclike +__annotations__ Lib/test/test_type_annotations.py /^ def __annotations__(self):$/;" m class:TypeAnnotationTests.test_descriptor_still_works.C file: +__annotations__ Lib/test/test_type_annotations.py /^ def __annotations__(self, value):$/;" m class:TypeAnnotationTests.test_descriptor_still_works.C file: +__arg__ Lib/test/test_type_params.py /^ __arg__ = arg$/;" v class:make_base.Base +__attr Include/cpython/pthread_stubs.h /^typedef struct { unsigned __attr; } pthread_attr_t;$/;" m struct:__anon244 +__attr Include/cpython/pthread_stubs.h /^typedef struct { unsigned __attr; } pthread_condattr_t;$/;" m struct:__anon241 +__attr Include/cpython/pthread_stubs.h /^typedef struct { unsigned __attr; } pthread_mutexattr_t;$/;" m struct:__anon243 +__attr Lib/test/test_patma.py /^ __attr = "eggs" # mangled to _C__attr$/;" v class:TestPatma.test_patma_249.C +__attributes Lib/idlelib/rpc.py /^ __attributes = None$/;" v class:RPCProxy +__author__ Lib/bz2.py /^__author__ = "Nadeem Vawda "$/;" v +__author__ Lib/concurrent/futures/__init__.py /^__author__ = 'Brian Quinlan (brian@sweetapp.com)'$/;" v +__author__ Lib/concurrent/futures/_base.py /^__author__ = 'Brian Quinlan (brian@sweetapp.com)'$/;" v +__author__ Lib/concurrent/futures/process.py /^__author__ = 'Brian Quinlan (brian@sweetapp.com)'$/;" v +__author__ Lib/concurrent/futures/thread.py /^__author__ = 'Brian Quinlan (brian@sweetapp.com)'$/;" v +__author__ Lib/ctypes/_aix.py /^__author__ = "Michael Felt "$/;" v +__author__ Lib/inspect.py /^__author__ = ('Ka-Ping Yee ',$/;" v +__author__ Lib/io.py /^__author__ = ("Guido van Rossum , "$/;" v +__author__ Lib/json/__init__.py /^__author__ = 'Bob Ippolito '$/;" v +__author__ Lib/lib2to3/btm_matcher.py /^__author__ = "George Boutsioukis "$/;" v +__author__ Lib/lib2to3/patcomp.py /^__author__ = "Guido van Rossum "$/;" v +__author__ Lib/lib2to3/pgen2/driver.py /^__author__ = "Guido van Rossum "$/;" v +__author__ Lib/lib2to3/pgen2/tokenize.py /^__author__ = 'Ka-Ping Yee '$/;" v +__author__ Lib/lib2to3/pytree.py /^__author__ = "Guido van Rossum "$/;" v +__author__ Lib/lib2to3/refactor.py /^__author__ = "Guido van Rossum "$/;" v +__author__ Lib/logging/__init__.py /^__author__ = "Vinay Sajip "$/;" v +__author__ Lib/pydoc.py /^__author__ = "Ka-Ping Yee "$/;" v +__author__ Lib/tarfile.py /^__author__ = "Lars Gust\\u00e4bel (lars@gustaebel.de)"$/;" v +__author__ Lib/test/pydoc_mod.py /^__author__ = "Benjamin Peterson"$/;" v +__author__ Lib/test/test_keywordonlyarg.py /^__author__ = "Jiwon Seo"$/;" v +__author__ Lib/test/test_lib2to3/pytree_idempotency.py /^__author__ = "Guido van Rossum "$/;" v +__author__ Lib/test/test_with.py /^__author__ = "Mike Bland"$/;" v +__author__ Lib/tkinter/ttk.py /^__author__ = "Guilherme Polo "$/;" v +__author__ Lib/tokenize.py /^__author__ = 'Ka-Ping Yee '$/;" v +__author__ Lib/uuid.py /^__author__ = 'Ka-Ping Yee '$/;" v +__author__ PC/layout/main.py /^__author__ = "Steve Dower "$/;" v +__author__ PC/layout/support/appxmanifest.py /^__author__ = "Steve Dower "$/;" v +__author__ PC/layout/support/catalog.py /^__author__ = "Steve Dower "$/;" v +__author__ PC/layout/support/constants.py /^__author__ = "Steve Dower "$/;" v +__author__ PC/layout/support/filesets.py /^__author__ = "Steve Dower "$/;" v +__author__ PC/layout/support/logging.py /^__author__ = "Steve Dower "$/;" v +__author__ PC/layout/support/options.py /^__author__ = "Steve Dower "$/;" v +__author__ PC/layout/support/pip.py /^__author__ = "Steve Dower "$/;" v +__author__ PCbuild/fix_encoding.py /^__author__ = "Steve Dower "$/;" v +__author__ Tools/msi/csv_to_wxs.py /^__author__ = "Steve Dower "$/;" v +__author__ Tools/msi/purge.py /^__author__ = 'Steve Dower '$/;" v +__author__ Tools/unittestgui/unittestgui.py /^__author__ = "Steve Purcell (stephen_purcell@yahoo.com)"$/;" v +__await__ Lib/_collections_abc.py /^ def __await__(self):$/;" m class:Awaitable file: +__await__ Lib/asyncio/futures.py /^ def __await__(self):$/;" m class:Future file: +__await__ Lib/test/test_asyncgen.py /^ def __await__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_bad_await.bad_awaitable.BadAwaitable file: +__await__ Lib/test/test_asyncgen.py /^ def __await__(self):$/;" m class:AsyncGenAsyncioTest.test_anext_await_raises.RaisingAwaitable file: +__await__ Lib/test/test_asyncio/test_events.py /^ def __await__(self):$/;" m class:CoroLike file: +__await__ Lib/test/test_asyncio/test_pep492.py /^ def __await__(self):$/;" m class:FakeCoro file: +__await__ Lib/test/test_asyncio/test_tasks.py /^ def __await__(self):$/;" m class:BaseTaskTests.test_ensure_future_awaitable.Aw file: +__await__ Lib/test/test_asyncio/test_tasks.py /^ def __await__(self):$/;" m class:BaseTaskTests.test_ensure_future_task_awaitable.Aw file: +__await__ Lib/test/test_asyncio/test_tasks.py /^ def __await__(self):$/;" m class:CoroLikeObject file: +__await__ Lib/test/test_collections.py /^ def __await__(self):$/;" m class:TestOneTrickPonyABCs.test_Awaitable.Bar file: +__await__ Lib/test/test_collections.py /^ def __await__(self):$/;" m class:TestOneTrickPonyABCs.test_Awaitable.MinimalCoro file: +__await__ Lib/test/test_collections.py /^ def __await__(self):$/;" m class:TestOneTrickPonyABCs.test_Coroutine.Bar file: +__await__ Lib/test/test_collections.py /^ def __await__(self):$/;" m class:TestOneTrickPonyABCs.test_Coroutine.CoroLike file: +__await__ Lib/test/test_collections.py /^ def __await__(self):$/;" m class:TestOneTrickPonyABCs.test_Coroutine.MinimalCoro file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_await_12.Awaitable file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_await_13.Awaitable file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_await_14.FutureLike file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_await_14.Wrapper file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_await_5.Awaitable file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_await_6.Awaitable file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_await_7.Awaitable file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:CoroutineTest.test_for_11.F file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:AsyncYield file: +__await__ Lib/test/test_coroutines.py /^ def __await__(self):$/;" m class:AsyncYieldFrom file: +__await__ Lib/test/test_inspect.py /^ def __await__():$/;" m class:TestPredicates.test_isawaitable.Future file: +__await__ Lib/test/test_types.py /^ def __await__(self): return self$/;" m class:CoroutineTests.test_duck_coro.CoroLike file: +__await__ Lib/test/test_types.py /^ def __await__(self): return self$/;" m class:CoroutineTests.test_duck_corogen.CoroGenLike file: +__await__ Lib/test/test_types.py /^ def __await__(self):$/;" m class:CoroutineTests.test_non_gen_values.Awaitable file: +__await__ Lib/test/test_typing.py /^ def __await__(self) -> typing.Iterator[T_a]:$/;" m class:AwaitableWrapper file: +__await__ Lib/test/test_unittest/testmock/testasync.py /^ def __await__(self): yield$/;" m class:AwaitableClass file: +__await__ Lib/types.py /^ __await__ = __iter__$/;" v class:_GeneratorWrapper +__base__ Lib/test/test_opcache.py /^ __base__ = None$/;" v class:TestLoadAttrCache.test_type_descriptor_shadows_attribute_member.Class +__base__ Lib/test/test_opcache.py /^ def __base__():$/;" m class:TestLoadMethodCache.test_type_descriptor_shadows_attribute_member.Class file: +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.C +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.E +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsInstanceExceptions.test_class_has_no_bases.C +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsInstanceExceptions.test_dont_mask_non_attribute_error.C +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsInstanceExceptions.test_mask_attribute_error.C +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsSubclassExceptions.test_dont_mask_non_attribute_error.C +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsSubclassExceptions.test_dont_mask_non_attribute_error_in_cls_arg.C +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsSubclassExceptions.test_mask_attribute_error.C +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:TestIsSubclassExceptions.test_mask_attribute_error_in_cls_arg.C +__bases__ Lib/test/test_isinstance.py /^ def __bases__(self):$/;" m class:TestIsInstanceIsSubclass.test_infinite_cycle_in_bases.X file: +__bases__ Lib/test/test_isinstance.py /^ def __bases__(self):$/;" m class:TestIsInstanceIsSubclass.test_infinite_recursion_in_bases.X file: +__bases__ Lib/test/test_isinstance.py /^ def __bases__(self):$/;" m class:TestIsInstanceIsSubclass.test_issubclass_refcount_handling.A file: +__bases__ Lib/test/test_isinstance.py /^ def __bases__(self):$/;" m class:TestIsInstanceIsSubclass.test_issubclass_refcount_handling.B file: +__bases__ Lib/test/test_isinstance.py /^ __bases__ = property(getbases)$/;" v class:AbstractClass +__big5_decmap Modules/cjkcodecs/mappings_tw.h /^static const ucs2_t __big5_decmap[16702] = {$/;" v +__big5_encmap Modules/cjkcodecs/mappings_tw.h /^static const DBCHAR __big5_encmap[21764] = {$/;" v +__big5hkscs_bmp_encmap Modules/cjkcodecs/mappings_hk.h /^static const DBCHAR __big5hkscs_bmp_encmap[26401] = {$/;" v +__big5hkscs_decmap Modules/cjkcodecs/mappings_hk.h /^static const ucs2_t __big5hkscs_decmap[6219] = {$/;" v +__big5hkscs_nonbmp_encmap Modules/cjkcodecs/mappings_hk.h /^static const DBCHAR __big5hkscs_nonbmp_encmap[29306] = {$/;" v +__blake2b_param Modules/_blake2/impl/blake2.h /^ typedef struct __blake2b_param$/;" s +__blake2b_state Modules/_blake2/impl/blake2.h /^ typedef struct __blake2b_state$/;" s +__blake2bp_state Modules/_blake2/impl/blake2.h /^ typedef struct __blake2bp_state$/;" s +__blake2s_param Modules/_blake2/impl/blake2.h /^ typedef struct __blake2s_param$/;" s +__blake2s_state Modules/_blake2/impl/blake2.h /^ typedef struct __blake2s_state$/;" s +__blake2sp_state Modules/_blake2/impl/blake2.h /^ typedef struct __blake2sp_state$/;" s +__block_openssl_constructor Lib/hashlib.py /^__block_openssl_constructor = {$/;" v +__bool__ Include/pyport.h 760;" d +__bool__ Lib/_pydatetime.py /^ def __bool__(self):$/;" m class:timedelta file: +__bool__ Lib/_pydecimal.py /^ def __bool__(self):$/;" m class:Decimal file: +__bool__ Lib/cgi.py /^ def __bool__(self):$/;" m class:FieldStorage file: +__bool__ Lib/collections/__init__.py /^ def __bool__(self):$/;" m class:ChainMap file: +__bool__ Lib/enum.py /^ def __bool__(cls):$/;" m class:EnumType file: +__bool__ Lib/enum.py /^ def __bool__(self):$/;" m class:Flag file: +__bool__ Lib/fractions.py /^ def __bool__(a):$/;" m class:Fraction file: +__bool__ Lib/graphlib.py /^ def __bool__(self):$/;" m class:TopologicalSorter file: +__bool__ Lib/importlib/metadata/__init__.py /^ def __bool__(self):$/;" m class:Prepared file: +__bool__ Lib/numbers.py /^ def __bool__(self):$/;" m class:Complex file: +__bool__ Lib/test/test_abc.py /^ def __bool__(self):$/;" m class:test_factory.TestABC.test_descriptors_with_abstractmethod.NotBool file: +__bool__ Lib/test/test_bool.py /^ __bool__ = None$/;" v class:BoolTest.test_blocked.A +__bool__ Lib/test/test_bool.py /^ __bool__ = None$/;" v class:BoolTest.test_blocked.B +__bool__ Lib/test/test_bool.py /^ def __bool__(self):$/;" m class:BoolTest.test_bool_called_at_least_once.X file: +__bool__ Lib/test/test_bool.py /^ def __bool__(self):$/;" m class:BoolTest.test_convert_to_bool.Bar file: +__bool__ Lib/test/test_bool.py /^ def __bool__(self):$/;" m class:BoolTest.test_convert_to_bool.Baz file: +__bool__ Lib/test/test_bool.py /^ def __bool__(self):$/;" m class:BoolTest.test_convert_to_bool.Foo file: +__bool__ Lib/test/test_bool.py /^ def __bool__(self):$/;" m class:BoolTest.test_convert_to_bool.Spam file: +__bool__ Lib/test/test_bool.py /^ def __bool__(self):$/;" m class:BoolTest.test_interpreter_convert_to_bool_raises.SymbolicBool file: +__bool__ Lib/test/test_builtin.py /^ def __bool__(self):$/;" m class:TestFailingBool file: +__bool__ Lib/test/test_capi/test_getargs.py /^ def __bool__(self):$/;" m class:Paradox file: +__bool__ Lib/test/test_class.py /^ __bool__ = __int__$/;" v class:ClassTests.testBadTypeReturned.BadTypeClass +__bool__ Lib/test/test_descr.py /^ def __bool__(self):$/;" m class:.test_specials.Proxy file: +__bool__ Lib/test/test_dynamicclassattribute.py /^ def __bool__(self):$/;" m class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool file: +__bool__ Lib/test/test_enum.py /^ def __bool__(self):$/;" m class:TestSpecial.test_bool.RealLogic file: +__bool__ Lib/test/test_except_star.py /^ def __bool__(self):$/;" m class:TestExceptStarExceptionGroupSubclass.test_falsy_exception_group_subclass.FalsyEG file: +__bool__ Lib/test/test_fractions.py /^ def __bool__(self):$/;" m class:FractionTest.testBoolGuarateesBoolReturn.CustomValue file: +__bool__ Lib/test/test_importlib/test_util.py /^ def __bool__(self): raise RuntimeError$/;" m class:PEP3147Tests.test_cache_from_source_override.Bearish file: +__bool__ Lib/test/test_inspect.py /^ def __bool__(self):$/;" m class:TestClassesAndFunctions.test_classify_overrides_bool.NoBool file: +__bool__ Lib/test/test_iter.py /^ def __bool__(self):$/;" m class:TestCase.test_builtin_filter.Boolean file: +__bool__ Lib/test/test_json/test_speedups.py /^ def __bool__(self):$/;" m class:BadBool file: +__bool__ Lib/test/test_memoryview.py /^ def __bool__(self):$/;" m class:OtherTest.test_use_released_memory.MyBool file: +__bool__ Lib/test/test_operator.py /^ def __bool__(self):$/;" m class:OperatorTestCase.test_truth.C file: +__bool__ Lib/test/test_property.py /^ def __bool__(self):$/;" m class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool file: +__bool__ Lib/test/test_random.py /^ def __bool__(self):$/;" m class:TestBasicOps.test_choice_with_numpy.NA file: +__bool__ Lib/test/test_richcmp.py /^ def __bool__(self):$/;" m class:MiscTest.test_not.Bad file: +__bool__ Lib/test/test_richcmp.py /^ def __bool__(self):$/;" m class:Vector file: +__bool__ Lib/test/test_sqlite3/test_hooks.py /^ def __bool__(self):$/;" m class:ProgressTests.test_error_in_progress_handler_result.BadBool file: +__bool__ Lib/test/test_struct.py /^ def __bool__(self):$/;" m class:StructTest.test_bool.ExplodingBool file: +__bool__ Lib/test/test_threading.py /^ def __bool__(self):$/;" m class:ThreadTests.test_boolean_target.BooleanTarget file: +__bool__ Lib/test/test_with.py /^ def __bool__(self):$/;" m class:ExceptionalTestCase.testErrorsInBool.cm.__init__.Bool file: +__bool__ Lib/test/test_xml_etree.py /^ def __bool__(self):$/;" m class:BugsTest.test_lost_tail.Text file: +__bool__ Lib/test/test_xml_etree.py /^ def __bool__(self):$/;" m class:BugsTest.test_lost_text.Text file: +__bool__ Lib/xml/dom/minidom.py /^ def __bool__(self):$/;" m class:Node file: +__bool__ Lib/xml/etree/ElementTree.py /^ def __bool__(self):$/;" m class:Element file: +__bool__ Tools/build/check_extension_modules.py /^ def __bool__(self):$/;" m class:ModuleState file: +__bool__ Tools/wasm/wasm_build.py /^ def __bool__(self):$/;" m class:SupportLevel file: +__buffer__ Lib/_collections_abc.py /^ def __buffer__(self, flags: int, \/) -> memoryview:$/;" m class:Buffer file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self):$/;" m class:TestPythonBufferProtocol.test_bad_buffer_method.WrongArity file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_bad_buffer_method.MustReturnMV file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_bad_buffer_method.NoBytesEither file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_basic.MyBuffer file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_buffer_flags.PossiblyMutable file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_inherit_but_return_something_else.A file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_inherit_but_return_something_else.B file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_inheritance.A file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_inheritance_releasebuffer.B file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last.A file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last.B file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last.C file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising.A file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising.B file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising.C file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_release_buffer.WhatToRelease file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_release_buffer_with_exception_set.A file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_release_saves_reference_no_subclassing.C file: +__buffer__ Lib/test/test_buffer.py /^ def __buffer__(self, flags):$/;" m class:TestPythonBufferProtocol.test_same_buffer_returned.WhatToRelease file: +__buffer__ Lib/test/test_typing.py /^ def __buffer__(self, flags: int) -> memoryview:$/;" m class:ProtocolTests.test_collections_protocols_allowed.D file: +__builtin_constructor_cache Lib/hashlib.py /^__builtin_constructor_cache = {}$/;" v +__bytes__ Lib/email/message.py /^ def __bytes__(self):$/;" m class:Message file: +__bytes__ Lib/pathlib.py /^ def __bytes__(self):$/;" m class:PurePath file: +__bytes__ Lib/test/test_bytes.py /^ __bytes__ = None$/;" v class:BytesTest.test_bytes_blocking.BufferBlocked +__bytes__ Lib/test/test_bytes.py /^ __bytes__ = None$/;" v class:BytesTest.test_bytes_blocking.BytesSubclassBlocked +__bytes__ Lib/test/test_bytes.py /^ __bytes__ = None$/;" v class:BytesTest.test_bytes_blocking.IntBlocked +__bytes__ Lib/test/test_bytes.py /^ __bytes__ = None$/;" v class:BytesTest.test_bytes_blocking.IterationBlocked +__bytes__ Lib/test/test_bytes.py /^ def __bytes__(self):$/;" m class:BytesTest.test_custom.A file: +__bytes__ Lib/test/test_class.py /^ __bytes__ = __int__$/;" v class:ClassTests.testBadTypeReturned.BadTypeClass +__bytes__ Lib/test/test_format.py /^ def __bytes__(self):$/;" m class:FormatTest.test_bytes_and_bytearray_format.FakeBytes file: +__bytes__ Lib/test/test_long.py /^ def __bytes__(self):$/;" m class:LongTest.test_from_bytes.InvalidBytes file: +__bytes__ Lib/test/test_long.py /^ def __bytes__(self):$/;" m class:LongTest.test_from_bytes.RaisingBytes file: +__bytes__ Lib/test/test_long.py /^ def __bytes__(self):$/;" m class:LongTest.test_from_bytes.ValidBytes file: +__bytes__ Lib/test/test_typing.py /^ def __bytes__(self):$/;" m class:ProtocolTests.test_supports_bytes.B file: +__bytes__ Lib/test/test_weakref.py /^ def __bytes__(self):$/;" m class:ReferencesTestCase.test_proxy_unicode.C file: +__bytes__ Lib/typing.py /^ def __bytes__(self) -> bytes:$/;" m class:SupportsBytes file: +__bytes__ Lib/wsgiref/headers.py /^ def __bytes__(self):$/;" m class:Headers file: +__cached_interp_requires_environment Lib/test/support/script_helper.py /^__cached_interp_requires_environment = None$/;" v +__calc_am_pm Lib/_strptime.py /^ def __calc_am_pm(self):$/;" m class:LocaleTime file: +__calc_date_time Lib/_strptime.py /^ def __calc_date_time(self):$/;" m class:LocaleTime file: +__calc_month Lib/_strptime.py /^ def __calc_month(self):$/;" m class:LocaleTime file: +__calc_timezone Lib/_strptime.py /^ def __calc_timezone(self):$/;" m class:LocaleTime file: +__calc_weekday Lib/_strptime.py /^ def __calc_weekday(self):$/;" m class:LocaleTime file: +__call__ Lib/_collections_abc.py /^ def __call__(self, *args, **kwds):$/;" m class:Callable file: +__call__ Lib/_sitebuiltins.py /^ def __call__(self):$/;" m class:_Printer file: +__call__ Lib/_sitebuiltins.py /^ def __call__(self, *args, **kwds):$/;" m class:_Helper file: +__call__ Lib/_sitebuiltins.py /^ def __call__(self, code=None):$/;" m class:Quitter file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:Action file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:BooleanOptionalAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_AppendAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_AppendConstAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_CountAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_ExtendAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_HelpAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_StoreAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_StoreConstAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_SubParsersAction file: +__call__ Lib/argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:_VersionAction file: +__call__ Lib/argparse.py /^ def __call__(self, string):$/;" m class:FileType file: +__call__ Lib/cgitb.py /^ def __call__(self, etype, evalue, etb):$/;" m class:Hook file: +__call__ Lib/codeop.py /^ def __call__(self, source, filename, symbol):$/;" m class:Compile file: +__call__ Lib/codeop.py /^ def __call__(self, source, filename="", symbol="single"):$/;" m class:CommandCompiler file: +__call__ Lib/contextlib.py /^ def __call__(self, func):$/;" m class:AsyncContextDecorator file: +__call__ Lib/contextlib.py /^ def __call__(self, func):$/;" m class:ContextDecorator file: +__call__ Lib/email/headerregistry.py /^ def __call__(self, name, value):$/;" m class:HeaderRegistry file: +__call__ Lib/enum.py /^ def __call__(cls, value, names=None, *values, module=None, qualname=None, type=None, start=1, boundary=None):$/;" m class:EnumType file: +__call__ Lib/enum.py /^ def __call__(self, enumeration):$/;" m class:verify file: +__call__ Lib/functools.py /^ def __call__(self, \/, *args, **keywords):$/;" m class:partial file: +__call__ Lib/idlelib/idle_test/mock_idle.py /^ def __call__(self, *args, **kwds):$/;" m class:Func file: +__call__ Lib/idlelib/idle_test/mock_tk.py /^ def __call__(self, title, message, *args, **kwds):$/;" m class:Mbox_func file: +__call__ Lib/idlelib/idle_test/test_calltip.py /^ def __call__(*, a): pass$/;" m class:.test_invalid_method_get_spec.Test file: +__call__ Lib/idlelib/idle_test/test_calltip.py /^ def __call__(oui, a, b, c): # Non-standard 'self'.$/;" m class:.test_buggy_getattr_class.CallB file: +__call__ Lib/idlelib/idle_test/test_calltip.py /^ def __call__(self, ci): # Bug does not matter.$/;" m class:.test_buggy_getattr_class.CallA file: +__call__ Lib/idlelib/idle_test/test_calltip.py /^ def __call__(self, ci): 'doc'$/;" m class:TC file: +__call__ Lib/idlelib/redirector.py /^ def __call__(self, *args):$/;" m class:OriginalCommand file: +__call__ Lib/idlelib/rpc.py /^ def __call__(self, \/, *args, **kwargs):$/;" m class:MethodProxy file: +__call__ Lib/multiprocessing/util.py /^ def __call__(self, wr=None,$/;" m class:Finalize file: +__call__ Lib/operator.py /^ def __call__(self, obj):$/;" m class:attrgetter file: +__call__ Lib/operator.py /^ def __call__(self, obj):$/;" m class:itemgetter file: +__call__ Lib/operator.py /^ def __call__(self, obj):$/;" m class:methodcaller file: +__call__ Lib/operator.py /^__call__ = call$/;" v +__call__ Lib/pydoc.py /^ def __call__(self, request=_GoInteractive):$/;" m class:Helper file: +__call__ Lib/symtable.py /^ def __call__(self, table, filename):$/;" m class:SymbolTableFactory file: +__call__ Lib/test/_test_multiprocessing.py /^ def __call__(self):$/;" m class:AppendTrue file: +__call__ Lib/test/_test_multiprocessing.py /^ def __call__(self, *args, **kwds):$/;" m class:TimingWrapper file: +__call__ Lib/test/_test_multiprocessing.py /^ def __call__(self, q, c):$/;" m class:DummyCallable file: +__call__ Lib/test/audit-tests.py /^ def __call__(self):$/;" m class:test_threading.test_func file: +__call__ Lib/test/audit-tests.py /^ def __call__(self, event, args):$/;" m class:TestHook file: +__call__ Lib/test/inspect_fodder.py /^ def __call__(self, *args):$/;" m class:Callable file: +__call__ Lib/test/pydocfodder.py /^ def __call__(self, inst):$/;" m class:FunkyProperties.del_desc file: +__call__ Lib/test/pydocfodder.py /^ def __call__(self, inst):$/;" m class:FunkyProperties.get_desc file: +__call__ Lib/test/pydocfodder.py /^ def __call__(self, inst, val):$/;" m class:FunkyProperties.set_desc file: +__call__ Lib/test/test_argparse.py /^ def __call__(self, *args, **kwargs):$/;" m class:TestInvalidArgumentConstructors.test_user_defined_action.Action file: +__call__ Lib/test/test_argparse.py /^ def __call__(self, parser, namespace, value, option_string=None):$/;" m class:TestActionUserDefined.OptionalAction file: +__call__ Lib/test/test_argparse.py /^ def __call__(self, parser, namespace, value, option_string=None):$/;" m class:TestActionUserDefined.PositionalAction file: +__call__ Lib/test/test_argparse.py /^ def __call__(self, parser, namespace, values, option_string=None):$/;" m class:TestActionRegistration.MyAction file: +__call__ Lib/test/test_asyncio/test_tasks.py /^ def __call__(self, *args):$/;" m class:Dummy file: +__call__ Lib/test/test_builtin.py /^ def __call__(self): pass$/;" m class:BuiltinTest.test_callable.C2 file: +__call__ Lib/test/test_call.py /^ def __call__(self):$/;" m class:TestPEP590.test_vectorcall_flag.MethodDescriptorHeap file: +__call__ Lib/test/test_call.py /^ def __call__(self, *args):$/;" m class:TestPEP590.test_vectorcall.MethodDescriptorSuper file: +__call__ Lib/test/test_call.py /^ def __call__(self, *args):$/;" m class:TestPEP590.test_vectorcall.SuperBase file: +__call__ Lib/test/test_call.py /^ def __call__(self, n):$/;" m class:TestPEP590.test_vectorcall.MethodDescriptorOverridden file: +__call__ Lib/test/test_clinic.py /^ def __call__(self, name, default, **kwargs):$/;" m class:FakeConverterFactory file: +__call__ Lib/test/test_dataclasses.py /^ __call__ = dict$/;" v class:TestDocString.test_docstring_with_no_signature.Meta +__call__ Lib/test/test_decorators.py /^ def __call__(self, *args, **kwargs):$/;" m class:TestDecorators.test_wrapped_descriptor_inside_classmethod.BoundWrapper file: +__call__ Lib/test/test_decorators.py /^ def __call__(self, cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod1 file: +__call__ Lib/test/test_decorators.py /^ def __call__(self, cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2 file: +__call__ Lib/test/test_descr.py /^ def __call__(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.M2 file: +__call__ Lib/test/test_descr.py /^ def __call__(self, arg):$/;" m class:.test_bound_method_repr.MyCallable file: +__call__ Lib/test/test_doctest.py /^ def __call__(self, *args, **kwargs):$/;" m class:Wrapper file: +__call__ Lib/test/test_fileinput.py /^ def __call__(self, *args, **kargs):$/;" m class:FileInputTests.test_file_opening_hook.CustomOpenHook file: +__call__ Lib/test/test_fileinput.py /^ def __call__(self, *args, **kwargs):$/;" m class:InvocationRecorder file: +__call__ Lib/test/test_fileinput.py /^ def __call__(self, *args, **kwargs):$/;" m class:UnconditionallyRaise file: +__call__ Lib/test/test_fstring.py /^ def __call__(self):$/;" m class:TestCase.test_ast.X file: +__call__ Lib/test/test_functools.py /^ def __call__(self):$/;" m class:TestSingleDispatch.test_c3_abc.X file: +__call__ Lib/test/test_functools.py /^ def __call__(self):$/;" m class:TestSingleDispatch.test_compose_mro.C file: +__call__ Lib/test/test_inspect.py /^ __call__ = type$/;" v class:TestSignatureObject.test_signature_on_builtins.p.ThisWorksNow +__call__ Lib/test/test_inspect.py /^ async def __call__(self):$/;" m class:TestPredicates.test_iscoroutine.Cl file: +__call__ Lib/test/test_inspect.py /^ def __call__(*, a):$/;" m class:TestSignatureObject.test_signature_on_method.Test file: +__call__ Lib/test/test_inspect.py /^ def __call__(cls, a):$/;" m class:TestSignatureObject.test_signature_on_class.CM file: +__call__ Lib/test/test_inspect.py /^ def __call__(cls, foo, bar):$/;" m class:TestSignatureObject.test_signature_on_builtin_class.MetaP file: +__call__ Lib/test/test_inspect.py /^ def __call__(cls, nm, bs, dt):$/;" m class:TestSignatureObject.test_signature_on_class.CMM file: +__call__ Lib/test/test_inspect.py /^ def __call__(self):$/;" m class:TestPredicates.test_iscoroutine.Cl2 file: +__call__ Lib/test/test_inspect.py /^ def __call__(self, *args, **kwargs):$/;" m class:TestSignatureObject.test_signature_from_functionlike_object.funclike file: +__call__ Lib/test/test_inspect.py /^ def __call__(self, *args, **kwargs):$/;" m class:TestSignatureObject.test_signature_none_annotation.funclike file: +__call__ Lib/test/test_inspect.py /^ def __call__(self, a):$/;" m class:TestSignatureObject.test_signature_on_callable_objects.Foo file: +__call__ Lib/test/test_inspect.py /^ def __call__(self, a, b):$/;" m class:TestSignatureObject.test_signature_on_decorated.Foo file: +__call__ Lib/test/test_isinstance.py /^ def __call__(self):$/;" m class:AbstractClass file: +__call__ Lib/test/test_iter.py /^ def __call__(self):$/;" m class:CallableIterClass file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, *args):$/;" m class:MonitoringCountTest.check_event_count.Counter file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, *args):$/;" m class:CounterWithDisable file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, event):$/;" m class:RecorderWithDisable file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, from_, to):$/;" m class:JumpRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, line):$/;" m class:LineRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset):$/;" m class:InstructionRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, exc):$/;" m class:ExceptionHandledRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, exc):$/;" m class:ExceptionRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, exc):$/;" m class:ReraiseRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, exc):$/;" m class:ThrowRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, exc):$/;" m class:UnwindRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, func, arg):$/;" m class:CEventRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, func, arg):$/;" m class:CallRecorder file: +__call__ Lib/test/test_monitoring.py /^ def __call__(self, code, offset, val):$/;" m class:ReturnRecorder file: +__call__ Lib/test/test_scope.py /^ def __call__(self, y):$/;" m class:ScopeTests.testNestingThroughClass.make_adder5.Adder file: +__call__ Lib/test/test_ssl.py /^ def __call__(self):$/;" m class:ContextTests.test_load_cert_chain.GetPassCallable file: +__call__ Lib/test/test_sys_setprofile.py /^ def __call__(self, *args):$/;" m class:TestEdgeCases.test_reentrancy.A file: +__call__ Lib/test/test_sys_settrace.py /^ def __call__(self, *args):$/;" m class:TestEdgeCases.test_reentrancy.A file: +__call__ Lib/test/test_tarfile.py /^ def __call__(self, tarinfo, path):$/;" m class:TestExtractionFilters.test_stateful_filter.StatefulFilter file: +__call__ Lib/test/test_threading.py /^ def __call__(self):$/;" m class:ThreadTests.test_boolean_target.BooleanTarget file: +__call__ Lib/test/test_timeit.py /^ def __call__(self):$/;" m class:FakeTimer file: +__call__ Lib/test/test_typing.py /^ def __call__(self):$/;" m class:BaseCallableTests.test_type_erasure.C1 file: +__call__ Lib/test/test_typing.py /^ def __call__(self, *args, **kwargs):$/;" m class:FinalDecoratorTests.test_dunder_final.Wrapper file: +__call__ Lib/test/test_typing.py /^ def __call__(self, *args, **kwargs):$/;" m class:ProtocolTests.test_protocols_isinstance.CustomCallable file: +__call__ Lib/test/test_unittest/test_suite.py /^ def __call__(self, *args, **kw):$/;" m class:Test_TestSuite.test_overriding_call.MySuite file: +__call__ Lib/test/test_unittest/testmock/testcallable.py /^ def __call__(self): pass$/;" m class:TestCallable.test_patch_spec_callable_class.CallableX file: +__call__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __call__(self): pass$/;" m class:TestCallablePredicate.test_call_magic_method.Callable file: +__call__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __call__(self, a): pass$/;" m class:SpecSignatureTest.test_signature_callable.Callable file: +__call__ Lib/test/test_unittest/testmock/testmock.py /^ def __call__(self, a):$/;" f function:MockTest.test_setting_call file: +__call__ Lib/test/test_urllib2.py /^ def __call__(self, *args):$/;" m class:FakeMethod file: +__call__ Lib/test/test_urllib2.py /^ def __call__(self, host, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):$/;" m class:MockHTTPClass file: +__call__ Lib/test/test_weakref.py /^ def __call__(self):$/;" m class:SubclassableWeakrefTestCase.test_subclass_refs.MyRef file: +__call__ Lib/test/test_weakref.py /^ def __call__(self, x):$/;" m class:Callable file: +__call__ Lib/tkinter/__init__.py /^ def __call__(self, *args):$/;" m class:CallWrapper file: +__call__ Lib/tkinter/__init__.py /^ def __call__(self, *args):$/;" m class:_setit file: +__call__ Lib/typing.py /^ __call__ = _idfunc$/;" v class:NewType +__call__ Lib/typing.py /^ __call__ = dict # static method$/;" v class:_TypedDictMeta +__call__ Lib/typing.py /^ def __call__(self, *args, **kwargs):$/;" m class:_BaseGenericAlias file: +__call__ Lib/typing.py /^ def __call__(self, *args, **kwds):$/;" m class:_SpecialForm file: +__call__ Lib/typing.py /^ def __call__[T](self, arg: T, \/) -> T:$/;" m class:_IdentityCallable file: +__call__ Lib/unittest/case.py /^ def __call__(self, *args, **kwds):$/;" m class:TestCase file: +__call__ Lib/unittest/mock.py /^ def __call__(self, \/, *args, **kwargs):$/;" m class:CallableMixin file: +__call__ Lib/unittest/mock.py /^ def __call__(self, \/, *args, **kwargs):$/;" m class:_Call file: +__call__ Lib/unittest/mock.py /^ def __call__(self, f):$/;" m class:_patch_dict file: +__call__ Lib/unittest/mock.py /^ def __call__(self, func):$/;" m class:_patch file: +__call__ Lib/unittest/signals.py /^ def __call__(self, signum, frame):$/;" m class:_InterruptHandler file: +__call__ Lib/unittest/suite.py /^ def __call__(self, *args, **kwds):$/;" m class:BaseTestSuite file: +__call__ Lib/unittest/suite.py /^ def __call__(self, result):$/;" m class:_ErrorHolder file: +__call__ Lib/weakref.py /^ def __call__(self):$/;" m class:WeakMethod file: +__call__ Lib/weakref.py /^ def __call__(self, _=None):$/;" m class:finalize file: +__call__ Lib/wsgiref/types.py /^ def __call__($/;" m class:FileWrapper file: +__call__ Lib/wsgiref/types.py /^ def __call__($/;" m class:StartResponse file: +__call__ Lib/wsgiref/validate.py /^ def __call__(self, s):$/;" m class:WriteWrapper file: +__call__ Lib/xmlrpc/client.py /^ def __call__(self):$/;" m class:MultiCall file: +__call__ Lib/xmlrpc/client.py /^ def __call__(self, *args):$/;" m class:_Method file: +__call__ Lib/xmlrpc/client.py /^ def __call__(self, *args):$/;" m class:_MultiCallMethod file: +__call__ Lib/xmlrpc/client.py /^ def __call__(self, attr):$/;" m class:ServerProxy file: +__call__ Tools/c-analyzer/c_common/scriptutil.py /^ def __call__(self, parser, *, _noop=(lambda a: None)):$/;" m class:CLIArgSpec file: +__call__ Tools/ccbench/ccbench.py /^ def __call__(self, start_time, min_duration, end_event, do_yield=False):$/;" m class:TimedLoop file: +__call__ Tools/i18n/pygettext.py /^ def __call__(self, ttype, tstring, stup, etup, line):$/;" m class:TokenEater file: +__cancelled Lib/test/test_asyncio/test_futures.py /^ __cancelled = False$/;" v class:DuckFuture +__cast Lib/collections/__init__.py /^ def __cast(self, other):$/;" m class:UserList file: +__cast Lib/test/test_richcmp.py /^ def __cast(self, other):$/;" m class:Vector file: +__ceil__ Lib/_pydecimal.py /^ def __ceil__(self):$/;" m class:Decimal file: +__ceil__ Lib/fractions.py /^ def __ceil__(a):$/;" m class:Fraction file: +__ceil__ Lib/numbers.py /^ def __ceil__(self):$/;" m class:Real file: +__ceil__ Lib/test/test_math.py /^ def __ceil__(self):$/;" m class:MathTests.testCeil.FloatCeil file: +__ceil__ Lib/test/test_math.py /^ def __ceil__(self):$/;" m class:MathTests.testCeil.TestCeil file: +__chain_b Lib/difflib.py /^ def __chain_b(self):$/;" m class:SequenceMatcher file: +__check_children Lib/symtable.py /^ def __check_children(self, name):$/;" m class:SymbolTable file: +__check_eager_loader Lib/importlib/util.py /^ def __check_eager_loader(loader):$/;" m class:LazyLoader file: +__class__ Lib/idlelib/idle_test/test_calltip.py /^ __class__ = property({}.__getitem__, {}.__setitem__)$/;" v class:.test_metaclass_class.Type +__class__ Lib/test/test_codeccallbacks.py /^ __class__ = cls$/;" v class:CodecCallbackTest.test_fake_error_class.FakeUnicodeError +__class__ Lib/test/test_descr.py /^ __class__ = property(__getclass)$/;" v class:.test_dir.C +__class__ Lib/test/test_descr.py /^ __class__ = str$/;" v class:.test_proxy_call.FakeStr +__class__ Lib/test/test_inspect.py /^ def __class__(self):$/;" m class:TestGetattrStatic.test_class_as_property.Something file: +__class__ Lib/test/test_isinstance.py /^ __class__ = property(getclass)$/;" v class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.I +__class__ Lib/test/test_isinstance.py /^ __class__ = property(getclass)$/;" v class:TestIsInstanceExceptions.test_class_has_no_bases.I +__class__ Lib/test/test_isinstance.py /^ __class__ = property(getclass)$/;" v class:TestIsInstanceExceptions.test_isinstance_dont_mask_non_attribute_error.C +__class__ Lib/test/test_isinstance.py /^ __class__ = property(getclass)$/;" v class:AbstractInstance +__class__ Lib/test/test_sqlite3/test_factory.py /^ __class__ = sqlite.Cursor$/;" v class:RowFactoryTests.test_fake_cursor_class.FakeCursor +__class__ Lib/test/test_super.py /^ __class__ = 413$/;" v class:TestSuper.test_various___class___pathologies.X +__class__ Lib/test/test_super.py /^ __class__ = 42$/;" v class:TestSuper.test_various___class___pathologies.X +__class__ Lib/test/test_types.py /^ __class__ = types.SimpleNamespace$/;" v class:SimpleNamespaceTests.test_fake_namespace_compare.FakeSimpleNamespace +__class__ Lib/test/test_xml_etree.py /^ def __class__(self):$/;" m class:BadElementTest.test_extend_mutable_list.X file: +__class__ Lib/test/test_xml_etree.py /^ def __class__(self):$/;" m class:BadElementTest.test_extend_mutable_list2.X file: +__class__ Lib/unittest/mock.py /^ def __class__(self):$/;" m class:NonCallableMock file: +__class__ Lib/xml/sax/saxutils.py /^ __class__ = out.__class__$/;" v class:_gettextwriter._wrapper +__class_getitem__ Lib/_collections_abc.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:AsyncIterable +__class_getitem__ Lib/_collections_abc.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Awaitable +__class_getitem__ Lib/_collections_abc.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Container +__class_getitem__ Lib/_collections_abc.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Iterable +__class_getitem__ Lib/_collections_abc.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:MappingView +__class_getitem__ Lib/_collections_abc.py /^ __class_getitem__ = classmethod(_CallableGenericAlias)$/;" v class:Callable +__class_getitem__ Lib/_weakrefset.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:WeakSet +__class_getitem__ Lib/asyncio/futures.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Future +__class_getitem__ Lib/asyncio/queues.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Queue +__class_getitem__ Lib/asyncio/tasks.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Task +__class_getitem__ Lib/concurrent/futures/_base.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:Future +__class_getitem__ Lib/concurrent/futures/thread.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:_WorkItem +__class_getitem__ Lib/contextlib.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:AbstractAsyncContextManager +__class_getitem__ Lib/contextlib.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:AbstractContextManager +__class_getitem__ Lib/csv.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:DictReader +__class_getitem__ Lib/csv.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:DictWriter +__class_getitem__ Lib/ctypes/__init__.py /^ __class_getitem__ = classmethod(_types.GenericAlias)$/;" v class:LibraryLoader +__class_getitem__ Lib/dataclasses.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Field +__class_getitem__ Lib/dataclasses.py /^ def __class_getitem__(cls, type):$/;" m class:InitVar file: +__class_getitem__ Lib/difflib.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:SequenceMatcher +__class_getitem__ Lib/filecmp.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:dircmp +__class_getitem__ Lib/fileinput.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:FileInput +__class_getitem__ Lib/functools.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:cached_property +__class_getitem__ Lib/functools.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:partialmethod +__class_getitem__ Lib/graphlib.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:TopologicalSorter +__class_getitem__ Lib/http/cookies.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:Morsel +__class_getitem__ Lib/logging/__init__.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:LoggerAdapter +__class_getitem__ Lib/logging/__init__.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:StreamHandler +__class_getitem__ Lib/mailbox.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:Mailbox +__class_getitem__ Lib/mailbox.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:_ProxyFile +__class_getitem__ Lib/multiprocessing/managers.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:ValueProxy +__class_getitem__ Lib/multiprocessing/pool.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:ApplyResult +__class_getitem__ Lib/multiprocessing/queues.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:Queue +__class_getitem__ Lib/multiprocessing/queues.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:SimpleQueue +__class_getitem__ Lib/multiprocessing/shared_memory.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:ShareableList +__class_getitem__ Lib/os.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:PathLike +__class_getitem__ Lib/queue.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:Queue +__class_getitem__ Lib/queue.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:_PySimpleQueue +__class_getitem__ Lib/subprocess.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:CompletedProcess +__class_getitem__ Lib/subprocess.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:Popen +__class_getitem__ Lib/tempfile.py /^ __class_getitem__ = classmethod(_types.GenericAlias)$/;" v class:SpooledTemporaryFile +__class_getitem__ Lib/tempfile.py /^ __class_getitem__ = classmethod(_types.GenericAlias)$/;" v class:TemporaryDirectory +__class_getitem__ Lib/test/pydoc_mod.py /^ def __class_getitem__(self, item):$/;" m class:C file: +__class_getitem__ Lib/test/test_genericalias.py /^ __class_getitem__ = classmethod(GenericAlias)$/;" v class:BaseTest.test_repr.MyGeneric +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" f function:TestClassGetitem.test_class_getitem_patched.C.__init_subclass__ file: +__class_getitem__ Lib/test/test_genericclass.py /^ __class_getitem__ = "Surprise!"$/;" v class:TestClassGetitem.test_class_getitem_errors_2.C_not_callable +__class_getitem__ Lib/test/test_genericclass.py /^ __class_getitem__ = None$/;" v class:TestClassGetitem.test_class_getitem_errors_2.C_is_none +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(*args, **kwargs):$/;" m class:TestClassGetitem.test_class_getitem.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls):$/;" m class:TestClassGetitem.test_class_getitem_errors.C_too_few file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_classmethod.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_errors_2.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_format.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_inheritance.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_inheritance_2.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_inheritance_2.D file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_metaclass.Meta file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_metaclass_first.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_with_builtins.A file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_with_metaclass.C file: +__class_getitem__ Lib/test/test_genericclass.py /^ def __class_getitem__(cls, one, two):$/;" m class:TestClassGetitem.test_class_getitem_errors.C_too_many file: +__class_getitem__ Lib/typing.py /^ def __class_getitem__(cls, params):$/;" m class:Annotated file: +__class_getitem__ Lib/unittest/case.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:_AssertRaisesContext +__class_getitem__ Lib/urllib/parse.py /^ __class_getitem__ = classmethod(types.GenericAlias)$/;" v class:_NetlocResultMixinBase +__classcell__ Lib/test/test_descr.py /^ __classcell__ = 42$/;" v class:.test_slots_special2.C2.C3 +__close Lib/xmlrpc/client.py /^ def __close(self):$/;" m class:ServerProxy file: +__closed Lib/_pyio.py /^ __closed = False$/;" v class:IOBase +__cmp__ Lib/test/test_descr.py /^ def __cmp__(self_, other):$/;" m class:.test_rich_comparisons.classic.C file: +__cmp__ Lib/test/test_richcmp.py /^ def __cmp__(self, other):$/;" m class:Number file: +__cmp__ Lib/test/test_richcmp.py /^ def __cmp__(self, other):$/;" m class:Vector file: +__code__ Lib/test/test_inspect.py /^ __code__ = func.__code__$/;" v class:TestSignatureObject.test_signature_functionlike_class.funclike +__code__ Lib/test/test_sys_settrace.py /^ __code__ = code$/;" v class:.test_jump_to_firstlineno.fake_function +__complex__ Lib/_pydecimal.py /^ def __complex__(self):$/;" m class:Decimal file: +__complex__ Lib/collections/__init__.py /^ def __complex__(self):$/;" m class:UserString file: +__complex__ Lib/numbers.py /^ def __complex__(self):$/;" m class:Complex file: +__complex__ Lib/numbers.py /^ def __complex__(self):$/;" m class:Real file: +__complex__ Lib/test/test_capi/test_getargs.py /^ def __complex__(self):$/;" m class:BadComplex file: +__complex__ Lib/test/test_capi/test_getargs.py /^ def __complex__(self):$/;" m class:BadComplex2 file: +__complex__ Lib/test/test_capi/test_getargs.py /^ def __complex__(self):$/;" m class:BadComplex3 file: +__complex__ Lib/test/test_capi/test_getargs.py /^ def __complex__(self):$/;" m class:Complex file: +__complex__ Lib/test/test_capi/test_getargs.py /^ def __complex__(self):$/;" m class:ComplexSubclass2 file: +__complex__ Lib/test/test_class.py /^ __complex__ = __int__$/;" v class:ClassTests.testBadTypeReturned.BadTypeClass +__complex__ Lib/test/test_cmath.py /^ def __complex__(self):$/;" m class:CMathTests.test_user_object.FloatAndComplex file: +__complex__ Lib/test/test_cmath.py /^ def __complex__(self):$/;" m class:CMathTests.test_user_object.MyComplex file: +__complex__ Lib/test/test_cmath.py /^ def __complex__(self):$/;" m class:CMathTests.test_user_object.MyComplexException file: +__complex__ Lib/test/test_complex.py /^ def __complex__(self): return self.value$/;" m class:ComplexTest.test_constructor.NS file: +__complex__ Lib/test/test_complex.py /^ def __complex__(self):$/;" m class:ComplexTest.test_constructor.complex0 file: +__complex__ Lib/test/test_complex.py /^ def __complex__(self):$/;" m class:ComplexTest.test_constructor.complex1 file: +__complex__ Lib/test/test_complex.py /^ def __complex__(self):$/;" m class:ComplexTest.test_constructor.complex2 file: +__complex__ Lib/test/test_complex.py /^ def __complex__(self):$/;" m class:ComplexTest.test_constructor.evilcomplex file: +__complex__ Lib/test/test_typing.py /^ def __complex__(self):$/;" m class:ProtocolTests.test_supports_complex.C file: +__complex__ Lib/typing.py /^ def __complex__(self) -> complex:$/;" m class:SupportsComplex file: +__complex__ Modules/_decimal/tests/deccheck.py /^ __complex__ = __float__$/;" v class:SkipHandler +__concat__ Lib/operator.py /^__concat__ = concat$/;" v +__conform__ Lib/test/test_sqlite3/test_regression.py /^ def __conform__(self, protocol):$/;" m class:RegressionTests.test_bind_mutating_list.X file: +__conform__ Lib/test/test_sqlite3/test_types.py /^ def __conform__(self, _):$/;" m class:ObjectAdaptationTests.test_defect_self_adapt.DefectSelfAdapt file: +__conform__ Lib/test/test_sqlite3/test_types.py /^ def __conform__(self, protocol):$/;" m class:DeclTypesTests.BadConform file: +__conform__ Lib/test/test_sqlite3/test_types.py /^ def __conform__(self, protocol):$/;" m class:DeclTypesTests.Foo file: +__conn Lib/test/smtpd.py /^ def __conn(self):$/;" m class:SMTPChannel file: +__conn Lib/test/smtpd.py /^ def __conn(self, value):$/;" m class:SMTPChannel file: +__contains__ Lib/_collections_abc.py /^ def __contains__(self, item):$/;" m class:ItemsView file: +__contains__ Lib/_collections_abc.py /^ def __contains__(self, key):$/;" m class:KeysView file: +__contains__ Lib/_collections_abc.py /^ def __contains__(self, key):$/;" m class:Mapping file: +__contains__ Lib/_collections_abc.py /^ def __contains__(self, value):$/;" m class:Sequence file: +__contains__ Lib/_collections_abc.py /^ def __contains__(self, value):$/;" m class:ValuesView file: +__contains__ Lib/_collections_abc.py /^ def __contains__(self, x):$/;" m class:Container file: +__contains__ Lib/_weakrefset.py /^ def __contains__(self, item):$/;" m class:WeakSet file: +__contains__ Lib/argparse.py /^ def __contains__(self, key):$/;" m class:Namespace file: +__contains__ Lib/cgi.py /^ def __contains__(self, key):$/;" m class:FieldStorage file: +__contains__ Lib/collections/__init__.py /^ def __contains__(self, char):$/;" m class:UserString file: +__contains__ Lib/collections/__init__.py /^ def __contains__(self, item):$/;" m class:UserList file: +__contains__ Lib/collections/__init__.py /^ def __contains__(self, key):$/;" m class:ChainMap file: +__contains__ Lib/collections/__init__.py /^ def __contains__(self, key):$/;" m class:UserDict file: +__contains__ Lib/configparser.py /^ def __contains__(self, key):$/;" m class:RawConfigParser file: +__contains__ Lib/configparser.py /^ def __contains__(self, key):$/;" m class:SectionProxy file: +__contains__ Lib/dbm/dumb.py /^ def __contains__(self, key):$/;" m class:_Database file: +__contains__ Lib/email/message.py /^ def __contains__(self, name):$/;" m class:Message file: +__contains__ Lib/enum.py /^ def __contains__(cls, value):$/;" m class:EnumType file: +__contains__ Lib/enum.py /^ def __contains__(self, other):$/;" m class:Flag file: +__contains__ Lib/importlib/_bootstrap_external.py /^ def __contains__(self, item):$/;" m class:_NamespacePath file: +__contains__ Lib/importlib/metadata/_meta.py /^ def __contains__(self, item: str) -> bool:$/;" m class:PackageMetadata file: +__contains__ Lib/importlib/metadata/_text.py /^ def __contains__(self, other):$/;" m class:FoldedCase file: +__contains__ Lib/ipaddress.py /^ def __contains__(self, other):$/;" m class:_BaseNetwork file: +__contains__ Lib/mailbox.py /^ def __contains__(self, key):$/;" m class:MH file: +__contains__ Lib/mailbox.py /^ def __contains__(self, key):$/;" m class:Mailbox file: +__contains__ Lib/mailbox.py /^ def __contains__(self, key):$/;" m class:Maildir file: +__contains__ Lib/mailbox.py /^ def __contains__(self, key):$/;" m class:_singlefileMailbox file: +__contains__ Lib/operator.py /^__contains__ = contains$/;" v +__contains__ Lib/shelve.py /^ def __contains__(self, key):$/;" m class:Shelf file: +__contains__ Lib/test/test_collections.py /^ __contains__ = None$/;" v class:TestOneTrickPonyABCs.test_Collection.NonCol +__contains__ Lib/test/test_collections.py /^ def __contains__(self): return False$/;" m class:TestOneTrickPonyABCs.test_Collection.SizeBlock file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self): return True$/;" m class:TestOneTrickPonyABCs.test_Collection.IterBlock file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, elem):$/;" m class:TestCollectionABCs.test_Set_interoperability_with_real_sets.ListSet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, item): return False$/;" m class:TestOneTrickPonyABCs.test_Collection.ColNoIter file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, item): return False$/;" m class:TestOneTrickPonyABCs.test_Collection.ColNoSize file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, item):$/;" m class:TestOneTrickPonyABCs.test_Collection.Col file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, item):$/;" m class:TestOneTrickPonyABCs.test_Collection.ColImpl file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, key):$/;" m class:TestChainMap.test_new_child.lowerdict file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, value):$/;" m class:TestCollectionABCs.test_Set_from_iterable.SetUsingInstanceFromIterable file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, x):$/;" m class:TestCollectionABCs.test_Set.MySet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, x):$/;" m class:TestCollectionABCs.test_arithmetic_Set.MySet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, x):$/;" m class:TestCollectionABCs.test_equality_Set.MySet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, x):$/;" m class:TestCollectionABCs.test_hash_Set.OneTwoThreeSet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, x):$/;" m class:TestCollectionABCs.test_isdisjoint_Set.MySet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, x):$/;" m class:TestCollectionABCs.test_issue16373.MyComparableSet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, x):$/;" m class:TestCollectionABCs.test_issue16373.MyNonComparableSet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self,v):$/;" m class:TestCollectionABCs.test_issue_4920.MySet file: +__contains__ Lib/test/test_collections.py /^ def __contains__(self, item):$/;" m class:WithSet file: +__contains__ Lib/test/test_compile.py /^ def __contains__(self, key):$/;" m class:TestSpecifics.test_subscripts.str_map file: +__contains__ Lib/test/test_contains.py /^ __contains__ = None$/;" v class:TestContains.test_block_fallback.BlockContains +__contains__ Lib/test/test_contains.py /^ def __contains__(self, other):$/;" m class:TestContains.test_block_fallback.ByContains file: +__contains__ Lib/test/test_contains.py /^ def __contains__(self, el):$/;" m class:myset file: +__contains__ Lib/test/test_descr.py /^ def __contains__(self, value):$/;" m class:.test_specials.Proxy file: +__contains__ Lib/test/test_types.py /^ def __contains__(self, key):$/;" m class:MappingProxyTests.test_customdict.customdict file: +__contains__ Lib/test/test_typing.py /^ def __contains__(self, item):$/;" m class:GenericTests.test_extended_generic_rules_subclassing.C1 file: +__contains__ Lib/tracemalloc.py /^ def __contains__(self, frame):$/;" m class:Traceback file: +__contains__ Lib/tracemalloc.py /^ def __contains__(self, trace):$/;" m class:_Traces file: +__contains__ Lib/unittest/mock.py /^ def __contains__(self, item):$/;" m class:_AnyComparer file: +__contains__ Lib/unittest/mock.py /^ def __contains__(self, value):$/;" m class:_CallList file: +__contains__ Lib/weakref.py /^ def __contains__(self, key):$/;" m class:WeakKeyDictionary file: +__contains__ Lib/weakref.py /^ def __contains__(self, key):$/;" m class:WeakValueDictionary file: +__contains__ Lib/wsgiref/headers.py /^ def __contains__(self, name):$/;" m class:Headers file: +__contains__ Lib/xml/dom/minidom.py /^ def __contains__(self, key):$/;" m class:NamedNodeMap file: +__contains__ Lib/xml/sax/xmlreader.py /^ def __contains__(self, name):$/;" m class:AttributesImpl file: +__contains__ PC/layout/support/filesets.py /^ def __contains__(self, f):$/;" m class:FileStemSet file: +__contains__ PC/layout/support/filesets.py /^ def __contains__(self, f):$/;" m class:FileSuffixSet file: +__copy__ Lib/_pydecimal.py /^ __copy__ = copy$/;" v class:Context +__copy__ Lib/_pydecimal.py /^ def __copy__(self):$/;" m class:Decimal file: +__copy__ Lib/collections/__init__.py /^ __copy__ = copy$/;" v class:ChainMap +__copy__ Lib/collections/__init__.py /^ def __copy__(self):$/;" m class:UserDict file: +__copy__ Lib/collections/__init__.py /^ def __copy__(self):$/;" m class:UserList file: +__copy__ Lib/enum.py /^ def __copy__(self):$/;" m class:Enum file: +__copy__ Lib/fractions.py /^ def __copy__(self):$/;" m class:Fraction file: +__copy__ Lib/test/test_copy.py /^ def __copy__(self):$/;" m class:TestCopy.test_copy_copy.C file: +__copy__ Lib/test/test_copy.py /^ def __copy__(self):$/;" m class:TestCopy.test_copy_inst_copy.C file: +__copy__ Lib/test/test_genericalias.py /^ def __copy__(self):$/;" m class:BaseTest.test_copy.X file: +__copy__ Lib/weakref.py /^ __copy__ = copy$/;" v class:WeakKeyDictionary +__copy__ Lib/weakref.py /^ __copy__ = copy$/;" v class:WeakValueDictionary +__copy__ Lib/xml/etree/ElementTree.py /^ def __copy__(self):$/;" m class:Element file: +__corporal Lib/test/test_enum.py /^ __corporal = 'Radar'$/;" v class:TestSpecial.test_private_variable_is_normal_attribute.Private +__cp932ext_decmap Modules/cjkcodecs/mappings_jp.h /^static const ucs2_t __cp932ext_decmap[969] = {$/;" v +__cp932ext_encmap Modules/cjkcodecs/mappings_jp.h /^static const DBCHAR __cp932ext_encmap[9686] = {$/;" v +__cp949_encmap Modules/cjkcodecs/mappings_kr.h /^static const DBCHAR __cp949_encmap[33133] = {$/;" v +__cp949ext_decmap Modules/cjkcodecs/mappings_kr.h /^static const ucs2_t __cp949ext_decmap[9650] = {$/;" v +__cp950ext_decmap Modules/cjkcodecs/mappings_tw.h /^static const ucs2_t __cp950ext_decmap[224] = {$/;" v +__cp950ext_encmap Modules/cjkcodecs/mappings_tw.h /^static const DBCHAR __cp950ext_encmap[581] = {$/;" v +__create_handler Lib/idlelib/multicall.py /^ def __create_handler(self, lists, mc_type, mc_state):$/;" m class:_ComplexBinder file: +__credits__ Lib/lib2to3/pgen2/tokenize.py /^ 'GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro'$/;" v +__credits__ Lib/tarfile.py /^__credits__ = "Gustavo Niemeyer, Niels Gust\\u00e4bel, Richard Townsend."$/;" v +__credits__ Lib/test/pydoc_mod.py /^__credits__ = "Nobody"$/;" v +__credits__ Lib/tokenize.py /^__credits__ = ('GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, '$/;" v +__custom_method__ Lib/test/test_unittest/testmock/testmock.py /^ def __custom_method__(self):$/;" m class:MockTest.test_magic_method_wraps_class.Foo file: +__darwin_blkcnt_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_blkcnt_t = __int64_t$/;" v +__darwin_blksize_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_blksize_t = __int32_t$/;" v +__darwin_clock_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_clock_t = c_ulong$/;" v +__darwin_ct_rune_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_ct_rune_t = c_int$/;" v +__darwin_dev_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_dev_t = __int32_t$/;" v +__darwin_fsblkcnt_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_fsblkcnt_t = c_uint$/;" v +__darwin_fsfilcnt_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_fsfilcnt_t = c_uint$/;" v +__darwin_gid_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_gid_t = __uint32_t$/;" v +__darwin_id_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_id_t = __uint32_t$/;" v +__darwin_ino_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_ino_t = __uint32_t$/;" v +__darwin_intptr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_intptr_t = c_long$/;" v +__darwin_mach_port_name_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_mach_port_name_t = __darwin_natural_t$/;" v +__darwin_mach_port_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_mach_port_t = __darwin_mach_port_name_t$/;" v +__darwin_mbstate_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_mbstate_t = __mbstate_t$/;" v +__darwin_mcontext64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_mcontext64_t = POINTER(mcontext64)$/;" v +__darwin_mcontext_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_mcontext_t = POINTER(mcontext)$/;" v +__darwin_mode_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_mode_t = __uint16_t$/;" v +__darwin_natural_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_natural_t = c_uint$/;" v +__darwin_nl_item Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_nl_item = c_int$/;" v +__darwin_off_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_off_t = __int64_t$/;" v +__darwin_pid_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pid_t = __int32_t$/;" v +__darwin_pthread_attr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_attr_t = _opaque_pthread_attr_t$/;" v +__darwin_pthread_cond_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_cond_t = _opaque_pthread_cond_t$/;" v +__darwin_pthread_condattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_condattr_t = _opaque_pthread_condattr_t$/;" v +__darwin_pthread_handler_rec Lib/test/test_lib2to3/data/infinite_recursion.py /^class __darwin_pthread_handler_rec(Structure):$/;" c +__darwin_pthread_key_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_key_t = c_ulong$/;" v +__darwin_pthread_mutex_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_mutex_t = _opaque_pthread_mutex_t$/;" v +__darwin_pthread_mutexattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_mutexattr_t = _opaque_pthread_mutexattr_t$/;" v +__darwin_pthread_once_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_once_t = _opaque_pthread_once_t$/;" v +__darwin_pthread_rwlock_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_rwlock_t = _opaque_pthread_rwlock_t$/;" v +__darwin_pthread_rwlockattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_rwlockattr_t = _opaque_pthread_rwlockattr_t$/;" v +__darwin_pthread_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_pthread_t = POINTER(_opaque_pthread_t)$/;" v +__darwin_ptrdiff_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_ptrdiff_t = c_int$/;" v +__darwin_rune_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_rune_t = __darwin_wchar_t$/;" v +__darwin_sigset_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_sigset_t = __uint32_t$/;" v +__darwin_size_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_size_t = c_ulong$/;" v +__darwin_socklen_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_socklen_t = __uint32_t$/;" v +__darwin_ssize_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_ssize_t = c_long$/;" v +__darwin_stack_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_stack_t = sigaltstack$/;" v +__darwin_suseconds_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_suseconds_t = __int32_t$/;" v +__darwin_time_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_time_t = c_long$/;" v +__darwin_ucontext64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_ucontext64_t = ucontext64$/;" v +__darwin_ucontext_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_ucontext_t = ucontext$/;" v +__darwin_uid_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_uid_t = __uint32_t$/;" v +__darwin_useconds_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_useconds_t = __uint32_t$/;" v +__darwin_uuid_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_uuid_t = c_ubyte * 16$/;" v +__darwin_va_list Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_va_list = STRING$/;" v +__darwin_wchar_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_wchar_t = c_int$/;" v +__darwin_wctrans_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_wctrans_t = c_int$/;" v +__darwin_wctype_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_wctype_t = c_ulong$/;" v +__darwin_wint_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__darwin_wint_t = c_int$/;" v +__data Lib/test/smtpd.py /^ def __data(self):$/;" m class:SMTPChannel file: +__data Lib/test/smtpd.py /^ def __data(self, value):$/;" m class:SMTPChannel file: +__date__ Lib/logging/__init__.py /^__date__ = "07 February 2010"$/;" v +__date__ Lib/pydoc.py /^__date__ = "26 February 2001"$/;" v +__deepcopy__ Lib/_pydecimal.py /^ def __deepcopy__(self, memo):$/;" m class:Decimal file: +__deepcopy__ Lib/enum.py /^ def __deepcopy__(self,memo):$/;" m class:Enum file: +__deepcopy__ Lib/fractions.py /^ def __deepcopy__(self, memo):$/;" m class:Fraction file: +__deepcopy__ Lib/multiprocessing/managers.py /^ def __deepcopy__(self, memo):$/;" m class:BaseProxy file: +__deepcopy__ Lib/test/test_copy.py /^ def __deepcopy__(self, memo):$/;" m class:TestCopy.test_deepcopy_inst_deepcopy.C file: +__deepcopy__ Lib/test/test_copy.py /^ def __deepcopy__(self, memo=None):$/;" m class:TestCopy.test_deepcopy_deepcopy.C file: +__deepcopy__ Lib/test/test_genericalias.py /^ def __deepcopy__(self, memo):$/;" m class:BaseTest.test_copy.X file: +__deepcopy__ Lib/test/test_set.py /^ def __deepcopy__(self, memo=None):$/;" m class:TestJointOps.test_deepcopy.Tracer file: +__deepcopy__ Lib/test/test_xml_etree.py /^ def __deepcopy__(self, memo):$/;" m class:BasicElementTest.test_augmentation_type_errors.E file: +__deepcopy__ Lib/weakref.py /^ def __deepcopy__(self, memo):$/;" m class:WeakKeyDictionary file: +__deepcopy__ Lib/weakref.py /^ def __deepcopy__(self, memo):$/;" m class:WeakValueDictionary file: +__defaults__ Lib/test/test_inspect.py /^ __defaults__ = func.__defaults__$/;" v class:TestSignatureObject.test_signature_functionlike_class.funclike +__del__ Lib/_pyio.py /^ def __del__(self):$/;" m class:FileIO file: +__del__ Lib/_pyio.py /^ def __del__(self):$/;" m class:IOBase file: +__del__ Lib/aifc.py /^ def __del__(self):$/;" m class:Aifc_write file: +__del__ Lib/asyncio/base_events.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:BaseEventLoop file: +__del__ Lib/asyncio/base_subprocess.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:BaseSubprocessTransport file: +__del__ Lib/asyncio/futures.py /^ def __del__(self):$/;" m class:Future file: +__del__ Lib/asyncio/proactor_events.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:_ProactorBasePipeTransport file: +__del__ Lib/asyncio/selector_events.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:_SelectorTransport file: +__del__ Lib/asyncio/sslproto.py /^ def __del__(self, _warnings=warnings):$/;" m class:_SSLProtocolTransport file: +__del__ Lib/asyncio/streams.py /^ def __del__(self):$/;" m class:StreamReaderProtocol file: +__del__ Lib/asyncio/streams.py /^ def __del__(self):$/;" m class:StreamWriter file: +__del__ Lib/asyncio/tasks.py /^ def __del__(self):$/;" m class:Task file: +__del__ Lib/asyncio/unix_events.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:ThreadedChildWatcher file: +__del__ Lib/asyncio/unix_events.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:_UnixReadPipeTransport file: +__del__ Lib/asyncio/unix_events.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:_UnixWritePipeTransport file: +__del__ Lib/asyncio/windows_events.py /^ __del__ = close$/;" v class:PipeServer +__del__ Lib/asyncio/windows_events.py /^ def __del__(self):$/;" m class:IocpProactor file: +__del__ Lib/asyncio/windows_utils.py /^ def __del__(self, _warn=warnings.warn):$/;" m class:PipeHandle file: +__del__ Lib/cgi.py /^ def __del__(self):$/;" m class:FieldStorage file: +__del__ Lib/dbm/dumb.py /^ __del__ = close$/;" v class:_Database +__del__ Lib/fileinput.py /^ def __del__(self):$/;" m class:FileInput file: +__del__ Lib/idlelib/codecontext.py /^ def __del__(self):$/;" m class:CodeContext file: +__del__ Lib/idlelib/multicall.py /^ def __del__(self):$/;" m class:MultiCallCreator.MultiCall file: +__del__ Lib/idlelib/multicall.py /^ def __del__(self):$/;" m class:_ComplexBinder file: +__del__ Lib/idlelib/multicall.py /^ def __del__(self):$/;" m class:_SimpleBinder file: +__del__ Lib/idlelib/tooltip.py /^ def __del__(self):$/;" m class:OnHoverTooltipBase file: +__del__ Lib/idlelib/tooltip.py /^ def __del__(self):$/;" m class:TooltipBase file: +__del__ Lib/multiprocessing/connection.py /^ def __del__(self):$/;" m class:_ConnectionBase file: +__del__ Lib/multiprocessing/managers.py /^ def __del__(self):$/;" m class:SyncManager.SharedMemoryManager file: +__del__ Lib/multiprocessing/managers.py /^ def __del__(self):$/;" m class:SyncManager._SharedMemoryTracker file: +__del__ Lib/multiprocessing/pool.py /^ def __del__(self, _warn=warnings.warn, RUN=RUN):$/;" m class:Pool file: +__del__ Lib/multiprocessing/shared_memory.py /^ def __del__(self):$/;" m class:SharedMemory file: +__del__ Lib/shelve.py /^ def __del__(self):$/;" m class:Shelf file: +__del__ Lib/subprocess.py /^ __del__ = Close$/;" v class:.Handle +__del__ Lib/subprocess.py /^ def __del__(self, _maxsize=sys.maxsize, _warn=warnings.warn):$/;" m class:Popen file: +__del__ Lib/sunau.py /^ def __del__(self):$/;" m class:Au_read file: +__del__ Lib/sunau.py /^ def __del__(self):$/;" m class:Au_write file: +__del__ Lib/tarfile.py /^ def __del__(self):$/;" m class:_Stream file: +__del__ Lib/telnetlib.py /^ def __del__(self):$/;" m class:Telnet file: +__del__ Lib/tempfile.py /^ def __del__(self):$/;" m class:SpooledTemporaryFile file: +__del__ Lib/tempfile.py /^ def __del__(self):$/;" m class:_TemporaryFileCloser file: +__del__ Lib/test/_test_multiprocessing.py /^ def __del__(self):$/;" m class:CountedObject file: +__del__ Lib/test/final_a.py /^ def __del__(self):$/;" m class:C file: +__del__ Lib/test/final_b.py /^ def __del__(self):$/;" m class:C file: +__del__ Lib/test/libregrtest/win_utils.py /^ def __del__(self,$/;" m class:WindowsLoadTracker file: +__del__ Lib/test/support/__init__.py /^ def __del__(self):$/;" m class:check_free_after_iterating.A file: +__del__ Lib/test/support/asyncore.py /^ def __del__(self):$/;" m class:.file_wrapper file: +__del__ Lib/test/test_asyncio/test_futures.py /^ def __del__(self):$/;" m class:BaseFutureTests.test_future_del_collect.Evil file: +__del__ Lib/test/test_asyncio/test_tasks.py /^ def __del__(self):$/;" m class:BaseTaskTests.test_task_del_collect.Evil file: +__del__ Lib/test/test_capi/test_misc.py /^ def __del__(self):$/;" m class:CAPITest.do_test_trashcan_python_class.PyList file: +__del__ Lib/test/test_capi/test_misc.py /^ def __del__(self):$/;" m class:CAPITest.test_subclass_of_heap_gc_ctype_with_del_modifying_dunder_class_only_decrefs_once.B file: +__del__ Lib/test/test_class.py /^ def __del__(self):$/;" m class:ClassTests.testDel.DelTest file: +__del__ Lib/test/test_concurrent_futures/test_process_pool.py /^ def __del__(self):$/;" m class:EventfulGCObj file: +__del__ Lib/test/test_ctypes/test_callbacks.py /^ def __del__(self):$/;" m class:Callbacks.test_issue12483.Nasty file: +__del__ Lib/test/test_ctypes/test_parameters.py /^ def __del__(self):$/;" m class:SimpleTypesTestCase.test_from_param_result_refcount.X file: +__del__ Lib/test/test_ctypes/test_parameters.py /^ def __del__(self):$/;" m class:SimpleTypesTestCase.test_from_param_result_refcount.Y file: +__del__ Lib/test/test_ctypes/test_structures.py /^ def __del__(self):$/;" m class:StructureTestCase.test_pass_by_value_finalizer.Test file: +__del__ Lib/test/test_curses.py /^ def __del__(self):$/;" m class:TestCurses.test_userptr_segfault.A file: +__del__ Lib/test/test_descr.py /^ def __del__(self):$/;" m class:.test_delete_hook.C file: +__del__ Lib/test/test_descr.py /^ def __del__(self):$/;" m class:.test_evil_type_name.Nasty file: +__del__ Lib/test/test_descr.py /^ def __del__(self):$/;" m class:.test_set_class.A file: +__del__ Lib/test/test_descr.py /^ def __del__(self):$/;" m class:.test_slots.Counted file: +__del__ Lib/test/test_descr.py /^ def __del__(self):$/;" m class:.test_subtype_resurrection.C file: +__del__ Lib/test/test_descr.py /^ def __del__(self):$/;" m class:.test_weakref_segfault.Provoker file: +__del__ Lib/test/test_descr.py /^ def __del__(self_):$/;" m class:.test_slots.H file: +__del__ Lib/test/test_dict.py /^ def __del__(self):$/;" m class:DictTest.check_reentrant_insertion.Mutating file: +__del__ Lib/test/test_dict.py /^ def __del__(self):$/;" m class:DictTest.test_equal_operator_modifying_operand.X file: +__del__ Lib/test/test_dict.py /^ def __del__(self):$/;" m class:DictTest.test_oob_indexing_dictiter_iternextitem.X file: +__del__ Lib/test/test_dynamic.py /^ def __del__(self):$/;" m class:TestTracing.test_after_specialization.C file: +__del__ Lib/test/test_exceptions.py /^ def __del__(self):$/;" m class:ExceptionTests.test_3114.MyObject file: +__del__ Lib/test/test_exceptions.py /^ def __del__(self):$/;" m class:ExceptionTests.test_unraisable.BrokenDel file: +__del__ Lib/test/test_finalization.py /^ def __del__(self):$/;" m class:LegacyBase file: +__del__ Lib/test/test_finalization.py /^ def __del__(self):$/;" m class:NonGCSimpleBase file: +__del__ Lib/test/test_frame.py /^ def __del__(self):$/;" m class:TestIncompleteFrameAreInvisible.test_sneaky_frame_object_teardown.SneakyDel file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_bug21435.B file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_del.A file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_del_newclass.A file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_is_finalized.Lazarus file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_resurrection_does_not_block_cleanup_of_other_objects.Z file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_resurrection_is_transitive.Lazarus file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_resurrection_only_happens_once_per_object.Lazarus file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_trashcan.Ouch file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTests.test_trashcan_threads.C file: +__del__ Lib/test/test_gc.py /^ def __del__(self):$/;" m class:GCTogglingTests.test_bug1055820d.D file: +__del__ Lib/test/test_generators.py /^ def __del__(self):$/;" m class:GeneratorTest.test_handle_frame_object_in_creation.Sneaky file: +__del__ Lib/test/test_io.py /^ def __del__(self):$/;" m class:CommonBufferedTests.test_override_destructor.MyBufferedIO file: +__del__ Lib/test/test_io.py /^ def __del__(self):$/;" m class:IOTest._check_base_destructor.MyIO file: +__del__ Lib/test/test_io.py /^ def __del__(self):$/;" m class:IOTest.test_destructor.MyFileIO file: +__del__ Lib/test/test_io.py /^ def __del__(self):$/;" m class:TextIOWrapperTest.test_override_destructor.MyTextIO file: +__del__ Lib/test/test_iter.py /^ def __del__(self):$/;" m class:TestCase.test_ref_counting_behavior.C file: +__del__ Lib/test/test_ordered_dict.py /^ def __del__(self):$/;" m class:OrderedDictTests.test_highly_nested_subclass.MyOD file: +__del__ Lib/test/test_queue.py /^ def __del__(self):$/;" m class:CSimpleQueueTest.test_reentrancy.Circular file: +__del__ Lib/test/test_raise.py /^ def __del__(self):$/;" m class:TestContext.test_3611.C file: +__del__ Lib/test/test_scope.py /^ def __del__(self):$/;" m class:ScopeTests.testFreeingCell.Special file: +__del__ Lib/test/test_scope.py /^ def __del__(self):$/;" m class:ScopeTests.testLeaks.Foo file: +__del__ Lib/test/test_sort.py /^ def __del__(self):$/;" m class:TestDecorateSortUndecorate.test_key_with_mutating_del.SortKiller file: +__del__ Lib/test/test_sort.py /^ def __del__(self):$/;" m class:TestDecorateSortUndecorate.test_key_with_mutating_del_and_exception.SortKiller file: +__del__ Lib/test/test_sqlite3/test_regression.py /^ def __del__(self):$/;" m class:RegressionTests.test_set_isolation_level.CustomStr file: +__del__ Lib/test/test_subprocess.py /^ def __del__(self):$/;" m class:POSIXProcessTestCase.PopenNoDestructor file: +__del__ Lib/test/test_sys.py /^ def __del__(self):$/;" m class:UnraisableHookTest.test_original_unraisablehook_err.BrokenDel file: +__del__ Lib/test/test_sys.py /^ def __del__(self):$/;" m class:UnraisableHookTest.test_original_unraisablehook_err.BrokenExceptionDel file: +__del__ Lib/test/test_sys_setprofile.py /^ def __del__(self):$/;" m class:TestEdgeCases.test_reentrancy.A file: +__del__ Lib/test/test_sys_settrace.py /^ def __del__(self):$/;" m class:TestEdgeCases.test_reentrancy.A file: +__del__ Lib/test/test_tempfile.py /^ def __del__(self):$/;" m class:TestMkstempInner.mkstemped file: +__del__ Lib/test/test_tempfile.py /^ def __del__(self):$/;" m class:TestMktemp.mktemped file: +__del__ Lib/test/test_unittest/test_case.py /^ def __del__(self):$/;" m class:.test_no_exception_leak.MyException file: +__del__ Lib/test/test_weakref.py /^ def __del__(self): pass$/;" m class:ReferencesTestCase.test_callback_gcs.ObjectWithDel file: +__del__ Lib/test/test_weakref.py /^ def __del__(self):$/;" m class:ReferencesTestCase.test_ref_created_during_del.Target file: +__del__ Lib/test/test_xml_etree.py /^ def __del__(self):$/;" m class:BadElementTest.test_element_get_tail.X file: +__del__ Lib/test/test_xml_etree.py /^ def __del__(self):$/;" m class:BadElementTest.test_element_get_text.X file: +__del__ Lib/test/test_xml_etree_c.py /^ def __del__(self):$/;" m class:MiscTests.test_bpo_31728.X file: +__del__ Lib/tkinter/__init__.py /^ def __del__(self):$/;" m class:Image file: +__del__ Lib/tkinter/__init__.py /^ def __del__(self):$/;" m class:Variable file: +__del__ Lib/tkinter/dnd.py /^ def __del__(self):$/;" m class:DndHandler file: +__del__ Lib/tkinter/font.py /^ def __del__(self):$/;" m class:Font file: +__del__ Lib/unittest/async_case.py /^ def __del__(self):$/;" m class:IsolatedAsyncioTestCase file: +__del__ Lib/urllib/request.py /^ def __del__(self):$/;" m class:URLopener file: +__del__ Lib/wave.py /^ def __del__(self):$/;" m class:Wave_read file: +__del__ Lib/wave.py /^ def __del__(self):$/;" m class:Wave_write file: +__del__ Lib/wsgiref/validate.py /^ def __del__(self):$/;" m class:IteratorWrapper file: +__del__ Lib/zipfile/__init__.py /^ def __del__(self):$/;" m class:ZipFile file: +__del__ Tools/c-analyzer/c_common/clsutil.py /^ def __del__(_self):$/;" f function:Slot._ensure___del__ file: +__delattr__ Lib/_pydecimal.py /^ def __delattr__(self, name):$/;" m class:Context file: +__delattr__ Lib/_threading_local.py /^ def __delattr__(self, name):$/;" m class:local file: +__delattr__ Lib/enum.py /^ def __delattr__(cls, attr):$/;" m class:EnumType file: +__delattr__ Lib/importlib/util.py /^ def __delattr__(self, attr):$/;" m class:_LazyModule file: +__delattr__ Lib/multiprocessing/managers.py /^ def __delattr__(self, key):$/;" m class:NamespaceProxy file: +__delattr__ Lib/test/test_class.py /^ def __delattr__(self, *args):$/;" m class:ClassTests.testGetSetAndDel.ExtraTests file: +__delattr__ Lib/test/test_dataclasses.py /^ def __delattr__(self):$/;" m class:TestFrozen.test_overwriting_frozen.C file: +__delattr__ Lib/test/test_descr.py /^ def __delattr__(self, name):$/;" m class:.test_overloading.C file: +__delattr__ Lib/test/test_descr.py /^ def __delattr__(self, name):$/;" m class:ClassPropertiesAndMethods.test_module_subclasses.MM file: +__delattr__ Lib/test/test_unittest/testmock/testpatch.py /^ def __delattr__(self, name):$/;" m class:_get_proxy.Proxy file: +__delattr__ Lib/unittest/mock.py /^ def __delattr__(self, name):$/;" m class:NonCallableMock file: +__delattr__ Tools/c-analyzer/c_analyzer/info.py /^ def __delattr__(self, name):$/;" m class:Analyzed file: +__delete__ Lib/enum.py /^ def __delete__(self, instance):$/;" m class:property file: +__delete__ Lib/test/test_descr.py /^ def __delete__(self, obj):$/;" m class:.test_compattr.C.computed_attribute file: +__delete__ Lib/test/test_inspect.py /^ def __delete__(self, name): pass$/;" m class:TestIsDataDescriptor.test_custom_descriptors.DataDescriptor1 file: +__delete__ Lib/types.py /^ def __delete__(self, instance):$/;" m class:DynamicClassAttribute file: +__delete__ Tools/c-analyzer/c_common/clsutil.py /^ def __delete__(self, obj):$/;" m class:Slot file: +__delete_x Lib/test/test_descr.py /^ def __delete_x(self):$/;" m class:.test_compattr.C file: +__delitem__ Lib/_collections_abc.py /^ def __delitem__(self, index):$/;" m class:MutableSequence file: +__delitem__ Lib/_collections_abc.py /^ def __delitem__(self, key):$/;" m class:MutableMapping file: +__delitem__ Lib/collections/__init__.py /^ def __delitem__(self, elem):$/;" m class:Counter file: +__delitem__ Lib/collections/__init__.py /^ def __delitem__(self, i):$/;" m class:UserList file: +__delitem__ Lib/collections/__init__.py /^ def __delitem__(self, key):$/;" m class:ChainMap file: +__delitem__ Lib/collections/__init__.py /^ def __delitem__(self, key):$/;" m class:UserDict file: +__delitem__ Lib/collections/__init__.py /^ def __delitem__(self, key, dict_delitem=dict.__delitem__):$/;" m class:OrderedDict file: +__delitem__ Lib/configparser.py /^ def __delitem__(self, key):$/;" m class:ConverterMapping file: +__delitem__ Lib/configparser.py /^ def __delitem__(self, key):$/;" m class:RawConfigParser file: +__delitem__ Lib/configparser.py /^ def __delitem__(self, key):$/;" m class:SectionProxy file: +__delitem__ Lib/dbm/dumb.py /^ def __delitem__(self, key):$/;" m class:_Database file: +__delitem__ Lib/email/message.py /^ def __delitem__(self, name):$/;" m class:Message file: +__delitem__ Lib/mailbox.py /^ def __delitem__(self, key):$/;" m class:Mailbox file: +__delitem__ Lib/multiprocessing/pool.py /^ def __delitem__(self, item):$/;" m class:_PoolCache file: +__delitem__ Lib/operator.py /^__delitem__ = delitem$/;" v +__delitem__ Lib/os.py /^ def __delitem__(self, key):$/;" m class:_Environ file: +__delitem__ Lib/re/_parser.py /^ def __delitem__(self, index):$/;" m class:SubPattern file: +__delitem__ Lib/shelve.py /^ def __delitem__(self, key):$/;" m class:Shelf file: +__delitem__ Lib/test/support/os_helper.py /^ def __delitem__(self, envvar):$/;" m class:EnvironmentVarGuard file: +__delitem__ Lib/test/test_capi/test_abstract.py /^ def __delitem__(self, index):$/;" m class:CAPITest.test_sequence_delslice.Custom file: +__delitem__ Lib/test/test_capi/test_abstract.py /^ def __delitem__(self, key):$/;" m class:ProxyDelItem file: +__delitem__ Lib/test/test_capi/test_dict.py /^ def __delitem__(self, key):$/;" m class:DictSubclass file: +__delitem__ Lib/test/test_collections.py /^ def __delitem__(self, index):$/;" m class:TestCollectionABCs.test_MutableSequence_mixins.MutableSequenceSubclass file: +__delitem__ Lib/test/test_compile.py /^ def __delitem__(self, key):$/;" m class:TestSpecifics.test_subscripts.str_map file: +__delitem__ Lib/test/test_descr.py /^ def __delitem__(self, key):$/;" m class:.test_overloading.C file: +__delitem__ Lib/test/test_ordered_dict.py /^ def __delitem__(self, key):$/;" m class:SimpleLRUCache file: +__delitem__ Lib/test/test_shelve.py /^ def __delitem__(self, key):$/;" m class:byteskeydict file: +__delitem__ Lib/test/test_typing.py /^ def __delitem__(self, k):$/;" m class:CollectionsAbcTests.test_subclassing.MMB file: +__delitem__ Lib/test/test_typing.py /^ def __delitem__(self, k):$/;" m class:CollectionsAbcTests.test_subclassing.MMC file: +__delitem__ Lib/test/test_typing.py /^ def __delitem__(self, k):$/;" m class:GenericTests.test_abc_bases.MM file: +__delitem__ Lib/test/test_unittest/testmock/testpatch.py /^ def __delitem__(self, name):$/;" m class:Container file: +__delitem__ Lib/test/test_weakref.py /^ def __delitem__(self, accessor):$/;" m class:ReferencesTestCase.test_proxy_deletion.Foo file: +__delitem__ Lib/weakref.py /^ def __delitem__(self, key):$/;" m class:WeakKeyDictionary file: +__delitem__ Lib/weakref.py /^ def __delitem__(self, key):$/;" m class:WeakValueDictionary file: +__delitem__ Lib/wsgiref/headers.py /^ def __delitem__(self,name):$/;" m class:Headers file: +__delitem__ Lib/xml/dom/minidom.py /^ def __delitem__(self, attname_or_tuple):$/;" m class:NamedNodeMap file: +__delitem__ Lib/xml/etree/ElementTree.py /^ def __delitem__(self, index):$/;" m class:Element file: +__dict__ Include/internal/pycore_ast_state.h /^ PyObject *__dict__;$/;" m struct:ast_state +__dict__ Lib/test/test_builtin.py /^ __dict__ = 8$/;" v class:BuiltinTest.test_dir.Foo +__dict__ Lib/test/test_builtin.py /^ __dict__ = property(fget=getDict)$/;" v class:BuiltinTest.C_get_vars +__dict__ Lib/test/test_ctypes/test_parameters.py /^ def __dict__(self):$/;" m class:SimpleTypesTestCase.test_issue31311.BadStruct file: +__dict__ Lib/test/test_ctypes/test_parameters.py /^ def __dict__(self):$/;" m class:SimpleTypesTestCase.test_issue31311.WorseStruct file: +__dict__ Lib/test/test_descr.py /^ __dict__ = property(getdict)$/;" v class:.test_dir.M2 +__dict__ Lib/test/test_inspect.py /^ def __dict__(self):$/;" m class:TestGetattrStatic.test_dict_as_property.Foo file: +__dict__ Lib/test/test_inspect.py /^ def __dict__(self):$/;" m class:TestGetattrStatic.test_metaclass_dict_as_property.Meta file: +__dict__ Lib/test/test_inspect.py /^ def __dict__(self):$/;" m class:TestGetattrStatic.test_metaclass_with_metaclass_with_dict_as_property.MetaMeta file: +__dict__ Lib/test/test_inspect.py /^ def __dict__(self):$/;" m class:TestGetattrStatic.test_mutated_mro.Foo file: +__dict_replace Lib/xml/sax/saxutils.py /^def __dict_replace(s, d):$/;" f file: +__dir__ Lib/concurrent/futures/__init__.py /^def __dir__():$/;" f file: +__dir__ Lib/enum.py /^ def __dir__(cls):$/;" m class:EnumType file: +__dir__ Lib/enum.py /^ def __dir__(self):$/;" m class:Enum file: +__dir__ Lib/test/support/_hypothesis_stubs/strategies.py /^def __dir__():$/;" f file: +__dir__ Lib/test/test_builtin.py /^ def __dir__(self):$/;" m class:BuiltinTest.test_dir.Foo file: +__dir__ Lib/test/test_inspect.py /^ def __dir__(cls):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute.Meta file: +__dir__ Lib/test/test_inspect.py /^ def __dir__(cls):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta1 file: +__dir__ Lib/test/test_inspect.py /^ def __dir__(cls):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta2 file: +__dir__ Lib/test/test_inspect.py /^ def __dir__(cls):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta3 file: +__dir__ Lib/test/test_inspect.py /^ def __dir__(cls):$/;" m class:TestClassesAndFunctions.test_classify_class_attrs_with_buggy_dir.M file: +__dir__ Lib/test/test_inspect.py /^ def __dir__(cls):$/;" m class:TestClassesAndFunctions.test_getmembers_with_buggy_dir.M file: +__dir__ Lib/test/test_inspect.py /^ def __dir__(self):$/;" m class:TestClassesAndFunctions.test_classify_metaclass_class_attribute.Meta file: +__dir__ Lib/test/test_module/bad_getattr.py /^__dir__ = "Surprise again!"$/;" v +__dir__ Lib/test/test_module/bad_getattr2.py /^def __dir__(bad_sig):$/;" f file: +__dir__ Lib/test/test_module/good_getattr.py /^def __dir__():$/;" f file: +__dir__ Lib/test/test_pydoc.py /^ def __dir__(cls):$/;" m class:PydocWithMetaClasses.test_buggy_dir.M file: +__dir__ Lib/test/test_pydoc.py /^ def __dir__(cls):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithOneMeta.Meta file: +__dir__ Lib/test/test_pydoc.py /^ def __dir__(cls):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta1 file: +__dir__ Lib/test/test_pydoc.py /^ def __dir__(cls):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta2 file: +__dir__ Lib/test/test_pydoc.py /^ def __dir__(cls):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta3 file: +__dir__ Lib/test/test_traceback.py /^ def __dir__(self):$/;" m class:SuggestionFormattingTestBase.test_attribute_error_with_failing_dict.T file: +__dir__ Lib/test/test_traceback.py /^ def __dir__(self):$/;" m class:SuggestionFormattingTestBase.test_getattr_suggestions_for_same_name.A file: +__dir__ Lib/test/test_typing.py /^ def __dir__(self):$/;" m class:ProtocolTests.test_protocols_isinstance_not_fooled_by_custom_dir.CustomDirWithX file: +__dir__ Lib/test/test_typing.py /^ def __dir__(self):$/;" m class:ProtocolTests.test_protocols_isinstance_not_fooled_by_custom_dir.CustomDirWithoutX file: +__dir__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __dir__(self):$/;" m class:SpecSignatureTest.test_spec_has_function_not_in_bases.CrazyClass file: +__dir__ Lib/typing.py /^ def __dir__(self):$/;" m class:_BaseGenericAlias file: +__dir__ Lib/unittest/__init__.py /^def __dir__():$/;" f file: +__dir__ Lib/unittest/mock.py /^ def __dir__(self):$/;" m class:NonCallableMock file: +__dir__ Lib/zoneinfo/__init__.py /^def __dir__():$/;" f file: +__dir__ Tools/c-analyzer/c_analyzer/info.py /^ def __dir__(self):$/;" m class:Analyzed file: +__divmod__ Lib/_pydatetime.py /^ def __divmod__(self, other):$/;" m class:timedelta file: +__divmod__ Lib/_pydecimal.py /^ def __divmod__(self, other, context=None):$/;" m class:Decimal file: +__divmod__ Lib/numbers.py /^ def __divmod__(self, other):$/;" m class:Real file: +__divmod__ Lib/test/datetimetester.py /^ def __divmod__(self, other):$/;" m class:TestTimeDelta.test_issue31752.Sum file: +__divmod__ Lib/test/test_binop.py /^ def __divmod__(self, other):$/;" m class:Rat file: +__divmod__ Lib/test/test_decimal.py /^ def __divmod__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__divmod__ Lib/test/test_os.py /^ def __divmod__(*args):$/;" m class:UtimeTests.test_issue31577.get_bad_int.BadInt file: +__doc__ Include/internal/pycore_ast_state.h /^ PyObject *__doc__;$/;" m struct:ast_state +__doc__ Lib/io.py /^ __doc__ = _io._BufferedIOBase.__doc__$/;" v class:BufferedIOBase +__doc__ Lib/io.py /^ __doc__ = _io._IOBase.__doc__$/;" v class:IOBase +__doc__ Lib/io.py /^ __doc__ = _io._RawIOBase.__doc__$/;" v class:RawIOBase +__doc__ Lib/io.py /^ __doc__ = _io._TextIOBase.__doc__$/;" v class:TextIOBase +__doc__ Lib/test/test_descr.py /^ __doc__ = DocDescr()$/;" v class:.test_doc_descriptor.NewClass +__doc__ Lib/test/test_property.py /^ def __doc__(cls):$/;" m class:PropertyTests.test_class_property.A file: +__doc__ Lib/test/test_property.py /^ def __doc__(cls):$/;" m class:PropertyTests.test_class_property_override.A file: +__docformat__ Lib/doctest.py /^__docformat__ = 'reStructuredText en'$/;" v +__dump Lib/xmlrpc/client.py /^ def __dump(self, value, write):$/;" m class:Marshaller file: +__eager_start Lib/asyncio/tasks.py /^ def __eager_start(self):$/;" m class:Task file: +__email__ Lib/test/test_keywordonlyarg.py /^__email__ = "seojiwon at gmail dot com"$/;" v +__email__ Lib/test/test_with.py /^__email__ = "mbland at acm dot org"$/;" v +__enter__ Lib/_pydecimal.py /^ def __enter__(self):$/;" m class:_ContextManager file: +__enter__ Lib/_pyio.py /^ def __enter__(self): # That's a forward reference$/;" m class:IOBase file: +__enter__ Lib/_weakrefset.py /^ def __enter__(self):$/;" m class:_IterationGuard file: +__enter__ Lib/aifc.py /^ def __enter__(self):$/;" m class:Aifc_read file: +__enter__ Lib/aifc.py /^ def __enter__(self):$/;" m class:Aifc_write file: +__enter__ Lib/asyncio/runners.py /^ def __enter__(self):$/;" m class:Runner file: +__enter__ Lib/asyncio/unix_events.py /^ def __enter__(self):$/;" m class:AbstractChildWatcher file: +__enter__ Lib/asyncio/unix_events.py /^ def __enter__(self):$/;" m class:FastChildWatcher file: +__enter__ Lib/asyncio/unix_events.py /^ def __enter__(self):$/;" m class:MultiLoopChildWatcher file: +__enter__ Lib/asyncio/unix_events.py /^ def __enter__(self):$/;" m class:PidfdChildWatcher file: +__enter__ Lib/asyncio/unix_events.py /^ def __enter__(self):$/;" m class:SafeChildWatcher file: +__enter__ Lib/asyncio/unix_events.py /^ def __enter__(self):$/;" m class:ThreadedChildWatcher file: +__enter__ Lib/asyncio/windows_utils.py /^ def __enter__(self):$/;" m class:PipeHandle file: +__enter__ Lib/cProfile.py /^ def __enter__(self):$/;" m class:Profile file: +__enter__ Lib/calendar.py /^ def __enter__(self):$/;" m class:different_locale file: +__enter__ Lib/cgi.py /^ def __enter__(self):$/;" m class:FieldStorage file: +__enter__ Lib/codecs.py /^ def __enter__(self):$/;" m class:StreamReader file: +__enter__ Lib/codecs.py /^ def __enter__(self):$/;" m class:StreamReaderWriter file: +__enter__ Lib/codecs.py /^ def __enter__(self):$/;" m class:StreamRecoder file: +__enter__ Lib/codecs.py /^ def __enter__(self):$/;" m class:StreamWriter file: +__enter__ Lib/concurrent/futures/_base.py /^ def __enter__(self):$/;" m class:Executor file: +__enter__ Lib/concurrent/futures/_base.py /^ def __enter__(self):$/;" m class:_AcquireFutures file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:AbstractContextManager file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:ExitStack file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:_GeneratorContextManager file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:_RedirectStream file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:chdir file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:closing file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:nullcontext file: +__enter__ Lib/contextlib.py /^ def __enter__(self):$/;" m class:suppress file: +__enter__ Lib/dbm/dumb.py /^ def __enter__(self):$/;" m class:_Database file: +__enter__ Lib/fileinput.py /^ def __enter__(self):$/;" m class:FileInput file: +__enter__ Lib/ftplib.py /^ def __enter__(self):$/;" m class:FTP file: +__enter__ Lib/imaplib.py /^ def __enter__(self):$/;" m class:IMAP4 file: +__enter__ Lib/importlib/_bootstrap.py /^ def __enter__(self):$/;" m class:_BlockingOnManager file: +__enter__ Lib/importlib/_bootstrap.py /^ def __enter__(self):$/;" m class:_ImportLockContext file: +__enter__ Lib/importlib/_bootstrap.py /^ def __enter__(self):$/;" m class:_ModuleLockManager file: +__enter__ Lib/importlib/util.py /^ def __enter__(self):$/;" m class:_incompatible_extension_module_restrictions file: +__enter__ Lib/mailbox.py /^ def __enter__(self):$/;" m class:_ProxyFile file: +__enter__ Lib/multiprocessing/connection.py /^ def __enter__(self):$/;" m class:Listener file: +__enter__ Lib/multiprocessing/connection.py /^ def __enter__(self):$/;" m class:_ConnectionBase file: +__enter__ Lib/multiprocessing/dummy/connection.py /^ def __enter__(self):$/;" m class:Connection file: +__enter__ Lib/multiprocessing/dummy/connection.py /^ def __enter__(self):$/;" m class:Listener file: +__enter__ Lib/multiprocessing/managers.py /^ def __enter__(self):$/;" m class:AcquirerProxy file: +__enter__ Lib/multiprocessing/managers.py /^ def __enter__(self):$/;" m class:BaseManager file: +__enter__ Lib/multiprocessing/managers.py /^ def __enter__(self):$/;" m class:PoolProxy file: +__enter__ Lib/multiprocessing/pool.py /^ def __enter__(self):$/;" m class:Pool file: +__enter__ Lib/multiprocessing/sharedctypes.py /^ def __enter__(self):$/;" m class:SynchronizedBase file: +__enter__ Lib/multiprocessing/synchronize.py /^ def __enter__(self):$/;" m class:Condition file: +__enter__ Lib/multiprocessing/synchronize.py /^ def __enter__(self):$/;" m class:SemLock file: +__enter__ Lib/multiprocessing/util.py /^ def __enter__(self):$/;" m class:ForkAwareThreadLock file: +__enter__ Lib/nntplib.py /^ def __enter__(self):$/;" m class:NNTP file: +__enter__ Lib/os.py /^ def __enter__(self):$/;" m class:._AddedDllDirectory file: +__enter__ Lib/os.py /^ def __enter__(self):$/;" m class:._wrap_close file: +__enter__ Lib/pathlib.py /^ def __enter__(self):$/;" m class:Path file: +__enter__ Lib/runpy.py /^ def __enter__(self):$/;" m class:_ModifiedArgv0 file: +__enter__ Lib/runpy.py /^ def __enter__(self):$/;" m class:_TempModule file: +__enter__ Lib/selectors.py /^ def __enter__(self):$/;" m class:BaseSelector file: +__enter__ Lib/shelve.py /^ def __enter__(self):$/;" m class:Shelf file: +__enter__ Lib/smtplib.py /^ def __enter__(self):$/;" m class:SMTP file: +__enter__ Lib/socket.py /^ def __enter__(self):$/;" m class:socket file: +__enter__ Lib/socketserver.py /^ def __enter__(self):$/;" m class:BaseServer file: +__enter__ Lib/subprocess.py /^ def __enter__(self):$/;" m class:Popen file: +__enter__ Lib/sunau.py /^ def __enter__(self):$/;" m class:Au_read file: +__enter__ Lib/sunau.py /^ def __enter__(self):$/;" m class:Au_write file: +__enter__ Lib/tarfile.py /^ def __enter__(self):$/;" m class:TarFile file: +__enter__ Lib/telnetlib.py /^ def __enter__(self):$/;" m class:Telnet file: +__enter__ Lib/tempfile.py /^ def __enter__(self):$/;" m class:SpooledTemporaryFile file: +__enter__ Lib/tempfile.py /^ def __enter__(self):$/;" m class:TemporaryDirectory file: +__enter__ Lib/tempfile.py /^ def __enter__(self):$/;" m class:_TemporaryFileWrapper file: +__enter__ Lib/test/audit-tests.py /^ def __enter__(self, *a):$/;" m class:TestHook file: +__enter__ Lib/test/libregrtest/save_env.py /^ def __enter__(self):$/;" m class:saved_test_environment file: +__enter__ Lib/test/support/__init__.py /^ def __enter__(self):$/;" m class:PythonSymlink file: +__enter__ Lib/test/support/__init__.py /^ def __enter__(self):$/;" m class:SuppressCrashReport file: +__enter__ Lib/test/support/__init__.py /^ def __enter__(self):$/;" m class:catch_unraisable_exception file: +__enter__ Lib/test/support/import_helper.py /^ def __enter__(self):$/;" m class:CleanImport file: +__enter__ Lib/test/support/import_helper.py /^ def __enter__(self):$/;" m class:DirsOnSysPath file: +__enter__ Lib/test/support/os_helper.py /^ def __enter__(self):$/;" m class:EnvironmentVarGuard file: +__enter__ Lib/test/support/threading_helper.py /^ def __enter__(self):$/;" m class:catch_threading_exception file: +__enter__ Lib/test/test_asyncio/functional.py /^ def __enter__(self):$/;" m class:SocketThread file: +__enter__ Lib/test/test_asyncio/test_ssl.py /^ def __enter__(self):$/;" m class:SocketThread file: +__enter__ Lib/test/test_bdb.py /^ def __enter__(self):$/;" m class:TracerRun file: +__enter__ Lib/test/test_context.py /^ def __enter__(self):$/;" m class:HaskKeyCrasher file: +__enter__ Lib/test/test_contextlib.py /^ __enter__ = None$/;" v class:TestAbstractContextManager.test_structural_subclassing.NoEnter +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestAbstractContextManager.test_structural_subclassing.ManagerFromScratch file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestBaseExitStack.test_enter_context.TestCM file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestBaseExitStack.test_enter_context_errors.LacksExit file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.RaiseExc file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.RaiseExcWithContext file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.SuppressExc file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestBaseExitStack.test_push.ExitCM file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestContextDecorator.test_contextdecorator_as_mixin.somecontext file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:TestContextDecorator.test_typo_exit.mycontext file: +__enter__ Lib/test/test_contextlib.py /^ def __enter__(self):$/;" m class:mycontext file: +__enter__ Lib/test/test_contextlib_async.py /^ def __enter__(self):$/;" m class:TestAsyncExitStack.SyncAsyncExitStack file: +__enter__ Lib/test/test_exceptions.py /^ def __enter__(self):$/;" m class:ExceptionTests.testExceptionCleanupState.Context file: +__enter__ Lib/test/test_exceptions.py /^ def __enter__(self):$/;" m class:PEP626Tests.test_lineno_after_raise_in_with_exit.ExitFails file: +__enter__ Lib/test/test_exceptions.py /^ def __enter__(self):$/;" m class:PEP626Tests.test_lineno_after_with.Noop file: +__enter__ Lib/test/test_grammar.py /^ def __enter__(self):$/;" m class:GrammarTests.test_with_statement.manager file: +__enter__ Lib/test/test_importlib/util.py /^ def __enter__(self):$/;" m class:_ImporterMock file: +__enter__ Lib/test/test_launcher.py /^ def __enter__(self):$/;" m class:PreservePyIni file: +__enter__ Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def __enter__(self):$/;" m class:GrammarTests.test_with_statement.manager file: +__enter__ Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def __enter__(self):$/;" m class:GrammarTests.test_with_statement.manager file: +__enter__ Lib/test/test_lzma.py /^ def __enter__(self):$/;" m class:TempFile file: +__enter__ Lib/test/test_mmap.py /^ def __enter__(self):$/;" m class:MmapTests.test_mmap_closed_by_int_scenarios.MmapClosedByIntContext file: +__enter__ Lib/test/test_pdb.py /^ def __enter__(self):$/;" m class:PdbTestInput file: +__enter__ Lib/test/test_raise.py /^ def __enter__(self):$/;" m class:TestContext.test_context_manager.ContextManager file: +__enter__ Lib/test/test_raise.py /^ def __enter__(self):$/;" m class:Context file: +__enter__ Lib/test/test_shutil.py /^ def __enter__(self):$/;" m class:TestCopyFile.Faux file: +__enter__ Lib/test/test_ssl.py /^ def __enter__(self):$/;" m class:TestPreHandshakeClose.SingleConnectionTestServerThread file: +__enter__ Lib/test/test_ssl.py /^ def __enter__(self):$/;" m class:AsyncoreEchoServer file: +__enter__ Lib/test/test_ssl.py /^ def __enter__(self):$/;" m class:ThreadedEchoServer file: +__enter__ Lib/test/test_sys_settrace.py /^ def __enter__(self):$/;" m class:TraceTestCase.test_early_exit_with.C file: +__enter__ Lib/test/test_sys_settrace.py /^ def __enter__(self):$/;" m class:TraceTestCase.test_if_false_in_with.C file: +__enter__ Lib/test/test_sys_settrace.py /^ def __enter__(self):$/;" m class:TraceTestCase.test_tracing_exception_raised_in_with.NullCtx file: +__enter__ Lib/test/test_sys_settrace.py /^ def __enter__(self):$/;" m class:tracecontext file: +__enter__ Lib/test/test_tabnanny.py /^ def __enter__(self):$/;" m class:TemporaryPyFile file: +__enter__ Lib/test/test_tarfile.py /^ def __enter__(self):$/;" m class:TestExtractionFilters.test_stateful_filter.StatefulFilter file: +__enter__ Lib/test/test_tarfile.py /^ def __enter__(self):$/;" m class:ArchiveMaker file: +__enter__ Lib/test/test_tempfile.py /^ def __enter__(self):$/;" m class:NulledModules file: +__enter__ Lib/test/test_unittest/test_runner.py /^ def __enter__(self):$/;" m class:LacksExit file: +__enter__ Lib/test/test_unittest/test_runner.py /^ def __enter__(self):$/;" m class:TestCM file: +__enter__ Lib/test/test_unittest/testmock/testasync.py /^ def __enter__(self, *args, **kwargs): pass$/;" m class:AsyncContextManagerTest.WithSyncContextManager file: +__enter__ Lib/test/test_urllib2net.py /^ def __enter__(self):$/;" m class:TransientResource file: +__enter__ Lib/test/test_with.py /^ def __enter__(self): pass$/;" m class:ExitSwallowsExceptionTestCase.testExitFalseDoesntSwallowException.EuropeanSwallow file: +__enter__ Lib/test/test_with.py /^ def __enter__(self): pass$/;" m class:ExitSwallowsExceptionTestCase.testExitTrueSwallowsException.AfricanSwallow file: +__enter__ Lib/test/test_with.py /^ def __enter__(self): return 1, 2, 3$/;" m class:AssignmentTargetTestCase.testMultipleComplexTargets.C file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:ExceptionalTestCase.testErrorsInBool.cm file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:ExceptionalTestCase.testRaisedGeneratorExit2.cm file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:ExceptionalTestCase.testRaisedStopIteration2.cm file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:FailureTestCase.testEnterThrows.EnterThrows file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:FailureTestCase.testExitAttributeError.LacksExit file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:FailureTestCase.testExitThrows.ExitThrows file: +__enter__ Lib/test/test_with.py /^ def __enter__(self): pass$/;" m class:NestedWith.ExitRaises file: +__enter__ Lib/test/test_with.py /^ def __enter__(self): raise RuntimeError()$/;" m class:NestedWith.EnterRaises file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:NestedWith.Dummy file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:MockContextManager file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:MockNested file: +__enter__ Lib/test/test_with.py /^ def __enter__(self):$/;" m class:Nested file: +__enter__ Lib/threading.py /^ __enter__ = acquire$/;" v class:Semaphore +__enter__ Lib/threading.py /^ __enter__ = acquire$/;" v class:_RLock +__enter__ Lib/threading.py /^ def __enter__(self):$/;" m class:Condition file: +__enter__ Lib/typing.py /^ def __enter__(self) -> 'BinaryIO':$/;" m class:BinaryIO file: +__enter__ Lib/typing.py /^ def __enter__(self) -> 'IO[AnyStr]':$/;" m class:IO file: +__enter__ Lib/typing.py /^ def __enter__(self) -> 'TextIO':$/;" m class:TextIO file: +__enter__ Lib/unittest/_log.py /^ def __enter__(self):$/;" m class:_AssertLogsContext file: +__enter__ Lib/unittest/case.py /^ def __enter__(self):$/;" m class:_AssertRaisesContext file: +__enter__ Lib/unittest/case.py /^ def __enter__(self):$/;" m class:_AssertWarnsContext file: +__enter__ Lib/unittest/mock.py /^ def __enter__(self):$/;" m class:_patch file: +__enter__ Lib/unittest/mock.py /^ def __enter__(self):$/;" m class:_patch_dict file: +__enter__ Lib/urllib/response.py /^ def __enter__(self):$/;" m class:addbase file: +__enter__ Lib/warnings.py /^ def __enter__(self):$/;" m class:catch_warnings file: +__enter__ Lib/wave.py /^ def __enter__(self):$/;" m class:Wave_read file: +__enter__ Lib/wave.py /^ def __enter__(self):$/;" m class:Wave_write file: +__enter__ Lib/xml/dom/minidom.py /^ def __enter__(self):$/;" m class:Node file: +__enter__ Lib/xmlrpc/client.py /^ def __enter__(self):$/;" m class:ServerProxy file: +__enter__ Lib/zipfile/__init__.py /^ def __enter__(self):$/;" m class:ZipFile file: +__enter__ Tools/scripts/summarize_stats.py /^ def __enter__(self):$/;" m class:Section file: +__eq__ Lib/_collections_abc.py /^ def __eq__(self, other):$/;" m class:Mapping file: +__eq__ Lib/_collections_abc.py /^ def __eq__(self, other):$/;" m class:Set file: +__eq__ Lib/_pydatetime.py /^ def __eq__(self, other):$/;" m class:date file: +__eq__ Lib/_pydatetime.py /^ def __eq__(self, other):$/;" m class:datetime file: +__eq__ Lib/_pydatetime.py /^ def __eq__(self, other):$/;" m class:time file: +__eq__ Lib/_pydatetime.py /^ def __eq__(self, other):$/;" m class:timedelta file: +__eq__ Lib/_pydatetime.py /^ def __eq__(self, other):$/;" m class:timezone file: +__eq__ Lib/_pydecimal.py /^ def __eq__(self, other, context=None):$/;" m class:Decimal file: +__eq__ Lib/_weakrefset.py /^ def __eq__(self, other):$/;" m class:WeakSet file: +__eq__ Lib/argparse.py /^ def __eq__(self, other):$/;" m class:Namespace file: +__eq__ Lib/asyncio/events.py /^ def __eq__(self, other):$/;" m class:TimerHandle file: +__eq__ Lib/collections/__init__.py /^ def __eq__(self, other):$/;" m class:Counter file: +__eq__ Lib/collections/__init__.py /^ def __eq__(self, other):$/;" m class:OrderedDict file: +__eq__ Lib/collections/__init__.py /^ def __eq__(self, other):$/;" m class:UserList file: +__eq__ Lib/collections/__init__.py /^ def __eq__(self, string):$/;" m class:UserString file: +__eq__ Lib/doctest.py /^ def __eq__(self, other):$/;" m class:DocTest file: +__eq__ Lib/doctest.py /^ def __eq__(self, other):$/;" m class:DocTestCase file: +__eq__ Lib/doctest.py /^ def __eq__(self, other):$/;" m class:Example file: +__eq__ Lib/email/charset.py /^ def __eq__(self, other):$/;" m class:Charset file: +__eq__ Lib/email/header.py /^ def __eq__(self, other):$/;" m class:Header file: +__eq__ Lib/email/headerregistry.py /^ def __eq__(self, other):$/;" m class:Address file: +__eq__ Lib/email/headerregistry.py /^ def __eq__(self, other):$/;" m class:Group file: +__eq__ Lib/fractions.py /^ def __eq__(a, b):$/;" m class:Fraction file: +__eq__ Lib/functools.py /^ def __eq__(self, other):$/;" m class:cmp_to_key.K file: +__eq__ Lib/http/cookies.py /^ def __eq__(self, morsel):$/;" m class:Morsel file: +__eq__ Lib/idlelib/idle_test/test_run.py /^ def __eq__(self, other):$/;" m class:ExceptionTest.test_print_exception_unhashable.UnhashableException file: +__eq__ Lib/importlib/_bootstrap.py /^ def __eq__(self, other):$/;" m class:ModuleSpec file: +__eq__ Lib/importlib/_bootstrap_external.py /^ def __eq__(self, other):$/;" m class:ExtensionFileLoader file: +__eq__ Lib/importlib/_bootstrap_external.py /^ def __eq__(self, other):$/;" m class:FileLoader file: +__eq__ Lib/importlib/metadata/__init__.py /^ def __eq__(self, other):$/;" m class:EntryPoint file: +__eq__ Lib/importlib/metadata/_text.py /^ def __eq__(self, other):$/;" m class:FoldedCase file: +__eq__ Lib/inspect.py /^ def __eq__(self, other):$/;" m class:BoundArguments file: +__eq__ Lib/inspect.py /^ def __eq__(self, other):$/;" m class:Parameter file: +__eq__ Lib/inspect.py /^ def __eq__(self, other):$/;" m class:Signature file: +__eq__ Lib/ipaddress.py /^ def __eq__(self, other):$/;" m class:IPv4Interface file: +__eq__ Lib/ipaddress.py /^ def __eq__(self, other):$/;" m class:IPv6Address file: +__eq__ Lib/ipaddress.py /^ def __eq__(self, other):$/;" m class:IPv6Interface file: +__eq__ Lib/ipaddress.py /^ def __eq__(self, other):$/;" m class:_BaseAddress file: +__eq__ Lib/ipaddress.py /^ def __eq__(self, other):$/;" m class:_BaseNetwork file: +__eq__ Lib/lib2to3/pgen2/pgen.py /^ def __eq__(self, other):$/;" m class:DFAState file: +__eq__ Lib/lib2to3/pytree.py /^ def __eq__(self, other):$/;" m class:Base file: +__eq__ Lib/numbers.py /^ def __eq__(self, other):$/;" m class:Complex file: +__eq__ Lib/operator.py /^__eq__ = eq$/;" v +__eq__ Lib/optparse.py /^ def __eq__(self, other):$/;" m class:Values file: +__eq__ Lib/pathlib.py /^ def __eq__(self, other):$/;" m class:PurePath file: +__eq__ Lib/plistlib.py /^ def __eq__(self, other):$/;" m class:UID file: +__eq__ Lib/statistics.py /^ def __eq__(x1, x2):$/;" m class:NormalDist file: +__eq__ Lib/test/inspect_stock_annotations.py /^ def __eq__(self, other):$/;" m class:MyClass file: +__eq__ Lib/test/inspect_stringized_annotations.py /^ def __eq__(self, other):$/;" m class:MyClass file: +__eq__ Lib/test/list_tests.py /^ def __eq__(self, other):$/;" m class:CommonTest.test_index.EvilCmp file: +__eq__ Lib/test/list_tests.py /^ def __eq__(self, other):$/;" m class:CommonTest.test_remove.BadCmp file: +__eq__ Lib/test/list_tests.py /^ def __eq__(self, other):$/;" m class:CommonTest.test_remove.BadCmp2 file: +__eq__ Lib/test/mapping_tests.py /^ def __eq__(self, other):$/;" m class:TestHashMappingProtocol.test_eq.BadCmp file: +__eq__ Lib/test/mapping_tests.py /^ def __eq__(self, other):$/;" m class:TestHashMappingProtocol.test_getitem.BadEq file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:AbstractPickleTests.test_evil_class_mutating_dict.Bad file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:ZeroCopyBytearray.PicklableNDArray file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:C file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:REX_seven file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:REX_six file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:REX_state file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:SimpleNewObj file: +__eq__ Lib/test/pickletester.py /^ def __eq__(self, other):$/;" m class:pickling_metaclass file: +__eq__ Lib/test/seq_tests.py /^ def __eq__(self, other):$/;" m class:CommonTest.test_contains_order.StopCompares file: +__eq__ Lib/test/seq_tests.py /^ def __eq__(self, other):$/;" m class:CommonTest.test_count.BadCmp file: +__eq__ Lib/test/seq_tests.py /^ def __eq__(self, other):$/;" m class:CommonTest.test_index.BadCmp file: +__eq__ Lib/test/support/__init__.py /^ def __eq__(self, other):$/;" m class:_ALWAYS_EQ file: +__eq__ Lib/test/support/__init__.py /^ def __eq__(self, other):$/;" m class:_LARGEST file: +__eq__ Lib/test/support/__init__.py /^ def __eq__(self, other):$/;" m class:_NEVER_EQ file: +__eq__ Lib/test/support/__init__.py /^ def __eq__(self, other):$/;" m class:_SMALLEST file: +__eq__ Lib/test/support/interpreters.py /^ def __eq__(self, other):$/;" m class:Interpreter file: +__eq__ Lib/test/support/interpreters.py /^ def __eq__(self, other):$/;" m class:_ChannelEnd file: +__eq__ Lib/test/test_argparse.py /^ def __eq__(self, other):$/;" m class:TestTypeClassicClass.C file: +__eq__ Lib/test/test_argparse.py /^ def __eq__(self, other):$/;" m class:TestTypeUserDefined.MyType file: +__eq__ Lib/test/test_argparse.py /^ def __eq__(self, other):$/;" m class:NS file: +__eq__ Lib/test/test_argparse.py /^ def __eq__(self, other):$/;" m class:RFile file: +__eq__ Lib/test/test_argparse.py /^ def __eq__(self, other):$/;" m class:StdStreamComparer file: +__eq__ Lib/test/test_argparse.py /^ def __eq__(self, other):$/;" m class:WFile file: +__eq__ Lib/test/test_asyncio/test_futures.py /^ def __eq__(self, other):$/;" m class:BaseFutureDoneCallbackTests.test_remove_done_callbacks_list_clear.evil file: +__eq__ Lib/test/test_asyncio/test_futures.py /^ def __eq__(self, other):$/;" m class:BaseFutureDoneCallbackTests.test_remove_done_callbacks_list_mutation.evil file: +__eq__ Lib/test/test_asyncio/test_futures.py /^ def __eq__(self, other):$/;" m class:BaseFutureDoneCallbackTests.test_schedule_callbacks_list_mutation_2.evil file: +__eq__ Lib/test/test_asyncio/utils.py /^ def __eq__(self, other):$/;" m class:MockInstanceOf file: +__eq__ Lib/test/test_asyncio/utils.py /^ def __eq__(self, other):$/;" m class:MockPattern file: +__eq__ Lib/test/test_binop.py /^ __eq__ = None$/;" v class:S +__eq__ Lib/test/test_binop.py /^ __eq__ = None$/;" v class:X +__eq__ Lib/test/test_binop.py /^ def __eq__(self, other):$/;" m class:A file: +__eq__ Lib/test/test_binop.py /^ def __eq__(self, other):$/;" m class:B file: +__eq__ Lib/test/test_binop.py /^ def __eq__(self, other):$/;" m class:C file: +__eq__ Lib/test/test_binop.py /^ def __eq__(self, other):$/;" m class:Rat file: +__eq__ Lib/test/test_binop.py /^ def __eq__(self, other):$/;" m class:SupEq file: +__eq__ Lib/test/test_binop.py /^ def __eq__(self, other):$/;" m class:V file: +__eq__ Lib/test/test_binop.py /^ def __eq__(self, other):$/;" m class:XN file: +__eq__ Lib/test/test_bisect.py /^ __eq__ = __lt__$/;" v class:CmpErr +__eq__ Lib/test/test_call.py /^ def __eq__(self, other):$/;" m class:BadStr file: +__eq__ Lib/test/test_capi/test_getargs.py /^ def __eq__(self, other):$/;" m class:KeywordOnly_TestCase.test_weird_str_subclass.BadStr file: +__eq__ Lib/test/test_capi/test_getargs.py /^ def __eq__(self, other):$/;" m class:KeywordOnly_TestCase.test_weird_str_subclass2.BadStr file: +__eq__ Lib/test/test_cgi.py /^ def __eq__(self, anExc):$/;" m class:ComparableException file: +__eq__ Lib/test/test_class.py /^ __eq__ = property(booh)$/;" v class:ClassTests.testForExceptionsRaisedInInstanceGetattr2.E +__eq__ Lib/test/test_class.py /^ def __eq__(self, other): return 1$/;" m class:ClassTests.testHashStuff.C2 file: +__eq__ Lib/test/test_class.py /^ def __eq__(self, other):$/;" m class:ClassTests.testHashComparisonOfMethods.A file: +__eq__ Lib/test/test_collections.py /^ def __eq__(self, other):$/;" m class:ABCTestCase.validate_comparison.Other file: +__eq__ Lib/test/test_compare.py /^ def __eq__(*args):$/;" m class:ComparisonSimpleTest.test_ne_high_priority.Left file: +__eq__ Lib/test/test_compare.py /^ def __eq__(*args):$/;" m class:ComparisonSimpleTest.test_ne_high_priority.Right file: +__eq__ Lib/test/test_compare.py /^ def __eq__(*args):$/;" m class:ComparisonSimpleTest.test_ne_low_priority.Base file: +__eq__ Lib/test/test_compare.py /^ def __eq__(*args):$/;" m class:ComparisonSimpleTest.test_ne_low_priority.Derived file: +__eq__ Lib/test/test_compare.py /^ def __eq__(self, other):$/;" m class:ComparisonFullTest.CompEq file: +__eq__ Lib/test/test_compare.py /^ def __eq__(self, other):$/;" m class:ComparisonFullTest.CompEqNe file: +__eq__ Lib/test/test_compare.py /^ def __eq__(self, other):$/;" m class:ComparisonSimpleTest.Cmp file: +__eq__ Lib/test/test_contains.py /^ def __eq__(self, other):$/;" m class:TestContains.test_builtin_sequence_types.Deviant1 file: +__eq__ Lib/test/test_context.py /^ def __eq__(self, other):$/;" m class:HashKey file: +__eq__ Lib/test/test_context.py /^ def __eq__(self, other):$/;" m class:KeyStr file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_copy.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_getinitargs.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_getnewargs.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_getnewargs_ex.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_getstate.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_getstate_setstate.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_setstate.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_copy_inst_vanilla.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_deepcopy.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_getinitargs.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_getnewargs.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_getnewargs_ex.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_getstate.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_getstate_setstate.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_setstate.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_deepcopy_inst_vanilla.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_reconstruct_state.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_reconstruct_state_setstate.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_reduce_4tuple.C file: +__eq__ Lib/test/test_copy.py /^ def __eq__(self, other):$/;" m class:TestCopy.test_reduce_5tuple.C file: +__eq__ Lib/test/test_ctypes/test_simplesubclasses.py /^ def __eq__(self, other):$/;" m class:MyInt file: +__eq__ Lib/test/test_dataclasses.py /^ def __eq__(self):$/;" m class:TestCase.test_overwrite_hash.C.C file: +__eq__ Lib/test/test_dataclasses.py /^ def __eq__(self):$/;" m class:TestCase.test_overwrite_hash.C file: +__eq__ Lib/test/test_dataclasses.py /^ def __eq__(self, other):$/;" m class:TestCase.test_overwrite_hash.C file: +__eq__ Lib/test/test_dataclasses.py /^ def __eq__(self, other):$/;" m class:TestEq.test_no_eq.C file: +__eq__ Lib/test/test_dataclasses.py /^ def __eq__(self, other):$/;" m class:TestEq.test_overwriting_eq.C file: +__eq__ Lib/test/test_dataclasses.py /^ def __eq__(self, other):$/;" m class:TestHash.test_eq_only.C file: +__eq__ Lib/test/test_decimal.py /^ def __eq__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__eq__ Lib/test/test_deque.py /^ def __eq__(self, other):$/;" m class:TestBasic.test_contains_count_stop_crashes.A file: +__eq__ Lib/test/test_deque.py /^ def __eq__(self, other):$/;" m class:TestBasic.test_count.BadCompare file: +__eq__ Lib/test/test_deque.py /^ def __eq__(self, other):$/;" m class:TestBasic.test_count.MutatingCompare file: +__eq__ Lib/test/test_deque.py /^ def __eq__(self, other):$/;" m class:BadCmp file: +__eq__ Lib/test/test_deque.py /^ def __eq__(self, other):$/;" m class:MutateCmp file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_classic_comparisons.classic.C file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_rich_comparisons.classic.C file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_slots.F.G file: +__eq__ Lib/test/test_descr.py /^ __eq__ = str.__eq__$/;" v class:.test_wrong_class_slot_wrapper.A +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_binary_operator_override.S file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_rich_comparisons.ZZ file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_specials.Proxy file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_str_subclass_as_dict_key.cistr file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:.test_vicious_descriptor_nonsense.Evil file: +__eq__ Lib/test/test_descr.py /^ def __eq__(self, other):$/;" m class:MiscTests.test_type_lookup_mro_reference.MyKey file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, o):$/;" m class:DictTest.test_merge_and_mutate.X file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:CAPITest.test_getitem_knownhash.BadEq file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_bad_key.BadDictKey file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_dict_contain_use_after_free.S file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_dictitems_contains_use_after_free.X file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_eq.BadCmp file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_equal_operator_modifying_operand.X file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_equal_operator_modifying_operand.Y file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_errors_in_view_containment_check.C file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_fromkeys_operator_modifying_dict_operand.X file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_fromkeys_operator_modifying_set_operand.X file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_getitem.BadEq file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_mutating_lookup.NastyKey file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_resize2.X file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_setdefault_atomic.Hashed file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_setitem_atomic_at_resize.Hashed file: +__eq__ Lib/test/test_dict.py /^ def __eq__(self, other):$/;" m class:DictTest.test_str_nonstr.Key3 file: +__eq__ Lib/test/test_dict_version.py /^ def __eq__(self, other):$/;" m class:DictVersionTests.test_setitem_equal.AlwaysEqual file: +__eq__ Lib/test/test_dictviews.py /^ def __eq__(self, other):$/;" m class:DictSetTest.test_compare_error.BadEq file: +__eq__ Lib/test/test_enum.py /^ def __eq__(self, other):$/;" m class:OldTestFlag.test_unique_composite.TestFlag file: +__eq__ Lib/test/test_enum.py /^ def __eq__(self, other):$/;" m class:OldTestIntFlag.test_unique_composite.TestFlag file: +__eq__ Lib/test/test_except_star.py /^ def __eq__(self, other):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass.AlwaysEqualEG file: +__eq__ Lib/test/test_except_star.py /^ def __eq__(self, other):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass.BrokenEqualEG file: +__eq__ Lib/test/test_except_star.py /^ def __eq__(self, other):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass.NeverEqualEG file: +__eq__ Lib/test/test_except_star.py /^ def __eq__(self, other):$/;" m class:TestExceptStar_WeirdLeafExceptions.AlwaysEqualExc file: +__eq__ Lib/test/test_except_star.py /^ def __eq__(self, other):$/;" m class:TestExceptStar_WeirdLeafExceptions.BrokenEqualExc file: +__eq__ Lib/test/test_except_star.py /^ def __eq__(self, other):$/;" m class:TestExceptStar_WeirdLeafExceptions.NeverEqualExc file: +__eq__ Lib/test/test_fractions.py /^ def __eq__(self, other):$/;" m class:FractionTest.testBoolGuarateesBoolReturn.CustomValue file: +__eq__ Lib/test/test_fractions.py /^ def __eq__(self, other): return self._richcmp(other, operator.eq)$/;" m class:DummyFloat file: +__eq__ Lib/test/test_fractions.py /^ def __eq__(self, other):$/;" m class:DummyRational file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestLRU.test_need_for_rlock.DoubleEq file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestSingleDispatch.test_annotations._ file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsGreaterThan file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsGreaterThanEqualTo file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsLessThan file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsLessThanEqualTo file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_for_metaclasses_issue_44605.SortableMeta file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_ge.A file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_gt.A file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_le.A file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_lt.A file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ComparatorNotImplemented file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsGreaterThan file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsGreaterThanEqualTo file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsLessThan file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsLessThanEqualTo file: +__eq__ Lib/test/test_functools.py /^ def __eq__(self, other):$/;" m class:Orderable_LT file: +__eq__ Lib/test/test_getpath.py /^ def __eq__(self, other):$/;" m class:MockWinreg file: +__eq__ Lib/test/test_hash.py /^ def __eq__(self, other):$/;" m class:OnlyEquality file: +__eq__ Lib/test/test_heapq.py /^ def __eq__(self, other):$/;" m class:CmpErr file: +__eq__ Lib/test/test_hmac.py /^ def __eq__(self, other):$/;" m class:CompareDigestTestCase._test_compare_digest.mybytes file: +__eq__ Lib/test/test_hmac.py /^ def __eq__(self, other):$/;" m class:CompareDigestTestCase._test_compare_digest.mystr file: +__eq__ Lib/test/test_index.py /^ def __eq__(self, other):$/;" m class:NewSeq file: +__eq__ Lib/test/test_inspect.py /^ def __eq__(self, other):$/;" m class:TestClassesAndFunctions.test_classify_overrides_bool.NoBool file: +__eq__ Lib/test/test_iter.py /^ def __eq__(self, other):$/;" m class:TestCase.test_reduce_mutating_builtins_iter.run.CustomStr file: +__eq__ Lib/test/test_itertools.py /^ def __eq__(self, dst):$/;" m class:TestBasicOps.test_groupby.DummyCmp file: +__eq__ Lib/test/test_itertools.py /^ def __eq__(self, other):$/;" m class:RegressionTests.test_issue30347_2.K file: +__eq__ Lib/test/test_list.py /^ def __eq__(self, other):$/;" m class:ListTest.test_count_index_remove_crashes.L file: +__eq__ Lib/test/test_list.py /^ def __eq__(self, other):$/;" m class:ListTest.test_count_index_remove_crashes.X file: +__eq__ Lib/test/test_list.py /^ def __eq__(self, other):$/;" m class:ListTest.test_equal_operator_modifying_operand.Y file: +__eq__ Lib/test/test_list.py /^ def __eq__(self, other):$/;" m class:ListTest.test_equal_operator_modifying_operand.Z file: +__eq__ Lib/test/test_list.py /^ def __eq__(self,other) :$/;" m class:ListTest.test_equal_operator_modifying_operand.X file: +__eq__ Lib/test/test_long.py /^ def __eq__(self, other):$/;" m class:LongTest.test_mixed_compares.Rat file: +__eq__ Lib/test/test_numeric_tower.py /^ def __eq__(self, other):$/;" m class:HashTest.test_hash_normalization.HalibutProxy file: +__eq__ Lib/test/test_operator.py /^ def __eq__(self, other):$/;" m class:OperatorTestCase.test_eq.C file: +__eq__ Lib/test/test_ordered_dict.py /^ def __eq__(self, other):$/;" m class:OrderedDictTests.test_delitem_hash_collision.Key file: +__eq__ Lib/test/test_patma.py /^ def __eq__(self, other):$/;" m class:TestPatma.test_patma_232.Eq file: +__eq__ Lib/test/test_pprint.py /^ def __eq__(self, other):$/;" m class:Orderable file: +__eq__ Lib/test/test_range.py /^ def __eq__(self, other): return True$/;" m class:RangeTest.test_types.C3 file: +__eq__ Lib/test/test_range.py /^ def __eq__(self, other):$/;" m class:RangeTest.test_index.BadCmp file: +__eq__ Lib/test/test_richcmp.py /^ def __eq__(self, other):$/;" m class:ListTest.test_badentry.Bad file: +__eq__ Lib/test/test_richcmp.py /^ def __eq__(self_, other): return 0$/;" m class:MiscTest.test_misbehavin.Misb file: +__eq__ Lib/test/test_richcmp.py /^ def __eq__(self, other):$/;" m class:Number file: +__eq__ Lib/test/test_richcmp.py /^ def __eq__(self, other):$/;" m class:Vector file: +__eq__ Lib/test/test_set.py /^ def __eq__(self, o):$/;" m class:TestWeirdBugs.test_merge_and_mutate.X file: +__eq__ Lib/test/test_set.py /^ def __eq__(self, other):$/;" m class:TestOperationsMutating.make_sets_of_bad_objects.Bad file: +__eq__ Lib/test/test_set.py /^ def __eq__(self, other):$/;" m class:BadCmp file: +__eq__ Lib/test/test_set.py /^ def __eq__(self, other):$/;" m class:bad_dict_clear file: +__eq__ Lib/test/test_set.py /^ def __eq__(self, other):$/;" m class:bad_eq file: +__eq__ Lib/test/test_slice.py /^ def __eq__(self, other):$/;" m class:SliceTest.test_cmp.BadCmp file: +__eq__ Lib/test/test_sqlite3/test_types.py /^ def __eq__(self, other):$/;" m class:DeclTypesTests.Foo file: +__eq__ Lib/test/test_statistics.py /^ def __eq__(self, other):$/;" m class:TestNormalDist.test_equality.A file: +__eq__ Lib/test/test_traceback.py /^ def __eq__(self, other):$/;" m class:TestTracebackException.test_unhashable.UnhashableException file: +__eq__ Lib/test/test_traceback.py /^ def __eq__(self, other):$/;" m class:TracebackFormatTests.test_unhashable.UnhashableException file: +__eq__ Lib/test/test_types.py /^ def __eq__(self, other):$/;" m class:UnionTests.test_or_type_operator_with_genericalias.BadType file: +__eq__ Lib/test/test_typing.py /^ def __eq__(self, other):$/;" m class:AnnotatedTests.test_instantiate.C file: +__eq__ Lib/test/test_unittest/test_async_case.py /^ def __eq__(self, o):$/;" m class:TestAsyncCase.test_deprecation_of_return_val_from_test.Nothing file: +__eq__ Lib/test/test_unittest/test_case.py /^ def __eq__(self, o):$/;" m class:Test_TestCase.test_deprecation_of_return_val_from_test.Nothing file: +__eq__ Lib/test/test_unittest/test_discovery.py /^ def __eq__(self, other):$/;" m class:TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests.Module file: +__eq__ Lib/test/test_unittest/test_discovery.py /^ def __eq__(self, other):$/;" m class:TestDiscovery.test_find_tests_customize_via_package_pattern.Module file: +__eq__ Lib/test/test_unittest/test_discovery.py /^ def __eq__(self, other):$/;" m class:TestDiscovery.test_find_tests_default_calls_package_load_tests.Module file: +__eq__ Lib/test/test_unittest/test_discovery.py /^ def __eq__(self, other):$/;" m class:TestDiscovery.test_find_tests_with_package.Module file: +__eq__ Lib/test/test_unittest/testmock/testasync.py /^ def __eq__(self, other): pass$/;" m class:AsyncMockAssert.test_awaits_asserts_with_any.Foo file: +__eq__ Lib/test/test_unittest/testmock/testasync.py /^ def __eq__(self, other): pass$/;" m class:AsyncMockAssert.test_awaits_asserts_with_spec_and_any.Foo file: +__eq__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __eq__(self, other): pass$/;" m class:AnyTest.test_any_and_spec_set.Foo file: +__eq__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __eq__(self, other): pass$/;" m class:AnyTest.test_any_mock_calls_comparison_order.Foo file: +__eq__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __eq__(self, other): pass$/;" m class:AnyTest.test_any_no_spec.Foo file: +__eq__ Lib/test/test_weakref.py /^ def __eq__(self, other):$/;" m class:MappingTestCase.test_weak_keyed_cascading_deletes.C file: +__eq__ Lib/test/test_weakref.py /^ def __eq__(self, other):$/;" m class:Object file: +__eq__ Lib/test/test_xml_etree.py /^ def __eq__(self, o):$/;" m class:BadElementTest.test_remove_with_mutating.X file: +__eq__ Lib/test/test_xml_etree.py /^ def __eq__(self, other):$/;" m class:BugsTest.test_lost_elem.Tag file: +__eq__ Lib/test/test_xml_etree.py /^ def __eq__(self, o):$/;" m class:BadElementPath file: +__eq__ Lib/test/test_xml_etree.py /^ def __eq__(self, o):$/;" m class:MutatingElementPath file: +__eq__ Lib/tkinter/__init__.py /^ def __eq__(self, other):$/;" m class:Variable file: +__eq__ Lib/tkinter/font.py /^ def __eq__(self, other):$/;" m class:Font file: +__eq__ Lib/traceback.py /^ def __eq__(self, other):$/;" m class:FrameSummary file: +__eq__ Lib/traceback.py /^ def __eq__(self, other):$/;" m class:TracebackException file: +__eq__ Lib/tracemalloc.py /^ def __eq__(self, other):$/;" m class:Frame file: +__eq__ Lib/tracemalloc.py /^ def __eq__(self, other):$/;" m class:Statistic file: +__eq__ Lib/tracemalloc.py /^ def __eq__(self, other):$/;" m class:StatisticDiff file: +__eq__ Lib/tracemalloc.py /^ def __eq__(self, other):$/;" m class:Trace file: +__eq__ Lib/tracemalloc.py /^ def __eq__(self, other):$/;" m class:Traceback file: +__eq__ Lib/tracemalloc.py /^ def __eq__(self, other):$/;" m class:_Traces file: +__eq__ Lib/typing.py /^ def __eq__(self, other):$/;" m class:ForwardRef file: +__eq__ Lib/typing.py /^ def __eq__(self, other):$/;" m class:_AnnotatedAlias file: +__eq__ Lib/typing.py /^ def __eq__(self, other):$/;" m class:_GenericAlias file: +__eq__ Lib/typing.py /^ def __eq__(self, other):$/;" m class:_LiteralGenericAlias file: +__eq__ Lib/typing.py /^ def __eq__(self, other):$/;" m class:_UnionGenericAlias file: +__eq__ Lib/unittest/case.py /^ def __eq__(self, other):$/;" m class:FunctionTestCase file: +__eq__ Lib/unittest/case.py /^ def __eq__(self, other):$/;" m class:TestCase file: +__eq__ Lib/unittest/mock.py /^ def __eq__(other):$/;" f function:_get_eq file: +__eq__ Lib/unittest/mock.py /^ def __eq__(self, other):$/;" m class:_ANY file: +__eq__ Lib/unittest/mock.py /^ def __eq__(self, other):$/;" m class:_Call file: +__eq__ Lib/unittest/suite.py /^ def __eq__(self, other):$/;" m class:BaseTestSuite file: +__eq__ Lib/uuid.py /^ def __eq__(self, other):$/;" m class:UUID file: +__eq__ Lib/weakref.py /^ def __eq__(self, other):$/;" m class:WeakMethod file: +__eq__ Lib/xml/dom/minidom.py /^ def __eq__(self, other):$/;" m class:NamedNodeMap file: +__eq__ Lib/xml/etree/ElementTree.py /^ def __eq__(self, other):$/;" m class:QName file: +__eq__ Lib/xmlrpc/client.py /^ def __eq__(self, other):$/;" m class:Binary file: +__eq__ Lib/xmlrpc/client.py /^ def __eq__(self, other):$/;" m class:DateTime file: +__eq__ Lib/zipfile/_path/__init__.py /^ def __eq__(self, other):$/;" m class:Path file: +__eq__ Lib/zoneinfo/_zoneinfo.py /^ def __eq__(self, other):$/;" m class:_ttinfo file: +__eq__ Tools/c-analyzer/c_analyzer/info.py /^ def __eq__(self, other):$/;" m class:Analyzed file: +__eq__ Tools/c-analyzer/c_parser/info.py /^ def __eq__(self, other):$/;" m class:DeclID file: +__eq__ Tools/c-analyzer/c_parser/info.py /^ def __eq__(self, other):$/;" m class:HighlevelParsedItem file: +__eq__ Tools/peg_generator/pegen/grammar.py /^ def __eq__(self, other: object) -> bool:$/;" m class:Cut file: +__eq__ Tools/ssl/multissltests.py /^ def __eq__(self, other):$/;" m class:AbstractBuilder file: +__excepthook__ Lib/threading.py /^__excepthook__ = excepthook$/;" v +__exception Lib/test/test_asyncio/test_futures.py /^ __exception = None$/;" v class:DuckFuture +__exit__ Lib/_pydecimal.py /^ def __exit__(self, t, v, tb):$/;" m class:_ContextManager file: +__exit__ Lib/_pyio.py /^ def __exit__(self, *args):$/;" m class:IOBase file: +__exit__ Lib/_weakrefset.py /^ def __exit__(self, e, t, b):$/;" m class:_IterationGuard file: +__exit__ Lib/aifc.py /^ def __exit__(self, *args):$/;" m class:Aifc_read file: +__exit__ Lib/aifc.py /^ def __exit__(self, *args):$/;" m class:Aifc_write file: +__exit__ Lib/asyncio/runners.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:Runner file: +__exit__ Lib/asyncio/unix_events.py /^ def __exit__(self, a, b, c):$/;" m class:AbstractChildWatcher file: +__exit__ Lib/asyncio/unix_events.py /^ def __exit__(self, a, b, c):$/;" m class:FastChildWatcher file: +__exit__ Lib/asyncio/unix_events.py /^ def __exit__(self, a, b, c):$/;" m class:SafeChildWatcher file: +__exit__ Lib/asyncio/unix_events.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:MultiLoopChildWatcher file: +__exit__ Lib/asyncio/unix_events.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:ThreadedChildWatcher file: +__exit__ Lib/asyncio/unix_events.py /^ def __exit__(self, exc_type, exc_value, exc_traceback):$/;" m class:PidfdChildWatcher file: +__exit__ Lib/asyncio/windows_utils.py /^ def __exit__(self, t, v, tb):$/;" m class:PipeHandle file: +__exit__ Lib/cProfile.py /^ def __exit__(self, *exc_info):$/;" m class:Profile file: +__exit__ Lib/calendar.py /^ def __exit__(self, *args):$/;" m class:different_locale file: +__exit__ Lib/cgi.py /^ def __exit__(self, *args):$/;" m class:FieldStorage file: +__exit__ Lib/codecs.py /^ def __exit__(self, type, value, tb):$/;" m class:StreamReader file: +__exit__ Lib/codecs.py /^ def __exit__(self, type, value, tb):$/;" m class:StreamReaderWriter file: +__exit__ Lib/codecs.py /^ def __exit__(self, type, value, tb):$/;" m class:StreamRecoder file: +__exit__ Lib/codecs.py /^ def __exit__(self, type, value, tb):$/;" m class:StreamWriter file: +__exit__ Lib/concurrent/futures/_base.py /^ def __exit__(self, *args):$/;" m class:_AcquireFutures file: +__exit__ Lib/concurrent/futures/_base.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:Executor file: +__exit__ Lib/contextlib.py /^ def __exit__(self, *exc_details):$/;" m class:ExitStack file: +__exit__ Lib/contextlib.py /^ def __exit__(self, *exc_info):$/;" m class:closing file: +__exit__ Lib/contextlib.py /^ def __exit__(self, *excinfo):$/;" m class:chdir file: +__exit__ Lib/contextlib.py /^ def __exit__(self, *excinfo):$/;" m class:nullcontext file: +__exit__ Lib/contextlib.py /^ def __exit__(self, exc_type, exc_value, traceback):$/;" m class:AbstractContextManager file: +__exit__ Lib/contextlib.py /^ def __exit__(self, exctype, excinst, exctb):$/;" m class:_RedirectStream file: +__exit__ Lib/contextlib.py /^ def __exit__(self, exctype, excinst, exctb):$/;" m class:suppress file: +__exit__ Lib/contextlib.py /^ def __exit__(self, typ, value, traceback):$/;" m class:_GeneratorContextManager file: +__exit__ Lib/dbm/dumb.py /^ def __exit__(self, *args):$/;" m class:_Database file: +__exit__ Lib/fileinput.py /^ def __exit__(self, type, value, traceback):$/;" m class:FileInput file: +__exit__ Lib/ftplib.py /^ def __exit__(self, *args):$/;" m class:FTP file: +__exit__ Lib/imaplib.py /^ def __exit__(self, *args):$/;" m class:IMAP4 file: +__exit__ Lib/importlib/_bootstrap.py /^ def __exit__(self, *args, **kwargs):$/;" m class:_BlockingOnManager file: +__exit__ Lib/importlib/_bootstrap.py /^ def __exit__(self, *args, **kwargs):$/;" m class:_ModuleLockManager file: +__exit__ Lib/importlib/_bootstrap.py /^ def __exit__(self, exc_type, exc_value, exc_traceback):$/;" m class:_ImportLockContext file: +__exit__ Lib/importlib/util.py /^ def __exit__(self, *args):$/;" m class:_incompatible_extension_module_restrictions file: +__exit__ Lib/mailbox.py /^ def __exit__(self, *exc):$/;" m class:_ProxyFile file: +__exit__ Lib/multiprocessing/connection.py /^ def __exit__(self, exc_type, exc_value, exc_tb):$/;" m class:Listener file: +__exit__ Lib/multiprocessing/connection.py /^ def __exit__(self, exc_type, exc_value, exc_tb):$/;" m class:_ConnectionBase file: +__exit__ Lib/multiprocessing/dummy/connection.py /^ def __exit__(self, exc_type, exc_value, exc_tb):$/;" m class:Connection file: +__exit__ Lib/multiprocessing/dummy/connection.py /^ def __exit__(self, exc_type, exc_value, exc_tb):$/;" m class:Listener file: +__exit__ Lib/multiprocessing/managers.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:AcquirerProxy file: +__exit__ Lib/multiprocessing/managers.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:BaseManager file: +__exit__ Lib/multiprocessing/managers.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:PoolProxy file: +__exit__ Lib/multiprocessing/pool.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:Pool file: +__exit__ Lib/multiprocessing/sharedctypes.py /^ def __exit__(self, *args):$/;" m class:SynchronizedBase file: +__exit__ Lib/multiprocessing/synchronize.py /^ def __exit__(self, *args):$/;" m class:Condition file: +__exit__ Lib/multiprocessing/synchronize.py /^ def __exit__(self, *args):$/;" m class:SemLock file: +__exit__ Lib/multiprocessing/util.py /^ def __exit__(self, *args):$/;" m class:ForkAwareThreadLock file: +__exit__ Lib/nntplib.py /^ def __exit__(self, *args):$/;" m class:NNTP file: +__exit__ Lib/os.py /^ def __exit__(self, *args):$/;" m class:._AddedDllDirectory file: +__exit__ Lib/os.py /^ def __exit__(self, *args):$/;" m class:._wrap_close file: +__exit__ Lib/pathlib.py /^ def __exit__(self, t, v, tb):$/;" m class:Path file: +__exit__ Lib/runpy.py /^ def __exit__(self, *args):$/;" m class:_ModifiedArgv0 file: +__exit__ Lib/runpy.py /^ def __exit__(self, *args):$/;" m class:_TempModule file: +__exit__ Lib/selectors.py /^ def __exit__(self, *args):$/;" m class:BaseSelector file: +__exit__ Lib/shelve.py /^ def __exit__(self, type, value, traceback):$/;" m class:Shelf file: +__exit__ Lib/smtplib.py /^ def __exit__(self, *args):$/;" m class:SMTP file: +__exit__ Lib/socket.py /^ def __exit__(self, *args):$/;" m class:socket file: +__exit__ Lib/socketserver.py /^ def __exit__(self, *args):$/;" m class:BaseServer file: +__exit__ Lib/subprocess.py /^ def __exit__(self, exc_type, value, traceback):$/;" m class:Popen file: +__exit__ Lib/sunau.py /^ def __exit__(self, *args):$/;" m class:Au_read file: +__exit__ Lib/sunau.py /^ def __exit__(self, *args):$/;" m class:Au_write file: +__exit__ Lib/tarfile.py /^ def __exit__(self, type, value, traceback):$/;" m class:TarFile file: +__exit__ Lib/telnetlib.py /^ def __exit__(self, type, value, traceback):$/;" m class:Telnet file: +__exit__ Lib/tempfile.py /^ def __exit__(self, exc, value, tb):$/;" m class:SpooledTemporaryFile file: +__exit__ Lib/tempfile.py /^ def __exit__(self, exc, value, tb):$/;" m class:TemporaryDirectory file: +__exit__ Lib/tempfile.py /^ def __exit__(self, exc, value, tb):$/;" m class:_TemporaryFileWrapper file: +__exit__ Lib/test/audit-tests.py /^ def __exit__(self, *a):$/;" m class:TestHook file: +__exit__ Lib/test/libregrtest/save_env.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:saved_test_environment file: +__exit__ Lib/test/support/__init__.py /^ def __exit__(self, *exc_info):$/;" m class:catch_unraisable_exception file: +__exit__ Lib/test/support/__init__.py /^ def __exit__(self, *ignore_exc):$/;" m class:SuppressCrashReport file: +__exit__ Lib/test/support/__init__.py /^ def __exit__(self, exc_type, exc_value, exc_tb):$/;" m class:PythonSymlink file: +__exit__ Lib/test/support/import_helper.py /^ def __exit__(self, *ignore_exc):$/;" m class:CleanImport file: +__exit__ Lib/test/support/import_helper.py /^ def __exit__(self, *ignore_exc):$/;" m class:DirsOnSysPath file: +__exit__ Lib/test/support/os_helper.py /^ def __exit__(self, *ignore_exc):$/;" m class:EnvironmentVarGuard file: +__exit__ Lib/test/support/threading_helper.py /^ def __exit__(self, *exc_info):$/;" m class:catch_threading_exception file: +__exit__ Lib/test/test_asyncio/functional.py /^ def __exit__(self, *exc):$/;" m class:SocketThread file: +__exit__ Lib/test/test_asyncio/test_ssl.py /^ def __exit__(self, *exc):$/;" m class:SocketThread file: +__exit__ Lib/test/test_bdb.py /^ def __exit__(self, type_=None, value=None, traceback=None):$/;" m class:TracerRun file: +__exit__ Lib/test/test_context.py /^ def __exit__(self, *exc):$/;" m class:HaskKeyCrasher file: +__exit__ Lib/test/test_contextlib.py /^ __exit__ = None$/;" v class:TestAbstractContextManager.test_structural_subclassing.NoExit +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *args):$/;" m class:TestAbstractContextManager.test_enter.DefaultEnter file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *args):$/;" m class:TestAbstractContextManager.test_structural_subclassing.DefaultEnter file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc):$/;" m class:TestContextDecorator.test_contextdecorator_as_mixin.somecontext file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc):$/;" m class:TestContextDecorator.test_typo_enter.mycontext file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc_details):$/;" m class:TestBaseExitStack.test_enter_context.TestCM file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc_details):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.RaiseExc file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc_details):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.RaiseExcWithContext file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc_details):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.SuppressExc file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc_details):$/;" m class:TestBaseExitStack.test_push.ExitCM file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc_info):$/;" m class:TestBaseExitStack.test_enter_context_errors.LacksEnter file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, exc_type, exc_value, traceback):$/;" m class:TestAbstractContextManager.test_structural_subclassing.ManagerFromScratch file: +__exit__ Lib/test/test_contextlib.py /^ def __exit__(self, *exc):$/;" m class:mycontext file: +__exit__ Lib/test/test_contextlib_async.py /^ def __exit__(self, *exc_details):$/;" m class:TestAsyncExitStack.SyncAsyncExitStack file: +__exit__ Lib/test/test_exceptions.py /^ def __exit__ (self, exc_type, exc_value, exc_tb):$/;" m class:ExceptionTests.testExceptionCleanupState.Context file: +__exit__ Lib/test/test_exceptions.py /^ def __exit__(self, *args):$/;" m class:PEP626Tests.test_lineno_after_raise_in_with_exit.ExitFails file: +__exit__ Lib/test/test_exceptions.py /^ def __exit__(self, *args):$/;" m class:PEP626Tests.test_lineno_after_with.Noop file: +__exit__ Lib/test/test_grammar.py /^ def __exit__(self, *args):$/;" m class:GrammarTests.test_with_statement.manager file: +__exit__ Lib/test/test_importlib/util.py /^ def __exit__(self, *exc_info):$/;" m class:_ImporterMock file: +__exit__ Lib/test/test_launcher.py /^ def __exit__(self, *exc_info):$/;" m class:PreservePyIni file: +__exit__ Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def __exit__(self, *args):$/;" m class:GrammarTests.test_with_statement.manager file: +__exit__ Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def __exit__(self, *args):$/;" m class:GrammarTests.test_with_statement.manager file: +__exit__ Lib/test/test_lzma.py /^ def __exit__(self, *args):$/;" m class:TempFile file: +__exit__ Lib/test/test_mmap.py /^ def __exit__(self, exc_type, exc_value, traceback):$/;" m class:MmapTests.test_mmap_closed_by_int_scenarios.MmapClosedByIntContext file: +__exit__ Lib/test/test_pdb.py /^ def __exit__(self, *exc):$/;" m class:PdbTestInput file: +__exit__ Lib/test/test_raise.py /^ def __exit__(self, t, v, tb):$/;" m class:TestContext.test_context_manager.ContextManager file: +__exit__ Lib/test/test_raise.py /^ def __exit__(self, exc_type, exc_value, exc_tb):$/;" m class:Context file: +__exit__ Lib/test/test_shutil.py /^ def __exit__(self, exc_type, exc_val, exc_tb):$/;" m class:TestCopyFile.Faux file: +__exit__ Lib/test/test_ssl.py /^ def __exit__(self, *args):$/;" m class:TestPreHandshakeClose.SingleConnectionTestServerThread file: +__exit__ Lib/test/test_ssl.py /^ def __exit__(self, *args):$/;" m class:AsyncoreEchoServer file: +__exit__ Lib/test/test_ssl.py /^ def __exit__(self, *args):$/;" m class:ThreadedEchoServer file: +__exit__ Lib/test/test_sys_settrace.py /^ def __exit__(*args):$/;" m class:TraceTestCase.test_early_exit_with.C file: +__exit__ Lib/test/test_sys_settrace.py /^ def __exit__(*args):$/;" m class:TraceTestCase.test_if_false_in_with.C file: +__exit__ Lib/test/test_sys_settrace.py /^ def __exit__(self, *excinfo):$/;" m class:TraceTestCase.test_tracing_exception_raised_in_with.NullCtx file: +__exit__ Lib/test/test_sys_settrace.py /^ def __exit__(self, *exc_info):$/;" m class:tracecontext file: +__exit__ Lib/test/test_tabnanny.py /^ def __exit__(self, exc_type, exc_value, exc_traceback):$/;" m class:TemporaryPyFile file: +__exit__ Lib/test/test_tarfile.py /^ def __exit__(self, *exc_info):$/;" m class:TestExtractionFilters.test_stateful_filter.StatefulFilter file: +__exit__ Lib/test/test_tarfile.py /^ def __exit__(self, *exc):$/;" m class:ArchiveMaker file: +__exit__ Lib/test/test_tempfile.py /^ def __exit__(self, *exc_info):$/;" m class:NulledModules file: +__exit__ Lib/test/test_unittest/test_runner.py /^ def __exit__(self, *exc_info):$/;" m class:LacksEnter file: +__exit__ Lib/test/test_unittest/test_runner.py /^ def __exit__(self, *exc_info):$/;" m class:TestCM file: +__exit__ Lib/test/test_unittest/testmock/testasync.py /^ def __exit__(self, *args, **kwargs): pass$/;" m class:AsyncContextManagerTest.WithSyncContextManager file: +__exit__ Lib/test/test_unittest/testmock/testpatch.py /^ def __exit__(self, etype=None, val=None, tb=None):$/;" m class:PatchTest.test_patch_propagates_exc_on_exit.custom_patch file: +__exit__ Lib/test/test_urllib2net.py /^ def __exit__(self, type_=None, value=None, traceback=None):$/;" m class:TransientResource file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, *args):$/;" m class:FailureTestCase.testEnterThrows.EnterThrows file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, *args):$/;" m class:FailureTestCase.testExitThrows.ExitThrows file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, a, b, c):$/;" m class:ExceptionalTestCase.testErrorsInBool.cm file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, t, v, tb): pass$/;" m class:AssignmentTargetTestCase.testMultipleComplexTargets.C file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, t, v, tb): return False$/;" m class:ExitSwallowsExceptionTestCase.testExitFalseDoesntSwallowException.EuropeanSwallow file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, t, v, tb): return True$/;" m class:ExitSwallowsExceptionTestCase.testExitTrueSwallowsException.AfricanSwallow file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, type, value, traceback):$/;" m class:ExceptionalTestCase.testRaisedGeneratorExit2.cm file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, type, value, traceback):$/;" m class:ExceptionalTestCase.testRaisedStopIteration2.cm file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, type, value, traceback):$/;" m class:FailureTestCase.testEnterAttributeError1.LacksEnter file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, *exc_info): pass$/;" m class:NestedWith.EnterRaises file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, *exc_info): raise RuntimeError()$/;" m class:NestedWith.ExitRaises file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, *exc_info):$/;" m class:NestedWith.Dummy file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, *exc_info):$/;" m class:MockNested file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, *exc_info):$/;" m class:Nested file: +__exit__ Lib/test/test_with.py /^ def __exit__(self, type, value, traceback):$/;" m class:MockContextManager file: +__exit__ Lib/threading.py /^ def __exit__(self, *args):$/;" m class:Condition file: +__exit__ Lib/threading.py /^ def __exit__(self, t, v, tb):$/;" m class:Semaphore file: +__exit__ Lib/threading.py /^ def __exit__(self, t, v, tb):$/;" m class:_RLock file: +__exit__ Lib/typing.py /^ def __exit__(self, type, value, traceback) -> None:$/;" m class:IO file: +__exit__ Lib/unittest/_log.py /^ def __exit__(self, exc_type, exc_value, tb):$/;" m class:_AssertLogsContext file: +__exit__ Lib/unittest/case.py /^ def __exit__(self, exc_type, exc_value, tb):$/;" m class:_AssertRaisesContext file: +__exit__ Lib/unittest/case.py /^ def __exit__(self, exc_type, exc_value, tb):$/;" m class:_AssertWarnsContext file: +__exit__ Lib/unittest/mock.py /^ def __exit__(self, *args):$/;" m class:_patch_dict file: +__exit__ Lib/unittest/mock.py /^ def __exit__(self, *exc_info):$/;" m class:_patch file: +__exit__ Lib/urllib/response.py /^ def __exit__(self, type, value, traceback):$/;" m class:addbase file: +__exit__ Lib/warnings.py /^ def __exit__(self, *exc_info):$/;" m class:catch_warnings file: +__exit__ Lib/wave.py /^ def __exit__(self, *args):$/;" m class:Wave_read file: +__exit__ Lib/wave.py /^ def __exit__(self, *args):$/;" m class:Wave_write file: +__exit__ Lib/xml/dom/minidom.py /^ def __exit__(self, et, ev, tb):$/;" m class:Node file: +__exit__ Lib/xmlrpc/client.py /^ def __exit__(self, *args):$/;" m class:ServerProxy file: +__exit__ Lib/zipfile/__init__.py /^ def __exit__(self, type, value, traceback):$/;" m class:ZipFile file: +__exit__ Tools/scripts/summarize_stats.py /^ def __exit__(*args):$/;" m class:Section file: +__file__ Lib/test/test_lib2to3/test_parser.py /^ __file__ = 'parsertestmodule'$/;" v class:TestPgen2Caching.test_load_packaged_grammar.MyModule +__file__ Lib/test/test_unittest/test_discovery.py /^ __file__ = 'bar\/foo.py'$/;" v class:TestDiscovery.setup_module_clash.Module +__file__ Tools/build/generate_global_objects.py /^__file__ = os.path.abspath(__file__)$/;" v +__final__ Lib/test/test_typing.py /^ def __final__(self): return "can't set me"$/;" m class:FinalDecoratorTests.test_dunder_final.Meta file: +__float__ Lib/_pydecimal.py /^ def __float__(self):$/;" m class:Decimal file: +__float__ Lib/collections/__init__.py /^ def __float__(self):$/;" m class:UserString file: +__float__ Lib/numbers.py /^ def __float__(self):$/;" m class:Integral file: +__float__ Lib/numbers.py /^ def __float__(self):$/;" m class:Rational file: +__float__ Lib/numbers.py /^ def __float__(self):$/;" m class:Real file: +__float__ Lib/test/test_binop.py /^ def __float__(self):$/;" m class:Rat file: +__float__ Lib/test/test_capi/test_getargs.py /^ def __float__(self):$/;" m class:BadFloat file: +__float__ Lib/test/test_capi/test_getargs.py /^ def __float__(self):$/;" m class:BadFloat2 file: +__float__ Lib/test/test_capi/test_getargs.py /^ def __float__(self):$/;" m class:BadFloat3 file: +__float__ Lib/test/test_capi/test_getargs.py /^ def __float__(self):$/;" m class:Float file: +__float__ Lib/test/test_capi/test_getargs.py /^ def __float__(self):$/;" m class:FloatSubclass2 file: +__float__ Lib/test/test_class.py /^ __float__ = __int__$/;" v class:ClassTests.testBadTypeReturned.BadTypeClass +__float__ Lib/test/test_cmath.py /^ def __float__(self):$/;" m class:CMathTests.test_user_object.FloatAndComplex file: +__float__ Lib/test/test_cmath.py /^ def __float__(self):$/;" m class:CMathTests.test_user_object.JustFloat file: +__float__ Lib/test/test_complex.py /^ def __float__(self):$/;" m class:ComplexTest.test_constructor.float2 file: +__float__ Lib/test/test_ctypes/test_numbers.py /^ def __float__(self):$/;" m class:NumberTestCase.test_floats.FloatLike file: +__float__ Lib/test/test_ctypes/test_numbers.py /^ def __float__(self):$/;" m class:NumberTestCase.test_integers.FloatLike file: +__float__ Lib/test/test_float.py /^ def __float__(self):$/;" m class:GeneralFloatCases.test_floatconversion.F file: +__float__ Lib/test/test_float.py /^ def __float__(self):$/;" m class:GeneralFloatCases.test_floatconversion.Foo1 file: +__float__ Lib/test/test_float.py /^ def __float__(self):$/;" m class:GeneralFloatCases.test_floatconversion.Foo2 file: +__float__ Lib/test/test_float.py /^ def __float__(self):$/;" m class:GeneralFloatCases.test_floatconversion.Foo3 file: +__float__ Lib/test/test_float.py /^ def __float__(self):$/;" m class:GeneralFloatCases.test_floatconversion.Foo4 file: +__float__ Lib/test/test_float.py /^ def __float__(self):$/;" m class:GeneralFloatCases.test_floatconversion.Foo5 file: +__float__ Lib/test/test_float.py /^ def __float__(self):$/;" m class:GeneralFloatCases.test_floatconversion.FooStr file: +__float__ Lib/test/test_fractions.py /^ def __float__(self):$/;" m class:DummyFloat file: +__float__ Lib/test/test_fractions.py /^ def __float__(self):$/;" m class:DummyRational file: +__float__ Lib/test/test_math.py /^ def __float__(self):$/;" m class:MathTests.test_issue39871.F file: +__float__ Lib/test/test_math.py /^ def __float__(self):$/;" m class:FloatLike file: +__float__ Lib/test/test_memoryview.py /^ def __float__(self):$/;" m class:OtherTest.test_use_released_memory.MyFloat file: +__float__ Lib/typing.py /^ def __float__(self) -> float:$/;" m class:SupportsFloat file: +__float__ Modules/_decimal/tests/deccheck.py /^ def __float__(self, t):$/;" m class:SkipHandler file: +__floor__ Lib/_pydecimal.py /^ def __floor__(self):$/;" m class:Decimal file: +__floor__ Lib/fractions.py /^ def __floor__(a):$/;" m class:Fraction file: +__floor__ Lib/numbers.py /^ def __floor__(self):$/;" m class:Real file: +__floor__ Lib/test/test_math.py /^ def __floor__(self):$/;" m class:MathTests.testFloor.FloatFloor file: +__floor__ Lib/test/test_math.py /^ def __floor__(self):$/;" m class:MathTests.testFloor.TestFloor file: +__floordiv__ Lib/_pydatetime.py /^ def __floordiv__(self, other):$/;" m class:timedelta file: +__floordiv__ Lib/_pydecimal.py /^ def __floordiv__(self, other, context=None):$/;" m class:Decimal file: +__floordiv__ Lib/numbers.py /^ def __floordiv__(self, other):$/;" m class:Real file: +__floordiv__ Lib/operator.py /^__floordiv__ = floordiv$/;" v +__floordiv__ Lib/test/datetimetester.py /^ def __floordiv__(self, other):$/;" m class:TestTimeDelta.test_issue31752.BadInt file: +__floordiv__ Lib/test/test_augassign.py /^ def __floordiv__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__floordiv__ Lib/test/test_binop.py /^ def __floordiv__(self, other):$/;" m class:Rat file: +__floordiv__ Lib/test/test_descr.py /^ def __floordiv__(self, other):$/;" m class:.test_subclass_right_op.B file: +__floordiv__ Lib/test/test_descr.py /^ def __floordiv__(self, other):$/;" m class:.test_subclass_right_op.C file: +__floordiv__ Lib/test/test_descr.py /^ def __floordiv__(self, other):$/;" m class:.test_subclass_right_op.D file: +__floordiv__ Lib/test/test_fractions.py /^ def __floordiv__(self, other):$/;" m class:FractionTest.testIntGuaranteesIntReturn.CustomInt file: +__floordiv__ Lib/test/test_fractions.py /^ def __floordiv__(self, other):$/;" m class:FractionTest.test_int_subclass.myint file: +__floordiv__ Lib/test/test_weakref.py /^ def __floordiv__(self, other):$/;" m class:ReferencesTestCase.test_proxy_div.C file: +__format__ Lib/_pydatetime.py /^ def __format__(self, fmt):$/;" m class:date file: +__format__ Lib/_pydatetime.py /^ def __format__(self, fmt):$/;" m class:time file: +__format__ Lib/_pydecimal.py /^ def __format__(self, specifier, context=None, _localeconv=None):$/;" m class:Decimal file: +__format__ Lib/enum.py /^ def __format__(self, format_spec):$/;" m class:Enum file: +__format__ Lib/fractions.py /^ def __format__(self, format_spec, \/):$/;" m class:Fraction file: +__format__ Lib/ipaddress.py /^ def __format__(self, fmt):$/;" m class:_BaseAddress file: +__format__ Lib/test/test_builtin.py /^ def __format__(self, format_spec):$/;" m class:BuiltinTest.test_format.classes_new.A file: +__format__ Lib/test/test_builtin.py /^ def __format__(self, format_spec):$/;" m class:BuiltinTest.test_format.classes_new.DerivedFromSimple file: +__format__ Lib/test/test_builtin.py /^ def __format__(self, fmt_str):$/;" m class:BuiltinTest.test_format.A file: +__format__ Lib/test/test_builtin.py /^ def __format__(self, format_spec):$/;" m class:BuiltinTest.test_format.BadFormatResult file: +__format__ Lib/test/test_enum.py /^ def __format__(self, spec):$/;" m class:_EnumTests.setUp.NewBaseEnum file: +__format__ Lib/test/test_enum.py /^ def __format__(self, spec):$/;" m class:_EnumTests.setUp.NewFormatEnum file: +__format__ Lib/test/test_enum.py /^ def __format__(self, spec):$/;" m class:_EnumTests.setUp.NewStrFormatEnum file: +__format__ Lib/test/test_enum.py /^ def __format__(self):$/;" m class:TestSpecial.test_dir_with_custom_dunders.MyEnum file: +__format__ Lib/test/test_enum.py /^ def __format__(self, spec):$/;" f function:_EnumTests.setUp file: +__format__ Lib/test/test_fstring.py /^ def __format__(self, format_spec):$/;" m class:.test_custom_format_specifier.CustomFormat file: +__format__ Lib/test/test_fstring.py /^ def __format__(self, s):$/;" m class:.test_debug_conversion.C file: +__format__ Lib/test/test_fstring.py /^ def __format__(self, spec):$/;" m class:.test_missing_format_spec.O file: +__format__ Lib/test/test_fstring.py /^ def __format__(self, spec):$/;" m class:.test_side_effect_order.X file: +__format__ Lib/test/test_fstring.py /^ def __format__(self, spec):$/;" m class:TestCase.test__format__lookup.X file: +__format__ Lib/test/test_unicode.py /^ __format__ = None$/;" v class:UnicodeTest.test_format.N +__format__ Lib/test/test_unicode.py /^ def __format__(self, format_spec):$/;" m class:UnicodeTest.test_format.G file: +__format__ Lib/test/test_unicode.py /^ def __format__(self, format_spec):$/;" m class:UnicodeTest.test_format.I file: +__format__ Lib/test/test_unicode.py /^ def __format__(self, format_spec):$/;" m class:UnicodeTest.test_format.J file: +__format__ Lib/test/test_unicode.py /^ def __format__(self, spec):$/;" m class:UnicodeTest.test_format.C file: +__format__ Lib/test/test_unicode.py /^ def __format__(self, spec):$/;" m class:UnicodeTest.test_format.D file: +__format__ Lib/test/test_unicode.py /^ def __format__(self, spec):$/;" m class:UnicodeTest.test_format_auto_numbering.C file: +__format__ Lib/test/test_unicode.py /^ def __format__(self, spec):$/;" m class:UnicodeTest.test_format_map.C file: +__forwardmethods Lib/turtle.py /^def __forwardmethods(fromClass, toClass, toPart, exclude = ()):$/;" f file: +__fqdn Lib/test/smtpd.py /^ def __fqdn(self):$/;" m class:SMTPChannel file: +__fqdn Lib/test/smtpd.py /^ def __fqdn(self, value):$/;" m class:SMTPChannel file: +__frame2fileline Lib/idlelib/debugger.py /^ def __frame2fileline(self, frame):$/;" m class:Debugger file: +__frame2message Lib/idlelib/debugger.py /^ def __frame2message(self, frame):$/;" m class:Idb file: +__frees Lib/symtable.py /^ __frees = None$/;" v class:Function +__fspath__ Lib/os.py /^ def __fspath__(self):$/;" m class:PathLike file: +__fspath__ Lib/pathlib.py /^ def __fspath__(self):$/;" m class:PurePath file: +__fspath__ Lib/test/support/os_helper.py /^ def __fspath__(self):$/;" m class:FakePath file: +__fspath__ Lib/test/test_ctypes/test_loading.py /^ def __fspath__(self):$/;" m class:LoaderTest.test_load.CTypesTestPathLikeCls file: +__fspath__ Lib/test/test_tempfile.py /^ def __fspath__(self):$/;" m class:TestLowLevelInternals.test_infer_return_type_pathlike.Path file: +__fspath__ Lib/test/test_winsound.py /^ def __fspath__(self):$/;" m class:BytesPath file: +__gb18030ext_decmap Modules/cjkcodecs/mappings_cn.h /^static const ucs2_t __gb18030ext_decmap[2729] = {$/;" v +__gb18030ext_encmap Modules/cjkcodecs/mappings_cn.h /^static const DBCHAR __gb18030ext_encmap[3227] = {$/;" v +__gb2312_decmap Modules/cjkcodecs/mappings_cn.h /^static const ucs2_t __gb2312_decmap[7482] = {$/;" v +__gbcommon_encmap Modules/cjkcodecs/mappings_cn.h /^static const DBCHAR __gbcommon_encmap[23231] = {$/;" v +__gbkext_decmap Modules/cjkcodecs/mappings_cn.h /^static const ucs2_t __gbkext_decmap[14531] = {$/;" v +__ge__ Lib/_collections_abc.py /^ def __ge__(self, other):$/;" m class:Set file: +__ge__ Lib/_pydatetime.py /^ def __ge__(self, other):$/;" m class:date file: +__ge__ Lib/_pydatetime.py /^ def __ge__(self, other):$/;" m class:datetime file: +__ge__ Lib/_pydatetime.py /^ def __ge__(self, other):$/;" m class:time file: +__ge__ Lib/_pydatetime.py /^ def __ge__(self, other):$/;" m class:timedelta file: +__ge__ Lib/_pydecimal.py /^ def __ge__(self, other, context=None):$/;" m class:Decimal file: +__ge__ Lib/_weakrefset.py /^ __ge__ = issuperset$/;" v class:WeakSet +__ge__ Lib/asyncio/events.py /^ def __ge__(self, other):$/;" m class:TimerHandle file: +__ge__ Lib/collections/__init__.py /^ def __ge__(self, other):$/;" m class:Counter file: +__ge__ Lib/collections/__init__.py /^ def __ge__(self, other):$/;" m class:UserList file: +__ge__ Lib/collections/__init__.py /^ def __ge__(self, string):$/;" m class:UserString file: +__ge__ Lib/fractions.py /^ def __ge__(a, b):$/;" m class:Fraction file: +__ge__ Lib/functools.py /^ def __ge__(self, other):$/;" m class:cmp_to_key.K file: +__ge__ Lib/operator.py /^__ge__ = ge$/;" v +__ge__ Lib/pathlib.py /^ def __ge__(self, other):$/;" m class:PurePath file: +__ge__ Lib/test/test_binop.py /^ def __ge__(self, other):$/;" m class:A file: +__ge__ Lib/test/test_binop.py /^ def __ge__(self, other):$/;" m class:B file: +__ge__ Lib/test/test_binop.py /^ def __ge__(self, other):$/;" m class:C file: +__ge__ Lib/test/test_binop.py /^ def __ge__(self, other):$/;" m class:V file: +__ge__ Lib/test/test_bisect.py /^ __ge__ = __lt__$/;" v class:CmpErr +__ge__ Lib/test/test_collections.py /^ __ge__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__ge__ Lib/test/test_compare.py /^ def __ge__(self, other):$/;" m class:ComparisonFullTest.CompGe file: +__ge__ Lib/test/test_compare.py /^ def __ge__(self, other):$/;" m class:ComparisonFullTest.CompLeGe file: +__ge__ Lib/test/test_dataclasses.py /^ def __ge__(self):$/;" m class:TestOrdering.test_overwriting_order.C file: +__ge__ Lib/test/test_decimal.py /^ def __ge__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__ge__ Lib/test/test_descr.py /^ def __ge__(self, other):$/;" m class:.test_classic_comparisons.classic.C file: +__ge__ Lib/test/test_descr.py /^ def __ge__(self, other):$/;" m class:.test_rich_comparisons.classic.C file: +__ge__ Lib/test/test_descr.py /^ def __ge__(self, other):$/;" m class:.test_specials.Proxy file: +__ge__ Lib/test/test_enum.py /^ def __ge__(self, other):$/;" m class:TestSpecial.test_ordered_mixin.OrderedEnum file: +__ge__ Lib/test/test_fractions.py /^ def __ge__(self, other): return self._richcmp(other, operator.ge)$/;" m class:DummyFloat file: +__ge__ Lib/test/test_fractions.py /^ def __ge__(self, other):$/;" m class:DummyRational file: +__ge__ Lib/test/test_functools.py /^ def __ge__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsGreaterThanEqualTo file: +__ge__ Lib/test/test_functools.py /^ def __ge__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_ge.A file: +__ge__ Lib/test/test_functools.py /^ def __ge__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsGreaterThanEqualTo file: +__ge__ Lib/test/test_long.py /^ def __ge__(self, other):$/;" m class:LongTest.test_mixed_compares.Rat file: +__ge__ Lib/test/test_pprint.py /^ def __ge__(self, other):$/;" m class:Orderable file: +__ge__ Lib/test/test_richcmp.py /^ def __ge__(self_, other): self.fail("This shouldn't happen")$/;" m class:MiscTest.test_misbehavin.Misb file: +__ge__ Lib/test/test_richcmp.py /^ def __ge__(self, other):$/;" m class:Number file: +__ge__ Lib/test/test_richcmp.py /^ def __ge__(self, other):$/;" m class:Vector file: +__ge__ Lib/test/test_set.py /^ def __ge__(self, some_set):$/;" m class:TestSet.test_rich_compare.TestRichSetCompare file: +__ge__ Lib/uuid.py /^ def __ge__(self, other):$/;" m class:UUID file: +__ge__ Lib/xml/dom/minidom.py /^ def __ge__(self, other):$/;" m class:NamedNodeMap file: +__ge__ Lib/xml/etree/ElementTree.py /^ def __ge__(self, other):$/;" m class:QName file: +__ge__ Lib/xmlrpc/client.py /^ def __ge__(self, other):$/;" m class:DateTime file: +__getId Lib/test/support/testresult.py /^ def __getId(cls, test):$/;" m class:RegressionTestResult file: +__get__ Lib/enum.py /^ def __get__(self, instance, ownerclass=None):$/;" m class:property file: +__get__ Lib/functools.py /^ def __get__(self, instance, owner=None):$/;" m class:cached_property file: +__get__ Lib/functools.py /^ def __get__(self, obj, cls=None):$/;" m class:partialmethod file: +__get__ Lib/functools.py /^ def __get__(self, obj, cls=None):$/;" m class:singledispatchmethod file: +__get__ Lib/test/test_dataclasses.py /^ def __get__(self, instance, owner):$/;" m class:TestDescriptors.test_set_name.D file: +__get__ Lib/test/test_dataclasses.py /^ def __get__(self, instance: Any, owner: object) -> int:$/;" m class:TestDescriptors.test_default_value.D file: +__get__ Lib/test/test_dataclasses.py /^ def __get__(self, instance: Any, owner: object) -> int:$/;" m class:TestDescriptors.test_no_default_value.D file: +__get__ Lib/test/test_decorators.py /^ def __get__(self, instance, owner):$/;" m class:TestDecorators.test_wrapped_descriptor_inside_classmethod.Wrapper file: +__get__ Lib/test/test_decorators.py /^ def __get__(self, instance, owner=None):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod1 file: +__get__ Lib/test/test_decorators.py /^ def __get__(self, instance, owner=None):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2 file: +__get__ Lib/test/test_descr.py /^ def __get__(self, obj, type=None):$/;" m class:.test_compattr.C.computed_attribute file: +__get__ Lib/test/test_descr.py /^ __get__ = _testcapi.bad_get$/;" v class:.test_bpo25750.Descr +__get__ Lib/test/test_descr.py /^ def __get__(self, ob, type=None):$/;" m class:.test_vicious_descriptor_nonsense.Descr file: +__get__ Lib/test/test_descr.py /^ def __get__(self, obj, objtype=None):$/;" m class:.test_getattr_hooks.Descriptor file: +__get__ Lib/test/test_descr.py /^ def __get__(self, obj, owner):$/;" m class:.test_special_method_lookup.ErrDescr file: +__get__ Lib/test/test_descr.py /^ def __get__(self, obj, owner):$/;" m class:.test_special_method_lookup.SpecialDescr file: +__get__ Lib/test/test_descr.py /^ def __get__(self, object, otype):$/;" m class:.test_doc_descriptor.DocDescr file: +__get__ Lib/test/test_enum.py /^ def __get__(self, instance, ownerclass):$/;" m class:classproperty file: +__get__ Lib/test/test_inspect.py /^ def __get__(*_):$/;" m class:TestGetattrStatic.test_descriptor_raises_AttributeError.descriptor file: +__get__ Lib/test/test_inspect.py /^ def __get__(self, instance, owner):$/;" m class:TestGetattrStatic.test_descriptor.descriptor file: +__get__ Lib/test/test_inspect.py /^ def __get__(self, instance, owner):$/;" m class:TestGetattrStatic.test_metaclass_with_descriptor.descriptor file: +__get__ Lib/test/test_inspect.py /^ def __get__(self, value, type=None): pass$/;" m class:TestIsDataDescriptor.test_custom_descriptors.NonDataDescriptor file: +__get__ Lib/test/test_inspect.py /^ def __get__(*args):$/;" m class:_BrokenDataDescriptor file: +__get__ Lib/test/test_inspect.py /^ def __get__(*args):$/;" m class:_BrokenMethodDescriptor file: +__get__ Lib/test/test_module/__init__.py /^ def __get__(self, o, t):$/;" m class:ModuleTests.test_descriptor_errors_propagate.Descr file: +__get__ Lib/test/test_opcache.py /^ def __get__(self, instance, owner):$/;" m class:TestLoadSuperAttrCache.test_descriptor_not_double_executed_on_spec_fail.Descriptor file: +__get__ Lib/test/test_opcache.py /^ def __get__(self, instance, owner):$/;" f function:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization file: +__get__ Lib/test/test_opcache.py /^ def __get__(self, instance, owner):$/;" f function:TestLoadMethodCache.test_descriptor_added_after_optimization file: +__get__ Lib/test/test_opcache.py /^ def __get__(self, instance, owner):$/;" f function:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization file: +__get__ Lib/test/test_pydoc.py /^ def __get__(self, obj, cls):$/;" m class:TestDescriptions.test_custom_data_descriptor.Descr file: +__get__ Lib/test/test_pydoc.py /^ def __get__(self, obj, cls):$/;" m class:TestDescriptions.test_custom_non_data_descriptor.Descr file: +__get__ Lib/test/test_typing.py /^ def __get__(self, obj, objtype=None):$/;" m class:OverrideDecoratorTests.test_silent_failure.CustomProp file: +__get__ Lib/test/test_typing.py /^ def __get__(self, obj, objtype=None):$/;" m class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.CustomDescriptor file: +__get__ Lib/test/test_typing.py /^ def __get__(self, obj, objtype=None):$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.CustomDescriptor file: +__get__ Lib/test/test_unittest/test_loader.py /^ def __get__(*ignored):$/;" m class:Test_TestLoader.test_getTestCaseNames__testNamePatterns__attribute_access_regression.Trap file: +__get__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __get__(self, obj, cls=None):$/;" m class:SpecSignatureTest.test_autospec_data_descriptor.Descriptor file: +__get__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __get__(self, obj, type=None):$/;" m class:SpecSignatureTest.test_skip_attributeerrors.Raiser file: +__get__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __get__(self, obj, type_):$/;" m class:SpecSignatureTest.test_spec_has_descriptor_returning_function.CrazyDescriptor file: +__get__ Lib/types.py /^ def __get__(self, instance, ownerclass=None):$/;" m class:DynamicClassAttribute file: +__get__ Lib/unittest/mock.py /^ def __get__(self, obj, _type=None):$/;" m class:MagicProxy file: +__get__ Lib/unittest/mock.py /^ def __get__(self, obj, obj_type=None):$/;" m class:PropertyMock file: +__get__ Tools/c-analyzer/c_common/clsutil.py /^ def __get__(self, obj, cls):$/;" m class:Slot file: +__get__ Tools/c-analyzer/c_common/clsutil.py /^ def __get__(self, obj, cls):$/;" m class:classonly file: +__get_builtin_constructor Lib/hashlib.py /^def __get_builtin_constructor(name):$/;" f file: +__get_hash Lib/hashlib.py /^ __get_hash = __get_builtin_constructor$/;" v +__get_openssl_constructor Lib/hashlib.py /^def __get_openssl_constructor(name):$/;" f file: +__get_result Lib/concurrent/futures/_base.py /^ def __get_result(self):$/;" m class:Future file: +__get_return_value Lib/unittest/mock.py /^ def __get_return_value(self):$/;" m class:NonCallableMock file: +__get_side_effect Lib/unittest/mock.py /^ def __get_side_effect(self):$/;" m class:NonCallableMock file: +__get_x Lib/test/test_descr.py /^ def __get_x(self):$/;" m class:.test_compattr.C file: +__getattr__ Lib/ast.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/calendar.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/cgi.py /^ def __getattr__(self, name):$/;" m class:FieldStorage file: +__getattr__ Lib/codecs.py /^ def __getattr__(self, name,$/;" m class:StreamReader file: +__getattr__ Lib/codecs.py /^ def __getattr__(self, name,$/;" m class:StreamReaderWriter file: +__getattr__ Lib/codecs.py /^ def __getattr__(self, name,$/;" m class:StreamRecoder file: +__getattr__ Lib/codecs.py /^ def __getattr__(self, name,$/;" m class:StreamWriter file: +__getattr__ Lib/concurrent/futures/__init__.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/ctypes/__init__.py /^ def __getattr__(self, name):$/;" m class:CDLL file: +__getattr__ Lib/ctypes/__init__.py /^ def __getattr__(self, name):$/;" m class:LibraryLoader file: +__getattr__ Lib/filecmp.py /^ def __getattr__(self, attr):$/;" m class:dircmp file: +__getattr__ Lib/idlelib/debugger_r.py /^ def __getattr__(self, name):$/;" m class:CodeProxy file: +__getattr__ Lib/idlelib/debugger_r.py /^ def __getattr__(self, name):$/;" m class:DictProxy file: +__getattr__ Lib/idlelib/debugger_r.py /^ def __getattr__(self, name):$/;" m class:FrameProxy file: +__getattr__ Lib/idlelib/debugobj_r.py /^ def __getattr__(self, name):$/;" m class:StubObjectTreeItem file: +__getattr__ Lib/idlelib/debugobj_r.py /^ def __getattr__(self, name):$/;" m class:WrappedObjectTreeItem file: +__getattr__ Lib/idlelib/delegator.py /^ def __getattr__(self, name):$/;" m class:Delegator file: +__getattr__ Lib/idlelib/idle_test/test_calltip.py /^ def __getattr__(self, name): # Not invoked for class attribute.$/;" m class:.test_buggy_getattr_class.NoCall file: +__getattr__ Lib/idlelib/idle_test/test_format.py /^ def __getattr__(self, name):$/;" m class:TextWrapper file: +__getattr__ Lib/idlelib/idle_test/test_history.py /^ def __getattr__(self, name):$/;" m class:TextWrapper file: +__getattr__ Lib/idlelib/rpc.py /^ def __getattr__(self, name):$/;" m class:RPCProxy file: +__getattr__ Lib/imaplib.py /^ def __getattr__(self, attr):$/;" m class:IMAP4 file: +__getattr__ Lib/importlib/abc.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/importlib/resources/_adapters.py /^ def __getattr__(self, attr):$/;" m class:CompatibilityFiles file: +__getattr__ Lib/importlib/resources/_adapters.py /^ def __getattr__(self, name):$/;" m class:SpecLoaderAdapter file: +__getattr__ Lib/multiprocessing/managers.py /^ def __getattr__(self, key):$/;" m class:NamespaceProxy file: +__getattr__ Lib/os.py /^ def __getattr__(self, name):$/;" m class:._wrap_close file: +__getattr__ Lib/sqlite3/__init__.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/sqlite3/dbapi2.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/tempfile.py /^ def __getattr__(self, name):$/;" m class:_TemporaryFileWrapper file: +__getattr__ Lib/test/pickletester.py /^ def __getattr__(self, key):$/;" m class:BadGetattr file: +__getattr__ Lib/test/profilee.py /^ def __getattr__(self, name):$/;" m class:C file: +__getattr__ Lib/test/support/_hypothesis_stubs/strategies.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/test/support/warnings_helper.py /^ def __getattr__(self, attr):$/;" m class:WarningsRecorder file: +__getattr__ Lib/test/test_asyncio/functional.py /^ def __getattr__(self, name):$/;" m class:TestSocketWrapper file: +__getattr__ Lib/test/test_asyncio/test_ssl.py /^ def __getattr__(self, name):$/;" m class:TestSocketWrapper file: +__getattr__ Lib/test/test_builtin.py /^ def __getattr__(self, what):$/;" m class:BuiltinTest.test_hasattr.A file: +__getattr__ Lib/test/test_builtin.py /^ def __getattr__(self, what):$/;" m class:BuiltinTest.test_hasattr.B file: +__getattr__ Lib/test/test_cgi.py /^ def __getattr__(self, name):$/;" m class:.test_fieldstorage_readline.TestReadlineFile file: +__getattr__ Lib/test/test_cgi.py /^ def __getattr__(self, attr):$/;" m class:ComparableException file: +__getattr__ Lib/test/test_class.py /^ def __getattr__(self, *args):$/;" m class:ClassTests.testGetSetAndDel.ExtraTests file: +__getattr__ Lib/test/test_ctypes/test_cfuncs.py /^ def __getattr__(self, name):$/;" m class:.stdcall_dll file: +__getattr__ Lib/test/test_dataclasses.py /^ def __getattr__(self, key):$/;" m class:TestCase.test_is_dataclass_when_getattr_always_returns.A file: +__getattr__ Lib/test/test_decorators.py /^ def __getattr__(self, fname):$/;" m class:TestDecorators.test_eval_order.NameLookupTracer file: +__getattr__ Lib/test/test_descr.py /^ __getattr__ = descr$/;" v class:.test_getattr_hooks.B +__getattr__ Lib/test/test_descr.py /^ __getattr__ = descr$/;" v class:.test_getattr_hooks.C +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, attr):$/;" m class:.test_file_fault.StdoutGuard file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, attr):$/;" m class:.test_load_attr_extended_arg.Numbers file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, attr):$/;" m class:PicklingTests.test_issue24097.A file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, attr):$/;" m class:PicklingTests.test_special_method_lookup.Picky file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, attr, test=self):$/;" m class:.test_special_method_lookup.Checker file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, name):$/;" m class:.test_attr_raise_through_property.A file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, name):$/;" m class:.test_attr_raise_through_property.B file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, name):$/;" m class:.test_dir.Wrapper file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, name):$/;" m class:.test_getattr_hooks.EvilGetattribute file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, name):$/;" m class:.test_overloading.C file: +__getattr__ Lib/test/test_descr.py /^ def __getattr__(self, name):$/;" f function:.test_subclass_propagation file: +__getattr__ Lib/test/test_gc.py /^ def __getattr__(self, someattribute):$/;" m class:GCTests.test_boom.Boom file: +__getattr__ Lib/test/test_gc.py /^ def __getattr__(self, someattribute):$/;" m class:GCTests.test_boom2.Boom2 file: +__getattr__ Lib/test/test_import/__init__.py /^ def __getattr__(self, _):$/;" m class:ImportTests.test_from_import_AttributeError.AlwaysAttributeError file: +__getattr__ Lib/test/test_importlib/test_spec.py /^ def __getattr__(self, name):$/;" m class:TestLoader file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(cls, name):$/;" m class:TestClassesAndFunctions.test_getmembers_VirtualAttribute.M file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, attr):$/;" m class:TestGetattrStatic.test_custom___getattr__.Foo file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, attr):$/;" m class:TestPredicates.test_isclass.CustomGetattr file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, attribute):$/;" m class:TestClassesAndFunctions.test_getmembers_VirtualAttribute.B file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, name):$/;" m class:TestClassesAndFunctions.test_classify_DynamicClassAttribute.Meta file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, name):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute.Meta file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, name):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta1 file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, name):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta2 file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(self, name):$/;" m class:TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta3 file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(*args):$/;" m class:_BrokenDataDescriptor file: +__getattr__ Lib/test/test_inspect.py /^ def __getattr__(*args):$/;" m class:_BrokenMethodDescriptor file: +__getattr__ Lib/test/test_isinstance.py /^ def __getattr__(self, attr):$/;" m class:TestIsInstanceIsSubclass.test_infinite_recursion_via_bases_tuple.Failure file: +__getattr__ Lib/test/test_isinstance.py /^ def __getattr__(self, attr):$/;" m class:TestIsInstanceIsSubclass.test_infinitely_many_bases.X file: +__getattr__ Lib/test/test_logging.py /^ def __getattr__(self, name, default=None):$/;" m class:TestHTTPServer.__init__.DelegatingHTTPRequestHandler file: +__getattr__ Lib/test/test_module/bad_getattr.py /^__getattr__ = "Surprise!"$/;" v +__getattr__ Lib/test/test_module/bad_getattr2.py /^def __getattr__():$/;" f file: +__getattr__ Lib/test/test_module/bad_getattr3.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/test/test_module/good_getattr.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/test/test_operator.py /^ def __getattr__(self, name):$/;" m class:OperatorTestCase.test_attrgetter.C file: +__getattr__ Lib/test/test_pydoc.py /^ def __getattr__(self, name):$/;" m class:PydocWithMetaClasses.test_DynamicClassAttribute.Meta file: +__getattr__ Lib/test/test_pydoc.py /^ def __getattr__(self, name):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithOneMeta.Meta file: +__getattr__ Lib/test/test_pydoc.py /^ def __getattr__(self, name):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta1 file: +__getattr__ Lib/test/test_pydoc.py /^ def __getattr__(self, name):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta2 file: +__getattr__ Lib/test/test_pydoc.py /^ def __getattr__(self, name):$/;" m class:PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta3 file: +__getattr__ Lib/test/test_string.py /^ def __getattr__(self, attr):$/;" m class:ModuleTest.test_name_lookup.AnyAttr file: +__getattr__ Lib/test/test_subclassinit.py /^ def __getattr__(self, name):$/;" m class:Test.test_set_name_lookup.NonDescriptor file: +__getattr__ Lib/test/test_traceback.py /^ def __getattr__(self, attr):$/;" m class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.A file: +__getattr__ Lib/test/test_traceback.py /^ def __getattr__(self, attr):$/;" m class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.B file: +__getattr__ Lib/test/test_traceback.py /^ def __getattr__(self, attr):$/;" m class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.C file: +__getattr__ Lib/test/test_traceback.py /^ def __getattr__(self, attr):$/;" m class:SuggestionFormattingTestBase.test_getattr_suggestions_no_args.A file: +__getattr__ Lib/test/test_typing.py /^ def __getattr__(self, attr):$/;" m class:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_3.Eggs file: +__getattr__ Lib/test/test_typing.py /^ def __getattr__(self, name):$/;" m class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.WhyWouldYouDoThis file: +__getattr__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __getattr__(self, attribute):$/;" m class:SpecSignatureTest.test_autospec_getattr_partial_function.Foo file: +__getattr__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __getattr__(self, item):$/;" m class:SpecSignatureTest.test_spec_has_function_not_in_bases.CrazyClass file: +__getattr__ Lib/test/test_unittest/testmock/testpatch.py /^ def __getattr__(self, name):$/;" m class:_get_proxy.Proxy file: +__getattr__ Lib/test/test_weakref.py /^ def __getattr__(self, x):$/;" m class:ReferencesTestCase.test_repr_failure_gh99184.MyConfig file: +__getattr__ Lib/test/test_xml_etree.py /^ def __getattr__(self, name):$/;" m class:TreeBuilderTest.test_builder_lookup_errors.RaisingBuilder file: +__getattr__ Lib/test/test_yield_from.py /^ def __getattr__(self, attr):$/;" m class:TestPEP380Operation.test_broken_getattr_handling.Broken file: +__getattr__ Lib/tkinter/__init__.py /^ def __getattr__(self, attr):$/;" m class:Tk file: +__getattr__ Lib/tkinter/tix.py /^ def __getattr__(self, name):$/;" m class:TixWidget file: +__getattr__ Lib/typing.py /^ def __getattr__(self, attr):$/;" m class:_AnnotatedAlias file: +__getattr__ Lib/typing.py /^ def __getattr__(self, attr):$/;" m class:_BaseGenericAlias file: +__getattr__ Lib/typing.py /^ def __getattr__(self, item):$/;" m class:_SpecialForm file: +__getattr__ Lib/unittest/__init__.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/unittest/loader.py /^ def __getattr__(self, name):$/;" m class:_FailedTest file: +__getattr__ Lib/unittest/mock.py /^ def __getattr__(self, attr):$/;" m class:_Call file: +__getattr__ Lib/unittest/mock.py /^ def __getattr__(self, name):$/;" m class:NonCallableMock file: +__getattr__ Lib/unittest/mock.py /^ def __getattr__(self, name):$/;" m class:_Sentinel file: +__getattr__ Lib/unittest/runner.py /^ def __getattr__(self, attr):$/;" m class:_WritelnDecorator file: +__getattr__ Lib/urllib/parse.py /^def __getattr__(name):$/;" f file: +__getattr__ Lib/xml/sax/saxutils.py /^ def __getattr__(self, name):$/;" m class:_gettextwriter._wrapper file: +__getattr__ Lib/xmlrpc/client.py /^ def __getattr__(self, name):$/;" m class:MultiCall file: +__getattr__ Lib/xmlrpc/client.py /^ def __getattr__(self, name):$/;" m class:ServerProxy file: +__getattr__ Lib/xmlrpc/client.py /^ def __getattr__(self, name):$/;" m class:_Method file: +__getattr__ Lib/xmlrpc/client.py /^ def __getattr__(self, name):$/;" m class:_MultiCallMethod file: +__getattr__ Lib/zoneinfo/__init__.py /^def __getattr__(name):$/;" f file: +__getattr__ Tools/build/freeze_modules.py /^ def __getattr__(self, name):$/;" m class:FrozenModule file: +__getattr__ Tools/c-analyzer/c_analyzer/info.py /^ def __getattr__(self, name):$/;" m class:Analyzed file: +__getattr__ Tools/c-analyzer/c_parser/info.py /^ def __getattr__(self, name):$/;" m class:HighlevelParsedItem file: +__getattribute__ Lib/_threading_local.py /^ def __getattribute__(self, name):$/;" m class:local file: +__getattribute__ Lib/importlib/util.py /^ def __getattribute__(self, attr):$/;" m class:_LazyModule file: +__getattribute__ Lib/test/test_call.py /^ def __getattribute__(self, attr):$/;" m class:TestPEP590.test_setvectorcall_load_attr_specialization_deopt.X file: +__getattribute__ Lib/test/test_call.py /^ def __getattribute__(self, attr):$/;" m class:TestPEP590.test_setvectorcall_load_attr_specialization_skip.X file: +__getattribute__ Lib/test/test_capi/test_misc.py /^ def __getattribute__(self, name):$/;" m class:Test_Pep523API.test_inlined_load_attr.D file: +__getattribute__ Lib/test/test_copy.py /^ def __getattribute__(self, name):$/;" m class:TestCopy.test_copy_cant.C file: +__getattribute__ Lib/test/test_copy.py /^ def __getattribute__(self, name):$/;" m class:TestCopy.test_deepcopy_cant.C file: +__getattribute__ Lib/test/test_descr.py /^ __getattribute__ = descr$/;" v class:.test_getattr_hooks.A +__getattribute__ Lib/test/test_descr.py /^ __getattribute__ = descr$/;" v class:.test_getattr_hooks.C +__getattribute__ Lib/test/test_descr.py /^ def __getattribute__(self, attr):$/;" m class:.test_mutable_bases.C2 file: +__getattribute__ Lib/test/test_descr.py /^ def __getattribute__(self, attr, test=self):$/;" m class:.test_special_method_lookup.Checker file: +__getattribute__ Lib/test/test_descr.py /^ def __getattribute__(self, name):$/;" m class:.test_getattr_hooks.EvilGetattribute file: +__getattribute__ Lib/test/test_descr.py /^ def __getattribute__(self, name):$/;" m class:.test_isinst_isclass.Proxy file: +__getattribute__ Lib/test/test_descr.py /^ def __getattribute__(self, name):$/;" m class:.test_proxy_super.Proxy file: +__getattribute__ Lib/test/test_descr.py /^ def __getattribute__(self, name):$/;" m class:ClassPropertiesAndMethods.test_module_subclasses.MM file: +__getattribute__ Lib/test/test_descr.py /^ def __getattribute__(self, name):$/;" f function:.test_subclass_propagation file: +__getattribute__ Lib/test/test_inspect.py /^ def __getattribute__(self, attr):$/;" m class:TestGetattrStatic.test_custom___getattribute__.Foo file: +__getattribute__ Lib/test/test_opcache.py /^ def __getattribute__(self, name):$/;" m class:TestLoadAttrCache.test_metaclass_getattribute.Metaclass file: +__getattribute__ Lib/test/test_opcache.py /^ def __getattribute__(self, name):$/;" m class:TestLoadMethodCache.test_metaclass_getattribute.Metaclass file: +__getattribute__ Lib/test/test_rlcompleter.py /^ def __getattribute__(self, name):$/;" m class:TestRlcompleter.test_excessive_getattr.Foo file: +__getattribute__ Lib/test/test_traceback.py /^ def __getattribute__(self, attr):$/;" m class:SuggestionFormattingTestBase.test_attribute_error_inside_nested_getattr.B file: +__getattribute__ Lib/typing.py /^ def __getattribute__(cls, name):$/;" m class:_DeprecatedType file: +__getattribute__ Lib/unittest/mock.py /^ def __getattribute__(self, attr):$/;" m class:_Call file: +__getattribute__ Modules/_decimal/tests/deccheck.py /^ def __getattribute__(self, name):$/;" m class:RestrictedList file: +__getattribute__ Tools/clinic/clinic.py /^ def __getattribute__(self, name: str):$/;" m class:LandMine file: +__getattributes Lib/idlelib/rpc.py /^ def __getattributes(self):$/;" m class:RPCProxy file: +__getclass Lib/test/test_descr.py /^ def __getclass(self):$/;" m class:.test_dir.C file: +__getinitargs__ Lib/_pydatetime.py /^ def __getinitargs__(self):$/;" m class:timezone file: +__getinitargs__ Lib/test/pickletester.py /^ def __getinitargs__(self):$/;" m class:E file: +__getinitargs__ Lib/test/pickletester.py /^ def __getinitargs__(self):$/;" m class:initarg file: +__getinitargs__ Lib/test/test_copy.py /^ def __getinitargs__(self):$/;" m class:TestCopy.test_copy_inst_getinitargs.C file: +__getinitargs__ Lib/test/test_copy.py /^ def __getinitargs__(self):$/;" m class:TestCopy.test_deepcopy_inst_getinitargs.C file: +__getitem__ Lib/_collections_abc.py /^ def __getitem__(self, index):$/;" m class:Sequence file: +__getitem__ Lib/_collections_abc.py /^ def __getitem__(self, item):$/;" m class:_CallableGenericAlias file: +__getitem__ Lib/_collections_abc.py /^ def __getitem__(self, key):$/;" m class:Mapping file: +__getitem__ Lib/calendar.py /^ def __getitem__(self, i):$/;" m class:_localized_day file: +__getitem__ Lib/calendar.py /^ def __getitem__(self, i):$/;" m class:_localized_month file: +__getitem__ Lib/cgi.py /^ def __getitem__(self, key):$/;" m class:FieldStorage file: +__getitem__ Lib/collections/__init__.py /^ def __getitem__(self, i):$/;" m class:UserList file: +__getitem__ Lib/collections/__init__.py /^ def __getitem__(self, index):$/;" m class:UserString file: +__getitem__ Lib/collections/__init__.py /^ def __getitem__(self, key):$/;" m class:ChainMap file: +__getitem__ Lib/collections/__init__.py /^ def __getitem__(self, key):$/;" m class:UserDict file: +__getitem__ Lib/configparser.py /^ def __getitem__(self, key):$/;" m class:ConverterMapping file: +__getitem__ Lib/configparser.py /^ def __getitem__(self, key):$/;" m class:RawConfigParser file: +__getitem__ Lib/configparser.py /^ def __getitem__(self, key):$/;" m class:SectionProxy file: +__getitem__ Lib/ctypes/__init__.py /^ def __getitem__(self, name):$/;" m class:LibraryLoader file: +__getitem__ Lib/ctypes/__init__.py /^ def __getitem__(self, name_or_ordinal):$/;" m class:CDLL file: +__getitem__ Lib/dbm/dumb.py /^ def __getitem__(self, key):$/;" m class:_Database file: +__getitem__ Lib/email/_parseaddr.py /^ def __getitem__(self, index):$/;" m class:AddressList file: +__getitem__ Lib/email/headerregistry.py /^ def __getitem__(self, name):$/;" m class:HeaderRegistry file: +__getitem__ Lib/email/message.py /^ def __getitem__(self, name):$/;" m class:Message file: +__getitem__ Lib/enum.py /^ def __getitem__(cls, name):$/;" m class:EnumType file: +__getitem__ Lib/idlelib/debugger_r.py /^ def __getitem__(self, key):$/;" m class:DictProxy file: +__getitem__ Lib/idlelib/idle_test/test_run.py /^ def __getitem__(self, *args):$/;" m class:S file: +__getitem__ Lib/importlib/_bootstrap_external.py /^ def __getitem__(self, index):$/;" m class:_NamespacePath file: +__getitem__ Lib/importlib/metadata/__init__.py /^ def __getitem__(self, item):$/;" m class:DeprecatedTuple file: +__getitem__ Lib/importlib/metadata/__init__.py /^ def __getitem__(self, name): # -> EntryPoint:$/;" m class:EntryPoints file: +__getitem__ Lib/importlib/metadata/_adapters.py /^ def __getitem__(self, item):$/;" m class:Message file: +__getitem__ Lib/importlib/metadata/_meta.py /^ def __getitem__(self, key: str) -> str:$/;" m class:PackageMetadata file: +__getitem__ Lib/ipaddress.py /^ def __getitem__(self, n):$/;" m class:_BaseNetwork file: +__getitem__ Lib/logging/config.py /^ def __getitem__(self, key):$/;" m class:ConvertingDict file: +__getitem__ Lib/logging/config.py /^ def __getitem__(self, key):$/;" m class:ConvertingList file: +__getitem__ Lib/logging/config.py /^ def __getitem__(self, key):$/;" m class:ConvertingTuple file: +__getitem__ Lib/mailbox.py /^ def __getitem__(self, key):$/;" m class:Mailbox file: +__getitem__ Lib/multiprocessing/shared_memory.py /^ def __getitem__(self, position):$/;" m class:ShareableList file: +__getitem__ Lib/multiprocessing/sharedctypes.py /^ def __getitem__(self, i):$/;" m class:SynchronizedArray file: +__getitem__ Lib/operator.py /^__getitem__ = getitem$/;" v +__getitem__ Lib/os.py /^ def __getitem__(self, key):$/;" m class:_Environ file: +__getitem__ Lib/pathlib.py /^ def __getitem__(self, idx):$/;" m class:_PathParents file: +__getitem__ Lib/platform.py /^ def __getitem__(self, key):$/;" m class:uname_result file: +__getitem__ Lib/re/_parser.py /^ def __getitem__(self, index):$/;" m class:SubPattern file: +__getitem__ Lib/selectors.py /^ def __getitem__(self, fileobj):$/;" m class:_SelectorMapping file: +__getitem__ Lib/shelve.py /^ def __getitem__(self, key):$/;" m class:Shelf file: +__getitem__ Lib/test/mapping_tests.py /^ def __getitem__(self, i):$/;" m class:BasicTestMappingProtocol.test_update.SimpleUserDict file: +__getitem__ Lib/test/mapping_tests.py /^ def __getitem__(self, i):$/;" m class:TestMappingProtocol.test_update.SimpleUserDict file: +__getitem__ Lib/test/mapping_tests.py /^ def __getitem__(self, key):$/;" m class:BasicTestMappingProtocol.test_update.FailingUserDict file: +__getitem__ Lib/test/pickletester.py /^ def __getitem__(self, idx):$/;" m class:ZeroCopyBytearray.PicklableNDArray file: +__getitem__ Lib/test/seq_tests.py /^ def __getitem__(self, i):$/;" m class:CommonTest.test_constructors.OtherSeq file: +__getitem__ Lib/test/seq_tests.py /^ def __getitem__(self, key):$/;" m class:CommonTest.test_getitemoverwriteiter.T file: +__getitem__ Lib/test/seq_tests.py /^ def __getitem__(self, i):$/;" m class:Sequence file: +__getitem__ Lib/test/string_tests.py /^ def __getitem__(self, i): return self.seq[i]$/;" m class:Sequence file: +__getitem__ Lib/test/support/os_helper.py /^ def __getitem__(self, envvar):$/;" m class:EnvironmentVarGuard file: +__getitem__ Lib/test/test_array.py /^ def __getitem__(self, i):$/;" m class:NumberTest.test_subclassing.ExaggeratingArray file: +__getitem__ Lib/test/test_bisect.py /^ def __getitem__(self, idx):$/;" m class:Range file: +__getitem__ Lib/test/test_bisect.py /^ def __getitem__(self, ndx):$/;" m class:GetOnly file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, i):$/;" m class:BuiltinTest.test_zip.BadSeq file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, i):$/;" m class:BuiltinTest.test_zip.I file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, i):$/;" m class:BuiltinTest.test_zip.SequenceWithoutALength file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, index):$/;" m class:BuiltinTest.test_filter.BadSeq file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, index):$/;" m class:BuiltinTest.test_max.BadSeq file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, index):$/;" m class:BuiltinTest.test_min.BadSeq file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, index):$/;" m class:BuiltinTest.test_sum.BadSeq file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, item):$/;" m class:BuiltinTest.test_general_eval.C file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, key):$/;" m class:BuiltinTest.test_eval.X file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, key):$/;" m class:BuiltinTest.test_exec_globals_error_on_get.setonlydict file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, key):$/;" m class:BuiltinTest.test_general_eval.D file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, key):$/;" m class:BuiltinTest.test_general_eval.M file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, key):$/;" m class:BuiltinTest.test_general_eval.SpreadSheet file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, i):$/;" m class:Squares file: +__getitem__ Lib/test/test_builtin.py /^ def __getitem__(self, i):$/;" m class:StrSquares file: +__getitem__ Lib/test/test_bytes.py /^ def __getitem__(self, i):$/;" m class:BaseBytesTest.test_from_iterable.S file: +__getitem__ Lib/test/test_capi/test_abstract.py /^ def __getitem__(self, key):$/;" m class:ProxyGetItem file: +__getitem__ Lib/test/test_capi/test_dict.py /^ def __getitem__(self, key):$/;" m class:DictSubclass file: +__getitem__ Lib/test/test_capi/test_getargs.py /^ def __getitem__(self, n):$/;" m class:Tuple_TestCase.test_tuple.seq file: +__getitem__ Lib/test/test_capi/test_misc.py /^ def __getitem__(self, i):$/;" m class:CAPITest.test_seq_bytes_to_charp_array.Z file: +__getitem__ Lib/test/test_capi/test_misc.py /^ def __getitem__(self, other):$/;" m class:Test_Pep523API.test_inlined_binary_subscr.C file: +__getitem__ Lib/test/test_codeccallbacks.py /^ def __getitem__(self, key):$/;" m class:CodecCallbackTest.test_decodehelper.D file: +__getitem__ Lib/test/test_codeccallbacks.py /^ def __getitem__(self, key):$/;" m class:CodecCallbackTest.test_encodehelper.D file: +__getitem__ Lib/test/test_codeccallbacks.py /^ def __getitem__(self, key):$/;" m class:CodecCallbackTest.test_translatehelper.D file: +__getitem__ Lib/test/test_collections.py /^ def __getitem__(self, i):$/;" m class:TestCollectionABCs.test_Mapping.MyMapping file: +__getitem__ Lib/test/test_collections.py /^ def __getitem__(self, index):$/;" m class:TestCollectionABCs.test_MutableSequence_mixins.MutableSequenceSubclass file: +__getitem__ Lib/test/test_collections.py /^ def __getitem__(self, index):$/;" m class:TestCollectionABCs.test_Sequence_mixins.SequenceSubclass file: +__getitem__ Lib/test/test_collections.py /^ def __getitem__(self, index):$/;" m class:TestCollectionABCs.test_issue26915.CustomSequence file: +__getitem__ Lib/test/test_collections.py /^ def __getitem__(self, item):$/;" m class:TestChainMap.test_iter_not_calling_getitem_on_maps.DictWithGetItem file: +__getitem__ Lib/test/test_collections.py /^ def __getitem__(self, key):$/;" m class:TestChainMap.test_new_child.lowerdict file: +__getitem__ Lib/test/test_compile.py /^ def __getitem__(self, key):$/;" m class:TestSpecifics.test_exec_with_general_mapping_for_locals.D file: +__getitem__ Lib/test/test_compile.py /^ def __getitem__(self, key):$/;" m class:TestSpecifics.test_exec_with_general_mapping_for_locals.M file: +__getitem__ Lib/test/test_compile.py /^ def __getitem__(self, key):$/;" m class:TestSpecifics.test_subscripts.str_map file: +__getitem__ Lib/test/test_contains.py /^ def __getitem__(self, n):$/;" m class:seq file: +__getitem__ Lib/test/test_csv.py /^ def __getitem__(self, i):$/;" m class:Test_Csv.test_write_arg_valid.BadList file: +__getitem__ Lib/test/test_ctypes/test_returnfuncptrs.py /^ def __getitem__(self, key):$/;" m class:ReturnFuncPtrTestCase.test_from_dll_refcount.BadSequence file: +__getitem__ Lib/test/test_dataclasses.py /^ def __getitem__(self, item):$/;" m class:TestCase.test_field_metadata_custom_mapping.SimpleNameSpace file: +__getitem__ Lib/test/test_descr.py /^ __getitem__ = property(lambda s: 1\/0)$/;" v class:.test_properties.D +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, i):$/;" m class:.test_specials.C file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, i):$/;" m class:.test_specials.D file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, i):$/;" m class:ClassPropertiesAndMethods.test_python_lists.C file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, key):$/;" m class:.test_dir.Wrapper file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, key):$/;" m class:.test_overloading.C file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, key):$/;" m class:ClassPropertiesAndMethods.test_python_dicts.C file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, x):$/;" m class:.test_slices.L file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, x):$/;" m class:.test_slices.S file: +__getitem__ Lib/test/test_descr.py /^ def __getitem__(self, x):$/;" m class:.test_slices.T file: +__getitem__ Lib/test/test_descrtut.py /^ def __getitem__(self, key):$/;" m class:defaultdict file: +__getitem__ Lib/test/test_descrtut.py /^ def __getitem__(self, key):$/;" m class:defaultdict2 file: +__getitem__ Lib/test/test_dict.py /^ def __getitem__(self, i):$/;" m class:DictTest.test_update.SimpleUserDict file: +__getitem__ Lib/test/test_dict.py /^ def __getitem__(self, key):$/;" m class:DictTest.test_update.FailingUserDict file: +__getitem__ Lib/test/test_enumerate.py /^ def __getitem__(self, i): return 1$/;" m class:TestReversed.test_objmethods.Blocked file: +__getitem__ Lib/test/test_enumerate.py /^ def __getitem__(self, i): return 1$/;" m class:TestReversed.test_objmethods.NoLen file: +__getitem__ Lib/test/test_enumerate.py /^ def __getitem__(self, i):$/;" m class:TestReversed.test_simple.A file: +__getitem__ Lib/test/test_enumerate.py /^ def __getitem__(self, index):$/;" m class:TestReversed.test_gc.Seq file: +__getitem__ Lib/test/test_enumerate.py /^ def __getitem__(self, index):$/;" m class:TestReversed.test_len.SeqWithWeirdLen file: +__getitem__ Lib/test/test_enumerate.py /^ def __getitem__(self, i):$/;" m class:G file: +__getitem__ Lib/test/test_functools.py /^ def __getitem__(self, i):$/;" m class:TestReduce.test_iterator_usage.SequenceClass file: +__getitem__ Lib/test/test_functools.py /^ def __getitem__(self, i):$/;" m class:TestReduce.test_reduce.Squares file: +__getitem__ Lib/test/test_functools.py /^ def __getitem__(self, index):$/;" m class:TestReduce.test_reduce.BadSeq file: +__getitem__ Lib/test/test_functools.py /^ def __getitem__(self, key):$/;" m class:TestPartial.test_setstate_refcount.BadSequence file: +__getitem__ Lib/test/test_functools.py /^ def __getitem__(self, key):$/;" m class:TestSingleDispatch.test_cache_invalidation.TracingDict file: +__getitem__ Lib/test/test_genericclass.py /^ def __getitem__(cls, item):$/;" m class:TestClassGetitem.test_class_getitem_metaclass_first.Meta file: +__getitem__ Lib/test/test_grammar.py /^ def __getitem__(self, i):$/;" m class:GrammarTests.test_for.Squares file: +__getitem__ Lib/test/test_grammar.py /^ def __getitem__(self, item):$/;" m class:GrammarTests.test_var_annot_custom_maps.CNS2 file: +__getitem__ Lib/test/test_grammar.py /^ def __getitem__(self, item):$/;" m class:GrammarTests.test_var_annot_refleak.CNS2 file: +__getitem__ Lib/test/test_grammar.py /^ def __getitem__(self, item):$/;" m class:CNS file: +__getitem__ Lib/test/test_hash.py /^ def __getitem__(self, index):$/;" m class:DefaultIterSeq file: +__getitem__ Lib/test/test_heapq.py /^ def __getitem__(self, i):$/;" m class:G file: +__getitem__ Lib/test/test_importlib/util.py /^ def __getitem__(self, name):$/;" m class:_ImporterMock file: +__getitem__ Lib/test/test_index.py /^ def __getitem__(self, key):$/;" m class:OverflowTestCase.test_getitem.GetItem file: +__getitem__ Lib/test/test_index.py /^ def __getitem__(self, index):$/;" m class:NewSeq file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:TestCase.test_builtin_zip.NoGuessLen5 file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:TestCase.test_exception_sequence.MySequenceClass file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:TestCase.test_stop_sequence.MySequenceClass file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:EmptyIterClass file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:NoIterClass file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:SequenceClass file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:SequenceProxyClass file: +__getitem__ Lib/test/test_iter.py /^ def __getitem__(self, i):$/;" m class:UnlimitedSequenceClass file: +__getitem__ Lib/test/test_itertools.py /^ def __getitem__(self, i):$/;" m class:G file: +__getitem__ Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def __getitem__(self, i):$/;" m class:GrammarTests.testFor.Squares file: +__getitem__ Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def __getitem__(self, i):$/;" m class:GrammarTests.testFor.Squares file: +__getitem__ Lib/test/test_named_expressions.py /^ def __getitem__(self, index):$/;" m class:NamedExpressionAssignmentTest.test_named_expression_assignment_18.TwoDimensionalList file: +__getitem__ Lib/test/test_operator.py /^ def __getitem__(self, name):$/;" m class:OperatorTestCase.test_itemgetter.C file: +__getitem__ Lib/test/test_operator.py /^ def __getitem__(self, other): return 5 # so that C is a sequence$/;" m class:OperatorTestCase.test_inplace.C file: +__getitem__ Lib/test/test_operator.py /^ def __getitem__(self, i):$/;" m class:Seq1 file: +__getitem__ Lib/test/test_operator.py /^ def __getitem__(self, i):$/;" m class:Seq2 file: +__getitem__ Lib/test/test_ordered_dict.py /^ def __getitem__(self, item):$/;" m class:SimpleLRUCache file: +__getitem__ Lib/test/test_patma.py /^ __getitem__ = None$/;" v class:TestPatma.test_patma_184.Seq +__getitem__ Lib/test/test_patma.py /^ __getitem__ = None$/;" v class:TestPatma.test_patma_185.Seq +__getitem__ Lib/test/test_patma.py /^ def __getitem__(self, i):$/;" m class:TestPatma.test_patma_186.Seq file: +__getitem__ Lib/test/test_random.py /^ def __getitem__(self, index):$/;" m class:TestBasicOps.test_sample_on_seqsets.SeqSet file: +__getitem__ Lib/test/test_re.py /^ def __getitem__(self, index):$/;" m class:B file: +__getitem__ Lib/test/test_re.py /^ def __getitem__(self, index):$/;" m class:S file: +__getitem__ Lib/test/test_resource.py /^ def __getitem__(self, key):$/;" m class:ResourceTest.test_setrusage_refcount.BadSequence file: +__getitem__ Lib/test/test_resource.py /^ def __getitem__(self, key):$/;" m class:ResourceTest.test_prlimit_refcount.BadSeq file: +__getitem__ Lib/test/test_richcmp.py /^ def __getitem__(self, i):$/;" m class:Vector file: +__getitem__ Lib/test/test_set.py /^ def __getitem__(self, i):$/;" m class:G file: +__getitem__ Lib/test/test_shelve.py /^ def __getitem__(self, key):$/;" m class:byteskeydict file: +__getitem__ Lib/test/test_sqlite3/test_dbapi.py /^ def __getitem__(self, x):$/;" m class:CursorTests.test_execute_param_sequence.L file: +__getitem__ Lib/test/test_sqlite3/test_dbapi.py /^ def __getitem__(slf, x):$/;" m class:CursorTests.test_execute_param_sequence_bad_len.L file: +__getitem__ Lib/test/test_sqlite3/test_dump.py /^ def __getitem__(self, index):$/;" m class:DumpTests.test_unorderable_row.UnorderableRow file: +__getitem__ Lib/test/test_string.py /^ def __getitem__(self, name):$/;" m class:Mapping file: +__getitem__ Lib/test/test_structseq.py /^ def __getitem__(self, i):$/;" m class:StructSeqTest.test_eviltuple.C file: +__getitem__ Lib/test/test_types.py /^ def __getitem__(self, key):$/;" m class:MappingProxyTests.test_customdict.customdict file: +__getitem__ Lib/test/test_typing.py /^ def __getitem__(self, k):$/;" m class:CollectionsAbcTests.test_subclassing.MMB file: +__getitem__ Lib/test/test_typing.py /^ def __getitem__(self, k):$/;" m class:CollectionsAbcTests.test_subclassing.MMC file: +__getitem__ Lib/test/test_typing.py /^ def __getitem__(self, k):$/;" m class:GenericTests.test_abc_bases.MM file: +__getitem__ Lib/test/test_typing.py /^ def __getitem__(self, key: XK) -> XV:$/;" m class:SimpleMapping file: +__getitem__ Lib/test/test_typing.py /^ def __getitem__(self, key: str):$/;" m class:MySimpleMapping file: +__getitem__ Lib/test/test_unicode.py /^ def __getitem__(self, key):$/;" m class:UnicodeTest.test_format_map.BadMapping file: +__getitem__ Lib/test/test_unicode.py /^ def __getitem__(self, key):$/;" m class:UnicodeTest.test_format_map.InternalMapping file: +__getitem__ Lib/test/test_unittest/testmock/testmock.py /^ def __getitem__(self, index):$/;" m class:MockTest.test_magic_method_wraps_class.Foo file: +__getitem__ Lib/test/test_unittest/testmock/testpatch.py /^ def __getitem__(self, name):$/;" m class:Container file: +__getitem__ Lib/test/test_userlist.py /^ def __getitem__(self, key):$/;" m class:UserListTest.test_getitemoverwriteiter.T file: +__getitem__ Lib/tkinter/__init__.py /^ __getitem__ = cget$/;" v class:Misc +__getitem__ Lib/tkinter/__init__.py /^ def __getitem__(self, key):$/;" m class:Image file: +__getitem__ Lib/tkinter/__init__.py /^ def __getitem__(self, key):$/;" m class:PhotoImage file: +__getitem__ Lib/tkinter/__init__.py /^ def __getitem__(self, name):$/;" m class:OptionMenu file: +__getitem__ Lib/tkinter/font.py /^ def __getitem__(self, key):$/;" m class:Font file: +__getitem__ Lib/tkinter/tix.py /^ def __getitem__(self,key):$/;" m class:DisplayStyle file: +__getitem__ Lib/tkinter/ttk.py /^ def __getitem__(self, item):$/;" m class:OptionMenu file: +__getitem__ Lib/traceback.py /^ def __getitem__(self, pos):$/;" m class:FrameSummary file: +__getitem__ Lib/tracemalloc.py /^ def __getitem__(self, index):$/;" m class:Traceback file: +__getitem__ Lib/tracemalloc.py /^ def __getitem__(self, index):$/;" m class:_Traces file: +__getitem__ Lib/typing.py /^ def __getitem__(self, args):$/;" m class:_GenericAlias file: +__getitem__ Lib/typing.py /^ def __getitem__(self, args):$/;" m class:_UnpackGenericAlias file: +__getitem__ Lib/typing.py /^ def __getitem__(self, parameters):$/;" m class:_LiteralSpecialForm file: +__getitem__ Lib/typing.py /^ def __getitem__(self, parameters):$/;" m class:_SpecialForm file: +__getitem__ Lib/typing.py /^ def __getitem__(self, params):$/;" m class:_CallableType file: +__getitem__ Lib/typing.py /^ def __getitem__(self, params):$/;" m class:_SpecialGenericAlias file: +__getitem__ Lib/typing.py /^ def __getitem__(self, params):$/;" m class:_TupleType file: +__getitem__ Lib/weakref.py /^ def __getitem__(self, key):$/;" m class:WeakKeyDictionary file: +__getitem__ Lib/weakref.py /^ def __getitem__(self, key):$/;" m class:WeakValueDictionary file: +__getitem__ Lib/wsgiref/headers.py /^ def __getitem__(self,name):$/;" m class:Headers file: +__getitem__ Lib/xml/dom/minidom.py /^ def __getitem__(self, attname_or_tuple):$/;" m class:NamedNodeMap file: +__getitem__ Lib/xml/dom/minidom.py /^ def __getitem__(self, name_or_tuple):$/;" m class:ReadOnlySequentialNamedNodeMap file: +__getitem__ Lib/xml/etree/ElementTree.py /^ def __getitem__(self, index):$/;" m class:Element file: +__getitem__ Lib/xml/sax/_exceptions.py /^ def __getitem__(self, ix):$/;" m class:SAXException file: +__getitem__ Lib/xml/sax/xmlreader.py /^ def __getitem__(self, name):$/;" m class:AttributesImpl file: +__getitem__ Lib/xmlrpc/client.py /^ def __getitem__(self, i):$/;" m class:MultiCallIterator file: +__getitem__ Tools/c-analyzer/c_analyzer/info.py /^ def __getitem__(self, key):$/;" m class:Analysis file: +__getitem__ Tools/c-analyzer/c_parser/info.py /^ def __getitem__(self, key):$/;" m class:Declarations file: +__getitem__ Tools/clinic/clinic.py /^ def __getitem__(self, i):$/;" m class:BufferSeries file: +__getitem__ Tools/gdb/libpython.py /^ def __getitem__(self, i):$/;" m class:PyListObjectPtr file: +__getitem__ Tools/gdb/libpython.py /^ def __getitem__(self, i):$/;" m class:PyTupleObjectPtr file: +__getitem_inner__ Lib/typing.py /^ def __getitem_inner__(self, params):$/;" m class:_CallableType file: +__getmethods Lib/idlelib/rpc.py /^ def __getmethods(self):$/;" m class:RPCProxy file: +__getnewargs__ Lib/collections/__init__.py /^ def __getnewargs__(self):$/;" f function:namedtuple file: +__getnewargs__ Lib/collections/__init__.py /^ def __getnewargs__(self):$/;" m class:UserString file: +__getnewargs__ Lib/email/_header_value_parser.py /^ def __getnewargs__(self):$/;" m class:Terminal file: +__getnewargs__ Lib/test/pickletester.py /^ def __getnewargs__(self):$/;" m class:ComplexNewObj file: +__getnewargs__ Lib/test/test_copy.py /^ def __getnewargs__(self):$/;" m class:TestCopy.test_copy_inst_getnewargs.C file: +__getnewargs__ Lib/test/test_copy.py /^ def __getnewargs__(self):$/;" m class:TestCopy.test_deepcopy_inst_getnewargs.C file: +__getnewargs__ Lib/test/test_descr.py /^ def __getnewargs__(cls):$/;" m class:PicklingTests.test_reduce_copying.C2 file: +__getnewargs__ Lib/test/test_descr.py /^ def __getnewargs__(cls):$/;" m class:PicklingTests.test_reduce_copying.C4 file: +__getnewargs__ Lib/test/test_descr.py /^ def __getnewargs__(self):$/;" m class:PicklingTests.test_reduce.C1 file: +__getnewargs__ Lib/test/test_descr.py /^ def __getnewargs__(self):$/;" m class:PicklingTests.test_reduce.C2 file: +__getnewargs__ Lib/test/test_enum.py /^ def __getnewargs__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs.NamedInt file: +__getnewargs__ Lib/turtle.py /^ def __getnewargs__(self):$/;" m class:Vec2D file: +__getnewargs_ex__ Lib/test/pickletester.py /^ def __getnewargs_ex__(self):$/;" m class:ComplexNewObjEx file: +__getnewargs_ex__ Lib/test/test_copy.py /^ def __getnewargs_ex__(self):$/;" m class:TestCopy.test_copy_inst_getnewargs_ex.C file: +__getnewargs_ex__ Lib/test/test_copy.py /^ def __getnewargs_ex__(self):$/;" m class:TestCopy.test_deepcopy_inst_getnewargs_ex.C file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(cls):$/;" m class:PicklingTests.test_reduce_copying.C5 file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(self):$/;" m class:PicklingTests.test_reduce.C10 file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(self):$/;" m class:PicklingTests.test_reduce.C3 file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(self):$/;" m class:PicklingTests.test_reduce.C4 file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(self):$/;" m class:PicklingTests.test_reduce.C5 file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(self):$/;" m class:PicklingTests.test_reduce.C6 file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(self):$/;" m class:PicklingTests.test_reduce.C7 file: +__getnewargs_ex__ Lib/test/test_descr.py /^ def __getnewargs_ex__(self):$/;" m class:PicklingTests.test_reduce.C9 file: +__getnewargs_ex__ Lib/test/test_enum.py /^ def __getnewargs_ex__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs_ex.NamedInt file: +__getslice__ Lib/idlelib/idle_test/test_run.py /^ def __getslice__(self, *args):$/;" m class:S file: +__getslice__ Lib/multiprocessing/sharedctypes.py /^ def __getslice__(self, start, stop):$/;" m class:SynchronizedArray file: +__getstate__ Lib/_pyio.py /^ def __getstate__(self):$/;" m class:BytesIO file: +__getstate__ Lib/_pyio.py /^ def __getstate__(self):$/;" m class:FileIO file: +__getstate__ Lib/_pyio.py /^ def __getstate__(self):$/;" m class:_BufferedIOMixin file: +__getstate__ Lib/asyncio/trsock.py /^ def __getstate__(self):$/;" m class:TransportSocket file: +__getstate__ Lib/http/cookies.py /^ def __getstate__(self):$/;" m class:Morsel file: +__getstate__ Lib/inspect.py /^ def __getstate__(self):$/;" m class:BoundArguments file: +__getstate__ Lib/multiprocessing/heap.py /^ def __getstate__(self):$/;" m class:Arena file: +__getstate__ Lib/multiprocessing/managers.py /^ def __getstate__(self):$/;" m class:SyncManager._SharedMemoryTracker file: +__getstate__ Lib/multiprocessing/managers.py /^ def __getstate__(self):$/;" m class:Token file: +__getstate__ Lib/multiprocessing/queues.py /^ def __getstate__(self):$/;" m class:JoinableQueue file: +__getstate__ Lib/multiprocessing/queues.py /^ def __getstate__(self):$/;" m class:Queue file: +__getstate__ Lib/multiprocessing/queues.py /^ def __getstate__(self):$/;" m class:SimpleQueue file: +__getstate__ Lib/multiprocessing/synchronize.py /^ def __getstate__(self):$/;" m class:Barrier file: +__getstate__ Lib/multiprocessing/synchronize.py /^ def __getstate__(self):$/;" m class:Condition file: +__getstate__ Lib/multiprocessing/synchronize.py /^ def __getstate__(self):$/;" m class:SemLock file: +__getstate__ Lib/random.py /^ def __getstate__(self): # for pickle$/;" m class:Random file: +__getstate__ Lib/socket.py /^ def __getstate__(self):$/;" m class:socket file: +__getstate__ Lib/statistics.py /^ def __getstate__(self):$/;" m class:NormalDist file: +__getstate__ Lib/test/_test_multiprocessing.py /^ def __getstate__(self):$/;" m class:_DummyList file: +__getstate__ Lib/test/test_copy.py /^ def __getstate__(self):$/;" m class:TestCopy.test_copy_inst_getstate.C file: +__getstate__ Lib/test/test_copy.py /^ def __getstate__(self):$/;" m class:TestCopy.test_copy_inst_getstate_setstate.C file: +__getstate__ Lib/test/test_copy.py /^ def __getstate__(self):$/;" m class:TestCopy.test_deepcopy_inst_getstate.C file: +__getstate__ Lib/test/test_copy.py /^ def __getstate__(self):$/;" m class:TestCopy.test_deepcopy_inst_getstate_setstate.C file: +__getstate__ Lib/test/test_copy.py /^ def __getstate__(self):$/;" m class:TestCopy.test_getstate_exc.EvilState file: +__getstate__ Lib/test/test_dataclasses.py /^ def __getstate__(self):$/;" m class:TestSlots.FrozenSlotsAllStateClass file: +__getstate__ Lib/test/test_dataclasses.py /^ def __getstate__(self):$/;" m class:TestSlots.FrozenSlotsGetStateClass file: +__getstate__ Lib/test/test_descr.py /^ def __getstate__(cls):$/;" m class:PicklingTests.test_reduce_copying.C3 file: +__getstate__ Lib/test/test_descr.py /^ def __getstate__(self):$/;" m class:.test_copy_setstate.C file: +__getstate__ Lib/test/test_descr.py /^ def __getstate__(self):$/;" m class:PicklingTests.test_pickle_slots.C file: +__getstate__ Lib/test/test_descr.py /^ def __getstate__(self):$/;" m class:PicklingTests.test_reduce.C11 file: +__getstate__ Lib/test/test_descr.py /^ def __getstate__(self):$/;" m class:PicklingTests.test_reduce.C12 file: +__getstate__ Lib/test/test_descr.py /^ def __getstate__(self):$/;" m class:PicklingTests.test_reduce.C13 file: +__getstate__ Lib/test/test_descr.py /^ def __getstate__(self):$/;" m class:PicklingTests.test_special_method_lookup.Picky file: +__getstate__ Lib/uuid.py /^ def __getstate__(self):$/;" m class:UUID file: +__getstate__ Lib/xml/dom/expatbuilder.py /^ def __getstate__(self):$/;" m class:ElementInfo file: +__getstate__ Lib/xml/dom/minidom.py /^ def __getstate__(self):$/;" m class:ElementInfo file: +__getstate__ Lib/xml/dom/minidom.py /^ def __getstate__(self):$/;" m class:NamedNodeMap file: +__getstate__ Lib/xml/dom/minidom.py /^ def __getstate__(self):$/;" m class:ReadOnlySequentialNamedNodeMap file: +__getstate__ Lib/zipfile/_path/__init__.py /^ def __getstate__(self):$/;" m class:InitializedState file: +__globals Lib/symtable.py /^ __globals = None$/;" v class:Function +__gnuc_va_list Lib/test/test_lib2to3/data/infinite_recursion.py /^__gnuc_va_list = STRING$/;" v +__greeting Lib/test/smtpd.py /^ def __greeting(self):$/;" m class:SMTPChannel file: +__greeting Lib/test/smtpd.py /^ def __greeting(self, value):$/;" m class:SMTPChannel file: +__gt__ Lib/_collections_abc.py /^ def __gt__(self, other):$/;" m class:Set file: +__gt__ Lib/_pydatetime.py /^ def __gt__(self, other):$/;" m class:date file: +__gt__ Lib/_pydatetime.py /^ def __gt__(self, other):$/;" m class:datetime file: +__gt__ Lib/_pydatetime.py /^ def __gt__(self, other):$/;" m class:time file: +__gt__ Lib/_pydatetime.py /^ def __gt__(self, other):$/;" m class:timedelta file: +__gt__ Lib/_pydecimal.py /^ def __gt__(self, other, context=None):$/;" m class:Decimal file: +__gt__ Lib/_weakrefset.py /^ def __gt__(self, other):$/;" m class:WeakSet file: +__gt__ Lib/asyncio/events.py /^ def __gt__(self, other):$/;" m class:TimerHandle file: +__gt__ Lib/collections/__init__.py /^ def __gt__(self, other):$/;" m class:Counter file: +__gt__ Lib/collections/__init__.py /^ def __gt__(self, other):$/;" m class:UserList file: +__gt__ Lib/collections/__init__.py /^ def __gt__(self, string):$/;" m class:UserString file: +__gt__ Lib/fractions.py /^ def __gt__(a, b):$/;" m class:Fraction file: +__gt__ Lib/functools.py /^ def __gt__(self, other):$/;" m class:cmp_to_key.K file: +__gt__ Lib/importlib/metadata/_text.py /^ def __gt__(self, other):$/;" m class:FoldedCase file: +__gt__ Lib/operator.py /^__gt__ = gt$/;" v +__gt__ Lib/pathlib.py /^ def __gt__(self, other):$/;" m class:PurePath file: +__gt__ Lib/test/support/__init__.py /^ def __gt__(self, other):$/;" m class:_SMALLEST file: +__gt__ Lib/test/test_bisect.py /^ def __gt__(self, other):$/;" m class:TestBisect.test_lt_returns_notimplemented.A file: +__gt__ Lib/test/test_bisect.py /^ __gt__ = __lt__$/;" v class:CmpErr +__gt__ Lib/test/test_bool.py /^ def __gt__(self, other):$/;" m class:BoolTest.test_interpreter_convert_to_bool_raises.Symbol file: +__gt__ Lib/test/test_collections.py /^ __gt__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__gt__ Lib/test/test_compare.py /^ def __gt__(self, other):$/;" m class:ComparisonFullTest.CompGt file: +__gt__ Lib/test/test_compare.py /^ def __gt__(self, other):$/;" m class:ComparisonFullTest.CompLtGt file: +__gt__ Lib/test/test_dataclasses.py /^ def __gt__(self):$/;" m class:TestOrdering.test_overwriting_order.C file: +__gt__ Lib/test/test_decimal.py /^ def __gt__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__gt__ Lib/test/test_descr.py /^ def __gt__(self, other):$/;" m class:.test_classic_comparisons.classic.C file: +__gt__ Lib/test/test_descr.py /^ def __gt__(self, other):$/;" m class:.test_rich_comparisons.classic.C file: +__gt__ Lib/test/test_descr.py /^ def __gt__(self, other):$/;" m class:.test_specials.Proxy file: +__gt__ Lib/test/test_enum.py /^ def __gt__(self, other):$/;" m class:TestSpecial.test_ordered_mixin.OrderedEnum file: +__gt__ Lib/test/test_fractions.py /^ def __gt__(self, other): return self._richcmp(other, operator.gt)$/;" m class:DummyFloat file: +__gt__ Lib/test/test_fractions.py /^ def __gt__(self, other):$/;" m class:DummyRational file: +__gt__ Lib/test/test_functools.py /^ def __gt__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsGreaterThan file: +__gt__ Lib/test/test_functools.py /^ def __gt__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_gt.A file: +__gt__ Lib/test/test_functools.py /^ def __gt__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsGreaterThan file: +__gt__ Lib/test/test_long.py /^ def __gt__(self, other):$/;" m class:LongTest.test_mixed_compares.Rat file: +__gt__ Lib/test/test_pprint.py /^ def __gt__(self, other):$/;" m class:Orderable file: +__gt__ Lib/test/test_richcmp.py /^ def __gt__(self_, other): return 0$/;" m class:MiscTest.test_misbehavin.Misb file: +__gt__ Lib/test/test_richcmp.py /^ def __gt__(self, other):$/;" m class:Number file: +__gt__ Lib/test/test_richcmp.py /^ def __gt__(self, other):$/;" m class:Vector file: +__gt__ Lib/test/test_set.py /^ def __gt__(self, some_set):$/;" m class:TestSet.test_rich_compare.TestRichSetCompare file: +__gt__ Lib/uuid.py /^ def __gt__(self, other):$/;" m class:UUID file: +__gt__ Lib/xml/dom/minidom.py /^ def __gt__(self, other):$/;" m class:NamedNodeMap file: +__gt__ Lib/xml/etree/ElementTree.py /^ def __gt__(self, other):$/;" m class:QName file: +__gt__ Lib/xmlrpc/client.py /^ def __gt__(self, other):$/;" m class:DateTime file: +__gt__ Tools/c-analyzer/c_analyzer/info.py /^ def __gt__(self, other):$/;" m class:Analyzed file: +__gt__ Tools/c-analyzer/c_parser/info.py /^ def __gt__(self, other):$/;" m class:DeclID file: +__gt__ Tools/c-analyzer/c_parser/info.py /^ def __gt__(self, other):$/;" m class:HighlevelParsedItem file: +__has_attribute Include/exports.h 22;" d +__hash__ Lib/_collections_abc.py /^ def __hash__(self):$/;" m class:Hashable file: +__hash__ Lib/_pydatetime.py /^ def __hash__(self):$/;" m class:date file: +__hash__ Lib/_pydatetime.py /^ def __hash__(self):$/;" m class:datetime file: +__hash__ Lib/_pydatetime.py /^ def __hash__(self):$/;" m class:time file: +__hash__ Lib/_pydatetime.py /^ def __hash__(self):$/;" m class:timedelta file: +__hash__ Lib/_pydatetime.py /^ def __hash__(self):$/;" m class:timezone file: +__hash__ Lib/_pydecimal.py /^ __hash__ = None$/;" v class:Context +__hash__ Lib/_pydecimal.py /^ def __hash__(self):$/;" m class:Decimal file: +__hash__ Lib/asyncio/events.py /^ def __hash__(self):$/;" m class:TimerHandle file: +__hash__ Lib/collections/__init__.py /^ def __hash__(self):$/;" m class:UserString file: +__hash__ Lib/doctest.py /^ def __hash__(self):$/;" m class:DocTest file: +__hash__ Lib/doctest.py /^ def __hash__(self):$/;" m class:DocTestCase file: +__hash__ Lib/doctest.py /^ def __hash__(self):$/;" m class:Example file: +__hash__ Lib/enum.py /^ def __hash__(self):$/;" m class:Enum file: +__hash__ Lib/fractions.py /^ def __hash__(self):$/;" m class:Fraction file: +__hash__ Lib/functools.py /^ __hash__ = None$/;" v class:cmp_to_key.K +__hash__ Lib/functools.py /^ def __hash__(self):$/;" m class:_HashedSeq file: +__hash__ Lib/importlib/_bootstrap_external.py /^ def __hash__(self):$/;" m class:ExtensionFileLoader file: +__hash__ Lib/importlib/_bootstrap_external.py /^ def __hash__(self):$/;" m class:FileLoader file: +__hash__ Lib/importlib/metadata/__init__.py /^ def __hash__(self):$/;" m class:EntryPoint file: +__hash__ Lib/importlib/metadata/_text.py /^ def __hash__(self):$/;" m class:FoldedCase file: +__hash__ Lib/inspect.py /^ def __hash__(self):$/;" m class:Parameter file: +__hash__ Lib/inspect.py /^ def __hash__(self):$/;" m class:Signature file: +__hash__ Lib/ipaddress.py /^ def __hash__(self):$/;" m class:IPv4Interface file: +__hash__ Lib/ipaddress.py /^ def __hash__(self):$/;" m class:IPv6Address file: +__hash__ Lib/ipaddress.py /^ def __hash__(self):$/;" m class:IPv6Interface file: +__hash__ Lib/ipaddress.py /^ def __hash__(self):$/;" m class:_BaseAddress file: +__hash__ Lib/ipaddress.py /^ def __hash__(self):$/;" m class:_BaseNetwork file: +__hash__ Lib/lib2to3/pgen2/pgen.py /^ __hash__ = None # For Py3 compatibility.$/;" v class:DFAState +__hash__ Lib/lib2to3/pytree.py /^ __hash__ = None # For Py3 compatibility.$/;" v class:Base +__hash__ Lib/numbers.py /^ __hash__ = None$/;" v class:Number +__hash__ Lib/pathlib.py /^ def __hash__(self):$/;" m class:PurePath file: +__hash__ Lib/plistlib.py /^ def __hash__(self):$/;" m class:UID file: +__hash__ Lib/statistics.py /^ def __hash__(self):$/;" m class:NormalDist file: +__hash__ Lib/test/mapping_tests.py /^ def __hash__(self):$/;" m class:TestHashMappingProtocol.test_eq.BadCmp file: +__hash__ Lib/test/mapping_tests.py /^ def __hash__(self):$/;" m class:TestHashMappingProtocol.test_getitem.BadEq file: +__hash__ Lib/test/mapping_tests.py /^ def __hash__(self):$/;" m class:TestHashMappingProtocol.test_getitem.BadHash file: +__hash__ Lib/test/mapping_tests.py /^ def __hash__(self):$/;" m class:TestHashMappingProtocol.test_pop.BadHash file: +__hash__ Lib/test/mapping_tests.py /^ def __hash__(self):$/;" m class:TestHashMappingProtocol.test_setdefault.BadHash file: +__hash__ Lib/test/pickletester.py /^ def __hash__(self):$/;" m class:AbstractPickleTests.test_evil_class_mutating_dict.Bad file: +__hash__ Lib/test/support/__init__.py /^ def __hash__(self):$/;" m class:_NEVER_EQ file: +__hash__ Lib/test/support/interpreters.py /^ def __hash__(self):$/;" m class:Interpreter file: +__hash__ Lib/test/support/interpreters.py /^ def __hash__(self):$/;" m class:_ChannelEnd file: +__hash__ Lib/test/test_baseexception.py /^ def __hash__(self) -> int:$/;" m class:ExceptionClassTests.test_setstate_refcount_no_crash.HashThisKeyWillClearTheDict file: +__hash__ Lib/test/test_builtin.py /^ def __hash__(self):$/;" m class:BuiltinTest.test_hash.X file: +__hash__ Lib/test/test_builtin.py /^ def __hash__(self):$/;" m class:BuiltinTest.test_hash.Z file: +__hash__ Lib/test/test_call.py /^ def __hash__(self):$/;" m class:BadStr file: +__hash__ Lib/test/test_capi/test_getargs.py /^ def __hash__(self):$/;" m class:KeywordOnly_TestCase.test_weird_str_subclass.BadStr file: +__hash__ Lib/test/test_capi/test_getargs.py /^ def __hash__(self):$/;" m class:KeywordOnly_TestCase.test_weird_str_subclass2.BadStr file: +__hash__ Lib/test/test_class.py /^ def __hash__(self):$/;" m class:ClassTests.testHashComparisonOfMethods.A file: +__hash__ Lib/test/test_collections.py /^ __hash__ = None # Make sure it isn't hashable by default$/;" v class:TestOneTrickPonyABCs.test_registration.C +__hash__ Lib/test/test_collections.py /^ def __hash__(self):$/;" m class:TestCollectionABCs.test_hash_Set.OneTwoThreeSet file: +__hash__ Lib/test/test_collections.py /^ def __hash__(self):$/;" m class:TestOneTrickPonyABCs.test_Hashable.H file: +__hash__ Lib/test/test_context.py /^ def __hash__(self):$/;" m class:HashKey file: +__hash__ Lib/test/test_context.py /^ def __hash__(self):$/;" m class:KeyStr file: +__hash__ Lib/test/test_dataclasses.py /^ def __hash__(self):$/;" m class:TestHash.test_hash_rules.test.C file: +__hash__ Lib/test/test_dataclasses.py /^ def __hash__(self):$/;" m class:TestCase.test_overwrite_hash.C.C file: +__hash__ Lib/test/test_dataclasses.py /^ __hash__ = None$/;" v class:TestCase.test_no_unhashable_default.Unhashable +__hash__ Lib/test/test_dataclasses.py /^ def __hash__(self):$/;" m class:TestCase.test_overwrite_hash.C file: +__hash__ Lib/test/test_dataclasses.py /^ def __hash__(self):$/;" m class:TestHash.test_hash_no_args.Base file: +__hash__ Lib/test/test_decimal.py /^ def __hash__(self):$/;" m class:UsabilityTest.test_hash_method_nan.H file: +__hash__ Lib/test/test_descr.py /^ def __hash__(self):$/;" m class:.test_specials.Proxy file: +__hash__ Lib/test/test_descr.py /^ def __hash__(self):$/;" m class:.test_str_subclass_as_dict_key.cistr file: +__hash__ Lib/test/test_descr.py /^ def __hash__(self):$/;" m class:.test_vicious_descriptor_nonsense.Evil file: +__hash__ Lib/test/test_descr.py /^ def __hash__(self):$/;" m class:MiscTests.test_type_lookup_mro_reference.MyKey file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:CAPITest.test_getitem_knownhash.BadEq file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_bad_key.BadDictKey file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_dict_contain_use_after_free.S file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_eq.BadCmp file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_equal_operator_modifying_operand.X file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_fromkeys_operator_modifying_dict_operand.X file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_fromkeys_operator_modifying_set_operand.X file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_getitem.BadEq file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_getitem.BadHash file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_init_use_after_free.X file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_merge_and_mutate.X file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_mutating_lookup.NastyKey file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_pop.BadHash file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_resize2.X file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_setdefault.BadHash file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_setdefault_atomic.Hashed file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_setitem_atomic_at_resize.Hashed file: +__hash__ Lib/test/test_dict.py /^ def __hash__(self):$/;" m class:DictTest.test_str_nonstr.Key3 file: +__hash__ Lib/test/test_dictviews.py /^ def __hash__(self):$/;" m class:DictSetTest.test_compare_error.BadEq file: +__hash__ Lib/test/test_enum.py /^ def __hash__(self):$/;" m class:OldTestFlag.test_unique_composite.TestFlag file: +__hash__ Lib/test/test_enum.py /^ def __hash__(self):$/;" m class:OldTestIntFlag.test_unique_composite.TestFlag file: +__hash__ Lib/test/test_except_star.py /^ __hash__ = None$/;" v class:TestExceptStar_WeirdExceptionGroupSubclass.UnhashableEG +__hash__ Lib/test/test_except_star.py /^ __hash__ = None$/;" v class:TestExceptStar_WeirdLeafExceptions.UnhashableExc +__hash__ Lib/test/test_float.py /^ def __hash__(self):$/;" m class:GeneralFloatCases.test_hash_nan.H file: +__hash__ Lib/test/test_functools.py /^ def __hash__(self):$/;" m class:TestLRU.test_need_for_rlock.DoubleEq file: +__hash__ Lib/test/test_hash.py /^ __hash__ = None$/;" v class:NoHash +__hash__ Lib/test/test_hash.py /^ def __hash__(self):$/;" m class:FixedHash file: +__hash__ Lib/test/test_inspect.py /^ __hash__ = None$/;" v class:TestUnwrap.test_unhashable.C +__hash__ Lib/test/test_iter.py /^ def __hash__(self):$/;" m class:TestCase.test_reduce_mutating_builtins_iter.run.CustomStr file: +__hash__ Lib/test/test_json/test_dump.py /^ def __hash__(self):$/;" m class:TestDump.test_encode_evil_dict.X file: +__hash__ Lib/test/test_numeric_tower.py /^ def __hash__(self):$/;" m class:HashTest.test_hash_normalization.HalibutProxy file: +__hash__ Lib/test/test_ordered_dict.py /^ def __hash__(self):$/;" m class:OrderedDictTests.test_delitem_hash_collision.Key file: +__hash__ Lib/test/test_ordered_dict.py /^ def __hash__(self):$/;" m class:OrderedDictTests.test_issue24347.Key file: +__hash__ Lib/test/test_ordered_dict.py /^ def __hash__(self):$/;" m class:OrderedDictTests.test_issue24348.Key file: +__hash__ Lib/test/test_pprint.py /^ def __hash__(self):$/;" m class:Orderable file: +__hash__ Lib/test/test_random.py /^ def __hash__(self):$/;" m class:TestBasicOps.test_seedargs.MySeed file: +__hash__ Lib/test/test_richcmp.py /^ __hash__ = None # Vectors cannot be hashed$/;" v class:Vector +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:TestJointOps.test_deepcopy.Tracer file: +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:TestJointOps.test_subclass_with_custom_hash.H file: +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:TestOperationsMutating.make_sets_of_bad_objects.Bad file: +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:TestWeirdBugs.test_merge_and_mutate.X file: +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:BadCmp file: +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:HashCountingInt file: +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:bad_dict_clear file: +__hash__ Lib/test/test_set.py /^ def __hash__(self):$/;" m class:bad_eq file: +__hash__ Lib/test/test_sys.py /^ def __hash__(self):$/;" m class:SysModuleTest.test_intern.S file: +__hash__ Lib/test/test_types.py /^ def __hash__(self):$/;" m class:MappingProxyTests.test_hash.HashableDict file: +__hash__ Lib/test/test_weakref.py /^ __hash__ = None$/;" v class:ReferencesTestCase.test_proxy_hash.MyObj +__hash__ Lib/test/test_weakref.py /^ def __hash__(self):$/;" m class:MappingTestCase.test_weak_keyed_cascading_deletes.C file: +__hash__ Lib/test/test_weakref.py /^ def __hash__(self):$/;" m class:ReferencesTestCase.test_proxy_hash.MyObj file: +__hash__ Lib/test/test_weakref.py /^ def __hash__(self):$/;" m class:Object file: +__hash__ Lib/test/test_weakset.py /^ def __hash__(self):$/;" m class:TestWeakSet.test_subclass_with_custom_hash.H file: +__hash__ Lib/test/test_xml_etree_c.py /^ def __hash__(self):$/;" m class:MiscTests.test_dict_disappearing_during_get_item.X file: +__hash__ Lib/tracemalloc.py /^ def __hash__(self):$/;" m class:Frame file: +__hash__ Lib/tracemalloc.py /^ def __hash__(self):$/;" m class:Statistic file: +__hash__ Lib/tracemalloc.py /^ def __hash__(self):$/;" m class:StatisticDiff file: +__hash__ Lib/tracemalloc.py /^ def __hash__(self):$/;" m class:Trace file: +__hash__ Lib/tracemalloc.py /^ def __hash__(self):$/;" m class:Traceback file: +__hash__ Lib/typing.py /^ def __hash__(self):$/;" m class:ForwardRef file: +__hash__ Lib/typing.py /^ def __hash__(self):$/;" m class:_AnnotatedAlias file: +__hash__ Lib/typing.py /^ def __hash__(self):$/;" m class:_GenericAlias file: +__hash__ Lib/typing.py /^ def __hash__(self):$/;" m class:_LiteralGenericAlias file: +__hash__ Lib/typing.py /^ def __hash__(self):$/;" m class:_UnionGenericAlias file: +__hash__ Lib/unittest/case.py /^ def __hash__(self):$/;" m class:FunctionTestCase file: +__hash__ Lib/unittest/case.py /^ def __hash__(self):$/;" m class:TestCase file: +__hash__ Lib/uuid.py /^ def __hash__(self):$/;" m class:UUID file: +__hash__ Lib/weakref.py /^ __hash__ = ref.__hash__$/;" v class:WeakMethod +__hash__ Lib/xml/etree/ElementTree.py /^ def __hash__(self):$/;" m class:QName file: +__hash__ Lib/zipfile/_path/__init__.py /^ def __hash__(self):$/;" m class:Path file: +__hash__ Tools/c-analyzer/c_analyzer/info.py /^ def __hash__(self):$/;" m class:Analyzed file: +__hash__ Tools/c-analyzer/c_parser/info.py /^ def __hash__(self):$/;" m class:DeclID file: +__hash__ Tools/c-analyzer/c_parser/info.py /^ def __hash__(self):$/;" m class:HighlevelParsedItem file: +__hash__ Tools/ssl/multissltests.py /^ def __hash__(self):$/;" m class:AbstractBuilder file: +__hash_new Lib/hashlib.py /^def __hash_new(name, data=b'', **kwargs):$/;" f file: +__iadd__ Lib/_collections_abc.py /^ def __iadd__(self, values):$/;" m class:MutableSequence file: +__iadd__ Lib/collections/__init__.py /^ def __iadd__(self, other):$/;" m class:Counter file: +__iadd__ Lib/collections/__init__.py /^ def __iadd__(self, other):$/;" m class:UserList file: +__iadd__ Lib/email/_parseaddr.py /^ def __iadd__(self, other):$/;" m class:AddressList file: +__iadd__ Lib/multiprocessing/managers.py /^ def __iadd__(self, value):$/;" m class:ListProxy file: +__iadd__ Lib/operator.py /^__iadd__ = iadd$/;" v +__iadd__ Lib/test/test_augassign.py /^ __iadd__ = None$/;" v class:AugAssignTest.testCustomMethods1.aug_test4 +__iadd__ Lib/test/test_augassign.py /^ def __iadd__(self, val):$/;" m class:AugAssignTest.testCustomMethods1.aug_test2 file: +__iadd__ Lib/test/test_augassign.py /^ def __iadd__(self, val):$/;" m class:AugAssignTest.testCustomMethods1.aug_test3 file: +__iadd__ Lib/test/test_augassign.py /^ def __iadd__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__iadd__ Lib/test/test_operator.py /^ def __iadd__ (self, other): return "iadd"$/;" m class:OperatorTestCase.test_inplace.C file: +__iadd__ Lib/test/test_unicode.py /^ def __iadd__(self, o):$/;" m class:UnicodeTest.test_subclass_add.S file: +__iand__ Lib/_collections_abc.py /^ def __iand__(self, it):$/;" m class:MutableSet file: +__iand__ Lib/_weakrefset.py /^ def __iand__(self, other):$/;" m class:WeakSet file: +__iand__ Lib/collections/__init__.py /^ def __iand__(self, other):$/;" m class:Counter file: +__iand__ Lib/operator.py /^__iand__ = iand$/;" v +__iand__ Lib/test/test_augassign.py /^ def __iand__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__iand__ Lib/test/test_operator.py /^ def __iand__ (self, other): return "iand"$/;" m class:OperatorTestCase.test_inplace.C file: +__iand__ Lib/test/test_typing.py /^ def __iand__(self, other: Const["MySet[T]"]) -> "MySet[T]":$/;" m class:GetTypeHintTests.test_get_type_hints_annotated_refs.MySet file: +__iconcat__ Lib/operator.py /^__iconcat__ = iconcat$/;" v +__idents_matching Lib/symtable.py /^ def __idents_matching(self, test_func):$/;" m class:Function file: +__ifloordiv__ Lib/operator.py /^__ifloordiv__ = ifloordiv$/;" v +__ifloordiv__ Lib/test/test_augassign.py /^ def __ifloordiv__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__ifloordiv__ Lib/test/test_operator.py /^ def __ifloordiv__(self, other): return "ifloordiv"$/;" m class:OperatorTestCase.test_inplace.C file: +__ifloordiv__ Lib/test/test_weakref.py /^ def __ifloordiv__(self, other):$/;" m class:ReferencesTestCase.test_proxy_div.C file: +__ilshift__ Lib/operator.py /^__ilshift__ = ilshift$/;" v +__ilshift__ Lib/test/test_augassign.py /^ def __ilshift__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__ilshift__ Lib/test/test_operator.py /^ def __ilshift__ (self, other): return "ilshift"$/;" m class:OperatorTestCase.test_inplace.C file: +__imatmul__ Lib/operator.py /^__imatmul__ = imatmul$/;" v +__imatmul__ Lib/test/test_augassign.py /^ def __imatmul__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__imatmul__ Lib/test/test_grammar.py /^ def __imatmul__(self, o):$/;" m class:GrammarTests.test_matrix_mul.M file: +__imatmul__ Lib/test/test_operator.py /^ def __imatmul__ (self, other): return "imatmul"$/;" m class:OperatorTestCase.test_inplace.C file: +__imatmul__ Lib/test/test_weakref.py /^ def __imatmul__(self, other):$/;" m class:ReferencesTestCase.test_proxy_matmul.C file: +__imod__ Lib/operator.py /^__imod__ = imod$/;" v +__imod__ Lib/test/test_augassign.py /^ def __imod__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__imod__ Lib/test/test_operator.py /^ def __imod__ (self, other): return "imod"$/;" m class:OperatorTestCase.test_inplace.C file: +__import__ Lib/importlib/_bootstrap.py /^def __import__(name, globals=None, locals=None, fromlist=(), level=0):$/;" f file: +__import__ Lib/test/test_importlib/import_/test___package__.py /^ __import__ = util.__import__['Source']$/;" v class:Setting__package__ +__import__ Lib/test/test_importlib/import_/test_caching.py /^ __import__ = util.__import__['Source']$/;" v class:ImportlibUseCache +__import__ Lib/test/test_importlib/util.py /^__import__ = {'Frozen': staticmethod(builtins.__import__),$/;" v +__imul__ Lib/collections/__init__.py /^ def __imul__(self, n):$/;" m class:UserList file: +__imul__ Lib/multiprocessing/managers.py /^ def __imul__(self, value):$/;" m class:ListProxy file: +__imul__ Lib/operator.py /^__imul__ = imul$/;" v +__imul__ Lib/test/test_augassign.py /^ def __imul__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__imul__ Lib/test/test_descr.py /^ def __imul__(self, other):$/;" m class:.test_imul_bug.C file: +__imul__ Lib/test/test_operator.py /^ def __imul__ (self, other): return "imul"$/;" m class:OperatorTestCase.test_inplace.C file: +__index__ Lib/numbers.py /^ def __index__(self):$/;" m class:Integral file: +__index__ Lib/operator.py /^__index__ = index$/;" v +__index__ Lib/plistlib.py /^ def __index__(self):$/;" m class:UID file: +__index__ Lib/test/test__xxinterpchannels.py /^ def __index__(self):$/;" m class:ChannelIDTests.test_coerce_id.Int file: +__index__ Lib/test/test__xxsubinterpreters.py /^ def __index__(self):$/;" m class:InterpreterIDTests.test_coerce_id.Int file: +__index__ Lib/test/test_array.py /^ def __index__(self):$/;" m class:Intable file: +__index__ Lib/test/test_buffer.py /^ def __index__(self):$/;" m class:TestBufferProtocol.test_memoryview_struct_module.IDX file: +__index__ Lib/test/test_bytes.py /^ def __index__(self):$/;" m class:BaseBytesTest.test_constructor_exceptions.BadInt file: +__index__ Lib/test/test_bytes.py /^ def __index__(self):$/;" m class:BaseBytesTest.test_from_buffer.B file: +__index__ Lib/test/test_bytes.py /^ def __index__(self):$/;" m class:BaseBytesTest.test_from_mutating_list.X file: +__index__ Lib/test/test_bytes.py /^ def __index__(self):$/;" m class:BaseBytesTest.test_from_mutating_list.Y file: +__index__ Lib/test/test_bytes.py /^ def __index__(self):$/;" m class:ByteArrayTest.test_mutating_index.Boom file: +__index__ Lib/test/test_bytes.py /^ def __index__(self):$/;" m class:BytesTest.test_custom.A file: +__index__ Lib/test/test_bytes.py /^ def __index__(self):$/;" m class:Indexable file: +__index__ Lib/test/test_call.py /^ def __index__(self):$/;" m class:FastCallTests.test_fastcall_clearing_dict.IntWithDict file: +__index__ Lib/test/test_capi/test_getargs.py /^ def __index__(self):$/;" m class:BadIndex file: +__index__ Lib/test/test_capi/test_getargs.py /^ def __index__(self):$/;" m class:BadIndex2 file: +__index__ Lib/test/test_capi/test_getargs.py /^ def __index__(self):$/;" m class:BadIndex3 file: +__index__ Lib/test/test_capi/test_getargs.py /^ def __index__(self):$/;" m class:Index file: +__index__ Lib/test/test_capi/test_getargs.py /^ def __index__(self):$/;" m class:IndexIntSubclass file: +__index__ Lib/test/test_capi/test_misc.py /^ def __index__(self):$/;" m class:CAPITest.test_pynumber_tobase.IDX file: +__index__ Lib/test/test_class.py /^ __index__ = __int__$/;" v class:ClassTests.testBadTypeReturned.BadTypeClass +__index__ Lib/test/test_cmath.py /^ def __index__(self): return 2$/;" m class:CMathTests.test_user_object.Index file: +__index__ Lib/test/test_complex.py /^ def __index__(self):$/;" m class:ComplexTest.test_constructor.MyIndex file: +__index__ Lib/test/test_ctypes/test_numbers.py /^ def __index__(self):$/;" m class:NumberTestCase.test_integers.IndexLike file: +__index__ Lib/test/test_float.py /^ def __index__(self):$/;" m class:GeneralFloatCases.test_floatconversion.MyIndex file: +__index__ Lib/test/test_index.py /^ def __index__(self):$/;" m class:BaseTestCase.test_index_returns_int_subclass.BadInt file: +__index__ Lib/test/test_index.py /^ def __index__(self):$/;" m class:BaseTestCase.test_index_returns_int_subclass.BadInt2 file: +__index__ Lib/test/test_index.py /^ def __index__(self):$/;" m class:BaseTestCase.test_int_subclass_with_index.MyInt file: +__index__ Lib/test/test_index.py /^ def __index__(self):$/;" m class:TrapInt file: +__index__ Lib/test/test_index.py /^ def __index__(self):$/;" m class:newstyle file: +__index__ Lib/test/test_int.py /^ def __index__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.Index file: +__index__ Lib/test/test_int.py /^ def __index__(self):$/;" m class:IntTestCases.test_int_base_indexable.MyIndexable file: +__index__ Lib/test/test_int.py /^ def __index__(self):$/;" m class:IntTestCases.test_int_returns_int_subclass.BadIndex file: +__index__ Lib/test/test_int.py /^ def __index__(self):$/;" m class:IntTestCases.test_int_returns_int_subclass.BadIndex2 file: +__index__ Lib/test/test_int.py /^ def __index__(self):$/;" m class:IntTestCases.test_int_subclass_with_index.BadIndex file: +__index__ Lib/test/test_int.py /^ def __index__(self):$/;" m class:IntTestCases.test_int_subclass_with_index.MyIndex file: +__index__ Lib/test/test_itertools.py /^ def __index__(self):$/;" m class:TestBasicOps.test_islice.IntLike file: +__index__ Lib/test/test_math.py /^ def __index__(self):$/;" m class:MathTests.testIsqrt.IntegerLike file: +__index__ Lib/test/test_math.py /^ def __index__(self):$/;" m class:MyIndexable file: +__index__ Lib/test/test_memoryio.py /^ def __index__(self):$/;" m class:IntLike file: +__index__ Lib/test/test_memoryview.py /^ def __index__(self):$/;" m class:OtherTest.test_use_released_memory.MyIndex file: +__index__ Lib/test/test_mmap.py /^ def __index__(self):$/;" m class:MmapTests.test_mmap_closed_by_int_scenarios.MmapClosedByIntContext.__enter__.X file: +__index__ Lib/test/test_range.py /^ def __index__(self): return 1$/;" m class:RangeTest.test_types.C2 file: +__index__ Lib/test/test_range.py /^ def __index__(self):$/;" m class:RangeTest.test_user_index_method.I file: +__index__ Lib/test/test_range.py /^ def __index__(self):$/;" m class:RangeTest.test_user_index_method.IN file: +__index__ Lib/test/test_range.py /^ def __index__(self):$/;" m class:RangeTest.test_user_index_method.IX file: +__index__ Lib/test/test_re.py /^ def __index__(self):$/;" m class:ReTests.test_group.Index file: +__index__ Lib/test/test_slice.py /^ def __index__(self):$/;" m class:MyIndexable file: +__index__ Lib/test/test_struct.py /^ def __index__(self):$/;" m class:StructTest.test_integers.IntTester.run.BadIndex file: +__index__ Lib/test/test_struct.py /^ def __index__(self):$/;" m class:StructTest.test_integers.IntTester.run.Indexable file: +__index__ Lib/test/test_struct.py /^ def __index__(self):$/;" m class:StructTest.test_issue98248_error_propagation.Div0 file: +__index__ Lib/test/test_unicode.py /^ def __index__(self):$/;" m class:UnicodeTest.test_formatting.PseudoInt file: +__index__ Lib/test/test_unicode.py /^ def __index__(self):$/;" m class:UnicodeTest.test_formatting.RaisingNumber file: +__index__ Lib/test/test_weakref.py /^ def __index__(self):$/;" m class:ReferencesTestCase.test_proxy_index.C file: +__index__ Lib/test/test_xml_etree.py /^ def __index__(self):$/;" m class:BadElementTest.test_ass_subscr.X file: +__index__ Lib/test/test_xml_etree.py /^ def __index__(self):$/;" m class:BadElementTest.test_subscr.X file: +__index__ Lib/test/test_zlib.py /^ def __index__(self):$/;" m class:CustomInt file: +__index__ Lib/typing.py /^ def __index__(self) -> int:$/;" m class:SupportsIndex file: +__init__ Doc/includes/dbpickle.py /^ def __init__(self, file, connection):$/;" m class:DBUnpickler +__init__ Doc/includes/tzinfo_examples.py /^ def __init__(self, hours, reprname, stdname, dstname):$/;" m class:USTimeZone +__init__ Doc/tools/extensions/c_annotations.py /^ def __init__(self, name):$/;" m class:RCEntry +__init__ Doc/tools/extensions/c_annotations.py /^ def __init__(self, refcount_filename, stable_abi_file):$/;" m class:Annotations +__init__ Lib/__future__.py /^ def __init__(self, optionalRelease, mandatoryRelease, compiler_flag):$/;" m class:_Feature +__init__ Lib/_collections_abc.py /^ def __init__(self, mapping):$/;" m class:MappingView +__init__ Lib/_compression.py /^ def __init__(self, fp, decomp_factory, trailing_error=(), **decomp_args):$/;" m class:DecompressReader +__init__ Lib/_markupbase.py /^ def __init__(self):$/;" m class:ParserBase +__init__ Lib/_pydecimal.py /^ def __init__(self):$/;" m class:_Log10Memoize +__init__ Lib/_pydecimal.py /^ def __init__(self, new_context):$/;" m class:_ContextManager +__init__ Lib/_pydecimal.py /^ def __init__(self, prec=None, rounding=None, Emin=None, Emax=None,$/;" m class:Context +__init__ Lib/_pydecimal.py /^ def __init__(self, value=None):$/;" m class:_WorkRep +__init__ Lib/_pyio.py /^ def __init__(self, buffer, encoding=None, errors=None, newline=None,$/;" m class:TextIOWrapper +__init__ Lib/_pyio.py /^ def __init__(self, decoder, translate, errors='strict'):$/;" m class:IncrementalNewlineDecoder +__init__ Lib/_pyio.py /^ def __init__(self, file, mode='r', closefd=True, opener=None):$/;" m class:FileIO +__init__ Lib/_pyio.py /^ def __init__(self, initial_bytes=None):$/;" m class:BytesIO +__init__ Lib/_pyio.py /^ def __init__(self, initial_value="", newline="\\n"):$/;" m class:StringIO +__init__ Lib/_pyio.py /^ def __init__(self, raw):$/;" m class:_BufferedIOMixin +__init__ Lib/_pyio.py /^ def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):$/;" m class:BufferedRandom +__init__ Lib/_pyio.py /^ def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):$/;" m class:BufferedReader +__init__ Lib/_pyio.py /^ def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):$/;" m class:BufferedWriter +__init__ Lib/_pyio.py /^ def __init__(self, reader, writer, buffer_size=DEFAULT_BUFFER_SIZE):$/;" m class:BufferedRWPair +__init__ Lib/_sitebuiltins.py /^ def __init__(self, name, data, files=(), dirs=()):$/;" m class:_Printer +__init__ Lib/_sitebuiltins.py /^ def __init__(self, name, eof):$/;" m class:Quitter +__init__ Lib/_strptime.py /^ def __init__(self):$/;" m class:LocaleTime +__init__ Lib/_strptime.py /^ def __init__(self, locale_time=None):$/;" m class:TimeRE +__init__ Lib/_threading_local.py /^ def __init__(self):$/;" m class:_localimpl +__init__ Lib/_weakrefset.py /^ def __init__(self, data=None):$/;" m class:WeakSet +__init__ Lib/_weakrefset.py /^ def __init__(self, weakcontainer):$/;" m class:_IterationGuard +__init__ Lib/abc.py /^ def __init__(self, callable):$/;" m class:abstractclassmethod +__init__ Lib/abc.py /^ def __init__(self, callable):$/;" m class:abstractstaticmethod +__init__ Lib/aifc.py /^ def __init__(self, f):$/;" m class:Aifc_read +__init__ Lib/aifc.py /^ def __init__(self, f):$/;" m class:Aifc_write +__init__ Lib/argparse.py /^ def __init__(self, formatter, parent, heading=None):$/;" m class:HelpFormatter._Section +__init__ Lib/argparse.py /^ def __init__(self, name, aliases, help):$/;" m class:_SubParsersAction._ChoicesPseudoAction +__init__ Lib/argparse.py /^ def __init__(self, **kwargs):$/;" m class:Namespace +__init__ Lib/argparse.py /^ def __init__(self, argument, message):$/;" m class:ArgumentError +__init__ Lib/argparse.py /^ def __init__(self, container, required=False):$/;" m class:_MutuallyExclusiveGroup +__init__ Lib/argparse.py /^ def __init__(self, container, title=None, description=None, **kwargs):$/;" m class:_ArgumentGroup +__init__ Lib/argparse.py /^ def __init__(self, mode='r', bufsize=-1, encoding=None, errors=None):$/;" m class:FileType +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:Action +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:ArgumentParser +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:BooleanOptionalAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:HelpFormatter +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_ActionsContainer +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_AppendAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_AppendConstAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_CountAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_HelpAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_StoreAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_StoreConstAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_StoreFalseAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_StoreTrueAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_SubParsersAction +__init__ Lib/argparse.py /^ def __init__(self,$/;" m class:_VersionAction +__init__ Lib/ast.py /^ def __init__(cls, *args):$/;" m class:_ABC +__init__ Lib/ast.py /^ def __init__(self, *, _avoid_backslashes=False):$/;" m class:_Unparser +__init__ Lib/asyncio/__main__.py /^ def __init__(self, locals, loop):$/;" m class:AsyncIOInteractiveConsole +__init__ Lib/asyncio/base_events.py /^ def __init__(self):$/;" m class:BaseEventLoop +__init__ Lib/asyncio/base_events.py /^ def __init__(self, loop, sockets, protocol_factory, ssl_context, backlog,$/;" m class:Server +__init__ Lib/asyncio/base_events.py /^ def __init__(self, transp):$/;" m class:_SendfileFallbackProtocol +__init__ Lib/asyncio/base_subprocess.py /^ def __init__(self, loop, protocol, args, shell,$/;" m class:BaseSubprocessTransport +__init__ Lib/asyncio/base_subprocess.py /^ def __init__(self, proc, fd):$/;" m class:WriteSubprocessPipeProto +__init__ Lib/asyncio/events.py /^ def __init__(self):$/;" m class:BaseDefaultEventLoopPolicy +__init__ Lib/asyncio/events.py /^ def __init__(self, callback, args, loop, context=None):$/;" m class:Handle +__init__ Lib/asyncio/events.py /^ def __init__(self, when, callback, args, loop, context=None):$/;" m class:TimerHandle +__init__ Lib/asyncio/exceptions.py /^ def __init__(self, message, consumed):$/;" m class:LimitOverrunError +__init__ Lib/asyncio/exceptions.py /^ def __init__(self, partial, expected):$/;" m class:IncompleteReadError +__init__ Lib/asyncio/futures.py /^ def __init__(self, *, loop=None):$/;" m class:Future +__init__ Lib/asyncio/locks.py /^ def __init__(self):$/;" m class:Event +__init__ Lib/asyncio/locks.py /^ def __init__(self):$/;" m class:Lock +__init__ Lib/asyncio/locks.py /^ def __init__(self, lock=None):$/;" m class:Condition +__init__ Lib/asyncio/locks.py /^ def __init__(self, parties):$/;" m class:Barrier +__init__ Lib/asyncio/locks.py /^ def __init__(self, value=1):$/;" m class:BoundedSemaphore +__init__ Lib/asyncio/locks.py /^ def __init__(self, value=1):$/;" m class:Semaphore +__init__ Lib/asyncio/proactor_events.py /^ def __init__(self, *args, **kw):$/;" m class:_ProactorBaseWritePipeTransport +__init__ Lib/asyncio/proactor_events.py /^ def __init__(self, *args, **kw):$/;" m class:_ProactorWritePipeTransport +__init__ Lib/asyncio/proactor_events.py /^ def __init__(self, loop, sock, protocol, address=None,$/;" m class:_ProactorDatagramTransport +__init__ Lib/asyncio/proactor_events.py /^ def __init__(self, loop, sock, protocol, waiter=None,$/;" m class:_ProactorBasePipeTransport +__init__ Lib/asyncio/proactor_events.py /^ def __init__(self, loop, sock, protocol, waiter=None,$/;" m class:_ProactorReadPipeTransport +__init__ Lib/asyncio/proactor_events.py /^ def __init__(self, loop, sock, protocol, waiter=None,$/;" m class:_ProactorSocketTransport +__init__ Lib/asyncio/proactor_events.py /^ def __init__(self, proactor):$/;" m class:BaseProactorEventLoop +__init__ Lib/asyncio/queues.py /^ def __init__(self, maxsize=0):$/;" m class:Queue +__init__ Lib/asyncio/runners.py /^ def __init__(self, *, debug=None, loop_factory=None):$/;" m class:Runner +__init__ Lib/asyncio/selector_events.py /^ def __init__(self, loop, sock, protocol, address=None,$/;" m class:_SelectorDatagramTransport +__init__ Lib/asyncio/selector_events.py /^ def __init__(self, loop, sock, protocol, extra=None, server=None):$/;" m class:_SelectorTransport +__init__ Lib/asyncio/selector_events.py /^ def __init__(self, loop, sock, protocol, waiter=None,$/;" m class:_SelectorSocketTransport +__init__ Lib/asyncio/selector_events.py /^ def __init__(self, selector=None):$/;" m class:BaseSelectorEventLoop +__init__ Lib/asyncio/sslproto.py /^ def __init__(self, loop, app_protocol, sslcontext, waiter,$/;" m class:SSLProtocol +__init__ Lib/asyncio/sslproto.py /^ def __init__(self, loop, ssl_protocol):$/;" m class:_SSLProtocolTransport +__init__ Lib/asyncio/streams.py /^ def __init__(self, limit=_DEFAULT_LIMIT, loop=None):$/;" m class:StreamReader +__init__ Lib/asyncio/streams.py /^ def __init__(self, loop=None):$/;" m class:FlowControlMixin +__init__ Lib/asyncio/streams.py /^ def __init__(self, stream_reader, client_connected_cb=None, loop=None):$/;" m class:StreamReaderProtocol +__init__ Lib/asyncio/streams.py /^ def __init__(self, transport, protocol, reader, loop):$/;" m class:StreamWriter +__init__ Lib/asyncio/subprocess.py /^ def __init__(self, limit, loop):$/;" m class:SubprocessStreamProtocol +__init__ Lib/asyncio/subprocess.py /^ def __init__(self, transport, protocol, loop):$/;" m class:Process +__init__ Lib/asyncio/taskgroups.py /^ def __init__(self):$/;" m class:TaskGroup +__init__ Lib/asyncio/tasks.py /^ def __init__(self, children, *, loop):$/;" m class:_GatheringFuture +__init__ Lib/asyncio/tasks.py /^ def __init__(self, coro, *, loop=None, name=None, context=None,$/;" m class:Task +__init__ Lib/asyncio/timeouts.py /^ def __init__(self, when: Optional[float]) -> None:$/;" m class:Timeout +__init__ Lib/asyncio/transports.py /^ def __init__(self, extra=None):$/;" m class:BaseTransport +__init__ Lib/asyncio/transports.py /^ def __init__(self, extra=None, loop=None):$/;" m class:_FlowControlMixin +__init__ Lib/asyncio/trsock.py /^ def __init__(self, sock: socket.socket):$/;" m class:TransportSocket +__init__ Lib/asyncio/unix_events.py /^ def __init__(self):$/;" m class:BaseChildWatcher +__init__ Lib/asyncio/unix_events.py /^ def __init__(self):$/;" m class:FastChildWatcher +__init__ Lib/asyncio/unix_events.py /^ def __init__(self):$/;" m class:MultiLoopChildWatcher +__init__ Lib/asyncio/unix_events.py /^ def __init__(self):$/;" m class:SafeChildWatcher +__init__ Lib/asyncio/unix_events.py /^ def __init__(self):$/;" m class:ThreadedChildWatcher +__init__ Lib/asyncio/unix_events.py /^ def __init__(self):$/;" m class:_UnixDefaultEventLoopPolicy +__init__ Lib/asyncio/unix_events.py /^ def __init__(self, loop, pipe, protocol, waiter=None, extra=None):$/;" m class:_UnixReadPipeTransport +__init__ Lib/asyncio/unix_events.py /^ def __init__(self, loop, pipe, protocol, waiter=None, extra=None):$/;" m class:_UnixWritePipeTransport +__init__ Lib/asyncio/unix_events.py /^ def __init__(self, selector=None):$/;" m class:_UnixSelectorEventLoop +__init__ Lib/asyncio/windows_events.py /^ def __init__(self, address):$/;" m class:PipeServer +__init__ Lib/asyncio/windows_events.py /^ def __init__(self, concurrency=INFINITE):$/;" m class:IocpProactor +__init__ Lib/asyncio/windows_events.py /^ def __init__(self, ov, *, loop=None):$/;" m class:_OverlappedFuture +__init__ Lib/asyncio/windows_events.py /^ def __init__(self, ov, event, wait_handle, *, loop=None):$/;" m class:_WaitCancelFuture +__init__ Lib/asyncio/windows_events.py /^ def __init__(self, ov, handle, wait_handle, *, loop=None):$/;" m class:_BaseWaitHandleFuture +__init__ Lib/asyncio/windows_events.py /^ def __init__(self, ov, handle, wait_handle, proactor, *, loop=None):$/;" m class:_WaitHandleFuture +__init__ Lib/asyncio/windows_events.py /^ def __init__(self, proactor=None):$/;" m class:ProactorEventLoop +__init__ Lib/asyncio/windows_utils.py /^ def __init__(self, args, stdin=None, stdout=None, stderr=None, **kwds):$/;" m class:Popen +__init__ Lib/asyncio/windows_utils.py /^ def __init__(self, handle):$/;" m class:PipeHandle +__init__ Lib/bdb.py /^ def __init__(self, file, line, temporary=False, cond=None, funcname=None):$/;" m class:Breakpoint +__init__ Lib/bdb.py /^ def __init__(self, skip=None):$/;" m class:Bdb +__init__ Lib/bz2.py /^ def __init__(self, filename, mode="r", *, compresslevel=9):$/;" m class:BZ2File +__init__ Lib/calendar.py /^ def __init__(self, firstweekday=0):$/;" m class:Calendar +__init__ Lib/calendar.py /^ def __init__(self, firstweekday=0, locale=None):$/;" m class:LocaleHTMLCalendar +__init__ Lib/calendar.py /^ def __init__(self, firstweekday=0, locale=None):$/;" m class:LocaleTextCalendar +__init__ Lib/calendar.py /^ def __init__(self, format):$/;" m class:_localized_day +__init__ Lib/calendar.py /^ def __init__(self, format):$/;" m class:_localized_month +__init__ Lib/calendar.py /^ def __init__(self, locale):$/;" m class:different_locale +__init__ Lib/calendar.py /^ def __init__(self, month):$/;" m class:IllegalMonthError +__init__ Lib/calendar.py /^ def __init__(self, weekday):$/;" m class:IllegalWeekdayError +__init__ Lib/cgi.py /^ def __init__(self, fp=None, headers=None, outerboundary=b'',$/;" m class:FieldStorage +__init__ Lib/cgi.py /^ def __init__(self, name, value):$/;" m class:MiniFieldStorage +__init__ Lib/cgitb.py /^ def __init__(self, display=1, logdir=None, context=5, file=None,$/;" m class:Hook +__init__ Lib/chunk.py /^ def __init__(self, file, align=True, bigendian=True, inclheader=False):$/;" m class:Chunk +__init__ Lib/cmd.py /^ def __init__(self, completekey='tab', stdin=None, stdout=None):$/;" m class:Cmd +__init__ Lib/code.py /^ def __init__(self, locals=None):$/;" m class:InteractiveInterpreter +__init__ Lib/code.py /^ def __init__(self, locals=None, filename=""):$/;" m class:InteractiveConsole +__init__ Lib/codecs.py /^ def __init__(self, errors='strict'):$/;" m class:BufferedIncrementalDecoder +__init__ Lib/codecs.py /^ def __init__(self, errors='strict'):$/;" m class:BufferedIncrementalEncoder +__init__ Lib/codecs.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalDecoder +__init__ Lib/codecs.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalEncoder +__init__ Lib/codecs.py /^ def __init__(self, stream, Reader, Writer, errors='strict'):$/;" m class:StreamReaderWriter +__init__ Lib/codecs.py /^ def __init__(self, stream, encode, decode, Reader, Writer,$/;" m class:StreamRecoder +__init__ Lib/codecs.py /^ def __init__(self, stream, errors='strict'):$/;" m class:StreamReader +__init__ Lib/codecs.py /^ def __init__(self, stream, errors='strict'):$/;" m class:StreamWriter +__init__ Lib/codeop.py /^ def __init__(self):$/;" m class:Compile +__init__ Lib/codeop.py /^ def __init__(self,):$/;" m class:CommandCompiler +__init__ Lib/collections/__init__.py /^ def __init__(self, *maps):$/;" m class:ChainMap +__init__ Lib/collections/__init__.py /^ def __init__(self, dict=None, \/, **kwargs):$/;" m class:UserDict +__init__ Lib/collections/__init__.py /^ def __init__(self, initlist=None):$/;" m class:UserList +__init__ Lib/collections/__init__.py /^ def __init__(self, iterable=None, \/, **kwds):$/;" m class:Counter +__init__ Lib/collections/__init__.py /^ def __init__(self, other=(), \/, **kwds):$/;" m class:OrderedDict +__init__ Lib/collections/__init__.py /^ def __init__(self, seq):$/;" m class:UserString +__init__ Lib/concurrent/futures/_base.py /^ def __init__(self):$/;" m class:Future +__init__ Lib/concurrent/futures/_base.py /^ def __init__(self):$/;" m class:_AsCompletedWaiter +__init__ Lib/concurrent/futures/_base.py /^ def __init__(self):$/;" m class:_Waiter +__init__ Lib/concurrent/futures/_base.py /^ def __init__(self, futures):$/;" m class:_AcquireFutures +__init__ Lib/concurrent/futures/_base.py /^ def __init__(self, num_pending_calls, stop_on_exception):$/;" m class:_AllCompletedWaiter +__init__ Lib/concurrent/futures/process.py /^ def __init__(self):$/;" m class:_ThreadWakeup +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, exc, tb):$/;" m class:_ExceptionWithTraceback +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, executor):$/;" m class:_ExecutorManagerThread +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, future, fn, args, kwargs):$/;" m class:_WorkItem +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, max_size=0, *, ctx, pending_work_items, shutdown_lock,$/;" m class:_SafeQueue +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, max_workers=None, mp_context=None,$/;" m class:ProcessPoolExecutor +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, tb):$/;" m class:_RemoteTraceback +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, work_id, exception=None, result=None, exit_pid=None):$/;" m class:_ResultItem +__init__ Lib/concurrent/futures/process.py /^ def __init__(self, work_id, fn, args, kwargs):$/;" m class:_CallItem +__init__ Lib/concurrent/futures/thread.py /^ def __init__(self, future, fn, args, kwargs):$/;" m class:_WorkItem +__init__ Lib/concurrent/futures/thread.py /^ def __init__(self, max_workers=None, thread_name_prefix='',$/;" m class:ThreadPoolExecutor +__init__ Lib/configparser.py /^ def __init__(self, *args, **kwargs):$/;" m class:LegacyInterpolation +__init__ Lib/configparser.py /^ def __init__(self, defaults=None, dict_type=_default_dict,$/;" m class:RawConfigParser +__init__ Lib/configparser.py /^ def __init__(self, filename, lineno, line):$/;" m class:MissingSectionHeaderError +__init__ Lib/configparser.py /^ def __init__(self, msg=''):$/;" m class:Error +__init__ Lib/configparser.py /^ def __init__(self, option, section):$/;" m class:NoOptionError +__init__ Lib/configparser.py /^ def __init__(self, option, section, msg):$/;" m class:InterpolationError +__init__ Lib/configparser.py /^ def __init__(self, option, section, rawval):$/;" m class:InterpolationDepthError +__init__ Lib/configparser.py /^ def __init__(self, option, section, rawval, reference):$/;" m class:InterpolationMissingOptionError +__init__ Lib/configparser.py /^ def __init__(self, parser):$/;" m class:ConverterMapping +__init__ Lib/configparser.py /^ def __init__(self, parser, name):$/;" m class:SectionProxy +__init__ Lib/configparser.py /^ def __init__(self, section):$/;" m class:NoSectionError +__init__ Lib/configparser.py /^ def __init__(self, section, option, source=None, lineno=None):$/;" m class:DuplicateOptionError +__init__ Lib/configparser.py /^ def __init__(self, section, source=None, lineno=None):$/;" m class:DuplicateSectionError +__init__ Lib/configparser.py /^ def __init__(self, source):$/;" m class:ParsingError +__init__ Lib/contextlib.py /^ def __init__(self):$/;" m class:_BaseExitStack +__init__ Lib/contextlib.py /^ def __init__(self, *exceptions):$/;" m class:suppress +__init__ Lib/contextlib.py /^ def __init__(self, enter_result=None):$/;" m class:nullcontext +__init__ Lib/contextlib.py /^ def __init__(self, func, args, kwds):$/;" m class:_GeneratorContextManagerBase +__init__ Lib/contextlib.py /^ def __init__(self, new_target):$/;" m class:_RedirectStream +__init__ Lib/contextlib.py /^ def __init__(self, path):$/;" m class:chdir +__init__ Lib/contextlib.py /^ def __init__(self, thing):$/;" m class:aclosing +__init__ Lib/contextlib.py /^ def __init__(self, thing):$/;" m class:closing +__init__ Lib/csv.py /^ def __init__(self):$/;" m class:Dialect +__init__ Lib/csv.py /^ def __init__(self):$/;" m class:Sniffer +__init__ Lib/csv.py /^ def __init__(self, f, fieldnames, restval="", extrasaction="raise",$/;" m class:DictWriter +__init__ Lib/csv.py /^ def __init__(self, f, fieldnames=None, restkey=None, restval=None,$/;" m class:DictReader +__init__ Lib/ctypes/__init__.py /^ def __init__(self, dlltype):$/;" m class:LibraryLoader +__init__ Lib/ctypes/__init__.py /^ def __init__(self, name, mode=DEFAULT_MODE, handle=None,$/;" m class:CDLL +__init__ Lib/curses/textpad.py /^ def __init__(self, win, insert_mode=False):$/;" m class:Textbox +__init__ Lib/dataclasses.py /^ def __init__(self, default, default_factory, init, repr, hash, compare,$/;" m class:Field +__init__ Lib/dataclasses.py /^ def __init__(self, name):$/;" m class:_FIELD_BASE +__init__ Lib/dataclasses.py /^ def __init__(self, type):$/;" m class:InitVar +__init__ Lib/dataclasses.py /^ def __init__(self,$/;" m class:_DataclassParams +__init__ Lib/dbm/dumb.py /^ def __init__(self, filebasename, mode, flag='c'):$/;" m class:_Database +__init__ Lib/difflib.py /^ def __init__(self, isjunk=None, a='', b='', autojunk=True):$/;" m class:SequenceMatcher +__init__ Lib/difflib.py /^ def __init__(self, linejunk=None, charjunk=None):$/;" m class:Differ +__init__ Lib/difflib.py /^ def __init__(self,tabsize=8,wrapcolumn=None,linejunk=None,$/;" m class:HtmlDiff +__init__ Lib/dis.py /^ def __init__(self, x, *, first_line=None, current_offset=None, show_caches=False, adaptive=False):$/;" m class:Bytecode +__init__ Lib/doctest.py /^ def __init__(self, checker=None, verbose=None, optionflags=0):$/;" m class:DocTestRunner +__init__ Lib/doctest.py /^ def __init__(self, examples, globs, name, filename, lineno, docstring):$/;" m class:DocTest +__init__ Lib/doctest.py /^ def __init__(self, module):$/;" m class:SkipDocTestCase +__init__ Lib/doctest.py /^ def __init__(self, out):$/;" m class:_OutputRedirectingPdb +__init__ Lib/doctest.py /^ def __init__(self, source, want, exc_msg=None, lineno=0, indent=0,$/;" m class:Example +__init__ Lib/doctest.py /^ def __init__(self, test, example, exc_info):$/;" m class:UnexpectedException +__init__ Lib/doctest.py /^ def __init__(self, test, example, got):$/;" m class:DocTestFailure +__init__ Lib/doctest.py /^ def __init__(self, test, optionflags=0, setUp=None, tearDown=None,$/;" m class:DocTestCase +__init__ Lib/doctest.py /^ def __init__(self, val):$/;" m class:_TestClass +__init__ Lib/doctest.py /^ def __init__(self, verbose=False, parser=DocTestParser(),$/;" m class:DocTestFinder +__init__ Lib/email/_header_value_parser.py /^ def __init__(self, *args, **kw):$/;" m class:TokenList +__init__ Lib/email/_parseaddr.py /^ def __init__(self, field):$/;" m class:AddressList +__init__ Lib/email/_parseaddr.py /^ def __init__(self, field):$/;" m class:AddrlistClass +__init__ Lib/email/_policybase.py /^ def __init__(self, **kw):$/;" m class:_PolicyBase +__init__ Lib/email/charset.py /^ def __init__(self, input_charset=DEFAULT_CHARSET):$/;" m class:Charset +__init__ Lib/email/contentmanager.py /^ def __init__(self):$/;" m class:ContentManager +__init__ Lib/email/errors.py /^ def __init__(self, *args, **kw):$/;" m class:HeaderDefect +__init__ Lib/email/errors.py /^ def __init__(self, line=None):$/;" m class:MessageDefect +__init__ Lib/email/errors.py /^ def __init__(self, non_printables):$/;" m class:NonPrintableDefect +__init__ Lib/email/feedparser.py /^ def __init__(self):$/;" m class:BufferedSubFile +__init__ Lib/email/feedparser.py /^ def __init__(self, _factory=None, *, policy=compat32):$/;" m class:FeedParser +__init__ Lib/email/generator.py /^ def __init__(self, outfp, mangle_from_=None, maxheaderlen=None, *,$/;" m class:Generator +__init__ Lib/email/generator.py /^ def __init__(self, outfp, mangle_from_=None, maxheaderlen=None, fmt=None, *,$/;" m class:DecodedGenerator +__init__ Lib/email/header.py /^ def __init__(self, headerlen, maxlen, continuation_ws, splitchars):$/;" m class:_ValueFormatter +__init__ Lib/email/header.py /^ def __init__(self, initial_size=0):$/;" m class:_Accumulator +__init__ Lib/email/header.py /^ def __init__(self, s=None, charset=None,$/;" m class:Header +__init__ Lib/email/headerregistry.py /^ def __init__(self, base_class=BaseHeader, default_class=UnstructuredHeader,$/;" m class:HeaderRegistry +__init__ Lib/email/headerregistry.py /^ def __init__(self, display_name='', username='', domain='', addr_spec=None):$/;" m class:Address +__init__ Lib/email/headerregistry.py /^ def __init__(self, display_name=None, addresses=None):$/;" m class:Group +__init__ Lib/email/message.py /^ def __init__(self, policy=None):$/;" m class:MIMEPart +__init__ Lib/email/message.py /^ def __init__(self, policy=compat32):$/;" m class:Message +__init__ Lib/email/mime/application.py /^ def __init__(self, _data, _subtype='octet-stream',$/;" m class:MIMEApplication +__init__ Lib/email/mime/audio.py /^ def __init__(self, _audiodata, _subtype=None,$/;" m class:MIMEAudio +__init__ Lib/email/mime/base.py /^ def __init__(self, _maintype, _subtype, *, policy=None, **_params):$/;" m class:MIMEBase +__init__ Lib/email/mime/image.py /^ def __init__(self, _imagedata, _subtype=None,$/;" m class:MIMEImage +__init__ Lib/email/mime/message.py /^ def __init__(self, _msg, _subtype='rfc822', *, policy=None):$/;" m class:MIMEMessage +__init__ Lib/email/mime/multipart.py /^ def __init__(self, _subtype='mixed', boundary=None, _subparts=None,$/;" m class:MIMEMultipart +__init__ Lib/email/mime/text.py /^ def __init__(self, _text, _subtype='plain', _charset=None, *, policy=None):$/;" m class:MIMEText +__init__ Lib/email/parser.py /^ def __init__(self, *args, **kw):$/;" m class:BytesParser +__init__ Lib/email/parser.py /^ def __init__(self, _class=None, *, policy=compat32):$/;" m class:Parser +__init__ Lib/email/policy.py /^ def __init__(self, **kw):$/;" m class:EmailPolicy +__init__ Lib/encodings/bz2_codec.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalDecoder +__init__ Lib/encodings/bz2_codec.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalEncoder +__init__ Lib/encodings/charmap.py /^ def __init__(self, errors='strict', mapping=None):$/;" m class:IncrementalDecoder +__init__ Lib/encodings/charmap.py /^ def __init__(self, errors='strict', mapping=None):$/;" m class:IncrementalEncoder +__init__ Lib/encodings/charmap.py /^ def __init__(self,stream,errors='strict',mapping=None):$/;" m class:StreamReader +__init__ Lib/encodings/charmap.py /^ def __init__(self,stream,errors='strict',mapping=None):$/;" m class:StreamWriter +__init__ Lib/encodings/utf_16.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalDecoder +__init__ Lib/encodings/utf_16.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalEncoder +__init__ Lib/encodings/utf_16.py /^ def __init__(self, stream, errors='strict'):$/;" m class:StreamWriter +__init__ Lib/encodings/utf_32.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalDecoder +__init__ Lib/encodings/utf_32.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalEncoder +__init__ Lib/encodings/utf_32.py /^ def __init__(self, stream, errors='strict'):$/;" m class:StreamWriter +__init__ Lib/encodings/utf_8_sig.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalDecoder +__init__ Lib/encodings/utf_8_sig.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalEncoder +__init__ Lib/encodings/zlib_codec.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalDecoder +__init__ Lib/encodings/zlib_codec.py /^ def __init__(self, errors='strict'):$/;" m class:IncrementalEncoder +__init__ Lib/enum.py /^ def __init__(self):$/;" m class:_EnumDict +__init__ Lib/enum.py /^ def __init__(self, *args, **kwds):$/;" m class:Enum +__init__ Lib/enum.py /^ def __init__(self, *checks):$/;" m class:verify +__init__ Lib/enum.py /^ def __init__(self, value):$/;" m class:_proto_member +__init__ Lib/enum.py /^ def __init__(self, value):$/;" m class:member +__init__ Lib/enum.py /^ def __init__(self, value):$/;" m class:nonmember +__init__ Lib/enum.py /^ def __init__(self, value=_auto_null):$/;" m class:auto +__init__ Lib/filecmp.py /^ def __init__(self, a, b, ignore=None, hide=None): # Initialize$/;" m class:dircmp +__init__ Lib/fileinput.py /^ def __init__(self, files=None, inplace=False, backup="", *,$/;" m class:FileInput +__init__ Lib/ftplib.py /^ def __init__(self, host='', user='', passwd='', acct='',$/;" m class:.FTP_TLS +__init__ Lib/ftplib.py /^ def __init__(self, host='', user='', passwd='', acct='',$/;" m class:FTP +__init__ Lib/functools.py /^ def __init__(self, obj):$/;" m class:cmp_to_key.K +__init__ Lib/functools.py /^ def __init__(self, func):$/;" m class:cached_property +__init__ Lib/functools.py /^ def __init__(self, func):$/;" m class:singledispatchmethod +__init__ Lib/functools.py /^ def __init__(self, func, \/, *args, **keywords):$/;" m class:partialmethod +__init__ Lib/functools.py /^ def __init__(self, tup, hash=hash):$/;" m class:_HashedSeq +__init__ Lib/getopt.py /^ def __init__(self, msg, opt=''):$/;" m class:GetoptError +__init__ Lib/gettext.py /^ def __init__(self, fp=None):$/;" m class:NullTranslations +__init__ Lib/graphlib.py /^ def __init__(self, graph=None):$/;" m class:TopologicalSorter +__init__ Lib/graphlib.py /^ def __init__(self, node):$/;" m class:_NodeInfo +__init__ Lib/gzip.py /^ def __init__(self, f, prepend=b''):$/;" m class:_PaddedFile +__init__ Lib/gzip.py /^ def __init__(self, filename=None, mode=None,$/;" m class:GzipFile +__init__ Lib/gzip.py /^ def __init__(self, fp):$/;" m class:_GzipReader +__init__ Lib/gzip.py /^ def __init__(self, gzip_file):$/;" m class:_WriteBufferStream +__init__ Lib/hmac.py /^ def __init__(self, key, msg=None, digestmod=''):$/;" m class:HMAC +__init__ Lib/html/parser.py /^ def __init__(self, *, convert_charrefs=True):$/;" m class:HTMLParser +__init__ Lib/http/client.py /^ def __init__(self, host, port=None,$/;" m class:HTTPConnection.HTTPSConnection +__init__ Lib/http/client.py /^ def __init__(self, *pos, **kw):$/;" m class:RemoteDisconnected +__init__ Lib/http/client.py /^ def __init__(self, host, port=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,$/;" m class:HTTPConnection +__init__ Lib/http/client.py /^ def __init__(self, line):$/;" m class:BadStatusLine +__init__ Lib/http/client.py /^ def __init__(self, line_type):$/;" m class:LineTooLong +__init__ Lib/http/client.py /^ def __init__(self, partial, expected=None):$/;" m class:IncompleteRead +__init__ Lib/http/client.py /^ def __init__(self, sock, debuglevel=0, method=None, url=None):$/;" m class:HTTPResponse +__init__ Lib/http/client.py /^ def __init__(self, version):$/;" m class:UnknownProtocol +__init__ Lib/http/cookiejar.py /^ def __init__(self, filename=None, delayload=False, policy=None):$/;" m class:FileCookieJar +__init__ Lib/http/cookiejar.py /^ def __init__(self, policy=None):$/;" m class:CookieJar +__init__ Lib/http/cookiejar.py /^ def __init__(self, version, name, value,$/;" m class:Cookie +__init__ Lib/http/cookiejar.py /^ def __init__(self,$/;" m class:DefaultCookiePolicy +__init__ Lib/http/cookies.py /^ def __init__(self):$/;" m class:Morsel +__init__ Lib/http/cookies.py /^ def __init__(self, input=None):$/;" m class:BaseCookie +__init__ Lib/http/server.py /^ def __init__(self, *args, directory=None, **kwargs):$/;" m class:SimpleHTTPRequestHandler +__init__ Lib/idlelib/autocomplete.py /^ def __init__(self, editwin=None, tags=None):$/;" m class:AutoComplete +__init__ Lib/idlelib/autocomplete_w.py /^ def __init__(self, widget, tags):$/;" m class:AutoCompleteWindow +__init__ Lib/idlelib/autoexpand.py /^ def __init__(self, editwin):$/;" m class:AutoExpand +__init__ Lib/idlelib/browser.py /^ def __init__(self, file):$/;" m class:ModuleBrowserTreeItem +__init__ Lib/idlelib/browser.py /^ def __init__(self, master, path, *, _htest=False, _utest=False):$/;" m class:ModuleBrowser +__init__ Lib/idlelib/browser.py /^ def __init__(self, obj):$/;" m class:ChildBrowserTreeItem +__init__ Lib/idlelib/calltip.py /^ def __init__(self, editwin=None):$/;" m class:Calltip +__init__ Lib/idlelib/calltip_w.py /^ def __init__(self, text_widget):$/;" m class:CalltipWindow +__init__ Lib/idlelib/codecontext.py /^ def __init__(self, editwin):$/;" m class:CodeContext +__init__ Lib/idlelib/colorizer.py /^ def __init__(self):$/;" m class:ColorDelegator +__init__ Lib/idlelib/config.py /^ def __init__(self):$/;" m class:ConfigChanges +__init__ Lib/idlelib/config.py /^ def __init__(self, _utest=False):$/;" m class:IdleConf +__init__ Lib/idlelib/config.py /^ def __init__(self, cfgFile, cfgDefaults=None):$/;" m class:IdleConfParser +__init__ Lib/idlelib/config_key.py /^ def __init__(self, parent, action, current_key_sequences):$/;" m class:GetKeysFrame +__init__ Lib/idlelib/config_key.py /^ def __init__(self, parent, title, action, current_key_sequences,$/;" m class:GetKeysWindow +__init__ Lib/idlelib/configdialog.py /^ def __init__(self):$/;" m class:VarTrace +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, master):$/;" m class:ExtPage +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, master):$/;" m class:ShedPage +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, master):$/;" m class:WinPage +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, master, **cfg):$/;" m class:HelpFrame +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, master, extpage):$/;" m class:HighPage +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, master, extpage):$/;" m class:KeysPage +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, master, highpage):$/;" m class:FontPage +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, parent, *args, **kw):$/;" m class:VerticalScrolledFrame +__init__ Lib/idlelib/configdialog.py /^ def __init__(self, parent, title='', *, _htest=False, _utest=False):$/;" m class:ConfigDialog +__init__ Lib/idlelib/debugger.py /^ def __init__(self, gui):$/;" m class:Idb +__init__ Lib/idlelib/debugger.py /^ def __init__(self, master, flist, gui):$/;" m class:StackViewer +__init__ Lib/idlelib/debugger.py /^ def __init__(self, master, title, dict=None):$/;" m class:NamespaceViewer +__init__ Lib/idlelib/debugger.py /^ def __init__(self, pyshell, idb=None):$/;" m class:Debugger +__init__ Lib/idlelib/debugger_r.py /^ def __init__(self, conn, fid):$/;" m class:FrameProxy +__init__ Lib/idlelib/debugger_r.py /^ def __init__(self, conn, gui):$/;" m class:GUIAdapter +__init__ Lib/idlelib/debugger_r.py /^ def __init__(self, conn, gui_adap_oid):$/;" m class:GUIProxy +__init__ Lib/idlelib/debugger_r.py /^ def __init__(self, conn, oid, cid):$/;" m class:CodeProxy +__init__ Lib/idlelib/debugger_r.py /^ def __init__(self, conn, oid, did):$/;" m class:DictProxy +__init__ Lib/idlelib/debugger_r.py /^ def __init__(self, conn, shell, oid):$/;" m class:IdbProxy +__init__ Lib/idlelib/debugger_r.py /^ def __init__(self, idb):$/;" m class:IdbAdapter +__init__ Lib/idlelib/debugobj.py /^ def __init__(self, labeltext, object, setfunction=None):$/;" m class:ObjectTreeItem +__init__ Lib/idlelib/debugobj_r.py /^ def __init__(self, item):$/;" m class:WrappedObjectTreeItem +__init__ Lib/idlelib/debugobj_r.py /^ def __init__(self, sockio, oid):$/;" m class:StubObjectTreeItem +__init__ Lib/idlelib/delegator.py /^ def __init__(self, delegate=None):$/;" m class:Delegator +__init__ Lib/idlelib/dynoption.py /^ def __init__(self, master, variable, value, *values, **kwargs):$/;" m class:DynOptionMenu +__init__ Lib/idlelib/editor.py /^ def __init__(self, flist=None, filename=None, key=None, root=None):$/;" m class:EditorWindow +__init__ Lib/idlelib/editor.py /^ def __init__(self, text):$/;" m class:IndentSearcher +__init__ Lib/idlelib/filelist.py /^ def __init__(self, root):$/;" m class:FileList +__init__ Lib/idlelib/format.py /^ def __init__(self, editwin):$/;" m class:FormatParagraph +__init__ Lib/idlelib/format.py /^ def __init__(self, editwin):$/;" m class:FormatRegion +__init__ Lib/idlelib/format.py /^ def __init__(self, editwin):$/;" m class:Indents +__init__ Lib/idlelib/format.py /^ def __init__(self, editwin):$/;" m class:Rstrip +__init__ Lib/idlelib/grep.py /^ def __init__(self, root, engine, flist):$/;" m class:GrepDialog +__init__ Lib/idlelib/help.py /^ def __init__(self, parent, filename):$/;" m class:HelpFrame +__init__ Lib/idlelib/help.py /^ def __init__(self, parent, filename):$/;" m class:HelpText +__init__ Lib/idlelib/help.py /^ def __init__(self, parent, filename, title):$/;" m class:HelpWindow +__init__ Lib/idlelib/help.py /^ def __init__(self, text):$/;" m class:HelpParser +__init__ Lib/idlelib/help_about.py /^ def __init__(self, parent, title=None, *, _htest=False, _utest=False):$/;" m class:AboutDialog +__init__ Lib/idlelib/history.py /^ def __init__(self, text):$/;" m class:History +__init__ Lib/idlelib/hyperparser.py /^ def __init__(self, editwin, index):$/;" m class:HyperParser +__init__ Lib/idlelib/idle_test/mock_idle.py /^ def __init__(self, flist=None, filename=None, key=None, root=None,$/;" m class:Editor +__init__ Lib/idlelib/idle_test/mock_idle.py /^ def __init__(self, result=None, return_self=False):$/;" m class:Func +__init__ Lib/idlelib/idle_test/mock_tk.py /^ def __init__(self, **kwds):$/;" m class:Event +__init__ Lib/idlelib/idle_test/mock_tk.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Text +__init__ Lib/idlelib/idle_test/mock_tk.py /^ def __init__(self, master=None, value=None, name=None):$/;" m class:Var +__init__ Lib/idlelib/idle_test/mock_tk.py /^ def __init__(self, result=None):$/;" m class:Mbox_func +__init__ Lib/idlelib/idle_test/test_autocomplete.py /^ __init__ = Func()$/;" v class:AutoCompleteTest.dummy_acw +__init__ Lib/idlelib/idle_test/test_autocomplete.py /^ def __init__(self, root, text):$/;" m class:DummyEditwin +__init__ Lib/idlelib/idle_test/test_autoexpand.py /^ def __init__(self, text):$/;" m class:DummyEditwin +__init__ Lib/idlelib/idle_test/test_calltip.py /^ def __init__(self):$/;" m class:mock_TipWindow +__init__ Lib/idlelib/idle_test/test_calltip.py /^ def __init__(self, ai=None, *b): 'doc'$/;" m class:TC +__init__ Lib/idlelib/idle_test/test_calltip.py /^ def __init__(self, text):$/;" m class:mock_Shell +__init__ Lib/idlelib/idle_test/test_codecontext.py /^ def __init__(self, root, frame, text):$/;" m class:DummyEditwin +__init__ Lib/idlelib/idle_test/test_config_key.py /^ def __init__(self, *args, **kwargs):$/;" m class:KeySelectionTest.Basic +__init__ Lib/idlelib/idle_test/test_config_key.py /^ def __init__(self, *args, **kwargs):$/;" m class:ValidationTest.Validator +__init__ Lib/idlelib/idle_test/test_format.py /^ def __init__(self, master):$/;" m class:TextWrapper +__init__ Lib/idlelib/idle_test/test_format.py /^ def __init__(self, root):$/;" m class:Editor +__init__ Lib/idlelib/idle_test/test_format.py /^ def __init__(self, root, text):$/;" m class:DummyEditwin +__init__ Lib/idlelib/idle_test/test_history.py /^ def __init__(self, master):$/;" m class:TextWrapper +__init__ Lib/idlelib/idle_test/test_hyperparser.py /^ def __init__(self, text):$/;" m class:DummyEditwin +__init__ Lib/idlelib/idle_test/test_parenmatch.py /^ def __init__(self, text):$/;" m class:DummyEditwin +__init__ Lib/idlelib/idle_test/test_percolator.py /^ def __init__(self):$/;" m class:MyFilter +__init__ Lib/idlelib/idle_test/test_query.py /^ def __init__(self, dummy_entry):$/;" m class:CustomRunCLIargsokTest.Dummy_CustomRun +__init__ Lib/idlelib/idle_test/test_query.py /^ def __init__(self, dummy_entry):$/;" m class:GotoTest.Dummy_ModuleName +__init__ Lib/idlelib/idle_test/test_query.py /^ def __init__(self, dummy_entry):$/;" m class:ModuleNameTest.Dummy_ModuleName +__init__ Lib/idlelib/idle_test/test_query.py /^ def __init__(self, dummy_entry):$/;" m class:QueryTest.Dummy_Query +__init__ Lib/idlelib/idle_test/test_query.py /^ def __init__(self, dummy_entry):$/;" m class:SectionNameTest.Dummy_SectionName +__init__ Lib/idlelib/idle_test/test_query.py /^ def __init__(self, dummy_path):$/;" m class:HelpsourcePathokTest.Dummy_HelpSource +__init__ Lib/idlelib/idle_test/test_run.py /^ def __init__(self):$/;" m class:MockShell +__init__ Lib/idlelib/idle_test/test_searchengine.py /^ def __init__(self, *args, **kwargs): pass$/;" m class:Mock +__init__ Lib/idlelib/idle_test/test_sidebar.py /^ def __init__(self, text):$/;" m class:Dummy_editwin +__init__ Lib/idlelib/idle_test/test_tree.py /^ def __init__(widget, *expected):$/;" m class:TestScrollEvent.test_wheel_event._Widget +__init__ Lib/idlelib/idle_test/test_zzdummy.py /^ def __init__(self, root, text):$/;" m class:DummyEditwin +__init__ Lib/idlelib/iomenu.py /^ def __init__(self, text):$/;" m class:_io_binding.MyEditWin +__init__ Lib/idlelib/iomenu.py /^ def __init__(self, editwin):$/;" m class:IOBinding +__init__ Lib/idlelib/multicall.py /^ def __init__(self, *args, **kwargs):$/;" m class:MultiCallCreator.MultiCall +__init__ Lib/idlelib/multicall.py /^ def __init__(self, type, widget, widgetinst):$/;" m class:_ComplexBinder +__init__ Lib/idlelib/multicall.py /^ def __init__(self, type, widget, widgetinst):$/;" m class:_SimpleBinder +__init__ Lib/idlelib/outwin.py /^ def __init__(self, *args):$/;" m class:OutputWindow +__init__ Lib/idlelib/outwin.py /^ def __init__(self, flist):$/;" m class:OnDemandOutputWindow +__init__ Lib/idlelib/parenmatch.py /^ def __init__(self, editwin):$/;" m class:ParenMatch +__init__ Lib/idlelib/pathbrowser.py /^ def __init__(self, dir, packages=[]):$/;" m class:DirBrowserTreeItem +__init__ Lib/idlelib/pathbrowser.py /^ def __init__(self, master, *, _htest=False, _utest=False):$/;" m class:PathBrowser +__init__ Lib/idlelib/percolator.py /^ def __init__(self, name):$/;" m class:_percolator.Tracer +__init__ Lib/idlelib/percolator.py /^ def __init__(self, text):$/;" m class:Percolator +__init__ Lib/idlelib/pyparse.py /^ def __init__(self, indentwidth, tabwidth):$/;" m class:Parser +__init__ Lib/idlelib/pyshell.py /^ def __init__(self, *args):$/;" m class:PyShellEditorWindow +__init__ Lib/idlelib/pyshell.py /^ def __init__(self, flist=None):$/;" m class:PyShell +__init__ Lib/idlelib/pyshell.py /^ def __init__(self, tkconsole):$/;" m class:ModifiedInterpreter +__init__ Lib/idlelib/query.py /^ def __init__(self, parent, title, *, cli_args=[],$/;" m class:CustomRun +__init__ Lib/idlelib/query.py /^ def __init__(self, parent, title, *, menuitem='', filepath='',$/;" m class:HelpSource +__init__ Lib/idlelib/query.py /^ def __init__(self, parent, title, message, *, text0='', used_names={},$/;" m class:Query +__init__ Lib/idlelib/query.py /^ def __init__(self, parent, title, message, text0,$/;" m class:ModuleName +__init__ Lib/idlelib/query.py /^ def __init__(self, parent, title, message, used_names,$/;" m class:SectionName +__init__ Lib/idlelib/redirector.py /^ def __init__(self, redir, operation):$/;" m class:OriginalCommand +__init__ Lib/idlelib/redirector.py /^ def __init__(self, widget):$/;" m class:WidgetRedirector +__init__ Lib/idlelib/replace.py /^ def __init__(self, root, engine):$/;" m class:ReplaceDialog +__init__ Lib/idlelib/rpc.py /^ def __init__(self, addr, handlerclass=None):$/;" m class:RPCServer +__init__ Lib/idlelib/rpc.py /^ def __init__(self, address, family=socket.AF_INET, type=socket.SOCK_STREAM):$/;" m class:RPCClient +__init__ Lib/idlelib/rpc.py /^ def __init__(self, oid):$/;" m class:RemoteProxy +__init__ Lib/idlelib/rpc.py /^ def __init__(self, sock, addr, svr):$/;" m class:RPCHandler +__init__ Lib/idlelib/rpc.py /^ def __init__(self, sock, objtable=None, debugging=None):$/;" m class:SocketIO +__init__ Lib/idlelib/rpc.py /^ def __init__(self, sockio, oid):$/;" m class:RPCProxy +__init__ Lib/idlelib/rpc.py /^ def __init__(self, sockio, oid, name):$/;" m class:MethodProxy +__init__ Lib/idlelib/run.py /^ def __init__(self, rpchandler):$/;" m class:Executive +__init__ Lib/idlelib/run.py /^ def __init__(self, shell, tags, encoding='utf-8', errors='strict'):$/;" m class:StdioFile +__init__ Lib/idlelib/runscript.py /^ def __init__(self, editwin):$/;" m class:ScriptBinding +__init__ Lib/idlelib/scrolledlist.py /^ def __init__(self, master, **options):$/;" m class:ScrolledList +__init__ Lib/idlelib/searchbase.py /^ def __init__(self, parent):$/;" m class:_searchbase +__init__ Lib/idlelib/searchbase.py /^ def __init__(self, root, engine):$/;" m class:SearchDialogBase +__init__ Lib/idlelib/searchengine.py /^ def __init__(self, root):$/;" m class:SearchEngine +__init__ Lib/idlelib/sidebar.py /^ def __init__(self, callback):$/;" m class:WrappedLineHeightChangeDelegator +__init__ Lib/idlelib/sidebar.py /^ def __init__(self, changed_callback):$/;" m class:EndLineDelegator +__init__ Lib/idlelib/sidebar.py /^ def __init__(self, editwin):$/;" m class:BaseSideBar +__init__ Lib/idlelib/sidebar.py /^ def __init__(self, editwin):$/;" m class:LineNumbers +__init__ Lib/idlelib/sidebar.py /^ def __init__(self, editwin):$/;" m class:ShellSidebar +__init__ Lib/idlelib/squeezer.py /^ def __init__(self, editwin):$/;" m class:Squeezer +__init__ Lib/idlelib/squeezer.py /^ def __init__(self, s, tags, numoflines, squeezer):$/;" m class:ExpandingButton +__init__ Lib/idlelib/stackviewer.py /^ def __init__(self, exc, flist=None):$/;" m class:StackTreeItem +__init__ Lib/idlelib/stackviewer.py /^ def __init__(self, info, flist):$/;" m class:FrameTreeItem +__init__ Lib/idlelib/statusbar.py /^ def __init__(self, master, **kw):$/;" m class:MultiStatusBar +__init__ Lib/idlelib/textview.py /^ def __init__(self, master, wrap=NONE, **kwargs):$/;" m class:ScrollableTextFrame +__init__ Lib/idlelib/textview.py /^ def __init__(self, parent, contents, wrap='word'):$/;" m class:ViewFrame +__init__ Lib/idlelib/textview.py /^ def __init__(self, parent, title, contents, modal=True, wrap=WORD,$/;" m class:ViewWindow +__init__ Lib/idlelib/tooltip.py /^ def __init__(self, anchor_widget):$/;" m class:TooltipBase +__init__ Lib/idlelib/tooltip.py /^ def __init__(self, anchor_widget, hover_delay=1000):$/;" m class:OnHoverTooltipBase +__init__ Lib/idlelib/tooltip.py /^ def __init__(self, anchor_widget, text, hover_delay=1000):$/;" m class:Hovertip +__init__ Lib/idlelib/tree.py /^ def __init__(self):$/;" m class:TreeItem +__init__ Lib/idlelib/tree.py /^ def __init__(self, canvas, parent, item):$/;" m class:TreeNode +__init__ Lib/idlelib/tree.py /^ def __init__(self, master, **opts):$/;" m class:ScrolledCanvas +__init__ Lib/idlelib/tree.py /^ def __init__(self, path):$/;" m class:FileTreeItem +__init__ Lib/idlelib/undo.py /^ def __init__(self):$/;" m class:CommandSequence +__init__ Lib/idlelib/undo.py /^ def __init__(self):$/;" m class:UndoDelegator +__init__ Lib/idlelib/undo.py /^ def __init__(self, index1, chars, tags=None):$/;" m class:InsertCommand +__init__ Lib/idlelib/undo.py /^ def __init__(self, index1, index2, chars, tags=None):$/;" m class:Command +__init__ Lib/idlelib/undo.py /^ def __init__(self, index1, index2=None):$/;" m class:DeleteCommand +__init__ Lib/idlelib/window.py /^ def __init__(self):$/;" m class:WindowList +__init__ Lib/idlelib/window.py /^ def __init__(self, master, **kw):$/;" m class:ListedToplevel +__init__ Lib/idlelib/zoomheight.py /^ def __init__(self, editwin):$/;" m class:ZoomHeight +__init__ Lib/idlelib/zzdummy.py /^ def __init__(self, editwin):$/;" m class:ZzDummy +__init__ Lib/imaplib.py /^ def __init__(self, host='', port=IMAP4_SSL_PORT,$/;" m class:IMAP4.IMAP4_SSL +__init__ Lib/imaplib.py /^ def __init__(self, command):$/;" m class:IMAP4_stream +__init__ Lib/imaplib.py /^ def __init__(self, host='', port=IMAP4_PORT, timeout=None):$/;" m class:IMAP4 +__init__ Lib/imaplib.py /^ def __init__(self, mechinst):$/;" m class:_Authenticator +__init__ Lib/importlib/_bootstrap.py /^ def __init__(self, ob, key):$/;" m class:_WeakValueDictionary.__init__.KeyedRef +__init__ Lib/importlib/_bootstrap.py /^ def __init__(self):$/;" m class:_WeakValueDictionary +__init__ Lib/importlib/_bootstrap.py /^ def __init__(self, name):$/;" m class:_DummyModuleLock +__init__ Lib/importlib/_bootstrap.py /^ def __init__(self, name):$/;" m class:_ModuleLock +__init__ Lib/importlib/_bootstrap.py /^ def __init__(self, name):$/;" m class:_ModuleLockManager +__init__ Lib/importlib/_bootstrap.py /^ def __init__(self, name, loader, *, origin=None, loader_state=None,$/;" m class:ModuleSpec +__init__ Lib/importlib/_bootstrap.py /^ def __init__(self, thread_id, lock):$/;" m class:_BlockingOnManager +__init__ Lib/importlib/_bootstrap_external.py /^ def __init__(self, fullname, path):$/;" m class:FileLoader +__init__ Lib/importlib/_bootstrap_external.py /^ def __init__(self, name, path):$/;" m class:ExtensionFileLoader +__init__ Lib/importlib/_bootstrap_external.py /^ def __init__(self, name, path, path_finder):$/;" m class:NamespaceLoader +__init__ Lib/importlib/_bootstrap_external.py /^ def __init__(self, name, path, path_finder):$/;" m class:_NamespacePath +__init__ Lib/importlib/_bootstrap_external.py /^ def __init__(self, path, *loader_details):$/;" m class:FileFinder +__init__ Lib/importlib/metadata/__init__.py /^ def __init__(self, **kwargs):$/;" m class:DistributionFinder.Context +__init__ Lib/importlib/metadata/__init__.py /^ def __init__(self, name):$/;" m class:Prepared +__init__ Lib/importlib/metadata/__init__.py /^ def __init__(self, name, value, group):$/;" m class:EntryPoint +__init__ Lib/importlib/metadata/__init__.py /^ def __init__(self, path: FastPath):$/;" m class:Lookup +__init__ Lib/importlib/metadata/__init__.py /^ def __init__(self, path: SimplePath):$/;" m class:PathDistribution +__init__ Lib/importlib/metadata/__init__.py /^ def __init__(self, root):$/;" m class:FastPath +__init__ Lib/importlib/metadata/__init__.py /^ def __init__(self, spec):$/;" m class:FileHash +__init__ Lib/importlib/metadata/_adapters.py /^ def __init__(self, *args, **kwargs):$/;" m class:Message +__init__ Lib/importlib/resources/_adapters.py /^ def __init__(self, *path_parts):$/;" m class:CompatibilityFiles.OrphanPath +__init__ Lib/importlib/resources/_adapters.py /^ def __init__(self, reader, name):$/;" m class:CompatibilityFiles.ChildPath +__init__ Lib/importlib/resources/_adapters.py /^ def __init__(self, spec, reader):$/;" m class:CompatibilityFiles.SpecPath +__init__ Lib/importlib/resources/_adapters.py /^ def __init__(self, spec):$/;" m class:CompatibilityFiles +__init__ Lib/importlib/resources/_adapters.py /^ def __init__(self, spec):$/;" m class:TraversableResourcesLoader +__init__ Lib/importlib/resources/_adapters.py /^ def __init__(self, spec, adapter=lambda spec: spec.loader):$/;" m class:SpecLoaderAdapter +__init__ Lib/importlib/resources/readers.py /^ def __init__(self, *paths):$/;" m class:MultiplexedPath +__init__ Lib/importlib/resources/readers.py /^ def __init__(self, loader):$/;" m class:FileReader +__init__ Lib/importlib/resources/readers.py /^ def __init__(self, loader, module):$/;" m class:ZipReader +__init__ Lib/importlib/resources/readers.py /^ def __init__(self, namespace_path):$/;" m class:NamespaceReader +__init__ Lib/importlib/resources/simple.py /^ def __init__(self, parent: ResourceContainer, name: str):$/;" m class:ResourceHandle +__init__ Lib/importlib/resources/simple.py /^ def __init__(self, reader: SimpleReader):$/;" m class:ResourceContainer +__init__ Lib/importlib/util.py /^ def __init__(self, *, disable_check):$/;" m class:_incompatible_extension_module_restrictions +__init__ Lib/importlib/util.py /^ def __init__(self, loader):$/;" m class:LazyLoader +__init__ Lib/inspect.py /^ def __init__(self):$/;" m class:BlockFinder +__init__ Lib/inspect.py /^ def __init__(self, name, kind, *, default=_empty, annotation=_empty):$/;" m class:Parameter +__init__ Lib/inspect.py /^ def __init__(self, parameters=None, *, return_annotation=_empty,$/;" m class:Signature +__init__ Lib/inspect.py /^ def __init__(self, qualname):$/;" m class:_ClassFinder +__init__ Lib/inspect.py /^ def __init__(self, signature, arguments):$/;" m class:BoundArguments +__init__ Lib/ipaddress.py /^ def __init__(self, address):$/;" m class:IPv4Address +__init__ Lib/ipaddress.py /^ def __init__(self, address):$/;" m class:IPv4Interface +__init__ Lib/ipaddress.py /^ def __init__(self, address):$/;" m class:IPv6Address +__init__ Lib/ipaddress.py /^ def __init__(self, address):$/;" m class:IPv6Interface +__init__ Lib/ipaddress.py /^ def __init__(self, address, strict=True):$/;" m class:IPv4Network +__init__ Lib/ipaddress.py /^ def __init__(self, address, strict=True):$/;" m class:IPv6Network +__init__ Lib/json/decoder.py /^ def __init__(self, *, object_hook=None, parse_float=None,$/;" m class:JSONDecoder +__init__ Lib/json/decoder.py /^ def __init__(self, msg, doc, pos):$/;" m class:JSONDecodeError +__init__ Lib/json/encoder.py /^ def __init__(self, *, skipkeys=False, ensure_ascii=True,$/;" m class:JSONEncoder +__init__ Lib/lib2to3/btm_matcher.py /^ def __init__(self):$/;" m class:BMNode +__init__ Lib/lib2to3/btm_matcher.py /^ def __init__(self):$/;" m class:BottomMatcher +__init__ Lib/lib2to3/btm_utils.py /^ def __init__(self, type=None, name=None):$/;" m class:MinNode +__init__ Lib/lib2to3/fixer_base.py /^ def __init__(self, options, log):$/;" m class:BaseFix +__init__ Lib/lib2to3/fixes/fix_exitfunc.py /^ def __init__(self, *args):$/;" m class:FixExitfunc +__init__ Lib/lib2to3/main.py /^ def __init__(self, fixers, options, explicit, nobackups, show_diffs,$/;" m class:StdoutRefactoringTool +__init__ Lib/lib2to3/patcomp.py /^ def __init__(self, grammar_file=None):$/;" m class:PatternCompiler +__init__ Lib/lib2to3/pgen2/driver.py /^ def __init__(self, grammar, convert=None, logger=None):$/;" m class:Driver +__init__ Lib/lib2to3/pgen2/grammar.py /^ def __init__(self):$/;" m class:Grammar +__init__ Lib/lib2to3/pgen2/parse.py /^ def __init__(self, grammar, convert=None):$/;" m class:Parser +__init__ Lib/lib2to3/pgen2/parse.py /^ def __init__(self, msg, type, value, context):$/;" m class:ParseError +__init__ Lib/lib2to3/pgen2/pgen.py /^ def __init__(self):$/;" m class:NFAState +__init__ Lib/lib2to3/pgen2/pgen.py /^ def __init__(self, filename, stream=None):$/;" m class:ParserGenerator +__init__ Lib/lib2to3/pgen2/pgen.py /^ def __init__(self, nfaset, final):$/;" m class:DFAState +__init__ Lib/lib2to3/pgen2/tokenize.py /^ def __init__(self):$/;" m class:Untokenizer +__init__ Lib/lib2to3/pygram.py /^ def __init__(self, grammar):$/;" m class:Symbols +__init__ Lib/lib2to3/pytree.py /^ def __init__(self, content=None):$/;" m class:NegatedPattern +__init__ Lib/lib2to3/pytree.py /^ def __init__(self, content=None, min=0, max=HUGE, name=None):$/;" m class:WildcardPattern +__init__ Lib/lib2to3/pytree.py /^ def __init__(self, type, value,$/;" m class:Leaf +__init__ Lib/lib2to3/pytree.py /^ def __init__(self, type=None, content=None, name=None):$/;" m class:LeafPattern +__init__ Lib/lib2to3/pytree.py /^ def __init__(self, type=None, content=None, name=None):$/;" m class:NodePattern +__init__ Lib/lib2to3/pytree.py /^ def __init__(self,type, children,$/;" m class:Node +__init__ Lib/lib2to3/refactor.py /^ def __init__(self, *args, **kwargs):$/;" m class:MultiprocessRefactoringTool +__init__ Lib/lib2to3/refactor.py /^ def __init__(self, fixer_names, options=None, explicit=None):$/;" m class:RefactoringTool +__init__ Lib/logging/__init__.py /^ def __init__(self):$/;" m class:Filterer +__init__ Lib/logging/__init__.py /^ def __init__(self, *args, **kwargs):$/;" m class:StringTemplateStyle +__init__ Lib/logging/__init__.py /^ def __init__(self, alogger):$/;" m class:PlaceHolder +__init__ Lib/logging/__init__.py /^ def __init__(self, filename, mode='a', encoding=None, delay=False, errors=None):$/;" m class:FileHandler +__init__ Lib/logging/__init__.py /^ def __init__(self, fmt, *, defaults=None):$/;" m class:PercentStyle +__init__ Lib/logging/__init__.py /^ def __init__(self, fmt=None, datefmt=None, style='%', validate=True, *,$/;" m class:Formatter +__init__ Lib/logging/__init__.py /^ def __init__(self, level):$/;" m class:RootLogger +__init__ Lib/logging/__init__.py /^ def __init__(self, level=NOTSET):$/;" m class:Handler +__init__ Lib/logging/__init__.py /^ def __init__(self, level=NOTSET):$/;" m class:_StderrHandler +__init__ Lib/logging/__init__.py /^ def __init__(self, linefmt=None):$/;" m class:BufferingFormatter +__init__ Lib/logging/__init__.py /^ def __init__(self, logger, extra=None):$/;" m class:LoggerAdapter +__init__ Lib/logging/__init__.py /^ def __init__(self, name, level, pathname, lineno,$/;" m class:LogRecord +__init__ Lib/logging/__init__.py /^ def __init__(self, name, level=NOTSET):$/;" m class:Logger +__init__ Lib/logging/__init__.py /^ def __init__(self, name=''):$/;" m class:Filter +__init__ Lib/logging/__init__.py /^ def __init__(self, rootnode):$/;" m class:Manager +__init__ Lib/logging/__init__.py /^ def __init__(self, stream=None):$/;" m class:StreamHandler +__init__ Lib/logging/config.py /^ def __init__(self, host='localhost', port=DEFAULT_LOGGING_CONFIG_PORT,$/;" m class:listen.ConfigSocketReceiver +__init__ Lib/logging/config.py /^ def __init__(self, rcvr, hdlr, port, verify):$/;" m class:listen.Server +__init__ Lib/logging/config.py /^ def __init__(self, config):$/;" m class:BaseConfigurator +__init__ Lib/logging/handlers.py /^ def __init__(self, address=('localhost', SYSLOG_UDP_PORT),$/;" m class:SysLogHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, appname, dllname=None, logtype="Application"):$/;" m class:NTEventLogHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, capacity):$/;" m class:BufferingHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, capacity, flushLevel=logging.ERROR, target=None,$/;" m class:MemoryHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, filename, mode, encoding=None, delay=False, errors=None):$/;" m class:BaseRotatingHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, filename, mode='a', encoding=None, delay=False,$/;" m class:WatchedFileHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, filename, mode='a', maxBytes=0, backupCount=0,$/;" m class:RotatingFileHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, filename, when='h', interval=1, backupCount=0,$/;" m class:TimedRotatingFileHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, host, port):$/;" m class:DatagramHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, host, port):$/;" m class:SocketHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, host, url, method="GET", secure=False, credentials=None,$/;" m class:HTTPHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, mailhost, fromaddr, toaddrs, subject,$/;" m class:SMTPHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, queue):$/;" m class:QueueHandler +__init__ Lib/logging/handlers.py /^ def __init__(self, queue, *handlers, respect_handler_level=False):$/;" m class:QueueListener +__init__ Lib/lzma.py /^ def __init__(self, filename=None, mode="r", *,$/;" m class:LZMAFile +__init__ Lib/mailbox.py /^ def __init__(self, dirname, factory=None, create=True):$/;" m class:Maildir +__init__ Lib/mailbox.py /^ def __init__(self, f, pos=None):$/;" m class:_ProxyFile +__init__ Lib/mailbox.py /^ def __init__(self, f, start=None, stop=None):$/;" m class:_PartialFile +__init__ Lib/mailbox.py /^ def __init__(self, message=None):$/;" m class:BabylMessage +__init__ Lib/mailbox.py /^ def __init__(self, message=None):$/;" m class:MHMessage +__init__ Lib/mailbox.py /^ def __init__(self, message=None):$/;" m class:MaildirMessage +__init__ Lib/mailbox.py /^ def __init__(self, message=None):$/;" m class:Message +__init__ Lib/mailbox.py /^ def __init__(self, message=None):$/;" m class:_mboxMMDFMessage +__init__ Lib/mailbox.py /^ def __init__(self, path, factory=None, create=True):$/;" m class:Babyl +__init__ Lib/mailbox.py /^ def __init__(self, path, factory=None, create=True):$/;" m class:MH +__init__ Lib/mailbox.py /^ def __init__(self, path, factory=None, create=True):$/;" m class:MMDF +__init__ Lib/mailbox.py /^ def __init__(self, path, factory=None, create=True):$/;" m class:Mailbox +__init__ Lib/mailbox.py /^ def __init__(self, path, factory=None, create=True):$/;" m class:_singlefileMailbox +__init__ Lib/mailbox.py /^ def __init__(self, path, factory=None, create=True):$/;" m class:mbox +__init__ Lib/mimetypes.py /^ def __init__(self, filenames=(), strict=True):$/;" m class:MimeTypes +__init__ Lib/modulefinder.py /^ def __init__(self, name, file=None, path=None):$/;" m class:Module +__init__ Lib/modulefinder.py /^ def __init__(self, path=None, debug=0, excludes=None, replace_paths=None):$/;" m class:ModuleFinder +__init__ Lib/msilib/__init__.py /^ def __init__(self, db, cab, basedir, physical, _logical, default, componentflags=None):$/;" m class:Directory +__init__ Lib/msilib/__init__.py /^ def __init__(self, db, id, title, desc, display, level = 1,$/;" m class:Feature +__init__ Lib/msilib/__init__.py /^ def __init__(self, db, name, x, y, w, h, attr, title, first, default, cancel):$/;" m class:Dialog +__init__ Lib/msilib/__init__.py /^ def __init__(self, dlg, name):$/;" m class:Control +__init__ Lib/msilib/__init__.py /^ def __init__(self, dlg, name, property):$/;" m class:RadioButtonGroup +__init__ Lib/msilib/__init__.py /^ def __init__(self, fname):$/;" m class:Binary +__init__ Lib/msilib/__init__.py /^ def __init__(self, name):$/;" m class:CAB +__init__ Lib/msilib/__init__.py /^ def __init__(self, name):$/;" m class:Table +__init__ Lib/multiprocessing/connection.py /^ def __init__(self, address, backlog=None):$/;" m class:.PipeListener +__init__ Lib/multiprocessing/connection.py /^ def __init__(self, address, family, backlog=1):$/;" m class:SocketListener +__init__ Lib/multiprocessing/connection.py /^ def __init__(self, address=None, family=None, backlog=1, authkey=None):$/;" m class:Listener +__init__ Lib/multiprocessing/connection.py /^ def __init__(self, conn, dumps, loads):$/;" m class:ConnectionWrapper +__init__ Lib/multiprocessing/connection.py /^ def __init__(self, handle, readable=True, writable=True):$/;" m class:_ConnectionBase +__init__ Lib/multiprocessing/context.py /^ def __init__(self, context):$/;" m class:DefaultContext +__init__ Lib/multiprocessing/dummy/__init__.py /^ def __init__(self, \/, **kwds):$/;" m class:Namespace +__init__ Lib/multiprocessing/dummy/__init__.py /^ def __init__(self, group=None, target=None, name=None, args=(), kwargs={}):$/;" m class:DummyProcess +__init__ Lib/multiprocessing/dummy/__init__.py /^ def __init__(self, typecode, value, lock=True):$/;" m class:Value +__init__ Lib/multiprocessing/dummy/connection.py /^ def __init__(self, _in, _out):$/;" m class:Connection +__init__ Lib/multiprocessing/dummy/connection.py /^ def __init__(self, address=None, family=None, backlog=1):$/;" m class:Listener +__init__ Lib/multiprocessing/forkserver.py /^ def __init__(self):$/;" m class:ForkServer +__init__ Lib/multiprocessing/heap.py /^ def __init__(self, size):$/;" m class:Arena +__init__ Lib/multiprocessing/heap.py /^ def __init__(self, size, fd=-1):$/;" m class:Arena +__init__ Lib/multiprocessing/heap.py /^ def __init__(self, size):$/;" m class:BufferWrapper +__init__ Lib/multiprocessing/heap.py /^ def __init__(self, size=mmap.PAGESIZE):$/;" m class:Heap +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, *args, **kwargs):$/;" m class:SyncManager.SharedMemoryManager +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, *args, **kwargs):$/;" m class:SyncManager.SharedMemoryServer +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, name, segment_names=[]):$/;" m class:SyncManager._SharedMemoryTracker +__init__ Lib/multiprocessing/managers.py /^ def __init__(self):$/;" m class:ProcessLocalSet +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, \/, **kwds):$/;" m class:Namespace +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, address=None, authkey=None, serializer='pickle',$/;" m class:BaseManager +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, registry, address, authkey, serializer):$/;" m class:Server +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, token, serializer, manager=None,$/;" m class:BaseProxy +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, typecode, value, lock=True):$/;" m class:Value +__init__ Lib/multiprocessing/managers.py /^ def __init__(self, typeid, address, id):$/;" m class:Token +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, \/, *args, notifier=None, **kwds):$/;" m class:_PoolCache +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, exc, tb):$/;" m class:ExceptionWithTraceback +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, exc, value):$/;" m class:MaybeEncodingError +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, pool):$/;" m class:IMapIterator +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, pool, callback, error_callback):$/;" m class:ApplyResult +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, pool, chunksize, length, callback, error_callback):$/;" m class:MapResult +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, processes=None, initializer=None, initargs=()):$/;" m class:ThreadPool +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, processes=None, initializer=None, initargs=(),$/;" m class:Pool +__init__ Lib/multiprocessing/pool.py /^ def __init__(self, tb):$/;" m class:RemoteTraceback +__init__ Lib/multiprocessing/popen_fork.py /^ def __init__(self, process_obj):$/;" m class:Popen +__init__ Lib/multiprocessing/popen_forkserver.py /^ def __init__(self, ind):$/;" m class:_DupFd +__init__ Lib/multiprocessing/popen_forkserver.py /^ def __init__(self, process_obj):$/;" m class:Popen +__init__ Lib/multiprocessing/popen_spawn_posix.py /^ def __init__(self, fd):$/;" m class:_DupFd +__init__ Lib/multiprocessing/popen_spawn_posix.py /^ def __init__(self, process_obj):$/;" m class:Popen +__init__ Lib/multiprocessing/popen_spawn_win32.py /^ def __init__(self, process_obj):$/;" m class:Popen +__init__ Lib/multiprocessing/process.py /^ def __init__(self):$/;" m class:_MainProcess +__init__ Lib/multiprocessing/process.py /^ def __init__(self, group=None, target=None, name=None, args=(), kwargs={},$/;" m class:BaseProcess +__init__ Lib/multiprocessing/process.py /^ def __init__(self, name, pid, sentinel):$/;" m class:_ParentProcess +__init__ Lib/multiprocessing/queues.py /^ def __init__(self, *, ctx):$/;" m class:SimpleQueue +__init__ Lib/multiprocessing/queues.py /^ def __init__(self, maxsize=0, *, ctx):$/;" m class:JoinableQueue +__init__ Lib/multiprocessing/queues.py /^ def __init__(self, maxsize=0, *, ctx):$/;" m class:Queue +__init__ Lib/multiprocessing/reduction.py /^ def __init__(self, handle, access, pid=None):$/;" m class:dump.DupHandle +__init__ Lib/multiprocessing/reduction.py /^ def __init__(self, *args):$/;" m class:AbstractReducer +__init__ Lib/multiprocessing/reduction.py /^ def __init__(self, *args):$/;" m class:ForkingPickler +__init__ Lib/multiprocessing/resource_sharer.py /^ def __init__(self, fd):$/;" m class:DupFd +__init__ Lib/multiprocessing/resource_sharer.py /^ def __init__(self, sock):$/;" m class:DupSocket +__init__ Lib/multiprocessing/resource_sharer.py /^ def __init__(self):$/;" m class:_ResourceSharer +__init__ Lib/multiprocessing/resource_tracker.py /^ def __init__(self):$/;" m class:ResourceTracker +__init__ Lib/multiprocessing/shared_memory.py /^ def __init__(self, name=None, create=False, size=0):$/;" m class:SharedMemory +__init__ Lib/multiprocessing/shared_memory.py /^ def __init__(self, sequence=None, *, name=None):$/;" m class:ShareableList +__init__ Lib/multiprocessing/sharedctypes.py /^ def __init__(self, obj, lock=None, ctx=None):$/;" m class:SynchronizedBase +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, *, ctx):$/;" m class:Event +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, *, ctx):$/;" m class:Lock +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, *, ctx):$/;" m class:RLock +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, kind, value, maxvalue, *, ctx):$/;" m class:SemLock +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, lock=None, *, ctx):$/;" m class:Condition +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, parties, action=None, timeout=None, *, ctx):$/;" m class:Barrier +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, value=1, *, ctx):$/;" m class:BoundedSemaphore +__init__ Lib/multiprocessing/synchronize.py /^ def __init__(self, value=1, *, ctx):$/;" m class:Semaphore +__init__ Lib/multiprocessing/util.py /^ def __init__(self):$/;" m class:ForkAwareLocal +__init__ Lib/multiprocessing/util.py /^ def __init__(self):$/;" m class:ForkAwareThreadLock +__init__ Lib/multiprocessing/util.py /^ def __init__(self, obj, callback, args=(), kwargs=None, exitpriority=None):$/;" m class:Finalize +__init__ Lib/netrc.py /^ def __init__(self, file=None):$/;" m class:netrc +__init__ Lib/netrc.py /^ def __init__(self, fp):$/;" m class:_netrclex +__init__ Lib/netrc.py /^ def __init__(self, msg, filename=None, lineno=None):$/;" m class:NetrcParseError +__init__ Lib/nntplib.py /^ def __init__(self, host, port=NNTP_SSL_PORT,$/;" m class:NNTP.NNTP_SSL +__init__ Lib/nntplib.py /^ def __init__(self, *args):$/;" m class:NNTPError +__init__ Lib/nntplib.py /^ def __init__(self, host, port=NNTP_PORT, user=None, password=None,$/;" m class:NNTP +__init__ Lib/operator.py /^ def __init__(self, attr, *attrs):$/;" m class:attrgetter +__init__ Lib/operator.py /^ def __init__(self, item, *items):$/;" m class:itemgetter +__init__ Lib/operator.py /^ def __init__(self, name, \/, *args, **kwargs):$/;" m class:methodcaller +__init__ Lib/optparse.py /^ def __init__(self, *opts, **attrs):$/;" m class:Option +__init__ Lib/optparse.py /^ def __init__(self, defaults=None):$/;" m class:Values +__init__ Lib/optparse.py /^ def __init__(self, msg):$/;" m class:OptParseError +__init__ Lib/optparse.py /^ def __init__(self, msg, option):$/;" m class:OptionError +__init__ Lib/optparse.py /^ def __init__(self, opt_str):$/;" m class:BadOptionError +__init__ Lib/optparse.py /^ def __init__(self, opt_str, possibilities):$/;" m class:AmbiguousOptionError +__init__ Lib/optparse.py /^ def __init__(self, option_class, conflict_handler, description):$/;" m class:OptionContainer +__init__ Lib/optparse.py /^ def __init__(self, parser, title, description=None):$/;" m class:OptionGroup +__init__ Lib/optparse.py /^ def __init__(self,$/;" m class:HelpFormatter +__init__ Lib/optparse.py /^ def __init__(self,$/;" m class:IndentedHelpFormatter +__init__ Lib/optparse.py /^ def __init__(self,$/;" m class:OptionParser +__init__ Lib/optparse.py /^ def __init__(self,$/;" m class:TitledHelpFormatter +__init__ Lib/os.py /^ def __init__(self, path, cookie, remove_dll_directory):$/;" m class:._AddedDllDirectory +__init__ Lib/os.py /^ def __init__(self, stream, proc):$/;" m class:._wrap_close +__init__ Lib/os.py /^ def __init__(self, data, encodekey, decodekey, encodevalue, decodevalue):$/;" m class:_Environ +__init__ Lib/pathlib.py /^ def __init__(self, *args):$/;" m class:PurePath +__init__ Lib/pathlib.py /^ def __init__(self, *args, **kwargs):$/;" m class:Path +__init__ Lib/pathlib.py /^ def __init__(self, child_parts, flavour, case_sensitive):$/;" m class:_Selector +__init__ Lib/pathlib.py /^ def __init__(self, name, child_parts, flavour, case_sensitive):$/;" m class:_ParentSelector +__init__ Lib/pathlib.py /^ def __init__(self, pat, child_parts, flavour, case_sensitive):$/;" m class:_RecursiveWildcardSelector +__init__ Lib/pathlib.py /^ def __init__(self, pat, child_parts, flavour, case_sensitive):$/;" m class:_WildcardSelector +__init__ Lib/pathlib.py /^ def __init__(self, path):$/;" m class:_PathParents +__init__ Lib/pdb.py /^ def __init__(self, completekey='tab', stdin=None, stdout=None, skip=None,$/;" m class:Pdb +__init__ Lib/pickle.py /^ def __init__(self, file, *, fix_imports=True,$/;" m class:_Unpickler +__init__ Lib/pickle.py /^ def __init__(self, file, protocol=None, *, fix_imports=True,$/;" m class:_Pickler +__init__ Lib/pickle.py /^ def __init__(self, file_read, file_readline, file_tell=None):$/;" m class:_Unframer +__init__ Lib/pickle.py /^ def __init__(self, file_write):$/;" m class:_Framer +__init__ Lib/pickle.py /^ def __init__(self, value):$/;" m class:_Stop +__init__ Lib/pickletools.py /^ def __init__(self, name, code, arg,$/;" m class:OpcodeInfo +__init__ Lib/pickletools.py /^ def __init__(self, name, n, reader, doc):$/;" m class:ArgumentDescriptor +__init__ Lib/pickletools.py /^ def __init__(self, name, obtype, doc):$/;" m class:StackObject +__init__ Lib/pickletools.py /^ def __init__(self, value):$/;" m class:_Example +__init__ Lib/pipes.py /^ def __init__(self):$/;" m class:Template +__init__ Lib/plistlib.py /^ def __init__($/;" m class:_PlistWriter +__init__ Lib/plistlib.py /^ def __init__(self, data):$/;" m class:UID +__init__ Lib/plistlib.py /^ def __init__(self, dict_type):$/;" m class:_BinaryPlistParser +__init__ Lib/plistlib.py /^ def __init__(self, dict_type):$/;" m class:_PlistParser +__init__ Lib/plistlib.py /^ def __init__(self, file, indent_level=0, indent="\\t"):$/;" m class:_DumbXMLWriter +__init__ Lib/plistlib.py /^ def __init__(self, fp, sort_keys, skipkeys):$/;" m class:_BinaryPlistWriter +__init__ Lib/plistlib.py /^ def __init__(self, message="Invalid file"):$/;" m class:InvalidFileException +__init__ Lib/poplib.py /^ def __init__(self, host, port=POP3_SSL_PORT,$/;" m class:POP3.POP3_SSL +__init__ Lib/poplib.py /^ def __init__(self, host, port=POP3_PORT,$/;" m class:POP3 +__init__ Lib/pprint.py /^ def __init__(self, indent=1, width=80, depth=None, stream=None, *,$/;" m class:PrettyPrinter +__init__ Lib/pprint.py /^ def __init__(self, obj):$/;" m class:_safe_key +__init__ Lib/profile.py /^ def __init__(self, code, prior):$/;" m class:Profile.fake_frame +__init__ Lib/profile.py /^ def __init__(self, filename, line, name):$/;" m class:Profile.fake_code +__init__ Lib/profile.py /^ def __init__(self, profiler):$/;" m class:_Utils +__init__ Lib/profile.py /^ def __init__(self, timer=None, bias=None):$/;" m class:Profile +__init__ Lib/pstats.py /^ def __init__(self, profile=None):$/;" m class:f8.ProfileBrowser +__init__ Lib/pstats.py /^ def __init__(self, *args, stream=None):$/;" m class:Stats +__init__ Lib/pstats.py /^ def __init__(self, comp_select_list):$/;" m class:TupleComp +__init__ Lib/py_compile.py /^ def __init__(self, exc_type, exc_value, file, msg=''):$/;" m class:PyCompileError +__init__ Lib/pyclbr.py /^ def __init__(self, module, name, file, lineno, end_lineno, parent):$/;" m class:_Object +__init__ Lib/pyclbr.py /^ def __init__(self, module, name, file, lineno,$/;" m class:Function +__init__ Lib/pyclbr.py /^ def __init__(self, module, name, super_, file, lineno,$/;" m class:Class +__init__ Lib/pyclbr.py /^ def __init__(self, module, path, file, tree, inpackage):$/;" m class:_ModuleBrowser +__init__ Lib/pydoc.py /^ def __init__(self):$/;" m class:.docclass.HorizontalRule +__init__ Lib/pydoc.py /^ def __init__(self):$/;" m class:TextDoc.docclass.HorizontalRule +__init__ Lib/pydoc.py /^ def __init__(self, host, port, callback):$/;" m class:_start_server.DocServer +__init__ Lib/pydoc.py /^ def __init__(self, urlhandler, host, port):$/;" m class:_start_server.ServerThread +__init__ Lib/pydoc.py /^ def __init__(self):$/;" m class:HTMLRepr +__init__ Lib/pydoc.py /^ def __init__(self):$/;" m class:TextRepr +__init__ Lib/pydoc.py /^ def __init__(self, filename, exc_info):$/;" m class:ErrorDuringImport +__init__ Lib/pydoc.py /^ def __init__(self, input=None, output=None):$/;" m class:Helper +__init__ Lib/queue.py /^ def __init__(self):$/;" m class:_PySimpleQueue +__init__ Lib/queue.py /^ def __init__(self, maxsize=0):$/;" m class:Queue +__init__ Lib/random.py /^ def __init__(self, x=None):$/;" m class:Random +__init__ Lib/re/__init__.py /^ def __init__(self, lexicon, flags=0):$/;" m class:Scanner +__init__ Lib/re/_constants.py /^ def __init__(self, msg, pattern=None, pos=None):$/;" m class:error +__init__ Lib/re/_parser.py /^ def __init__(self):$/;" m class:State +__init__ Lib/re/_parser.py /^ def __init__(self, state, data=None):$/;" m class:SubPattern +__init__ Lib/re/_parser.py /^ def __init__(self, string):$/;" m class:Tokenizer +__init__ Lib/reprlib.py /^ def __init__($/;" m class:Repr +__init__ Lib/rlcompleter.py /^ def __init__(self, namespace = None):$/;" m class:Completer +__init__ Lib/runpy.py /^ def __init__(self, mod_name):$/;" m class:_TempModule +__init__ Lib/runpy.py /^ def __init__(self, value):$/;" m class:_ModifiedArgv0 +__init__ Lib/sched.py /^ def __init__(self, timefunc=_time, delayfunc=time.sleep):$/;" m class:scheduler +__init__ Lib/selectors.py /^ def __init__(self):$/;" m class:_PollLikeSelector.KqueueSelector +__init__ Lib/selectors.py /^ def __init__(self):$/;" m class:SelectSelector +__init__ Lib/selectors.py /^ def __init__(self):$/;" m class:_BaseSelectorImpl +__init__ Lib/selectors.py /^ def __init__(self):$/;" m class:_PollLikeSelector +__init__ Lib/selectors.py /^ def __init__(self, selector):$/;" m class:_SelectorMapping +__init__ Lib/shelve.py /^ def __init__(self, dict, protocol=None, writeback=False,$/;" m class:BsdDbShelf +__init__ Lib/shelve.py /^ def __init__(self, dict, protocol=None, writeback=False,$/;" m class:Shelf +__init__ Lib/shelve.py /^ def __init__(self, filename, flag='c', protocol=None, writeback=False):$/;" m class:DbfilenameShelf +__init__ Lib/shlex.py /^ def __init__(self, instream=None, infile=None, posix=False,$/;" m class:shlex +__init__ Lib/smtplib.py /^ def __init__(self, host='', port=0, local_hostname=None,$/;" m class:SMTP.SMTP_SSL +__init__ Lib/smtplib.py /^ def __init__(self, code, msg):$/;" m class:SMTPResponseException +__init__ Lib/smtplib.py /^ def __init__(self, code, msg, sender):$/;" m class:SMTPSenderRefused +__init__ Lib/smtplib.py /^ def __init__(self, host='', port=0, local_hostname=None,$/;" m class:SMTP +__init__ Lib/smtplib.py /^ def __init__(self, host='', port=LMTP_PORT, local_hostname=None,$/;" m class:LMTP +__init__ Lib/smtplib.py /^ def __init__(self, recipients):$/;" m class:SMTPRecipientsRefused +__init__ Lib/socket.py /^ def __init__(self, family=-1, type=-1, proto=-1, fileno=None):$/;" m class:socket +__init__ Lib/socket.py /^ def __init__(self, sock, mode):$/;" m class:SocketIO +__init__ Lib/socketserver.py /^ def __init__(self, request, client_address, server):$/;" m class:BaseRequestHandler +__init__ Lib/socketserver.py /^ def __init__(self, server_address, RequestHandlerClass):$/;" m class:BaseServer +__init__ Lib/socketserver.py /^ def __init__(self, server_address, RequestHandlerClass, bind_and_activate=True):$/;" m class:TCPServer +__init__ Lib/socketserver.py /^ def __init__(self, sock):$/;" m class:_SocketWriter +__init__ Lib/sqlite3/__main__.py /^ def __init__(self, connection):$/;" m class:SqliteInteractiveConsole +__init__ Lib/ssl.py /^ def __init__(self, *args, **kwargs):$/;" m class:SSLObject +__init__ Lib/ssl.py /^ def __init__(self, *args, **kwargs):$/;" m class:SSLSocket +__init__ Lib/statistics.py /^ def __init__(self, mu=0.0, sigma=1.0):$/;" m class:NormalDist +__init__ Lib/string.py /^ def __init__(self, template):$/;" m class:Template +__init__ Lib/subprocess.py /^ def __init__(self, *, dwFlags=0, hStdInput=None, hStdOutput=None,$/;" m class:.STARTUPINFO +__init__ Lib/subprocess.py /^ def __init__(self, args, bufsize=-1, executable=None,$/;" m class:Popen +__init__ Lib/subprocess.py /^ def __init__(self, args, returncode, stdout=None, stderr=None):$/;" m class:CompletedProcess +__init__ Lib/subprocess.py /^ def __init__(self, cmd, timeout, output=None, stderr=None):$/;" m class:TimeoutExpired +__init__ Lib/subprocess.py /^ def __init__(self, returncode, cmd, output=None, stderr=None):$/;" m class:CalledProcessError +__init__ Lib/sunau.py /^ def __init__(self, f):$/;" m class:Au_read +__init__ Lib/sunau.py /^ def __init__(self, f):$/;" m class:Au_write +__init__ Lib/symtable.py /^ def __init__(self):$/;" m class:SymbolTableFactory +__init__ Lib/symtable.py /^ def __init__(self, name, flags, namespaces=None, *, module_scope=False):$/;" m class:Symbol +__init__ Lib/symtable.py /^ def __init__(self, raw_table, filename):$/;" m class:SymbolTable +__init__ Lib/tabnanny.py /^ def __init__(self, lineno, msg, line):$/;" m class:NannyNag +__init__ Lib/tabnanny.py /^ def __init__(self, ws):$/;" m class:Whitespace +__init__ Lib/tarfile.py /^ def __init__(self, fileobj):$/;" m class:_StreamProxy +__init__ Lib/tarfile.py /^ def __init__(self, fileobj, offset, size, name, blockinfo=None):$/;" m class:_FileInFile +__init__ Lib/tarfile.py /^ def __init__(self, name, mode):$/;" m class:_LowLevelFile +__init__ Lib/tarfile.py /^ def __init__(self, name, mode, comptype, fileobj, bufsize,$/;" m class:_Stream +__init__ Lib/tarfile.py /^ def __init__(self, name=""):$/;" m class:TarInfo +__init__ Lib/tarfile.py /^ def __init__(self, name=None, mode="r", fileobj=None, format=None,$/;" m class:TarFile +__init__ Lib/tarfile.py /^ def __init__(self, tarfile, tarinfo):$/;" m class:ExFileObject +__init__ Lib/tarfile.py /^ def __init__(self, tarinfo):$/;" m class:AbsoluteLinkError +__init__ Lib/tarfile.py /^ def __init__(self, tarinfo):$/;" m class:AbsolutePathError +__init__ Lib/tarfile.py /^ def __init__(self, tarinfo):$/;" m class:SpecialFileError +__init__ Lib/tarfile.py /^ def __init__(self, tarinfo, path):$/;" m class:LinkOutsideDestinationError +__init__ Lib/tarfile.py /^ def __init__(self, tarinfo, path):$/;" m class:OutsideDestinationError +__init__ Lib/telnetlib.py /^ def __init__(self, host=None, port=0,$/;" m class:Telnet +__init__ Lib/tempfile.py /^ def __init__(self, file, name, delete=True, delete_on_close=True):$/;" m class:_TemporaryFileCloser +__init__ Lib/tempfile.py /^ def __init__(self, file, name, delete=True, delete_on_close=True):$/;" m class:_TemporaryFileWrapper +__init__ Lib/tempfile.py /^ def __init__(self, max_size=0, mode='w+b', buffering=-1,$/;" m class:SpooledTemporaryFile +__init__ Lib/tempfile.py /^ def __init__(self, suffix=None, prefix=None, dir=None,$/;" m class:TemporaryDirectory +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self):$/;" m class:OtherTest.test_answer_challenge_auth_failure._FakeConnection +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self):$/;" m class:_TestFinalize.test_thread_safety.Foo +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self):$/;" m class:_TestQueue.test_queue_feeder_on_queue_feeder_error.NotSerializable +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self, **kwargs):$/;" m class:TestPoolNotLeakOnFailure.test_release_unused_processes.FailingForkProcess +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self):$/;" m class:_DummyList +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self):$/;" m class:_UpperCaser +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self, delegate):$/;" m class:_file_like +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self, func):$/;" m class:TimingWrapper +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self, namespace, f, args, n, wait_before_exit=False):$/;" m class:Bunch +__init__ Lib/test/_test_multiprocessing.py /^ def __init__(self, obj):$/;" m class:AppendTrue +__init__ Lib/test/ann_module.py /^ def __init__(self):$/;" m class:Y +__init__ Lib/test/ann_module.py /^ def __init__(self, x):$/;" m class:F +__init__ Lib/test/ann_module2.py /^ def __init__(self, x: int) -> None:$/;" m class:C +__init__ Lib/test/ann_module3.py /^ def __init__(self, x: int) -> None:$/;" m class:C_OK +__init__ Lib/test/ann_module3.py /^ def __init__(self, x: int) -> None:$/;" m class:D_bad_ann +__init__ Lib/test/audit-tests.py /^ def __init__(self, raise_on_events=None, exc_type=RuntimeError):$/;" m class:TestHook +__init__ Lib/test/datetimetester.py /^ def __init__(self): pass$/;" m class:TZInfoBase.test_bad_tzinfo_classes.BetterTry +__init__ Lib/test/datetimetester.py /^ def __init__(self): pass$/;" m class:TZInfoBase.test_bad_tzinfo_classes.NiceTry +__init__ Lib/test/datetimetester.py /^ def __init__(self):$/;" m class:TestDateTimeTZ.test_mixed_compare.Varies +__init__ Lib/test/datetimetester.py /^ def __init__(self):$/;" m class:TestTimeTZ.test_mixed_compare.Varies +__init__ Lib/test/datetimetester.py /^ def __init__(self, dstvalue):$/;" m class:TestDateTimeTZ.test_tzinfo_timetuple.DST +__init__ Lib/test/datetimetester.py /^ def __init__(self, dstvalue=0):$/;" m class:TestDateTimeTZ.test_utctimetuple.DST +__init__ Lib/test/datetimetester.py /^ def __init__(self, offset):$/;" m class:TZInfoBase.test_utc_offset_out_of_bounds.Edgy +__init__ Lib/test/datetimetester.py /^ def __init__(self, offset, name):$/;" m class:TestTZInfo.test_subclass_must_override.NotEnough +__init__ Lib/test/datetimetester.py /^ def __init__(self, uofs, dofs=None):$/;" m class:TestDateTimeTZ.test_utctimetuple.UOFS +__init__ Lib/test/datetimetester.py /^ def __init__(self, value):$/;" m class:Oddballs.test_check_arg_types.Number +__init__ Lib/test/datetimetester.py /^ def __init__(self):$/;" m class:ZoneInfoCompleteTest +__init__ Lib/test/datetimetester.py /^ def __init__(self, hours, reprname, stdname, dstname):$/;" m class:USTimeZone +__init__ Lib/test/datetimetester.py /^ def __init__(self, hours, reprname, stdname, dstname):$/;" m class:USTimeZone2 +__init__ Lib/test/datetimetester.py /^ def __init__(self, offset, name, dstoffset=42):$/;" m class:FixedOffset +__init__ Lib/test/datetimetester.py /^ def __init__(self, offset=None, name=None, dstoffset=None):$/;" m class:PicklableFixedOffset +__init__ Lib/test/datetimetester.py /^ def __init__(self, ut, ti):$/;" m class:ZoneInfo +__init__ Lib/test/inspect_stock_annotations.py /^ def __init__(self, a, b):$/;" m class:MyClass +__init__ Lib/test/inspect_stringized_annotations.py /^ def __init__(self, a, b):$/;" m class:MyClass +__init__ Lib/test/libregrtest/cmdline.py /^ def __init__(self, **kwargs) -> None:$/;" m class:Namespace +__init__ Lib/test/libregrtest/main.py /^ def __init__(self):$/;" m class:Regrtest +__init__ Lib/test/libregrtest/runtest_mp.py /^ def __init__(self, regrtest: Regrtest, runtests: RunTests) -> None:$/;" m class:MultiprocessTestRunner +__init__ Lib/test/libregrtest/runtest_mp.py /^ def __init__(self, tests_iter):$/;" m class:MultiprocessIterator +__init__ Lib/test/libregrtest/runtest_mp.py /^ def __init__(self, worker_id: int, runner: "MultiprocessTestRunner") -> None:$/;" m class:TestWorkerProcess +__init__ Lib/test/libregrtest/save_env.py /^ def __init__(self, test_name, verbose=0, quiet=False, *, pgo=False):$/;" m class:saved_test_environment +__init__ Lib/test/libregrtest/win_utils.py /^ def __init__(self):$/;" m class:WindowsLoadTracker +__init__ Lib/test/list_tests.py /^ def __init__(self, victim):$/;" m class:CommonTest.test_index.EvilCmp +__init__ Lib/test/lock_tests.py /^ def __init__(self, f, n, wait_before_exit=False):$/;" m class:Bunch +__init__ Lib/test/mapping_tests.py /^ def __init__(self):$/;" m class:BasicTestMappingProtocol.test_update.FailingUserDict.keys.BogonIter +__init__ Lib/test/mapping_tests.py /^ def __init__(self):$/;" m class:BasicTestMappingProtocol.test_update.SimpleUserDict +__init__ Lib/test/mapping_tests.py /^ def __init__(self):$/;" m class:TestMappingProtocol.test_update.SimpleUserDict +__init__ Lib/test/mapping_tests.py /^ def __init__(self, *args, **kwargs):$/;" m class:TestMappingProtocol.test_fromkeys.baddict1 +__init__ Lib/test/mapping_tests.py /^ def __init__(self, *args, **kw):$/;" m class:BasicTestMappingProtocol +__init__ Lib/test/mock_socket.py /^ def __init__(self, family=None):$/;" m class:MockSocket +__init__ Lib/test/mock_socket.py /^ def __init__(self, lines):$/;" m class:MockFile +__init__ Lib/test/pickletester.py /^ def __init__(self): pass$/;" m class:AbstractPickleModuleTests.test_bad_init.BadPickler +__init__ Lib/test/pickletester.py /^ def __init__(self): pass$/;" m class:AbstractPickleModuleTests.test_bad_init.BadUnpickler +__init__ Lib/test/pickletester.py /^ def __init__(self):$/;" m class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +__init__ Lib/test/pickletester.py /^ def __init__(self, *args, **kwargs):$/;" m class:ZeroCopyBytearray.PicklableNDArray +__init__ Lib/test/pickletester.py /^ def __init__(self):$/;" m class:BBB +__init__ Lib/test/pickletester.py /^ def __init__(self, *args):$/;" m class:MinimalIO +__init__ Lib/test/pickletester.py /^ def __init__(self, *args, **kwargs):$/;" m class:SimpleNewObj +__init__ Lib/test/pickletester.py /^ def __init__(self, a, b):$/;" m class:initarg +__init__ Lib/test/pickletester.py /^ def __init__(self, arg):$/;" m class:D +__init__ Lib/test/pickletester.py /^ def __init__(self, code):$/;" m class:ExtensionSaver +__init__ Lib/test/pickletester.py /^ def __init__(self, items=None):$/;" m class:REX_six +__init__ Lib/test/pickletester.py /^ def __init__(self, state=None):$/;" m class:REX_state +__init__ Lib/test/pickletester.py /^ def __init__(self, table=None):$/;" m class:REX_seven +__init__ Lib/test/pickletester.py /^ def __init__(self, value):$/;" m class:K +__init__ Lib/test/pickletester.py /^ def __init__(self, x):$/;" m class:myint +__init__ Lib/test/pydoc_mod.py /^ def __init__():$/;" m class:A +__init__ Lib/test/pydocfodder.py /^ def __init__(self, attr):$/;" m class:FunkyProperties.del_desc +__init__ Lib/test/pydocfodder.py /^ def __init__(self, attr):$/;" m class:FunkyProperties.get_desc +__init__ Lib/test/pydocfodder.py /^ def __init__(self, attr):$/;" m class:FunkyProperties.set_desc +__init__ Lib/test/pydocfodder.py /^ def __init__(self):$/;" m class:FunkyProperties +__init__ Lib/test/pythoninfo.py /^ def __init__(self):$/;" m class:PythonInfo +__init__ Lib/test/sample_doctest_no_docstrings.py /^ def __init__(self):$/;" m class:Foo +__init__ Lib/test/sample_doctest_no_doctests.py /^ def __init__(self):$/;" m class:Foo +__init__ Lib/test/seq_tests.py /^ def __init__(self, initseq):$/;" m class:CommonTest.test_constructors.OtherSeq +__init__ Lib/test/seq_tests.py /^ def __init__(self, seqn):$/;" m class:IterFunc +__init__ Lib/test/seq_tests.py /^ def __init__(self, seqn):$/;" m class:IterFuncStop +__init__ Lib/test/seq_tests.py /^ def __init__(self, seqn):$/;" m class:IterGen +__init__ Lib/test/seq_tests.py /^ def __init__(self, seqn):$/;" m class:IterGenExc +__init__ Lib/test/seq_tests.py /^ def __init__(self, seqn):$/;" m class:IterNextOnly +__init__ Lib/test/seq_tests.py /^ def __init__(self, seqn):$/;" m class:IterNoNext +__init__ Lib/test/seq_tests.py /^ def __init__(self, seqn):$/;" m class:Sequence +__init__ Lib/test/smtpd.py /^ def __init__(self, *args, **kwargs):$/;" m class:PureProxy +__init__ Lib/test/smtpd.py /^ def __init__(self, localaddr, remoteaddr,$/;" m class:SMTPServer +__init__ Lib/test/smtpd.py /^ def __init__(self, server, conn, addr, data_size_limit=DATA_SIZE_DEFAULT,$/;" m class:SMTPChannel +__init__ Lib/test/ssl_servers.py /^ def __init__(self, context, host=HOST, handler_class=None):$/;" m class:HTTPSServerThread +__init__ Lib/test/ssl_servers.py /^ def __init__(self, server_address, handler_class, context):$/;" m class:HTTPSServer +__init__ Lib/test/string_tests.py /^ def __init__(self): self.seq = ['a', 'b', 'c']$/;" m class:BadSeq2 +__init__ Lib/test/string_tests.py /^ def __init__(self): self.seq = [7, 'hello', 123]$/;" m class:BadSeq1 +__init__ Lib/test/string_tests.py /^ def __init__(self, seq='wxyz'): self.seq = seq$/;" m class:Sequence +__init__ Lib/test/support/__init__.py /^ def __init__(self):$/;" m class:SaveSignals +__init__ Lib/test/support/__init__.py /^ def __init__(self):$/;" m class:_MemoryWatchdog +__init__ Lib/test/support/__init__.py /^ def __init__(self):$/;" m class:catch_unraisable_exception +__init__ Lib/test/support/__init__.py /^ def __init__(self, link=None):$/;" m class:PythonSymlink +__init__ Lib/test/support/__init__.py /^ def __init__(self, msg, *args, stats=None):$/;" m class:TestFailed +__init__ Lib/test/support/__init__.py /^ def __init__(self, msg, errors, failures, stats):$/;" m class:TestFailedWithDetails +__init__ Lib/test/support/_hypothesis_stubs/_helpers.py /^ def __init__(self, *args, **kwargs):$/;" m class:stub_factory.Stub +__init__ Lib/test/support/_hypothesis_stubs/_helpers.py /^ def __init__(self, *args, **kwargs):$/;" m class:StubClass +__init__ Lib/test/support/asynchat.py /^ def __init__(self, data, buffer_size=512):$/;" m class:simple_producer +__init__ Lib/test/support/asynchat.py /^ def __init__(self, sock=None, map=None):$/;" m class:async_chat +__init__ Lib/test/support/asyncore.py /^ def __init__(self, fd):$/;" m class:.file_wrapper +__init__ Lib/test/support/asyncore.py /^ def __init__(self, fd, map=None):$/;" m class:.file_dispatcher +__init__ Lib/test/support/asyncore.py /^ def __init__(self, sock=None, map=None):$/;" m class:dispatcher +__init__ Lib/test/support/asyncore.py /^ def __init__(self, sock=None, map=None):$/;" m class:dispatcher_with_send +__init__ Lib/test/support/import_helper.py /^ def __init__(self, *module_names, usefrozen=False):$/;" m class:CleanImport +__init__ Lib/test/support/import_helper.py /^ def __init__(self, *paths):$/;" m class:DirsOnSysPath +__init__ Lib/test/support/interpreters.py /^ def __init__(self, id):$/;" m class:_ChannelEnd +__init__ Lib/test/support/interpreters.py /^ def __init__(self, id, *, isolated=None):$/;" m class:Interpreter +__init__ Lib/test/support/logging_helper.py /^ def __init__(self, matcher):$/;" m class:TestHandler +__init__ Lib/test/support/os_helper.py /^ def __init__(self):$/;" m class:EnvironmentVarGuard +__init__ Lib/test/support/os_helper.py /^ def __init__(self, path):$/;" m class:FakePath +__init__ Lib/test/support/testresult.py /^ def __init__(self, stream, buffer=False):$/;" m class:QuietRegressionTestRunner +__init__ Lib/test/support/testresult.py /^ def __init__(self, stream, descriptions, verbosity):$/;" m class:RegressionTestResult +__init__ Lib/test/support/threading_helper.py /^ def __init__(self):$/;" m class:catch_threading_exception +__init__ Lib/test/support/warnings_helper.py /^ def __init__(self, warnings_list):$/;" m class:WarningsRecorder +__init__ Lib/test/test__xxinterpchannels.py /^ def __init__(self, *args, **kwargs):$/;" m class:ChannelAction +__init__ Lib/test/test__xxsubinterpreters.py /^ def __init__(self, name):$/;" m class:IsShareableTests.test_not_shareable.Cheese +__init__ Lib/test/test_abc.py /^ def __init__(self, fget, fset=None):$/;" m class:test_factory.TestABC.test_customdescriptors_with_abstractmethod.Descriptor +__init__ Lib/test/test_argparse.py /^ def __init__(self, test_class, func_suffix, std_name):$/;" m class:TestHelpFormattingMetaclass.__init__.AddTests +__init__ Lib/test/test_argparse.py /^ def __init__(self, tester_cls, add_arguments, parse_args):$/;" m class:ParserTesterMetaclass.__init__.AddTests +__init__ Lib/test/test_argparse.py /^ def __init__(self,$/;" m class:TestInvalidArgumentConstructors.test_user_defined_action.Action +__init__ Lib/test/test_argparse.py /^ def __init__(self, value):$/;" m class:TestTypeClassicClass.C +__init__ Lib/test/test_argparse.py /^ def __init__(self, value):$/;" m class:TestTypeUserDefined.MyType +__init__ Lib/test/test_argparse.py /^ def __init__(cls, name, bases, bodydict):$/;" m class:ParserTesterMetaclass +__init__ Lib/test/test_argparse.py /^ def __init__(cls, name, bases, bodydict):$/;" m class:TestHelpFormattingMetaclass +__init__ Lib/test/test_argparse.py /^ def __init__(self, **kwargs):$/;" m class:NS +__init__ Lib/test/test_argparse.py /^ def __init__(self, *args, **kwargs):$/;" m class:Sig +__init__ Lib/test/test_argparse.py /^ def __init__(self, attr):$/;" m class:StdStreamComparer +__init__ Lib/test/test_argparse.py /^ def __init__(self, initial_value='', newline='\\n'):$/;" m class:StdIOBuffer +__init__ Lib/test/test_argparse.py /^ def __init__(self, message, stdout=None, stderr=None, error_code=None):$/;" m class:ArgumentParserError +__init__ Lib/test/test_argparse.py /^ def __init__(self, name):$/;" m class:RFile +__init__ Lib/test/test_argparse.py /^ def __init__(self, name):$/;" m class:WFile +__init__ Lib/test/test_array.py /^ def __init__(self, typecode, data, offset):$/;" m class:NumberTest.test_subclassing.ExaggeratingArray +__init__ Lib/test/test_array.py /^ def __init__(self, num):$/;" m class:Intable +__init__ Lib/test/test_array.py /^ def __init__(self, typecode, newarg=None):$/;" m class:ArraySubclassWithKwargs +__init__ Lib/test/test_asdl_parser.py /^ def __init__(self):$/;" m class:TestAsdlParser.test_visitor.CustomVisitor +__init__ Lib/test/test_ast.py /^ def __init__(self, *args, **kwargs):$/;" m class:AST_Tests.test_constant_subclasses_deprecated.N +__init__ Lib/test/test_ast.py /^ def __init__(self, *args, **kwargs):$/;" m class:AST_Tests.test_constant_subclasses.N +__init__ Lib/test/test_asyncgen.py /^ def __init__(self):$/;" m class:AsyncGenAsyncioTest.test_python_async_iterator_anext.MyAsyncIter +__init__ Lib/test/test_asyncgen.py /^ def __init__(self):$/;" m class:AsyncGenAsyncioTest.test_python_async_iterator_types_coroutine_anext.MyAsyncIterWithTypesCoro +__init__ Lib/test/test_asyncio/functional.py /^ def __init__(self, sock):$/;" m class:TestSocketWrapper +__init__ Lib/test/test_asyncio/functional.py /^ def __init__(self, test, sock, prog, timeout):$/;" m class:TestThreadedClient +__init__ Lib/test/test_asyncio/functional.py /^ def __init__(self, test, sock, prog, timeout, max_clients):$/;" m class:TestThreadedServer +__init__ Lib/test/test_asyncio/test_base_events.py /^ def __init__(self, loop):$/;" m class:BaseLoopSockSendfileTests.MyProto +__init__ Lib/test/test_asyncio/test_base_events.py /^ def __init__(self, create_future=False):$/;" m class:MyProto +__init__ Lib/test/test_asyncio/test_base_events.py /^ def __init__(self, create_future=False, loop=None):$/;" m class:MyDatagramProto +__init__ Lib/test/test_asyncio/test_buffered_proto.py /^ def __init__(self, cb, con_lost_fut):$/;" m class:ReceiveStuffProto +__init__ Lib/test/test_asyncio/test_eager_task_factory.py /^ def __init__(self, loop, *, task_class, eager):$/;" m class:AsyncTaskCounter +__init__ Lib/test/test_asyncio/test_events.py /^ def __init__(inner_self):$/;" m class:EventLoopTestsMixin._test_create_datagram_endpoint.TestMyDatagramProto +__init__ Lib/test/test_asyncio/test_events.py /^ def __init__(self, loop):$/;" m class:MySubprocessProtocol +__init__ Lib/test/test_asyncio/test_events.py /^ def __init__(self, loop=None):$/;" m class:MyBaseProto +__init__ Lib/test/test_asyncio/test_events.py /^ def __init__(self, loop=None):$/;" m class:MyDatagramProto +__init__ Lib/test/test_asyncio/test_events.py /^ def __init__(self, loop=None):$/;" m class:MyReadPipeProto +__init__ Lib/test/test_asyncio/test_events.py /^ def __init__(self, loop=None):$/;" m class:MyWritePipeProto +__init__ Lib/test/test_asyncio/test_futures.py /^ def __init__(self):$/;" m class:BaseFutureTests.test_isfuture.MyFuture +__init__ Lib/test/test_asyncio/test_futures.py /^ def __init__(self, *args, **kwargs):$/;" m class:BaseFutureInheritanceTests.test_inherit_without_calling_super_init.MyFut +__init__ Lib/test/test_asyncio/test_proactor_events.py /^ def __init__(self, loop):$/;" m class:ProactorEventLoopUnixSockSendfileTests.MyProto +__init__ Lib/test/test_asyncio/test_runners.py /^ def __init__(self, loop, coro, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +__init__ Lib/test/test_asyncio/test_runners.py /^ def __init__(self, loop_factory):$/;" m class:TestPolicy +__init__ Lib/test/test_asyncio/test_sendfile.py /^ def __init__(self, loop):$/;" m class:MyProto +__init__ Lib/test/test_asyncio/test_sendfile.py /^ def __init__(self, loop=None, close_after=0):$/;" m class:MySendfileProto +__init__ Lib/test/test_asyncio/test_sock_lowlevel.py /^ def __init__(self, loop=None):$/;" m class:MyProto +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self):$/;" m class:TestSSL.test_shutdown_timeout_handler_leak.Protocol +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self):$/;" m class:TestSSL.test_shutdown_timeout_handler_not_set.Protocol +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, on_con, on_eof, on_con_lost):$/;" m class:TestSSL.test_start_tls_server_1.ServerProto +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, on_data):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoFirst +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, on_data, on_eof):$/;" m class:TestSSL.test_create_connection_memory_leak.ClientProto +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, on_data, on_eof):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoSecond +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, on_data, on_eof):$/;" m class:TestSSL.test_start_tls_client_reg_proto_1.ClientProto +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, on_data, on_eof):$/;" m class:TestSSL.test_start_tls_slow_client_cancel.ClientProto +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, loop=None):$/;" m class:MyBaseProto +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, msg):$/;" m class:MessageOutFilter +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, sock):$/;" m class:TestSocketWrapper +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, test, sock, prog, timeout):$/;" m class:TestThreadedClient +__init__ Lib/test/test_asyncio/test_ssl.py /^ def __init__(self, test, sock, prog, timeout, max_clients):$/;" m class:TestThreadedServer +__init__ Lib/test/test_asyncio/test_sslproto.py /^ def __init__(self, bufsize, usemv):$/;" m class:BaseStartTLS.test_buf_feed_data.Proto +__init__ Lib/test/test_asyncio/test_sslproto.py /^ def __init__(self, on_con, on_con_lost, on_got_hello):$/;" m class:BaseStartTLS.test_start_tls_server_1.ServerProto +__init__ Lib/test/test_asyncio/test_sslproto.py /^ def __init__(self, on_data):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoFirst +__init__ Lib/test/test_asyncio/test_sslproto.py /^ def __init__(self, on_data, on_eof):$/;" m class:BaseStartTLS.test_create_connection_memory_leak.ClientProto +__init__ Lib/test/test_asyncio/test_sslproto.py /^ def __init__(self, on_data, on_eof):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond +__init__ Lib/test/test_asyncio/test_sslproto.py /^ def __init__(self, on_data, on_eof):$/;" m class:BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto +__init__ Lib/test/test_asyncio/test_sslproto.py /^ def __init__(self, on_data, on_eof):$/;" m class:BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto +__init__ Lib/test/test_asyncio/test_streams.py /^ def __init__(self, loop):$/;" m class:StreamTests.test_start_server.MyServer +__init__ Lib/test/test_asyncio/test_streams.py /^ def __init__(self, loop):$/;" m class:StreamTests.test_start_tls.MyServer +__init__ Lib/test/test_asyncio/test_streams.py /^ def __init__(self, loop, path):$/;" m class:StreamTests.test_start_unix_server.MyServer +__init__ Lib/test/test_asyncio/test_subprocess.py /^ def __init__(self, exit_future: asyncio.Future) -> None:$/;" m class:SubprocessMixin.test_subprocess_consistent_callbacks.MyProtocol +__init__ Lib/test/test_asyncio/test_tasks.py /^ def __init__(self, *args, **kwds):$/;" m class:BaseTaskTests.test_step_result_future.Fut +__init__ Lib/test/test_asyncio/test_tasks.py /^ def __init__(self, coro):$/;" m class:BaseTaskTests.test_ensure_future_awaitable.Aw +__init__ Lib/test/test_asyncio/test_tasks.py /^ def __init__(self, *args, **kwargs):$/;" m class:add_subclass_tests.CommonFuture +__init__ Lib/test/test_asyncio/test_unix_events.py /^ def __init__(self, loop):$/;" m class:SelectorEventLoopUnixSockSendfileTests.MyProto +__init__ Lib/test/test_asyncio/test_waitfor.py /^ def __init__(self):$/;" m class:SlowTask +__init__ Lib/test/test_asyncio/test_windows_events.py /^ def __init__(self):$/;" m class:UpperProto +__init__ Lib/test/test_asyncio/utils.py /^ def __init__(self):$/;" m class:TestSelector +__init__ Lib/test/test_asyncio/utils.py /^ def __init__(self, gen=None):$/;" m class:TestLoop +__init__ Lib/test/test_asyncio/utils.py /^ def __init__(self, type):$/;" m class:MockInstanceOf +__init__ Lib/test/test_augassign.py /^ def __init__(self, value):$/;" m class:AugAssignTest.testCustomMethods1.aug_test +__init__ Lib/test/test_bdb.py /^ def __init__(self, expect_set, skip=None, dry_run=False, test_case=None):$/;" m class:Tracer +__init__ Lib/test/test_bdb.py /^ def __init__(self, test_case, skip=None):$/;" m class:TracerRun +__init__ Lib/test/test_binop.py /^ def __init__(self, logger):$/;" m class:OperationLogger +__init__ Lib/test/test_binop.py /^ def __init__(self, num=0, den=1):$/;" m class:Rat +__init__ Lib/test/test_bisect.py /^ def __init__(self, val):$/;" m class:TestBisect.test_lt_returns_non_bool.A +__init__ Lib/test/test_bisect.py /^ def __init__(self, val):$/;" m class:TestBisect.test_lt_returns_notimplemented.A +__init__ Lib/test/test_bisect.py /^ def __init__(self, start, stop):$/;" m class:Range +__init__ Lib/test/test_bool.py /^ def __init__(self):$/;" m class:BoolTest.test_bool_called_at_least_once.X +__init__ Lib/test/test_buffer.py /^ def __init__(self):$/;" m class:TestPythonBufferProtocol.test_release_buffer.WhatToRelease +__init__ Lib/test/test_buffer.py /^ def __init__(self):$/;" m class:TestPythonBufferProtocol.test_same_buffer_returned.WhatToRelease +__init__ Lib/test/test_buffer.py /^ def __init__(self, data, mutable) -> None:$/;" m class:TestPythonBufferProtocol.test_buffer_flags.PossiblyMutable +__init__ Lib/test/test_buffer.py /^ def __init__(self, val):$/;" m class:TestBufferProtocol.test_memoryview_struct_module.IDX +__init__ Lib/test/test_buffer.py /^ def __init__(self, val):$/;" m class:TestBufferProtocol.test_memoryview_struct_module.INT +__init__ Lib/test/test_builtin.py /^ def __init__(self, x):$/;" m class:BuiltinTest.test_format.classes_new.A +__init__ Lib/test/test_builtin.py /^ def __init__(self, x):$/;" m class:BuiltinTest.test_format.classes_new.DerivedFromSimple +__init__ Lib/test/test_builtin.py /^ def __init__(self):$/;" m class:BuiltinTest.test_dir.Foo +__init__ Lib/test/test_builtin.py /^ def __init__(self, size):$/;" m class:BuiltinTest.test_zip_strict_error_handling.Iter +__init__ Lib/test/test_builtin.py /^ def __init__(self, size):$/;" m class:BuiltinTest.test_zip_strict_error_handling_stopiteration.Iter +__init__ Lib/test/test_builtin.py /^ def __init__(self, max):$/;" m class:Squares +__init__ Lib/test/test_builtin.py /^ def __init__(self, max):$/;" m class:StrSquares +__init__ Lib/test/test_bytes.py /^ def __init__(self, value=0):$/;" m class:Indexable +__init__ Lib/test/test_call.py /^ def __init__(self, **kwargs):$/;" m class:FastCallTests.test_fastcall_clearing_dict.IntWithDict +__init__ Lib/test/test_capi/test_abstract.py /^ def __init__(self, obj):$/;" m class:ProxyDelItem +__init__ Lib/test/test_capi/test_abstract.py /^ def __init__(self, obj):$/;" m class:ProxyGetItem +__init__ Lib/test/test_capi/test_abstract.py /^ def __init__(self, obj):$/;" m class:ProxySetItem +__init__ Lib/test/test_capi/test_exceptions.py /^ def __init__(self, *arg):$/;" m class:Test_ErrSetAndRestore.test_set_object_and_fetch.Broken +__init__ Lib/test/test_capi/test_misc.py /^ def __init__(self):$/;" m class:CAPITest.test_clear_managed_dict.C +__init__ Lib/test/test_capi/test_misc.py /^ def __init__(self):$/;" m class:CAPITest.test_subclass_of_heap_gc_ctype_with_del_modifying_dunder_class_only_decrefs_once.A +__init__ Lib/test/test_capi/test_misc.py /^ def __init__(self):$/;" m class:CAPITest.test_subclass_of_heap_gc_ctype_with_del_modifying_dunder_class_only_decrefs_once.B +__init__ Lib/test/test_capi/test_misc.py /^ def __init__(self):$/;" m class:CAPITest.test_subclass_of_heap_gc_ctype_with_tpdealloc_decrefs_once.HeapGcCTypeSubclass +__init__ Lib/test/test_capi/test_misc.py /^ def __init__(self, *args):$/;" m class:CAPITest.do_test_trashcan_python_class.PyList +__init__ Lib/test/test_capi/test_misc.py /^ def __init__(self, val):$/;" m class:CAPITest.test_pynumber_tobase.IDX +__init__ Lib/test/test_capi/test_misc.py /^ def __init__(self, req, taskid=None, notify_done=None):$/;" m class:TestPendingCalls.PendingTask +__init__ Lib/test/test_cgi.py /^ def __init__(self, file):$/;" m class:.test_fieldstorage_readline.TestReadlineFile +__init__ Lib/test/test_cgi.py /^ def __init__(self, err):$/;" m class:ComparableException +__init__ Lib/test/test_class.py /^ __init__ = property(booh)$/;" v class:ClassTests.testForExceptionsRaisedInInstanceGetattr2.I +__init__ Lib/test/test_class.py /^ def __init__(*args, **kwargs):$/;" m class:ClassTests.testClassWithExtCall.Meta +__init__ Lib/test/test_class.py /^ def __init__(self):$/;" m class:ClassTests.testHasAttrString.A +__init__ Lib/test/test_class.py /^ def __init__(self, *args, **kwargs):$/;" m class:ClassTests.testConstructorErrorMessages.D +__init__ Lib/test/test_class.py /^ def __init__(self, *args, **kwargs):$/;" m class:ClassTests.testConstructorErrorMessages.E +__init__ Lib/test/test_class.py /^ def __init__(self, x):$/;" m class:ClassTests.testHashComparisonOfMethods.A +__init__ Lib/test/test_clinic.py /^ def __init__(self):$/;" m class:FakeClinic +__init__ Lib/test/test_clinic.py /^ def __init__(self):$/;" m class:FakeConvertersDict +__init__ Lib/test/test_clinic.py /^ def __init__(self, clinic):$/;" m class:CopyParser +__init__ Lib/test/test_clinic.py /^ def __init__(self, clinic):$/;" m class:InertParser +__init__ Lib/test/test_clinic.py /^ def __init__(self, name):$/;" m class:FakeConverterFactory +__init__ Lib/test/test_clinic.py /^ def __init__(self, name, args):$/;" m class:FakeConverter +__init__ Lib/test/test_cmath.py /^ def __init__(self, value):$/;" m class:CMathTests.test_user_object.MyComplex +__init__ Lib/test/test_code.py /^ def __init__(self, f, test):$/;" m class:CodeLocationTest.CoExtra.test_free_different_thread.ThreadTest +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:BadObjectUnicodeDecodeError +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:BadObjectUnicodeEncodeError +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:BadStartUnicodeEncodeError +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:NoEndUnicodeDecodeError +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:NoEndUnicodeTranslateError +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:NoObjectUnicodeTranslateError +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:NoStartUnicodeTranslateError +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self):$/;" m class:PosReturn +__init__ Lib/test/test_codeccallbacks.py /^ def __init__(self, repl=""):$/;" m class:RepeatedPosReturn +__init__ Lib/test/test_codecs.py /^ def __init__(self):$/;" m class:ExceptionNotesTest.test_init_override.CustomInit +__init__ Lib/test/test_codecs.py /^ def __init__(self, buffer):$/;" m class:Queue +__init__ Lib/test/test_collections.py /^ def __init__(self):$/;" m class:ABCTestCase.validate_comparison.Other +__init__ Lib/test/test_collections.py /^ def __init__(self):$/;" m class:TestCollectionABCs.test_MutableSequence_mixins.MutableSequenceSubclass +__init__ Lib/test/test_collections.py /^ def __init__(self):$/;" m class:TestCollectionABCs.test_hash_Set.OneTwoThreeSet +__init__ Lib/test/test_collections.py /^ def __init__(self, *args, **kwds):$/;" m class:TestChainMap.test_iter_not_calling_getitem_on_maps.DictWithGetItem +__init__ Lib/test/test_collections.py /^ def __init__(self, elements=()):$/;" m class:TestCollectionABCs.test_Set_interoperability_with_real_sets.ListSet +__init__ Lib/test/test_collections.py /^ def __init__(self, itr):$/;" m class:TestCollectionABCs.test_arithmetic_Set.MySet +__init__ Lib/test/test_collections.py /^ def __init__(self, itr):$/;" m class:TestCollectionABCs.test_equality_Set.MySet +__init__ Lib/test/test_collections.py /^ def __init__(self, itr):$/;" m class:TestCollectionABCs.test_isdisjoint_Set.MySet +__init__ Lib/test/test_collections.py /^ def __init__(self, seq):$/;" m class:TestCollectionABCs.test_issue26915.CustomSequence +__init__ Lib/test/test_collections.py /^ def __init__(self, seq=()):$/;" m class:TestCollectionABCs.test_Sequence_mixins.SequenceSubclass +__init__ Lib/test/test_collections.py /^ def __init__(self, values, created_by):$/;" m class:TestCollectionABCs.test_Set_from_iterable.SetUsingInstanceFromIterable +__init__ Lib/test/test_collections.py /^ def __init__(self,items=None):$/;" m class:TestCollectionABCs.test_issue_4920.MySet +__init__ Lib/test/test_collections.py /^ def __init__(self, *args, **kwds):$/;" m class:CounterSubclassWithGet +__init__ Lib/test/test_collections.py /^ def __init__(self, *args, **kwds):$/;" m class:CounterSubclassWithSetItem +__init__ Lib/test/test_collections.py /^ def __init__(self, it=()):$/;" m class:WithSet +__init__ Lib/test/test_compare.py /^ def __init__(self, arg):$/;" m class:ComparisonSimpleTest.Cmp +__init__ Lib/test/test_compile.py /^ def __init__(self):$/;" m class:TestSpecifics.test_subscripts.str_map +__init__ Lib/test/test_complex.py /^ def __init__(self, value): self.value = value$/;" m class:ComplexTest.test_constructor.NS +__init__ Lib/test/test_complex.py /^ def __init__(self, value):$/;" m class:ComplexTest.test_constructor.MyIndex +__init__ Lib/test/test_complex.py /^ def __init__(self, value):$/;" m class:ComplexTest.test_constructor.float2 +__init__ Lib/test/test_concurrent_futures/test_process_pool.py /^ def __init__(self, mgr):$/;" m class:EventfulGCObj +__init__ Lib/test/test_configparser.py /^ def __init__(self):$/;" m class:FakeFile +__init__ Lib/test/test_contains.py /^ def __init__(self, el):$/;" m class:base_set +__init__ Lib/test/test_context.py /^ def __init__(self, *, error_on_hash=False, error_on_eq=False):$/;" m class:HaskKeyCrasher +__init__ Lib/test/test_context.py /^ def __init__(self, hash, name, *, error_on_eq_to=None):$/;" m class:HashKey +__init__ Lib/test/test_contextlib.py /^ def __init__(self, check_exc):$/;" m class:TestBaseExitStack.test_push.ExitCM +__init__ Lib/test/test_contextlib.py /^ def __init__(self, exc):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.RaiseExc +__init__ Lib/test/test_contextlib.py /^ def __init__(self, outer, inner):$/;" m class:TestBaseExitStack.test_exit_exception_chaining_reference.RaiseExcWithContext +__init__ Lib/test/test_contextlib_async.py /^ def __init__(self, check_exc):$/;" m class:TestAsyncExitStack.test_async_push.ExitCM +__init__ Lib/test/test_copy.py /^ def __init__(self, d=None):$/;" m class:TestCopy.test_deepcopy_dict_subclass.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_copy_copy.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_copy_inst_copy.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_copy_inst_getinitargs.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_copy_inst_getstate.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_copy_inst_getstate_setstate.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_copy_inst_setstate.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_copy_inst_vanilla.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_deepcopy_deepcopy.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_deepcopy_inst_deepcopy.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_deepcopy_inst_getinitargs.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_deepcopy_inst_getstate.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_deepcopy_inst_getstate_setstate.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_deepcopy_inst_setstate.C +__init__ Lib/test/test_copy.py /^ def __init__(self, foo):$/;" m class:TestCopy.test_deepcopy_inst_vanilla.C +__init__ Lib/test/test_copy.py /^ def __init__(self, i):$/;" m class:TestCopy.test_deepcopy_weakkeydict.C +__init__ Lib/test/test_copy.py /^ def __init__(self, i):$/;" m class:TestCopy.test_deepcopy_weakvaluedict.C +__init__ Lib/test/test_coroutines.py /^ def __init__(self):$/;" m class:CoroutineTest.test_for_1.AsyncIter +__init__ Lib/test/test_coroutines.py /^ def __init__(self):$/;" m class:CoroutineTest.test_for_6.Iterable +__init__ Lib/test/test_coroutines.py /^ def __init__(self, coro):$/;" m class:CoroutineTest.test_await_14.Wrapper +__init__ Lib/test/test_coroutines.py /^ def __init__(self, name):$/;" m class:CoroutineTest.test_with_1.Manager +__init__ Lib/test/test_coroutines.py /^ def __init__(self, obj):$/;" m class:AsyncYieldFrom +__init__ Lib/test/test_coroutines.py /^ def __init__(self, value):$/;" m class:AsyncYield +__init__ Lib/test/test_ctypes/test_as_parameter.py /^ def __init__(self, param):$/;" m class:AsParamPropertyWrapper +__init__ Lib/test/test_ctypes/test_as_parameter.py /^ def __init__(self, param):$/;" m class:AsParamWrapper +__init__ Lib/test/test_ctypes/test_callbacks.py /^ def __init__(self):$/;" m class:Callbacks.test_issue_7959.X +__init__ Lib/test/test_ctypes/test_frombuffer.py /^ def __init__(self):$/;" m class:X +__init__ Lib/test/test_ctypes/test_init.py /^ def __init__(self):$/;" m class:X +__init__ Lib/test/test_ctypes/test_pickling.py /^ def __init__(self, *args, **kw):$/;" m class:X +__init__ Lib/test/test_dataclasses.py /^ def __init__(self):$/;" m class:TestCase.test_deliberately_mutable_defaults.Mutable +__init__ Lib/test/test_dataclasses.py /^ def __init__(self):$/;" m class:TestInit.test_base_has_init.B +__init__ Lib/test/test_dataclasses.py /^ def __init__(self):$/;" m class:TestInit.test_no_init.C +__init__ Lib/test/test_dataclasses.py /^ def __init__(self, **kw):$/;" m class:TestCase.test_field_metadata_custom_mapping.SimpleNameSpace +__init__ Lib/test/test_dataclasses.py /^ def __init__(self, a):$/;" m class:TestInit.test_inherit_from_protocol.D +__init__ Lib/test/test_dataclasses.py /^ def __init__(self, x):$/;" m class:TestInit.test_overwriting_init.C +__init__ Lib/test/test_decimal.py /^ def __init__(self, _):$/;" m class:PythonAPItests.test_from_float.MyDecimal +__init__ Lib/test/test_decimal.py /^ def __init__(self, a):$/;" m class:FormatTest.test_decimal_from_float_argument_type.A +__init__ Lib/test/test_decimal.py /^ def __init__(self, prec=None, rounding=None, Emin=None, Emax=None,$/;" m class:ContextSubclassing.test_context_subclassing.MyContext +__init__ Lib/test/test_decorators.py /^ def __init__(self, func):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod1 +__init__ Lib/test/test_decorators.py /^ def __init__(self, func):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2 +__init__ Lib/test/test_decorators.py /^ def __init__(self, index):$/;" m class:TestDecorators.test_eval_order.NameLookupTracer +__init__ Lib/test/test_decorators.py /^ def __init__(self, wrapped):$/;" m class:TestDecorators.test_wrapped_descriptor_inside_classmethod.BoundWrapper +__init__ Lib/test/test_decorators.py /^ def __init__(self, wrapped):$/;" m class:TestDecorators.test_wrapped_descriptor_inside_classmethod.Wrapper +__init__ Lib/test/test_decorators.py /^ def __init__(self, exprstr, func, args, kwds):$/;" m class:DbcheckError +__init__ Lib/test/test_defaultdict.py /^ def __init__(self):$/;" m class:TestDefaultDict.test_recursive_repr.sub +__init__ Lib/test/test_deque.py /^ def __init__(self, deque, result):$/;" m class:MutateCmp +__init__ Lib/test/test_deque.py /^ def __init__(self, newarg=1):$/;" m class:SubclassWithKwargs +__init__ Lib/test/test_descr.py /^ def __init__(self, get, set=None, delete=None):$/;" m class:.test_compattr.C.computed_attribute +__init__ Lib/test/test_descr.py /^ def __init__(self, value):$/;" m class:.test_classic_comparisons.classic.C +__init__ Lib/test/test_descr.py /^ def __init__(self, value):$/;" m class:.test_rich_comparisons.classic.C +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_compattr.C +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_cycle_through_dict.X +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_init.Foo +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_newslots.C +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_slots.Counted +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_slots.H +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_slots_special2.C1 +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_slots_special2.C2 +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:.test_supers.B +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.C +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:ClassPropertiesAndMethods.test_multiple_inheritance.C +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:ClassPropertiesAndMethods.test_multiple_inheritance.D +__init__ Lib/test/test_descr.py /^ def __init__(self):$/;" m class:PicklingTests.test_reduce.C14 +__init__ Lib/test/test_descr.py /^ def __init__(self, *args):$/;" m class:.test_supers.mysuper +__init__ Lib/test/test_descr.py /^ def __init__(self, *args):$/;" m class:ClassPropertiesAndMethods.test_metaclass.T +__init__ Lib/test/test_descr.py /^ def __init__(self, *args):$/;" m class:PicklingTests.test_reduce_copying.C2 +__init__ Lib/test/test_descr.py /^ def __init__(self, a, b):$/;" m class:PicklingTests.test_reduce_copying.C1 +__init__ Lib/test/test_descr.py /^ def __init__(self, a, b):$/;" m class:PicklingTests.test_reduce_copying.C3 +__init__ Lib/test/test_descr.py /^ def __init__(self, arg):$/;" m class:.test_funny_new.D +__init__ Lib/test/test_descr.py /^ def __init__(self, first, last):$/;" m class:.test_dict_constructors.AddressBookEntry +__init__ Lib/test/test_descr.py /^ def __init__(self, foo):$/;" m class:.test_object_new.A +__init__ Lib/test/test_descr.py /^ def __init__(self, foo):$/;" m class:.test_restored_object_new.B +__init__ Lib/test/test_descr.py /^ def __init__(self, foo, kw=0, *args, **kwargs):$/;" m class:.test_object_new_and_init_with_parameters.OverrideInit +__init__ Lib/test/test_descr.py /^ def __init__(self, foo=None):$/;" m class:.test_copy_setstate.C +__init__ Lib/test/test_descr.py /^ def __init__(self, impl):$/;" m class:.test_special_method_lookup.SpecialDescr +__init__ Lib/test/test_descr.py /^ def __init__(self, name):$/;" m class:.test_set_and_no_get.Descr +__init__ Lib/test/test_descr.py /^ def __init__(self, name):$/;" m class:ClassPropertiesAndMethods.test_module_subclasses.MM +__init__ Lib/test/test_descr.py /^ def __init__(self, obj):$/;" m class:.test_dir.Wrapper +__init__ Lib/test/test_descr.py /^ def __init__(self, obj):$/;" m class:.test_isinst_isclass.Proxy +__init__ Lib/test/test_descr.py /^ def __init__(self, obj):$/;" m class:.test_proxy_super.Proxy +__init__ Lib/test/test_descr.py /^ def __init__(self, proto, dumps, loads):$/;" m class:PicklingTests._generate_pickle_copiers.PickleCopier +__init__ Lib/test/test_descr.py /^ def __init__(self, referrent):$/;" m class:.test_weakref_segfault.Provoker +__init__ Lib/test/test_descr.py /^ def __init__(self, value):$/;" m class:.test_slots.C4 +__init__ Lib/test/test_descr.py /^ def __init__(self, value):$/;" m class:.test_str_subclass_as_dict_key.cistr +__init__ Lib/test/test_descr.py /^ def __init__(self, value=0.0, prec=12):$/;" m class:.test_basic_inheritance.precfloat +__init__ Lib/test/test_descr.py /^ def __init__(self, x):$/;" m class:.test_methods.C +__init__ Lib/test/test_descr.py /^ def __init__(self, x):$/;" m class:.test_slots_trash.trash +__init__ Lib/test/test_descr.py /^ def __init__(self, x):$/;" m class:.test_specials.Proxy +__init__ Lib/test/test_descr.py /^ def __init__(self_local, *a, **kw):$/;" m class:ClassPropertiesAndMethods.test_python_dicts.C +__init__ Lib/test/test_descr.py /^ def __init__(self, *args, **kwargs):$/;" m class:OperatorsTest +__init__ Lib/test/test_descrtut.py /^ def __init__(self, default=None):$/;" m class:defaultdict +__init__ Lib/test/test_descrtut.py /^ def __init__(self, default=None):$/;" m class:defaultdict2 +__init__ Lib/test/test_dict.py /^ def __init__(self):$/;" m class:DictTest.test_update.FailingUserDict.keys.BogonIter +__init__ Lib/test/test_dict.py /^ def __init__(self):$/;" m class:DictTest.test_fromkeys.baddict1 +__init__ Lib/test/test_dict.py /^ def __init__(self):$/;" m class:DictTest.test_missing.F +__init__ Lib/test/test_dict.py /^ def __init__(self):$/;" m class:DictTest.test_setdefault_atomic.Hashed +__init__ Lib/test/test_dict.py /^ def __init__(self):$/;" m class:DictTest.test_setitem_atomic_at_resize.Hashed +__init__ Lib/test/test_dict.py /^ def __init__(self):$/;" m class:DictTest.test_update.SimpleUserDict +__init__ Lib/test/test_dict.py /^ def __init__(self, msg):$/;" m class:DictTest.test_instance_dict_getattr_str_subclass.Foo +__init__ Lib/test/test_dict.py /^ def __init__(self, order):$/;" m class:DictTest.test_splittable_update.C +__init__ Lib/test/test_dict.py /^ def __init__(self, value):$/;" m class:DictTest.test_mutating_lookup.NastyKey +__init__ Lib/test/test_dict.py /^ def __init__(self, x, y):$/;" m class:DictTest.test_reverse_iterator_for_shared_shared_dicts.A +__init__ Lib/test/test_dis.py /^ def __init__(self, *args):$/;" m class:InstructionTests +__init__ Lib/test/test_dis.py /^ def __init__(self, x):$/;" m class:_C +__init__ Lib/test/test_doctest.py /^ def __init__(self, val=0):$/;" m class:SampleClass.NestedClass +__init__ Lib/test/test_doctest.py /^ def __init__(self, func):$/;" m class:Wrapper +__init__ Lib/test/test_doctest.py /^ def __init__(self, lines):$/;" m class:_FakeInput +__init__ Lib/test/test_doctest.py /^ def __init__(self, pathdir):$/;" m class:TestHook +__init__ Lib/test/test_doctest.py /^ def __init__(self, val):$/;" m class:SampleClass +__init__ Lib/test/test_doctest.py /^ def __init__(self, val):$/;" m class:SampleNewStyleClass +__init__ Lib/test/test_doctest2.py /^ def __init__(self):$/;" m class:C +__init__ Lib/test/test_dynamic.py /^ def __init__(self, x):$/;" m class:TestTracing.test_after_specialization.C +__init__ Lib/test/test_dynamicclassattribute.py /^ def __init__(self): self._spam = 1$/;" m class:PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo +__init__ Lib/test/test_dynamicclassattribute.py /^ def __init__(self):$/;" m class:PropertyTests.test_abstract_virtual.Okay1 +__init__ Lib/test/test_dynamicclassattribute.py /^ def __init__(self):$/;" m class:PropertyTests.test_abstract_virtual.Okay2 +__init__ Lib/test/test_dynamicclassattribute.py /^ def __init__(self):$/;" m class:BaseClass +__init__ Lib/test/test_email/__init__.py /^ def __init__(self, *args, **kw):$/;" m class:TestEmailBase +__init__ Lib/test/test_email/test_email.py /^ def __init__(self):$/;" m class:TestMiscellaneous.test_custom_message_does_not_require_arguments.MyMessage +__init__ Lib/test/test_email/test_headerregistry.py /^ def __init__(self, *args, **kw):$/;" m class:TestHeaderRegistry.FooBase +__init__ Lib/test/test_email/test_parser.py /^ def __init__(self, policy):$/;" m class:TestCustomMessage.MyMessage +__init__ Lib/test/test_email/test_policy.py /^ def __init__(self):$/;" m class:PolicyAPITests.test_register_defect.Dummy +__init__ Lib/test/test_email/test_policy.py /^ def __init__(self):$/;" m class:PolicyAPITests.MyObj +__init__ Lib/test/test_email/test_policy.py /^ def __init__(self, *args, **kw):$/;" m class:PolicyAPITests.MyPolicy +__init__ Lib/test/test_enum.py /^ def __init__(self, y):$/;" m class:TestSpecial.test_init_exception.Base.MyEnum +__init__ Lib/test/test_enum.py /^ def __init__(self):$/;" m class:TestSpecial.test_dir_with_custom_dunders.MyEnum +__init__ Lib/test/test_enum.py /^ def __init__(self):$/;" m class:TestSpecial.test_missing_exceptions_reset.Class1 +__init__ Lib/test/test_enum.py /^ def __init__(self):$/;" m class:TestSpecial.test_missing_exceptions_reset.Class2 +__init__ Lib/test/test_enum.py /^ def __init__(self, *args):$/;" m class:TestSpecial.test_multiple_mixin_with_common_data_type.LenientStrEnum +__init__ Lib/test/test_enum.py /^ def __init__(self, *args):$/;" m class:TestSpecial.test_no_duplicates.UniqueEnum +__init__ Lib/test/test_enum.py /^ def __init__(self, a):$/;" m class:TestSpecial.test_repr_with_init_mixin.Foo +__init__ Lib/test/test_enum.py /^ def __init__(self, mass, radius):$/;" m class:TestSpecial.test_init.Planet +__init__ Lib/test/test_enum.py /^ def __init__(self, x):$/;" m class:TestSpecial.test_init_exception.Base +__init__ Lib/test/test_enum.py /^ def __init__(self, fget=None, fset=None, fdel=None, doc=None):$/;" m class:classproperty +__init__ Lib/test/test_enumerate.py /^ def __init__(self, seqn):$/;" m class:E +__init__ Lib/test/test_enumerate.py /^ def __init__(self, seqn):$/;" m class:G +__init__ Lib/test/test_enumerate.py /^ def __init__(self, seqn):$/;" m class:I +__init__ Lib/test/test_enumerate.py /^ def __init__(self, seqn):$/;" m class:Ig +__init__ Lib/test/test_enumerate.py /^ def __init__(self, seqn):$/;" m class:N +__init__ Lib/test/test_enumerate.py /^ def __init__(self, seqn):$/;" m class:X +__init__ Lib/test/test_exception_hierarchy.py /^ def __init__(self):$/;" m class:SubOSErrorWithStandaloneInit +__init__ Lib/test/test_exception_hierarchy.py /^ def __init__(self, message, bar):$/;" m class:SubOSErrorWithInit +__init__ Lib/test/test_exceptions.py /^ def __init__(self, fancy_arg):$/;" m class:ExceptionTests.testKeywordArgs.DerivedException +__init__ Lib/test/test_exceptions.py /^ def __init__(self, obj):$/;" m class:ExceptionTests._check_generator_cleanup_exc_state.MyException +__init__ Lib/test/test_exceptions.py /^ def __init__(self, obj):$/;" m class:ExceptionTests.testExceptionCleanupState.MyException +__init__ Lib/test/test_exceptions.py /^ def __init__(self_):$/;" m class:ExceptionTests.testSettingException.BadException +__init__ Lib/test/test_exceptions.py /^ def __init__(self, x):$/;" m class:NaiveException +__init__ Lib/test/test_exceptions.py /^ def __init__(self, x):$/;" m class:SlottedNaiveException +__init__ Lib/test/test_fcntl.py /^ def __init__(self, fn):$/;" m class:BadFile +__init__ Lib/test/test_fileinput.py /^ def __init__(self):$/;" m class:FileInputTests.test_file_opening_hook.CustomOpenHook +__init__ Lib/test/test_fileinput.py /^ def __init__(self):$/;" m class:FileInputTests.test_fileno_when_ValueError_raised.FilenoRaisesValueError +__init__ Lib/test/test_fileinput.py /^ def __init__(self):$/;" m class:InvocationRecorder +__init__ Lib/test/test_fileinput.py /^ def __init__(self):$/;" m class:LineReader +__init__ Lib/test/test_fileinput.py /^ def __init__(self, exception_type):$/;" m class:UnconditionallyRaise +__init__ Lib/test/test_fileinput.py /^ def __init__(self, files=None, inplace=False, backup="", *,$/;" m class:MockFileInput +__init__ Lib/test/test_finalization.py /^ def __init__(self):$/;" m class:SelfCycleBase +__init__ Lib/test/test_finalization.py /^ def __init__(self):$/;" m class:SimpleBase +__init__ Lib/test/test_float.py /^ def __init__(self, arg, newarg=None):$/;" m class:GeneralFloatCases.test_keywords_in_subclass.subclass_with_init +__init__ Lib/test/test_float.py /^ def __init__(self, value):$/;" m class:GeneralFloatCases.test_floatconversion.MyIndex +__init__ Lib/test/test_float.py /^ def __init__(self, value):$/;" m class:HexFloatTestCase.test_subclass.F2 +__init__ Lib/test/test_fractions.py /^ def __init__(self, value):$/;" m class:FractionTest.testBoolGuarateesBoolReturn.CustomValue +__init__ Lib/test/test_fractions.py /^ def __init__(self, num, den):$/;" m class:DummyRational +__init__ Lib/test/test_fractions.py /^ def __init__(self, value):$/;" m class:DummyFloat +__init__ Lib/test/test_fstring.py /^ def __init__(self):$/;" m class:.test_side_effect_order.X +__init__ Lib/test/test_fstring.py /^ def __init__(self):$/;" m class:TestCase.test_ast.X +__init__ Lib/test/test_ftplib.py /^ def __init__(self, conn, baseclass):$/;" m class:.DummyTLS_DTPHandler +__init__ Lib/test/test_ftplib.py /^ def __init__(self, conn, encoding=DEFAULT_ENCODING):$/;" m class:.DummyTLS_FTPHandler +__init__ Lib/test/test_ftplib.py /^ def __init__(self, address, af=socket.AF_INET, encoding=DEFAULT_ENCODING):$/;" m class:DummyFTPServer +__init__ Lib/test/test_ftplib.py /^ def __init__(self, conn, baseclass):$/;" m class:DummyDTPHandler +__init__ Lib/test/test_ftplib.py /^ def __init__(self, conn, encoding=DEFAULT_ENCODING):$/;" m class:DummyFTPHandler +__init__ Lib/test/test_functools.py /^ def __init__(self, *args, **kwargs):$/;" m class:TestSingleDispatch.test_cache_invalidation.TracingDict +__init__ Lib/test/test_functools.py /^ def __init__(self, arg):$/;" m class:TestSingleDispatch.test_annotations._ +__init__ Lib/test/test_functools.py /^ def __init__(self, arg):$/;" m class:TestSingleDispatch.test_callable_register.A +__init__ Lib/test/test_functools.py /^ def __init__(self, arg):$/;" m class:TestSingleDispatch.test_classmethod_register.A +__init__ Lib/test/test_functools.py /^ def __init__(self, arg):$/;" m class:TestSingleDispatch.test_classmethod_type_ann_register.A +__init__ Lib/test/test_functools.py /^ def __init__(self, max):$/;" m class:TestReduce.test_reduce.Squares +__init__ Lib/test/test_functools.py /^ def __init__(self, n):$/;" m class:TestReduce.test_iterator_usage.SequenceClass +__init__ Lib/test/test_functools.py /^ def __init__(self, prop):$/;" m class:TestCachedProperty.test_subclass_with___set__.Test +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsGreaterThan +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsGreaterThanEqualTo +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsLessThan +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsLessThanEqualTo +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_total_ordering_ge.A +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_total_ordering_gt.A +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_total_ordering_le.A +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_total_ordering_lt.A +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ComparatorNotImplemented +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsGreaterThan +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsGreaterThanEqualTo +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsLessThan +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsLessThanEqualTo +__init__ Lib/test/test_functools.py /^ def __init__(self, x):$/;" m class:TestLRU.test_need_for_rlock.DoubleEq +__init__ Lib/test/test_functools.py /^ def __init__(self):$/;" m class:CachedCostItem +__init__ Lib/test/test_functools.py /^ def __init__(self):$/;" m class:CachedCostItemWithSlots +__init__ Lib/test/test_functools.py /^ def __init__(self, value):$/;" m class:Orderable_LT +__init__ Lib/test/test_gc.py /^ def __init__(self):$/;" m class:GCTests.test_boom2.Boom2 +__init__ Lib/test/test_gc.py /^ def __init__(self):$/;" m class:GCTests.test_method.A +__init__ Lib/test/test_gc.py /^ def __init__(self):$/;" m class:GCTests.test_resurrection_does_not_block_cleanup_of_other_objects.A +__init__ Lib/test/test_gc.py /^ def __init__(self):$/;" m class:GCTests.test_resurrection_is_transitive.Cargo +__init__ Lib/test/test_gc.py /^ def __init__(self):$/;" m class:GCTests.test_resurrection_only_happens_once_per_object.A +__init__ Lib/test/test_gc.py /^ def __init__(self, alist):$/;" m class:GCTests.test_trashcan_threads.C +__init__ Lib/test/test_gc.py /^ def __init__(self, x):$/;" m class:GCTests.test_bug21435.B +__init__ Lib/test/test_gc.py /^ def __init__(self):$/;" m class:GC_Detector +__init__ Lib/test/test_gc.py /^ def __init__(self, i):$/;" m class:C1055820 +__init__ Lib/test/test_gc.py /^ def __init__(self, partner=None):$/;" m class:Uncollectable +__init__ Lib/test/test_generators.py /^ def __init__(self, m, n, hard=0):$/;" m class:Knights +__init__ Lib/test/test_generators.py /^ def __init__(self, n):$/;" m class:Queens +__init__ Lib/test/test_getpath.py /^ def __init__(self, *a, **kw):$/;" m class:MockGetPathTests +__init__ Lib/test/test_getpath.py /^ def __init__(self, *a, argv0=None, config=None, **kw):$/;" m class:MockNTNamespace +__init__ Lib/test/test_getpath.py /^ def __init__(self, *a, argv0=None, config=None, **kw):$/;" m class:MockPosixNamespace +__init__ Lib/test/test_getpath.py /^ def __init__(self, keys):$/;" m class:MockWinreg +__init__ Lib/test/test_grammar.py /^ def __init__(self):$/;" m class:GrammarTests.test_var_annot_custom_maps.CNS2 +__init__ Lib/test/test_grammar.py /^ def __init__(self):$/;" m class:GrammarTests.test_var_annot_refleak.CNS2 +__init__ Lib/test/test_grammar.py /^ def __init__(self, max):$/;" m class:GrammarTests.test_for.Squares +__init__ Lib/test/test_grammar.py /^ def __init__(self, x):$/;" m class:GrammarTests.test_var_annot_basic_semantics.C +__init__ Lib/test/test_grammar.py /^ def __init__(self):$/;" m class:CNS +__init__ Lib/test/test_gzip.py /^ def __init__(self):$/;" m class:TestGzip.test_flush_modes.FakeCompressor +__init__ Lib/test/test_hashlib.py /^ def __init__(self, *args, **kwargs):$/;" m class:HashLibTestCase +__init__ Lib/test/test_heapq.py /^ def __init__(self, x):$/;" m class:TestHeap.test_comparison_operator.LE +__init__ Lib/test/test_heapq.py /^ def __init__(self, x):$/;" m class:TestHeap.test_comparison_operator.LT +__init__ Lib/test/test_heapq.py /^ def __init__(self, seqn):$/;" m class:E +__init__ Lib/test/test_heapq.py /^ def __init__(self, seqn):$/;" m class:G +__init__ Lib/test/test_heapq.py /^ def __init__(self, seqn):$/;" m class:I +__init__ Lib/test/test_heapq.py /^ def __init__(self, seqn):$/;" m class:Ig +__init__ Lib/test/test_heapq.py /^ def __init__(self, seqn):$/;" m class:N +__init__ Lib/test/test_heapq.py /^ def __init__(self, seqn):$/;" m class:S +__init__ Lib/test/test_heapq.py /^ def __init__(self, seqn):$/;" m class:X +__init__ Lib/test/test_heapq.py /^ def __init__(self, value, heap):$/;" m class:SideEffectLT +__init__ Lib/test/test_hmac.py /^ def __init__(self, *args):$/;" m class:TestVectorsTestCase.test_legacy_block_size_warnings.MockCrazyHash +__init__ Lib/test/test_htmlparser.py /^ def __init__(self, *args, **kw):$/;" m class:EventCollector +__init__ Lib/test/test_http_cookiejar.py /^ def __init__(self, headers=[], url=None):$/;" m class:FakeResponse +__init__ Lib/test/test_httplib.py /^ def __init__(self):$/;" m class:HeaderTests.test_auto_headers.HeaderCountingBuffer +__init__ Lib/test/test_httplib.py /^ def __init__(self):$/;" m class:HeaderTests.test_content_length_0.ContentLengthChecker +__init__ Lib/test/test_httplib.py /^ def __init__(self, *pos, **kw):$/;" m class:BasicTest.test_error_leak.Response +__init__ Lib/test/test_httplib.py /^ def __init__(self, *args):$/;" m class:FakeSocketHTTPConnection +__init__ Lib/test/test_httplib.py /^ def __init__(self, readfunc):$/;" m class:Readliner +__init__ Lib/test/test_httplib.py /^ def __init__(self, text, fileclass=io.BytesIO, host=None, port=None):$/;" m class:FakeSocket +__init__ Lib/test/test_httplib.py /^ def __init__(self, text, pipe_trigger):$/;" m class:EPipeSocket +__init__ Lib/test/test_httpservers.py /^ def __init__(self):$/;" m class:AuditableBytesIO +__init__ Lib/test/test_httpservers.py /^ def __init__(self, directory=None):$/;" m class:SocketlessRequestHandler +__init__ Lib/test/test_httpservers.py /^ def __init__(self, test_object, request_handler):$/;" m class:TestServerThread +__init__ Lib/test/test_import/data/unwritable/__init__.py /^ def __init__(self):$/;" m class:MyMod +__init__ Lib/test/test_importlib/_path.py /^ def __init__(self, loc=pathlib.PurePosixPath(), record=None):$/;" m class:Recording +__init__ Lib/test/test_importlib/import_/test___package__.py /^ def __init__(self, parent):$/;" m class:FakeSpec +__init__ Lib/test/test_importlib/import_/test_packages.py /^ def __init__():$/;" f function:ParentModuleTests.test_raising_parent_after_double_relative_importing_child +__init__ Lib/test/test_importlib/import_/test_packages.py /^ def __init__():$/;" f function:ParentModuleTests.test_raising_parent_after_importing_child +__init__ Lib/test/test_importlib/import_/test_packages.py /^ def __init__():$/;" f function:ParentModuleTests.test_raising_parent_after_relative_importing_child +__init__ Lib/test/test_importlib/import_/test_path.py /^ def __init__(self):$/;" m class:FinderTests.test_invalidate_caches_finders.FakeFinder +__init__ Lib/test/test_importlib/import_/test_path.py /^ def __init__(self, path):$/;" m class:PathEntryFinderTests.test_finder_with_failing_find_spec.Finder +__init__ Lib/test/test_importlib/resources/test_custom.py /^ def __init__(self, path: pathlib.Path):$/;" m class:MagicResources +__init__ Lib/test/test_importlib/resources/test_custom.py /^ def __init__(self, reader: ResourceReader):$/;" m class:SimpleLoader +__init__ Lib/test/test_importlib/resources/util.py /^ def __init__(self, **kwargs):$/;" m class:Reader +__init__ Lib/test/test_importlib/test_abc.py /^ def __init__(self, path):$/;" m class:SourceOnlyLoader +__init__ Lib/test/test_importlib/test_abc.py /^ def __init__(self, path, magic=None):$/;" m class:SourceLoader +__init__ Lib/test/test_importlib/test_api.py /^ def __init__(self, *ignored):$/;" m class:InvalidateCacheTests.test_method_called.InvalidatingNullFinder +__init__ Lib/test/test_importlib/test_lazy.py /^ def __init__(self, *args, **kwargs):$/;" m class:CollectInit +__init__ Lib/test/test_importlib/test_main.py /^ def __init__(self, *args):$/;" m class:TestEntryPoints +__init__ Lib/test/test_importlib/test_pkg_import.py /^ def __init__(self, *args, **kw):$/;" m class:TestImport +__init__ Lib/test/test_importlib/test_spec.py /^ def __init__(self, path=None, is_package=None):$/;" m class:TestLoader +__init__ Lib/test/test_importlib/test_threaded_import.py /^ def __init__(self):$/;" m class:Finder +__init__ Lib/test/test_importlib/threaded_import_hangers.py /^ def __init__(self, function, args):$/;" m class:Worker +__init__ Lib/test/test_importlib/util.py /^ def __init__(self, *names, module_code={}):$/;" m class:_ImporterMock +__init__ Lib/test/test_index.py /^ def __init__(self, iterable):$/;" m class:NewSeq +__init__ Lib/test/test_inspect.py /^ def __init__(*args):$/;" m class:TestSignatureObject.test_signature_on_method.Test +__init__ Lib/test/test_inspect.py /^ def __init__(cls, name, bases, dct, *, bar=2):$/;" m class:TestSignatureObject.test_signature_on_class.CM +__init__ Lib/test/test_inspect.py /^ def __init__(self):$/;" m class:TestGetattrStatic.test_inherited_slots.Thing +__init__ Lib/test/test_inspect.py /^ def __init__(self):$/;" m class:TestGetattrStatic.test_metaclass_dict_as_property.Thing +__init__ Lib/test/test_inspect.py /^ def __init__(self):$/;" m class:TestGetattrStatic.test_slots.Thing +__init__ Lib/test/test_inspect.py /^ def __init__(self, *, a: int) -> None:$/;" m class:TestSignatureObject.test_signature_on_generic_subclass.A +__init__ Lib/test/test_inspect.py /^ def __init__(self, a):$/;" m class:TestSignatureObject.test_signature_on_class.C +__init__ Lib/test/test_inspect.py /^ def __init__(self, b):$/;" m class:TestSignatureObject.test_signature_on_class.C +__init__ Lib/test/test_inspect.py /^ def __init__(self, b):$/;" m class:TestSignatureObject.test_signature_on_subclass.B +__init__ Lib/test/test_inspect.py /^ def __init__(self, func):$/;" m class:TestSignatureObject.test_signature_from_functionlike_object.funclike +__init__ Lib/test/test_inspect.py /^ def __init__(self, func):$/;" m class:TestSignatureObject.test_signature_none_annotation.funclike +__init__ Lib/test/test_inspect.py /^ def __init__(self, marker):$/;" m class:TestSignatureObject.test_signature_functionlike_class.funclike +__init__ Lib/test/test_inspect.py /^ def __init__(self, spam):$/;" m class:TestSignatureObject.test_signature_on_builtin_class.P3 +__init__ Lib/test/test_inspect.py /^ def __init__(self, value):$/;" m class:TestSignatureObject.test_signature_on_derived_classes.B +__init__ Lib/test/test_inspect.py /^ def __init__(self, value):$/;" m class:TestSignatureObject.test_signature_on_derived_classes.D1 +__init__ Lib/test/test_inspect.py /^ def __init__(self, x):$/;" m class:TestGetattrStatic.test_instance_attr.Thing +__init__ Lib/test/test_inspect.py /^ def __init__(self, *args, **kwargs):$/;" m class:TestInterpreterStack +__init__ Lib/test/test_inspect.py /^ def __init__(self, n):$/;" m class:NTimesUnwrappable +__init__ Lib/test/test_int.py /^ def __init__(self, value):$/;" m class:IntTestCases.test_int_base_indexable.MyIndexable +__init__ Lib/test/test_interpreters.py /^ def __init__(self, name):$/;" m class:TestIsShareable.test_not_shareable.Cheese +__init__ Lib/test/test_io.py /^ def __init__(self):$/;" m class:IOTest._check_base_destructor.MyIO +__init__ Lib/test/test_io.py /^ def __init__(self, avail):$/;" m class:IOTest.test_BufferedIOBase_readinto.Reader +__init__ Lib/test/test_io.py /^ def __init__(self, isatty):$/;" m class:BufferedRWPairTest.test_isatty.SelectableIsAtty +__init__ Lib/test/test_io.py /^ def __init__(self):$/;" m class:MockNonBlockWriterIO +__init__ Lib/test/test_io.py /^ def __init__(self):$/;" m class:SlowFlushRawIO +__init__ Lib/test/test_io.py /^ def __init__(self, data):$/;" m class:MockFileIO +__init__ Lib/test/test_io.py /^ def __init__(self, errors='strict'):$/;" m class:StatefulIncrementalDecoder +__init__ Lib/test/test_io.py /^ def __init__(self, read_stack=()):$/;" m class:MockRawIOWithoutRead +__init__ Lib/test/test_isinstance.py /^ def __init__(self):$/;" m class:TestIsInstanceIsSubclass.test_issubclass_refcount_handling.B +__init__ Lib/test/test_isinstance.py /^ def __init__(self, bases):$/;" m class:AbstractClass +__init__ Lib/test/test_isinstance.py /^ def __init__(self, klass):$/;" m class:AbstractInstance +__init__ Lib/test/test_iter.py /^ def __init__(self, vals):$/;" m class:TestCase.test_builtin_filter.Seq.__iter__.SeqIter +__init__ Lib/test/test_iter.py /^ def __init__(self, name, iterator):$/;" m class:TestCase.test_reduce_mutating_builtins_iter.run.CustomStr +__init__ Lib/test/test_iter.py /^ def __init__(self, start, finish):$/;" m class:TestCase.test_writelines.Iterator +__init__ Lib/test/test_iter.py /^ def __init__(self, start, finish):$/;" m class:TestCase.test_writelines.Whatever +__init__ Lib/test/test_iter.py /^ def __init__(self, *args):$/;" m class:TestCase.test_builtin_filter.Seq +__init__ Lib/test/test_iter.py /^ def __init__(self, seq):$/;" m class:TestCase.test_unicode_join_endcase.OhPhooey +__init__ Lib/test/test_iter.py /^ def __init__(self, start):$/;" m class:TestCase.test_builtin_zip.IntsFrom +__init__ Lib/test/test_iter.py /^ def __init__(self, truth):$/;" m class:TestCase.test_builtin_filter.Boolean +__init__ Lib/test/test_iter.py /^ def __init__(self):$/;" m class:CallableIterClass +__init__ Lib/test/test_iter.py /^ def __init__(self, i):$/;" m class:IteratorProxyClass +__init__ Lib/test/test_iter.py /^ def __init__(self, n):$/;" m class:BasicIterClass +__init__ Lib/test/test_iter.py /^ def __init__(self, n):$/;" m class:IteratingSequenceClass +__init__ Lib/test/test_iter.py /^ def __init__(self, n):$/;" m class:SequenceClass +__init__ Lib/test/test_iter.py /^ def __init__(self, s):$/;" m class:SequenceProxyClass +__init__ Lib/test/test_itertools.py /^ def __init__(self, *args, newarg=None):$/;" m class:SubclassWithKwargsTest.test_keywords_in_subclass.subclass_with_init +__init__ Lib/test/test_itertools.py /^ def __init__(self, o, t, e):$/;" m class:TestBasicOps.test_bug_7244.Repeater +__init__ Lib/test/test_itertools.py /^ def __init__(self, v):$/;" m class:RegressionTests.test_issue30347_2.K +__init__ Lib/test/test_itertools.py /^ def __init__(self, val):$/;" m class:TestBasicOps.test_islice.IntLike +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:E +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:E2 +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:G +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:I +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:Ig +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:N +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:S +__init__ Lib/test/test_itertools.py /^ def __init__(self, seqn):$/;" m class:X +__init__ Lib/test/test_keywordonlyarg.py /^ def __init__(self, *, k1, k2=0):$/;" m class:Foo +__init__ Lib/test/test_launcher.py /^ def __init__(self, path, content):$/;" m class:PreservePyIni +__init__ Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def __init__(self, max):$/;" m class:GrammarTests.testFor.Squares +__init__ Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def __init__(self, max):$/;" m class:GrammarTests.testFor.Squares +__init__ Lib/test/test_list.py /^ def __init__(self, seq, newarg=None):$/;" m class:ListTest.test_keywords_in_subclass.subclass_with_init +__init__ Lib/test/test_logging.py /^ def __init__(self):$/;" m class:HandlerTest.test_post_fork_child_no_deadlock._OurHandler +__init__ Lib/test/test_logging.py /^ def __init__(self, cls):$/;" m class:LogRecordFactoryTest.setUp.CheckingFilter +__init__ Lib/test/test_logging.py /^ def __init__(self, mem_hdlr):$/;" m class:MemoryHandlerTest.test_race_between_set_target_and_flush.MockRaceConditionHandler +__init__ Lib/test/test_logging.py /^ def __init__(self, name='MyLogger', level=logging.NOTSET):$/;" m class:ModuleLevelMiscTest.test_subclass_logger_cache.MyLogger +__init__ Lib/test/test_logging.py /^ def __init__(self, resource, *args, **kwargs):$/;" m class:ConfigDictTest.test_namedtuple.MyHandler +__init__ Lib/test/test_logging.py /^ def __init__(self, *args, **kwargs):$/;" m class:RecordingHandler +__init__ Lib/test/test_logging.py /^ def __init__(self, addr, handler, poll_interval, sockmap):$/;" m class:TestSMTPServer +__init__ Lib/test/test_logging.py /^ def __init__(self, addr, handler, poll_interval=0.5,$/;" m class:TestHTTPServer +__init__ Lib/test/test_logging.py /^ def __init__(self, addr, handler, poll_interval=0.5,$/;" m class:TestTCPServer +__init__ Lib/test/test_logging.py /^ def __init__(self, addr, handler, poll_interval=0.5,$/;" m class:TestUDPServer +__init__ Lib/test/test_logging.py /^ def __init__(self, fmt, datefmt=None):$/;" m class:myCustomFormatter +__init__ Lib/test/test_logging.py /^ def __init__(self, handler, poll_interval):$/;" m class:ControlMixin +__init__ Lib/test/test_logging.py /^ def __init__(self, identifier, called):$/;" m class:FakeHandler +__init__ Lib/test/test_long.py /^ def __init__(self, value):$/;" m class:LongTest.test_from_bytes.myint3 +__init__ Lib/test/test_long.py /^ def __init__(self, value):$/;" m class:LongTest.test_mixed_compares.Rat +__init__ Lib/test/test_lzma.py /^ def __init__(self, filename, data=b""):$/;" m class:TempFile +__init__ Lib/test/test_mailbox.py /^ def __init__(self):$/;" m class:FakeFileLikeObject +__init__ Lib/test/test_mailbox.py /^ def __init__(self):$/;" m class:FakeMailBox +__init__ Lib/test/test_math.py /^ def __init__(self, value):$/;" m class:MathTests.testIsqrt.IntegerLike +__init__ Lib/test/test_math.py /^ def __init__(self, value):$/;" m class:FloatLike +__init__ Lib/test/test_math.py /^ def __init__(self, value):$/;" m class:MyIndexable +__init__ Lib/test/test_memoryio.py /^ def __init__(me, a, b):$/;" m class:MemoryTestMixin.test_subclassing.test2.MemIO +__init__ Lib/test/test_memoryio.py /^ def __init__(me, initvalue, foo):$/;" m class:MemoryTestMixin.test_pickling.PickleTestMemIO +__init__ Lib/test/test_memoryio.py /^ def __init__(self, *args, **kwargs):$/;" m class:CStringIOPickleTest.ioclass +__init__ Lib/test/test_memoryio.py /^ def __init__(self, *args, **kwargs):$/;" m class:PyStringIOPickleTest.ioclass +__init__ Lib/test/test_memoryio.py /^ def __init__(self, num):$/;" m class:IntLike +__init__ Lib/test/test_memoryview.py /^ def __init__(self, base):$/;" m class:AbstractMemoryTests.test_gc.MyView +__init__ Lib/test/test_mmap.py /^ def __init__(self, access) -> None:$/;" m class:MmapTests.test_mmap_closed_by_int_scenarios.MmapClosedByIntContext +__init__ Lib/test/test_module/__init__.py /^ def __init__(self, name):$/;" m class:ModuleTests.test_subclass_with_slots.ModuleWithSlots +__init__ Lib/test/test_modulefinder.py /^ def __init__(self, *args, **kwds):$/;" m class:ModuleFinderTest.test_load_module_api.CheckLoadModuleApi +__init__ Lib/test/test_monitoring.py /^ def __init__(self):$/;" m class:MonitoringCountTest.check_event_count.Counter +__init__ Lib/test/test_monitoring.py /^ def __init__(self, set_event):$/;" m class:TestRegressions.test_108390.Foo +__init__ Lib/test/test_monitoring.py /^ def __init__(self):$/;" m class:CounterWithDisable +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:CEventRecorder +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:CallRecorder +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:ExceptionRecorder +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:InstructionRecorder +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:JumpRecorder +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:LineRecorder +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:RecorderWithDisable +__init__ Lib/test/test_monitoring.py /^ def __init__(self, events):$/;" m class:ReturnRecorder +__init__ Lib/test/test_named_expressions.py /^ def __init__(self, two_dimensional_list):$/;" m class:NamedExpressionAssignmentTest.test_named_expression_assignment_18.TwoDimensionalList +__init__ Lib/test/test_nntplib.py /^ def __init__(self):$/;" m class:ModeSwitchingNNTPv2Handler +__init__ Lib/test/test_nntplib.py /^ def __init__(self, f, host, readermode=None):$/;" m class:NNTPServer +__init__ Lib/test/test_nntplib.py /^ def __init__(self, handler):$/;" m class:_NNTPServerIO +__init__ Lib/test/test_opcache.py /^ def __init__(self):$/;" m class:TestLoadAttrCache.test_descriptor_added_after_optimization.C +__init__ Lib/test/test_opcodes.py /^ def __init__(self, ignore):$/;" m class:OpcodeTest.test_raise_class_exceptions.DClass +__init__ Lib/test/test_operator.py /^ def __init__(self, value):$/;" m class:OperatorTestCase.test_length_hint.X +__init__ Lib/test/test_operator.py /^ def __init__(self, lst):$/;" m class:Seq1 +__init__ Lib/test/test_operator.py /^ def __init__(self, lst):$/;" m class:Seq2 +__init__ Lib/test/test_optparse.py /^ def __init__(self,$/;" m class:InterceptedError +__init__ Lib/test/test_ordered_dict.py /^ def __init__(*args, **kwargs):$/;" m class:OrderedDictTests.test_overridden_init.ODNI +__init__ Lib/test/test_ordered_dict.py /^ def __init__(self, hash):$/;" m class:OrderedDictTests.test_delitem_hash_collision.Key +__init__ Lib/test/test_ordered_dict.py /^ def __init__(self, size):$/;" m class:SimpleLRUCache +__init__ Lib/test/test_pathlib.py /^ def __init__(self, string):$/;" m class:CompatiblePathTest.CompatPath +__init__ Lib/test/test_pathlib.py /^ def __init__(self, *pathsegments, session_id):$/;" m class:_BasePurePathSubclass +__init__ Lib/test/test_pdb.py /^ def __init__(self, input):$/;" m class:PdbTestInput +__init__ Lib/test/test_peg_generator/test_pegen.py /^ def __init__(self) -> None:$/;" m class:TestGrammarVisitor.Visitor +__init__ Lib/test/test_pickle.py /^ def __init__(self, *args, **kwargs):$/;" m class:PyIdPersPicklerTests.test_custom_pickler_dispatch_table_memleak.Pickler +__init__ Lib/test/test_poplib.py /^ def __init__(self, conn):$/;" m class:TestPOP3Class.DummyPOP3_SSLHandler +__init__ Lib/test/test_poplib.py /^ def __init__(self, address, af=socket.AF_INET):$/;" m class:DummyPOP3Server +__init__ Lib/test/test_poplib.py /^ def __init__(self, conn):$/;" m class:DummyPOP3Handler +__init__ Lib/test/test_pprint.py /^ def __init__(self, hash):$/;" m class:Orderable +__init__ Lib/test/test_print.py /^ def __init__(self):$/;" m class:TestPrint.test_print_flush.filelike +__init__ Lib/test/test_print.py /^ def __init__(self, x):$/;" m class:ClassWith__str__ +__init__ Lib/test/test_property.py /^ def __init__(self): self._spam = 1$/;" m class:PropertySubclassTests.test_property_setter_copies_getter_docstring.Foo +__init__ Lib/test/test_property.py /^ def __init__(self):$/;" m class:BaseClass +__init__ Lib/test/test_pyexpat.py /^ def __init__(self, parser):$/;" m class:InterningTest.test_issue9402.ExternalOutputter +__init__ Lib/test/test_pyexpat.py /^ def __init__(self):$/;" m class:ParseTest.Outputter +__init__ Lib/test/test_queue.py /^ def __init__(self):$/;" m class:CSimpleQueueTest.test_reentrancy.Circular +__init__ Lib/test/test_queue.py /^ def __init__(self, *args):$/;" m class:FailingQueueTest.setUp.FailingQueue +__init__ Lib/test/test_queue.py /^ def __init__(self, fn, args):$/;" m class:_TriggerThread +__init__ Lib/test/test_raise.py /^ def __init__(self):$/;" m class:TestCause.test_erroneous_cause.MyException +__init__ Lib/test/test_raise.py /^ def __init__(self):$/;" m class:TestRaise.test_erroneous_exception.MyException +__init__ Lib/test/test_random.py /^ def __init__(self, items):$/;" m class:TestBasicOps.test_sample_on_seqsets.SeqSet +__init__ Lib/test/test_random.py /^ def __init__(self, newarg=None):$/;" m class:TestRandomSubclassing.test_random_subclass_with_kwargs.Subclass +__init__ Lib/test/test_range.py /^ def __init__(self, n):$/;" m class:RangeTest.test_user_index_method.I +__init__ Lib/test/test_re.py /^ def __init__(self, value):$/;" m class:ReTests.test_group.Index +__init__ Lib/test/test_reprlib.py /^ def __init__(self, s):$/;" m class:ClassWithRepr +__init__ Lib/test/test_reprlib.py /^ def __init__(self, values):$/;" m class:MyContainer +__init__ Lib/test/test_richcmp.py /^ def __init__(self, data):$/;" m class:Vector +__init__ Lib/test/test_richcmp.py /^ def __init__(self, x):$/;" m class:Number +__init__ Lib/test/test_sax.py /^ def __init__(self, test_harness, *args, **kwargs):$/;" m class:CDATAHandlerTest.test_handlers.TestCharHandler +__init__ Lib/test/test_sax.py /^ def __init__(self, test_harness, *args, **kwargs):$/;" m class:CDATAHandlerTest.test_handlers.TestLexicalHandler +__init__ Lib/test/test_sax.py /^ def __init__(self, test_harness, *args, **kwargs):$/;" m class:LexicalHandlerTest.test_handlers.TestLexicalHandler +__init__ Lib/test/test_sax.py /^ def __init__(self):$/;" m class:ExpatReaderTest.TestDTDHandler +__init__ Lib/test/test_sax.py /^ def __init__(self):$/;" m class:ExpatReaderTest.TestEntityRecorder +__init__ Lib/test/test_sax.py /^ def __init__(self, lineno, colno):$/;" m class:ErrorReportingTest.DummyLocator +__init__ Lib/test/test_sched.py /^ def __init__(self):$/;" m class:Timer +__init__ Lib/test/test_scope.py /^ def __init__(self):$/;" m class:ScopeTests.testLeaks.Foo +__init__ Lib/test/test_set.py /^ def __init__(self, arg, newarg=None):$/;" m class:TestFrozenSetSubclass.test_keywords_in_subclass.subclass_with_init +__init__ Lib/test/test_set.py /^ def __init__(self, arg, newarg=None):$/;" m class:TestSetSubclass.test_keywords_in_subclass.subclass_with_init +__init__ Lib/test/test_set.py /^ def __init__(self, value):$/;" m class:TestJointOps.test_deepcopy.Tracer +__init__ Lib/test/test_set.py /^ def __init__(self, *args):$/;" m class:HashCountingInt +__init__ Lib/test/test_set.py /^ def __init__(self, seqn):$/;" m class:E +__init__ Lib/test/test_set.py /^ def __init__(self, seqn):$/;" m class:G +__init__ Lib/test/test_set.py /^ def __init__(self, seqn):$/;" m class:I +__init__ Lib/test/test_set.py /^ def __init__(self, seqn):$/;" m class:Ig +__init__ Lib/test/test_set.py /^ def __init__(self, seqn):$/;" m class:N +__init__ Lib/test/test_set.py /^ def __init__(self, seqn):$/;" m class:S +__init__ Lib/test/test_set.py /^ def __init__(self, seqn):$/;" m class:X +__init__ Lib/test/test_shelve.py /^ def __init__(self):$/;" m class:byteskeydict +__init__ Lib/test/test_shutil.py /^ def __init__(self, raise_in_exit=False, suppress_at_exit=True):$/;" m class:TestCopyFile.Faux +__init__ Lib/test/test_site.py /^ def __init__(self, filename_base=TESTFN, imported="time",$/;" m class:PthFile +__init__ Lib/test/test_slice.py /^ def __init__(self, value):$/;" m class:MyIndexable +__init__ Lib/test/test_smtplib.py /^ def __init__(self, *args, **kw):$/;" m class:SimSMTPServer +__init__ Lib/test/test_smtplib.py /^ def __init__(self, *args, **kw):$/;" m class:SimSMTPUTF8Server +__init__ Lib/test/test_smtplib.py /^ def __init__(self, extra_features, *args, **kw):$/;" m class:SimSMTPChannel +__init__ Lib/test/test_socket.py /^ def __init__(self, fd):$/;" m class:GeneralModuleTests.test__sendfile_use_sendfile.File +__init__ Lib/test/test_socket.py /^ def __init__(self):$/;" m class:ThreadableTest +__init__ Lib/test/test_socket.py /^ def __init__(self, *args, **kwargs):$/;" m class:ISOTPTest +__init__ Lib/test/test_socket.py /^ def __init__(self, *args, **kwargs):$/;" m class:J1939Test +__init__ Lib/test/test_socket.py /^ def __init__(self, *args, **kwargs):$/;" m class:ThreadSafeCleanupTestCase +__init__ Lib/test/test_socket.py /^ def __init__(self, *args, **kwargs):$/;" m class:ThreadedSocketTestMixin +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName = 'runTest'):$/;" m class:TIPCThreadableTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:BasicSocketPairTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:BasicTCPTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:BasicUDPLITETest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:BasicUDPTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:BufferIOTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:CANTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:FileObjectClassTestCase +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:NetworkConnectionAttributesTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:NetworkConnectionBehaviourTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:NonBlockingTCPTests +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:RDSTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:SocketConnectedTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:SocketPairTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:ThreadedCANSocketTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:ThreadedRDSSocketTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:ThreadedTCPSocketTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:ThreadedUDPLITESocketTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:ThreadedUDPSocketTest +__init__ Lib/test/test_socket.py /^ def __init__(self, methodName='runTest'):$/;" m class:ThreadedVSOCKSocketStreamTest +__init__ Lib/test/test_socketserver.py /^ def __init__(self, *pos, **kw):$/;" m class:ThreadingErrorTestServer +__init__ Lib/test/test_socketserver.py /^ def __init__(self, exception):$/;" m class:BaseErrorTestServer +__init__ Lib/test/test_sort.py /^ def __init__(self, i):$/;" m class:TestBase.testStressfully.Complains +__init__ Lib/test/test_sort.py /^ def __init__(self, key, i):$/;" m class:TestBase.testStressfully.Stable +__init__ Lib/test/test_sort.py /^ def __init__(self, x):$/;" m class:TestDecorateSortUndecorate.test_key_with_mutating_del.SortKiller +__init__ Lib/test/test_sort.py /^ def __init__(self, x):$/;" m class:TestDecorateSortUndecorate.test_key_with_mutating_del_and_exception.SortKiller +__init__ Lib/test/test_sqlite3/test_dbapi.py /^ def __init__(self):$/;" m class:ClosedConTests.test_closed_create_aggregate.Agg +__init__ Lib/test/test_sqlite3/test_dbapi.py /^ def __init__(self):$/;" m class:CursorTests.test_execute_many_iterator.MyIter +__init__ Lib/test/test_sqlite3/test_dump.py /^ def __init__(self, cursor, row):$/;" m class:DumpTests.test_unorderable_row.UnorderableRow +__init__ Lib/test/test_sqlite3/test_factory.py /^ def __init__(self, *args, **kwargs):$/;" m class:ConnectionFactoryTests.test_connection_factories.DefectFactory +__init__ Lib/test/test_sqlite3/test_factory.py /^ def __init__(self, *args, **kwargs):$/;" m class:ConnectionFactoryTests.test_connection_factories.OkFactory +__init__ Lib/test/test_sqlite3/test_factory.py /^ def __init__(self, *args, **kwargs):$/;" m class:ConnectionFactoryTests.test_connection_factory_as_positional_arg.Factory +__init__ Lib/test/test_sqlite3/test_factory.py /^ def __init__(self, *args, **kwargs):$/;" m class:ConnectionFactoryTests.test_connection_factory_relayed_call.Factory +__init__ Lib/test/test_sqlite3/test_factory.py /^ def __init__(self, *args, **kwargs):$/;" m class:MyCursor +__init__ Lib/test/test_sqlite3/test_regression.py /^ def __init__(self, con):$/;" m class:RegressionTests.test_cursor_constructor_call_check.Cursor +__init__ Lib/test/test_sqlite3/test_regression.py /^ def __init__(self, name):$/;" m class:RegressionTests.test_connection_constructor_call_check.Connection +__init__ Lib/test/test_sqlite3/test_types.py /^ def __init__(self, _val):$/;" m class:DeclTypesTests.Foo +__init__ Lib/test/test_sqlite3/test_types.py /^ def __init__(self, exc):$/;" m class:DeclTypesTests.BadConform +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self): pass$/;" m class:WindowFunctionTests.test_win_error_value_return.ErrorValueReturn +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrCheckType +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrCheckTypes +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrExceptionInFinalize +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrExceptionInInit +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrExceptionInStep +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrNoFinalize +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrNoStep +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrSum +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:AggrText +__init__ Lib/test/test_sqlite3/test_userfunctions.py /^ def __init__(self):$/;" m class:WindowSumInt +__init__ Lib/test/test_ssl.py /^ def __init__(self, conn, certfile):$/;" m class:AsyncoreEchoServer.EchoServer.ConnectionHandler +__init__ Lib/test/test_ssl.py /^ def __init__(self, *, name, call_after_accept, timeout=None):$/;" m class:TestPreHandshakeClose.SingleConnectionTestServerThread +__init__ Lib/test/test_ssl.py /^ def __init__(self, certfile):$/;" m class:AsyncoreEchoServer.EchoServer +__init__ Lib/test/test_ssl.py /^ def __init__(self, server, connsock, addr):$/;" m class:ThreadedEchoServer.ConnectionHandler +__init__ Lib/test/test_ssl.py /^ def __init__(self, certfile):$/;" m class:AsyncoreEchoServer +__init__ Lib/test/test_ssl.py /^ def __init__(self, certificate=None, ssl_version=None,$/;" m class:ThreadedEchoServer +__init__ Lib/test/test_statistics.py /^ def __init__(self, mu, sigma):$/;" m class:TestNormalDist.test_equality.LognormalDist +__init__ Lib/test/test_statistics.py /^ def __init__(self, mu, sigma, n):$/;" m class:TestNormalDist.test_equality.SizedNormalDist +__init__ Lib/test/test_string.py /^ def __init__(self, namespace={}):$/;" m class:ModuleTest.test_override_get_value.NamespaceFormatter +__init__ Lib/test/test_struct.py /^ def __init__(self, value):$/;" m class:StructTest.test_integers.IntTester.run.Indexable +__init__ Lib/test/test_struct.py /^ def __init__(self, format):$/;" m class:StructTest.test_integers.IntTester +__init__ Lib/test/test_subclassinit.py /^ def __init__(self, name, bases, namespace, otherarg):$/;" m class:Test.test_errors.MyMeta +__init__ Lib/test/test_subprocess.py /^ def __init__(self, value):$/;" m class:POSIXProcessTestCase.test_fork_exec_sorted_fd_sanity_check.BadInt +__init__ Lib/test/test_subprocess.py /^ def __init__(self, *args, **kwargs):$/;" m class:MiscTests.RecordingPopen +__init__ Lib/test/test_subprocess.py /^ def __init__(self, testcase, *args, **kwargs):$/;" m class:POSIXProcessTestCase._TestExecuteChildPopen +__init__ Lib/test/test_super.py /^ def __init__(self, *args):$/;" m class:TestSuper.test_shadowed_dynamic_two_arg.MySuper +__init__ Lib/test/test_support.py /^ def __init__(self, test_id):$/;" m class:TestSupport.test_match_test.Test +__init__ Lib/test/test_sys_setprofile.py /^ def __init__(self):$/;" m class:HookWatcher +__init__ Lib/test/test_sys_setprofile.py /^ def __init__(self, testcase):$/;" m class:ProfileSimulator +__init__ Lib/test/test_sys_settrace.py /^ def __init__(self):$/;" m class:TraceTestCase.test_class_creation_with_docstrings.func.Class_1 +__init__ Lib/test/test_sys_settrace.py /^ def __init__(self, obj):$/;" m class:TraceTestCase.test_20_async_for_loop.AsyncIteratorWrapper +__init__ Lib/test/test_sys_settrace.py /^ def __init__(self, function, jumpFrom, jumpTo, event='line',$/;" m class:JumpTracer +__init__ Lib/test/test_sys_settrace.py /^ def __init__(self, output, value):$/;" m class:asynctracecontext +__init__ Lib/test/test_sys_settrace.py /^ def __init__(self, output, value):$/;" m class:tracecontext +__init__ Lib/test/test_sys_settrace.py /^ def __init__(self, trace_line_events=None, trace_opcode_events=None):$/;" m class:Tracer +__init__ Lib/test/test_tabnanny.py /^ def __init__(self, source_code='', directory=None):$/;" m class:TemporaryPyFile +__init__ Lib/test/test_tarfile.py /^ def __init__(self):$/;" m class:ArchiveMaker +__init__ Lib/test/test_telnetlib.py /^ def __init__(self):$/;" m class:MockSelector +__init__ Lib/test/test_telnetlib.py /^ def __init__(self, reads=()):$/;" m class:SocketStub +__init__ Lib/test/test_telnetlib.py /^ def __init__(self, sb_getter=None):$/;" m class:nego_collector +__init__ Lib/test/test_tempfile.py /^ def __init__(self, path):$/;" m class:TestLowLevelInternals.test_infer_return_type_pathlike.Path +__init__ Lib/test/test_tempfile.py /^ def __init__(self, dir, pre, suf):$/;" m class:TestMktemp.mktemped +__init__ Lib/test/test_tempfile.py /^ def __init__(self, dir, pre, suf, bin):$/;" m class:TestMkstempInner.mkstemped +__init__ Lib/test/test_tempfile.py /^ def __init__(self, *modules):$/;" m class:NulledModules +__init__ Lib/test/test_thread.py /^ def __init__(self, num_threads):$/;" m class:Barrier +__init__ Lib/test/test_threading.py /^ def __init__(self):$/;" m class:ThreadTests.test_boolean_target.BooleanTarget +__init__ Lib/test/test_threading.py /^ def __init__(self, should_raise):$/;" m class:ThreadTests.test_no_refcycle_through_target.RunSelfFunction +__init__ Lib/test/test_threading.py /^ def __init__(self):$/;" m class:Counter +__init__ Lib/test/test_threading.py /^ def __init__(self, name, testcase, sema, mutex, nrunning):$/;" m class:TestThread +__init__ Lib/test/test_threading_local.py /^ def __init__(self):$/;" m class:BaseLocalTest.test_derived.Local +__init__ Lib/test/test_threading_local.py /^ def __init__(self, *args, **kwargs):$/;" m class:BaseLocalTest.test_arguments.MyLocal +__init__ Lib/test/test_timeit.py /^ def __init__(self, seconds_per_increment=1.0):$/;" m class:FakeTimer +__init__ Lib/test/test_tomllib/test_data.py /^ def __init__(self, path: Path):$/;" m class:MissingFile +__init__ Lib/test/test_trace.py /^ def __init__(self, x):$/;" m class:TracedClass +__init__ Lib/test/test_traceback.py /^ def __init__(self):$/;" m class:SuggestionFormattingTestBase.test_name_error_with_instance.A +__init__ Lib/test/test_traceback.py /^ def __init__(self):$/;" m class:SuggestionFormattingTestBase.test_unbound_local_error_with_instance.A +__init__ Lib/test/test_ttk_textonly.py /^ def __init__(self, *args):$/;" m class:MockStateSpec +__init__ Lib/test/test_ttk_textonly.py /^ def __init__(self, val):$/;" m class:MockTclObj +__init__ Lib/test/test_tuple.py /^ def __init__(self, arg, newarg=None):$/;" m class:TupleTest.test_keywords_in_subclass.subclass_with_init +__init__ Lib/test/test_type_annotations.py /^ def __init__(self, name=None, bases=None, d=None):$/;" m class:TypeAnnotationTests.test_descriptor_still_works.C +__init__ Lib/test/test_types.py /^ def __init__(self, fut):$/;" m class:CoroutineTests.test_duck_functional_gen.Generator +__init__ Lib/test/test_types.py /^ def __init__(cls, name, bases, ns, **kw):$/;" m class:ClassCreationTests.Meta +__init__ Lib/test/test_typing.py /^ def __init__(self, x: 'not a type'): ...$/;" m class:GetTypeHintTests.test_respect_no_type_check.NoTpCheck.Inn +__init__ Lib/test/test_typing.py /^ def __init__(self) -> None:$/;" m class:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance.Eggs +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_init_called.B +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_init_called.C +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_none_on_callable_blocks_implementation.C +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_none_on_non_callable_doesnt_block_implementation.C +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_none_treated_correctly.CI +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_none_treated_correctly.DI +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_protocols_isinstance.C2 +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:ProtocolTests.test_super_call_init.Foo +__init__ Lib/test/test_typing.py /^ def __init__(self, arg):$/;" m class:GenericTests.test_new_no_args.C +__init__ Lib/test/test_typing.py /^ def __init__(self, arg):$/;" m class:GenericTests.test_new_with_args2.A +__init__ Lib/test/test_typing.py /^ def __init__(self, arg):$/;" m class:GenericTests.test_new_with_args2.C +__init__ Lib/test/test_typing.py /^ def __init__(self, attr):$/;" m class:ProtocolTests.test_protocols_isinstance_py36.C +__init__ Lib/test/test_typing.py /^ def __init__(self, attr: T) -> None:$/;" m class:GenericTests.test_copy_generic_instances.C +__init__ Lib/test/test_typing.py /^ def __init__(self, fget):$/;" m class:OverrideDecoratorTests.test_silent_failure.CustomProp +__init__ Lib/test/test_typing.py /^ def __init__(self, func):$/;" m class:FinalDecoratorTests.test_dunder_final.Wrapper +__init__ Lib/test/test_typing.py /^ def __init__(self, label: T):$/;" m class:ForwardRefTests.test_basics.Node +__init__ Lib/test/test_typing.py /^ def __init__(self, label: T,$/;" m class:GenericTests.test_type_erasure.Node +__init__ Lib/test/test_typing.py /^ def __init__(self, x):$/;" m class:AnnotatedTests.test_instantiate.C +__init__ Lib/test/test_typing.py /^ def __init__(self, x):$/;" m class:ProtocolTests.test_pep695_generics_can_be_runtime_checkable.Bar +__init__ Lib/test/test_typing.py /^ def __init__(self, x):$/;" m class:ProtocolTests.test_protocols_isinstance_init.C +__init__ Lib/test/test_typing.py /^ def __init__(self, x, y):$/;" m class:ProtocolTests.test_protocols_isinstance_py36.BPoint +__init__ Lib/test/test_typing.py /^ def __init__(self, x, y, label):$/;" m class:ProtocolTests.test_protocols_isinstance_py36.APoint +__init__ Lib/test/test_typing.py /^ def __init__(self, x: T) -> None:$/;" m class:ProtocolTests.test_no_weird_caching_with_issubclass_after_isinstance_pep695.Eggs +__init__ Lib/test/test_typing.py /^ def __init__(self, x: int) -> None:$/;" m class:ProtocolTests.test_concrete_class_inheriting_init_from_protocol.P +__init__ Lib/test/test_typing.py /^ def __init__(self, x: int) -> None:$/;" m class:ProtocolTests.test_protocol_defining_init_does_not_get_overridden.P +__init__ Lib/test/test_typing.py /^ def __init__(self, y):$/;" m class:ProtocolTests.test_pep695_generics_can_be_runtime_checkable.Capybara +__init__ Lib/test/test_typing.py /^ def __init__(self):$/;" m class:MySimpleMapping +__init__ Lib/test/test_typing.py /^ def __init__(self, value):$/;" m class:AwaitableWrapper +__init__ Lib/test/test_typing.py /^ def __init__(self, value: typing.Iterable[T_a]):$/;" m class:AsyncIteratorWrapper +__init__ Lib/test/test_unicode.py /^ def __init__(self):$/;" m class:UnicodeTest.test_format_map.InternalMapping +__init__ Lib/test/test_unicode.py /^ def __init__(self, sval): self.sval = sval$/;" m class:UnicodeTest.test_join.MyWrapper +__init__ Lib/test/test_unicode.py /^ def __init__(self, value):$/;" m class:UnicodeTest.test_formatting.PseudoFloat +__init__ Lib/test/test_unicode.py /^ def __init__(self, value):$/;" m class:UnicodeTest.test_formatting.PseudoInt +__init__ Lib/test/test_unicode.py /^ def __init__(self, x):$/;" m class:UnicodeTest.test_constructor.StringCompat +__init__ Lib/test/test_unicode.py /^ def __init__(self, x):$/;" m class:UnicodeTest.test_format.D +__init__ Lib/test/test_unicode.py /^ def __init__(self, x):$/;" m class:UnicodeTest.test_format.E +__init__ Lib/test/test_unicode.py /^ def __init__(self, x):$/;" m class:UnicodeTest.test_format.F +__init__ Lib/test/test_unicode.py /^ def __init__(self, x):$/;" m class:UnicodeTest.test_format.G +__init__ Lib/test/test_unicode.py /^ def __init__(self, x):$/;" m class:UnicodeTest.test_format.M +__init__ Lib/test/test_unicode.py /^ def __init__(self, x):$/;" m class:UnicodeTest.test_format.N +__init__ Lib/test/test_unicode.py /^ def __init__(self, x=100):$/;" m class:UnicodeTest.test_format.C +__init__ Lib/test/test_unicode.py /^ def __init__(self, x=100):$/;" m class:UnicodeTest.test_format_auto_numbering.C +__init__ Lib/test/test_unicode.py /^ def __init__(self, x=100):$/;" m class:UnicodeTest.test_format_map.C +__init__ Lib/test/test_unittest/support.py /^ def __init__(self):$/;" m class:BufferedWriter +__init__ Lib/test/test_unittest/support.py /^ def __init__(self):$/;" m class:ResultWithNoStartTestRunStopTestRun +__init__ Lib/test/test_unittest/support.py /^ def __init__(self, log):$/;" m class:_BaseLoggingResult +__init__ Lib/test/test_unittest/test_async_case.py /^ def __init__(self, ordering, enter_result=None):$/;" m class:TestCM +__init__ Lib/test/test_unittest/test_break.py /^ def __init__(self, *args, **kwargs):$/;" m class:TestBreak.testMainInstallsHandler.FakeRunner +__init__ Lib/test/test_unittest/test_break.py /^ def __init__(self, catchbreak):$/;" m class:TestBreak.testMainInstallsHandler.Program +__init__ Lib/test/test_unittest/test_case.py /^ def __init__(self):$/;" m class:.test_no_exception_leak.MyException +__init__ Lib/test/test_unittest/test_case.py /^ def __init__(self, events):$/;" m class:Test.LoggingTestCase +__init__ Lib/test/test_unittest/test_discovery.py /^ def __init__(self, path):$/;" m class:TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests.Module +__init__ Lib/test/test_unittest/test_discovery.py /^ def __init__(self, path):$/;" m class:TestDiscovery.test_find_tests_customize_via_package_pattern.Module +__init__ Lib/test/test_unittest/test_discovery.py /^ def __init__(self, path):$/;" m class:TestDiscovery.test_find_tests_default_calls_package_load_tests.Module +__init__ Lib/test/test_unittest/test_discovery.py /^ def __init__(self, path):$/;" m class:TestDiscovery.test_find_tests_with_package.Module +__init__ Lib/test/test_unittest/test_discovery.py /^ def __init__(self):$/;" m class:TestableTestProgram +__init__ Lib/test/test_unittest/test_program.py /^ def __init__(self, testcase):$/;" m class:Test_TestProgram.TestLoader +__init__ Lib/test/test_unittest/test_program.py /^ def __init__(self, **kwargs):$/;" m class:FakeRunner +__init__ Lib/test/test_unittest/test_program.py /^ def __init__(self, *args):$/;" m class:InitialisableProgram +__init__ Lib/test/test_unittest/test_result.py /^ def __init__(self, *args, **kwargs):$/;" m class:MockTraceback.TracebackException +__init__ Lib/test/test_unittest/test_result.py /^def __init__(self, stream=None, descriptions=None, verbosity=None):$/;" f +__init__ Lib/test/test_unittest/test_runner.py /^ def __init__(self):$/;" m class:Test_TextTestRunner.test_works_with_result_without_startTestRun_stopTestRun.Runner +__init__ Lib/test/test_unittest/test_runner.py /^ def __init__(self, events):$/;" m class:Test_TextTestRunner.test_startTestRun_stopTestRun_called.LoggingRunner +__init__ Lib/test/test_unittest/test_runner.py /^ def __init__(self, stream, descriptions, verbosity):$/;" m class:Test_TextTestRunner.test_multiple_inheritance.AResult +__init__ Lib/test/test_unittest/test_runner.py /^ def __init__(self, ordering, enter_result=None):$/;" m class:TestCM +__init__ Lib/test/test_unittest/testmock/testasync.py /^ def __init__(self):$/;" m class:AsyncContextManagerTest.ProductionCode +__init__ Lib/test/test_unittest/testmock/testasync.py /^ def __init__(self):$/;" m class:AsyncIteratorTest.WithAsyncIterator +__init__ Lib/test/test_unittest/testmock/testasync.py /^ def __init__(self): pass$/;" m class:AsyncClass +__init__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __init__(self):$/;" m class:SpecSignatureTest.test_signature_noncallable.NonCallable +__init__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __init__(self, a, b=3): pass$/;" m class:SpecSignatureTest.test_signature_class.Foo +__init__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __init__(self, value):$/;" m class:SpecSignatureTest.test_autospec_data_descriptor.Descriptor +__init__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __init__(self, x, y): pass$/;" m class:SpecSignatureTest.test_signature_callable.Callable +__init__ Lib/test/test_unittest/testmock/testmock.py /^ def __init__(self, a): pass$/;" m class:MockTest.test_assert_has_calls_nested_spec.Something.Foo +__init__ Lib/test/test_unittest/testmock/testmock.py /^ def __init__(self): pass$/;" m class:MockTest.test_assert_has_calls_nested_spec.Something +__init__ Lib/test/test_unittest/testmock/testmock.py /^ def __init__(self):$/;" m class:MockTest.test_bool_not_called_when_passing_spec_arg.Something +__init__ Lib/test/test_unittest/testmock/testmock.py /^ def __init__(self):$/;" m class:Iter +__init__ Lib/test/test_unittest/testmock/testpatch.py /^ def __init__(self, **kwargs):$/;" m class:PatchTest.test_new_callable_keyword_arguments.Bar +__init__ Lib/test/test_unittest/testmock/testpatch.py /^ def __init__(self, **kwargs):$/;" m class:PatchTest.test_new_callable_spec.Bar +__init__ Lib/test/test_unittest/testmock/testpatch.py /^ def __init__(self, a): pass$/;" m class:PatchTest.test_autospec.Boo +__init__ Lib/test/test_unittest/testmock/testpatch.py /^ def __init__(self, spec):$/;" m class:PatchTest.test_new_callable_inherit_non_mock.NotAMock +__init__ Lib/test/test_unittest/testmock/testpatch.py /^ def __init__(self):$/;" m class:Container +__init__ Lib/test/test_unittest/testmock/testpatch.py /^ def __init__(self, a): pass$/;" m class:Foo +__init__ Lib/test/test_urllib.py /^ def __init__(self, user, passwd, host, port, dirs, timeout=None,$/;" m class:FakeFTPMixin.fakeftp.FakeFtpWrapper +__init__ Lib/test/test_urllib2.py /^ def __init__(self):$/;" m class:HandlerTests.test_basic_and_digest_auth_handlers.RecordingOpenerDirector +__init__ Lib/test/test_urllib2.py /^ def __init__(self, data):$/;" m class:HandlerTests.test_ftp.MockFTPWrapper +__init__ Lib/test/test_urllib2.py /^ def __init__(self, data):$/;" m class:HandlerTests.test_ftp.NullFTPHandler +__init__ Lib/test/test_urllib2.py /^ def __init__(self, debuglevel=None, context=None, check_hostname=None):$/;" m class:MockHTTPHandlerRedirect.MockHTTPSHandler +__init__ Lib/test/test_urllib2.py /^ def __init__(self):$/;" m class:MockHTTPClass +__init__ Lib/test/test_urllib2.py /^ def __init__(self, code):$/;" m class:MockHTTPHandlerCheckAuth +__init__ Lib/test/test_urllib2.py /^ def __init__(self, code, headers):$/;" m class:MockHTTPHandlerRedirect +__init__ Lib/test/test_urllib2.py /^ def __init__(self, code, msg, headers, data, url=None):$/;" m class:MockResponse +__init__ Lib/test/test_urllib2.py /^ def __init__(self, debuglevel=None):$/;" m class:MockHTTPHandler +__init__ Lib/test/test_urllib2.py /^ def __init__(self, fp, msg, status, reason):$/;" m class:MockHTTPResponse +__init__ Lib/test/test_urllib2.py /^ def __init__(self, meth_name, action, handle):$/;" m class:FakeMethod +__init__ Lib/test/test_urllib2.py /^ def __init__(self, methods):$/;" m class:MockHandler +__init__ Lib/test/test_urllib2_localnet.py /^ def __init__(self):$/;" m class:DigestAuthHandler +__init__ Lib/test/test_urllib2_localnet.py /^ def __init__(self, *args, **kwargs):$/;" m class:BasicAuthHandler +__init__ Lib/test/test_urllib2_localnet.py /^ def __init__(self, digest_auth_handler, *args, **kwargs):$/;" m class:FakeProxyHandler +__init__ Lib/test/test_urllib2_localnet.py /^ def __init__(self, request_handler):$/;" m class:LoopbackHttpServerThread +__init__ Lib/test/test_urllib2_localnet.py /^ def __init__(self, server_address, RequestHandlerClass):$/;" m class:LoopbackHttpServer +__init__ Lib/test/test_urllib2net.py /^ def __init__(self, exc, **kwargs):$/;" m class:TransientResource +__init__ Lib/test/test_userdict.py /^ def __init__(self):$/;" m class:UserDictTest.test_missing.F +__init__ Lib/test/test_uu.py /^ def __init__(self, initial_value="", encoding="utf-8",$/;" m class:FakeIO +__init__ Lib/test/test_weakref.py /^ def __init__(self, ctr):$/;" m class:MappingTestCase.check_threaded_weak_dict_copy.DummyKey +__init__ Lib/test/test_weakref.py /^ def __init__(self, ctr):$/;" m class:MappingTestCase.check_threaded_weak_dict_copy.DummyValue +__init__ Lib/test/test_weakref.py /^ def __init__(self, i):$/;" m class:MappingTestCase.test_weak_keyed_cascading_deletes.C +__init__ Lib/test/test_weakref.py /^ def __init__(self, ob, callback, slot1, slot2):$/;" m class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef +__init__ Lib/test/test_weakref.py /^ def __init__(self, ob, callback=None, value=42):$/;" m class:SubclassableWeakrefTestCase.test_subclass_refs.MyRef +__init__ Lib/test/test_weakref.py /^ def __init__(self, parent):$/;" m class:ReferencesTestCase.test_trashcan_16602.C +__init__ Lib/test/test_weakref.py /^ def __init__(self, value):$/;" m class:ReferencesTestCase.test_callback_in_cycle_resurrection.C +__init__ Lib/test/test_weakref.py /^ def __init__(self):$/;" m class:RefCycle +__init__ Lib/test/test_weakref.py /^ def __init__(self, arg):$/;" m class:Object +__init__ Lib/test/test_weakset.py /^ def __init__(self):$/;" m class:RefCycle +__init__ Lib/test/test_with.py /^ def __init__(self, bool_conversion):$/;" m class:ExceptionalTestCase.testErrorsInBool.cm +__init__ Lib/test/test_with.py /^ def __init__(self): raise RuntimeError()$/;" m class:NestedWith.InitRaises +__init__ Lib/test/test_with.py /^ def __init__(self, value=None, gobble=False):$/;" m class:NestedWith.Dummy +__init__ Lib/test/test_with.py /^ def __init__(self):$/;" m class:MockResource +__init__ Lib/test/test_with.py /^ def __init__(self, *args):$/;" m class:MockContextManager +__init__ Lib/test/test_with.py /^ def __init__(self, *managers):$/;" m class:MockNested +__init__ Lib/test/test_with.py /^ def __init__(self, *managers):$/;" m class:Nested +__init__ Lib/test/test_wsgiref.py /^ def __init__(self, server_address, RequestHandlerClass):$/;" m class:MockServer +__init__ Lib/test/test_wsgiref.py /^ def __init__(self,**kw):$/;" m class:ErrorHandler +__init__ Lib/test/test_xml_etree.py /^ def __init__(self):$/;" m class:XMLPullParserTest.test_events_sequence.DummyIter +__init__ Lib/test/test_xml_etree.py /^ def __init__(self, raise_in=None, what=ValueError):$/;" m class:TreeBuilderTest.test_builder_lookup_errors.RaisingBuilder +__init__ Lib/test/test_xml_etree.py /^ def __init__(self, tag, attrib={}, **extra):$/;" m class:ElementTreeTypeTest.test_Element_subclass_constructor.MyElement +__init__ Lib/test/test_zipfile/_path/_itertools.py /^ def __init__(self, i):$/;" m class:Counter +__init__ Lib/test/test_zipfile/test_core.py /^ def __init__(self, fp):$/;" m class:Tellable +__init__ Lib/test/test_zipfile/test_core.py /^ def __init__(self, fp):$/;" m class:Unseekable +__init__ Lib/test/test_zoneinfo/test_zoneinfo.py /^ def __init__(self, source_json, tzpath, v1=False):$/;" m class:ZoneInfoData +__init__ Lib/textwrap.py /^ def __init__(self,$/;" m class:TextWrapper +__init__ Lib/threading.py /^ def __init__(self):$/;" m class:Event +__init__ Lib/threading.py /^ def __init__(self):$/;" m class:_DummyThread +__init__ Lib/threading.py /^ def __init__(self):$/;" m class:_MainThread +__init__ Lib/threading.py /^ def __init__(self):$/;" m class:_RLock +__init__ Lib/threading.py /^ def __init__(self, group=None, target=None, name=None,$/;" m class:Thread +__init__ Lib/threading.py /^ def __init__(self, interval, function, args=None, kwargs=None):$/;" m class:Timer +__init__ Lib/threading.py /^ def __init__(self, lock=None):$/;" m class:Condition +__init__ Lib/threading.py /^ def __init__(self, parties, action=None, timeout=None):$/;" m class:Barrier +__init__ Lib/threading.py /^ def __init__(self, value=1):$/;" m class:BoundedSemaphore +__init__ Lib/threading.py /^ def __init__(self, value=1):$/;" m class:Semaphore +__init__ Lib/timeit.py /^ def __init__(self, stmt="pass", setup="pass", timer=default_timer,$/;" m class:Timer +__init__ Lib/tkinter/__init__.py /^ def __init__(self, func, subst, widget):$/;" m class:CallWrapper +__init__ Lib/tkinter/__init__.py /^ def __init__(self, imgtype, name=None, cnf={}, master=None, **kw):$/;" m class:Image +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master, variable, value, *values, **kwargs):$/;" m class:OptionMenu +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master, widgetName, cnf={}, kw={}, extra=()):$/;" m class:BaseWidget +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Button +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Canvas +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Checkbutton +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Entry +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Frame +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Label +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:LabelFrame +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Listbox +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Menu +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Menubutton +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Message +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:PanedWindow +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Radiobutton +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Scale +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Scrollbar +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Spinbox +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Text +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Toplevel +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, value=None, name=None):$/;" m class:BooleanVar +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, value=None, name=None):$/;" m class:DoubleVar +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, value=None, name=None):$/;" m class:IntVar +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, value=None, name=None):$/;" m class:StringVar +__init__ Lib/tkinter/__init__.py /^ def __init__(self, master=None, value=None, name=None):$/;" m class:Variable +__init__ Lib/tkinter/__init__.py /^ def __init__(self, name=None, cnf={}, master=None, **kw):$/;" m class:BitmapImage +__init__ Lib/tkinter/__init__.py /^ def __init__(self, name=None, cnf={}, master=None, **kw):$/;" m class:PhotoImage +__init__ Lib/tkinter/__init__.py /^ def __init__(self, screenName=None, baseName=None, className='Tk',$/;" m class:Tk +__init__ Lib/tkinter/__init__.py /^ def __init__(self, var, value, callback=None):$/;" m class:_setit +__init__ Lib/tkinter/commondialog.py /^ def __init__(self, master=None, **options):$/;" m class:Dialog +__init__ Lib/tkinter/dialog.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Dialog +__init__ Lib/tkinter/dnd.py /^ def __init__(self, name):$/;" m class:Icon +__init__ Lib/tkinter/dnd.py /^ def __init__(self, root):$/;" m class:Tester +__init__ Lib/tkinter/dnd.py /^ def __init__(self, source, event):$/;" m class:DndHandler +__init__ Lib/tkinter/filedialog.py /^ def __init__(self, master, title=None):$/;" m class:FileDialog +__init__ Lib/tkinter/font.py /^ def __init__(self, root=None, font=None, name=None, exists=False,$/;" m class:Font +__init__ Lib/tkinter/scrolledtext.py /^ def __init__(self, master=None, **kw):$/;" m class:ScrolledText +__init__ Lib/tkinter/simpledialog.py /^ def __init__(self, *args, **kw):$/;" m class:_QueryString +__init__ Lib/tkinter/simpledialog.py /^ def __init__(self, master,$/;" m class:SimpleDialog +__init__ Lib/tkinter/simpledialog.py /^ def __init__(self, parent, title = None):$/;" m class:Dialog +__init__ Lib/tkinter/simpledialog.py /^ def __init__(self, title, prompt,$/;" m class:_QueryDialog +__init__ Lib/tkinter/tix.py /^ def __init__ (self, master=None, cnf={}, **kw):$/;" m class:ComboBox +__init__ Lib/tkinter/tix.py /^ def __init__ (self, master=None, cnf={}, **kw):$/;" m class:Control +__init__ Lib/tkinter/tix.py /^ def __init__ (self, master=None, widgetName=None,$/;" m class:TixWidget +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:DialogShell +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:HList +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:InputOnly +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:LabelEntry +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:LabelFrame +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:NoteBook +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:Shell +__init__ Lib/tkinter/tix.py /^ def __init__ (self,master=None,cnf={}, **kw):$/;" m class:TList +__init__ Lib/tkinter/tix.py /^ def __init__(self, itemtype, cnf={}, *, master=None, **kw):$/;" m class:DisplayStyle +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:DirList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:DirSelectBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:DirSelectDialog +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:DirTree +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ExFileSelectBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ExFileSelectDialog +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:FileEntry +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:FileSelectBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:FileSelectDialog +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ListNoteBook +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:OptionMenu +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:PanedWindow +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:PopupMenu +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ResizeHandle +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ScrolledHList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ScrolledListBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ScrolledTList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ScrolledText +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:ScrolledWindow +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, cnf={}, **kw):$/;" m class:Select +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=0):$/;" m class:_dummyNoteBookFrame +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyButton +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyCheckbutton +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyComboBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyDirList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyDirSelectBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyEntry +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyExFileSelectBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyFileComboBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyFileSelectBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyFrame +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyHList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyLabel +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyListbox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyMenu +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyMenubutton +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyPanedWindow +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyScrollbar +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyScrolledHList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyScrolledListBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyStdButtonBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyTList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name, destroy_physically=1):$/;" m class:_dummyText +__init__ Lib/tkinter/tix.py /^ def __init__(self, master, name,$/;" m class:TixSubWidget +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Balloon +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:ButtonBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:CheckList +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Grid +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Meter +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:ScrolledGrid +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:StdButtonBox +__init__ Lib/tkinter/tix.py /^ def __init__(self, master=None, cnf={}, **kw):$/;" m class:Tree +__init__ Lib/tkinter/tix.py /^ def __init__(self, screenName=None, baseName=None, className='Tix'):$/;" m class:Tk +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master, variable, default=None, *values, **kwargs):$/;" m class:OptionMenu +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master, widgetname, kw=None):$/;" m class:Widget +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None):$/;" m class:Style +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Button +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Checkbutton +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Combobox +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Frame +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Label +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Labelframe +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Menubutton +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Notebook +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Panedwindow +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Progressbar +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Radiobutton +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Scale +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Scrollbar +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Separator +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Sizegrip +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Spinbox +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, **kw):$/;" m class:Treeview +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, variable=None, from_=0, to=10, **kw):$/;" m class:LabeledScale +__init__ Lib/tkinter/ttk.py /^ def __init__(self, master=None, widget=None, **kw):$/;" m class:Entry +__init__ Lib/tokenize.py /^ def __init__(self):$/;" m class:Untokenizer +__init__ Lib/tomllib/_parser.py /^ def __init__(self) -> None:$/;" m class:Flags +__init__ Lib/tomllib/_parser.py /^ def __init__(self) -> None:$/;" m class:NestedDict +__init__ Lib/trace.py /^ def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0,$/;" m class:Trace +__init__ Lib/trace.py /^ def __init__(self, counts=None, calledfuncs=None, infile=None,$/;" m class:CoverageResults +__init__ Lib/trace.py /^ def __init__(self, modules=None, dirs=None):$/;" m class:_Ignore +__init__ Lib/traceback.py /^ def __init__(self):$/;" m class:_ExceptionPrintContext +__init__ Lib/traceback.py /^ def __init__(self, exc_type, exc_value, exc_traceback, *, limit=None,$/;" m class:TracebackException +__init__ Lib/traceback.py /^ def __init__(self, filename, lineno, name, *, lookup_line=True,$/;" m class:FrameSummary +__init__ Lib/tracemalloc.py /^ def __init__(self, frame):$/;" m class:Frame +__init__ Lib/tracemalloc.py /^ def __init__(self, frames, total_nframe=None):$/;" m class:Traceback +__init__ Lib/tracemalloc.py /^ def __init__(self, inclusive):$/;" m class:BaseFilter +__init__ Lib/tracemalloc.py /^ def __init__(self, inclusive, domain):$/;" m class:DomainFilter +__init__ Lib/tracemalloc.py /^ def __init__(self, inclusive, filename_pattern,$/;" m class:Filter +__init__ Lib/tracemalloc.py /^ def __init__(self, trace):$/;" m class:Trace +__init__ Lib/tracemalloc.py /^ def __init__(self, traceback, size, count):$/;" m class:Statistic +__init__ Lib/tracemalloc.py /^ def __init__(self, traceback, size, size_diff, count, count_diff):$/;" m class:StatisticDiff +__init__ Lib/tracemalloc.py /^ def __init__(self, traces):$/;" m class:_Traces +__init__ Lib/tracemalloc.py /^ def __init__(self, traces, traceback_limit):$/;" m class:Snapshot +__init__ Lib/turtle.py /^ def __init__(self):$/;" m class:_Root +__init__ Lib/turtle.py /^ def __init__(self):$/;" m class:_Screen +__init__ Lib/turtle.py /^ def __init__(self, bufsize=10):$/;" m class:Tbuffer +__init__ Lib/turtle.py /^ def __init__(self, canvas=None,$/;" m class:RawTurtle +__init__ Lib/turtle.py /^ def __init__(self, cv):$/;" m class:TurtleScreenBase +__init__ Lib/turtle.py /^ def __init__(self, cv, mode=_CFG["mode"],$/;" m class:TurtleScreen +__init__ Lib/turtle.py /^ def __init__(self, master, width=500, height=350,$/;" m class:ScrolledCanvas +__init__ Lib/turtle.py /^ def __init__(self, mode=DEFAULT_MODE):$/;" m class:TNavigator +__init__ Lib/turtle.py /^ def __init__(self, resizemode=_CFG["resizemode"]):$/;" m class:TPen +__init__ Lib/turtle.py /^ def __init__(self, screen, shapeIndex):$/;" m class:_TurtleImage +__init__ Lib/turtle.py /^ def __init__(self, type_, data=None):$/;" m class:Shape +__init__ Lib/turtle.py /^ def __init__(self,$/;" m class:Turtle +__init__ Lib/turtledemo/__main__.py /^ def __init__(self, filename=None):$/;" m class:DemoWindow +__init__ Lib/turtledemo/colormixer.py /^ def __init__(self, x, y):$/;" m class:ColorTurtle +__init__ Lib/turtledemo/minimal_hanoi.py /^ def __init__(self, n):$/;" m class:Disc +__init__ Lib/turtledemo/minimal_hanoi.py /^ def __init__(self, x):$/;" m class:Tower +__init__ Lib/turtledemo/nim.py /^ def __init__(self, game):$/;" m class:NimController +__init__ Lib/turtledemo/nim.py /^ def __init__(self, game):$/;" m class:NimModel +__init__ Lib/turtledemo/nim.py /^ def __init__(self, game):$/;" m class:NimView +__init__ Lib/turtledemo/nim.py /^ def __init__(self, row, col, game):$/;" m class:Stick +__init__ Lib/turtledemo/nim.py /^ def __init__(self, screen):$/;" m class:Nim +__init__ Lib/turtledemo/planet_and_moon.py /^ def __init__(self):$/;" m class:GravSys +__init__ Lib/turtledemo/planet_and_moon.py /^ def __init__(self, m, x, v, gravSys, shape):$/;" m class:Star +__init__ Lib/turtledemo/sorting_animate.py /^ def __init__(self, size):$/;" m class:Block +__init__ Lib/turtledemo/sorting_animate.py /^ def __init__(self, y):$/;" m class:Shelf +__init__ Lib/types.py /^ def __init__(self, fget=None, fset=None, fdel=None, doc=None):$/;" m class:DynamicClassAttribute +__init__ Lib/types.py /^ def __init__(self, gen):$/;" m class:_GeneratorWrapper +__init__ Lib/typing.py /^ def __init__($/;" m class:_DeprecatedGenericAlias +__init__ Lib/typing.py /^ def __init__(cls, *args, **kwargs):$/;" m class:_ProtocolMeta +__init__ Lib/typing.py /^ def __init__(self, arg, is_argument=True, module=None, *, is_class=False):$/;" m class:ForwardRef +__init__ Lib/typing.py /^ def __init__(self, getitem):$/;" m class:_SpecialForm +__init__ Lib/typing.py /^ def __init__(self, name, tp):$/;" m class:NewType +__init__ Lib/typing.py /^ def __init__(self, origin, *, inst=True, name=None):$/;" m class:_BaseGenericAlias +__init__ Lib/typing.py /^ def __init__(self, origin, args, *, inst=True, name=None):$/;" m class:_GenericAlias +__init__ Lib/typing.py /^ def __init__(self, origin, metadata):$/;" m class:_AnnotatedAlias +__init__ Lib/typing.py /^ def __init__(self, origin, nparams, *, inst=True, name=None):$/;" m class:_SpecialGenericAlias +__init__ Lib/unittest/_log.py /^ def __init__(self):$/;" m class:_CapturingHandler +__init__ Lib/unittest/_log.py /^ def __init__(self, test_case, logger_name, level, no_logs):$/;" m class:_AssertLogsContext +__init__ Lib/unittest/async_case.py /^ def __init__(self, methodName='runTest'):$/;" m class:IsolatedAsyncioTestCase +__init__ Lib/unittest/case.py /^ def __init__(self, expected, test_case, expected_regex=None):$/;" m class:_AssertRaisesBaseContext +__init__ Lib/unittest/case.py /^ def __init__(self, methodName='runTest'):$/;" m class:TestCase +__init__ Lib/unittest/case.py /^ def __init__(self, result=None):$/;" m class:_Outcome +__init__ Lib/unittest/case.py /^ def __init__(self, testFunc, setUp=None, tearDown=None, description=None):$/;" m class:FunctionTestCase +__init__ Lib/unittest/case.py /^ def __init__(self, test_case):$/;" m class:_BaseTestCaseContext +__init__ Lib/unittest/case.py /^ def __init__(self, test_case, message, params):$/;" m class:_SubTest +__init__ Lib/unittest/loader.py /^ def __init__(self):$/;" m class:TestLoader +__init__ Lib/unittest/loader.py /^ def __init__(self, method_name, exception):$/;" m class:_FailedTest +__init__ Lib/unittest/main.py /^ def __init__(self, module='__main__', defaultTest=None, argv=None,$/;" m class:TestProgram +__init__ Lib/unittest/mock.py /^ def __init__($/;" m class:NonCallableMock +__init__ Lib/unittest/mock.py /^ def __init__($/;" m class:_patch +__init__ Lib/unittest/mock.py /^ def __init__(self):$/;" m class:_Sentinel +__init__ Lib/unittest/mock.py /^ def __init__(self, \/, *args, **kw):$/;" m class:MagicMixin +__init__ Lib/unittest/mock.py /^ def __init__(self, \/, *args, **kwargs):$/;" m class:AsyncMockMixin +__init__ Lib/unittest/mock.py /^ def __init__(self, \/, *args, **kwargs):$/;" m class:Base +__init__ Lib/unittest/mock.py /^ def __init__(self, in_dict, values=(), clear=False, **kwargs):$/;" m class:_patch_dict +__init__ Lib/unittest/mock.py /^ def __init__(self, iterator):$/;" m class:_AsyncIterator +__init__ Lib/unittest/mock.py /^ def __init__(self, name):$/;" m class:_SentinelObject +__init__ Lib/unittest/mock.py /^ def __init__(self, name, parent):$/;" m class:MagicProxy +__init__ Lib/unittest/mock.py /^ def __init__(self, obj):$/;" m class:_MockIter +__init__ Lib/unittest/mock.py /^ def __init__(self, spec, spec_set=False, parent=None,$/;" m class:_SpecState +__init__ Lib/unittest/mock.py /^ def __init__(self, spec=None, side_effect=None, return_value=DEFAULT,$/;" m class:CallableMixin +__init__ Lib/unittest/mock.py /^ def __init__(self, value=(), name=None, parent=None, two=False,$/;" m class:_Call +__init__ Lib/unittest/result.py /^ def __init__(self, stream=None, descriptions=None, verbosity=None):$/;" m class:TestResult +__init__ Lib/unittest/runner.py /^ def __init__(self, stream, descriptions, verbosity, *, durations=None):$/;" m class:TextTestResult +__init__ Lib/unittest/runner.py /^ def __init__(self, stream=None, descriptions=True, verbosity=1,$/;" m class:TextTestRunner +__init__ Lib/unittest/runner.py /^ def __init__(self,stream):$/;" m class:_WritelnDecorator +__init__ Lib/unittest/signals.py /^ def __init__(self, default_handler):$/;" m class:_InterruptHandler +__init__ Lib/unittest/suite.py /^ def __init__(self, description):$/;" m class:_ErrorHolder +__init__ Lib/unittest/suite.py /^ def __init__(self, tests=()):$/;" m class:BaseTestSuite +__init__ Lib/urllib/error.py /^ def __init__(self, message, content):$/;" m class:ContentTooShortError +__init__ Lib/urllib/error.py /^ def __init__(self, reason, filename=None):$/;" m class:URLError +__init__ Lib/urllib/error.py /^ def __init__(self, url, code, msg, hdrs, fp):$/;" m class:HTTPError +__init__ Lib/urllib/parse.py /^ def __init__(self, safe):$/;" m class:_Quoter +__init__ Lib/urllib/request.py /^ def __init__(self, debuglevel=None, context=None, check_hostname=None):$/;" m class:.HTTPSHandler +__init__ Lib/urllib/request.py /^ def __init__(self):$/;" m class:CacheFTPHandler +__init__ Lib/urllib/request.py /^ def __init__(self):$/;" m class:HTTPPasswordMgr +__init__ Lib/urllib/request.py /^ def __init__(self):$/;" m class:OpenerDirector +__init__ Lib/urllib/request.py /^ def __init__(self, *args, **kwargs):$/;" m class:FancyURLopener +__init__ Lib/urllib/request.py /^ def __init__(self, *args, **kwargs):$/;" m class:HTTPPasswordMgrWithPriorAuth +__init__ Lib/urllib/request.py /^ def __init__(self, cookiejar=None):$/;" m class:HTTPCookieProcessor +__init__ Lib/urllib/request.py /^ def __init__(self, debuglevel=None):$/;" m class:AbstractHTTPHandler +__init__ Lib/urllib/request.py /^ def __init__(self, passwd=None):$/;" m class:AbstractDigestAuthHandler +__init__ Lib/urllib/request.py /^ def __init__(self, password_mgr=None):$/;" m class:AbstractBasicAuthHandler +__init__ Lib/urllib/request.py /^ def __init__(self, proxies=None):$/;" m class:ProxyHandler +__init__ Lib/urllib/request.py /^ def __init__(self, proxies=None, **x509):$/;" m class:URLopener +__init__ Lib/urllib/request.py /^ def __init__(self, url, data=None, headers={},$/;" m class:Request +__init__ Lib/urllib/request.py /^ def __init__(self, user, passwd, host, port, dirs, timeout=None,$/;" m class:ftpwrapper +__init__ Lib/urllib/response.py /^ def __init__(self, fp):$/;" m class:addbase +__init__ Lib/urllib/response.py /^ def __init__(self, fp, closehook, *hookargs):$/;" m class:addclosehook +__init__ Lib/urllib/response.py /^ def __init__(self, fp, headers):$/;" m class:addinfo +__init__ Lib/urllib/response.py /^ def __init__(self, fp, headers, url, code=None):$/;" m class:addinfourl +__init__ Lib/urllib/robotparser.py /^ def __init__(self):$/;" m class:Entry +__init__ Lib/urllib/robotparser.py /^ def __init__(self, path, allowance):$/;" m class:RuleLine +__init__ Lib/urllib/robotparser.py /^ def __init__(self, url=''):$/;" m class:RobotFileParser +__init__ Lib/uuid.py /^ def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,$/;" m class:UUID +__init__ Lib/venv/__init__.py /^ def __init__(self, system_site_packages=False, clear=False,$/;" m class:EnvBuilder +__init__ Lib/warnings.py /^ def __init__(self, *, record=False, module=None,$/;" m class:catch_warnings +__init__ Lib/warnings.py /^ def __init__(self, message, category, filename, lineno, file=None,$/;" m class:WarningMessage +__init__ Lib/wave.py /^ def __init__(self, f):$/;" m class:Wave_read +__init__ Lib/wave.py /^ def __init__(self, f):$/;" m class:Wave_write +__init__ Lib/wave.py /^ def __init__(self, file, align=True, bigendian=True, inclheader=False):$/;" m class:_Chunk +__init__ Lib/weakref.py /^ def __init__(self, dict=None):$/;" m class:WeakKeyDictionary +__init__ Lib/weakref.py /^ def __init__(self, ob, callback, key):$/;" m class:KeyedRef +__init__ Lib/weakref.py /^ def __init__(self, obj, func, \/, *args, **kwargs):$/;" m class:finalize +__init__ Lib/weakref.py /^ def __init__(self, other=(), \/, **kw):$/;" m class:WeakValueDictionary +__init__ Lib/webbrowser.py /^ def __init__(self, name):$/;" m class:.MacOSX +__init__ Lib/webbrowser.py /^ def __init__(self, name='default'):$/;" m class:.MacOSXOSAScript +__init__ Lib/webbrowser.py /^ def __init__(self, name):$/;" m class:GenericBrowser +__init__ Lib/webbrowser.py /^ def __init__(self, name=""):$/;" m class:BaseBrowser +__init__ Lib/wsgiref/handlers.py /^ def __init__(self):$/;" m class:CGIHandler +__init__ Lib/wsgiref/handlers.py /^ def __init__(self):$/;" m class:IISCGIHandler +__init__ Lib/wsgiref/handlers.py /^ def __init__(self,stdin,stdout,stderr,environ,$/;" m class:SimpleHandler +__init__ Lib/wsgiref/headers.py /^ def __init__(self, headers=None):$/;" m class:Headers +__init__ Lib/wsgiref/util.py /^ def __init__(self, filelike, blksize=8192):$/;" m class:FileWrapper +__init__ Lib/wsgiref/validate.py /^ def __init__(self, wsgi_errors):$/;" m class:ErrorWrapper +__init__ Lib/wsgiref/validate.py /^ def __init__(self, wsgi_input):$/;" m class:InputWrapper +__init__ Lib/wsgiref/validate.py /^ def __init__(self, wsgi_iterator):$/;" m class:PartialIteratorWrapper +__init__ Lib/wsgiref/validate.py /^ def __init__(self, wsgi_iterator, check_start_response):$/;" m class:IteratorWrapper +__init__ Lib/wsgiref/validate.py /^ def __init__(self, wsgi_writer):$/;" m class:WriteWrapper +__init__ Lib/xdrlib.py /^ def __init__(self):$/;" m class:Packer +__init__ Lib/xdrlib.py /^ def __init__(self, data):$/;" m class:Unpacker +__init__ Lib/xdrlib.py /^ def __init__(self, msg):$/;" m class:Error +__init__ Lib/xml/dom/__init__.py /^ def __init__(self, *args, **kw):$/;" m class:DOMException +__init__ Lib/xml/dom/expatbuilder.py /^ def __init__(self, builder):$/;" m class:FilterCrutch +__init__ Lib/xml/dom/expatbuilder.py /^ def __init__(self, builder):$/;" m class:Rejecter +__init__ Lib/xml/dom/expatbuilder.py /^ def __init__(self, context, options=None):$/;" m class:FragmentBuilder +__init__ Lib/xml/dom/expatbuilder.py /^ def __init__(self, filter):$/;" m class:FilterVisibilityController +__init__ Lib/xml/dom/expatbuilder.py /^ def __init__(self, options=None):$/;" m class:ExpatBuilder +__init__ Lib/xml/dom/expatbuilder.py /^ def __init__(self, tagName, model=None):$/;" m class:ElementInfo +__init__ Lib/xml/dom/minidom.py /^ def __init__(self):$/;" m class:CharacterData +__init__ Lib/xml/dom/minidom.py /^ def __init__(self):$/;" m class:Document +__init__ Lib/xml/dom/minidom.py /^ def __init__(self):$/;" m class:DocumentFragment +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, attrs, attrsNS, ownerElement):$/;" m class:NamedNodeMap +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, data):$/;" m class:Comment +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, name):$/;" m class:ElementInfo +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, name, publicId, systemId):$/;" m class:Notation +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, name, publicId, systemId, notation):$/;" m class:Entity +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, namespace, name):$/;" m class:TypeInfo +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, qName, namespaceURI=EMPTY_NAMESPACE, localName=None,$/;" m class:Attr +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, qualifiedName):$/;" m class:DocumentType +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, seq=()):$/;" m class:ReadOnlySequentialNamedNodeMap +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, tagName, namespaceURI=EMPTY_NAMESPACE, prefix=None,$/;" m class:Element +__init__ Lib/xml/dom/minidom.py /^ def __init__(self, target, data):$/;" m class:ProcessingInstruction +__init__ Lib/xml/dom/pulldom.py /^ def __init__(self, documentFactory=None):$/;" m class:PullDOM +__init__ Lib/xml/dom/pulldom.py /^ def __init__(self, stream, parser, bufsize):$/;" m class:DOMEventStream +__init__ Lib/xml/dom/xmlbuilder.py /^ def __init__(self):$/;" m class:DOMBuilder +__init__ Lib/xml/dom/xmlbuilder.py /^ def __init__(self):$/;" m class:DOMInputSource +__init__ Lib/xml/etree/ElementPath.py /^ def __init__(self, root):$/;" m class:_SelectorContext +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, *, target=None, encoding=None):$/;" m class:XMLParser +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, element=None, file=None):$/;" m class:ElementTree +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, element_factory=None, *,$/;" m class:TreeBuilder +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, events=None, *, _parser=None):$/;" m class:XMLPullParser +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, lst):$/;" m class:_ListDataStream +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, tag, attrib={}, **extra):$/;" m class:Element +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, text_or_uri, tag=None):$/;" m class:QName +__init__ Lib/xml/etree/ElementTree.py /^ def __init__(self, write, *,$/;" m class:C14NWriterTarget +__init__ Lib/xml/sax/_exceptions.py /^ def __init__(self, msg, exception, locator):$/;" m class:SAXParseException +__init__ Lib/xml/sax/_exceptions.py /^ def __init__(self, msg, exception=None):$/;" m class:SAXException +__init__ Lib/xml/sax/expatreader.py /^ def __init__(self, namespaceHandling=0, bufsize=2**16-20):$/;" m class:ExpatParser +__init__ Lib/xml/sax/expatreader.py /^ def __init__(self, parser):$/;" m class:ExpatLocator +__init__ Lib/xml/sax/handler.py /^ def __init__(self):$/;" m class:ContentHandler +__init__ Lib/xml/sax/saxutils.py /^ def __init__(self, out=None, encoding="iso-8859-1", short_empty_elements=False):$/;" m class:XMLGenerator +__init__ Lib/xml/sax/saxutils.py /^ def __init__(self, parent = None):$/;" m class:XMLFilterBase +__init__ Lib/xml/sax/xmlreader.py /^ def __init__(self):$/;" m class:XMLReader +__init__ Lib/xml/sax/xmlreader.py /^ def __init__(self, attrs):$/;" m class:AttributesImpl +__init__ Lib/xml/sax/xmlreader.py /^ def __init__(self, attrs, qnames):$/;" m class:AttributesNSImpl +__init__ Lib/xml/sax/xmlreader.py /^ def __init__(self, bufsize=2**16):$/;" m class:IncrementalParser +__init__ Lib/xml/sax/xmlreader.py /^ def __init__(self, system_id = None):$/;" m class:InputSource +__init__ Lib/xmlrpc/client.py /^ def __init__(self, call_list, name):$/;" m class:_MultiCallMethod +__init__ Lib/xmlrpc/client.py /^ def __init__(self, data=None):$/;" m class:Binary +__init__ Lib/xmlrpc/client.py /^ def __init__(self, encoding=None, allow_none=False):$/;" m class:Marshaller +__init__ Lib/xmlrpc/client.py /^ def __init__(self, faultCode, faultString, **extra):$/;" m class:Fault +__init__ Lib/xmlrpc/client.py /^ def __init__(self, response):$/;" m class:GzipDecodedResponse +__init__ Lib/xmlrpc/client.py /^ def __init__(self, results):$/;" m class:MultiCallIterator +__init__ Lib/xmlrpc/client.py /^ def __init__(self, send, name):$/;" m class:_Method +__init__ Lib/xmlrpc/client.py /^ def __init__(self, server):$/;" m class:MultiCall +__init__ Lib/xmlrpc/client.py /^ def __init__(self, target):$/;" m class:ExpatParser +__init__ Lib/xmlrpc/client.py /^ def __init__(self, uri, transport=None, encoding=None, verbose=False,$/;" m class:ServerProxy +__init__ Lib/xmlrpc/client.py /^ def __init__(self, url, errcode, errmsg, headers):$/;" m class:ProtocolError +__init__ Lib/xmlrpc/client.py /^ def __init__(self, use_datetime=False, use_builtin_types=False):$/;" m class:Unmarshaller +__init__ Lib/xmlrpc/client.py /^ def __init__(self, use_datetime=False, use_builtin_types=False,$/;" m class:SafeTransport +__init__ Lib/xmlrpc/client.py /^ def __init__(self, use_datetime=False, use_builtin_types=False,$/;" m class:Transport +__init__ Lib/xmlrpc/client.py /^ def __init__(self, value=0):$/;" m class:DateTime +__init__ Lib/xmlrpc/server.py /^ def __init__(self):$/;" m class:DocCGIXMLRPCRequestHandler +__init__ Lib/xmlrpc/server.py /^ def __init__(self):$/;" m class:XMLRPCDocGenerator +__init__ Lib/xmlrpc/server.py /^ def __init__(self, addr, requestHandler=DocXMLRPCRequestHandler,$/;" m class:DocXMLRPCServer +__init__ Lib/xmlrpc/server.py /^ def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler,$/;" m class:MultiPathXMLRPCServer +__init__ Lib/xmlrpc/server.py /^ def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler,$/;" m class:SimpleXMLRPCServer +__init__ Lib/xmlrpc/server.py /^ def __init__(self, allow_none=False, encoding=None, use_builtin_types=False):$/;" m class:CGIXMLRPCRequestHandler +__init__ Lib/xmlrpc/server.py /^ def __init__(self, allow_none=False, encoding=None,$/;" m class:SimpleXMLRPCDispatcher +__init__ Lib/zipfile/__init__.py /^ def __init__(self):$/;" m class:LZMACompressor +__init__ Lib/zipfile/__init__.py /^ def __init__(self):$/;" m class:LZMADecompressor +__init__ Lib/zipfile/__init__.py /^ def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True,$/;" m class:ZipFile +__init__ Lib/zipfile/__init__.py /^ def __init__(self, file, mode="r", compression=ZIP_STORED,$/;" m class:PyZipFile +__init__ Lib/zipfile/__init__.py /^ def __init__(self, file, pos, close, lock, writing):$/;" m class:_SharedFile +__init__ Lib/zipfile/__init__.py /^ def __init__(self, filename="NoName", date_time=(1980,1,1,0,0,0)):$/;" m class:ZipInfo +__init__ Lib/zipfile/__init__.py /^ def __init__(self, fileobj, mode, zipinfo, pwd=None,$/;" m class:ZipExtFile +__init__ Lib/zipfile/__init__.py /^ def __init__(self, fp):$/;" m class:_Tellable +__init__ Lib/zipfile/__init__.py /^ def __init__(self, zf, zinfo, zip64):$/;" m class:_ZipWriteFile +__init__ Lib/zipfile/_path/__init__.py /^ def __init__(self, *args, **kwargs):$/;" m class:InitializedState +__init__ Lib/zipfile/_path/__init__.py /^ def __init__(self, root, at=""):$/;" m class:Path +__init__ Lib/zipimport.py /^ def __init__(self, path):$/;" m class:zipimporter +__init__ Lib/zoneinfo/_common.py /^ def __init__(self, *args):$/;" m class:_TZifHeader +__init__ Lib/zoneinfo/_zoneinfo.py /^ def __init__($/;" m class:_TZStr +__init__ Lib/zoneinfo/_zoneinfo.py /^ def __init__(self, d, julian, hour=2, minute=0, second=0):$/;" m class:_DayOffset +__init__ Lib/zoneinfo/_zoneinfo.py /^ def __init__(self, m, w, d, hour=2, minute=0, second=0):$/;" m class:_CalendarOffset +__init__ Lib/zoneinfo/_zoneinfo.py /^ def __init__(self, utcoff, dstoff, tzname):$/;" m class:_ttinfo +__init__ Modules/_decimal/tests/deccheck.py /^ def __init__(self):$/;" m class:SkipHandler +__init__ Modules/_decimal/tests/deccheck.py /^ def __init__(self, c_ctx=None, p_ctx=None):$/;" m class:Context +__init__ Modules/_decimal/tests/deccheck.py /^ def __init__(self, funcname, operands):$/;" m class:TestSet +__init__ PC/layout/support/filesets.py /^ def __init__(self, *patterns):$/;" m class:FileStemSet +__init__ PC/layout/support/filesets.py /^ def __init__(self, *patterns):$/;" m class:FileSuffixSet +__init__ PC/layout/support/logging.py /^ def __init__(self, fmt, *args, **kwargs):$/;" m class:BraceMessage +__init__ Parser/asdl.py /^ def __init__(self):$/;" m class:ASDLParser +__init__ Parser/asdl.py /^ def __init__(self):$/;" m class:Check +__init__ Parser/asdl.py /^ def __init__(self):$/;" m class:VisitorBase +__init__ Parser/asdl.py /^ def __init__(self, fields, attributes=None):$/;" m class:Product +__init__ Parser/asdl.py /^ def __init__(self, msg, lineno=None):$/;" m class:ASDLSyntaxError +__init__ Parser/asdl.py /^ def __init__(self, name, dfns):$/;" m class:Module +__init__ Parser/asdl.py /^ def __init__(self, name, fields=None):$/;" m class:Constructor +__init__ Parser/asdl.py /^ def __init__(self, name, value):$/;" m class:Type +__init__ Parser/asdl.py /^ def __init__(self, type, name=None, seq=False, opt=False):$/;" m class:Field +__init__ Parser/asdl.py /^ def __init__(self, types, attributes=None):$/;" m class:Sum +__init__ Parser/asdl_c.py /^ def __init__(self, *args, **kwargs):$/;" m class:MetadataVisitor +__init__ Parser/asdl_c.py /^ def __init__(self, *visitors, metadata = None):$/;" m class:ChainOfVisitors +__init__ Parser/asdl_c.py /^ def __init__(self, file, metadata = None):$/;" m class:EmitVisitor +__init__ Tools/build/check_extension_modules.py /^ def __init__(self, cross_compiling: bool = False, strict: bool = False):$/;" m class:ModuleChecker +__init__ Tools/build/deepfreeze.py /^ def __init__(self, file: TextIO) -> None:$/;" m class:Printer +__init__ Tools/build/generate_global_objects.py /^ def __init__(self, file):$/;" m class:Printer +__init__ Tools/build/stable_abi.py /^ def __init__(self):$/;" m class:Manifest +__init__ Tools/build/umarshal.py /^ def __init__(self, **kwds: Any):$/;" m class:Code +__init__ Tools/build/umarshal.py /^ def __init__(self, data: bytes):$/;" m class:Reader +__init__ Tools/c-analyzer/c_analyzer/analyze.py /^ def __init__(self):$/;" m class:Skipped +__init__ Tools/c-analyzer/c_analyzer/info.py /^ def __init__(self, item, typedecl=None, **extra):$/;" m class:Analyzed +__init__ Tools/c-analyzer/c_analyzer/info.py /^ def __init__(self, items=None):$/;" m class:Analysis +__init__ Tools/c-analyzer/c_analyzer/info.py /^ def __init__(self, name):$/;" m class:SystemType +__init__ Tools/c-analyzer/c_common/clsutil.py /^ def __init__(self, initial=_NOT_SET, *,$/;" m class:Slot +__init__ Tools/c-analyzer/c_common/clsutil.py /^ def __init__(self, value):$/;" m class:classonly +__init__ Tools/c-analyzer/c_common/logging.py /^ def __init__(self, verbosity=VERBOSITY):$/;" m class:Printer +__init__ Tools/c-analyzer/c_common/misc.py /^ def __init__(self, label):$/;" m class:Labeled +__init__ Tools/c-analyzer/c_common/scriptutil.py /^ def __init__(self, values, possible):$/;" m class:UnsupportedSelectionError +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, decls):$/;" m class:Declarations +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None):$/;" m class:Enum +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None):$/;" m class:Statement +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None):$/;" m class:TypeDef +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None):$/;" m class:_StructUnion +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None, *, _shortkey=None):$/;" m class:TypeDeclaration +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None, *,$/;" m class:HighlevelParsedItem +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None, storage=None):$/;" m class:Function +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, file, name, data, parent=None, storage=None):$/;" m class:Variable +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, name):$/;" m class:POTSType +__init__ Tools/c-analyzer/c_parser/info.py /^ def __init__(self, vartype):$/;" m class:FuncPtr +__init__ Tools/c-analyzer/c_parser/parser/_info.py /^ def __init__(self, filename, _current=None):$/;" m class:SourceInfo +__init__ Tools/c-analyzer/c_parser/parser/_info.py /^ def __init__(self, text, start=None, end=None):$/;" m class:TextInfo +__init__ Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def __init__(self, filename, argv, error, *args, **kwargs):$/;" m class:ErrorDirectiveError +__init__ Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def __init__(self, filename, argv, error=None, preprocessor=None):$/;" m class:PreprocessorFailure +__init__ Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def __init__(self, filename, expected=None, *args, **kwargs):$/;" m class:OSMismatchError +__init__ Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def __init__(self, filename, missing=None, *args, **kwargs):$/;" m class:MissingDependenciesError +__init__ Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def __init__(self, filename, preprocessor=None, reason=None):$/;" m class:PreprocessorError +__init__ Tools/c-analyzer/cpython/_analyzer.py /^ def __init__(self, item, typedecl=None, *, unsupported=None, **extra):$/;" m class:Analyzed +__init__ Tools/c-analyzer/distutils/_msvccompiler.py /^ def __init__(self, verbose=0, dry_run=0, force=0):$/;" m class:MSVCCompiler +__init__ Tools/c-analyzer/distutils/bcppcompiler.py /^ def __init__ (self,$/;" m class:BCPPCompiler +__init__ Tools/c-analyzer/distutils/ccompiler.py /^ def __init__(self, verbose=0, dry_run=0, force=0):$/;" m class:CCompiler +__init__ Tools/c-analyzer/distutils/cygwinccompiler.py /^ def __init__(self, verbose=0, dry_run=0, force=0):$/;" m class:CygwinCCompiler +__init__ Tools/c-analyzer/distutils/cygwinccompiler.py /^ def __init__(self, verbose=0, dry_run=0, force=0):$/;" m class:Mingw32CCompiler +__init__ Tools/c-analyzer/distutils/log.py /^ def __init__(self, threshold=WARN):$/;" m class:Log +__init__ Tools/c-analyzer/distutils/msvc9compiler.py /^ def __init__(self, verbose=0, dry_run=0, force=0):$/;" m class:MSVCCompiler +__init__ Tools/c-analyzer/distutils/msvc9compiler.py /^ def __init__(self, version):$/;" m class:MacroExpander +__init__ Tools/c-analyzer/distutils/msvccompiler.py /^ def __init__(self, verbose=0, dry_run=0, force=0):$/;" m class:MSVCCompiler +__init__ Tools/c-analyzer/distutils/msvccompiler.py /^ def __init__(self, version):$/;" m class:MacroExpander +__init__ Tools/cases_generator/generate_cases.py /^ def __init__($/;" m class:Formatter +__init__ Tools/cases_generator/generate_cases.py /^ def __init__(self, input_filenames: list[str], output_filename: str, metadata_filename: str):$/;" m class:Analyzer +__init__ Tools/cases_generator/generate_cases.py /^ def __init__(self, inst: parser.InstDef):$/;" m class:Instruction +__init__ Tools/cases_generator/plexer.py /^ def __init__(self, src: str, filename: str):$/;" m class:PLexer +__init__ Tools/ccbench/ccbench.py /^ def __init__(self, func, args):$/;" m class:TimedLoop +__init__ Tools/clinic/clinic.py /^ def __init__($/;" m class:CReturnConverter +__init__ Tools/clinic/clinic.py /^ def __init__($/;" m class:CReturnConverterAutoRegister +__init__ Tools/clinic/clinic.py /^ def __init__($/;" m class:Class +__init__ Tools/clinic/clinic.py /^ def __init__($/;" m class:Clinic +__init__ Tools/clinic/clinic.py /^ def __init__($/;" m class:Function +__init__ Tools/clinic/clinic.py /^ def __init__($/;" m class:Module +__init__ Tools/clinic/clinic.py /^ def __init__($/;" m class:Parameter +__init__ Tools/clinic/clinic.py /^ def __init__(cls, name, bases, classdict):$/;" m class:CConverterAutoRegister +__init__ Tools/clinic/clinic.py /^ def __init__(self):$/;" m class:BufferSeries +__init__ Tools/clinic/clinic.py /^ def __init__(self):$/;" m class:CRenderData +__init__ Tools/clinic/clinic.py /^ def __init__(self):$/;" m class:FormatCounterFormatter +__init__ Tools/clinic/clinic.py /^ def __init__(self):$/;" m class:IndentStack +__init__ Tools/clinic/clinic.py /^ def __init__(self, clinic: Clinic) -> None:$/;" m class:DSLParser +__init__ Tools/clinic/clinic.py /^ def __init__(self, clinic: Clinic) -> None:$/;" m class:PythonParser +__init__ Tools/clinic/clinic.py /^ def __init__(self, filename):$/;" m class:CLanguage +__init__ Tools/clinic/clinic.py /^ def __init__(self, filename):$/;" m class:Language +__init__ Tools/clinic/clinic.py /^ def __init__(self, input, dsl_name=None, signatures=None, output=None, indent='', preindent=''):$/;" m class:Block +__init__ Tools/clinic/clinic.py /^ def __init__(self, input, language, *, verify=True):$/;" m class:BlockParser +__init__ Tools/clinic/clinic.py /^ def __init__(self, language, f=None):$/;" m class:BlockPrinter +__init__ Tools/clinic/clinic.py /^ def __init__(self, message: str) -> None:$/;" m class:LandMine +__init__ Tools/clinic/clinic.py /^ def __init__(self, name, type, clinic, *args):$/;" m class:Destination +__init__ Tools/clinic/clinic.py /^ def __init__(self,$/;" m class:CConverter +__init__ Tools/clinic/cpp.py /^ def __init__(self, filename: str | None = None, *, verbose: bool = False) -> None:$/;" m class:Monitor +__init__ Tools/freeze/checkextensions_win32.py /^ def __init__(self, name, sourceFiles):$/;" m class:CExtension +__init__ Tools/gdb/libpython.py /^ def __init__(self, tp_name, address):$/;" m class:PyObjectPtr.proxyval.FakeRepr +__init__ Tools/gdb/libpython.py /^ def __init__ (self, gdbval):$/;" m class:PyObjectPtrPrinter +__init__ Tools/gdb/libpython.py /^ def __init__(self):$/;" m class:PyBacktrace +__init__ Tools/gdb/libpython.py /^ def __init__(self):$/;" m class:PyBacktraceFull +__init__ Tools/gdb/libpython.py /^ def __init__(self):$/;" m class:PyDown +__init__ Tools/gdb/libpython.py /^ def __init__(self):$/;" m class:PyList +__init__ Tools/gdb/libpython.py /^ def __init__(self):$/;" m class:PyLocals +__init__ Tools/gdb/libpython.py /^ def __init__(self):$/;" m class:PyPrint +__init__ Tools/gdb/libpython.py /^ def __init__(self):$/;" m class:PyUp +__init__ Tools/gdb/libpython.py /^ def __init__(self, cl_name, attrdict, address):$/;" m class:InstanceProxy +__init__ Tools/gdb/libpython.py /^ def __init__(self, gdbframe):$/;" m class:Frame +__init__ Tools/gdb/libpython.py /^ def __init__(self, gdbval):$/;" m class:PyFramePtr +__init__ Tools/gdb/libpython.py /^ def __init__(self, gdbval, cast_to=None):$/;" m class:PyFrameObjectPtr +__init__ Tools/gdb/libpython.py /^ def __init__(self, gdbval, cast_to=None):$/;" m class:PyObjectPtr +__init__ Tools/gdb/libpython.py /^ def __init__(self, keys, values):$/;" m class:PyKeysValuesPair +__init__ Tools/gdb/libpython.py /^ def __init__(self, maxlen=None):$/;" m class:TruncatedStringIO +__init__ Tools/gdb/libpython.py /^ def __init__(self, ml_name):$/;" m class:BuiltInFunctionProxy +__init__ Tools/gdb/libpython.py /^ def __init__(self, ml_name, pyop_m_self):$/;" m class:BuiltInMethodProxy +__init__ Tools/gdb/libpython.py /^ def __init__(self, rep):$/;" m class:ProxyAlreadyVisited +__init__ Tools/gdb/libpython.py /^ def __init__(self, tp_name, args):$/;" m class:ProxyException +__init__ Tools/i18n/pygettext.py /^ def __init__(self, options):$/;" m class:TokenEater +__init__ Tools/patchcheck/reindent.py /^ def __init__(self, f):$/;" m class:Reindenter +__init__ Tools/peg_generator/pegen/c_generator.py /^ def __init__($/;" m class:CCallMakerVisitor +__init__ Tools/peg_generator/pegen/c_generator.py /^ def __init__($/;" m class:CParserGenerator +__init__ Tools/peg_generator/pegen/first_sets.py /^ def __init__(self, rules: Dict[str, Rule]) -> None:$/;" m class:FirstSetCalculator +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self) -> None:$/;" m class:Cut +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, alts: List[Alt]):$/;" m class:Rhs +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, items: List[NamedItem], *, icut: int = -1, action: Optional[str] = None):$/;" m class:Alt +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, name: Optional[str], item: Item, type: Optional[str] = None):$/;" m class:NamedItem +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, name: str, type: Optional[str], rhs: Rhs, memo: Optional[object] = None):$/;" m class:Rule +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, node: Item):$/;" m class:Opt +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, node: Plain):$/;" m class:Forced +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, node: Plain):$/;" m class:NegativeLookahead +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, node: Plain):$/;" m class:PositiveLookahead +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, node: Plain):$/;" m class:Repeat +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, node: Plain, sign: str):$/;" m class:Lookahead +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, rhs: Rhs):$/;" m class:Group +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, rules: Iterable[Rule], metas: Iterable[Tuple[str, Optional[str]]]):$/;" m class:Grammar +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, separator: Plain, node: Plain):$/;" m class:Gather +__init__ Tools/peg_generator/pegen/grammar.py /^ def __init__(self, value: str):$/;" m class:Leaf +__init__ Tools/peg_generator/pegen/parser.py /^ def __init__(self, tokenizer: Tokenizer, *, verbose: bool = False):$/;" m class:Parser +__init__ Tools/peg_generator/pegen/parser_generator.py /^ def __init__(self, gen: "ParserGenerator", keywords: Dict[str, int], soft_keywords: Set[str]):$/;" m class:KeywordCollectorVisitor +__init__ Tools/peg_generator/pegen/parser_generator.py /^ def __init__(self, grammar: Grammar, tokens: Set[str], file: Optional[IO[Text]]):$/;" m class:ParserGenerator +__init__ Tools/peg_generator/pegen/parser_generator.py /^ def __init__(self, rules: Dict[str, Rule]) -> None:$/;" m class:InitialNamesVisitor +__init__ Tools/peg_generator/pegen/parser_generator.py /^ def __init__(self, rules: Dict[str, Rule]) -> None:$/;" m class:NullableVisitor +__init__ Tools/peg_generator/pegen/parser_generator.py /^ def __init__(self, rules: Dict[str, Rule], callmakervisitor: GrammarVisitor) -> None:$/;" m class:RuleCollectorVisitor +__init__ Tools/peg_generator/pegen/parser_generator.py /^ def __init__(self, rules: Dict[str, Rule], tokens: Set[str]):$/;" m class:RuleCheckingVisitor +__init__ Tools/peg_generator/pegen/python_generator.py /^ def __init__($/;" m class:PythonParserGenerator +__init__ Tools/peg_generator/pegen/python_generator.py /^ def __init__(self, parser_generator: ParserGenerator):$/;" m class:PythonCallMakerVisitor +__init__ Tools/peg_generator/pegen/tokenizer.py /^ def __init__($/;" m class:Tokenizer +__init__ Tools/peg_generator/pegen/validator.py /^ def __init__(self, grammar: grammar.Grammar) -> None:$/;" m class:GrammarValidator +__init__ Tools/peg_generator/scripts/joinstats.py /^ def __init__(self, filename: str) -> None:$/;" m class:TypeMapper +__init__ Tools/scripts/summarize_stats.py /^ def __init__(self, title, level=2, summary=None):$/;" m class:Section +__init__ Tools/scripts/var_access_benchmark.py /^ def __init__(self, x):$/;" m class:B +__init__ Tools/scripts/var_access_benchmark.py /^ def __init__(self, x):$/;" m class:C +__init__ Tools/ssl/multissltests.py /^ def __init__(self, version, args):$/;" m class:AbstractBuilder +__init__ Tools/tz/zdump.py /^ def __init__(self, transitions, type_indices, ttis, abbrs):$/;" m class:TZInfo +__init__ Tools/unicode/genmap_support.py /^ def __init__(self, column=78):$/;" m class:BufferedFiller +__init__ Tools/unicode/genmap_support.py /^ def __init__(self, fp, prefix, decode_map):$/;" m class:DecodeMapWriter +__init__ Tools/unicode/genmap_support.py /^ def __init__(self, fp, prefix, encode_map):$/;" m class:EncodeMapWriter +__init__ Tools/unicode/genmap_tchinese.py /^ def __init__(self, fp, prefix, isbmpmap):$/;" m class:HintsWriter +__init__ Tools/unicode/makeunicodedata.py /^ def __init__(self, name, data):$/;" m class:Array +__init__ Tools/unicode/makeunicodedata.py /^ def __init__(self, name, data, magic):$/;" m class:Hash +__init__ Tools/unicode/makeunicodedata.py /^ def __init__(self, template: str, version: str) -> None:$/;" m class:UcdFile +__init__ Tools/unicode/makeunicodedata.py /^ def __init__(self, version, cjk_check=True):$/;" m class:UnicodeData +__init__ Tools/unittestgui/unittestgui.py /^ def __init__(self):$/;" m class:RollbackImporter +__init__ Tools/unittestgui/unittestgui.py /^ def __init__(self, *args, **kwargs):$/;" m class:BaseGUITestRunner +__init__ Tools/unittestgui/unittestgui.py /^ def __init__(self, *args, **kwargs):$/;" m class:ProgressBar +__init__ Tools/unittestgui/unittestgui.py /^ def __init__(self, callback):$/;" m class:GUITestResult +__init__ Tools/unittestgui/unittestgui.py /^ def __init__(self, master, top_level_dir, test_file_glob_pattern, *args, **kwargs):$/;" m class:DiscoverSettingsDialog +__init__ Tools/wasm/wasm_build.py /^ def __init__(self, info: str, text: str):$/;" m class:ConditionError +__init_subclass__ Lib/asyncio/unix_events.py /^ def __init_subclass__(cls) -> None:$/;" m class:AbstractChildWatcher file: +__init_subclass__ Lib/random.py /^ def __init_subclass__(cls, \/, **kwargs):$/;" m class:Random file: +__init_subclass__ Lib/string.py /^ def __init_subclass__(cls):$/;" m class:Template file: +__init_subclass__ Lib/test/test_abc.py /^ def __init_subclass__(cls, **kwargs):$/;" m class:test_factory.TestABCWithInitSubclass.test_positional_only_and_kwonlyargs_with_init_subclass.A file: +__init_subclass__ Lib/test/test_abc.py /^ def __init_subclass__(cls, **kwargs):$/;" m class:test_factory.TestABCWithInitSubclass.test_works_with_init_subclass.ReceivesClassKwargs file: +__init_subclass__ Lib/test/test_ctypes/test_struct_fields.py /^ def __init_subclass__(cls, **kwargs):$/;" m class:StructFieldsTestCase.test_gh99275.BrokenStructure file: +__init_subclass__ Lib/test/test_enum.py /^ def __init_subclass__(cls, **kwds):$/;" m class:OldTestFlag.test_init_subclass.MyEnum file: +__init_subclass__ Lib/test/test_enum.py /^ def __init_subclass__(cls, **kwds):$/;" m class:OldTestFlag.test_init_subclass.OurEnum file: +__init_subclass__ Lib/test/test_enum.py /^ def __init_subclass__(cls, **kwds):$/;" m class:OldTestFlag.test_init_subclass.TheirEnum file: +__init_subclass__ Lib/test/test_enum.py /^ def __init_subclass__(cls, **kwds):$/;" m class:OldTestFlag.test_init_subclass.WhereEnum file: +__init_subclass__ Lib/test/test_enum.py /^ def __init_subclass__(cls, **kwds):$/;" m class:OldTestFlag.test_init_subclass.WhoseEnum file: +__init_subclass__ Lib/test/test_genericclass.py /^ def __init_subclass__(cls):$/;" m class:TestClassGetitem.test_class_getitem_patched.C file: +__init_subclass__ Lib/test/test_inspect.py /^ def __init_subclass__(cls):$/;" m class:TestPredicates.test_isabstract_during_init_subclass.AbstractChecker file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls):$/;" m class:Test.test_init_subclass.A file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls):$/;" m class:Test.test_init_subclass_dict.A file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls):$/;" m class:Test.test_init_subclass_error.A file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls):$/;" m class:Test.test_set_name_init_subclass.A file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls, **kwargs):$/;" m class:Test.test_init_subclass_diamond.Base file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls, **kwargs):$/;" m class:Test.test_init_subclass_kwargs.A file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls, **kwargs):$/;" m class:Test.test_init_subclass_skipped.BaseWithInit file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls, middle, **kwargs):$/;" m class:Test.test_init_subclass_diamond.Middle file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls, right="right", **kwargs):$/;" m class:Test.test_init_subclass_diamond.Right file: +__init_subclass__ Lib/test/test_subclassinit.py /^ def __init_subclass__(cls, whatever):$/;" m class:Test.test_init_subclass_wrong.A file: +__init_subclass__ Lib/test/test_super.py /^ def __init_subclass__(cls):$/;" m class:TestSuper.test_reassigned_new.A file: +__init_subclass__ Lib/test/test_type_params.py /^ def __init_subclass__(cls, **kwargs) -> None:$/;" m class:TypeParamsComplexCallsTest.test_complex_base.Base file: +__init_subclass__ Lib/test/test_typing.py /^ def __init_subclass__(cls, **kwargs) -> None:$/;" m class:GenericTests.test_init_subclass_super_called.Final file: +__init_subclass__ Lib/test/test_typing.py /^ def __init_subclass__(cls, **kwargs):$/;" m class:GenericTests.test_init_subclass.X file: +__init_subclass__ Lib/test/test_typing.py /^ def __init_subclass__(cls, *, frozen: bool = False): ...$/;" m class:DataclassTransformTests.test_base_class.ModelBase file: +__init_subclass__ Lib/typing.py /^ def __init_subclass__(cls):$/;" m class:NewType.__mro_entries__.Dummy file: +__init_subclass__ Lib/typing.py /^ def __init_subclass__(cls, *args, **kwargs):$/;" m class:Annotated file: +__init_subclass__ Lib/typing.py /^ def __init_subclass__(cls, *args, **kwargs):$/;" m class:Protocol file: +__init_subclass__ Lib/typing.py /^ def __init_subclass__(cls, \/, *args, **kwds):$/;" m class:_Final file: +__init_subclass__ Lib/unittest/case.py /^ def __init_subclass__(cls, *args, **kwargs):$/;" m class:TestCase file: +__init_subclass__ Lib/zoneinfo/_zoneinfo.py /^ def __init_subclass__(cls):$/;" m class:ZoneInfo file: +__instancecheck__ Lib/_collections_abc.py /^ def __instancecheck__(cls, instance):$/;" m class:_DeprecateByteStringMeta file: +__instancecheck__ Lib/_py_abc.py /^ def __instancecheck__(cls, instance):$/;" m class:ABCMeta file: +__instancecheck__ Lib/abc.py /^ def __instancecheck__(cls, instance):$/;" m class:.ABCMeta file: +__instancecheck__ Lib/ast.py /^ def __instancecheck__(cls, inst):$/;" m class:_ABC file: +__instancecheck__ Lib/test/test_typechecks.py /^ def __instancecheck__(cls, inst):$/;" m class:ABC file: +__instancecheck__ Lib/test/test_types.py /^ def __instancecheck__(cls, inst):$/;" m class:UnionTests.test_bad_instancecheck.BadMeta file: +__instancecheck__ Lib/typing.py /^ __instancecheck__ = __subclasscheck__$/;" v class:_TypedDictMeta +__instancecheck__ Lib/typing.py /^ def __instancecheck__(cls, instance):$/;" m class:_ProtocolMeta file: +__instancecheck__ Lib/typing.py /^ def __instancecheck__(self, inst):$/;" m class:_DeprecatedGenericAlias file: +__instancecheck__ Lib/typing.py /^ def __instancecheck__(self, obj):$/;" m class:_AnyMeta file: +__instancecheck__ Lib/typing.py /^ def __instancecheck__(self, obj):$/;" m class:_BaseGenericAlias file: +__instancecheck__ Lib/typing.py /^ def __instancecheck__(self, obj):$/;" m class:_SpecialForm file: +__instancecheck__ Lib/typing.py /^ def __instancecheck__(self, obj):$/;" m class:_UnionGenericAlias file: +__int16_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__int16_t = c_short$/;" v +__int32_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__int32_t = c_int$/;" v +__int64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__int64_t = c_longlong$/;" v +__int8_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__int8_t = c_byte$/;" v +__int__ Lib/_pydecimal.py /^ def __int__(self):$/;" m class:Decimal file: +__int__ Lib/collections/__init__.py /^ def __int__(self):$/;" m class:UserString file: +__int__ Lib/fractions.py /^ def __int__(a, _index=operator.index):$/;" m class:Fraction file: +__int__ Lib/ipaddress.py /^ def __int__(self):$/;" m class:_BaseAddress file: +__int__ Lib/numbers.py /^ def __int__(self):$/;" m class:Integral file: +__int__ Lib/test/datetimetester.py /^ def __int__(self):$/;" m class:Oddballs.test_check_arg_types.Number file: +__int__ Lib/test/test_array.py /^ def __int__(self):$/;" m class:Intable file: +__int__ Lib/test/test_binop.py /^ def __int__(self):$/;" m class:Rat file: +__int__ Lib/test/test_buffer.py /^ def __int__(self):$/;" m class:TestBufferProtocol.test_memoryview_struct_module.INT file: +__int__ Lib/test/test_capi/test_getargs.py /^ def __int__(self):$/;" m class:BadInt file: +__int__ Lib/test/test_capi/test_getargs.py /^ def __int__(self):$/;" m class:BadInt2 file: +__int__ Lib/test/test_capi/test_getargs.py /^ def __int__(self):$/;" m class:BadInt3 file: +__int__ Lib/test/test_capi/test_getargs.py /^ def __int__(self):$/;" m class:Int file: +__int__ Lib/test/test_capi/test_getargs.py /^ def __int__(self):$/;" m class:IntSubclass file: +__int__ Lib/test/test_class.py /^ def __int__(self):$/;" m class:ClassTests.testBadTypeReturned.BadTypeClass file: +__int__ Lib/test/test_cmath.py /^ def __int__(self): return 2$/;" m class:CMathTests.test_user_object.Index file: +__int__ Lib/test/test_cmath.py /^ def __int__(self): return 2$/;" m class:CMathTests.test_user_object.MyInt file: +__int__ Lib/test/test_complex.py /^ def __int__(self):$/;" m class:ComplexTest.test_constructor.MyInt file: +__int__ Lib/test/test_ctypes/test_numbers.py /^ def __int__(self):$/;" m class:NumberTestCase.test_integers.IntLike file: +__int__ Lib/test/test_descr.py /^ def __int__(self):$/;" m class:ClassPropertiesAndMethods.test_multiple_inheritance.Node file: +__int__ Lib/test/test_enum.py /^ def __int__(self):$/;" m class:TestSpecial.test_duplicate_values_give_unique_enum_items.AutoNumber file: +__int__ Lib/test/test_enum.py /^ def __int__(self):$/;" m class:TestSpecial.test_flufl_enum.Fluflnum file: +__int__ Lib/test/test_enum.py /^ def __int__(self):$/;" m class:TestSpecial.test_inherited_new_from_enhanced_enum.AutoNumber file: +__int__ Lib/test/test_float.py /^ def __int__(self):$/;" m class:GeneralFloatCases.test_floatconversion.MyInt file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.BadInt file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.Intable file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_intconversion.Classic.IntOverridesTrunc file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_int_returns_int_subclass.BadInt file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_int_returns_int_subclass.BadInt2 file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_int_subclass_with_int.BadInt file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_int_subclass_with_int.MyInt file: +__int__ Lib/test/test_int.py /^ def __int__(self):$/;" m class:IntTestCases.test_intconversion.Foo0 file: +__int__ Lib/test/test_memoryio.py /^ __int__ = __index__$/;" v class:IntLike +__int__ Lib/test/test_range.py /^ def __int__(self): return 1$/;" m class:RangeTest.test_types.C2 file: +__int__ Lib/test/test_struct.py /^ def __int__(self):$/;" m class:StructTest.test_integers.IntTester.run.BadIndex file: +__int__ Lib/test/test_struct.py /^ def __int__(self):$/;" m class:StructTest.test_integers.IntTester.run.NotAnInt file: +__int__ Lib/test/test_subprocess.py /^ def __int__(self):$/;" m class:POSIXProcessTestCase.test_fork_exec_sorted_fd_sanity_check.BadInt file: +__int__ Lib/test/test_typing.py /^ def __int__(self) -> int:$/;" m class:ProtocolTests.test_bundled_protocol_instance_works.C1 file: +__int__ Lib/test/test_unicode.py /^ def __int__(self):$/;" m class:UnicodeTest.test_formatting.PseudoFloat file: +__int__ Lib/test/test_unicode.py /^ def __int__(self):$/;" m class:UnicodeTest.test_formatting.PseudoInt file: +__int__ Lib/test/test_unicode.py /^ def __int__(self):$/;" m class:UnicodeTest.test_formatting.RaisingNumber file: +__int__ Lib/typing.py /^ def __int__(self) -> int:$/;" m class:SupportsInt file: +__int__ Lib/uuid.py /^ def __int__(self):$/;" m class:UUID file: +__internal_Hacl_Hash_MD5_H Modules/_hacl/internal/Hacl_Hash_MD5.h 27;" d +__internal_Hacl_Hash_MD5_H_DEFINED Modules/_hacl/internal/Hacl_Hash_MD5.h 60;" d +__internal_Hacl_Hash_SHA1_H Modules/_hacl/internal/Hacl_Hash_SHA1.h 27;" d +__internal_Hacl_Hash_SHA1_H_DEFINED Modules/_hacl/internal/Hacl_Hash_SHA1.h 60;" d +__internal_Hacl_Hash_SHA2_H Modules/_hacl/internal/Hacl_Hash_SHA2.h 27;" d +__internal_Hacl_Hash_SHA2_H_DEFINED Modules/_hacl/internal/Hacl_Hash_SHA2.h 183;" d +__internal_Hacl_Hash_SHA3_H Modules/_hacl/internal/Hacl_Hash_SHA3.h 27;" d +__internal_Hacl_Hash_SHA3_H_DEFINED Modules/_hacl/internal/Hacl_Hash_SHA3.h 64;" d +__inv__ Lib/operator.py /^__inv__ = inv$/;" v +__invert__ Lib/enum.py /^ def __invert__(self):$/;" m class:Flag file: +__invert__ Lib/numbers.py /^ def __invert__(self):$/;" m class:Integral file: +__invert__ Lib/operator.py /^__invert__ = invert$/;" v +__ior__ Lib/_collections_abc.py /^ def __ior__(self, it):$/;" m class:MutableSet file: +__ior__ Lib/_weakrefset.py /^ def __ior__(self, other):$/;" m class:WeakSet file: +__ior__ Lib/collections/__init__.py /^ def __ior__(self, other):$/;" m class:ChainMap file: +__ior__ Lib/collections/__init__.py /^ def __ior__(self, other):$/;" m class:Counter file: +__ior__ Lib/collections/__init__.py /^ def __ior__(self, other):$/;" m class:OrderedDict file: +__ior__ Lib/collections/__init__.py /^ def __ior__(self, other):$/;" m class:UserDict file: +__ior__ Lib/operator.py /^__ior__ = ior$/;" v +__ior__ Lib/os.py /^ def __ior__(self, other):$/;" m class:_Environ file: +__ior__ Lib/test/test_augassign.py /^ def __ior__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__ior__ Lib/test/test_operator.py /^ def __ior__ (self, other): return "ior"$/;" m class:OperatorTestCase.test_inplace.C file: +__ior__ Lib/test/test_typing.py /^ def __ior__(self, other: "Const[MySet[T]]") -> "MySet[T]":$/;" m class:GetTypeHintTests.test_get_type_hints_annotated_refs.MySet file: +__ior__ Lib/weakref.py /^ def __ior__(self, other):$/;" m class:WeakKeyDictionary file: +__ior__ Lib/weakref.py /^ def __ior__(self, other):$/;" m class:WeakValueDictionary file: +__ipow__ Lib/operator.py /^__ipow__ = ipow$/;" v +__ipow__ Lib/test/test_augassign.py /^ def __ipow__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__ipow__ Lib/test/test_descr.py /^ def __ipow__(self, other):$/;" m class:.test_ipow.C file: +__ipow__ Lib/test/test_descr.py /^ def __ipow__(self, other):$/;" m class:.test_ipow_returns_not_implemented.A file: +__ipow__ Lib/test/test_operator.py /^ def __ipow__ (self, other): return "ipow"$/;" m class:OperatorTestCase.test_inplace.C file: +__irshift__ Lib/operator.py /^__irshift__ = irshift$/;" v +__irshift__ Lib/test/test_augassign.py /^ def __irshift__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__irshift__ Lib/test/test_operator.py /^ def __irshift__ (self, other): return "irshift"$/;" m class:OperatorTestCase.test_inplace.C file: +__isabstractmethod__ Lib/abc.py /^ __isabstractmethod__ = True$/;" v class:abstractclassmethod +__isabstractmethod__ Lib/abc.py /^ __isabstractmethod__ = True$/;" v class:abstractproperty +__isabstractmethod__ Lib/abc.py /^ __isabstractmethod__ = True$/;" v class:abstractstaticmethod +__isabstractmethod__ Lib/functools.py /^ def __isabstractmethod__(self):$/;" m class:partialmethod file: +__isabstractmethod__ Lib/functools.py /^ def __isabstractmethod__(self):$/;" m class:singledispatchmethod file: +__isabstractmethod__ Lib/test/test_abc.py /^ def __isabstractmethod__(self):$/;" m class:test_factory.TestABC.test_customdescriptors_with_abstractmethod.Descriptor file: +__isub__ Lib/_collections_abc.py /^ def __isub__(self, it):$/;" m class:MutableSet file: +__isub__ Lib/_weakrefset.py /^ def __isub__(self, other):$/;" m class:WeakSet file: +__isub__ Lib/collections/__init__.py /^ def __isub__(self, other):$/;" m class:Counter file: +__isub__ Lib/email/_parseaddr.py /^ def __isub__(self, other):$/;" m class:AddressList file: +__isub__ Lib/operator.py /^__isub__ = isub$/;" v +__isub__ Lib/test/test_augassign.py /^ def __isub__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__isub__ Lib/test/test_operator.py /^ def __isub__ (self, other): return "isub"$/;" m class:OperatorTestCase.test_inplace.C file: +__iter__ Doc/includes/mp_newtype.py /^ def __iter__(self):$/;" m class:GeneratorProxy file: +__iter__ Lib/_collections_abc.py /^ def __iter__(self):$/;" m class:ItemsView file: +__iter__ Lib/_collections_abc.py /^ def __iter__(self):$/;" m class:Iterable file: +__iter__ Lib/_collections_abc.py /^ def __iter__(self):$/;" m class:Iterator file: +__iter__ Lib/_collections_abc.py /^ def __iter__(self):$/;" m class:KeysView file: +__iter__ Lib/_collections_abc.py /^ def __iter__(self):$/;" m class:Sequence file: +__iter__ Lib/_collections_abc.py /^ def __iter__(self):$/;" m class:ValuesView file: +__iter__ Lib/_pyio.py /^ def __iter__(self):$/;" m class:IOBase file: +__iter__ Lib/_weakrefset.py /^ def __iter__(self):$/;" m class:WeakSet file: +__iter__ Lib/asyncio/futures.py /^ __iter__ = __await__ # make compatible with 'yield from'.$/;" v class:Future +__iter__ Lib/cgi.py /^ def __iter__(self):$/;" m class:FieldStorage file: +__iter__ Lib/codecs.py /^ def __iter__(self):$/;" m class:StreamReader file: +__iter__ Lib/codecs.py /^ def __iter__(self):$/;" m class:StreamReaderWriter file: +__iter__ Lib/codecs.py /^ def __iter__(self):$/;" m class:StreamRecoder file: +__iter__ Lib/collections/__init__.py /^ def __iter__(self):$/;" m class:ChainMap file: +__iter__ Lib/collections/__init__.py /^ def __iter__(self):$/;" m class:OrderedDict file: +__iter__ Lib/collections/__init__.py /^ def __iter__(self):$/;" m class:UserDict file: +__iter__ Lib/configparser.py /^ def __iter__(self):$/;" m class:ConverterMapping file: +__iter__ Lib/configparser.py /^ def __iter__(self):$/;" m class:RawConfigParser file: +__iter__ Lib/configparser.py /^ def __iter__(self):$/;" m class:SectionProxy file: +__iter__ Lib/csv.py /^ def __iter__(self):$/;" m class:DictReader file: +__iter__ Lib/dbm/dumb.py /^ __iter__ = iterkeys$/;" v class:_Database +__iter__ Lib/dis.py /^ def __iter__(self):$/;" m class:Bytecode file: +__iter__ Lib/email/feedparser.py /^ def __iter__(self):$/;" m class:BufferedSubFile file: +__iter__ Lib/email/message.py /^ def __iter__(self):$/;" m class:Message file: +__iter__ Lib/enum.py /^ def __iter__(cls):$/;" m class:EnumType file: +__iter__ Lib/enum.py /^ def __iter__(self):$/;" m class:Flag file: +__iter__ Lib/fileinput.py /^ def __iter__(self):$/;" m class:FileInput file: +__iter__ Lib/http/client.py /^ def __iter__(self):$/;" m class:HTTPResponse file: +__iter__ Lib/http/cookiejar.py /^ def __iter__(self):$/;" m class:CookieJar file: +__iter__ Lib/idlelib/idle_test/test_run.py /^ def __iter__(self):$/;" m class:S file: +__iter__ Lib/importlib/_bootstrap_external.py /^ def __iter__(self):$/;" m class:_NamespacePath file: +__iter__ Lib/importlib/metadata/_adapters.py /^ def __iter__(self):$/;" m class:Message file: +__iter__ Lib/importlib/metadata/_meta.py /^ def __iter__(self) -> Iterator[str]:$/;" m class:PackageMetadata file: +__iter__ Lib/ipaddress.py /^ def __iter__(self):$/;" m class:_BaseNetwork file: +__iter__ Lib/mailbox.py /^ def __iter__(self):$/;" m class:Mailbox file: +__iter__ Lib/mailbox.py /^ def __iter__(self):$/;" m class:_ProxyFile file: +__iter__ Lib/multiprocessing/managers.py /^ def __iter__(self):$/;" m class:IteratorProxy file: +__iter__ Lib/multiprocessing/pool.py /^ def __iter__(self):$/;" m class:IMapIterator file: +__iter__ Lib/os.py /^ def __iter__(self):$/;" m class:._wrap_close file: +__iter__ Lib/os.py /^ def __iter__(self):$/;" m class:_Environ file: +__iter__ Lib/platform.py /^ def __iter__(self):$/;" m class:uname_result file: +__iter__ Lib/selectors.py /^ def __iter__(self):$/;" m class:_SelectorMapping file: +__iter__ Lib/shelve.py /^ def __iter__(self):$/;" m class:Shelf file: +__iter__ Lib/shlex.py /^ def __iter__(self):$/;" m class:shlex file: +__iter__ Lib/tarfile.py /^ def __iter__(self):$/;" m class:TarFile file: +__iter__ Lib/tempfile.py /^ def __iter__(self):$/;" m class:SpooledTemporaryFile file: +__iter__ Lib/tempfile.py /^ def __iter__(self):$/;" m class:_RandomNameSequence file: +__iter__ Lib/tempfile.py /^ def __iter__(self):$/;" m class:_TemporaryFileWrapper file: +__iter__ Lib/test/_test_multiprocessing.py /^ def __iter__(self):$/;" m class:_TestPool.test_map_handle_iterable_exception.SpecialIterable file: +__iter__ Lib/test/_test_multiprocessing.py /^ def __iter__(self):$/;" m class:IteratorProxy file: +__iter__ Lib/test/libregrtest/runtest_mp.py /^ def __iter__(self):$/;" m class:MultiprocessIterator file: +__iter__ Lib/test/list_tests.py /^ def __iter__(self):$/;" m class:CommonTest.test_constructor_exception_handling.F file: +__iter__ Lib/test/list_tests.py /^ def __iter__(self):$/;" m class:CommonTest.test_extend.CustomIter file: +__iter__ Lib/test/mapping_tests.py /^ def __iter__(self):$/;" m class:BasicTestMappingProtocol.test_update.FailingUserDict.keys.BogonIter file: +__iter__ Lib/test/mapping_tests.py /^ def __iter__(self):$/;" m class:BasicTestMappingProtocol.test_update.badseq file: +__iter__ Lib/test/mapping_tests.py /^ def __iter__(self):$/;" m class:TestMappingProtocol.test_fromkeys.BadSeq file: +__iter__ Lib/test/seq_tests.py /^ def __iter__(self):$/;" m class:IterFunc file: +__iter__ Lib/test/seq_tests.py /^ def __iter__(self):$/;" m class:IterFuncStop file: +__iter__ Lib/test/seq_tests.py /^ def __iter__(self):$/;" m class:IterGen file: +__iter__ Lib/test/seq_tests.py /^ def __iter__(self):$/;" m class:IterGenExc file: +__iter__ Lib/test/seq_tests.py /^ def __iter__(self):$/;" m class:IterNoNext file: +__iter__ Lib/test/seq_tests.py /^ def __iter__(self):$/;" m class:LyingList file: +__iter__ Lib/test/seq_tests.py /^ def __iter__(self):$/;" m class:LyingTuple file: +__iter__ Lib/test/support/os_helper.py /^ def __iter__(self):$/;" m class:EnvironmentVarGuard file: +__iter__ Lib/test/test_array.py /^ def __iter__(self):$/;" m class:BaseTest.test_constructor_with_iterable_argument.A file: +__iter__ Lib/test/test_asyncio/test_futures.py /^ def __iter__(self):$/;" m class:DuckFuture file: +__iter__ Lib/test/test_builtin.py /^ def __iter__(self):$/;" m class:BuiltinTest.test_map.BadSeq file: +__iter__ Lib/test/test_builtin.py /^ def __iter__(self):$/;" m class:BuiltinTest.test_next.Iter file: +__iter__ Lib/test/test_builtin.py /^ def __iter__(self):$/;" m class:BuiltinTest.test_zip_bad_iterable.BadIterable file: +__iter__ Lib/test/test_builtin.py /^ def __iter__(self):$/;" m class:BuiltinTest.test_zip_strict_error_handling.Iter file: +__iter__ Lib/test/test_builtin.py /^ def __iter__(self):$/;" m class:BuiltinTest.test_zip_strict_error_handling_stopiteration.Iter file: +__iter__ Lib/test/test_builtin.py /^ def __iter__(self):$/;" m class:TestFailingIter file: +__iter__ Lib/test/test_bytes.py /^ def __iter__(self):$/;" m class:BaseBytesTest.test_constructor_exceptions.BadIterable file: +__iter__ Lib/test/test_collections.py /^ __iter__ = None$/;" v class:TestOneTrickPonyABCs.test_Collection.IterBlock +__iter__ Lib/test/test_collections.py /^ __iter__ = None$/;" v class:TestOneTrickPonyABCs.test_Iterable.ItBlocked +__iter__ Lib/test/test_collections.py /^ __iter__ = None$/;" v class:TestOneTrickPonyABCs.test_Reversible.RevItBlocked +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return iter([])$/;" m class:TestOneTrickPonyABCs.test_Collection.ColNoCont file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return iter([])$/;" m class:TestOneTrickPonyABCs.test_Collection.ColNoSize file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return iter([])$/;" m class:TestOneTrickPonyABCs.test_Collection.SizeBlock file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return iter([])$/;" m class:TestOneTrickPonyABCs.test_Iterable.It file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return iter([])$/;" m class:TestOneTrickPonyABCs.test_Reversible.Rev file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return iter([])$/;" m class:TestOneTrickPonyABCs.test_Reversible.RevPlusIter file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return self$/;" m class:TestOneTrickPonyABCs.test_Generator.Gen file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return self$/;" m class:TestOneTrickPonyABCs.test_Generator.NonGen1 file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self): return self$/;" m class:TestOneTrickPonyABCs.test_Generator.NonGen2 file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_Mapping.MyMapping file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_Set.MySet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_Set_from_iterable.SetUsingInstanceFromIterable file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_Set_interoperability_with_real_sets.ListSet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_arithmetic_Set.MySet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_equality_Set.MySet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_hash_Set.OneTwoThreeSet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_isdisjoint_Set.MySet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_issue16373.MyComparableSet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_issue16373.MyNonComparableSet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestCollectionABCs.test_issue_4920.MySet file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestOneTrickPonyABCs.test_Collection.Col file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestOneTrickPonyABCs.test_Collection.ColImpl file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestOneTrickPonyABCs.test_Iterable.I file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:TestOneTrickPonyABCs.test_Reversible.R file: +__iter__ Lib/test/test_collections.py /^ def __iter__(self):$/;" m class:WithSet file: +__iter__ Lib/test/test_configparser.py /^ __iter__ = iterkeys$/;" v class:SortedDict +__iter__ Lib/test/test_contains.py /^ def __iter__(self):$/;" m class:TestContains.test_block_fallback.BlockContains file: +__iter__ Lib/test/test_coroutines.py /^ def __iter__(self):$/;" m class:CoroutineTest.test_for_assign_raising_stop_async_iteration_2.BadIterable file: +__iter__ Lib/test/test_csv.py /^ def __iter__(self):$/;" m class:BadIterable file: +__iter__ Lib/test/test_deque.py /^ def __iter__(self):$/;" m class:TestSubclass.test_strange_subclass.X file: +__iter__ Lib/test/test_deque.py /^ def __iter__(self):$/;" m class:DequeWithBadIter file: +__iter__ Lib/test/test_descr.py /^ def __iter__(self):$/;" m class:.test_dict_constructors.AddressBookEntry file: +__iter__ Lib/test/test_dict.py /^ def __iter__(self):$/;" m class:DictTest.test_update.FailingUserDict.keys.BogonIter file: +__iter__ Lib/test/test_dict.py /^ __iter__ = keys$/;" v class:DictTest.test_dict_copy_order.CustomReversedDict +__iter__ Lib/test/test_dict.py /^ def __iter__(self):$/;" m class:DictTest.test_fromkeys.BadSeq file: +__iter__ Lib/test/test_dict.py /^ def __iter__(self):$/;" m class:DictTest.test_update.badseq file: +__iter__ Lib/test/test_enumerate.py /^ def __iter__(self):$/;" m class:E file: +__iter__ Lib/test/test_enumerate.py /^ def __iter__(self):$/;" m class:I file: +__iter__ Lib/test/test_enumerate.py /^ def __iter__(self):$/;" m class:Ig file: +__iter__ Lib/test/test_enumerate.py /^ def __iter__(self):$/;" m class:N file: +__iter__ Lib/test/test_functools.py /^ def __iter__(self):$/;" m class:TestReduce.test_reduce.TestFailingIter file: +__iter__ Lib/test/test_heapq.py /^ def __iter__(self):$/;" m class:E file: +__iter__ Lib/test/test_heapq.py /^ def __iter__(self):$/;" m class:I file: +__iter__ Lib/test/test_heapq.py /^ def __iter__(self):$/;" m class:Ig file: +__iter__ Lib/test/test_heapq.py /^ def __iter__(self):$/;" m class:N file: +__iter__ Lib/test/test_heapq.py /^ def __iter__(self):$/;" m class:S file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_builtin_filter.Seq.__iter__.SeqIter file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_writelines.Iterator file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_writelines.Whatever file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_3720.BadIterator file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_builtin_filter.Seq file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_builtin_zip.IntsFrom file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_new_style_iter_class.IterClass file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:TestCase.test_unicode_join_endcase.OhPhooey file: +__iter__ Lib/test/test_iter.py /^ __iter__ = None$/;" v class:NoIterClass +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:BadIterableClass file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:BasicIterClass file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:IteratingSequenceClass file: +__iter__ Lib/test/test_iter.py /^ def __iter__(self):$/;" m class:IteratorProxyClass file: +__iter__ Lib/test/test_iterlen.py /^ def __iter__(self):$/;" m class:BadLen file: +__iter__ Lib/test/test_iterlen.py /^ def __iter__(self):$/;" m class:BadLengthHint file: +__iter__ Lib/test/test_iterlen.py /^ def __iter__(self):$/;" m class:NoneLengthHint file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self): # its iterator is itself$/;" m class:TestBasicOps.test_bug_7244.Repeater file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:TestBasicOps.test_tee_concurrent.I file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:TestBasicOps.test_tee_reenter.I file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:TestBasicOps.test_zip_longest_bad_iterable.BadIterable file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:E file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:E2 file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:I file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:Ig file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:N file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:S file: +__iter__ Lib/test/test_itertools.py /^ def __iter__(self):$/;" m class:StopNow file: +__iter__ Lib/test/test_kqueue.py /^ def __iter__(self):$/;" m class:TestKQueue.test_issue30058.BadList file: +__iter__ Lib/test/test_operator.py /^ def __iter__(self):$/;" m class:BadIterable file: +__iter__ Lib/test/test_set.py /^ def __iter__(self):$/;" m class:E file: +__iter__ Lib/test/test_set.py /^ def __iter__(self):$/;" m class:I file: +__iter__ Lib/test/test_set.py /^ def __iter__(self):$/;" m class:Ig file: +__iter__ Lib/test/test_set.py /^ def __iter__(self):$/;" m class:N file: +__iter__ Lib/test/test_set.py /^ def __iter__(self):$/;" m class:S file: +__iter__ Lib/test/test_shelve.py /^ __iter__ = iterkeys$/;" v class:byteskeydict +__iter__ Lib/test/test_sqlite3/test_dbapi.py /^ def __iter__(self):$/;" m class:CursorTests.test_execute_many_iterator.MyIter file: +__iter__ Lib/test/test_types.py /^ def __iter__(self): pass$/;" m class:CoroutineTests.test_duck_gen.GenLike file: +__iter__ Lib/test/test_types.py /^ def __iter__(self): return self$/;" m class:CoroutineTests.test_duck_corogen.CoroGenLike file: +__iter__ Lib/test/test_types.py /^ def __iter__(self):$/;" m class:CoroutineTests.test_duck_functional_gen.Generator file: +__iter__ Lib/test/test_types.py /^ def __iter__(self):$/;" m class:MappingProxyTests.test_customdict.customdict file: +__iter__ Lib/test/test_typing.py /^ def __iter__(self):$/;" m class:CollectionsAbcTests.test_subclassing.MMB file: +__iter__ Lib/test/test_typing.py /^ def __iter__(self):$/;" m class:CollectionsAbcTests.test_subclassing.MMC file: +__iter__ Lib/test/test_typing.py /^ def __iter__(self):$/;" m class:GenericTests.test_abc_bases.MM file: +__iter__ Lib/test/test_typing.py /^ def __iter__(self):$/;" m class:ProtocolTests.test_collections_protocols_allowed.B file: +__iter__ Lib/test/test_unittest/testmock/testmagicmethods.py /^ def __iter__(self): pass$/;" m class:TestMockingMagicMethods.test_magic_methods_and_spec.Iterable file: +__iter__ Lib/test/test_unittest/testmock/testmagicmethods.py /^ def __iter__(self): pass$/;" m class:TestMockingMagicMethods.test_magic_methods_and_spec_set.Iterable file: +__iter__ Lib/test/test_unittest/testmock/testmock.py /^ def __iter__(self):$/;" m class:Iter file: +__iter__ Lib/test/test_unittest/testmock/testpatch.py /^ def __iter__(self):$/;" m class:Container file: +__iter__ Lib/test/test_weakref.py /^ def __iter__(self):$/;" m class:ReferencesTestCase.test_proxy_bad_next.A file: +__iter__ Lib/test/test_weakref.py /^ def __iter__(self):$/;" m class:ReferencesTestCase.test_proxy_iter.MyObj file: +__iter__ Lib/test/test_weakref.py /^ def __iter__(self):$/;" m class:ReferencesTestCase.test_proxy_next.IteratesWeakly file: +__iter__ Lib/test/test_wsgiref.py /^ def __iter__(self):$/;" m class:HandlerTests.testCloseOnError.error_app.CrashyIterable file: +__iter__ Lib/test/test_xml_etree.py /^ def __iter__(self):$/;" m class:XMLPullParserTest.test_events_sequence.DummyIter file: +__iter__ Lib/test/test_yield_from.py /^ def __iter__(self):$/;" m class:TestPEP380Operation.test_broken_getattr_handling.Broken file: +__iter__ Lib/test/test_yield_from.py /^ def __iter__(self):$/;" m class:TestPEP380Operation.test_custom_iterator_return.MyIter file: +__iter__ Lib/test/test_yield_from.py /^ def __iter__(self):$/;" m class:TestPEP380Operation.test_delegating_generators_claim_to_be_running.MyIt file: +__iter__ Lib/test/test_yield_from.py /^ def __iter__(self):$/;" m class:TestPEP380Operation.test_send_tuple_with_custom_generator.MyGen file: +__iter__ Lib/test/test_zipfile/_path/_itertools.py /^ def __iter__(self):$/;" m class:Counter file: +__iter__ Lib/traceback.py /^ def __iter__(self):$/;" m class:FrameSummary file: +__iter__ Lib/types.py /^ def __iter__(self):$/;" m class:_GeneratorWrapper file: +__iter__ Lib/typing.py /^ __iter__ = None$/;" v class:_NotIterable +__iter__ Lib/typing.py /^ def __iter__(self):$/;" m class:_GenericAlias file: +__iter__ Lib/unittest/case.py /^ def __iter__(self):$/;" m class:_OrderedChainMap file: +__iter__ Lib/unittest/mock.py /^ def __iter__():$/;" f function:_get_iter file: +__iter__ Lib/unittest/suite.py /^ def __iter__(self):$/;" m class:BaseTestSuite file: +__iter__ Lib/weakref.py /^ __iter__ = keys$/;" v class:WeakKeyDictionary +__iter__ Lib/weakref.py /^ __iter__ = keys$/;" v class:WeakValueDictionary +__iter__ Lib/wsgiref/types.py /^ def __iter__(self) -> Iterator[bytes]: ...$/;" m class:InputStream file: +__iter__ Lib/wsgiref/util.py /^ def __iter__(self):$/;" m class:FileWrapper file: +__iter__ Lib/wsgiref/validate.py /^ def __iter__(self):$/;" m class:InputWrapper file: +__iter__ Lib/wsgiref/validate.py /^ def __iter__(self):$/;" m class:IteratorWrapper file: +__iter__ Lib/wsgiref/validate.py /^ def __iter__(self):$/;" m class:PartialIteratorWrapper file: +__iter__ Lib/xml/dom/pulldom.py /^ def __iter__(self):$/;" m class:DOMEventStream file: +__iter__ Tools/c-analyzer/c_analyzer/info.py /^ def __iter__(self):$/;" m class:Analysis file: +__iter__ Tools/c-analyzer/c_parser/info.py /^ def __iter__(self):$/;" m class:Declarations file: +__iter__ Tools/clinic/clinic.py /^ def __iter__(self):$/;" m class:BlockParser file: +__iter__ Tools/gdb/libpython.py /^ def __iter__(self):$/;" m class:PySetObjectPtr file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterable[str]:$/;" m class:Leaf file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Item]:$/;" m class:NamedItem file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Item]:$/;" m class:Opt file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[List[Alt]]:$/;" m class:Rhs file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[List[NamedItem]]:$/;" m class:Alt file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Plain]:$/;" m class:Forced file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Plain]:$/;" m class:Lookahead file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Plain]:$/;" m class:Repeat file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Rhs]:$/;" m class:Group file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Rhs]:$/;" m class:Rule file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Rule]:$/;" m class:Grammar file: +__iter__ Tools/peg_generator/pegen/grammar.py /^ def __iter__(self) -> Iterator[Tuple[str, str]]:$/;" m class:Cut file: +__iter__ Tools/unicode/makeunicodedata.py /^ def __iter__(self) -> Iterator[List[str]]:$/;" m class:UcdFile file: +__itruediv__ Lib/operator.py /^__itruediv__ = itruediv$/;" v +__itruediv__ Lib/test/test_augassign.py /^ def __itruediv__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__itruediv__ Lib/test/test_operator.py /^ def __itruediv__ (self, other): return "itruediv"$/;" m class:OperatorTestCase.test_inplace.C file: +__ixor__ Lib/_collections_abc.py /^ def __ixor__(self, it):$/;" m class:MutableSet file: +__ixor__ Lib/_weakrefset.py /^ def __ixor__(self, other):$/;" m class:WeakSet file: +__ixor__ Lib/operator.py /^__ixor__ = ixor$/;" v +__ixor__ Lib/test/test_augassign.py /^ def __ixor__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__ixor__ Lib/test/test_operator.py /^ def __ixor__ (self, other): return "ixor"$/;" m class:OperatorTestCase.test_inplace.C file: +__jisx0208_decmap Modules/cjkcodecs/mappings_jp.h /^static const ucs2_t __jisx0208_decmap[6956] = {$/;" v +__jisx0212_decmap Modules/cjkcodecs/mappings_jp.h /^static const ucs2_t __jisx0212_decmap[6179] = {$/;" v +__jisx0213_1_bmp_decmap Modules/cjkcodecs/mappings_jp.h /^static const ucs2_t __jisx0213_1_bmp_decmap[2197] = {$/;" v +__jisx0213_1_emp_decmap Modules/cjkcodecs/mappings_jp.h /^static const ucs2_t __jisx0213_1_emp_decmap[340] = {$/;" v +__jisx0213_2_bmp_decmap Modules/cjkcodecs/mappings_jp.h /^static const ucs2_t __jisx0213_2_bmp_decmap[2425] = {$/;" v +__jisx0213_2_emp_decmap Modules/cjkcodecs/mappings_jp.h /^static const ucs2_t __jisx0213_2_emp_decmap[2053] = {$/;" v +__jisx0213_bmp_encmap Modules/cjkcodecs/mappings_jp.h /^static const DBCHAR __jisx0213_bmp_encmap[27287] = {$/;" v +__jisx0213_emp_encmap Modules/cjkcodecs/mappings_jp.h /^static const DBCHAR __jisx0213_emp_encmap[8787] = {$/;" v +__jisx0213_pair_decmap Modules/cjkcodecs/mappings_jisx0213_pair.h /^static const Py_UCS4 __jisx0213_pair_decmap[49] = {$/;" v +__jisxcommon_encmap Modules/cjkcodecs/mappings_jp.h /^static const DBCHAR __jisxcommon_encmap[22016] = {$/;" v +__keywordseen Tools/i18n/pygettext.py /^ def __keywordseen(self, ttype, tstring, lineno):$/;" m class:TokenEater file: +__ksx1001_decmap Modules/cjkcodecs/mappings_kr.h /^static const ucs2_t __ksx1001_decmap[8264] = {$/;" v +__kwdefaults__ Lib/test/test_inspect.py /^ __kwdefaults__ = func.__kwdefaults__$/;" v class:TestSignatureObject.test_signature_functionlike_class.funclike +__le__ Lib/_collections_abc.py /^ def __le__(self, other):$/;" m class:Set file: +__le__ Lib/_pydatetime.py /^ def __le__(self, other):$/;" m class:date file: +__le__ Lib/_pydatetime.py /^ def __le__(self, other):$/;" m class:datetime file: +__le__ Lib/_pydatetime.py /^ def __le__(self, other):$/;" m class:time file: +__le__ Lib/_pydatetime.py /^ def __le__(self, other):$/;" m class:timedelta file: +__le__ Lib/_pydecimal.py /^ def __le__(self, other, context=None):$/;" m class:Decimal file: +__le__ Lib/_weakrefset.py /^ __le__ = issubset$/;" v class:WeakSet +__le__ Lib/asyncio/events.py /^ def __le__(self, other):$/;" m class:TimerHandle file: +__le__ Lib/collections/__init__.py /^ def __le__(self, other):$/;" m class:Counter file: +__le__ Lib/collections/__init__.py /^ def __le__(self, other):$/;" m class:UserList file: +__le__ Lib/collections/__init__.py /^ def __le__(self, string):$/;" m class:UserString file: +__le__ Lib/fractions.py /^ def __le__(a, b):$/;" m class:Fraction file: +__le__ Lib/functools.py /^ def __le__(self, other):$/;" m class:cmp_to_key.K file: +__le__ Lib/numbers.py /^ def __le__(self, other):$/;" m class:Real file: +__le__ Lib/operator.py /^__le__ = le$/;" v +__le__ Lib/pathlib.py /^ def __le__(self, other):$/;" m class:PurePath file: +__le__ Lib/test/test_binop.py /^ def __le__(self, other):$/;" m class:A file: +__le__ Lib/test/test_binop.py /^ def __le__(self, other):$/;" m class:B file: +__le__ Lib/test/test_binop.py /^ def __le__(self, other):$/;" m class:C file: +__le__ Lib/test/test_binop.py /^ def __le__(self, other):$/;" m class:V file: +__le__ Lib/test/test_bisect.py /^ __le__ = __lt__$/;" v class:CmpErr +__le__ Lib/test/test_collections.py /^ __le__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__le__ Lib/test/test_collections.py /^ def __le__(self, x):$/;" m class:TestCollectionABCs.test_issue16373.MyNonComparableSet file: +__le__ Lib/test/test_compare.py /^ def __le__(self, other):$/;" m class:ComparisonFullTest.CompLe file: +__le__ Lib/test/test_compare.py /^ def __le__(self, other):$/;" m class:ComparisonFullTest.CompLeGe file: +__le__ Lib/test/test_dataclasses.py /^ def __le__(self):$/;" m class:TestOrdering.test_overwriting_order.C file: +__le__ Lib/test/test_dataclasses.py /^ def __le__(self, other):$/;" m class:TestAbstract.test_abc_implementation.Ordered file: +__le__ Lib/test/test_decimal.py /^ def __le__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__le__ Lib/test/test_descr.py /^ def __le__(self, other):$/;" m class:.test_classic_comparisons.classic.C file: +__le__ Lib/test/test_descr.py /^ def __le__(self, other):$/;" m class:.test_rich_comparisons.classic.C file: +__le__ Lib/test/test_descr.py /^ def __le__(self, other):$/;" m class:.test_specials.Proxy file: +__le__ Lib/test/test_enum.py /^ def __le__(self, other):$/;" m class:TestSpecial.test_ordered_mixin.OrderedEnum file: +__le__ Lib/test/test_fractions.py /^ def __le__(self, other): return self._richcmp(other, operator.le)$/;" m class:DummyFloat file: +__le__ Lib/test/test_fractions.py /^ def __le__(self, other):$/;" m class:DummyRational file: +__le__ Lib/test/test_functools.py /^ def __le__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsLessThanEqualTo file: +__le__ Lib/test/test_functools.py /^ def __le__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_le.A file: +__le__ Lib/test/test_functools.py /^ def __le__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsLessThanEqualTo file: +__le__ Lib/test/test_heapq.py /^ def __le__(self, other):$/;" m class:TestHeap.test_comparison_operator.LE file: +__le__ Lib/test/test_long.py /^ def __le__(self, other):$/;" m class:LongTest.test_mixed_compares.Rat file: +__le__ Lib/test/test_pprint.py /^ def __le__(self, other):$/;" m class:Orderable file: +__le__ Lib/test/test_richcmp.py /^ def __le__(self_, other): self.fail("This shouldn't happen")$/;" m class:MiscTest.test_misbehavin.Misb file: +__le__ Lib/test/test_richcmp.py /^ def __le__(self, other):$/;" m class:Number file: +__le__ Lib/test/test_richcmp.py /^ def __le__(self, other):$/;" m class:Vector file: +__le__ Lib/test/test_set.py /^ def __le__(self, some_set):$/;" m class:TestSet.test_rich_compare.TestRichSetCompare file: +__le__ Lib/uuid.py /^ def __le__(self, other):$/;" m class:UUID file: +__le__ Lib/xml/dom/minidom.py /^ def __le__(self, other):$/;" m class:NamedNodeMap file: +__le__ Lib/xml/etree/ElementTree.py /^ def __le__(self, other):$/;" m class:QName file: +__le__ Lib/xmlrpc/client.py /^ def __le__(self, other):$/;" m class:DateTime file: +__len__ Lib/_collections_abc.py /^ def __len__(self):$/;" m class:MappingView file: +__len__ Lib/_collections_abc.py /^ def __len__(self):$/;" m class:Sized file: +__len__ Lib/_weakrefset.py /^ def __len__(self):$/;" m class:WeakSet file: +__len__ Lib/calendar.py /^ def __len__(self):$/;" m class:_localized_day file: +__len__ Lib/calendar.py /^ def __len__(self):$/;" m class:_localized_month file: +__len__ Lib/cgi.py /^ def __len__(self):$/;" m class:FieldStorage file: +__len__ Lib/collections/__init__.py /^ def __len__(self):$/;" m class:ChainMap file: +__len__ Lib/collections/__init__.py /^ def __len__(self):$/;" m class:UserDict file: +__len__ Lib/collections/__init__.py /^ def __len__(self):$/;" m class:UserList file: +__len__ Lib/collections/__init__.py /^ def __len__(self):$/;" m class:UserString file: +__len__ Lib/configparser.py /^ def __len__(self):$/;" m class:ConverterMapping file: +__len__ Lib/configparser.py /^ def __len__(self):$/;" m class:RawConfigParser file: +__len__ Lib/configparser.py /^ def __len__(self):$/;" m class:SectionProxy file: +__len__ Lib/dbm/dumb.py /^ def __len__(self):$/;" m class:_Database file: +__len__ Lib/email/_parseaddr.py /^ def __len__(self):$/;" m class:AddressList file: +__len__ Lib/email/header.py /^ def __len__(self):$/;" m class:_Accumulator file: +__len__ Lib/email/message.py /^ def __len__(self):$/;" m class:Message file: +__len__ Lib/enum.py /^ def __len__(cls):$/;" m class:EnumType file: +__len__ Lib/enum.py /^ def __len__(self):$/;" m class:Flag file: +__len__ Lib/http/cookiejar.py /^ def __len__(self):$/;" m class:CookieJar file: +__len__ Lib/idlelib/idle_test/test_run.py /^ def __len__(self):$/;" m class:S file: +__len__ Lib/idlelib/undo.py /^ def __len__(self):$/;" m class:CommandSequence file: +__len__ Lib/importlib/_bootstrap_external.py /^ def __len__(self):$/;" m class:_NamespacePath file: +__len__ Lib/importlib/metadata/_meta.py /^ def __len__(self) -> int:$/;" m class:PackageMetadata file: +__len__ Lib/mailbox.py /^ def __len__(self):$/;" m class:MH file: +__len__ Lib/mailbox.py /^ def __len__(self):$/;" m class:Mailbox file: +__len__ Lib/mailbox.py /^ def __len__(self):$/;" m class:Maildir file: +__len__ Lib/mailbox.py /^ def __len__(self):$/;" m class:_singlefileMailbox file: +__len__ Lib/multiprocessing/shared_memory.py /^ def __len__(self):$/;" m class:ShareableList file: +__len__ Lib/multiprocessing/sharedctypes.py /^ def __len__(self):$/;" m class:SynchronizedArray file: +__len__ Lib/os.py /^ def __len__(self):$/;" m class:_Environ file: +__len__ Lib/pathlib.py /^ def __len__(self):$/;" m class:_PathParents file: +__len__ Lib/platform.py /^ def __len__(self):$/;" m class:uname_result file: +__len__ Lib/re/_parser.py /^ def __len__(self):$/;" m class:SubPattern file: +__len__ Lib/selectors.py /^ def __len__(self):$/;" m class:_SelectorMapping file: +__len__ Lib/shelve.py /^ def __len__(self):$/;" m class:Shelf file: +__len__ Lib/test/_test_multiprocessing.py /^ def __len__(self):$/;" m class:_TestPool.test_map_handle_iterable_exception.SpecialIterable file: +__len__ Lib/test/_test_multiprocessing.py /^ def __len__(self):$/;" m class:_DummyList file: +__len__ Lib/test/seq_tests.py /^ def __len__(self):$/;" m class:CommonTest.test_constructors.OtherSeq file: +__len__ Lib/test/string_tests.py /^ def __len__(self): return 8$/;" m class:BadSeq2 file: +__len__ Lib/test/string_tests.py /^ def __len__(self): return len(self.seq)$/;" m class:Sequence file: +__len__ Lib/test/support/os_helper.py /^ def __len__(self):$/;" m class:EnvironmentVarGuard file: +__len__ Lib/test/test_abc.py /^ __len__ = __bool__$/;" v class:test_factory.TestABC.test_descriptors_with_abstractmethod.NotBool +__len__ Lib/test/test_bisect.py /^ def __len__(self):$/;" m class:LenOnly file: +__len__ Lib/test/test_bisect.py /^ def __len__(self):$/;" m class:Range file: +__len__ Lib/test/test_bool.py /^ def __len__(self):$/;" m class:BoolTest.test_sane_len.A file: +__len__ Lib/test/test_bool.py /^ def __len__(self):$/;" m class:BoolTest.test_blocked.B file: +__len__ Lib/test/test_bool.py /^ def __len__(self):$/;" m class:BoolTest.test_convert_to_bool.Eggs file: +__len__ Lib/test/test_builtin.py /^ def __len__(self):$/;" m class:BuiltinTest.test_len.BadSeq file: +__len__ Lib/test/test_builtin.py /^ def __len__(self):$/;" m class:BuiltinTest.test_len.FloatLen file: +__len__ Lib/test/test_builtin.py /^ def __len__(self):$/;" m class:BuiltinTest.test_len.HugeLen file: +__len__ Lib/test/test_builtin.py /^ def __len__(self):$/;" m class:BuiltinTest.test_len.HugeNegativeLen file: +__len__ Lib/test/test_builtin.py /^ def __len__(self):$/;" m class:BuiltinTest.test_len.InvalidLen file: +__len__ Lib/test/test_builtin.py /^ def __len__(self):$/;" m class:BuiltinTest.test_len.NegativeLen file: +__len__ Lib/test/test_builtin.py /^ def __len__(self): return len(self.sofar)$/;" m class:Squares file: +__len__ Lib/test/test_builtin.py /^ def __len__(self):$/;" m class:StrSquares file: +__len__ Lib/test/test_capi/test_getargs.py /^ def __len__(self):$/;" m class:Tuple_TestCase.test_tuple.seq file: +__len__ Lib/test/test_capi/test_misc.py /^ def __len__(self):$/;" m class:CAPITest.test_seq_bytes_to_charp_array.Z file: +__len__ Lib/test/test_capi/test_misc.py /^ def __len__(self):$/;" m class:CAPITest.test_subprocess_fork_exec.Z file: +__len__ Lib/test/test_collections.py /^ __len__ = None$/;" v class:TestOneTrickPonyABCs.test_Collection.SizeBlock +__len__ Lib/test/test_collections.py /^ def __len__(self): return 0$/;" m class:TestOneTrickPonyABCs.test_Collection.ColNoCont file: +__len__ Lib/test/test_collections.py /^ def __len__(self): return 0$/;" m class:TestOneTrickPonyABCs.test_Collection.ColNoIter file: +__len__ Lib/test/test_collections.py /^ def __len__(self): return 0$/;" m class:TestOneTrickPonyABCs.test_Collection.IterBlock file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_Mapping.MyMapping file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_MutableSequence_mixins.MutableSequenceSubclass file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_Sequence_mixins.SequenceSubclass file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_Set.MySet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_Set_from_iterable.SetUsingInstanceFromIterable file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_Set_interoperability_with_real_sets.ListSet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_arithmetic_Set.MySet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_equality_Set.MySet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_hash_Set.OneTwoThreeSet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_isdisjoint_Set.MySet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_issue16373.MyComparableSet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_issue16373.MyNonComparableSet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_issue26915.CustomSequence file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestCollectionABCs.test_issue_4920.MySet file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestOneTrickPonyABCs.test_Collection.Col file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:TestOneTrickPonyABCs.test_Collection.ColImpl file: +__len__ Lib/test/test_collections.py /^ def __len__(self):$/;" m class:WithSet file: +__len__ Lib/test/test_csv.py /^ def __len__(self):$/;" m class:Test_Csv.test_write_arg_valid.BadList file: +__len__ Lib/test/test_dataclasses.py /^ def __len__(self):$/;" m class:TestCase.test_field_metadata_custom_mapping.SimpleNameSpace file: +__len__ Lib/test/test_descr.py /^ def __len__(self):$/;" m class:.test_dir.Wrapper file: +__len__ Lib/test/test_dynamicclassattribute.py /^ __len__ = __bool__$/;" v class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool +__len__ Lib/test/test_enumerate.py /^ def __len__(self): return 2$/;" m class:TestReversed.test_objmethods.Blocked file: +__len__ Lib/test/test_enumerate.py /^ def __len__(self): return 2$/;" m class:TestReversed.test_objmethods.NoGetItem file: +__len__ Lib/test/test_enumerate.py /^ def __len__(self):$/;" m class:TestReversed.test_gc.Seq file: +__len__ Lib/test/test_enumerate.py /^ def __len__(self):$/;" m class:TestReversed.test_len.SeqWithWeirdLen file: +__len__ Lib/test/test_enumerate.py /^ def __len__(self):$/;" m class:TestReversed.test_simple.A file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestPartial.test_setstate_refcount.BadSequence file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestReduce.test_reduce.Squares file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestSingleDispatch.test_c3_abc.B file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestSingleDispatch.test_false_meta.MetaA file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestSingleDispatch.test_mro_conflicts.O file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestSingleDispatch.test_mro_conflicts.Q file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestSingleDispatch.test_mro_conflicts.T file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestSingleDispatch.test_mro_conflicts.U file: +__len__ Lib/test/test_functools.py /^ def __len__(self):$/;" m class:TestSingleDispatch.test_mro_conflicts.V file: +__len__ Lib/test/test_grammar.py /^ def __len__(self): return len(self.sofar)$/;" m class:GrammarTests.test_for.Squares file: +__len__ Lib/test/test_hash.py /^ def __len__(self):$/;" m class:DefaultIterSeq file: +__len__ Lib/test/test_heapq.py /^ def __len__(self):$/;" m class:LenOnly file: +__len__ Lib/test/test_index.py /^ def __len__(self):$/;" m class:OverflowTestCase.test_getitem.GetItem file: +__len__ Lib/test/test_index.py /^ def __len__(self):$/;" m class:NewSeq file: +__len__ Lib/test/test_iter.py /^ def __len__(self):$/;" m class:TestCase.test_builtin_zip.Guess30Len5 file: +__len__ Lib/test/test_iter.py /^ def __len__(self):$/;" m class:TestCase.test_builtin_zip.Guess3Len5 file: +__len__ Lib/test/test_iter.py /^ def __len__(self):$/;" m class:EmptyIterClass file: +__len__ Lib/test/test_iterlen.py /^ def __len__(self):$/;" m class:BadLen file: +__len__ Lib/test/test_kqueue.py /^ def __len__(self):$/;" m class:TestKQueue.test_issue30058.BadList file: +__len__ Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def __len__(self): return len(self.sofar)$/;" m class:GrammarTests.testFor.Squares file: +__len__ Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def __len__(self): return len(self.sofar)$/;" m class:GrammarTests.testFor.Squares file: +__len__ Lib/test/test_operator.py /^ def __len__(self):$/;" m class:Seq1 file: +__len__ Lib/test/test_operator.py /^ def __len__(self):$/;" m class:Seq2 file: +__len__ Lib/test/test_patma.py /^ def __len__(self):$/;" m class:TestPatma.test_patma_184.Seq file: +__len__ Lib/test/test_patma.py /^ def __len__(self):$/;" m class:TestPatma.test_patma_185.Seq file: +__len__ Lib/test/test_patma.py /^ def __len__(self):$/;" m class:TestPatma.test_patma_186.Seq file: +__len__ Lib/test/test_property.py /^ __len__ = __bool__$/;" v class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool +__len__ Lib/test/test_random.py /^ def __len__(self):$/;" m class:TestBasicOps.test_sample_on_seqsets.SeqSet file: +__len__ Lib/test/test_resource.py /^ def __len__(self):$/;" m class:ResourceTest.test_setrusage_refcount.BadSequence file: +__len__ Lib/test/test_resource.py /^ def __len__(self):$/;" m class:ResourceTest.test_prlimit_refcount.BadSeq file: +__len__ Lib/test/test_richcmp.py /^ def __len__(self):$/;" m class:Vector file: +__len__ Lib/test/test_shelve.py /^ def __len__(self):$/;" m class:byteskeydict file: +__len__ Lib/test/test_sqlite3/test_dbapi.py /^ def __len__(self):$/;" m class:CursorTests.test_execute_param_sequence.L file: +__len__ Lib/test/test_sqlite3/test_dbapi.py /^ def __len__(self):$/;" m class:CursorTests.test_execute_param_sequence_bad_len.L file: +__len__ Lib/test/test_structseq.py /^ def __len__(self):$/;" m class:StructSeqTest.test_eviltuple.C file: +__len__ Lib/test/test_types.py /^ def __len__(self):$/;" m class:MappingProxyTests.test_customdict.customdict file: +__len__ Lib/test/test_typing.py /^ def __len__(self):$/;" m class:CollectionsAbcTests.test_subclassing.MMB file: +__len__ Lib/test/test_typing.py /^ def __len__(self):$/;" m class:CollectionsAbcTests.test_subclassing.MMC file: +__len__ Lib/test/test_typing.py /^ def __len__(self):$/;" m class:GenericTests.test_abc_bases.MM file: +__len__ Lib/test/test_weakref.py /^ def __len__(self):$/;" m class:ReferencesTestCase.test_proxy_reversed.MyObj file: +__len__ Lib/traceback.py /^ def __len__(self):$/;" m class:FrameSummary file: +__len__ Lib/tracemalloc.py /^ def __len__(self):$/;" m class:Traceback file: +__len__ Lib/tracemalloc.py /^ def __len__(self):$/;" m class:_Traces file: +__len__ Lib/weakref.py /^ def __len__(self):$/;" m class:WeakKeyDictionary file: +__len__ Lib/weakref.py /^ def __len__(self):$/;" m class:WeakValueDictionary file: +__len__ Lib/wsgiref/headers.py /^ def __len__(self):$/;" m class:Headers file: +__len__ Lib/xml/dom/minidom.py /^ __len__ = _get_length$/;" v class:CharacterData +__len__ Lib/xml/dom/minidom.py /^ __len__ = _get_length$/;" v class:NamedNodeMap +__len__ Lib/xml/dom/minidom.py /^ def __len__(self):$/;" m class:ReadOnlySequentialNamedNodeMap file: +__len__ Lib/xml/etree/ElementTree.py /^ def __len__(self):$/;" m class:Element file: +__len__ Lib/xml/sax/xmlreader.py /^ def __len__(self):$/;" m class:AttributesImpl file: +__len__ Tools/c-analyzer/c_analyzer/info.py /^ def __len__(self):$/;" m class:Analysis file: +__len__ Tools/c-analyzer/c_parser/info.py /^ def __len__(self):$/;" m class:Declarations file: +__len__ Tools/unicode/genmap_support.py /^ def __len__(self):$/;" m class:BufferedFiller file: +__length_hint__ Lib/test/list_tests.py /^ def __length_hint__(self):$/;" m class:CommonTest.test_extend.CustomIter file: +__length_hint__ Lib/test/test_iterlen.py /^ def __length_hint__(self):$/;" m class:BadLengthHint file: +__length_hint__ Lib/test/test_iterlen.py /^ def __length_hint__(self):$/;" m class:NoneLengthHint file: +__length_hint__ Lib/test/test_operator.py /^ def __length_hint__(self):$/;" m class:OperatorTestCase.test_length_hint.X file: +__libmpdec_version__ Lib/_pydecimal.py /^__libmpdec_version__ = "2.4.2" # compatible libmpdec version$/;" v +__line Lib/test/smtpd.py /^ def __line(self):$/;" m class:SMTPChannel file: +__line Lib/test/smtpd.py /^ def __line(self, value):$/;" m class:SMTPChannel file: +__locals Lib/symtable.py /^ __locals = None$/;" v class:Function +__log_traceback Lib/asyncio/futures.py /^ __log_traceback = False$/;" v class:Future +__long__ Lib/test/test_long.py /^ def __long__(self):$/;" m class:LongTest.test_conversion.JustLong file: +__long__ Lib/test/test_long.py /^ def __long__(self):$/;" m class:LongTest.test_conversion.LongTrunc file: +__lsan_is_turned_off Modules/_xxtestfuzz/fuzzer.c /^int __lsan_is_turned_off(void) { return 1; }$/;" f +__lshift__ Lib/numbers.py /^ def __lshift__(self, other):$/;" m class:Integral file: +__lshift__ Lib/operator.py /^__lshift__ = lshift$/;" v +__lshift__ Lib/test/test_augassign.py /^ def __lshift__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__lt__ Lib/_collections_abc.py /^ def __lt__(self, other):$/;" m class:Set file: +__lt__ Lib/_pydatetime.py /^ def __lt__(self, other):$/;" m class:date file: +__lt__ Lib/_pydatetime.py /^ def __lt__(self, other):$/;" m class:datetime file: +__lt__ Lib/_pydatetime.py /^ def __lt__(self, other):$/;" m class:time file: +__lt__ Lib/_pydatetime.py /^ def __lt__(self, other):$/;" m class:timedelta file: +__lt__ Lib/_pydecimal.py /^ def __lt__(self, other, context=None):$/;" m class:Decimal file: +__lt__ Lib/_weakrefset.py /^ def __lt__(self, other):$/;" m class:WeakSet file: +__lt__ Lib/asyncio/events.py /^ def __lt__(self, other):$/;" m class:TimerHandle file: +__lt__ Lib/collections/__init__.py /^ def __lt__(self, other):$/;" m class:Counter file: +__lt__ Lib/collections/__init__.py /^ def __lt__(self, other):$/;" m class:UserList file: +__lt__ Lib/collections/__init__.py /^ def __lt__(self, string):$/;" m class:UserString file: +__lt__ Lib/doctest.py /^ def __lt__(self, other):$/;" m class:DocTest file: +__lt__ Lib/fractions.py /^ def __lt__(a, b):$/;" m class:Fraction file: +__lt__ Lib/functools.py /^ def __lt__(self, other):$/;" m class:cmp_to_key.K file: +__lt__ Lib/importlib/metadata/__init__.py /^ def __lt__(self, other):$/;" m class:EntryPoint file: +__lt__ Lib/importlib/metadata/_text.py /^ def __lt__(self, other):$/;" m class:FoldedCase file: +__lt__ Lib/ipaddress.py /^ def __lt__(self, other):$/;" m class:IPv4Interface file: +__lt__ Lib/ipaddress.py /^ def __lt__(self, other):$/;" m class:IPv6Interface file: +__lt__ Lib/ipaddress.py /^ def __lt__(self, other):$/;" m class:_BaseAddress file: +__lt__ Lib/ipaddress.py /^ def __lt__(self, other):$/;" m class:_BaseNetwork file: +__lt__ Lib/numbers.py /^ def __lt__(self, other):$/;" m class:Real file: +__lt__ Lib/operator.py /^__lt__ = lt$/;" v +__lt__ Lib/pathlib.py /^ def __lt__(self, other):$/;" m class:PurePath file: +__lt__ Lib/pprint.py /^ def __lt__(self, other):$/;" m class:_safe_key file: +__lt__ Lib/test/support/__init__.py /^ def __lt__(self, other):$/;" m class:_LARGEST file: +__lt__ Lib/test/test_bisect.py /^ def __lt__(self, other):$/;" m class:TestBisect.test_lt_returns_non_bool.A file: +__lt__ Lib/test/test_bisect.py /^ def __lt__(self, other):$/;" m class:TestBisect.test_lt_returns_notimplemented.A file: +__lt__ Lib/test/test_bisect.py /^ def __lt__(self, other):$/;" m class:CmpErr file: +__lt__ Lib/test/test_collections.py /^ __lt__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__lt__ Lib/test/test_collections.py /^ def __lt__(self, x):$/;" m class:TestCollectionABCs.test_issue16373.MyNonComparableSet file: +__lt__ Lib/test/test_compare.py /^ def __lt__(self, other):$/;" m class:ComparisonFullTest.CompLt file: +__lt__ Lib/test/test_compare.py /^ def __lt__(self, other):$/;" m class:ComparisonFullTest.CompLtGt file: +__lt__ Lib/test/test_dataclasses.py /^ def __lt__(self):$/;" m class:TestOrdering.test_overwriting_order.C file: +__lt__ Lib/test/test_dataclasses.py /^ def __lt__(self, other):$/;" m class:TestAbstract.test_abc_implementation.Ordered file: +__lt__ Lib/test/test_dataclasses.py /^ def __lt__(self, other):$/;" m class:TestOrdering.test_functools_total_ordering.C file: +__lt__ Lib/test/test_dataclasses.py /^ def __lt__(self, other):$/;" m class:TestOrdering.test_no_order.C file: +__lt__ Lib/test/test_decimal.py /^ def __lt__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__lt__ Lib/test/test_descr.py /^ def __lt__(self, other):$/;" m class:.test_classic_comparisons.classic.C file: +__lt__ Lib/test/test_descr.py /^ def __lt__(self, other):$/;" m class:.test_rich_comparisons.classic.C file: +__lt__ Lib/test/test_descr.py /^ def __lt__(self, other):$/;" m class:.test_specials.Proxy file: +__lt__ Lib/test/test_enum.py /^ def __lt__(self, other):$/;" m class:TestSpecial.test_ordered_mixin.OrderedEnum file: +__lt__ Lib/test/test_fractions.py /^ __lt__ = __eq__$/;" v class:FractionTest.testBoolGuarateesBoolReturn.CustomValue +__lt__ Lib/test/test_fractions.py /^ def __lt__(self, other): return self._richcmp(other, operator.lt)$/;" m class:DummyFloat file: +__lt__ Lib/test/test_fractions.py /^ def __lt__(self, other):$/;" m class:DummyRational file: +__lt__ Lib/test/test_functools.py /^ def __lt__(self, other):$/;" m class:TestCmpToKey.test_bad_cmp.BadCmp file: +__lt__ Lib/test/test_functools.py /^ def __lt__(self, other):$/;" m class:TestTotalOrdering.test_notimplemented.ImplementsLessThan file: +__lt__ Lib/test/test_functools.py /^ def __lt__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_for_metaclasses_issue_44605.SortableMeta file: +__lt__ Lib/test/test_functools.py /^ def __lt__(self, other):$/;" m class:TestTotalOrdering.test_total_ordering_lt.A file: +__lt__ Lib/test/test_functools.py /^ def __lt__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ComparatorNotImplemented file: +__lt__ Lib/test/test_functools.py /^ def __lt__(self, other):$/;" m class:TestTotalOrdering.test_type_error_when_not_implemented.ImplementsLessThan file: +__lt__ Lib/test/test_functools.py /^ def __lt__(self, other):$/;" m class:Orderable_LT file: +__lt__ Lib/test/test_heapq.py /^ def __lt__(self, o):$/;" m class:TestErrorHandling.test_comparison_operator_modifiying_heap.EvilClass file: +__lt__ Lib/test/test_heapq.py /^ def __lt__(self, o):$/;" m class:TestErrorHandling.test_comparison_operator_modifiying_heap_two_heaps.g file: +__lt__ Lib/test/test_heapq.py /^ def __lt__(self, o):$/;" m class:TestErrorHandling.test_comparison_operator_modifiying_heap_two_heaps.h file: +__lt__ Lib/test/test_heapq.py /^ def __lt__(self, other):$/;" m class:TestHeap.test_comparison_operator.LT file: +__lt__ Lib/test/test_heapq.py /^ def __lt__(self, other):$/;" m class:SideEffectLT file: +__lt__ Lib/test/test_json/test_dump.py /^ def __lt__(self, o):$/;" m class:TestDump.test_encode_evil_dict.X file: +__lt__ Lib/test/test_long.py /^ def __lt__(self, other):$/;" m class:LongTest.test_mixed_compares.Rat file: +__lt__ Lib/test/test_pprint.py /^ def __lt__(self, other):$/;" m class:Orderable file: +__lt__ Lib/test/test_richcmp.py /^ def __lt__(self, other):$/;" m class:ListTest.test_goodentry.Good file: +__lt__ Lib/test/test_richcmp.py /^ def __lt__(self_, other): return 0$/;" m class:MiscTest.test_misbehavin.Misb file: +__lt__ Lib/test/test_richcmp.py /^ def __lt__(self, other):$/;" m class:Number file: +__lt__ Lib/test/test_richcmp.py /^ def __lt__(self, other):$/;" m class:Vector file: +__lt__ Lib/test/test_set.py /^ def __lt__(self, some_set):$/;" m class:TestSet.test_rich_compare.TestRichSetCompare file: +__lt__ Lib/test/test_sort.py /^ def __lt__(self, other):$/;" m class:TestBase.testStressfully.Complains file: +__lt__ Lib/test/test_sort.py /^ def __lt__(self, other):$/;" m class:TestBase.testStressfully.Stable file: +__lt__ Lib/test/test_sort.py /^ def __lt__(self, other):$/;" m class:TestBugs.test_bug453523.C file: +__lt__ Lib/test/test_sort.py /^ def __lt__(self, other):$/;" m class:TestDecorateSortUndecorate.test_key_with_mutating_del.SortKiller file: +__lt__ Lib/test/test_sort.py /^ def __lt__(self, other):$/;" m class:TestOptimizedCompares.test_unsafe_object_compare.PointlessComparator file: +__lt__ Lib/test/test_sort.py /^ def __lt__(self, other):$/;" m class:TestOptimizedCompares.test_unsafe_object_compare.WackyComparator file: +__lt__ Lib/test/test_sort.py /^ def __lt__(self, other):$/;" m class:TestOptimizedCompares.test_unsafe_object_compare.WackyList2 file: +__lt__ Lib/test/test_urllib2.py /^ def __lt__(self, other):$/;" m class:MockHandler file: +__lt__ Lib/test/test_weakref.py /^ def __lt__(self, other):$/;" m class:Object file: +__lt__ Lib/tracemalloc.py /^ def __lt__(self, other):$/;" m class:Frame file: +__lt__ Lib/tracemalloc.py /^ def __lt__(self, other):$/;" m class:Traceback file: +__lt__ Lib/urllib/request.py /^ def __lt__(self, other):$/;" m class:BaseHandler file: +__lt__ Lib/uuid.py /^ def __lt__(self, other):$/;" m class:UUID file: +__lt__ Lib/xml/dom/minidom.py /^ def __lt__(self, other):$/;" m class:NamedNodeMap file: +__lt__ Lib/xml/etree/ElementTree.py /^ def __lt__(self, other):$/;" m class:QName file: +__lt__ Lib/xmlrpc/client.py /^ def __lt__(self, other):$/;" m class:DateTime file: +__magic_1__ Lib/test/test_support.py /^ __magic_1__ = None$/;" v class:TestSupport.OtherClass +__magic_1__ Lib/test/test_support.py /^ __magic_1__ = None$/;" v class:TestSupport.RefClass +__magic_2__ Lib/test/test_support.py /^ __magic_2__ = None$/;" v class:TestSupport.OtherClass +__magic__ Lib/test/test_typing.py /^ __magic__ = 4$/;" v class:SpecialAttrsTests.test_genericalias_dir.Foo +__mailfrom Lib/test/smtpd.py /^ def __mailfrom(self):$/;" m class:SMTPChannel file: +__mailfrom Lib/test/smtpd.py /^ def __mailfrom(self, value):$/;" m class:SMTPChannel file: +__major_ Lib/test/test_enum.py /^ __major_ = 'Hoolihan'$/;" v class:TestSpecial.test_private_variable_is_normal_attribute.Private +__makeErrorDict Lib/test/support/testresult.py /^ def __makeErrorDict(cls, err_type, err_value, err_tb):$/;" m class:RegressionTestResult file: +__make_trailing_repr Lib/test/support/_hypothesis_stubs/strategies.py /^ def __make_trailing_repr(self, transformation_name, func):$/;" m class:StubStrategy file: +__marker Lib/_collections_abc.py /^ __marker = object()$/;" v class:MutableMapping +__marker Lib/collections/__init__.py /^ __marker = object()$/;" v class:OrderedDict +__match_args__ Include/internal/pycore_ast_state.h /^ PyObject *__match_args__;$/;" m struct:ast_state +__match_args__ Lib/test/test_dataclasses.py /^ __match_args__ = ('b',)$/;" v class:TestMatchArgs.test_match_args_argument.Y +__match_args__ Lib/test/test_dataclasses.py /^ __match_args__ = ma$/;" v class:TestMatchArgs.test_explicit_match_args.C +__match_args__ Lib/test/test_patma.py /^ __match_args__ = "XYZ"$/;" v class:TestTypeErrors.test_match_args_must_be_a_tuple_1.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = "a", "b"$/;" v class:TestPatma.test_patma_202.Parent +__match_args__ Lib/test/test_patma.py /^ __match_args__ = "c", "d"$/;" v class:TestPatma.test_patma_203.Child +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ("a", "a")$/;" v class:TestTypeErrors.test_got_multiple_subpatterns_for_attribute_0.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ("a", "b")$/;" v class:TestPatma.test_patma_200.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ("a", "b")$/;" v class:TestPatma.test_patma_201.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ("a", "b")$/;" v class:TestPatma.test_patma_203.Parent +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ("a",)$/;" v class:TestTypeErrors.test_got_multiple_subpatterns_for_attribute_1.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ("c", "d")$/;" v class:TestPatma.test_patma_202.Child +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ()$/;" v class:TestTypeErrors.test_accepts_positional_subpatterns_0.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = (None,)$/;" v class:TestTypeErrors.test_match_args_elements_must_be_strings.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = None$/;" v class:TestTypeErrors.test_match_args_must_be_a_tuple_0.Class +__match_args__ Lib/test/test_patma.py /^ __match_args__ = ["spam", "eggs"]$/;" v class:TestTypeErrors.test_match_args_must_be_a_tuple_2.Class +__matmul__ Lib/operator.py /^__matmul__ = matmul$/;" v +__matmul__ Lib/test/test_augassign.py /^ def __matmul__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__matmul__ Lib/test/test_grammar.py /^ def __matmul__(self, o):$/;" m class:GrammarTests.test_matrix_mul.M file: +__matmul__ Lib/test/test_operator.py /^ def __matmul__(self, other):$/;" m class:OperatorTestCase.test_matmul.M file: +__matmul__ Lib/test/test_weakref.py /^ def __matmul__(self, other):$/;" m class:ReferencesTestCase.test_proxy_matmul.C file: +__mbstate_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class __mbstate_t(Union):$/;" c +__members__ Lib/enum.py /^ def __members__(cls):$/;" m class:EnumType file: +__methodDict Lib/turtle.py /^def __methodDict(cls, _dict):$/;" f file: +__methods Lib/idlelib/rpc.py /^ __methods = None$/;" v class:RPCProxy +__methods Lib/symtable.py /^ __methods = None$/;" v class:Class +__methods Lib/turtle.py /^def __methods(cls):$/;" f file: +__missing__ Lib/collections/__init__.py /^ def __missing__(self, key):$/;" m class:ChainMap file: +__missing__ Lib/collections/__init__.py /^ def __missing__(self, key):$/;" m class:Counter file: +__missing__ Lib/email/_encoded_words.py /^ def __missing__(self, key):$/;" m class:_QByteMap file: +__missing__ Lib/idlelib/pyparse.py /^ def __missing__(self, key):$/;" m class:ParseMap file: +__missing__ Lib/importlib/metadata/_collections.py /^ def __missing__(self, key):$/;" m class:FreezableDefaultDict file: +__missing__ Lib/test/test_collections.py /^ def __missing__(self, key):$/;" m class:TestChainMap.test_missing.DefaultChainMap file: +__missing__ Lib/test/test_collections.py /^ def __missing__(self, key):$/;" m class:TestUserObjects.test_dict_missing.A file: +__missing__ Lib/test/test_dict.py /^ def __missing__(self, key):$/;" m class:DictTest.test_missing.D file: +__missing__ Lib/test/test_dict.py /^ def __missing__(self, key):$/;" m class:DictTest.test_missing.E file: +__missing__ Lib/test/test_dynamic.py /^ def __missing__(self, key):$/;" m class:RebindBuiltinsTests.test_load_global_specialization_failure_keeps_oparg.MyGlobals file: +__missing__ Lib/test/test_getpath.py /^ def __missing__(self, key):$/;" m class:MockNTNamespace file: +__missing__ Lib/test/test_getpath.py /^ def __missing__(self, key):$/;" m class:MockPosixNamespace file: +__missing__ Lib/test/test_ordered_dict.py /^ def __missing__(self, key):$/;" m class:OrderedDictTests.test_pop.Missing file: +__missing__ Lib/test/test_ordered_dict.py /^ def __missing__(self, key):$/;" m class:OrderedDictTests.test_setdefault.Missing file: +__missing__ Lib/test/test_sqlite3/test_dbapi.py /^ def __missing__(self, key):$/;" m class:CursorTests.test_execute_dict_mapping_mapping.D file: +__missing__ Lib/test/test_types.py /^ def __missing__(self, key):$/;" m class:MappingProxyTests.test_missing.dictmissing file: +__missing__ Lib/test/test_unicode.py /^ def __missing__(self, key):$/;" m class:UnicodeTest.test_format_map.Mapping file: +__missing__ Lib/test/test_userdict.py /^ def __missing__(self, key):$/;" m class:UserDictTest.test_missing.D file: +__missing__ Lib/test/test_userdict.py /^ def __missing__(self, key):$/;" m class:UserDictTest.test_missing.E file: +__missing__ Lib/urllib/parse.py /^ def __missing__(self, b):$/;" m class:_Quoter file: +__mod__ Lib/_pydatetime.py /^ def __mod__(self, other):$/;" m class:timedelta file: +__mod__ Lib/_pydecimal.py /^ def __mod__(self, other, context=None):$/;" m class:Decimal file: +__mod__ Lib/collections/__init__.py /^ def __mod__(self, args):$/;" m class:UserString file: +__mod__ Lib/numbers.py /^ def __mod__(self, other):$/;" m class:Real file: +__mod__ Lib/operator.py /^__mod__ = mod$/;" v +__mod__ Lib/test/test_augassign.py /^ def __mod__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__mod__ Lib/test/test_binop.py /^ def __mod__(self, other):$/;" m class:Rat file: +__mod__ Lib/test/test_fractions.py /^ def __mod__(self, other):$/;" m class:FractionTest.test_int_subclass.myint file: +__mod__ Lib/test/test_opcodes.py /^ def __mod__(self, value):$/;" m class:OpcodeTest.test_modulo_of_string_subclasses.MyString file: +__module__ Include/internal/pycore_ast_state.h /^ PyObject *__module__;$/;" m struct:ast_state +__module__ Lib/re/_constants.py /^ __module__ = 're'$/;" v class:error +__module__ Lib/test/test_inspect.py /^ def __module__(cls):$/;" m class:TestRetrievingSourceCode.test_getfile_class_without_module.CM file: +__module__ Lib/test/test_types.py /^ def __module__(self):$/;" m class:UnionTests.test_or_type_operator_with_bad_module.BadMeta file: +__module__ Lib/zoneinfo/_zoneinfo.py /^ __module__ = "zoneinfo"$/;" v class:ZoneInfo +__mro__ Lib/test/test_abc.py /^ __mro__ = 42 # __mro__ is not tuple$/;" v class:test_factory.TestABC.test_issubclass_bad_arguments.C +__mro__ Lib/test/test_inspect.py /^ def __mro__(self):$/;" m class:TestGetattrStatic.test_mro_as_property.Meta file: +__mro_entries__ Lib/test/test_genericclass.py /^ __mro_entries__ = "Surprise!"$/;" v class:TestMROEntry.test_mro_entry_errors_2.C_not_callable +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self):$/;" m class:TestMROEntry.test_mro_entry_errors.C_too_few file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self):$/;" m class:TestMROEntry.test_mro_entry_errors_2.C_not_tuple file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, *args, **kwargs):$/;" m class:TestMROEntry.test_mro_entry_signature.C file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, bases):$/;" m class:TestMROEntry.test_mro_entry.C file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, bases):$/;" m class:TestMROEntry.test_mro_entry_metaclass.C file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, bases):$/;" m class:TestMROEntry.test_mro_entry_none.C file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, bases):$/;" m class:TestMROEntry.test_mro_entry_type_call.C file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, bases):$/;" m class:TestMROEntry.test_mro_entry_with_builtins.C file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, bases):$/;" m class:TestMROEntry.test_mro_entry_with_builtins_2.C file: +__mro_entries__ Lib/test/test_genericclass.py /^ def __mro_entries__(self, bases, something, other):$/;" m class:TestMROEntry.test_mro_entry_errors.C_too_many file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_new_class_with_mro_entry.C file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_new_class_with_mro_entry_error.C file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_new_class_with_mro_entry_multiple.A file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_new_class_with_mro_entry_multiple.B file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_new_class_with_mro_entry_multiple_2.A file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_new_class_with_mro_entry_multiple_2.B file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_new_class_with_mro_entry_none.C file: +__mro_entries__ Lib/test/test_types.py /^ def __mro_entries__(self, bases):$/;" m class:ClassCreationTests.test_resolve_bases.C file: +__mro_entries__ Lib/typing.py /^ def __mro_entries__(self, bases):$/;" m class:NewType file: +__mro_entries__ Lib/typing.py /^ def __mro_entries__(self, bases):$/;" m class:_AnnotatedAlias file: +__mro_entries__ Lib/typing.py /^ def __mro_entries__(self, bases):$/;" m class:_BaseGenericAlias file: +__mro_entries__ Lib/typing.py /^ def __mro_entries__(self, bases):$/;" m class:_GenericAlias file: +__mro_entries__ Lib/typing.py /^ def __mro_entries__(self, bases):$/;" m class:_SpecialForm file: +__mul__ Lib/_pydatetime.py /^ def __mul__(self, other):$/;" m class:timedelta file: +__mul__ Lib/_pydecimal.py /^ def __mul__(self, other, context=None):$/;" m class:Decimal file: +__mul__ Lib/collections/__init__.py /^ def __mul__(self, n):$/;" m class:UserList file: +__mul__ Lib/collections/__init__.py /^ def __mul__(self, n):$/;" m class:UserString file: +__mul__ Lib/numbers.py /^ def __mul__(self, other):$/;" m class:Complex file: +__mul__ Lib/operator.py /^__mul__ = mul$/;" v +__mul__ Lib/statistics.py /^ def __mul__(x1, x2):$/;" m class:NormalDist file: +__mul__ Lib/test/datetimetester.py /^ def __mul__(self, other):$/;" m class:TestTimeDelta.test_issue31752.BadInt file: +__mul__ Lib/test/test_augassign.py /^ def __mul__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__mul__ Lib/test/test_binop.py /^ def __mul__(self, other):$/;" m class:Rat file: +__mul__ Lib/test/test_descr.py /^ def __mul__(self, other):$/;" m class:.test_rmul.C file: +__mul__ Lib/test/test_fractions.py /^ def __mul__(self, other):$/;" m class:FractionTest.testIntGuaranteesIntReturn.CustomInt file: +__mul__ Lib/test/test_fractions.py /^ def __mul__(self, other):$/;" m class:FractionTest.test_int_subclass.myint file: +__mul__ Lib/test/test_index.py /^ def __mul__(self, n):$/;" m class:NewSeq file: +__mul__ Lib/test/test_math.py /^ def __mul__(self, other):$/;" m class:MathTests.testSumProd.BadMultiply file: +__mul__ Lib/test/test_math.py /^ def __mul__(self, other):$/;" m class:MathTests.test_sumprod_stress.Flt file: +__mul__ Lib/test/test_math.py /^ def __mul__(self, other):$/;" m class:MathTests.test_sumprod_stress.Int file: +__mul__ Lib/test/test_numeric_tower.py /^ def __mul__(self, other):$/;" m class:DummyIntegral file: +__mul__ Lib/test/test_operator.py /^ def __mul__(self, other):$/;" m class:Seq1 file: +__mul__ Lib/test/test_operator.py /^ def __mul__(self, other):$/;" m class:Seq2 file: +__mul__ Lib/test/test_statistics.py /^ def __mul__(self, other):$/;" m class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat file: +__mul__ Lib/test/test_turtle.py /^ def __mul__(self, other):$/;" m class:Multiplier file: +__mul__ Lib/turtle.py /^ def __mul__(self, other):$/;" m class:Vec2D file: +__name__ Lib/_collections_abc.py /^__name__ = "collections.abc"$/;" v +__name__ Lib/_pydecimal.py /^__name__ = 'decimal' # For pickling$/;" v +__name__ Lib/test/test_enum.py /^ def __name__(self):$/;" m class:TestSpecial.test_subclasses_with_direct_pickle_support.NamedInt file: +__name__ Lib/test/test_enum.py /^ def __name__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs.NamedInt file: +__name__ Lib/test/test_enum.py /^ def __name__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs_ex.NamedInt file: +__name__ Lib/test/test_enum.py /^ def __name__(self):$/;" m class:TestSpecial.test_subclasses_with_reduce.NamedInt file: +__name__ Lib/test/test_enum.py /^ def __name__(self):$/;" m class:TestSpecial.test_subclasses_with_reduce_ex.NamedInt file: +__name__ Lib/test/test_enum.py /^ def __name__(self):$/;" m class:TestSpecial.test_subclasses_without_direct_pickle_support.NamedInt file: +__name__ Lib/test/test_inspect.py /^ __name__ = func.__name__$/;" v class:TestSignatureObject.test_signature_functionlike_class.funclike +__name__ Lib/test/test_opcache.py /^ __name__ = "Spam"$/;" v class:TestLoadAttrCache.test_type_descriptor_shadows_attribute_getset.Class +__name__ Lib/test/test_pydoc.py /^ __name__ = 42$/;" v class:PydocDocTest.test_non_str_name.A +__ne__ Lib/collections/__init__.py /^ __ne__ = _collections_abc.MutableMapping.__ne__$/;" v class:OrderedDict +__ne__ Lib/collections/__init__.py /^ def __ne__(self, other):$/;" m class:Counter file: +__ne__ Lib/http/cookies.py /^ __ne__ = object.__ne__$/;" v class:Morsel +__ne__ Lib/importlib/metadata/_text.py /^ def __ne__(self, other):$/;" m class:FoldedCase file: +__ne__ Lib/operator.py /^__ne__ = ne$/;" v +__ne__ Lib/test/pickletester.py /^ def __ne__(self, other):$/;" m class:ZeroCopyBytearray.PicklableNDArray file: +__ne__ Lib/test/support/__init__.py /^ def __ne__(self, other):$/;" m class:_ALWAYS_EQ file: +__ne__ Lib/test/support/__init__.py /^ def __ne__(self, other):$/;" m class:_NEVER_EQ file: +__ne__ Lib/test/test_binop.py /^ __ne__ = None$/;" v class:SN +__ne__ Lib/test/test_binop.py /^ __ne__ = None$/;" v class:XN +__ne__ Lib/test/test_bisect.py /^ __ne__ = __lt__$/;" v class:CmpErr +__ne__ Lib/test/test_collections.py /^ __ne__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__ne__ Lib/test/test_compare.py /^ __ne__ = unexpected$/;" v class:ComparisonSimpleTest.test_other_delegation.C +__ne__ Lib/test/test_compare.py /^ def __ne__(*args):$/;" m class:ComparisonSimpleTest.test_ne_high_priority.Right file: +__ne__ Lib/test/test_compare.py /^ def __ne__(*args):$/;" m class:ComparisonSimpleTest.test_ne_low_priority.Derived file: +__ne__ Lib/test/test_compare.py /^ def __ne__(self, other):$/;" m class:ComparisonFullTest.CompEqNe file: +__ne__ Lib/test/test_compare.py /^ def __ne__(self, other):$/;" m class:ComparisonFullTest.CompNe file: +__ne__ Lib/test/test_decimal.py /^ def __ne__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__ne__ Lib/test/test_descr.py /^ def __ne__(self, other):$/;" m class:.test_classic_comparisons.classic.C file: +__ne__ Lib/test/test_descr.py /^ def __ne__(self, other):$/;" m class:.test_rich_comparisons.classic.C file: +__ne__ Lib/test/test_descr.py /^ def __ne__(self, other):$/;" m class:.test_specials.Proxy file: +__ne__ Lib/test/test_hash.py /^ def __ne__(self, other):$/;" m class:OnlyInequality file: +__ne__ Lib/test/test_operator.py /^ def __ne__(self, other):$/;" m class:OperatorTestCase.test_ne.C file: +__ne__ Lib/test/test_pprint.py /^ def __ne__(self, other):$/;" m class:Orderable file: +__ne__ Lib/test/test_richcmp.py /^ def __ne__(self_, other): self.fail("This shouldn't happen")$/;" m class:MiscTest.test_misbehavin.Misb file: +__ne__ Lib/test/test_richcmp.py /^ def __ne__(self, other):$/;" m class:Number file: +__ne__ Lib/test/test_richcmp.py /^ def __ne__(self, other):$/;" m class:Vector file: +__ne__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __ne__(self, other): pass$/;" m class:AnyTest.test_any_mock_calls_comparison_order.Foo file: +__ne__ Lib/unittest/mock.py /^ __ne__ = object.__ne__$/;" v class:_Call +__ne__ Lib/unittest/mock.py /^ def __ne__(other):$/;" f function:_get_ne file: +__ne__ Lib/unittest/mock.py /^ def __ne__(self, other):$/;" m class:_ANY file: +__ne__ Lib/weakref.py /^ def __ne__(self, other):$/;" m class:WeakMethod file: +__neg__ Lib/_pydatetime.py /^ def __neg__(self):$/;" m class:timedelta file: +__neg__ Lib/_pydecimal.py /^ def __neg__(self, context=None):$/;" m class:Decimal file: +__neg__ Lib/collections/__init__.py /^ def __neg__(self):$/;" m class:Counter file: +__neg__ Lib/fractions.py /^ def __neg__(a):$/;" m class:Fraction file: +__neg__ Lib/numbers.py /^ def __neg__(self):$/;" m class:Complex file: +__neg__ Lib/operator.py /^__neg__ = neg$/;" v +__neg__ Lib/statistics.py /^ def __neg__(x1):$/;" m class:NormalDist file: +__neg__ Lib/test/test_descr.py /^ __neg__ = dict.copy$/;" v class:.test_mixing_slot_wrappers.X +__neg__ Lib/turtle.py /^ def __neg__(self):$/;" m class:Vec2D file: +__new__ Lib/_collections_abc.py /^ def __new__(cls, name, bases, namespace, **kwargs):$/;" m class:_DeprecateByteStringMeta file: +__new__ Lib/_collections_abc.py /^ def __new__(cls, origin, args):$/;" m class:_CallableGenericAlias file: +__new__ Lib/_py_abc.py /^ def __new__(mcls, name, bases, namespace, \/, **kwargs):$/;" m class:ABCMeta file: +__new__ Lib/_pydatetime.py /^ def __new__(cls, days=0, seconds=0, microseconds=0,$/;" m class:timedelta file: +__new__ Lib/_pydatetime.py /^ def __new__(cls, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0):$/;" m class:time file: +__new__ Lib/_pydatetime.py /^ def __new__(cls, offset, name=_Omitted):$/;" m class:timezone file: +__new__ Lib/_pydatetime.py /^ def __new__(cls, year, month=None, day=None):$/;" m class:date file: +__new__ Lib/_pydatetime.py /^ def __new__(cls, year, month=None, day=None, hour=0, minute=0, second=0,$/;" m class:datetime file: +__new__ Lib/_pydatetime.py /^ def __new__(cls, year, week, weekday, \/):$/;" m class:IsoCalendarDate file: +__new__ Lib/_pydecimal.py /^ def __new__(cls, value="0", context=None):$/;" m class:Decimal file: +__new__ Lib/_threading_local.py /^ def __new__(cls, \/, *args, **kw):$/;" m class:local file: +__new__ Lib/abc.py /^ def __new__(mcls, name, bases, namespace, \/, **kwargs):$/;" m class:.ABCMeta file: +__new__ Lib/ast.py /^ __new__ = _new$/;" v class:Bytes +__new__ Lib/ast.py /^ __new__ = _new$/;" v class:NameConstant +__new__ Lib/ast.py /^ __new__ = _new$/;" v class:Num +__new__ Lib/ast.py /^ __new__ = _new$/;" v class:Str +__new__ Lib/ast.py /^ def __new__(cls, *args, **kwargs):$/;" m class:Ellipsis file: +__new__ Lib/ast.py /^ def __new__(cls, dims=(), **kwargs):$/;" m class:ExtSlice file: +__new__ Lib/ast.py /^ def __new__(cls, value, **kwargs):$/;" m class:Index file: +__new__ Lib/codecs.py /^ def __new__(cls, encode, decode, streamreader=None, streamwriter=None,$/;" m class:CodecInfo file: +__new__ Lib/collections/__init__.py /^ def __new__(cls, \/, *args, **kwds):$/;" m class:OrderedDict file: +__new__ Lib/email/_header_value_parser.py /^ def __new__(cls, value, token_type):$/;" m class:Terminal file: +__new__ Lib/email/headerregistry.py /^ def __new__(cls, name, value):$/;" m class:BaseHeader file: +__new__ Lib/enum.py /^ def __new__(cls, *values):$/;" m class:StrEnum file: +__new__ Lib/enum.py /^ def __new__(cls, value):$/;" m class:Enum file: +__new__ Lib/enum.py /^ def __new__(metacls, cls, bases, classdict, *, boundary=None, _simple=False, **kwds):$/;" m class:EnumType file: +__new__ Lib/fractions.py /^ def __new__(cls, numerator=0, denominator=None):$/;" m class:Fraction file: +__new__ Lib/functools.py /^ def __new__(cls, func, \/, *args, **keywords):$/;" m class:partial file: +__new__ Lib/http/__init__.py /^ def __new__(cls, value, description):$/;" m class:HTTPMethod file: +__new__ Lib/http/__init__.py /^ def __new__(cls, value, phrase, description=''):$/;" m class:HTTPStatus file: +__new__ Lib/importlib/_bootstrap.py /^ def __new__(type, ob, key):$/;" m class:_WeakValueDictionary.__init__.KeyedRef file: +__new__ Lib/importlib/metadata/__init__.py /^ def __new__(cls, *args, **kwargs):$/;" m class:DeprecatedNonAbstract file: +__new__ Lib/importlib/metadata/__init__.py /^ def __new__(cls, root):$/;" m class:FastPath file: +__new__ Lib/importlib/metadata/_adapters.py /^ def __new__(cls, orig: email.message.Message):$/;" m class:Message file: +__new__ Lib/inspect.py /^ def __new__(cls, description):$/;" m class:_ParameterKind file: +__new__ Lib/inspect.py /^ def __new__(cls, filename, lineno, function, code_context, index, *, positions=None):$/;" m class:Traceback file: +__new__ Lib/inspect.py /^ def __new__(cls, frame, filename, lineno, function, code_context, index, *, positions=None):$/;" m class:FrameInfo file: +__new__ Lib/lib2to3/pytree.py /^ def __new__(cls, *args, **kwds):$/;" m class:Base file: +__new__ Lib/lib2to3/pytree.py /^ def __new__(cls, *args, **kwds):$/;" m class:BasePattern file: +__new__ Lib/pathlib.py /^ def __new__(cls, *args, **kwargs):$/;" m class:PosixPath file: +__new__ Lib/pathlib.py /^ def __new__(cls, *args, **kwargs):$/;" m class:WindowsPath file: +__new__ Lib/pathlib.py /^ def __new__(cls, *args, **kwargs):$/;" m class:Path file: +__new__ Lib/pathlib.py /^ def __new__(cls, *args, **kwargs):$/;" m class:PurePath file: +__new__ Lib/pdb.py /^ def __new__(cls, val):$/;" m class:_ScriptTarget file: +__new__ Lib/pstats.py /^ def __new__(cls, *values):$/;" m class:SortKey file: +__new__ Lib/re/_constants.py /^ def __new__(cls, value, name):$/;" m class:_NamedIntConstant file: +__new__ Lib/ssl.py /^ def __new__(cls, oid):$/;" m class:_ASN1Object file: +__new__ Lib/ssl.py /^ def __new__(cls, protocol=None, *args, **kwargs):$/;" m class:SSLContext file: +__new__ Lib/test/_test_multiprocessing.py /^ def __new__(cls):$/;" m class:CountedObject file: +__new__ Lib/test/ann_module.py /^ def __new__(meta, name, bases, namespace):$/;" m class:Meta file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kwargs):$/;" m class:TestDate.test_subclass_alternate_constructors.DateSubclass file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kwargs):$/;" m class:TestDateTime.test_subclass_alternate_constructors_datetime.DateTimeSubclass file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kwargs):$/;" m class:TestDateTime.test_subclass_now.DateTimeSubclass file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kws):$/;" m class:TestDate.test_subclass_date.C file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kws):$/;" m class:TestDateTime.test_subclass_datetime.C file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kws):$/;" m class:TestDateTimeTZ.test_subclass_datetimetz.C file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kws):$/;" m class:TestTime.test_subclass_time.C file: +__new__ Lib/test/datetimetester.py /^ def __new__(cls, *args, **kws):$/;" m class:TestTimeTZ.test_subclass_timetz.C file: +__new__ Lib/test/mapping_tests.py /^ def __new__(cls):$/;" m class:TestHashMappingProtocol.test_fromkeys.mydict file: +__new__ Lib/test/mapping_tests.py /^ def __new__(cls):$/;" m class:TestMappingProtocol.test_fromkeys.mydict file: +__new__ Lib/test/pickletester.py /^ __new__ = int.__new__$/;" v class:MyIntWithNew2 +__new__ Lib/test/pickletester.py /^ def __new__(cls, value):$/;" m class:MyIntWithNew file: +__new__ Lib/test/test__xxinterpchannels.py /^ def __new__(cls, action, end=None, interp=None):$/;" m class:ChannelAction file: +__new__ Lib/test/test__xxinterpchannels.py /^ def __new__(cls, end, interp, other, extra, creator):$/;" m class:ChannelCloseFixture file: +__new__ Lib/test/test__xxinterpchannels.py /^ def __new__(cls, name=None, id=None):$/;" m class:Interpreter file: +__new__ Lib/test/test__xxinterpchannels.py /^ def __new__(cls, pending=0, *, closed=False):$/;" m class:ChannelState file: +__new__ Lib/test/test_abc.py /^ def __new__(cls, name, this_bases, d):$/;" m class:test_factory.TestABC.test_tricky_new_works.with_metaclass.metaclass file: +__new__ Lib/test/test_abc.py /^ def __new__(cls):$/;" m class:test_factory.TestABC.test_all_new_methods_are_called.B file: +__new__ Lib/test/test_array.py /^ def __new__(cls, typecode, data, offset):$/;" m class:NumberTest.test_subclassing.ExaggeratingArray file: +__new__ Lib/test/test_class.py /^ def __new__(cls, *args, **kwargs):$/;" m class:ClassTests.testConstructorErrorMessages.D file: +__new__ Lib/test/test_class.py /^ def __new__(cls, name, bases, attrs, **kwargs):$/;" m class:ClassTests.testClassWithExtCall.Meta file: +__new__ Lib/test/test_codecs.py /^ def __new__(cls):$/;" m class:ExceptionNotesTest.test_new_override.CustomNew file: +__new__ Lib/test/test_complex.py /^ def __new__(self, value=0j):$/;" m class:ComplexTest.test_constructor.complex1 file: +__new__ Lib/test/test_copy.py /^ def __new__(cls, *, foo):$/;" m class:TestCopy.test_copy_inst_getnewargs_ex.C file: +__new__ Lib/test/test_copy.py /^ def __new__(cls, *, foo):$/;" m class:TestCopy.test_deepcopy_inst_getnewargs_ex.C file: +__new__ Lib/test/test_copy.py /^ def __new__(cls, foo):$/;" m class:TestCopy.test_copy_inst_getnewargs.C file: +__new__ Lib/test/test_copy.py /^ def __new__(cls, foo):$/;" m class:TestCopy.test_copy_registry.C file: +__new__ Lib/test/test_copy.py /^ def __new__(cls, foo):$/;" m class:TestCopy.test_deepcopy_inst_getnewargs.C file: +__new__ Lib/test/test_copy.py /^ def __new__(cls, foo):$/;" m class:TestCopy.test_deepcopy_registry.C file: +__new__ Lib/test/test_ctypes/test_init.py /^ def __new__(cls):$/;" m class:X file: +__new__ Lib/test/test_descr.py /^ __new__ = list.__new__$/;" v class:.test_bad_new.C +__new__ Lib/test/test_descr.py /^ __new__ = object.__new__$/;" v class:.test_bad_new.C +__new__ Lib/test/test_descr.py /^ __new__ = object.__new__$/;" v class:.test_restored_object_new.B +__new__ Lib/test/test_descr.py /^ def __new__(*args):$/;" m class:.test_funny_new.C file: +__new__ Lib/test/test_descr.py /^ def __new__(*args, **kwargs):$/;" m class:ClassPropertiesAndMethods.test_metaclass.A file: +__new__ Lib/test/test_descr.py /^ def __new__(cls):$/;" m class:.test_bpo25750.X file: +__new__ Lib/test/test_descr.py /^ def __new__(cls):$/;" m class:.test_newslots.C file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, *args, **kwargs):$/;" m class:.test_restored_object_new.A file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, *args, **kwds):$/;" m class:OperatorsTest.test_complexes.Number file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, a, b):$/;" m class:PicklingTests.test_reduce_copying.C2 file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, a, b, *, value=0):$/;" m class:PicklingTests.test_reduce_copying.C5 file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, a, b, value):$/;" m class:PicklingTests.test_reduce_copying.C4 file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, arg):$/;" m class:.test_funny_new.C file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, foo):$/;" m class:.test_object_new.A file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, foo, kw=0, *args, **kwds):$/;" m class:.test_object_new_and_init_with_parameters.OverrideNew file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, name, bases, dict):$/;" m class:ClassPropertiesAndMethods.test_metaclass.M1 file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, name, bases, dict):$/;" m class:ClassPropertiesAndMethods.test_metaclass.M2 file: +__new__ Lib/test/test_descr.py /^ def __new__(cls, name, bases, namespace, attr):$/;" m class:.test_slots_special2.Meta file: +__new__ Lib/test/test_descr.py /^ def __new__(mcls, *args, **kwargs):$/;" m class:ClassPropertiesAndMethods.test_metaclass.ANotMeta file: +__new__ Lib/test/test_descr.py /^ def __new__(mcls, *args, **kwargs):$/;" m class:ClassPropertiesAndMethods.test_metaclass.BNotMeta file: +__new__ Lib/test/test_descr.py /^ def __new__(mcls, name, bases, ns):$/;" m class:ClassPropertiesAndMethods.test_metaclass.AMeta file: +__new__ Lib/test/test_descr.py /^ def __new__(mcls, name, bases, ns):$/;" m class:ClassPropertiesAndMethods.test_metaclass.BMeta file: +__new__ Lib/test/test_descr.py /^ def __new__(metaclass, name, bases, dict):$/;" m class:ClassPropertiesAndMethods.test_metaclass.autoproperty file: +__new__ Lib/test/test_descr.py /^ def __new__(metaclass, name, bases, dict):$/;" m class:ClassPropertiesAndMethods.test_metaclass.autosuper file: +__new__ Lib/test/test_descr.py /^ def __new__(self, name, bases, ns):$/;" m class:.test_mutable_bases_with_failing_mro.WorkOnce file: +__new__ Lib/test/test_descr.py /^ def __new__(mcls, name, bases, attrs):$/;" m class:DebugHelperMeta file: +__new__ Lib/test/test_dict.py /^ def __new__(cls):$/;" m class:DictTest.test_fromkeys.baddict3 file: +__new__ Lib/test/test_dict.py /^ def __new__(cls):$/;" m class:DictTest.test_fromkeys.mydict file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value):$/;" m class:TestSpecial.test_init_exception.Base.MyEnum file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value):$/;" m class:_EnumTests.test_bad_new_super.BadSuper file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value, sequence):$/;" m class:TestSpecial.test_missing_value_error.Combined file: +__new__ Lib/test/test_enum.py /^ def __new__(cls):$/;" m class:TestSpecial.test_duplicate_values_give_unique_enum_items.AutoNumber file: +__new__ Lib/test/test_enum.py /^ def __new__(cls):$/;" m class:TestSpecial.test_inherited_new_from_enhanced_enum.AutoNumber file: +__new__ Lib/test/test_enum.py /^ def __new__(cls):$/;" m class:TestSpecial.test_inherited_new_from_mixed_enum.AutoNumber file: +__new__ Lib/test/test_enum.py /^ def __new__(cls):$/;" m class:TestSpecial.test_nonhash_value.AutoNumberInAList file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_conflicting_types_resolved_in_new.LabelledIntEnum file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_init_exception.Base file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_subclasses_with_direct_pickle_support.NamedInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_subclasses_with_getnewargs.NamedInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_subclasses_with_getnewargs_ex.NamedInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_subclasses_with_reduce.NamedInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_subclasses_with_reduce_ex.NamedInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *args):$/;" m class:TestSpecial.test_subclasses_without_direct_pickle_support.NamedInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, *value, **kwds):$/;" m class:_EnumTests.test_dir_on_sub_with_behavior_including_instance_dict_on_super.SuperEnum file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, c):$/;" m class:TestSpecial.test_flag_with_custom_new.FlagFromChar file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, val):$/;" m class:TestSpecial.test_value_backup_assign.Some file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value):$/;" m class:TestSpecial.test_inherited_data_type.UnBrokenInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value):$/;" m class:TestSpecial.test_multiple_mixin_inherited.Fee file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value):$/;" m class:TestSpecial.test_multiple_mixin_inherited.MyInt file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value, abbr=None):$/;" m class:TestInternals.test_multiple_auto_on_line.Hah file: +__new__ Lib/test/test_enum.py /^ def __new__(cls, value, period):$/;" m class:TestSpecial.test_ignore.Period file: +__new__ Lib/test/test_enum.py /^ def __new__(metacls, cls, bases, classdict):$/;" m class:TestSpecial.test_multiple_mixin_mro.auto_enum file: +__new__ Lib/test/test_except_star.py /^ def __new__(cls, message, excs, code):$/;" m class:TestExceptStarExceptionGroupSubclass.test_except_star_EG_subclass.EG file: +__new__ Lib/test/test_exception_group.py /^ def __new__(cls, message, excs, code):$/;" m class:NestedExceptionGroupSubclassSplitTest.test_split_ExceptionGroup_subclass_derive_and_new_overrides.EG file: +__new__ Lib/test/test_exception_group.py /^ def __new__(cls, message, excs, unused):$/;" m class:NestedExceptionGroupSubclassSplitTest.test_split_BaseExceptionGroup_subclass_no_derive_new_override.EG file: +__new__ Lib/test/test_exception_hierarchy.py /^ def __new__(cls, message, baz):$/;" m class:SubOSErrorWithNew file: +__new__ Lib/test/test_finalization.py /^ def __new__(cls, *args, **kwargs):$/;" m class:with_tp_del.C file: +__new__ Lib/test/test_finalization.py /^ def __new__(cls, *args, **kwargs):$/;" m class:without_gc.C file: +__new__ Lib/test/test_float.py /^ def __new__(cls, arg, newarg=None):$/;" m class:GeneralFloatCases.test_keywords_in_subclass.subclass_with_new file: +__new__ Lib/test/test_float.py /^ def __new__(cls, value):$/;" m class:HexFloatTestCase.test_subclass.F file: +__new__ Lib/test/test_float.py /^ def __new__(cls, value=0.):$/;" m class:GeneralFloatCases.test_floatconversion.Foo3 file: +__new__ Lib/test/test_functools.py /^ def __new__(cls, name, bases, ns):$/;" m class:TestTotalOrdering.test_total_ordering_for_metaclasses_issue_44605.SortableMeta file: +__new__ Lib/test/test_gc.py /^ def __new__(cls, *args, **kwargs):$/;" m class:with_tp_del.C file: +__new__ Lib/test/test_generators.py /^ def __new__(cls, *args, **kwargs):$/;" m class:ExceptionTest.test_except_throw_bad_exception.E file: +__new__ Lib/test/test_genericalias.py /^ def __new__(cls, *args, **kwargs):$/;" m class:BaseTest.test_subclassing_types_genericalias.Bad file: +__new__ Lib/test/test_genericclass.py /^ def __new__(mcls, name, bases, ns):$/;" m class:TestMROEntry.test_mro_entry_metaclass.Meta file: +__new__ Lib/test/test_httplib.py /^ def __new__(cls, value, phrase, description=''):$/;" m class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus file: +__new__ Lib/test/test_inspect.py /^ def __new__(cls, a=1, *args, **kwargs):$/;" m class:TestSignatureObject.test_signature_on_subclass.A file: +__new__ Lib/test/test_inspect.py /^ def __new__(cls, a=1, b=2, *args, **kwargs):$/;" m class:TestSignatureObject.test_signature_on_subclass.C file: +__new__ Lib/test/test_inspect.py /^ def __new__(mcls, name, bases, dct, *, bar=2):$/;" m class:TestSignatureObject.test_signature_on_class.CM file: +__new__ Lib/test/test_inspect.py /^ def __new__(mcls, name, bases, dct, *, foo=1):$/;" m class:TestSignatureObject.test_signature_on_class.CM file: +__new__ Lib/test/test_inspect.py /^ def __new__(mcls, name, bases, dct, *, foo=1):$/;" m class:TestSignatureObject.test_signature_on_class.CMM file: +__new__ Lib/test/test_inspect.py /^ def __new__(self, *args, **kwargs):$/;" m class:TestSignatureObject.test_signature_on_derived_classes.B file: +__new__ Lib/test/test_iter.py /^ def __new__(cls):$/;" m class:TestCase.test_ref_counting_behavior.C file: +__new__ Lib/test/test_itertools.py /^ def __new__(cls, *args, newarg=None):$/;" m class:SubclassWithKwargsTest.test_keywords_in_subclass.subclass_with_new file: +__new__ Lib/test/test_list.py /^ def __new__(cls, seq, newarg=None):$/;" m class:ListTest.test_keywords_in_subclass.subclass_with_new file: +__new__ Lib/test/test_long.py /^ def __new__(cls, value):$/;" m class:LongTest.test_from_bytes.myint2 file: +__new__ Lib/test/test_long.py /^ def __new__(cls, value=0):$/;" m class:LongTest.test_access_to_nonexistent_digit_0.Integer file: +__new__ Lib/test/test_memoryio.py /^ def __new__(cls, *args, **kwargs):$/;" m class:CStringIOPickleTest.ioclass file: +__new__ Lib/test/test_memoryio.py /^ def __new__(cls, *args, **kwargs):$/;" m class:PyStringIOPickleTest.ioclass file: +__new__ Lib/test/test_mmap.py /^ def __new__(klass, *args, **kwargs):$/;" m class:MmapTests.test_subclass.anon_mmap file: +__new__ Lib/test/test_pprint.py /^ def __new__(cls, celsius_degrees):$/;" m class:QueryTestCase.test_integer.Temperature file: +__new__ Lib/test/test_property.py /^ def __new__(typ, *args, **kwargs):$/;" m class:PropertyTests.test_property_setname_on_property_subclass.pro file: +__new__ Lib/test/test_pstats.py /^ def __new__(cls, *values):$/;" m class:StatsTestCase.test_sort_stats_enum.CheckedSortKey file: +__new__ Lib/test/test_py_compile.py /^ def __new__(mcls, name, bases, dct, *, source_date_epoch):$/;" m class:SourceDateEpochTestMeta file: +__new__ Lib/test/test_raise.py /^ def __new__(cls, *args):$/;" m class:TestRaise.test_new_returns_invalid_instance.MyException file: +__new__ Lib/test/test_set.py /^ def __new__(cls, arg, newarg=None):$/;" m class:TestFrozenSetSubclass.test_keywords_in_subclass.subclass_with_new file: +__new__ Lib/test/test_set.py /^ def __new__(cls, arg, newarg=None):$/;" m class:TestSetSubclass.test_keywords_in_subclass.subclass_with_new file: +__new__ Lib/test/test_subclassinit.py /^ def __new__(cls, name, bases, namespace):$/;" m class:Test.test_errors_changed_pep487.MyMeta file: +__new__ Lib/test/test_subclassinit.py /^ def __new__(cls, name, bases, namespace, otherarg):$/;" m class:Test.test_errors.MyMeta file: +__new__ Lib/test/test_subclassinit.py /^ def __new__(cls, name, bases, namespace, otherarg):$/;" m class:Test.test_errors_changed_pep487.MyMeta file: +__new__ Lib/test/test_subclassinit.py /^ def __new__(cls, name, bases, ns):$/;" m class:Test.test_set_name_init_subclass.Meta file: +__new__ Lib/test/test_subclassinit.py /^ def __new__(cls, name, bases, ns):$/;" m class:Test.test_set_name_metaclass.Meta file: +__new__ Lib/test/test_super.py /^ def __new__(cls):$/;" m class:TestSuper.test_reassigned_new.A file: +__new__ Lib/test/test_super.py /^ def __new__(cls):$/;" m class:TestSuper.test_reassigned_new.C file: +__new__ Lib/test/test_super.py /^ def __new__(cls, name, bases, namespace):$/;" m class:TestSuper.test___class___delayed.Meta file: +__new__ Lib/test/test_super.py /^ def __new__(cls, name, bases, namespace):$/;" m class:TestSuper.test___class___new.Meta file: +__new__ Lib/test/test_super.py /^ def __new__(cls, name, bases, namespace):$/;" m class:TestSuper.test___classcell___expected_behaviour.Meta file: +__new__ Lib/test/test_super.py /^ def __new__(cls, name, bases, namespace):$/;" m class:TestSuper.test___classcell___missing.Meta file: +__new__ Lib/test/test_super.py /^ def __new__(cls, name, bases, namespace):$/;" m class:TestSuper.test___classcell___wrong_cell.Meta file: +__new__ Lib/test/test_super.py /^ def __new__(cls, name, bases, namespace, cell):$/;" m class:TestSuper.test___classcell___overwrite.Meta file: +__new__ Lib/test/test_tuple.py /^ def __new__(cls, arg, newarg=None):$/;" m class:TupleTest.test_keywords_in_subclass.subclass_with_new file: +__new__ Lib/test/test_types.py /^ def __new__(*args, **kwargs):$/;" m class:ClassCreationTests.test_prepare_class.A file: +__new__ Lib/test/test_types.py /^ def __new__(cls, name, bases, attrs):$/;" m class:ClassCreationTests.test_metaclass_new_error.ModelBase file: +__new__ Lib/test/test_types.py /^ def __new__(mcls, *args, **kwargs):$/;" m class:ClassCreationTests.test_metaclass_override_callable.ANotMeta file: +__new__ Lib/test/test_types.py /^ def __new__(mcls, *args, **kwargs):$/;" m class:ClassCreationTests.test_metaclass_override_callable.BNotMeta file: +__new__ Lib/test/test_types.py /^ def __new__(mcls, name, bases, ns):$/;" m class:ClassCreationTests.test_metaclass_derivation.AMeta file: +__new__ Lib/test/test_types.py /^ def __new__(mcls, name, bases, ns):$/;" m class:ClassCreationTests.test_metaclass_derivation.BMeta file: +__new__ Lib/test/test_types.py /^ def __new__(mcls, name, bases, ns, **kw):$/;" m class:ClassCreationTests.Meta file: +__new__ Lib/test/test_typing.py /^ def __new__($/;" m class:DataclassTransformTests.test_metaclass.ModelMeta file: +__new__ Lib/test/test_typing.py /^ def __new__(cls):$/;" m class:GenericTests.test_new_no_args.B file: +__new__ Lib/test/test_typing.py /^ def __new__(cls, *args):$/;" m class:ProtocolTests.test_new_called.C file: +__new__ Lib/test/test_typing.py /^ def __new__(cls, arg):$/;" m class:GenericTests.test_new_no_args.C file: +__new__ Lib/test/test_typing.py /^ def __new__(cls, arg):$/;" m class:GenericTests.test_new_with_args.B file: +__new__ Lib/test/test_unicode.py /^ def __new__(cls, content=""):$/;" m class:UnicodeTest.test_conversion.StrSubclassToStrSubclass file: +__new__ Lib/test/test_weakref.py /^ def __new__(type, ob, callback, slot1, slot2):$/;" m class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef file: +__new__ Lib/test/test_xml_etree.py /^ def __new__(cls, elem, *args):$/;" m class:MutatingElementPath file: +__new__ Lib/turtle.py /^ def __new__(cls, x, y):$/;" m class:Vec2D file: +__new__ Lib/typing.py /^ def __new__(cls, *args, **kwargs):$/;" m class:Annotated file: +__new__ Lib/typing.py /^ def __new__(cls, *args, **kwargs):$/;" m class:Any file: +__new__ Lib/typing.py /^ def __new__(cls, name, bases, ns, total=True):$/;" m class:_TypedDictMeta file: +__new__ Lib/typing.py /^ def __new__(cls, typename, bases, ns):$/;" m class:NamedTupleMeta file: +__new__ Lib/typing.py /^ def __new__(mcls, name, bases, namespace, \/, **kwargs):$/;" m class:_ProtocolMeta file: +__new__ Lib/unittest/mock.py /^ def __new__($/;" m class:NonCallableMock file: +__new__ Lib/unittest/mock.py /^ def __new__(cls, value=(), name='', parent=None, two=False,$/;" m class:_Call file: +__new__ Lib/weakref.py /^ def __new__(cls, meth, callback=None):$/;" m class:WeakMethod file: +__new__ Lib/weakref.py /^ def __new__(type, ob, callback, key):$/;" m class:KeyedRef file: +__new__ Lib/zoneinfo/_zoneinfo.py /^ def __new__(cls, key):$/;" m class:ZoneInfo file: +__new__ Tools/c-analyzer/c_common/scriptutil.py /^ def __new__(cls, *args, **kwargs):$/;" m class:CLIArgSpec file: +__new__ Tools/c-analyzer/c_parser/info.py /^ def __new__(cls, filename, funcname, name):$/;" m class:DeclID file: +__newobj__ Lib/copyreg.py /^def __newobj__(cls, *args):$/;" f file: +__newobj_ex__ Lib/copyreg.py /^def __newobj_ex__(cls, args, kwargs):$/;" f file: +__next Lib/re/_parser.py /^ def __next(self):$/;" m class:Tokenizer file: +__next__ Doc/includes/mp_newtype.py /^ def __next__(self):$/;" m class:GeneratorProxy file: +__next__ Lib/_collections_abc.py /^ def __next__(self):$/;" m class:Generator file: +__next__ Lib/_collections_abc.py /^ def __next__(self):$/;" m class:Iterator file: +__next__ Lib/_pyio.py /^ def __next__(self):$/;" m class:IOBase file: +__next__ Lib/_pyio.py /^ def __next__(self):$/;" m class:TextIOWrapper file: +__next__ Lib/codecs.py /^ def __next__(self):$/;" m class:StreamReader file: +__next__ Lib/codecs.py /^ def __next__(self):$/;" m class:StreamReaderWriter file: +__next__ Lib/codecs.py /^ def __next__(self):$/;" m class:StreamRecoder file: +__next__ Lib/csv.py /^ def __next__(self):$/;" m class:DictReader file: +__next__ Lib/email/feedparser.py /^ def __next__(self):$/;" m class:BufferedSubFile file: +__next__ Lib/fileinput.py /^ def __next__(self):$/;" m class:FileInput file: +__next__ Lib/multiprocessing/managers.py /^ def __next__(self, *args):$/;" m class:IteratorProxy file: +__next__ Lib/multiprocessing/pool.py /^ __next__ = next # XXX$/;" v class:IMapIterator +__next__ Lib/shlex.py /^ def __next__(self):$/;" m class:shlex file: +__next__ Lib/tempfile.py /^ def __next__(self):$/;" m class:_RandomNameSequence file: +__next__ Lib/test/_test_multiprocessing.py /^ def __next__(self):$/;" m class:_TestPool.test_map_handle_iterable_exception.SpecialIterable file: +__next__ Lib/test/_test_multiprocessing.py /^ def __next__(self):$/;" m class:IteratorProxy file: +__next__ Lib/test/libregrtest/runtest_mp.py /^ def __next__(self):$/;" m class:MultiprocessIterator file: +__next__ Lib/test/list_tests.py /^ def __next__(self):$/;" m class:CommonTest.test_extend.CustomIter file: +__next__ Lib/test/mapping_tests.py /^ def __next__(self):$/;" m class:BasicTestMappingProtocol.test_update.FailingUserDict.keys.BogonIter file: +__next__ Lib/test/mapping_tests.py /^ def __next__(self):$/;" m class:BasicTestMappingProtocol.test_update.badseq file: +__next__ Lib/test/mapping_tests.py /^ def __next__(self):$/;" m class:TestMappingProtocol.test_fromkeys.BadSeq file: +__next__ Lib/test/seq_tests.py /^ def __next__(self):$/;" m class:IterFunc file: +__next__ Lib/test/seq_tests.py /^ def __next__(self):$/;" m class:IterFuncStop file: +__next__ Lib/test/seq_tests.py /^ def __next__(self):$/;" m class:IterGenExc file: +__next__ Lib/test/seq_tests.py /^ def __next__(self):$/;" m class:IterNextOnly file: +__next__ Lib/test/test_builtin.py /^ def __next__(self):$/;" m class:BuiltinTest.test_next.Iter file: +__next__ Lib/test/test_builtin.py /^ def __next__(self):$/;" m class:BuiltinTest.test_zip_strict_error_handling.Iter file: +__next__ Lib/test/test_builtin.py /^ def __next__(self):$/;" m class:BuiltinTest.test_zip_strict_error_handling_stopiteration.Iter file: +__next__ Lib/test/test_collections.py /^ def __next__(self): return None$/;" m class:TestOneTrickPonyABCs.test_Generator.Gen file: +__next__ Lib/test/test_collections.py /^ def __next__(self): return None$/;" m class:TestOneTrickPonyABCs.test_Generator.NonGen1 file: +__next__ Lib/test/test_collections.py /^ def __next__(self): return None$/;" m class:TestOneTrickPonyABCs.test_Generator.NonGen2 file: +__next__ Lib/test/test_collections.py /^ def __next__(self):$/;" m class:TestOneTrickPonyABCs.test_Iterator.NextOnly file: +__next__ Lib/test/test_dict.py /^ def __next__(self):$/;" m class:DictTest.test_update.FailingUserDict.keys.BogonIter file: +__next__ Lib/test/test_dict.py /^ def __next__(self):$/;" m class:DictTest.test_fromkeys.BadSeq file: +__next__ Lib/test/test_dict.py /^ def __next__(self):$/;" m class:DictTest.test_update.badseq file: +__next__ Lib/test/test_enumerate.py /^ def __next__(self):$/;" m class:E file: +__next__ Lib/test/test_enumerate.py /^ def __next__(self):$/;" m class:I file: +__next__ Lib/test/test_enumerate.py /^ def __next__(self):$/;" m class:X file: +__next__ Lib/test/test_heapq.py /^ def __next__(self):$/;" m class:E file: +__next__ Lib/test/test_heapq.py /^ def __next__(self):$/;" m class:I file: +__next__ Lib/test/test_heapq.py /^ def __next__(self):$/;" m class:S file: +__next__ Lib/test/test_heapq.py /^ def __next__(self):$/;" m class:X file: +__next__ Lib/test/test_io.py /^ def __next__(self):$/;" m class:IOTest.test_next_nonsizeable.R file: +__next__ Lib/test/test_iter.py /^ def __next__(self):$/;" m class:TestCase.test_builtin_filter.Seq.__iter__.SeqIter file: +__next__ Lib/test/test_iter.py /^ def __next__(self):$/;" m class:TestCase.test_writelines.Iterator file: +__next__ Lib/test/test_iter.py /^ def __next__(self):$/;" m class:TestCase.test_3720.BadIterator file: +__next__ Lib/test/test_iter.py /^ def __next__(self):$/;" m class:TestCase.test_builtin_zip.IntsFrom file: +__next__ Lib/test/test_iter.py /^ def __next__(self):$/;" m class:TestCase.test_unicode_join_endcase.OhPhooey file: +__next__ Lib/test/test_iter.py /^ def __next__(self):$/;" m class:BasicIterClass file: +__next__ Lib/test/test_iter.py /^ def __next__(self):$/;" m class:IteratorProxyClass file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:TestBasicOps.test_bug_7244.Repeater file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:TestBasicOps.test_tee_concurrent.I file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:TestBasicOps.test_tee_reenter.I file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:E file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:E2 file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:I file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:S file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:StopNow file: +__next__ Lib/test/test_itertools.py /^ def __next__(self):$/;" m class:X file: +__next__ Lib/test/test_set.py /^ def __next__(self):$/;" m class:E file: +__next__ Lib/test/test_set.py /^ def __next__(self):$/;" m class:I file: +__next__ Lib/test/test_set.py /^ def __next__(self):$/;" m class:S file: +__next__ Lib/test/test_set.py /^ def __next__(self):$/;" m class:X file: +__next__ Lib/test/test_sqlite3/test_dbapi.py /^ def __next__(self):$/;" m class:CursorTests.test_execute_many_iterator.MyIter file: +__next__ Lib/test/test_types.py /^ def __next__(self): pass$/;" m class:CoroutineTests.test_duck_corogen.CoroGenLike file: +__next__ Lib/test/test_types.py /^ def __next__(self): pass$/;" m class:CoroutineTests.test_duck_gen.GenLike file: +__next__ Lib/test/test_types.py /^ def __next__(self):$/;" m class:CoroutineTests.test_duck_functional_gen.Generator file: +__next__ Lib/test/test_unittest/testmock/testmock.py /^ __next__ = next$/;" v class:Iter +__next__ Lib/test/test_xml_etree.py /^ def __next__(self):$/;" m class:XMLPullParserTest.test_events_sequence.DummyIter file: +__next__ Lib/test/test_yield_from.py /^ def __next__(self):$/;" m class:TestPEP380Operation.test_broken_getattr_handling.Broken file: +__next__ Lib/test/test_yield_from.py /^ def __next__(self):$/;" m class:TestPEP380Operation.test_custom_iterator_return.MyIter file: +__next__ Lib/test/test_yield_from.py /^ def __next__(self):$/;" m class:TestPEP380Operation.test_delegating_generators_claim_to_be_running.MyIt file: +__next__ Lib/test/test_yield_from.py /^ def __next__(self):$/;" m class:TestPEP380Operation.test_send_tuple_with_custom_generator.MyGen file: +__next__ Lib/test/test_zipfile/_path/_itertools.py /^ def __next__(self):$/;" m class:Counter file: +__next__ Lib/types.py /^ def __next__(self):$/;" m class:_GeneratorWrapper file: +__next__ Lib/unittest/mock.py /^ def __next__(self):$/;" m class:_MockIter file: +__next__ Lib/wsgiref/util.py /^ def __next__(self):$/;" m class:FileWrapper file: +__next__ Lib/wsgiref/validate.py /^ def __next__(self):$/;" m class:IteratorWrapper file: +__next__ Lib/xml/dom/pulldom.py /^ def __next__(self):$/;" m class:DOMEventStream file: +__next__ Lib/xml/etree/ElementTree.py /^ __next__ = iterator(source).__next__$/;" v class:iterparse.IterParseIterator +__next__ Tools/clinic/clinic.py /^ def __next__(self):$/;" m class:BlockParser file: +__nonlocals Lib/symtable.py /^ __nonlocals = None$/;" v class:Function +__not__ Lib/operator.py /^__not__ = not_$/;" v +__openseen Tools/i18n/pygettext.py /^ def __openseen(self, ttype, tstring, lineno):$/;" m class:TokenEater file: +__or__ Lib/_collections_abc.py /^ def __or__(self, other):$/;" m class:Set file: +__or__ Lib/_weakrefset.py /^ __or__ = union$/;" v class:WeakSet +__or__ Lib/collections/__init__.py /^ def __or__(self, other):$/;" m class:ChainMap file: +__or__ Lib/collections/__init__.py /^ def __or__(self, other):$/;" m class:Counter file: +__or__ Lib/collections/__init__.py /^ def __or__(self, other):$/;" m class:OrderedDict file: +__or__ Lib/collections/__init__.py /^ def __or__(self, other):$/;" m class:UserDict file: +__or__ Lib/enum.py /^ def __or__(self, other):$/;" m class:Flag file: +__or__ Lib/numbers.py /^ def __or__(self, other):$/;" m class:Integral file: +__or__ Lib/operator.py /^__or__ = or_$/;" v +__or__ Lib/os.py /^ def __or__(self, other):$/;" m class:_Environ file: +__or__ Lib/test/support/_hypothesis_stubs/strategies.py /^ def __or__(self, other):$/;" m class:StubStrategy file: +__or__ Lib/test/test_augassign.py /^ def __or__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__or__ Lib/typing.py /^ def __or__(self, other):$/;" m class:ForwardRef file: +__or__ Lib/typing.py /^ def __or__(self, other):$/;" m class:NewType file: +__or__ Lib/typing.py /^ def __or__(self, other):$/;" m class:_SpecialForm file: +__or__ Lib/typing.py /^ def __or__(self, right):$/;" m class:_GenericAlias file: +__or__ Lib/typing.py /^ def __or__(self, right):$/;" m class:_SpecialGenericAlias file: +__or__ Lib/weakref.py /^ def __or__(self, other):$/;" m class:WeakKeyDictionary file: +__or__ Lib/weakref.py /^ def __or__(self, other):$/;" m class:WeakValueDictionary file: +__origin__ Objects/typevarobject.c /^ PyObject *__origin__;$/;" m struct:__anon717 file: +__parameters__ Lib/test/test_typing.py /^ __parameters__ = (T,)$/;" v class:GenericTests.test_non_generic_subscript.A +__parameters__ Lib/test/test_typing.py /^ __parameters__ = (T,)$/;" v class:GenericTests.test_parameter_detection.A +__params Lib/symtable.py /^ __params = None$/;" v class:Function +__parse_string Lib/http/cookies.py /^ def __parse_string(self, str, patt=_CookiePattern):$/;" m class:BaseCookie file: +__patched_linecache_getlines Lib/doctest.py /^ def __patched_linecache_getlines(self, filename, module_globals=None):$/;" m class:DocTestRunner file: +__path__ PC/layout/main.py /^ __path__ = [str(Path(__file__).resolve().parent)]$/;" v +__peer Lib/test/smtpd.py /^ def __peer(self):$/;" m class:SMTPChannel file: +__peer Lib/test/smtpd.py /^ def __peer(self, value):$/;" m class:SMTPChannel file: +__pos__ Lib/_pydatetime.py /^ def __pos__(self):$/;" m class:timedelta file: +__pos__ Lib/_pydecimal.py /^ def __pos__(self, context=None):$/;" m class:Decimal file: +__pos__ Lib/collections/__init__.py /^ def __pos__(self):$/;" m class:Counter file: +__pos__ Lib/fractions.py /^ def __pos__(a):$/;" m class:Fraction file: +__pos__ Lib/numbers.py /^ def __pos__(self):$/;" m class:Complex file: +__pos__ Lib/operator.py /^__pos__ = pos$/;" v +__pos__ Lib/statistics.py /^ def __pos__(x1):$/;" m class:NormalDist file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__():$/;" m class:TestCase.test_post_init_staticmethod.C file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(cls):$/;" m class:TestCase.test_post_init_classmethod.C file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init.C file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init_not_auto_added.A1 file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init_not_auto_added.B0 file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init_not_auto_added.B1 file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init_not_auto_added.C0 file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init_not_auto_added.C1 file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init_super.B file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self):$/;" m class:TestCase.test_post_init_super.C file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self, b, d):$/;" m class:TestKeywordArgs.test_post_init.A file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self, b, d):$/;" m class:TestKeywordArgs.test_post_init.B file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self, init_base, init_derived):$/;" m class:TestCase.test_init_var_inheritance.C file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self, init_param):$/;" m class:TestCase.test_init_var.C file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self, y):$/;" m class:TestReplace.test_initvar_is_specified.C file: +__post_init__ Lib/test/test_dataclasses.py /^ def __post_init__(self, y, z):$/;" m class:TestReplace.test_initvar_with_default_value.C file: +__pow__ Lib/_pydecimal.py /^ def __pow__(self, other, modulo=None, context=None):$/;" m class:Decimal file: +__pow__ Lib/fractions.py /^ def __pow__(a, b):$/;" m class:Fraction file: +__pow__ Lib/numbers.py /^ def __pow__(self, exponent):$/;" m class:Complex file: +__pow__ Lib/numbers.py /^ def __pow__(self, exponent, modulus=None):$/;" m class:Integral file: +__pow__ Lib/operator.py /^__pow__ = pow$/;" v +__pow__ Lib/test/test_augassign.py /^ def __pow__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__pow__ Lib/test/test_descr.py /^ def __pow__(self, *args):$/;" m class:AAAPTypesLongInitTest.test_pytype_long_ready.UserLong file: +__pow__ Lib/test/test_descr.py /^ def __pow__(self, other):$/;" m class:.test_ipow_returns_not_implemented.C file: +__pow__ Lib/test/test_descr.py /^ def __pow__(self, other, mod=None):$/;" m class:.test_binary_operator_override.I file: +__pow__ Lib/test/test_statistics.py /^ def __pow__(self, other):$/;" m class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat file: +__pow__ Modules/_decimal/tests/deccheck.py /^ def __pow__(self, t):$/;" m class:SkipHandler file: +__prepare__ Lib/enum.py /^ def __prepare__(metacls, cls, bases, **kwds):$/;" m class:EnumType file: +__prepare__ Lib/test/test_descr.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassPropertiesAndMethods.test_metaclass.AMeta file: +__prepare__ Lib/test/test_descr.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassPropertiesAndMethods.test_metaclass.ANotMeta file: +__prepare__ Lib/test/test_descr.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassPropertiesAndMethods.test_metaclass.BMeta file: +__prepare__ Lib/test/test_descr.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassPropertiesAndMethods.test_metaclass.BNotMeta file: +__prepare__ Lib/test/test_grammar.py /^ def __prepare__(metacls, name, bases, **kwds):$/;" m class:GrammarTests.test_var_annot_metaclass_semantics.CMeta file: +__prepare__ Lib/test/test_types.py /^ def __prepare__(*args):$/;" m class:ClassCreationTests.test_bad___prepare__.BadMeta file: +__prepare__ Lib/test/test_types.py /^ def __prepare__(*args):$/;" m class:ClassCreationTests.test_prepare_class.A file: +__prepare__ Lib/test/test_types.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassCreationTests.test_metaclass_derivation.AMeta file: +__prepare__ Lib/test/test_types.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassCreationTests.test_metaclass_derivation.BMeta file: +__prepare__ Lib/test/test_types.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassCreationTests.test_metaclass_override_callable.ANotMeta file: +__prepare__ Lib/test/test_types.py /^ def __prepare__(mcls, name, bases):$/;" m class:ClassCreationTests.test_metaclass_override_callable.BNotMeta file: +__prepare__ Lib/test/test_types.py /^ def __prepare__(mcls, name, bases, **kw):$/;" m class:ClassCreationTests.Meta file: +__py_new Lib/hashlib.py /^def __py_new(name, data=b'', **kwargs):$/;" f file: +__qualname__ Lib/test/test_descr.py /^ __qualname__ = object()$/;" v class:.test_slots_special2.Q1.Q2 +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'Creature'$/;" v class:TestSpecial.test_repr_with_dataclass.Creature +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'CreatureDataMixin'$/;" v class:TestSpecial.test_repr_with_dataclass.CreatureDataMixin +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'Foo'$/;" v class:TestSpecial.test_repr_with_dataclass.Foo +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'HexInt'$/;" v class:TestSpecial.test_inherited_data_type.HexInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'MyEnum'$/;" v class:TestSpecial.test_inherited_data_type.MyEnum +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'MyOtherEnum'$/;" v class:TestSpecial.test_inherited_data_type.MyOtherEnum +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'MyUnBrokenEnum'$/;" v class:TestSpecial.test_inherited_data_type.MyUnBrokenEnum +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NEI' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_getnewargs.NEI +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NEI' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_getnewargs_ex.NEI +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NEI' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_reduce.NEI +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NEI' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_reduce_ex.NEI +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NEI'$/;" v class:TestSpecial.test_subclasses_with_direct_pickle_support.NEI +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NEI'$/;" v class:TestSpecial.test_subclasses_without_direct_pickle_support.NEI +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NamedInt' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_getnewargs.NamedInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NamedInt' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_getnewargs_ex.NamedInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NamedInt' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_reduce.NamedInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NamedInt' # needed for pickle protocol 4$/;" v class:TestSpecial.test_subclasses_with_reduce_ex.NamedInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NamedInt'$/;" v class:TestSpecial.test_subclasses_with_direct_pickle_support.NamedInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'NamedInt'$/;" v class:TestSpecial.test_subclasses_without_direct_pickle_support.NamedInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'SillyInt'$/;" v class:TestSpecial.test_inherited_data_type.SillyInt +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'SomeTuple' # needed for pickle protocol 4$/;" v class:TestSpecial.test_tuple_subclass.SomeTuple +__qualname__ Lib/test/test_enum.py /^ __qualname__ = 'UnBrokenInt'$/;" v class:TestSpecial.test_inherited_data_type.UnBrokenInt +__qualname__ Lib/test/test_types.py /^ __qualname__ = 'TypeVar'$/;" v class:UnionTests.test_or_type_operator_with_bad_module.BadMeta +__radd__ Lib/_pydatetime.py /^ __radd__ = __add__$/;" v class:date +__radd__ Lib/_pydatetime.py /^ __radd__ = __add__$/;" v class:datetime +__radd__ Lib/_pydatetime.py /^ __radd__ = __add__$/;" v class:timedelta +__radd__ Lib/_pydecimal.py /^ __radd__ = __add__$/;" v class:Decimal +__radd__ Lib/collections/__init__.py /^ def __radd__(self, other):$/;" m class:UserList file: +__radd__ Lib/collections/__init__.py /^ def __radd__(self, other):$/;" m class:UserString file: +__radd__ Lib/numbers.py /^ def __radd__(self, other):$/;" m class:Complex file: +__radd__ Lib/statistics.py /^ __radd__ = __add__$/;" v class:NormalDist +__radd__ Lib/test/datetimetester.py /^ def __radd__(self, other):$/;" m class:TestTimeDelta.test_issue31752.Prod file: +__radd__ Lib/test/test_augassign.py /^ def __radd__(self, val):$/;" m class:AugAssignTest.testCustomMethods1.aug_test file: +__radd__ Lib/test/test_augassign.py /^ def __radd__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__radd__ Lib/test/test_binop.py /^ __radd__ = __add__$/;" v class:Rat +__radd__ Lib/test/test_descr.py /^ __radd__ = __add__$/;" v class:.test_basic_inheritance.octlong +__radd__ Lib/test/test_descr.py /^ __radd__ = __add__$/;" v class:.test_binary_operator_override.I +__radd__ Lib/test/test_math.py /^ __radd__ = __add__$/;" v class:MathTests.test_sumprod_stress.Flt +__radd__ Lib/test/test_math.py /^ __radd__ = __add__$/;" v class:MathTests.test_sumprod_stress.Int +__radd__ Lib/test/test_statistics.py /^ __radd__ = __add__$/;" v class:UnivariateCommonMixin.test_type_of_data_element.MyFloat +__radd__ Lib/test/test_statistics.py /^ __radd__ = __add__$/;" v class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat +__radd__ Lib/xml/dom/minicompat.py /^ def __radd__(self, other):$/;" m class:EmptyNodeList file: +__radd__ Modules/_decimal/tests/deccheck.py /^ def __radd__(self, t):$/;" m class:SkipHandler file: +__rand__ Lib/_collections_abc.py /^ __rand__ = __and__$/;" v class:Set +__rand__ Lib/enum.py /^ __rand__ = __and__$/;" v class:Flag +__rand__ Lib/numbers.py /^ def __rand__(self, other):$/;" m class:Integral file: +__rand__ Lib/test/test_augassign.py /^ def __rand__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rand__ Lib/test/test_collections.py /^ __rand__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__rcpttos Lib/test/smtpd.py /^ def __rcpttos(self):$/;" m class:SMTPChannel file: +__rcpttos Lib/test/smtpd.py /^ def __rcpttos(self, value):$/;" m class:SMTPChannel file: +__rdivmod__ Lib/_pydecimal.py /^ def __rdivmod__(self, other, context=None):$/;" m class:Decimal file: +__rdivmod__ Lib/numbers.py /^ def __rdivmod__(self, other):$/;" m class:Real file: +__rdivmod__ Lib/test/test_binop.py /^ def __rdivmod__(self, other):$/;" m class:Rat file: +__rdivmod__ Lib/test/test_decimal.py /^ def __rdivmod__(self, other):$/;" m class:ImplicitConstructionTest.test_rop.E file: +__read Lib/tarfile.py /^ def __read(self, size):$/;" m class:_Stream file: +__recent_file_callback Lib/idlelib/editor.py /^ def __recent_file_callback(self, file_name):$/;" m class:EditorWindow file: +__record_outcome Lib/doctest.py /^ def __record_outcome(self, test, f, t):$/;" m class:DocTestRunner file: +__reduce__ Lib/_collections_abc.py /^ def __reduce__(self):$/;" m class:_CallableGenericAlias file: +__reduce__ Lib/_pydatetime.py /^ def __reduce__(self):$/;" m class:IsoCalendarDate file: +__reduce__ Lib/_pydatetime.py /^ def __reduce__(self):$/;" m class:date file: +__reduce__ Lib/_pydatetime.py /^ def __reduce__(self):$/;" m class:datetime file: +__reduce__ Lib/_pydatetime.py /^ def __reduce__(self):$/;" m class:time file: +__reduce__ Lib/_pydatetime.py /^ def __reduce__(self):$/;" m class:timedelta file: +__reduce__ Lib/_pydatetime.py /^ def __reduce__(self):$/;" m class:tzinfo file: +__reduce__ Lib/_pydecimal.py /^ def __reduce__(self):$/;" m class:Context file: +__reduce__ Lib/_pydecimal.py /^ def __reduce__(self):$/;" m class:Decimal file: +__reduce__ Lib/_weakrefset.py /^ def __reduce__(self):$/;" m class:WeakSet file: +__reduce__ Lib/asyncio/exceptions.py /^ def __reduce__(self):$/;" m class:IncompleteReadError file: +__reduce__ Lib/asyncio/exceptions.py /^ def __reduce__(self):$/;" m class:LimitOverrunError file: +__reduce__ Lib/collections/__init__.py /^ def __reduce__(self):$/;" m class:Counter file: +__reduce__ Lib/collections/__init__.py /^ def __reduce__(self):$/;" m class:OrderedDict file: +__reduce__ Lib/concurrent/futures/process.py /^ def __reduce__(self):$/;" m class:_ExceptionWithTraceback file: +__reduce__ Lib/email/headerregistry.py /^ def __reduce__(self):$/;" m class:BaseHeader file: +__reduce__ Lib/fractions.py /^ def __reduce__(self):$/;" m class:Fraction file: +__reduce__ Lib/functools.py /^ def __reduce__(self):$/;" m class:partial file: +__reduce__ Lib/inspect.py /^ def __reduce__(self):$/;" m class:Parameter file: +__reduce__ Lib/inspect.py /^ def __reduce__(self):$/;" m class:Signature file: +__reduce__ Lib/ipaddress.py /^ __reduce__ = _IPAddressBase.__reduce__$/;" v class:IPv4Interface +__reduce__ Lib/ipaddress.py /^ __reduce__ = _IPAddressBase.__reduce__$/;" v class:IPv6Interface +__reduce__ Lib/ipaddress.py /^ def __reduce__(self):$/;" m class:_BaseAddress file: +__reduce__ Lib/ipaddress.py /^ def __reduce__(self):$/;" m class:_IPAddressBase file: +__reduce__ Lib/json/decoder.py /^ def __reduce__(self):$/;" m class:JSONDecodeError file: +__reduce__ Lib/lib2to3/pgen2/parse.py /^ def __reduce__(self):$/;" m class:ParseError file: +__reduce__ Lib/logging/__init__.py /^ def __reduce__(self):$/;" m class:Logger file: +__reduce__ Lib/logging/__init__.py /^ def __reduce__(self):$/;" m class:RootLogger file: +__reduce__ Lib/multiprocessing/managers.py /^ def __reduce__(self):$/;" m class:BaseProxy file: +__reduce__ Lib/multiprocessing/managers.py /^ def __reduce__(self):$/;" m class:ProcessLocalSet file: +__reduce__ Lib/multiprocessing/pool.py /^ def __reduce__(self):$/;" m class:ExceptionWithTraceback file: +__reduce__ Lib/multiprocessing/pool.py /^ def __reduce__(self):$/;" m class:Pool file: +__reduce__ Lib/multiprocessing/process.py /^ def __reduce__(self):$/;" m class:AuthenticationString file: +__reduce__ Lib/multiprocessing/shared_memory.py /^ def __reduce__(self):$/;" m class:ShareableList file: +__reduce__ Lib/multiprocessing/shared_memory.py /^ def __reduce__(self):$/;" m class:SharedMemory file: +__reduce__ Lib/multiprocessing/sharedctypes.py /^ def __reduce__(self):$/;" m class:SynchronizedBase file: +__reduce__ Lib/multiprocessing/util.py /^ def __reduce__(self):$/;" m class:ForkAwareLocal file: +__reduce__ Lib/operator.py /^ def __reduce__(self):$/;" m class:attrgetter file: +__reduce__ Lib/operator.py /^ def __reduce__(self):$/;" m class:itemgetter file: +__reduce__ Lib/operator.py /^ def __reduce__(self):$/;" m class:methodcaller file: +__reduce__ Lib/pathlib.py /^ def __reduce__(self):$/;" m class:PurePath file: +__reduce__ Lib/platform.py /^ def __reduce__(self):$/;" m class:uname_result file: +__reduce__ Lib/plistlib.py /^ def __reduce__(self):$/;" m class:UID file: +__reduce__ Lib/random.py /^ def __reduce__(self):$/;" m class:Random file: +__reduce__ Lib/re/_constants.py /^ __reduce__ = None$/;" v class:_NamedIntConstant +__reduce__ Lib/test/_test_multiprocessing.py /^ def __reduce__(self):$/;" m class:_TestPool.test_map_unplicklable.A file: +__reduce__ Lib/test/_test_multiprocessing.py /^ def __reduce__(self):$/;" m class:_TestQueue.test_queue_feeder_donot_stop_onexc.NotSerializable file: +__reduce__ Lib/test/_test_multiprocessing.py /^ def __reduce__(self):$/;" m class:_TestQueue.test_queue_feeder_on_queue_feeder_error.NotSerializable file: +__reduce__ Lib/test/_test_multiprocessing.py /^ def __reduce__(self, *args):$/;" m class:BaseTestCase file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:AbstractPickleTests.test_evil_class_mutating_dict.Bad file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:AbstractPickleTests.test_reduce_bad_iterator.C file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:AbstractPickleTests.test_reduce_bad_iterator.D file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:AAA file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:K file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:REX_five file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:REX_one file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:REX_seven file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:REX_six file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:REX_state file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:REX_three file: +__reduce__ Lib/test/pickletester.py /^ def __reduce__(self):$/;" m class:pickling_metaclass file: +__reduce__ Lib/test/test_concurrent_futures/test_deadlock.py /^ def __reduce__(self):$/;" m class:CrashAtPickle file: +__reduce__ Lib/test/test_concurrent_futures/test_deadlock.py /^ def __reduce__(self):$/;" m class:CrashAtUnpickle file: +__reduce__ Lib/test/test_concurrent_futures/test_deadlock.py /^ def __reduce__(self):$/;" m class:ErrorAtPickle file: +__reduce__ Lib/test/test_concurrent_futures/test_deadlock.py /^ def __reduce__(self):$/;" m class:ErrorAtUnpickle file: +__reduce__ Lib/test/test_concurrent_futures/test_deadlock.py /^ def __reduce__(self):$/;" m class:ExitAtPickle file: +__reduce__ Lib/test/test_concurrent_futures/test_deadlock.py /^ def __reduce__(self):$/;" m class:ExitAtUnpickle file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_copy_reduce.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_copy_reduce_ex.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_deepcopy_reduce.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_deepcopy_reduce_ex.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reconstruct_nostate.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reconstruct_state.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reconstruct_state_setstate.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reconstruct_string.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reduce_4tuple.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reduce_5tuple.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reduce_6tuple.C file: +__reduce__ Lib/test/test_copy.py /^ def __reduce__(self):$/;" m class:TestCopy.test_reduce_6tuple_none.C file: +__reduce__ Lib/test/test_enum.py /^ def __reduce__(self):$/;" m class:TestSpecial.test_subclasses_with_reduce.NamedInt file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:NewType file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:_AnnotatedAlias file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:_CallableGenericAlias file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:_GenericAlias file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:_PickleUsingNameMixin file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:_SpecialForm file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:_SpecialGenericAlias file: +__reduce__ Lib/typing.py /^ def __reduce__(self):$/;" m class:_UnionGenericAlias file: +__reduce__ Lib/unittest/mock.py /^ def __reduce__(self):$/;" m class:_Sentinel file: +__reduce__ Lib/unittest/mock.py /^ def __reduce__(self):$/;" m class:_SentinelObject file: +__reduce__ Lib/zoneinfo/_zoneinfo.py /^ def __reduce__(self):$/;" m class:ZoneInfo file: +__reduce_ex__ Lib/_pydatetime.py /^ def __reduce_ex__(self, protocol):$/;" m class:datetime file: +__reduce_ex__ Lib/_pydatetime.py /^ def __reduce_ex__(self, protocol):$/;" m class:time file: +__reduce_ex__ Lib/enum.py /^ def __reduce_ex__(self, proto):$/;" m class:Enum file: +__reduce_ex__ Lib/test/_test_multiprocessing.py /^ __reduce_ex__ = __reduce__$/;" v class:BaseTestCase +__reduce_ex__ Lib/test/audit-tests.py /^ def __reduce_ex__(self, p):$/;" m class:test_pickle.PicklePrint file: +__reduce_ex__ Lib/test/pickletester.py /^ def __reduce_ex__(self, protocol):$/;" m class:ZeroCopyBytearray.PicklableNDArray file: +__reduce_ex__ Lib/test/pickletester.py /^ def __reduce_ex__(self, proto):$/;" m class:REX_four file: +__reduce_ex__ Lib/test/pickletester.py /^ def __reduce_ex__(self, proto):$/;" m class:REX_three file: +__reduce_ex__ Lib/test/pickletester.py /^ def __reduce_ex__(self, proto):$/;" m class:REX_two file: +__reduce_ex__ Lib/test/pickletester.py /^ def __reduce_ex__(self, protocol):$/;" m class:ZeroCopyBytearray file: +__reduce_ex__ Lib/test/pickletester.py /^ def __reduce_ex__(self, protocol):$/;" m class:ZeroCopyBytes file: +__reduce_ex__ Lib/test/test_copy.py /^ def __reduce_ex__(self, proto):$/;" m class:TestCopy.test_copy_reduce_ex.C file: +__reduce_ex__ Lib/test/test_copy.py /^ def __reduce_ex__(self, proto):$/;" m class:TestCopy.test_deepcopy_reduce_ex.C file: +__reduce_ex__ Lib/test/test_enum.py /^ def __reduce_ex__(self, proto):$/;" m class:TestSpecial.test_subclasses_with_direct_pickle_support.NEI file: +__reduce_ex__ Lib/test/test_enum.py /^ def __reduce_ex__(self, proto):$/;" m class:TestSpecial.test_subclasses_with_reduce_ex.NamedInt file: +__ref Lib/test/test_weakref.py /^ __ref = {"key1":Object(1), "key2":Object(2), "key3":Object(3)}$/;" v class:WeakValueDictionaryTestCase +__ref Lib/test/test_weakref.py /^ __ref = {Object("key1"):1, Object("key2"):2, Object("key3"):3}$/;" v class:WeakKeyDictionaryTestCase +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(s, buffer: memoryview):$/;" m class:TestPythonBufferProtocol.test_release_saves_reference.C file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, buffer):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last.Releaser file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, buffer):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising.A file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, buffer):$/;" m class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising.Releaser file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, buffer):$/;" m class:TestPythonBufferProtocol.test_override_only_release.C file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, buffer):$/;" m class:TestPythonBufferProtocol.test_release_buffer.WhatToRelease file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, buffer):$/;" m class:TestPythonBufferProtocol.test_release_saves_reference_no_subclassing.C file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, buffer):$/;" m class:TestPythonBufferProtocol.test_same_buffer_returned.WhatToRelease file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, view):$/;" m class:TestPythonBufferProtocol.test_inherit_but_return_something_else.B file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, view):$/;" m class:TestPythonBufferProtocol.test_inheritance_releasebuffer.B file: +__release_buffer__ Lib/test/test_buffer.py /^ def __release_buffer__(self, view):$/;" m class:TestPythonBufferProtocol.test_release_buffer_with_exception_set.A file: +__release_buffer__ Lib/test/test_typing.py /^ def __release_buffer__(self, mv: memoryview) -> None: ...$/;" m class:ProtocolTests.test_collections_protocols_allowed.ReleasableBuffer file: +__release_buffer__ Lib/test/test_typing.py /^ def __release_buffer__(self, mv: memoryview) -> None:$/;" m class:ProtocolTests.test_collections_protocols_allowed.D file: +__render_parameters__ Tools/clinic/clinic.py /^ __render_parameters__ = None$/;" v class:Function +__repr Lib/zipfile/_path/__init__.py /^ __repr = "{self.__class__.__name__}({self.root.filename!r}, {self.at!r})"$/;" v class:Path +__repr__ Doc/includes/tzinfo_examples.py /^ def __repr__(self):$/;" m class:USTimeZone file: +__repr__ Lib/__future__.py /^ def __repr__(self):$/;" m class:_Feature file: +__repr__ Lib/_collections_abc.py /^ def __repr__(self):$/;" m class:MappingView file: +__repr__ Lib/_collections_abc.py /^ def __repr__(self):$/;" m class:_CallableGenericAlias file: +__repr__ Lib/_pydatetime.py /^ def __repr__(self):$/;" m class:IsoCalendarDate file: +__repr__ Lib/_pydatetime.py /^ def __repr__(self):$/;" m class:date file: +__repr__ Lib/_pydatetime.py /^ def __repr__(self):$/;" m class:datetime file: +__repr__ Lib/_pydatetime.py /^ def __repr__(self):$/;" m class:time file: +__repr__ Lib/_pydatetime.py /^ def __repr__(self):$/;" m class:timedelta file: +__repr__ Lib/_pydatetime.py /^ def __repr__(self):$/;" m class:timezone file: +__repr__ Lib/_pydecimal.py /^ def __repr__(self):$/;" m class:Context file: +__repr__ Lib/_pydecimal.py /^ def __repr__(self):$/;" m class:Decimal file: +__repr__ Lib/_pydecimal.py /^ def __repr__(self):$/;" m class:_WorkRep file: +__repr__ Lib/_pyio.py /^ def __repr__(self):$/;" m class:FileIO file: +__repr__ Lib/_pyio.py /^ def __repr__(self):$/;" m class:StringIO file: +__repr__ Lib/_pyio.py /^ def __repr__(self):$/;" m class:TextIOWrapper file: +__repr__ Lib/_pyio.py /^ def __repr__(self):$/;" m class:_BufferedIOMixin file: +__repr__ Lib/_sitebuiltins.py /^ def __repr__(self):$/;" m class:Quitter file: +__repr__ Lib/_sitebuiltins.py /^ def __repr__(self):$/;" m class:_Helper file: +__repr__ Lib/_sitebuiltins.py /^ def __repr__(self):$/;" m class:_Printer file: +__repr__ Lib/_weakrefset.py /^ def __repr__(self):$/;" m class:WeakSet file: +__repr__ Lib/argparse.py /^ def __repr__(self):$/;" m class:FileType file: +__repr__ Lib/argparse.py /^ def __repr__(self):$/;" m class:_AttributeHolder file: +__repr__ Lib/asyncio/base_events.py /^ def __repr__(self):$/;" m class:BaseEventLoop file: +__repr__ Lib/asyncio/base_events.py /^ def __repr__(self):$/;" m class:Server file: +__repr__ Lib/asyncio/base_subprocess.py /^ def __repr__(self):$/;" m class:BaseSubprocessTransport file: +__repr__ Lib/asyncio/base_subprocess.py /^ def __repr__(self):$/;" m class:WriteSubprocessPipeProto file: +__repr__ Lib/asyncio/events.py /^ def __repr__(self):$/;" m class:Handle file: +__repr__ Lib/asyncio/futures.py /^ def __repr__(self):$/;" m class:Future file: +__repr__ Lib/asyncio/locks.py /^ def __repr__(self):$/;" m class:Barrier file: +__repr__ Lib/asyncio/locks.py /^ def __repr__(self):$/;" m class:Condition file: +__repr__ Lib/asyncio/locks.py /^ def __repr__(self):$/;" m class:Event file: +__repr__ Lib/asyncio/locks.py /^ def __repr__(self):$/;" m class:Lock file: +__repr__ Lib/asyncio/locks.py /^ def __repr__(self):$/;" m class:Semaphore file: +__repr__ Lib/asyncio/proactor_events.py /^ def __repr__(self):$/;" m class:_ProactorBasePipeTransport file: +__repr__ Lib/asyncio/queues.py /^ def __repr__(self):$/;" m class:Queue file: +__repr__ Lib/asyncio/selector_events.py /^ def __repr__(self):$/;" m class:_SelectorTransport file: +__repr__ Lib/asyncio/streams.py /^ def __repr__(self):$/;" m class:StreamReader file: +__repr__ Lib/asyncio/streams.py /^ def __repr__(self):$/;" m class:StreamWriter file: +__repr__ Lib/asyncio/subprocess.py /^ def __repr__(self):$/;" m class:Process file: +__repr__ Lib/asyncio/subprocess.py /^ def __repr__(self):$/;" m class:SubprocessStreamProtocol file: +__repr__ Lib/asyncio/taskgroups.py /^ def __repr__(self):$/;" m class:TaskGroup file: +__repr__ Lib/asyncio/tasks.py /^ def __repr__(self):$/;" m class:Task file: +__repr__ Lib/asyncio/timeouts.py /^ def __repr__(self) -> str:$/;" m class:Timeout file: +__repr__ Lib/asyncio/trsock.py /^ def __repr__(self):$/;" m class:TransportSocket file: +__repr__ Lib/asyncio/unix_events.py /^ def __repr__(self):$/;" m class:_UnixReadPipeTransport file: +__repr__ Lib/asyncio/unix_events.py /^ def __repr__(self):$/;" m class:_UnixWritePipeTransport file: +__repr__ Lib/asyncio/windows_events.py /^ def __repr__(self):$/;" m class:IocpProactor file: +__repr__ Lib/asyncio/windows_utils.py /^ def __repr__(self):$/;" m class:PipeHandle file: +__repr__ Lib/cgi.py /^ def __repr__(self):$/;" m class:FieldStorage file: +__repr__ Lib/cgi.py /^ def __repr__(self):$/;" m class:MiniFieldStorage file: +__repr__ Lib/codecs.py /^ def __repr__(self):$/;" m class:CodecInfo file: +__repr__ Lib/collections/__init__.py /^ def __repr__(self):$/;" f function:namedtuple file: +__repr__ Lib/collections/__init__.py /^ def __repr__(self):$/;" m class:ChainMap file: +__repr__ Lib/collections/__init__.py /^ def __repr__(self):$/;" m class:Counter file: +__repr__ Lib/collections/__init__.py /^ def __repr__(self):$/;" m class:OrderedDict file: +__repr__ Lib/collections/__init__.py /^ def __repr__(self):$/;" m class:UserDict file: +__repr__ Lib/collections/__init__.py /^ def __repr__(self):$/;" m class:UserList file: +__repr__ Lib/collections/__init__.py /^ def __repr__(self):$/;" m class:UserString file: +__repr__ Lib/concurrent/futures/_base.py /^ def __repr__(self):$/;" m class:Future file: +__repr__ Lib/configparser.py /^ def __repr__(self):$/;" m class:Error file: +__repr__ Lib/configparser.py /^ def __repr__(self):$/;" m class:SectionProxy file: +__repr__ Lib/crypt.py /^ def __repr__(self):$/;" m class:_Method file: +__repr__ Lib/ctypes/__init__.py /^ def __repr__(self):$/;" m class:CDLL file: +__repr__ Lib/ctypes/__init__.py /^ def __repr__(self):$/;" m class:c_char_p file: +__repr__ Lib/ctypes/__init__.py /^ def __repr__(self):$/;" m class:c_wchar_p file: +__repr__ Lib/ctypes/__init__.py /^ def __repr__(self):$/;" m class:py_object file: +__repr__ Lib/ctypes/wintypes.py /^ def __repr__(self):$/;" m class:VARIANT_BOOL file: +__repr__ Lib/dataclasses.py /^ def __repr__(self):$/;" m class:Field file: +__repr__ Lib/dataclasses.py /^ def __repr__(self):$/;" m class:InitVar file: +__repr__ Lib/dataclasses.py /^ def __repr__(self):$/;" m class:_DataclassParams file: +__repr__ Lib/dataclasses.py /^ def __repr__(self):$/;" m class:_FIELD_BASE file: +__repr__ Lib/dataclasses.py /^ def __repr__(self):$/;" m class:_HAS_DEFAULT_FACTORY_CLASS file: +__repr__ Lib/dis.py /^ def __repr__(self):$/;" m class:Bytecode file: +__repr__ Lib/dis.py /^ def __repr__(self):$/;" m class:_Unknown file: +__repr__ Lib/doctest.py /^ def __repr__(self):$/;" m class:DocFileCase file: +__repr__ Lib/doctest.py /^ def __repr__(self):$/;" m class:DocTest file: +__repr__ Lib/doctest.py /^ def __repr__(self):$/;" m class:DocTestCase file: +__repr__ Lib/email/_header_value_parser.py /^ def __repr__(self):$/;" m class:Terminal file: +__repr__ Lib/email/_header_value_parser.py /^ def __repr__(self):$/;" m class:TokenList file: +__repr__ Lib/email/_policybase.py /^ def __repr__(self):$/;" m class:_PolicyBase file: +__repr__ Lib/email/charset.py /^ def __repr__(self):$/;" m class:Charset file: +__repr__ Lib/email/headerregistry.py /^ def __repr__(self):$/;" m class:Address file: +__repr__ Lib/email/headerregistry.py /^ def __repr__(self):$/;" m class:Group file: +__repr__ Lib/enum.py /^ def __repr__(cls):$/;" m class:EnumType file: +__repr__ Lib/enum.py /^ def __repr__(self):$/;" m class:Enum file: +__repr__ Lib/enum.py /^ def __repr__(self):$/;" m class:Flag file: +__repr__ Lib/enum.py /^ def __repr__(self):$/;" m class:_auto_null file: +__repr__ Lib/enum.py /^ def __repr__(self):$/;" m class:auto file: +__repr__ Lib/fractions.py /^ def __repr__(self):$/;" m class:Fraction file: +__repr__ Lib/functools.py /^ def __repr__(self):$/;" m class:partial file: +__repr__ Lib/functools.py /^ def __repr__(self):$/;" m class:partialmethod file: +__repr__ Lib/gzip.py /^ def __repr__(self):$/;" m class:GzipFile file: +__repr__ Lib/http/__init__.py /^ def __repr__(self):$/;" m class:HTTPMethod file: +__repr__ Lib/http/client.py /^ def __repr__(self):$/;" m class:IncompleteRead file: +__repr__ Lib/http/cookiejar.py /^ def __repr__(self):$/;" m class:Cookie file: +__repr__ Lib/http/cookiejar.py /^ def __repr__(self):$/;" m class:CookieJar file: +__repr__ Lib/http/cookies.py /^ def __repr__(self):$/;" m class:BaseCookie file: +__repr__ Lib/http/cookies.py /^ def __repr__(self):$/;" m class:Morsel file: +__repr__ Lib/idlelib/idle_test/test_debugger_r.py /^ def __repr__(self):$/;" m class:IdbAdapterTest.test_dict_item_noattr.BinData file: +__repr__ Lib/idlelib/redirector.py /^ def __repr__(self):$/;" m class:OriginalCommand file: +__repr__ Lib/idlelib/redirector.py /^ def __repr__(self):$/;" m class:WidgetRedirector file: +__repr__ Lib/idlelib/undo.py /^ def __repr__(self):$/;" m class:Command file: +__repr__ Lib/idlelib/undo.py /^ def __repr__(self):$/;" m class:CommandSequence file: +__repr__ Lib/importlib/_bootstrap.py /^ def __repr__(self):$/;" m class:ModuleSpec file: +__repr__ Lib/importlib/_bootstrap.py /^ def __repr__(self):$/;" m class:_DummyModuleLock file: +__repr__ Lib/importlib/_bootstrap.py /^ def __repr__(self):$/;" m class:_ModuleLock file: +__repr__ Lib/importlib/_bootstrap_external.py /^ def __repr__(self):$/;" m class:FileFinder file: +__repr__ Lib/importlib/_bootstrap_external.py /^ def __repr__(self):$/;" m class:_NamespacePath file: +__repr__ Lib/importlib/metadata/__init__.py /^ def __repr__(self):$/;" m class:EntryPoint file: +__repr__ Lib/importlib/metadata/__init__.py /^ def __repr__(self):$/;" m class:FileHash file: +__repr__ Lib/importlib/resources/readers.py /^ def __repr__(self):$/;" m class:MultiplexedPath file: +__repr__ Lib/inspect.py /^ def __repr__(self):$/;" m class:BoundArguments file: +__repr__ Lib/inspect.py /^ def __repr__(self):$/;" m class:FrameInfo file: +__repr__ Lib/inspect.py /^ def __repr__(self):$/;" m class:Parameter file: +__repr__ Lib/inspect.py /^ def __repr__(self):$/;" m class:Signature file: +__repr__ Lib/inspect.py /^ def __repr__(self):$/;" m class:Traceback file: +__repr__ Lib/ipaddress.py /^ def __repr__(self):$/;" m class:_BaseAddress file: +__repr__ Lib/ipaddress.py /^ def __repr__(self):$/;" m class:_BaseNetwork file: +__repr__ Lib/lib2to3/btm_utils.py /^ def __repr__(self):$/;" m class:MinNode file: +__repr__ Lib/lib2to3/pytree.py /^ def __repr__(self):$/;" m class:BasePattern file: +__repr__ Lib/lib2to3/pytree.py /^ def __repr__(self):$/;" m class:Leaf file: +__repr__ Lib/lib2to3/pytree.py /^ def __repr__(self):$/;" m class:Node file: +__repr__ Lib/logging/__init__.py /^ def __repr__(self):$/;" m class:FileHandler file: +__repr__ Lib/logging/__init__.py /^ def __repr__(self):$/;" m class:Handler file: +__repr__ Lib/logging/__init__.py /^ def __repr__(self):$/;" m class:LogRecord file: +__repr__ Lib/logging/__init__.py /^ def __repr__(self):$/;" m class:Logger file: +__repr__ Lib/logging/__init__.py /^ def __repr__(self):$/;" m class:LoggerAdapter file: +__repr__ Lib/logging/__init__.py /^ def __repr__(self):$/;" m class:StreamHandler file: +__repr__ Lib/modulefinder.py /^ def __repr__(self):$/;" m class:Module file: +__repr__ Lib/msilib/__init__.py /^ def __repr__(self):$/;" m class:Binary file: +__repr__ Lib/multiprocessing/dummy/__init__.py /^ def __repr__(self):$/;" m class:Namespace file: +__repr__ Lib/multiprocessing/dummy/__init__.py /^ def __repr__(self):$/;" m class:Value file: +__repr__ Lib/multiprocessing/managers.py /^ def __repr__(self):$/;" m class:BaseProxy file: +__repr__ Lib/multiprocessing/managers.py /^ def __repr__(self):$/;" m class:Namespace file: +__repr__ Lib/multiprocessing/managers.py /^ def __repr__(self):$/;" m class:Token file: +__repr__ Lib/multiprocessing/managers.py /^ def __repr__(self):$/;" m class:Value file: +__repr__ Lib/multiprocessing/pool.py /^ def __repr__(self):$/;" m class:MaybeEncodingError file: +__repr__ Lib/multiprocessing/pool.py /^ def __repr__(self):$/;" m class:Pool file: +__repr__ Lib/multiprocessing/process.py /^ def __repr__(self):$/;" m class:BaseProcess file: +__repr__ Lib/multiprocessing/shared_memory.py /^ def __repr__(self):$/;" m class:ShareableList file: +__repr__ Lib/multiprocessing/shared_memory.py /^ def __repr__(self):$/;" m class:SharedMemory file: +__repr__ Lib/multiprocessing/sharedctypes.py /^ def __repr__(self):$/;" m class:SynchronizedBase file: +__repr__ Lib/multiprocessing/synchronize.py /^ def __repr__(self) -> str:$/;" m class:Event file: +__repr__ Lib/multiprocessing/synchronize.py /^ def __repr__(self):$/;" m class:BoundedSemaphore file: +__repr__ Lib/multiprocessing/synchronize.py /^ def __repr__(self):$/;" m class:Condition file: +__repr__ Lib/multiprocessing/synchronize.py /^ def __repr__(self):$/;" m class:Lock file: +__repr__ Lib/multiprocessing/synchronize.py /^ def __repr__(self):$/;" m class:RLock file: +__repr__ Lib/multiprocessing/synchronize.py /^ def __repr__(self):$/;" m class:Semaphore file: +__repr__ Lib/multiprocessing/util.py /^ def __repr__(self):$/;" m class:Finalize file: +__repr__ Lib/netrc.py /^ def __repr__(self):$/;" m class:netrc file: +__repr__ Lib/operator.py /^ def __repr__(self):$/;" m class:attrgetter file: +__repr__ Lib/operator.py /^ def __repr__(self):$/;" m class:itemgetter file: +__repr__ Lib/operator.py /^ def __repr__(self):$/;" m class:methodcaller file: +__repr__ Lib/optparse.py /^ __repr__ = _repr$/;" v class:Option +__repr__ Lib/optparse.py /^ __repr__ = _repr$/;" v class:Values +__repr__ Lib/os.py /^ def __repr__(self):$/;" m class:._AddedDllDirectory file: +__repr__ Lib/os.py /^ def __repr__(self):$/;" m class:_Environ file: +__repr__ Lib/pathlib.py /^ def __repr__(self):$/;" m class:PurePath file: +__repr__ Lib/pathlib.py /^ def __repr__(self):$/;" m class:_PathParents file: +__repr__ Lib/pdb.py /^ def __repr__(self):$/;" m class:_rstr file: +__repr__ Lib/pickletools.py /^ def __repr__(self):$/;" m class:StackObject file: +__repr__ Lib/pipes.py /^ def __repr__(self):$/;" m class:Template file: +__repr__ Lib/plistlib.py /^ def __repr__(self):$/;" m class:UID file: +__repr__ Lib/profile.py /^ def __repr__(self):$/;" m class:Profile.fake_code file: +__repr__ Lib/pydoc.py /^ def __repr__(self):$/;" m class:Helper file: +__repr__ Lib/re/_constants.py /^ def __repr__(self):$/;" m class:_NamedIntConstant file: +__repr__ Lib/re/_parser.py /^ def __repr__(self):$/;" m class:SubPattern file: +__repr__ Lib/shelve.py /^ def __repr__(self):$/;" m class:_ClosedDict file: +__repr__ Lib/socket.py /^ def __repr__(self):$/;" m class:socket file: +__repr__ Lib/statistics.py /^ def __repr__(self):$/;" m class:NormalDist file: +__repr__ Lib/subprocess.py /^ def __repr__(self):$/;" m class:.Handle file: +__repr__ Lib/subprocess.py /^ def __repr__(self):$/;" m class:CompletedProcess file: +__repr__ Lib/subprocess.py /^ def __repr__(self):$/;" m class:Popen file: +__repr__ Lib/symtable.py /^ def __repr__(self):$/;" m class:Symbol file: +__repr__ Lib/symtable.py /^ def __repr__(self):$/;" m class:SymbolTable file: +__repr__ Lib/tarfile.py /^ def __repr__(self):$/;" m class:TarInfo file: +__repr__ Lib/tempfile.py /^ def __repr__(self):$/;" m class:TemporaryDirectory file: +__repr__ Lib/test/audit-tests.py /^ def __repr__(self): return ""$/;" m class:test_threading.test_func file: +__repr__ Lib/test/datetimetester.py /^ def __repr__(self):$/;" m class:FixedOffset file: +__repr__ Lib/test/datetimetester.py /^ def __repr__(self):$/;" m class:USTimeZone file: +__repr__ Lib/test/datetimetester.py /^ def __repr__(self):$/;" m class:USTimeZone2 file: +__repr__ Lib/test/libregrtest/runtest_mp.py /^ def __repr__(self) -> str:$/;" m class:TestWorkerProcess file: +__repr__ Lib/test/mapping_tests.py /^ def __repr__(self):$/;" m class:TestHashMappingProtocol.test_repr.BadRepr file: +__repr__ Lib/test/pickletester.py /^ def __repr__(self):$/;" m class:ZeroCopyBytearray.PicklableNDArray file: +__repr__ Lib/test/pickletester.py /^ def __repr__(self):$/;" m class:ZeroCopyBytearray file: +__repr__ Lib/test/pickletester.py /^ def __repr__(self):$/;" m class:ZeroCopyBytes file: +__repr__ Lib/test/support/_hypothesis_stubs/_helpers.py /^ def __repr__(self):$/;" m class:StubClass file: +__repr__ Lib/test/support/asyncore.py /^ def __repr__(self):$/;" m class:dispatcher file: +__repr__ Lib/test/support/interpreters.py /^ def __repr__(self):$/;" m class:Interpreter file: +__repr__ Lib/test/support/interpreters.py /^ def __repr__(self):$/;" m class:_ChannelEnd file: +__repr__ Lib/test/support/os_helper.py /^ def __repr__(self):$/;" m class:FakePath file: +__repr__ Lib/test/test_argparse.py /^ def __repr__(self):$/;" m class:NS file: +__repr__ Lib/test/test_asyncio/functional.py /^ def __repr__(self):$/;" m class:TestSocketWrapper file: +__repr__ Lib/test/test_asyncio/test_ssl.py /^ def __repr__(self):$/;" m class:TestSocketWrapper file: +__repr__ Lib/test/test_asyncio/test_tasks.py /^ def __repr__(self):$/;" m class:Dummy file: +__repr__ Lib/test/test_binop.py /^ def __repr__(self):$/;" m class:Rat file: +__repr__ Lib/test/test_capi/test_exceptions.py /^ def __repr__(self):$/;" m class:Test_ErrSetAndRestore.test_set_object_and_fetch.BadArg file: +__repr__ Lib/test/test_class.py /^ __repr__ = __int__$/;" v class:ClassTests.testBadTypeReturned.BadTypeClass +__repr__ Lib/test/test_collections.py /^ def __repr__(self):$/;" m class:TestCollectionABCs.test_Set_interoperability_with_real_sets.ListSet file: +__repr__ Lib/test/test_collections.py /^ def __repr__(self):$/;" m class:TestCollectionABCs.test_issue_4920.MySet file: +__repr__ Lib/test/test_compare.py /^ def __repr__(self):$/;" m class:ComparisonSimpleTest.Cmp file: +__repr__ Lib/test/test_compare.py /^ def __repr__(self):$/;" m class:ComparisonSimpleTest.Empty file: +__repr__ Lib/test/test_context.py /^ def __repr__(self):$/;" m class:HashKey file: +__repr__ Lib/test/test_dataclasses.py /^ def __repr__(self):$/;" m class:TestRepr.test_no_repr.C file: +__repr__ Lib/test/test_dataclasses.py /^ def __repr__(self):$/;" m class:TestRepr.test_overwriting_repr.C file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:.test_basic_inheritance.hexint file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:.test_basic_inheritance.madcomplex file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:.test_basic_inheritance.precfloat file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:.test_binary_operator_override.I file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:.test_dir.Wrapper file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:.test_specials.Proxy file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:.test_str_of_str_subclass.octetstring file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:OperatorsTest.test_complexes.Number file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:PicklingTests._generate_pickle_copiers.PickleCopier file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:PicklingTests.test_pickle_slots.C file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:PicklingTests.test_reduce_copying.C1 file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:PicklingTests.test_reduce_copying.C2 file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:PicklingTests.test_reduce_copying.C3 file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:PicklingTests.test_reduce_copying.C4 file: +__repr__ Lib/test/test_descr.py /^ def __repr__(self):$/;" m class:PicklingTests.test_reduce_copying.C5 file: +__repr__ Lib/test/test_descr.py /^ def __repr__(cls):$/;" m class:DebugHelperMeta file: +__repr__ Lib/test/test_dict.py /^ def __repr__(self):$/;" m class:DictTest.test_repr.BadRepr file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_missing_value_error.Combined file: +__repr__ Lib/test/test_enum.py /^ __repr__ = HexMixin.__repr__$/;" v class:TestSpecial.test_multiple_mixin_inherited.MyIntEnum +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_dir_with_custom_dunders.MyEnum file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_inherited_data_type.HexInt file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_multiple_mixin_inherited.HexMixin file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_repr_and_str_with_no_init_mixin.Foo file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_repr_with_dataclass.Foo file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_repr_with_dataclass.Huh file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_repr_with_init_mixin.Foo file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_subclasses_with_direct_pickle_support.NamedInt file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs.NamedInt file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs_ex.NamedInt file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_subclasses_with_reduce.NamedInt file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_subclasses_with_reduce_ex.NamedInt file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:TestSpecial.test_subclasses_without_direct_pickle_support.NamedInt file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:_EnumTests.test_inherited_repr.MyEnum file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:_EnumTests.test_object_str_override.Generic file: +__repr__ Lib/test/test_enum.py /^ def __repr__(self):$/;" m class:_EnumTests.test_repr_override.Generic file: +__repr__ Lib/test/test_fstring.py /^ def __repr__(self):$/;" m class:.test_debug_conversion.C file: +__repr__ Lib/test/test_getpath.py /^ def __repr__(self):$/;" m class:MockWinreg file: +__repr__ Lib/test/test_importlib/test_spec.py /^ def __repr__(self):$/;" m class:TestLoader file: +__repr__ Lib/test/test_index.py /^ def __repr__(self):$/;" m class:NewSeq file: +__repr__ Lib/test/test_inspect.py /^ def __repr__(self):$/;" m class:TestRetrievingSourceCode.test_getfile_broken_repr.ErrorRepr file: +__repr__ Lib/test/test_io.py /^ def __repr__(self):$/;" m class:StatefulIncrementalDecoder file: +__repr__ Lib/test/test_math.py /^ def __repr__(self):$/;" m class:MathTests.test_sumprod_stress.Flt file: +__repr__ Lib/test/test_math.py /^ def __repr__(self):$/;" m class:MathTests.test_sumprod_stress.Int file: +__repr__ Lib/test/test_ordered_dict.py /^ def __repr__(self):$/;" m class:OrderedDictTests.test_delitem_hash_collision.Key file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:QueryTestCase.test_integer.Temperature file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:Unorderable file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:dataclass2 file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:dict3 file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:dict_custom_repr file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:frozenset3 file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:frozenset_custom_repr file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:list3 file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:list_custom_repr file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:set3 file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:set_custom_repr file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:tuple3 file: +__repr__ Lib/test/test_pprint.py /^ def __repr__(self):$/;" m class:tuple_custom_repr file: +__repr__ Lib/test/test_reprlib.py /^ def __repr__(self):$/;" m class:ClassWithFailingRepr file: +__repr__ Lib/test/test_reprlib.py /^ def __repr__(self):$/;" m class:ClassWithRepr file: +__repr__ Lib/test/test_reprlib.py /^ def __repr__(self):$/;" m class:MyContainer file: +__repr__ Lib/test/test_reprlib.py /^ def __repr__(self):$/;" m class:MyContainer2 file: +__repr__ Lib/test/test_reprlib.py /^ def __repr__(self):$/;" m class:MyContainer3 file: +__repr__ Lib/test/test_richcmp.py /^ def __repr__(self):$/;" m class:Number file: +__repr__ Lib/test/test_richcmp.py /^ def __repr__(self):$/;" m class:Vector file: +__repr__ Lib/test/test_set.py /^ def __repr__(self):$/;" m class:ReprWrapper file: +__repr__ Lib/test/test_sort.py /^ def __repr__(self):$/;" m class:TestBase.testStressfully.Complains file: +__repr__ Lib/test/test_sort.py /^ def __repr__(self):$/;" m class:TestBase.testStressfully.Stable file: +__repr__ Lib/test/test_traceback.py /^ __repr__ = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.NonStringifyClass +__repr__ Lib/test/test_traceback.py /^ def __repr__(self):$/;" m class:BaseExceptionReportingTests.test_exception_with_invalid_notes.BadThing file: +__repr__ Lib/test/test_traceback.py /^ def __repr__(self):$/;" m class:BaseExceptionReportingTests.test_exception_with_invalid_notes.Unprintable file: +__repr__ Lib/test/test_traceback.py /^ def __repr__(self) -> str:$/;" m class:Unrepresentable file: +__repr__ Lib/test/test_unicode.py /^ def __repr__(self):$/;" m class:UnicodeTest.checkequalnofix.usub file: +__repr__ Lib/test/test_unicode.py /^ def __repr__(self):$/;" m class:UnicodeTest.test_ascii.WrongRepr file: +__repr__ Lib/test/test_unicode.py /^ def __repr__(self):$/;" m class:UnicodeTest.test_format.F file: +__repr__ Lib/test/test_unicode.py /^ def __repr__(self):$/;" m class:UnicodeTest.test_format.M file: +__repr__ Lib/test/test_unicode.py /^ def __repr__(self):$/;" m class:UnicodeTest.test_format.N file: +__repr__ Lib/test/test_unicode.py /^ def __repr__(self):$/;" m class:UnicodeTest.test_repr.WrongRepr file: +__repr__ Lib/test/test_unicode.py /^ def __repr__(self):$/;" m class:UnicodeTest.test_unicode_repr.s1 file: +__repr__ Lib/test/test_weakref.py /^ def __repr__(self):$/;" m class:Object file: +__repr__ Lib/threading.py /^ def __repr__(self):$/;" m class:Barrier file: +__repr__ Lib/threading.py /^ def __repr__(self):$/;" m class:BoundedSemaphore file: +__repr__ Lib/threading.py /^ def __repr__(self):$/;" m class:Condition file: +__repr__ Lib/threading.py /^ def __repr__(self):$/;" m class:Event file: +__repr__ Lib/threading.py /^ def __repr__(self):$/;" m class:Semaphore file: +__repr__ Lib/threading.py /^ def __repr__(self):$/;" m class:Thread file: +__repr__ Lib/threading.py /^ def __repr__(self):$/;" m class:_RLock file: +__repr__ Lib/tkinter/__init__.py /^ def __repr__(self):$/;" m class:Event file: +__repr__ Lib/tkinter/__init__.py /^ def __repr__(self):$/;" m class:Misc file: +__repr__ Lib/tkinter/font.py /^ def __repr__(self):$/;" m class:Font file: +__repr__ Lib/tokenize.py /^ def __repr__(self):$/;" m class:TokenInfo file: +__repr__ Lib/traceback.py /^ def __repr__(self):$/;" m class:FrameSummary file: +__repr__ Lib/traceback.py /^ def __repr__(self):$/;" m class:_Sentinel file: +__repr__ Lib/tracemalloc.py /^ def __repr__(self):$/;" m class:Frame file: +__repr__ Lib/tracemalloc.py /^ def __repr__(self):$/;" m class:Statistic file: +__repr__ Lib/tracemalloc.py /^ def __repr__(self):$/;" m class:StatisticDiff file: +__repr__ Lib/tracemalloc.py /^ def __repr__(self):$/;" m class:Trace file: +__repr__ Lib/tracemalloc.py /^ def __repr__(self):$/;" m class:Traceback file: +__repr__ Lib/tracemalloc.py /^ def __repr__(self):$/;" m class:_Traces file: +__repr__ Lib/turtle.py /^ def __repr__(self):$/;" m class:Tbuffer file: +__repr__ Lib/turtle.py /^ def __repr__(self):$/;" m class:Vec2D file: +__repr__ Lib/turtledemo/sorting_animate.py /^ def __repr__(self):$/;" m class:Block file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:ForwardRef file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:NewType file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_AnnotatedAlias file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_AnyMeta file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_CallableGenericAlias file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_GenericAlias file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_SpecialForm file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_SpecialGenericAlias file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_UnionGenericAlias file: +__repr__ Lib/typing.py /^ def __repr__(self):$/;" m class:_UnpackGenericAlias file: +__repr__ Lib/unittest/case.py /^ def __repr__(self):$/;" m class:FunctionTestCase file: +__repr__ Lib/unittest/case.py /^ def __repr__(self):$/;" m class:TestCase file: +__repr__ Lib/unittest/mock.py /^ def __repr__(self):$/;" m class:NonCallableMock file: +__repr__ Lib/unittest/mock.py /^ def __repr__(self):$/;" m class:_ANY file: +__repr__ Lib/unittest/mock.py /^ def __repr__(self):$/;" m class:_Call file: +__repr__ Lib/unittest/mock.py /^ def __repr__(self):$/;" m class:_CallList file: +__repr__ Lib/unittest/mock.py /^ def __repr__(self):$/;" m class:_SentinelObject file: +__repr__ Lib/unittest/result.py /^ def __repr__(self):$/;" m class:TestResult file: +__repr__ Lib/unittest/suite.py /^ def __repr__(self):$/;" m class:BaseTestSuite file: +__repr__ Lib/unittest/suite.py /^ def __repr__(self):$/;" m class:_ErrorHolder file: +__repr__ Lib/urllib/error.py /^ def __repr__(self):$/;" m class:HTTPError file: +__repr__ Lib/urllib/parse.py /^ def __repr__(self):$/;" m class:_Quoter file: +__repr__ Lib/urllib/response.py /^ def __repr__(self):$/;" m class:addbase file: +__repr__ Lib/uuid.py /^ def __repr__(self):$/;" m class:UUID file: +__repr__ Lib/warnings.py /^ def __repr__(self):$/;" m class:catch_warnings file: +__repr__ Lib/weakref.py /^ def __repr__(self):$/;" m class:WeakKeyDictionary file: +__repr__ Lib/weakref.py /^ def __repr__(self):$/;" m class:WeakValueDictionary file: +__repr__ Lib/weakref.py /^ def __repr__(self):$/;" m class:finalize file: +__repr__ Lib/wsgiref/headers.py /^ def __repr__(self):$/;" m class:Headers file: +__repr__ Lib/xdrlib.py /^ def __repr__(self):$/;" m class:Error file: +__repr__ Lib/xml/dom/minidom.py /^ def __repr__(self):$/;" m class:CharacterData file: +__repr__ Lib/xml/dom/minidom.py /^ def __repr__(self):$/;" m class:Element file: +__repr__ Lib/xml/dom/minidom.py /^ def __repr__(self):$/;" m class:TypeInfo file: +__repr__ Lib/xml/etree/ElementTree.py /^ def __repr__(self):$/;" m class:Element file: +__repr__ Lib/xml/etree/ElementTree.py /^ def __repr__(self):$/;" m class:QName file: +__repr__ Lib/xmlrpc/client.py /^ def __repr__(self):$/;" m class:DateTime file: +__repr__ Lib/xmlrpc/client.py /^ def __repr__(self):$/;" m class:Fault file: +__repr__ Lib/xmlrpc/client.py /^ def __repr__(self):$/;" m class:MultiCall file: +__repr__ Lib/xmlrpc/client.py /^ def __repr__(self):$/;" m class:ProtocolError file: +__repr__ Lib/xmlrpc/client.py /^ def __repr__(self):$/;" m class:ServerProxy file: +__repr__ Lib/zipfile/__init__.py /^ def __repr__(self):$/;" m class:ZipExtFile file: +__repr__ Lib/zipfile/__init__.py /^ def __repr__(self):$/;" m class:ZipFile file: +__repr__ Lib/zipfile/__init__.py /^ def __repr__(self):$/;" m class:ZipInfo file: +__repr__ Lib/zipfile/_path/__init__.py /^ def __repr__(self):$/;" m class:Path file: +__repr__ Lib/zipimport.py /^ def __repr__(self):$/;" m class:zipimporter file: +__repr__ Lib/zoneinfo/_zoneinfo.py /^ def __repr__(self): # pragma: nocover$/;" m class:_ttinfo file: +__repr__ Lib/zoneinfo/_zoneinfo.py /^ def __repr__(self):$/;" m class:ZoneInfo file: +__repr__ Parser/asdl.py /^ def __repr__(self):$/;" m class:AST file: +__repr__ Parser/asdl.py /^ def __repr__(self):$/;" m class:Constructor file: +__repr__ Parser/asdl.py /^ def __repr__(self):$/;" m class:Field file: +__repr__ Parser/asdl.py /^ def __repr__(self):$/;" m class:Module file: +__repr__ Parser/asdl.py /^ def __repr__(self):$/;" m class:Product file: +__repr__ Parser/asdl.py /^ def __repr__(self):$/;" m class:Sum file: +__repr__ Parser/asdl.py /^ def __repr__(self):$/;" m class:Type file: +__repr__ Tools/build/generate_re_casefix.py /^ def __repr__(self):$/;" m class:hexint file: +__repr__ Tools/build/umarshal.py /^ def __repr__(self) -> str:$/;" m class:Code file: +__repr__ Tools/c-analyzer/c_analyzer/info.py /^ def __repr__(self):$/;" m class:Analysis file: +__repr__ Tools/c-analyzer/c_analyzer/info.py /^ def __repr__(self):$/;" m class:Analyzed file: +__repr__ Tools/c-analyzer/c_common/misc.py /^ def __repr__(self):$/;" m class:Labeled file: +__repr__ Tools/c-analyzer/c_common/scriptutil.py /^ def __repr__(self):$/;" m class:CLIArgSpec file: +__repr__ Tools/c-analyzer/c_parser/info.py /^ def __repr__(self):$/;" m class:Declarations file: +__repr__ Tools/c-analyzer/c_parser/info.py /^ def __repr__(self):$/;" m class:HighlevelParsedItem file: +__repr__ Tools/c-analyzer/c_parser/parser/_info.py /^ def __repr__(self):$/;" m class:SourceInfo file: +__repr__ Tools/c-analyzer/c_parser/parser/_info.py /^ def __repr__(self):$/;" m class:TextInfo file: +__repr__ Tools/cases_generator/lexer.py /^ def __repr__(self):$/;" m class:Token file: +__repr__ Tools/cases_generator/parser.py /^ def __repr__(self):$/;" m class:Context file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self) -> str:$/;" m class:Class file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self) -> str:$/;" m class:Function file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self) -> str:$/;" m class:LandMine file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self) -> str:$/;" m class:Module file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self) -> str:$/;" m class:Null file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self) -> str:$/;" m class:Parameter file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self) -> str:$/;" m class:Sentinels file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self):$/;" m class:Block file: +__repr__ Tools/clinic/clinic.py /^ def __repr__(self):$/;" m class:Destination file: +__repr__ Tools/clinic/cpp.py /^ def __repr__(self) -> str:$/;" m class:Monitor file: +__repr__ Tools/gdb/libpython.py /^ def __repr__(self):$/;" m class:PyObjectPtr.proxyval.FakeRepr file: +__repr__ Tools/gdb/libpython.py /^ def __repr__(self):$/;" m class:BuiltInFunctionProxy file: +__repr__ Tools/gdb/libpython.py /^ def __repr__(self):$/;" m class:BuiltInMethodProxy file: +__repr__ Tools/gdb/libpython.py /^ def __repr__(self):$/;" m class:InstanceProxy file: +__repr__ Tools/gdb/libpython.py /^ def __repr__(self):$/;" m class:ProxyAlreadyVisited file: +__repr__ Tools/gdb/libpython.py /^ def __repr__(self):$/;" m class:ProxyException file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Alt file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Cut file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Gather file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Grammar file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Group file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:NameLeaf file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:NamedItem file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:NegativeLookahead file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Opt file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:PositiveLookahead file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Repeat0 file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Repeat1 file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Rhs file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:Rule file: +__repr__ Tools/peg_generator/pegen/grammar.py /^ def __repr__(self) -> str:$/;" m class:StringLeaf file: +__request Lib/xmlrpc/client.py /^ def __request(self, methodname, params):$/;" m class:ServerProxy file: +__request_interrupt Lib/idlelib/pyshell.py /^ def __request_interrupt(self):$/;" m class:ModifiedInterpreter file: +__result Lib/test/test_asyncio/test_futures.py /^ __result = None$/;" v class:DuckFuture +__return_value_doc Lib/unittest/mock.py /^ __return_value_doc = "The value to be returned when the mock is called."$/;" v class:NonCallableMock +__reversed__ Lib/_collections_abc.py /^ __reversed__ = None$/;" v class:Mapping +__reversed__ Lib/_collections_abc.py /^ def __reversed__(self):$/;" m class:Reversible file: +__reversed__ Lib/_collections_abc.py /^ def __reversed__(self):$/;" m class:Sequence file: +__reversed__ Lib/collections/__init__.py /^ def __reversed__(self):$/;" m class:OrderedDict file: +__reversed__ Lib/collections/__init__.py /^ def __reversed__(self):$/;" m class:_OrderedDictItemsView file: +__reversed__ Lib/collections/__init__.py /^ def __reversed__(self):$/;" m class:_OrderedDictKeysView file: +__reversed__ Lib/collections/__init__.py /^ def __reversed__(self):$/;" m class:_OrderedDictValuesView file: +__reversed__ Lib/enum.py /^ def __reversed__(cls):$/;" m class:EnumType file: +__reversed__ Lib/test/test_collections.py /^ __reversed__ = None$/;" v class:TestOneTrickPonyABCs.test_Reversible.RevRevBlocked +__reversed__ Lib/test/test_collections.py /^ def __reversed__(self): return reversed([])$/;" m class:TestOneTrickPonyABCs.test_Reversible.Rev file: +__reversed__ Lib/test/test_collections.py /^ def __reversed__(self): return reversed([])$/;" m class:TestOneTrickPonyABCs.test_Reversible.RevNoIter file: +__reversed__ Lib/test/test_collections.py /^ def __reversed__(self):$/;" m class:TestOneTrickPonyABCs.test_Reversible.R file: +__reversed__ Lib/test/test_enumerate.py /^ __reversed__ = None$/;" v class:TestReversed.test_objmethods.Blocked +__reversed__ Lib/test/test_weakref.py /^ def __reversed__(self):$/;" m class:ReferencesTestCase.test_proxy_reversed.MyObj file: +__rfloordiv__ Lib/_pydecimal.py /^ def __rfloordiv__(self, other, context=None):$/;" m class:Decimal file: +__rfloordiv__ Lib/numbers.py /^ def __rfloordiv__(self, other):$/;" m class:Real file: +__rfloordiv__ Lib/test/datetimetester.py /^ def __rfloordiv__(self, other):$/;" m class:TestTimeDelta.test_issue31752.BadInt file: +__rfloordiv__ Lib/test/test_augassign.py /^ def __rfloordiv__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rfloordiv__ Lib/test/test_binop.py /^ def __rfloordiv__(self, other):$/;" m class:Rat file: +__rfloordiv__ Lib/test/test_descr.py /^ def __rfloordiv__(self, other):$/;" m class:.test_subclass_right_op.B file: +__rfloordiv__ Lib/test/test_descr.py /^ def __rfloordiv__(self, other):$/;" m class:.test_subclass_right_op.C file: +__rfloordiv__ Lib/test/test_descr.py /^ def __rfloordiv__(self, other):$/;" m class:.test_subclass_right_op.D file: +__rlshift__ Lib/numbers.py /^ def __rlshift__(self, other):$/;" m class:Integral file: +__rlshift__ Lib/test/test_augassign.py /^ def __rlshift__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rmatmul__ Lib/test/test_augassign.py /^ def __rmatmul__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rmatmul__ Lib/test/test_weakref.py /^ def __rmatmul__(self, other):$/;" m class:ReferencesTestCase.test_proxy_matmul.C file: +__rmod__ Lib/_pydecimal.py /^ def __rmod__(self, other, context=None):$/;" m class:Decimal file: +__rmod__ Lib/collections/__init__.py /^ def __rmod__(self, template):$/;" m class:UserString file: +__rmod__ Lib/numbers.py /^ def __rmod__(self, other):$/;" m class:Real file: +__rmod__ Lib/test/test_augassign.py /^ def __rmod__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rmod__ Lib/test/test_binop.py /^ def __rmod__(self, other):$/;" m class:Rat file: +__rmod__ Lib/test/test_unicode.py /^ def __rmod__(self, other):$/;" m class:UnicodeTest.test_issue28598_strsubclass_rhs.SubclassedStr file: +__rmod__ Lib/test/test_userstring.py /^ def __rmod__(self, other):$/;" m class:UserStringTest.test_rmod.ustr3 file: +__rmul__ Lib/_pydatetime.py /^ __rmul__ = __mul__$/;" v class:timedelta +__rmul__ Lib/_pydecimal.py /^ __rmul__ = __mul__$/;" v class:Decimal +__rmul__ Lib/collections/__init__.py /^ __rmul__ = __mul__$/;" v class:UserList +__rmul__ Lib/collections/__init__.py /^ __rmul__ = __mul__$/;" v class:UserString +__rmul__ Lib/numbers.py /^ def __rmul__(self, other):$/;" m class:Complex file: +__rmul__ Lib/statistics.py /^ __rmul__ = __mul__$/;" v class:NormalDist +__rmul__ Lib/test/datetimetester.py /^ def __rmul__(self, other):$/;" m class:TestTimeDelta.test_issue31752.BadInt file: +__rmul__ Lib/test/test_augassign.py /^ def __rmul__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rmul__ Lib/test/test_binop.py /^ __rmul__ = __mul__$/;" v class:Rat +__rmul__ Lib/test/test_descr.py /^ def __rmul__(self, other):$/;" m class:.test_rmul.C file: +__rmul__ Lib/test/test_index.py /^ __rmul__ = __mul__$/;" v class:NewSeq +__rmul__ Lib/test/test_math.py /^ __rmul__ = __mul__$/;" v class:MathTests.test_sumprod_stress.Flt +__rmul__ Lib/test/test_math.py /^ __rmul__ = __mul__$/;" v class:MathTests.test_sumprod_stress.Int +__rmul__ Lib/test/test_math.py /^ def __rmul__(self, other):$/;" m class:MathTests.testSumProd.BadMultiply file: +__rmul__ Lib/test/test_numeric_tower.py /^ __rmul__ = __mul__$/;" v class:DummyIntegral +__rmul__ Lib/test/test_operator.py /^ def __rmul__(self, other):$/;" m class:Seq1 file: +__rmul__ Lib/test/test_operator.py /^ def __rmul__(self, other):$/;" m class:Seq2 file: +__rmul__ Lib/test/test_statistics.py /^ __rmul__ = __mul__$/;" v class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat +__rmul__ Lib/test/test_turtle.py /^ def __rmul__(self, other):$/;" m class:Multiplier file: +__rmul__ Lib/turtle.py /^ def __rmul__(self, other):$/;" m class:Vec2D file: +__rmul__ Modules/_decimal/tests/deccheck.py /^ __rmul__ = __radd__$/;" v class:SkipHandler +__ror__ Lib/_collections_abc.py /^ __ror__ = __or__$/;" v class:Set +__ror__ Lib/collections/__init__.py /^ def __ror__(self, other):$/;" m class:ChainMap file: +__ror__ Lib/collections/__init__.py /^ def __ror__(self, other):$/;" m class:OrderedDict file: +__ror__ Lib/collections/__init__.py /^ def __ror__(self, other):$/;" m class:UserDict file: +__ror__ Lib/enum.py /^ __ror__ = __or__$/;" v class:Flag +__ror__ Lib/numbers.py /^ def __ror__(self, other):$/;" m class:Integral file: +__ror__ Lib/os.py /^ def __ror__(self, other):$/;" m class:_Environ file: +__ror__ Lib/test/test_augassign.py /^ def __ror__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__ror__ Lib/test/test_collections.py /^ __ror__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__ror__ Lib/test/test_collections.py /^ def __ror__(self, other):$/;" m class:TestChainMap.test_union_operators.SubclassRor file: +__ror__ Lib/typing.py /^ def __ror__(self, left):$/;" m class:_GenericAlias file: +__ror__ Lib/typing.py /^ def __ror__(self, left):$/;" m class:_SpecialGenericAlias file: +__ror__ Lib/typing.py /^ def __ror__(self, other):$/;" m class:ForwardRef file: +__ror__ Lib/typing.py /^ def __ror__(self, other):$/;" m class:NewType file: +__ror__ Lib/typing.py /^ def __ror__(self, other):$/;" m class:_SpecialForm file: +__ror__ Lib/weakref.py /^ def __ror__(self, other):$/;" m class:WeakKeyDictionary file: +__ror__ Lib/weakref.py /^ def __ror__(self, other):$/;" m class:WeakValueDictionary file: +__round__ Lib/_pydecimal.py /^ def __round__(self, n=None):$/;" m class:Decimal file: +__round__ Lib/fractions.py /^ def __round__(self, ndigits=None):$/;" m class:Fraction file: +__round__ Lib/numbers.py /^ def __round__(self, ndigits=None):$/;" m class:Real file: +__round__ Lib/test/test_builtin.py /^ def __round__(self):$/;" m class:BuiltinTest.test_round.TestRound file: +__round__ Lib/typing.py /^ def __round__(self, ndigits: int = 0) -> T:$/;" m class:SupportsRound file: +__round__ Modules/_decimal/tests/deccheck.py /^ def __round__(self, t):$/;" m class:SkipHandler file: +__rpow__ Lib/_pydecimal.py /^ def __rpow__(self, other, context=None):$/;" m class:Decimal file: +__rpow__ Lib/fractions.py /^ def __rpow__(b, a):$/;" m class:Fraction file: +__rpow__ Lib/numbers.py /^ def __rpow__(self, base):$/;" m class:Complex file: +__rpow__ Lib/test/test_augassign.py /^ def __rpow__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rpow__ Lib/test/test_descr.py /^ def __rpow__(self, other):$/;" m class:.test_ipow_returns_not_implemented.B file: +__rpow__ Lib/test/test_descr.py /^ def __rpow__(self, other):$/;" m class:.test_no_ipow.B file: +__rpow__ Lib/test/test_descr.py /^ def __rpow__(self, other, mod=None):$/;" m class:.test_binary_operator_override.I file: +__rpow__ Lib/test/test_pow.py /^ def __rpow__(self, other):$/;" m class:PowTest.test_bug643260.TestRpow file: +__rrshift__ Lib/numbers.py /^ def __rrshift__(self, other):$/;" m class:Integral file: +__rrshift__ Lib/test/test_augassign.py /^ def __rrshift__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rrshift__ Lib/test/test_print.py /^ def __rrshift__(self, lhs):$/;" m class:TestPy2MigrationHint.test_stream_redirection_hint_for_py2_migration.OverrideRRShift file: +__rshift__ Lib/numbers.py /^ def __rshift__(self, other):$/;" m class:Integral file: +__rshift__ Lib/operator.py /^__rshift__ = rshift$/;" v +__rshift__ Lib/test/test_augassign.py /^ def __rshift__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rsub__ Lib/_collections_abc.py /^ def __rsub__(self, other):$/;" m class:Set file: +__rsub__ Lib/_pydatetime.py /^ def __rsub__(self, other):$/;" m class:timedelta file: +__rsub__ Lib/_pydecimal.py /^ def __rsub__(self, other, context=None):$/;" m class:Decimal file: +__rsub__ Lib/numbers.py /^ def __rsub__(self, other):$/;" m class:Complex file: +__rsub__ Lib/statistics.py /^ def __rsub__(x1, x2):$/;" m class:NormalDist file: +__rsub__ Lib/test/test_augassign.py /^ def __rsub__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rsub__ Lib/test/test_binop.py /^ def __rsub__(self, other):$/;" m class:Rat file: +__rsub__ Lib/test/test_collections.py /^ __rsub__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__rsub__ Lib/test/test_fractions.py /^ __rsub__ = __sub__$/;" v class:DummyFloat +__rsub__ Lib/test/test_statistics.py /^ def __rsub__(self, other):$/;" m class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat file: +__rtruediv__ Lib/_pydecimal.py /^ def __rtruediv__(self, other, context=None):$/;" m class:Decimal file: +__rtruediv__ Lib/numbers.py /^ def __rtruediv__(self, other):$/;" m class:Complex file: +__rtruediv__ Lib/pathlib.py /^ def __rtruediv__(self, key):$/;" m class:PurePath file: +__rtruediv__ Lib/test/test_augassign.py /^ def __rtruediv__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rtruediv__ Lib/test/test_binop.py /^ def __rtruediv__(self, other):$/;" m class:Rat file: +__rtruediv__ Lib/test/test_numeric_tower.py /^ __rtruediv__ = __truediv__$/;" v class:DummyIntegral +__rtruediv__ Lib/test/test_pathlib.py /^ def __rtruediv__(self, other):$/;" m class:CompatiblePathTest.CompatPath file: +__rtruediv__ Lib/test/test_statistics.py /^ def __rtruediv__(self, other):$/;" m class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat file: +__run Lib/doctest.py /^ def __run(self, test, compileflags, out):$/;" m class:DocTestRunner file: +__rxor__ Lib/_collections_abc.py /^ __rxor__ = __xor__$/;" v class:Set +__rxor__ Lib/enum.py /^ __rxor__ = __xor__$/;" v class:Flag +__rxor__ Lib/numbers.py /^ def __rxor__(self, other):$/;" m class:Integral file: +__rxor__ Lib/test/test_augassign.py /^ def __rxor__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__rxor__ Lib/test/test_collections.py /^ __rxor__ = __eq__$/;" v class:ABCTestCase.validate_comparison.Other +__sFILE Lib/test/test_lib2to3/data/infinite_recursion.py /^class __sFILE(Structure):$/;" c +__sFILEX Lib/test/test_lib2to3/data/infinite_recursion.py /^class __sFILEX(Structure):$/;" c +__sbuf Lib/test/test_lib2to3/data/infinite_recursion.py /^class __sbuf(Structure):$/;" c +__schedule_callbacks Lib/asyncio/futures.py /^ def __schedule_callbacks(self):$/;" m class:Future file: +__seqToRE Lib/_strptime.py /^ def __seqToRE(self, to_convert, directive):$/;" m class:TimeRE file: +__server Lib/test/smtpd.py /^ def __server(self):$/;" m class:SMTPChannel file: +__server Lib/test/smtpd.py /^ def __server(self, value):$/;" m class:SMTPChannel file: +__set Lib/http/cookies.py /^ def __set(self, key, real_value, coded_value):$/;" m class:BaseCookie file: +__set__ Lib/enum.py /^ def __set__(self, instance, value):$/;" m class:property file: +__set__ Lib/test/test_dataclasses.py /^ def __set__(self, instance: Any, value: int) -> None:$/;" m class:TestDescriptors.test_default_value.D file: +__set__ Lib/test/test_dataclasses.py /^ def __set__(self, instance: Any, value: int) -> None:$/;" m class:TestDescriptors.test_no_default_value.D file: +__set__ Lib/test/test_descr.py /^ def __set__(self, obj, value):$/;" m class:.test_compattr.C.computed_attribute file: +__set__ Lib/test/test_descr.py /^ def __set__(self, obj, value):$/;" m class:.test_set_and_no_get.Descr file: +__set__ Lib/test/test_functools.py /^ def __set__(self, obj, value):$/;" m class:TestCachedProperty.test_subclass_with___set__.readonly_cached_property file: +__set__ Lib/test/test_inspect.py /^ __set__ = None$/;" v class:TestIsDataDescriptor.test_custom_descriptors.DataDescriptor2 +__set__ Lib/test/test_inspect.py /^ def __set__(self, name, value): pass$/;" m class:TestIsDataDescriptor.test_custom_descriptors.DataDescriptor0 file: +__set__ Lib/test/test_inspect.py /^ def __set__(*args):$/;" m class:_BrokenDataDescriptor file: +__set__ Lib/test/test_opcache.py /^ def __set__(self, instance, value):$/;" f function:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization file: +__set__ Lib/test/test_opcache.py /^ def __set__(self, instance, value):$/;" f function:TestLoadMethodCache.test_descriptor_added_after_optimization file: +__set__ Lib/test/test_opcache.py /^ def __set__(self, instance, value):$/;" f function:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization file: +__set__ Lib/test/test_pydoc.py /^ def __set__(self, obj, cls):$/;" m class:TestDescriptions.test_custom_data_descriptor.Descr file: +__set__ Lib/test/test_unittest/testmock/testhelpers.py /^ def __set__(self, obj, value): pass$/;" m class:SpecSignatureTest.test_autospec_data_descriptor.Descriptor file: +__set__ Lib/types.py /^ def __set__(self, instance, value):$/;" m class:DynamicClassAttribute file: +__set__ Lib/unittest/mock.py /^ def __set__(self, obj, val):$/;" m class:PropertyMock file: +__set__ Tools/c-analyzer/c_common/clsutil.py /^ def __set__(self, obj, value):$/;" m class:Slot file: +__set_name__ Lib/dataclasses.py /^ def __set_name__(self, owner, name):$/;" m class:Field file: +__set_name__ Lib/enum.py /^ def __set_name__(self, enum_class, member_name):$/;" m class:_proto_member file: +__set_name__ Lib/enum.py /^ def __set_name__(self, ownerclass, name):$/;" m class:property file: +__set_name__ Lib/functools.py /^ def __set_name__(self, owner, name):$/;" m class:cached_property file: +__set_name__ Lib/test/test_dataclasses.py /^ def __set_name__(self, owner, name):$/;" m class:TestDescriptors.test_non_descriptor.D file: +__set_name__ Lib/test/test_dataclasses.py /^ def __set_name__(self, owner, name):$/;" m class:TestDescriptors.test_set_name.D file: +__set_name__ Lib/test/test_subclassinit.py /^ def __set_name__(self):$/;" m class:Test.test_set_name_wrong.Descriptor file: +__set_name__ Lib/test/test_subclassinit.py /^ def __set_name__(self, owner, name):$/;" m class:Test.test_set_name.Descriptor file: +__set_name__ Lib/test/test_subclassinit.py /^ def __set_name__(self, owner, name):$/;" m class:Test.test_set_name_error.Descriptor file: +__set_name__ Lib/test/test_subclassinit.py /^ def __set_name__(self, owner, name):$/;" m class:Test.test_set_name_init_subclass.Descriptor file: +__set_name__ Lib/test/test_subclassinit.py /^ def __set_name__(self, owner, name):$/;" m class:Test.test_set_name_metaclass.Descriptor file: +__set_name__ Lib/test/test_subclassinit.py /^ def __set_name__(self, owner, name):$/;" m class:Test.test_set_name_modifying_dict.Descriptor file: +__set_name__ Tools/c-analyzer/c_common/clsutil.py /^ def __set_name__(self, cls, name):$/;" m class:Slot file: +__set_name__ Tools/c-analyzer/c_common/clsutil.py /^ def __set_name__(self, cls, name):$/;" m class:classonly file: +__set_return_value Lib/unittest/mock.py /^ def __set_return_value(self, value):$/;" m class:NonCallableMock file: +__set_side_effect Lib/unittest/mock.py /^ def __set_side_effect(self, value):$/;" m class:NonCallableMock file: +__set_x Lib/test/test_descr.py /^ def __set_x(self, x):$/;" m class:.test_compattr.C file: +__setattr__ Lib/_pydecimal.py /^ def __setattr__(self, name, value):$/;" m class:Context file: +__setattr__ Lib/_threading_local.py /^ def __setattr__(self, name, value):$/;" m class:local file: +__setattr__ Lib/ctypes/_endian.py /^ def __setattr__(self, attrname, value):$/;" m class:_swapped_meta file: +__setattr__ Lib/email/_policybase.py /^ def __setattr__(self, name, value):$/;" m class:_PolicyBase file: +__setattr__ Lib/enum.py /^ def __setattr__(cls, name, value):$/;" m class:EnumType file: +__setattr__ Lib/importlib/metadata/__init__.py /^ def __setattr__(self, name, value):$/;" m class:EntryPoint file: +__setattr__ Lib/multiprocessing/managers.py /^ def __setattr__(self, key, value):$/;" m class:NamespaceProxy file: +__setattr__ Lib/test/test_class.py /^ def __setattr__(self, *args):$/;" m class:ClassTests.testGetSetAndDel.ExtraTests file: +__setattr__ Lib/test/test_dataclasses.py /^ def __setattr__(self):$/;" m class:TestFrozen.test_overwriting_frozen.C file: +__setattr__ Lib/test/test_dataclasses.py /^ def __setattr__(self, name, value):$/;" m class:TestFrozen.test_overwriting_frozen.C file: +__setattr__ Lib/test/test_descr.py /^ __setattr__ = dict.__setitem__$/;" v class:.test_mixing_slot_wrappers.X +__setattr__ Lib/test/test_descr.py /^ def __setattr__(cls, key, value):$/;" m class:.test_carloverre_multi_inherit_invalid.A file: +__setattr__ Lib/test/test_descr.py /^ def __setattr__(cls, key, value):$/;" m class:.test_carloverre_multi_inherit_valid.A file: +__setattr__ Lib/test/test_descr.py /^ def __setattr__(self, name, value):$/;" m class:.test_overloading.C file: +__setattr__ Lib/test/test_descr.py /^ def __setattr__(self, name, value):$/;" m class:ClassPropertiesAndMethods.test_module_subclasses.MM file: +__setattr__ Lib/test/test_fileio.py /^ def __setattr__(self, name, value):$/;" m class:OtherFileTests.testUnclosedFDOnException.MyFileIO file: +__setattr__ Lib/test/test_io.py /^ def __setattr__(self, name, value):$/;" m class:IOTest.test_close_assert.R file: +__setattr__ Lib/test/test_unittest/testmock/testpatch.py /^ def __setattr__(self, name, value):$/;" m class:_get_proxy.Proxy file: +__setattr__ Lib/typing.py /^ def __setattr__(self, attr, val):$/;" m class:_BaseGenericAlias file: +__setattr__ Lib/unittest/mock.py /^ def __setattr__(self, name, value):$/;" m class:NonCallableMock file: +__setattr__ Lib/uuid.py /^ def __setattr__(self, name, value):$/;" m class:UUID file: +__setattr__ Tools/c-analyzer/c_analyzer/info.py /^ def __setattr__(self, name, value):$/;" m class:Analyzed file: +__setitem__ Lib/_collections_abc.py /^ def __setitem__(self, index, value):$/;" m class:MutableSequence file: +__setitem__ Lib/_collections_abc.py /^ def __setitem__(self, key, value):$/;" m class:MutableMapping file: +__setitem__ Lib/collections/__init__.py /^ def __setitem__(self, i, item):$/;" m class:UserList file: +__setitem__ Lib/collections/__init__.py /^ def __setitem__(self, key, item):$/;" m class:UserDict file: +__setitem__ Lib/collections/__init__.py /^ def __setitem__(self, key, value):$/;" m class:ChainMap file: +__setitem__ Lib/collections/__init__.py /^ def __setitem__(self, key, value,$/;" m class:OrderedDict file: +__setitem__ Lib/configparser.py /^ def __setitem__(self, key, value):$/;" m class:ConverterMapping file: +__setitem__ Lib/configparser.py /^ def __setitem__(self, key, value):$/;" m class:RawConfigParser file: +__setitem__ Lib/configparser.py /^ def __setitem__(self, key, value):$/;" m class:SectionProxy file: +__setitem__ Lib/dbm/dumb.py /^ def __setitem__(self, key, val):$/;" m class:_Database file: +__setitem__ Lib/email/message.py /^ def __setitem__(self, name, val):$/;" m class:Message file: +__setitem__ Lib/enum.py /^ def __setitem__(self, key, value):$/;" m class:_EnumDict file: +__setitem__ Lib/http/cookies.py /^ def __setitem__(self, K, V):$/;" m class:Morsel file: +__setitem__ Lib/http/cookies.py /^ def __setitem__(self, key, value):$/;" m class:BaseCookie file: +__setitem__ Lib/importlib/_bootstrap_external.py /^ def __setitem__(self, index, path):$/;" m class:_NamespacePath file: +__setitem__ Lib/mailbox.py /^ def __setitem__(self, key, message):$/;" m class:Babyl file: +__setitem__ Lib/mailbox.py /^ def __setitem__(self, key, message):$/;" m class:MH file: +__setitem__ Lib/mailbox.py /^ def __setitem__(self, key, message):$/;" m class:Mailbox file: +__setitem__ Lib/mailbox.py /^ def __setitem__(self, key, message):$/;" m class:Maildir file: +__setitem__ Lib/mailbox.py /^ def __setitem__(self, key, message):$/;" m class:_singlefileMailbox file: +__setitem__ Lib/multiprocessing/shared_memory.py /^ def __setitem__(self, position, value):$/;" m class:ShareableList file: +__setitem__ Lib/multiprocessing/sharedctypes.py /^ def __setitem__(self, i, value):$/;" m class:SynchronizedArray file: +__setitem__ Lib/operator.py /^__setitem__ = setitem$/;" v +__setitem__ Lib/os.py /^ def __setitem__(self, key, value):$/;" m class:_Environ file: +__setitem__ Lib/re/_parser.py /^ def __setitem__(self, index, code):$/;" m class:SubPattern file: +__setitem__ Lib/shelve.py /^ def __setitem__(self, key, value):$/;" m class:Shelf file: +__setitem__ Lib/test/mapping_tests.py /^ def __setitem__(self, key, value):$/;" m class:TestMappingProtocol.test_fromkeys.baddict2 file: +__setitem__ Lib/test/pickletester.py /^ def __setitem__(self, key, value):$/;" m class:REX_seven file: +__setitem__ Lib/test/support/os_helper.py /^ def __setitem__(self, envvar, value):$/;" m class:EnvironmentVarGuard file: +__setitem__ Lib/test/test_builtin.py /^ def __setitem__(self, key, formula):$/;" m class:BuiltinTest.test_general_eval.SpreadSheet file: +__setitem__ Lib/test/test_builtin.py /^ def __setitem__(self, key, value):$/;" m class:BuiltinTest.test_exec_globals_frozen.frozendict file: +__setitem__ Lib/test/test_capi/test_abstract.py /^ def __setitem__(self, index, value):$/;" m class:CAPITest.test_sequence_setslice.Custom file: +__setitem__ Lib/test/test_capi/test_abstract.py /^ def __setitem__(self, key, value):$/;" m class:ProxySetItem file: +__setitem__ Lib/test/test_capi/test_dict.py /^ def __setitem__(self, key, value):$/;" m class:DictSubclass file: +__setitem__ Lib/test/test_collections.py /^ def __setitem__(self, index, value):$/;" m class:TestCollectionABCs.test_MutableSequence_mixins.MutableSequenceSubclass file: +__setitem__ Lib/test/test_collections.py /^ def __setitem__(self, key, value):$/;" m class:CounterSubclassWithSetItem file: +__setitem__ Lib/test/test_compile.py /^ def __setitem__(self, key, value):$/;" m class:TestSpecifics.test_exec_with_general_mapping_for_locals.M file: +__setitem__ Lib/test/test_compile.py /^ def __setitem__(self, key, value):$/;" m class:TestSpecifics.test_subscripts.str_map file: +__setitem__ Lib/test/test_copy.py /^ def __setitem__(self, key, item):$/;" m class:TestCopy.test_deepcopy_dict_subclass.C file: +__setitem__ Lib/test/test_coroutines.py /^ def __setitem__(self, key, value):$/;" m class:CoroutineTest.test_for_assign_raising_stop_async_iteration.BadTarget file: +__setitem__ Lib/test/test_descr.py /^ def __setitem__(self, idx, value):$/;" m class:.test_assign_slice.C file: +__setitem__ Lib/test/test_descr.py /^ def __setitem__(self, key, value):$/;" m class:.test_overloading.C file: +__setitem__ Lib/test/test_descr.py /^ def __setitem__(self_local, key, value):$/;" m class:ClassPropertiesAndMethods.test_python_dicts.C file: +__setitem__ Lib/test/test_dict.py /^ def __setitem__(self, key, value):$/;" m class:DictTest.test_fromkeys.baddict2 file: +__setitem__ Lib/test/test_functools.py /^ def __setitem__(self, key, value):$/;" m class:TestSingleDispatch.test_cache_invalidation.TracingDict file: +__setitem__ Lib/test/test_grammar.py /^ def __setitem__(self, item, value):$/;" m class:GrammarTests.test_var_annot_custom_maps.CNS2 file: +__setitem__ Lib/test/test_grammar.py /^ def __setitem__(self, item, value):$/;" m class:GrammarTests.test_var_annot_refleak.CNS2 file: +__setitem__ Lib/test/test_grammar.py /^ def __setitem__(self, item, value):$/;" m class:CNS file: +__setitem__ Lib/test/test_ordered_dict.py /^ def __setitem__(self, key, value):$/;" m class:SimpleLRUCache file: +__setitem__ Lib/test/test_richcmp.py /^ def __setitem__(self, i, v):$/;" m class:Vector file: +__setitem__ Lib/test/test_shelve.py /^ def __setitem__(self, key, value):$/;" m class:byteskeydict file: +__setitem__ Lib/test/test_slice.py /^ def __setitem__(self, i, k):$/;" m class:SliceTest.test_setslice_without_getslice.X file: +__setitem__ Lib/test/test_typing.py /^ def __setitem__(self, k, v):$/;" m class:CollectionsAbcTests.test_subclassing.MMB file: +__setitem__ Lib/test/test_typing.py /^ def __setitem__(self, k, v):$/;" m class:CollectionsAbcTests.test_subclassing.MMC file: +__setitem__ Lib/test/test_typing.py /^ def __setitem__(self, k, v):$/;" m class:GenericTests.test_abc_bases.MM file: +__setitem__ Lib/test/test_typing.py /^ def __setitem__(self, key: XK, value: XV):$/;" m class:SimpleMapping file: +__setitem__ Lib/test/test_typing.py /^ def __setitem__(self, key: str, value):$/;" m class:MySimpleMapping file: +__setitem__ Lib/test/test_unittest/testmock/testpatch.py /^ def __setitem__(self, name, value):$/;" m class:Container file: +__setitem__ Lib/tkinter/__init__.py /^ def __setitem__(self, key, value):$/;" m class:Image file: +__setitem__ Lib/tkinter/__init__.py /^ def __setitem__(self, key, value):$/;" m class:Misc file: +__setitem__ Lib/tkinter/font.py /^ def __setitem__(self, key, value):$/;" m class:Font file: +__setitem__ Lib/tkinter/tix.py /^ def __setitem__(self, key, value):$/;" m class:Form file: +__setitem__ Lib/tkinter/tix.py /^ def __setitem__(self,key,value):$/;" m class:DisplayStyle file: +__setitem__ Lib/weakref.py /^ def __setitem__(self, key, value):$/;" m class:WeakKeyDictionary file: +__setitem__ Lib/weakref.py /^ def __setitem__(self, key, value):$/;" m class:WeakValueDictionary file: +__setitem__ Lib/wsgiref/headers.py /^ def __setitem__(self, name, val):$/;" m class:Headers file: +__setitem__ Lib/xml/dom/minidom.py /^ def __setitem__(self, attname, value):$/;" m class:NamedNodeMap file: +__setitem__ Lib/xml/etree/ElementTree.py /^ def __setitem__(self, index, element):$/;" m class:Element file: +__setslice__ Lib/multiprocessing/sharedctypes.py /^ def __setslice__(self, start, stop, values):$/;" m class:SynchronizedArray file: +__setstate Lib/_pydatetime.py /^ def __setstate(self, string):$/;" m class:date file: +__setstate Lib/_pydatetime.py /^ def __setstate(self, string, tzinfo):$/;" m class:datetime file: +__setstate Lib/_pydatetime.py /^ def __setstate(self, string, tzinfo):$/;" m class:time file: +__setstate__ Lib/functools.py /^ def __setstate__(self, state):$/;" m class:partial file: +__setstate__ Lib/http/cookies.py /^ def __setstate__(self, state):$/;" m class:Morsel file: +__setstate__ Lib/inspect.py /^ def __setstate__(self, state):$/;" m class:BoundArguments file: +__setstate__ Lib/inspect.py /^ def __setstate__(self, state):$/;" m class:Parameter file: +__setstate__ Lib/inspect.py /^ def __setstate__(self, state):$/;" m class:Signature file: +__setstate__ Lib/multiprocessing/heap.py /^ def __setstate__(self, state):$/;" m class:Arena file: +__setstate__ Lib/multiprocessing/managers.py /^ def __setstate__(self, state):$/;" m class:SyncManager._SharedMemoryTracker file: +__setstate__ Lib/multiprocessing/managers.py /^ def __setstate__(self, state):$/;" m class:Token file: +__setstate__ Lib/multiprocessing/queues.py /^ def __setstate__(self, state):$/;" m class:JoinableQueue file: +__setstate__ Lib/multiprocessing/queues.py /^ def __setstate__(self, state):$/;" m class:Queue file: +__setstate__ Lib/multiprocessing/queues.py /^ def __setstate__(self, state):$/;" m class:SimpleQueue file: +__setstate__ Lib/multiprocessing/synchronize.py /^ def __setstate__(self, state):$/;" m class:Barrier file: +__setstate__ Lib/multiprocessing/synchronize.py /^ def __setstate__(self, state):$/;" m class:Condition file: +__setstate__ Lib/multiprocessing/synchronize.py /^ def __setstate__(self, state):$/;" m class:SemLock file: +__setstate__ Lib/random.py /^ def __setstate__(self, state): # for pickle$/;" m class:Random file: +__setstate__ Lib/statistics.py /^ def __setstate__(self, state):$/;" m class:NormalDist file: +__setstate__ Lib/test/_test_multiprocessing.py /^ def __setstate__(self, state):$/;" m class:_DummyList file: +__setstate__ Lib/test/pickletester.py /^ def __setstate__(self, state):$/;" m class:BBB file: +__setstate__ Lib/test/pickletester.py /^ def __setstate__(self, state):$/;" m class:REX_state file: +__setstate__ Lib/test/test_copy.py /^ def __setstate__(self, state):$/;" m class:TestCopy.test_copy_inst_getstate_setstate.C file: +__setstate__ Lib/test/test_copy.py /^ def __setstate__(self, state):$/;" m class:TestCopy.test_copy_inst_setstate.C file: +__setstate__ Lib/test/test_copy.py /^ def __setstate__(self, state):$/;" m class:TestCopy.test_deepcopy_inst_getstate_setstate.C file: +__setstate__ Lib/test/test_copy.py /^ def __setstate__(self, state):$/;" m class:TestCopy.test_deepcopy_inst_setstate.C file: +__setstate__ Lib/test/test_copy.py /^ def __setstate__(self, state):$/;" m class:TestCopy.test_reconstruct_state_setstate.C file: +__setstate__ Lib/test/test_dataclasses.py /^ def __setstate__(self, state):$/;" m class:TestSlots.FrozenSlotsAllStateClass file: +__setstate__ Lib/test/test_dataclasses.py /^ def __setstate__(self, state):$/;" m class:TestSlots.FrozenSlotsSetStateClass file: +__setstate__ Lib/test/test_descr.py /^ def __setstate__(self, state):$/;" m class:PicklingTests.test_pickle_slots.C file: +__setstate__ Lib/test/test_descr.py /^ def __setstate__(self, state):$/;" m class:PicklingTests.test_reduce_copying.C3 file: +__setstate__ Lib/test/test_descr.py /^ def __setstate__(self_, lst):$/;" m class:.test_copy_setstate.C file: +__setstate__ Lib/uuid.py /^ def __setstate__(self, state):$/;" m class:UUID file: +__setstate__ Lib/xml/dom/expatbuilder.py /^ def __setstate__(self, state):$/;" m class:ElementInfo file: +__setstate__ Lib/xml/dom/minicompat.py /^ def __setstate__(self, state):$/;" m class:NodeList file: +__setstate__ Lib/xml/dom/minidom.py /^ def __setstate__(self, state):$/;" m class:ElementInfo file: +__setstate__ Lib/xml/dom/minidom.py /^ def __setstate__(self, state):$/;" m class:NamedNodeMap file: +__setstate__ Lib/xml/dom/minidom.py /^ def __setstate__(self, state):$/;" m class:ReadOnlySequentialNamedNodeMap file: +__setstate__ Lib/zipfile/_path/__init__.py /^ def __setstate__(self, state):$/;" m class:InitializedState file: +__setup Lib/_sitebuiltins.py /^ def __setup(self):$/;" m class:_Printer file: +__sigaction Lib/test/test_lib2to3/data/infinite_recursion.py /^class __sigaction(Structure):$/;" c +__sigaction_u Lib/test/test_lib2to3/data/infinite_recursion.py /^class __sigaction_u(Union):$/;" c +__siginfo Lib/test/test_lib2to3/data/infinite_recursion.py /^class __siginfo(Structure):$/;" c +__signature__ Lib/enum.py /^ def __signature__(cls):$/;" m class:Enum file: +__signature__ Lib/test/test_inspect.py /^ __signature__ = '(a, b=2)'$/;" v class:TestSignatureObject.test_signature_as_str.S +__signature__ Lib/test/test_inspect.py /^ def __signature__():$/;" m class:TestSignatureObject.test_signature_as_callable.S file: +__signature__ Lib/test/test_inspect.py /^ def __signature__(cls):$/;" m class:TestSignatureObject.test_signature_as_callable.S file: +__sizeof__ Lib/collections/__init__.py /^ def __sizeof__(self):$/;" m class:OrderedDict file: +__sizeof__ Lib/test/test_sys.py /^ def __sizeof__(self):$/;" m class:SizeofTest.test_errors.BadSizeof file: +__sizeof__ Lib/test/test_sys.py /^ def __sizeof__(self):$/;" m class:SizeofTest.test_errors.FloatSizeof file: +__sizeof__ Lib/test/test_sys.py /^ def __sizeof__(self):$/;" m class:SizeofTest.test_errors.InvalidSizeof file: +__sizeof__ Lib/test/test_sys.py /^ def __sizeof__(self):$/;" m class:SizeofTest.test_errors.OverflowSizeof file: +__sleep0 Lib/asyncio/tasks.py /^def __sleep0():$/;" f file: +__slotnames__ Lib/test/test_descr.py /^ __slotnames__ = [S('spam')]$/;" v class:PicklingTests.test_issue24097.A +__slots__ Lib/_collections_abc.py /^ __slots__ = '_mapping',$/;" v class:MappingView +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:AsyncGenerator +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:AsyncIterable +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:AsyncIterator +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Awaitable +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Buffer +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:ByteString +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Callable +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Collection +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Container +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Coroutine +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Generator +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Hashable +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:ItemsView +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Iterable +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Iterator +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:KeysView +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Mapping +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:MutableMapping +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:MutableSequence +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:MutableSet +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Reversible +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Sequence +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Set +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:Sized +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:ValuesView +__slots__ Lib/_collections_abc.py /^ __slots__ = ()$/;" v class:_CallableGenericAlias +__slots__ Lib/_pydatetime.py /^ __slots__ = '_days', '_seconds', '_microseconds', '_hashcode'$/;" v class:timedelta +__slots__ Lib/_pydatetime.py /^ __slots__ = '_hour', '_minute', '_second', '_microsecond', '_tzinfo', '_hashcode', '_fold'$/;" v class:time +__slots__ Lib/_pydatetime.py /^ __slots__ = '_offset', '_name'$/;" v class:timezone +__slots__ Lib/_pydatetime.py /^ __slots__ = '_year', '_month', '_day', '_hashcode'$/;" v class:date +__slots__ Lib/_pydatetime.py /^ __slots__ = ()$/;" v class:tzinfo +__slots__ Lib/_pydatetime.py /^ __slots__ = date.__slots__ + time.__slots__$/;" v class:datetime +__slots__ Lib/_pydecimal.py /^ __slots__ = ('_exp','_int','_sign', '_is_special')$/;" v class:Decimal +__slots__ Lib/_pydecimal.py /^ __slots__ = ('sign','int','exp')$/;" v class:_WorkRep +__slots__ Lib/_threading_local.py /^ __slots__ = '_local__impl', '__dict__'$/;" v class:local +__slots__ Lib/_threading_local.py /^ __slots__ = 'key', 'dicts', 'localargs', 'locallock', '__weakref__'$/;" v class:_localimpl +__slots__ Lib/abc.py /^ __slots__ = ()$/;" v class:ABC +__slots__ Lib/asyncio/events.py /^ __slots__ = ('_callback', '_args', '_cancelled', '_loop',$/;" v class:Handle +__slots__ Lib/asyncio/events.py /^ __slots__ = ['_scheduled', '_when']$/;" v class:TimerHandle +__slots__ Lib/asyncio/protocols.py /^ __slots__ = ()$/;" v class:BaseProtocol +__slots__ Lib/asyncio/protocols.py /^ __slots__ = ()$/;" v class:BufferedProtocol +__slots__ Lib/asyncio/protocols.py /^ __slots__ = ()$/;" v class:DatagramProtocol +__slots__ Lib/asyncio/protocols.py /^ __slots__ = ()$/;" v class:Protocol +__slots__ Lib/asyncio/protocols.py /^ __slots__ = ()$/;" v class:SubprocessProtocol +__slots__ Lib/asyncio/transports.py /^ __slots__ = ('_extra',)$/;" v class:BaseTransport +__slots__ Lib/asyncio/transports.py /^ __slots__ = ('_loop', '_protocol_paused', '_high_water', '_low_water')$/;" v class:_FlowControlMixin +__slots__ Lib/asyncio/transports.py /^ __slots__ = ()$/;" v class:DatagramTransport +__slots__ Lib/asyncio/transports.py /^ __slots__ = ()$/;" v class:ReadTransport +__slots__ Lib/asyncio/transports.py /^ __slots__ = ()$/;" v class:SubprocessTransport +__slots__ Lib/asyncio/transports.py /^ __slots__ = ()$/;" v class:Transport +__slots__ Lib/asyncio/transports.py /^ __slots__ = ()$/;" v class:WriteTransport +__slots__ Lib/asyncio/trsock.py /^ __slots__ = ('_sock',)$/;" v class:TransportSocket +__slots__ Lib/collections/__init__.py /^ __slots__ = 'prev', 'next', 'key', '__weakref__'$/;" v class:_Link +__slots__ Lib/ctypes/_endian.py /^ __slots__ = ()$/;" v class:_swapped_union_meta.BigEndianStructure +__slots__ Lib/ctypes/_endian.py /^ __slots__ = ()$/;" v class:_swapped_union_meta.BigEndianUnion +__slots__ Lib/ctypes/_endian.py /^ __slots__ = ()$/;" v class:_swapped_union_meta.LittleEndianStructure +__slots__ Lib/ctypes/_endian.py /^ __slots__ = ()$/;" v class:_swapped_union_meta.LittleEndianUnion +__slots__ Lib/dataclasses.py /^ __slots__ = ('init',$/;" v class:_DataclassParams +__slots__ Lib/dataclasses.py /^ __slots__ = ('name',$/;" v class:Field +__slots__ Lib/dataclasses.py /^ __slots__ = ('type', )$/;" v class:InitVar +__slots__ Lib/fractions.py /^ __slots__ = ('_numerator', '_denominator')$/;" v class:Fraction +__slots__ Lib/functools.py /^ __slots__ = ['obj']$/;" v class:cmp_to_key.K +__slots__ Lib/functools.py /^ __slots__ = "func", "args", "keywords", "__dict__", "__weakref__"$/;" v class:partial +__slots__ Lib/functools.py /^ __slots__ = 'hashvalue'$/;" v class:_HashedSeq +__slots__ Lib/graphlib.py /^ __slots__ = "node", "npredecessors", "successors"$/;" v class:_NodeInfo +__slots__ Lib/hmac.py /^ __slots__ = ($/;" v class:HMAC +__slots__ Lib/idlelib/idle_test/test_calltip.py /^ __slots__ = '__class__'$/;" v class:.test_metaclass_class.Object +__slots__ Lib/importlib/_bootstrap.py /^ __slots__ = "key",$/;" v class:_WeakValueDictionary.__init__.KeyedRef +__slots__ Lib/importlib/metadata/__init__.py /^ __slots__ = ()$/;" v class:EntryPoints +__slots__ Lib/inspect.py /^ __slots__ = ('_name', '_kind', '_default', '_annotation')$/;" v class:Parameter +__slots__ Lib/inspect.py /^ __slots__ = ('_return_annotation', '_parameters')$/;" v class:Signature +__slots__ Lib/inspect.py /^ __slots__ = ('arguments', '_signature', '__weakref__')$/;" v class:BoundArguments +__slots__ Lib/ipaddress.py /^ __slots__ = ('_ip', '__weakref__')$/;" v class:IPv4Address +__slots__ Lib/ipaddress.py /^ __slots__ = ('_ip', '_scope_id', '__weakref__')$/;" v class:IPv6Address +__slots__ Lib/ipaddress.py /^ __slots__ = ()$/;" v class:_BaseAddress +__slots__ Lib/ipaddress.py /^ __slots__ = ()$/;" v class:_BaseV4 +__slots__ Lib/ipaddress.py /^ __slots__ = ()$/;" v class:_BaseV6 +__slots__ Lib/ipaddress.py /^ __slots__ = ()$/;" v class:_IPAddressBase +__slots__ Lib/multiprocessing/managers.py /^ __slots__ = ('typeid', 'address', 'id')$/;" v class:Token +__slots__ Lib/multiprocessing/managers.py /^ __slots__ = ['value']$/;" v class:State +__slots__ Lib/numbers.py /^ __slots__ = ()$/;" v class:Complex +__slots__ Lib/numbers.py /^ __slots__ = ()$/;" v class:Integral +__slots__ Lib/numbers.py /^ __slots__ = ()$/;" v class:Number +__slots__ Lib/numbers.py /^ __slots__ = ()$/;" v class:Rational +__slots__ Lib/numbers.py /^ __slots__ = ()$/;" v class:Real +__slots__ Lib/operator.py /^ __slots__ = ('_attrs', '_call')$/;" v class:attrgetter +__slots__ Lib/operator.py /^ __slots__ = ('_items', '_call')$/;" v class:itemgetter +__slots__ Lib/operator.py /^ __slots__ = ('_name', '_args', '_kwargs')$/;" v class:methodcaller +__slots__ Lib/pathlib.py /^ __slots__ = ($/;" v class:PurePath +__slots__ Lib/pathlib.py /^ __slots__ = ('_path', '_drv', '_root', '_tail')$/;" v class:_PathParents +__slots__ Lib/pathlib.py /^ __slots__ = ()$/;" v class:Path +__slots__ Lib/pathlib.py /^ __slots__ = ()$/;" v class:PosixPath +__slots__ Lib/pathlib.py /^ __slots__ = ()$/;" v class:PurePosixPath +__slots__ Lib/pathlib.py /^ __slots__ = ()$/;" v class:PureWindowsPath +__slots__ Lib/pathlib.py /^ __slots__ = ()$/;" v class:WindowsPath +__slots__ Lib/pickletools.py /^ __slots__ = ($/;" v class:ArgumentDescriptor +__slots__ Lib/pickletools.py /^ __slots__ = ($/;" v class:OpcodeInfo +__slots__ Lib/pickletools.py /^ __slots__ = ($/;" v class:StackObject +__slots__ Lib/pprint.py /^ __slots__ = ['obj']$/;" v class:_safe_key +__slots__ Lib/socket.py /^ __slots__ = ["__weakref__", "_io_refs", "_closed"]$/;" v class:socket +__slots__ Lib/ssl.py /^ __slots__ = ()$/;" v class:_ASN1Object +__slots__ Lib/statistics.py /^ __slots__ = {$/;" v class:NormalDist +__slots__ Lib/tarfile.py /^ __slots__ = dict($/;" v class:TarInfo +__slots__ Lib/test/datetimetester.py /^ __slots__ = '_FixedOffset__offset', '_FixedOffset__name', 'spam'$/;" v class:PicklableFixedOffsetWithSlots +__slots__ Lib/test/pickletester.py /^ __slots__ = ["foo"]$/;" v class:SlotList +__slots__ Lib/test/test_abc.py /^ __slots__ = ()$/;" v class:test_factory.TestABCWithInitSubclass.test_works_with_init_subclass.abc_ABC +__slots__ Lib/test/test_array.py /^ __slots__ = ['offset']$/;" v class:NumberTest.test_subclassing.ExaggeratingArray +__slots__ Lib/test/test_binop.py /^ __slots__ = ['_Rat__num', '_Rat__den']$/;" v class:Rat +__slots__ Lib/test/test_builtin.py /^ __slots__ = ["__class__", "__dict__"]$/;" v class:BuiltinTest.test_dir.Foo +__slots__ Lib/test/test_builtin.py /^ __slots__ = []$/;" v class:BuiltinTest.test_dir.Foo +__slots__ Lib/test/test_call.py /^ __slots__ = ["kwargs"]$/;" v class:FastCallTests.test_fastcall_clearing_dict.IntWithDict +__slots__ Lib/test/test_capi/test_misc.py /^ __slots__ = ('x', 'y')$/;" v class:CAPITest.test_unstable_gc_new_with_extra_data.Data +__slots__ Lib/test/test_class.py /^ __slots__ = ('z',)$/;" v class:ClassTests.testObjectAttributeAccessErrorMessages.B +__slots__ Lib/test/test_codecs.py /^ __slots__ = ()$/;" v class:ExceptionNotesTest.test_raise_grandchild_subclass_exact_size.MyRuntimeError +__slots__ Lib/test/test_collections.py /^ __slots__=['__s']$/;" v class:TestCollectionABCs.test_issue_4920.MySet +__slots__ Lib/test/test_copy.py /^ __slots__ = ["foo"]$/;" v class:TestCopy.test_copy_slots.C +__slots__ Lib/test/test_copy.py /^ __slots__ = ["foo"]$/;" v class:TestCopy.test_deepcopy_slots.C +__slots__ Lib/test/test_copyreg.py /^ __slots__ = 'spam'$/;" v class:WithSingleString +__slots__ Lib/test/test_copyreg.py /^ __slots__ = ('__spam',)$/;" v class:WithPrivate +__slots__ Lib/test/test_copyreg.py /^ __slots__ = ('__spam',)$/;" v class:_WithLeadingUnderscoreAndPrivate +__slots__ Lib/test/test_copyreg.py /^ __slots__ = ('__spam',)$/;" v class:___ +__slots__ Lib/test/test_copyreg.py /^ __slots__ = ('__weakref__',)$/;" v class:WithWeakref +__slots__ Lib/test/test_copyreg.py /^ __slots__ = ('eggs',)$/;" v class:WithInherited +__slots__ Lib/test/test_ctypes/test_byteswap.py /^ __slots__ = ()$/;" v class:Test.test_slots.BigPoint +__slots__ Lib/test/test_ctypes/test_byteswap.py /^ __slots__ = ()$/;" v class:Test.test_slots.LowPoint +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = ('x',)$/;" v class:TestSlots.test_add_slots_when_slots_exists.C +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = '__weakref__'$/;" v class:TestSlots.test_slots_weakref_base_str.Base +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = 'aa'$/;" v class:TestSlots.test_generated_slots_value.Root4 +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = ('__weakref__',)$/;" v class:TestSlots.test_slots_weakref_base_tuple.Base +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = ('__weakref__',)$/;" v class:TestSlots.test_weakref_slot_normal_base_weakref_slot.Base +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = ('b', )$/;" v class:TestSlots.test_cant_inherit_from_iterator_slots.Root2 +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = ('x',)$/;" v class:TestSlots.test_derived_added_field.Base +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = ('x',)$/;" v class:TestSlots.test_simple.C +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = ['h']$/;" v class:TestSlots.test_generated_slots_value.Root3 +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = iter(['a'])$/;" v class:TestSlots.test_cant_inherit_from_iterator_slots.Root +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = {'k': '...', 'j': ''}$/;" v class:TestSlots.test_generated_slots_value.Root2 +__slots__ Lib/test/test_dataclasses.py /^ __slots__ = {'x'}$/;" v class:TestSlots.test_generated_slots_value.Root +__slots__ Lib/test/test_deque.py /^ __slots__ = ('x', 'y', '__dict__')$/;" v class:DequeWithSlots +__slots__ Lib/test/test_descr.py /^ __slots__ = 1$/;" v class:.test_errors.Classic.C +__slots__ Lib/test/test_descr.py /^ __slots__ = [""]$/;" v class:.test_slots.C4.C +__slots__ Lib/test/test_descr.py /^ __slots__ = ["1"]$/;" v class:.test_slots.C4.C +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__classcell__"]$/;" v class:.test_slots_special2.C2.C3 +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__qualname__"]$/;" v class:.test_slots_special2.Q1.Q2 +__slots__ Lib/test/test_descr.py /^ __slots__ = ["foo bar"]$/;" v class:.test_slots.C4.C +__slots__ Lib/test/test_descr.py /^ __slots__ = ["foo"]$/;" v class:.test_slot_shadows_class_variable.X +__slots__ Lib/test/test_descr.py /^ __slots__ = ["foo\\0bar"]$/;" v class:.test_slots.C4.C +__slots__ Lib/test/test_descr.py /^ __slots__ = [1]$/;" v class:.test_errors.Classic.C +__slots__ Lib/test/test_descr.py /^ __slots__ = [None]$/;" v class:.test_slots.C4.C +__slots__ Lib/test/test_descr.py /^ __slots__ = [chr(128)]$/;" v class:.test_slots.C.C +__slots__ Lib/test/test_descr.py /^ __slots__ = "a"$/;" v class:.test_slots.X +__slots__ Lib/test/test_descr.py /^ __slots__ = "a"$/;" v class:.test_slots_descriptor.MyABC +__slots__ Lib/test/test_descr.py /^ __slots__ = "abc"$/;" v class:.test_slots.C +__slots__ Lib/test/test_descr.py /^ __slots__ = ()$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.MyBytes +__slots__ Lib/test/test_descr.py /^ __slots__ = ()$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.MyComplex +__slots__ Lib/test/test_descr.py /^ __slots__ = ()$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.MyFloat +__slots__ Lib/test/test_descr.py /^ __slots__ = ()$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.MyFrozenSet +__slots__ Lib/test/test_descr.py /^ __slots__ = ()$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.MyInt +__slots__ Lib/test/test_descr.py /^ __slots__ = ()$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.MyStr +__slots__ Lib/test/test_descr.py /^ __slots__ = ()$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.MyTuple +__slots__ Lib/test/test_descr.py /^ __slots__ = (SubStr('x'),)$/;" v class:.test_slots.X +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__classcell__"]$/;" v class:.test_slots_special2.C2 +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__dict__", "__weakref__"]$/;" v class:.test_set_class.R +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__dict__"]$/;" v class:.test_set_class.P +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__dict__"]$/;" v class:.test_slots_special.D +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__qualname__"]$/;" v class:.test_slots_special2.Q1 +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__weakref__"]$/;" v class:.test_set_class.N +__slots__ Lib/test/test_descr.py /^ __slots__ = ["__weakref__"]$/;" v class:.test_slots_special.W +__slots__ Lib/test/test_descr.py /^ __slots__ = ["a", "a_b", "_a", "A0123456789Z"]$/;" v class:.test_slots.C +__slots__ Lib/test/test_descr.py /^ __slots__ = ["a", "b", "d"]$/;" v class:.test_set_class.K +__slots__ Lib/test/test_descr.py /^ __slots__ = ["a", "b"]$/;" v class:.test_set_class.G +__slots__ Lib/test/test_descr.py /^ __slots__ = ["a", "b"]$/;" v class:.test_set_class.I +__slots__ Lib/test/test_descr.py /^ __slots__ = ["b", "a"]$/;" v class:.test_set_class.H +__slots__ Lib/test/test_descr.py /^ __slots__ = ["c", "b"]$/;" v class:.test_set_class.J +__slots__ Lib/test/test_descr.py /^ __slots__ = ["e"]$/;" v class:.test_set_class.L +__slots__ Lib/test/test_descr.py /^ __slots__ = ["e"]$/;" v class:.test_set_class.M +__slots__ Lib/test/test_descr.py /^ __slots__ = ['__a']$/;" v class:.test_slots.C4 +__slots__ Lib/test/test_descr.py /^ __slots__ = ['a', 'b', 'c']$/;" v class:.test_slots.C +__slots__ Lib/test/test_descr.py /^ __slots__ = ['a', 'b', 'c']$/;" v class:.test_slots.C3 +__slots__ Lib/test/test_descr.py /^ __slots__ = ['a', 'b']$/;" v class:.test_slots.F +__slots__ Lib/test/test_descr.py /^ __slots__ = ['a', 'b']$/;" v class:.test_slots.H +__slots__ Lib/test/test_descr.py /^ __slots__ = ['a']$/;" v class:.test_slots.C1 +__slots__ Lib/test/test_descr.py /^ __slots__ = ['a']$/;" v class:PicklingTests.test_pickle_slots.C +__slots__ Lib/test/test_descr.py /^ __slots__ = ['b']$/;" v class:PicklingTests.test_pickle_slots.E +__slots__ Lib/test/test_descr.py /^ __slots__ = ['e']$/;" v class:.test_slots.E +__slots__ Lib/test/test_descr.py /^ __slots__ = ['foo', '__weakref__']$/;" v class:.test_weakrefs.Weak +__slots__ Lib/test/test_descr.py /^ __slots__ = ['foo']$/;" v class:.test_weakrefs.NoWeak +__slots__ Lib/test/test_descr.py /^ __slots__ = ['prec']$/;" v class:.test_basic_inheritance.precfloat +__slots__ Lib/test/test_descr.py /^ __slots__ = ['prec']$/;" v class:OperatorsTest.test_complexes.Number +__slots__ Lib/test/test_descr.py /^ __slots__ = ['x']$/;" v class:.test_slots_trash.trash +__slots__ Lib/test/test_descr.py /^ __slots__ = []$/;" v class:.test_basic_inheritance.octlong +__slots__ Lib/test/test_descr.py /^ __slots__ = []$/;" v class:.test_slots.C0 +__slots__ Lib/test/test_descr.py /^ __slots__ = []$/;" v class:.test_slots_special.C1 +__slots__ Lib/test/test_descr.py /^ __slots__ = []$/;" v class:.test_slots_special.C2 +__slots__ Lib/test/test_descr.py /^ __slots__ = slots$/;" v class:.test_slots.C +__slots__ Lib/test/test_descr.py /^ __slots__ = tuple(state)$/;" v class:PicklingTests.test_reduce.C14 +__slots__ Lib/test/test_descr.py /^ __slots__=()$/;" v class:.test_slots_multiple_inheritance.A +__slots__ Lib/test/test_descr.py /^ __slots__=()$/;" v class:.test_slots_multiple_inheritance.C +__slots__ Lib/test/test_descrtut.py /^ __slots__ = ['default']$/;" v class:defaultdict2 +__slots__ Lib/test/test_dynamicclassattribute.py /^ __slots__ = ()$/;" v class:PropertySubSlots +__slots__ Lib/test/test_exceptions.py /^ __slots__ = ('x',)$/;" v class:SlottedNaiveException +__slots__ Lib/test/test_finalization.py /^ __slots__ = ()$/;" v class:NonGC +__slots__ Lib/test/test_finalization.py /^ __slots__ = ()$/;" v class:NonGCResurrector +__slots__ Lib/test/test_finalization.py /^ __slots__ = ()$/;" v class:NonGCSimpleBase +__slots__ Lib/test/test_functools.py /^ __slots__ = ('_cost')$/;" v class:CachedCostItemWithSlots +__slots__ Lib/test/test_gc.py /^ __slots__ = ()$/;" v class:GCTests.test_is_tracked.UserClassSlots +__slots__ Lib/test/test_gc.py /^ __slots__ = ()$/;" v class:GCTests.test_is_tracked.UserFloatSlots +__slots__ Lib/test/test_gc.py /^ __slots__ = ()$/;" v class:GCTests.test_is_tracked.UserIntSlots +__slots__ Lib/test/test_gc.py /^ __slots__ = ['a', 'y', 'wz']$/;" v class:GCTests.test_trash_weakref_clear.A +__slots__ Lib/test/test_import/data/unwritable/__init__.py /^ __slots__ = ['__builtins__', '__cached__', '__doc__',$/;" v class:MyMod +__slots__ Lib/test/test_inspect.py /^ __slots__ = 'foo',$/;" v class:TestIsDataDescriptor.test_slot.Slotted +__slots__ Lib/test/test_inspect.py /^ __slots__ = ("a", "b")$/;" v class:TestPredicates.test_get_slot_members.C +__slots__ Lib/test/test_inspect.py /^ __slots__ = ['x']$/;" v class:TestGetattrStatic.test_inherited_slots.Thing +__slots__ Lib/test/test_inspect.py /^ __slots__ = ['x']$/;" v class:TestGetattrStatic.test_slots.Thing +__slots__ Lib/test/test_inspect.py /^ __slots__ = {'power': 'measured in kilowatts',$/;" v class:SlotUser +__slots__ Lib/test/test_module/__init__.py /^ __slots__ = ("a", "b")$/;" v class:ModuleTests.test_subclass_with_slots.ModuleWithSlots +__slots__ Lib/test/test_opcache.py /^ __slots__ = ("shadowed",)$/;" v class:TestLoadAttrCache.test_load_shadowing_slot_should_raise_type_error.Sneaky +__slots__ Lib/test/test_opcache.py /^ __slots__ = ("shadowed",)$/;" v class:TestLoadAttrCache.test_store_shadowing_slot_should_raise_type_error.Sneaky +__slots__ Lib/test/test_opcache.py /^ __slots__ = ("slot",)$/;" v class:TestLoadAttrCache.test_load_borrowed_slot_should_not_crash.Class +__slots__ Lib/test/test_opcache.py /^ __slots__ = ("slot",)$/;" v class:TestLoadAttrCache.test_load_shadowing_slot_should_raise_type_error.Class +__slots__ Lib/test/test_opcache.py /^ __slots__ = ("slot",)$/;" v class:TestLoadAttrCache.test_store_borrowed_slot_should_not_crash.Class +__slots__ Lib/test/test_opcache.py /^ __slots__ = ("slot",)$/;" v class:TestLoadAttrCache.test_store_shadowing_slot_should_raise_type_error.Class +__slots__ Lib/test/test_ordered_dict.py /^ __slots__ = ('x', 'y')$/;" v class:CPythonOrderedDictWithSlotsCopyingTests.OrderedDict +__slots__ Lib/test/test_ordered_dict.py /^ __slots__ = ('x', 'y')$/;" v class:PurePythonOrderedDictWithSlotsCopyingTests.OrderedDict +__slots__ Lib/test/test_property.py /^ __slots__ = ("foo", "__doc__")$/;" v class:PropertySubclassTests.test_property_with_slots_and_doc_slot_docstring_present.slotted_prop +__slots__ Lib/test/test_property.py /^ __slots__ = ("foo",)$/;" v class:PropertySubclassTests.test_property_with_slots_docstring_silently_dropped.slotted_prop +__slots__ Lib/test/test_property.py /^ __slots__ = ("foo",)$/;" v class:PropertySubclassTests.test_property_with_slots_no_docstring.slotted_prop +__slots__ Lib/test/test_property.py /^ __slots__ = ()$/;" v class:PropertySubSlots +__slots__ Lib/test/test_pydoc.py /^ __slots__ = 'x', 'y'$/;" v class:TestDescriptions.test_slot_descriptor.Point +__slots__ Lib/test/test_rlcompleter.py /^ __slots__ = ("bar",)$/;" v class:TestRlcompleter.test_uncreated_attr.Foo +__slots__ Lib/test/test_set.py /^ __slots__ = ('x', 'y', '__dict__')$/;" v class:FrozenSetSubclassWithSlots +__slots__ Lib/test/test_set.py /^ __slots__ = ('x', 'y', '__dict__')$/;" v class:SetSubclassWithSlots +__slots__ Lib/test/test_sys.py /^ __slots__ = 'a', 'b', 'c'$/;" v class:SizeofTest.test_slots.BA +__slots__ Lib/test/test_sys.py /^ __slots__ = 'a', 'b', 'c'$/;" v class:SizeofTest.test_slots.D +__slots__ Lib/test/test_sys.py /^ __slots__ = 'a', 'b', 'c'$/;" v class:SizeofTest.test_slots.FS +__slots__ Lib/test/test_sys.py /^ __slots__ = 'a', 'b', 'c'$/;" v class:SizeofTest.test_slots.L +__slots__ Lib/test/test_sys.py /^ __slots__ = 'a', 'b', 'c'$/;" v class:SizeofTest.test_slots.OD +__slots__ Lib/test/test_sys.py /^ __slots__ = 'a', 'b', 'c'$/;" v class:SizeofTest.test_slots.S +__slots__ Lib/test/test_typing.py /^ __slots__ = ("func",)$/;" v class:FinalDecoratorTests.test_dunder_final.Wrapper +__slots__ Lib/test/test_typing.py /^ __slots__ = ("x",)$/;" v class:ProtocolTests.test_protocols_isinstance___slots__.HasNothingButSlots +__slots__ Lib/test/test_typing.py /^ __slots__ = ('fget',)$/;" v class:OverrideDecoratorTests.test_silent_failure.CustomProp +__slots__ Lib/test/test_typing.py /^ __slots__ = ('potato',)$/;" v class:GenericTests.test_parameterized_slots.C +__slots__ Lib/test/test_typing.py /^ __slots__ = {'banana': 42}$/;" v class:GenericTests.test_parameterized_slots_dict.D +__slots__ Lib/test/test_unittest/testmock/testhelpers.py /^ __slots__ = ['slot']$/;" v class:SpecSignatureTest.test_autospec_data_descriptor.Foo +__slots__ Lib/test/test_unittest/testmock/testpatch.py /^ __slots__ = ('Foo',)$/;" v class:PatchTest.test_patch_slots.Foo +__slots__ Lib/test/test_weakref.py /^ __slots__ = "slot1", "slot2"$/;" v class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef +__slots__ Lib/test/test_weakset.py /^ __slots__ = ('x', 'y')$/;" v class:WeakSetWithSlots +__slots__ Lib/traceback.py /^ __slots__ = ('filename', 'lineno', 'end_lineno', 'colno', 'end_colno',$/;" v class:FrameSummary +__slots__ Lib/tracemalloc.py /^ __slots__ = ("_frame",)$/;" v class:Frame +__slots__ Lib/tracemalloc.py /^ __slots__ = ("_frames", '_total_nframe')$/;" v class:Traceback +__slots__ Lib/tracemalloc.py /^ __slots__ = ("_trace",)$/;" v class:Trace +__slots__ Lib/tracemalloc.py /^ __slots__ = ('traceback', 'size', 'count')$/;" v class:Statistic +__slots__ Lib/tracemalloc.py /^ __slots__ = ('traceback', 'size', 'size_diff', 'count', 'count_diff')$/;" v class:StatisticDiff +__slots__ Lib/typing.py /^ __slots__ = ('__forward_arg__', '__forward_code__',$/;" v class:ForwardRef +__slots__ Lib/typing.py /^ __slots__ = ('__weakref__',)$/;" v class:_Final +__slots__ Lib/typing.py /^ __slots__ = ('_name', '__doc__', '_getitem')$/;" v class:_SpecialForm +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:Annotated +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:BinaryIO +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:IO +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:Protocol +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:SupportsAbs +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:SupportsBytes +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:SupportsComplex +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:SupportsFloat +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:SupportsIndex +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:SupportsInt +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:SupportsRound +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:TextIO +__slots__ Lib/typing.py /^ __slots__ = ()$/;" v class:_NotIterable +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:DefragResult +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:DefragResultBytes +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:ParseResult +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:ParseResultBytes +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:SplitResult +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:SplitResultBytes +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:_NetlocResultMixinBase +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:_NetlocResultMixinBytes +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:_NetlocResultMixinStr +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:_ResultMixinBytes +__slots__ Lib/urllib/parse.py /^ __slots__ = ()$/;" v class:_ResultMixinStr +__slots__ Lib/uuid.py /^ __slots__ = ('int', 'is_safe', '__weakref__')$/;" v class:UUID +__slots__ Lib/weakref.py /^ __slots__ = ("weakref", "func", "args", "kwargs", "atexit", "index")$/;" v class:finalize._Info +__slots__ Lib/weakref.py /^ __slots__ = "_func_ref", "_meth_type", "_alive", "__weakref__"$/;" v class:WeakMethod +__slots__ Lib/weakref.py /^ __slots__ = "key",$/;" v class:KeyedRef +__slots__ Lib/weakref.py /^ __slots__ = ()$/;" v class:finalize +__slots__ Lib/xml/dom/__init__.py /^ __slots__ = ()$/;" v class:Node +__slots__ Lib/xml/dom/expatbuilder.py /^ __slots__ = '_attr_info', '_model', 'tagName'$/;" v class:ElementInfo +__slots__ Lib/xml/dom/expatbuilder.py /^ __slots__ = '_builder', '_level', '_old_start', '_old_end'$/;" v class:FilterCrutch +__slots__ Lib/xml/dom/expatbuilder.py /^ __slots__ = 'filter',$/;" v class:FilterVisibilityController +__slots__ Lib/xml/dom/expatbuilder.py /^ __slots__ = ()$/;" v class:Rejecter +__slots__ Lib/xml/dom/expatbuilder.py /^ __slots__ = ()$/;" v class:Skipper +__slots__ Lib/xml/dom/minicompat.py /^ __slots__ = ()$/;" v class:EmptyNodeList +__slots__ Lib/xml/dom/minicompat.py /^ __slots__ = ()$/;" v class:NodeList +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = '_seq',$/;" v class:ReadOnlySequentialNamedNodeMap +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = 'namespace', 'name'$/;" v class:TypeInfo +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = 'publicId', 'systemId'$/;" v class:Identified +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = 'tagName',$/;" v class:ElementInfo +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = ('_attrs', '_attrsNS', '_ownerElement')$/;" v class:NamedNodeMap +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = ('_elem_info', 'doctype',$/;" v class:Document +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = ('target', 'data')$/;" v class:ProcessingInstruction +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = ()$/;" v class:CDATASection +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = ()$/;" v class:Childless +__slots__ Lib/xml/dom/minidom.py /^ __slots__ = ()$/;" v class:Text +__slots__ Lib/xml/dom/minidom.py /^ __slots__=('_data', 'ownerDocument','parentNode', 'previousSibling', 'nextSibling')$/;" v class:CharacterData +__slots__ Lib/xml/dom/minidom.py /^ __slots__=('_name', '_value', 'namespaceURI',$/;" v class:Attr +__slots__ Lib/xml/dom/minidom.py /^ __slots__=('ownerDocument', 'parentNode', 'tagName', 'nodeName', 'prefix',$/;" v class:Element +__slots__ Lib/xml/dom/xmlbuilder.py /^ __slots__ = '_opener',$/;" v class:DOMEntityResolver +__slots__ Lib/xml/dom/xmlbuilder.py /^ __slots__ = ('byteStream', 'characterStream', 'stringData',$/;" v class:DOMInputSource +__slots__ Lib/zipfile/__init__.py /^ __slots__ = ($/;" v class:ZipInfo +__slots__ Lib/zoneinfo/_common.py /^ __slots__ = [$/;" v class:_TZifHeader +__slots__ Lib/zoneinfo/_zoneinfo.py /^ __slots__ = ($/;" v class:_TZStr +__slots__ Lib/zoneinfo/_zoneinfo.py /^ __slots__ = ["d", "julian", "hour", "minute", "second"]$/;" v class:_DayOffset +__slots__ Lib/zoneinfo/_zoneinfo.py /^ __slots__ = ["m", "w", "d", "hour", "minute", "second"]$/;" v class:_CalendarOffset +__slots__ Lib/zoneinfo/_zoneinfo.py /^ __slots__ = ["utcoff", "dstoff", "tzname"]$/;" v class:_ttinfo +__slots__ Modules/_decimal/tests/deccheck.py /^ __slots__ = ['c', 'p']$/;" v class:Context +__slots__ Tools/c-analyzer/c_common/clsutil.py /^ __slots__ = ('initial', 'default', 'readonly', 'instances', 'name')$/;" v class:Slot +__slots__ Tools/c-analyzer/c_common/misc.py /^ __slots__ = ('_label',)$/;" v class:Labeled +__slots__ Tools/scripts/var_access_benchmark.py /^ __slots__ = 'x'$/;" v class:B +__something__ Lib/test/test_unittest/testmock/testmock.py /^ __something__ = None$/;" v class:MockTest.test_from_spec.Something +__spec__ Lib/test/test_lib2to3/test_parser.py /^ __spec__ = importlib.util.spec_from_loader(modname, MyLoader())$/;" v class:TestPgen2Caching.test_load_packaged_grammar.MyModule +__ss_align Modules/addrinfo.h /^ long long __ss_align; \/* force desired structure storage alignment *\/$/;" m struct:sockaddr_storage +__ss_pad1 Modules/addrinfo.h /^ char __ss_pad1[_SS_PAD1SIZE];$/;" m struct:sockaddr_storage +__ss_pad2 Modules/addrinfo.h /^ char __ss_pad2[_SS_PAD2SIZE];$/;" m struct:sockaddr_storage +__starttag_text Lib/html/parser.py /^ __starttag_text = None$/;" v class:HTMLParser +__state Lib/test/smtpd.py /^ def __state(self):$/;" m class:SMTPChannel file: +__state Lib/test/smtpd.py /^ def __state(self, value):$/;" m class:SMTPChannel file: +__status__ Lib/logging/__init__.py /^__status__ = "production"$/;" v +__stdcall Modules/_ctypes/_ctypes_test.c 402;" d file: +__step Lib/asyncio/tasks.py /^ def __step(self, exc=None):$/;" m class:Task file: +__step_run_and_handle_result Lib/asyncio/tasks.py /^ def __step_run_and_handle_result(self, exc):$/;" m class:Task file: +__str__ Lib/_pydatetime.py /^ __str__ = isoformat$/;" v class:date +__str__ Lib/_pydatetime.py /^ __str__ = isoformat$/;" v class:time +__str__ Lib/_pydatetime.py /^ def __str__(self):$/;" m class:datetime file: +__str__ Lib/_pydatetime.py /^ def __str__(self):$/;" m class:timedelta file: +__str__ Lib/_pydatetime.py /^ def __str__(self):$/;" m class:timezone file: +__str__ Lib/_pydecimal.py /^ def __str__(self, eng=False, context=None):$/;" m class:Decimal file: +__str__ Lib/argparse.py /^ def __str__(self):$/;" m class:ArgumentError file: +__str__ Lib/asyncio/queues.py /^ def __str__(self):$/;" m class:Queue file: +__str__ Lib/bdb.py /^ def __str__(self):$/;" m class:Breakpoint file: +__str__ Lib/calendar.py /^ def __str__(self):$/;" m class:IllegalMonthError file: +__str__ Lib/calendar.py /^ def __str__(self):$/;" m class:IllegalWeekdayError file: +__str__ Lib/collections/__init__.py /^ def __str__(self):$/;" m class:UserString file: +__str__ Lib/concurrent/futures/process.py /^ def __str__(self):$/;" m class:_RemoteTraceback file: +__str__ Lib/configparser.py /^ __str__ = __repr__$/;" v class:Error +__str__ Lib/doctest.py /^ __str__ = object.__str__$/;" v class:DocTestCase +__str__ Lib/doctest.py /^ __str__ = shortDescription$/;" v class:SkipDocTestCase +__str__ Lib/doctest.py /^ def __str__(self):$/;" m class:DocTestFailure file: +__str__ Lib/doctest.py /^ def __str__(self):$/;" m class:UnexpectedException file: +__str__ Lib/email/_header_value_parser.py /^ def __str__(self):$/;" m class:BareQuotedString file: +__str__ Lib/email/_header_value_parser.py /^ def __str__(self):$/;" m class:Comment file: +__str__ Lib/email/_header_value_parser.py /^ def __str__(self):$/;" m class:EWWhiteSpaceTerminal file: +__str__ Lib/email/_header_value_parser.py /^ def __str__(self):$/;" m class:MimeParameters file: +__str__ Lib/email/_header_value_parser.py /^ def __str__(self):$/;" m class:TokenList file: +__str__ Lib/email/errors.py /^ def __str__(self):$/;" m class:NonPrintableDefect file: +__str__ Lib/email/header.py /^ def __str__(self):$/;" m class:Header file: +__str__ Lib/email/header.py /^ def __str__(self):$/;" m class:_Accumulator file: +__str__ Lib/email/header.py /^ def __str__(self):$/;" m class:_ValueFormatter file: +__str__ Lib/email/headerregistry.py /^ def __str__(self):$/;" m class:Address file: +__str__ Lib/email/headerregistry.py /^ def __str__(self):$/;" m class:Group file: +__str__ Lib/email/message.py /^ def __str__(self):$/;" m class:MIMEPart file: +__str__ Lib/email/message.py /^ def __str__(self):$/;" m class:Message file: +__str__ Lib/enum.py /^ def __str__(self):$/;" m class:Enum file: +__str__ Lib/enum.py /^ def __str__(self):$/;" m class:Flag file: +__str__ Lib/fractions.py /^ def __str__(self):$/;" m class:Fraction file: +__str__ Lib/getopt.py /^ def __str__(self):$/;" m class:GetoptError file: +__str__ Lib/http/client.py /^ __str__ = object.__str__$/;" v class:IncompleteRead +__str__ Lib/http/cookiejar.py /^ def __str__(self):$/;" m class:Cookie file: +__str__ Lib/http/cookiejar.py /^ def __str__(self):$/;" m class:CookieJar file: +__str__ Lib/http/cookies.py /^ __str__ = output$/;" v class:BaseCookie +__str__ Lib/http/cookies.py /^ __str__ = output$/;" v class:Morsel +__str__ Lib/idlelib/idle_test/test_run.py /^ def __str__(self):$/;" m class:S file: +__str__ Lib/importlib/metadata/__init__.py /^ def __str__(self):$/;" m class:PackageNotFoundError file: +__str__ Lib/inspect.py /^ def __str__(self):$/;" m class:Parameter file: +__str__ Lib/inspect.py /^ def __str__(self):$/;" m class:Signature file: +__str__ Lib/inspect.py /^ def __str__(self):$/;" m class:_ParameterKind file: +__str__ Lib/ipaddress.py /^ def __str__(self):$/;" m class:IPv4Interface file: +__str__ Lib/ipaddress.py /^ def __str__(self):$/;" m class:IPv6Address file: +__str__ Lib/ipaddress.py /^ def __str__(self):$/;" m class:IPv6Interface file: +__str__ Lib/ipaddress.py /^ def __str__(self):$/;" m class:_BaseAddress file: +__str__ Lib/ipaddress.py /^ def __str__(self):$/;" m class:_BaseNetwork file: +__str__ Lib/lib2to3/pytree.py /^ def __str__(self):$/;" f function:Base.get_suffix file: +__str__ Lib/multiprocessing/managers.py /^ def __str__(self):$/;" m class:BaseProxy file: +__str__ Lib/multiprocessing/managers.py /^ def __str__(self):$/;" m class:RemoteError file: +__str__ Lib/multiprocessing/pool.py /^ def __str__(self):$/;" m class:MaybeEncodingError file: +__str__ Lib/multiprocessing/pool.py /^ def __str__(self):$/;" m class:RemoteTraceback file: +__str__ Lib/netrc.py /^ def __str__(self):$/;" m class:NetrcParseError file: +__str__ Lib/optparse.py /^ def __str__(self):$/;" m class:AmbiguousOptionError file: +__str__ Lib/optparse.py /^ def __str__(self):$/;" m class:BadOptionError file: +__str__ Lib/optparse.py /^ def __str__(self):$/;" m class:OptParseError file: +__str__ Lib/optparse.py /^ def __str__(self):$/;" m class:Option file: +__str__ Lib/optparse.py /^ def __str__(self):$/;" m class:OptionError file: +__str__ Lib/optparse.py /^ def __str__(self):$/;" m class:Values file: +__str__ Lib/pathlib.py /^ def __str__(self):$/;" m class:PurePath file: +__str__ Lib/py_compile.py /^ def __str__(self):$/;" m class:PyCompileError file: +__str__ Lib/pydoc.py /^ def __str__(self):$/;" m class:ErrorDuringImport file: +__str__ Lib/re/__init__.py /^ __str__ = object.__str__$/;" v class:RegexFlag +__str__ Lib/subprocess.py /^ def __str__(self):$/;" m class:CalledProcessError file: +__str__ Lib/subprocess.py /^ def __str__(self):$/;" m class:TimeoutExpired file: +__str__ Lib/test/datetimetester.py /^ def __str__(self):$/;" m class:TestDate.test_format.A file: +__str__ Lib/test/datetimetester.py /^ def __str__(self):$/;" m class:TestDateTime.test_format.A file: +__str__ Lib/test/datetimetester.py /^ def __str__(self):$/;" m class:TestTime.test_format.A file: +__str__ Lib/test/libregrtest/runtest.py /^ def __str__(self) -> str:$/;" m class:TestResult file: +__str__ Lib/test/pickletester.py /^ __str__ = __repr__$/;" v class:ZeroCopyBytearray +__str__ Lib/test/pickletester.py /^ __str__ = __repr__$/;" v class:ZeroCopyBytes +__str__ Lib/test/ssl_servers.py /^ def __str__(self):$/;" m class:HTTPSServer file: +__str__ Lib/test/ssl_servers.py /^ def __str__(self):$/;" m class:HTTPSServerThread file: +__str__ Lib/test/string_tests.py /^ def __str__(self): return '{0} {1} {2}'.format(*self.seq)$/;" m class:BadSeq1 file: +__str__ Lib/test/support/__init__.py /^ def __str__(self):$/;" m class:TestFailed file: +__str__ Lib/test/test__xxsubinterpreters.py /^ def __str__(self):$/;" m class:IsShareableTests.test_not_shareable.Cheese file: +__str__ Lib/test/test_binop.py /^ def __str__(self):$/;" m class:Rat file: +__str__ Lib/test/test_cgi.py /^ def __str__(self):$/;" m class:ComparableException file: +__str__ Lib/test/test_class.py /^ __str__ = __int__$/;" v class:ClassTests.testBadTypeReturned.BadTypeClass +__str__ Lib/test/test_csv.py /^ def __str__(self):$/;" m class:Test_Csv.test_write_arg_valid.BadItem file: +__str__ Lib/test/test_descr.py /^ __str__ = __repr__$/;" v class:OperatorsTest.test_complexes.Number +__str__ Lib/test/test_descr.py /^ def __str__(self):$/;" m class:.test_basic_inheritance.octlong file: +__str__ Lib/test/test_descr.py /^ def __str__(self):$/;" m class:.test_specials.Proxy file: +__str__ Lib/test/test_descr.py /^ def __str__(self):$/;" m class:.test_str_of_str_subclass.octetstring file: +__str__ Lib/test/test_doctest2.py /^ def __str__(self):$/;" m class:C file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:_EnumTests.setUp.NewBaseEnum file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:_EnumTests.setUp.NewStrEnum file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:_EnumTests.setUp.NewStrFormatEnum file: +__str__ Lib/test/test_enum.py /^ __str__ = DumbMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_strenum.DumbStrEnum +__str__ Lib/test/test_enum.py /^ __str__ = DumbMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_custom_strenum.DumbStrEnum +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_multiple_mixin.Color +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_multiple_mixin.ConfusedColor +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_multiple_mixin.CoolColor +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_multiple_mixin.CoolerColor +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_multiple_mixin.CoolestColor +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__ # needed as of 3.11$/;" v class:TestSpecial.test_multiple_mixin.ReformedColor +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__$/;" v class:OldTestFlag.test_multiple_mixin.Color +__str__ Lib/test/test_enum.py /^ __str__ = StrMixin.__str__$/;" v class:OldTestIntFlag.test_multiple_mixin.Color +__str__ Lib/test/test_enum.py /^ __str__ = object.__str__$/;" v class:_EnumTests.test_object_str_override.Generic +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" f function:_EnumTests.setUp file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:OldTestFlag.test_multiple_mixin.StrMixin file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:OldTestIntFlag.test_format.NewPerm file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:OldTestIntFlag.test_multiple_mixin.StrMixin file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_custom_strenum.DumbMixin file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_dir_with_custom_dunders.MyEnum file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_multiple_mixin.StrMixin file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_repr_and_str_with_no_init_mixin.Foo file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_strenum.DumbMixin file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_subclasses_with_direct_pickle_support.NamedInt file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs.NamedInt file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_subclasses_with_getnewargs_ex.NamedInt file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_subclasses_with_reduce.NamedInt file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_subclasses_with_reduce_ex.NamedInt file: +__str__ Lib/test/test_enum.py /^ def __str__(self):$/;" m class:TestSpecial.test_subclasses_without_direct_pickle_support.NamedInt file: +__str__ Lib/test/test_exceptions.py /^ def __str__(self):$/;" m class:BrokenStrException file: +__str__ Lib/test/test_functools.py /^ def __str__(self):$/;" m class:TestPartialC.test_keystr_replaces_value.MutatesYourDict file: +__str__ Lib/test/test_interpreters.py /^ def __str__(self):$/;" m class:TestIsShareable.test_not_shareable.Cheese file: +__str__ Lib/test/test_optparse.py /^ def __str__(self):$/;" m class:InterceptedError file: +__str__ Lib/test/test_print.py /^ def __str__(self):$/;" m class:ClassWith__str__ file: +__str__ Lib/test/test_sqlite3/test_types.py /^ def __str__(self):$/;" m class:DeclTypesTests.Foo file: +__str__ Lib/test/test_ssl.py /^ def __str__(self):$/;" m class:AsyncoreEchoServer file: +__str__ Lib/test/test_sys.py /^ def __str__(self):$/;" m class:UnraisableHookTest.test_original_unraisablehook_err.BrokenStrException file: +__str__ Lib/test/test_traceback.py /^ def __str__(self):$/;" m class:BaseExceptionReportingTests.test_exception_qualname.A.B.X file: +__str__ Lib/test/test_traceback.py /^ __str__ = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.NonStringifyClass +__str__ Lib/test/test_traceback.py /^ def __str__(self):$/;" m class:BaseExceptionReportingTests.test_exception_bad__str__.X file: +__str__ Lib/test/test_traceback.py /^ def __str__(self):$/;" m class:BaseExceptionReportingTests.test_exception_modulename.X file: +__str__ Lib/test/test_traceback.py /^ def __str__(self):$/;" m class:BaseExceptionReportingTests.test_exception_modulename_not_unicode.X file: +__str__ Lib/test/test_traceback.py /^ def __str__(self):$/;" m class:BaseExceptionReportingTests.test_exception_with_invalid_notes.BadThing file: +__str__ Lib/test/test_traceback.py /^ def __str__(self):$/;" m class:TracebackCases.test_format_exception_only_bad__str__.X file: +__str__ Lib/test/test_ttk_textonly.py /^ def __str__(self):$/;" m class:MockStateSpec file: +__str__ Lib/test/test_ttk_textonly.py /^ def __str__(self):$/;" m class:MockTclObj file: +__str__ Lib/test/test_typing.py /^ def __str__(self):$/;" m class:XRepr file: +__str__ Lib/test/test_unicode.py /^ __str__ = None$/;" v class:UnicodeTest.test_format.M +__str__ Lib/test/test_unicode.py /^ def __str__(self): return self.sval$/;" m class:UnicodeTest.test_join.MyWrapper file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_constructor.StringCompat file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_conversion.ObjectToStr file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_conversion.StrSubclassToStr file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_conversion.StrSubclassToStrSubclass file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_format.E file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_format.G file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_format_subclass.S file: +__str__ Lib/test/test_unicode.py /^ def __str__(self):$/;" m class:UnicodeTest.test_formatting.Wrapper file: +__str__ Lib/test/test_urlparse.py /^ def __str__(self):$/;" m class:UrlParseTestCase.test_urlencode_sequences.Trivial file: +__str__ Lib/test/test_warnings/__init__.py /^ def __str__(self):$/;" m class:WarnTests.test_bad_str.BadStrWarning file: +__str__ Lib/test/test_weakref.py /^ def __str__(self):$/;" m class:ReferencesTestCase.test_proxy_unicode.C file: +__str__ Lib/tkinter/__init__.py /^ def __str__(self): return self.name$/;" m class:Image file: +__str__ Lib/tkinter/__init__.py /^ def __str__(self):$/;" m class:Misc file: +__str__ Lib/tkinter/__init__.py /^ def __str__(self):$/;" m class:Variable file: +__str__ Lib/tkinter/__init__.py /^ def __str__(self):$/;" m class:_VersionInfoType file: +__str__ Lib/tkinter/font.py /^ def __str__(self):$/;" m class:Font file: +__str__ Lib/tkinter/scrolledtext.py /^ def __str__(self):$/;" m class:ScrolledText file: +__str__ Lib/tkinter/tix.py /^ def __str__(self):$/;" m class:DisplayStyle file: +__str__ Lib/traceback.py /^ def __str__(self):$/;" m class:TracebackException file: +__str__ Lib/tracemalloc.py /^ def __str__(self):$/;" m class:Frame file: +__str__ Lib/tracemalloc.py /^ def __str__(self):$/;" m class:Statistic file: +__str__ Lib/tracemalloc.py /^ def __str__(self):$/;" m class:StatisticDiff file: +__str__ Lib/tracemalloc.py /^ def __str__(self):$/;" m class:Trace file: +__str__ Lib/tracemalloc.py /^ def __str__(self):$/;" m class:Traceback file: +__str__ Lib/unittest/case.py /^ def __str__(self):$/;" m class:FunctionTestCase file: +__str__ Lib/unittest/case.py /^ def __str__(self):$/;" m class:TestCase file: +__str__ Lib/unittest/case.py /^ def __str__(self):$/;" m class:_SubTest file: +__str__ Lib/unittest/suite.py /^ def __str__(self):$/;" m class:_ErrorHolder file: +__str__ Lib/urllib/error.py /^ def __str__(self):$/;" m class:HTTPError file: +__str__ Lib/urllib/error.py /^ def __str__(self):$/;" m class:URLError file: +__str__ Lib/urllib/robotparser.py /^ def __str__(self):$/;" m class:Entry file: +__str__ Lib/urllib/robotparser.py /^ def __str__(self):$/;" m class:RobotFileParser file: +__str__ Lib/urllib/robotparser.py /^ def __str__(self):$/;" m class:RuleLine file: +__str__ Lib/uuid.py /^ def __str__(self):$/;" m class:UUID file: +__str__ Lib/warnings.py /^ def __str__(self):$/;" m class:WarningMessage file: +__str__ Lib/wsgiref/headers.py /^ def __str__(self):$/;" m class:Headers file: +__str__ Lib/xdrlib.py /^ def __str__(self):$/;" m class:Error file: +__str__ Lib/xml/etree/ElementTree.py /^ def __str__(self):$/;" m class:QName file: +__str__ Lib/xml/sax/_exceptions.py /^ def __str__(self):$/;" m class:SAXException file: +__str__ Lib/xml/sax/_exceptions.py /^ def __str__(self):$/;" m class:SAXParseException file: +__str__ Lib/xmlrpc/client.py /^ __str__ = object.__str__$/;" v class:Error +__str__ Lib/xmlrpc/client.py /^ def __str__(self):$/;" m class:Binary file: +__str__ Lib/xmlrpc/client.py /^ def __str__(self):$/;" m class:DateTime file: +__str__ Lib/zipfile/_path/__init__.py /^ def __str__(self):$/;" m class:Path file: +__str__ Lib/zoneinfo/_zoneinfo.py /^ def __str__(self):$/;" m class:ZoneInfo file: +__str__ Modules/_decimal/tests/deccheck.py /^ def __str__(self):$/;" m class:Context file: +__str__ PC/layout/support/logging.py /^ def __str__(self):$/;" m class:BraceMessage file: +__str__ Parser/asdl.py /^ def __str__(self):$/;" m class:ASDLSyntaxError file: +__str__ Parser/asdl.py /^ def __str__(self):$/;" m class:Field file: +__str__ Tools/c-analyzer/c_analyzer/info.py /^ def __str__(self):$/;" m class:Analyzed file: +__str__ Tools/c-analyzer/c_parser/info.py /^ def __str__(self):$/;" m class:FileInfo file: +__str__ Tools/c-analyzer/c_parser/info.py /^ def __str__(self):$/;" m class:HighlevelParsedItem file: +__str__ Tools/c-analyzer/c_parser/info.py /^ def __str__(self):$/;" m class:Member file: +__str__ Tools/c-analyzer/c_parser/info.py /^ def __str__(self):$/;" m class:Signature file: +__str__ Tools/c-analyzer/c_parser/info.py /^ def __str__(self):$/;" m class:VarType file: +__str__ Tools/gdb/libpython.py /^ def __str__(self):$/;" m class:PyBytesObjectPtr file: +__str__ Tools/peg_generator/pegen/c_generator.py /^ def __str__(self) -> str:$/;" m class:FunctionCall file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Alt file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Cut file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Forced file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Gather file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Grammar file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Group file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Leaf file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Lookahead file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:NameLeaf file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:NamedItem file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Opt file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Repeat0 file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Repeat1 file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Rhs file: +__str__ Tools/peg_generator/pegen/grammar.py /^ def __str__(self) -> str:$/;" m class:Rule file: +__str__ Tools/ssl/multissltests.py /^ def __str__(self):$/;" m class:AbstractBuilder file: +__str__ Tools/wasm/wasm_build.py /^ def __str__(self):$/;" m class:ConditionError file: +__stringBody Lib/turtle.py /^__stringBody = ($/;" v +__sub__ Lib/_collections_abc.py /^ def __sub__(self, other):$/;" m class:Set file: +__sub__ Lib/_pydatetime.py /^ def __sub__(self, other):$/;" m class:date file: +__sub__ Lib/_pydatetime.py /^ def __sub__(self, other):$/;" m class:datetime file: +__sub__ Lib/_pydatetime.py /^ def __sub__(self, other):$/;" m class:timedelta file: +__sub__ Lib/_pydecimal.py /^ def __sub__(self, other, context=None):$/;" m class:Decimal file: +__sub__ Lib/_weakrefset.py /^ __sub__ = difference$/;" v class:WeakSet +__sub__ Lib/collections/__init__.py /^ def __sub__(self, other):$/;" m class:Counter file: +__sub__ Lib/email/_parseaddr.py /^ def __sub__(self, other):$/;" m class:AddressList file: +__sub__ Lib/ipaddress.py /^ def __sub__(self, other):$/;" m class:_BaseAddress file: +__sub__ Lib/numbers.py /^ def __sub__(self, other):$/;" m class:Complex file: +__sub__ Lib/operator.py /^__sub__ = sub$/;" v +__sub__ Lib/statistics.py /^ def __sub__(x1, x2):$/;" m class:NormalDist file: +__sub__ Lib/test/test_array.py /^ def __sub__(self, other):$/;" m class:Intable file: +__sub__ Lib/test/test_augassign.py /^ def __sub__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__sub__ Lib/test/test_binop.py /^ def __sub__(self, other):$/;" m class:Rat file: +__sub__ Lib/test/test_fractions.py /^ def __sub__(self, other):$/;" m class:DummyFloat file: +__sub__ Lib/test/test_statistics.py /^ def __sub__(self, other):$/;" m class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat file: +__sub__ Lib/turtle.py /^ def __sub__(self, other):$/;" m class:Vec2D file: +__subclass__ Lib/test/test_typechecks.py /^ __subclass__ = {int}$/;" v class:Integer +__subclasscheck__ Lib/_py_abc.py /^ def __subclasscheck__(cls, subclass):$/;" m class:ABCMeta file: +__subclasscheck__ Lib/abc.py /^ def __subclasscheck__(cls, subclass):$/;" m class:.ABCMeta file: +__subclasscheck__ Lib/test/test_capi/test_exceptions.py /^ def __subclasscheck__(cls, sub):$/;" m class:Test_ErrSetAndRestore.test_set_object.Meta file: +__subclasscheck__ Lib/test/test_exceptions.py /^ def __subclasscheck__(cls, subclass):$/;" m class:ExceptionTests.test_badisinstance.Meta file: +__subclasscheck__ Lib/test/test_typechecks.py /^ def __subclasscheck__(cls, sub):$/;" m class:ABC file: +__subclasscheck__ Lib/test/test_types.py /^ def __subclasscheck__(cls, sub):$/;" m class:UnionTests.test_bad_subclasscheck.BadMeta file: +__subclasscheck__ Lib/typing.py /^ def __subclasscheck__(cls, other):$/;" m class:_ProtocolMeta file: +__subclasscheck__ Lib/typing.py /^ def __subclasscheck__(cls, other):$/;" m class:_TypedDictMeta file: +__subclasscheck__ Lib/typing.py /^ def __subclasscheck__(self, cls):$/;" m class:_BaseGenericAlias file: +__subclasscheck__ Lib/typing.py /^ def __subclasscheck__(self, cls):$/;" m class:_SpecialForm file: +__subclasscheck__ Lib/typing.py /^ def __subclasscheck__(self, cls):$/;" m class:_SpecialGenericAlias file: +__subclasscheck__ Lib/typing.py /^ def __subclasscheck__(self, cls):$/;" m class:_UnionGenericAlias file: +__subclasses__ Lib/test/test_abc.py /^ __subclasses__ = func$/;" v class:test_factory.TestABC.test_issubclass_bad_arguments.C.S +__subclasses__ Lib/test/test_abc.py /^ __subclasses__ = raise_exc$/;" v class:test_factory.TestABC.test_issubclass_bad_arguments.S +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:AsyncGenerator file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:AsyncIterable file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:AsyncIterator file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Awaitable file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Buffer file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Callable file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Collection file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Container file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Coroutine file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Generator file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Hashable file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Iterable file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Iterator file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Reversible file: +__subclasshook__ Lib/_collections_abc.py /^ def __subclasshook__(cls, C):$/;" m class:Sized file: +__subclasshook__ Lib/contextlib.py /^ def __subclasshook__(cls, C):$/;" m class:AbstractAsyncContextManager file: +__subclasshook__ Lib/contextlib.py /^ def __subclasshook__(cls, C):$/;" m class:AbstractContextManager file: +__subclasshook__ Lib/os.py /^ def __subclasshook__(cls, subclass):$/;" m class:PathLike file: +__subclasshook__ Lib/test/test_abc.py /^ def __subclasshook__(cls, C):$/;" m class:test_factory.TestABC.test_subclasshook.A file: +__subclasshook__ Lib/test/test_typing.py /^ def __subclasshook__(cls, other):$/;" m class:CollectionsAbcTests.test_subclassing_subclasshook.Base file: +__subclasshook__ Lib/test/test_typing.py /^ def __subclasshook__(cls, other):$/;" m class:ProtocolTests.test_custom_subclasshook.C file: +__subclasshook__ Lib/test/test_typing.py /^ def __subclasshook__(cls, other):$/;" m class:ProtocolTests.test_custom_subclasshook_2.HasX file: +__subclasshook__ Lib/test/test_typing.py /^ def __subclasshook__(cls, other):$/;" m class:ProtocolTests.test_custom_subclasshook_2.NotRuntimeCheckable file: +__suitedocstring Tools/i18n/pygettext.py /^ def __suitedocstring(self, ttype, tstring, lineno):$/;" m class:TokenEater file: +__suiteseen Tools/i18n/pygettext.py /^ def __suiteseen(self, ttype, tstring, lineno):$/;" m class:TokenEater file: +__super_init Lib/urllib/error.py /^ __super_init = urllib.response.addinfourl.__init__$/;" v class:HTTPError +__tempfiles Lib/urllib/request.py /^ __tempfiles = None$/;" v class:URLopener +__test__ Lib/doctest.py /^__test__ = {"_TestClass": _TestClass,$/;" v +__test__ Lib/pickletools.py /^__test__ = {'disassembler_test': _dis_test,$/;" v +__test__ Lib/test/test_deque.py /^__test__ = {'libreftest' : libreftest}$/;" v +__test__ Lib/test/test_descrtut.py /^__test__ = {"tut1": test_1,$/;" v +__test__ Lib/test/test_generators.py /^__test__ = {"tut": tutorial_tests,$/;" v +__test__ Lib/test/test_genexps.py /^ __test__ = {'doctests' : doctests}$/;" v +__test__ Lib/test/test_genexps.py /^ __test__ = {}$/;" v +__test__ Lib/test/test_listcomps.py /^__test__ = {'doctests' : doctests}$/;" v +__test__ Lib/test/test_metaclass.py /^ __test__ = {'doctests' : doctests}$/;" v +__test__ Lib/test/test_metaclass.py /^ __test__ = {}$/;" v +__test__ Lib/test/test_pep646_syntax.py /^__test__ = {'doctests' : doctests}$/;" v +__test__ Lib/test/test_setcomps.py /^__test__ = {'doctests' : doctests}$/;" v +__test__ Lib/test/test_unpack.py /^__test__ = {'doctests' : doctests}$/;" v +__test__ Lib/test/test_unpack_ex.py /^__test__ = {'doctests' : doctests}$/;" v +__test__ Lib/test/test_weakref.py /^__test__ = {'libreftest' : libreftest}$/;" v +__tp_del__ Lib/test/test_finalization.py /^ def __tp_del__(self):$/;" m class:LegacyBase file: +__tp_del__ Lib/test/test_gc.py /^ def __tp_del__(self): pass$/;" m class:GCTests.test_legacy_finalizer.A file: +__tp_del__ Lib/test/test_gc.py /^ def __tp_del__(self): pass$/;" m class:GCTests.test_legacy_finalizer_newclass.A file: +__tp_del__ Lib/test/test_gc.py /^ def __tp_del__(self):$/;" m class:Uncollectable file: +__truediv__ Lib/_pydatetime.py /^ def __truediv__(self, other):$/;" m class:timedelta file: +__truediv__ Lib/_pydecimal.py /^ def __truediv__(self, other, context=None):$/;" m class:Decimal file: +__truediv__ Lib/importlib/metadata/_meta.py /^ def __truediv__(self, other: Union[str, _T]) -> _T:$/;" m class:SimplePath file: +__truediv__ Lib/importlib/resources/abc.py /^ def __truediv__(self, child: StrPath) -> "Traversable":$/;" m class:Traversable file: +__truediv__ Lib/numbers.py /^ def __truediv__(self, other):$/;" m class:Complex file: +__truediv__ Lib/operator.py /^__truediv__ = truediv$/;" v +__truediv__ Lib/pathlib.py /^ def __truediv__(self, key):$/;" m class:PurePath file: +__truediv__ Lib/statistics.py /^ def __truediv__(x1, x2):$/;" m class:NormalDist file: +__truediv__ Lib/test/test_augassign.py /^ def __truediv__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__truediv__ Lib/test/test_binop.py /^ def __truediv__(self, other):$/;" m class:Rat file: +__truediv__ Lib/test/test_importlib/_path.py /^ def __truediv__(self, *args, **kwargs):$/;" m class:TreeMaker file: +__truediv__ Lib/test/test_importlib/_path.py /^ def __truediv__(self, other):$/;" m class:Recording file: +__truediv__ Lib/test/test_numeric_tower.py /^ def __truediv__(self, other):$/;" m class:DummyIntegral file: +__truediv__ Lib/test/test_pathlib.py /^ def __truediv__(self, other):$/;" m class:CompatiblePathTest.CompatPath file: +__truediv__ Lib/test/test_statistics.py /^ def __truediv__(self, other):$/;" m class:ConvertTest.test_decimal.MyDecimal file: +__truediv__ Lib/test/test_statistics.py /^ def __truediv__(self, other):$/;" m class:ConvertTest.test_float.MyFloat file: +__truediv__ Lib/test/test_statistics.py /^ def __truediv__(self, other):$/;" m class:ConvertTest.test_fraction.MyFraction file: +__truediv__ Lib/test/test_statistics.py /^ def __truediv__(self, other):$/;" m class:UnivariateCommonMixin.test_type_of_data_element.MyFloat file: +__truediv__ Lib/test/test_statistics.py /^ def __truediv__(self, other):$/;" m class:UnivariateTypeMixin.prepare_types_for_conservation_test.MyFloat file: +__truediv__ Lib/zipfile/_path/__init__.py /^ __truediv__ = joinpath$/;" v class:Path +__trunc__ Lib/_pydecimal.py /^ __trunc__ = __int__$/;" v class:Decimal +__trunc__ Lib/fractions.py /^ def __trunc__(a):$/;" m class:Fraction file: +__trunc__ Lib/numbers.py /^ def __trunc__(self):$/;" m class:Real file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.NonIntegral file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.TruncReturnsBadInt file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.TruncReturnsNonIndex file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.TruncReturnsNonInt file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc.TruncReturnsNonIntegral file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.ExceptionalTrunc file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.IntOverridesTrunc file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_intconversion.Classic.JustTrunc file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_int_returns_int_subclass.TruncReturnsBadIndex file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_int_returns_int_subclass.TruncReturnsBadInt file: +__trunc__ Lib/test/test_int.py /^ def __trunc__(self):$/;" m class:IntTestCases.test_int_returns_int_subclass.TruncReturnsIntSubclass file: +__trunc__ Lib/test/test_long.py /^ def __trunc__(self):$/;" m class:LongTest.test_conversion.LongTrunc file: +__trunc__ Lib/test/test_math.py /^ def __trunc__(self):$/;" m class:MathTests.test_trunc.FloatTrunc file: +__trunc__ Lib/test/test_math.py /^ def __trunc__(self):$/;" m class:MathTests.test_trunc.TestTrunc file: +__trunc__ Lib/test/test_typing.py /^ def __trunc__(self) -> T: ...$/;" m class:ProtocolTests.test_pep695_generic_protocol_callable_members.SupportsTrunc file: +__typing_is_unpacked_typevartuple__ Lib/typing.py /^ def __typing_is_unpacked_typevartuple__(self):$/;" m class:_UnpackGenericAlias file: +__typing_unpacked_tuple_args__ Lib/typing.py /^ def __typing_unpacked_tuple_args__(self):$/;" m class:_UnpackGenericAlias file: +__uint16_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__uint16_t = c_ushort$/;" v +__uint32_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__uint32_t = c_uint$/;" v +__uint64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__uint64_t = c_ulonglong$/;" v +__uint8_t Lib/test/test_lib2to3/data/infinite_recursion.py /^__uint8_t = c_ubyte$/;" v +__unicode__ Lib/idlelib/idle_test/test_run.py /^ def __unicode__(self):$/;" m class:S file: +__unicode__ Lib/lib2to3/pytree.py /^ def __unicode__(self):$/;" m class:Leaf file: +__unicode__ Lib/lib2to3/pytree.py /^ def __unicode__(self):$/;" m class:Node file: +__unittest Lib/unittest/__init__.py /^__unittest = True$/;" v +__unittest Lib/unittest/__main__.py /^__unittest = True$/;" v +__unittest Lib/unittest/case.py /^__unittest = True$/;" v +__unittest Lib/unittest/loader.py /^__unittest = True$/;" v +__unittest Lib/unittest/main.py /^__unittest = True$/;" v +__unittest Lib/unittest/result.py /^__unittest = True$/;" v +__unittest Lib/unittest/runner.py /^__unittest = True$/;" v +__unittest Lib/unittest/signals.py /^__unittest = True$/;" v +__unittest Lib/unittest/suite.py /^__unittest = True$/;" v +__unittest Lib/unittest/util.py /^__unittest = True$/;" v +__unter__ Lib/test/test_contextlib.py /^ def __unter__(self):$/;" m class:TestContextDecorator.test_typo_enter.mycontext file: +__uxit__ Lib/test/test_contextlib.py /^ def __uxit__(self, *exc):$/;" m class:TestContextDecorator.test_typo_exit.mycontext file: +__version__ Doc/includes/ndiff.py /^__version__ = 1, 7, 0$/;" v +__version__ Lib/_pydecimal.py /^__version__ = '1.70' # Highest version of the spec this complies with$/;" v +__version__ Lib/argparse.py /^__version__ = '1.1'$/;" v +__version__ Lib/cgi.py /^__version__ = "2.6"$/;" v +__version__ Lib/ctypes/__init__.py /^__version__ = "1.1.0"$/;" v +__version__ Lib/ctypes/macholib/__init__.py /^__version__ = '1.0'$/;" v +__version__ Lib/http/server.py /^__version__ = "0.6"$/;" v +__version__ Lib/imaplib.py /^__version__ = "2.58"$/;" v +__version__ Lib/ipaddress.py /^__version__ = '1.0'$/;" v +__version__ Lib/json/__init__.py /^__version__ = '2.0.9'$/;" v +__version__ Lib/logging/__init__.py /^__version__ = "0.5.1.2"$/;" v +__version__ Lib/optparse.py /^__version__ = "1.5.3"$/;" v +__version__ Lib/platform.py /^__version__ = '1.0.8'$/;" v +__version__ Lib/re/__init__.py /^__version__ = "2.2.1"$/;" v +__version__ Lib/socketserver.py /^__version__ = "0.4"$/;" v +__version__ Lib/tabnanny.py /^__version__ = "6"$/;" v +__version__ Lib/test/pydoc_mod.py /^__version__ = "1.2.3.4"$/;" v +__version__ Lib/test/smtpd.py /^__version__ = 'Python SMTP proxy version 0.3'$/;" v +__version__ Lib/test/test_ensurepip.py /^ __version__ = version$/;" v class:fake_pip.FakePip +__version__ Lib/tkinter/font.py /^__version__ = "0.9"$/;" v +__version__ Lib/tkinter/ttk.py /^__version__ = "0.3.1"$/;" v +__version__ Lib/urllib/request.py /^__version__ = '%d.%d' % sys.version_info[:2]$/;" v +__version__ Lib/wsgiref/simple_server.py /^__version__ = "0.2"$/;" v +__version__ Lib/xmlrpc/client.py /^__version__ = '%d.%d' % sys.version_info[:2]$/;" v +__version__ PC/layout/main.py /^__version__ = "3.8"$/;" v +__version__ PC/layout/support/appxmanifest.py /^__version__ = "3.8"$/;" v +__version__ PC/layout/support/catalog.py /^__version__ = "3.8"$/;" v +__version__ PC/layout/support/constants.py /^__version__ = "3.8"$/;" v +__version__ PC/layout/support/filesets.py /^__version__ = "3.8"$/;" v +__version__ PC/layout/support/logging.py /^__version__ = "3.8"$/;" v +__version__ PC/layout/support/options.py /^__version__ = "3.8"$/;" v +__version__ PC/layout/support/pip.py /^__version__ = "3.8"$/;" v +__version__ PCbuild/fix_encoding.py /^__version__ = "1.0.0.0"$/;" v +__version__ Tools/i18n/msgfmt.py /^__version__ = "1.2"$/;" v +__version__ Tools/i18n/pygettext.py /^__version__ = '1.5'$/;" v +__version__ Tools/msi/purge.py /^__version__ = '1.0.0'$/;" v +__version__ Tools/patchcheck/reindent.py /^__version__ = "1"$/;" v +__waiting Tools/i18n/pygettext.py /^ def __waiting(self, ttype, tstring, lineno):$/;" m class:TokenEater file: +__wakeup Lib/asyncio/tasks.py /^ def __wakeup(self, future):$/;" m class:Task file: +__warningregistry__ Lib/test/test_unittest/test_case.py /^ def __warningregistry__(self):$/;" m class:.testAssertWarnsModifySysModules.Foo file: +__wchar_t Include/py_curses.h 19;" d +__winfo_getint Lib/tkinter/__init__.py /^ def __winfo_getint(self, x):$/;" m class:Misc file: +__winfo_parseitem Lib/tkinter/__init__.py /^ def __winfo_parseitem(self, t):$/;" m class:Misc file: +__wint_t Include/py_curses.h 22;" d +__wrapped__ Lib/test/test_inspect.py /^ __wrapped__ = func$/;" v class:TestUnwrap.test_unhashable.C +__wrapped__ Lib/test/test_inspect.py /^ def __wrapped__(self):$/;" m class:NTimesUnwrappable file: +__write Lib/cgi.py /^ def __write(self, line):$/;" m class:FieldStorage file: +__write Lib/tarfile.py /^ def __write(self, s):$/;" m class:_Stream file: +__x Include/cpython/pthread_stubs.h /^typedef struct { void *__x; } pthread_cond_t;$/;" m struct:__anon240 +__x Include/cpython/pthread_stubs.h /^typedef struct { void *__x; } pthread_mutex_t;$/;" m struct:__anon242 +__xname__ Lib/_pydecimal.py /^__xname__ = __name__ # sys.modules lookup (--without-threads)$/;" v +__xor__ Lib/_collections_abc.py /^ def __xor__(self, other):$/;" m class:Set file: +__xor__ Lib/_weakrefset.py /^ __xor__ = symmetric_difference$/;" v class:WeakSet +__xor__ Lib/enum.py /^ def __xor__(self, other):$/;" m class:Flag file: +__xor__ Lib/numbers.py /^ def __xor__(self, other):$/;" m class:Integral file: +__xor__ Lib/operator.py /^__xor__ = xor$/;" v +__xor__ Lib/test/test_augassign.py /^ def __xor__(self, val):$/;" m class:AugAssignTest.testCustomMethods2.testall file: +__xyz__ Lib/test/pydoc_mod.py /^__xyz__ = "X, Y and Z"$/;" v +_a85chars Lib/base64.py /^_a85chars = None$/;" v +_a85chars2 Lib/base64.py /^_a85chars2 = None$/;" v +_abc__abc_init Modules/_abc.c /^_abc__abc_init(PyObject *module, PyObject *self)$/;" f file: +_abc__abc_instancecheck Modules/clinic/_abc.c.h /^_abc__abc_instancecheck(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_abc__abc_instancecheck_impl Modules/_abc.c /^_abc__abc_instancecheck_impl(PyObject *module, PyObject *self,$/;" f file: +_abc__abc_register Modules/clinic/_abc.c.h /^_abc__abc_register(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_abc__abc_register_impl Modules/_abc.c /^_abc__abc_register_impl(PyObject *module, PyObject *self, PyObject *subclass)$/;" f file: +_abc__abc_subclasscheck Modules/clinic/_abc.c.h /^_abc__abc_subclasscheck(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_abc__abc_subclasscheck_impl Modules/_abc.c /^_abc__abc_subclasscheck_impl(PyObject *module, PyObject *self,$/;" f file: +_abc__get_dump Modules/_abc.c /^_abc__get_dump(PyObject *module, PyObject *self)$/;" f file: +_abc__reset_caches Modules/_abc.c /^_abc__reset_caches(PyObject *module, PyObject *self)$/;" f file: +_abc__reset_registry Modules/_abc.c /^_abc__reset_registry(PyObject *module, PyObject *self)$/;" f file: +_abc_cache Modules/_abc.c /^ PyObject *_abc_cache; \/* Normal set of weak references. *\/$/;" m struct:__anon628 file: +_abc_caches_clear Lib/_py_abc.py /^ def _abc_caches_clear(cls):$/;" m class:ABCMeta +_abc_caches_clear Lib/abc.py /^ def _abc_caches_clear(cls):$/;" m class:.ABCMeta +_abc_data Modules/_abc.c /^} _abc_data;$/;" t typeref:struct:__anon628 file: +_abc_data_type Modules/_abc.c /^ PyTypeObject *_abc_data_type;$/;" m struct:__anon627 file: +_abc_data_type_spec Modules/_abc.c /^static PyType_Spec _abc_data_type_spec = {$/;" v file: +_abc_data_type_spec_slots Modules/_abc.c /^static PyType_Slot _abc_data_type_spec_slots[] = {$/;" v file: +_abc_get_cache_token Modules/clinic/_abc.c.h /^_abc_get_cache_token(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_abc_get_cache_token_impl Modules/_abc.c /^_abc_get_cache_token_impl(PyObject *module)$/;" f file: +_abc_invalidation_counter Lib/_py_abc.py /^ _abc_invalidation_counter = 0$/;" v class:ABCMeta +_abc_negative_cache Modules/_abc.c /^ PyObject *_abc_negative_cache; \/* Normal set of weak references. *\/$/;" m struct:__anon628 file: +_abc_negative_cache_version Modules/_abc.c /^ unsigned long long _abc_negative_cache_version;$/;" m struct:__anon628 file: +_abc_registry Modules/_abc.c /^ PyObject *_abc_registry;$/;" m struct:__anon628 file: +_abc_registry_clear Lib/_py_abc.py /^ def _abc_registry_clear(cls):$/;" m class:ABCMeta +_abc_registry_clear Lib/abc.py /^ def _abc_registry_clear(cls):$/;" m class:.ABCMeta +_abcmodule Modules/_abc.c /^static struct PyModuleDef _abcmodule = {$/;" v typeref:struct:PyModuleDef file: +_abcmodule_clear Modules/_abc.c /^_abcmodule_clear(PyObject *module)$/;" f file: +_abcmodule_exec Modules/_abc.c /^_abcmodule_exec(PyObject *module)$/;" f file: +_abcmodule_free Modules/_abc.c /^_abcmodule_free(void *module)$/;" f file: +_abcmodule_methods Modules/_abc.c /^static struct PyMethodDef _abcmodule_methods[] = {$/;" v typeref:struct:PyMethodDef file: +_abcmodule_slots Modules/_abc.c /^static PyModuleDef_Slot _abcmodule_slots[] = {$/;" v file: +_abcmodule_state Modules/_abc.c /^} _abcmodule_state;$/;" t typeref:struct:__anon627 file: +_abcmodule_traverse Modules/_abc.c /^_abcmodule_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_abort Lib/asyncio/sslproto.py /^ def _abort(self):$/;" m class:SSLProtocol +_abort Lib/asyncio/taskgroups.py /^ def _abort(self):$/;" m class:TaskGroup +_abort_socket_test Lib/test/test_asyncio/functional.py /^ def _abort_socket_test(self, ex):$/;" m class:FunctionalTestCaseMixin +_abort_socket_test Lib/test/test_asyncio/test_ssl.py /^ def _abort_socket_test(self, ex):$/;" m class:TestSSL +_abs Tools/c-analyzer/cpython/_parser.py /^def _abs(relfile):$/;" f +_absorb Lib/multiprocessing/heap.py /^ def _absorb(self, block):$/;" m class:Heap +_abspath_fallback Lib/ntpath.py /^def _abspath_fallback(path):$/;" f +_abstract_ Lib/test/test_ctypes/test_structures.py /^ _abstract_ = "something"$/;" v class:StructureTestCase.test_abstract_class.X +_accept_connection Lib/asyncio/selector_events.py /^ def _accept_connection($/;" m class:BaseSelectorEventLoop +_accept_connection2 Lib/asyncio/selector_events.py /^ async def _accept_connection2($/;" m class:BaseSelectorEventLoop +_accept_test_patterns Lib/test/support/__init__.py /^_accept_test_patterns = None$/;" v +_accept_type Lib/lib2to3/fixer_base.py /^ _accept_type = None # [Advanced and not public] This tells RefactoringTool$/;" v class:BaseFix +_accept_type Lib/lib2to3/fixes/fix_ne.py /^ _accept_type = token.NOTEQUAL$/;" v class:FixNe +_accept_type Lib/lib2to3/fixes/fix_numliterals.py /^ _accept_type = token.NUMBER$/;" v class:FixNumliterals +_access_check Lib/shutil.py /^def _access_check(fn, mode):$/;" f +_acquire Lib/test/test_importlib/test_locks.py /^ def _acquire(lock):$/;" f function:DeadlockAvoidanceTests.run_deadlock_avoidance_test +_acquireLock Lib/logging/__init__.py /^def _acquireLock():$/;" f +_acquire_restore Lib/threading.py /^ def _acquire_restore(self, state):$/;" m class:_RLock +_acquire_restore Lib/threading.py /^ def _acquire_restore(self, x):$/;" m class:Condition +_active Lib/subprocess.py /^ _active = None$/;" v +_active Lib/subprocess.py /^ _active = []$/;" v +_active Lib/threading.py /^_active = {} # maps thread id to Thread object$/;" v +_active_limbo_lock Lib/threading.py /^_active_limbo_lock = RLock()$/;" v +_active_patches Lib/unittest/mock.py /^ _active_patches = []$/;" v class:_patch +_add Lib/fractions.py /^ def _add(a, b):$/;" m class:Fraction +_add Lib/os.py /^ def _add(str, fn):$/;" f +_add Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _add():$/;" f function:TZStrTest._populate_test_cases +_addClassOrModuleLevelException Lib/unittest/suite.py /^ def _addClassOrModuleLevelException(self, result, exception, errorName,$/;" m class:TestSuite +_addDuration Lib/unittest/case.py /^ def _addDuration(self, result, elapsed):$/;" m class:TestCase +_addError Lib/unittest/case.py /^def _addError(result, test, exc_info):$/;" f +_addExpectedFailure Lib/unittest/case.py /^ def _addExpectedFailure(self, result, exc_info):$/;" m class:TestCase +_addHandlerRef Lib/logging/__init__.py /^def _addHandlerRef(handler):$/;" f +_addSkip Lib/unittest/case.py /^def _addSkip(result, test_case, reason):$/;" f +_addUnexpectedSuccess Lib/unittest/case.py /^ def _addUnexpectedSuccess(self, result):$/;" m class:TestCase +_add_action Lib/argparse.py /^ def _add_action(self, action):$/;" m class:ArgumentParser +_add_action Lib/argparse.py /^ def _add_action(self, action):$/;" m class:_ActionsContainer +_add_action Lib/argparse.py /^ def _add_action(self, action):$/;" m class:_ArgumentGroup +_add_action Lib/argparse.py /^ def _add_action(self, action):$/;" m class:_MutuallyExclusiveGroup +_add_badmodule Lib/modulefinder.py /^ def _add_badmodule(self, name, caller):$/;" m class:ModuleFinder +_add_ca_certs Modules/_ssl.c /^_add_ca_certs(PySSLContext *self, const void *data, Py_ssize_t len,$/;" f file: +_add_callback Lib/asyncio/base_events.py /^ def _add_callback(self, handle):$/;" m class:BaseEventLoop +_add_callback_signalsafe Lib/asyncio/base_events.py /^ def _add_callback_signalsafe(self, handle):$/;" m class:BaseEventLoop +_add_cmd_cli Tools/c-analyzer/c_common/scriptutil.py /^def _add_cmd_cli(parser, commonspecs, argspecs):$/;" f +_add_container_actions Lib/argparse.py /^ def _add_container_actions(self, container):$/;" m class:_ActionsContainer +_add_decl Tools/c-analyzer/c_parser/info.py /^ def _add_decl(self, decl, key=None):$/;" m class:Declarations +_add_entry Lib/urllib/robotparser.py /^ def _add_entry(self, entry):$/;" m class:RobotFileParser +_add_errcode Modules/errnomodule.c /^_add_errcode(PyObject *module_dict, PyObject *error_dict, const char *name_str, int code_int)$/;" f file: +_add_filter Lib/warnings.py /^def _add_filter(*item, append):$/;" f +_add_free_block Lib/multiprocessing/heap.py /^ def _add_free_block(self, block):$/;" m class:Heap +_add_help_option Lib/optparse.py /^ def _add_help_option(self):$/;" m class:OptionParser +_add_item Lib/argparse.py /^ def _add_item(self, func, args):$/;" m class:HelpFormatter +_add_line Tools/c-analyzer/c_parser/parser/_info.py /^ def _add_line(self, line, lno=None):$/;" m class:SourceInfo +_add_method Lib/crypt.py /^def _add_method(name, *args, rounds=None):$/;" f +_add_methods_to_object Objects/moduleobject.c /^_add_methods_to_object(PyObject *module, PyObject *name, PyMethodDef *functions)$/;" f file: +_add_multipart Lib/email/message.py /^ def _add_multipart(self, _subtype, *args, _disp=None, **kw):$/;" m class:MIMEPart +_add_pending Lib/test/test_capi/test_misc.py /^ _add_pending = _testinternalcapi.pending_threadfunc$/;" v class:TestPendingCalls.PendingTask +_add_pkg_dir Lib/test/test_runpy.py /^ def _add_pkg_dir(self, pkg_dir, namespace=False):$/;" m class:RunModuleTestCase +_add_procs Tools/c-analyzer/c_common/scriptutil.py /^def _add_procs(flattened, procs):$/;" f +_add_reader Lib/asyncio/selector_events.py /^ def _add_reader(self, fd, callback, *args):$/;" m class:BaseSelectorEventLoop +_add_reader Lib/asyncio/selector_events.py /^ def _add_reader(self, fd, callback, *args):$/;" m class:_SelectorTransport +_add_reader Lib/asyncio/unix_events.py /^ def _add_reader(self, fd, callback):$/;" m class:_UnixReadPipeTransport +_add_reader Lib/test/test_asyncio/utils.py /^ def _add_reader(self, fd, callback, *args):$/;" m class:TestLoop +_add_relative_modules Lib/test/test_runpy.py /^ def _add_relative_modules(self, base_dir, source, depth):$/;" m class:RunModuleTestCase +_add_result Lib/test/support/testresult.py /^ def _add_result(self, test, capture=False, **args):$/;" m class:RegressionTestResult +_add_result Tools/c-analyzer/c_analyzer/info.py /^ def _add_result(self, info, resolved):$/;" m class:Analysis +_add_slots Lib/dataclasses.py /^def _add_slots(cls, is_frozen, weakref_slot):$/;" f +_add_tag Lib/idlelib/colorizer.py /^ def _add_tag(self, start, end, head, matched_group_name):$/;" m class:ColorDelegator +_add_tags_in_section Lib/idlelib/colorizer.py /^ def _add_tags_in_section(self, chars, head):$/;" m class:ColorDelegator +_add_testfile Lib/test/test_tarfile.py /^ def _add_testfile(self, fileobj=None):$/;" m class:AppendTest +_add_to_breaks Lib/bdb.py /^ def _add_to_breaks(self, filename, lineno):$/;" m class:Bdb +_add_to_weak_set Modules/_abc.c /^_add_to_weak_set(PyObject **pset, PyObject *obj)$/;" f file: +_add_version_option Lib/optparse.py /^ def _add_version_option(self):$/;" m class:OptionParser +_add_writer Lib/asyncio/selector_events.py /^ def _add_writer(self, fd, callback, *args):$/;" m class:BaseSelectorEventLoop +_add_writer Lib/test/test_asyncio/utils.py /^ def _add_writer(self, fd, callback, *args):$/;" m class:TestLoop +_addcolorizer Lib/idlelib/editor.py /^ def _addcolorizer(self):$/;" m class:EditorWindow +_addkey Lib/dbm/dumb.py /^ def _addkey(self, key, pos_and_siz_pair):$/;" m class:_Database +_addr_only Lib/smtplib.py /^def _addr_only(addrstring):$/;" f +_address_class Lib/ipaddress.py /^ _address_class = IPv4Address$/;" v class:IPv4Network +_address_class Lib/ipaddress.py /^ _address_class = IPv6Address$/;" v class:IPv6Network +_address_class Lib/ipaddress.py /^ def _address_class(self):$/;" m class:_BaseNetwork +_address_fmt_re Lib/ipaddress.py /^_address_fmt_re = None$/;" v +_address_to_local Lib/multiprocessing/managers.py /^ _address_to_local = {}$/;" v class:BaseProxy +_addval Lib/dbm/dumb.py /^ def _addval(self, val):$/;" m class:_Database +_adjust Lib/tkinter/ttk.py /^ def _adjust(self, *args):$/;" m class:LabeledScale +_adjust_cli_sys_path Lib/pydoc.py /^def _adjust_cli_sys_path():$/;" f +_adjust_leftover_buffer Lib/asyncio/selector_events.py /^ def _adjust_leftover_buffer(self, nbytes: int) -> None:$/;" m class:_SelectorSocketTransport +_adjust_process_count Lib/concurrent/futures/process.py /^ def _adjust_process_count(self):$/;" m class:ProcessPoolExecutor +_adjust_resource_limits Lib/test/libregrtest/setup.py /^def _adjust_resource_limits():$/;" f +_adjust_thread_count Lib/concurrent/futures/thread.py /^ def _adjust_thread_count(self):$/;" m class:ThreadPoolExecutor +_adpcm2lin Lib/aifc.py /^ def _adpcm2lin(self, data):$/;" m class:Aifc_read +_advance Parser/asdl.py /^ def _advance(self):$/;" m class:ASDLParser +_after_at_fork_child_reinit_locks Lib/logging/__init__.py /^ def _after_at_fork_child_reinit_locks():$/;" f +_after_fork Lib/multiprocessing/context.py /^ def _after_fork():$/;" m class:.SpawnProcess +_after_fork Lib/multiprocessing/context.py /^ def _after_fork():$/;" m class:Process +_after_fork Lib/multiprocessing/managers.py /^ def _after_fork(self):$/;" m class:BaseProxy +_after_fork Lib/multiprocessing/process.py /^ def _after_fork():$/;" m class:BaseProcess +_after_fork Lib/multiprocessing/queues.py /^ def _after_fork(self):$/;" m class:Queue +_after_fork Lib/multiprocessing/synchronize.py /^ def _after_fork(obj):$/;" f function:SemLock.__init__ +_after_fork Lib/threading.py /^def _after_fork():$/;" f +_afterfork Lib/multiprocessing/resource_sharer.py /^ def _afterfork(self):$/;" m class:_ResourceSharer +_afterfork_counter Lib/multiprocessing/util.py /^_afterfork_counter = itertools.count()$/;" v +_afterfork_registry Lib/multiprocessing/util.py /^_afterfork_registry = weakref.WeakValueDictionary()$/;" v +_afterid Lib/idlelib/pyshell.py /^ _afterid = None$/;" v class:ModifiedInterpreter +_afunc Lib/test/_test_multiprocessing.py /^def _afunc(x):$/;" f +_ag Lib/_collections_abc.py /^_ag = _ag()$/;" v +_ag Lib/_collections_abc.py /^async def _ag(): yield$/;" f +_ag Lib/test/test_dis.py /^async def _ag(x):$/;" f +_ag Lib/types.py /^_ag = _ag()$/;" v +_ag Lib/types.py /^async def _ag():$/;" f +_aifc_params Lib/aifc.py /^_aifc_params = namedtuple('_aifc_params',$/;" v +_aiff Lib/email/mime/audio.py /^def _aiff(h, f):$/;" f +_aix_bgt Lib/_aix_support.py /^def _aix_bgt():$/;" f +_aix_bos_rte Lib/_aix_support.py /^def _aix_bos_rte():$/;" f +_aix_tag Lib/_aix_support.py /^def _aix_tag(vrtl, bd):$/;" f +_aix_vrtl Lib/_aix_support.py /^def _aix_vrtl(vrmf):$/;" f +_alaw2lin Lib/aifc.py /^ def _alaw2lin(self, data):$/;" m class:Aifc_read +_alias Include/internal/pycore_ast.h /^struct _alias {$/;" s +_alias Lib/typing.py /^_alias = _SpecialGenericAlias$/;" v +_alias_list Lib/turtle.py /^_alias_list = ['addshape', 'backward', 'bk', 'fd', 'ht', 'lt', 'pd', 'pos',$/;" v +_alias_mbcs Lib/encodings/__init__.py /^ def _alias_mbcs(encoding):$/;" f +_aliases Lib/encodings/__init__.py /^_aliases = aliases.aliases$/;" v +_aliases Lib/test/test_tomllib/burntsushi.py /^_aliases = {$/;" v +_align Lib/test/support/__init__.py /^ _align = '0P'$/;" v +_align Lib/test/support/__init__.py /^_align = '0n'$/;" v +_align_up Objects/typeobject.c /^_align_up(Py_ssize_t size)$/;" f file: +_alignment Lib/multiprocessing/heap.py /^ _alignment = 8$/;" v class:Heap +_alignment Lib/multiprocessing/shared_memory.py /^ _alignment = 8$/;" v class:ShareableList +_all_magics Lib/unittest/mock.py /^_all_magics = _all_sync_magics | _async_magics$/;" v +_all_opmap Lib/dis.py /^_all_opmap = dict(opmap)$/;" v +_all_opname Lib/dis.py /^_all_opname = list(opname)$/;" v +_all_project_files Lib/test/test_lib2to3/support.py /^def _all_project_files(root, files):$/;" f +_all_string_prefixes Lib/tokenize.py /^def _all_string_prefixes():$/;" f +_all_sync_magics Lib/unittest/mock.py /^_all_sync_magics = _magics | _non_defaults$/;" v +_all_zeros Lib/_pydecimal.py /^_all_zeros = re.compile('0*$').match$/;" v +_alloc_preinit_entry Python/sysmodule.c /^_alloc_preinit_entry(const wchar_t *value)$/;" f file: +_allocate_lock Lib/tempfile.py /^_allocate_lock = _thread.allocate_lock$/;" v +_allocate_lock Lib/threading.py /^_allocate_lock = _thread.allocate_lock$/;" v +_allowRestart Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _allowRestart;$/;" m class:PythonBootstrapperApplication file: +_allow_reckless_class_checks Lib/typing.py /^def _allow_reckless_class_checks(depth=2):$/;" f +_allowed_names Lib/unittest/mock.py /^_allowed_names = {$/;" v +_allowed_types Lib/typing.py /^_allowed_types = (types.FunctionType, types.BuiltinFunctionType,$/;" v +_analyze_decl Tools/c-analyzer/c_analyzer/analyze.py /^_analyze_decl = analyze_decl$/;" v +_ancestry Lib/zipfile/_path/__init__.py /^def _ancestry(path):$/;" f +_anonymous_ Lib/test/test_ctypes/test_anon.py /^ _anonymous_ = ["x"]$/;" v class:AnonTest.test_issue31490.Name +_anonymous_ Lib/test/test_ctypes/test_anon.py /^ _anonymous_ = ["_"]$/;" v class:AnonTest.test_anon.Y +_anonymous_ Lib/test/test_ctypes/test_anon.py /^ _anonymous_ = ["_"]$/;" v class:AnonTest.test_nested.ANON_U +_anonymous_ Lib/test/test_ctypes/test_anon.py /^ _anonymous_ = ["_"]$/;" v class:AnonTest.test_nested.Y +_anonymous_ Lib/test/test_ctypes/test_bitfields.py /^ _anonymous_ = ["_"]$/;" v class:BitFieldTest.test_anon_bitfields.Y +_any_name_ Lib/test/test_enum.py /^ _any_name_ = 9$/;" v class:_EnumTests.test_invalid_names.Wrong +_append_child Lib/xml/dom/minidom.py /^def _append_child(self, node):$/;" f +_append_chunk Lib/email/header.py /^ def _append_chunk(self, fws, string):$/;" m class:_ValueFormatter +_append_doc Lib/email/_policybase.py /^def _append_doc(doc, added_doc):$/;" f +_append_message Lib/mailbox.py /^ def _append_message(self, message):$/;" m class:_singlefileMailbox +_append_modifier Lib/locale.py /^def _append_modifier(code, modifier):$/;" f +_append_newline Lib/mailbox.py /^ _append_newline = False$/;" v class:Mailbox +_append_newline Lib/mailbox.py /^ _append_newline = True$/;" v class:mbox +_append_preinit_entry Python/sysmodule.c /^_append_preinit_entry(_Py_PreInitEntry *optionlist, const wchar_t *value)$/;" f file: +_append_untagged Lib/imaplib.py /^ def _append_untagged(self, typ, dat):$/;" m class:IMAP4 +_appending Lib/_pyio.py /^ _appending = False$/;" v class:FileIO +_apply Lib/_pydecimal.py /^ def _apply(self, a):$/;" m class:Context +_apply_failure Lib/test/test_unicode_file_functions.py /^ def _apply_failure(self, fn, filename,$/;" m class:UnicodeFileTests +_apply_pax_info Lib/tarfile.py /^ def _apply_pax_info(self, pax_headers, encoding, errors):$/;" m class:TarInfo +_approximate_isqrt Modules/mathmodule.c /^_approximate_isqrt(uint64_t n)$/;" f file: +_approximate_isqrt_tab Modules/mathmodule.c /^static const uint8_t _approximate_isqrt_tab[192] = {$/;" v file: +_arena Python/pyarena.c /^struct _arena {$/;" s file: +_arg Include/internal/pycore_ast.h /^struct _arg {$/;" s +_args_from_interpreter_flags Lib/subprocess.py /^def _args_from_interpreter_flags():$/;" f +_argtypes_ Lib/ctypes/__init__.py /^ _argtypes_ = argtypes$/;" v class:CFUNCTYPE.WINFUNCTYPE.WinFunctionType +_argtypes_ Lib/ctypes/__init__.py /^ _argtypes_ = argtypes$/;" v class:CFUNCTYPE.CFunctionType +_argtypes_ Lib/ctypes/__init__.py /^ _argtypes_ = argtypes$/;" v class:PYFUNCTYPE.CFunctionType +_arguments Include/internal/pycore_ast.h /^struct _arguments {$/;" s +_arp_getnode Lib/uuid.py /^def _arp_getnode():$/;" f +_array_fmts Lib/wave.py /^_array_fmts = None, 'b', 'h', None, 'i'$/;" v +_array_type Lib/ctypes/_endian.py /^_array_type = type(Array)$/;" v +_artcmd Lib/nntplib.py /^ def _artcmd(self, line, file=None):$/;" m class:NNTP +_as_int Lib/gettext.py /^def _as_int(n):$/;" f +_as_parameter_ Lib/test/test_ctypes/test_as_parameter.py /^ _as_parameter_ = property(getParameter)$/;" v class:AsParamPropertyWrapper +_as_parameter_ Lib/test/test_ctypes/test_prototypes.py /^ _as_parameter_ = None$/;" v class:CharPointersTestCase.test_instance.X +_as_row Tools/c-analyzer/c_parser/info.py /^ def _as_row(self, colnames, datacolumns, data_as_row):$/;" m class:HighlevelParsedItem +_as_tuple Tools/c-analyzer/c_parser/preprocessor/errors.py /^def _as_tuple(items):$/;" f +_ascii Include/internal/pycore_global_strings.h /^ PyASCIIObject _ascii;$/;" m struct:_Py_global_strings::__anon7 +_ascii_split Lib/email/header.py /^ def _ascii_split(self, fws, string, splitchars):$/;" m class:_ValueFormatter +_asciire Lib/urllib/parse.py /^_asciire = re.compile('([\\x00-\\x7f]+)')$/;" v +_asctime Modules/timemodule.c /^_asctime(struct tm *timeptr)$/;" f file: +_asdict Lib/collections/__init__.py /^ def _asdict(self):$/;" f function:namedtuple +_asdict_inner Lib/dataclasses.py /^def _asdict_inner(obj, dict_factory):$/;" f +_asktabwidth Lib/idlelib/format.py /^ def _asktabwidth(self):$/;" m class:FormatRegion +_asn1obj2py Modules/_ssl.c /^_asn1obj2py(_sslmodulestate *state, const ASN1_OBJECT *name, int no_name)$/;" f file: +_assertRegexTemplate Lib/test/test_binascii.py /^ def _assertRegexTemplate(assert_regex: str, data: bytes, non_strict_mode_expected_result: bytes):$/;" f function:BinASCIITest.test_base64_strict_mode +_assertTrueorder Lib/test/test_ast.py /^ def _assertTrueorder(self, ast_node, parent_pos):$/;" m class:AST_Tests +_assertTruesurvival Lib/test/test_logging.py /^ def _assertTruesurvival(self):$/;" m class:MemoryTest +_assert_arithmetic_cases Lib/test/test_turtle.py /^ def _assert_arithmetic_cases(self, test_cases, lambda_operator):$/;" m class:TestVec2D +_assert_closed Lib/test/test__xxinterpchannels.py /^ def _assert_closed(self, fix):$/;" m class:ExhaustiveChannelTests +_assert_closed_in_interp Lib/test/test__xxinterpchannels.py /^ def _assert_closed_in_interp(self, fix, interp=None):$/;" m class:ExhaustiveChannelTests +_assert_context_options Lib/test/test_ssl.py /^ def _assert_context_options(self, ctx):$/;" m class:ContextTests +_assert_cwd Lib/test/test_subprocess.py /^ def _assert_cwd(self, expected_cwd, python_arg, **kwargs):$/;" m class:ProcessTestCase +_assert_cycle Lib/test/test_graphlib.py /^ def _assert_cycle(self, graph, cycle):$/;" m class:TestTopologicalSort +_assert_find_function Lib/test/test_pdb.py /^ def _assert_find_function(self, file_content, func_name, expected):$/;" m class:PdbTestCase +_assert_highlighting Lib/idlelib/idle_test/test_colorizer.py /^ def _assert_highlighting(self, source, tag_ranges):$/;" m class:ColorDelegatorTest +_assert_is_copy Lib/test/test_descr.py /^ def _assert_is_copy(self, obj, objcopy, msg=None):$/;" m class:PicklingTests +_assert_is_element Lib/xml/etree/ElementTree.py /^ def _assert_is_element(self, e):$/;" m class:Element +_assert_lists Lib/test/test_filecmp.py /^ def _assert_lists(self, actual, expected):$/;" m class:DirCompareTestCase +_assert_logged Lib/test/test_concurrent_futures/test_init.py /^ def _assert_logged(self, msg):$/;" m class:FailingInitializerMixin +_assert_python Lib/test/support/script_helper.py /^def _assert_python(expected_success, \/, *args, **env_vars):$/;" f +_assert_python Lib/test/test_subprocess.py /^ def _assert_python(self, pre_args, **kwargs):$/;" m class:ProcessTestCase +_assert_report Lib/test/test_filecmp.py /^ def _assert_report(self, dircmp_report, expected_report_lines):$/;" m class:DirCompareTestCase +_assert_results Lib/test/test_email/test__header_value_parser.py /^ def _assert_results(self, tl, rest, string, value, defects, remainder,$/;" m class:TestParserMixin +_assert_state Lib/test/test_asyncio/test_base_events.py /^ def _assert_state(self, *expected):$/;" m class:MyProto +_assert_state Lib/test/test_asyncio/test_base_events.py /^ def _assert_state(self, expected):$/;" m class:MyDatagramProto +_assert_state Lib/test/test_asyncio/test_events.py /^ def _assert_state(self, *expected):$/;" m class:MyBaseProto +_assert_state Lib/test/test_asyncio/test_events.py /^ def _assert_state(self, expected):$/;" m class:MyDatagramProto +_assert_state Lib/test/test_asyncio/test_events.py /^ def _assert_state(self, expected):$/;" m class:MyReadPipeProto +_assert_state Lib/test/test_asyncio/test_events.py /^ def _assert_state(self, expected):$/;" m class:MySubprocessProtocol +_assert_state Lib/test/test_asyncio/test_events.py /^ def _assert_state(self, expected):$/;" m class:MyWritePipeProto +_assert_state Lib/test/test_asyncio/test_sendfile.py /^ def _assert_state(self, *expected):$/;" m class:MySendfileProto +_assert_state Lib/test/test_asyncio/test_sock_lowlevel.py /^ def _assert_state(self, *expected):$/;" m class:MyProto +_assert_type_error Lib/test/test_difflib.py /^ def _assert_type_error(self, msg, generator, *args):$/;" m class:TestBytes +_assert_values Lib/test/test__xxsubinterpreters.py /^ def _assert_values(self, values):$/;" m class:ShareableTypeTests +_ast_Ellipsis Lib/ast.py /^_ast_Ellipsis = Ellipsis$/;" v +_astmodule Python/Python-ast.c /^static struct PyModuleDef _astmodule = {$/;" v typeref:struct:PyModuleDef file: +_astuple_inner Lib/dataclasses.py /^def _astuple_inner(obj, tuple_factory):$/;" f +_async_magics Lib/unittest/mock.py /^_async_magics = _async_method_magics | _sync_async_magics$/;" v +_async_method_magics Lib/unittest/mock.py /^_async_method_magics = {"__aenter__", "__aexit__", "__anext__"}$/;" v +_async_test Lib/test/test_contextlib_async.py /^def _async_test(func):$/;" f +_async_yield Lib/test/test_asyncgen.py /^ def _async_yield(v):$/;" f function:AsyncGenAsyncioTest.test_anext_iter.test4 +_async_yield Lib/test/test_asyncgen.py /^ def _async_yield(v):$/;" f function:AsyncGenAsyncioTest.test_anext_iter.test5 +_async_yield Lib/test/test_asyncgen.py /^ def _async_yield(v):$/;" f function:AsyncGenAsyncioTest.test_anext_iter.test6 +_async_yield Lib/test/test_asyncgen.py /^ def _async_yield(v):$/;" f function:AsyncGenAsyncioTest.test_anext_iter +_asyncgen_finalizer_hook Lib/asyncio/base_events.py /^ def _asyncgen_finalizer_hook(self, agen):$/;" m class:BaseEventLoop +_asyncgen_firstiter_hook Lib/asyncio/base_events.py /^ def _asyncgen_firstiter_hook(self, agen):$/;" m class:BaseEventLoop +_asyncgenstate Lib/test/test_inspect.py /^ def _asyncgenstate(self):$/;" m class:TestGetAsyncGenState +_asyncio_Future___init__ Modules/clinic/_asynciomodule.c.h /^_asyncio_Future___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_asyncio_Future___init___impl Modules/_asynciomodule.c /^_asyncio_Future___init___impl(FutureObj *self, PyObject *loop)$/;" f file: +_asyncio_Future__make_cancelled_error Modules/clinic/_asynciomodule.c.h /^_asyncio_Future__make_cancelled_error(FutureObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Future__make_cancelled_error_impl Modules/_asynciomodule.c /^_asyncio_Future__make_cancelled_error_impl(FutureObj *self)$/;" f file: +_asyncio_Future_add_done_callback Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_add_done_callback(FutureObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Future_add_done_callback_impl Modules/_asynciomodule.c /^_asyncio_Future_add_done_callback_impl(FutureObj *self, PyTypeObject *cls,$/;" f file: +_asyncio_Future_cancel Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_cancel(FutureObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Future_cancel_impl Modules/_asynciomodule.c /^_asyncio_Future_cancel_impl(FutureObj *self, PyTypeObject *cls,$/;" f file: +_asyncio_Future_cancelled Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_cancelled(FutureObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Future_cancelled_impl Modules/_asynciomodule.c /^_asyncio_Future_cancelled_impl(FutureObj *self)$/;" f file: +_asyncio_Future_done Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_done(FutureObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Future_done_impl Modules/_asynciomodule.c /^_asyncio_Future_done_impl(FutureObj *self)$/;" f file: +_asyncio_Future_exception Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_exception(FutureObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Future_exception_impl Modules/_asynciomodule.c /^_asyncio_Future_exception_impl(FutureObj *self, PyTypeObject *cls)$/;" f file: +_asyncio_Future_get_loop Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_get_loop(FutureObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Future_get_loop_impl Modules/_asynciomodule.c /^_asyncio_Future_get_loop_impl(FutureObj *self, PyTypeObject *cls)$/;" f file: +_asyncio_Future_remove_done_callback Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_remove_done_callback(FutureObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Future_remove_done_callback_impl Modules/_asynciomodule.c /^_asyncio_Future_remove_done_callback_impl(FutureObj *self, PyTypeObject *cls,$/;" f file: +_asyncio_Future_result Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_result(FutureObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Future_result_impl Modules/_asynciomodule.c /^_asyncio_Future_result_impl(FutureObj *self)$/;" f file: +_asyncio_Future_set_exception Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_set_exception(FutureObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Future_set_exception_impl Modules/_asynciomodule.c /^_asyncio_Future_set_exception_impl(FutureObj *self, PyTypeObject *cls,$/;" f file: +_asyncio_Future_set_result Modules/clinic/_asynciomodule.c.h /^_asyncio_Future_set_result(FutureObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Future_set_result_impl Modules/_asynciomodule.c /^_asyncio_Future_set_result_impl(FutureObj *self, PyTypeObject *cls,$/;" f file: +_asyncio_Task___init__ Modules/clinic/_asynciomodule.c.h /^_asyncio_Task___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_asyncio_Task___init___impl Modules/_asynciomodule.c /^_asyncio_Task___init___impl(TaskObj *self, PyObject *coro, PyObject *loop,$/;" f file: +_asyncio_Task__make_cancelled_error Modules/clinic/_asynciomodule.c.h /^_asyncio_Task__make_cancelled_error(TaskObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Task__make_cancelled_error_impl Modules/_asynciomodule.c /^_asyncio_Task__make_cancelled_error_impl(TaskObj *self)$/;" f file: +_asyncio_Task_cancel Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_cancel(TaskObj *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Task_cancel_impl Modules/_asynciomodule.c /^_asyncio_Task_cancel_impl(TaskObj *self, PyObject *msg)$/;" f file: +_asyncio_Task_cancelling Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_cancelling(TaskObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Task_cancelling_impl Modules/_asynciomodule.c /^_asyncio_Task_cancelling_impl(TaskObj *self)$/;" f file: +_asyncio_Task_get_context Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_get_context(TaskObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Task_get_context_impl Modules/_asynciomodule.c /^_asyncio_Task_get_context_impl(TaskObj *self)$/;" f file: +_asyncio_Task_get_coro Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_get_coro(TaskObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Task_get_coro_impl Modules/_asynciomodule.c /^_asyncio_Task_get_coro_impl(TaskObj *self)$/;" f file: +_asyncio_Task_get_name Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_get_name(TaskObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Task_get_name_impl Modules/_asynciomodule.c /^_asyncio_Task_get_name_impl(TaskObj *self)$/;" f file: +_asyncio_Task_get_stack Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_get_stack(TaskObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Task_get_stack_impl Modules/_asynciomodule.c /^_asyncio_Task_get_stack_impl(TaskObj *self, PyTypeObject *cls,$/;" f file: +_asyncio_Task_print_stack Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_print_stack(TaskObj *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_Task_print_stack_impl Modules/_asynciomodule.c /^_asyncio_Task_print_stack_impl(TaskObj *self, PyTypeObject *cls,$/;" f file: +_asyncio_Task_set_exception Modules/_asynciomodule.c /^_asyncio_Task_set_exception(TaskObj *self, PyObject *exception)$/;" f file: +_asyncio_Task_set_name Modules/_asynciomodule.c /^_asyncio_Task_set_name(TaskObj *self, PyObject *value)$/;" f file: +_asyncio_Task_set_result Modules/_asynciomodule.c /^_asyncio_Task_set_result(TaskObj *self, PyObject *result)$/;" f file: +_asyncio_Task_uncancel Modules/clinic/_asynciomodule.c.h /^_asyncio_Task_uncancel(TaskObj *self, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_Task_uncancel_impl Modules/_asynciomodule.c /^_asyncio_Task_uncancel_impl(TaskObj *self)$/;" f file: +_asyncio__enter_task Modules/clinic/_asynciomodule.c.h /^_asyncio__enter_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio__enter_task_impl Modules/_asynciomodule.c /^_asyncio__enter_task_impl(PyObject *module, PyObject *loop, PyObject *task)$/;" f file: +_asyncio__get_running_loop Modules/clinic/_asynciomodule.c.h /^_asyncio__get_running_loop(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio__get_running_loop_impl Modules/_asynciomodule.c /^_asyncio__get_running_loop_impl(PyObject *module)$/;" f file: +_asyncio__leave_task Modules/clinic/_asynciomodule.c.h /^_asyncio__leave_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio__leave_task_impl Modules/_asynciomodule.c /^_asyncio__leave_task_impl(PyObject *module, PyObject *loop, PyObject *task)$/;" f file: +_asyncio__register_eager_task Modules/clinic/_asynciomodule.c.h /^_asyncio__register_eager_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio__register_eager_task_impl Modules/_asynciomodule.c /^_asyncio__register_eager_task_impl(PyObject *module, PyObject *task)$/;" f file: +_asyncio__register_task Modules/clinic/_asynciomodule.c.h /^_asyncio__register_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio__register_task_impl Modules/_asynciomodule.c /^_asyncio__register_task_impl(PyObject *module, PyObject *task)$/;" f file: +_asyncio__set_running_loop Modules/_asynciomodule.c /^_asyncio__set_running_loop(PyObject *module, PyObject *loop)$/;" f file: +_asyncio__swap_current_task Modules/clinic/_asynciomodule.c.h /^_asyncio__swap_current_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio__swap_current_task_impl Modules/_asynciomodule.c /^_asyncio__swap_current_task_impl(PyObject *module, PyObject *loop,$/;" f file: +_asyncio__unregister_eager_task Modules/clinic/_asynciomodule.c.h /^_asyncio__unregister_eager_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio__unregister_eager_task_impl Modules/_asynciomodule.c /^_asyncio__unregister_eager_task_impl(PyObject *module, PyObject *task)$/;" f file: +_asyncio__unregister_task Modules/clinic/_asynciomodule.c.h /^_asyncio__unregister_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio__unregister_task_impl Modules/_asynciomodule.c /^_asyncio__unregister_task_impl(PyObject *module, PyObject *task)$/;" f file: +_asyncio_current_task Modules/clinic/_asynciomodule.c.h /^_asyncio_current_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_asyncio_current_task_impl Modules/_asynciomodule.c /^_asyncio_current_task_impl(PyObject *module, PyObject *loop)$/;" f file: +_asyncio_future_blocking Lib/asyncio/futures.py /^ _asyncio_future_blocking = False$/;" v class:Future +_asyncio_future_blocking Lib/test/test_asyncio/test_futures.py /^ _asyncio_future_blocking = None$/;" v class:BaseFutureTests.test_isfuture.MyFuture +_asyncio_future_blocking Lib/test/test_asyncio/test_futures.py /^ _asyncio_future_blocking = False$/;" v class:DuckFuture +_asyncio_future_blocking Lib/test/test_asyncio/test_runners.py /^ def _asyncio_future_blocking(self):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +_asyncio_get_event_loop Modules/clinic/_asynciomodule.c.h /^_asyncio_get_event_loop(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_get_event_loop_impl Modules/_asynciomodule.c /^_asyncio_get_event_loop_impl(PyObject *module)$/;" f file: +_asyncio_get_running_loop Modules/clinic/_asynciomodule.c.h /^_asyncio_get_running_loop(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_asyncio_get_running_loop_impl Modules/_asynciomodule.c /^_asyncio_get_running_loop_impl(PyObject *module)$/;" f file: +_asynciomodule Modules/_asynciomodule.c /^static struct PyModuleDef _asynciomodule = {$/;" v typeref:struct:PyModuleDef file: +_asynciomodule Modules/_asynciomodule.c /^static struct PyModuleDef _asynciomodule;$/;" v typeref:struct:PyModuleDef file: +_asyncwith Lib/test/test_dis.py /^async def _asyncwith(c):$/;" f +_at_fork_reinit Lib/logging/__init__.py /^ def _at_fork_reinit(self):$/;" m class:Handler +_at_fork_reinit Lib/logging/__init__.py /^ def _at_fork_reinit(self):$/;" m class:NullHandler +_at_fork_reinit Lib/multiprocessing/util.py /^ def _at_fork_reinit(self):$/;" m class:ForkAwareThreadLock +_at_fork_reinit Lib/threading.py /^ def _at_fork_reinit(self):$/;" m class:Condition +_at_fork_reinit Lib/threading.py /^ def _at_fork_reinit(self):$/;" m class:Event +_at_fork_reinit Lib/threading.py /^ def _at_fork_reinit(self):$/;" m class:_RLock +_at_fork_reinit_lock_weakset Lib/logging/__init__.py /^ _at_fork_reinit_lock_weakset = weakref.WeakSet()$/;" v +_at_keyword Parser/asdl.py /^ def _at_keyword(self, keyword):$/;" m class:ASDLParser +_atexit_runtime_state Include/internal/pycore_atexit.h /^struct _atexit_runtime_state {$/;" s +_attach Lib/asyncio/base_events.py /^ def _attach(self):$/;" m class:Server +_attach_existing_shmem_then_write Lib/test/_test_multiprocessing.py /^ def _attach_existing_shmem_then_write(shmem_name_or_obj, binary_data):$/;" m class:_TestSharedMemory +_attr_type Lib/enum.py /^ _attr_type = None$/;" v class:property +_attributes Include/internal/pycore_ast_state.h /^ PyObject *_attributes;$/;" m struct:ast_state +_au Lib/email/mime/audio.py /^def _au(h, f):$/;" f +_audit_hook Programs/_testembed.c /^static int _audit_hook(const char *event, PyObject *args, void *userdata)$/;" f file: +_audit_hook_clear_count Programs/_testembed.c /^static int _audit_hook_clear_count = 0;$/;" v file: +_audit_hook_run Programs/_testembed.c /^static int _audit_hook_run(const char *eventName, PyObject *args, void *userData)$/;" f file: +_audit_subinterpreter_hook Programs/_testembed.c /^static int _audit_subinterpreter_hook(const char *event, PyObject *args, void *userdata)$/;" f file: +_audit_subinterpreter_interpreter_count Programs/_testembed.c /^static volatile int _audit_subinterpreter_interpreter_count = 0;$/;" v file: +_auth_buggy Lib/test/test_smtplib.py /^ def _auth_buggy(self, arg=None):$/;" m class:SimSMTPChannel +_auth_cram_md5 Lib/test/test_smtplib.py /^ def _auth_cram_md5(self, arg=None):$/;" m class:SimSMTPChannel +_auth_login Lib/test/test_smtplib.py /^ def _auth_login(self, arg=None):$/;" m class:SimSMTPChannel +_auth_plain Lib/test/test_smtplib.py /^ def _auth_plain(self, arg=None):$/;" m class:SimSMTPChannel +_authenticated Lib/test/test_smtplib.py /^ def _authenticated(self, user, valid):$/;" m class:SimSMTPChannel +_auto_null Lib/enum.py /^_auto_null = _auto_null()$/;" v +_auto_null Lib/enum.py /^class _auto_null:$/;" c +_await_coroutine Lib/test/test_unittest/testmock/testasync.py /^ async def _await_coroutine(self, coroutine):$/;" m class:AsyncMockAssert +_b32alphabet Lib/base64.py /^_b32alphabet = b'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'$/;" v +_b32decode Lib/base64.py /^def _b32decode(alphabet, s, casefold=False, map01=None):$/;" f +_b32encode Lib/base64.py /^def _b32encode(alphabet, s):$/;" f +_b32hexalphabet Lib/base64.py /^_b32hexalphabet = b'0123456789ABCDEFGHIJKLMNOPQRSTUV'$/;" v +_b32rev Lib/base64.py /^_b32rev = {}$/;" v +_b32tab2 Lib/base64.py /^_b32tab2 = {}$/;" v +_b85alphabet Lib/base64.py /^_b85alphabet = (b"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"$/;" v +_b85chars Lib/base64.py /^_b85chars = None$/;" v +_b85chars2 Lib/base64.py /^_b85chars2 = None$/;" v +_b85dec Lib/base64.py /^_b85dec = None$/;" v +_baFunction Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ IBootstrapperBAFunction* _baFunction;$/;" m class:PythonBootstrapperApplication file: +_back_transforms_mapping Lib/multiprocessing/shared_memory.py /^ _back_transforms_mapping = {$/;" v class:ShareableList +_bad_ Lib/test/test_enum.py /^ _bad_ = 1$/;" v class:TestSpecial.test_reserved_sunder_error.Bad +_bad_message_length Lib/multiprocessing/connection.py /^ def _bad_message_length(self):$/;" m class:_ConnectionBase +_bar Lib/test/test_rlcompleter.py /^ _bar = 0$/;" v class:TestRlcompleter.test_property_method_not_called.Foo +_bare_name_matches Lib/lib2to3/pytree.py /^ def _bare_name_matches(self, nodes):$/;" m class:WildcardPattern +_barmodule Modules/_testimportmultiple.c /^static struct PyModuleDef _barmodule = {$/;" v typeref:struct:PyModuleDef file: +_base Include/cpython/unicodeobject.h /^ PyASCIIObject _base;$/;" m struct:__anon233 +_base Include/cpython/unicodeobject.h /^ PyCompactUnicodeObject _base;$/;" m struct:__anon234 +_base Lib/zipfile/_path/__init__.py /^ def _base(self):$/;" m class:Path +_baseAssertEqual Lib/unittest/case.py /^ def _baseAssertEqual(self, first, second, msg=None):$/;" m class:TestCase +_base_init Lib/nntplib.py /^ def _base_init(self, readermode):$/;" m class:NNTP +_base_type Lib/unittest/case.py /^ _base_type = BaseException$/;" v class:_AssertRaisesContext +_base_type Lib/unittest/case.py /^ _base_type = Warning$/;" v class:_AssertWarnsContext +_base_type_str Lib/unittest/case.py /^ _base_type_str = 'a warning type or tuple of warning types'$/;" v class:_AssertWarnsContext +_base_type_str Lib/unittest/case.py /^ _base_type_str = 'an exception type or tuple of exception types'$/;" v class:_AssertRaisesContext +_baseconv_to_larger Modules/_decimal/libmpdec/mpdecimal.c /^_baseconv_to_larger(uint32_t **w, size_t wlen, mpd_uint_t wbase,$/;" f file: +_baseconv_to_smaller Modules/_decimal/libmpdec/mpdecimal.c /^_baseconv_to_smaller(uint32_t **w, size_t wlen, uint32_t wbase,$/;" f file: +_baseconv_to_u16 Modules/_decimal/libmpdec/mpdecimal.c /^_baseconv_to_u16(uint16_t **w, size_t wlen, mpd_uint_t wbase,$/;" f file: +_basename Lib/shutil.py /^def _basename(path):$/;" f +_basetest_create_connection Lib/test/test_asyncio/test_events.py /^ def _basetest_create_connection(self, connection_fut, check_sockname=True):$/;" m class:EventLoopTestsMixin +_basetest_create_ssl_connection Lib/test/test_asyncio/test_events.py /^ def _basetest_create_ssl_connection(self, connection_fut,$/;" m class:EventLoopTestsMixin +_basetest_datagram_recvfrom Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_datagram_recvfrom(self, server_address):$/;" m class:BaseSockTestsMixin +_basetest_datagram_recvfrom_into Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_datagram_recvfrom_into(self, server_address):$/;" m class:BaseSockTestsMixin +_basetest_datagram_sendto_blocking Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_datagram_sendto_blocking(self, server_address):$/;" m class:BaseSockTestsMixin +_basetest_huge_content Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_huge_content(self, address):$/;" m class:BaseSockTestsMixin +_basetest_huge_content_recvinto Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_huge_content_recvinto(self, address):$/;" m class:BaseSockTestsMixin +_basetest_open_connection Lib/test/test_asyncio/test_streams.py /^ def _basetest_open_connection(self, open_connection_fut):$/;" m class:StreamTests +_basetest_open_connection_error Lib/test/test_asyncio/test_streams.py /^ def _basetest_open_connection_error(self, open_connection_fut):$/;" m class:StreamTests +_basetest_open_connection_no_loop_ssl Lib/test/test_asyncio/test_streams.py /^ def _basetest_open_connection_no_loop_ssl(self, open_connection_fut):$/;" m class:StreamTests +_basetest_sock_client_ops Lib/test/test_asyncio/test_sock_lowlevel.py /^ def _basetest_sock_client_ops(self, httpd, sock):$/;" m class:BaseSockTestsMixin +_basetest_sock_connect_racing Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_sock_connect_racing(self, listener, sock):$/;" m class:BaseSockTestsMixin +_basetest_sock_recv_into Lib/test/test_asyncio/test_sock_lowlevel.py /^ def _basetest_sock_recv_into(self, httpd, sock):$/;" m class:BaseSockTestsMixin +_basetest_sock_recv_into_racing Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_sock_recv_into_racing(self, httpd, sock):$/;" m class:BaseSockTestsMixin +_basetest_sock_recv_racing Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_sock_recv_racing(self, httpd, sock):$/;" m class:BaseSockTestsMixin +_basetest_sock_send_racing Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def _basetest_sock_send_racing(self, listener, sock):$/;" m class:BaseSockTestsMixin +_batch_appends Lib/pickle.py /^ def _batch_appends(self, items):$/;" m class:_Pickler +_batch_setitems Lib/pickle.py /^ def _batch_setitems(self, items):$/;" m class:_Pickler +_become_message Lib/mailbox.py /^ def _become_message(self, message):$/;" m class:Message +_bflags Lib/test/test_tempfile.py /^ _bflags = tempfile._bin_openflags$/;" v class:TestMkstempInner.mkstemped +_bflags Lib/test/test_tempfile.py /^ _bflags = tempfile._bin_openflags$/;" v class:TestMktemp.mktemped +_bgcolor Lib/turtle.py /^ def _bgcolor(self, color=None):$/;" m class:TurtleScreenBase +_bin_openflags Lib/tempfile.py /^_bin_openflags = _text_openflags$/;" v +_binary Lib/xmlrpc/client.py /^def _binary(data):$/;" f +_binary_ops Lib/gettext.py /^_binary_ops = ($/;" v +_binary_ops Lib/gettext.py /^_binary_ops = {op: i for i, ops in enumerate(_binary_ops, 1) for op in ops}$/;" v +_binary_search Lib/idlelib/autocomplete_w.py /^ def _binary_search(self, s):$/;" m class:AutoCompleteWindow +_bind Lib/inspect.py /^ def _bind(self, args, kwargs, *, partial=False):$/;" m class:Signature +_bind Lib/tkinter/__init__.py /^ def _bind(self, what, sequence, func, add, needcleanup=1):$/;" m class:Misc +_bind_events Lib/idlelib/calltip_w.py /^ def _bind_events(self):$/;" m class:CalltipWindow +_bind_nix_socket_error Lib/test/support/socket_helper.py /^_bind_nix_socket_error = None$/;" v +_binder_classes Lib/idlelib/multicall.py /^_binder_classes = (_ComplexBinder,) * 4 + (_SimpleBinder,) * (len(_types)-4)$/;" v +_bisect Modules/_zoneinfo.c /^_bisect(const int64_t value, const int64_t *arr, size_t size)$/;" f file: +_bisect_bisect_left Modules/clinic/_bisectmodule.c.h /^_bisect_bisect_left(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_bisect_bisect_left_impl Modules/_bisectmodule.c /^_bisect_bisect_left_impl(PyObject *module, PyObject *a, PyObject *x,$/;" f file: +_bisect_bisect_right Modules/clinic/_bisectmodule.c.h /^_bisect_bisect_right(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_bisect_bisect_right_impl Modules/_bisectmodule.c /^_bisect_bisect_right_impl(PyObject *module, PyObject *a, PyObject *x,$/;" f file: +_bisect_insort_left Modules/clinic/_bisectmodule.c.h /^_bisect_insort_left(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_bisect_insort_left_impl Modules/_bisectmodule.c /^_bisect_insort_left_impl(PyObject *module, PyObject *a, PyObject *x,$/;" f file: +_bisect_insort_right Modules/clinic/_bisectmodule.c.h /^_bisect_insort_right(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_bisect_insort_right_impl Modules/_bisectmodule.c /^_bisect_insort_right_impl(PyObject *module, PyObject *a, PyObject *x,$/;" f file: +_bisectmodule Modules/_bisectmodule.c /^static struct PyModuleDef _bisectmodule = {$/;" v typeref:struct:PyModuleDef file: +_blake2 Lib/test/test_hashlib.py /^ _blake2 = None$/;" v +_blake2_blake2b_copy Modules/_blake2/clinic/blake2b_impl.c.h /^_blake2_blake2b_copy(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_blake2_blake2b_copy_impl Modules/_blake2/blake2b_impl.c /^_blake2_blake2b_copy_impl(BLAKE2bObject *self)$/;" f file: +_blake2_blake2b_digest Modules/_blake2/clinic/blake2b_impl.c.h /^_blake2_blake2b_digest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_blake2_blake2b_digest_impl Modules/_blake2/blake2b_impl.c /^_blake2_blake2b_digest_impl(BLAKE2bObject *self)$/;" f file: +_blake2_blake2b_hexdigest Modules/_blake2/clinic/blake2b_impl.c.h /^_blake2_blake2b_hexdigest(BLAKE2bObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_blake2_blake2b_hexdigest_impl Modules/_blake2/blake2b_impl.c /^_blake2_blake2b_hexdigest_impl(BLAKE2bObject *self)$/;" f file: +_blake2_blake2b_update Modules/_blake2/blake2b_impl.c /^_blake2_blake2b_update(BLAKE2bObject *self, PyObject *data)$/;" f file: +_blake2_blake2s_copy Modules/_blake2/clinic/blake2s_impl.c.h /^_blake2_blake2s_copy(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_blake2_blake2s_copy_impl Modules/_blake2/blake2s_impl.c /^_blake2_blake2s_copy_impl(BLAKE2sObject *self)$/;" f file: +_blake2_blake2s_digest Modules/_blake2/clinic/blake2s_impl.c.h /^_blake2_blake2s_digest(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_blake2_blake2s_digest_impl Modules/_blake2/blake2s_impl.c /^_blake2_blake2s_digest_impl(BLAKE2sObject *self)$/;" f file: +_blake2_blake2s_hexdigest Modules/_blake2/clinic/blake2s_impl.c.h /^_blake2_blake2s_hexdigest(BLAKE2sObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_blake2_blake2s_hexdigest_impl Modules/_blake2/blake2s_impl.c /^_blake2_blake2s_hexdigest_impl(BLAKE2sObject *self)$/;" f file: +_blake2_blake2s_update Modules/_blake2/blake2s_impl.c /^_blake2_blake2s_update(BLAKE2sObject *self, PyObject *data)$/;" f file: +_blake2_clear Modules/_blake2/blake2module.c /^_blake2_clear(PyObject *module)$/;" f file: +_blake2_free Modules/_blake2/blake2module.c /^_blake2_free(void *module)$/;" f file: +_blake2_slots Modules/_blake2/blake2module.c /^static PyModuleDef_Slot _blake2_slots[] = {$/;" v file: +_blake2_traverse Modules/_blake2/blake2module.c /^_blake2_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_blankimage Lib/turtle.py /^ def _blankimage(self):$/;" m class:TurtleScreenBase +_bless_my_loader Lib/importlib/_bootstrap_external.py /^def _bless_my_loader(module_globals):$/;" f +_block Lib/asyncio/locks.py /^ async def _block(self):$/;" m class:Barrier +_block Lib/tarfile.py /^ def _block(self, count):$/;" m class:TarInfo +_block Python/pyarena.c /^typedef struct _block {$/;" s file: +_block_syms Lib/lib2to3/fixer_util.py /^_block_syms = {syms.funcdef, syms.classdef, syms.trailer}$/;" v +_block_type Include/internal/pycore_symtable.h /^typedef enum _block_type {$/;" g +_blocking_errnos Lib/socket.py /^_blocking_errnos = { EAGAIN, EWOULDBLOCK }$/;" v +_blocking_on Lib/importlib/_bootstrap.py /^_blocking_on = None$/;" v +_bmp Lib/email/mime/image.py /^def _bmp(h):$/;" f +_body_types Lib/email/message.py /^ _body_types = {('text', 'plain'),$/;" v class:MIMEPart +_boo Lib/test/test_shutil.py /^ def _boo(filename, extract_dir, extra):$/;" f function:TestArchives.test_unpack_registry +_boolop Include/internal/pycore_ast.h /^typedef enum _boolop { And=1, Or=2 } boolop_ty;$/;" g +_bootstrap Lib/ensurepip/__init__.py /^def _bootstrap(*, root=None, upgrade=False, user=False,$/;" f +_bootstrap Lib/importlib/_bootstrap_external.py /^_bootstrap = None$/;" v +_bootstrap Lib/multiprocessing/process.py /^ def _bootstrap(self, parent_sentinel=None):$/;" m class:BaseProcess +_bootstrap Lib/threading.py /^ def _bootstrap(self):$/;" m class:Thread +_bootstrap_external Lib/importlib/_bootstrap.py /^_bootstrap_external = None$/;" v +_bootstrap_inner Lib/threading.py /^ def _bootstrap_inner(self):$/;" m class:Thread +_bound_arguments_cls Lib/inspect.py /^ _bound_arguments_cls = BoundArguments$/;" v class:Signature +_bounds_checking Lib/test/test_time.py /^ def _bounds_checking(self, func):$/;" m class:TimeTestCase +_break Lib/threading.py /^ def _break(self):$/;" m class:Barrier +_break_on_call_reduce Lib/enum.py /^ def _break_on_call_reduce(self, proto):$/;" f function:_make_class_unpicklable +_browsers Lib/webbrowser.py /^_browsers = {} # Dictionary of available browser controllers$/;" v +_brute_force_closer Modules/_posixsubprocess.c /^_brute_force_closer(int first, int last)$/;" f file: +_buf Lib/multiprocessing/shared_memory.py /^ _buf = None$/;" v class:SharedMemory +_buffer Lib/_pyio.py /^ _buffer = None$/;" v class:BytesIO +_buffer Lib/_pyio.py /^ _buffer = None$/;" v class:TextIOWrapper +_buffer PC/launcher2.c /^ struct _SearchInfoBuffer *_buffer;$/;" m struct:__anon284 typeref:struct:__anon284::_SearchInfoBuffer file: +_buffer_decode Lib/codecs.py /^ def _buffer_decode(self, input, errors, final):$/;" m class:BufferedIncrementalDecoder +_buffer_decode Lib/encodings/idna.py /^ def _buffer_decode(self, input, errors, final):$/;" m class:IncrementalDecoder +_buffer_decode Lib/encodings/mbcs.py /^ _buffer_decode = mbcs_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/oem.py /^ _buffer_decode = oem_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/raw_unicode_escape.py /^ def _buffer_decode(self, input, errors, final):$/;" m class:IncrementalDecoder +_buffer_decode Lib/encodings/unicode_escape.py /^ def _buffer_decode(self, input, errors, final):$/;" m class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_16.py /^ def _buffer_decode(self, input, errors, final):$/;" m class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_16_be.py /^ _buffer_decode = codecs.utf_16_be_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_16_le.py /^ _buffer_decode = codecs.utf_16_le_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_32.py /^ def _buffer_decode(self, input, errors, final):$/;" m class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_32_be.py /^ _buffer_decode = codecs.utf_32_be_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_32_le.py /^ _buffer_decode = codecs.utf_32_le_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_7.py /^ _buffer_decode = codecs.utf_7_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_8.py /^ _buffer_decode = codecs.utf_8_decode$/;" v class:IncrementalDecoder +_buffer_decode Lib/encodings/utf_8_sig.py /^ def _buffer_decode(self, input, errors, final):$/;" m class:IncrementalDecoder +_buffer_encode Lib/codecs.py /^ def _buffer_encode(self, input, errors, final):$/;" m class:BufferedIncrementalEncoder +_buffer_encode Lib/encodings/idna.py /^ def _buffer_encode(self, input, errors, final):$/;" m class:IncrementalEncoder +_buffer_factory Lib/asyncio/selector_events.py /^ _buffer_factory = collections.deque$/;" v class:_SelectorDatagramTransport +_buffered_check_blocking_error Modules/_io/bufferedio.c /^_buffered_check_blocking_error(void)$/;" f file: +_buffered_init Modules/_io/bufferedio.c /^_buffered_init(buffered *self)$/;" f file: +_buffered_raw_seek Modules/_io/bufferedio.c /^_buffered_raw_seek(buffered *self, Py_off_t target, int whence)$/;" f file: +_buffered_raw_tell Modules/_io/bufferedio.c /^_buffered_raw_tell(buffered *self)$/;" f file: +_buffered_readinto_generic Modules/_io/bufferedio.c /^_buffered_readinto_generic(buffered *self, Py_buffer *buffer, char readinto1)$/;" f file: +_buffered_readline Modules/_io/bufferedio.c /^_buffered_readline(buffered *self, Py_ssize_t limit)$/;" f file: +_bufferediobase_readinto_generic Modules/_io/bufferedio.c /^_bufferediobase_readinto_generic(PyObject *self, Py_buffer *buffer, char readinto1)$/;" f file: +_bufferedreader_fill_buffer Modules/_io/bufferedio.c /^_bufferedreader_fill_buffer(buffered *self)$/;" f file: +_bufferedreader_peek_unlocked Modules/_io/bufferedio.c /^_bufferedreader_peek_unlocked(buffered *self)$/;" f file: +_bufferedreader_raw_read Modules/_io/bufferedio.c /^_bufferedreader_raw_read(buffered *self, char *start, Py_ssize_t len)$/;" f file: +_bufferedreader_read_all Modules/_io/bufferedio.c /^_bufferedreader_read_all(buffered *self)$/;" f file: +_bufferedreader_read_fast Modules/_io/bufferedio.c /^_bufferedreader_read_fast(buffered *self, Py_ssize_t n)$/;" f file: +_bufferedreader_read_generic Modules/_io/bufferedio.c /^_bufferedreader_read_generic(buffered *self, Py_ssize_t n)$/;" f file: +_bufferedreader_reset_buf Modules/_io/bufferedio.c /^static void _bufferedreader_reset_buf(buffered *self)$/;" f file: +_bufferedwriter_flush_unlocked Modules/_io/bufferedio.c /^_bufferedwriter_flush_unlocked(buffered *self)$/;" f file: +_bufferedwriter_raw_write Modules/_io/bufferedio.c /^_bufferedwriter_raw_write(buffered *self, char *start, Py_ssize_t len)$/;" f file: +_bufferedwriter_reset_buf Modules/_io/bufferedio.c /^_bufferedwriter_reset_buf(buffered *self)$/;" f file: +_buflen Modules/_io/winconsoleio.c /^_buflen(winconsoleio *self)$/;" f file: +_buggy_ucrt Lib/test/support/__init__.py /^_buggy_ucrt = None$/;" v +_build_argv Tools/c-analyzer/c_parser/preprocessor/common.py /^def _build_argv($/;" f +_build_callargs Modules/_ctypes/_ctypes.c /^_build_callargs(PyCFuncPtrObject *self, PyObject *argtypes,$/;" f file: +_build_char_in_string_func Lib/idlelib/editor.py /^ def _build_char_in_string_func(self, startindex):$/;" m class:EditorWindow +_build_char_in_string_func Lib/idlelib/idle_test/test_hyperparser.py /^ _build_char_in_string_func = EditorWindow._build_char_in_string_func$/;" v class:DummyEditwin +_build_localename Lib/locale.py /^def _build_localename(localetuple):$/;" f +_build_result Modules/_ctypes/_ctypes.c /^_build_result(PyObject *result, PyObject *callargs,$/;" f file: +_build_return_object Tools/peg_generator/peg_extension/peg_extension.c /^_build_return_object(mod_ty module, int mode, PyObject *filename_ob, PyArena *arena)$/;" f +_build_rval_index_tuple Modules/_json.c /^_build_rval_index_tuple(PyObject *rval, Py_ssize_t idx) {$/;" f file: +_build_src Tools/ssl/multissltests.py /^ def _build_src(self, config_args=()):$/;" m class:AbstractBuilder +_build_src Tools/ssl/multissltests.py /^ def _build_src(self, config_args=()):$/;" m class:BuildOpenSSL +_build_struct_time Lib/_pydatetime.py /^def _build_struct_time(y, m, d, hh, mm, ss, dstflag):$/;" f +_build_table Tools/c-analyzer/c_common/tables.py /^def _build_table(columns, *, sep=' ', defaultwidth=None):$/;" f +_builtin_cvt Lib/optparse.py /^_builtin_cvt = { "int" : (_parse_int, _("integer")),$/;" v +_builtin_from_name Lib/importlib/_bootstrap.py /^def _builtin_from_name(name):$/;" f +_builtin_scalars Lib/pprint.py /^_builtin_scalars = frozenset({str, bytes, bytearray, float, complex,$/;" v +_builtins Lib/unittest/mock.py /^_builtins = {name for name in dir(builtins) if not name.startswith('_')}$/;" v +_bump Modules/_tkinter.c /^_bump(FlattenContext* context, Py_ssize_t size)$/;" f file: +_bundle Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BAL_INFO_BUNDLE _bundle;$/;" m class:PythonBootstrapperApplication file: +_button_re Lib/idlelib/multicall.py /^_button_re = re.compile(r"^[1-5]$")$/;" v +_byref Modules/_ctypes/_ctypes.c /^_byref(PyObject *obj)$/;" f file: +_byte_offset_to_character_offset Lib/traceback.py /^def _byte_offset_to_character_offset(str, offset):$/;" f +_byte_quoter_factory Lib/urllib/parse.py /^def _byte_quoter_factory(safe):$/;" f +_bytes_from_decode_data Lib/base64.py /^def _bytes_from_decode_data(s):$/;" f +_bytes_msg Lib/test/test_email/__init__.py /^ def _bytes_msg(self, bytestring, message=None, policy=None):$/;" m class:TestEmailBase +_bytes_repr Lib/test/test_email/__init__.py /^ def _bytes_repr(self, b):$/;" m class:TestEmailBase +_bytes_sample_message Lib/test/test_mailbox.py /^_bytes_sample_message = _sample_message.encode('ascii')$/;" v +_bytes_shared Python/pystate.c /^_bytes_shared(PyThreadState *tstate, PyObject *obj,$/;" f file: +_bytes_to_codes Lib/re/_compiler.py /^def _bytes_to_codes(b):$/;" f +_byteswap Lib/wave.py /^def _byteswap(data, width):$/;" f +_bz2_BZ2Compressor Modules/clinic/_bz2module.c.h /^_bz2_BZ2Compressor(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +_bz2_BZ2Compressor_compress Modules/clinic/_bz2module.c.h /^_bz2_BZ2Compressor_compress(BZ2Compressor *self, PyObject *arg)$/;" f +_bz2_BZ2Compressor_compress_impl Modules/_bz2module.c /^_bz2_BZ2Compressor_compress_impl(BZ2Compressor *self, Py_buffer *data)$/;" f file: +_bz2_BZ2Compressor_flush Modules/clinic/_bz2module.c.h /^_bz2_BZ2Compressor_flush(BZ2Compressor *self, PyObject *Py_UNUSED(ignored))$/;" f +_bz2_BZ2Compressor_flush_impl Modules/_bz2module.c /^_bz2_BZ2Compressor_flush_impl(BZ2Compressor *self)$/;" f file: +_bz2_BZ2Compressor_impl Modules/_bz2module.c /^_bz2_BZ2Compressor_impl(PyTypeObject *type, int compresslevel)$/;" f file: +_bz2_BZ2Decompressor Modules/clinic/_bz2module.c.h /^_bz2_BZ2Decompressor(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +_bz2_BZ2Decompressor_decompress Modules/clinic/_bz2module.c.h /^_bz2_BZ2Decompressor_decompress(BZ2Decompressor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_bz2_BZ2Decompressor_decompress_impl Modules/_bz2module.c /^_bz2_BZ2Decompressor_decompress_impl(BZ2Decompressor *self, Py_buffer *data,$/;" f file: +_bz2_BZ2Decompressor_impl Modules/_bz2module.c /^_bz2_BZ2Decompressor_impl(PyTypeObject *type)$/;" f file: +_bz2_clear Modules/_bz2module.c /^_bz2_clear(PyObject *module)$/;" f file: +_bz2_exec Modules/_bz2module.c /^_bz2_exec(PyObject *module)$/;" f file: +_bz2_free Modules/_bz2module.c /^_bz2_free(void *module)$/;" f file: +_bz2_slots Modules/_bz2module.c /^static struct PyModuleDef_Slot _bz2_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +_bz2_state Modules/_bz2module.c /^} _bz2_state;$/;" t typeref:struct:__anon464 file: +_bz2_traverse Modules/_bz2module.c /^_bz2_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_bz2module Modules/_bz2module.c /^static struct PyModuleDef _bz2module = {$/;" v typeref:struct:PyModuleDef file: +_bz2module Modules/_bz2module.c /^static struct PyModuleDef _bz2module;$/;" v typeref:struct:PyModuleDef file: +_c Lib/types.py /^_c = _c()$/;" v +_c Lib/types.py /^async def _c(): pass$/;" f +_c PC/layout/main.py /^ def _c(d):$/;" f function:get_layout.in_build +_c PC/layout/main.py /^ def _c(f):$/;" f function:get_lib_layout +_c2py_ops Lib/gettext.py /^_c2py_ops = {'||': 'or', '&&': 'and', '\/': '\/\/'}$/;" v +_c32_qget_i64 Modules/_decimal/libmpdec/mpdecimal.c /^_c32_qget_i64(const mpd_t *a, uint32_t *status)$/;" f file: +_c32_qget_u64 Modules/_decimal/libmpdec/mpdecimal.c /^_c32_qget_u64(int use_sign, const mpd_t *a, uint32_t *status)$/;" f file: +_c32_qset_i64 Modules/_decimal/libmpdec/mpdecimal.c /^_c32_qset_i64(mpd_t *result, int64_t a, const mpd_context_t *ctx,$/;" f file: +_c32_qset_u64 Modules/_decimal/libmpdec/mpdecimal.c /^_c32_qset_u64(mpd_t *result, uint64_t a, const mpd_context_t *ctx,$/;" f file: +_c32setu64 Modules/_decimal/libmpdec/mpdecimal.c /^_c32setu64(mpd_t *result, uint64_t u, uint8_t sign, uint32_t *status)$/;" f file: +_c3_merge Lib/functools.py /^def _c3_merge(sequences):$/;" f +_c3_mro Lib/functools.py /^def _c3_mro(cls, abcs=None):$/;" f +_c_extensions Tools/c-analyzer/distutils/_msvccompiler.py /^ _c_extensions = ['.c']$/;" v class:MSVCCompiler +_c_extensions Tools/c-analyzer/distutils/bcppcompiler.py /^ _c_extensions = ['.c']$/;" v class:BCPPCompiler +_c_extensions Tools/c-analyzer/distutils/msvc9compiler.py /^ _c_extensions = ['.c']$/;" v class:MSVCCompiler +_c_extensions Tools/c-analyzer/distutils/msvccompiler.py /^ _c_extensions = ['.c']$/;" v class:MSVCCompiler +_c_functype_cache Lib/ctypes/__init__.py /^_c_functype_cache = {}$/;" v +_ca Lib/test/test_buffer.py /^def _ca(items, s):$/;" f +_cache Lib/encodings/__init__.py /^_cache = {}$/;" v +_cache Lib/filecmp.py /^_cache = {}$/;" v +_cache Lib/re/__init__.py /^_cache = {} # LRU$/;" v +_cache Lib/xml/etree/ElementPath.py /^_cache = {}$/;" v +_cache2 Lib/re/__init__.py /^_cache2 = {} # FIFO$/;" v +_cache_bytecode Lib/importlib/_bootstrap_external.py /^ def _cache_bytecode(self, source_path, bytecode_path, data):$/;" m class:SourceFileLoader +_cache_bytecode Lib/importlib/_bootstrap_external.py /^ def _cache_bytecode(self, source_path, cache_path, data):$/;" m class:SourceLoader +_cache_default_sysroot Lib/_osx_support.py /^_cache_default_sysroot = None$/;" v +_cache_format Lib/opcode.py /^_cache_format = {$/;" v +_cache_getFullVersion Mac/BuildScript/build-installer.py /^_cache_getFullVersion = None$/;" v +_cache_getVersion Mac/BuildScript/build-installer.py /^_cache_getVersion = None$/;" v +_cache_lock Lib/_strptime.py /^_cache_lock = _thread_allocate_lock()$/;" v +_caches Lib/typing.py /^_caches = {}$/;" v +_calc___package__ Lib/importlib/_bootstrap.py /^def _calc___package__(globals):$/;" f +_calc_errors Lib/test/test_statistics.py /^def _calc_errors(actual, expected):$/;" f +_calc_julian_from_U_or_W Lib/_strptime.py /^def _calc_julian_from_U_or_W(year, week_of_year, day_of_week, week_starts_Mon):$/;" f +_calc_mode Lib/importlib/_bootstrap_external.py /^def _calc_mode(path):$/;" f +_calc_size Lib/test/test_tarfile.py /^ def _calc_size(self, name, link=None):$/;" m class:GNUWriteTest +_calc_sys_path_for_underpth_nosite Lib/test/test_site.py /^ def _calc_sys_path_for_underpth_nosite(self, sys_prefix, lines):$/;" m class:_pthFileTests +_calculate_load Lib/test/libregrtest/win_utils.py /^ def _calculate_load(self,$/;" m class:WindowsLoadTracker +_calculate_meta Lib/types.py /^def _calculate_meta(meta, bases):$/;" f +_calculate_ratio Lib/difflib.py /^def _calculate_ratio(matches, length):$/;" f +_calculate_return_value Lib/unittest/mock.py /^_calculate_return_value = {$/;" v +_calculatedCacheProgress Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ DWORD _calculatedCacheProgress;$/;" m class:PythonBootstrapperApplication file: +_calculatedExecuteProgress Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ DWORD _calculatedExecuteProgress;$/;" m class:PythonBootstrapperApplication file: +_calibrate_inner Lib/profile.py /^ def _calibrate_inner(self, m, verbose):$/;" m class:Profile +_call Lib/asyncio/base_subprocess.py /^ def _call(self, cb, *data):$/;" m class:BaseSubprocessTransport +_call Lib/test/support/__init__.py /^ def _call(self, python, args, env, returncode):$/;" m class:PythonSymlink +_callAsync Lib/unittest/async_case.py /^ def _callAsync(self, func, \/, *args, **kwargs):$/;" m class:IsolatedAsyncioTestCase +_callCleanup Lib/unittest/async_case.py /^ def _callCleanup(self, function, *args, **kwargs):$/;" m class:IsolatedAsyncioTestCase +_callCleanup Lib/unittest/case.py /^ def _callCleanup(self, function, \/, *args, **kwargs):$/;" m class:TestCase +_callMaybeAsync Lib/unittest/async_case.py /^ def _callMaybeAsync(self, func, \/, *args, **kwargs):$/;" m class:IsolatedAsyncioTestCase +_callSetUp Lib/unittest/async_case.py /^ def _callSetUp(self):$/;" m class:IsolatedAsyncioTestCase +_callSetUp Lib/unittest/case.py /^ def _callSetUp(self):$/;" m class:TestCase +_callTearDown Lib/unittest/async_case.py /^ def _callTearDown(self):$/;" m class:IsolatedAsyncioTestCase +_callTearDown Lib/unittest/case.py /^ def _callTearDown(self):$/;" m class:TestCase +_callTestMethod Lib/unittest/async_case.py /^ def _callTestMethod(self, method):$/;" m class:IsolatedAsyncioTestCase +_callTestMethod Lib/unittest/case.py /^ def _callTestMethod(self, method):$/;" m class:TestCase +_call_chain Lib/urllib/request.py /^ def _call_chain(self, chain, kind, meth_name, *args):$/;" m class:OpenerDirector +_call_check_cancel Lib/asyncio/futures.py /^ def _call_check_cancel(destination):$/;" f function:_chain_future +_call_connection_lost Lib/asyncio/base_subprocess.py /^ def _call_connection_lost(self, exc):$/;" m class:BaseSubprocessTransport +_call_connection_lost Lib/asyncio/proactor_events.py /^ def _call_connection_lost(self, exc):$/;" m class:_ProactorBasePipeTransport +_call_connection_lost Lib/asyncio/selector_events.py /^ def _call_connection_lost(self, exc):$/;" m class:_SelectorSocketTransport +_call_connection_lost Lib/asyncio/selector_events.py /^ def _call_connection_lost(self, exc):$/;" m class:_SelectorTransport +_call_connection_lost Lib/asyncio/unix_events.py /^ def _call_connection_lost(self, exc):$/;" m class:_UnixReadPipeTransport +_call_connection_lost Lib/asyncio/unix_events.py /^ def _call_connection_lost(self, exc):$/;" m class:_UnixWritePipeTransport +_call_dialect Modules/_csv.c /^_call_dialect(_csvstate *module_state, PyObject *dialect_inst, PyObject *kwargs)$/;" f file: +_call_eof_received Lib/asyncio/sslproto.py /^ def _call_eof_received(self):$/;" m class:SSLProtocol +_call_function_pointer Modules/_ctypes/callproc.c /^static int _call_function_pointer(int flags,$/;" f file: +_call_if_exists Lib/unittest/suite.py /^def _call_if_exists(parent, attr):$/;" f +_call_in_interpreter Python/pystate.c /^_call_in_interpreter(PyInterpreterState *interp, releasefunc func, void *arg)$/;" f file: +_call_matcher Lib/unittest/mock.py /^ def _call_matcher(self, _call):$/;" m class:NonCallableMock +_call_new_python Lib/venv/__init__.py /^ def _call_new_python(self, context, *py_args, **kwargs):$/;" m class:EnvBuilder +_call_parse Lib/email/feedparser.py /^ def _call_parse(self):$/;" m class:FeedParser +_call_set_state Lib/asyncio/futures.py /^ def _call_set_state(source):$/;" f function:_chain_future +_call_soon Lib/asyncio/base_events.py /^ def _call_soon(self, callback, args, context):$/;" m class:BaseEventLoop +_call_stats Include/pystats.h /^typedef struct _call_stats {$/;" s +_call_user_data_handler Lib/xml/dom/minidom.py /^ def _call_user_data_handler(self, operation, src, dst):$/;" m class:Node +_call_with_frames_removed Lib/importlib/_bootstrap.py /^def _call_with_frames_removed(f, *args, **kwds):$/;" f +_callable Lib/unittest/mock.py /^def _callable(obj):$/;" f +_callable_postfix Lib/rlcompleter.py /^ def _callable_postfix(self, val, word):$/;" m class:Completer +_callback_context Modules/_sqlite/connection.h /^typedef struct _callback_context$/;" s +_callback_spy Lib/test/test_threading.py /^ def _callback_spy(self, *args, **kwargs):$/;" m class:TimerTests +_caller Lib/typing.py /^def _caller(depth=1, default='__main__'):$/;" f +_callmethod Lib/multiprocessing/managers.py /^ def _callmethod(self, methodname, args=(), kwds={}):$/;" m class:BaseProxy +_calls_repr Lib/unittest/mock.py /^ def _calls_repr(self, prefix="Calls"):$/;" m class:NonCallableMock +_calltip_window Lib/idlelib/calltip_w.py /^def _calltip_window(parent): # htest #$/;" f +_calltip_window_spec Lib/idlelib/idle_test/htest.py /^_calltip_window_spec = {$/;" v +_can_chmod Lib/test/support/os_helper.py /^_can_chmod = None$/;" v +_can_dac_override Lib/test/support/os_helper.py /^_can_dac_override = None$/;" v +_can_fork_exec Lib/subprocess.py /^_can_fork_exec = sys.platform not in {"emscripten", "wasi"}$/;" v +_can_read_reg Tools/c-analyzer/distutils/msvccompiler.py /^ _can_read_reg = True$/;" v +_can_read_reg Tools/c-analyzer/distutils/msvccompiler.py /^ _can_read_reg = True$/;" v +_can_read_reg Tools/c-analyzer/distutils/msvccompiler.py /^_can_read_reg = False$/;" v +_can_start_thread Lib/test/support/threading_helper.py /^def _can_start_thread() -> bool:$/;" f +_can_symlink Lib/test/support/os_helper.py /^_can_symlink = None$/;" v +_can_use Lib/selectors.py /^def _can_use(method):$/;" f +_can_xattr Lib/test/support/os_helper.py /^_can_xattr = None$/;" v +_cancel_all_tasks Lib/asyncio/runners.py /^def _cancel_all_tasks(loop):$/;" f +_cancel_and_wait Lib/asyncio/tasks.py /^async def _cancel_and_wait(fut):$/;" f +_cancel_message Lib/asyncio/futures.py /^ _cancel_message = None$/;" v class:Future +_cancel_overlapped Lib/asyncio/windows_events.py /^ def _cancel_overlapped(self):$/;" m class:_OverlappedFuture +_cancelled_exc Lib/asyncio/futures.py /^ _cancelled_exc = None$/;" v class:Future +_candidate_tempdir_list Lib/tempfile.py /^def _candidate_tempdir_list():$/;" f +_canresize Objects/bytearrayobject.c /^_canresize(PyByteArrayObject *self)$/;" f file: +_canvas Lib/turtle.py /^ _canvas = None$/;" v class:_Screen +_capability_names Lib/curses/has_key.py /^_capability_names = {$/;" v +_captured_script Lib/test/test__xxsubinterpreters.py /^def _captured_script(script):$/;" f +_captured_script Lib/test/test_interpreters.py /^def _captured_script(script):$/;" f +_cast Lib/ctypes/__init__.py /^_cast = PYFUNCTYPE(py_object, c_void_p, py_object, py_object)(_cast_addr)$/;" v +_cause_message Lib/traceback.py /^_cause_message = ($/;" v +_cb Lib/weakref.py /^ def _cb(arg):$/;" f function:WeakMethod.__new__ +_cc Lib/turtle.py /^ def _cc(self, args):$/;" m class:RawTurtle +_cell_factory Lib/types.py /^def _cell_factory():$/;" f +_cells Lib/test/test_builtin.py /^ _cells = {}$/;" v class:BuiltinTest.test_general_eval.SpreadSheet +_certificate_to_der Modules/_ssl.c /^_certificate_to_der(_sslmodulestate *state, X509 *certificate)$/;" f file: +_ceval_runtime_state Include/internal/pycore_ceval_state.h /^struct _ceval_runtime_state {$/;" s +_ceval_state Include/internal/pycore_ceval_state.h /^struct _ceval_state {$/;" s +_chain_from_iterable_of_lists Lib/concurrent/futures/process.py /^def _chain_from_iterable_of_lists(iterable):$/;" f +_chain_future Lib/asyncio/futures.py /^def _chain_future(source, destination):$/;" f +_change_start Lib/idlelib/autocomplete_w.py /^ def _change_start(self, newstart):$/;" m class:AutoCompleteWindow +_channel Modules/_xxinterpchannelsmodule.c /^typedef struct _channel {$/;" s file: +_channel_add Modules/_xxinterpchannelsmodule.c /^_channel_add(_PyChannelState *chan, int64_t interp,$/;" f file: +_channel_clear_closing Modules/_xxinterpchannelsmodule.c /^_channel_clear_closing(struct _channel *chan) {$/;" f file: +_channel_close Modules/_xxinterpchannelsmodule.c /^_channel_close(_channels *channels, int64_t id, int end, int force)$/;" f file: +_channel_close_all Modules/_xxinterpchannelsmodule.c /^_channel_close_all(_PyChannelState *chan, int end, int force)$/;" f file: +_channel_close_interpreter Modules/_xxinterpchannelsmodule.c /^_channel_close_interpreter(_PyChannelState *chan, int64_t interp, int end)$/;" f file: +_channel_closing Modules/_xxinterpchannelsmodule.c /^struct _channel_closing {$/;" s file: +_channel_create Modules/_xxinterpchannelsmodule.c /^_channel_create(_channels *channels)$/;" f file: +_channel_destroy Modules/_xxinterpchannelsmodule.c /^_channel_destroy(_channels *channels, int64_t id)$/;" f file: +_channel_drop Modules/_xxinterpchannelsmodule.c /^_channel_drop(_channels *channels, int64_t id, int send, int recv)$/;" f file: +_channel_drop_interpreter Modules/_xxinterpchannelsmodule.c /^_channel_drop_interpreter(_PyChannelState *chan, int64_t interp)$/;" f file: +_channel_finish_closing Modules/_xxinterpchannelsmodule.c /^_channel_finish_closing(struct _channel *chan) {$/;" f file: +_channel_free Modules/_xxinterpchannelsmodule.c /^_channel_free(_PyChannelState *chan)$/;" f file: +_channel_from_cid Modules/_xxinterpchannelsmodule.c /^_channel_from_cid(PyObject *cid, int end)$/;" f file: +_channel_is_associated Modules/_xxinterpchannelsmodule.c /^_channel_is_associated(_channels *channels, int64_t cid, int64_t interp,$/;" f file: +_channel_new Modules/_xxinterpchannelsmodule.c /^_channel_new(PyThread_type_lock mutex)$/;" f file: +_channel_next Modules/_xxinterpchannelsmodule.c /^_channel_next(_PyChannelState *chan, int64_t interp,$/;" f file: +_channel_recv Modules/_xxinterpchannelsmodule.c /^_channel_recv(_channels *channels, int64_t id, PyObject **res)$/;" f file: +_channel_send Modules/_xxinterpchannelsmodule.c /^_channel_send(_channels *channels, int64_t id, PyObject *obj)$/;" f file: +_channel_set_closing Modules/_xxinterpchannelsmodule.c /^_channel_set_closing(struct _channelref *ref, PyThread_type_lock mutex) {$/;" f file: +_channelassociations Modules/_xxinterpchannelsmodule.c /^typedef struct _channelassociations {$/;" s file: +_channelend Modules/_xxinterpchannelsmodule.c /^typedef struct _channelend {$/;" s file: +_channelend Modules/_xxinterpchannelsmodule.c /^} _channelend;$/;" t typeref:struct:_channelend file: +_channelend_find Modules/_xxinterpchannelsmodule.c /^_channelend_find(_channelend *first, int64_t interp, _channelend **pprev)$/;" f file: +_channelend_free Modules/_xxinterpchannelsmodule.c /^_channelend_free(_channelend *end)$/;" f file: +_channelend_free_all Modules/_xxinterpchannelsmodule.c /^_channelend_free_all(_channelend *end)$/;" f file: +_channelend_new Modules/_xxinterpchannelsmodule.c /^_channelend_new(int64_t interp)$/;" f file: +_channelends Modules/_xxinterpchannelsmodule.c /^} _channelends;$/;" t typeref:struct:_channelassociations file: +_channelends_add Modules/_xxinterpchannelsmodule.c /^_channelends_add(_channelends *ends, _channelend *prev, int64_t interp,$/;" f file: +_channelends_associate Modules/_xxinterpchannelsmodule.c /^_channelends_associate(_channelends *ends, int64_t interp, int send)$/;" f file: +_channelends_clear Modules/_xxinterpchannelsmodule.c /^_channelends_clear(_channelends *ends)$/;" f file: +_channelends_close_all Modules/_xxinterpchannelsmodule.c /^_channelends_close_all(_channelends *ends, int which, int force)$/;" f file: +_channelends_close_end Modules/_xxinterpchannelsmodule.c /^_channelends_close_end(_channelends *ends, _channelend *end, int send)$/;" f file: +_channelends_close_interpreter Modules/_xxinterpchannelsmodule.c /^_channelends_close_interpreter(_channelends *ends, int64_t interp, int which)$/;" f file: +_channelends_drop_interpreter Modules/_xxinterpchannelsmodule.c /^_channelends_drop_interpreter(_channelends *ends, int64_t interp)$/;" f file: +_channelends_free Modules/_xxinterpchannelsmodule.c /^_channelends_free(_channelends *ends)$/;" f file: +_channelends_is_open Modules/_xxinterpchannelsmodule.c /^_channelends_is_open(_channelends *ends)$/;" f file: +_channelends_new Modules/_xxinterpchannelsmodule.c /^_channelends_new(void)$/;" f file: +_channelid_end_recv Modules/_xxinterpchannelsmodule.c /^static int _channelid_end_recv = CHANNEL_RECV;$/;" v file: +_channelid_end_send Modules/_xxinterpchannelsmodule.c /^static int _channelid_end_send = CHANNEL_SEND;$/;" v file: +_channelid_from_xid Modules/_xxinterpchannelsmodule.c /^_channelid_from_xid(_PyCrossInterpreterData *data)$/;" f file: +_channelid_new Modules/_xxinterpchannelsmodule.c /^_channelid_new(PyObject *mod, PyTypeObject *cls,$/;" f file: +_channelid_shared Modules/_xxinterpchannelsmodule.c /^_channelid_shared(PyThreadState *tstate, PyObject *obj,$/;" f file: +_channelid_xid Modules/_xxinterpchannelsmodule.c /^struct _channelid_xid {$/;" s file: +_channelitem Modules/_xxinterpchannelsmodule.c /^typedef struct _channelitem {$/;" s file: +_channelitem Modules/_xxinterpchannelsmodule.c /^} _channelitem;$/;" t typeref:struct:_channelitem file: +_channelitem_clear Modules/_xxinterpchannelsmodule.c /^_channelitem_clear(_channelitem *item)$/;" f file: +_channelitem_free Modules/_xxinterpchannelsmodule.c /^_channelitem_free(_channelitem *item)$/;" f file: +_channelitem_free_all Modules/_xxinterpchannelsmodule.c /^_channelitem_free_all(_channelitem *item)$/;" f file: +_channelitem_new Modules/_xxinterpchannelsmodule.c /^_channelitem_new(void)$/;" f file: +_channelitem_popped Modules/_xxinterpchannelsmodule.c /^_channelitem_popped(_channelitem *item)$/;" f file: +_channelqueue Modules/_xxinterpchannelsmodule.c /^typedef struct _channelqueue {$/;" s file: +_channelqueue Modules/_xxinterpchannelsmodule.c /^} _channelqueue;$/;" t typeref:struct:_channelqueue file: +_channelqueue_clear Modules/_xxinterpchannelsmodule.c /^_channelqueue_clear(_channelqueue *queue)$/;" f file: +_channelqueue_drop_interpreter Modules/_xxinterpchannelsmodule.c /^_channelqueue_drop_interpreter(_channelqueue *queue, int64_t interp)$/;" f file: +_channelqueue_free Modules/_xxinterpchannelsmodule.c /^_channelqueue_free(_channelqueue *queue)$/;" f file: +_channelqueue_get Modules/_xxinterpchannelsmodule.c /^_channelqueue_get(_channelqueue *queue)$/;" f file: +_channelqueue_new Modules/_xxinterpchannelsmodule.c /^_channelqueue_new(void)$/;" f file: +_channelqueue_put Modules/_xxinterpchannelsmodule.c /^_channelqueue_put(_channelqueue *queue, _PyCrossInterpreterData *data)$/;" f file: +_channelref Modules/_xxinterpchannelsmodule.c /^typedef struct _channelref {$/;" s file: +_channelref Modules/_xxinterpchannelsmodule.c /^} _channelref;$/;" t typeref:struct:_channelref file: +_channelref_find Modules/_xxinterpchannelsmodule.c /^_channelref_find(_channelref *first, int64_t id, _channelref **pprev)$/;" f file: +_channelref_free Modules/_xxinterpchannelsmodule.c /^_channelref_free(_channelref *ref)$/;" f file: +_channelref_new Modules/_xxinterpchannelsmodule.c /^_channelref_new(int64_t id, _PyChannelState *chan)$/;" f file: +_channels Lib/test/test_interpreters.py /^_channels = import_helper.import_module('_xxinterpchannels')$/;" v +_channels Modules/_xxinterpchannelsmodule.c /^typedef struct _channels {$/;" s file: +_channels Modules/_xxinterpchannelsmodule.c /^} _channels;$/;" t typeref:struct:_channels file: +_channels_add Modules/_xxinterpchannelsmodule.c /^_channels_add(_channels *channels, _PyChannelState *chan)$/;" f file: +_channels_add_id_object Modules/_xxinterpchannelsmodule.c /^_channels_add_id_object(_channels *channels, int64_t id)$/;" f file: +_channels_close Modules/_xxinterpchannelsmodule.c /^_channels_close(_channels *channels, int64_t cid, _PyChannelState **pchan,$/;" f file: +_channels_drop_id_object Modules/_xxinterpchannelsmodule.c /^_channels_drop_id_object(_channels *channels, int64_t id)$/;" f file: +_channels_drop_interpreter Modules/_xxinterpchannelsmodule.c /^_channels_drop_interpreter(_channels *channels, int64_t interp)$/;" f file: +_channels_fini Modules/_xxinterpchannelsmodule.c /^_channels_fini(_channels *channels)$/;" f file: +_channels_init Modules/_xxinterpchannelsmodule.c /^_channels_init(_channels *channels, PyThread_type_lock mutex)$/;" f file: +_channels_list_all Modules/_xxinterpchannelsmodule.c /^_channels_list_all(_channels *channels, int64_t *count)$/;" f file: +_channels_lookup Modules/_xxinterpchannelsmodule.c /^_channels_lookup(_channels *channels, int64_t id, PyThread_type_lock *pmutex,$/;" f file: +_channels_next_id Modules/_xxinterpchannelsmodule.c /^_channels_next_id(_channels *channels) \/\/ needs lock$/;" f file: +_channels_remove Modules/_xxinterpchannelsmodule.c /^_channels_remove(_channels *channels, int64_t id, _PyChannelState **pchan)$/;" f file: +_channels_remove_ref Modules/_xxinterpchannelsmodule.c /^_channels_remove_ref(_channels *channels, _channelref *ref, _channelref *prev,$/;" f file: +_charref Lib/html/__init__.py /^_charref = _re.compile(r'&(#[0-9]+;?'$/;" v +_chdir Lib/test/test_shutil.py /^ def _chdir(path):$/;" f function:TestArchives.test_make_archive_cwd +_check Lib/tarfile.py /^ def _check(self, mode=None):$/;" m class:TarFile +_check Lib/tempfile.py /^ def _check(self, file):$/;" m class:SpooledTemporaryFile +_check Lib/test/test_io.py /^ def _check(dec):$/;" f function:IncrementalNewlineDecoderTest.test_newline_bytes +_check Lib/test/test_lib2to3/test_fixers.py /^ def _check(self, before, after):$/;" m class:FixerTestCase +_check Lib/test/test_pathlib.py /^ def _check(glob, expected):$/;" f function:_BasePathTest.test_glob_common +_check Lib/test/test_pathlib.py /^ def _check(glob, expected):$/;" f function:_BasePathTest.test_rglob_common +_check Lib/test/test_pathlib.py /^ def _check(path, pattern, case_sensitive, expected):$/;" f function:_BasePathTest.test_glob_case_sensitive +_check Lib/test/test_unittest/testmock/testmock.py /^ def _check(mock):$/;" f function:MockTest.test_assert_called_with_method_spec +_checkBufferSize Lib/test/test_file.py /^ def _checkBufferSize(self, s):$/;" m class:OtherFileTests +_checkClosed Lib/_pyio.py /^ def _checkClosed(self, msg=None):$/;" m class:IOBase +_checkClosed Lib/ssl.py /^ def _checkClosed(self, msg=None):$/;" m class:SSLSocket +_checkLevel Lib/logging/__init__.py /^def _checkLevel(level):$/;" f +_checkReadable Lib/_pyio.py /^ def _checkReadable(self):$/;" m class:FileIO +_checkReadable Lib/_pyio.py /^ def _checkReadable(self, msg=None):$/;" m class:IOBase +_checkSeekable Lib/_pyio.py /^ def _checkSeekable(self, msg=None):$/;" m class:IOBase +_checkWritable Lib/_pyio.py /^ def _checkWritable(self, msg=None):$/;" m class:FileIO +_checkWritable Lib/_pyio.py /^ def _checkWritable(self, msg=None):$/;" m class:IOBase +_check_abc_inheritance Lib/test/test_io.py /^ def _check_abc_inheritance(self, abcmodule):$/;" m class:MiscIOTest +_check_action Lib/optparse.py /^ def _check_action(self):$/;" m class:Option +_check_alias_and_seq Modules/unicodedata.c /^_check_alias_and_seq(unsigned int cp, Py_UCS4* code, int with_named_seq)$/;" f file: +_check_alive Lib/multiprocessing/resource_tracker.py /^ def _check_alive(self):$/;" m class:ResourceTracker +_check_allowed Lib/test/test_threading.py /^ def _check_allowed(self, before_start='', *,$/;" m class:SubinterpThreadingTests +_check_and_set_parent Lib/unittest/mock.py /^def _check_and_set_parent(parent, value, name, new_name):$/;" f +_check_approx_num Lib/test/test_statistics.py /^ def _check_approx_num(self, first, second, tol, rel, msg, idx=None):$/;" m class:NumericTestCase +_check_approx_seq Lib/test/test_statistics.py /^ def _check_approx_seq(self, first, second, tol, rel, msg):$/;" m class:NumericTestCase +_check_arg_types Lib/genericpath.py /^def _check_arg_types(funcname, *args):$/;" f +_check_arguments Lib/test/test_ast.py /^ def _check_arguments(self, fac, check):$/;" m class:ASTValidatorTests +_check_art_dict Lib/test/test_nntplib.py /^ def _check_art_dict(self, art_dict):$/;" m class:NetworkedNNTPTestsMixin +_check_article_body Lib/test/test_nntplib.py /^ def _check_article_body(self, lines):$/;" m class:NNTPv1v2TestsMixin +_check_article_data Lib/test/test_nntplib.py /^ def _check_article_data(self, lines):$/;" m class:NNTPv1v2TestsMixin +_check_article_head Lib/test/test_nntplib.py /^ def _check_article_head(self, lines):$/;" m class:NNTPv1v2TestsMixin +_check_async_iterator_anext Lib/test/test_asyncgen.py /^ def _check_async_iterator_anext(self, ait_class, anext):$/;" m class:AsyncGenAsyncioTest +_check_available Lib/multiprocessing/context.py /^ def _check_available(self):$/;" m class:.ForkServerContext +_check_available Lib/multiprocessing/context.py /^ def _check_available(self):$/;" m class:BaseContext +_check_base_destructor Lib/test/test_io.py /^ def _check_base_destructor(self, base):$/;" m class:IOTest +_check_basics Lib/test/test_mailbox.py /^ def _check_basics(self, factory=None):$/;" m class:TestMaildir +_check_bracketed_host Lib/urllib/parse.py /^def _check_bracketed_host(hostname):$/;" f +_check_build Lib/test/test_cppext/__init__.py /^ def _check_build(self, std_cpp03, extension_name, python_exe):$/;" m class:TestCPPExt +_check_bye Lib/imaplib.py /^ def _check_bye(self):$/;" m class:IMAP4 +_check_bytes Lib/os.py /^ def _check_bytes(value):$/;" f function:getenv +_check_c_locale_coercion Lib/test/test_c_locale_coercion.py /^ def _check_c_locale_coercion(self,$/;" m class:LocaleCoercionTests +_check_call Lib/test/test_positional_only_arg.py /^ def _check_call(*args, **kwargs):$/;" f function:PositionalOnlyTestCase.test_async +_check_call_order__subtests Lib/test/test_unittest/test_case.py /^ def _check_call_order__subtests(self, result, events, expected_events):$/;" m class:Test_TestCase +_check_call_order__subtests_success Lib/test/test_unittest/test_case.py /^ def _check_call_order__subtests_success(self, result, events, expected_events):$/;" m class:Test_TestCase +_check_callback Lib/asyncio/base_events.py /^ def _check_callback(self, callback, method):$/;" m class:BaseEventLoop +_check_callback Lib/optparse.py /^ def _check_callback(self):$/;" m class:Option +_check_can_read Lib/_compression.py /^ def _check_can_read(self):$/;" m class:BaseStream +_check_can_seek Lib/_compression.py /^ def _check_can_seek(self):$/;" m class:BaseStream +_check_can_write Lib/_compression.py /^ def _check_can_write(self):$/;" m class:BaseStream +_check_caps Lib/test/test_nntplib.py /^ def _check_caps(caps):$/;" f function:NetworkedNNTPTestsMixin.test_capabilities +_check_child_encoding_details Lib/test/test_c_locale_coercion.py /^ def _check_child_encoding_details(self,$/;" m class:_LocaleHandlingTestCase +_check_choice Lib/optparse.py /^ def _check_choice(self):$/;" m class:Option +_check_class Lib/inspect.py /^def _check_class(klass, attr):$/;" f +_check_clean_src Tools/wasm/wasm_build.py /^def _check_clean_src():$/;" f +_check_close Lib/http/client.py /^ def _check_close(self):$/;" m class:HTTPResponse +_check_closed Lib/asyncio/base_events.py /^ def _check_closed(self):$/;" m class:BaseEventLoop +_check_closed Lib/asyncio/windows_events.py /^ def _check_closed(self):$/;" m class:IocpProactor +_check_closed Lib/multiprocessing/connection.py /^ def _check_closed(self):$/;" m class:_ConnectionBase +_check_closed Lib/multiprocessing/process.py /^ def _check_closed(self):$/;" m class:BaseProcess +_check_complex_symlinks Lib/test/test_pathlib.py /^ def _check_complex_symlinks(self, link0_target):$/;" m class:_BasePathTest +_check_comprehension Lib/test/test_ast.py /^ def _check_comprehension(self, fac):$/;" m class:ASTValidatorTests +_check_compression Lib/zipfile/__init__.py /^def _check_compression(compression):$/;" f +_check_conflict Lib/argparse.py /^ def _check_conflict(self, action):$/;" m class:_ActionsContainer +_check_conflict Lib/optparse.py /^ def _check_conflict(self, option):$/;" m class:OptionContainer +_check_connected Lib/ssl.py /^ def _check_connected(self):$/;" m class:SSLSocket +_check_const Lib/optparse.py /^ def _check_const(self):$/;" m class:Option +_check_content Lib/test/test_ast.py /^ def _check_content(self, source, ast_node, content):$/;" m class:EndPositionTests +_check_contents Lib/test/test_memoryview.py /^ def _check_contents(self, tp, obj, contents):$/;" m class:BaseMemorySliceSliceTests +_check_contents Lib/test/test_memoryview.py /^ def _check_contents(self, tp, obj, contents):$/;" m class:BaseMemorySliceTests +_check_contents Lib/test/test_memoryview.py /^ def _check_contents(self, tp, obj, contents):$/;" m class:BaseMemoryviewTests +_check_context Lib/test/_test_multiprocessing.py /^ def _check_context(cls, conn):$/;" m class:TestStartMethod +_check_copy_weakdict Lib/test/test_copy.py /^ def _check_copy_weakdict(self, _dicttype):$/;" m class:TestCopy +_check_crash Lib/test/test_concurrent_futures/test_deadlock.py /^ def _check_crash(self, error, func, *args, ignore_stderr=False):$/;" m class:ExecutorDeadlockTest +_check_create_at_shutdown Lib/test/test_io.py /^ def _check_create_at_shutdown(self, **kwargs):$/;" m class:TextIOWrapperTest +_check_date_fields Lib/_pydatetime.py /^def _check_date_fields(year, month, day):$/;" f +_check_decode Lib/test/test_io.py /^ def _check_decode(b, s, **kwargs):$/;" f function:IncrementalNewlineDecoderTest.check_newline_decoding_utf8 +_check_default_executor Lib/asyncio/base_events.py /^ def _check_default_executor(self):$/;" m class:BaseEventLoop +_check_defaults Lib/test/test_socket.py /^ def _check_defaults(self, sock):$/;" m class:BasicSocketPairTest +_check_desc Lib/test/test_nntplib.py /^ def _check_desc(desc):$/;" f function:NetworkedNNTPTestsMixin.test_description +_check_dest Lib/optparse.py /^ def _check_dest(self):$/;" m class:Option +_check_dirW Modules/posixmodule.c /^_check_dirW(LPCWSTR src, LPCWSTR dest)$/;" f file: +_check_disallowed_subtype_raises Lib/test/test_email/test_message.py /^ def _check_disallowed_subtype_raises(self, m, method_name, subtype, method):$/;" m class:TestEmailMessageBase +_check_docstrings Lib/test/support/__init__.py /^def _check_docstrings():$/;" f +_check_drive_root_parts Lib/test/test_pathlib.py /^ def _check_drive_root_parts(self, arg, *expected):$/;" m class:_BasePurePathTest +_check_duration Lib/test/test_optparse.py /^def _check_duration(option, opt, value):$/;" f +_check_element_factory_class Lib/test/test_xml_etree.py /^ def _check_element_factory_class(self, cls):$/;" m class:TreeBuilderTest +_check_emscripten Tools/wasm/wasm_build.py /^def _check_emscripten():$/;" f +_check_end_pos Lib/test/test_ast.py /^ def _check_end_pos(self, ast_node, end_lineno, end_col_offset):$/;" m class:EndPositionTests +_check_error Lib/test/test_syntax.py /^ def _check_error(self, code, errtext,$/;" m class:SyntaxTestCase +_check_execute Tools/wasm/wasm_build.py /^ def _check_execute(self):$/;" m class:BuildProfile +_check_file Tools/build/check_extension_modules.py /^ def _check_file(self, modinfo: ModuleInfo, spec: ModuleSpec):$/;" m class:ModuleChecker +_check_file Tools/c-analyzer/c_common/fsutil.py /^def _check_file(filename, check):$/;" f +_check_for_early_dl_end Lib/email/_header_value_parser.py /^def _check_for_early_dl_end(value, domain_literal):$/;" f +_check_for_errors Tools/peg_generator/pegen/c_generator.py /^ def _check_for_errors(self) -> None:$/;" m class:CParserGenerator +_check_for_existing_members_ Lib/enum.py /^ def _check_for_existing_members_(mcls, class_name, bases):$/;" m class:EnumType +_check_for_unavailable_sdk Lib/_osx_support.py /^def _check_for_unavailable_sdk(_config_vars):$/;" f +_check_from Lib/test/test_mailbox.py /^ def _check_from(self, msg, sender=None):$/;" m class:_TestMboxMMDFMessage +_check_function Lib/test/test_ntpath.py /^ def _check_function(self, func):$/;" m class:PathLikeTests +_check_generator_cleanup_exc_state Lib/test/test_exceptions.py /^ def _check_generator_cleanup_exc_state(self, testfunc):$/;" m class:ExceptionTests +_check_generic Lib/typing.py /^def _check_generic(cls, parameters, elen):$/;" f +_check_handshake_timeout Lib/asyncio/sslproto.py /^ def _check_handshake_timeout(self):$/;" m class:SSLProtocol +_check_import_error Lib/test/test_cmd_line_script.py /^ def _check_import_error(self, script_exec_args, expected_msg,$/;" m class:CmdLineTest +_check_import_error Lib/test/test_runpy.py /^ def _check_import_error(self, script_name, msg):$/;" m class:RunPathTestCase +_check_in_scopes Lib/test/test_listcomps.py /^ def _check_in_scopes(self, code, outputs=None, ns=None, scopes=None, raises=()):$/;" m class:ListComprehensionTest +_check_instance Lib/inspect.py /^def _check_instance(obj, attr):$/;" f +_check_int_address Lib/ipaddress.py /^ def _check_int_address(self, address):$/;" m class:_IPAddressBase +_check_io_encoding Lib/test/test_utf8_mode.py /^ def _check_io_encoding(self, module, encoding=None, errors=None):$/;" m class:UTF8ModeTests +_check_ioctl_mutate_len Lib/test/test_ioctl.py /^ def _check_ioctl_mutate_len(self, nbytes=None):$/;" m class:IoctlTests +_check_iteration Lib/test/test_mailbox.py /^ def _check_iteration(self, method, do_keys, do_values, repetitions=10):$/;" m class:TestMailbox +_check_iterator Lib/test/test_struct.py /^ def _check_iterator(it):$/;" f function:UnpackIteratorTest.test_construct +_check_long_mult_overflow Modules/mathmodule.c /^_check_long_mult_overflow(long a, long b) {$/;" f file: +_check_macro_definitions Tools/c-analyzer/distutils/ccompiler.py /^ def _check_macro_definitions(self, definitions):$/;" m class:CCompiler +_check_make_multipart Lib/test/test_email/test_message.py /^ def _check_make_multipart(self, m, msg_headers, payload):$/;" m class:TestEmailMessageBase +_check_members Tools/c-analyzer/cpython/_analyzer.py /^def _check_members(decl, typedeps, types, knowntypes):$/;" f +_check_method Lib/lib2to3/fixes/fix_operator.py /^ def _check_method(self, node, results):$/;" m class:FixOperator +_check_methods Lib/_collections_abc.py /^def _check_methods(C, *methods):$/;" f +_check_mode Tools/c-analyzer/c_common/fsutil.py /^def _check_mode(st, mode, check, user):$/;" f +_check_module Lib/test/test_runpy.py /^ def _check_module(self, depth, alter_sys=False,$/;" m class:RunModuleTestCase +_check_move_dir Lib/test/test_shutil.py /^ def _check_move_dir(self, src, dst, real_dst):$/;" m class:TestMove +_check_move_file Lib/test/test_shutil.py /^ def _check_move_file(self, src, dst, real_dst):$/;" m class:TestMove +_check_multiple_unpicklings Lib/test/pickletester.py /^ def _check_multiple_unpicklings(self, ioclass, *, seekable=True):$/;" m class:AbstractPicklerUnpicklerObjectTests +_check_name Lib/importlib/_bootstrap_external.py /^def _check_name(method):$/;" f +_check_name_wrapper Lib/importlib/_bootstrap_external.py /^ def _check_name_wrapper(self, name=None, *args, **kwargs):$/;" f function:_check_name +_check_nans Lib/_pydecimal.py /^ def _check_nans(self, other=None, context=None):$/;" m class:Decimal +_check_nargs Lib/optparse.py /^ def _check_nargs(self):$/;" m class:Option +_check_native Tools/wasm/wasm_build.py /^def _check_native():$/;" f +_check_newline Lib/_pyio.py /^ def _check_newline(self, newline):$/;" m class:TextIOWrapper +_check_nl_langinfo_CODESET Lib/test/test_c_locale_coercion.py /^_check_nl_langinfo_CODESET = bool($/;" v +_check_not_closed Lib/_compression.py /^ def _check_not_closed(self):$/;" m class:BaseStream +_check_not_importing_main Lib/multiprocessing/spawn.py /^def _check_not_importing_main():$/;" f +_check_notify Lib/test/lock_tests.py /^ def _check_notify(self, cond):$/;" m class:ConditionTests +_check_notify Lib/test/lock_tests.py /^ def _check_notify(self, evt):$/;" m class:EventTests +_check_opt_strings Lib/optparse.py /^ def _check_opt_strings(self, opts):$/;" m class:Option +_check_outarg_type Modules/_ctypes/_ctypes.c /^_check_outarg_type(PyObject *arg, Py_ssize_t index)$/;" f file: +_check_output Lib/test/test_cmd_line_script.py /^ def _check_output(self, script_name, exit_code, data,$/;" m class:CmdLineTest +_check_output Lib/test/test_multiprocessing_main_handling.py /^ def _check_output(self, script_name, exit_code, out, err):$/;" m class:MultiProcessingCmdLineMixin +_check_output_of_default_create Lib/test/test_venv.py /^ def _check_output_of_default_create(self):$/;" m class:BasicTest +_check_package Lib/test/test_runpy.py /^ def _check_package(self, depth, alter_sys=False,$/;" m class:RunModuleTestCase +_check_packed_address Lib/ipaddress.py /^ def _check_packed_address(self, address, expected_len):$/;" m class:_IPAddressBase +_check_path_limitations Lib/test/test_reprlib.py /^ def _check_path_limitations(self, module_name):$/;" m class:LongReprTest +_check_pickling_with_opcode Lib/test/pickletester.py /^ def _check_pickling_with_opcode(self, obj, opcode, proto):$/;" m class:AbstractPickleTests +_check_post_ihave_sub Lib/test/test_nntplib.py /^ def _check_post_ihave_sub(self, func, *args, file_factory):$/;" m class:NNTPv1v2TestsMixin +_check_posted_body Lib/test/test_nntplib.py /^ def _check_posted_body(self):$/;" m class:NNTPv1v2TestsMixin +_check_prefix Lib/doctest.py /^ def _check_prefix(self, lines, prefix, name, lineno):$/;" m class:DocTestParser +_check_proc Lib/asyncio/base_subprocess.py /^ def _check_proc(self):$/;" m class:BaseSubprocessTransport +_check_prompt_blank Lib/doctest.py /^ def _check_prompt_blank(self, lines, indent, name, lineno):$/;" m class:DocTestParser +_check_readable Lib/multiprocessing/connection.py /^ def _check_readable(self):$/;" m class:_ConnectionBase +_check_recursive_traceback_display Lib/test/test_traceback.py /^ def _check_recursive_traceback_display(self, render_exc):$/;" m class:TracebackFormatTests +_check_reduce Lib/test/test_descr.py /^ def _check_reduce(self, proto, obj, args=(), kwargs={}, state=None,$/;" m class:PicklingTests +_check_registration Lib/test/test_webbrowser.py /^ def _check_registration(self, preferred):$/;" m class:BrowserRegistrationTest +_check_relative_imports Lib/test/test_runpy.py /^ def _check_relative_imports(self, depth, run_name=None):$/;" m class:RunModuleTestCase +_check_released Lib/test/test_memoryview.py /^ def _check_released(self, m, tp):$/;" m class:AbstractMemoryTests +_check_resolve Lib/test/test_pathlib.py /^ def _check_resolve(self, p, expected, strict=True):$/;" m class:_BasePathTest +_check_result_type Lib/test/test_urlparse.py /^ def _check_result_type(self, str_type):$/;" m class:UrlParseTestCase +_check_return_correct_type Lib/test/pickletester.py /^ def _check_return_correct_type(self, obj, proto):$/;" m class:AbstractIdentityPersistentPicklerTests +_check_retval_ Lib/ctypes/__init__.py /^ _check_retval_ = _check_HRESULT$/;" v class:.HRESULT +_check_retval_ Lib/test/test_ctypes/test_checkretval.py /^ _check_retval_ = staticmethod(_check_retval_)$/;" v class:CHECKED +_check_retval_ Lib/test/test_ctypes/test_checkretval.py /^ def _check_retval_(value):$/;" m class:CHECKED +_check_rounding Lib/test/test_time.py /^ def _check_rounding(self, pytime_converter, expected_func,$/;" m class:CPyTimeTestCase +_check_rows Lib/test/test_sqlite3/test_transactions.py /^ def _check_rows(self):$/;" m class:RollbackTests +_check_running Lib/asyncio/base_events.py /^ def _check_running(self):$/;" m class:BaseEventLoop +_check_running Lib/multiprocessing/pool.py /^ def _check_running(self):$/;" m class:Pool +_check_sample Lib/test/test_mailbox.py /^ def _check_sample(self, msg):$/;" m class:TestBase +_check_sample1_element Lib/test/test_xml_etree.py /^ def _check_sample1_element(self, e):$/;" m class:TreeBuilderTest +_check_sample_element Lib/test/test_xml_etree.py /^ def _check_sample_element(self, e):$/;" m class:XMLParserTest +_check_script Lib/test/test_cmd_line_script.py /^ def _check_script(self, script_exec_args, expected_file,$/;" m class:CmdLineTest +_check_script Lib/test/test_multiprocessing_main_handling.py /^ def _check_script(self, script_name, *cmd_line_switches):$/;" m class:MultiProcessingCmdLineMixin +_check_script Lib/test/test_runpy.py /^ def _check_script(self, script_name, expected_name, expected_file,$/;" m class:RunPathTestCase +_check_sendfile_params Lib/asyncio/base_events.py /^ def _check_sendfile_params(self, sock, file, offset, count):$/;" m class:BaseEventLoop +_check_sendfile_params Lib/socket.py /^ def _check_sendfile_params(self, file, offset, count):$/;" m class:socket +_check_shutdown_timeout Lib/asyncio/sslproto.py /^ def _check_shutdown_timeout(self):$/;" m class:SSLProtocol +_check_signal Lib/asyncio/unix_events.py /^ def _check_signal(self, sig):$/;" m class:_UnixSelectorEventLoop +_check_signature Lib/unittest/mock.py /^def _check_signature(func, mock, skipfirst, instance=False):$/;" f +_check_size Lib/ctypes/__init__.py /^def _check_size(typ, typecode=None):$/;" f +_check_someclass_mock Lib/test/test_unittest/testmock/testhelpers.py /^ def _check_someclass_mock(self, mock):$/;" m class:SpecSignatureTest +_check_spec_arg_typos Lib/unittest/mock.py /^def _check_spec_arg_typos(kwargs_to_check):$/;" f +_check_ssl_socket Lib/asyncio/base_events.py /^def _check_ssl_socket(sock):$/;" f +_check_str Lib/test/test_pathlib.py /^ def _check_str(self, expected, args):$/;" m class:_BasePurePathTest +_check_str_subclass Lib/test/test_pathlib.py /^ def _check_str_subclass(self, *args):$/;" m class:_BasePurePathTest +_check_structseq Lib/test/_test_embed_structseq.py /^ def _check_structseq(self, obj_type):$/;" m class:TestStructSeq +_check_success Lib/test/test_asyncio/test_tasks.py /^ def _check_success(self, **kwargs):$/;" m class:GatherTestsBase +_check_swap_std_fds_with_one_closed Lib/test/test_subprocess.py /^ def _check_swap_std_fds_with_one_closed(self, from_fds, to_fds):$/;" m class:POSIXProcessTestCase +_check_symlink_loop Lib/test/test_pathlib.py /^ def _check_symlink_loop(self, *args, strict=True):$/;" m class:PosixPathTest +_check_sys Lib/test/test_osx_env.py /^ def _check_sys(self, ev, cond, sv, val = sys.executable + 'dummy'):$/;" m class:OSXEnvironmentVariableTestCase +_check_system_limits Lib/concurrent/futures/process.py /^def _check_system_limits():$/;" f +_check_thread Lib/asyncio/base_events.py /^ def _check_thread(self):$/;" m class:BaseEventLoop +_check_time_fields Lib/_pydatetime.py /^def _check_time_fields(hour, minute, second, microsecond, fold):$/;" f +_check_timeout Lib/multiprocessing/connection.py /^def _check_timeout(t):$/;" f +_check_timeout Lib/subprocess.py /^ def _check_timeout(self, endtime, orig_timeout, stdout_seq, stderr_seq,$/;" m class:Popen +_check_tracemalloc Lib/test/support/__init__.py /^def _check_tracemalloc():$/;" f +_check_type Lib/optparse.py /^ def _check_type(self):$/;" m class:Option +_check_typedep Tools/c-analyzer/cpython/_analyzer.py /^def _check_typedep(decl, typedecl, types, knowntypes):$/;" f +_check_types Lib/difflib.py /^def _check_types(a, b, *args):$/;" f +_check_typespec Tools/c-analyzer/cpython/_analyzer.py /^def _check_typespec(decl, typedecl, types, knowntypes):$/;" f +_check_tzinfo_arg Lib/_pydatetime.py /^def _check_tzinfo_arg(tz):$/;" f +_check_tzname Lib/_pydatetime.py /^def _check_tzname(name):$/;" f +_check_uni Lib/test/test_builtin.py /^ def _check_uni(s):$/;" f function:BuiltinTest.test_ascii +_check_unpack_options Lib/shutil.py /^def _check_unpack_options(extensions, function, extra_args):$/;" f +_check_unsupported Tools/c-analyzer/cpython/_analyzer.py /^def _check_unsupported(decl, typedeps, types, knowntypes):$/;" f +_check_utc_offset Lib/_pydatetime.py /^def _check_utc_offset(name, offset):$/;" f +_check_value Lib/argparse.py /^ def _check_value(self, action, value):$/;" m class:ArgumentParser +_check_vartype Tools/c-analyzer/cpython/_analyzer.py /^def _check_vartype(decl, typedecl, types, knowntypes):$/;" f +_check_warn_on_dealloc Lib/test/test_io.py /^ def _check_warn_on_dealloc(self, *args, **kwargs):$/;" m class:MiscIOTest +_check_warn_on_dealloc_fd Lib/test/test_io.py /^ def _check_warn_on_dealloc_fd(self, *args, **kwargs):$/;" m class:MiscIOTest +_check_wasi Tools/wasm/wasm_build.py /^def _check_wasi():$/;" f +_check_weakref Lib/test/test_copy.py /^ def _check_weakref(self, _copy):$/;" m class:TestCopy +_check_writable Lib/multiprocessing/connection.py /^ def _check_writable(self):$/;" m class:_ConnectionBase +_check_xattrs Lib/test/test_os.py /^ def _check_xattrs(self, *args, **kwargs):$/;" m class:ExtendedAttributeTests +_check_xattrs_str Lib/test/test_os.py /^ def _check_xattrs_str(self, s, getxattr, setxattr, removexattr, listxattr, **kwargs):$/;" m class:ExtendedAttributeTests +_check_xidata Python/pystate.c /^_check_xidata(PyThreadState *tstate, _PyCrossInterpreterData *data)$/;" f file: +_check_xmlparser Modules/_elementtree.c /^_check_xmlparser(XMLParserObject* self)$/;" f +_check_zipfile Lib/zipfile/__init__.py /^def _check_zipfile(fp):$/;" f +_checkbutton_count Lib/tkinter/__init__.py /^_checkbutton_count = 0$/;" v +_checkeval Lib/test/test_grammar.py /^ def _checkeval(msg, ret):$/;" f function:GrammarTests.test_if_else_expr +_checkeval Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def _checkeval(msg, ret):$/;" f function:GrammarTests.testIfElseExpr +_checkeval Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def _checkeval(msg, ret):$/;" f function:GrammarTests.testIfElseExpr +_checkmodule Modules/_pickle.c /^_checkmodule(PyObject *module_name, PyObject *module,$/;" f file: +_checknetloc Lib/urllib/parse.py /^def _checknetloc(netloc):$/;" f +_chflags_raiser Lib/test/test_shutil.py /^ def _chflags_raiser(path, flags, *, follow_symlinks=True):$/;" f function:TestCopy.test_copystat_handles_harmless_chflags_errors.make_chflags_raiser +_child Lib/lib2to3/refactor.py /^ def _child(self):$/;" m class:MultiprocessRefactoringTool +_child_boundaries Lib/test/_test_multiprocessing.py /^ def _child_boundaries(cls, r):$/;" m class:_TestPoll +_child_created Lib/subprocess.py /^ _child_created = False # Set here since __del__ checks it$/;" v class:Popen +_child_dont_merge Lib/test/_test_multiprocessing.py /^ def _child_dont_merge(cls, b):$/;" m class:_TestPoll +_child_node_types Lib/xml/dom/minidom.py /^ _child_node_types = (Node.ELEMENT_NODE, Node.PROCESSING_INSTRUCTION_NODE,$/;" v class:Document +_child_node_types Lib/xml/dom/minidom.py /^ _child_node_types = (Node.ELEMENT_NODE,$/;" v class:DocumentFragment +_child_node_types Lib/xml/dom/minidom.py /^ _child_node_types = (Node.ELEMENT_NODE,$/;" v class:Element +_child_node_types Lib/xml/dom/minidom.py /^ _child_node_types = (Node.TEXT_NODE, Node.ENTITY_REFERENCE_NODE)$/;" v class:Attr +_child_strings Lib/test/_test_multiprocessing.py /^ def _child_strings(cls, conn, strings):$/;" m class:_TestPoll +_child_test_wait Lib/test/_test_multiprocessing.py /^ def _child_test_wait(cls, w, slow):$/;" m class:TestWait +_child_test_wait_socket Lib/test/_test_multiprocessing.py /^ def _child_test_wait_socket(cls, address, slow):$/;" m class:TestWait +_child_watcher_callback Lib/asyncio/unix_events.py /^ def _child_watcher_callback(self, pid, returncode, transp):$/;" m class:_UnixSelectorEventLoop +_children Lib/multiprocessing/process.py /^_children = set()$/;" v +_children Modules/_elementtree.c /^ PyObject* _children[STATIC_CHILDREN];$/;" m struct:__anon382 file: +_chmod Lib/dbm/dumb.py /^ def _chmod(self, file):$/;" m class:_Database +_choose_dir Lib/multiprocessing/heap.py /^ def _choose_dir(self, size):$/;" m class:Arena +_cjk_exec Modules/cjkcodecs/cjkcodecs.h /^_cjk_exec(PyObject *module)$/;" f +_cjk_free Modules/cjkcodecs/cjkcodecs.h /^_cjk_free(void *mod)$/;" f +_cjk_methods Modules/cjkcodecs/cjkcodecs.h /^static struct PyMethodDef _cjk_methods[] = {$/;" v typeref:struct:PyMethodDef +_cjk_mod_state Modules/cjkcodecs/cjkcodecs.h /^typedef struct _cjk_mod_state {$/;" s +_cjk_slots Modules/cjkcodecs/cjkcodecs.h /^static PyModuleDef_Slot _cjk_slots[] = {$/;" v +_class_escape Lib/re/_parser.py /^def _class_escape(source, escape):$/;" f +_classify_pyc Lib/importlib/_bootstrap_external.py /^def _classify_pyc(data, name, exc_details):$/;" f +_clean Lib/test/test_import/__init__.py /^ def _clean(self):$/;" m class:PycacheTests +_clean_tracebacks Lib/unittest/result.py /^ def _clean_tracebacks(self, exctype, value, tb, test):$/;" m class:TestResult +_cleaning Lib/test/test_finalization.py /^ _cleaning = False$/;" v class:NonGCSimpleBase +_cleanup Lib/multiprocessing/process.py /^def _cleanup():$/;" f +_cleanup Lib/multiprocessing/synchronize.py /^ def _cleanup(name):$/;" m class:SemLock +_cleanup Lib/subprocess.py /^ def _cleanup():$/;" f +_cleanup Lib/tempfile.py /^ def _cleanup(cls, name, warn_message, ignore_errors=False, delete=True):$/;" m class:TemporaryDirectory +_cleanup Lib/test/test_finalization.py /^ def _cleanup(cls):$/;" m class:NonGCSimpleBase +_cleanup Lib/test/test_imaplib.py /^ def _cleanup(self):$/;" m class:NewIMAPTestsMixin +_cleanup Lib/unittest/suite.py /^ _cleanup = True$/;" v class:BaseTestSuite +_cleanup_testfn Lib/test/test_sysconfig.py /^ def _cleanup_testfn(self):$/;" m class:TestSysConfig +_cleanup_tests Lib/multiprocessing/util.py /^def _cleanup_tests():$/;" f +_cleanups Lib/typing.py /^_cleanups = []$/;" v +_clear Lib/turtle.py /^ def _clear(self):$/;" m class:RawTurtle +_clear Tools/c-analyzer/c_parser/parser/_info.py /^ def _clear(self, start=None):$/;" m class:SourceInfo +_clearExistingHandlers Lib/logging/config.py /^def _clearExistingHandlers():$/;" f +_clear_cache Lib/logging/__init__.py /^ def _clear_cache(self):$/;" m class:Manager +_clear_dict Lib/unittest/mock.py /^def _clear_dict(in_dict):$/;" f +_clear_id_cache Lib/xml/dom/minidom.py /^def _clear_id_cache(node):$/;" f +_clear_joined_ptr Modules/_elementtree.c /^static void _clear_joined_ptr(PyObject **p)$/;" f file: +_clear_pending_signals Modules/signalmodule.c /^_clear_pending_signals(void)$/;" f file: +_clear_preinit_entries Python/sysmodule.c /^_clear_preinit_entries(_Py_PreInitEntry *optionlist)$/;" f file: +_clear_type_cache Lib/test/test_type_cache.py /^ _clear_type_cache = None$/;" v +_clearcache Modules/clinic/_struct.c.h /^_clearcache(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_clearcache_impl Modules/_struct.c /^_clearcache_impl(PyObject *module)$/;" f file: +_clearstamp Lib/turtle.py /^ def _clearstamp(self, stampid):$/;" m class:RawTurtle +_cli_analyze Tools/c-analyzer/c_analyzer/__main__.py /^def _cli_analyze(parser, **kwargs):$/;" f +_cli_builtin_types Tools/c-analyzer/cpython/__main__.py /^def _cli_builtin_types(parser):$/;" f +_cli_capi Tools/c-analyzer/cpython/__main__.py /^def _cli_capi(parser):$/;" f +_cli_check Tools/c-analyzer/c_analyzer/__main__.py /^def _cli_check(parser, checks=None, **kwargs):$/;" f +_cli_check Tools/c-analyzer/cpython/__main__.py /^def _cli_check(parser, **kwargs):$/;" f +_cli_data Tools/c-analyzer/c_analyzer/__main__.py /^def _cli_data(parser, filenames=None, known=None):$/;" f +_cli_data Tools/c-analyzer/c_parser/__main__.py /^def _cli_data(parser):$/;" f +_cli_data Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def _cli_data(parser):$/;" f +_cli_data Tools/c-analyzer/cpython/__main__.py /^def _cli_data(parser):$/;" f +_cli_parse Tools/c-analyzer/c_parser/__main__.py /^def _cli_parse(parser, excluded=None, **prepr_kwargs):$/;" f +_cli_parse Tools/c-analyzer/cpython/__main__.py /^def _cli_parse(parser):$/;" f +_cli_preprocess Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def _cli_preprocess(parser, excluded=None, **prepr_kwargs):$/;" f +_click_decrement_arrow Lib/test/test_ttk/test_widgets.py /^ def _click_decrement_arrow(self):$/;" m class:SpinboxTest +_click_increment_arrow Lib/test/test_ttk/test_widgets.py /^ def _click_increment_arrow(self):$/;" m class:SpinboxTest +_clone_node Lib/xml/dom/minidom.py /^def _clone_node(node, deep, newOwnerDocument):$/;" f +_close Lib/asyncio/unix_events.py /^ def _close(self, exc):$/;" m class:_UnixReadPipeTransport +_close Lib/asyncio/unix_events.py /^ def _close(self, exc=None):$/;" m class:_UnixWritePipeTransport +_close Lib/idlelib/editor.py /^ def _close(self):$/;" m class:EditorWindow +_close Lib/idlelib/pyshell.py /^ def _close(self):$/;" m class:PyShell +_close Lib/idlelib/pyshell.py /^ def _close(self):$/;" m class:PyShellEditorWindow +_close Lib/multiprocessing/connection.py /^ def _close(self, _CloseHandle=_winapi.CloseHandle):$/;" m class:.PipeConnection +_close Lib/multiprocessing/connection.py /^ def _close(self, _close=_multiprocessing.closesocket):$/;" m class:Connection +_close Lib/multiprocessing/connection.py /^ def _close(self, _close=os.close):$/;" m class:Connection +_close Lib/nntplib.py /^ def _close(self):$/;" m class:NNTP +_close Lib/test/test__xxinterpchannels.py /^ def _close(self, fix, *, force):$/;" m class:ExhaustiveChannelTests +_close Lib/test/test_nntplib.py /^ def _close(self):$/;" m class:NNTPServer +_close Lib/test/test_tempfile.py /^ _close = os.close$/;" v class:TestMkstempInner.mkstemped +_close_and_return_root Lib/xml/etree/ElementTree.py /^ def _close_and_return_root(self):$/;" m class:XMLPullParser +_close_conn Lib/http/client.py /^ def _close_conn(self):$/;" m class:HTTPResponse +_close_gap_from_i Lib/turtledemo/sorting_animate.py /^ def _close_gap_from_i(self, i):$/;" m class:Shelf +_close_handles Lib/multiprocessing/popen_spawn_win32.py /^def _close_handles(*handles):$/;" f +_close_open_fds Modules/_posixsubprocess.c /^_close_open_fds(int start_fd, int *fds_to_keep, Py_ssize_t fds_to_keep_len)$/;" f file: +_close_open_fds_fallback Modules/_posixsubprocess.c 384;" d file: +_close_open_fds_fallback Modules/_posixsubprocess.c 464;" d file: +_close_open_fds_maybe_unsafe Modules/_posixsubprocess.c /^_close_open_fds_maybe_unsafe(int start_fd, int *fds_to_keep,$/;" f file: +_close_open_fds_safe Modules/_posixsubprocess.c /^_close_open_fds_safe(int start_fd, int *fds_to_keep, Py_ssize_t fds_to_keep_len)$/;" f file: +_close_pipe_fds Lib/subprocess.py /^ def _close_pipe_fds(self,$/;" m class:Popen +_close_range_closer Modules/_posixsubprocess.c /^_close_range_closer(int first, int last)$/;" f file: +_close_range_except Modules/_posixsubprocess.c /^_close_range_except(int start_fd,$/;" f file: +_close_self_pipe Lib/asyncio/proactor_events.py /^ def _close_self_pipe(self):$/;" m class:BaseProactorEventLoop +_close_self_pipe Lib/asyncio/selector_events.py /^ def _close_self_pipe(self):$/;" m class:BaseSelectorEventLoop +_close_self_pipe Lib/test/test_asyncio/test_selector_events.py /^ def _close_self_pipe(self):$/;" m class:TestBaseSelectorEventLoop +_close_source Lib/xml/sax/expatreader.py /^ def _close_source(self):$/;" m class:ExpatParser +_close_stdin Lib/multiprocessing/util.py /^def _close_stdin():$/;" f +_closefd Lib/_pyio.py /^ _closefd = True$/;" v class:FileIO +_cls_type Lib/enum.py /^ _cls_type = None$/;" v class:property +_cmdloop Lib/pdb.py /^ def _cmdloop(self):$/;" m class:Pdb +_cmp Lib/_pydatetime.py /^ def _cmp(self, other):$/;" m class:date +_cmp Lib/_pydatetime.py /^ def _cmp(self, other):$/;" m class:timedelta +_cmp Lib/_pydatetime.py /^ def _cmp(self, other, allow_mixed=False):$/;" m class:datetime +_cmp Lib/_pydatetime.py /^ def _cmp(self, other, allow_mixed=False):$/;" m class:time +_cmp Lib/_pydatetime.py /^def _cmp(x, y):$/;" f +_cmp Lib/_pydecimal.py /^ def _cmp(self, other):$/;" m class:Decimal +_cmp Lib/filecmp.py /^def _cmp(a, b, sh, abs=abs, cmp=cmp):$/;" f +_cmp Lib/xml/dom/minidom.py /^ def _cmp(self, other):$/;" m class:NamedNodeMap +_cmp__ Lib/test/test_long.py /^ def _cmp__(self, other):$/;" m class:LongTest.test_mixed_compares.Rat +_cmp_fn Lib/dataclasses.py /^def _cmp_fn(name, op, self_tuple, other_tuple, globals):$/;" f +_cmperror Lib/_pydatetime.py /^def _cmperror(x, y):$/;" f +_cmpname Modules/unicodedata.c /^_cmpname(PyObject *self, int code, const char* name, int namelen)$/;" f file: +_cmpop Include/internal/pycore_ast.h /^typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,$/;" g +_cnfmerge Lib/tkinter/__init__.py /^def _cnfmerge(cnfs):$/;" f +_co Lib/test/test_dis.py /^async def _co(x):$/;" f +_co_cellvars Include/cpython/code.h /^ PyObject *_co_cellvars;$/;" m struct:__anon227 +_co_code Include/cpython/code.h /^ PyObject *_co_code;$/;" m struct:__anon227 +_co_freevars Include/cpython/code.h /^ PyObject *_co_freevars;$/;" m struct:__anon227 +_co_varnames Include/cpython/code.h /^ PyObject *_co_varnames;$/;" m struct:__anon227 +_code Lib/re/_compiler.py /^def _code(p, flags):$/;" f +_code_to_hash_pyc Lib/importlib/_bootstrap_external.py /^def _code_to_hash_pyc(code, source_hash, checked=True):$/;" f +_code_to_timestamp_pyc Lib/importlib/_bootstrap_external.py /^def _code_to_timestamp_pyc(code, mtime=0, source_size=0):$/;" f +_code_type Lib/importlib/_bootstrap_external.py /^_code_type = type(_write_atomic.__code__)$/;" v +_code_type Lib/zipimport.py /^_code_type = type(_unmarshal_code.__code__)$/;" v +_codecs_ascii_decode Modules/clinic/_codecsmodule.c.h /^_codecs_ascii_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_ascii_decode_impl Modules/_codecsmodule.c /^_codecs_ascii_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_ascii_encode Modules/clinic/_codecsmodule.c.h /^_codecs_ascii_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_ascii_encode_impl Modules/_codecsmodule.c /^_codecs_ascii_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_charmap_build Modules/clinic/_codecsmodule.c.h /^_codecs_charmap_build(PyObject *module, PyObject *arg)$/;" f +_codecs_charmap_build_impl Modules/_codecsmodule.c /^_codecs_charmap_build_impl(PyObject *module, PyObject *map)$/;" f file: +_codecs_charmap_decode Modules/clinic/_codecsmodule.c.h /^_codecs_charmap_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_charmap_decode_impl Modules/_codecsmodule.c /^_codecs_charmap_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_charmap_encode Modules/clinic/_codecsmodule.c.h /^_codecs_charmap_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_charmap_encode_impl Modules/_codecsmodule.c /^_codecs_charmap_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_code_page_decode Modules/clinic/_codecsmodule.c.h /^_codecs_code_page_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_code_page_decode_impl Modules/_codecsmodule.c /^_codecs_code_page_decode_impl(PyObject *module, int codepage,$/;" f file: +_codecs_code_page_encode Modules/clinic/_codecsmodule.c.h /^_codecs_code_page_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_code_page_encode_impl Modules/_codecsmodule.c /^_codecs_code_page_encode_impl(PyObject *module, int code_page, PyObject *str,$/;" f file: +_codecs_decode Modules/clinic/_codecsmodule.c.h /^_codecs_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_codecs_decode_impl Modules/_codecsmodule.c /^_codecs_decode_impl(PyObject *module, PyObject *obj, const char *encoding,$/;" f file: +_codecs_encode Modules/clinic/_codecsmodule.c.h /^_codecs_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_codecs_encode_impl Modules/_codecsmodule.c /^_codecs_encode_impl(PyObject *module, PyObject *obj, const char *encoding,$/;" f file: +_codecs_escape_decode Modules/clinic/_codecsmodule.c.h /^_codecs_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_escape_decode_impl Modules/_codecsmodule.c /^_codecs_escape_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_escape_encode Modules/clinic/_codecsmodule.c.h /^_codecs_escape_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_escape_encode_impl Modules/_codecsmodule.c /^_codecs_escape_encode_impl(PyObject *module, PyObject *data,$/;" f file: +_codecs_functions Modules/_codecsmodule.c /^static PyMethodDef _codecs_functions[] = {$/;" v file: +_codecs_latin_1_decode Modules/clinic/_codecsmodule.c.h /^_codecs_latin_1_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_latin_1_decode_impl Modules/_codecsmodule.c /^_codecs_latin_1_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_latin_1_encode Modules/clinic/_codecsmodule.c.h /^_codecs_latin_1_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_latin_1_encode_impl Modules/_codecsmodule.c /^_codecs_latin_1_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_lookup Modules/clinic/_codecsmodule.c.h /^_codecs_lookup(PyObject *module, PyObject *arg)$/;" f +_codecs_lookup_error Modules/clinic/_codecsmodule.c.h /^_codecs_lookup_error(PyObject *module, PyObject *arg)$/;" f +_codecs_lookup_error_impl Modules/_codecsmodule.c /^_codecs_lookup_error_impl(PyObject *module, const char *name)$/;" f file: +_codecs_lookup_impl Modules/_codecsmodule.c /^_codecs_lookup_impl(PyObject *module, const char *encoding)$/;" f file: +_codecs_mbcs_decode Modules/clinic/_codecsmodule.c.h /^_codecs_mbcs_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_mbcs_decode_impl Modules/_codecsmodule.c /^_codecs_mbcs_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_mbcs_encode Modules/clinic/_codecsmodule.c.h /^_codecs_mbcs_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_mbcs_encode_impl Modules/_codecsmodule.c /^_codecs_mbcs_encode_impl(PyObject *module, PyObject *str, const char *errors)$/;" f file: +_codecs_oem_decode Modules/clinic/_codecsmodule.c.h /^_codecs_oem_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_oem_decode_impl Modules/_codecsmodule.c /^_codecs_oem_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_oem_encode Modules/clinic/_codecsmodule.c.h /^_codecs_oem_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_oem_encode_impl Modules/_codecsmodule.c /^_codecs_oem_encode_impl(PyObject *module, PyObject *str, const char *errors)$/;" f file: +_codecs_raw_unicode_escape_decode Modules/clinic/_codecsmodule.c.h /^_codecs_raw_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_raw_unicode_escape_decode_impl Modules/_codecsmodule.c /^_codecs_raw_unicode_escape_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_raw_unicode_escape_encode Modules/clinic/_codecsmodule.c.h /^_codecs_raw_unicode_escape_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_raw_unicode_escape_encode_impl Modules/_codecsmodule.c /^_codecs_raw_unicode_escape_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_readbuffer_encode Modules/clinic/_codecsmodule.c.h /^_codecs_readbuffer_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_readbuffer_encode_impl Modules/_codecsmodule.c /^_codecs_readbuffer_encode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_register Modules/_codecsmodule.c /^_codecs_register(PyObject *module, PyObject *search_function)$/;" f file: +_codecs_register_error Modules/clinic/_codecsmodule.c.h /^_codecs_register_error(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_register_error_impl Modules/_codecsmodule.c /^_codecs_register_error_impl(PyObject *module, const char *errors,$/;" f file: +_codecs_slots Modules/_codecsmodule.c /^static PyModuleDef_Slot _codecs_slots[] = {$/;" v file: +_codecs_unicode_escape_decode Modules/clinic/_codecsmodule.c.h /^_codecs_unicode_escape_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_unicode_escape_decode_impl Modules/_codecsmodule.c /^_codecs_unicode_escape_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_unicode_escape_encode Modules/clinic/_codecsmodule.c.h /^_codecs_unicode_escape_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_unicode_escape_encode_impl Modules/_codecsmodule.c /^_codecs_unicode_escape_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_unregister Modules/_codecsmodule.c /^_codecs_unregister(PyObject *module, PyObject *search_function)$/;" f file: +_codecs_utf_16_be_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_16_be_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_16_be_decode_impl Modules/_codecsmodule.c /^_codecs_utf_16_be_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_16_be_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_16_be_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_16_be_encode_impl Modules/_codecsmodule.c /^_codecs_utf_16_be_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_utf_16_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_16_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_16_decode_impl Modules/_codecsmodule.c /^_codecs_utf_16_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_16_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_16_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_16_encode_impl Modules/_codecsmodule.c /^_codecs_utf_16_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_utf_16_ex_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_16_ex_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_16_ex_decode_impl Modules/_codecsmodule.c /^_codecs_utf_16_ex_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_16_le_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_16_le_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_16_le_decode_impl Modules/_codecsmodule.c /^_codecs_utf_16_le_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_16_le_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_16_le_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_16_le_encode_impl Modules/_codecsmodule.c /^_codecs_utf_16_le_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_utf_32_be_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_32_be_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_32_be_decode_impl Modules/_codecsmodule.c /^_codecs_utf_32_be_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_32_be_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_32_be_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_32_be_encode_impl Modules/_codecsmodule.c /^_codecs_utf_32_be_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_utf_32_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_32_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_32_decode_impl Modules/_codecsmodule.c /^_codecs_utf_32_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_32_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_32_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_32_encode_impl Modules/_codecsmodule.c /^_codecs_utf_32_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_utf_32_ex_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_32_ex_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_32_ex_decode_impl Modules/_codecsmodule.c /^_codecs_utf_32_ex_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_32_le_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_32_le_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_32_le_decode_impl Modules/_codecsmodule.c /^_codecs_utf_32_le_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_32_le_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_32_le_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_32_le_encode_impl Modules/_codecsmodule.c /^_codecs_utf_32_le_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_utf_7_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_7_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_7_decode_impl Modules/_codecsmodule.c /^_codecs_utf_7_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_7_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_7_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_7_encode_impl Modules/_codecsmodule.c /^_codecs_utf_7_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_codecs_utf_8_decode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_8_decode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_8_decode_impl Modules/_codecsmodule.c /^_codecs_utf_8_decode_impl(PyObject *module, Py_buffer *data,$/;" f file: +_codecs_utf_8_encode Modules/clinic/_codecsmodule.c.h /^_codecs_utf_8_encode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_codecs_utf_8_encode_impl Modules/_codecsmodule.c /^_codecs_utf_8_encode_impl(PyObject *module, PyObject *str,$/;" f file: +_coeff_as_uint128 Modules/_decimal/libmpdec/mpdecimal.c /^_coeff_as_uint128(uint64_t *hi, uint64_t *lo, const mpd_t *a)$/;" f file: +_coeff_from_larger_base Modules/_decimal/libmpdec/mpdecimal.c /^_coeff_from_larger_base(mpd_t *w, size_t wlen, mpd_uint_t wbase,$/;" f file: +_coeff_from_smaller_base Modules/_decimal/libmpdec/mpdecimal.c /^_coeff_from_smaller_base(mpd_t *w, mpd_ssize_t wlen, mpd_uint_t wbase,$/;" f file: +_coeff_from_u16 Modules/_decimal/libmpdec/mpdecimal.c /^_coeff_from_u16(mpd_t *w, mpd_ssize_t wlen,$/;" f file: +_coerce Lib/statistics.py /^def _coerce(T, S):$/;" f +_coerce_args Lib/urllib/parse.py /^def _coerce_args(*args):$/;" f +_coerce_default_locale_settings Python/pylifecycle.c /^_coerce_default_locale_settings(int warn, const _LocaleCoercionTarget *target)$/;" f file: +_collapse_addresses_internal Lib/ipaddress.py /^def _collapse_addresses_internal(addresses):$/;" f +_collate Tools/c-analyzer/cpython/_capi.py /^def _collate(items, groupby, includeempty):$/;" f +_collect_if_necessary Lib/test/test_weakref.py /^ def _collect_if_necessary(self):$/;" m class:FinalizeTestCase +_collect_incoming_data Lib/test/support/asynchat.py /^ def _collect_incoming_data(self, data):$/;" m class:async_chat +_collect_lines Lib/difflib.py /^ def _collect_lines(self,diffs):$/;" m class:HtmlDiff +_collect_parameters Lib/typing.py /^def _collect_parameters(args):$/;" f +_collections__count_elements Modules/clinic/_collectionsmodule.c.h /^_collections__count_elements(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_collections__count_elements_impl Modules/_collectionsmodule.c /^_collections__count_elements_impl(PyObject *module, PyObject *mapping,$/;" f file: +_collectionsmodule Modules/_collectionsmodule.c /^static struct PyModuleDef _collectionsmodule = {$/;" v typeref:struct:PyModuleDef file: +_collectionsmodule Modules/_collectionsmodule.c /^static struct PyModuleDef _collectionsmodule;$/;" v typeref:struct:PyModuleDef file: +_color Lib/turtle.py /^ def _color(self, args):$/;" m class:RawTurtle +_color Lib/turtle.py /^ def _color(self, args):$/;" m class:TPen +_color Lib/turtle.py /^ def _color(self, cstr):$/;" m class:TurtleScreen +_color_delegator Lib/idlelib/colorizer.py /^def _color_delegator(parent): # htest #$/;" f +_color_delegator_spec Lib/idlelib/idle_test/htest.py /^_color_delegator_spec = {$/;" v +_colorstr Lib/turtle.py /^ def _colorstr(self, args):$/;" m class:RawTurtle +_colorstr Lib/turtle.py /^ def _colorstr(self, args):$/;" m class:TPen +_colorstr Lib/turtle.py /^ def _colorstr(self, color):$/;" m class:TurtleScreen +_colwidth Lib/calendar.py /^_colwidth = 7*3 - 1 # Amount printed by prweek()$/;" v +_combinations Lib/lib2to3/pgen2/tokenize.py /^def _combinations(*l):$/;" f +_combineWithInstallDir PC/launcher2.c /^_combineWithInstallDir(const wchar_t **dest, const wchar_t *installDir, const wchar_t *fragment, int fragmentLength)$/;" f +_combine_flags Lib/re/_compiler.py /^def _combine_flags(flags, add_flags, del_flags,$/;" f +_command Lib/idlelib/idle_test/test_textview.py /^ def _command():$/;" f function:ButtonClickTest.test_view_file_bind_with_button +_command Lib/idlelib/idle_test/test_textview.py /^ def _command():$/;" f function:ButtonClickTest.test_view_text_bind_with_button +_command Lib/imaplib.py /^ def _command(self, name, *args):$/;" m class:IMAP4 +_command Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOTSTRAPPER_COMMAND _command;$/;" m class:PythonBootstrapperApplication file: +_command_complete Lib/imaplib.py /^ def _command_complete(self, name, tag):$/;" m class:IMAP4 +_comment_line Lib/doctest.py /^def _comment_line(line):$/;" f +_commentclose Lib/_markupbase.py /^_commentclose = re.compile(r'--\\s*>')$/;" v +_commit Lib/dbm/dumb.py /^ def _commit(self):$/;" m class:_Database +_commit_removals Lib/_weakrefset.py /^ def _commit_removals(self):$/;" m class:WeakSet +_commit_removals Lib/importlib/_bootstrap.py /^ def _commit_removals(self):$/;" m class:_WeakValueDictionary +_commit_removals Lib/weakref.py /^ def _commit_removals(self):$/;" m class:WeakKeyDictionary +_commit_removals Lib/weakref.py /^ def _commit_removals(self, _atomic_removal=_remove_dead_weakref):$/;" m class:WeakValueDictionary +_common_mod Modules/_zoneinfo.c /^ PyObject *_common_mod;$/;" m struct:__anon641 file: +_common_reduce Objects/bytearrayobject.c /^_common_reduce(PyByteArrayObject *self, int proto)$/;" f file: +_common_reduce Objects/typeobject.c /^_common_reduce(PyObject *self, int proto)$/;" f file: +_common_shorten_repr Lib/unittest/util.py /^def _common_shorten_repr(*args):$/;" f +_communicate Lib/subprocess.py /^ def _communicate(self, input, endtime, orig_timeout):$/;" f function:Popen._on_error_fd_closer +_companyMatches PC/launcher2.c /^_companyMatches(const SearchInfo *search, const EnvironmentInfo *env)$/;" f +_comparable_version Lib/platform.py /^def _comparable_version(version):$/;" f +_compare PC/launcher2.c /^_compare(const wchar_t *x, int xLen, const wchar_t *y, int yLen)$/;" f +_compareArgument PC/launcher2.c /^_compareArgument(const wchar_t *x, int xLen, const wchar_t *y, int yLen)$/;" f +_compareCompany PC/launcher2.c /^_compareCompany(const wchar_t *x, const wchar_t *y)$/;" f +_comparePath PC/launcher2.c /^_comparePath(const wchar_t *x, int xLen, const wchar_t *y, int yLen)$/;" f +_compareTag PC/launcher2.c /^_compareTag(const wchar_t *x, const wchar_t *y)$/;" f +_compare_check_nans Lib/_pydecimal.py /^ def _compare_check_nans(self, other, context):$/;" m class:Decimal +_compare_grouped_stats Lib/tracemalloc.py /^def _compare_grouped_stats(old_group, new_group):$/;" f +_compare_to_walk Lib/test/test_os.py /^ def _compare_to_walk(self, walk_kwargs, fwalk_kwargs):$/;" m class:FwalkTests +_compile Lib/codeop.py /^def _compile(source, filename, symbol):$/;" f +_compile Lib/re/__init__.py /^def _compile(pattern, flags):$/;" f +_compile Lib/re/_compiler.py /^def _compile(code, pattern, flags):$/;" f +_compile Lib/tokenize.py /^def _compile(expr):$/;" f +_compile Lib/zipfile/__init__.py /^ def _compile(file, optimize=-1):$/;" f function:PyZipFile._get_codename +_compile_bytecode Lib/importlib/_bootstrap_external.py /^def _compile_bytecode(data, name=None, bytecode_path=None, source_path=None):$/;" f +_compile_charset Lib/re/_compiler.py /^def _compile_charset(charset, flags, code):$/;" f +_compile_error_message Lib/pdb.py /^ def _compile_error_message(self, expr):$/;" m class:Pdb +_compile_info Lib/re/_compiler.py /^def _compile_info(code, pattern, flags):$/;" f +_compile_match_function Lib/test/support/__init__.py /^def _compile_match_function(patterns):$/;" f +_compile_one_py PC/layout/main.py /^def _compile_one_py(src, dest, name, optimize, checked=True):$/;" f +_compile_pattern Lib/fnmatch.py /^def _compile_pattern(pat):$/;" f +_compile_pattern Lib/pathlib.py /^def _compile_pattern(pat, case_sensitive):$/;" f +_compile_pattern_lines Lib/pathlib.py /^def _compile_pattern_lines(pattern_lines, case_sensitive):$/;" f +_compile_re Lib/email/generator.py /^ def _compile_re(cls, s, flags):$/;" m class:BytesGenerator +_compile_re Lib/email/generator.py /^ def _compile_re(cls, s, flags):$/;" m class:Generator +_compile_source Lib/zipimport.py /^def _compile_source(pathname, source):$/;" f +_compile_template Lib/re/__init__.py /^def _compile_template(pattern, repl):$/;" f +_complete_bpnumber Lib/pdb.py /^ def _complete_bpnumber(self, text, line, begidx, endidx):$/;" m class:Pdb +_complete_expression Lib/pdb.py /^ def _complete_expression(self, text, line, begidx, endidx):$/;" m class:Pdb +_complete_location Lib/pdb.py /^ def _complete_location(self, text, line, begidx, endidx):$/;" m class:Pdb +_complete_string Lib/idlelib/autocomplete_w.py /^ def _complete_string(self, s):$/;" m class:AutoCompleteWindow +_components Lib/test/test_fractions.py /^def _components(r):$/;" f +_compose_mro Lib/functools.py /^def _compose_mro(cls, types):$/;" f +_comprehension Include/internal/pycore_ast.h /^struct _comprehension {$/;" s +_comprehension_type Include/internal/pycore_symtable.h /^typedef enum _comprehension_type {$/;" g +_compress_hextets Lib/ipaddress.py /^ def _compress_hextets(cls, hextets):$/;" m class:_BaseV6 +_compressed_tar Lib/test/test_tarfile.py /^ def _compressed_tar(self, compresslevel):$/;" m class:_CompressedWriteTest +_compute_suggestion_error Lib/traceback.py /^def _compute_suggestion_error(exc_value, tb, wrong_name):$/;" f +_concrete_contexts Lib/multiprocessing/context.py /^ _concrete_contexts = {$/;" v +_condattr_monotonic Include/internal/pycore_pythread.h /^ } _condattr_monotonic;$/;" m struct:_pythread_runtime_state typeref:struct:_pythread_runtime_state::__anon171 +_condition_map Lib/_pydecimal.py /^_condition_map = {ConversionSyntax:InvalidOperation,$/;" v +_conditional_import_module Lib/test/test_hashlib.py /^ def _conditional_import_module(self, module_name):$/;" m class:HashLibTestCase +_conditions Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BAL_CONDITIONS _conditions;$/;" m class:PythonBootstrapperApplication file: +_config_init Include/cpython/initconfig.h /^ int _config_init; \/* _PyConfigInitEnum value *\/$/;" m struct:PyConfig +_config_init Include/cpython/initconfig.h /^ int _config_init; \/* _PyConfigInitEnum value *\/$/;" m struct:PyPreConfig +_config_init Lib/test/test_embed.py /^ _config_init=API_ISOLATED,$/;" v class:InitConfigTests +_config_init Lib/test/test_embed.py /^ _config_init=API_PYTHON,$/;" v class:InitConfigTests +_configure Lib/_pyio.py /^ def _configure(self, encoding=None, errors=None, newline=None,$/;" m class:TextIOWrapper +_configure Lib/tkinter/__init__.py /^ def _configure(self, cmd, cnf, kw):$/;" m class:Misc +_configure_canvas Lib/idlelib/configdialog.py /^ def _configure_canvas(event):$/;" f function:VerticalScrolledFrame.__init__ +_configure_interior Lib/idlelib/configdialog.py /^ def _configure_interior(event):$/;" f function:VerticalScrolledFrame.__init__ +_configure_queue_handler Lib/logging/config.py /^ def _configure_queue_handler(self, klass, **kwargs):$/;" m class:DictConfigurator +_confirmCloseMessage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ LPWSTR _confirmCloseMessage;$/;" m class:PythonBootstrapperApplication file: +_connect Lib/imaplib.py /^ def _connect(self):$/;" m class:IMAP4 +_connect Lib/multiprocessing/managers.py /^ def _connect(self):$/;" m class:BaseProxy +_connect_pipes Lib/asyncio/base_subprocess.py /^ async def _connect_pipes(self, waiter):$/;" m class:BaseSubprocessTransport +_connect_sock Lib/asyncio/base_events.py /^ async def _connect_sock(self, exceptions, addr_info, local_addr_infos=None):$/;" m class:BaseEventLoop +_connect_unixsocket Lib/logging/handlers.py /^ def _connect_unixsocket(self, address):$/;" m class:SysLogHandler +_connected_pair Lib/test/test_epoll.py /^ def _connected_pair(self):$/;" m class:TestEPoll +_const_node_type_names Lib/ast.py /^_const_node_type_names = {$/;" v +_const_types Lib/ast.py /^_const_types = {$/;" v +_const_types_not Lib/ast.py /^_const_types_not = {$/;" v +_contains_disallowed_method_pchar_re Lib/http/client.py /^_contains_disallowed_method_pchar_re = re.compile('[\\x00-\\x1f]')$/;" v +_contains_disallowed_url_pchar_re Lib/http/client.py /^_contains_disallowed_url_pchar_re = re.compile('[\\x00-\\x20\\x7f]')$/;" v +_context_alloc Python/context.c /^_context_alloc(void)$/;" f file: +_context_attributes Lib/_pydecimal.py /^_context_attributes = frozenset($/;" v +_context_message Lib/traceback.py /^_context_message = ($/;" v +_contextvars_ContextVar_get Python/clinic/context.c.h /^_contextvars_ContextVar_get(PyContextVar *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_contextvars_ContextVar_get_impl Python/context.c /^_contextvars_ContextVar_get_impl(PyContextVar *self, PyObject *default_value)$/;" f file: +_contextvars_ContextVar_reset Python/context.c /^_contextvars_ContextVar_reset(PyContextVar *self, PyObject *token)$/;" f file: +_contextvars_ContextVar_set Python/context.c /^_contextvars_ContextVar_set(PyContextVar *self, PyObject *value)$/;" f file: +_contextvars_Context_copy Python/clinic/context.c.h /^_contextvars_Context_copy(PyContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_contextvars_Context_copy_impl Python/context.c /^_contextvars_Context_copy_impl(PyContext *self)$/;" f file: +_contextvars_Context_get Python/clinic/context.c.h /^_contextvars_Context_get(PyContext *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_contextvars_Context_get_impl Python/context.c /^_contextvars_Context_get_impl(PyContext *self, PyObject *key,$/;" f file: +_contextvars_Context_items Python/clinic/context.c.h /^_contextvars_Context_items(PyContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_contextvars_Context_items_impl Python/context.c /^_contextvars_Context_items_impl(PyContext *self)$/;" f file: +_contextvars_Context_keys Python/clinic/context.c.h /^_contextvars_Context_keys(PyContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_contextvars_Context_keys_impl Python/context.c /^_contextvars_Context_keys_impl(PyContext *self)$/;" f file: +_contextvars_Context_values Python/clinic/context.c.h /^_contextvars_Context_values(PyContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_contextvars_Context_values_impl Python/context.c /^_contextvars_Context_values_impl(PyContext *self)$/;" f file: +_contextvars_copy_context Modules/clinic/_contextvarsmodule.c.h /^_contextvars_copy_context(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_contextvars_copy_context_impl Modules/_contextvarsmodule.c /^_contextvars_copy_context_impl(PyObject *module)$/;" f file: +_contextvars_exec Modules/_contextvarsmodule.c /^_contextvars_exec(PyObject *m)$/;" f file: +_contextvars_methods Modules/_contextvarsmodule.c /^static PyMethodDef _contextvars_methods[] = {$/;" v file: +_contextvars_slots Modules/_contextvarsmodule.c /^static struct PyModuleDef_Slot _contextvars_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +_contextvarsmodule Modules/_contextvarsmodule.c /^static struct PyModuleDef _contextvarsmodule = {$/;" v typeref:struct:PyModuleDef file: +_controlCharPat Lib/plistlib.py /^_controlCharPat = re.compile($/;" v +_control_app_writing Lib/asyncio/sslproto.py /^ def _control_app_writing(self):$/;" m class:SSLProtocol +_control_char_table Lib/http/server.py /^ _control_char_table = str.maketrans($/;" v class:BaseHTTPRequestHandler +_control_ssl_reading Lib/asyncio/sslproto.py /^ def _control_ssl_reading(self):$/;" m class:SSLProtocol +_conv_pad_pixels Lib/test/test_tkinter/test_widgets.py /^ _conv_pad_pixels = False$/;" v class:AbstractToplevelTest +_conv_pad_pixels Lib/test/test_tkinter/test_widgets.py /^ _conv_pad_pixels = False$/;" v class:MessageTest +_conv_pad_pixels Lib/test/test_tkinter/widget_tests.py /^ _conv_pad_pixels = None$/;" v class:AbstractWidgetTest +_conv_pixels Lib/test/test_tkinter/test_widgets.py /^ _conv_pixels = False$/;" v class:AbstractLabelTest +_conv_pixels Lib/test/test_tkinter/test_widgets.py /^ _conv_pixels = False$/;" v class:MenuTest +_conv_pixels Lib/test/test_tkinter/test_widgets.py /^ _conv_pixels = round$/;" v class:CanvasTest +_conv_pixels Lib/test/test_tkinter/test_widgets.py /^ _conv_pixels = round$/;" v class:MenubuttonTest +_conv_pixels Lib/test/test_tkinter/test_widgets.py /^ _conv_pixels = round$/;" v class:ScrollbarTest +_conv_pixels Lib/test/test_tkinter/widget_tests.py /^ _conv_pixels = round$/;" v class:AbstractWidgetTest +_conv_pixels Lib/test/test_ttk/test_widgets.py /^ _conv_pixels = False$/;" v class:AbstractToplevelTest +_conv_pixels Lib/test/test_ttk/test_widgets.py /^ _conv_pixels = False$/;" v class:LabelTest +_conv_pixels Lib/test/test_ttk/test_widgets.py /^ _conv_pixels = False$/;" v class:ProgressbarTest +_conv_pixels Lib/test/test_ttk/test_widgets.py /^ _conv_pixels = False$/;" v class:ScaleTest +_convert Lib/ast.py /^ def _convert(node):$/;" f function:literal_eval +_convert Lib/functools.py /^_convert = {$/;" v +_convert Lib/statistics.py /^def _convert(value, T):$/;" f +_convert_ Lib/enum.py /^ def _convert_(cls, name, module, filter, source=None, *, boundary=None, as_global=False):$/;" m class:EnumType +_convert_egg_info_reqs_to_simple_reqs Lib/importlib/metadata/__init__.py /^ def _convert_egg_info_reqs_to_simple_reqs(sections):$/;" m class:Distribution +_convert_flags Lib/difflib.py /^ def _convert_flags(self,fromlist,tolist,flaglist,context,numlines):$/;" m class:HtmlDiff +_convert_for_comparison Lib/_pydecimal.py /^def _convert_for_comparison(self, other, equality_op=False):$/;" f +_convert_future_exc Lib/asyncio/futures.py /^def _convert_future_exc(exc):$/;" f +_convert_name Lib/unittest/main.py /^def _convert_name(name):$/;" f +_convert_names Lib/unittest/main.py /^def _convert_names(names):$/;" f +_convert_num Lib/ast.py /^ def _convert_num(node):$/;" f function:literal_eval +_convert_other Lib/_pydecimal.py /^def _convert_other(other, raiseit=False, allow_float=False):$/;" f +_convert_select_pattern Lib/unittest/main.py /^def _convert_select_pattern(pattern):$/;" f +_convert_signed_num Lib/ast.py /^ def _convert_signed_num(node):$/;" f function:literal_eval +_convert_string_type Lib/wsgiref/handlers.py /^ def _convert_string_type(self, value, title):$/;" m class:BaseHandler +_convert_string_type Lib/wsgiref/headers.py /^ def _convert_string_type(self, value):$/;" m class:Headers +_convert_stringval Lib/tkinter/ttk.py /^def _convert_stringval(value):$/;" f +_convert_to_boolean Lib/configparser.py /^ def _convert_to_boolean(self, value):$/;" m class:RawConfigParser +_convert_to_v1 Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _convert_to_v1(self, contents):$/;" m class:ZoneInfoData +_cookie_attrs Lib/http/cookiejar.py /^ def _cookie_attrs(self, cookies):$/;" m class:CookieJar +_cookie_from_cookie_tuple Lib/http/cookiejar.py /^ def _cookie_from_cookie_tuple(self, tup, request):$/;" m class:CookieJar +_cookies_for_domain Lib/http/cookiejar.py /^ def _cookies_for_domain(self, domain, request):$/;" m class:CookieJar +_cookies_for_request Lib/http/cookiejar.py /^ def _cookies_for_request(self, request):$/;" m class:CookieJar +_cookies_from_attrs_set Lib/http/cookiejar.py /^ def _cookies_from_attrs_set(self, attrs_set, request):$/;" m class:CookieJar +_copy Lib/pty.py /^def _copy(master_fd, master_read=_read, stdin_read=_read):$/;" f +_copy Lib/test/test_shutil.py /^ def _copy(src, dst):$/;" f function:TestCopyTree.test_copytree_special_func +_copy Lib/test/test_shutil.py /^ def _copy(src, dst):$/;" f function:TestMove.test_move_dir_special_function +_copy Lib/test/test_shutil.py /^ def _copy(src, dst):$/;" f function:TestMove.test_move_file_special_function +_copy_archive Lib/zipapp.py /^def _copy_archive(archive, new_archive, interpreter=None):$/;" f +_copy_characters Objects/unicodeobject.c /^_copy_characters(PyObject *to, Py_ssize_t to_start,$/;" f file: +_copy_equal_base Modules/_decimal/libmpdec/mpdecimal.c /^_copy_equal_base(uint32_t **w, size_t wlen,$/;" f file: +_copy_file Lib/test/test_shutil.py /^ def _copy_file(self, method):$/;" m class:TestCopy +_copy_func_details Lib/unittest/mock.py /^def _copy_func_details(func, funcopy):$/;" f +_copy_future_state Lib/asyncio/futures.py /^def _copy_future_state(source, dest):$/;" f +_copy_immutable Lib/copy.py /^def _copy_immutable(x):$/;" f +_copy_items Lib/argparse.py /^def _copy_items(items):$/;" f +_copy_raw_string Modules/_xxsubinterpretersmodule.c /^_copy_raw_string(PyObject *strobj)$/;" f file: +_copy_test Lib/test/test_collections.py /^ def _copy_test(self, obj):$/;" m class:TestUserObjects +_copyfileobj_readinto Lib/shutil.py /^def _copyfileobj_readinto(fsrc, fdst, length=COPY_BUFSIZE):$/;" f +_copyfrombuf Modules/_io/winconsoleio.c /^_copyfrombuf(winconsoleio *self, char *buf, DWORD len)$/;" f file: +_copyreg_dispatch_table Lib/multiprocessing/reduction.py /^ _copyreg_dispatch_table = copyreg.dispatch_table$/;" v class:ForkingPickler +_copytree Lib/shutil.py /^def _copytree(entries, src, dst, symlinks, ignore, copy_function,$/;" f +_copyxattr Lib/shutil.py /^ def _copyxattr(*args, **kwargs):$/;" f +_copyxattr Lib/shutil.py /^ def _copyxattr(src, dst, *, follow_symlinks=True):$/;" f +_coro Lib/_collections_abc.py /^_coro = _coro()$/;" v +_coro Lib/_collections_abc.py /^async def _coro(): pass$/;" f +_coroutinestate Lib/test/test_inspect.py /^ def _coroutinestate(self):$/;" m class:TestGetCoroutineState +_cost Lib/test/test_functools.py /^ _cost = 1$/;" v class:CachedCostItem +_cost Lib/test/test_functools.py /^ _cost = 1$/;" v class:OptionallyCachedCostItem +_count Lib/mailbox.py /^ _count = 1 # This is used to generate unique file names.$/;" v class:Maildir +_count Lib/multiprocessing/synchronize.py /^ def _count(self):$/;" m class:Barrier +_count Lib/multiprocessing/synchronize.py /^ def _count(self, value):$/;" m class:Barrier +_count_diff_all_purpose Lib/unittest/util.py /^def _count_diff_all_purpose(actual, expected):$/;" f +_count_diff_hashable Lib/unittest/util.py /^def _count_diff_hashable(actual, expected):$/;" f +_count_elements Lib/collections/__init__.py /^def _count_elements(mapping, iterable):$/;" f +_count_righthand_zero_bits Lib/ipaddress.py /^def _count_righthand_zero_bits(number, bits):$/;" f +_count_to_size Lib/plistlib.py /^def _count_to_size(count):$/;" f +_counter Lib/concurrent/futures/thread.py /^ _counter = itertools.count().__next__$/;" v class:ThreadPoolExecutor +_counter Lib/threading.py /^_counter = _count(1).__next__$/;" v +_coverage Lib/test/test_trace.py /^ def _coverage(self, tracer, cmd=DEFAULT_SCRIPT):$/;" m class:TestCoverage +_cp Lib/test/test_functools.py /^ def _cp(_self):$/;" f function:TestCachedProperty.test_reuse_same_name +_cpp_extensions Tools/c-analyzer/distutils/_msvccompiler.py /^ _cpp_extensions = ['.cc', '.cpp', '.cxx']$/;" v class:MSVCCompiler +_cpp_extensions Tools/c-analyzer/distutils/bcppcompiler.py /^ _cpp_extensions = ['.cc', '.cpp', '.cxx']$/;" v class:BCPPCompiler +_cpp_extensions Tools/c-analyzer/distutils/msvc9compiler.py /^ _cpp_extensions = ['.cc', '.cpp', '.cxx']$/;" v class:MSVCCompiler +_cpp_extensions Tools/c-analyzer/distutils/msvccompiler.py /^ _cpp_extensions = ['.cc', '.cpp', '.cxx']$/;" v class:MSVCCompiler +_crash Lib/test/test_concurrent_futures/test_deadlock.py /^def _crash(delay=None):$/;" f +_crash_with_data Lib/test/test_concurrent_futures/test_deadlock.py /^def _crash_with_data(data):$/;" f +_crasher Lib/test/test_context.py /^ _crasher = None$/;" v class:HashKey +_crctable Lib/zipfile/__init__.py /^_crctable = None$/;" v +_create Lib/_pydatetime.py /^ def _create(cls, offset, name=None):$/;" m class:timezone +_create Lib/dbm/dumb.py /^ def _create(self, flag):$/;" m class:_Database +_create Lib/multiprocessing/managers.py /^ def _create(self, typeid, \/, *args, **kwds):$/;" m class:BaseManager +_create Lib/ssl.py /^ def _create(cls, incoming, outgoing, server_side=False,$/;" m class:SSLObject +_create Lib/ssl.py /^ def _create(cls, sock, server_side=False, do_handshake_on_connect=True,$/;" m class:SSLSocket +_create Lib/test/test_plistlib.py /^ def _create(self, fmt=None):$/;" m class:TestPlistlib +_create Lib/tkinter/__init__.py /^ def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={})$/;" m class:Canvas +_createClassOrModuleLevelException Lib/unittest/suite.py /^ def _createClassOrModuleLevelException(self, result, exc, method_name,$/;" m class:TestSuite +_create_ Lib/enum.py /^ def _create_(cls, class_name, names, *, module=None, qualname=None, type=None, start=1, boundary=None):$/;" m class:EnumType +_create_ Lib/test/test_enum.py /^ _create_= 11$/;" v class:_EnumTests.test_invalid_names.Wrong +_create_and_do_getcwd Lib/test/test_posix.py /^ def _create_and_do_getcwd(dirname, current_path_length = 0):$/;" f function:PosixTester.test_getcwd_long_pathnames +_create_and_install_waiters Lib/concurrent/futures/_base.py /^def _create_and_install_waiters(fs, return_when):$/;" f +_create_async_cb_wrapper Lib/contextlib.py /^ def _create_async_cb_wrapper(callback, \/, *args, **kwds):$/;" m class:AsyncExitStack +_create_async_exit_wrapper Lib/contextlib.py /^ def _create_async_exit_wrapper(cm, cm_exit):$/;" m class:AsyncExitStack +_create_auth_dict Lib/test/test_urllib2_localnet.py /^ def _create_auth_dict(self, auth_str):$/;" m class:DigestAuthHandler +_create_carefully Lib/mailbox.py /^def _create_carefully(path):$/;" f +_create_cb_wrapper Lib/contextlib.py /^ def _create_cb_wrapper(callback, \/, *args, **kwds):$/;" m class:_BaseExitStack +_create_client_ssl_context Lib/test/test_asyncio/test_ssl.py /^ def _create_client_ssl_context(self, *, disable_verify=True):$/;" m class:TestSSL +_create_connection Lib/test/test_httplib.py /^ def _create_connection(address, timeout=None, source_address=None):$/;" f function:TunnelTests.test_tunnel_leak +_create_connection Lib/test/test_httplib.py /^ def _create_connection(self, response_text):$/;" m class:TunnelTests +_create_connection_transport Lib/asyncio/base_events.py /^ async def _create_connection_transport($/;" m class:BaseEventLoop +_create_contextmanager_attribs Lib/test/test_contextlib.py /^ def _create_contextmanager_attribs(self):$/;" f +_create_contextmanager_attribs Lib/test/test_contextlib_async.py /^ def _create_contextmanager_attribs(self):$/;" m class:AsyncContextManagerTestCase +_create_default_https_context Lib/ssl.py /^_create_default_https_context = create_default_context$/;" v +_create_document Lib/xml/dom/minidom.py /^ def _create_document(self):$/;" m class:DOMImplementation +_create_entity Lib/xml/dom/minidom.py /^ def _create_entity(self, name, publicId, systemId, notationName):$/;" m class:Document +_create_exit_wrapper Lib/contextlib.py /^ def _create_exit_wrapper(cm, cm_exit):$/;" m class:_BaseExitStack +_create_files Lib/test/test_shutil.py /^ def _create_files(self, base_dir='dist'):$/;" m class:TestArchives +_create_fn Lib/dataclasses.py /^def _create_fn(name, args, body, *, globals=None, locals=None,$/;" f +_create_formatters Lib/logging/config.py /^def _create_formatters(cp):$/;" f +_create_fragment_test_nodes Lib/test/test_minidom.py /^ def _create_fragment_test_nodes(self):$/;" m class:MinidomTest +_create_gnu_long_header Lib/tarfile.py /^ def _create_gnu_long_header(cls, name, type, encoding, errors):$/;" m class:TarInfo +_create_header Lib/tarfile.py /^ def _create_header(info, format, encoding, errors):$/;" m class:TarInfo +_create_https_context Lib/http/client.py /^def _create_https_context(http_version):$/;" f +_create_infile Lib/test/test_json/test_tool.py /^ def _create_infile(self, data=None):$/;" m class:TestTool +_create_missing_dir_link Lib/test/test_os.py /^ def _create_missing_dir_link(self):$/;" m class:Win32SymlinkTests +_create_notation Lib/xml/dom/minidom.py /^ def _create_notation(self, name, publicId, systemId):$/;" m class:Document +_create_opener Lib/xml/dom/xmlbuilder.py /^ def _create_opener(self):$/;" m class:DOMEntityResolver +_create_option_list Lib/optparse.py /^ def _create_option_list(self):$/;" m class:OptionGroup +_create_option_list Lib/optparse.py /^ def _create_option_list(self):$/;" m class:OptionParser +_create_option_mappings Lib/optparse.py /^ def _create_option_mappings(self):$/;" m class:OptionContainer +_create_parser Lib/test/libregrtest/cmdline.py /^def _create_parser():$/;" f +_create_parser Lib/xml/sax/__init__.py /^def _create_parser(parser_name):$/;" f +_create_pax_generic_header Lib/tarfile.py /^ def _create_pax_generic_header(cls, pax_headers, type, encoding):$/;" m class:TarInfo +_create_payload Lib/tarfile.py /^ def _create_payload(payload):$/;" m class:TarInfo +_create_registry_data Lib/test/test_launcher.py /^ def _create_registry_data(root, key, value):$/;" f function:create_registry_data +_create_response Lib/multiprocessing/connection.py /^def _create_response(authkey, message):$/;" f +_create_server_getaddrinfo Lib/asyncio/base_events.py /^ async def _create_server_getaddrinfo(self, host, port, family, flags):$/;" m class:BaseEventLoop +_create_server_ssl_context Lib/test/test_asyncio/test_ssl.py /^ def _create_server_ssl_context(self, certfile, keyfile=None):$/;" m class:TestSSL +_create_simple_gzip_header Lib/gzip.py /^def _create_simple_gzip_header(compresslevel: int,$/;" f +_create_socket Lib/imaplib.py /^ def _create_socket(self, timeout):$/;" m class:IMAP4.IMAP4_SSL +_create_socket Lib/imaplib.py /^ def _create_socket(self, timeout):$/;" m class:IMAP4 +_create_socket Lib/nntplib.py /^ def _create_socket(self, timeout):$/;" m class:NNTP.NNTP_SSL +_create_socket Lib/nntplib.py /^ def _create_socket(self, timeout):$/;" m class:NNTP +_create_socket Lib/poplib.py /^ def _create_socket(self, timeout):$/;" m class:POP3.POP3_SSL +_create_socket Lib/poplib.py /^ def _create_socket(self, timeout):$/;" m class:POP3 +_create_ssl_context Lib/test/test_asyncio/test_events.py /^ def _create_ssl_context(self, certfile, keyfile=None):$/;" m class:EventLoopTestsMixin +_create_stdlib_context Lib/ssl.py /^_create_stdlib_context = _create_unverified_context$/;" v +_create_temporary Lib/mailbox.py /^def _create_temporary(path):$/;" f +_create_testtar Lib/test/test_tarfile.py /^ def _create_testtar(self, mode="w:"):$/;" m class:AppendTestBase +_create_tmp Lib/mailbox.py /^ def _create_tmp(self):$/;" m class:Maildir +_create_transport_context Lib/asyncio/sslproto.py /^def _create_transport_context(server_side, server_hostname):$/;" f +_create_tree Lib/pyclbr.py /^def _create_tree(fullmodule, path, fname, source, tree, inpackage):$/;" f +_create_tuple_for_X509_NAME Modules/_ssl.c /^_create_tuple_for_X509_NAME (_sslmodulestate *state, X509_NAME *xname)$/;" f file: +_create_tuple_for_attribute Modules/_ssl.c /^_create_tuple_for_attribute(_sslmodulestate *state,$/;" f file: +_create_underpth_exe Lib/test/test_site.py /^ def _create_underpth_exe(self, lines, exe_pth=True):$/;" m class:_pthFileTests +_create_unverified_context Lib/ssl.py /^def _create_unverified_context(protocol=None, *, cert_reqs=CERT_NONE,$/;" f +_create_zip_file PC/layout/main.py /^def _create_zip_file(ns):$/;" f +_created Lib/_pyio.py /^ _created = False$/;" v class:FileIO +_createenviron Lib/os.py /^def _createenviron():$/;" f +_createimage Lib/turtle.py /^ def _createimage(self, image):$/;" m class:TurtleScreenBase +_createline Lib/turtle.py /^ def _createline(self):$/;" m class:TurtleScreenBase +_createpoly Lib/turtle.py /^ def _createpoly(self):$/;" m class:TurtleScreenBase +_crtInstalledToken Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ int _crtInstalledToken;$/;" m class:PythonBootstrapperApplication file: +_crt_add3 Modules/_decimal/libmpdec/crt.c /^_crt_add3(mpd_uint_t w[3], mpd_uint_t v[3])$/;" f file: +_crt_div3 Modules/_decimal/libmpdec/crt.c /^_crt_div3(mpd_uint_t *w, const mpd_uint_t *u, mpd_uint_t v)$/;" f file: +_crt_mulP1P2_3 Modules/_decimal/libmpdec/crt.c /^_crt_mulP1P2_3(mpd_uint_t w[3], mpd_uint_t v)$/;" f file: +_crypt_slots Modules/_cryptmodule.c /^static PyModuleDef_Slot _crypt_slots[] = {$/;" v file: +_csv_clear Modules/_csv.c /^_csv_clear(PyObject *module)$/;" f file: +_csv_field_size_limit Modules/clinic/_csv.c.h /^_csv_field_size_limit(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_csv_field_size_limit_impl Modules/_csv.c /^_csv_field_size_limit_impl(PyObject *module, PyObject *new_limit)$/;" f file: +_csv_free Modules/_csv.c /^_csv_free(void *module)$/;" f file: +_csv_get_dialect Modules/clinic/_csv.c.h /^_csv_get_dialect(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_csv_get_dialect_impl Modules/_csv.c /^_csv_get_dialect_impl(PyObject *module, PyObject *name)$/;" f file: +_csv_list_dialects Modules/clinic/_csv.c.h /^_csv_list_dialects(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_csv_list_dialects_impl Modules/_csv.c /^_csv_list_dialects_impl(PyObject *module)$/;" f file: +_csv_state_from_type Modules/_csv.c /^_csv_state_from_type(PyTypeObject *type, const char *name)$/;" f file: +_csv_traverse Modules/_csv.c /^_csv_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_csv_unregister_dialect Modules/clinic/_csv.c.h /^_csv_unregister_dialect(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_csv_unregister_dialect_impl Modules/_csv.c /^_csv_unregister_dialect_impl(PyObject *module, PyObject *name)$/;" f file: +_csvmodule Modules/_csv.c /^static struct PyModuleDef _csvmodule = {$/;" v typeref:struct:PyModuleDef file: +_csvmodule Modules/_csv.c /^static struct PyModuleDef _csvmodule;$/;" v typeref:struct:PyModuleDef file: +_csvstate Modules/_csv.c /^} _csvstate;$/;" t typeref:struct:__anon620 file: +_cte_decoders Lib/email/_encoded_words.py /^_cte_decoders = {$/;" v +_cte_encode_length Lib/email/_encoded_words.py /^_cte_encode_length = {$/;" v +_cte_encoders Lib/email/_encoded_words.py /^_cte_encoders = {$/;" v +_ctoi Lib/curses/ascii.py /^def _ctoi(c):$/;" f +_ctrl_handler Lib/test/win_console_handler.py /^def _ctrl_handler(sig):$/;" f +_ctypes_add_objects Modules/_ctypes/_ctypes.c /^_ctypes_add_objects(PyObject *mod)$/;" f file: +_ctypes_add_types Modules/_ctypes/_ctypes.c /^_ctypes_add_types(PyObject *mod)$/;" f file: +_ctypes_alloc_callback Modules/_ctypes/callbacks.c /^CThunkObject *_ctypes_alloc_callback(PyObject *callable,$/;" f +_ctypes_alloc_format_padding Modules/_ctypes/stgdict.c /^_ctypes_alloc_format_padding(const char *prefix, Py_ssize_t padding)$/;" f +_ctypes_alloc_format_string Modules/_ctypes/_ctypes.c /^_ctypes_alloc_format_string(const char *prefix, const char *suffix)$/;" f +_ctypes_alloc_format_string_for_type Modules/_ctypes/_ctypes.c /^_ctypes_alloc_format_string_for_type(char code, int big_endian)$/;" f file: +_ctypes_alloc_format_string_with_shape Modules/_ctypes/_ctypes.c /^_ctypes_alloc_format_string_with_shape(int ndim, const Py_ssize_t *shape,$/;" f +_ctypes_callproc Modules/_ctypes/callproc.c /^PyObject *_ctypes_callproc(PPROC pProc,$/;" f +_ctypes_extend_error Modules/_ctypes/callproc.c /^void _ctypes_extend_error(PyObject *exc_class, const char *fmt, ...)$/;" f +_ctypes_get_errobj Modules/_ctypes/callproc.c /^_ctypes_get_errobj(int **pspace)$/;" f +_ctypes_get_ffi_type Modules/_ctypes/callproc.c /^ffi_type *_ctypes_get_ffi_type(PyObject *obj)$/;" f +_ctypes_get_fielddesc Modules/_ctypes/cfield.c /^_ctypes_get_fielddesc(const char *fmt)$/;" f +_ctypes_init_fielddesc Modules/_ctypes/cfield.c /^_ctypes_init_fielddesc(void)$/;" f +_ctypes_mod_exec Modules/_ctypes/_ctypes.c /^_ctypes_mod_exec(PyObject *mod)$/;" f file: +_ctypes_module_methods Modules/_ctypes/callproc.c /^PyMethodDef _ctypes_module_methods[] = {$/;" v +_ctypes_ptrtype_cache Modules/_ctypes/_ctypes.c /^PyObject *_ctypes_ptrtype_cache = NULL;$/;" v +_ctypes_simple_instance Modules/_ctypes/_ctypes.c /^int _ctypes_simple_instance(PyObject *obj)$/;" f +_ctypes_test_slots Modules/_ctypes/_ctypes_test.c /^static struct PyModuleDef_Slot _ctypes_test_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +_ctypes_testmodule Modules/_ctypes/_ctypes_test.c /^static struct PyModuleDef _ctypes_testmodule = {$/;" v typeref:struct:PyModuleDef file: +_ctypesmodule Modules/_ctypes/_ctypes.c /^static struct PyModuleDef _ctypesmodule = {$/;" v typeref:struct:PyModuleDef file: +_current Lib/hmac.py /^ def _current(self):$/;" m class:HMAC +_current_context_var Lib/_pydecimal.py /^_current_context_var = contextvars.ContextVar('decimal_context')$/;" v +_current_domain Lib/gettext.py /^_current_domain = 'messages'$/;" v +_current_process Lib/multiprocessing/process.py /^_current_process = _MainProcess()$/;" v +_current_tasks Lib/asyncio/tasks.py /^_current_tasks = {}$/;" v +_curses_baudrate Modules/clinic/_cursesmodule.c.h /^_curses_baudrate(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_beep Modules/clinic/_cursesmodule.c.h /^_curses_beep(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_can_change_color Modules/clinic/_cursesmodule.c.h /^_curses_can_change_color(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_cbreak Modules/clinic/_cursesmodule.c.h /^_curses_cbreak(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_color_content Modules/clinic/_cursesmodule.c.h /^_curses_color_content(PyObject *module, PyObject *arg)$/;" f +_curses_color_content_impl Modules/_cursesmodule.c /^_curses_color_content_impl(PyObject *module, int color_number)$/;" f file: +_curses_color_pair Modules/clinic/_cursesmodule.c.h /^_curses_color_pair(PyObject *module, PyObject *arg)$/;" f +_curses_color_pair_impl Modules/_cursesmodule.c /^_curses_color_pair_impl(PyObject *module, int pair_number)$/;" f file: +_curses_curs_set Modules/clinic/_cursesmodule.c.h /^_curses_curs_set(PyObject *module, PyObject *arg)$/;" f +_curses_curs_set_impl Modules/_cursesmodule.c /^_curses_curs_set_impl(PyObject *module, int visibility)$/;" f file: +_curses_def_prog_mode Modules/clinic/_cursesmodule.c.h /^_curses_def_prog_mode(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_def_shell_mode Modules/clinic/_cursesmodule.c.h /^_curses_def_shell_mode(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_delay_output Modules/clinic/_cursesmodule.c.h /^_curses_delay_output(PyObject *module, PyObject *arg)$/;" f +_curses_delay_output_impl Modules/_cursesmodule.c /^_curses_delay_output_impl(PyObject *module, int ms)$/;" f file: +_curses_doupdate Modules/clinic/_cursesmodule.c.h /^_curses_doupdate(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_echo Modules/clinic/_cursesmodule.c.h /^_curses_echo(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_endwin Modules/clinic/_cursesmodule.c.h /^_curses_endwin(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_erasechar Modules/clinic/_cursesmodule.c.h /^_curses_erasechar(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_erasechar_impl Modules/_cursesmodule.c /^_curses_erasechar_impl(PyObject *module)$/;" f file: +_curses_filter Modules/clinic/_cursesmodule.c.h /^_curses_filter(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_filter_impl Modules/_cursesmodule.c /^_curses_filter_impl(PyObject *module)$/;" f file: +_curses_flash Modules/clinic/_cursesmodule.c.h /^_curses_flash(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_flushinp Modules/clinic/_cursesmodule.c.h /^_curses_flushinp(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_get_escdelay Modules/clinic/_cursesmodule.c.h /^_curses_get_escdelay(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_get_escdelay_impl Modules/_cursesmodule.c /^_curses_get_escdelay_impl(PyObject *module)$/;" f file: +_curses_get_tabsize Modules/clinic/_cursesmodule.c.h /^_curses_get_tabsize(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_get_tabsize_impl Modules/_cursesmodule.c /^_curses_get_tabsize_impl(PyObject *module)$/;" f file: +_curses_getmouse Modules/clinic/_cursesmodule.c.h /^_curses_getmouse(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_getmouse_impl Modules/_cursesmodule.c /^_curses_getmouse_impl(PyObject *module)$/;" f file: +_curses_getsyx Modules/clinic/_cursesmodule.c.h /^_curses_getsyx(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_getsyx_impl Modules/_cursesmodule.c /^_curses_getsyx_impl(PyObject *module)$/;" f file: +_curses_getwin Modules/_cursesmodule.c /^_curses_getwin(PyObject *module, PyObject *file)$/;" f file: +_curses_halfdelay Modules/clinic/_cursesmodule.c.h /^_curses_halfdelay(PyObject *module, PyObject *arg)$/;" f +_curses_halfdelay_impl Modules/_cursesmodule.c /^_curses_halfdelay_impl(PyObject *module, unsigned char tenths)$/;" f file: +_curses_has_colors Modules/clinic/_cursesmodule.c.h /^_curses_has_colors(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_has_extended_color_support Modules/clinic/_cursesmodule.c.h /^_curses_has_extended_color_support(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_has_extended_color_support_impl Modules/_cursesmodule.c /^_curses_has_extended_color_support_impl(PyObject *module)$/;" f file: +_curses_has_ic Modules/clinic/_cursesmodule.c.h /^_curses_has_ic(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_has_il Modules/clinic/_cursesmodule.c.h /^_curses_has_il(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_has_key Modules/clinic/_cursesmodule.c.h /^_curses_has_key(PyObject *module, PyObject *arg)$/;" f +_curses_has_key_impl Modules/_cursesmodule.c /^_curses_has_key_impl(PyObject *module, int key)$/;" f file: +_curses_init_color Modules/clinic/_cursesmodule.c.h /^_curses_init_color(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_init_color_impl Modules/_cursesmodule.c /^_curses_init_color_impl(PyObject *module, int color_number, short r, short g,$/;" f file: +_curses_init_pair Modules/clinic/_cursesmodule.c.h /^_curses_init_pair(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_init_pair_impl Modules/_cursesmodule.c /^_curses_init_pair_impl(PyObject *module, int pair_number, int fg, int bg)$/;" f file: +_curses_initscr Modules/clinic/_cursesmodule.c.h /^_curses_initscr(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_initscr_impl Modules/_cursesmodule.c /^_curses_initscr_impl(PyObject *module)$/;" f file: +_curses_intrflush Modules/clinic/_cursesmodule.c.h /^_curses_intrflush(PyObject *module, PyObject *arg)$/;" f +_curses_intrflush_impl Modules/_cursesmodule.c /^_curses_intrflush_impl(PyObject *module, int flag)$/;" f file: +_curses_is_term_resized Modules/clinic/_cursesmodule.c.h /^_curses_is_term_resized(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_is_term_resized_impl Modules/_cursesmodule.c /^_curses_is_term_resized_impl(PyObject *module, int nlines, int ncols)$/;" f file: +_curses_isendwin Modules/clinic/_cursesmodule.c.h /^_curses_isendwin(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_keyname Modules/clinic/_cursesmodule.c.h /^_curses_keyname(PyObject *module, PyObject *arg)$/;" f +_curses_keyname_impl Modules/_cursesmodule.c /^_curses_keyname_impl(PyObject *module, int key)$/;" f file: +_curses_killchar Modules/clinic/_cursesmodule.c.h /^_curses_killchar(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_killchar_impl Modules/_cursesmodule.c /^_curses_killchar_impl(PyObject *module)$/;" f file: +_curses_longname Modules/clinic/_cursesmodule.c.h /^_curses_longname(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_meta Modules/clinic/_cursesmodule.c.h /^_curses_meta(PyObject *module, PyObject *arg)$/;" f +_curses_meta_impl Modules/_cursesmodule.c /^_curses_meta_impl(PyObject *module, int yes)$/;" f file: +_curses_mouseinterval Modules/clinic/_cursesmodule.c.h /^_curses_mouseinterval(PyObject *module, PyObject *arg)$/;" f +_curses_mouseinterval_impl Modules/_cursesmodule.c /^_curses_mouseinterval_impl(PyObject *module, int interval)$/;" f file: +_curses_mousemask Modules/clinic/_cursesmodule.c.h /^_curses_mousemask(PyObject *module, PyObject *arg)$/;" f +_curses_mousemask_impl Modules/_cursesmodule.c /^_curses_mousemask_impl(PyObject *module, unsigned long newmask)$/;" f file: +_curses_napms Modules/clinic/_cursesmodule.c.h /^_curses_napms(PyObject *module, PyObject *arg)$/;" f +_curses_napms_impl Modules/_cursesmodule.c /^_curses_napms_impl(PyObject *module, int ms)$/;" f file: +_curses_newpad Modules/clinic/_cursesmodule.c.h /^_curses_newpad(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_newpad_impl Modules/_cursesmodule.c /^_curses_newpad_impl(PyObject *module, int nlines, int ncols)$/;" f file: +_curses_newwin Modules/clinic/_cursesmodule.c.h /^_curses_newwin(PyObject *module, PyObject *args)$/;" f +_curses_newwin_impl Modules/_cursesmodule.c /^_curses_newwin_impl(PyObject *module, int nlines, int ncols,$/;" f file: +_curses_nl Modules/clinic/_cursesmodule.c.h /^_curses_nl(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_nocbreak Modules/clinic/_cursesmodule.c.h /^_curses_nocbreak(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_noecho Modules/clinic/_cursesmodule.c.h /^_curses_noecho(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_nonl Modules/clinic/_cursesmodule.c.h /^_curses_nonl(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_noqiflush Modules/clinic/_cursesmodule.c.h /^_curses_noqiflush(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_noraw Modules/clinic/_cursesmodule.c.h /^_curses_noraw(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_pair_content Modules/clinic/_cursesmodule.c.h /^_curses_pair_content(PyObject *module, PyObject *arg)$/;" f +_curses_pair_content_impl Modules/_cursesmodule.c /^_curses_pair_content_impl(PyObject *module, int pair_number)$/;" f file: +_curses_pair_number Modules/clinic/_cursesmodule.c.h /^_curses_pair_number(PyObject *module, PyObject *arg)$/;" f +_curses_pair_number_impl Modules/_cursesmodule.c /^_curses_pair_number_impl(PyObject *module, int attr)$/;" f file: +_curses_panel_bottom_panel Modules/clinic/_curses_panel.c.h /^_curses_panel_bottom_panel(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_panel_bottom_panel_impl Modules/_curses_panel.c /^_curses_panel_bottom_panel_impl(PyObject *module)$/;" f file: +_curses_panel_clear Modules/_curses_panel.c /^_curses_panel_clear(PyObject *mod)$/;" f file: +_curses_panel_exec Modules/_curses_panel.c /^_curses_panel_exec(PyObject *mod)$/;" f file: +_curses_panel_free Modules/_curses_panel.c /^_curses_panel_free(void *mod)$/;" f file: +_curses_panel_new_panel Modules/clinic/_curses_panel.c.h /^_curses_panel_new_panel(PyObject *module, PyObject *arg)$/;" f +_curses_panel_new_panel_impl Modules/_curses_panel.c /^_curses_panel_new_panel_impl(PyObject *module, PyCursesWindowObject *win)$/;" f file: +_curses_panel_panel_above Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_above(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_curses_panel_panel_above_impl Modules/_curses_panel.c /^_curses_panel_panel_above_impl(PyCursesPanelObject *self)$/;" f file: +_curses_panel_panel_below Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_below(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_curses_panel_panel_below_impl Modules/_curses_panel.c /^_curses_panel_panel_below_impl(PyCursesPanelObject *self)$/;" f file: +_curses_panel_panel_bottom Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_bottom(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_bottom_impl Modules/_curses_panel.c /^_curses_panel_panel_bottom_impl(PyCursesPanelObject *self, PyTypeObject *cls)$/;" f file: +_curses_panel_panel_hidden Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_hidden(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_curses_panel_panel_hidden_impl Modules/_curses_panel.c /^_curses_panel_panel_hidden_impl(PyCursesPanelObject *self)$/;" f file: +_curses_panel_panel_hide Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_hide(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_hide_impl Modules/_curses_panel.c /^_curses_panel_panel_hide_impl(PyCursesPanelObject *self, PyTypeObject *cls)$/;" f file: +_curses_panel_panel_move Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_move(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_move_impl Modules/_curses_panel.c /^_curses_panel_panel_move_impl(PyCursesPanelObject *self, PyTypeObject *cls,$/;" f file: +_curses_panel_panel_replace Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_replace(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_replace_impl Modules/_curses_panel.c /^_curses_panel_panel_replace_impl(PyCursesPanelObject *self,$/;" f file: +_curses_panel_panel_set_userptr Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_set_userptr(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_set_userptr_impl Modules/_curses_panel.c /^_curses_panel_panel_set_userptr_impl(PyCursesPanelObject *self,$/;" f file: +_curses_panel_panel_show Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_show(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_show_impl Modules/_curses_panel.c /^_curses_panel_panel_show_impl(PyCursesPanelObject *self, PyTypeObject *cls)$/;" f file: +_curses_panel_panel_top Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_top(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_top_impl Modules/_curses_panel.c /^_curses_panel_panel_top_impl(PyCursesPanelObject *self, PyTypeObject *cls)$/;" f file: +_curses_panel_panel_userptr Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_userptr(PyCursesPanelObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_panel_panel_userptr_impl Modules/_curses_panel.c /^_curses_panel_panel_userptr_impl(PyCursesPanelObject *self,$/;" f file: +_curses_panel_panel_window Modules/clinic/_curses_panel.c.h /^_curses_panel_panel_window(PyCursesPanelObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_curses_panel_panel_window_impl Modules/_curses_panel.c /^_curses_panel_panel_window_impl(PyCursesPanelObject *self)$/;" f file: +_curses_panel_state Modules/_curses_panel.c /^} _curses_panel_state;$/;" t typeref:struct:__anon650 file: +_curses_panel_top_panel Modules/clinic/_curses_panel.c.h /^_curses_panel_top_panel(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_panel_top_panel_impl Modules/_curses_panel.c /^_curses_panel_top_panel_impl(PyObject *module)$/;" f file: +_curses_panel_traverse Modules/_curses_panel.c /^_curses_panel_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +_curses_panel_update_panels Modules/clinic/_curses_panel.c.h /^_curses_panel_update_panels(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_panel_update_panels_impl Modules/_curses_panel.c /^_curses_panel_update_panels_impl(PyObject *module)$/;" f file: +_curses_panelmodule Modules/_curses_panel.c /^static struct PyModuleDef _curses_panelmodule = {$/;" v typeref:struct:PyModuleDef file: +_curses_putp Modules/clinic/_cursesmodule.c.h /^_curses_putp(PyObject *module, PyObject *arg)$/;" f +_curses_putp_impl Modules/_cursesmodule.c /^_curses_putp_impl(PyObject *module, const char *string)$/;" f file: +_curses_qiflush Modules/clinic/_cursesmodule.c.h /^_curses_qiflush(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_qiflush_impl Modules/_cursesmodule.c /^_curses_qiflush_impl(PyObject *module, int flag)$/;" f file: +_curses_raw Modules/clinic/_cursesmodule.c.h /^_curses_raw(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_reset_prog_mode Modules/clinic/_cursesmodule.c.h /^_curses_reset_prog_mode(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_reset_shell_mode Modules/clinic/_cursesmodule.c.h /^_curses_reset_shell_mode(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_resetty Modules/clinic/_cursesmodule.c.h /^_curses_resetty(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_resize_term Modules/clinic/_cursesmodule.c.h /^_curses_resize_term(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_resize_term_impl Modules/_cursesmodule.c /^_curses_resize_term_impl(PyObject *module, int nlines, int ncols)$/;" f file: +_curses_resizeterm Modules/clinic/_cursesmodule.c.h /^_curses_resizeterm(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_resizeterm_impl Modules/_cursesmodule.c /^_curses_resizeterm_impl(PyObject *module, int nlines, int ncols)$/;" f file: +_curses_savetty Modules/clinic/_cursesmodule.c.h /^_curses_savetty(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_set_escdelay Modules/clinic/_cursesmodule.c.h /^_curses_set_escdelay(PyObject *module, PyObject *arg)$/;" f +_curses_set_escdelay_impl Modules/_cursesmodule.c /^_curses_set_escdelay_impl(PyObject *module, int ms)$/;" f file: +_curses_set_tabsize Modules/clinic/_cursesmodule.c.h /^_curses_set_tabsize(PyObject *module, PyObject *arg)$/;" f +_curses_set_tabsize_impl Modules/_cursesmodule.c /^_curses_set_tabsize_impl(PyObject *module, int size)$/;" f file: +_curses_setsyx Modules/clinic/_cursesmodule.c.h /^_curses_setsyx(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_setsyx_impl Modules/_cursesmodule.c /^_curses_setsyx_impl(PyObject *module, int y, int x)$/;" f file: +_curses_setupterm Modules/clinic/_cursesmodule.c.h /^_curses_setupterm(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_curses_setupterm_impl Modules/_cursesmodule.c /^_curses_setupterm_impl(PyObject *module, const char *term, int fd)$/;" f file: +_curses_slots Modules/_curses_panel.c /^static PyModuleDef_Slot _curses_slots[] = {$/;" v file: +_curses_start_color Modules/clinic/_cursesmodule.c.h /^_curses_start_color(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_start_color_impl Modules/_cursesmodule.c /^_curses_start_color_impl(PyObject *module)$/;" f file: +_curses_termattrs Modules/clinic/_cursesmodule.c.h /^_curses_termattrs(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_termname Modules/clinic/_cursesmodule.c.h /^_curses_termname(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_tigetflag Modules/clinic/_cursesmodule.c.h /^_curses_tigetflag(PyObject *module, PyObject *arg)$/;" f +_curses_tigetflag_impl Modules/_cursesmodule.c /^_curses_tigetflag_impl(PyObject *module, const char *capname)$/;" f file: +_curses_tigetnum Modules/clinic/_cursesmodule.c.h /^_curses_tigetnum(PyObject *module, PyObject *arg)$/;" f +_curses_tigetnum_impl Modules/_cursesmodule.c /^_curses_tigetnum_impl(PyObject *module, const char *capname)$/;" f file: +_curses_tigetstr Modules/clinic/_cursesmodule.c.h /^_curses_tigetstr(PyObject *module, PyObject *arg)$/;" f +_curses_tigetstr_impl Modules/_cursesmodule.c /^_curses_tigetstr_impl(PyObject *module, const char *capname)$/;" f file: +_curses_tparm Modules/clinic/_cursesmodule.c.h /^_curses_tparm(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_tparm_impl Modules/_cursesmodule.c /^_curses_tparm_impl(PyObject *module, const char *str, int i1, int i2, int i3,$/;" f file: +_curses_typeahead Modules/clinic/_cursesmodule.c.h /^_curses_typeahead(PyObject *module, PyObject *arg)$/;" f +_curses_typeahead_impl Modules/_cursesmodule.c /^_curses_typeahead_impl(PyObject *module, int fd)$/;" f file: +_curses_unctrl Modules/_cursesmodule.c /^_curses_unctrl(PyObject *module, PyObject *ch)$/;" f file: +_curses_unget_wch Modules/_cursesmodule.c /^_curses_unget_wch(PyObject *module, PyObject *ch)$/;" f file: +_curses_ungetch Modules/_cursesmodule.c /^_curses_ungetch(PyObject *module, PyObject *ch)$/;" f file: +_curses_ungetmouse Modules/clinic/_cursesmodule.c.h /^_curses_ungetmouse(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_ungetmouse_impl Modules/_cursesmodule.c /^_curses_ungetmouse_impl(PyObject *module, short id, int x, int y, int z,$/;" f file: +_curses_update_lines_cols Modules/clinic/_cursesmodule.c.h /^_curses_update_lines_cols(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_update_lines_cols_impl Modules/_cursesmodule.c /^_curses_update_lines_cols_impl(PyObject *module)$/;" f file: +_curses_use_default_colors Modules/clinic/_cursesmodule.c.h /^_curses_use_default_colors(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_curses_use_default_colors_impl Modules/_cursesmodule.c /^_curses_use_default_colors_impl(PyObject *module)$/;" f file: +_curses_use_env Modules/clinic/_cursesmodule.c.h /^_curses_use_env(PyObject *module, PyObject *arg)$/;" f +_curses_use_env_impl Modules/_cursesmodule.c /^_curses_use_env_impl(PyObject *module, int flag)$/;" f file: +_curses_window_addch Modules/clinic/_cursesmodule.c.h /^_curses_window_addch(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_addch_impl Modules/_cursesmodule.c /^_curses_window_addch_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_addnstr Modules/clinic/_cursesmodule.c.h /^_curses_window_addnstr(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_addnstr_impl Modules/_cursesmodule.c /^_curses_window_addnstr_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_addstr Modules/clinic/_cursesmodule.c.h /^_curses_window_addstr(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_addstr_impl Modules/_cursesmodule.c /^_curses_window_addstr_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_attroff Modules/clinic/_cursesmodule.c.h /^_curses_window_attroff(PyCursesWindowObject *self, PyObject *arg)$/;" f +_curses_window_attroff_impl Modules/_cursesmodule.c /^_curses_window_attroff_impl(PyCursesWindowObject *self, long attr)$/;" f file: +_curses_window_attron Modules/clinic/_cursesmodule.c.h /^_curses_window_attron(PyCursesWindowObject *self, PyObject *arg)$/;" f +_curses_window_attron_impl Modules/_cursesmodule.c /^_curses_window_attron_impl(PyCursesWindowObject *self, long attr)$/;" f file: +_curses_window_attrset Modules/clinic/_cursesmodule.c.h /^_curses_window_attrset(PyCursesWindowObject *self, PyObject *arg)$/;" f +_curses_window_attrset_impl Modules/_cursesmodule.c /^_curses_window_attrset_impl(PyCursesWindowObject *self, long attr)$/;" f file: +_curses_window_bkgd Modules/clinic/_cursesmodule.c.h /^_curses_window_bkgd(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_window_bkgd_impl Modules/_cursesmodule.c /^_curses_window_bkgd_impl(PyCursesWindowObject *self, PyObject *ch, long attr)$/;" f file: +_curses_window_bkgdset Modules/clinic/_cursesmodule.c.h /^_curses_window_bkgdset(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_window_bkgdset_impl Modules/_cursesmodule.c /^_curses_window_bkgdset_impl(PyCursesWindowObject *self, PyObject *ch,$/;" f file: +_curses_window_border Modules/clinic/_cursesmodule.c.h /^_curses_window_border(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_window_border_impl Modules/_cursesmodule.c /^_curses_window_border_impl(PyCursesWindowObject *self, PyObject *ls,$/;" f file: +_curses_window_box Modules/clinic/_cursesmodule.c.h /^_curses_window_box(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_box_impl Modules/_cursesmodule.c /^_curses_window_box_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_delch Modules/clinic/_cursesmodule.c.h /^_curses_window_delch(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_delch_impl Modules/_cursesmodule.c /^_curses_window_delch_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_derwin Modules/clinic/_cursesmodule.c.h /^_curses_window_derwin(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_derwin_impl Modules/_cursesmodule.c /^_curses_window_derwin_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_echochar Modules/clinic/_cursesmodule.c.h /^_curses_window_echochar(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_window_echochar_impl Modules/_cursesmodule.c /^_curses_window_echochar_impl(PyCursesWindowObject *self, PyObject *ch,$/;" f file: +_curses_window_enclose Modules/clinic/_cursesmodule.c.h /^_curses_window_enclose(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_window_enclose_impl Modules/_cursesmodule.c /^_curses_window_enclose_impl(PyCursesWindowObject *self, int y, int x)$/;" f file: +_curses_window_get_wch Modules/clinic/_cursesmodule.c.h /^_curses_window_get_wch(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_get_wch_impl Modules/_cursesmodule.c /^_curses_window_get_wch_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_getbkgd Modules/clinic/_cursesmodule.c.h /^_curses_window_getbkgd(PyCursesWindowObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_curses_window_getbkgd_impl Modules/_cursesmodule.c /^_curses_window_getbkgd_impl(PyCursesWindowObject *self)$/;" f file: +_curses_window_getch Modules/clinic/_cursesmodule.c.h /^_curses_window_getch(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_getch_impl Modules/_cursesmodule.c /^_curses_window_getch_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_getkey Modules/clinic/_cursesmodule.c.h /^_curses_window_getkey(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_getkey_impl Modules/_cursesmodule.c /^_curses_window_getkey_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_hline Modules/clinic/_cursesmodule.c.h /^_curses_window_hline(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_hline_impl Modules/_cursesmodule.c /^_curses_window_hline_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_inch Modules/clinic/_cursesmodule.c.h /^_curses_window_inch(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_inch_impl Modules/_cursesmodule.c /^_curses_window_inch_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_insch Modules/clinic/_cursesmodule.c.h /^_curses_window_insch(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_insch_impl Modules/_cursesmodule.c /^_curses_window_insch_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_insnstr Modules/clinic/_cursesmodule.c.h /^_curses_window_insnstr(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_insnstr_impl Modules/_cursesmodule.c /^_curses_window_insnstr_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_insstr Modules/clinic/_cursesmodule.c.h /^_curses_window_insstr(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_insstr_impl Modules/_cursesmodule.c /^_curses_window_insstr_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_is_linetouched Modules/clinic/_cursesmodule.c.h /^_curses_window_is_linetouched(PyCursesWindowObject *self, PyObject *arg)$/;" f +_curses_window_is_linetouched_impl Modules/_cursesmodule.c /^_curses_window_is_linetouched_impl(PyCursesWindowObject *self, int line)$/;" f file: +_curses_window_noutrefresh Modules/clinic/_cursesmodule.c.h /^_curses_window_noutrefresh(PyCursesWindowObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_curses_window_noutrefresh Modules/clinic/_cursesmodule.c.h /^_curses_window_noutrefresh(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_noutrefresh_impl Modules/_cursesmodule.c /^_curses_window_noutrefresh_impl(PyCursesWindowObject *self,$/;" f file: +_curses_window_overlay Modules/clinic/_cursesmodule.c.h /^_curses_window_overlay(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_overlay_impl Modules/_cursesmodule.c /^_curses_window_overlay_impl(PyCursesWindowObject *self,$/;" f file: +_curses_window_overwrite Modules/clinic/_cursesmodule.c.h /^_curses_window_overwrite(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_overwrite_impl Modules/_cursesmodule.c /^_curses_window_overwrite_impl(PyCursesWindowObject *self,$/;" f file: +_curses_window_putwin Modules/_cursesmodule.c /^_curses_window_putwin(PyCursesWindowObject *self, PyObject *file)$/;" f file: +_curses_window_redrawln Modules/clinic/_cursesmodule.c.h /^_curses_window_redrawln(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_window_redrawln_impl Modules/_cursesmodule.c /^_curses_window_redrawln_impl(PyCursesWindowObject *self, int beg, int num)$/;" f file: +_curses_window_refresh Modules/clinic/_cursesmodule.c.h /^_curses_window_refresh(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_refresh_impl Modules/_cursesmodule.c /^_curses_window_refresh_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_scroll Modules/clinic/_cursesmodule.c.h /^_curses_window_scroll(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_scroll_impl Modules/_cursesmodule.c /^_curses_window_scroll_impl(PyCursesWindowObject *self, int group_right_1,$/;" f file: +_curses_window_setscrreg Modules/clinic/_cursesmodule.c.h /^_curses_window_setscrreg(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_curses_window_setscrreg_impl Modules/_cursesmodule.c /^_curses_window_setscrreg_impl(PyCursesWindowObject *self, int top,$/;" f file: +_curses_window_subwin Modules/clinic/_cursesmodule.c.h /^_curses_window_subwin(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_subwin_impl Modules/_cursesmodule.c /^_curses_window_subwin_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_curses_window_touchline Modules/clinic/_cursesmodule.c.h /^_curses_window_touchline(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_touchline_impl Modules/_cursesmodule.c /^_curses_window_touchline_impl(PyCursesWindowObject *self, int start,$/;" f file: +_curses_window_vline Modules/clinic/_cursesmodule.c.h /^_curses_window_vline(PyCursesWindowObject *self, PyObject *args)$/;" f +_curses_window_vline_impl Modules/_cursesmodule.c /^_curses_window_vline_impl(PyCursesWindowObject *self, int group_left_1,$/;" f file: +_cursesmodule Modules/_cursesmodule.c /^static struct PyModuleDef _cursesmodule = {$/;" v typeref:struct:PyModuleDef file: +_custom_mock_runnable_test Lib/test/test_unittest/testmock/testasync.py /^ async def _custom_mock_runnable_test(*args):$/;" f function:AsyncMockAssert.test_awaits_asserts_with_spec_and_any +_cut_port_re Lib/urllib/request.py /^_cut_port_re = re.compile(r":\\d+$", re.ASCII)$/;" v +_daemon_threads_allowed Lib/threading.py /^_daemon_threads_allowed = _thread.daemon_threads_allowed$/;" v +_dangling Lib/multiprocessing/process.py /^_dangling = WeakSet()$/;" v +_dangling Lib/threading.py /^_dangling = WeakSet()$/;" v +_data Include/internal/pycore_global_strings.h /^ uint8_t _data[2];$/;" m struct:_Py_global_strings::__anon7 +_data Include/internal/pycore_global_strings.h /^ uint8_t _data[2];$/;" m struct:_Py_global_strings::__anon8 +_data_as_row Tools/c-analyzer/c_parser/info.py /^ def _data_as_row(cls, data, extra, colnames):$/;" m class:HighlevelParsedItem +_data_received Lib/asyncio/proactor_events.py /^ def _data_received(self, data, length):$/;" m class:_ProactorReadPipeTransport +_dataclass_getstate Lib/dataclasses.py /^def _dataclass_getstate(self):$/;" f +_dataclass_repr Lib/enum.py /^def _dataclass_repr(self):$/;" f +_dataclass_setstate Lib/dataclasses.py /^def _dataclass_setstate(self, state):$/;" f +_dateParser Lib/plistlib.py /^_dateParser = re.compile(r"(?P\\d\\d\\d\\d)(?:-(?P\\d\\d)(?:-(?P\\d\\d)(?:T(?P\\d\\d)(?::(?P\\d\\d)(?::(?P\\d\\d))?)?)?)?)?Z", re.ASCII)$/;" v +_date_class Lib/_pydatetime.py /^_date_class = date # so functions w\/ args named "date" can get at the class$/;" v +_date_from_string Lib/plistlib.py /^def _date_from_string(s):$/;" f +_date_to_string Lib/plistlib.py /^def _date_to_string(d):$/;" f +_datetime Lib/xmlrpc/client.py /^def _datetime(data):$/;" f +_datetime_exec Modules/_datetimemodule.c /^_datetime_exec(PyObject *module)$/;" f file: +_datetime_type Lib/xmlrpc/client.py /^def _datetime_type(data):$/;" f +_day0 Lib/xmlrpc/client.py /^_day0 = datetime(1, 1, 1)$/;" v +_daynames Lib/email/_parseaddr.py /^_daynames = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']$/;" v +_days Lib/calendar.py /^ _days = [datetime.date(2001, 1, i+1).strftime for i in range(7)]$/;" v class:_localized_day +_days_before_month Lib/_pydatetime.py /^def _days_before_month(year, month):$/;" f +_days_before_month Modules/_datetimemodule.c /^static const int _days_before_month[] = {$/;" v file: +_days_before_year Lib/_pydatetime.py /^def _days_before_year(year):$/;" f +_days_in_month Lib/_pydatetime.py /^def _days_in_month(year, month):$/;" f +_days_in_month Modules/_datetimemodule.c /^static const int _days_in_month[] = {$/;" v file: +_db Lib/mimetypes.py /^_db = None$/;" v +_dbg Lib/tarfile.py /^ def _dbg(self, level, msg):$/;" m class:TarFile +_dbm_dbm_close Modules/clinic/_dbmmodule.c.h /^_dbm_dbm_close(dbmobject *self, PyObject *Py_UNUSED(ignored))$/;" f +_dbm_dbm_close_impl Modules/_dbmmodule.c /^_dbm_dbm_close_impl(dbmobject *self)$/;" f file: +_dbm_dbm_get Modules/clinic/_dbmmodule.c.h /^_dbm_dbm_get(dbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_dbm_dbm_get_impl Modules/_dbmmodule.c /^_dbm_dbm_get_impl(dbmobject *self, PyTypeObject *cls, const char *key,$/;" f file: +_dbm_dbm_keys Modules/clinic/_dbmmodule.c.h /^_dbm_dbm_keys(dbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_dbm_dbm_keys_impl Modules/_dbmmodule.c /^_dbm_dbm_keys_impl(dbmobject *self, PyTypeObject *cls)$/;" f file: +_dbm_dbm_setdefault Modules/clinic/_dbmmodule.c.h /^_dbm_dbm_setdefault(dbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_dbm_dbm_setdefault_impl Modules/_dbmmodule.c /^_dbm_dbm_setdefault_impl(dbmobject *self, PyTypeObject *cls, const char *key,$/;" f file: +_dbm_exec Modules/_dbmmodule.c /^_dbm_exec(PyObject *module)$/;" f file: +_dbm_module_clear Modules/_dbmmodule.c /^_dbm_module_clear(PyObject *module)$/;" f file: +_dbm_module_free Modules/_dbmmodule.c /^_dbm_module_free(void *module)$/;" f file: +_dbm_module_traverse Modules/_dbmmodule.c /^_dbm_module_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_dbm_state Modules/_dbmmodule.c /^} _dbm_state;$/;" t typeref:struct:__anon314 file: +_dbmmodule Modules/_dbmmodule.c /^static struct PyModuleDef _dbmmodule = {$/;" v typeref:struct:PyModuleDef file: +_dbmmodule_slots Modules/_dbmmodule.c /^static PyModuleDef_Slot _dbmmodule_slots[] = {$/;" v file: +_debug Lib/http/cookiejar.py /^def _debug(*args):$/;" f +_debug Tools/unicode/listcodecs.py /^_debug = 0$/;" v +_debugStringAndLength PC/launcher2.c /^_debugStringAndLength(const wchar_t *s, int len, const wchar_t *name)$/;" f +_debug_info Lib/multiprocessing/managers.py /^ def _debug_info(self):$/;" m class:BaseManager +_dec Lib/test/test_sys_settrace.py /^ def _dec(c):$/;" f function:TraceTestCase.test_class_creation_with_decorator.func.decorator +_dec_from_triple Lib/_pydecimal.py /^def _dec_from_triple(sign, coefficient, exponent, special=False):$/;" f +_dec_hash Modules/_decimal/_decimal.c /^_dec_hash(PyDecObject *v)$/;" f file: +_dec_settriple Modules/_decimal/_decimal.c /^_dec_settriple(PyObject *dec, uint8_t sign, uint32_t v, mpd_ssize_t exp)$/;" f +_decimal_lshift_exact Lib/_pydecimal.py /^def _decimal_lshift_exact(n, e):$/;" f +_decimal_methods Modules/_decimal/_decimal.c /^static PyMethodDef _decimal_methods [] =$/;" v file: +_decimal_module Modules/_decimal/_decimal.c /^static struct PyModuleDef _decimal_module = {$/;" v typeref:struct:PyModuleDef file: +_decimal_sqrt_of_frac Lib/statistics.py /^def _decimal_sqrt_of_frac(n: int, m: int) -> Decimal:$/;" f +_decl_otherchars Lib/_markupbase.py /^ _decl_otherchars = ''$/;" v class:ParserBase +_declname_match Lib/_markupbase.py /^_declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9]*\\s*').match$/;" v +_declstringlit_match Lib/_markupbase.py /^_declstringlit_match = re.compile(r'(\\'[^\\']*\\'|"[^"]*")\\s*').match$/;" v +_decode Lib/idlelib/idle_test/mock_tk.py /^ def _decode(self, index, endflag=0):$/;" m class:Text +_decode Lib/test/test_nntplib.py /^ def _decode(self, data):$/;" m class:NNTPv1Handler +_decodeExtra Lib/zipfile/__init__.py /^ def _decodeExtra(self, filename_crc):$/;" m class:ZipInfo +_decodeShebang PC/launcher2.c /^_decodeShebang(SearchInfo *search, const char *buffer, int bufferLength, bool onlyUtf8, wchar_t **decoded, int *decodedLength)$/;" f +_decode_args Lib/urllib/parse.py /^def _decode_args(args, encoding=_implicit_encoding,$/;" f +_decode_base64 Lib/plistlib.py /^def _decode_base64(s):$/;" f +_decode_base64 Lib/test/test_smtplib.py /^ def _decode_base64(self, string):$/;" m class:SimSMTPChannel +_decode_bytewise Lib/test/test_io.py /^ def _decode_bytewise(s):$/;" f function:IncrementalNewlineDecoderTest.check_newline_decoding +_decode_certificate Modules/_ssl.c /^_decode_certificate(_sslmodulestate *state, X509 *certificate) {$/;" f file: +_decode_pax_field Lib/tarfile.py /^ def _decode_pax_field(self, value, encoding, fallback_encoding, fallback_errors):$/;" m class:TarInfo +_decode_string Lib/pickle.py /^ def _decode_string(self, value):$/;" m class:_Unpickler +_decode_text Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _decode_text(self, contents):$/;" m class:ZoneInfoData +_decode_uXXXX Lib/json/decoder.py /^def _decode_uXXXX(s, pos):$/;" f +_decode_uu Lib/email/message.py /^def _decode_uu(encoded):$/;" f +_decode_worker_job Lib/test/libregrtest/runtest_mp.py /^def _decode_worker_job(d: dict[str, Any]) -> WorkerJob | dict[str, Any]:$/;" f +_decorator Tools/build/stable_abi.py /^ def _decorator(func):$/;" f function:generator +_decref Lib/multiprocessing/managers.py /^ def _decref(token, authkey, state, tls, idset, _Client):$/;" m class:BaseProxy +_decref_socketios Lib/socket.py /^ def _decref_socketios(self):$/;" m class:socket +_decrement_pending_calls Lib/concurrent/futures/_base.py /^ def _decrement_pending_calls(self):$/;" m class:_AllCompletedWaiter +_dedent Lib/argparse.py /^ def _dedent(self):$/;" m class:HelpFormatter +_dedent Lib/enum.py /^def _dedent(text):$/;" f +_dedupe Lib/zipfile/_path/__init__.py /^_dedupe = dict.fromkeys$/;" v +_deduplicate Lib/typing.py /^def _deduplicate(params):$/;" f +_deepcopy_atomic Lib/copy.py /^def _deepcopy_atomic(x, memo):$/;" f +_deepcopy_dict Lib/copy.py /^def _deepcopy_dict(x, memo, deepcopy=deepcopy):$/;" f +_deepcopy_list Lib/copy.py /^def _deepcopy_list(x, memo, deepcopy=deepcopy):$/;" f +_deepcopy_method Lib/copy.py /^def _deepcopy_method(x, memo): # Copy instance methods$/;" f +_deepcopy_tuple Lib/copy.py /^def _deepcopy_tuple(x, memo, deepcopy=deepcopy):$/;" f +_def_syms Lib/lib2to3/fixer_util.py /^_def_syms = {syms.classdef, syms.funcdef}$/;" v +_default Lib/test/test_tkinter/test_variables.py /^ _default = "default"$/;" v class:Var +_default Lib/tkinter/__init__.py /^ _default = ""$/;" v class:StringVar +_default Lib/tkinter/__init__.py /^ _default = ""$/;" v class:Variable +_default Lib/tkinter/__init__.py /^ _default = 0$/;" v class:IntVar +_default Lib/tkinter/__init__.py /^ _default = 0.0$/;" v class:DoubleVar +_default Lib/tkinter/__init__.py /^ _default = False$/;" v class:BooleanVar +_default Lib/xml/etree/ElementTree.py /^ def _default(self, text):$/;" m class:XMLParser +_defaultFormatter Lib/logging/__init__.py /^_defaultFormatter = Formatter()$/;" v +_defaultLastResort Lib/logging/__init__.py /^_defaultLastResort = _StderrHandler(WARNING)$/;" v +_default_architecture Lib/platform.py /^_default_architecture = {$/;" v +_default_callable_argspec Lib/idlelib/calltip.py /^_default_callable_argspec = "See source or doc"$/;" v +_default_chunk_size Lib/test/test_io.py /^def _default_chunk_size():$/;" f +_default_compilers Tools/c-analyzer/distutils/ccompiler.py /^_default_compilers = ($/;" v +_default_context Lib/multiprocessing/context.py /^ _default_context = DefaultContext(_concrete_contexts['fork'])$/;" v class:.ForkServerContext +_default_context Lib/multiprocessing/context.py /^ _default_context = DefaultContext(_concrete_contexts['spawn'])$/;" v class:.ForkServerContext +_default_context Lib/multiprocessing/context.py /^ _default_context = DefaultContext(_concrete_contexts['spawn'])$/;" v +_default_decoder Lib/json/__init__.py /^_default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None)$/;" v +_default_dict Lib/configparser.py /^_default_dict = dict$/;" v +_default_encoder Lib/json/__init__.py /^_default_encoder = JSONEncoder($/;" v +_default_hash Lib/test/test_hash.py /^_default_hash = object.__hash__$/;" v +_default_header_map Lib/email/headerregistry.py /^_default_header_map = {$/;" v +_default_localedir Lib/gettext.py /^_default_localedir = os.path.join(sys.base_prefix, 'share', 'locale')$/;" v +_default_mime_types Lib/mimetypes.py /^def _default_mime_types():$/;" f +_default_options Lib/lib2to3/refactor.py /^ _default_options = {"print_function" : False,$/;" v class:RefactoringTool +_default_prefix Lib/difflib.py /^ _default_prefix = 0$/;" v class:HtmlDiff +_default_root Lib/tkinter/__init__.py /^_default_root = None$/;" v +_default_sysroot Lib/_osx_support.py /^def _default_sysroot(cc):$/;" f +_default_update Lib/test/test_functools.py /^ def _default_update(self):$/;" m class:TestUpdateWrapper +_default_update Lib/test/test_functools.py /^ def _default_update(self):$/;" m class:TestWraps +_defaultmod Lib/dbm/__init__.py /^_defaultmod = None$/;" v +_defaulttimeout Lib/test/mock_socket.py /^_defaulttimeout = None$/;" v +_define_methods Lib/test/test_urllib2.py /^ def _define_methods(self, methods):$/;" m class:MockHandler +_del Lib/test/test_unittest/testmock/testmagicmethods.py /^ def _del():$/;" f function:TestMockingMagicMethods.test_dict_methods +_del_pkg Lib/test/test_runpy.py /^ def _del_pkg(self, top):$/;" m class:RunModuleTestCase +_delay Lib/turtle.py /^ def _delay(self, delay):$/;" m class:TurtleScreenBase +_delay Lib/turtle.py /^ def _delay(self, delay=None):$/;" m class:RawTurtle +_delay Lib/turtle.py /^ def _delay(self, n=None):$/;" m class:TNavigator +_delayed_open_completions Lib/idlelib/autocomplete.py /^ def _delayed_open_completions(self, args):$/;" m class:AutoComplete +_delegating_property Lib/unittest/mock.py /^def _delegating_property(name):$/;" f +_delete Lib/threading.py /^ def _delete(self):$/;" m class:Thread +_delete Lib/turtle.py /^ def _delete(self, item):$/;" m class:TurtleScreenBase +_delete_files Lib/test/test_dbm_dumb.py /^def _delete_files():$/;" f +_delete_recursively Lib/test/test_mailbox.py /^ def _delete_recursively(self, target):$/;" m class:TestBase +_delete_test_data Lib/test/test_winreg.py /^ def _delete_test_data(self, root_key, subkeystr="sub_key"):$/;" m class:BaseWinregTests +_deleted Lib/unittest/mock.py /^_deleted = sentinel.DELETED$/;" v +_deliver Lib/test/smtpd.py /^ def _deliver(self, mailfrom, rcpttos, data):$/;" m class:PureProxy +_delx Lib/test/pydocfodder.py /^ def _delx(self):$/;" m class:A_new +_deoptop Lib/dis.py /^def _deoptop(op):$/;" f +_deprecated Lib/warnings.py /^def _deprecated(name, message=_DEPRECATED_MSG, *, remove, _version=sys.version_info):$/;" f +_deprecated_default Lib/argparse.py /^_deprecated_default = object()$/;" v +_deprecated_globals Lib/ast.py /^_deprecated_globals = {$/;" v +_deprecated_label Doc/tools/extensions/pyspecific.py /^ _deprecated_label = sphinx_gettext('Deprecated since version {deprecated}, will be removed in version {removed}')$/;" v class:DeprecatedRemoved +_deprecated_names Lib/sqlite3/dbapi2.py /^_deprecated_names = frozenset({"version", "version_info"})$/;" v +_deprecated_version_info Lib/sqlite3/dbapi2.py /^_deprecated_version_info = tuple(map(int, _deprecated_version.split(".")))$/;" v +_deps_from_requires_text Lib/importlib/metadata/__init__.py /^ def _deps_from_requires_text(cls, source):$/;" m class:Distribution +_deque_rotate Modules/_collectionsmodule.c /^_deque_rotate(dequeobject *deque, Py_ssize_t n)$/;" f file: +_destinsrc Lib/shutil.py /^def _destinsrc(src, dst):$/;" f +_destroy Lib/turtle.py /^ def _destroy(self):$/;" m class:_Screen +_destroy Lib/turtledemo/__main__.py /^ def _destroy(self):$/;" m class:DemoWindow +_destroy Modules/_abc.c /^_destroy(PyObject *setweakref, PyObject *objweakref)$/;" f file: +_destroy_def Modules/_abc.c /^static PyMethodDef _destroy_def = {$/;" v file: +_destroy_temp_root Lib/tkinter/__init__.py /^def _destroy_temp_root(master):$/;" f +_detach Lib/asyncio/base_events.py /^ def _detach(self):$/;" m class:Server +_details Lib/pdb.py /^ def _details(self):$/;" m class:_ModuleTarget +_detect_future_features Lib/lib2to3/refactor.py /^def _detect_future_features(source):$/;" f +_determine_new_args Lib/typing.py /^ def _determine_new_args(self, args):$/;" m class:_GenericAlias +_dexp Lib/_pydecimal.py /^def _dexp(c, e, p):$/;" f +_dict Lib/test/test_dbm.py /^ _dict = {'a': b'Python:',$/;" v class:AnyDBMTestCase +_dict Lib/test/test_dbm_dumb.py /^ _dict = {b'0': b'',$/;" v class:DumbDBMTestCase +_dict_state_INIT Include/internal/pycore_dict_state.h 41;" d +_dict_to_list Lib/csv.py /^ def _dict_to_list(self, rowdict):$/;" m class:DictWriter +_dictkeysobject Include/internal/pycore_dict.h /^struct _dictkeysobject {$/;" s +_dictvalues Include/internal/pycore_dict.h /^struct _dictvalues {$/;" s +_diffThreshold Lib/unittest/case.py /^ _diffThreshold = 2**16$/;" v class:TestCase +_difference Lib/zipfile/_path/__init__.py /^def _difference(minuend, subtrahend):$/;" f +_digits2int Lib/_pylong.py /^def _digits2int(digits, n):$/;" f +_dims_getter Lib/ast.py /^ def _dims_getter(self):$/;" f +_dims_setter Lib/ast.py /^ def _dims_setter(self, value):$/;" f +_dir Lib/test/test_unittest/testmock/testmagicmethods.py /^ def _dir(self):$/;" f function:TestMockingMagicMethods.test_dir +_dir_candidates Lib/multiprocessing/heap.py /^ _dir_candidates = ['\/dev\/shm']$/;" v class:Arena +_dir_candidates Lib/multiprocessing/heap.py /^ _dir_candidates = []$/;" v class:Arena +_dir_locals Objects/object.c /^_dir_locals(void)$/;" f file: +_dir_object Objects/object.c /^_dir_object(PyObject *obj)$/;" f file: +_dir_open_flags Lib/glob.py /^_dir_open_flags = os.O_RDONLY | getattr(os, 'O_DIRECTORY', 0)$/;" v +_directories Lib/msilib/__init__.py /^_directories = set()$/;" v +_dirnameW Modules/posixmodule.c /^_dirnameW(WCHAR *path)$/;" f file: +_dirty Lib/weakref.py /^ _dirty = False$/;" v class:finalize +_disable_pip_configuration_settings Lib/ensurepip/__init__.py /^def _disable_pip_configuration_settings():$/;" f +_disassemble Lib/dis.py /^ def _disassemble(self, lineno_width=3, mark_as_current=False, offset_width=4):$/;" m class:Instruction +_disassemble_bytes Lib/dis.py /^def _disassemble_bytes(code, lasti=-1, varname_from_oparg=None,$/;" f +_disassemble_recursive Lib/dis.py /^def _disassemble_recursive(co, *, file=None, depth=None, show_caches=False, adaptive=False):$/;" f +_disassemble_str Lib/dis.py /^def _disassemble_str(source, **kwargs):$/;" f +_discard_arena Lib/multiprocessing/heap.py /^ def _discard_arena(self, arena):$/;" m class:Heap +_discover_resolvers Lib/importlib/metadata/__init__.py /^ def _discover_resolvers():$/;" m class:Distribution +_discovery_parser Lib/unittest/main.py /^ _discovery_parser = None$/;" v class:TestProgram +_dispatch Lib/email/generator.py /^ def _dispatch(self, msg):$/;" m class:DecodedGenerator +_dispatch Lib/email/generator.py /^ def _dispatch(self, msg):$/;" m class:Generator +_dispatch Lib/pprint.py /^ _dispatch = {}$/;" v class:PrettyPrinter +_dispatch Lib/test/test_xmlrpc.py /^ def _dispatch(self, method, params):$/;" m class:SimpleXMLRPCDispatcherTestCase.test_call_dispatch_func.TestInstance +_dispatch Lib/xmlrpc/server.py /^ def _dispatch(self, method, params):$/;" m class:SimpleXMLRPCDispatcher +_displayof Lib/tkinter/__init__.py /^ def _displayof(self, displayof):$/;" m class:Misc +_div Lib/fractions.py /^ def _div(a, b):$/;" m class:Fraction +_div2n1n Lib/_pylong.py /^def _div2n1n(a, b, n):$/;" f +_div3n2n Lib/_pylong.py /^def _div3n2n(a12, a3, b, b1, b2, n):$/;" f +_div_nearest Lib/_pydecimal.py /^def _div_nearest(a, b):$/;" f +_divide Lib/_pydecimal.py /^ def _divide(self, other, context):$/;" m class:Decimal +_divide_and_round Lib/_pydatetime.py /^def _divide_and_round(a, b):$/;" f +_divmod Lib/fractions.py /^ def _divmod(a, b):$/;" m class:Fraction +_divmod_pos Lib/_pylong.py /^def _divmod_pos(a, b):$/;" f +_dll Lib/test/test_ctypes/test_cfuncs.py /^ _dll = CDLL(_ctypes_test.__file__)$/;" v class:CFunctions +_dll Lib/test/test_ctypes/test_cfuncs.py /^ _dll = stdcall_dll(_ctypes_test.__file__)$/;" v class:stdcallCFunctions +_dlog Lib/_pydecimal.py /^def _dlog(c, e, p):$/;" f +_dlog10 Lib/_pydecimal.py /^def _dlog10(c, e, p):$/;" f +_dna Tools/stringbench/stringbench.py /^_dna = "".join(_dna.splitlines())$/;" v +_dna Tools/stringbench/stringbench.py /^_dna = _dna * 25$/;" v +_dna_bytes Tools/stringbench/stringbench.py /^_dna_bytes = bytes_from_str(_dna)$/;" v +_dna_unicode Tools/stringbench/stringbench.py /^_dna_unicode = unicode_from_str(_dna)$/;" v +_dnsname_match Lib/ssl.py /^def _dnsname_match(dn, hostname):$/;" f +_do Lib/tkinter/__init__.py /^ def _do(self, name, args=()):$/;" m class:BaseWidget +_do_a_fancy_diff Lib/doctest.py /^ def _do_a_fancy_diff(self, want, got, optionflags):$/;" m class:OutputChecker +_do_args_match Doc/tools/extensions/pyspecific.py /^ def _do_args_match(self, args1, args2):$/;" m class:AuditEvent +_do_cmp Lib/filecmp.py /^def _do_cmp(f1, f2):$/;" f +_do_copyish Lib/test/test_unicode_file.py /^ def _do_copyish(self, filename1, filename2):$/;" m class:TestUnicodeFiles +_do_directory Lib/test/test_unicode_file.py /^ def _do_directory(self, make_name, chdir_name):$/;" m class:TestUnicodeFiles +_do_discovery Lib/unittest/main.py /^ def _do_discovery(self, argv, Loader=None):$/;" m class:TestProgram +_do_flush Lib/asyncio/sslproto.py /^ def _do_flush(self):$/;" m class:SSLProtocol +_do_handshake Lib/asyncio/sslproto.py /^ def _do_handshake(self):$/;" m class:SSLProtocol +_do_ioctl_0 Modules/ossaudiodev.c /^_do_ioctl_0(int fd, PyObject *args, char *fname, unsigned long cmd)$/;" f file: +_do_ioctl_1 Modules/ossaudiodev.c /^_do_ioctl_1(int fd, PyObject *args, char *fname, unsigned long cmd)$/;" f file: +_do_ioctl_1_internal Modules/ossaudiodev.c /^_do_ioctl_1_internal(int fd, PyObject *args, char *fname, unsigned long cmd)$/;" f file: +_do_pulldom_parse Lib/xml/dom/minidom.py /^def _do_pulldom_parse(func, args, kwargs):$/;" f +_do_read Lib/asyncio/sslproto.py /^ def _do_read(self):$/;" m class:SSLProtocol +_do_read__buffered Lib/asyncio/sslproto.py /^ def _do_read__buffered(self):$/;" m class:SSLProtocol +_do_read__copied Lib/asyncio/sslproto.py /^ def _do_read__copied(self):$/;" m class:SSLProtocol +_do_shutdown Lib/asyncio/base_events.py /^ def _do_shutdown(self, future):$/;" m class:BaseEventLoop +_do_shutdown Lib/asyncio/sslproto.py /^ def _do_shutdown(self):$/;" m class:SSLProtocol +_do_single Lib/test/test_unicode_file.py /^ def _do_single(self, filename):$/;" m class:TestUnicodeFiles +_do_ssl_handshake Lib/test/test_ftplib.py /^ def _do_ssl_handshake(self):$/;" m class:.SSLConnection +_do_ssl_handshake Lib/test/test_ssl.py /^ def _do_ssl_handshake(self):$/;" m class:AsyncoreEchoServer.EchoServer.ConnectionHandler +_do_ssl_shutdown Lib/test/test_ftplib.py /^ def _do_ssl_shutdown(self):$/;" m class:.SSLConnection +_do_test Lib/test/test_clinic.py /^ def _do_test(self, *args, expect_success=True):$/;" m class:ClinicExternalTest +_do_test Lib/test/test_modulefinder.py /^ def _do_test(self, info, report=False, debug=0, replace_paths=[], modulefinder_class=modulefinder.ModuleFinder):$/;" m class:ModuleFinderTest +_do_test Lib/test/test_sqlite3/test_cli.py /^ def _do_test(self, *args, expect_success=True):$/;" m class:CommandLineInterface +_do_test_commandline Lib/test/test_popen.py /^ def _do_test_commandline(self, cmdline, expected):$/;" m class:PopenTest +_do_tls_handshake Lib/test/test_poplib.py /^ def _do_tls_handshake(self):$/;" f function:DummyPOP3Handler.cmd_utf8 +_do_wait Lib/asyncio/unix_events.py /^ def _do_wait(self, pid, pidfd, callback, args):$/;" m class:PidfdChildWatcher +_do_waitpid Lib/asyncio/unix_events.py /^ def _do_waitpid(self, expected_pid):$/;" m class:BaseChildWatcher +_do_waitpid Lib/asyncio/unix_events.py /^ def _do_waitpid(self, expected_pid):$/;" m class:MultiLoopChildWatcher +_do_waitpid Lib/asyncio/unix_events.py /^ def _do_waitpid(self, expected_pid):$/;" m class:SafeChildWatcher +_do_waitpid Lib/asyncio/unix_events.py /^ def _do_waitpid(self, loop, expected_pid, callback, args):$/;" m class:ThreadedChildWatcher +_do_waitpid_all Lib/asyncio/unix_events.py /^ def _do_waitpid_all(self):$/;" m class:BaseChildWatcher +_do_waitpid_all Lib/asyncio/unix_events.py /^ def _do_waitpid_all(self):$/;" m class:FastChildWatcher +_do_waitpid_all Lib/asyncio/unix_events.py /^ def _do_waitpid_all(self):$/;" m class:MultiLoopChildWatcher +_do_waitpid_all Lib/asyncio/unix_events.py /^ def _do_waitpid_all(self):$/;" m class:SafeChildWatcher +_do_write Lib/asyncio/sslproto.py /^ def _do_write(self):$/;" m class:SSLProtocol +_doctype Lib/test/test_xml_etree.py /^ _doctype = None$/;" v class:TreeBuilderTest.test_doctype.DoctypeParser +_done_callback Lib/asyncio/tasks.py /^ def _done_callback(fut):$/;" f function:gather +_double Lib/test/_test_multiprocessing.py /^ def _double(cls, x, y, z, foo, arr, string):$/;" m class:_TestSharedCTypes +_downgradingOtherVersion Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _downgradingOtherVersion;$/;" m class:PythonBootstrapperApplication file: +_download_src Tools/ssl/multissltests.py /^ def _download_src(self):$/;" m class:AbstractBuilder +_dpower Lib/_pydecimal.py /^def _dpower(xc, xe, yc, ye, p):$/;" f +_drain_helper Lib/asyncio/streams.py /^ async def _drain_helper(self):$/;" m class:FlowControlMixin +_drawimage Lib/turtle.py /^ def _drawimage(self, item, pos, image):$/;" m class:TurtleScreenBase +_drawline Lib/turtle.py /^ def _drawline(self, lineitem, coordlist=None,$/;" m class:TurtleScreenBase +_drawpoly Lib/turtle.py /^ def _drawpoly(self, polyitem, coordlist, fill=None,$/;" m class:TurtleScreenBase +_drawturtle Lib/turtle.py /^ def _drawturtle(self):$/;" m class:RawTurtle +_dtoa_interp_state_INIT Include/internal/pycore_dtoa.h 30;" d +_dtoa_state Include/internal/pycore_dtoa.h /^struct _dtoa_state {$/;" s +_dtoa_state_INIT Include/internal/pycore_dtoa.h 52;" d +_dummyButton Lib/tkinter/tix.py /^class _dummyButton(Button, TixSubWidget):$/;" c +_dummyCheckbutton Lib/tkinter/tix.py /^class _dummyCheckbutton(Checkbutton, TixSubWidget):$/;" c +_dummyComboBox Lib/tkinter/tix.py /^class _dummyComboBox(ComboBox, TixSubWidget):$/;" c +_dummyDirList Lib/tkinter/tix.py /^class _dummyDirList(DirList, TixSubWidget):$/;" c +_dummyDirSelectBox Lib/tkinter/tix.py /^class _dummyDirSelectBox(DirSelectBox, TixSubWidget):$/;" c +_dummyEntry Lib/tkinter/tix.py /^class _dummyEntry(Entry, TixSubWidget):$/;" c +_dummyExFileSelectBox Lib/tkinter/tix.py /^class _dummyExFileSelectBox(ExFileSelectBox, TixSubWidget):$/;" c +_dummyFileComboBox Lib/tkinter/tix.py /^class _dummyFileComboBox(ComboBox, TixSubWidget):$/;" c +_dummyFileSelectBox Lib/tkinter/tix.py /^class _dummyFileSelectBox(FileSelectBox, TixSubWidget):$/;" c +_dummyFrame Lib/tkinter/tix.py /^class _dummyFrame(Frame, TixSubWidget):$/;" c +_dummyHList Lib/tkinter/tix.py /^class _dummyHList(HList, TixSubWidget):$/;" c +_dummyLabel Lib/tkinter/tix.py /^class _dummyLabel(Label, TixSubWidget):$/;" c +_dummyListbox Lib/tkinter/tix.py /^class _dummyListbox(Listbox, TixSubWidget):$/;" c +_dummyMenu Lib/tkinter/tix.py /^class _dummyMenu(Menu, TixSubWidget):$/;" c +_dummyMenubutton Lib/tkinter/tix.py /^class _dummyMenubutton(Menubutton, TixSubWidget):$/;" c +_dummyNoteBookFrame Lib/tkinter/tix.py /^class _dummyNoteBookFrame(NoteBookFrame, TixSubWidget):$/;" c +_dummyPanedWindow Lib/tkinter/tix.py /^class _dummyPanedWindow(PanedWindow, TixSubWidget):$/;" c +_dummyScrollbar Lib/tkinter/tix.py /^class _dummyScrollbar(Scrollbar, TixSubWidget):$/;" c +_dummyScrolledHList Lib/tkinter/tix.py /^class _dummyScrolledHList(ScrolledHList, TixSubWidget):$/;" c +_dummyScrolledListBox Lib/tkinter/tix.py /^class _dummyScrolledListBox(ScrolledListBox, TixSubWidget):$/;" c +_dummyStdButtonBox Lib/tkinter/tix.py /^class _dummyStdButtonBox(StdButtonBox, TixSubWidget):$/;" c +_dummyTList Lib/tkinter/tix.py /^class _dummyTList(TList, TixSubWidget):$/;" c +_dummyText Lib/tkinter/tix.py /^class _dummyText(Text, TixSubWidget):$/;" c +_dummy_key Tools/gdb/libpython.py /^ def _dummy_key(self):$/;" m class:PySetObjectPtr +_dummy_ssl_create_context Lib/test/test_asyncio/test_events.py /^ def _dummy_ssl_create_context(purpose=ssl.Purpose.SERVER_AUTH, *,$/;" f function:EventLoopTestsMixin._test_create_ssl_connection +_dummy_struct Objects/setobject.c /^static PyObject _dummy_struct = {$/;" v file: +_dummy_struct Objects/setobject.c /^static PyObject _dummy_struct;$/;" v file: +_dump Lib/difflib.py /^ def _dump(self, tag, x, lo, hi):$/;" m class:Differ +_dump Lib/idlelib/config.py /^def _dump(): # htest # (not really, but ignore in coverage)$/;" f +_dump Lib/pickle.py /^def _dump(obj, file, protocol=None, *, fix_imports=True, buffer_callback=None):$/;" f +_dump_message Lib/mailbox.py /^ def _dump_message(self, message, target, mangle_from_=False):$/;" m class:Mailbox +_dump_registry Lib/_py_abc.py /^ def _dump_registry(cls, file=None):$/;" m class:ABCMeta +_dump_registry Lib/abc.py /^ def _dump_registry(cls, file=None):$/;" m class:.ABCMeta +_dump_sequences Lib/mailbox.py /^ def _dump_sequences(self, message, key):$/;" m class:MH +_dump_unresolved Tools/c-analyzer/c_analyzer/analyze.py /^def _dump_unresolved(decl, types, analyze_decl):$/;" f +_dump_ur Lib/imaplib.py /^ def _dump_ur(self, untagged_resp_dict):$/;" f function:IMAP4._untagged_response +_dumps Lib/pickle.py /^def _dumps(obj, protocol=None, *, fix_imports=True, buffer_callback=None):$/;" f +_dyld_shared_cache_contains_path Lib/ctypes/macholib/dyld.py /^ def _dyld_shared_cache_contains_path(*args):$/;" f +_dyld_shared_cache_contains_path Modules/_ctypes/callproc.c /^static bool (*_dyld_shared_cache_contains_path)(const char *path);$/;" v file: +_dyn_option_menu Lib/idlelib/dynoption.py /^def _dyn_option_menu(parent): # htest #$/;" f +_dyn_option_menu_spec Lib/idlelib/idle_test/htest.py /^_dyn_option_menu_spec = {$/;" v +_eager_tasks Lib/asyncio/tasks.py /^_eager_tasks = set()$/;" v +_eat_identifier Lib/idlelib/hyperparser.py /^ def _eat_identifier(cls, str, limit, pos):$/;" m class:HyperParser +_echo Lib/test/_test_multiprocessing.py /^ def _echo(cls, conn):$/;" m class:_TestConnection +_editor_window Lib/idlelib/editor.py /^def _editor_window(parent): # htest #$/;" f +_editor_window_spec Lib/idlelib/idle_test/htest.py /^_editor_window_spec = {$/;" v +_elem_tags Lib/test/test_xml_etree.py /^ def _elem_tags(self, elemlist):$/;" m class:ElementSlicingTest +_elementtree_Element___copy__ Modules/clinic/_elementtree.c.h /^_elementtree_Element___copy__(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element___copy___impl Modules/_elementtree.c /^_elementtree_Element___copy___impl(ElementObject *self, PyTypeObject *cls)$/;" f file: +_elementtree_Element___deepcopy__ Modules/clinic/_elementtree.c.h /^_elementtree_Element___deepcopy__(ElementObject *self, PyObject *arg)$/;" f +_elementtree_Element___deepcopy___impl Modules/_elementtree.c /^_elementtree_Element___deepcopy___impl(ElementObject *self, PyObject *memo)$/;" f file: +_elementtree_Element___getstate__ Modules/clinic/_elementtree.c.h /^_elementtree_Element___getstate__(ElementObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_elementtree_Element___getstate___impl Modules/_elementtree.c /^_elementtree_Element___getstate___impl(ElementObject *self)$/;" f file: +_elementtree_Element___setstate__ Modules/clinic/_elementtree.c.h /^_elementtree_Element___setstate__(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element___setstate___impl Modules/_elementtree.c /^_elementtree_Element___setstate___impl(ElementObject *self,$/;" f file: +_elementtree_Element___sizeof__ Modules/clinic/_elementtree.c.h /^_elementtree_Element___sizeof__(ElementObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_elementtree_Element___sizeof___impl Modules/_elementtree.c /^_elementtree_Element___sizeof___impl(ElementObject *self)$/;" f file: +_elementtree_Element_append Modules/clinic/_elementtree.c.h /^_elementtree_Element_append(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_append_impl Modules/_elementtree.c /^_elementtree_Element_append_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_clear Modules/clinic/_elementtree.c.h /^_elementtree_Element_clear(ElementObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_elementtree_Element_clear_impl Modules/_elementtree.c /^_elementtree_Element_clear_impl(ElementObject *self)$/;" f file: +_elementtree_Element_extend Modules/clinic/_elementtree.c.h /^_elementtree_Element_extend(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_extend_impl Modules/_elementtree.c /^_elementtree_Element_extend_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_find Modules/clinic/_elementtree.c.h /^_elementtree_Element_find(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_find_impl Modules/_elementtree.c /^_elementtree_Element_find_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_findall Modules/clinic/_elementtree.c.h /^_elementtree_Element_findall(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_findall_impl Modules/_elementtree.c /^_elementtree_Element_findall_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_findtext Modules/clinic/_elementtree.c.h /^_elementtree_Element_findtext(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_findtext_impl Modules/_elementtree.c /^_elementtree_Element_findtext_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_get Modules/clinic/_elementtree.c.h /^_elementtree_Element_get(ElementObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_get_impl Modules/_elementtree.c /^_elementtree_Element_get_impl(ElementObject *self, PyObject *key,$/;" f file: +_elementtree_Element_insert Modules/clinic/_elementtree.c.h /^_elementtree_Element_insert(ElementObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_elementtree_Element_insert_impl Modules/_elementtree.c /^_elementtree_Element_insert_impl(ElementObject *self, Py_ssize_t index,$/;" f file: +_elementtree_Element_items Modules/clinic/_elementtree.c.h /^_elementtree_Element_items(ElementObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_elementtree_Element_items_impl Modules/_elementtree.c /^_elementtree_Element_items_impl(ElementObject *self)$/;" f file: +_elementtree_Element_iter Modules/clinic/_elementtree.c.h /^_elementtree_Element_iter(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_iter_impl Modules/_elementtree.c /^_elementtree_Element_iter_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_iterfind Modules/clinic/_elementtree.c.h /^_elementtree_Element_iterfind(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_iterfind_impl Modules/_elementtree.c /^_elementtree_Element_iterfind_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_itertext Modules/clinic/_elementtree.c.h /^_elementtree_Element_itertext(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_itertext_impl Modules/_elementtree.c /^_elementtree_Element_itertext_impl(ElementObject *self, PyTypeObject *cls)$/;" f file: +_elementtree_Element_keys Modules/clinic/_elementtree.c.h /^_elementtree_Element_keys(ElementObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_elementtree_Element_keys_impl Modules/_elementtree.c /^_elementtree_Element_keys_impl(ElementObject *self)$/;" f file: +_elementtree_Element_makeelement Modules/clinic/_elementtree.c.h /^_elementtree_Element_makeelement(ElementObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_elementtree_Element_makeelement_impl Modules/_elementtree.c /^_elementtree_Element_makeelement_impl(ElementObject *self, PyTypeObject *cls,$/;" f file: +_elementtree_Element_remove Modules/clinic/_elementtree.c.h /^_elementtree_Element_remove(ElementObject *self, PyObject *arg)$/;" f +_elementtree_Element_remove_impl Modules/_elementtree.c /^_elementtree_Element_remove_impl(ElementObject *self, PyObject *subelement)$/;" f file: +_elementtree_Element_set Modules/clinic/_elementtree.c.h /^_elementtree_Element_set(ElementObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_elementtree_Element_set_impl Modules/_elementtree.c /^_elementtree_Element_set_impl(ElementObject *self, PyObject *key,$/;" f file: +_elementtree_TreeBuilder___init__ Modules/clinic/_elementtree.c.h /^_elementtree_TreeBuilder___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_elementtree_TreeBuilder___init___impl Modules/_elementtree.c /^_elementtree_TreeBuilder___init___impl(TreeBuilderObject *self,$/;" f file: +_elementtree_TreeBuilder_close Modules/clinic/_elementtree.c.h /^_elementtree_TreeBuilder_close(TreeBuilderObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_elementtree_TreeBuilder_close_impl Modules/_elementtree.c /^_elementtree_TreeBuilder_close_impl(TreeBuilderObject *self)$/;" f file: +_elementtree_TreeBuilder_comment Modules/_elementtree.c /^_elementtree_TreeBuilder_comment(TreeBuilderObject *self, PyObject *text)$/;" f file: +_elementtree_TreeBuilder_data Modules/_elementtree.c /^_elementtree_TreeBuilder_data(TreeBuilderObject *self, PyObject *data)$/;" f file: +_elementtree_TreeBuilder_end Modules/_elementtree.c /^_elementtree_TreeBuilder_end(TreeBuilderObject *self, PyObject *tag)$/;" f file: +_elementtree_TreeBuilder_pi Modules/clinic/_elementtree.c.h /^_elementtree_TreeBuilder_pi(TreeBuilderObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_elementtree_TreeBuilder_pi_impl Modules/_elementtree.c /^_elementtree_TreeBuilder_pi_impl(TreeBuilderObject *self, PyObject *target,$/;" f file: +_elementtree_TreeBuilder_start Modules/clinic/_elementtree.c.h /^_elementtree_TreeBuilder_start(TreeBuilderObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_elementtree_TreeBuilder_start_impl Modules/_elementtree.c /^_elementtree_TreeBuilder_start_impl(TreeBuilderObject *self, PyObject *tag,$/;" f file: +_elementtree_XMLParser___init__ Modules/clinic/_elementtree.c.h /^_elementtree_XMLParser___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_elementtree_XMLParser___init___impl Modules/_elementtree.c /^_elementtree_XMLParser___init___impl(XMLParserObject *self, PyObject *target,$/;" f file: +_elementtree_XMLParser__parse_whole Modules/_elementtree.c /^_elementtree_XMLParser__parse_whole(XMLParserObject *self, PyObject *file)$/;" f file: +_elementtree_XMLParser__setevents Modules/clinic/_elementtree.c.h /^_elementtree_XMLParser__setevents(XMLParserObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_elementtree_XMLParser__setevents_impl Modules/_elementtree.c /^_elementtree_XMLParser__setevents_impl(XMLParserObject *self,$/;" f file: +_elementtree_XMLParser_close Modules/clinic/_elementtree.c.h /^_elementtree_XMLParser_close(XMLParserObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_elementtree_XMLParser_close_impl Modules/_elementtree.c /^_elementtree_XMLParser_close_impl(XMLParserObject *self)$/;" f file: +_elementtree_XMLParser_feed Modules/_elementtree.c /^_elementtree_XMLParser_feed(XMLParserObject *self, PyObject *data)$/;" f file: +_elementtree__set_factories Modules/clinic/_elementtree.c.h /^_elementtree__set_factories(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_elementtree__set_factories_impl Modules/_elementtree.c /^_elementtree__set_factories_impl(PyObject *module, PyObject *comment_factory,$/;" f file: +_ellipsis_match Lib/doctest.py /^def _ellipsis_match(want, got):$/;" f +_embedded_header Lib/email/header.py /^_embedded_header = re.compile(r'\\n[^ \\t]+:')$/;" v +_emit Lib/xml/dom/pulldom.py /^ def _emit(self):$/;" m class:DOMEventStream +_empty Lib/inspect.py /^class _empty:$/;" c +_empty_hamt Python/hamt.c 2427;" d file: +_empty_mapping Lib/test/mapping_tests.py /^ def _empty_mapping(self):$/;" m class:BasicTestMappingProtocol +_empty_mapping Lib/test/test_os.py /^ def _empty_mapping(self):$/;" m class:EnvironTests +_empty_mapping Lib/test/test_shelve.py /^ def _empty_mapping(self):$/;" m class:TestShelveFileBase +_empty_mapping Lib/test/test_shelve.py /^ def _empty_mapping(self):$/;" m class:TestShelveInMemBase +_empty_slot Lib/dis.py /^_empty_slot = [slot for slot, name in enumerate(_all_opname) if name.startswith("<")]$/;" v +_encode Lib/email/charset.py /^def _encode(string, codec):$/;" f +_encode Lib/email/generator.py /^ def _encode(self, s):$/;" m class:BytesGenerator +_encode Lib/email/generator.py /^ def _encode(self, s):$/;" m class:Generator +_encode Lib/http/client.py /^def _encode(data, name='data'):$/;" f +_encode Lib/test/test_urlparse.py /^ def _encode(t):$/;" f function:UrlParseTestCase.test_RFC2732 +_encode Lib/test/test_urlparse.py /^ def _encode(t):$/;" f function:UrlParseTestCase.test_http_roundtrips +_encode Lib/test/test_urlparse.py /^ def _encode(t):$/;" f function:UrlParseTestCase.test_roundtrips +_encode Lib/test/test_urlparse.py /^ def _encode(t):$/;" f function:UrlParseTestCase.test_urldefrag +_encodeFilenameFlags Lib/zipfile/__init__.py /^ def _encodeFilenameFlags(self):$/;" m class:ZipInfo +_encode_base64 Lib/email/contentmanager.py /^def _encode_base64(data, max_line_length):$/;" f +_encode_base64 Lib/plistlib.py /^def _encode_base64(s, maxlinelength=76):$/;" f +_encode_base64 Mac/Tools/plistlib_generate_testdata.py /^def _encode_base64(s, maxlinelength=60):$/;" f +_encode_hostname Lib/ssl.py /^ def _encode_hostname(self, hostname):$/;" m class:SSLContext +_encode_request Lib/http/client.py /^ def _encode_request(self, request):$/;" m class:HTTPConnection +_encode_request Lib/test/test_httplib.py /^ def _encode_request(self, str_url):$/;" m class:BasicTest.test_putrequest_override_encoding.UnsafeHTTPConnection +_encode_result Lib/urllib/parse.py /^def _encode_result(obj, encoding=_implicit_encoding,$/;" f +_encode_text Lib/email/contentmanager.py /^def _encode_text(string, charset, cte, policy):$/;" f +_encoded_const Modules/_json.c /^_encoded_const(PyObject *obj)$/;" f file: +_encoding Lib/multiprocessing/shared_memory.py /^_encoding = "utf8"$/;" v +_encrypt_on Lib/nntplib.py /^ def _encrypt_on(sock, context, hostname):$/;" f +_end Lib/xml/etree/ElementTree.py /^ def _end(self, tag):$/;" m class:XMLParser +_end_ns Lib/xml/etree/ElementTree.py /^ def _end_ns(self, prefix):$/;" m class:XMLParser +_end_of_line Lib/curses/textpad.py /^ def _end_of_line(self, y):$/;" m class:Textbox +_endex Lib/idlelib/idle_test/mock_tk.py /^ def _endex(self, endflag):$/;" m class:Text +_engine Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ IBootstrapperEngine* _engine;$/;" m class:PythonBootstrapperApplication file: +_ensure Tools/clinic/clinic.py /^ def _ensure(self):$/;" m class:IndentStack +_ensure___del__ Tools/c-analyzer/c_common/clsutil.py /^ def _ensure___del__(self, cls, slotnames): # See the comment in __init__().$/;" m class:Slot +_ensure_attributes Lib/xml/dom/minidom.py /^ def _ensure_attributes(self):$/;" m class:Element +_ensure_decl Tools/c-analyzer/cpython/_builtin_types.py /^def _ensure_decl(decl, decls):$/;" f +_ensure_directory Lib/shutil.py /^def _ensure_directory(path):$/;" f +_ensure_fd_no_transport Lib/asyncio/selector_events.py /^ def _ensure_fd_no_transport(self, fd):$/;" m class:BaseSelectorEventLoop +_ensure_fd_no_transport Lib/test/test_asyncio/utils.py /^ def _ensure_fd_no_transport(self, fd):$/;" m class:TestLoop +_ensure_header_written Lib/aifc.py /^ def _ensure_header_written(self, datasize):$/;" m class:Aifc_write +_ensure_header_written Lib/sunau.py /^ def _ensure_header_written(self):$/;" m class:Au_write +_ensure_header_written Lib/wave.py /^ def _ensure_header_written(self, datasize):$/;" m class:Wave_write +_ensure_not_running Modules/_xxsubinterpretersmodule.c /^_ensure_not_running(PyInterpreterState *interp)$/;" f file: +_ensure_resolved Lib/asyncio/base_events.py /^ async def _ensure_resolved(self, address, *,$/;" m class:BaseEventLoop +_ensure_tree_maker Lib/test/test_importlib/_path.py /^def _ensure_tree_maker(obj: Union[str, TreeMaker]) -> TreeMaker:$/;" f +_enter Lib/threading.py /^ def _enter(self):$/;" m class:Barrier +_enter_buffered_busy Modules/_io/bufferedio.c /^_enter_buffered_busy(buffered *self)$/;" f file: +_enter_context Lib/unittest/case.py /^def _enter_context(cm, addcleanup):$/;" f +_enter_task Lib/asyncio/tasks.py /^def _enter_task(loop, task):$/;" f +_enter_task Lib/test/test_asyncio/test_tasks.py /^ _enter_task = staticmethod(tasks._c_enter_task)$/;" v class:CIntrospectionTests +_enter_task Lib/test/test_asyncio/test_tasks.py /^ _enter_task = None$/;" v class:BaseTaskIntrospectionTests +_enter_task Lib/test/test_asyncio/test_tasks.py /^ _enter_task = staticmethod(tasks._py_enter_task)$/;" v class:PyIntrospectionTests +_entered Lib/test/test_shutil.py /^ _entered = False$/;" v class:TestCopyFile.Faux +_enum_to_int Lib/signal.py /^def _enum_to_int(value):$/;" f +_enumerate Lib/threading.py /^def _enumerate():$/;" f +_eof_received Lib/asyncio/proactor_events.py /^ def _eof_received(self):$/;" m class:_ProactorReadPipeTransport +_epoch Lib/importlib/_bootstrap_external.py /^ _epoch = 0$/;" v class:_NamespacePath +_eq Lib/lib2to3/pytree.py /^ def _eq(self, other):$/;" m class:Base +_eq Lib/lib2to3/pytree.py /^ def _eq(self, other):$/;" m class:Leaf +_eq Lib/lib2to3/pytree.py /^ def _eq(self, other):$/;" m class:Node +_eq Lib/test/test_weakref.py /^ def _eq(a, b):$/;" f function:WeakMethodTestCase.test_equality +_eq_mtime Lib/zipimport.py /^def _eq_mtime(t1, t2):$/;" f +_err_stackitem Include/cpython/pystate.h /^typedef struct _err_stackitem {$/;" s +_error Lib/gettext.py /^def _error(value):$/;" f +_error Lib/test/test_dis.py /^ def _error():$/;" f function:get_tb +_error_exc Lib/pdb.py /^ def _error_exc(self):$/;" m class:Pdb +_error_message Lib/unittest/mock.py /^ def _error_message():$/;" f function:AsyncMockMixin.assert_awaited_with +_error_message Lib/unittest/mock.py /^ def _error_message():$/;" f function:NonCallableMock.assert_called_with +_escape Lib/plistlib.py /^def _escape(text):$/;" f +_escape Lib/re/_parser.py /^def _escape(source, escape, state):$/;" f +_escape_attrib Lib/xml/etree/ElementTree.py /^def _escape_attrib(text):$/;" f +_escape_attrib_c14n Lib/xml/etree/ElementTree.py /^def _escape_attrib_c14n(text):$/;" f +_escape_attrib_html Lib/xml/etree/ElementTree.py /^def _escape_attrib_html(text):$/;" f +_escape_cdata Lib/xml/etree/ElementTree.py /^def _escape_cdata(text):$/;" f +_escape_cdata_c14n Lib/xml/etree/ElementTree.py /^def _escape_cdata_c14n(text):$/;" f +_escape_stdout Lib/pydoc.py /^def _escape_stdout(text):$/;" f +_eval_type Lib/typing.py /^def _eval_type(t, globalns, localns, recursive_guard=frozenset()):$/;" f +_evaluate Lib/typing.py /^ def _evaluate(self, globalns, localns, recursive_guard):$/;" m class:ForwardRef +_event_loop_policy Lib/asyncio/events.py /^_event_loop_policy = None$/;" v +_exact_half Lib/_pydecimal.py /^_exact_half = re.compile('50*$').match$/;" v +_exact_ratio Lib/statistics.py /^def _exact_ratio(x):$/;" f +_exc_info_to_string Lib/unittest/result.py /^ def _exc_info_to_string(self, err, test):$/;" m class:TestResult +_excepthandler Include/internal/pycore_ast.h /^struct _excepthandler {$/;" s +_excepthandler_kind Include/internal/pycore_ast.h /^enum _excepthandler_kind {ExceptHandler_kind=1};$/;" g +_exception Lib/asyncio/futures.py /^ _exception = None$/;" v class:Future +_exception Lib/test/support/asyncore.py /^def _exception(obj):$/;" f +_exception_traceback Lib/doctest.py /^def _exception_traceback(exc_info):$/;" f +_exceptiongroup_split_matcher_type Objects/exceptions.c /^} _exceptiongroup_split_matcher_type;$/;" t typeref:enum:__anon734 file: +_exceptiongroup_split_result Objects/exceptions.c /^} _exceptiongroup_split_result;$/;" t typeref:struct:__anon735 file: +_exec Lib/importlib/_bootstrap.py /^def _exec(spec, module):$/;" f +_exec Lib/test/test_monitoring.py /^ def _exec(self, co):$/;" m class:TestLoadSuperAttr +_exec_future Lib/test/test_future.py /^ def _exec_future(self, code):$/;" m class:AnnotationsFutureTestCase +_exec_super Lib/test/test_monitoring.py /^ def _exec_super(self, codestr, optimized=False):$/;" m class:TestLoadSuperAttr +_execute_child Lib/subprocess.py /^ def _execute_child(self, args, executable, preexec_fn, close_fds,$/;" f function:Popen._on_error_fd_closer +_execute_child Lib/test/test_subprocess.py /^ def _execute_child(self, *args, **kwargs):$/;" m class:POSIXProcessTestCase._TestExecuteChildPopen +_execute_child Lib/test/test_subprocess.py /^ def _execute_child(self, *args, **kwargs):$/;" m class:PopenExecuteChildRaises +_execute_mock_call Lib/unittest/mock.py /^ async def _execute_mock_call(self, \/, *args, **kwargs):$/;" m class:AsyncMockMixin +_execute_mock_call Lib/unittest/mock.py /^ def _execute_mock_call(self, \/, *args, **kwargs):$/;" m class:CallableMixin +_execvpe Lib/os.py /^def _execvpe(file, args, env=None):$/;" f +_execvpe_mockup Lib/test/test_os.py /^def _execvpe_mockup(defpath=None):$/;" f +_exhaustive_wait Lib/multiprocessing/connection.py /^ def _exhaustive_wait(handles, timeout):$/;" f function:XmlClient +_exists Lib/os.py /^def _exists(name):$/;" f +_exists Lib/tempfile.py /^def _exists(fn):$/;" f +_exit Lib/asyncio/locks.py /^ def _exit(self):$/;" m class:Barrier +_exit Lib/test/test_concurrent_futures/test_deadlock.py /^def _exit():$/;" f +_exit Lib/test/test_contextlib.py /^ def _exit():$/;" f function:TestBaseExitStack.test_close +_exit Lib/test/test_contextlib.py /^ def _exit():$/;" f function:TestBaseExitStack.test_pop_all +_exit Lib/test/test_contextlib.py /^ def _exit():$/;" m class:TestBaseExitStack.test_enter_context.TestCM +_exit Lib/test/test_contextlib.py /^ def _exit(*args, **kwds):$/;" f function:TestBaseExitStack.test_callback +_exit Lib/test/test_contextlib_async.py /^ async def _exit():$/;" m class:TestAsyncExitStack.test_enter_async_context.TestCM +_exit Lib/test/test_contextlib_async.py /^ async def _exit(*args, **kwds):$/;" f function:TestAsyncExitStack.test_async_callback +_exit Lib/threading.py /^ def _exit(self):$/;" m class:Barrier +_exit Lib/tkinter/__init__.py /^def _exit(code=0):$/;" f +_exit_function Lib/multiprocessing/util.py /^def _exit_function(info=info, debug=debug, _run_finalizers=_run_finalizers,$/;" f +_exit_wrapper Lib/contextlib.py /^ async def _exit_wrapper(exc_type, exc, tb):$/;" f function:AsyncExitStack._create_async_cb_wrapper +_exit_wrapper Lib/contextlib.py /^ def _exit_wrapper(exc_type, exc, tb):$/;" f function:_BaseExitStack._create_cb_wrapper +_exitcode_to_name Lib/multiprocessing/process.py /^_exitcode_to_name = {}$/;" v +_exited_with Lib/test/test_shutil.py /^ _exited_with = None$/;" v class:TestCopyFile.Faux +_exitfunc Lib/weakref.py /^ def _exitfunc(cls):$/;" m class:finalize +_exiting Lib/multiprocessing/util.py /^_exiting = False$/;" v +_expand_help Lib/argparse.py /^ def _expand_help(self, action):$/;" m class:HelpFormatter +_expand_lang Lib/gettext.py /^def _expand_lang(loc):$/;" f +_expand_vars Lib/sysconfig.py /^def _expand_vars(scheme, vars):$/;" f +_expect_exc Lib/test/test_contextlib.py /^ def _expect_exc(exc_type, exc, exc_tb):$/;" f function:TestBaseExitStack.test_push +_expect_exc Lib/test/test_contextlib_async.py /^ async def _expect_exc(exc_type, exc, exc_tb):$/;" f function:TestAsyncExitStack.test_async_push +_expect_ok Lib/test/test_contextlib.py /^ def _expect_ok(exc_type, exc, exc_tb):$/;" f function:TestBaseExitStack.test_push +_expect_ok Lib/test/test_contextlib_async.py /^ async def _expect_ok(exc_type, exc, exc_tb):$/;" f function:TestAsyncExitStack.test_async_push +_expected_files Lib/test/test_tomllib/test_data.py /^_expected_files = []$/;" v +_explain_to Lib/mailbox.py /^ def _explain_to(self, message):$/;" m class:BabylMessage +_explain_to Lib/mailbox.py /^ def _explain_to(self, message):$/;" m class:MHMessage +_explain_to Lib/mailbox.py /^ def _explain_to(self, message):$/;" m class:MaildirMessage +_explain_to Lib/mailbox.py /^ def _explain_to(self, message):$/;" m class:Message +_explain_to Lib/mailbox.py /^ def _explain_to(self, message):$/;" m class:_mboxMMDFMessage +_explode_shorthand_ip_string Lib/ipaddress.py /^ def _explode_shorthand_ip_string(self):$/;" m class:_BaseV4 +_explode_shorthand_ip_string Lib/ipaddress.py /^ def _explode_shorthand_ip_string(self):$/;" m class:_BaseV6 +_exposed_ Doc/includes/mp_newtype.py /^ _exposed_ = ['__next__']$/;" v class:GeneratorProxy +_exposed_ Lib/multiprocessing/managers.py /^ _exposed_ = ('__getattribute__', '__setattr__', '__delattr__')$/;" v class:NamespaceProxy +_exposed_ Lib/multiprocessing/managers.py /^ _exposed_ = ('__getattribute__', 'wait', 'abort', 'reset')$/;" v class:BarrierProxy +_exposed_ Lib/multiprocessing/managers.py /^ _exposed_ = ('__next__', 'send', 'throw', 'close')$/;" v class:IteratorProxy +_exposed_ Lib/multiprocessing/managers.py /^ _exposed_ = ('acquire', 'release')$/;" v class:AcquirerProxy +_exposed_ Lib/multiprocessing/managers.py /^ _exposed_ = ('acquire', 'release', 'wait', 'notify', 'notify_all')$/;" v class:ConditionProxy +_exposed_ Lib/multiprocessing/managers.py /^ _exposed_ = ('get', 'set')$/;" v class:ValueProxy +_exposed_ Lib/multiprocessing/managers.py /^ _exposed_ = ('is_set', 'set', 'clear', 'wait')$/;" v class:EventProxy +_exposed_ Lib/test/_test_multiprocessing.py /^ _exposed_ = ('__next__',)$/;" v class:IteratorProxy +_expr Include/internal/pycore_ast.h /^struct _expr {$/;" s +_expr_context Include/internal/pycore_ast.h /^typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;$/;" g +_expr_kind Include/internal/pycore_ast.h /^enum _expr_kind {BoolOp_kind=1, NamedExpr_kind=2, BinOp_kind=3, UnaryOp_kind=4,$/;" g +_exr Lib/email/mime/image.py /^def _exr(h):$/;" f +_extend Tools/c-analyzer/c_parser/info.py /^ def _extend(self, decls):$/;" m class:Declarations +_extend_dict Lib/sysconfig.py /^def _extend_dict(target_dict, other_dict):$/;" f +_extend_docstrings Lib/email/_policybase.py /^def _extend_docstrings(cls):$/;" f +_extension_cache Lib/copyreg.py /^_extension_cache = {} # code -> object$/;" v +_extension_details Lib/test/test_importlib/util.py /^def _extension_details():$/;" f +_extension_in_filetypes Lib/idlelib/idle_test/test_iomenu.py /^def _extension_in_filetypes(extension):$/;" f +_extension_registry Lib/copyreg.py /^_extension_registry = {} # key -> code$/;" v +_extensions_cache_clear_all Python/import.c /^_extensions_cache_clear_all(void)$/;" f file: +_extensions_cache_delete Python/import.c /^_extensions_cache_delete(PyObject *filename, PyObject *name)$/;" f file: +_extensions_cache_get Python/import.c /^_extensions_cache_get(PyObject *filename, PyObject *name)$/;" f file: +_extensions_cache_set Python/import.c /^_extensions_cache_set(PyObject *filename, PyObject *name, PyModuleDef *def)$/;" f file: +_extra_handlers Lib/test/test_urllib2net.py /^ def _extra_handlers(self):$/;" m class:OtherNetworkTests +_extra_help_callback Lib/idlelib/editor.py /^ def _extra_help_callback(self, resource):$/;" m class:EditorWindow +_extra_reducers Lib/multiprocessing/reduction.py /^ _extra_reducers = {}$/;" v class:ForkingPickler +_extract_caret_anchors_from_line_segment Lib/traceback.py /^def _extract_caret_anchors_from_line_segment(segment):$/;" f +_extract_from_extended_frame_gen Lib/traceback.py /^ def _extract_from_extended_frame_gen(klass, frame_gen, *, limit=None,$/;" m class:StackSummary +_extract_future_flags Lib/doctest.py /^def _extract_future_flags(globs):$/;" f +_extract_logrecord_process_name Lib/test/test_logging.py /^ def _extract_logrecord_process_name(key, logMultiprocessing, conn=None):$/;" m class:LogRecordTest +_extract_member Lib/tarfile.py /^ def _extract_member(self, tarinfo, targetpath, set_attrs=True,$/;" m class:TarFile +_extract_member Lib/zipfile/__init__.py /^ def _extract_member(self, member, targetpath, pwd):$/;" m class:ZipFile +_extract_mock Lib/unittest/mock.py /^def _extract_mock(obj):$/;" f +_extract_mock_name Lib/unittest/mock.py /^ def _extract_mock_name(self):$/;" m class:NonCallableMock +_extract_one Lib/tarfile.py /^ def _extract_one(self, tarinfo, path, set_attrs, numeric_owner):$/;" m class:TarFile +_extract_recreation_code Lib/multiprocessing/shared_memory.py /^ def _extract_recreation_code(value):$/;" m class:ShareableList +_extract_text_encoding Lib/zipfile/_path/__init__.py /^def _extract_text_encoding(encoding=None, *args, **kwargs):$/;" f +_f Lib/_collections_abc.py /^def _f(): pass$/;" f +_f Lib/test/test_dis.py /^def _f(a):$/;" f +_f Lib/types.py /^def _f(): pass$/;" f +_f_builtins Tools/gdb/libpython.py /^ def _f_builtins(self):$/;" m class:PyFramePtr +_f_code Tools/gdb/libpython.py /^ def _f_code(self):$/;" m class:PyFramePtr +_f_frame_data Include/internal/pycore_frame.h /^ PyObject *_f_frame_data[1];$/;" m struct:_frame +_f_globals Tools/gdb/libpython.py /^ def _f_globals(self):$/;" m class:PyFramePtr +_f_lasti Tools/gdb/libpython.py /^ def _f_lasti(self):$/;" m class:PyFramePtr +_f_nlocalsplus Tools/gdb/libpython.py /^ def _f_nlocalsplus(self):$/;" m class:PyFramePtr +_f_special Tools/gdb/libpython.py /^ def _f_special(self, name, convert=PyObjectPtr.from_pyobject_ptr):$/;" m class:PyFramePtr +_fa Lib/test/test_buffer.py /^def _fa(items, s):$/;" f +_factorize Objects/stringlib/fastsearch.h /^STRINGLIB(_factorize)(const STRINGLIB_CHAR *needle,$/;" f +_factory Lib/test/test_defaultdict.py /^ def _factory(self):$/;" m class:TestDefaultDict.test_recursive_repr.sub +_factory Lib/test/test_mailbox.py /^ _factory = None # Overridden by subclasses to reuse tests$/;" v class:TestMailbox +_factory Lib/test/test_mailbox.py /^ _factory = mailbox.BabylMessage$/;" v class:TestBabylMessage +_factory Lib/test/test_mailbox.py /^ _factory = mailbox.MHMessage$/;" v class:TestMHMessage +_factory Lib/test/test_mailbox.py /^ _factory = mailbox.MMDFMessage$/;" v class:TestMMDFMessage +_factory Lib/test/test_mailbox.py /^ _factory = mailbox.MaildirMessage$/;" v class:TestMaildirMessage +_factory Lib/test/test_mailbox.py /^ _factory = mailbox.Message # Overridden by subclasses to reuse tests$/;" v class:TestMessage +_factory Lib/test/test_mailbox.py /^ _factory = mailbox._mboxMMDFMessage$/;" v class:_TestMboxMMDFMessage +_factory Lib/test/test_mailbox.py /^ _factory = mailbox.mboxMessage$/;" v class:TestMboxMessage +_fail_neg Lib/statistics.py /^def _fail_neg(values, errmsg='negative value'):$/;" f +_fail_on_deadlock Lib/test/test_concurrent_futures/test_deadlock.py /^ def _fail_on_deadlock(self, executor):$/;" m class:ExecutorDeadlockTest +_failedMessage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ LPWSTR _failedMessage;$/;" m class:PythonBootstrapperApplication file: +_failure_header Lib/doctest.py /^ def _failure_header(self, test, example):$/;" m class:DocTestRunner +_fake_rename Lib/test/test_shutil.py /^def _fake_rename(*args, **kwargs):$/;" f +_fakefunc Lib/test/test_asyncio/test_futures.py /^def _fakefunc(f):$/;" f +_false Lib/codecs.py /^_false = 0$/;" v +_false Lib/xml/sax/__init__.py /^_false = 0$/;" v +_fancy_helper Lib/difflib.py /^ def _fancy_helper(self, a, alo, ahi, b, blo, bhi):$/;" m class:Differ +_fancy_replace Lib/difflib.py /^ def _fancy_replace(self, a, alo, ahi, b, blo, bhi):$/;" m class:Differ +_fastcall_to_tuple Modules/_testcapimodule.c /^_fastcall_to_tuple(PyObject* const* args, Py_ssize_t nargs)$/;" f file: +_fastcopy_fcopyfile Lib/shutil.py /^def _fastcopy_fcopyfile(fsrc, fdst, flags):$/;" f +_fastcopy_sendfile Lib/shutil.py /^def _fastcopy_sendfile(fsrc, fdst):$/;" f +_fatal_error Lib/asyncio/proactor_events.py /^ def _fatal_error(self, exc, message='Fatal error on pipe transport'):$/;" m class:_ProactorBasePipeTransport +_fatal_error Lib/asyncio/selector_events.py /^ def _fatal_error(self, exc, message='Fatal error on transport'):$/;" m class:_SelectorTransport +_fatal_error Lib/asyncio/sslproto.py /^ def _fatal_error(self, exc, message='Fatal error on transport'):$/;" m class:SSLProtocol +_fatal_error Lib/asyncio/unix_events.py /^ def _fatal_error(self, exc, message='Fatal error on pipe transport'):$/;" m class:_UnixReadPipeTransport +_fatal_error Lib/asyncio/unix_events.py /^ def _fatal_error(self, exc, message='Fatal error on pipe transport'):$/;" m class:_UnixWritePipeTransport +_faulthandler_runtime_state Include/internal/pycore_faulthandler.h /^struct _faulthandler_runtime_state {$/;" s +_faulthandler_runtime_state_INIT Include/internal/pycore_faulthandler.h 88;" d +_fd Lib/_pyio.py /^ _fd = -1$/;" v class:FileIO +_fd Lib/multiprocessing/shared_memory.py /^ _fd = -1$/;" v class:SharedMemory +_fd_converter Modules/posixmodule.c /^_fd_converter(PyObject *o, int *p)$/;" f file: +_fdwalk_close_func Python/fileutils.c /^_fdwalk_close_func(void *lohi, int fd)$/;" f file: +_features Lib/codeop.py /^_features = [getattr(__future__, fname)$/;" v +_features Lib/xml/dom/minidom.py /^ _features = [("core", "1.0"),$/;" v class:DOMImplementation +_feed Lib/multiprocessing/queues.py /^ def _feed(buffer, notempty, send_bytes, writelock, reader_close,$/;" m class:Queue +_feed Lib/test/test_xml_etree.py /^ def _feed(self, parser, data, chunk_size=None):$/;" m class:XMLPullParserTest +_feed_data_to_buffered_proto Lib/asyncio/protocols.py /^def _feed_data_to_buffered_proto(proto, data):$/;" f +_feed_stdin Lib/asyncio/subprocess.py /^ async def _feed_stdin(self, input):$/;" m class:Process +_fhcdata Modules/_tkinter.c /^typedef struct _fhcdata {$/;" s file: +_field_assign Lib/dataclasses.py /^def _field_assign(frozen, name, value, self_name):$/;" f +_field_init Lib/dataclasses.py /^def _field_init(f, frozen, globals, self_name, slots):$/;" f +_fields Include/internal/pycore_ast_state.h /^ PyObject *_fields;$/;" m struct:ast_state +_fields Lib/ast.py /^ _fields = ('n',)$/;" v class:Num +_fields Lib/ast.py /^ _fields = ('s',)$/;" v class:Bytes +_fields Lib/ast.py /^ _fields = ('s',)$/;" v class:Str +_fields Lib/ast.py /^ _fields = ()$/;" v class:Ellipsis +_fields Lib/platform.py /^ _fields = ('system', 'node', 'release', 'version', 'machine', 'processor')$/;" v class:uname_result +_fields Lib/test/test_c_locale_coercion.py /^_fields = "fsencoding stdin_info stdout_info stderr_info lang lc_ctype lc_all"$/;" v +_fields Lib/test/test_import/__init__.py /^ _fields = tuple('id module ns ns_id cached cached_id'.split())$/;" v class:ModuleSnapshot +_fields Lib/test/test_pydoc.py /^ _fields = None$/;" v class:TestDescriptions.test_field_order_for_named_tuples.NonIterableFields +_fields Lib/test/test_pydoc.py /^ _fields = [[]]$/;" v class:TestDescriptions.test_field_order_for_named_tuples.NonHashableFields +_fields Lib/test/test_typing.py /^ def _fields(self):$/;" m class:NamedTupleTests.test_annotation_usage_with_methods.XMethBad +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [("cx", LONG),$/;" v class:SIZE +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [("dwFileAttributes", DWORD),$/;" v class:WIN32_FIND_DATAA +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [("dwFileAttributes", DWORD),$/;" v class:WIN32_FIND_DATAW +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [("dwLowDateTime", DWORD),$/;" v class:FILETIME +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [("hWnd", HWND),$/;" v class:MSG +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [("left", LONG),$/;" v class:RECT +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [("x", LONG),$/;" v class:POINT +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [('Left', SHORT),$/;" v class:_SMALL_RECT +_fields_ Lib/ctypes/wintypes.py /^ _fields_ = [('X', SHORT),$/;" v class:_COORD +_fields_ Lib/test/_test_multiprocessing.py /^ _fields_ = [$/;" v class:_Foo +_fields_ Lib/test/leakers/test_ctypes.py /^ _fields_ = [("a", POINTER(POINT))]$/;" v class:leak_inner.RECT +_fields_ Lib/test/leakers/test_ctypes.py /^ _fields_ = [("x", c_int)]$/;" v class:leak_inner.POINT +_fields_ Lib/test/support/__init__.py /^ _fields_ = [("highLongOfPSN", c_int),$/;" v class:_is_gui_available.USEROBJECTFLAGS.ProcessSerialNumber +_fields_ Lib/test/support/__init__.py /^ _fields_ = [("fInherit", ctypes.wintypes.BOOL),$/;" v class:_is_gui_available.USEROBJECTFLAGS +_fields_ Lib/test/test_buffer.py /^ _fields_ = [("x", ctypes.c_long), ("y", ctypes.c_double)]$/;" v class:TestBufferProtocol.test_memoryview_cast_1D_ND.BEPoint +_fields_ Lib/test/test_buffer.py /^ _fields_ = [("x", ctypes.c_long), ("y", ctypes.c_long)]$/;" v class:TestBufferProtocol.test_memoryview_compare_special_cases.BEPoint +_fields_ Lib/test/test_buffer.py /^ _fields_ = [("x", ctypes.c_long), ("y", ctypes.c_long)]$/;" v class:TestBufferProtocol.test_memoryview_tobytes.BEPoint +_fields_ Lib/test/test_codecs.py /^ _fields_ = [("MaxCharSize", UINT),$/;" v class:is_code_page_present.CPINFOEXW +_fields_ Lib/test/test_ctypes/test_anon.py /^ _fields_ = []$/;" v class:AnonTest.test_issue31490.Name +_fields_ Lib/test/test_ctypes/test_anon.py /^ _fields_ = [("_", ANON_S),$/;" v class:AnonTest.test_nested.ANON_U +_fields_ Lib/test/test_ctypes/test_anon.py /^ _fields_ = [("a", c_int),$/;" v class:AnonTest.test_anon.ANON +_fields_ Lib/test/test_ctypes/test_anon.py /^ _fields_ = [("a", c_int)]$/;" v class:AnonTest.test_nested.ANON_S +_fields_ Lib/test/test_ctypes/test_anon.py /^ _fields_ = [("x", c_int),$/;" v class:AnonTest.test_anon.Y +_fields_ Lib/test/test_ctypes/test_anon.py /^ _fields_ = [("x", c_int),$/;" v class:AnonTest.test_nested.Y +_fields_ Lib/test/test_ctypes/test_array_in_pointer.py /^ _fields_ = [("pvalues", POINTER(Value))]$/;" v class:Container +_fields_ Lib/test/test_ctypes/test_array_in_pointer.py /^ _fields_ = [("val", c_byte)]$/;" v class:Value +_fields_ Lib/test/test_ctypes/test_arrays.py /^ _fields_ = []$/;" v class:ArrayTestCase.test_empty_element_struct.EmptyStruct +_fields_ Lib/test/test_ctypes/test_as_parameter.py /^ _fields_ = [("a", c_int),$/;" v class:BasicWrapTestCase.test_struct_return_8H.S8I +_fields_ Lib/test/test_ctypes/test_as_parameter.py /^ _fields_ = [("x", c_short),$/;" v class:BasicWrapTestCase.test_struct_return_2H.S2H +_fields_ Lib/test/test_ctypes/test_as_parameter.py /^ _fields_ = [("x", c_int), ("y", c_int)]$/;" v class:POINT +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_typ, 1)]$/;" v class:BitFieldTest.test_single_bitfield_size.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_typ, 3),$/;" v class:BitFieldTest.test_unsigned.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_typ, sizeof(c_typ)*8)]$/;" v class:BitFieldTest.test_single_bitfield_size.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("dummy", c_typ),$/;" v class:BitFieldTest.test_signed.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("_", X)]$/;" v class:BitFieldTest.test_anon_bitfields.Y +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_byte, 4),$/;" v class:BitFieldTest.test_anon_bitfields.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_byte, 4),$/;" v class:BitFieldTest.test_mixed_1.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_byte, 4),$/;" v class:BitFieldTest.test_mixed_2.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_byte, 4),$/;" v class:BitFieldTest.test_mixed_3.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_longlong, 1),$/;" v class:BitFieldTest.test_longlong.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_short, 1),$/;" v class:BitFieldTest.test_multi_bitfields_size.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_short, 3),$/;" v class:BitFieldTest.test_multi_bitfields_size.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_short, 4),$/;" v class:BitFieldTest.test_mixed_4.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_uint32, 24),$/;" v class:BitFieldTest.test_uint32_swap_big_endian.Big +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_uint32, 24),$/;" v class:BitFieldTest.test_uint32_swap_little_endian.Little +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_uint32, 32)]$/;" v class:BitFieldTest.test_uint32.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_uint64, 64)]$/;" v class:BitFieldTest.test_uint64.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("a", c_ulonglong, 1),$/;" v class:BitFieldTest.test_ulonglong.X +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = []$/;" v class:BitFieldTest.test_nonint_types.Dummy +_fields_ Lib/test/test_ctypes/test_bitfields.py /^ _fields_ = [("A", c_int, 1),$/;" v class:BITS +_fields_ Lib/test/test_ctypes/test_bytes.py /^ _fields_ = [("a", c_char * 3)]$/;" v class:BytesTest.test_struct.X +_fields_ Lib/test/test_ctypes/test_bytes.py /^ _fields_ = [("a", c_wchar * 3)]$/;" v class:BytesTest.test_struct_W.X +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("point", NestedStructure)]$/;" v class:Test.test_struct_struct.TestStructure +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("point", NestedStructure)]$/;" v class:Test.test_union_struct.TestUnion +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("x", c_uint32),$/;" v class:Test.test_struct_struct.NestedStructure +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("x", c_uint32),$/;" v class:Test.test_union_struct.NestedStructure +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = fields + [("x", typ)]$/;" v class:Test.test_struct_fields_unsupported_byte_order.T +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = fields + [("x", typ)]$/;" v class:Test.test_union_fields_unsupported_byte_order.T +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("b", c_byte),$/;" v class:Test.test_struct_field_alignment.S +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("b", c_byte),$/;" v class:Test.test_unaligned_native_struct_fields.S +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("b", c_byte),$/;" v class:Test.test_unaligned_nonnative_struct_fields.S +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("x", c_int), ("y", c_int)]$/;" v class:Test.test_slots.BigPoint +_fields_ Lib/test/test_ctypes/test_byteswap.py /^ _fields_ = [("x", c_int), ("y", c_int)]$/;" v class:Test.test_slots.LowPoint +_fields_ Lib/test/test_ctypes/test_callbacks.py /^ _fields_ = [$/;" v class:SampleCallbacksTestCase.test_callback_large_struct.X +_fields_ Lib/test/test_ctypes/test_cast.py /^ _fields_ = [("a", c_int)]$/;" v class:Test.test_bad_type_arg.MyUnion +_fields_ Lib/test/test_ctypes/test_cast.py /^ _fields_ = [("a", c_int)]$/;" v class:Test.test_bad_type_arg.Struct +_fields_ Lib/test/test_ctypes/test_delattr.py /^ _fields_ = [("foo", c_int)]$/;" v class:X +_fields_ Lib/test/test_ctypes/test_frombuffer.py /^ _fields_ = [("c_int", c_int)]$/;" v class:X +_fields_ Lib/test/test_ctypes/test_funcptr.py /^ _fields_ = [("style", c_uint),$/;" v class:CFuncPtrTestCase.test_structures.WNDCLASS +_fields_ Lib/test/test_ctypes/test_functions.py /^ _fields_ = []$/;" v class:FunctionTestCase.test_mro.X +_fields_ Lib/test/test_ctypes/test_functions.py /^ _fields_ = [("a", c_int),$/;" v class:FunctionTestCase.test_struct_return_8H.S8I +_fields_ Lib/test/test_ctypes/test_functions.py /^ _fields_ = [("a", c_int),$/;" v class:FunctionTestCase.test_struct_return_8H_stdcall.S8I +_fields_ Lib/test/test_ctypes/test_functions.py /^ _fields_ = [("x", c_short),$/;" v class:FunctionTestCase.test_struct_return_2H.S2H +_fields_ Lib/test/test_ctypes/test_functions.py /^ _fields_ = [("x", c_short),$/;" v class:FunctionTestCase.test_struct_return_2H_stdcall.S2H +_fields_ Lib/test/test_ctypes/test_functions.py /^ _fields_ = [("left", c_int), ("top", c_int),$/;" v class:RECT +_fields_ Lib/test/test_ctypes/test_functions.py /^ _fields_ = [("x", c_int), ("y", c_int)]$/;" v class:POINT +_fields_ Lib/test/test_ctypes/test_incomplete.py /^ _fields_ = [("name", c_char_p),$/;" v class:MyTestCase.test_incomplete_example.cell +_fields_ Lib/test/test_ctypes/test_init.py /^ _fields_ = [("a", c_int),$/;" v class:X +_fields_ Lib/test/test_ctypes/test_init.py /^ _fields_ = [("x", X)]$/;" v class:Y +_fields_ Lib/test/test_ctypes/test_internals.py /^ _fields_ = [("a", c_char_p), ("b", c_char_p)]$/;" v class:ObjectsTestCase.test_xxx.X +_fields_ Lib/test/test_ctypes/test_internals.py /^ _fields_ = [("a", c_int), ("b", c_int)]$/;" v class:ObjectsTestCase.test_embedded_structs.X +_fields_ Lib/test/test_ctypes/test_internals.py /^ _fields_ = [("a", c_int), ("b", c_int)]$/;" v class:ObjectsTestCase.test_simple_struct.X +_fields_ Lib/test/test_ctypes/test_internals.py /^ _fields_ = [("data", POINTER(c_int))]$/;" v class:ObjectsTestCase.test_ptr_struct.X +_fields_ Lib/test/test_ctypes/test_internals.py /^ _fields_ = [("x", X), ("y", X)]$/;" v class:ObjectsTestCase.test_embedded_structs.Y +_fields_ Lib/test/test_ctypes/test_internals.py /^ _fields_ = [("x", X), ("y", X)]$/;" v class:ObjectsTestCase.test_xxx.Y +_fields_ Lib/test/test_ctypes/test_keeprefs.py /^ _fields_ = [("a", POINTER(POINT)),$/;" v class:PointerToStructure.test.RECT +_fields_ Lib/test/test_ctypes/test_keeprefs.py /^ _fields_ = [("a", c_char_p),$/;" v class:StructureTestCase.test_ccharp_struct.X +_fields_ Lib/test/test_ctypes/test_keeprefs.py /^ _fields_ = [("a", c_int),$/;" v class:StructureTestCase.test_cint_struct.X +_fields_ Lib/test/test_ctypes/test_keeprefs.py /^ _fields_ = [("ul", POINT), ("lr", POINT)]$/;" v class:StructureTestCase.test_struct_struct.RECT +_fields_ Lib/test/test_ctypes/test_keeprefs.py /^ _fields_ = [("x", c_int), ("y", c_int)]$/;" v class:PointerToStructure.test.POINT +_fields_ Lib/test/test_ctypes/test_keeprefs.py /^ _fields_ = [("x", c_int), ("y", c_int)]$/;" v class:StructureTestCase.test_struct_struct.POINT +_fields_ Lib/test/test_ctypes/test_keeprefs.py /^ _fields_ = [("x", c_int),$/;" v class:ArrayTestCase.test_cint_array.X +_fields_ Lib/test/test_ctypes/test_parameters.py /^ _fields_ = [("a", c_void_p), ("b", c_void_p)]$/;" v class:SimpleTypesTestCase.test_from_param_result_refcount.Y +_fields_ Lib/test/test_ctypes/test_parameters.py /^ _fields_ = [("a", c_void_p)]$/;" v class:SimpleTypesTestCase.test_from_param_result_refcount.X +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("a", c_int)]$/;" v class:aUnion +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_byte), ("y", c_uint)]$/;" v class:PointMidPad +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_byte), ("y", c_uint64)]$/;" v class:PackedPointMidPad +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_long * 3 * 2), ("y", Point * 4)]$/;" v class:StructWithArrays +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_long), ("y", c_long)]$/;" v class:BEPoint +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_long), ("y", c_long)]$/;" v class:LEPoint +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_long), ("y", c_long)]$/;" v class:PackedPoint +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_long), ("y", c_long)]$/;" v class:Point +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_uint), ("y", c_byte)]$/;" v class:PointEndPad +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = [("x", c_uint64), ("y", c_byte)]$/;" v class:PackedPointEndPad +_fields_ Lib/test/test_ctypes/test_pep3118.py /^ _fields_ = []$/;" v class:EmptyStruct +_fields_ Lib/test/test_ctypes/test_pickling.py /^ _fields_ = [("a", c_int), ("b", c_double)]$/;" v class:X +_fields_ Lib/test/test_ctypes/test_pickling.py /^ _fields_ = [("str", c_char_p)]$/;" v class:Y +_fields_ Lib/test/test_ctypes/test_pointers.py /^ _fields_ = [("a", c_int),$/;" v class:PointersTestCase.test_other.Table +_fields_ Lib/test/test_ctypes/test_refcounts.py /^ _fields_ = [("a", OtherCallback)]$/;" v class:RefcountTestCase.test_refcount.X +_fields_ Lib/test/test_ctypes/test_simplesubclasses.py /^ _fields_ = [("x", MyInt)]$/;" v class:Test.test_int_struct.X +_fields_ Lib/test/test_ctypes/test_stringptr.py /^ _fields_ = [("str", POINTER(c_char))]$/;" v class:StringPtrTestCase.test__POINTER_c_char.X +_fields_ Lib/test/test_ctypes/test_stringptr.py /^ _fields_ = [("str", c_char_p)]$/;" v class:StringPtrTestCase.test__c_char_p.X +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = (("char", c_char * 5),)$/;" v class:StructFieldsTestCase.test_5.X +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = (("field", c_int),)$/;" v class:StructFieldsTestCase.test___get__.MyCStruct +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = (("field", c_int),)$/;" v class:StructFieldsTestCase.test___get__.MyCUnion +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = (("field", c_int),)$/;" v class:StructFieldsTestCase.test___set__.MyCStruct +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = (("field", c_int),)$/;" v class:StructFieldsTestCase.test___set__.MyCUnion +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = [("x", X)] # finalizes X$/;" v class:StructFieldsTestCase.test_3.Y +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = [("x", c_int)]$/;" v class:StructFieldsTestCase.test_6.X +_fields_ Lib/test/test_ctypes/test_struct_fields.py /^ _fields_ = [] # finalized$/;" v class:StructFieldsTestCase.test_1_B.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("x", c_char),$/;" v class:StructureTestCase.test_simple_structs.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("x", c_char),$/;" v class:StructureTestCase.test_unions.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [('x' * length, c_int)]$/;" v class:StructureTestCase.test_huge_field_name.create_class.S +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [(name, c_int)]$/;" v class:StructureTestCase.test_invalid_name.declare_with_name.S +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_38368.U +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_array_in_struct.Test2 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_array_in_struct.Test3 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_array_in_struct.Test3A +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_array_in_struct.Test3B +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_bitfield_by_value.Test6 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_bitfield_by_value.Test7 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_bitfield_by_value.Test8 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_pass_by_value.Test +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_pass_by_value_finalizer.Test +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_pass_by_value_in_register.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_union_by_value.Nested1 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_union_by_value.Nested2 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_union_by_value.Test4 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [$/;" v class:StructureTestCase.test_union_by_value.Test5 +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("a", X),$/;" v class:StructureTestCase.test_empty.XX +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("a", X),$/;" v class:StructureTestCase.test_struct_alignment.SI +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("a", X),$/;" v class:StructureTestCase.test_struct_alignment.XX +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("a", c_byte),$/;" v class:StructureTestCase.test_packed.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("a", c_int * 4)]$/;" v class:StructureTestCase.test_intarray_fields.SomeInts +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("a", c_int), ("b", c_int)]$/;" v class:StructureTestCase.test_positional_args.W +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("a", c_int)]$/;" v class:SubclassesTest.test_subclass.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("areacode", c_char*6),$/;" v class:StructureTestCase.test_init_errors.Phone +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("areacode", c_char*6),$/;" v class:StructureTestCase.test_nested_initializers.Phone +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("array", POINTER(c_int))]$/;" v class:PointerMemberTestCase.test.S +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("b", Y),$/;" v class:StructureTestCase.test_struct_alignment.IS +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("b", c_int)]$/;" v class:SubclassesTest.test_subclass.Y +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("c", c_int)]$/;" v class:StructureTestCase.test_positional_args.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("d", c_int), ("e", c_int), ("f", c_int)]$/;" v class:StructureTestCase.test_positional_args.Z +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("name", c_char * 12),$/;" v class:StructureTestCase.test_init_errors.Person +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("name", c_char * 12),$/;" v class:StructureTestCase.test_nested_initializers.Person +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("name", c_char*6),$/;" v class:StructureTestCase.test_initializers.Person +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("name", c_wchar * 12),$/;" v class:StructureTestCase.test_structures_with_wchar.PersonW +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("phi", c_float), ("rho", c_float)]$/;" v class:StructureTestCase.test_conflicting_initializers.POINT +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("x", c_char * 3),$/;" v class:StructureTestCase.test_struct_alignment.Y +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("x", c_char * 3)]$/;" v class:StructureTestCase.test_struct_alignment.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("x", c_int), ("y", c_int)]$/;" v class:StructureTestCase.test_keyword_initializers.POINT +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("x", c_int),$/;" v class:PointerMemberTestCase.test_none_to_pointer_fields.S +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = [("x", c_int),$/;" v class:StructureTestCase.test_fields.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = []$/;" v class:StructureTestCase.test_empty.X +_fields_ Lib/test/test_ctypes/test_structures.py /^ _fields_ = []$/;" v class:StructureTestCase.test_empty.Y +_fields_ Lib/test/test_ctypes/test_unaligned_structures.py /^ _fields_ = [("pad", c_byte),$/;" v class:X +_fields_ Lib/test/test_ctypes/test_unaligned_structures.py /^ _fields_ = [("pad", c_byte),$/;" v class:Y +_fields_ Lib/test/test_ctypes/test_unicode.py /^ _fields_ = [("unicode", ctypes.c_wchar_p)]$/;" v class:UnicodeTestCase.test_embedded_null.TestStruct +_fields_ Lib/test/test_ctypes/test_values.py /^ _fields_ = [("name", c_char_p),$/;" v class:PythonValuesTestCase.test_frozentable.struct_frozen +_fields_ Lib/test/test_ctypes/test_varsize_struct.py /^ _fields_ = [("item", c_int),$/;" v class:VarSizeTest.test_resize.X +_fields_ Lib/test/test_ctypes/test_win32.py /^ _fields_ = fields$/;" v class:ReturnStructSizesTestCase.test_sizes.S +_fields_ Lib/test/test_ctypes/test_win32.py /^ _fields_ = [("left", c_long),$/;" v class:Structures.test_struct_by_value.RECT +_fields_ Lib/test/test_ctypes/test_win32.py /^ _fields_ = [("x", c_long),$/;" v class:Structures.test_struct_by_value.POINT +_fields_ PC/layout/support/appxmanifest.py /^ _fields_ = [$/;" v class:get_packagefamilyname.PACKAGE_ID +_fields_ PC/validate_ucrtbase.py /^ _fields_ = [$/;" v class:VS_FIXEDFILEINFO +_fields_in_init_order Lib/dataclasses.py /^def _fields_in_init_order(fields):$/;" f +_file Lib/aifc.py /^ _file = None # Set here since __del__ checks it$/;" v class:Aifc_read +_file Lib/aifc.py /^ _file = None # Set here since __del__ checks it$/;" v class:Aifc_write +_file_like Lib/test/_test_multiprocessing.py /^class _file_like(object):$/;" c +_file_reduce Lib/zoneinfo/_zoneinfo.py /^ def _file_reduce(self):$/;" m class:ZoneInfo +_file_search Tools/ssl/make_ssl_data.py /^def _file_search(fname, pat):$/;" f +_file_template Lib/difflib.py /^ _file_template = _file_template$/;" v class:HtmlDiff +_filemode_table Lib/stat.py /^_filemode_table = ($/;" v +_filemode_to_int Lib/test/test_tarfile.py /^def _filemode_to_int(mode):$/;" f +_fileobj Lib/zipfile/__init__.py /^ def _fileobj(self):$/;" m class:_ZipWriteFile +_fileobj_lookup Lib/selectors.py /^ def _fileobj_lookup(self, fileobj):$/;" m class:_BaseSelectorImpl +_fileobj_to_fd Lib/selectors.py /^def _fileobj_to_fd(fileobj):$/;" f +_files_to_test Lib/test/test_unparse.py /^ _files_to_test = None$/;" v class:DirectoryTestCase +_filesbymodname Lib/inspect.py /^_filesbymodname = {}$/;" v +_fileutils_state Include/internal/pycore_fileutils.h /^struct _fileutils_state {$/;" s +_fill_cache Lib/importlib/_bootstrap_external.py /^ def _fill_cache(self):$/;" m class:FileFinder +_fill_logical Lib/_pydecimal.py /^ def _fill_logical(self, context, opa, opb):$/;" m class:Decimal +_fill_text Lib/argparse.py /^ def _fill_text(self, text, width, indent):$/;" m class:HelpFormatter +_fill_text Lib/argparse.py /^ def _fill_text(self, text, width, indent):$/;" m class:RawDescriptionHelpFormatter +_filter Lib/filecmp.py /^def _filter(flist, skip):$/;" f +_filter Lib/test/test_shutil.py /^ def _filter(src, names):$/;" f function:TestCopyTree.test_copytree_with_exclude +_filter_handle_list Lib/subprocess.py /^ def _filter_handle_list(self, handle_list):$/;" f function:Popen._on_error_fd_closer +_filter_reqfile Tools/c-analyzer/c_parser/preprocessor/gcc.py /^def _filter_reqfile(current, reqfile, samefiles):$/;" f +_filter_suite Lib/test/support/__init__.py /^def _filter_suite(suite, pred):$/;" f +_filter_trace Lib/tracemalloc.py /^ def _filter_trace(self, include_filters, exclude_filters, trace):$/;" m class:Snapshot +_filters_mutated Lib/warnings.py /^ def _filters_mutated():$/;" f +_filters_version Lib/warnings.py /^ _filters_version = 1$/;" v +_filterwarnings Lib/test/support/warnings_helper.py /^def _filterwarnings(filters, quiet=False):$/;" f +_finalize_close Lib/multiprocessing/queues.py /^ def _finalize_close(buffer, notempty):$/;" m class:Queue +_finalize_join Lib/multiprocessing/queues.py /^ def _finalize_join(twr):$/;" m class:Queue +_finalize_manager Lib/multiprocessing/managers.py /^ def _finalize_manager(process, address, authkey, state, _Client,$/;" m class:BaseManager +_finalize_pipe_listener Lib/multiprocessing/connection.py /^ def _finalize_pipe_listener(queue, address):$/;" m class:.PipeListener +_finalize_set Lib/email/contentmanager.py /^def _finalize_set(msg, disposition, filename, cid, params):$/;" f +_finalizer_counter Lib/multiprocessing/util.py /^_finalizer_counter = itertools.count()$/;" v +_finalizer_registry Lib/multiprocessing/util.py /^_finalizer_registry = {}$/;" v +_finalizing Include/internal/pycore_interp.h /^ _Py_atomic_address _finalizing;$/;" m struct:_is +_finalizing Include/internal/pycore_runtime.h /^ _Py_atomic_address _finalizing;$/;" m struct:pyruntimestate +_find Lib/doctest.py /^ def _find(self, tests, obj, name, module, source_lines, globs, seen):$/;" m class:DocTestFinder +_find Lib/lib2to3/fixer_util.py /^def _find(name, node):$/;" f +_find Lib/test/test_importlib/source/test_finder.py /^ def _find(self, finder, name, loader_only=False):$/;" m class:FinderTestsPEP420 +_find Lib/test/test_importlib/source/test_finder.py /^ def _find(self, finder, name, loader_only=False):$/;" m class:FinderTestsPEP451 +_find Tools/c-analyzer/c_parser/info.py /^ def _find(self, filename=None, funcname=None, name=None, kind=None):$/;" m class:Declarations +_findCommand PC/launcher2.c /^_findCommand(SearchInfo *search, const wchar_t *command, int commandLength)$/;" f +_findLib_crle Lib/ctypes/util.py /^ def _findLib_crle(name, is64):$/;" f +_findLib_gcc Lib/ctypes/util.py /^ def _findLib_gcc(name):$/;" f +_findLib_ld Lib/ctypes/util.py /^ def _findLib_ld(name):$/;" f +_findSoname_ldconfig Lib/ctypes/util.py /^ def _findSoname_ldconfig(name):$/;" f +_find_address_range Lib/ipaddress.py /^def _find_address_range(addresses):$/;" f +_find_and_load Lib/importlib/_bootstrap.py /^def _find_and_load(name, import_):$/;" f +_find_and_load_unlocked Lib/importlib/_bootstrap.py /^def _find_and_load_unlocked(name, import_):$/;" f +_find_appropriate_compiler Lib/_osx_support.py /^def _find_appropriate_compiler(_config_vars):$/;" f +_find_bind_rec Lib/test/test_lib2to3/test_util.py /^ def _find_bind_rec(self, name, node):$/;" m class:Test_does_tree_import +_find_body Lib/email/message.py /^ def _find_body(self, part, preferencelist):$/;" m class:MIMEPart +_find_build_tool Lib/_osx_support.py /^def _find_build_tool(toolname):$/;" f +_find_cycle Lib/graphlib.py /^ def _find_cycle(self):$/;" m class:TopologicalSorter +_find_data_repr_ Lib/enum.py /^ def _find_data_repr_(mcls, class_name, bases):$/;" m class:EnumType +_find_data_type_ Lib/enum.py /^ def _find_data_type_(mcls, class_name, bases):$/;" m class:EnumType +_find_exe Tools/c-analyzer/distutils/_msvccompiler.py /^def _find_exe(exe, paths=None):$/;" f +_find_exe_version Tools/c-analyzer/distutils/cygwinccompiler.py /^def _find_exe_version(cmd):$/;" f +_find_executable Lib/_osx_support.py /^def _find_executable(executable, path=None):$/;" f +_find_executable_linenos Lib/trace.py /^def _find_executable_linenos(filename):$/;" f +_find_impl Lib/functools.py /^def _find_impl(cls, registry):$/;" f +_find_imports Lib/dis.py /^def _find_imports(co):$/;" f +_find_isoformat_datetime_separator Lib/_pydatetime.py /^def _find_isoformat_datetime_separator(dtstr):$/;" f +_find_isoformat_datetime_separator Modules/_datetimemodule.c /^_find_isoformat_datetime_separator(const char *dtstr, Py_ssize_t len) {$/;" f file: +_find_lineno Lib/doctest.py /^ def _find_lineno(self, obj, source_lines):$/;" m class:DocTestFinder +_find_lines Lib/trace.py /^def _find_lines(code, strs):$/;" f +_find_lines_from_code Lib/trace.py /^def _find_lines_from_code(code, strs):$/;" f +_find_link_target Lib/tarfile.py /^ def _find_link_target(self, tarinfo):$/;" m class:TarFile +_find_mac_near_keyword Lib/uuid.py /^def _find_mac_near_keyword(command, args, keywords, get_word_index):$/;" f +_find_mac_under_heading Lib/uuid.py /^def _find_mac_under_heading(command, args, heading):$/;" f +_find_macro Tools/c-analyzer/distutils/ccompiler.py /^ def _find_macro(self, name):$/;" m class:CCompiler +_find_mime_parameters Lib/email/_header_value_parser.py /^def _find_mime_parameters(tokenlist, value):$/;" f +_find_module Lib/modulefinder.py /^def _find_module(name, path=None):$/;" f +_find_new_ Lib/enum.py /^ def _find_new_(mcls, classdict, member_type, first_enum):$/;" m class:EnumType +_find_new_ Lib/test/test_enum.py /^ _find_new_ = 1$/;" v class:_EnumTests.test_invalid_names.Wrong +_find_options Lib/doctest.py /^ def _find_options(self, source, name, lineno):$/;" m class:DocTestParser +_find_packages Lib/ensurepip/__init__.py /^def _find_packages(path):$/;" f +_find_parent_path_names Lib/importlib/_bootstrap_external.py /^ def _find_parent_path_names(self):$/;" m class:_NamespacePath +_find_script Tools/c-analyzer/c_common/scriptutil.py /^def _find_script():$/;" f +_find_set_handler Lib/email/contentmanager.py /^ def _find_set_handler(self, msg, obj):$/;" m class:ContentManager +_find_spec Lib/importlib/_bootstrap.py /^def _find_spec(name, path, target=None):$/;" f +_find_spec_from_path Lib/importlib/util.py /^def _find_spec_from_path(name, path=None):$/;" f +_find_store_names Lib/dis.py /^def _find_store_names(co):$/;" f +_find_strings Lib/trace.py /^def _find_strings(filename, encoding=None):$/;" f +_find_test_path Lib/unittest/loader.py /^ def _find_test_path(self, full_path, pattern):$/;" m class:TestLoader +_find_tests Lib/test/test_unittest/test_discovery.py /^ def _find_tests(start_dir, pattern):$/;" f function:TestDiscovery.test_discover +_find_tests Lib/test/test_unittest/test_discovery.py /^ def _find_tests(start_dir, pattern):$/;" f function:TestDiscovery.test_discovery_from_dotted_path +_find_tests Lib/test/test_unittest/test_program.py /^ def _find_tests(start_dir, pattern):$/;" f function:Test_TestProgram.test_discovery_from_dotted_path +_find_tests Lib/unittest/loader.py /^ def _find_tests(self, start_dir, pattern):$/;" m class:TestLoader +_find_ti Lib/test/datetimetester.py /^ def _find_ti(self, dt, i):$/;" m class:ZoneInfo +_find_trans Lib/zoneinfo/_zoneinfo.py /^ def _find_trans(self, dt):$/;" m class:ZoneInfo +_find_tzfile Lib/zoneinfo/_zoneinfo.py /^ def _find_tzfile(self, key):$/;" m class:ZoneInfo +_find_unpack_format Lib/shutil.py /^def _find_unpack_format(filename):$/;" f +_find_unsafe Lib/mailcap.py /^_find_unsafe = re.compile(r'[^\\xa1-\\U0010FFFF\\w@+=:,.\/-]').search$/;" v +_find_unsafe Lib/shlex.py /^_find_unsafe = re.compile(r'[^\\w@%+=:,.\/-]', re.ASCII).search$/;" v +_find_vc2015 Tools/c-analyzer/distutils/_msvccompiler.py /^def _find_vc2015():$/;" f +_find_vc2017 Tools/c-analyzer/distutils/_msvccompiler.py /^def _find_vc2017():$/;" f +_find_vcvarsall Tools/c-analyzer/distutils/_msvccompiler.py /^def _find_vcvarsall(plat_spec):$/;" f +_findclass Lib/inspect.py /^def _findclass(func):$/;" f +_findclass Lib/pydoc.py /^def _findclass(func):$/;" f +_finddoc Lib/inspect.py /^def _finddoc(obj):$/;" f +_finddoc Lib/pydoc.py /^def _finddoc(obj):$/;" f +_findvar1_rx Lib/sysconfig.py /^_findvar1_rx = r"\\$\\(([A-Za-z][A-Za-z0-9_]*)\\)"$/;" v +_findvar2_rx Lib/sysconfig.py /^_findvar2_rx = r"\\${([A-Za-z][A-Za-z0-9_]*)}"$/;" v +_findwheel Lib/test/support/__init__.py /^def _findwheel(pkgname):$/;" f +_finish_end_element Lib/xml/dom/expatbuilder.py /^ def _finish_end_element(self, curNode):$/;" m class:ExpatBuilder +_finish_pending_start_element Lib/xml/sax/saxutils.py /^ def _finish_pending_start_element(self,endElement=False):$/;" m class:XMLGenerator +_finish_start_element Lib/xml/dom/expatbuilder.py /^ def _finish_start_element(self, node):$/;" m class:ExpatBuilder +_first_param Lib/idlelib/calltip.py /^_first_param = re.compile(r'(?<=\\()\\w*\\,?\\s*')$/;" v +_fix Lib/_pydecimal.py /^ def _fix(self, context):$/;" m class:Decimal +_fix Lib/ast.py /^ def _fix(node, lineno, col_offset, end_lineno, end_col_offset):$/;" f function:fix_missing_locations +_fix_compile_args Tools/c-analyzer/distutils/ccompiler.py /^ def _fix_compile_args(self, output_dir, macros, include_dirs):$/;" m class:CCompiler +_fix_eols Lib/smtplib.py /^def _fix_eols(data):$/;" f +_fix_exception_context Lib/contextlib.py /^ def _fix_exception_context(new_exc, old_exc):$/;" f function:AsyncExitStack.__aexit__ +_fix_exception_context Lib/contextlib.py /^ def _fix_exception_context(new_exc, old_exc):$/;" f function:ExitStack.__exit__ +_fix_filename Tools/c-analyzer/c_common/fsutil.py /^def _fix_filename(filename, relroot, *,$/;" f +_fix_filename Tools/c-analyzer/c_parser/info.py /^def _fix_filename(filename, relroot, *,$/;" f +_fix_nan Lib/_pydecimal.py /^ def _fix_nan(self, context):$/;" m class:Decimal +_fix_ns_for_legacy_pyc Lib/test/test_runpy.py /^ def _fix_ns_for_legacy_pyc(self, ns, alter_sys):$/;" m class:RunModuleTestCase +_fix_read_default Tools/c-analyzer/c_common/tables.py /^def _fix_read_default(row):$/;" f +_fix_result_transcoding Lib/urllib/parse.py /^def _fix_result_transcoding():$/;" f +_fix_sentence_endings Lib/textwrap.py /^ def _fix_sentence_endings(self, chunks):$/;" m class:TextWrapper +_fix_up_module Lib/importlib/_bootstrap.py /^ def _fix_up_module(cls, module):$/;" m class:FrozenImporter +_fix_up_module Lib/importlib/_bootstrap_external.py /^def _fix_up_module(ns, name, pathname, cpathname=None):$/;" f +_fix_write_default Tools/c-analyzer/c_common/tables.py /^def _fix_write_default(row, empty=''):$/;" f +_fixname Lib/xml/etree/ElementTree.py /^ def _fixname(self, key):$/;" m class:XMLParser +_fixoptions Lib/tkinter/colorchooser.py /^ def _fixoptions(self):$/;" m class:Chooser +_fixoptions Lib/tkinter/commondialog.py /^ def _fixoptions(self):$/;" m class:Dialog +_fixoptions Lib/tkinter/filedialog.py /^ def _fixoptions(self):$/;" m class:_Dialog +_fixresult Lib/tkinter/colorchooser.py /^ def _fixresult(self, widget, result):$/;" m class:Chooser +_fixresult Lib/tkinter/commondialog.py /^ def _fixresult(self, widget, result):$/;" m class:Dialog +_fixresult Lib/tkinter/filedialog.py /^ def _fixresult(self, widget, result):$/;" m class:Directory +_fixresult Lib/tkinter/filedialog.py /^ def _fixresult(self, widget, result):$/;" m class:Open +_fixresult Lib/tkinter/filedialog.py /^ def _fixresult(self, widget, result):$/;" m class:_Dialog +_fixture_on_path Lib/test/test_importlib/fixtures.py /^ def _fixture_on_path(self, filename):$/;" m class:ZipFixtures +_fixupChildren Lib/logging/__init__.py /^ def _fixupChildren(self, ph, alogger):$/;" m class:Manager +_fixupParents Lib/logging/__init__.py /^ def _fixupParents(self, alogger):$/;" m class:Manager +_fixup_main_from_name Lib/multiprocessing/spawn.py /^def _fixup_main_from_name(mod_name):$/;" f +_fixup_main_from_path Lib/multiprocessing/spawn.py /^def _fixup_main_from_path(main_path):$/;" f +_fixup_sccd PC/layout/support/appxmanifest.py /^def _fixup_sccd(ns, sccd, new_hash=None):$/;" f +_flags Lib/http/cookies.py /^ _flags = {'secure', 'httponly'}$/;" v class:Morsel +_flags Lib/multiprocessing/shared_memory.py /^ _flags = os.O_RDWR$/;" v class:SharedMemory +_flags Lib/test/_test_multiprocessing.py /^ _flags = os.O_CREAT | os.O_RDWR$/;" v class:_TestSharedMemory.test_shared_memory_basics.OptionalAttachSharedMemory +_flags_ Lib/ctypes/__init__.py /^ _flags_ = flags$/;" v class:CDLL.__init__._FuncPtr +_flags_ Lib/ctypes/__init__.py /^ _flags_ = flags$/;" v class:CFUNCTYPE.WINFUNCTYPE.WinFunctionType +_flags_ Lib/ctypes/__init__.py /^ _flags_ = _FUNCFLAG_CDECL | _FUNCFLAG_PYTHONAPI$/;" v class:PYFUNCTYPE.CFunctionType +_flags_ Lib/ctypes/__init__.py /^ _flags_ = flags$/;" v class:CFUNCTYPE.CFunctionType +_flatten Lib/plistlib.py /^ def _flatten(self, value):$/;" m class:_BinaryPlistWriter +_flatten Lib/test/test_buffer.py /^def _flatten(lst):$/;" f +_flatten Lib/tkinter/__init__.py /^def _flatten(seq):$/;" f +_flatten1 Modules/_tkinter.c /^_flatten1(FlattenContext* context, PyObject* item, int depth)$/;" f file: +_flatten_literal_params Lib/typing.py /^def _flatten_literal_params(parameters):$/;" f +_flatten_processors Tools/c-analyzer/c_common/scriptutil.py /^def _flatten_processors(processors):$/;" f +_flavour Lib/pathlib.py /^ _flavour = ntpath$/;" v class:PureWindowsPath +_flavour Lib/pathlib.py /^ _flavour = os.path$/;" v class:PurePath +_flavour Lib/pathlib.py /^ _flavour = posixpath$/;" v class:PurePosixPath +_float_div_mod Objects/floatobject.c /^_float_div_mod(double vx, double wx, double *floordiv, double *mod)$/;" f file: +_float_sqrt_of_frac Lib/statistics.py /^def _float_sqrt_of_frac(n: int, m: int) -> float:$/;" f +_floordiv Lib/fractions.py /^ def _floordiv(a, b):$/;" m class:Fraction +_flush Lib/wsgiref/handlers.py /^ def _flush(self):$/;" m class:BaseHandler +_flush Lib/wsgiref/handlers.py /^ def _flush(self):$/;" m class:SimpleHandler +_flush Lib/xml/etree/ElementTree.py /^ def _flush(self):$/;" m class:TreeBuilder +_flush Lib/xml/etree/ElementTree.py /^ def _flush(self, _join_text=''.join):$/;" m class:C14NWriterTarget +_flush_std_streams Lib/multiprocessing/util.py /^def _flush_std_streams():$/;" f +_flush_unlocked Lib/_pyio.py /^ def _flush_unlocked(self):$/;" m class:BufferedWriter +_fmt Lib/email/generator.py /^_fmt = '%%0%dd' % _width$/;" v +_fmt_full Tools/c-analyzer/c_parser/info.py /^def _fmt_full(parsed, data=None):$/;" f +_fmt_line Tools/c-analyzer/c_parser/info.py /^def _fmt_line(parsed, data=None):$/;" f +_fmt_one_summary Tools/c-analyzer/c_analyzer/__main__.py /^def _fmt_one_summary(item, extra=None):$/;" f +_fn3 Lib/test/test_inspect.py /^ async def _fn3():$/;" f function:TestPredicates.test_iscoroutine +_fname Lib/test/test_dbm.py /^_fname = os.path.join(dirname, os_helper.TESTFN)$/;" v +_fname Lib/test/test_dbm_dumb.py /^_fname = os_helper.TESTFN$/;" v +_fold Lib/email/_policybase.py /^ def _fold(self, name, value, sanitize):$/;" m class:Compat32 +_fold Lib/email/policy.py /^ def _fold(self, name, value, refold_binary=False):$/;" m class:EmailPolicy +_fold_as_ew Lib/email/_header_value_parser.py /^def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset):$/;" f +_fold_mime_parameters Lib/email/_header_value_parser.py /^def _fold_mime_parameters(part, lines, maxlen, encoding):$/;" f +_follow Lib/importlib/resources/readers.py /^ def _follow(cls, children):$/;" m class:MultiplexedPath +_follow_symlinks Lib/platform.py /^def _follow_symlinks(filepath):$/;" f +_foomodule Modules/_testimportmultiple.c /^static struct PyModuleDef _foomodule = {$/;" v typeref:struct:PyModuleDef file: +_for Lib/importlib/metadata/__init__.py /^ def _for(self, dist):$/;" m class:EntryPoint +_for_helper Lib/ast.py /^ def _for_helper(self, fill, node):$/;" m class:_Unparser +_force_close Lib/asyncio/proactor_events.py /^ def _force_close(self, exc):$/;" m class:_ProactorBasePipeTransport +_force_close Lib/asyncio/selector_events.py /^ def _force_close(self, exc):$/;" m class:_SelectorTransport +_force_close Lib/asyncio/sslproto.py /^ def _force_close(self, exc):$/;" m class:_SSLProtocolTransport +_force_run Lib/test/support/__init__.py /^def _force_run(path, func, *args):$/;" f +_force_start_method Lib/multiprocessing/context.py /^def _force_start_method(method):$/;" f +_fork_exec Lib/subprocess.py /^ _fork_exec = None$/;" v +_forkserver Lib/multiprocessing/forkserver.py /^_forkserver = ForkServer()$/;" v +_format Lib/ast.py /^ def _format(node, level=0):$/;" f function:dump +_format Lib/asyncio/queues.py /^ def _format(self):$/;" m class:Queue +_format Lib/locale.py /^def _format(percent, value, grouping=False, monetary=False, *additional):$/;" f +_format Lib/logging/__init__.py /^ def _format(self, record):$/;" m class:PercentStyle +_format Lib/logging/__init__.py /^ def _format(self, record):$/;" m class:StrFormatStyle +_format Lib/logging/__init__.py /^ def _format(self, record):$/;" m class:StringTemplateStyle +_format Lib/pprint.py /^ def _format(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_format Lib/test/test_time.py /^ _format = '%04d'$/;" v class:_TestStrftimeYear +_format Lib/test/test_time.py /^ _format = '%d'$/;" v class:_TestStrftimeYear +_format Lib/test/test_time.py /^ _format = '%d'$/;" v class:_Test4dYear +_format Lib/test/test_time.py /^ _format = '%d'$/;" v class:_TestAsctimeYear +_format Tools/peg_generator/pegen/ast_dump.py /^ def _format(node: Any, level: int = 0) -> Tuple[str, bool]:$/;" f function:ast_dump +_format Tools/stringbench/stringbench.py /^_format = "The %(thing)s is %(place)s the %(location)s."$/;" v +_formatMessage Lib/unittest/case.py /^ def _formatMessage(self, msg, standardMsg):$/;" m class:TestCase +_format_action Lib/argparse.py /^ def _format_action(self, action):$/;" m class:HelpFormatter +_format_action_invocation Lib/argparse.py /^ def _format_action_invocation(self, action):$/;" m class:HelpFormatter +_format_actions_usage Lib/argparse.py /^ def _format_actions_usage(self, actions, groups):$/;" m class:HelpFormatter +_format_align Lib/_pydecimal.py /^def _format_align(sign, body, spec):$/;" f +_format_args Lib/argparse.py /^ def _format_args(self, action, default_metavar):$/;" m class:HelpFormatter +_format_args_and_kwargs Lib/asyncio/format_helpers.py /^def _format_args_and_kwargs(args, kwargs):$/;" f +_format_back_transform_codes Lib/multiprocessing/shared_memory.py /^ def _format_back_transform_codes(self):$/;" m class:ShareableList +_format_bytes Tools/stringbench/stringbench.py /^_format_bytes = bytes_from_str(_format)$/;" v +_format_call_signature Lib/unittest/mock.py /^def _format_call_signature(name, args, kwargs):$/;" f +_format_callback Lib/asyncio/format_helpers.py /^def _format_callback(func, args, kwargs, suffix=''):$/;" f +_format_callback_source Lib/asyncio/format_helpers.py /^def _format_callback_source(func, args):$/;" f +_format_callbacks Lib/asyncio/base_futures.py /^def _format_callbacks(cb):$/;" f +_format_code_info Lib/dis.py /^def _format_code_info(co):$/;" f +_format_coroutine Lib/asyncio/coroutines.py /^def _format_coroutine(coro):$/;" f +_format_data Tools/c-analyzer/c_parser/info.py /^ def _format_data(cls, fmt, data, extra):$/;" m class:Declaration +_format_data Tools/c-analyzer/c_parser/info.py /^ def _format_data(cls, fmt, data, extra):$/;" m class:Enum +_format_data Tools/c-analyzer/c_parser/info.py /^ def _format_data(cls, fmt, data, extra):$/;" m class:Function +_format_data Tools/c-analyzer/c_parser/info.py /^ def _format_data(cls, fmt, data, extra):$/;" m class:TypeDef +_format_data Tools/c-analyzer/c_parser/info.py /^ def _format_data(cls, fmt, data, extra):$/;" m class:Variable +_format_data Tools/c-analyzer/c_parser/info.py /^ def _format_data(cls, fmt, data, extra):$/;" m class:_StructUnion +_format_dict Tools/stringbench/stringbench.py /^_format_dict = { "thing":"THING", "place":"PLACE", "location":"LOCATION", }$/;" v +_format_dict_bytes Tools/stringbench/stringbench.py /^_format_dict_bytes = dict((bytes_from_str(k), bytes_from_str(v)) for (k,v) in _format_dict.items())$/;" v +_format_dict_items Lib/pprint.py /^ def _format_dict_items(self, items, stream, indent, allowance, context,$/;" m class:PrettyPrinter +_format_dict_unicode Tools/stringbench/stringbench.py /^_format_dict_unicode = dict((unicode_from_str(k), unicode_from_str(v)) for (k,v) in _format_dict.items())$/;" v +_format_elemcreate Lib/tkinter/ttk.py /^def _format_elemcreate(etype, script=False, *args, **kw):$/;" f +_format_exc Lib/pdb.py /^ def _format_exc(self, exc: BaseException):$/;" m class:Pdb +_format_exc_msg Lib/test/test_property.py /^ def _format_exc_msg(self, msg):$/;" m class:_PropertyUnreachableAttribute +_format_failed Lib/test/libregrtest/runtest.py /^ def _format_failed(self):$/;" m class:TestResult +_format_final_exc_line Lib/traceback.py /^def _format_final_exc_line(etype, value):$/;" f +_format_handle Lib/asyncio/base_events.py /^def _format_handle(handle):$/;" f +_format_items Lib/pprint.py /^ def _format_items(self, items, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_format_layoutlist Lib/tkinter/ttk.py /^def _format_layoutlist(layout, indent=0, indent_size=2):$/;" f +_format_line Lib/difflib.py /^ def _format_line(self,side,flag,linenum,text):$/;" m class:HtmlDiff +_format_mapdict Lib/tkinter/ttk.py /^def _format_mapdict(mapdict, script=False):$/;" f +_format_mock_call_signature Lib/unittest/mock.py /^ def _format_mock_call_signature(self, args, kwargs):$/;" m class:NonCallableMock +_format_mock_failure_message Lib/unittest/mock.py /^ def _format_mock_failure_message(self, args, kwargs, action='call'):$/;" m class:NonCallableMock +_format_namespace_items Lib/pprint.py /^ def _format_namespace_items(self, items, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_format_number Lib/_pydecimal.py /^def _format_number(is_negative, intpart, fracpart, exp, spec):$/;" f +_format_offset Lib/_pydatetime.py /^def _format_offset(off, sep=':'):$/;" f +_format_optdict Lib/tkinter/ttk.py /^def _format_optdict(optdict, script=False, ignore=None):$/;" f +_format_optvalue Lib/tkinter/ttk.py /^def _format_optvalue(value, script=False):$/;" f +_format_packing_metainfo Lib/multiprocessing/shared_memory.py /^ def _format_packing_metainfo(self):$/;" m class:ShareableList +_format_parsed_parts Lib/pathlib.py /^ def _format_parsed_parts(cls, drv, root, tail):$/;" m class:PurePath +_format_pipe Lib/asyncio/base_events.py /^def _format_pipe(fd):$/;" f +_format_range_context Lib/difflib.py /^def _format_range_context(start, stop):$/;" f +_format_range_unified Lib/difflib.py /^def _format_range_unified(start, stop):$/;" f +_format_sign Lib/_pydecimal.py /^def _format_sign(is_negative, spec):$/;" f +_format_size Lib/tracemalloc.py /^def _format_size(size, sign):$/;" f +_format_size_metainfo Lib/multiprocessing/shared_memory.py /^ def _format_size_metainfo(self):$/;" m class:ShareableList +_format_syntax_error Lib/traceback.py /^ def _format_syntax_error(self, stype):$/;" m class:TracebackException +_format_text Lib/argparse.py /^ def _format_text(self, text):$/;" m class:HelpFormatter +_format_text Lib/optparse.py /^ def _format_text(self, text):$/;" m class:HelpFormatter +_format_time Lib/_pydatetime.py /^def _format_time(hh, mm, ss, us, timespec='auto'):$/;" f +_format_timetuple_and_zone Lib/email/utils.py /^def _format_timetuple_and_zone(timetuple, zone):$/;" f +_format_unicode Tools/stringbench/stringbench.py /^_format_unicode = unicode_from_str(_format)$/;" v +_format_usage Lib/argparse.py /^ def _format_usage(self, usage, actions, groups, prefix):$/;" m class:HelpFormatter +_format_vartype Tools/c-analyzer/c_parser/__main__.py /^def _format_vartype(vartype):$/;" f +_formatannotation Lib/inspect.py /^ def _formatannotation(annotation):$/;" f function:formatannotationrelativeto +_formatcode Modules/_struct.c /^typedef struct _formatcode {$/;" s file: +_formatdef Modules/_struct.c /^typedef struct _formatdef {$/;" s file: +_formatparam Lib/email/message.py /^def _formatparam(param, value=None, quote=True):$/;" f +_formatparam Lib/wsgiref/headers.py /^def _formatparam(param, value=None, quote=1):$/;" f +_formatwarning_orig Lib/warnings.py /^_formatwarning_orig = formatwarning$/;" v +_formatwarnmsg Lib/warnings.py /^def _formatwarnmsg(msg):$/;" f +_formatwarnmsg_impl Lib/warnings.py /^def _formatwarnmsg_impl(msg):$/;" f +_forward_call Modules/_io/bufferedio.c /^_forward_call(buffered *self, PyObject *name, PyObject *args)$/;" f file: +_fpclose Lib/zipfile/__init__.py /^ def _fpclose(self, fp):$/;" m class:ZipFile +_frame Include/internal/pycore_frame.h /^struct _frame {$/;" s +_frameowner Include/internal/pycore_frame.h /^enum _frameowner {$/;" g +_framestate Include/internal/pycore_frame.h /^typedef enum _framestate {$/;" g +_free_pending_blocks Lib/multiprocessing/heap.py /^ def _free_pending_blocks(self):$/;" m class:Heap +_from_coprime_ints Lib/fractions.py /^ def _from_coprime_ints(cls, numerator, denominator, \/):$/;" m class:Fraction +_from_iterable Lib/_collections_abc.py /^ def _from_iterable(cls, it):$/;" m class:ItemsView +_from_iterable Lib/_collections_abc.py /^ def _from_iterable(cls, it):$/;" m class:KeysView +_from_iterable Lib/_collections_abc.py /^ def _from_iterable(cls, it):$/;" m class:Set +_from_iterable Lib/test/test_collections.py /^ def _from_iterable(self, values):$/;" m class:TestCollectionABCs.test_Set_from_iterable.SetUsingInstanceFromIterable +_from_module Lib/doctest.py /^ def _from_module(self, module, object):$/;" m class:DocTestFinder +_from_parsed_parts Lib/pathlib.py /^ def _from_parsed_parts(self, drv, root, tail):$/;" m class:PurePath +_from_raw Tools/c-analyzer/c_parser/info.py /^ def _from_raw(cls, raw):$/;" m class:KIND +_from_row Tools/c-analyzer/c_parser/info.py /^ def _from_row(cls, row):$/;" m class:Declaration +_from_str Tools/c-analyzer/c_parser/info.py /^ def _from_str(cls, text):$/;" m class:Signature +_from_str Tools/c-analyzer/c_parser/info.py /^ def _from_str(cls, text):$/;" m class:VarType +_from_subinterp Lib/test/test_import/__init__.py /^ def _from_subinterp(cls, name, interpid, pipe, script_kwargs):$/;" m class:ModuleSnapshot +_from_text Lib/importlib/metadata/__init__.py /^ def _from_text(text):$/;" m class:EntryPoints +_from_text_for Lib/importlib/metadata/__init__.py /^ def _from_text_for(cls, text, dist):$/;" m class:EntryPoints +_fromtimestamp Lib/_pydatetime.py /^ def _fromtimestamp(cls, t, utc, tz):$/;" m class:datetime +_frozen Include/cpython/import.h /^struct _frozen {$/;" s +_frozen_get_del_attr Lib/dataclasses.py /^def _frozen_get_del_attr(cls, fields, globals):$/;" f +_frozen_importlib Lib/importlib/abc.py /^ _frozen_importlib = None$/;" v +_frozen_importlib_external Lib/importlib/abc.py /^ _frozen_importlib_external = _bootstrap_external$/;" v +_fs_supports_holes Lib/test/test_tarfile.py /^ def _fs_supports_holes():$/;" m class:GNUReadTest +_fscodec Lib/os.py /^def _fscodec():$/;" f +_fspath Lib/os.py /^def _fspath(path):$/;" f +_fstring Lib/test/test_dis.py /^def _fstring(a, b, c, d):$/;" f +_fsum_realloc Modules/mathmodule.c /^_fsum_realloc(double **p_ptr, Py_ssize_t n,$/;" f file: +_ftperrors Lib/urllib/request.py /^_ftperrors = None$/;" v +_full_mapping Lib/test/mapping_tests.py /^ def _full_mapping(self, data):$/;" m class:BasicTestMappingProtocol +_fullmodname Lib/trace.py /^def _fullmodname(path):$/;" f +_func_flags_ Lib/ctypes/__init__.py /^ _func_flags_ = _FUNCFLAG_STDCALL$/;" v class:.OleDLL +_func_flags_ Lib/ctypes/__init__.py /^ _func_flags_ = _FUNCFLAG_STDCALL$/;" v class:.WinDLL +_func_flags_ Lib/ctypes/__init__.py /^ _func_flags_ = _FUNCFLAG_CDECL | _FUNCFLAG_PYTHONAPI$/;" v class:PyDLL +_func_flags_ Lib/ctypes/__init__.py /^ _func_flags_ = _FUNCFLAG_CDECL$/;" v class:CDLL +_func_restype_ Lib/ctypes/__init__.py /^ _func_restype_ = HRESULT$/;" v class:.OleDLL +_func_restype_ Lib/ctypes/__init__.py /^ _func_restype_ = c_int$/;" v class:CDLL +_function_helper Lib/ast.py /^ def _function_helper(self, node, fill_suffix):$/;" m class:_Unparser +_functions Modules/_elementtree.c /^static PyMethodDef _functions[] = {$/;" v file: +_functions Modules/_sre/sre.c /^static PyMethodDef _functions[] = {$/;" v file: +_functools__lru_cache_wrapper_cache_clear Modules/clinic/_functoolsmodule.c.h /^_functools__lru_cache_wrapper_cache_clear(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_functools__lru_cache_wrapper_cache_clear_impl Modules/_functoolsmodule.c /^_functools__lru_cache_wrapper_cache_clear_impl(PyObject *self)$/;" f file: +_functools__lru_cache_wrapper_cache_info Modules/clinic/_functoolsmodule.c.h /^_functools__lru_cache_wrapper_cache_info(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_functools__lru_cache_wrapper_cache_info_impl Modules/_functoolsmodule.c /^_functools__lru_cache_wrapper_cache_info_impl(PyObject *self)$/;" f file: +_functools_clear Modules/_functoolsmodule.c /^_functools_clear(PyObject *module)$/;" f file: +_functools_cmp_to_key Modules/clinic/_functoolsmodule.c.h /^_functools_cmp_to_key(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_functools_cmp_to_key_impl Modules/_functoolsmodule.c /^_functools_cmp_to_key_impl(PyObject *module, PyObject *mycmp)$/;" f file: +_functools_exec Modules/_functoolsmodule.c /^_functools_exec(PyObject *module)$/;" f file: +_functools_free Modules/_functoolsmodule.c /^_functools_free(void *module)$/;" f file: +_functools_methods Modules/_functoolsmodule.c /^static PyMethodDef _functools_methods[] = {$/;" v file: +_functools_module Modules/_functoolsmodule.c /^static struct PyModuleDef _functools_module = {$/;" v typeref:struct:PyModuleDef file: +_functools_module Modules/_functoolsmodule.c /^static struct PyModuleDef _functools_module;$/;" v typeref:struct:PyModuleDef file: +_functools_slots Modules/_functoolsmodule.c /^static struct PyModuleDef_Slot _functools_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +_functools_state Modules/_functoolsmodule.c /^typedef struct _functools_state {$/;" s file: +_functools_state Modules/_functoolsmodule.c /^} _functools_state;$/;" t typeref:struct:_functools_state file: +_functools_traverse Modules/_functoolsmodule.c /^_functools_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_functype Lib/hmac.py /^ _functype = None$/;" v +_functype Lib/hmac.py /^ _functype = type(_hashopenssl.openssl_sha256) # builtin type$/;" v +_future_feature_names Lib/pydoc.py /^_future_feature_names = set(__future__.all_feature_names)$/;" v +_future_repr Lib/asyncio/base_futures.py /^def _future_repr(future):$/;" f +_future_repr_info Lib/asyncio/base_futures.py /^def _future_repr_info(future):$/;" f +_fuzz_run Modules/_xxtestfuzz/_xxtestfuzz.c /^static PyObject* _fuzz_run(PyObject* self, PyObject* args) {$/;" f file: +_fuzzmodule Modules/_xxtestfuzz/_xxtestfuzz.c /^static struct PyModuleDef _fuzzmodule = {$/;" v typeref:struct:PyModuleDef file: +_fwalk Lib/os.py /^ def _fwalk(topfd, toppath, isbytes, topdown, onerror, follow_symlinks):$/;" f +_g Lib/test/test_dis.py /^def _g(x):$/;" f +_g Lib/types.py /^def _g():$/;" f +_gather Lib/test/test_asyncio/test_ssl.py /^ async def _gather(*tasks):$/;" f function:TestSSL.test_create_connection_ssl_1.run +_gather Lib/test/test_asyncio/test_ssl.py /^ async def _gather(*tasks):$/;" f function:TestSSL.test_shutdown_cleanly.run +_gather Lib/test/test_asyncio/test_tasks.py /^ def _gather(self, *args, **kwargs):$/;" m class:CoroutineGatherTests +_gather Lib/test/test_asyncio/test_tasks.py /^ def _gather(self, *args, **kwargs):$/;" m class:FutureGatherTests +_gather_117_rule Parser/parser.c /^_gather_117_rule(Parser *p)$/;" f file: +_gather_117_type Parser/parser.c 442;" d file: +_gather_123_rule Parser/parser.c /^_gather_123_rule(Parser *p)$/;" f file: +_gather_123_type Parser/parser.c 448;" d file: +_gather_126_rule Parser/parser.c /^_gather_126_rule(Parser *p)$/;" f file: +_gather_126_type Parser/parser.c 451;" d file: +_gather_128_rule Parser/parser.c /^_gather_128_rule(Parser *p)$/;" f file: +_gather_128_type Parser/parser.c 453;" d file: +_gather_130_rule Parser/parser.c /^_gather_130_rule(Parser *p)$/;" f file: +_gather_130_type Parser/parser.c 455;" d file: +_gather_132_rule Parser/parser.c /^_gather_132_rule(Parser *p)$/;" f file: +_gather_132_type Parser/parser.c 457;" d file: +_gather_135_rule Parser/parser.c /^_gather_135_rule(Parser *p)$/;" f file: +_gather_135_type Parser/parser.c 460;" d file: +_gather_139_rule Parser/parser.c /^_gather_139_rule(Parser *p)$/;" f file: +_gather_139_type Parser/parser.c 464;" d file: +_gather_141_rule Parser/parser.c /^_gather_141_rule(Parser *p)$/;" f file: +_gather_141_type Parser/parser.c 466;" d file: +_gather_143_rule Parser/parser.c /^_gather_143_rule(Parser *p)$/;" f file: +_gather_143_type Parser/parser.c 468;" d file: +_gather_145_rule Parser/parser.c /^_gather_145_rule(Parser *p)$/;" f file: +_gather_145_type Parser/parser.c 470;" d file: +_gather_147_rule Parser/parser.c /^_gather_147_rule(Parser *p)$/;" f file: +_gather_147_type Parser/parser.c 472;" d file: +_gather_188_rule Parser/parser.c /^_gather_188_rule(Parser *p)$/;" f file: +_gather_188_type Parser/parser.c 513;" d file: +_gather_19_rule Parser/parser.c /^_gather_19_rule(Parser *p)$/;" f file: +_gather_19_type Parser/parser.c 344;" d file: +_gather_202_rule Parser/parser.c /^_gather_202_rule(Parser *p)$/;" f file: +_gather_202_type Parser/parser.c 527;" d file: +_gather_204_rule Parser/parser.c /^_gather_204_rule(Parser *p)$/;" f file: +_gather_204_type Parser/parser.c 529;" d file: +_gather_206_rule Parser/parser.c /^_gather_206_rule(Parser *p)$/;" f file: +_gather_206_type Parser/parser.c 531;" d file: +_gather_208_rule Parser/parser.c /^_gather_208_rule(Parser *p)$/;" f file: +_gather_208_type Parser/parser.c 533;" d file: +_gather_210_rule Parser/parser.c /^_gather_210_rule(Parser *p)$/;" f file: +_gather_210_type Parser/parser.c 535;" d file: +_gather_21_rule Parser/parser.c /^_gather_21_rule(Parser *p)$/;" f file: +_gather_21_type Parser/parser.c 346;" d file: +_gather_228_rule Parser/parser.c /^_gather_228_rule(Parser *p)$/;" f file: +_gather_228_type Parser/parser.c 553;" d file: +_gather_27_rule Parser/parser.c /^_gather_27_rule(Parser *p)$/;" f file: +_gather_27_type Parser/parser.c 352;" d file: +_gather_30_rule Parser/parser.c /^_gather_30_rule(Parser *p)$/;" f file: +_gather_30_type Parser/parser.c 355;" d file: +_gather_52_rule Parser/parser.c /^_gather_52_rule(Parser *p)$/;" f file: +_gather_52_type Parser/parser.c 377;" d file: +_gather_54_rule Parser/parser.c /^_gather_54_rule(Parser *p)$/;" f file: +_gather_54_type Parser/parser.c 379;" d file: +_gather_56_rule Parser/parser.c /^_gather_56_rule(Parser *p)$/;" f file: +_gather_56_type Parser/parser.c 381;" d file: +_gather_58_rule Parser/parser.c /^_gather_58_rule(Parser *p)$/;" f file: +_gather_58_type Parser/parser.c 383;" d file: +_gather_5_rule Parser/parser.c /^_gather_5_rule(Parser *p)$/;" f file: +_gather_5_type Parser/parser.c 330;" d file: +_gather_66_rule Parser/parser.c /^_gather_66_rule(Parser *p)$/;" f file: +_gather_66_type Parser/parser.c 391;" d file: +_gather_72_rule Parser/parser.c /^_gather_72_rule(Parser *p)$/;" f file: +_gather_72_type Parser/parser.c 397;" d file: +_gather_74_rule Parser/parser.c /^_gather_74_rule(Parser *p)$/;" f file: +_gather_74_type Parser/parser.c 399;" d file: +_gather_77_rule Parser/parser.c /^_gather_77_rule(Parser *p)$/;" f file: +_gather_77_type Parser/parser.c 402;" d file: +_gather_79_rule Parser/parser.c /^_gather_79_rule(Parser *p)$/;" f file: +_gather_79_type Parser/parser.c 404;" d file: +_gather_81_rule Parser/parser.c /^_gather_81_rule(Parser *p)$/;" f file: +_gather_81_type Parser/parser.c 406;" d file: +_gather_85_rule Parser/parser.c /^_gather_85_rule(Parser *p)$/;" f file: +_gather_85_type Parser/parser.c 410;" d file: +_gather_91_rule Parser/parser.c /^_gather_91_rule(Parser *p)$/;" f file: +_gather_91_type Parser/parser.c 416;" d file: +_gb18030_to_unibmp_ranges Modules/cjkcodecs/mappings_cn.h /^static const struct _gb18030_to_unibmp_ranges {$/;" s +_gc_next Include/internal/pycore_gc.h /^ uintptr_t _gc_next;$/;" m struct:__anon128 +_gc_prev Include/internal/pycore_gc.h /^ uintptr_t _gc_prev;$/;" m struct:__anon128 +_gc_runtime_state Include/internal/pycore_gc.h /^struct _gc_runtime_state {$/;" s +_gcd_import Lib/importlib/_bootstrap.py /^def _gcd_import(name, package=None, level=0):$/;" f +_gdbm_exec Modules/_gdbmmodule.c /^_gdbm_exec(PyObject *module)$/;" f file: +_gdbm_gdbm_close Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_close(gdbmobject *self, PyObject *Py_UNUSED(ignored))$/;" f +_gdbm_gdbm_close_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_close_impl(gdbmobject *self)$/;" f file: +_gdbm_gdbm_firstkey Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_firstkey(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_gdbm_gdbm_firstkey_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_firstkey_impl(gdbmobject *self, PyTypeObject *cls)$/;" f file: +_gdbm_gdbm_get Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_get(gdbmobject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_gdbm_gdbm_get_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_get_impl(gdbmobject *self, PyObject *key, PyObject *default_value)$/;" f file: +_gdbm_gdbm_keys Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_keys(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_gdbm_gdbm_keys_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_keys_impl(gdbmobject *self, PyTypeObject *cls)$/;" f file: +_gdbm_gdbm_nextkey Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_nextkey(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_gdbm_gdbm_nextkey_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_nextkey_impl(gdbmobject *self, PyTypeObject *cls, const char *key,$/;" f file: +_gdbm_gdbm_reorganize Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_reorganize(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_gdbm_gdbm_reorganize_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_reorganize_impl(gdbmobject *self, PyTypeObject *cls)$/;" f file: +_gdbm_gdbm_setdefault Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_setdefault(gdbmobject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_gdbm_gdbm_setdefault_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_setdefault_impl(gdbmobject *self, PyObject *key,$/;" f file: +_gdbm_gdbm_sync Modules/clinic/_gdbmmodule.c.h /^_gdbm_gdbm_sync(gdbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_gdbm_gdbm_sync_impl Modules/_gdbmmodule.c /^_gdbm_gdbm_sync_impl(gdbmobject *self, PyTypeObject *cls)$/;" f file: +_gdbm_module_clear Modules/_gdbmmodule.c /^_gdbm_module_clear(PyObject *module)$/;" f file: +_gdbm_module_free Modules/_gdbmmodule.c /^_gdbm_module_free(void *module)$/;" f file: +_gdbm_module_methods Modules/_gdbmmodule.c /^static PyMethodDef _gdbm_module_methods[] = {$/;" v file: +_gdbm_module_slots Modules/_gdbmmodule.c /^static PyModuleDef_Slot _gdbm_module_slots[] = {$/;" v file: +_gdbm_module_traverse Modules/_gdbmmodule.c /^_gdbm_module_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_gdbm_state Modules/_gdbmmodule.c /^} _gdbm_state;$/;" t typeref:struct:__anon629 file: +_gdbmmodule Modules/_gdbmmodule.c /^static struct PyModuleDef _gdbmmodule = {$/;" v typeref:struct:PyModuleDef file: +_ge_from_gt Lib/functools.py /^def _ge_from_gt(self, other):$/;" f +_ge_from_le Lib/functools.py /^def _ge_from_le(self, other):$/;" f +_ge_from_lt Lib/functools.py /^def _ge_from_lt(self, other):$/;" f +_gen3 Lib/test/test_generators.py /^ def _gen3(i):$/;" f function:conjoin +_gen_crc Lib/zipfile/__init__.py /^def _gen_crc(crc):$/;" f +_gen_getcode Objects/genobject.c /^_gen_getcode(PyGenObject *gen, const char *const name)$/;" f file: +_gen_getframe Objects/genobject.c /^_gen_getframe(PyGenObject *gen, const char *const name)$/;" f file: +_gen_throw Objects/genobject.c /^_gen_throw(PyGenObject *gen, int close_on_genexit,$/;" f file: +_generate_infile_setup_code Lib/test/test_file_eintr.py /^ def _generate_infile_setup_code(self):$/;" m class:TestBufferedIOSignalInterrupt +_generate_infile_setup_code Lib/test/test_file_eintr.py /^ def _generate_infile_setup_code(self):$/;" m class:TestFileIOSignalInterrupt +_generate_infile_setup_code Lib/test/test_file_eintr.py /^ def _generate_infile_setup_code(self):$/;" m class:TestTextIOSignalInterrupt +_generate_int_for_bits Tools/build/deepfreeze.py /^ def _generate_int_for_bits(self, name: str, i: int, digit: int) -> None:$/;" m class:Printer +_generate_next_value_ Lib/enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:Enum +_generate_next_value_ Lib/enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:Flag +_generate_next_value_ Lib/enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:StrEnum +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last):$/;" m class:TestInternals.test_auto_order.Color +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, last, values):$/;" m class:_EnumTests.setUp.BusyGNV +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, last, values):$/;" m class:_EnumTests.setUp.LazyGNV +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last):$/;" m class:TestInternals.test_auto_name.Color +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last):$/;" m class:TestInternals.test_auto_name_inherit.AutoNameEnum +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last):$/;" m class:TestInternals.test_auto_order_wierd.Color +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last):$/;" m class:TestInternals.test_multiple_auto_on_line.Hah +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last):$/;" m class:TestInternals.test_multiple_auto_on_line.Huh +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, last, values):$/;" f function:_EnumTests.setUp +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMinimalDateClass.enum_type +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMinimalFloatClass.enum_type +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMixedDateClass.enum_type +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMixedFloatClass.enum_type +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMinimalDateFunction +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMinimalFloatFunction +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMixedDateFunction +_generate_next_value_ Lib/test/test_enum.py /^ def _generate_next_value_(name, start, count, last_values):$/;" m class:TestMixedFloatFunction +_generate_nonce Lib/test/test_urllib2_localnet.py /^ def _generate_nonce(self):$/;" m class:DigestAuthHandler +_generate_overlap_table Lib/re/_compiler.py /^def _generate_overlap_table(prefix):$/;" f +_generate_pickle_copiers Lib/test/test_descr.py /^ def _generate_pickle_copiers():$/;" m class:PicklingTests +_generate_pickle_name Lib/lib2to3/pgen2/driver.py /^def _generate_pickle_name(gt):$/;" f +_generate_posix_vars Lib/sysconfig.py /^def _generate_posix_vars():$/;" f +_generate_time_safe Lib/uuid.py /^ _generate_time_safe = None$/;" v +_generate_toc Lib/mailbox.py /^ def _generate_toc(self):$/;" m class:Babyl +_generate_toc Lib/mailbox.py /^ def _generate_toc(self):$/;" m class:MMDF +_generate_toc Lib/mailbox.py /^ def _generate_toc(self):$/;" m class:mbox +_generate_tokens_from_c_tokenizer Lib/tokenize.py /^def _generate_tokens_from_c_tokenizer(source, encoding=None, extra_tokens=False):$/;" f +_generate_unquoted_parts Lib/urllib/parse.py /^def _generate_unquoted_parts(string, encoding, errors):$/;" f +_generatorstate Lib/test/test_inspect.py /^ def _generatorstate(self):$/;" m class:TestGetGeneratorState +_generic_class_getitem Lib/typing.py /^def _generic_class_getitem(cls, params):$/;" f +_generic_init_subclass Lib/typing.py /^def _generic_init_subclass(cls, *args, **kwargs):$/;" f +_genops Lib/pickletools.py /^def _genops(data, yield_end_pos=False):$/;" f +_get Lib/asyncio/queues.py /^ def _get(self):$/;" m class:LifoQueue +_get Lib/asyncio/queues.py /^ def _get(self):$/;" m class:Queue +_get Lib/asyncio/queues.py /^ def _get(self, heappop=heapq.heappop):$/;" m class:PriorityQueue +_get Lib/configparser.py /^ def _get(self, section, conv, option, **kwargs):$/;" m class:RawConfigParser +_get Lib/queue.py /^ def _get(self):$/;" m class:LifoQueue +_get Lib/queue.py /^ def _get(self):$/;" m class:PriorityQueue +_get Lib/queue.py /^ def _get(self):$/;" m class:Queue +_get Lib/test/test_queue.py /^ def _get(self):$/;" m class:FailingQueueTest.setUp.FailingQueue +_get Lib/test/test_unittest/testmock/testmock.py /^ def _get(self):$/;" m class:MockTest.test_subclass_with_properties.SubClass +_get Lib/tkinter/font.py /^ def _get(self, args):$/;" m class:Font +_get Lib/unittest/mock.py /^ def _get(self, name=name, _the_name=_the_name):$/;" f function:_delegating_property +_getAssertEqualParams Lib/test/test_inspect.py /^ def _getAssertEqualParams(self, func, call_params_string, locs=None):$/;" m class:TestGetcallargsUnboundMethods +_getAssertEqualityFunc Lib/unittest/case.py /^ def _getAssertEqualityFunc(self, first, second):$/;" m class:TestCase +_getDeclarations Lib/xml/dom/expatbuilder.py /^ def _getDeclarations(self):$/;" m class:FragmentBuilder +_getDiscoveryArgParser Lib/unittest/main.py /^ def _getDiscoveryArgParser(self, parent):$/;" m class:TestProgram +_getMainArgParser Lib/unittest/main.py /^ def _getMainArgParser(self, parent):$/;" m class:TestProgram +_getNSattrs Lib/xml/dom/expatbuilder.py /^ def _getNSattrs(self):$/;" m class:FragmentBuilder +_getNSattrs Lib/xml/dom/expatbuilder.py /^ def _getNSattrs(self):$/;" m class:FragmentBuilderNS +_getNativeMachine PC/launcher2.c /^_getNativeMachine(void)$/;" f +_getParentArgParser Lib/unittest/main.py /^ def _getParentArgParser(self):$/;" m class:TestProgram +_get_2000_lines Tools/stringbench/stringbench.py /^def _get_2000_lines(STR):$/;" f +_get_accept_socket Lib/asyncio/windows_events.py /^ def _get_accept_socket(self, family):$/;" m class:IocpProactor +_get_action_name Lib/argparse.py /^def _get_action_name(argument):$/;" f +_get_actualEncoding Lib/xml/dom/minidom.py /^ def _get_actualEncoding(self):$/;" m class:Document +_get_actualEncoding Lib/xml/dom/minidom.py /^ def _get_actualEncoding(self):$/;" m class:Entity +_get_address_key Lib/ipaddress.py /^ def _get_address_key(self):$/;" m class:_BaseAddress +_get_aia_uri Modules/_ssl.c /^_get_aia_uri(X509 *certificate, int nid) {$/;" f file: +_get_all_options Lib/optparse.py /^ def _get_all_options(self):$/;" m class:OptionParser +_get_app PC/layout/support/appxmanifest.py /^def _get_app(xml, appid):$/;" f +_get_app_transport Lib/asyncio/sslproto.py /^ def _get_app_transport(self):$/;" m class:SSLProtocol +_get_arg Modules/_ctypes/_ctypes.c /^_get_arg(int *pindex, PyObject *name, PyObject *defval, PyObject *inargs, PyObject *kwds)$/;" f file: +_get_args Lib/argparse.py /^ def _get_args(self):$/;" m class:_AttributeHolder +_get_args Lib/optparse.py /^ def _get_args(self, args):$/;" m class:OptionParser +_get_async Lib/xml/dom/xmlbuilder.py /^ def _get_async(self):$/;" m class:DocumentLS +_get_async_iter Lib/unittest/mock.py /^def _get_async_iter(self):$/;" f +_get_attributes Lib/xml/dom/minidom.py /^ def _get_attributes(self):$/;" m class:Element +_get_back_transform Lib/multiprocessing/shared_memory.py /^ def _get_back_transform(self, position):$/;" m class:ShareableList +_get_bad_decoder Lib/test/test_io.py /^ def _get_bad_decoder(dummy):$/;" f function:TextIOWrapperTest.test_illegal_decoder._make_very_illegal_wrapper +_get_baseURI Lib/xml/dom/xmlbuilder.py /^ def _get_baseURI(self):$/;" m class:DOMInputSource +_get_best_family Lib/http/server.py /^def _get_best_family(*address):$/;" f +_get_big_s Tools/stringbench/stringbench.py /^def _get_big_s(STR):$/;" f +_get_bothseps Lib/ntpath.py /^def _get_bothseps(path):$/;" f +_get_build_version Lib/ctypes/util.py /^ def _get_build_version():$/;" f +_get_byteStream Lib/xml/dom/xmlbuilder.py /^ def _get_byteStream(self):$/;" m class:DOMInputSource +_get_cached Lib/importlib/_bootstrap_external.py /^def _get_cached(filename):$/;" f +_get_call_arguments Lib/unittest/mock.py /^ def _get_call_arguments(self):$/;" m class:_Call +_get_call_signature_from_name Lib/unittest/mock.py /^ def _get_call_signature_from_name(self, name):$/;" m class:NonCallableMock +_get_candidate_names Lib/tempfile.py /^def _get_candidate_names():$/;" f +_get_capabilities Lib/imaplib.py /^ def _get_capabilities(self):$/;" m class:IMAP4 +_get_capas Lib/test/test_poplib.py /^ def _get_capas(self):$/;" m class:DummyPOP3Handler +_get_characterStream Lib/xml/dom/xmlbuilder.py /^ def _get_characterStream(self):$/;" m class:DOMInputSource +_get_charset_prefix Lib/re/_compiler.py /^def _get_charset_prefix(pattern, flags):$/;" f +_get_chdir_exception Lib/test/test_subprocess.py /^ def _get_chdir_exception(self):$/;" m class:POSIXProcessTestCase +_get_check Tools/c-analyzer/c_common/fsutil.py /^def _get_check(filename, start, include, exclude):$/;" f +_get_check_handlers Tools/c-analyzer/c_analyzer/__main__.py /^def _get_check_handlers(fmt, printer, verbosity=VERBOSITY):$/;" f +_get_checksum Tools/build/freeze_modules.py /^def _get_checksum(filename):$/;" f +_get_childNodes Lib/xml/dom/minidom.py /^ def _get_childNodes(self):$/;" m class:Node +_get_child_mock Lib/test/test_unittest/testmock/testmock.py /^ def _get_child_mock(self, **kwargs):$/;" m class:MockTest.test_subclassing.Subclass +_get_child_mock Lib/unittest/mock.py /^ def _get_child_mock(self, \/, **kw):$/;" m class:NonCallableMock +_get_child_mock Lib/unittest/mock.py /^ def _get_child_mock(self, \/, **kwargs):$/;" m class:PropertyMock +_get_chunk_left Lib/http/client.py /^ def _get_chunk_left(self):$/;" m class:HTTPResponse +_get_chunks Lib/concurrent/futures/process.py /^def _get_chunks(*iterables, chunksize):$/;" f +_get_class_module Lib/_pydatetime.py /^def _get_class_module(self):$/;" f +_get_close_waiter Lib/asyncio/streams.py /^ def _get_close_waiter(self, stream):$/;" m class:FlowControlMixin +_get_close_waiter Lib/asyncio/streams.py /^ def _get_close_waiter(self, stream):$/;" m class:StreamReaderProtocol +_get_close_waiter Lib/asyncio/subprocess.py /^ def _get_close_waiter(self, stream):$/;" m class:SubprocessStreamProtocol +_get_code Lib/xml/dom/__init__.py /^ def _get_code(self):$/;" m class:DOMException +_get_code_array Lib/dis.py /^def _get_code_array(co, adaptive):$/;" f +_get_code_from_file Lib/runpy.py /^def _get_code_from_file(run_name, fname):$/;" f +_get_code_object Lib/dis.py /^def _get_code_object(x):$/;" f +_get_code_position Lib/inspect.py /^def _get_code_position(code, instruction_index):$/;" f +_get_code_position Lib/traceback.py /^def _get_code_position(code, instruction_index):$/;" f +_get_code_position_from_tb Lib/inspect.py /^def _get_code_position_from_tb(tb):$/;" f +_get_codename Lib/zipfile/__init__.py /^ def _get_codename(self, pathname, basename):$/;" m class:PyZipFile +_get_coeff Modules/_decimal/libmpdec/mpdecimal.c /^_get_coeff(uint64_t *hi, uint64_t *lo, const mpd_t *a)$/;" f file: +_get_columns Tools/c-analyzer/c_parser/datafiles.py /^def _get_columns(group, extra=None):$/;" f +_get_command_stdout Lib/uuid.py /^def _get_command_stdout(command, *args):$/;" f +_get_compressor Lib/zipfile/__init__.py /^def _get_compressor(compress_type, compresslevel=None):$/;" f +_get_console_type Modules/_io/winconsoleio.c /^char _get_console_type(HANDLE handle) {$/;" f +_get_const_info Lib/dis.py /^def _get_const_info(op, arg, co_consts):$/;" f +_get_const_value Lib/dis.py /^def _get_const_value(op, arg, co_consts):$/;" f +_get_containing_element Lib/xml/dom/minidom.py /^def _get_containing_element(node):$/;" f +_get_containing_entref Lib/xml/dom/minidom.py /^def _get_containing_entref(node):$/;" f +_get_content_length Lib/http/client.py /^ def _get_content_length(body, method):$/;" m class:HTTPConnection +_get_content_length Lib/urllib/request.py /^ def _get_content_length(self, request):$/;" m class:AbstractHTTPHandler +_get_conv Lib/configparser.py /^ def _get_conv(self, section, option, conv, *, raw=False, vars=None,$/;" m class:RawConfigParser +_get_crl_dp Modules/_ssl.c /^_get_crl_dp(X509 *certificate) {$/;" f file: +_get_css Lib/xmlrpc/server.py /^ def _get_css(self, url):$/;" m class:DocXMLRPCRequestHandler +_get_current_interp Modules/_xxinterpchannelsmodule.c /^_get_current_interp(void)$/;" f file: +_get_current_interp Modules/_xxsubinterpretersmodule.c /^_get_current_interp(void)$/;" f file: +_get_current_module Modules/_testinternalcapi.c /^_get_current_module(void)$/;" f file: +_get_current_module Modules/_xxinterpchannelsmodule.c /^_get_current_module(void)$/;" f file: +_get_data Lib/test/support/asynchat.py /^ def _get_data(self):$/;" m class:async_chat +_get_data Lib/xml/dom/minidom.py /^ def _get_data(self):$/;" m class:CharacterData +_get_data Lib/zipimport.py /^def _get_data(archive, toc_entry):$/;" f +_get_decoded_chars Lib/_pyio.py /^ def _get_decoded_chars(self, n=None):$/;" m class:TextIOWrapper +_get_decoder Lib/_pyio.py /^ def _get_decoder(self):$/;" m class:TextIOWrapper +_get_decompress_func Lib/zipimport.py /^def _get_decompress_func():$/;" f +_get_decompressor Lib/zipfile/__init__.py /^def _get_decompressor(compress_type):$/;" f +_get_default_compiler Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _get_default_compiler():$/;" f +_get_default_invalidation_mode Lib/py_compile.py /^def _get_default_invalidation_mode():$/;" f +_get_default_locale Lib/calendar.py /^def _get_default_locale():$/;" f +_get_default_metavar_for_optional Lib/argparse.py /^ def _get_default_metavar_for_optional(self, action):$/;" m class:HelpFormatter +_get_default_metavar_for_optional Lib/argparse.py /^ def _get_default_metavar_for_optional(self, action):$/;" m class:MetavarTypeHelpFormatter +_get_default_metavar_for_positional Lib/argparse.py /^ def _get_default_metavar_for_positional(self, action):$/;" m class:HelpFormatter +_get_default_metavar_for_positional Lib/argparse.py /^ def _get_default_metavar_for_positional(self, action):$/;" m class:MetavarTypeHelpFormatter +_get_default_root Lib/tkinter/__init__.py /^def _get_default_root(what=None):$/;" f +_get_default_tempdir Lib/tempfile.py /^def _get_default_tempdir():$/;" f +_get_defaults Parser/action_helpers.c /^_get_defaults(Parser *p, asdl_seq *names_with_defaults)$/;" f file: +_get_den Lib/test/test_binop.py /^ def _get_den(self):$/;" m class:Rat +_get_devnull Lib/subprocess.py /^ def _get_devnull(self):$/;" m class:Popen +_get_dict_proxy Lib/idlelib/debugger_r.py /^ def _get_dict_proxy(self, did):$/;" m class:FrameProxy +_get_digest_name_and_payload Lib/multiprocessing/connection.py /^def _get_digest_name_and_payload(message: bytes) -> (str, bytes):$/;" f +_get_directory_containing_module Lib/unittest/loader.py /^ def _get_directory_containing_module(self, module_name):$/;" m class:TestLoader +_get_dna Tools/stringbench/stringbench.py /^def _get_dna(STR):$/;" f +_get_doctype Lib/xml/dom/minidom.py /^ def _get_doctype(self):$/;" m class:Document +_get_documentElement Lib/xml/dom/minidom.py /^ def _get_documentElement(self):$/;" m class:Document +_get_documentURI Lib/xml/dom/minidom.py /^ def _get_documentURI(self):$/;" m class:Document +_get_drive_root_parts Lib/test/test_pathlib.py /^ def _get_drive_root_parts(self, parts):$/;" m class:_BasePurePathTest +_get_dump Lib/test/libregrtest/refleak.py /^ def _get_dump(cls):$/;" f +_get_dunder_dict_of_class Lib/inspect.py /^_get_dunder_dict_of_class = type.__dict__["__dict__"].__get__$/;" v +_get_elem_info Lib/xml/dom/minidom.py /^ def _get_elem_info(self, element):$/;" m class:Document +_get_elements_by_tagName_helper Lib/xml/dom/minidom.py /^def _get_elements_by_tagName_helper(parent, name, rc):$/;" f +_get_elements_by_tagName_ns_helper Lib/xml/dom/minidom.py /^def _get_elements_by_tagName_ns_helper(parent, nsURI, localName, rc):$/;" f +_get_encoder Lib/_pyio.py /^ def _get_encoder(self):$/;" m class:TextIOWrapper +_get_encoder Lib/email/charset.py /^ def _get_encoder(self, header_bytes):$/;" m class:Charset +_get_encoding Lib/xml/dom/minidom.py /^ def _get_encoding(self):$/;" m class:Document +_get_encoding Lib/xml/dom/minidom.py /^ def _get_encoding(self):$/;" m class:Entity +_get_encoding Lib/xml/dom/xmlbuilder.py /^ def _get_encoding(self):$/;" m class:DOMInputSource +_get_entityResolver Lib/xml/dom/xmlbuilder.py /^ def _get_entityResolver(self):$/;" m class:DOMBuilder +_get_entries Tools/gdb/libpython.py /^ def _get_entries(keys):$/;" m class:PyDictObjectPtr +_get_eq Lib/unittest/mock.py /^def _get_eq(self):$/;" f +_get_error Lib/test/test_xml_etree.py /^ def _get_error(self, s):$/;" m class:ParseErrorTest +_get_errorHandler Lib/xml/dom/minidom.py /^ def _get_errorHandler(self):$/;" m class:Document +_get_errorHandler Lib/xml/dom/xmlbuilder.py /^ def _get_errorHandler(self):$/;" m class:DOMBuilder +_get_exception_group Lib/test/test_traceback.py /^ def _get_exception_group(self):$/;" m class:TestTracebackException_ExceptionGroups +_get_expected_config Lib/test/test_embed.py /^ def _get_expected_config(self):$/;" m class:InitConfigTests +_get_expected_config_impl Lib/test/test_embed.py /^ def _get_expected_config_impl(self):$/;" m class:InitConfigTests +_get_exports_list Lib/os.py /^def _get_exports_list(module):$/;" f +_get_extra_info Lib/asyncio/sslproto.py /^ def _get_extra_info(self, name, default=None):$/;" m class:SSLProtocol +_get_extract_tarinfo Lib/tarfile.py /^ def _get_extract_tarinfo(self, member, filter_function, path):$/;" m class:TarFile +_get_f_code Lib/idlelib/debugger_r.py /^ def _get_f_code(self):$/;" m class:FrameProxy +_get_f_globals Lib/idlelib/debugger_r.py /^ def _get_f_globals(self):$/;" m class:FrameProxy +_get_f_locals Lib/idlelib/debugger_r.py /^ def _get_f_locals(self):$/;" m class:FrameProxy +_get_field Lib/dataclasses.py /^def _get_field(cls, a_name, a_type, default_kw_only):$/;" f +_get_file_info Tools/c-analyzer/c_common/fsutil.py /^def _get_file_info(file):$/;" f +_get_filename Lib/test/test_importlib/test_spec.py /^ def _get_filename(self, name):$/;" m class:TestLoader +_get_filter Lib/xml/dom/xmlbuilder.py /^ def _get_filter(self):$/;" m class:DOMBuilder +_get_filter_function Lib/tarfile.py /^ def _get_filter_function(self, filter):$/;" m class:TarFile +_get_filtered_attrs Lib/tarfile.py /^def _get_filtered_attrs(member, dest_path, for_data=True):$/;" f +_get_firstChild Lib/xml/dom/minidom.py /^ def _get_firstChild(self):$/;" m class:Childless +_get_firstChild Lib/xml/dom/minidom.py /^ def _get_firstChild(self):$/;" m class:Node +_get_flattened_seq_size Parser/action_helpers.c /^_get_flattened_seq_size(asdl_seq *seqs)$/;" f file: +_get_format Tools/c-analyzer/c_parser/datafiles.py /^def _get_format(file, default='tsv'):$/;" f +_get_format Tools/stringbench/stringbench.py /^def _get_format(STR):$/;" f +_get_format_dict Tools/stringbench/stringbench.py /^def _get_format_dict(STR):$/;" f +_get_format_handlers Tools/c-analyzer/c_parser/datafiles.py /^def _get_format_handlers(group, fmt):$/;" f +_get_formatter Lib/argparse.py /^ def _get_formatter(self):$/;" m class:ArgumentParser +_get_function_source Lib/asyncio/format_helpers.py /^def _get_function_source(func):$/;" f +_get_future_cls Lib/test/test_asyncio/test_futures.py /^ def _get_future_cls(self):$/;" m class:BaseFutureInheritanceTests +_get_future_cls Lib/test/test_asyncio/test_futures.py /^ def _get_future_cls(self):$/;" m class:CFutureInheritanceTests +_get_future_cls Lib/test/test_asyncio/test_futures.py /^ def _get_future_cls(self):$/;" m class:PyFutureInheritanceTests +_get_gid Lib/shutil.py /^def _get_gid(name):$/;" f +_get_handler Lib/argparse.py /^ def _get_handler(self):$/;" m class:_ActionsContainer +_get_handles Lib/subprocess.py /^ def _get_handles(self, stdin, stdout, stderr):$/;" f function:Popen._on_error_fd_closer +_get_head_types Lib/lib2to3/refactor.py /^def _get_head_types(pat):$/;" f +_get_headnode_dict Lib/lib2to3/refactor.py /^def _get_headnode_dict(fixer_list):$/;" f +_get_help_string Lib/argparse.py /^ def _get_help_string(self, action):$/;" m class:ArgumentDefaultsHelpFormatter +_get_help_string Lib/argparse.py /^ def _get_help_string(self, action):$/;" m class:HelpFormatter +_get_hostport Lib/http/client.py /^ def _get_hostport(self, host, port):$/;" m class:HTTPConnection +_get_human_text Tools/stringbench/stringbench.py /^def _get_human_text(STR):$/;" f +_get_impl Modules/_abc.c /^_get_impl(PyObject *module, PyObject *self)$/;" f file: +_get_instructions_bytes Lib/dis.py /^def _get_instructions_bytes(code, varname_from_oparg=None,$/;" f +_get_internalSubset Lib/xml/dom/minidom.py /^ def _get_internalSubset(self):$/;" m class:DocumentType +_get_interpreter Lib/test/test__xxinterpchannels.py /^ def _get_interpreter(self, interp):$/;" m class:ChannelCloseFixture +_get_invalid_paths_message Lib/zoneinfo/_tzpath.py /^def _get_invalid_paths_message(tzpaths):$/;" f +_get_isId Lib/xml/dom/minidom.py /^ def _get_isId(self):$/;" m class:Attr +_get_isWhitespaceInElementContent Lib/xml/dom/minidom.py /^ def _get_isWhitespaceInElementContent(self):$/;" m class:Text +_get_iscased Lib/re/_compiler.py /^def _get_iscased(flags):$/;" f +_get_iter Lib/unittest/mock.py /^def _get_iter(self):$/;" f +_get_keyword_or_name_type Parser/pegen.c /^_get_keyword_or_name_type(Parser *p, struct token *new_token)$/;" f file: +_get_kwargs Lib/argparse.py /^ def _get_kwargs(self):$/;" m class:Action +_get_kwargs Lib/argparse.py /^ def _get_kwargs(self):$/;" m class:ArgumentParser +_get_kwargs Lib/argparse.py /^ def _get_kwargs(self):$/;" m class:_AttributeHolder +_get_lastChild Lib/xml/dom/minidom.py /^ def _get_lastChild(self):$/;" m class:Childless +_get_lastChild Lib/xml/dom/minidom.py /^ def _get_lastChild(self):$/;" m class:Node +_get_length Lib/xml/dom/minicompat.py /^ def _get_length(self):$/;" m class:EmptyNodeList +_get_length Lib/xml/dom/minicompat.py /^ def _get_length(self):$/;" m class:NodeList +_get_length Lib/xml/dom/minidom.py /^ def _get_length(self):$/;" m class:CharacterData +_get_length Lib/xml/dom/minidom.py /^ def _get_length(self):$/;" m class:NamedNodeMap +_get_length Lib/xml/dom/minidom.py /^ def _get_length(self):$/;" m class:ReadOnlySequentialNamedNodeMap +_get_level Tools/c-analyzer/cpython/_capi.py /^def _get_level(filename, name, *,$/;" f +_get_line Lib/imaplib.py /^ def _get_line(self):$/;" m class:IMAP4 +_get_literal_prefix Lib/re/_compiler.py /^def _get_literal_prefix(pattern, flags):$/;" f +_get_localName Lib/xml/dom/minidom.py /^ def _get_localName(self):$/;" m class:Attr +_get_localName Lib/xml/dom/minidom.py /^ def _get_localName(self):$/;" m class:Element +_get_localName Lib/xml/dom/minidom.py /^ def _get_localName(self):$/;" m class:Node +_get_local_timestamp Lib/zoneinfo/_zoneinfo.py /^ def _get_local_timestamp(self, dt):$/;" m class:ZoneInfo +_get_locale_encoding Lib/_pyio.py /^ def _get_locale_encoding(self):$/;" m class:TextIOWrapper +_get_lock_path Lib/test/test_mailbox.py /^ def _get_lock_path(self):$/;" m class:TestMH +_get_lock_path Lib/test/test_mailbox.py /^ def _get_lock_path(self):$/;" m class:TestMailbox +_get_loop Lib/asyncio/futures.py /^def _get_loop(fut):$/;" f +_get_loop Lib/asyncio/mixins.py /^ def _get_loop(self):$/;" m class:_LoopBoundMixin +_get_machine_win32 Lib/platform.py /^def _get_machine_win32():$/;" f +_get_main_module_details Lib/runpy.py /^def _get_main_module_details(error=ImportError):$/;" f +_get_method Lib/unittest/mock.py /^def _get_method(name, func):$/;" f +_get_mixins_ Lib/enum.py /^ def _get_mixins_(mcls, class_name, bases):$/;" m class:EnumType +_get_mixins_ Lib/test/test_enum.py /^ _get_mixins_ = 9$/;" v class:_EnumTests.test_invalid_names.Wrong +_get_module_code Lib/zipimport.py /^def _get_module_code(self, fullname):$/;" f +_get_module_details Lib/runpy.py /^def _get_module_details(mod_name, error=ImportError):$/;" f +_get_module_from_name Lib/test/test_unittest/test_discovery.py /^ def _get_module_from_name(name):$/;" f function:TestDiscovery.test_discover_with_init_module_that_raises_SkipTest_on_import +_get_module_from_name Lib/test/test_unittest/test_discovery.py /^ def _get_module_from_name(name):$/;" f function:TestDiscovery.test_discover_with_init_modules_that_fail_to_import +_get_module_from_name Lib/test/test_unittest/test_discovery.py /^ def _get_module_from_name(name):$/;" f function:TestDiscovery.test_discover_with_module_that_raises_SkipTest_on_import +_get_module_from_name Lib/unittest/loader.py /^ def _get_module_from_name(self, name):$/;" m class:TestLoader +_get_module_info Lib/zipimport.py /^def _get_module_info(self, fullname):$/;" f +_get_module_lock Lib/importlib/_bootstrap.py /^def _get_module_lock(name):$/;" f +_get_module_path Lib/zipimport.py /^def _get_module_path(self, fullname):$/;" f +_get_more_data Lib/multiprocessing/connection.py /^ def _get_more_data(self, ov, maxsize):$/;" m class:.PipeConnection +_get_mtime_and_size_of_source Lib/zipimport.py /^def _get_mtime_and_size_of_source(self, path):$/;" f +_get_name Lib/xml/dom/minidom.py /^ def _get_name(self):$/;" m class:Attr +_get_name Lib/xml/dom/minidom.py /^ def _get_name(self):$/;" m class:TypeInfo +_get_name Modules/_ctypes/_ctypes.c /^_get_name(PyObject *obj, const char **pname)$/;" f file: +_get_name_from_path Lib/unittest/loader.py /^ def _get_name_from_path(self, path):$/;" m class:TestLoader +_get_name_info Lib/dis.py /^def _get_name_info(name_index, get_name, **extrainfo):$/;" f +_get_names Parser/action_helpers.c /^_get_names(Parser *p, asdl_seq *names_with_defaults)$/;" f file: +_get_namespace Lib/xml/dom/minidom.py /^ def _get_namespace(self):$/;" m class:TypeInfo +_get_nargs_pattern Lib/argparse.py /^ def _get_nargs_pattern(self, action):$/;" m class:ArgumentParser +_get_ne Lib/unittest/mock.py /^def _get_ne(self):$/;" f +_get_networks_key Lib/ipaddress.py /^ def _get_networks_key(self):$/;" m class:_BaseNetwork +_get_nodeName Lib/xml/dom/minidom.py /^ def _get_nodeName(self):$/;" m class:ProcessingInstruction +_get_nodeValue Lib/xml/dom/minidom.py /^ def _get_nodeValue(self):$/;" m class:ProcessingInstruction +_get_nodeinfo Lib/graphlib.py /^ def _get_nodeinfo(self, node):$/;" m class:TopologicalSorter +_get_normal_name Lib/lib2to3/pgen2/tokenize.py /^def _get_normal_name(orig_enc):$/;" f +_get_normal_name Lib/tokenize.py /^def _get_normal_name(orig_enc):$/;" f +_get_num Lib/test/test_binop.py /^ def _get_num(self):$/;" m class:Rat +_get_nuspec_data_overrides PC/layout/support/nuspec.py /^def _get_nuspec_data_overrides(ns):$/;" f +_get_opener Lib/xml/dom/xmlbuilder.py /^ def _get_opener(self):$/;" m class:DOMEntityResolver +_get_option_tuples Lib/argparse.py /^ def _get_option_tuples(self, option_string):$/;" m class:ArgumentParser +_get_optional_actions Lib/argparse.py /^ def _get_optional_actions(self):$/;" m class:ArgumentParser +_get_optional_kwargs Lib/argparse.py /^ def _get_optional_kwargs(self, *args, **kwargs):$/;" m class:_ActionsContainer +_get_packages Lib/ensurepip/__init__.py /^def _get_packages():$/;" f +_get_packing_format Lib/multiprocessing/shared_memory.py /^ def _get_packing_format(self, position):$/;" m class:ShareableList +_get_params_preserve Lib/email/message.py /^ def _get_params_preserve(self, failobj, header):$/;" m class:Message +_get_parent_path Lib/importlib/_bootstrap_external.py /^ def _get_parent_path(self):$/;" m class:_NamespacePath +_get_parser Lib/test/test_argparse.py /^ def _get_parser(self, tester):$/;" m class:ParserTesterMetaclass.__init__.AddTests +_get_parser Lib/test/test_argparse.py /^ def _get_parser(self, tester):$/;" m class:TestHelpFormattingMetaclass.__init__.AddTests +_get_parser Lib/test/test_argparse.py /^ def _get_parser(self, subparser_help=False, prefix_chars=None,$/;" m class:TestAddSubparsers +_get_path Lib/site.py /^def _get_path(userbase):$/;" f +_get_peer_alt_names Modules/_ssl.c /^_get_peer_alt_names (_sslmodulestate *state, X509 *certificate) {$/;" f file: +_get_positional_actions Lib/argparse.py /^ def _get_positional_actions(self):$/;" m class:ArgumentParser +_get_positional_kwargs Lib/argparse.py /^ def _get_positional_kwargs(self, dest, **kwargs):$/;" m class:_ActionsContainer +_get_preferred_schemes Lib/sysconfig.py /^def _get_preferred_schemes():$/;" f +_get_prefix Lib/xml/dom/minidom.py /^ def _get_prefix(self):$/;" m class:Attr +_get_preprocessor Tools/c-analyzer/c_parser/__main__.py /^def _get_preprocessor(filename, **kwargs):$/;" f +_get_preprocessor Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _get_preprocessor(tool):$/;" f +_get_previous_module Lib/unittest/suite.py /^ def _get_previous_module(self, result):$/;" m class:TestSuite +_get_protocol_attrs Lib/typing.py /^def _get_protocol_attrs(cls):$/;" f +_get_proxy Lib/test/test_unittest/testmock/testpatch.py /^def _get_proxy(obj, get_only=True):$/;" f +_get_ptext_to_endchars Lib/email/_header_value_parser.py /^def _get_ptext_to_endchars(value, endchars):$/;" f +_get_publicId Lib/xml/dom/minidom.py /^ def _get_publicId(self):$/;" m class:Identified +_get_publicId Lib/xml/dom/xmlbuilder.py /^ def _get_publicId(self):$/;" m class:DOMInputSource +_get_pyc_source Lib/zipimport.py /^def _get_pyc_source(self, path):$/;" f +_get_read_buffer_size Lib/asyncio/sslproto.py /^ def _get_read_buffer_size(self):$/;" m class:SSLProtocol +_get_registry_entries PC/layout/support/appxmanifest.py /^def _get_registry_entries(ns, root="", d=None):$/;" f +_get_response Lib/imaplib.py /^ def _get_response(self):$/;" m class:IMAP4 +_get_result Lib/test/libregrtest/runtest_mp.py /^ def _get_result(self) -> QueueOutput | None:$/;" m class:MultiprocessTestRunner +_get_revised_path Lib/pydoc.py /^def _get_revised_path(given_path, argv0):$/;" f +_get_revised_path Lib/test/test_pydoc.py /^ def _get_revised_path(given_path):$/;" f function:TestInternalUtilities.test_sys_path_adjustment_protects_pydoc_dir +_get_revised_path Lib/test/test_pydoc.py /^ def _get_revised_path(self, given_path, argv0=None):$/;" m class:TestInternalUtilities +_get_run_args Lib/test/test_compileall.py /^ def _get_run_args(self, args):$/;" m class:CommandLineTestsBase +_get_running_loop Lib/asyncio/events.py /^def _get_running_loop():$/;" f +_get_running_loop_impl Lib/test/test_asyncio/test_events.py /^ _get_running_loop_impl = events._c__get_running_loop$/;" v class:.TestCGetEventLoop +_get_running_loop_impl Lib/test/test_asyncio/test_events.py /^ _get_running_loop_impl = None$/;" v class:GetEventLoopTestsMixin +_get_running_loop_impl Lib/test/test_asyncio/test_events.py /^ _get_running_loop_impl = events._py__get_running_loop$/;" v class:TestPyGetEventLoop +_get_schemaType Lib/xml/dom/minidom.py /^ def _get_schemaType(self):$/;" m class:Attr +_get_sendmsg_buffer Lib/asyncio/selector_events.py /^ def _get_sendmsg_buffer(self):$/;" m class:_SelectorSocketTransport +_get_sentinels Lib/multiprocessing/pool.py /^ def _get_sentinels(self):$/;" m class:Pool +_get_sentinels Lib/multiprocessing/pool.py /^ def _get_sentinels(self):$/;" m class:ThreadPool +_get_sep Lib/posixpath.py /^def _get_sep(path):$/;" f +_get_shared_ns Modules/_xxsubinterpretersmodule.c /^_get_shared_ns(PyObject *shareable)$/;" f file: +_get_signature_object Lib/unittest/mock.py /^def _get_signature_object(func, as_instance, eat_self):$/;" f +_get_size Lib/plistlib.py /^ def _get_size(self, tokenL):$/;" m class:_BinaryPlistParser +_get_slots Lib/dataclasses.py /^def _get_slots(cls):$/;" f +_get_socket Lib/smtplib.py /^ def _get_socket(self, host, port, timeout):$/;" m class:SMTP.SMTP_SSL +_get_socket Lib/smtplib.py /^ def _get_socket(self, host, port, timeout):$/;" m class:SMTP +_get_soname Lib/ctypes/util.py /^ def _get_soname(f):$/;" f +_get_sortkey Tools/c-analyzer/cpython/_capi.py /^def _get_sortkey(sort, _groupby, _columns):$/;" f +_get_sourcefile Lib/importlib/_bootstrap_external.py /^def _get_sourcefile(bytecode_path):$/;" f +_get_spam Lib/test/test_dynamicclassattribute.py /^ def _get_spam(self):$/;" m class:PropertyDocBase +_get_spam Lib/test/test_property.py /^ def _get_spam(self):$/;" m class:PropertyDocBase +_get_spec Lib/importlib/_bootstrap_external.py /^ def _get_spec(cls, fullname, path, target=None):$/;" m class:PathFinder +_get_spec Lib/importlib/_bootstrap_external.py /^ def _get_spec(self, loader_class, fullname, path, smsl, target):$/;" m class:FileFinder +_get_specified Lib/xml/dom/minidom.py /^ def _get_specified(self):$/;" m class:Attr +_get_standalone Lib/xml/dom/minidom.py /^ def _get_standalone(self):$/;" m class:Document +_get_starting_path Lib/test/test_pydoc.py /^ def _get_starting_path(self):$/;" m class:TestInternalUtilities +_get_strictErrorChecking Lib/xml/dom/minidom.py /^ def _get_strictErrorChecking(self):$/;" m class:Document +_get_stringData Lib/xml/dom/xmlbuilder.py /^ def _get_stringData(self):$/;" m class:DOMInputSource +_get_subactions Lib/argparse.py /^ def _get_subactions(self):$/;" m class:_SubParsersAction +_get_suffix PC/layout/support/constants.py /^def _get_suffix(field4):$/;" f +_get_summary_line Lib/test/test_pydoc.py /^ def _get_summary_line(o):$/;" m class:TestDescriptions +_get_summary_lines Lib/test/test_pydoc.py /^ def _get_summary_lines(o):$/;" m class:TestDescriptions +_get_supported_file_loaders Lib/importlib/_bootstrap_external.py /^def _get_supported_file_loaders():$/;" f +_get_sysconfigdata_name Lib/sysconfig.py /^def _get_sysconfigdata_name():$/;" f +_get_sysctl Lib/test/support/socket_helper.py /^def _get_sysctl(name):$/;" f +_get_systemId Lib/xml/dom/minidom.py /^ def _get_systemId(self):$/;" m class:Identified +_get_systemId Lib/xml/dom/xmlbuilder.py /^ def _get_systemId(self):$/;" m class:DOMInputSource +_get_system_version Lib/_osx_support.py /^def _get_system_version():$/;" f +_get_system_version_tuple Lib/_osx_support.py /^def _get_system_version_tuple():$/;" f +_get_tagName Lib/xml/dom/minidom.py /^ def _get_tagName(self):$/;" m class:Element +_get_tagged_response Lib/imaplib.py /^ def _get_tagged_response(self, tag, expect_bye=False):$/;" m class:IMAP4 +_get_target Lib/unittest/mock.py /^def _get_target(target):$/;" f +_get_tasks Lib/multiprocessing/pool.py /^ def _get_tasks(func, it, size):$/;" m class:Pool +_get_tcl_lib_path Modules/_tkinter.c /^_get_tcl_lib_path(void)$/;" f file: +_get_temp_root Lib/tkinter/__init__.py /^def _get_temp_root():$/;" f +_get_test Lib/doctest.py /^ def _get_test(self, obj, name, module, globs, source_lines):$/;" m class:DocTestFinder +_get_test_codec Lib/test/test_codecs.py /^def _get_test_codec(codec_name):$/;" f +_get_test_grp_name Lib/test/test_subprocess.py /^def _get_test_grp_name():$/;" f +_get_trans_info Lib/zoneinfo/_zoneinfo.py /^ def _get_trans_info(self, ts, year, fold):$/;" m class:_TZStr +_get_trans_info_fromutc Lib/zoneinfo/_zoneinfo.py /^ def _get_trans_info_fromutc(self, ts, year):$/;" m class:_TZStr +_get_type Lib/test/test_unittest/testmock/testmagicmethods.py /^ def _get_type(obj):$/;" f function:TestMockingMagicMethods.test_attributes_and_return_value +_get_uid Lib/shutil.py /^def _get_uid(name):$/;" f +_get_uname Lib/test/test_sysconfig.py /^ def _get_uname(self):$/;" m class:TestSysConfig +_get_unconnected_pipe Lib/asyncio/windows_events.py /^ def _get_unconnected_pipe(self):$/;" m class:PipeServer +_get_unst Lib/test/test_email/test__header_value_parser.py /^ def _get_unst(self, value):$/;" m class:TestParser +_get_user_info Tools/c-analyzer/c_common/fsutil.py /^def _get_user_info(user):$/;" f +_get_value Lib/argparse.py /^ def _get_value(self, action, arg_string):$/;" m class:ArgumentParser +_get_value Lib/xml/dom/minidom.py /^ def _get_value(self):$/;" m class:Attr +_get_values Lib/argparse.py /^ def _get_values(self, action, arg_strings):$/;" m class:ArgumentParser +_get_vartype Tools/c-analyzer/c_parser/info.py /^def _get_vartype(data):$/;" f +_get_vc_env Tools/c-analyzer/distutils/_msvccompiler.py /^def _get_vc_env(plat_spec):$/;" f +_get_version Lib/xml/dom/minidom.py /^ def _get_version(self):$/;" m class:Document +_get_version Lib/xml/dom/minidom.py /^ def _get_version(self):$/;" m class:Entity +_get_versions Lib/gettext.py /^ def _get_versions(self, version):$/;" m class:GNUTranslations +_get_watcher Lib/test/test_asyncio/test_subprocess.py /^ def _get_watcher(self):$/;" m class:SubprocessMixin.SubprocessFastWatcherTests +_get_watcher Lib/test/test_asyncio/test_subprocess.py /^ def _get_watcher(self):$/;" m class:SubprocessMixin.SubprocessPidfdWatcherTests +_get_watcher Lib/test/test_asyncio/test_subprocess.py /^ def _get_watcher(self):$/;" m class:SubprocessMixin.SubprocessSafeWatcherTests +_get_watcher Lib/test/test_asyncio/test_subprocess.py /^ def _get_watcher(self):$/;" m class:SubprocessMixin.SubprocessThreadedWatcherTests +_get_whatToShow Lib/xml/dom/xmlbuilder.py /^ def _get_whatToShow(self):$/;" m class:DOMBuilderFilter +_get_wholeText Lib/xml/dom/minidom.py /^ def _get_wholeText(self):$/;" m class:Text +_get_worker_sentinels Lib/multiprocessing/pool.py /^ def _get_worker_sentinels(workers):$/;" m class:Pool +_get_worker_sentinels Lib/multiprocessing/pool.py /^ def _get_worker_sentinels(workers):$/;" m class:ThreadPool +_get_write_buffer_size Lib/asyncio/sslproto.py /^ def _get_write_buffer_size(self):$/;" m class:SSLProtocol +_get_writer Lib/xml/etree/ElementTree.py /^def _get_writer(file_or_filename, encoding):$/;" f +_get_x Lib/test/test_descr.py /^ def _get_x(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.A +_get_x Lib/test/test_descr.py /^ def _get_x(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.B +_get_x Lib/test/test_descr.py /^ def _get_x(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.C +_get_x Lib/test/test_descr.py /^ def _get_x(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.D +_get_zonedump Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _get_zonedump(cls):$/;" m class:ZoneDumpData +_getabsfile Lib/test/test_inspect.py /^ def _getabsfile(obj, _filename):$/;" f function:TestRetrievingSourceCode.test_getmodule_file_not_found +_getaction Lib/warnings.py /^def _getaction(action):$/;" f +_getaddr Lib/test/smtpd.py /^ def _getaddr(self, arg):$/;" m class:SMTPChannel +_getaddrinfo_debug Lib/asyncio/base_events.py /^ def _getaddrinfo_debug(self, host, port, family, type, proto, flags):$/;" m class:BaseEventLoop +_getargs_runtime_state Include/internal/pycore_runtime.h /^struct _getargs_runtime_state {$/;" s +_getattribute Lib/pickle.py /^def _getattribute(obj, name):$/;" f +_getattributes Lib/idlelib/rpc.py /^def _getattributes(obj, attributes):$/;" f +_getboolean Lib/tkinter/__init__.py /^ def _getboolean(self, string):$/;" m class:Misc +_getbytevalue Objects/bytearrayobject.c /^_getbytevalue(PyObject* arg, int *value)$/;" f file: +_getcanvas Lib/turtle.py /^ def _getcanvas(self):$/;" m class:_Root +_getcategory Lib/warnings.py /^def _getcategory(category):$/;" f +_getcode Modules/unicodedata.c /^_getcode(PyObject* self,$/;" f file: +_getcodec Modules/cjkcodecs/cjkcodecs.h /^_getcodec(PyObject *self, const MultibyteCodec *codec)$/;" f +_getconfigure Lib/tkinter/__init__.py /^ def _getconfigure(self, *args):$/;" m class:Misc +_getconfigure1 Lib/tkinter/__init__.py /^ def _getconfigure1(self, *args):$/;" m class:Misc +_getdate Lib/http/cookies.py /^def _getdate(future=0, weekdayname=_weekdayname, monthname=_monthname):$/;" f +_getdefaultlocale Lib/locale.py /^def _getdefaultlocale(envvars=('LC_ALL', 'LC_CTYPE', 'LANG', 'LANGUAGE')):$/;" f +_getdescriptions Lib/nntplib.py /^ def _getdescriptions(self, group_pattern, return_all):$/;" m class:NNTP +_getdoc Lib/pydoc.py /^def _getdoc(object):$/;" f +_getdoubles Lib/tkinter/__init__.py /^ def _getdoubles(self, string):$/;" m class:Misc +_getfinalpathname_nonstrict Lib/ntpath.py /^ def _getfinalpathname_nonstrict(path):$/;" f +_gethash Modules/unicodedata.c /^_gethash(const char *s, int len, int scale)$/;" f file: +_getints Lib/tkinter/__init__.py /^ def _getints(self, string):$/;" m class:Misc +_getlang Lib/_strptime.py /^def _getlang():$/;" f +_getline Lib/nntplib.py /^ def _getline(self, strip_crlf=True):$/;" m class:NNTP +_getline Lib/poplib.py /^ def _getline(self):$/;" m class:POP3 +_getlongresp Lib/nntplib.py /^ def _getlongresp(self, file=None):$/;" m class:NNTP +_getlongresp Lib/poplib.py /^ def _getlongresp(self):$/;" m class:POP3 +_getmember Lib/tarfile.py /^ def _getmember(self, name, tarinfo=None, normalize=False):$/;" m class:TarFile +_getmembers Lib/inspect.py /^def _getmembers(object, predicate, getter):$/;" f +_getmethods Lib/idlelib/rpc.py /^def _getmethods(obj, methods):$/;" f +_getoverviewfmt Lib/nntplib.py /^ def _getoverviewfmt(self):$/;" m class:NNTP +_getowndoc Lib/pydoc.py /^def _getowndoc(obj):$/;" f +_getparams Lib/test/smtpd.py /^ def _getparams(self, params):$/;" m class:SMTPChannel +_getrecord_ex Modules/unicodedata.c /^_getrecord_ex(Py_UCS4 code)$/;" f file: +_getrefnum Lib/plistlib.py /^ def _getrefnum(self, value):$/;" m class:_BinaryPlistWriter +_getresp Lib/nntplib.py /^ def _getresp(self):$/;" m class:NNTP +_getresp Lib/poplib.py /^ def _getresp(self):$/;" m class:POP3 +_getresponse Lib/idlelib/rpc.py /^ def _getresponse(self, myseq, wait):$/;" m class:SocketIO +_getshapepoly Lib/turtle.py /^ def _getshapepoly(self, polygon, compound=False):$/;" m class:RawTurtle +_getshortpathname Lib/test/test_ntpath.py /^ def _getshortpathname(path):$/;" f +_getsourcelines Lib/pdb.py /^ def _getsourcelines(self, obj):$/;" m class:Pdb +_getstate Lib/_pydatetime.py /^ def _getstate(self):$/;" m class:date +_getstate Lib/_pydatetime.py /^ def _getstate(self):$/;" m class:timedelta +_getstate Lib/_pydatetime.py /^ def _getstate(self, protocol=3):$/;" m class:datetime +_getstate Lib/_pydatetime.py /^ def _getstate(self, protocol=3):$/;" m class:time +_gettempdir Lib/tempfile.py /^def _gettempdir():$/;" f +_gettextwriter Lib/xml/sax/saxutils.py /^def _gettextwriter(out, encoding):$/;" f +_gettopic Lib/pydoc.py /^ def _gettopic(self, topic, more_xrefs=''):$/;" f +_getucname Modules/unicodedata.c /^_getucname(PyObject *self,$/;" f file: +_getuserbase Lib/site.py /^def _getuserbase():$/;" f +_getuserbase Lib/sysconfig.py /^def _getuserbase():$/;" f +_getval Lib/pdb.py /^ def _getval(self, arg):$/;" m class:Pdb +_getval_except Lib/pdb.py /^ def _getval_except(self, arg, frame=None):$/;" m class:Pdb +_getvalue Lib/multiprocessing/managers.py /^ def _getvalue(self):$/;" m class:BaseProxy +_getvolumepathname Lib/ntpath.py /^ _getvolumepathname = None$/;" v +_getx Lib/test/pydocfodder.py /^ def _getx(self):$/;" m class:A_new +_gif Lib/email/mime/image.py /^def _gif(h):$/;" f +_gil Include/internal/pycore_interp.h /^ struct _gil_runtime_state _gil;$/;" m struct:_is typeref:struct:_is::_gil_runtime_state +_gil_initialize Python/ceval_gil.c /^static void _gil_initialize(struct _gil_runtime_state *gil)$/;" f file: +_gil_runtime_state Include/internal/pycore_gil.h /^struct _gil_runtime_state {$/;" s +_gilstate_runtime_state Include/internal/pycore_runtime.h /^struct _gilstate_runtime_state {$/;" s +_gilstate_tss_clear Python/pystate.c 204;" d file: +_gilstate_tss_set Python/pystate.c 202;" d file: +_glob0 Lib/glob.py /^def _glob0(dirname, basename, dir_fd, dironly, include_hidden=False):$/;" f +_glob1 Lib/glob.py /^def _glob1(dirname, pattern, dir_fd, dironly, include_hidden=False):$/;" f +_glob2 Lib/glob.py /^def _glob2(dirname, pattern, dir_fd, dironly, include_hidden=False):$/;" f +_global_channels Modules/_xxinterpchannelsmodule.c /^_global_channels(void) {$/;" f file: +_global_lock Lib/asyncio/mixins.py /^_global_lock = threading.Lock()$/;" v +_global_log Tools/c-analyzer/distutils/log.py /^_global_log = Log()$/;" v +_global_ref Lib/test/test_inspect.py /^_global_ref = object()$/;" v +_global_shutdown Lib/concurrent/futures/process.py /^_global_shutdown = False$/;" v +_global_shutdown_lock Lib/concurrent/futures/thread.py /^_global_shutdown_lock = threading.Lock()$/;" v +_global_var Lib/test/test_weakref.py /^_global_var = 'foobar'$/;" v +_globals Lib/os.py /^ _globals = globals()$/;" v +_globals Lib/signal.py /^_globals = globals()$/;" v +_globals Lib/timeit.py /^_globals = globals$/;" v +_globals Modules/_xxinterpchannelsmodule.c /^} _globals = {0};$/;" v typeref:struct:globals file: +_globals_fini Modules/_xxinterpchannelsmodule.c /^_globals_fini(void)$/;" f file: +_globals_init Modules/_xxinterpchannelsmodule.c /^_globals_init(void)$/;" f file: +_go Lib/turtle.py /^ def _go(self, distance):$/;" m class:TNavigator +_good_enough Lib/xml/dom/domreg.py /^def _good_enough(dom, features):$/;" f +_got_empty_message Lib/multiprocessing/connection.py /^ _got_empty_message = False$/;" v class:.PipeConnection +_goto Lib/turtle.py /^ def _goto(self, end):$/;" m class:RawTurtle +_goto Lib/turtle.py /^ def _goto(self, end):$/;" m class:TNavigator +_grep Lib/idlelib/idle_test/test_grep.py /^_grep = Dummy_grep()$/;" v +_grep_dialog Lib/idlelib/grep.py /^def _grep_dialog(parent): # htest #$/;" f +_grep_dialog_spec Lib/idlelib/idle_test/htest.py /^_grep_dialog_spec = {$/;" v +_grid_configure Lib/tkinter/__init__.py /^ def _grid_configure(self, command, index, cnf, kw):$/;" m class:Misc +_gridconvvalue Lib/tkinter/__init__.py /^ def _gridconvvalue(self, value):$/;" m class:Misc +_group Lib/locale.py /^def _group(s, monetary=False):$/;" f +_group_by Lib/tracemalloc.py /^ def _group_by(self, key_type, cumulative):$/;" m class:Snapshot +_group_keywords_by_length Tools/peg_generator/pegen/c_generator.py /^ def _group_keywords_by_length(self) -> Dict[int, List[Tuple[str, int]]]:$/;" m class:CParserGenerator +_group_lengths Lib/_pydecimal.py /^def _group_lengths(grouping):$/;" f +_grouper_create Modules/itertoolsmodule.c /^_grouper_create(groupbyobject *parent, PyObject *tgtkey)$/;" f file: +_grouper_dealloc Modules/itertoolsmodule.c /^_grouper_dealloc(_grouperobject *igo)$/;" f file: +_grouper_methods Modules/itertoolsmodule.c /^static PyMethodDef _grouper_methods[] = {$/;" v file: +_grouper_next Modules/itertoolsmodule.c /^_grouper_next(_grouperobject *igo)$/;" f file: +_grouper_reduce Modules/itertoolsmodule.c /^_grouper_reduce(_grouperobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +_grouper_slots Modules/itertoolsmodule.c /^static PyType_Slot _grouper_slots[] = {$/;" v file: +_grouper_spec Modules/itertoolsmodule.c /^static PyType_Spec _grouper_spec = {$/;" v file: +_grouper_traverse Modules/itertoolsmodule.c /^_grouper_traverse(_grouperobject *igo, visitproc visit, void *arg)$/;" f file: +_grouper_type Modules/itertoolsmodule.c /^ PyTypeObject *_grouper_type;$/;" m struct:__anon400 file: +_grouperobject Modules/itertoolsmodule.c /^} _grouperobject;$/;" t typeref:struct:__anon404 file: +_grouping_intervals Lib/locale.py /^def _grouping_intervals(grouping):$/;" f +_grouplist Lib/nntplib.py /^ def _grouplist(self, lines):$/;" m class:NNTP +_gt_from_ge Lib/functools.py /^def _gt_from_ge(self, other):$/;" f +_gt_from_le Lib/functools.py /^def _gt_from_le(self, other):$/;" f +_gt_from_lt Lib/functools.py /^def _gt_from_lt(self, other):$/;" f +_guarded_task_generation Lib/multiprocessing/pool.py /^ def _guarded_task_generation(self, result_job, func, iterable):$/;" m class:Pool +_guess_delimiter Lib/csv.py /^ def _guess_delimiter(self, data, delimiters):$/;" m class:Sniffer +_guess_media_encoding Lib/xml/dom/xmlbuilder.py /^ def _guess_media_encoding(self, source):$/;" m class:DOMEntityResolver +_guess_quote_and_delimiter Lib/csv.py /^ def _guess_quote_and_delimiter(self, data, delimiters):$/;" m class:Sniffer +_h Doc/includes/mp_newtype.py /^ def _h(self):$/;" m class:Foo +_h Lib/test/_test_multiprocessing.py /^ def _h(self):$/;" m class:FooBar +_h Lib/test/test_dis.py /^def _h(y):$/;" f +_h0 Modules/_hacl/Hacl_Hash_MD5.c /^_h0[4U] =$/;" v file: +_h0 Modules/_hacl/Hacl_Hash_SHA1.c /^_h0[5U] =$/;" v file: +_hBAFModule Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HMODULE _hBAFModule;$/;" m class:PythonBootstrapperApplication file: +_hModule Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HMODULE _hModule;$/;" m class:PythonBootstrapperApplication file: +_hUiThread Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HANDLE _hUiThread;$/;" m class:PythonBootstrapperApplication file: +_hWnd Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HWND _hWnd;$/;" m class:PythonBootstrapperApplication file: +_ham Lib/test/test_rlcompleter.py /^ _ham = 2$/;" v class:CompleteMe +_hamt_bitmap_node_empty_gc_not_used Include/internal/pycore_global_objects.h /^ _PyGC_Head_UNUSED _hamt_bitmap_node_empty_gc_not_used;$/;" m struct:_Py_static_objects::__anon147 +_hamt_dump_format Python/hamt.c /^_hamt_dump_format(_PyUnicodeWriter *writer, const char *format, ...)$/;" f file: +_hamt_dump_ident Python/hamt.c /^_hamt_dump_ident(_PyUnicodeWriter *writer, int level)$/;" f file: +_hamt_empty_gc_not_used Include/internal/pycore_global_objects.h /^ _PyGC_Head_UNUSED _hamt_empty_gc_not_used;$/;" m struct:_Py_interp_static_objects::__anon149 +_hamt_node_array_validate Python/hamt.c /^_hamt_node_array_validate(void *obj_raw)$/;" f file: +_handle Lib/ctypes/__init__.py /^ _handle = 0$/;" v class:CDLL +_handle Lib/multiprocessing/connection.py /^ _handle = None$/;" v class:_ConnectionBase +_handleClassSetUp Lib/unittest/suite.py /^ def _handleClassSetUp(self, test, result):$/;" m class:TestSuite +_handleModuleFixture Lib/unittest/suite.py /^ def _handleModuleFixture(self, test, result):$/;" m class:TestSuite +_handleModuleTearDown Lib/unittest/suite.py /^ def _handleModuleTearDown(self, result):$/;" m class:TestSuite +_handle_client Lib/test/test_asyncio/functional.py /^ def _handle_client(self, sock):$/;" m class:TestThreadedServer +_handle_client Lib/test/test_asyncio/test_ssl.py /^ def _handle_client(self, sock):$/;" m class:TestThreadedServer +_handle_conflict_error Lib/argparse.py /^ def _handle_conflict_error(self, action, conflicting_actions):$/;" m class:_ActionsContainer +_handle_conflict_resolve Lib/argparse.py /^ def _handle_conflict_resolve(self, action, conflicting_actions):$/;" m class:_ActionsContainer +_handle_default_rule_body Tools/peg_generator/pegen/c_generator.py /^ def _handle_default_rule_body(self, node: Rule, rhs: Rhs, result_type: str) -> None:$/;" m class:CParserGenerator +_handle_error Lib/configparser.py /^ def _handle_error(self, exc, fpname, lineno, line):$/;" m class:RawConfigParser +_handle_existing_loggers Lib/logging/config.py /^def _handle_existing_loggers(existing, child_loggers, disable_existing):$/;" f +_handle_exitstatus Lib/subprocess.py /^ def _handle_exitstatus(self, sts,$/;" f function:Popen._on_error_fd_closer +_handle_fatal_error Lib/tarfile.py /^ def _handle_fatal_error(self, e):$/;" m class:TarFile +_handle_fromlist Lib/importlib/_bootstrap.py /^def _handle_fromlist(module, fromlist, import_, *, recursive=False):$/;" f +_handle_long_word Lib/textwrap.py /^ def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width):$/;" m class:TextWrapper +_handle_loop_rule_body Tools/peg_generator/pegen/c_generator.py /^ def _handle_loop_rule_body(self, node: Rule, rhs: Rhs) -> None:$/;" m class:CParserGenerator +_handle_message Lib/email/generator.py /^ def _handle_message(self, msg):$/;" m class:Generator +_handle_message_delivery_status Lib/email/generator.py /^ def _handle_message_delivery_status(self, msg):$/;" m class:Generator +_handle_multipart Lib/email/generator.py /^ def _handle_multipart(self, msg):$/;" m class:Generator +_handle_multipart_signed Lib/email/generator.py /^ def _handle_multipart_signed(self, msg):$/;" m class:Generator +_handle_nonfatal_error Lib/tarfile.py /^ def _handle_nonfatal_error(self, e):$/;" m class:TarFile +_handle_rename Lib/lib2to3/fixes/fix_operator.py /^ def _handle_rename(self, node, results, name):$/;" m class:FixOperator +_handle_request Lib/multiprocessing/managers.py /^ def _handle_request(self, c):$/;" m class:Server +_handle_request_noblock Lib/socketserver.py /^ def _handle_request_noblock(self):$/;" m class:BaseServer +_handle_results Lib/multiprocessing/pool.py /^ def _handle_results(outqueue, get, cache):$/;" m class:Pool +_handle_signal Lib/asyncio/unix_events.py /^ def _handle_signal(self, sig):$/;" m class:_UnixSelectorEventLoop +_handle_single Lib/xml/etree/ElementTree.py /^ def _handle_single(self, factory, insert, *args):$/;" m class:TreeBuilder +_handle_tasks Lib/multiprocessing/pool.py /^ def _handle_tasks(taskqueue, put, outqueue, pool, cache):$/;" m class:Pool +_handle_text Lib/email/generator.py /^ def _handle_text(self, msg):$/;" m class:BytesGenerator +_handle_text Lib/email/generator.py /^ def _handle_text(self, msg):$/;" m class:Generator +_handle_type2abc Lib/lib2to3/fixes/fix_operator.py /^ def _handle_type2abc(self, node, results, module, abc):$/;" m class:FixOperator +_handle_unresolved Tools/c-analyzer/c_analyzer/analyze.py /^def _handle_unresolved(unresolved, types, analyze_decl):$/;" f +_handle_white_text_nodes Lib/xml/dom/expatbuilder.py /^ def _handle_white_text_nodes(self, node, info):$/;" m class:ExpatBuilder +_handle_workers Lib/multiprocessing/pool.py /^ def _handle_workers(cls, cache, taskqueue, ctx, Process, processes,$/;" m class:Pool +_handlerList Lib/logging/__init__.py /^_handlerList = [] # added to allow handlers to be removed in reverse of order initialized$/;" v +_handlers Lib/logging/__init__.py /^_handlers = weakref.WeakValueDictionary() #map of handler names to handlers$/;" v +_handshake_start_time Lib/asyncio/sslproto.py /^ _handshake_start_time = None$/;" v class:SSLProtocol +_handshake_timeout_handle Lib/asyncio/sslproto.py /^ _handshake_timeout_handle = None$/;" v class:SSLProtocol +_has_code_flag Lib/inspect.py /^def _has_code_flag(f, flag):$/;" f +_has_coroutine_mark Lib/inspect.py /^def _has_coroutine_mark(f):$/;" f +_has_deadlocked Lib/importlib/_bootstrap.py /^def _has_deadlocked(target_id, *, seen_ids, candidate_ids, blocking_on):$/;" f +_has_load_super_attr Lib/test/test_monitoring.py /^ def _has_load_super_attr(self, co):$/;" m class:TestLoadSuperAttr +_has_other_supported_type Tools/c-analyzer/cpython/_analyzer.py /^def _has_other_supported_type(decl):$/;" f +_has_run Lib/test/test_capi/test_misc.py /^ _has_run = False$/;" v class:TestStaticTypes +_has_run Lib/test/test_peg_generator/test_c_parser.py /^ _has_run = False$/;" v class:TestCParser +_has_surrogates Lib/email/utils.py /^def _has_surrogates(s):$/;" f +_has_uuid_generate_time_safe Lib/uuid.py /^ _has_uuid_generate_time_safe = None$/;" v +_hash Lib/_collections_abc.py /^ def _hash(self):$/;" m class:Set +_hash Lib/test/test_unittest/testmock/testmagicmethods.py /^ def _hash(s):$/;" f function:TestMockingMagicMethods.test_hash +_hash_action Lib/dataclasses.py /^_hash_action = {(False, False, False, False): None,$/;" v +_hash_add Lib/dataclasses.py /^def _hash_add(cls, fields, globals):$/;" f +_hash_algorithm Lib/fractions.py /^def _hash_algorithm(numerator, denominator):$/;" f +_hash_basis Lib/inspect.py /^ def _hash_basis(self):$/;" m class:Signature +_hash_exception Lib/dataclasses.py /^def _hash_exception(cls, fields, globals):$/;" f +_hash_fn Lib/dataclasses.py /^def _hash_fn(fields, globals):$/;" f +_hash_set_none Lib/dataclasses.py /^def _hash_set_none(cls, fields, globals):$/;" f +_hashlib Lib/hashlib.py /^ _hashlib = None$/;" v +_hashlib Lib/test/support/hashlib_helper.py /^ _hashlib = None$/;" v +_hashlib_HMAC_copy Modules/clinic/_hashopenssl.c.h /^_hashlib_HMAC_copy(HMACobject *self, PyObject *Py_UNUSED(ignored))$/;" f +_hashlib_HMAC_copy_impl Modules/_hashopenssl.c /^_hashlib_HMAC_copy_impl(HMACobject *self)$/;" f file: +_hashlib_HMAC_digest Modules/clinic/_hashopenssl.c.h /^_hashlib_HMAC_digest(HMACobject *self, PyObject *Py_UNUSED(ignored))$/;" f +_hashlib_HMAC_digest_impl Modules/_hashopenssl.c /^_hashlib_HMAC_digest_impl(HMACobject *self)$/;" f file: +_hashlib_HMAC_hexdigest Modules/clinic/_hashopenssl.c.h /^_hashlib_HMAC_hexdigest(HMACobject *self, PyObject *Py_UNUSED(ignored))$/;" f +_hashlib_HMAC_hexdigest_impl Modules/_hashopenssl.c /^_hashlib_HMAC_hexdigest_impl(HMACobject *self)$/;" f file: +_hashlib_HMAC_update Modules/clinic/_hashopenssl.c.h /^_hashlib_HMAC_update(HMACobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_HMAC_update_impl Modules/_hashopenssl.c /^_hashlib_HMAC_update_impl(HMACobject *self, PyObject *msg)$/;" f file: +_hashlib_compare_digest Modules/clinic/_hashopenssl.c.h /^_hashlib_compare_digest(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_hashlib_compare_digest_impl Modules/_hashopenssl.c /^_hashlib_compare_digest_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_hashlib_get_fips_mode Modules/clinic/_hashopenssl.c.h /^_hashlib_get_fips_mode(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_hashlib_get_fips_mode_impl Modules/_hashopenssl.c /^_hashlib_get_fips_mode_impl(PyObject *module)$/;" f file: +_hashlib_hmac_get_block_size Modules/_hashopenssl.c /^_hashlib_hmac_get_block_size(HMACobject *self, void *closure)$/;" f file: +_hashlib_hmac_get_digest_size Modules/_hashopenssl.c /^_hashlib_hmac_get_digest_size(HMACobject *self, void *closure)$/;" f file: +_hashlib_hmac_get_name Modules/_hashopenssl.c /^_hashlib_hmac_get_name(HMACobject *self, void *closure)$/;" f file: +_hashlib_hmac_new Modules/clinic/_hashopenssl.c.h /^_hashlib_hmac_new(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_hmac_new_impl Modules/_hashopenssl.c /^_hashlib_hmac_new_impl(PyObject *module, Py_buffer *key, PyObject *msg_obj,$/;" f file: +_hashlib_hmac_singleshot Modules/clinic/_hashopenssl.c.h /^_hashlib_hmac_singleshot(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_hmac_singleshot_impl Modules/_hashopenssl.c /^_hashlib_hmac_singleshot_impl(PyObject *module, Py_buffer *key,$/;" f file: +_hashlib_openssl_md5 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_md5(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_md5_impl Modules/_hashopenssl.c /^_hashlib_openssl_md5_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha1 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha1(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha1_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha1_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha224 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha224(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha224_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha224_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha256 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha256(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha256_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha256_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha384 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha384(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha384_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha384_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha3_224 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha3_224(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha3_224_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha3_224_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha3_256 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha3_256(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha3_256_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha3_256_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha3_384 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha3_384(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha3_384_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha3_384_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha3_512 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha3_512(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha3_512_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha3_512_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_sha512 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_sha512(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_sha512_impl Modules/_hashopenssl.c /^_hashlib_openssl_sha512_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_shake_128 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_shake_128(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_shake_128_impl Modules/_hashopenssl.c /^_hashlib_openssl_shake_128_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_openssl_shake_256 Modules/clinic/_hashopenssl.c.h /^_hashlib_openssl_shake_256(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_openssl_shake_256_impl Modules/_hashopenssl.c /^_hashlib_openssl_shake_256_impl(PyObject *module, PyObject *data_obj,$/;" f file: +_hashlib_scrypt Modules/clinic/_hashopenssl.c.h /^_hashlib_scrypt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_hashlib_scrypt_impl Modules/_hashopenssl.c /^_hashlib_scrypt_impl(PyObject *module, Py_buffer *password, Py_buffer *salt,$/;" f file: +_hashlibmodule Modules/_hashopenssl.c /^static PyModuleDef _hashlibmodule;$/;" v file: +_hashlibmodule Modules/_hashopenssl.c /^static struct PyModuleDef _hashlibmodule = {$/;" v typeref:struct:PyModuleDef file: +_hashlibstate Modules/_hashopenssl.c /^} _hashlibstate;$/;" t typeref:struct:__anon561 file: +_hashopenssl Lib/hmac.py /^ _hashopenssl = None$/;" v +_hashopenssl Lib/test/test_hmac.py /^ _hashopenssl = None$/;" v +_have_code Lib/dis.py /^_have_code = (types.MethodType, types.FunctionType, types.CodeType,$/;" v +_have_multiprocessing Lib/test/test_compileall.py /^ _have_multiprocessing = False$/;" v +_have_multiprocessing Lib/test/test_compileall.py /^ _have_multiprocessing = True$/;" v +_have_socket_alg Lib/test/test_socket.py /^def _have_socket_alg():$/;" f +_have_socket_bluetooth Lib/test/test_socket.py /^def _have_socket_bluetooth():$/;" f +_have_socket_can Lib/test/test_socket.py /^def _have_socket_can():$/;" f +_have_socket_can_isotp Lib/test/test_socket.py /^def _have_socket_can_isotp():$/;" f +_have_socket_can_j1939 Lib/test/test_socket.py /^def _have_socket_can_j1939():$/;" f +_have_socket_hyperv Lib/test/test_socket.py /^def _have_socket_hyperv():$/;" f +_have_socket_qipcrtr Lib/test/test_socket.py /^def _have_socket_qipcrtr():$/;" f +_have_socket_rds Lib/test/test_socket.py /^def _have_socket_rds():$/;" f +_have_socket_vsock Lib/test/test_socket.py /^def _have_socket_vsock():$/;" f +_have_ssl Lib/nntplib.py /^ _have_ssl = False$/;" v +_have_ssl Lib/nntplib.py /^ _have_ssl = True$/;" v +_have_ssl Lib/smtplib.py /^ _have_ssl = True$/;" v +_have_ssl Lib/urllib/request.py /^ _have_ssl = False$/;" v +_have_ssl Lib/urllib/request.py /^ _have_ssl = True$/;" v +_header Lib/test/support/__init__.py /^ _header = '2P' + _header$/;" v +_header Lib/test/support/__init__.py /^_header = 'nP'$/;" v +_heap Lib/multiprocessing/heap.py /^ _heap = Heap()$/;" v class:BufferWrapper +_heapify_max Lib/heapq.py /^def _heapify_max(x):$/;" f +_heappop_max Lib/heapq.py /^def _heappop_max(heap):$/;" f +_heapq__heapify_max Modules/clinic/_heapqmodule.c.h /^_heapq__heapify_max(PyObject *module, PyObject *arg)$/;" f +_heapq__heapify_max_impl Modules/_heapqmodule.c /^_heapq__heapify_max_impl(PyObject *module, PyObject *heap)$/;" f file: +_heapq__heappop_max Modules/clinic/_heapqmodule.c.h /^_heapq__heappop_max(PyObject *module, PyObject *arg)$/;" f +_heapq__heappop_max_impl Modules/_heapqmodule.c /^_heapq__heappop_max_impl(PyObject *module, PyObject *heap)$/;" f file: +_heapq__heapreplace_max Modules/clinic/_heapqmodule.c.h /^_heapq__heapreplace_max(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_heapq__heapreplace_max_impl Modules/_heapqmodule.c /^_heapq__heapreplace_max_impl(PyObject *module, PyObject *heap,$/;" f file: +_heapq_heapify Modules/clinic/_heapqmodule.c.h /^_heapq_heapify(PyObject *module, PyObject *arg)$/;" f +_heapq_heapify_impl Modules/_heapqmodule.c /^_heapq_heapify_impl(PyObject *module, PyObject *heap)$/;" f file: +_heapq_heappop Modules/clinic/_heapqmodule.c.h /^_heapq_heappop(PyObject *module, PyObject *arg)$/;" f +_heapq_heappop_impl Modules/_heapqmodule.c /^_heapq_heappop_impl(PyObject *module, PyObject *heap)$/;" f file: +_heapq_heappush Modules/clinic/_heapqmodule.c.h /^_heapq_heappush(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_heapq_heappush_impl Modules/_heapqmodule.c /^_heapq_heappush_impl(PyObject *module, PyObject *heap, PyObject *item)$/;" f file: +_heapq_heappushpop Modules/clinic/_heapqmodule.c.h /^_heapq_heappushpop(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_heapq_heappushpop_impl Modules/_heapqmodule.c /^_heapq_heappushpop_impl(PyObject *module, PyObject *heap, PyObject *item)$/;" f file: +_heapq_heapreplace Modules/clinic/_heapqmodule.c.h /^_heapq_heapreplace(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_heapq_heapreplace_impl Modules/_heapqmodule.c /^_heapq_heapreplace_impl(PyObject *module, PyObject *heap, PyObject *item)$/;" f file: +_heapqmodule Modules/_heapqmodule.c /^static struct PyModuleDef _heapqmodule = {$/;" v typeref:struct:PyModuleDef file: +_heapreplace_max Lib/heapq.py /^def _heapreplace_max(heap, item):$/;" f +_heaptypeobject Include/cpython/object.h /^typedef struct _heaptypeobject {$/;" s +_help_message_from_doc Lib/pdb.py /^ def _help_message_from_doc(self, doc):$/;" m class:Pdb +_help_order Lib/pdb.py /^ _help_order = [$/;" v class:Pdb +_help_stuff_finish Lib/multiprocessing/pool.py /^ def _help_stuff_finish(inqueue, task_handler, size):$/;" m class:Pool +_help_stuff_finish Lib/multiprocessing/pool.py /^ def _help_stuff_finish(inqueue, task_handler, size):$/;" m class:ThreadPool +_helper_reraises_exception Lib/multiprocessing/pool.py /^def _helper_reraises_exception(ex):$/;" f +_hex_code Lib/re/_compiler.py /^def _hex_code(code):$/;" f +_hexdig Lib/urllib/parse.py /^_hexdig = '0123456789ABCDEFabcdef'$/;" v +_hextobyte Lib/urllib/parse.py /^_hextobyte = None$/;" v +_hidden_attribute1 Lib/test/test_support.py /^ _hidden_attribute1 = None$/;" v class:TestSupport.RefClass +_hide_event Lib/idlelib/tooltip.py /^ def _hide_event(self, event=None):$/;" m class:OnHoverTooltipBase +_hide_event_check Lib/idlelib/autocomplete_w.py /^ def _hide_event_check(self):$/;" m class:AutoCompleteWindow +_hierlevel Lib/logging/__init__.py /^ def _hierlevel(logger):$/;" f function:Logger.getChildren +_high_bit Lib/enum.py /^def _high_bit(value):$/;" f +_history_length Modules/readline.c /^static int _history_length = -1; \/* do not truncate history by default *\/$/;" v file: +_hmac_dealloc Modules/_hashopenssl.c /^_hmac_dealloc(HMACobject *self)$/;" f file: +_hmac_digest Modules/_hashopenssl.c /^_hmac_digest(HMACobject *self, unsigned char *buf, unsigned int len)$/;" f file: +_hmac_digest_size Modules/_hashopenssl.c /^_hmac_digest_size(HMACobject *self)$/;" f file: +_hmac_repr Modules/_hashopenssl.c /^_hmac_repr(HMACobject *self)$/;" f file: +_hmac_update Modules/_hashopenssl.c /^_hmac_update(HMACobject *self, PyObject *obj)$/;" f file: +_hook Lib/test/support/__init__.py /^ def _hook(self, unraisable):$/;" m class:catch_unraisable_exception +_hook Lib/test/support/threading_helper.py /^ def _hook(self, args):$/;" m class:catch_threading_exception +_hookup_callbacks Lib/test/test_pyexpat.py /^ def _hookup_callbacks(self, parser, handler):$/;" m class:ParseTest +_hoppish Lib/wsgiref/util.py /^_hoppish = {$/;" v +_hostinfo Lib/urllib/parse.py /^ def _hostinfo(self):$/;" m class:_NetlocResultMixinBytes +_hostinfo Lib/urllib/parse.py /^ def _hostinfo(self):$/;" m class:_NetlocResultMixinStr +_hostprog Lib/urllib/parse.py /^_hostprog = None$/;" v +_hrFinal Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ HRESULT _hrFinal;$/;" m class:PythonBootstrapperApplication file: +_ht_tpname Include/cpython/object.h /^ char *_ht_tpname; \/\/ Storage for "tp_name"; see PyType_FromModuleAndSpec$/;" m struct:_heaptypeobject +_http_vsn Lib/http/client.py /^ _http_vsn = 11$/;" v class:HTTPConnection +_http_vsn_str Lib/http/client.py /^ _http_vsn_str = 'HTTP\/1.1'$/;" v class:HTTPConnection +_https_connection Lib/urllib/request.py /^ def _https_connection(self, host):$/;" f function:URLopener.http_error_default +_icondir Lib/idlelib/tree.py /^ _icondir = ICONDIR$/;" v +_icondir Lib/idlelib/tree.py /^ _icondir = os.path.join(os.path.dirname(__file__), ICONDIR)$/;" v +_id Lib/test/support/__init__.py /^def _id(obj):$/;" f +_id Lib/unittest/case.py /^def _id(obj):$/;" f +_id_kinds Parser/asdl.py /^ _id_kinds = (TokenKind.ConstructorId, TokenKind.TypeId)$/;" v class:ASDLParser +_idempotent Lib/test/test_email/test_email.py /^ def _idempotent(self, msg, data, unixfrom=False):$/;" m class:BaseTestBytesGeneratorIdempotent +_idempotent Lib/test/test_email/test_email.py /^ def _idempotent(self, msg, text, unixfrom=False):$/;" m class:TestIdempotent +_identified_mixin_init Lib/xml/dom/minidom.py /^ def _identified_mixin_init(self, publicId, systemId):$/;" m class:Identified +_identity Lib/lib2to3/refactor.py /^def _identity(obj):$/;" f +_idx Lib/idlelib/pyshell.py /^ _idx = 1 + len(list(itertools.takewhile($/;" v class:PyShell +_iexp Lib/_pydecimal.py /^def _iexp(x, M, L=8):$/;" f +_ifconfig_getnode Lib/uuid.py /^def _ifconfig_getnode():$/;" f +_iglob Lib/glob.py /^def _iglob(pathname, root_dir, dir_fd, recursive, dironly,$/;" f +_ignore Lib/test/test_shutil.py /^ def _ignore(src, names):$/;" f function:TestCopyTree.test_copytree_arg_types_of_ignore +_ignore_ Lib/test/test_enum.py /^ _ignore_ = 'Period i'$/;" v class:TestSpecial.test_ignore.Period +_ignore_all_flags Lib/_pydecimal.py /^ def _ignore_all_flags(self):$/;" m class:Context +_ignore_deprecated_imports Lib/test/support/import_helper.py /^def _ignore_deprecated_imports(ignore=True):$/;" f +_ignore_error Lib/pathlib.py /^def _ignore_error(exception):$/;" f +_ignore_flags Lib/_pydecimal.py /^ def _ignore_flags(self, *flags):$/;" m class:Context +_ignore_patterns Lib/shutil.py /^ def _ignore_patterns(path, names):$/;" f function:ignore_patterns +_ignore_test_patterns Lib/test/support/__init__.py /^_ignore_test_patterns = None$/;" v +_ilist Lib/test/test_xml_etree.py /^ def _ilist(self, elem, tag=None):$/;" m class:ElementIterTest +_ilog Lib/_pydecimal.py /^def _ilog(x, M, L = 8):$/;" f +_image Lib/turtle.py /^ def _image(self, filename):$/;" m class:TurtleScreenBase +_imp__fix_co_filename Python/clinic/import.c.h /^_imp__fix_co_filename(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_imp__fix_co_filename_impl Python/import.c /^_imp__fix_co_filename_impl(PyObject *module, PyCodeObject *code,$/;" f file: +_imp__frozen_module_names Python/clinic/import.c.h /^_imp__frozen_module_names(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_imp__frozen_module_names_impl Python/import.c /^_imp__frozen_module_names_impl(PyObject *module)$/;" f file: +_imp__override_frozen_modules_for_tests Python/clinic/import.c.h /^_imp__override_frozen_modules_for_tests(PyObject *module, PyObject *arg)$/;" f +_imp__override_frozen_modules_for_tests_impl Python/import.c /^_imp__override_frozen_modules_for_tests_impl(PyObject *module, int override)$/;" f file: +_imp__override_multi_interp_extensions_check Python/clinic/import.c.h /^_imp__override_multi_interp_extensions_check(PyObject *module, PyObject *arg)$/;" f +_imp__override_multi_interp_extensions_check_impl Python/import.c /^_imp__override_multi_interp_extensions_check_impl(PyObject *module,$/;" f file: +_imp_acquire_lock Python/clinic/import.c.h /^_imp_acquire_lock(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_imp_acquire_lock_impl Python/import.c /^_imp_acquire_lock_impl(PyObject *module)$/;" f file: +_imp_create_builtin Python/import.c /^_imp_create_builtin(PyObject *module, PyObject *spec)$/;" f file: +_imp_create_dynamic Python/clinic/import.c.h /^_imp_create_dynamic(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_imp_create_dynamic_impl Python/import.c /^_imp_create_dynamic_impl(PyObject *module, PyObject *spec, PyObject *file)$/;" f file: +_imp_exec_builtin Python/clinic/import.c.h /^_imp_exec_builtin(PyObject *module, PyObject *mod)$/;" f +_imp_exec_builtin_impl Python/import.c /^_imp_exec_builtin_impl(PyObject *module, PyObject *mod)$/;" f file: +_imp_exec_dynamic Python/clinic/import.c.h /^_imp_exec_dynamic(PyObject *module, PyObject *mod)$/;" f +_imp_exec_dynamic_impl Python/import.c /^_imp_exec_dynamic_impl(PyObject *module, PyObject *mod)$/;" f file: +_imp_extension_suffixes Python/clinic/import.c.h /^_imp_extension_suffixes(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_imp_extension_suffixes_impl Python/import.c /^_imp_extension_suffixes_impl(PyObject *module)$/;" f file: +_imp_find_frozen Python/clinic/import.c.h /^_imp_find_frozen(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_imp_find_frozen_impl Python/import.c /^_imp_find_frozen_impl(PyObject *module, PyObject *name, int withdata)$/;" f file: +_imp_get_frozen_object Python/clinic/import.c.h /^_imp_get_frozen_object(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_imp_get_frozen_object_impl Python/import.c /^_imp_get_frozen_object_impl(PyObject *module, PyObject *name,$/;" f file: +_imp_init_frozen Python/clinic/import.c.h /^_imp_init_frozen(PyObject *module, PyObject *arg)$/;" f +_imp_init_frozen_impl Python/import.c /^_imp_init_frozen_impl(PyObject *module, PyObject *name)$/;" f file: +_imp_is_builtin Python/clinic/import.c.h /^_imp_is_builtin(PyObject *module, PyObject *arg)$/;" f +_imp_is_builtin_impl Python/import.c /^_imp_is_builtin_impl(PyObject *module, PyObject *name)$/;" f file: +_imp_is_frozen Python/clinic/import.c.h /^_imp_is_frozen(PyObject *module, PyObject *arg)$/;" f +_imp_is_frozen_impl Python/import.c /^_imp_is_frozen_impl(PyObject *module, PyObject *name)$/;" f file: +_imp_is_frozen_package Python/clinic/import.c.h /^_imp_is_frozen_package(PyObject *module, PyObject *arg)$/;" f +_imp_is_frozen_package_impl Python/import.c /^_imp_is_frozen_package_impl(PyObject *module, PyObject *name)$/;" f file: +_imp_lock_held Python/clinic/import.c.h /^_imp_lock_held(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_imp_lock_held_impl Python/import.c /^_imp_lock_held_impl(PyObject *module)$/;" f file: +_imp_release_lock Python/clinic/import.c.h /^_imp_release_lock(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_imp_release_lock_impl Python/import.c /^_imp_release_lock_impl(PyObject *module)$/;" f file: +_imp_source_hash Python/clinic/import.c.h /^_imp_source_hash(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_imp_source_hash_impl Python/import.c /^_imp_source_hash_impl(PyObject *module, long key, Py_buffer *source)$/;" f file: +_implicit_encoding Lib/urllib/parse.py /^_implicit_encoding = 'ascii'$/;" v +_implicit_errors Lib/urllib/parse.py /^_implicit_errors = 'strict'$/;" v +_implied_dirs Lib/zipfile/_path/__init__.py /^ def _implied_dirs(names):$/;" m class:CompleteDirs +_import Lib/test/test_unittest/test_discovery.py /^ def _import(packagename, *args, **kwargs):$/;" f function:TestDiscovery.test_discovery_failed_discovery +_import_runtime_state Include/internal/pycore_import.h /^struct _import_runtime_state {$/;" s +_import_state Include/internal/pycore_import.h /^struct _import_state {$/;" s +_import_tail Lib/encodings/__init__.py /^_import_tail = ['*']$/;" v +_importing_zlib Lib/zipimport.py /^_importing_zlib = False$/;" v +_in_document Lib/xml/dom/minidom.py /^def _in_document(node):$/;" f +_in_weak_set Modules/_abc.c /^_in_weak_set(PyObject *set, PyObject *obj)$/;" f file: +_include Lib/xml/etree/ElementInclude.py /^def _include(elem, loader, base_url, max_depth, _parent_hrefs):$/;" f +_incompatible_extension_module_restrictions Lib/importlib/util.py /^class _incompatible_extension_module_restrictions:$/;" c +_incref Lib/multiprocessing/managers.py /^ def _incref(self):$/;" m class:BaseProxy +_increment_mock_call Lib/unittest/mock.py /^ def _increment_mock_call(self, \/, *args, **kwargs):$/;" m class:CallableMixin +_incrementudc Lib/turtle.py /^ def _incrementudc(self):$/;" m class:TurtleScreen +_ind Tools/c-analyzer/c_parser/parser/_regexes.py /^def _ind(text, level=1, edges='both'):$/;" f +_indent Lib/argparse.py /^ def _indent(self):$/;" m class:HelpFormatter +_indent Lib/doctest.py /^def _indent(s, indent=4):$/;" f +_indent_children Lib/xml/etree/ElementTree.py /^ def _indent_children(elem, level):$/;" f function:indent +_index_iter Lib/weakref.py /^ _index_iter = itertools.count()$/;" v class:finalize +_inet_paton Lib/ssl.py /^def _inet_paton(ipname):$/;" f +_infer_caller Lib/importlib/resources/_common.py /^def _infer_caller():$/;" f +_infer_return_type Lib/tempfile.py /^def _infer_return_type(*args):$/;" f +_init Lib/asyncio/queues.py /^ def _init(self, maxsize):$/;" m class:LifoQueue +_init Lib/asyncio/queues.py /^ def _init(self, maxsize):$/;" m class:PriorityQueue +_init Lib/asyncio/queues.py /^ def _init(self, maxsize):$/;" m class:Queue +_init Lib/queue.py /^ def _init(self, maxsize):$/;" m class:LifoQueue +_init Lib/queue.py /^ def _init(self, maxsize):$/;" m class:PriorityQueue +_init Lib/queue.py /^ def _init(self, maxsize):$/;" m class:Queue +_init Lib/zipfile/__init__.py /^ def _init(self):$/;" m class:LZMACompressor +_initArgParsers Lib/unittest/main.py /^ def _initArgParsers(self):$/;" m class:TestProgram +_initNamespaces Lib/xml/dom/expatbuilder.py /^ def _initNamespaces(self):$/;" m class:Namespaces +_init_board Lib/test/test_generators.py /^ def _init_board(self):$/;" m class:Knights +_init_categories Lib/locale.py /^ def _init_categories(categories=categories):$/;" f function:_print_locale +_init_compression Lib/aifc.py /^ def _init_compression(self):$/;" m class:Aifc_write +_init_config_vars Lib/sysconfig.py /^def _init_config_vars():$/;" f +_init_decrypter Lib/zipfile/__init__.py /^ def _init_decrypter(self):$/;" m class:ZipExtFile +_init_event_loop_policy Lib/asyncio/events.py /^def _init_event_loop_policy():$/;" f +_init_fn Lib/dataclasses.py /^def _init_fn(fields, std_fields, kw_only_fields, frozen, has_post_init,$/;" f +_init_global_state Objects/floatobject.c /^_init_global_state(void)$/;" f file: +_init_global_state Objects/unicodeobject.c /^_init_global_state(void)$/;" f file: +_init_hmac Lib/hmac.py /^ def _init_hmac(self, key, msg, digestmod):$/;" m class:HMAC +_init_main Include/cpython/initconfig.h /^ int _init_main;$/;" m struct:PyConfig +_init_module_attrs Lib/importlib/_bootstrap.py /^def _init_module_attrs(spec, module, *, override=False):$/;" f +_init_non_posix Lib/sysconfig.py /^def _init_non_posix(vars):$/;" f +_init_old Lib/hmac.py /^ def _init_old(self, key, msg, digestmod):$/;" m class:HMAC +_init_param Lib/dataclasses.py /^def _init_param(f):$/;" f +_init_parsing_state Lib/optparse.py /^ def _init_parsing_state(self):$/;" m class:OptionParser +_init_pathinfo Lib/site.py /^def _init_pathinfo():$/;" f +_init_pos_args Modules/_ctypes/_ctypes.c /^_init_pos_args(PyObject *self, PyTypeObject *type,$/;" f file: +_init_posix Lib/sysconfig.py /^def _init_posix(vars):$/;" f +_init_read Lib/gzip.py /^ def _init_read(self):$/;" m class:_GzipReader +_init_read_gz Lib/tarfile.py /^ def _init_read_gz(self):$/;" m class:_Stream +_init_regex Tools/c-analyzer/distutils/util.py /^def _init_regex():$/;" f +_init_timeout Lib/multiprocessing/connection.py /^def _init_timeout(timeout=CONNECTION_TIMEOUT):$/;" f +_init_tk_type Lib/idlelib/macosx.py /^def _init_tk_type():$/;" f +_init_watcher Lib/asyncio/unix_events.py /^ def _init_watcher(self):$/;" m class:_UnixDefaultEventLoopPolicy +_init_write Lib/gzip.py /^ def _init_write(self, filename):$/;" m class:GzipFile +_init_write_gz Lib/tarfile.py /^ def _init_write_gz(self, compresslevel):$/;" m class:_Stream +_initial_missing Lib/functools.py /^_initial_missing = object()$/;" v +_initial_thread Include/internal/pycore_interp.h /^ PyThreadState _initial_thread;$/;" m struct:_is +_initialized Include/internal/pycore_interp.h /^ int _initialized;$/;" m struct:_is +_initialized Include/internal/pycore_runtime.h /^ int _initialized;$/;" m struct:pyruntimestate +_initialized Lib/threading.py /^ _initialized = False$/;" v class:Thread +_initializer_failed Lib/concurrent/futures/thread.py /^ def _initializer_failed(self):$/;" m class:ThreadPoolExecutor +_inittab Include/cpython/import.h /^struct _inittab {$/;" s +_inject Lib/ctypes/macholib/dyld.py /^ def _inject(iterator=iterator, suffix=suffix):$/;" f function:dyld_image_suffix_search +_inline_cache_entries Lib/opcode.py /^_inline_cache_entries = [$/;" v +_inner Lib/test/test_importlib/fixtures.py /^ def _inner(self):$/;" f function:parameterize.wrapper +_inner Lib/unittest/mock.py /^ async def _inner(*args, **kw):$/;" f function:_patch_dict.decorate_async_callable +_inner Lib/unittest/mock.py /^ def _inner(*args, **kw):$/;" f function:_patch_dict.decorate_callable +_inner_done_callback Lib/asyncio/tasks.py /^ def _inner_done_callback(inner):$/;" f function:shield +_input_type_check Lib/base64.py /^def _input_type_check(s):$/;" f +_insert_printable_char Lib/curses/textpad.py /^ def _insert_printable_char(self, ch):$/;" m class:Textbox +_insert_thousands_sep Lib/_pydecimal.py /^def _insert_thousands_sep(digits, spec, min_width=1):$/;" f +_inside_empty_temp_dir Lib/test/test_tempfile.py /^def _inside_empty_temp_dir():$/;" f +_inst Lib/random.py /^_inst = Random()$/;" v +_install Lib/importlib/_bootstrap.py /^def _install(sys_module, _imp_module):$/;" f +_install Lib/importlib/_bootstrap_external.py /^def _install(_bootstrap_module):$/;" f +_installEnvironment PC/launcher2.c /^_installEnvironment(const wchar_t *command, const wchar_t *arguments)$/;" f +_installPage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PAGE _installPage;$/;" m class:PythonBootstrapperApplication file: +_install_external_importers Lib/importlib/_bootstrap.py /^def _install_external_importers():$/;" f +_install_handlers Lib/logging/config.py /^def _install_handlers(cp, formatters):$/;" f +_install_importlib Include/cpython/initconfig.h /^ int _install_importlib;$/;" m struct:PyConfig +_install_loggers Lib/logging/config.py /^def _install_loggers(cp, handlers, disable_existing):$/;" f +_install_message Lib/mailbox.py /^ def _install_message(self, message):$/;" m class:Babyl +_install_message Lib/mailbox.py /^ def _install_message(self, message):$/;" m class:_mboxMMDF +_instance Lib/test/test_call.py /^ _instance = _testcapi.MethInstance()$/;" v class:FastCallTests +_instance Lib/test/test_descr.py /^ class _instance(object):$/;" c function:ClassPropertiesAndMethods.test_metaclass +_instance_callable Lib/unittest/mock.py /^def _instance_callable(obj):$/;" f +_instantiate Lib/pickle.py /^ def _instantiate(self, klass, args):$/;" m class:_Unpickler +_int2digits Lib/_pylong.py /^def _int2digits(a, n):$/;" f +_int_to_enum Lib/signal.py /^def _int_to_enum(value, enum_klass):$/;" f +_integer_sqrt_of_frac_rto Lib/statistics.py /^def _integer_sqrt_of_frac_rto(n: int, m: int) -> int:$/;" f +_intenum_converter Lib/socket.py /^def _intenum_converter(value, enum_klass):$/;" f +_interact Lib/test/test_http_cookiejar.py /^def _interact(cookiejar, url, set_cookie_hdrs, hdr_name):$/;" f +_interleave_addrinfos Lib/asyncio/base_events.py /^def _interleave_addrinfos(addrinfos, first_address_family_count=1):$/;" f +_intern Lib/xml/dom/expatbuilder.py /^def _intern(builder, s):$/;" f +_internal_name_mapper_state Modules/_hashopenssl.c /^typedef struct _internal_name_mapper_state {$/;" s file: +_internal_poll Lib/subprocess.py /^ def _internal_poll(self, _deadstate=None, _waitpid=_waitpid,$/;" f function:Popen._on_error_fd_closer +_internal_poll Lib/subprocess.py /^ def _internal_poll(self, _deadstate=None,$/;" f function:Popen._on_error_fd_closer +_interpolate_some Lib/configparser.py /^ def _interpolate_some(self, parser, option, accum, rest, section, map,$/;" m class:BasicInterpolation +_interpolate_some Lib/configparser.py /^ def _interpolate_some(self, parser, option, accum, rest, section, map,$/;" m class:ExtendedInterpolation +_interpolation_replace Lib/configparser.py /^ def _interpolation_replace(match, parser):$/;" m class:LegacyInterpolation +_interpreters Lib/test/test_capi/test_misc.py /^ _interpreters = None$/;" v +_interpreters Lib/test/test_import/__init__.py /^ _interpreters = None$/;" v +_interpreters Lib/test/test_importlib/test_util.py /^ _interpreters = None$/;" v +_interpreters Lib/test/test_interpreters.py /^_interpreters = import_helper.import_module('_xxsubinterpreters')$/;" v +_interrupt_handler Lib/unittest/signals.py /^_interrupt_handler = None$/;" v +_intrinsic_1_descs Lib/opcode.py /^_intrinsic_1_descs = [$/;" v +_intrinsic_2_descs Lib/opcode.py /^_intrinsic_2_descs = [$/;" v +_invalid Lib/string.py /^ def _invalid(self, mo):$/;" m class:Template +_invalid_charrefs Lib/html/__init__.py /^_invalid_charrefs = {$/;" v +_invalid_codepoints Lib/html/__init__.py /^_invalid_codepoints = {$/;" v +_invalid_method Lib/idlelib/calltip.py /^_invalid_method = "invalid method signature"$/;" v +_inverted_registry Lib/copyreg.py /^_inverted_registry = {} # code -> key$/;" v +_invoke Lib/webbrowser.py /^ def _invoke(self, args, remote, autoraise, url=None):$/;" m class:UnixBrowser +_invoke_callbacks Lib/concurrent/futures/_base.py /^ def _invoke_callbacks(self):$/;" m class:Future +_invroot_init_approx Modules/_decimal/libmpdec/mpdecimal.c /^_invroot_init_approx(mpd_t *z, mpd_uint_t vhat)$/;" f file: +_io Lib/dbm/dumb.py /^ _io = _io # for _commit()$/;" v class:_Database +_io_BufferedRWPair___init__ Modules/_io/clinic/bufferedio.c.h /^_io_BufferedRWPair___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_BufferedRWPair___init___impl Modules/_io/bufferedio.c /^_io_BufferedRWPair___init___impl(rwpair *self, PyObject *reader,$/;" f file: +_io_BufferedRandom___init__ Modules/_io/clinic/bufferedio.c.h /^_io_BufferedRandom___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_BufferedRandom___init___impl Modules/_io/bufferedio.c /^_io_BufferedRandom___init___impl(buffered *self, PyObject *raw,$/;" f file: +_io_BufferedReader___init__ Modules/_io/clinic/bufferedio.c.h /^_io_BufferedReader___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_BufferedReader___init___impl Modules/_io/bufferedio.c /^_io_BufferedReader___init___impl(buffered *self, PyObject *raw,$/;" f file: +_io_BufferedWriter___init__ Modules/_io/clinic/bufferedio.c.h /^_io_BufferedWriter___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_BufferedWriter___init___impl Modules/_io/bufferedio.c /^_io_BufferedWriter___init___impl(buffered *self, PyObject *raw,$/;" f file: +_io_BufferedWriter_write Modules/_io/clinic/bufferedio.c.h /^_io_BufferedWriter_write(buffered *self, PyObject *arg)$/;" f +_io_BufferedWriter_write_impl Modules/_io/bufferedio.c /^_io_BufferedWriter_write_impl(buffered *self, Py_buffer *buffer)$/;" f file: +_io_BytesIO___init__ Modules/_io/clinic/bytesio.c.h /^_io_BytesIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_BytesIO___init___impl Modules/_io/bytesio.c /^_io_BytesIO___init___impl(bytesio *self, PyObject *initvalue)$/;" f file: +_io_BytesIO_close Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_close(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_close_impl Modules/_io/bytesio.c /^_io_BytesIO_close_impl(bytesio *self)$/;" f file: +_io_BytesIO_flush Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_flush(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_flush_impl Modules/_io/bytesio.c /^_io_BytesIO_flush_impl(bytesio *self)$/;" f file: +_io_BytesIO_getbuffer Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_getbuffer(bytesio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_BytesIO_getbuffer_impl Modules/_io/bytesio.c /^_io_BytesIO_getbuffer_impl(bytesio *self, PyTypeObject *cls)$/;" f file: +_io_BytesIO_getvalue Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_getvalue(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_getvalue_impl Modules/_io/bytesio.c /^_io_BytesIO_getvalue_impl(bytesio *self)$/;" f file: +_io_BytesIO_isatty Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_isatty(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_isatty_impl Modules/_io/bytesio.c /^_io_BytesIO_isatty_impl(bytesio *self)$/;" f file: +_io_BytesIO_read Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_read(bytesio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_BytesIO_read1 Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_read1(bytesio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_BytesIO_read1_impl Modules/_io/bytesio.c /^_io_BytesIO_read1_impl(bytesio *self, Py_ssize_t size)$/;" f file: +_io_BytesIO_read_impl Modules/_io/bytesio.c /^_io_BytesIO_read_impl(bytesio *self, Py_ssize_t size)$/;" f file: +_io_BytesIO_readable Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_readable(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_readable_impl Modules/_io/bytesio.c /^_io_BytesIO_readable_impl(bytesio *self)$/;" f file: +_io_BytesIO_readinto Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_readinto(bytesio *self, PyObject *arg)$/;" f +_io_BytesIO_readinto_impl Modules/_io/bytesio.c /^_io_BytesIO_readinto_impl(bytesio *self, Py_buffer *buffer)$/;" f file: +_io_BytesIO_readline Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_readline(bytesio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_BytesIO_readline_impl Modules/_io/bytesio.c /^_io_BytesIO_readline_impl(bytesio *self, Py_ssize_t size)$/;" f file: +_io_BytesIO_readlines Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_readlines(bytesio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_BytesIO_readlines_impl Modules/_io/bytesio.c /^_io_BytesIO_readlines_impl(bytesio *self, PyObject *arg)$/;" f file: +_io_BytesIO_seek Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_seek(bytesio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_BytesIO_seek_impl Modules/_io/bytesio.c /^_io_BytesIO_seek_impl(bytesio *self, Py_ssize_t pos, int whence)$/;" f file: +_io_BytesIO_seekable Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_seekable(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_seekable_impl Modules/_io/bytesio.c /^_io_BytesIO_seekable_impl(bytesio *self)$/;" f file: +_io_BytesIO_tell Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_tell(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_tell_impl Modules/_io/bytesio.c /^_io_BytesIO_tell_impl(bytesio *self)$/;" f file: +_io_BytesIO_truncate Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_truncate(bytesio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_BytesIO_truncate_impl Modules/_io/bytesio.c /^_io_BytesIO_truncate_impl(bytesio *self, Py_ssize_t size)$/;" f file: +_io_BytesIO_writable Modules/_io/clinic/bytesio.c.h /^_io_BytesIO_writable(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_BytesIO_writable_impl Modules/_io/bytesio.c /^_io_BytesIO_writable_impl(bytesio *self)$/;" f file: +_io_BytesIO_write Modules/_io/bytesio.c /^_io_BytesIO_write(bytesio *self, PyObject *b)$/;" f file: +_io_BytesIO_writelines Modules/_io/bytesio.c /^_io_BytesIO_writelines(bytesio *self, PyObject *lines)$/;" f file: +_io_FileIO___init__ Modules/_io/clinic/fileio.c.h /^_io_FileIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_FileIO___init___impl Modules/_io/fileio.c /^_io_FileIO___init___impl(fileio *self, PyObject *nameobj, const char *mode,$/;" f file: +_io_FileIO_close Modules/_io/clinic/fileio.c.h /^_io_FileIO_close(fileio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_FileIO_close_impl Modules/_io/fileio.c /^_io_FileIO_close_impl(fileio *self, PyTypeObject *cls)$/;" f file: +_io_FileIO_fileno Modules/_io/clinic/fileio.c.h /^_io_FileIO_fileno(fileio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_FileIO_fileno_impl Modules/_io/fileio.c /^_io_FileIO_fileno_impl(fileio *self)$/;" f file: +_io_FileIO_isatty Modules/_io/clinic/fileio.c.h /^_io_FileIO_isatty(fileio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_FileIO_isatty_impl Modules/_io/fileio.c /^_io_FileIO_isatty_impl(fileio *self)$/;" f file: +_io_FileIO_read Modules/_io/clinic/fileio.c.h /^_io_FileIO_read(fileio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_FileIO_read_impl Modules/_io/fileio.c /^_io_FileIO_read_impl(fileio *self, PyTypeObject *cls, Py_ssize_t size)$/;" f file: +_io_FileIO_readable Modules/_io/clinic/fileio.c.h /^_io_FileIO_readable(fileio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_FileIO_readable_impl Modules/_io/fileio.c /^_io_FileIO_readable_impl(fileio *self)$/;" f file: +_io_FileIO_readall Modules/_io/clinic/fileio.c.h /^_io_FileIO_readall(fileio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_FileIO_readall_impl Modules/_io/fileio.c /^_io_FileIO_readall_impl(fileio *self)$/;" f file: +_io_FileIO_readinto Modules/_io/clinic/fileio.c.h /^_io_FileIO_readinto(fileio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_FileIO_readinto_impl Modules/_io/fileio.c /^_io_FileIO_readinto_impl(fileio *self, PyTypeObject *cls, Py_buffer *buffer)$/;" f file: +_io_FileIO_seek Modules/_io/clinic/fileio.c.h /^_io_FileIO_seek(fileio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_FileIO_seek_impl Modules/_io/fileio.c /^_io_FileIO_seek_impl(fileio *self, PyObject *pos, int whence)$/;" f file: +_io_FileIO_seekable Modules/_io/clinic/fileio.c.h /^_io_FileIO_seekable(fileio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_FileIO_seekable_impl Modules/_io/fileio.c /^_io_FileIO_seekable_impl(fileio *self)$/;" f file: +_io_FileIO_tell Modules/_io/clinic/fileio.c.h /^_io_FileIO_tell(fileio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_FileIO_tell_impl Modules/_io/fileio.c /^_io_FileIO_tell_impl(fileio *self)$/;" f file: +_io_FileIO_truncate Modules/_io/clinic/fileio.c.h /^_io_FileIO_truncate(fileio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_FileIO_truncate_impl Modules/_io/fileio.c /^_io_FileIO_truncate_impl(fileio *self, PyTypeObject *cls, PyObject *posobj)$/;" f file: +_io_FileIO_writable Modules/_io/clinic/fileio.c.h /^_io_FileIO_writable(fileio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_FileIO_writable_impl Modules/_io/fileio.c /^_io_FileIO_writable_impl(fileio *self)$/;" f file: +_io_FileIO_write Modules/_io/clinic/fileio.c.h /^_io_FileIO_write(fileio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_FileIO_write_impl Modules/_io/fileio.c /^_io_FileIO_write_impl(fileio *self, PyTypeObject *cls, Py_buffer *b)$/;" f file: +_io_IncrementalNewlineDecoder___init__ Modules/_io/clinic/textio.c.h /^_io_IncrementalNewlineDecoder___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_IncrementalNewlineDecoder___init___impl Modules/_io/textio.c /^_io_IncrementalNewlineDecoder___init___impl(nldecoder_object *self,$/;" f file: +_io_IncrementalNewlineDecoder_decode Modules/_io/clinic/textio.c.h /^_io_IncrementalNewlineDecoder_decode(nldecoder_object *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_IncrementalNewlineDecoder_decode_impl Modules/_io/textio.c /^_io_IncrementalNewlineDecoder_decode_impl(nldecoder_object *self,$/;" f file: +_io_IncrementalNewlineDecoder_getstate Modules/_io/clinic/textio.c.h /^_io_IncrementalNewlineDecoder_getstate(nldecoder_object *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_IncrementalNewlineDecoder_getstate_impl Modules/_io/textio.c /^_io_IncrementalNewlineDecoder_getstate_impl(nldecoder_object *self)$/;" f file: +_io_IncrementalNewlineDecoder_reset Modules/_io/clinic/textio.c.h /^_io_IncrementalNewlineDecoder_reset(nldecoder_object *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_IncrementalNewlineDecoder_reset_impl Modules/_io/textio.c /^_io_IncrementalNewlineDecoder_reset_impl(nldecoder_object *self)$/;" f file: +_io_IncrementalNewlineDecoder_setstate Modules/_io/textio.c /^_io_IncrementalNewlineDecoder_setstate(nldecoder_object *self,$/;" f file: +_io_StringIO___init__ Modules/_io/clinic/stringio.c.h /^_io_StringIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_StringIO___init___impl Modules/_io/stringio.c /^_io_StringIO___init___impl(stringio *self, PyObject *value,$/;" f file: +_io_StringIO_close Modules/_io/clinic/stringio.c.h /^_io_StringIO_close(stringio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_StringIO_close_impl Modules/_io/stringio.c /^_io_StringIO_close_impl(stringio *self)$/;" f file: +_io_StringIO_getvalue Modules/_io/clinic/stringio.c.h /^_io_StringIO_getvalue(stringio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_StringIO_getvalue_impl Modules/_io/stringio.c /^_io_StringIO_getvalue_impl(stringio *self)$/;" f file: +_io_StringIO_read Modules/_io/clinic/stringio.c.h /^_io_StringIO_read(stringio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_StringIO_read_impl Modules/_io/stringio.c /^_io_StringIO_read_impl(stringio *self, Py_ssize_t size)$/;" f file: +_io_StringIO_readable Modules/_io/clinic/stringio.c.h /^_io_StringIO_readable(stringio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_StringIO_readable_impl Modules/_io/stringio.c /^_io_StringIO_readable_impl(stringio *self)$/;" f file: +_io_StringIO_readline Modules/_io/clinic/stringio.c.h /^_io_StringIO_readline(stringio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_StringIO_readline_impl Modules/_io/stringio.c /^_io_StringIO_readline_impl(stringio *self, Py_ssize_t size)$/;" f file: +_io_StringIO_seek Modules/_io/clinic/stringio.c.h /^_io_StringIO_seek(stringio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_StringIO_seek_impl Modules/_io/stringio.c /^_io_StringIO_seek_impl(stringio *self, Py_ssize_t pos, int whence)$/;" f file: +_io_StringIO_seekable Modules/_io/clinic/stringio.c.h /^_io_StringIO_seekable(stringio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_StringIO_seekable_impl Modules/_io/stringio.c /^_io_StringIO_seekable_impl(stringio *self)$/;" f file: +_io_StringIO_tell Modules/_io/clinic/stringio.c.h /^_io_StringIO_tell(stringio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_StringIO_tell_impl Modules/_io/stringio.c /^_io_StringIO_tell_impl(stringio *self)$/;" f file: +_io_StringIO_truncate Modules/_io/clinic/stringio.c.h /^_io_StringIO_truncate(stringio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_StringIO_truncate_impl Modules/_io/stringio.c /^_io_StringIO_truncate_impl(stringio *self, Py_ssize_t size)$/;" f file: +_io_StringIO_writable Modules/_io/clinic/stringio.c.h /^_io_StringIO_writable(stringio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_StringIO_writable_impl Modules/_io/stringio.c /^_io_StringIO_writable_impl(stringio *self)$/;" f file: +_io_StringIO_write Modules/_io/stringio.c /^_io_StringIO_write(stringio *self, PyObject *obj)$/;" f file: +_io_TextIOWrapper___init__ Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io_TextIOWrapper___init___impl Modules/_io/textio.c /^_io_TextIOWrapper___init___impl(textio *self, PyObject *buffer,$/;" f file: +_io_TextIOWrapper_close Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_close(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_close_impl Modules/_io/textio.c /^_io_TextIOWrapper_close_impl(textio *self)$/;" f file: +_io_TextIOWrapper_detach Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_detach(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_detach_impl Modules/_io/textio.c /^_io_TextIOWrapper_detach_impl(textio *self)$/;" f file: +_io_TextIOWrapper_fileno Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_fileno(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_fileno_impl Modules/_io/textio.c /^_io_TextIOWrapper_fileno_impl(textio *self)$/;" f file: +_io_TextIOWrapper_flush Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_flush(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_flush_impl Modules/_io/textio.c /^_io_TextIOWrapper_flush_impl(textio *self)$/;" f file: +_io_TextIOWrapper_isatty Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_isatty(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_isatty_impl Modules/_io/textio.c /^_io_TextIOWrapper_isatty_impl(textio *self)$/;" f file: +_io_TextIOWrapper_read Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_read(textio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_TextIOWrapper_read_impl Modules/_io/textio.c /^_io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n)$/;" f file: +_io_TextIOWrapper_readable Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_readable(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_readable_impl Modules/_io/textio.c /^_io_TextIOWrapper_readable_impl(textio *self)$/;" f file: +_io_TextIOWrapper_readline Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_readline(textio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_TextIOWrapper_readline_impl Modules/_io/textio.c /^_io_TextIOWrapper_readline_impl(textio *self, Py_ssize_t size)$/;" f file: +_io_TextIOWrapper_reconfigure Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_reconfigure(textio *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_TextIOWrapper_reconfigure_impl Modules/_io/textio.c /^_io_TextIOWrapper_reconfigure_impl(textio *self, PyObject *encoding,$/;" f file: +_io_TextIOWrapper_seek Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_seek(textio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_TextIOWrapper_seek_impl Modules/_io/textio.c /^_io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence)$/;" f file: +_io_TextIOWrapper_seekable Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_seekable(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_seekable_impl Modules/_io/textio.c /^_io_TextIOWrapper_seekable_impl(textio *self)$/;" f file: +_io_TextIOWrapper_tell Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_tell(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_tell_impl Modules/_io/textio.c /^_io_TextIOWrapper_tell_impl(textio *self)$/;" f file: +_io_TextIOWrapper_truncate Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_truncate(textio *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_TextIOWrapper_truncate_impl Modules/_io/textio.c /^_io_TextIOWrapper_truncate_impl(textio *self, PyObject *pos)$/;" f file: +_io_TextIOWrapper_writable Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_writable(textio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io_TextIOWrapper_writable_impl Modules/_io/textio.c /^_io_TextIOWrapper_writable_impl(textio *self)$/;" f file: +_io_TextIOWrapper_write Modules/_io/clinic/textio.c.h /^_io_TextIOWrapper_write(textio *self, PyObject *arg)$/;" f +_io_TextIOWrapper_write_impl Modules/_io/textio.c /^_io_TextIOWrapper_write_impl(textio *self, PyObject *text)$/;" f file: +_io__BufferedIOBase_detach Modules/_io/clinic/bufferedio.c.h /^_io__BufferedIOBase_detach(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__BufferedIOBase_detach_impl Modules/_io/bufferedio.c /^_io__BufferedIOBase_detach_impl(PyObject *self, PyTypeObject *cls)$/;" f file: +_io__BufferedIOBase_read Modules/_io/clinic/bufferedio.c.h /^_io__BufferedIOBase_read(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__BufferedIOBase_read1 Modules/_io/clinic/bufferedio.c.h /^_io__BufferedIOBase_read1(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__BufferedIOBase_read1_impl Modules/_io/bufferedio.c /^_io__BufferedIOBase_read1_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__BufferedIOBase_read_impl Modules/_io/bufferedio.c /^_io__BufferedIOBase_read_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__BufferedIOBase_readinto Modules/_io/clinic/bufferedio.c.h /^_io__BufferedIOBase_readinto(PyObject *self, PyObject *arg)$/;" f +_io__BufferedIOBase_readinto1 Modules/_io/clinic/bufferedio.c.h /^_io__BufferedIOBase_readinto1(PyObject *self, PyObject *arg)$/;" f +_io__BufferedIOBase_readinto1_impl Modules/_io/bufferedio.c /^_io__BufferedIOBase_readinto1_impl(PyObject *self, Py_buffer *buffer)$/;" f file: +_io__BufferedIOBase_readinto_impl Modules/_io/bufferedio.c /^_io__BufferedIOBase_readinto_impl(PyObject *self, Py_buffer *buffer)$/;" f file: +_io__BufferedIOBase_write Modules/_io/clinic/bufferedio.c.h /^_io__BufferedIOBase_write(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__BufferedIOBase_write_impl Modules/_io/bufferedio.c /^_io__BufferedIOBase_write_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__Buffered___sizeof__ Modules/_io/clinic/bufferedio.c.h /^_io__Buffered___sizeof__(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered___sizeof___impl Modules/_io/bufferedio.c /^_io__Buffered___sizeof___impl(buffered *self)$/;" f file: +_io__Buffered__dealloc_warn Modules/_io/bufferedio.c /^_io__Buffered__dealloc_warn(buffered *self, PyObject *source)$/;" f file: +_io__Buffered_close Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_close(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_close_impl Modules/_io/bufferedio.c /^_io__Buffered_close_impl(buffered *self)$/;" f file: +_io__Buffered_detach Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_detach(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_detach_impl Modules/_io/bufferedio.c /^_io__Buffered_detach_impl(buffered *self)$/;" f file: +_io__Buffered_fileno Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_fileno(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_fileno_impl Modules/_io/bufferedio.c /^_io__Buffered_fileno_impl(buffered *self)$/;" f file: +_io__Buffered_flush Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_flush(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_flush_impl Modules/_io/bufferedio.c /^_io__Buffered_flush_impl(buffered *self)$/;" f file: +_io__Buffered_isatty Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_isatty(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_isatty_impl Modules/_io/bufferedio.c /^_io__Buffered_isatty_impl(buffered *self)$/;" f file: +_io__Buffered_peek Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_peek(buffered *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__Buffered_peek_impl Modules/_io/bufferedio.c /^_io__Buffered_peek_impl(buffered *self, Py_ssize_t size)$/;" f file: +_io__Buffered_read Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_read(buffered *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__Buffered_read1 Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_read1(buffered *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__Buffered_read1_impl Modules/_io/bufferedio.c /^_io__Buffered_read1_impl(buffered *self, Py_ssize_t n)$/;" f file: +_io__Buffered_read_impl Modules/_io/bufferedio.c /^_io__Buffered_read_impl(buffered *self, Py_ssize_t n)$/;" f file: +_io__Buffered_readable Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_readable(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_readable_impl Modules/_io/bufferedio.c /^_io__Buffered_readable_impl(buffered *self)$/;" f file: +_io__Buffered_readinto Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_readinto(buffered *self, PyObject *arg)$/;" f +_io__Buffered_readinto1 Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_readinto1(buffered *self, PyObject *arg)$/;" f +_io__Buffered_readinto1_impl Modules/_io/bufferedio.c /^_io__Buffered_readinto1_impl(buffered *self, Py_buffer *buffer)$/;" f file: +_io__Buffered_readinto_impl Modules/_io/bufferedio.c /^_io__Buffered_readinto_impl(buffered *self, Py_buffer *buffer)$/;" f file: +_io__Buffered_readline Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_readline(buffered *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__Buffered_readline_impl Modules/_io/bufferedio.c /^_io__Buffered_readline_impl(buffered *self, Py_ssize_t size)$/;" f file: +_io__Buffered_seek Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_seek(buffered *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__Buffered_seek_impl Modules/_io/bufferedio.c /^_io__Buffered_seek_impl(buffered *self, PyObject *targetobj, int whence)$/;" f file: +_io__Buffered_seekable Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_seekable(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_seekable_impl Modules/_io/bufferedio.c /^_io__Buffered_seekable_impl(buffered *self)$/;" f file: +_io__Buffered_simple_flush Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_simple_flush(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_simple_flush_impl Modules/_io/bufferedio.c /^_io__Buffered_simple_flush_impl(buffered *self)$/;" f file: +_io__Buffered_tell Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_tell(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_tell_impl Modules/_io/bufferedio.c /^_io__Buffered_tell_impl(buffered *self)$/;" f file: +_io__Buffered_truncate Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_truncate(buffered *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__Buffered_truncate_impl Modules/_io/bufferedio.c /^_io__Buffered_truncate_impl(buffered *self, PyTypeObject *cls, PyObject *pos)$/;" f file: +_io__Buffered_writable Modules/_io/clinic/bufferedio.c.h /^_io__Buffered_writable(buffered *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__Buffered_writable_impl Modules/_io/bufferedio.c /^_io__Buffered_writable_impl(buffered *self)$/;" f file: +_io__IOBase_close Modules/_io/clinic/iobase.c.h /^_io__IOBase_close(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__IOBase_close_impl Modules/_io/iobase.c /^_io__IOBase_close_impl(PyObject *self)$/;" f file: +_io__IOBase_fileno Modules/_io/clinic/iobase.c.h /^_io__IOBase_fileno(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__IOBase_fileno_impl Modules/_io/iobase.c /^_io__IOBase_fileno_impl(PyObject *self, PyTypeObject *cls)$/;" f file: +_io__IOBase_flush Modules/_io/clinic/iobase.c.h /^_io__IOBase_flush(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__IOBase_flush_impl Modules/_io/iobase.c /^_io__IOBase_flush_impl(PyObject *self)$/;" f file: +_io__IOBase_isatty Modules/_io/clinic/iobase.c.h /^_io__IOBase_isatty(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__IOBase_isatty_impl Modules/_io/iobase.c /^_io__IOBase_isatty_impl(PyObject *self)$/;" f file: +_io__IOBase_readable Modules/_io/clinic/iobase.c.h /^_io__IOBase_readable(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__IOBase_readable_impl Modules/_io/iobase.c /^_io__IOBase_readable_impl(PyObject *self)$/;" f file: +_io__IOBase_readline Modules/_io/clinic/iobase.c.h /^_io__IOBase_readline(PyObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__IOBase_readline_impl Modules/_io/iobase.c /^_io__IOBase_readline_impl(PyObject *self, Py_ssize_t limit)$/;" f file: +_io__IOBase_readlines Modules/_io/clinic/iobase.c.h /^_io__IOBase_readlines(PyObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__IOBase_readlines_impl Modules/_io/iobase.c /^_io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint)$/;" f file: +_io__IOBase_seek Modules/_io/clinic/iobase.c.h /^_io__IOBase_seek(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__IOBase_seek_impl Modules/_io/iobase.c /^_io__IOBase_seek_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__IOBase_seekable Modules/_io/clinic/iobase.c.h /^_io__IOBase_seekable(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__IOBase_seekable_impl Modules/_io/iobase.c /^_io__IOBase_seekable_impl(PyObject *self)$/;" f file: +_io__IOBase_tell Modules/_io/clinic/iobase.c.h /^_io__IOBase_tell(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__IOBase_tell_impl Modules/_io/iobase.c /^_io__IOBase_tell_impl(PyObject *self)$/;" f file: +_io__IOBase_truncate Modules/_io/clinic/iobase.c.h /^_io__IOBase_truncate(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__IOBase_truncate_impl Modules/_io/iobase.c /^_io__IOBase_truncate_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__IOBase_writable Modules/_io/clinic/iobase.c.h /^_io__IOBase_writable(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__IOBase_writable_impl Modules/_io/iobase.c /^_io__IOBase_writable_impl(PyObject *self)$/;" f file: +_io__IOBase_writelines Modules/_io/iobase.c /^_io__IOBase_writelines(PyObject *self, PyObject *lines)$/;" f file: +_io__RawIOBase_read Modules/_io/clinic/iobase.c.h /^_io__RawIOBase_read(PyObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io__RawIOBase_read_impl Modules/_io/iobase.c /^_io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n)$/;" f file: +_io__RawIOBase_readall Modules/_io/clinic/iobase.c.h /^_io__RawIOBase_readall(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__RawIOBase_readall_impl Modules/_io/iobase.c /^_io__RawIOBase_readall_impl(PyObject *self)$/;" f file: +_io__TextIOBase_detach Modules/_io/clinic/textio.c.h /^_io__TextIOBase_detach(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__TextIOBase_detach_impl Modules/_io/textio.c /^_io__TextIOBase_detach_impl(PyObject *self, PyTypeObject *cls)$/;" f file: +_io__TextIOBase_read Modules/_io/clinic/textio.c.h /^_io__TextIOBase_read(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__TextIOBase_read_impl Modules/_io/textio.c /^_io__TextIOBase_read_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__TextIOBase_readline Modules/_io/clinic/textio.c.h /^_io__TextIOBase_readline(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__TextIOBase_readline_impl Modules/_io/textio.c /^_io__TextIOBase_readline_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__TextIOBase_write Modules/_io/clinic/textio.c.h /^_io__TextIOBase_write(PyObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__TextIOBase_write_impl Modules/_io/textio.c /^_io__TextIOBase_write_impl(PyObject *self, PyTypeObject *cls,$/;" f file: +_io__WindowsConsoleIO___init__ Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_io__WindowsConsoleIO___init___impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO___init___impl(winconsoleio *self, PyObject *nameobj,$/;" f file: +_io__WindowsConsoleIO_close Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_close(winconsoleio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__WindowsConsoleIO_close_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_close_impl(winconsoleio *self, PyTypeObject *cls)$/;" f file: +_io__WindowsConsoleIO_fileno Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_fileno(winconsoleio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__WindowsConsoleIO_fileno_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_fileno_impl(winconsoleio *self)$/;" f file: +_io__WindowsConsoleIO_isatty Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_isatty(winconsoleio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__WindowsConsoleIO_isatty_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_isatty_impl(winconsoleio *self)$/;" f file: +_io__WindowsConsoleIO_read Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_read(winconsoleio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__WindowsConsoleIO_read_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_read_impl(winconsoleio *self, PyTypeObject *cls,$/;" f file: +_io__WindowsConsoleIO_readable Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_readable(winconsoleio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__WindowsConsoleIO_readable_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_readable_impl(winconsoleio *self)$/;" f file: +_io__WindowsConsoleIO_readall Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_readall(winconsoleio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__WindowsConsoleIO_readall_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_readall_impl(winconsoleio *self)$/;" f file: +_io__WindowsConsoleIO_readinto Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_readinto(winconsoleio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__WindowsConsoleIO_readinto_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_readinto_impl(winconsoleio *self, PyTypeObject *cls,$/;" f file: +_io__WindowsConsoleIO_writable Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_writable(winconsoleio *self, PyObject *Py_UNUSED(ignored))$/;" f +_io__WindowsConsoleIO_writable_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_writable_impl(winconsoleio *self)$/;" f file: +_io__WindowsConsoleIO_write Modules/_io/clinic/winconsoleio.c.h /^_io__WindowsConsoleIO_write(winconsoleio *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io__WindowsConsoleIO_write_impl Modules/_io/winconsoleio.c /^_io__WindowsConsoleIO_write_impl(winconsoleio *self, PyTypeObject *cls,$/;" f file: +_io_binding Lib/idlelib/iomenu.py /^def _io_binding(parent): # htest #$/;" f +_io_binding_spec Lib/idlelib/idle_test/htest.py /^_io_binding_spec = {$/;" v +_io_open Modules/_io/clinic/_iomodule.c.h /^_io_open(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_open_code Modules/_io/clinic/_iomodule.c.h /^_io_open_code(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_io_open_code_impl Modules/_io/_iomodule.c /^_io_open_code_impl(PyObject *module, PyObject *path)$/;" f file: +_io_open_impl Modules/_io/_iomodule.c /^_io_open_impl(PyObject *module, PyObject *file, const char *mode,$/;" f file: +_io_state Modules/_io/_iomodule.h /^struct _io_state {$/;" s +_io_text_encoding Modules/_io/clinic/_iomodule.c.h /^_io_text_encoding(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_io_text_encoding_impl Modules/_io/_iomodule.c /^_io_text_encoding_impl(PyObject *module, PyObject *encoding, int stacklevel)$/;" f file: +_io_wrapper Lib/importlib/resources/_adapters.py /^def _io_wrapper(file, mode='r', *args, **kwargs):$/;" f +_ip_getnode Lib/uuid.py /^def _ip_getnode():$/;" f +_ip_int_from_prefix Lib/ipaddress.py /^ def _ip_int_from_prefix(cls, prefixlen):$/;" m class:_IPAddressBase +_ip_int_from_string Lib/ipaddress.py /^ def _ip_int_from_string(cls, ip_str):$/;" m class:_BaseV4 +_ip_int_from_string Lib/ipaddress.py /^ def _ip_int_from_string(cls, ip_str):$/;" m class:_BaseV6 +_ipaddr_info Lib/asyncio/base_events.py /^def _ipaddr_info(host, port, family, type, proto, flowinfo=0, scopeid=0):$/;" f +_ipaddress_match Lib/ssl.py /^def _ipaddress_match(cert_ipaddress, host_ip):$/;" f +_ipconfig_getnode Lib/uuid.py /^def _ipconfig_getnode():$/;" f +_irepeat Lib/lib2to3/fixes/fix_operator.py /^ def _irepeat(self, node, results):$/;" m class:FixOperator +_is Include/internal/pycore_interp.h /^struct _is {$/;" s +_is32Bit PC/launcher2.c /^_is32Bit(const EnvironmentInfo *env)$/;" f +_isCallable Lib/lib2to3/fixes/fix_operator.py /^ def _isCallable(self, node, results):$/;" m class:FixOperator +_isLegacyVersion PC/launcher2.c /^_isLegacyVersion(EnvironmentInfo *env)$/;" f +_isMappingType Lib/lib2to3/fixes/fix_operator.py /^ def _isMappingType(self, node, results):$/;" m class:FixOperator +_isNumberType Lib/lib2to3/fixes/fix_operator.py /^ def _isNumberType(self, node, results):$/;" m class:FixOperator +_isSequenceType Lib/lib2to3/fixes/fix_operator.py /^ def _isSequenceType(self, node, results):$/;" m class:FixOperator +_is_absW Modules/posixmodule.c /^_is_absW(const WCHAR *path)$/;" f file: +_is_ambiguous Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ def _is_ambiguous(self, dt):$/;" m class:PythonCConsistencyTest +_is_android_emulator Lib/test/support/__init__.py /^_is_android_emulator = None$/;" v +_is_ascii_digit Lib/_pydatetime.py /^def _is_ascii_digit(c):$/;" f +_is_ast_node Lib/test/test_ast.py /^ def _is_ast_node(self, name, node):$/;" m class:AST_Tests +_is_async_func Lib/unittest/mock.py /^def _is_async_func(func):$/;" f +_is_async_obj Lib/unittest/mock.py /^def _is_async_obj(obj):$/;" f +_is_backward_jump Lib/dis.py /^def _is_backward_jump(op):$/;" f +_is_base_error Lib/asyncio/taskgroups.py /^ def _is_base_error(self, exc: BaseException) -> bool:$/;" m class:TaskGroup +_is_bound_method Lib/pydoc.py /^def _is_bound_method(fn):$/;" f +_is_case_sensitive Lib/pathlib.py /^def _is_case_sensitive(flavour):$/;" f +_is_child Lib/zipfile/_path/__init__.py /^ def _is_child(self, path):$/;" m class:Path +_is_classvar Lib/dataclasses.py /^def _is_classvar(a_type, typing):$/;" f +_is_coroutine Lib/asyncio/coroutines.py /^_is_coroutine = object()$/;" v +_is_coroutine Modules/_asynciomodule.c /^_is_coroutine(asyncio_state *state, PyObject *coro)$/;" f file: +_is_coroutine_marker Lib/inspect.py /^_is_coroutine_marker = object()$/;" v +_is_dataclass_instance Lib/dataclasses.py /^def _is_dataclass_instance(obj):$/;" f +_is_debug_mode Lib/asyncio/coroutines.py /^def _is_debug_mode():$/;" f +_is_descriptor Lib/enum.py /^def _is_descriptor(obj):$/;" f +_is_dir Lib/zipimport.py /^def _is_dir(self, path):$/;" f +_is_dunder Lib/enum.py /^def _is_dunder(name):$/;" f +_is_dunder Lib/typing.py /^def _is_dunder(attr):$/;" f +_is_elf Lib/ctypes/util.py /^ def _is_elf(filename):$/;" f +_is_end_of_source Parser/pegen.c /^_is_end_of_source(Parser *p) {$/;" f file: +_is_exception Lib/unittest/mock.py /^def _is_exception(obj):$/;" f +_is_excluded Tools/c-analyzer/c_common/fsutil.py /^def _is_excluded(filename, exclude, include):$/;" f +_is_fd_assigned Lib/test/_test_multiprocessing.py /^ def _is_fd_assigned(cls, fd):$/;" m class:_TestConnection +_is_fd_in_sorted_fd_sequence Modules/_posixsubprocess.c /^_is_fd_in_sorted_fd_sequence(int fd, int *fd_sequence,$/;" f file: +_is_fd_valid Modules/ossaudiodev.c /^static int _is_fd_valid(int fd)$/;" f file: +_is_fdescfs_mounted_on_dev_fd Modules/_posixsubprocess.c /^_is_fdescfs_mounted_on_dev_fd(void)$/;" f file: +_is_filename_to_skip Lib/warnings.py /^def _is_filename_to_skip(filename, skip_file_prefixes):$/;" f +_is_fmt_binary Lib/plistlib.py /^def _is_fmt_binary(header):$/;" f +_is_fmt_xml Lib/plistlib.py /^def _is_fmt_xml(header):$/;" f +_is_full_match_test Lib/test/support/__init__.py /^def _is_full_match_test(pattern):$/;" f +_is_funcptr Tools/c-analyzer/c_parser/match.py /^def _is_funcptr(declstr):$/;" f +_is_gui_available Lib/test/support/__init__.py /^def _is_gui_available():$/;" f +_is_id Lib/xml/dom/minidom.py /^ _is_id = False$/;" v class:Attr +_is_illegal_header_value Lib/http/client.py /^_is_illegal_header_value = re.compile(rb'\\n(?![ \\t])|\\r(?![ \\t\\n])').search$/;" v +_is_immutable Lib/shutil.py /^def _is_immutable(src):$/;" f +_is_import_binding Lib/lib2to3/fixer_util.py /^def _is_import_binding(node, name, package=None):$/;" f +_is_initialized Include/cpython/pythread.h /^ int _is_initialized;$/;" m struct:_Py_tss_t +_is_initvar Lib/dataclasses.py /^def _is_initvar(a_type, dataclasses):$/;" f +_is_instance_mock Lib/unittest/mock.py /^def _is_instance_mock(obj):$/;" f +_is_internal_class Lib/enum.py /^def _is_internal_class(cls_name, obj):$/;" f +_is_internal_filename Lib/warnings.py /^def _is_internal_filename(filename):$/;" f +_is_internal_frame Lib/logging/__init__.py /^def _is_internal_frame(frame):$/;" f +_is_internal_frame Lib/warnings.py /^def _is_internal_frame(frame):$/;" f +_is_ipv6_enabled Lib/test/support/socket_helper.py /^def _is_ipv6_enabled():$/;" f +_is_kw_only Lib/dataclasses.py /^def _is_kw_only(a_type, dataclasses):$/;" f +_is_kwlist Tools/c-analyzer/cpython/_analyzer.py /^def _is_kwlist(decl):$/;" f +_is_leap Lib/_pydatetime.py /^def _is_leap(year):$/;" f +_is_legal_capsule Objects/capsule.c /^_is_legal_capsule(PyCapsule *capsule, const char *invalid_capsule)$/;" f file: +_is_legal_header_name Lib/http/client.py /^_is_legal_header_name = re.compile(rb'[^:\\s][^:\\r\\n]*').fullmatch$/;" v +_is_legal_key Lib/http/cookies.py /^_is_legal_key = re.compile('[%s]+' % re.escape(_LegalChars)).fullmatch$/;" v +_is_list Lib/unittest/mock.py /^def _is_list(obj):$/;" f +_is_magic Lib/unittest/mock.py /^def _is_magic(name):$/;" f +_is_multipart_msg Lib/test/test_email/test_message.py /^ def _is_multipart_msg(msg):$/;" f function:TestEmailMessageBase.message_as_iter_parts +_is_owned Lib/threading.py /^ def _is_owned(self):$/;" m class:Condition +_is_owned Lib/threading.py /^ def _is_owned(self):$/;" m class:_RLock +_is_package Lib/test/test_importlib/test_spec.py /^ def _is_package(self, name):$/;" m class:TestLoader +_is_param_expr Lib/_collections_abc.py /^def _is_param_expr(obj):$/;" f +_is_param_expr Lib/typing.py /^def _is_param_expr(arg):$/;" f +_is_present_dir Lib/importlib/resources/_common.py /^def _is_present_dir(path: Traversable) -> bool:$/;" f +_is_private Lib/enum.py /^def _is_private(cls_name, name):$/;" f +_is_protocol Lib/typing.py /^ _is_protocol = True$/;" v class:Protocol +_is_public Tools/c-analyzer/c_parser/info.py /^ def _is_public(cls, decl):$/;" m class:Declarations +_is_python_build Include/cpython/initconfig.h /^ int _is_python_build;$/;" m struct:PyConfig +_is_python_build Python/pathconfig.c /^ int _is_python_build;$/;" m struct:_PyPathConfig file: +_is_relevant_tb_level Lib/unittest/result.py /^ def _is_relevant_tb_level(self, tb):$/;" m class:TestResult +_is_request Lib/wsgiref/handlers.py /^_is_request = {$/;" v +_is_resource_tracker_reused Lib/test/_test_multiprocessing.py /^ def _is_resource_tracker_reused(conn, pid):$/;" m class:TestResourceTracker +_is_routine Lib/doctest.py /^ def _is_routine(self, obj):$/;" m class:DocTestFinder +_is_running Modules/_xxsubinterpretersmodule.c /^_is_running(PyInterpreterState *interp)$/;" f file: +_is_runtime_protocol Lib/typing.py /^ _is_runtime_protocol = False$/;" v class:Protocol +_is_single_bit Lib/enum.py /^def _is_single_bit(num):$/;" f +_is_standalone Tools/c-analyzer/c_common/scriptutil.py /^def _is_standalone(filename):$/;" f +_is_subnet_of Lib/ipaddress.py /^ def _is_subnet_of(a, b):$/;" m class:_BaseNetwork +_is_subtype Lib/unittest/case.py /^def _is_subtype(expected, basetype):$/;" f +_is_sunder Lib/enum.py /^def _is_sunder(name):$/;" f +_is_syntax_error Lib/codeop.py /^def _is_syntax_error(err1, err2):$/;" f +_is_textIO Lib/http/client.py /^ def _is_textIO(stream):$/;" m class:HTTPConnection +_is_text_encoding Lib/codecs.py /^ _is_text_encoding = True # Assume codecs are text encodings by default$/;" v class:CodecInfo +_is_type Lib/dataclasses.py /^def _is_type(annotation, cls, a_module, a_type, is_type_predicate):$/;" f +_is_typevar_like Lib/typing.py /^def _is_typevar_like(x: Any) -> bool:$/;" f +_is_union_type Lib/functools.py /^ def _is_union_type(cls):$/;" f function:singledispatch +_is_universal Lib/uuid.py /^def _is_universal(mac):$/;" f +_is_unpacked_typevartuple Lib/typing.py /^def _is_unpacked_typevartuple(x: Any) -> bool:$/;" f +_is_unpacked_typevartuple Objects/genericaliasobject.c /^_is_unpacked_typevartuple(PyObject *arg)$/;" f file: +_is_valid_dispatch_type Lib/functools.py /^ def _is_valid_dispatch_type(cls):$/;" f function:singledispatch +_is_wildcard_tag Lib/xml/etree/ElementPath.py /^def _is_wildcard_tag(tag):$/;" f +_is_wrapper Lib/inspect.py /^ def _is_wrapper(f):$/;" f function:unwrap +_iscolorstring Lib/turtle.py /^ def _iscolorstring(self, color):$/;" m class:TurtleScreenBase +_iscoroutine_typecache Lib/asyncio/coroutines.py /^_iscoroutine_typecache = set()$/;" v +_isdesc Lib/test/test_inspect.py /^ def _isdesc(obj):$/;" f function:TestSignatureObject.test_signature_from_functionlike_object +_isdir Lib/glob.py /^def _isdir(pathname, dir_fd):$/;" f +_isdst Doc/includes/tzinfo_examples.py /^ def _isdst(self, dt):$/;" m class:LocalTimezone +_iseven Lib/_pydecimal.py /^ def _iseven(self):$/;" m class:Decimal +_isfinite Lib/statistics.py /^def _isfinite(x):$/;" f +_ishidden Lib/glob.py /^def _ishidden(path):$/;" f +_isinfinity Lib/_pydecimal.py /^ def _isinfinity(self):$/;" m class:Decimal +_isinteger Lib/_pydecimal.py /^ def _isinteger(self):$/;" m class:Decimal +_islink Lib/shutil.py /^def _islink(fn):$/;" f +_islogical Lib/_pydecimal.py /^ def _islogical(self):$/;" m class:Decimal +_isnan Lib/_pydecimal.py /^ def _isnan(self):$/;" m class:Decimal +_isnotsuite Lib/unittest/suite.py /^def _isnotsuite(test):$/;" f +_iso8601_format Lib/xmlrpc/client.py /^ def _iso8601_format(value):$/;" f +_iso8601_format Lib/xmlrpc/client.py /^ def _iso8601_format(value):$/;" f function:_try +_isoweek1monday Lib/_pydatetime.py /^def _isoweek1monday(year):$/;" f +_isoweek_to_gregorian Lib/_pydatetime.py /^def _isoweek_to_gregorian(year, week, day):$/;" f +_isrecursive Lib/glob.py /^def _isrecursive(pattern):$/;" f +_item_class Tools/c-analyzer/c_analyzer/info.py /^ _item_class = Analyzed$/;" v class:Analysis +_item_class Tools/c-analyzer/cpython/_analyzer.py /^ _item_class = Analyzed$/;" v class:Analysis +_iter_bits_lsb Lib/enum.py /^def _iter_bits_lsb(num):$/;" f +_iter_close_action_sets Lib/test/test__xxinterpchannels.py /^ def _iter_close_action_sets(self, interp1, interp2):$/;" m class:ExhaustiveChannelTests +_iter_close_tests Lib/test/test__xxinterpchannels.py /^ def _iter_close_tests(self, verbose=False):$/;" m class:ExhaustiveChannelTests +_iter_decls_tsv Tools/c-analyzer/c_parser/datafiles.py /^def _iter_decls_tsv(infile, extracolumns=None):$/;" f +_iter_file_finder_modules Lib/pkgutil.py /^def _iter_file_finder_modules(importer, prefix=''):$/;" f +_iter_filenames Tools/c-analyzer/c_common/scriptutil.py /^def _iter_filenames(filenames, process, relroot):$/;" f +_iter_ignored Tools/c-analyzer/c_analyzer/datafiles.py /^def _iter_ignored(infile, relroot):$/;" f +_iter_indented_subactions Lib/argparse.py /^ def _iter_indented_subactions(self, action):$/;" m class:HelpFormatter +_iter_lines Tools/c-analyzer/c_parser/preprocessor/gcc.py /^def _iter_lines(text, reqfile, samefiles, cwd, raw=False):$/;" f +_iter_member_ Lib/enum.py /^ _iter_member_ = _iter_member_by_value_$/;" v class:Flag +_iter_member_by_def_ Lib/enum.py /^ def _iter_member_by_def_(cls, value):$/;" m class:Flag +_iter_member_by_value_ Lib/enum.py /^ def _iter_member_by_value_(cls, value):$/;" m class:Flag +_iter_namespaces Lib/xml/etree/ElementTree.py /^ def _iter_namespaces(self, ns_stack, _reversed=reversed):$/;" m class:C14NWriterTarget +_iter_post_close_action_sets Lib/test/test__xxinterpchannels.py /^ def _iter_post_close_action_sets(self):$/;" m class:ExhaustiveChannelTests +_iter_preprocessed Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def _iter_preprocessed(filename, *,$/;" f +_iter_side_effect Lib/unittest/mock.py /^ def _iter_side_effect():$/;" f function:mock_open +_iter_significant_lines Tools/c-analyzer/c_common/strutil.py /^def _iter_significant_lines(lines):$/;" f +_iter_source Tools/c-analyzer/c_parser/parser/__init__.py /^def _iter_source(lines, *, maxtext=10_000, maxlines=200, showtext=False):$/;" f +_iter_sources Tools/build/freeze_modules.py /^def _iter_sources(modules):$/;" f +_iter_submodules Tools/build/freeze_modules.py /^ def _iter_submodules(pkgname, pkgdir):$/;" f function:iter_submodules +_iter_top_include_lines Tools/c-analyzer/c_parser/preprocessor/gcc.py /^def _iter_top_include_lines(lines, topfile, cwd,$/;" f +_iter_use_action_sets Lib/test/test__xxinterpchannels.py /^ def _iter_use_action_sets(self, interp1, interp2):$/;" m class:ExhaustiveChannelTests +_iterate_directories Lib/pathlib.py /^ def _iterate_directories(self, parent_path):$/;" m class:_RecursiveWildcardSelector +_iterative_matches Lib/lib2to3/pytree.py /^ def _iterative_matches(self, nodes):$/;" m class:WildcardPattern +_iterdir Lib/glob.py /^def _iterdir(dirname, dir_fd, dironly):$/;" f +_iterdump Lib/sqlite3/dump.py /^def _iterdump(connection):$/;" f +_iterencode Lib/json/encoder.py /^ def _iterencode(o, _current_indent_level):$/;" f function:_make_iterencode +_iterencode_dict Lib/json/encoder.py /^ def _iterencode_dict(dct, _current_indent_level):$/;" f function:_make_iterencode +_iterencode_list Lib/json/encoder.py /^ def _iterencode_list(lst, _current_indent_level):$/;" f function:_make_iterencode +_java_getprop Lib/platform.py /^def _java_getprop(name, default):$/;" f +_join Lib/glob.py /^def _join(dirname, basename):$/;" f +_join Lib/reprlib.py /^ def _join(self, pieces, level):$/;" m class:Repr +_join Lib/test/test_unittest/test_program.py /^ def _join(name):$/;" f function:TestCommandLineArgs.testParseArgsAbsolutePathsThatCanBeConverted +_join Lib/tkinter/__init__.py /^def _join(value):$/;" f +_joinW Modules/posixmodule.c /^_joinW(WCHAR *dest_path, const WCHAR *root, const WCHAR *rest)$/;" f file: +_join_exited_workers Lib/multiprocessing/pool.py /^ def _join_exited_workers(pool):$/;" m class:Pool +_join_multiline_values Lib/configparser.py /^ def _join_multiline_values(self):$/;" m class:RawConfigParser +_join_parts Lib/argparse.py /^ def _join_parts(self, part_strings):$/;" m class:HelpFormatter +_join_threads Lib/asyncio/unix_events.py /^ def _join_threads(self):$/;" m class:ThreadedChildWatcher +_joinrealpath Lib/posixpath.py /^def _joinrealpath(path, rest, strict, seen):$/;" f +_jpeg Lib/email/mime/image.py /^def _jpeg(h):$/;" f +_json_exec Modules/_json.c /^_json_exec(PyObject *module)$/;" f file: +_json_slots Modules/_json.c /^static PyModuleDef_Slot _json_slots[] = {$/;" v file: +_justAccept Lib/test/test_socket.py /^ def _justAccept(self):$/;" m class:NetworkConnectionAttributesTest +_karatsuba_rec Modules/_decimal/libmpdec/mpdecimal.c /^_karatsuba_rec(mpd_uint_t *c, const mpd_uint_t *a, const mpd_uint_t *b,$/;" f file: +_karatsuba_rec_fnt Modules/_decimal/libmpdec/mpdecimal.c /^_karatsuba_rec_fnt(mpd_uint_t *c, const mpd_uint_t *a, const mpd_uint_t *b,$/;" f file: +_keep_alive Lib/copy.py /^def _keep_alive(x, memo):$/;" f +_keep_original_ws Lib/difflib.py /^def _keep_original_ws(s, tag_s):$/;" f +_keep_positive Lib/collections/__init__.py /^ def _keep_positive(self):$/;" m class:Counter +_key Include/cpython/pythread.h /^ NATIVE_TSS_KEY_T _key;$/;" m struct:_Py_tss_t +_key Lib/importlib/metadata/__init__.py /^ def _key(self):$/;" m class:EntryPoint +_key_from_fd Lib/selectors.py /^ def _key_from_fd(self, fd):$/;" m class:_BaseSelectorImpl +_keys PC/layout/support/appxmanifest.py /^ _keys=("ProcessorArchitecture",),$/;" v +_keys PC/layout/support/nuspec.py /^ _keys=("PYTHON_BITNESS", "PACKAGENAME", "PACKAGETITLE"),$/;" v +_keysym_re Lib/idlelib/multicall.py /^_keysym_re = re.compile(r"^\\w+$")$/;" v +_keyword Include/internal/pycore_ast.h /^struct _keyword {$/;" s +_kill Lib/test/libregrtest/runtest_mp.py /^ def _kill(self) -> None:$/;" m class:TestWorkerProcess +_kill Lib/test/test_os.py /^ def _kill(self, sig):$/;" m class:Win32KillTests +_kill_dead_process Lib/test/test_subprocess.py /^ def _kill_dead_process(self, method, *args):$/;" m class:POSIXProcessTestCase +_kill_dead_process Lib/test/test_subprocess.py /^ def _kill_dead_process(self, method, *args):$/;" m class:Win32ProcessTestCase +_kill_process Lib/test/_test_multiprocessing.py /^ def _kill_process(self, meth):$/;" m class:_TestProcess +_kill_process Lib/test/test_subprocess.py /^ def _kill_process(self, method, *args):$/;" m class:POSIXProcessTestCase +_kill_process Lib/test/test_subprocess.py /^ def _kill_process(self, method, *args):$/;" m class:Win32ProcessTestCase +_kill_python_and_exit_code Lib/test/test_cmd_line.py /^def _kill_python_and_exit_code(p):$/;" f +_kill_with_event Lib/test/test_os.py /^ def _kill_with_event(self, event, name):$/;" m class:Win32KillTests +_killer Lib/test/_test_multiprocessing.py /^ def _killer(cls, pid):$/;" m class:_TestPollEintr +_kmul_resultsize Modules/_decimal/libmpdec/mpdecimal.c /^_kmul_resultsize(mpd_size_t la, mpd_size_t lb)$/;" f file: +_kmul_worksize Modules/_decimal/libmpdec/mpdecimal.c /^_kmul_worksize(mpd_size_t n, mpd_size_t lim)$/;" f file: +_label Doc/tools/extensions/pyspecific.py /^ _label = [$/;" v class:AuditEvent +_language Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ LPWSTR _language;$/;" m class:PythonBootstrapperApplication file: +_lanscan_getnode Lib/uuid.py /^def _lanscan_getnode():$/;" f +_last_child_ids Lib/tkinter/__init__.py /^ _last_child_ids = None$/;" v class:Misc +_last_id Lib/tkinter/__init__.py /^ _last_id = 0$/;" v class:Image +_last_newline_re Lib/idlelib/pyshell.py /^ _last_newline_re = re.compile(r"[ \\t]*(\\n[ \\t]*)?\\Z")$/;" v class:PyShell +_last_timestamp Lib/uuid.py /^_last_timestamp = None$/;" v +_last_version Lib/ctypes/_aix.py /^def _last_version(libnames, sep):$/;" f +_latin1 Include/internal/pycore_global_strings.h /^ PyCompactUnicodeObject _latin1;$/;" m struct:_Py_global_strings::__anon8 +_launch Lib/multiprocessing/popen_fork.py /^ def _launch(self, process_obj):$/;" m class:Popen +_launch Lib/multiprocessing/popen_forkserver.py /^ def _launch(self, process_obj):$/;" m class:Popen +_launch Lib/multiprocessing/popen_spawn_posix.py /^ def _launch(self, process_obj):$/;" m class:Popen +_launch_processes Lib/concurrent/futures/process.py /^ def _launch_processes(self):$/;" m class:ProcessPoolExecutor +_lazy_init Lib/asyncio/runners.py /^ def _lazy_init(self):$/;" m class:Runner +_lazy_load_getattr_static Lib/typing.py /^def _lazy_load_getattr_static():$/;" f +_lc Lib/test/libregrtest/save_env.py /^ _lc = [getattr(locale, lc) for lc in dir(locale)$/;" v class:saved_test_environment +_ldict Modules/_threadmodule.c /^_ldict(localobject *self, thread_module_state *state)$/;" f file: +_le64toh Python/pyhash.c 338;" d file: +_le64toh Python/pyhash.c 340;" d file: +_le64toh Python/pyhash.c 342;" d file: +_le64toh Python/pyhash.c 344;" d file: +_le_from_ge Lib/functools.py /^def _le_from_ge(self, other):$/;" f +_le_from_gt Lib/functools.py /^def _le_from_gt(self, other):$/;" f +_le_from_lt Lib/functools.py /^def _le_from_lt(self, other):$/;" f +_leading_whitespace_re Lib/textwrap.py /^_leading_whitespace_re = re.compile('(^[ \\t]*)(?:[^ \\t\\n])', re.MULTILINE)$/;" v +_leave_task Lib/asyncio/tasks.py /^def _leave_task(loop, task):$/;" f +_leave_task Lib/test/test_asyncio/test_tasks.py /^ _leave_task = staticmethod(tasks._c_leave_task)$/;" v class:CIntrospectionTests +_leave_task Lib/test/test_asyncio/test_tasks.py /^ _leave_task = None$/;" v class:BaseTaskIntrospectionTests +_leave_task Lib/test/test_asyncio/test_tasks.py /^ _leave_task = staticmethod(tasks._py_leave_task)$/;" v class:PyIntrospectionTests +_legal_actions Lib/xml/dom/xmlbuilder.py /^ _legal_actions = (ACTION_REPLACE, ACTION_APPEND_AS_CHILDREN,$/;" v class:DOMBuilder +_legend Lib/difflib.py /^ _legend = _legend$/;" v class:HtmlDiff +_length Lib/test/test_tarfile.py /^ def _length(self, s):$/;" m class:GNUWriteTest +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = - sys.maxsize * 2$/;" v class:ArrayTestCase.test_bad_length.T +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = -1$/;" v class:ArrayTestCase.test_bad_length.T +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = 1.87$/;" v class:ArrayTestCase.test_bad_length.T +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = 13$/;" v class:ArrayTestCase.test_bad_subclass.T +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = sys.maxsize * 2$/;" v class:ArrayTestCase.test_bad_length.T +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = 0$/;" v class:ArrayTestCase.test_empty_element_array.EmptyArray +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = 0$/;" v class:ArrayTestCase.test_zero_length.T +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = 13$/;" v class:ArrayTestCase.test_subclass.T +_length_ Lib/test/test_ctypes/test_arrays.py /^ _length_ = 187$/;" v class:ArrayTestCase.test_subclass.Y +_length_ Lib/test/test_ctypes/test_functions.py /^ _length_ = 5$/;" v class:FunctionTestCase.test_mro.X +_levelToName Lib/logging/__init__.py /^_levelToName = {$/;" v +_levenshtein_distance Lib/traceback.py /^def _levenshtein_distance(a, b, max_cost):$/;" f +_lex_search Objects/stringlib/fastsearch.h /^STRINGLIB(_lex_search)(const STRINGLIB_CHAR *needle, Py_ssize_t len_needle,$/;" f +_lexists Lib/glob.py /^def _lexists(pathname, dir_fd):$/;" f +_limbo Lib/threading.py /^_limbo = {}$/;" v +_lin2adpcm Lib/aifc.py /^ def _lin2adpcm(self, data):$/;" m class:Aifc_write +_lin2alaw Lib/aifc.py /^ def _lin2alaw(self, data):$/;" m class:Aifc_write +_lin2sowt Lib/aifc.py /^ def _lin2sowt(self, data):$/;" m class:Aifc_write +_lin2ulaw Lib/aifc.py /^ def _lin2ulaw(self, data):$/;" m class:Aifc_write +_line Tools/clinic/clinic.py /^ def _line(self, lookahead=False):$/;" m class:BlockParser +_line_buffer Lib/idlelib/run.py /^ _line_buffer = ''$/;" v class:StdInputFile +_line_indent_re Lib/idlelib/editor.py /^_line_indent_re = re.compile(r'[ \\t]*')$/;" v +_line_indent_re Lib/idlelib/format.py /^_line_indent_re = re.compile(r'[ \\t]*')$/;" v +_line_iterator Lib/difflib.py /^ def _line_iterator():$/;" f function:_mdiff +_line_offset Lib/test/test_dis.py /^_line_offset = outer.__code__.co_firstlineno - 1$/;" v +_line_offsets Include/cpython/code.h /^typedef struct _line_offsets {$/;" s +_line_pair_iterator Lib/difflib.py /^ def _line_pair_iterator():$/;" f function:_mdiff +_line_pattern Lib/ast.py /^_line_pattern = re.compile(r"(.*?(?:\\r\\n|\\n|\\r|$))")$/;" v +_line_wrapper Lib/difflib.py /^ def _line_wrapper(self,diffs):$/;" m class:HtmlDiff +_linenumbers_drag_scrolling Lib/idlelib/sidebar.py /^def _linenumbers_drag_scrolling(parent): # htest #$/;" f +_linenumbers_drag_scrolling_spec Lib/idlelib/idle_test/htest.py /^_linenumbers_drag_scrolling_spec = {$/;" v +_lines Lib/pathlib.py /^ def _lines(self):$/;" m class:PurePath +_link_target Lib/tarfile.py /^ _link_target = None,$/;" v class:TarInfo +_linklocal_network Lib/ipaddress.py /^ _linklocal_network = IPv4Network('169.254.0.0\/16')$/;" v class:_IPv4Constants +_linklocal_network Lib/ipaddress.py /^ _linklocal_network = IPv6Network('fe80::\/10')$/;" v class:_IPv6Constants +_listAllEnvironments PC/launcher2.c /^_listAllEnvironments(EnvironmentInfo *env, FILE * out, bool showPath, EnvironmentInfo *defaultEnv)$/;" f +_list_cases Lib/test/libregrtest/main.py /^ def _list_cases(self, suite):$/;" m class:Regrtest +_list_clear Objects/listobject.c /^_list_clear(PyListObject *a)$/;" f file: +_list_from_layouttuple Lib/tkinter/ttk.py /^def _list_from_layouttuple(tk, ltuple):$/;" f +_list_from_statespec Lib/tkinter/ttk.py /^def _list_from_statespec(stuple):$/;" f +_list_of_panels Modules/_curses_panel.c /^typedef struct _list_of_panels {$/;" s file: +_listdir Lib/glob.py /^def _listdir(dirname, dir_fd, dironly):$/;" f +_listdir Lib/idlelib/idle_test/test_autocomplete.py /^ def _listdir(path):$/;" f function:AutoCompleteTest.test_fetch_completions +_listdir_windows_no_opendir Modules/posixmodule.c /^_listdir_windows_no_opendir(path_t *path, PyObject *list)$/;" f file: +_listen Lib/turtle.py /^ def _listen(self):$/;" m class:TurtleScreenBase +_listener Lib/logging/config.py /^_listener = None$/;" v +_listener Lib/test/_test_multiprocessing.py /^ def _listener(cls, conn, families):$/;" m class:_TestPicklingConnections +_litprefix Lib/lib2to3/pgen2/tokenize.py /^_litprefix = r"(?:[uUrRbBfF]|[rR][fFbB]|[fFbBuU][rR])?"$/;" v +_ln_exp_bound Lib/_pydecimal.py /^ def _ln_exp_bound(self):$/;" m class:Decimal +_load Lib/importlib/_bootstrap.py /^def _load(spec):$/;" f +_load Lib/pickle.py /^def _load(file, *, fix_imports=True, encoding="ASCII", errors="strict",$/;" f +_load Lib/tarfile.py /^ def _load(self):$/;" m class:TarFile +_load_backward_compatible Lib/importlib/_bootstrap.py /^def _load_backward_compatible(spec):$/;" f +_load_breaks Lib/bdb.py /^ def _load_breaks(self):$/;" m class:Bdb +_load_dynamic Lib/test/test_import/__init__.py /^ def _load_dynamic(self, name, path):$/;" m class:SinglephaseInitTests +_load_file Lib/zoneinfo/_zoneinfo.py /^ def _load_file(self, fobj):$/;" m class:ZoneInfo +_load_lines Lib/traceback.py /^ def _load_lines(self):$/;" m class:TracebackException +_load_module_shim Lib/importlib/_bootstrap.py /^def _load_module_shim(self, fullname):$/;" f +_load_parts Lib/pathlib.py /^ def _load_parts(self):$/;" m class:PurePath +_load_run_test Lib/test/libregrtest/runtest.py /^def _load_run_test(result: TestResult, ns: Namespace) -> None:$/;" f +_load_system_functions Lib/uuid.py /^def _load_system_functions():$/;" f +_load_testfile Lib/doctest.py /^def _load_testfile(filename, package, module_relative, encoding):$/;" f +_load_timedelta Lib/zoneinfo/_zoneinfo.py /^def _load_timedelta(seconds):$/;" f +_load_unlocked Lib/importlib/_bootstrap.py /^def _load_unlocked(spec):$/;" f +_load_windows_store_certs Lib/ssl.py /^ def _load_windows_store_certs(self, storename, purpose):$/;" m class:SSLContext +_loads Lib/pickle.py /^def _loads(s, \/, *, fix_imports=True, encoding="ASCII", errors="strict",$/;" f +_loadtk Lib/tkinter/__init__.py /^ def _loadtk(self):$/;" m class:Tk +_loc_fold Lib/test/datetimetester.py /^ def _loc_fold(self):$/;" m class:Europe_Vilnius_1941 +_local Lib/test/test_threading_local.py /^ _local = _thread._local$/;" v class:ThreadLocalTest +_local Lib/test/test_threading_local.py /^ _local = _threading_local.local$/;" v class:PyThreadingLocalTest +_local_create_dummy Modules/_threadmodule.c /^_local_create_dummy(localobject *self, thread_module_state *state)$/;" f file: +_local_refs Lib/test/test_threading_local.py /^ def _local_refs(self, n):$/;" m class:BaseLocalTest +_local_timezone Lib/_pydatetime.py /^ def _local_timezone(self):$/;" m class:datetime +_localdummy_destroyed Modules/_threadmodule.c /^_localdummy_destroyed(PyObject *localweakref, PyObject *dummyweakref)$/;" f file: +_locale Tools/i18n/makelocalealias.py /^_locale = locale$/;" v +_locale__getdefaultlocale Modules/clinic/_localemodule.c.h /^_locale__getdefaultlocale(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_locale__getdefaultlocale_impl Modules/_localemodule.c /^_locale__getdefaultlocale_impl(PyObject *module)$/;" f file: +_locale_bind_textdomain_codeset Modules/clinic/_localemodule.c.h /^_locale_bind_textdomain_codeset(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_locale_bind_textdomain_codeset_impl Modules/_localemodule.c /^_locale_bind_textdomain_codeset_impl(PyObject *module, const char *domain,$/;" f file: +_locale_bindtextdomain Modules/clinic/_localemodule.c.h /^_locale_bindtextdomain(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_locale_bindtextdomain_impl Modules/_localemodule.c /^_locale_bindtextdomain_impl(PyObject *module, const char *domain,$/;" f file: +_locale_dcgettext Modules/clinic/_localemodule.c.h /^_locale_dcgettext(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_locale_dcgettext_impl Modules/_localemodule.c /^_locale_dcgettext_impl(PyObject *module, const char *domain,$/;" f file: +_locale_dgettext Modules/clinic/_localemodule.c.h /^_locale_dgettext(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_locale_dgettext_impl Modules/_localemodule.c /^_locale_dgettext_impl(PyObject *module, const char *domain, const char *in)$/;" f file: +_locale_exec Modules/_localemodule.c /^_locale_exec(PyObject *module)$/;" f file: +_locale_getencoding Modules/clinic/_localemodule.c.h /^_locale_getencoding(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_locale_getencoding_impl Modules/_localemodule.c /^_locale_getencoding_impl(PyObject *module)$/;" f file: +_locale_gettext Modules/clinic/_localemodule.c.h /^_locale_gettext(PyObject *module, PyObject *arg)$/;" f +_locale_gettext_impl Modules/_localemodule.c /^_locale_gettext_impl(PyObject *module, const char *in)$/;" f file: +_locale_localeconv Modules/clinic/_localemodule.c.h /^_locale_localeconv(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_locale_localeconv_impl Modules/_localemodule.c /^_locale_localeconv_impl(PyObject *module)$/;" f file: +_locale_nl_langinfo Modules/clinic/_localemodule.c.h /^_locale_nl_langinfo(PyObject *module, PyObject *arg)$/;" f +_locale_nl_langinfo_impl Modules/_localemodule.c /^_locale_nl_langinfo_impl(PyObject *module, int item)$/;" f file: +_locale_setlocale Modules/clinic/_localemodule.c.h /^_locale_setlocale(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_locale_setlocale_impl Modules/_localemodule.c /^_locale_setlocale_impl(PyObject *module, int category, const char *locale)$/;" f file: +_locale_slots Modules/_localemodule.c /^static struct PyModuleDef_Slot _locale_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +_locale_state Modules/_localemodule.c /^typedef struct _locale_state {$/;" s file: +_locale_state Modules/_localemodule.c /^} _locale_state;$/;" t typeref:struct:_locale_state file: +_locale_strcoll Modules/clinic/_localemodule.c.h /^_locale_strcoll(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_locale_strcoll_impl Modules/_localemodule.c /^_locale_strcoll_impl(PyObject *module, PyObject *os1, PyObject *os2)$/;" f file: +_locale_strxfrm Modules/clinic/_localemodule.c.h /^_locale_strxfrm(PyObject *module, PyObject *arg)$/;" f +_locale_strxfrm_impl Modules/_localemodule.c /^_locale_strxfrm_impl(PyObject *module, PyObject *str)$/;" f file: +_locale_textdomain Modules/clinic/_localemodule.c.h /^_locale_textdomain(PyObject *module, PyObject *arg)$/;" f +_locale_textdomain_impl Modules/_localemodule.c /^_locale_textdomain_impl(PyObject *module, const char *domain)$/;" f file: +_localeconv Lib/locale.py /^_localeconv = localeconv$/;" v +_localedirs Lib/gettext.py /^_localedirs = {}$/;" v +_localemodule Modules/_localemodule.c /^static struct PyModuleDef _localemodule = {$/;" v typeref:struct:PyModuleDef file: +_localhost Lib/urllib/request.py /^_localhost = None$/;" v +_localimpl Lib/_threading_local.py /^class _localimpl:$/;" c +_localize Lib/locale.py /^def _localize(formatted, grouping=False, monetary=False):$/;" f +_localized_day Lib/calendar.py /^class _localized_day:$/;" c +_localized_month Lib/calendar.py /^class _localized_month:$/;" c +_locate_pythons_for_key PC/launcher.c /^_locate_pythons_for_key(HKEY root, LPCWSTR subkey, REGSAM flags, int bits,$/;" f file: +_locator Lib/xml/dom/pulldom.py /^ _locator = None$/;" v class:PullDOM +_lock Lib/asyncio/events.py /^_lock = threading.Lock()$/;" v +_lock Lib/logging/__init__.py /^_lock = threading.RLock()$/;" v +_lock Lib/test/_test_eintr.py /^ def _lock(self, lock_func, lock_name):$/;" m class:FNTLEINTRTest +_lock Lib/unittest/mock.py /^ _lock = RLock()$/;" v class:NonCallableMock +_lock Lib/webbrowser.py /^_lock = threading.RLock()$/;" v +_lock_file Lib/mailbox.py /^def _lock_file(f, dotlock=True):$/;" f +_lock_unlock_module Lib/importlib/_bootstrap.py /^def _lock_unlock_module(name):$/;" f +_locked Tools/c-analyzer/c_analyzer/info.py /^ _locked = False$/;" v class:Analyzed +_log Lib/imaplib.py /^ def _log(self, line):$/;" f function:IMAP4._untagged_response +_log Lib/logging/__init__.py /^ def _log(self, level, msg, args, exc_info=None, extra=None, stack_info=False):$/;" m class:LoggerAdapter +_log Lib/logging/__init__.py /^ def _log(self, level, msg, args, exc_info=None, extra=None, stack_info=False,$/;" m class:Logger +_log Lib/test/test_logging.py /^ def _log(self, level, msg, args, exc_info=None, extra=None):$/;" m class:ManagerTest.test_manager_loggerclass.MyLogger +_log Tools/c-analyzer/distutils/log.py /^ def _log(self, level, msg, args):$/;" m class:Log +_log10_digits Lib/_pydecimal.py /^_log10_digits = _Log10Memoize().getdigits$/;" v +_log10_exp_bound Lib/_pydecimal.py /^ def _log10_exp_bound(self):$/;" m class:Decimal +_log10_lb Lib/_pydecimal.py /^def _log10_lb(c, correction = {$/;" f +_logRecordFactory Lib/logging/__init__.py /^_logRecordFactory = LogRecord$/;" v +_log_destroy_pending Lib/asyncio/tasks.py /^ _log_destroy_pending = True$/;" v class:Task +_log_subprocess Lib/asyncio/base_events.py /^ def _log_subprocess(self, msg, stdin, stdout, stderr):$/;" m class:BaseEventLoop +_log_to_stderr Lib/multiprocessing/util.py /^_log_to_stderr = False$/;" v +_log_traceback Lib/asyncio/futures.py /^ def _log_traceback(self):$/;" m class:Future +_log_traceback Lib/asyncio/futures.py /^ def _log_traceback(self, val):$/;" m class:Future +_logger Lib/multiprocessing/util.py /^_logger = None$/;" v +_logger Tools/c-analyzer/c_common/logging.py /^_logger = logging.getLogger(__name__.rpartition('.')[0])$/;" v +_logger Tools/c-analyzer/c_parser/parser/__init__.py /^_logger = logging.getLogger(__name__)$/;" v +_loggerClass Lib/logging/__init__.py /^_loggerClass = Logger$/;" v +_long_shared Python/pystate.c /^_long_shared(PyThreadState *tstate, PyObject *obj,$/;" f file: +_longcmd Lib/nntplib.py /^ def _longcmd(self, line, file=None):$/;" m class:NNTP +_longcmd Lib/poplib.py /^ def _longcmd(self, line):$/;" m class:POP3 +_longcmdstring Lib/nntplib.py /^ def _longcmdstring(self, line, file=None):$/;" m class:NNTP +_longobject Include/cpython/longintrepr.h /^struct _longobject {$/;" s +_longpath Lib/test/support/os_helper.py /^ def _longpath(path):$/;" f function:unlink +_looks_like_filename Tools/c-analyzer/c_parser/source.py /^def _looks_like_filename(value):$/;" f +_looks_like_prefix_name Lib/xml/etree/ElementTree.py /^_looks_like_prefix_name = re.compile(r'^\\w+:\\w+$', re.UNICODE).match$/;" v +_lookup Lib/mailbox.py /^ def _lookup(self, key):$/;" m class:Maildir +_lookup Lib/mailbox.py /^ def _lookup(self, key=None):$/;" m class:_singlefileMailbox +_lookup_getdata Python/pystate.c /^_lookup_getdata(PyObject *obj)$/;" f file: +_loop Lib/asyncio/events.py /^ _loop = None$/;" v class:BaseDefaultEventLoopPolicy._Local +_loop Lib/asyncio/futures.py /^ _loop = None$/;" v class:Future +_loop Lib/asyncio/mixins.py /^ _loop = None$/;" v class:_LoopBoundMixin +_loop Lib/test/test_asyncio/test_tasks.py /^ def _loop(self):$/;" m class:BaseTaskIntrospectionTests.test__register_task_1.TaskLike +_loop0_100_rule Parser/parser.c /^_loop0_100_rule(Parser *p)$/;" f file: +_loop0_100_type Parser/parser.c 424;" d file: +_loop0_101_rule Parser/parser.c /^_loop0_101_rule(Parser *p)$/;" f file: +_loop0_101_type Parser/parser.c 425;" d file: +_loop0_103_rule Parser/parser.c /^_loop0_103_rule(Parser *p)$/;" f file: +_loop0_103_type Parser/parser.c 427;" d file: +_loop0_107_rule Parser/parser.c /^_loop0_107_rule(Parser *p)$/;" f file: +_loop0_107_type Parser/parser.c 431;" d file: +_loop0_109_rule Parser/parser.c /^_loop0_109_rule(Parser *p)$/;" f file: +_loop0_109_type Parser/parser.c 433;" d file: +_loop0_111_rule Parser/parser.c /^_loop0_111_rule(Parser *p)$/;" f file: +_loop0_111_type Parser/parser.c 435;" d file: +_loop0_114_rule Parser/parser.c /^_loop0_114_rule(Parser *p)$/;" f file: +_loop0_114_type Parser/parser.c 438;" d file: +_loop0_118_rule Parser/parser.c /^_loop0_118_rule(Parser *p)$/;" f file: +_loop0_118_type Parser/parser.c 441;" d file: +_loop0_120_rule Parser/parser.c /^_loop0_120_rule(Parser *p)$/;" f file: +_loop0_120_type Parser/parser.c 444;" d file: +_loop0_121_rule Parser/parser.c /^_loop0_121_rule(Parser *p)$/;" f file: +_loop0_121_type Parser/parser.c 445;" d file: +_loop0_124_rule Parser/parser.c /^_loop0_124_rule(Parser *p)$/;" f file: +_loop0_124_type Parser/parser.c 447;" d file: +_loop0_127_rule Parser/parser.c /^_loop0_127_rule(Parser *p)$/;" f file: +_loop0_127_type Parser/parser.c 450;" d file: +_loop0_129_rule Parser/parser.c /^_loop0_129_rule(Parser *p)$/;" f file: +_loop0_129_type Parser/parser.c 452;" d file: +_loop0_131_rule Parser/parser.c /^_loop0_131_rule(Parser *p)$/;" f file: +_loop0_131_type Parser/parser.c 454;" d file: +_loop0_133_rule Parser/parser.c /^_loop0_133_rule(Parser *p)$/;" f file: +_loop0_133_type Parser/parser.c 456;" d file: +_loop0_134_rule Parser/parser.c /^_loop0_134_rule(Parser *p)$/;" f file: +_loop0_134_type Parser/parser.c 458;" d file: +_loop0_136_rule Parser/parser.c /^_loop0_136_rule(Parser *p)$/;" f file: +_loop0_136_type Parser/parser.c 459;" d file: +_loop0_140_rule Parser/parser.c /^_loop0_140_rule(Parser *p)$/;" f file: +_loop0_140_type Parser/parser.c 463;" d file: +_loop0_142_rule Parser/parser.c /^_loop0_142_rule(Parser *p)$/;" f file: +_loop0_142_type Parser/parser.c 465;" d file: +_loop0_144_rule Parser/parser.c /^_loop0_144_rule(Parser *p)$/;" f file: +_loop0_144_type Parser/parser.c 467;" d file: +_loop0_146_rule Parser/parser.c /^_loop0_146_rule(Parser *p)$/;" f file: +_loop0_146_type Parser/parser.c 469;" d file: +_loop0_148_rule Parser/parser.c /^_loop0_148_rule(Parser *p)$/;" f file: +_loop0_148_type Parser/parser.c 471;" d file: +_loop0_160_rule Parser/parser.c /^_loop0_160_rule(Parser *p)$/;" f file: +_loop0_160_type Parser/parser.c 484;" d file: +_loop0_161_rule Parser/parser.c /^_loop0_161_rule(Parser *p)$/;" f file: +_loop0_161_type Parser/parser.c 485;" d file: +_loop0_162_rule Parser/parser.c /^_loop0_162_rule(Parser *p)$/;" f file: +_loop0_162_type Parser/parser.c 486;" d file: +_loop0_168_rule Parser/parser.c /^_loop0_168_rule(Parser *p)$/;" f file: +_loop0_168_type Parser/parser.c 492;" d file: +_loop0_169_rule Parser/parser.c /^_loop0_169_rule(Parser *p)$/;" f file: +_loop0_169_type Parser/parser.c 493;" d file: +_loop0_170_rule Parser/parser.c /^_loop0_170_rule(Parser *p)$/;" f file: +_loop0_170_type Parser/parser.c 494;" d file: +_loop0_173_rule Parser/parser.c /^_loop0_173_rule(Parser *p)$/;" f file: +_loop0_173_type Parser/parser.c 497;" d file: +_loop0_175_rule Parser/parser.c /^_loop0_175_rule(Parser *p)$/;" f file: +_loop0_175_type Parser/parser.c 499;" d file: +_loop0_180_rule Parser/parser.c /^_loop0_180_rule(Parser *p)$/;" f file: +_loop0_180_type Parser/parser.c 504;" d file: +_loop0_185_rule Parser/parser.c /^_loop0_185_rule(Parser *p)$/;" f file: +_loop0_185_type Parser/parser.c 509;" d file: +_loop0_186_rule Parser/parser.c /^_loop0_186_rule(Parser *p)$/;" f file: +_loop0_186_type Parser/parser.c 510;" d file: +_loop0_187_rule Parser/parser.c /^_loop0_187_rule(Parser *p)$/;" f file: +_loop0_187_type Parser/parser.c 511;" d file: +_loop0_189_rule Parser/parser.c /^_loop0_189_rule(Parser *p)$/;" f file: +_loop0_189_type Parser/parser.c 512;" d file: +_loop0_191_rule Parser/parser.c /^_loop0_191_rule(Parser *p)$/;" f file: +_loop0_191_type Parser/parser.c 515;" d file: +_loop0_193_rule Parser/parser.c /^_loop0_193_rule(Parser *p)$/;" f file: +_loop0_193_type Parser/parser.c 517;" d file: +_loop0_198_rule Parser/parser.c /^_loop0_198_rule(Parser *p)$/;" f file: +_loop0_198_type Parser/parser.c 522;" d file: +_loop0_1_rule Parser/parser.c /^_loop0_1_rule(Parser *p)$/;" f file: +_loop0_1_type Parser/parser.c 325;" d file: +_loop0_203_rule Parser/parser.c /^_loop0_203_rule(Parser *p)$/;" f file: +_loop0_203_type Parser/parser.c 526;" d file: +_loop0_205_rule Parser/parser.c /^_loop0_205_rule(Parser *p)$/;" f file: +_loop0_205_type Parser/parser.c 528;" d file: +_loop0_207_rule Parser/parser.c /^_loop0_207_rule(Parser *p)$/;" f file: +_loop0_207_type Parser/parser.c 530;" d file: +_loop0_209_rule Parser/parser.c /^_loop0_209_rule(Parser *p)$/;" f file: +_loop0_209_type Parser/parser.c 532;" d file: +_loop0_20_rule Parser/parser.c /^_loop0_20_rule(Parser *p)$/;" f file: +_loop0_20_type Parser/parser.c 343;" d file: +_loop0_211_rule Parser/parser.c /^_loop0_211_rule(Parser *p)$/;" f file: +_loop0_211_type Parser/parser.c 534;" d file: +_loop0_213_rule Parser/parser.c /^_loop0_213_rule(Parser *p)$/;" f file: +_loop0_213_type Parser/parser.c 537;" d file: +_loop0_216_rule Parser/parser.c /^_loop0_216_rule(Parser *p)$/;" f file: +_loop0_216_type Parser/parser.c 540;" d file: +_loop0_229_rule Parser/parser.c /^_loop0_229_rule(Parser *p)$/;" f file: +_loop0_229_type Parser/parser.c 552;" d file: +_loop0_22_rule Parser/parser.c /^_loop0_22_rule(Parser *p)$/;" f file: +_loop0_22_type Parser/parser.c 345;" d file: +_loop0_243_rule Parser/parser.c /^_loop0_243_rule(Parser *p)$/;" f file: +_loop0_243_type Parser/parser.c 567;" d file: +_loop0_25_rule Parser/parser.c /^_loop0_25_rule(Parser *p)$/;" f file: +_loop0_25_type Parser/parser.c 349;" d file: +_loop0_28_rule Parser/parser.c /^_loop0_28_rule(Parser *p)$/;" f file: +_loop0_28_type Parser/parser.c 351;" d file: +_loop0_2_rule Parser/parser.c /^_loop0_2_rule(Parser *p)$/;" f file: +_loop0_2_type Parser/parser.c 326;" d file: +_loop0_31_rule Parser/parser.c /^_loop0_31_rule(Parser *p)$/;" f file: +_loop0_31_type Parser/parser.c 354;" d file: +_loop0_37_rule Parser/parser.c /^_loop0_37_rule(Parser *p)$/;" f file: +_loop0_37_type Parser/parser.c 361;" d file: +_loop0_38_rule Parser/parser.c /^_loop0_38_rule(Parser *p)$/;" f file: +_loop0_38_type Parser/parser.c 362;" d file: +_loop0_39_rule Parser/parser.c /^_loop0_39_rule(Parser *p)$/;" f file: +_loop0_39_type Parser/parser.c 363;" d file: +_loop0_3_rule Parser/parser.c /^_loop0_3_rule(Parser *p)$/;" f file: +_loop0_3_type Parser/parser.c 327;" d file: +_loop0_41_rule Parser/parser.c /^_loop0_41_rule(Parser *p)$/;" f file: +_loop0_41_type Parser/parser.c 365;" d file: +_loop0_45_rule Parser/parser.c /^_loop0_45_rule(Parser *p)$/;" f file: +_loop0_45_type Parser/parser.c 369;" d file: +_loop0_47_rule Parser/parser.c /^_loop0_47_rule(Parser *p)$/;" f file: +_loop0_47_type Parser/parser.c 371;" d file: +_loop0_49_rule Parser/parser.c /^_loop0_49_rule(Parser *p)$/;" f file: +_loop0_49_type Parser/parser.c 373;" d file: +_loop0_50_rule Parser/parser.c /^_loop0_50_rule(Parser *p)$/;" f file: +_loop0_50_type Parser/parser.c 374;" d file: +_loop0_53_rule Parser/parser.c /^_loop0_53_rule(Parser *p)$/;" f file: +_loop0_53_type Parser/parser.c 376;" d file: +_loop0_55_rule Parser/parser.c /^_loop0_55_rule(Parser *p)$/;" f file: +_loop0_55_type Parser/parser.c 378;" d file: +_loop0_57_rule Parser/parser.c /^_loop0_57_rule(Parser *p)$/;" f file: +_loop0_57_type Parser/parser.c 380;" d file: +_loop0_59_rule Parser/parser.c /^_loop0_59_rule(Parser *p)$/;" f file: +_loop0_59_type Parser/parser.c 382;" d file: +_loop0_67_rule Parser/parser.c /^_loop0_67_rule(Parser *p)$/;" f file: +_loop0_67_type Parser/parser.c 390;" d file: +_loop0_6_rule Parser/parser.c /^_loop0_6_rule(Parser *p)$/;" f file: +_loop0_6_type Parser/parser.c 329;" d file: +_loop0_73_rule Parser/parser.c /^_loop0_73_rule(Parser *p)$/;" f file: +_loop0_73_type Parser/parser.c 396;" d file: +_loop0_75_rule Parser/parser.c /^_loop0_75_rule(Parser *p)$/;" f file: +_loop0_75_type Parser/parser.c 398;" d file: +_loop0_78_rule Parser/parser.c /^_loop0_78_rule(Parser *p)$/;" f file: +_loop0_78_type Parser/parser.c 401;" d file: +_loop0_80_rule Parser/parser.c /^_loop0_80_rule(Parser *p)$/;" f file: +_loop0_80_type Parser/parser.c 403;" d file: +_loop0_82_rule Parser/parser.c /^_loop0_82_rule(Parser *p)$/;" f file: +_loop0_82_type Parser/parser.c 405;" d file: +_loop0_86_rule Parser/parser.c /^_loop0_86_rule(Parser *p)$/;" f file: +_loop0_86_type Parser/parser.c 409;" d file: +_loop0_92_rule Parser/parser.c /^_loop0_92_rule(Parser *p)$/;" f file: +_loop0_92_type Parser/parser.c 415;" d file: +_loop0_99_rule Parser/parser.c /^_loop0_99_rule(Parser *p)$/;" f file: +_loop0_99_type Parser/parser.c 423;" d file: +_loop1_102_rule Parser/parser.c /^_loop1_102_rule(Parser *p)$/;" f file: +_loop1_102_type Parser/parser.c 426;" d file: +_loop1_104_rule Parser/parser.c /^_loop1_104_rule(Parser *p)$/;" f file: +_loop1_104_type Parser/parser.c 428;" d file: +_loop1_105_rule Parser/parser.c /^_loop1_105_rule(Parser *p)$/;" f file: +_loop1_105_type Parser/parser.c 429;" d file: +_loop1_106_rule Parser/parser.c /^_loop1_106_rule(Parser *p)$/;" f file: +_loop1_106_type Parser/parser.c 430;" d file: +_loop1_108_rule Parser/parser.c /^_loop1_108_rule(Parser *p)$/;" f file: +_loop1_108_type Parser/parser.c 432;" d file: +_loop1_110_rule Parser/parser.c /^_loop1_110_rule(Parser *p)$/;" f file: +_loop1_110_type Parser/parser.c 434;" d file: +_loop1_112_rule Parser/parser.c /^_loop1_112_rule(Parser *p)$/;" f file: +_loop1_112_type Parser/parser.c 436;" d file: +_loop1_115_rule Parser/parser.c /^_loop1_115_rule(Parser *p)$/;" f file: +_loop1_115_type Parser/parser.c 439;" d file: +_loop1_119_rule Parser/parser.c /^_loop1_119_rule(Parser *p)$/;" f file: +_loop1_119_type Parser/parser.c 443;" d file: +_loop1_137_rule Parser/parser.c /^_loop1_137_rule(Parser *p)$/;" f file: +_loop1_137_type Parser/parser.c 461;" d file: +_loop1_15_rule Parser/parser.c /^_loop1_15_rule(Parser *p)$/;" f file: +_loop1_15_type Parser/parser.c 339;" d file: +_loop1_171_rule Parser/parser.c /^_loop1_171_rule(Parser *p)$/;" f file: +_loop1_171_type Parser/parser.c 495;" d file: +_loop1_176_rule Parser/parser.c /^_loop1_176_rule(Parser *p)$/;" f file: +_loop1_176_type Parser/parser.c 500;" d file: +_loop1_183_rule Parser/parser.c /^_loop1_183_rule(Parser *p)$/;" f file: +_loop1_183_type Parser/parser.c 507;" d file: +_loop1_194_rule Parser/parser.c /^_loop1_194_rule(Parser *p)$/;" f file: +_loop1_194_type Parser/parser.c 518;" d file: +_loop1_195_rule Parser/parser.c /^_loop1_195_rule(Parser *p)$/;" f file: +_loop1_195_type Parser/parser.c 519;" d file: +_loop1_214_rule Parser/parser.c /^_loop1_214_rule(Parser *p)$/;" f file: +_loop1_214_type Parser/parser.c 538;" d file: +_loop1_217_rule Parser/parser.c /^_loop1_217_rule(Parser *p)$/;" f file: +_loop1_217_type Parser/parser.c 541;" d file: +_loop1_26_rule Parser/parser.c /^_loop1_26_rule(Parser *p)$/;" f file: +_loop1_26_type Parser/parser.c 350;" d file: +_loop1_33_rule Parser/parser.c /^_loop1_33_rule(Parser *p)$/;" f file: +_loop1_33_type Parser/parser.c 357;" d file: +_loop1_40_rule Parser/parser.c /^_loop1_40_rule(Parser *p)$/;" f file: +_loop1_40_type Parser/parser.c 364;" d file: +_loop1_42_rule Parser/parser.c /^_loop1_42_rule(Parser *p)$/;" f file: +_loop1_42_type Parser/parser.c 366;" d file: +_loop1_43_rule Parser/parser.c /^_loop1_43_rule(Parser *p)$/;" f file: +_loop1_43_type Parser/parser.c 367;" d file: +_loop1_44_rule Parser/parser.c /^_loop1_44_rule(Parser *p)$/;" f file: +_loop1_44_type Parser/parser.c 368;" d file: +_loop1_46_rule Parser/parser.c /^_loop1_46_rule(Parser *p)$/;" f file: +_loop1_46_type Parser/parser.c 370;" d file: +_loop1_48_rule Parser/parser.c /^_loop1_48_rule(Parser *p)$/;" f file: +_loop1_48_type Parser/parser.c 372;" d file: +_loop1_4_rule Parser/parser.c /^_loop1_4_rule(Parser *p)$/;" f file: +_loop1_4_type Parser/parser.c 328;" d file: +_loop1_51_rule Parser/parser.c /^_loop1_51_rule(Parser *p)$/;" f file: +_loop1_51_type Parser/parser.c 375;" d file: +_loop1_61_rule Parser/parser.c /^_loop1_61_rule(Parser *p)$/;" f file: +_loop1_61_type Parser/parser.c 385;" d file: +_loop1_62_rule Parser/parser.c /^_loop1_62_rule(Parser *p)$/;" f file: +_loop1_62_type Parser/parser.c 386;" d file: +_loop1_65_rule Parser/parser.c /^_loop1_65_rule(Parser *p)$/;" f file: +_loop1_65_type Parser/parser.c 389;" d file: +_loop1_83_rule Parser/parser.c /^_loop1_83_rule(Parser *p)$/;" f file: +_loop1_83_type Parser/parser.c 407;" d file: +_loop1_84_rule Parser/parser.c /^_loop1_84_rule(Parser *p)$/;" f file: +_loop1_84_type Parser/parser.c 408;" d file: +_loop1_87_rule Parser/parser.c /^_loop1_87_rule(Parser *p)$/;" f file: +_loop1_87_type Parser/parser.c 411;" d file: +_loop1_88_rule Parser/parser.c /^_loop1_88_rule(Parser *p)$/;" f file: +_loop1_88_type Parser/parser.c 412;" d file: +_loop1_89_rule Parser/parser.c /^_loop1_89_rule(Parser *p)$/;" f file: +_loop1_89_type Parser/parser.c 413;" d file: +_loop_factory Lib/asyncio/events.py /^ _loop_factory = None$/;" v class:BaseDefaultEventLoopPolicy +_loop_factory Lib/asyncio/unix_events.py /^ _loop_factory = _UnixSelectorEventLoop$/;" v class:_UnixDefaultEventLoopPolicy +_loop_factory Lib/asyncio/windows_events.py /^ _loop_factory = ProactorEventLoop$/;" v class:WindowsProactorEventLoopPolicy +_loop_factory Lib/asyncio/windows_events.py /^ _loop_factory = SelectorEventLoop$/;" v class:WindowsSelectorEventLoopPolicy +_loop_reading Lib/asyncio/proactor_events.py /^ def _loop_reading(self, fut=None):$/;" m class:_ProactorDatagramTransport +_loop_reading Lib/asyncio/proactor_events.py /^ def _loop_reading(self, fut=None):$/;" m class:_ProactorReadPipeTransport +_loop_self_reading Lib/asyncio/proactor_events.py /^ def _loop_self_reading(self, f=None):$/;" m class:BaseProactorEventLoop +_loop_writing Lib/asyncio/proactor_events.py /^ def _loop_writing(self, f=None, data=None):$/;" m class:_ProactorBaseWritePipeTransport +_loop_writing Lib/asyncio/proactor_events.py /^ def _loop_writing(self, fut=None):$/;" m class:_ProactorDatagramTransport +_loopback_network Lib/ipaddress.py /^ _loopback_network = IPv4Network('127.0.0.0\/8')$/;" v class:_IPv4Constants +_lower_bound_zeta Modules/_decimal/libmpdec/mpdecimal.c /^_lower_bound_zeta(const mpd_t *x, uint32_t *status)$/;" f file: +_lru_cache_wrapper Lib/functools.py /^def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo):$/;" f +_lsprof_Profiler_getstats Modules/clinic/_lsprof.c.h /^_lsprof_Profiler_getstats(ProfilerObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_lsprof_Profiler_getstats_impl Modules/_lsprof.c /^_lsprof_Profiler_getstats_impl(ProfilerObject *self, PyTypeObject *cls)$/;" f file: +_lsprof_clear Modules/_lsprof.c /^_lsprof_clear(PyObject *module)$/;" f file: +_lsprof_exec Modules/_lsprof.c /^_lsprof_exec(PyObject *module)$/;" f file: +_lsprof_free Modules/_lsprof.c /^_lsprof_free(void *module)$/;" f file: +_lsprof_get_state Modules/_lsprof.c /^_lsprof_get_state(PyObject *module)$/;" f file: +_lsprof_profiler_type_spec Modules/_lsprof.c /^static PyType_Spec _lsprof_profiler_type_spec = {$/;" v file: +_lsprof_profiler_type_spec_slots Modules/_lsprof.c /^static PyType_Slot _lsprof_profiler_type_spec_slots[] = {$/;" v file: +_lsprof_state Modules/_lsprof.c /^} _lsprof_state;$/;" t typeref:struct:__anon363 file: +_lsprof_traverse Modules/_lsprof.c /^_lsprof_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_lsprofmodule Modules/_lsprof.c /^static struct PyModuleDef _lsprofmodule = {$/;" v typeref:struct:PyModuleDef file: +_lsprofslots Modules/_lsprof.c /^static PyModuleDef_Slot _lsprofslots[] = {$/;" v file: +_lt_from_ge Lib/functools.py /^def _lt_from_ge(self, other):$/;" f +_lt_from_gt Lib/functools.py /^def _lt_from_gt(self, other):$/;" f +_lt_from_le Lib/functools.py /^def _lt_from_le(self, other):$/;" f +_lzma_LZMACompressor_compress Modules/clinic/_lzmamodule.c.h /^_lzma_LZMACompressor_compress(Compressor *self, PyObject *arg)$/;" f +_lzma_LZMACompressor_compress_impl Modules/_lzmamodule.c /^_lzma_LZMACompressor_compress_impl(Compressor *self, Py_buffer *data)$/;" f file: +_lzma_LZMACompressor_flush Modules/clinic/_lzmamodule.c.h /^_lzma_LZMACompressor_flush(Compressor *self, PyObject *Py_UNUSED(ignored))$/;" f +_lzma_LZMACompressor_flush_impl Modules/_lzmamodule.c /^_lzma_LZMACompressor_flush_impl(Compressor *self)$/;" f file: +_lzma_LZMADecompressor Modules/clinic/_lzmamodule.c.h /^_lzma_LZMADecompressor(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +_lzma_LZMADecompressor_decompress Modules/clinic/_lzmamodule.c.h /^_lzma_LZMADecompressor_decompress(Decompressor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_lzma_LZMADecompressor_decompress_impl Modules/_lzmamodule.c /^_lzma_LZMADecompressor_decompress_impl(Decompressor *self, Py_buffer *data,$/;" f file: +_lzma_LZMADecompressor_impl Modules/_lzmamodule.c /^_lzma_LZMADecompressor_impl(PyTypeObject *type, int format,$/;" f file: +_lzma__decode_filter_properties Modules/clinic/_lzmamodule.c.h /^_lzma__decode_filter_properties(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_lzma__decode_filter_properties_impl Modules/_lzmamodule.c /^_lzma__decode_filter_properties_impl(PyObject *module, lzma_vli filter_id,$/;" f file: +_lzma__encode_filter_properties Modules/_lzmamodule.c /^_lzma__encode_filter_properties(PyObject *module, PyObject *arg)$/;" f file: +_lzma__encode_filter_properties_impl Modules/_lzmamodule.c /^_lzma__encode_filter_properties_impl(PyObject *module, lzma_filter filter)$/;" f file: +_lzma_is_check_supported Modules/clinic/_lzmamodule.c.h /^_lzma_is_check_supported(PyObject *module, PyObject *arg)$/;" f +_lzma_is_check_supported_impl Modules/_lzmamodule.c /^_lzma_is_check_supported_impl(PyObject *module, int check_id)$/;" f file: +_lzma_state Modules/_lzmamodule.c /^} _lzma_state;$/;" t typeref:struct:__anon293 file: +_lzmamodule Modules/_lzmamodule.c /^static PyModuleDef _lzmamodule = {$/;" v file: +_m Lib/types.py /^ def _m(self): pass$/;" m class:_C +_mac_ver_xml Lib/platform.py /^def _mac_ver_xml():$/;" f +_magic_id_count Lib/xml/dom/minidom.py /^ _magic_id_count = 0$/;" v class:Document +_magic_id_nodes Lib/xml/dom/minidom.py /^ _magic_id_nodes = 0$/;" v class:Element +_magic_re Lib/tkinter/__init__.py /^_magic_re = re.compile(r'([\\\\{}])')$/;" v +_magics Lib/unittest/mock.py /^_magics = {$/;" v +_main Lib/ensurepip/__init__.py /^def _main(argv=None):$/;" f +_main Lib/ensurepip/_uninstall.py /^def _main(argv=None):$/;" f +_main Lib/inspect.py /^def _main():$/;" f +_main Lib/mimetypes.py /^def _main():$/;" f +_main Lib/multiprocessing/spawn.py /^def _main(fd, parent_sentinel):$/;" f +_main Lib/pyclbr.py /^def _main():$/;" f +_main Lib/sysconfig.py /^def _main():$/;" f +_main Lib/test/libregrtest/main.py /^ def _main(self, tests, kwargs):$/;" m class:Regrtest +_main Lib/test/regrtest.py /^def _main():$/;" f +_main_interpreter Include/internal/pycore_runtime.h /^ PyInterpreterState _main_interpreter;$/;" m struct:pyruntimestate +_main_thread Lib/threading.py /^_main_thread = _MainThread()$/;" v +_maintain_pool Lib/multiprocessing/pool.py /^ def _maintain_pool(ctx, Process, processes, pool, inqueue, outqueue,$/;" m class:Pool +_maintain_shutdown_locks Lib/threading.py /^def _maintain_shutdown_locks():$/;" f +_make Lib/collections/__init__.py /^ def _make(cls, iterable):$/;" f function:namedtuple +_make Lib/platform.py /^ def _make(cls, iterable):$/;" m class:uname_result +_make Tools/c-analyzer/c_parser/info.py /^ def _make(cls, iterable):$/;" m class:DeclID +_makeLoader Lib/unittest/loader.py /^def _makeLoader(prefix, sortUsing, suiteClass=None, testNamePatterns=None):$/;" f +_makeResult Lib/test/test_unittest/test_runner.py /^ def _makeResult(self):$/;" m class:Test_TextTestRunner.test_startTestRun_stopTestRun_called.LoggingRunner +_makeResult Lib/test/test_unittest/test_runner.py /^ def _makeResult(self):$/;" m class:Test_TextTestRunner.test_works_with_result_without_startTestRun_stopTestRun.Runner +_makeResult Lib/unittest/runner.py /^ def _makeResult(self):$/;" m class:TextTestRunner +_make_2000_lines Tools/stringbench/stringbench.py /^def _make_2000_lines():$/;" f +_make_audio Lib/test/test_email/test_email.py /^ def _make_audio(self, ext):$/;" m class:TestMIMEAudio +_make_autocomplete_window Lib/idlelib/autocomplete.py /^ def _make_autocomplete_window(self): # Makes mocking easier.$/;" m class:AutoComplete +_make_blanks Lib/idlelib/editor.py /^ def _make_blanks(self, n):$/;" m class:EditorWindow +_make_blanks Lib/idlelib/idle_test/test_format.py /^ _make_blanks = EditorWindow._make_blanks$/;" v class:DummyEditwin +_make_body Lib/test/test_httplib.py /^ def _make_body(self, empty_lines=False):$/;" m class:TransferEncodingTest +_make_boundary Lib/email/generator.py /^ def _make_boundary(cls, text=None):$/;" m class:Generator +_make_boundary Lib/email/generator.py /^_make_boundary = Generator._make_boundary$/;" v +_make_call Modules/_testcapimodule.c /^_make_call(void *callable)$/;" f file: +_make_call_from_thread Modules/_testcapimodule.c /^_make_call_from_thread(void *callable)$/;" f file: +_make_callback Lib/test/test_asyncio/test_futures.py /^ def _make_callback(self, bag, thing):$/;" m class:BaseFutureDoneCallbackTests +_make_cancelled_error Lib/asyncio/futures.py /^ def _make_cancelled_error(self):$/;" m class:Future +_make_child_relpath Lib/pathlib.py /^ def _make_child_relpath(self, name):$/;" m class:Path +_make_class_unpicklable Lib/enum.py /^def _make_class_unpicklable(obj):$/;" f +_make_datagram_transport Lib/asyncio/base_events.py /^ def _make_datagram_transport(self, sock, protocol,$/;" m class:BaseEventLoop +_make_datagram_transport Lib/asyncio/proactor_events.py /^ def _make_datagram_transport(self, sock, protocol,$/;" m class:BaseProactorEventLoop +_make_datagram_transport Lib/asyncio/selector_events.py /^ def _make_datagram_transport(self, sock, protocol,$/;" m class:BaseSelectorEventLoop +_make_duplex_pipe_transport Lib/asyncio/proactor_events.py /^ def _make_duplex_pipe_transport(self, sock, protocol, waiter=None,$/;" m class:BaseProactorEventLoop +_make_elem_with_children Lib/test/test_xml_etree.py /^ def _make_elem_with_children(self, numchildren):$/;" m class:ElementSlicingTest +_make_empty_waiter Lib/asyncio/proactor_events.py /^ def _make_empty_waiter(self):$/;" m class:_ProactorBaseWritePipeTransport +_make_empty_waiter Lib/asyncio/selector_events.py /^ def _make_empty_waiter(self):$/;" m class:_SelectorSocketTransport +_make_failed_import_test Lib/unittest/loader.py /^def _make_failed_import_test(name, suiteClass):$/;" f +_make_failed_load_tests Lib/unittest/loader.py /^def _make_failed_load_tests(name, exception, suiteClass):$/;" f +_make_failed_test Lib/unittest/loader.py /^def _make_failed_test(methodname, exception, suiteClass, message):$/;" f +_make_filename Lib/multiprocessing/shared_memory.py /^def _make_filename():$/;" f +_make_global_funcs Lib/turtle.py /^def _make_global_funcs(functions, cls, obj, init, docrevise):$/;" f +_make_illegal_wrapper Lib/test/test_io.py /^ def _make_illegal_wrapper():$/;" f function:TextIOWrapperTest.test_illegal_decoder +_make_image Lib/test/test_email/test_email.py /^ def _make_image(self, ext):$/;" m class:TestMIMEImage +_make_inheritable Lib/subprocess.py /^ def _make_inheritable(self, handle):$/;" f function:Popen._on_error_fd_closer +_make_install Tools/ssl/multissltests.py /^ def _make_install(self):$/;" m class:AbstractBuilder +_make_invoke_excepthook Lib/threading.py /^def _make_invoke_excepthook():$/;" f +_make_iterencode Lib/json/encoder.py /^def _make_iterencode(markers, _default, _encoder, _indent, _floatstr,$/;" f +_make_key Lib/functools.py /^def _make_key(args, kwds, typed,$/;" f +_make_kwargs Parser/action_helpers.c /^_make_kwargs(Parser *p, StarEtc *star_etc,$/;" f file: +_make_launch_script Lib/test/test_multiprocessing_main_handling.py /^def _make_launch_script(script_dir, script_basename, module_name, path=None):$/;" f +_make_line Lib/difflib.py /^ def _make_line(lines, format_key, side, num_lines=[0,0]):$/;" f function:_mdiff +_make_map Lib/test/test_exception_hierarchy.py /^ def _make_map(s):$/;" m class:HierarchyTest +_make_message Lib/test/test_email/__init__.py /^ def _make_message(self):$/;" m class:TestEmailBase +_make_methods Lib/multiprocessing/synchronize.py /^ def _make_methods(self):$/;" m class:Condition +_make_methods Lib/multiprocessing/synchronize.py /^ def _make_methods(self):$/;" m class:SemLock +_make_mock_fork Lib/test/test_pty.py /^ def _make_mock_fork(self, pid):$/;" m class:SmallPtyTests +_make_msg Lib/test/test_email/test_policy.py /^ def _make_msg(self, source='Subject: test\\n\\n', policy=None):$/;" m class:TestPolicyPropagation +_make_multipart Lib/email/message.py /^ def _make_multipart(self, subtype, disallowed_subtypes, boundary):$/;" m class:MIMEPart +_make_name Lib/multiprocessing/synchronize.py /^ def _make_name():$/;" m class:SemLock +_make_name PC/layout/support/filesets.py /^ def _make_name(self, f):$/;" m class:FileNameSet +_make_name PC/layout/support/filesets.py /^ def _make_name(self, f):$/;" m class:FileStemSet +_make_name PC/layout/support/filesets.py /^ def _make_name(self, f):$/;" m class:FileSuffixSet +_make_netmask Lib/ipaddress.py /^ def _make_netmask(cls, arg):$/;" m class:_BaseV4 +_make_netmask Lib/ipaddress.py /^ def _make_netmask(cls, arg):$/;" m class:_BaseV6 +_make_nmtuple Lib/typing.py /^def _make_nmtuple(name, types, module, defaults = ()):$/;" f +_make_pending_calls Python/ceval_gil.c /^_make_pending_calls(struct _pending_calls *pending)$/;" f file: +_make_pkg Lib/test/test_runpy.py /^ def _make_pkg(self, source, depth, mod_base="runpy_test",$/;" m class:RunModuleTestCase +_make_posargs Parser/action_helpers.c /^_make_posargs(Parser *p,$/;" f file: +_make_posdefaults Parser/action_helpers.c /^_make_posdefaults(Parser *p,$/;" f file: +_make_posonlyargs Parser/action_helpers.c /^_make_posonlyargs(Parser *p,$/;" f file: +_make_prefix Lib/difflib.py /^ def _make_prefix(self):$/;" m class:HtmlDiff +_make_read_pipe_transport Lib/asyncio/base_events.py /^ def _make_read_pipe_transport(self, pipe, protocol, waiter=None,$/;" m class:BaseEventLoop +_make_read_pipe_transport Lib/asyncio/proactor_events.py /^ def _make_read_pipe_transport(self, sock, protocol, waiter=None,$/;" m class:BaseProactorEventLoop +_make_read_pipe_transport Lib/asyncio/unix_events.py /^ def _make_read_pipe_transport(self, pipe, protocol, waiter=None,$/;" m class:_UnixSelectorEventLoop +_make_record_async Lib/test/test_logging.py /^ async def _make_record_async(self, assertion):$/;" m class:LogRecordTest +_make_relax_case Lib/importlib/_bootstrap_external.py /^def _make_relax_case():$/;" f +_make_selector Lib/pathlib.py /^def _make_selector(pattern_parts, flavour, case_sensitive):$/;" f +_make_self_pipe Lib/asyncio/proactor_events.py /^ def _make_self_pipe(self):$/;" m class:BaseProactorEventLoop +_make_self_pipe Lib/asyncio/selector_events.py /^ def _make_self_pipe(self):$/;" m class:BaseSelectorEventLoop +_make_self_pipe Lib/test/test_asyncio/test_selector_events.py /^ def _make_self_pipe(self):$/;" m class:BaseSelectorEventLoopTests.test_close.EventLoop +_make_self_pipe Lib/test/test_asyncio/test_selector_events.py /^ def _make_self_pipe(self):$/;" m class:TestBaseSelectorEventLoop +_make_skipped_test Lib/unittest/loader.py /^def _make_skipped_test(methodname, exception, suiteClass):$/;" f +_make_socket_transport Lib/asyncio/base_events.py /^ def _make_socket_transport(self, sock, protocol, waiter=None, *,$/;" m class:BaseEventLoop +_make_socket_transport Lib/asyncio/proactor_events.py /^ def _make_socket_transport(self, sock, protocol, waiter=None,$/;" m class:BaseProactorEventLoop +_make_socket_transport Lib/asyncio/selector_events.py /^ def _make_socket_transport(self, sock, protocol, waiter=None, *,$/;" m class:BaseSelectorEventLoop +_make_ssl_server Lib/test/test_asyncio/test_events.py /^ def _make_ssl_server(self, factory, certfile, keyfile=None):$/;" m class:EventLoopTestsMixin +_make_ssl_transport Lib/asyncio/base_events.py /^ def _make_ssl_transport($/;" m class:BaseEventLoop +_make_ssl_transport Lib/asyncio/proactor_events.py /^ def _make_ssl_transport($/;" m class:BaseProactorEventLoop +_make_ssl_transport Lib/asyncio/selector_events.py /^ def _make_ssl_transport($/;" m class:BaseSelectorEventLoop +_make_ssl_unix_server Lib/test/test_asyncio/test_events.py /^ def _make_ssl_unix_server(self, factory, certfile, keyfile=None):$/;" m class:EventLoopTestsMixin +_make_std_err_msg Lib/test/test_statistics.py /^ def _make_std_err_msg(first, second, tol, rel, idx):$/;" m class:NumericTestCase +_make_subprocess_transport Lib/asyncio/base_events.py /^ async def _make_subprocess_transport(self, protocol, args, shell,$/;" m class:BaseEventLoop +_make_subprocess_transport Lib/asyncio/unix_events.py /^ async def _make_subprocess_transport(self, protocol, args, shell,$/;" m class:_UnixSelectorEventLoop +_make_subprocess_transport Lib/asyncio/windows_events.py /^ async def _make_subprocess_transport(self, protocol, args, shell,$/;" m class:ProactorEventLoop +_make_substitution Lib/typing.py /^ def _make_substitution(self, args, new_arg_by_param):$/;" m class:_GenericAlias +_make_subtype_test_message Lib/test/test_email/test_message.py /^ def _make_subtype_test_message(self, subtype):$/;" m class:TestEmailMessageBase +_make_tarball Lib/shutil.py /^def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,$/;" f +_make_test_archive Lib/test/test_tarfile.py /^ def _make_test_archive(filename_1, dirname_1, filename_2):$/;" m class:NumericOwnerTest +_make_test_file Lib/test/test_mmap.py /^ def _make_test_file(self, num_zeroes, tail):$/;" m class:LargeMmapTests +_make_test_object Lib/test/test_capi/test_structmembers.py /^def _make_test_object(cls):$/;" f +_make_test_script Lib/test/test_cmd_line_script.py /^def _make_test_script(script_dir, script_basename, source=test_source):$/;" f +_make_test_script Lib/test/test_multiprocessing_main_handling.py /^def _make_test_script(script_dir, script_basename,$/;" f +_make_test_script Lib/test/test_runpy.py /^ def _make_test_script(self, script_dir, script_basename,$/;" m class:RunPathTestCase +_make_test_zip_pkg Lib/test/test_cmd_line_script.py /^def _make_test_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,$/;" f +_make_test_zip_pkg Lib/test/test_multiprocessing_main_handling.py /^def _make_test_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,$/;" f +_make_tk_calltip_window Lib/idlelib/calltip.py /^ def _make_tk_calltip_window(self):$/;" m class:Calltip +_make_tk_calltip_window Lib/idlelib/idle_test/test_calltip.py /^ def _make_tk_calltip_window(self):$/;" m class:WrappedCalltip +_make_top_and_button Lib/idlelib/idle_test/test_tooltip.py /^def _make_top_and_button(testobj):$/;" f +_make_unbound_method Lib/functools.py /^ def _make_unbound_method(self):$/;" m class:partialmethod +_make_union Lib/typing.py /^def _make_union(left, right):$/;" f +_make_unix_server Lib/test/test_asyncio/test_events.py /^ def _make_unix_server(self, factory, **kwargs):$/;" m class:EventLoopTestsMixin +_make_very_illegal_wrapper Lib/test/test_io.py /^ def _make_very_illegal_wrapper(getstate_ret_val):$/;" f function:TextIOWrapperTest.test_illegal_decoder +_make_write_pipe_transport Lib/asyncio/base_events.py /^ def _make_write_pipe_transport(self, pipe, protocol, waiter=None,$/;" m class:BaseEventLoop +_make_write_pipe_transport Lib/asyncio/proactor_events.py /^ def _make_write_pipe_transport(self, sock, protocol, waiter=None,$/;" m class:BaseProactorEventLoop +_make_write_pipe_transport Lib/asyncio/unix_events.py /^ def _make_write_pipe_transport(self, pipe, protocol, waiter=None,$/;" m class:_UnixSelectorEventLoop +_make_zipfile Lib/shutil.py /^def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0,$/;" f +_makecodes Lib/re/_constants.py /^def _makecodes(*names):$/;" f +_malloc Lib/multiprocessing/heap.py /^ def _malloc(self, size):$/;" m class:Heap +_mangle_from_ Lib/mailbox.py /^ _mangle_from_ = True$/;" v class:_mboxMMDF +_mangle_from_ Lib/mailbox.py /^ _mangle_from_ = True$/;" v class:mbox +_map Lib/test/test_exception_hierarchy.py /^ _map = _make_map(_pep_map)$/;" v class:HierarchyTest +_map_async Lib/multiprocessing/pool.py /^ def _map_async(self, func, iterable, mapper, chunksize=None, callback=None,$/;" m class:Pool +_mapdict_values Lib/tkinter/ttk.py /^def _mapdict_values(items):$/;" f +_mapping Lib/lib2to3/fixes/fix_unicode.py /^_mapping = {"unichr" : "chr", "unicode" : "str"}$/;" v +_markedsectionclose Lib/_markupbase.py /^_markedsectionclose = re.compile(r']\\s*]\\s*>')$/;" v +_marshaled_dispatch Lib/test/test_xmlrpc.py /^ def _marshaled_dispatch(self, data, dispatch_method=None, path=None):$/;" m class:http_multi_server.BrokenDispatcher +_marshaled_dispatch Lib/xmlrpc/server.py /^ def _marshaled_dispatch(self, data, dispatch_method = None, path = None):$/;" m class:MultiPathXMLRPCServer +_marshaled_dispatch Lib/xmlrpc/server.py /^ def _marshaled_dispatch(self, data, dispatch_method = None, path = None):$/;" m class:SimpleXMLRPCDispatcher +_match Lib/imaplib.py /^ def _match(self, cre, s):$/;" m class:IMAP4 +_match Lib/tracemalloc.py /^ def _match(self, trace):$/;" m class:BaseFilter +_match Lib/tracemalloc.py /^ def _match(self, trace):$/;" m class:DomainFilter +_match Lib/tracemalloc.py /^ def _match(self, trace):$/;" m class:Filter +_match Parser/asdl.py /^ def _match(self, kind):$/;" m class:ASDLParser +_match_abbrev Lib/optparse.py /^def _match_abbrev(s, wordmap):$/;" f +_match_argument Lib/argparse.py /^ def _match_argument(self, action, arg_strings_pattern):$/;" m class:ArgumentParser +_match_arguments_partial Lib/argparse.py /^ def _match_arguments_partial(self, actions, arg_strings_pattern):$/;" m class:ArgumentParser +_match_case Include/internal/pycore_ast.h /^struct _match_case {$/;" s +_match_frame Lib/tracemalloc.py /^ def _match_frame(self, filename, lineno):$/;" m class:Filter +_match_frame_impl Lib/tracemalloc.py /^ def _match_frame_impl(self, filename, lineno):$/;" m class:Filter +_match_long_opt Lib/optparse.py /^ def _match_long_opt(self, opt):$/;" m class:OptionParser +_match_number_unicode Modules/_json.c /^_match_number_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t start, Py_ssize_t *next_idx_ptr) {$/;" f file: +_match_path Lib/unittest/loader.py /^ def _match_path(self, path, full_path, pattern):$/;" m class:TestLoader +_match_tail Tools/c-analyzer/c_common/fsutil.py /^def _match_tail(path, tail):$/;" f +_match_test_func Lib/test/support/__init__.py /^_match_test_func = None$/;" v +_match_traceback Lib/tracemalloc.py /^ def _match_traceback(self, traceback):$/;" m class:Filter +_max_append Lib/email/header.py /^_max_append = email.quoprimime._max_append$/;" v +_max_append Lib/email/quoprimime.py /^def _max_append(L, s, maxlen, extra=''):$/;" f +_max_height_and_y_coords Lib/idlelib/zoomheight.py /^ _max_height_and_y_coords = {}$/;" v class:ZoomHeight +_max_prefixlen Lib/ipaddress.py /^ _max_prefixlen = IPV4LENGTH$/;" v class:_BaseV4 +_max_prefixlen Lib/ipaddress.py /^ _max_prefixlen = IPV6LENGTH$/;" v class:_BaseV6 +_maxdataOK Lib/test/test_shutil.py /^def _maxdataOK():$/;" f +_maxlengths Lib/email/header.py /^ def _maxlengths(self):$/;" m class:_ValueFormatter +_maxoffset Lib/_pydatetime.py /^ _maxoffset = timedelta(hours=24, microseconds=-1)$/;" v class:timezone +_maybe_close_transport Lib/asyncio/subprocess.py /^ def _maybe_close_transport(self):$/;" m class:SubprocessStreamProtocol +_maybe_compile Lib/codeop.py /^def _maybe_compile(compiler, source, filename, symbol):$/;" f +_maybe_open Lib/zipapp.py /^def _maybe_open(archive, mode):$/;" f +_maybe_pause_protocol Lib/asyncio/transports.py /^ def _maybe_pause_protocol(self):$/;" m class:_FlowControlMixin +_maybe_resume_protocol Lib/asyncio/transports.py /^ def _maybe_resume_protocol(self):$/;" m class:_FlowControlMixin +_maybe_resume_transport Lib/asyncio/streams.py /^ def _maybe_resume_transport(self):$/;" m class:StreamReader +_mboxMMDF Lib/mailbox.py /^class _mboxMMDF(_singlefileMailbox):$/;" c +_mboxMMDFMessage Lib/mailbox.py /^class _mboxMMDFMessage(Message):$/;" c +_mbstr_copy_ascii Modules/_decimal/libmpdec/io.c /^_mbstr_copy_ascii(mpd_mbstr_t *dest, const char *src, mpd_ssize_t n)$/;" f file: +_mbstr_copy_char Modules/_decimal/libmpdec/io.c /^_mbstr_copy_char(mpd_mbstr_t *dest, const char *src, mpd_ssize_t n)$/;" f file: +_mbstr_copy_pad Modules/_decimal/libmpdec/io.c /^_mbstr_copy_pad(mpd_mbstr_t *dest, mpd_ssize_t n)$/;" f file: +_mc_extensions Tools/c-analyzer/distutils/_msvccompiler.py /^ _mc_extensions = ['.mc']$/;" v class:MSVCCompiler +_mc_extensions Tools/c-analyzer/distutils/msvc9compiler.py /^ _mc_extensions = ['.mc']$/;" v class:MSVCCompiler +_mc_extensions Tools/c-analyzer/distutils/msvccompiler.py /^ _mc_extensions = ['.mc']$/;" v class:MSVCCompiler +_md5_clear Modules/md5module.c /^_md5_clear(PyObject *module)$/;" f file: +_md5_free Modules/md5module.c /^_md5_free(void *module)$/;" f file: +_md5_md5 Modules/clinic/md5module.c.h /^_md5_md5(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_md5_md5_impl Modules/md5module.c /^_md5_md5_impl(PyObject *module, PyObject *string, int usedforsecurity)$/;" f file: +_md5_slots Modules/md5module.c /^static PyModuleDef_Slot _md5_slots[] = {$/;" v file: +_md5_traverse Modules/md5module.c /^_md5_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_md5module Modules/md5module.c /^static struct PyModuleDef _md5module = {$/;" v typeref:struct:PyModuleDef file: +_mdiff Lib/difflib.py /^def _mdiff(fromlines, tolines, context=None, linejunk=None,$/;" f +_mean_stdev Lib/statistics.py /^def _mean_stdev(data):$/;" f +_memo Parser/pegen.h /^typedef struct _memo {$/;" s +_memory_release Objects/memoryobject.c /^_memory_release(PyMemoryViewObject *self)$/;" f file: +_mesg Lib/imaplib.py /^ def _mesg(self, s, secs=None):$/;" f function:IMAP4._untagged_response +_metaclass Lib/test/test_descr.py /^ class _metaclass(type):$/;" c class:.test_altmro.X +_metaclass Lib/test/test_descr.py /^ class _metaclass(type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +_metavar_formatter Lib/argparse.py /^ def _metavar_formatter(self, action, default_metavar):$/;" m class:HelpFormatter +_method Lib/functools.py /^ def _method(*args, **kwargs):$/;" f function:singledispatchmethod.__get__ +_method Lib/functools.py /^ def _method(cls_or_self, \/, *args, **keywords):$/;" f function:partialmethod._make_unbound_method +_methodHelp Lib/test/test_xmlrpc.py /^ def _methodHelp(self, name):$/;" m class:http_multi_server.TestInstanceClass +_methodHelp Lib/test/test_xmlrpc.py /^ def _methodHelp(self, name):$/;" m class:http_server.TestInstanceClass +_mimetypes_read_windows_registry Lib/mimetypes.py /^ _mimetypes_read_windows_registry = None$/;" v +_min_indent Lib/doctest.py /^ def _min_indent(self, s):$/;" m class:DocTestParser +_minoffset Lib/_pydatetime.py /^ _minoffset = -_maxoffset$/;" v class:timezone +_missing Lib/unittest/mock.py /^_missing = sentinel.MISSING$/;" v +_missing_ Lib/enum.py /^ def _missing_(cls, value):$/;" m class:Enum +_missing_ Lib/enum.py /^ def _missing_(cls, value):$/;" m class:Flag +_missing_ Lib/test/test_enum.py /^ def _missing_(cls, item):$/;" m class:TestSpecial.test_missing_override.Color +_missing_ Lib/test/test_enum.py /^ def _missing_(cls, value):$/;" m class:TestSpecial.test_multiple_mixin_with_common_data_type.CaseInsensitiveStrEnum +_missing_ Lib/test/test_enum.py /^ def _missing_(cls, value):$/;" m class:TestSpecial.test_multiple_mixin_with_common_data_type.LenientStrEnum +_missing_arguments Lib/inspect.py /^def _missing_arguments(f_name, argnames, pos, values):$/;" f +_mk_TestSuite Lib/test/test_unittest/test_suite.py /^def _mk_TestSuite(*names):$/;" f +_mk_bitmap Lib/re/_compiler.py /^def _mk_bitmap(bits, _CODEBITS=_CODEBITS, _int=int):$/;" f +_mkdict Lib/tkinter/font.py /^ def _mkdict(self, args):$/;" m class:Font +_mkproxy Lib/xml/sax/expatreader.py /^ _mkproxy = weakref.proxy$/;" v +_mkproxy Lib/xml/sax/expatreader.py /^ def _mkproxy(o):$/;" f +_mkstemp_inner Lib/tempfile.py /^def _mkstemp_inner(dir, pre, suf, flags, output_type):$/;" f +_mktime Lib/_pydatetime.py /^ def _mktime(self):$/;" m class:datetime +_mm_roti_epi32 Modules/_blake2/impl/blake2s-round.h 32;" d +_mm_roti_epi32 Modules/_blake2/impl/blake2s-round.h 37;" d +_mm_roti_epi64 Modules/_blake2/impl/blake2b-round.h 32;" d +_mm_roti_epi64 Modules/_blake2/impl/blake2b-round.h 39;" d +_mm_set_epi64x Modules/_blake2/impl/blake2b.c /^static inline __m128i _mm_set_epi64x( const uint64_t u1, const uint64_t u0 )$/;" f file: +_mm_set_epi64x Modules/_blake2/impl/blake2s.c /^static inline __m128i _mm_set_epi64x( const uint64_t u1, const uint64_t u0 )$/;" f file: +_mmap Lib/multiprocessing/shared_memory.py /^ _mmap = None$/;" v class:SharedMemory +_mmap_counter Lib/asyncio/windows_utils.py /^_mmap_counter = itertools.count()$/;" v +_mmap_counter Lib/multiprocessing/connection.py /^_mmap_counter = itertools.count()$/;" v +_mock_add_spec Lib/unittest/mock.py /^ def _mock_add_spec(self, spec, spec_set, _spec_as_instance=False,$/;" m class:NonCallableMock +_mock_call Lib/unittest/mock.py /^ def _mock_call(self, \/, *args, **kwargs):$/;" m class:CallableMixin +_mock_candidate_names Lib/test/test_tempfile.py /^def _mock_candidate_names(*names):$/;" f +_mock_check_sig Lib/unittest/mock.py /^ def _mock_check_sig(self, \/, *args, **kwargs):$/;" m class:CallableMixin +_mock_return_value Lib/unittest/mock.py /^ _mock_return_value = DEFAULT$/;" v class:Base +_mock_select Lib/test/test_pty.py /^ def _mock_select(self, rfds, wfds, xfds):$/;" m class:SmallPtyTests +_mock_set_magics Lib/unittest/mock.py /^ def _mock_set_magics(self):$/;" m class:MagicMixin +_mock_side_effect Lib/unittest/mock.py /^ _mock_side_effect = None$/;" v class:Base +_mock_tcsetattr Lib/test/test_pty.py /^ def _mock_tcsetattr(self, fileno, opt, mode):$/;" m class:SmallPtyTests +_mod Include/internal/pycore_ast.h /^struct _mod {$/;" s +_mod Lib/fractions.py /^ def _mod(a, b):$/;" m class:Fraction +_mod_kind Include/internal/pycore_ast.h /^enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,$/;" g +_mode Lib/multiprocessing/shared_memory.py /^ _mode = 0o600$/;" v class:SharedMemory +_mode_ascii Lib/imaplib.py /^ def _mode_ascii(self):$/;" m class:IMAP4 +_mode_utf8 Lib/imaplib.py /^ def _mode_utf8(self):$/;" m class:IMAP4 +_modifier_masks Lib/idlelib/multicall.py /^ _modifier_masks = (MC_CONTROL, MC_ALT, MC_SHIFT, MC_META)$/;" v +_modifier_masks Lib/idlelib/multicall.py /^ _modifier_masks = (MC_SHIFT, MC_CONTROL, MC_OPTION, MC_COMMAND)$/;" v +_modifier_names Lib/idlelib/multicall.py /^_modifier_names = {name: number$/;" v +_modifiers Lib/idlelib/multicall.py /^ _modifiers = (("Control",), ("Alt",), ("Shift",), ("Meta", "M"))$/;" v +_modifiers Lib/idlelib/multicall.py /^ _modifiers = (("Shift",), ("Control",), ("Option",), ("Command",))$/;" v +_modifying Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _modifying;$/;" m class:PythonBootstrapperApplication file: +_modname Lib/trace.py /^def _modname(path):$/;" f +_moduleSetUpFailed Lib/unittest/result.py /^ _moduleSetUpFailed = False$/;" v class:TestResult +_moduleSetUpFailed Lib/unittest/suite.py /^ _moduleSetUpFailed = False$/;" v class:_DebugResult +_module_alias Include/internal/pycore_import.h /^struct _module_alias {$/;" s +_module_and_class Lib/test/test_clinic.py /^ _module_and_class = clinic.Clinic._module_and_class$/;" v class:FakeClinic +_module_and_class Tools/clinic/clinic.py /^ def _module_and_class(self, fields):$/;" m class:Clinic +_module_browser Lib/idlelib/browser.py /^def _module_browser(parent): # htest #$/;" f +_module_browser_spec Lib/idlelib/idle_test/htest.py /^_module_browser_spec = {$/;" v +_module_cleanups Lib/unittest/case.py /^_module_cleanups = []$/;" v +_module_locks Lib/importlib/_bootstrap.py /^_module_locks = {}$/;" v +_module_relative_path Lib/doctest.py /^def _module_relative_path(module, test_path):$/;" f +_module_repr Lib/importlib/_bootstrap.py /^def _module_repr(module):$/;" f +_module_repr_from_spec Lib/importlib/_bootstrap.py /^def _module_repr_from_spec(spec):$/;" f +_module_type Lib/zipimport.py /^_module_type = type(sys)$/;" v +_modules Lib/dbm/__init__.py /^_modules = {}$/;" v +_modules Lib/pyclbr.py /^_modules = {} # Initialize cache of modules we've seen.$/;" v +_modules_by_index_check Python/import.c /^_modules_by_index_check(PyInterpreterState *interp, Py_ssize_t index)$/;" f file: +_modules_by_index_clear_one Python/import.c /^_modules_by_index_clear_one(PyInterpreterState *interp, PyModuleDef *def)$/;" f file: +_modules_by_index_get Python/import.c /^_modules_by_index_get(PyInterpreterState *interp, PyModuleDef *def)$/;" f file: +_modules_by_index_set Python/import.c /^_modules_by_index_set(PyInterpreterState *interp,$/;" f file: +_monitor Lib/logging/handlers.py /^ def _monitor(self):$/;" m class:QueueListener +_monthlen Lib/calendar.py /^def _monthlen(year, month):$/;" f +_monthname Lib/http/cookies.py /^_monthname = [None,$/;" v +_monthname Lib/wsgiref/handlers.py /^_monthname = [None, # Dummy so we can use 1-based month numbers$/;" v +_monthnames Lib/email/_parseaddr.py /^_monthnames = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul',$/;" v +_months Lib/calendar.py /^ _months = [datetime.date(2001, i+1, 1).strftime for i in range(12)]$/;" v class:_localized_month +_mpd_add_pad Modules/_decimal/libmpdec/io.c /^_mpd_add_pad(mpd_mbstr_t *result, const mpd_spec_t *spec, uint32_t *status)$/;" f file: +_mpd_add_sep_dot Modules/_decimal/libmpdec/io.c /^_mpd_add_sep_dot(mpd_mbstr_t *dest,$/;" f file: +_mpd_apply_lconv Modules/_decimal/libmpdec/io.c /^_mpd_apply_lconv(mpd_mbstr_t *result, const mpd_spec_t *spec, uint32_t *status)$/;" f file: +_mpd_apply_round Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_apply_round(mpd_t *dec, mpd_uint_t rnd, const mpd_context_t *ctx,$/;" f file: +_mpd_apply_round_excess Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_apply_round_excess(mpd_t *dec, mpd_uint_t rnd, const mpd_context_t *ctx,$/;" f file: +_mpd_apply_round_fit Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_apply_round_fit(mpd_t *dec, mpd_uint_t rnd, const mpd_context_t *ctx,$/;" f file: +_mpd_base_ndivmod Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_base_ndivmod(mpd_t *q, mpd_t *r, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_baseadd Modules/_decimal/libmpdec/basearith.c /^_mpd_baseadd(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v,$/;" f +_mpd_baseaddto Modules/_decimal/libmpdec/basearith.c /^_mpd_baseaddto(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n)$/;" f +_mpd_basecmp Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_basecmp(mpd_uint_t *big, mpd_uint_t *small, mpd_size_t n, mpd_size_t m,$/;" f file: +_mpd_basedivmod Modules/_decimal/libmpdec/basearith.c /^_mpd_basedivmod(mpd_uint_t *q, mpd_uint_t *r,$/;" f +_mpd_baseincr Modules/_decimal/libmpdec/basearith.c /^_mpd_baseincr(mpd_uint_t *u, mpd_size_t n)$/;" f +_mpd_basemul Modules/_decimal/libmpdec/basearith.c /^_mpd_basemul(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v,$/;" f +_mpd_baseshiftl Modules/_decimal/libmpdec/basearith.c /^_mpd_baseshiftl(mpd_uint_t *dest, mpd_uint_t *src, mpd_size_t n, mpd_size_t m,$/;" f +_mpd_baseshiftr Modules/_decimal/libmpdec/basearith.c /^_mpd_baseshiftr(mpd_uint_t *dest, mpd_uint_t *src, mpd_size_t slen,$/;" f +_mpd_basesub Modules/_decimal/libmpdec/basearith.c /^_mpd_basesub(mpd_uint_t *w, const mpd_uint_t *u, const mpd_uint_t *v,$/;" f +_mpd_basesubfrom Modules/_decimal/libmpdec/basearith.c /^_mpd_basesubfrom(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n)$/;" f +_mpd_bcopy Modules/_decimal/libmpdec/io.c /^_mpd_bcopy(char *dest, const char *src, mpd_ssize_t n)$/;" f file: +_mpd_cap Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_cap(mpd_t *result, const mpd_context_t *ctx)$/;" f file: +_mpd_check_exp Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_check_exp(mpd_t *dec, const mpd_context_t *ctx, uint32_t *status)$/;" f file: +_mpd_check_round Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_check_round(mpd_t *dec, const mpd_context_t *ctx, uint32_t *status)$/;" f file: +_mpd_cmp Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_cmp(const mpd_t *a, const mpd_t *b)$/;" f file: +_mpd_cmp_abs Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_cmp_abs(const mpd_t *a, const mpd_t *b)$/;" f file: +_mpd_cmp_numequal Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_cmp_numequal(const mpd_t *a, const mpd_t *b)$/;" f file: +_mpd_cmp_same_adjexp Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_cmp_same_adjexp(const mpd_t *a, const mpd_t *b)$/;" f file: +_mpd_copy_shared Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_copy_shared(mpd_t *dest, const mpd_t *src)$/;" f file: +_mpd_copy_utf8 Modules/_decimal/libmpdec/io.c /^_mpd_copy_utf8(char dest[5], const char *s)$/;" f file: +_mpd_div_word Modules/_decimal/libmpdec/typearith.h /^_mpd_div_word(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t v, mpd_uint_t d)$/;" f +_mpd_div_words Modules/_decimal/libmpdec/typearith.h /^_mpd_div_words(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo,$/;" f +_mpd_div_words Modules/_decimal/libmpdec/typearith.h /^_mpd_div_words(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t u1, mpd_uint_t u0,$/;" f +_mpd_div_words Modules/_decimal/libmpdec/vcdiv64.asm /^_mpd_div_words PROC$/;" l +_mpd_div_words_r Modules/_decimal/libmpdec/basearith.h /^_mpd_div_words_r(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t hi, mpd_uint_t lo)$/;" f +_mpd_divmod_pow10 Modules/_decimal/libmpdec/typearith.h /^_mpd_divmod_pow10(mpd_uint_t *q, mpd_uint_t *r, mpd_uint_t v, mpd_uint_t exp)$/;" f +_mpd_fix_nan Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_fix_nan(mpd_t *result, const mpd_context_t *ctx)$/;" f file: +_mpd_fntmul Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_fntmul(const mpd_uint_t *u, const mpd_uint_t *v,$/;" f file: +_mpd_get_control87 Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_get_control87(void)$/;" f file: +_mpd_get_exp_iterations Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_get_exp_iterations(const mpd_t *r, mpd_ssize_t p)$/;" f file: +_mpd_get_msdigits Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_get_msdigits(mpd_uint_t *hi, mpd_uint_t *lo, const mpd_t *dec,$/;" f file: +_mpd_get_rnd Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_get_rnd(const mpd_uint_t *data, mpd_ssize_t len, int use_msd)$/;" f file: +_mpd_get_transform_len Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_get_transform_len(mpd_size_t rsize)$/;" f file: +_mpd_getkernel Modules/_decimal/libmpdec/numbertheory.c /^_mpd_getkernel(mpd_uint_t n, int sign, int modnum)$/;" f +_mpd_idiv_word Modules/_decimal/libmpdec/typearith.h /^_mpd_idiv_word(mpd_ssize_t *q, mpd_ssize_t *r, mpd_ssize_t v, mpd_ssize_t d)$/;" f +_mpd_importsize Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_importsize(size_t srclen, uint32_t base)$/;" f file: +_mpd_init_fnt_params Modules/_decimal/libmpdec/numbertheory.c /^_mpd_init_fnt_params(mpd_size_t n, int sign, int modnum)$/;" f +_mpd_init_w3table Modules/_decimal/libmpdec/numbertheory.c /^_mpd_init_w3table(mpd_uint_t w3table[3], int sign, int modnum)$/;" f +_mpd_isallnine Modules/_decimal/libmpdec/basearith.h /^_mpd_isallnine(const mpd_uint_t *data, mpd_ssize_t len)$/;" f +_mpd_isallzero Modules/_decimal/libmpdec/basearith.h /^_mpd_isallzero(const mpd_uint_t *data, mpd_ssize_t len)$/;" f +_mpd_isint Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_isint(const mpd_t *dec)$/;" f file: +_mpd_kmul Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_kmul(const mpd_uint_t *u, const mpd_uint_t *v,$/;" f file: +_mpd_kmul_fnt Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_kmul_fnt(const mpd_uint_t *u, const mpd_uint_t *v,$/;" f file: +_mpd_ln10 Modules/_decimal/libmpdec/mpdecimal.c /^static const mpd_t _mpd_ln10 = {$/;" v file: +_mpd_mul_2_le2 Modules/_decimal/libmpdec/basearith.h /^_mpd_mul_2_le2(mpd_uint_t w[4], mpd_uint_t u[2], mpd_uint_t v[2], mpd_ssize_t m)$/;" f +_mpd_mul_words Modules/_decimal/libmpdec/typearith.h /^_mpd_mul_words(mpd_uint_t *hi, mpd_uint_t *lo, mpd_uint_t a, mpd_uint_t b)$/;" f +_mpd_negate Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_negate(mpd_t *dec)$/;" f file: +_mpd_ptrswap Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_ptrswap(const mpd_t **a, const mpd_t **b)$/;" f file: +_mpd_qadd Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qadd(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qadd_exact Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qadd_exact(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qaddsub Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qaddsub(mpd_t *result, const mpd_t *a, const mpd_t *b, uint8_t sign_b,$/;" f file: +_mpd_qaddsub_inf Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qaddsub_inf(mpd_t *result, const mpd_t *a, const mpd_t *b, uint8_t sign_b,$/;" f file: +_mpd_qdiv Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qdiv(int action, mpd_t *q, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qdiv_inf Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qdiv_inf(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qdivmod Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qdivmod(mpd_t *q, mpd_t *r, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qexp Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qexp(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f file: +_mpd_qexp_check_one Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qexp_check_one(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f file: +_mpd_qget_uint Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qget_uint(int use_sign, const mpd_t *a, uint32_t *status)$/;" f file: +_mpd_qinvroot Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qinvroot(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f file: +_mpd_qln Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qln(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f file: +_mpd_qlog10 Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qlog10(int action, mpd_t *result, const mpd_t *a,$/;" f file: +_mpd_qmul Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qmul(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qmul_exact Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qmul_exact(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qmul_inf Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qmul_inf(mpd_t *result, const mpd_t *a, const mpd_t *b, uint32_t *status)$/;" f file: +_mpd_qpow_int Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qpow_int(mpd_t *result, const mpd_t *base, const mpd_t *exp,$/;" f file: +_mpd_qpow_mpd Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qpow_mpd(mpd_t *result, mpd_t *tbase, mpd_t *texp, uint8_t resultsign,$/;" f file: +_mpd_qpow_real Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qpow_real(mpd_t *result, const mpd_t *base, const mpd_t *exp,$/;" f file: +_mpd_qpow_uint Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qpow_uint(mpd_t *result, const mpd_t *base, mpd_uint_t exp,$/;" f file: +_mpd_qpowmod_uint Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qpowmod_uint(mpd_t *result, mpd_t *base, mpd_uint_t exp,$/;" f file: +_mpd_qreciprocal Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qreciprocal(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f file: +_mpd_qreciprocal_approx Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qreciprocal_approx(mpd_t *z, const mpd_t *v, uint32_t *status)$/;" f file: +_mpd_qrescale Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qrescale(mpd_t *result, const mpd_t *a, mpd_ssize_t exp,$/;" f file: +_mpd_qround_to_integral Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qround_to_integral(int action, mpd_t *result, const mpd_t *a,$/;" f file: +_mpd_qsqrt Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qsqrt(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f file: +_mpd_qsub Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qsub(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_qsub_exact Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_qsub_exact(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f file: +_mpd_real_size Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_real_size(mpd_uint_t *data, mpd_ssize_t size)$/;" f file: +_mpd_rnd_incr Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_rnd_incr(const mpd_t *dec, mpd_uint_t rnd, const mpd_context_t *ctx)$/;" f file: +_mpd_round Modules/_decimal/_decimal.c /^_mpd_round(mpd_t *result, const mpd_t *a, mpd_ssize_t prec,$/;" f file: +_mpd_round Modules/_decimal/libmpdec/io.c /^_mpd_round(mpd_t *result, const mpd_t *a, mpd_ssize_t prec,$/;" f file: +_mpd_set_control87 Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_set_control87(unsigned short cw)$/;" f file: +_mpd_shortadd Modules/_decimal/libmpdec/basearith.c /^_mpd_shortadd(mpd_uint_t *w, mpd_size_t m, mpd_uint_t v)$/;" f +_mpd_shortadd_b Modules/_decimal/libmpdec/basearith.c /^_mpd_shortadd_b(mpd_uint_t *w, mpd_size_t m, mpd_uint_t v, mpd_uint_t b)$/;" f +_mpd_shortdiv Modules/_decimal/libmpdec/basearith.c /^_mpd_shortdiv(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n, mpd_uint_t v)$/;" f +_mpd_shortdiv_b Modules/_decimal/libmpdec/basearith.c /^_mpd_shortdiv_b(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n,$/;" f +_mpd_shortmul Modules/_decimal/libmpdec/basearith.c /^_mpd_shortmul(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n, mpd_uint_t v)$/;" f +_mpd_shortmul_b Modules/_decimal/libmpdec/basearith.c /^_mpd_shortmul_b(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n,$/;" f +_mpd_shortmul_c Modules/_decimal/libmpdec/basearith.c /^_mpd_shortmul_c(mpd_uint_t *w, const mpd_uint_t *u, mpd_size_t n, mpd_uint_t v)$/;" f +_mpd_singlemul Modules/_decimal/libmpdec/basearith.h /^_mpd_singlemul(mpd_uint_t w[2], mpd_uint_t u, mpd_uint_t v)$/;" f +_mpd_strneq Modules/_decimal/libmpdec/io.c /^_mpd_strneq(const char *s, const char *l, const char *u, size_t n)$/;" f file: +_mpd_strtossize Modules/_decimal/libmpdec/mpdecimal.h 138;" d +_mpd_strtossize Modules/_decimal/libmpdec/mpdecimal.h 183;" d +_mpd_to_string Modules/_decimal/libmpdec/io.c /^_mpd_to_string(char **result, const mpd_t *dec, int flags, mpd_ssize_t dplace)$/;" f file: +_mpd_zeropad Modules/_decimal/libmpdec/mpdecimal.c /^_mpd_zeropad(mpd_t *result, const mpd_context_t *ctx, uint32_t *status)$/;" f file: +_msg Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def _msg(cls, error, **ignored):$/;" m class:ErrorDirectiveError +_msg Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def _msg(cls, error, **ignored):$/;" m class:PreprocessorFailure +_msg Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def _msg(cls, expected, **ignored):$/;" m class:OSMismatchError +_msg Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def _msg(cls, filename, reason, **ignored):$/;" m class:PreprocessorError +_msg Tools/c-analyzer/c_parser/preprocessor/errors.py /^ def _msg(cls, missing, **ignored):$/;" m class:MissingDependenciesError +_msg_and_obj Lib/test/test_email/test_email.py /^ def _msg_and_obj(self, filename):$/;" m class:TestSigned +_msg_callback Lib/ssl.py /^ def _msg_callback(self):$/;" m class:SSLContext +_msg_callback Lib/ssl.py /^ def _msg_callback(self, callback):$/;" m class:SSLContext +_msg_val_func Lib/pdb.py /^ def _msg_val_func(self, arg, func):$/;" m class:Pdb +_msgobj Lib/test/test_email/__init__.py /^ def _msgobj(self, filename):$/;" m class:TestEmailBase +_msgobj Lib/test/test_email/test_email.py /^ def _msgobj(self, filename):$/;" m class:BaseTestBytesGeneratorIdempotent +_msgobj Lib/test/test_email/test_email.py /^ def _msgobj(self, filename):$/;" m class:TestIdempotent +_msgobj Lib/test/test_email/torture_test.py /^ def _msgobj(self, filename):$/;" m class:TortureBase +_msi_CreateRecord PC/clinic/_msi.c.h /^_msi_CreateRecord(PyObject *module, PyObject *arg)$/;" f +_msi_CreateRecord_impl PC/_msi.c /^_msi_CreateRecord_impl(PyObject *module, int count)$/;" f file: +_msi_Database_Close PC/clinic/_msi.c.h /^_msi_Database_Close(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_Database_Close_impl PC/_msi.c /^_msi_Database_Close_impl(msiobj *self)$/;" f file: +_msi_Database_Commit PC/clinic/_msi.c.h /^_msi_Database_Commit(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_Database_Commit_impl PC/_msi.c /^_msi_Database_Commit_impl(msiobj *self)$/;" f file: +_msi_Database_GetSummaryInformation PC/clinic/_msi.c.h /^_msi_Database_GetSummaryInformation(msiobj *self, PyObject *arg)$/;" f +_msi_Database_GetSummaryInformation_impl PC/_msi.c /^_msi_Database_GetSummaryInformation_impl(msiobj *self, int count)$/;" f file: +_msi_Database_OpenView PC/clinic/_msi.c.h /^_msi_Database_OpenView(msiobj *self, PyObject *arg)$/;" f +_msi_Database_OpenView_impl PC/_msi.c /^_msi_Database_OpenView_impl(msiobj *self, const Py_UNICODE *sql)$/;" f file: +_msi_FCICreate PC/clinic/_msi.c.h /^_msi_FCICreate(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_msi_FCICreate_impl PC/_msi.c /^_msi_FCICreate_impl(PyObject *module, const char *cabname, PyObject *files)$/;" f file: +_msi_OpenDatabase PC/clinic/_msi.c.h /^_msi_OpenDatabase(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_msi_OpenDatabase_impl PC/_msi.c /^_msi_OpenDatabase_impl(PyObject *module, const Py_UNICODE *path, int persist)$/;" f file: +_msi_Record_ClearData PC/clinic/_msi.c.h /^_msi_Record_ClearData(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_Record_ClearData_impl PC/_msi.c /^_msi_Record_ClearData_impl(msiobj *self)$/;" f file: +_msi_Record_GetFieldCount PC/clinic/_msi.c.h /^_msi_Record_GetFieldCount(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_Record_GetFieldCount_impl PC/_msi.c /^_msi_Record_GetFieldCount_impl(msiobj *self)$/;" f file: +_msi_Record_GetInteger PC/clinic/_msi.c.h /^_msi_Record_GetInteger(msiobj *self, PyObject *arg)$/;" f +_msi_Record_GetInteger_impl PC/_msi.c /^_msi_Record_GetInteger_impl(msiobj *self, unsigned int field)$/;" f file: +_msi_Record_GetString PC/clinic/_msi.c.h /^_msi_Record_GetString(msiobj *self, PyObject *arg)$/;" f +_msi_Record_GetString_impl PC/_msi.c /^_msi_Record_GetString_impl(msiobj *self, unsigned int field)$/;" f file: +_msi_Record_SetInteger PC/clinic/_msi.c.h /^_msi_Record_SetInteger(msiobj *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_msi_Record_SetInteger_impl PC/_msi.c /^_msi_Record_SetInteger_impl(msiobj *self, int field, int value)$/;" f file: +_msi_Record_SetStream PC/clinic/_msi.c.h /^_msi_Record_SetStream(msiobj *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_msi_Record_SetStream_impl PC/_msi.c /^_msi_Record_SetStream_impl(msiobj *self, int field, const Py_UNICODE *value)$/;" f file: +_msi_Record_SetString PC/clinic/_msi.c.h /^_msi_Record_SetString(msiobj *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_msi_Record_SetString_impl PC/_msi.c /^_msi_Record_SetString_impl(msiobj *self, int field, const Py_UNICODE *value)$/;" f file: +_msi_SummaryInformation_GetProperty PC/clinic/_msi.c.h /^_msi_SummaryInformation_GetProperty(msiobj *self, PyObject *arg)$/;" f +_msi_SummaryInformation_GetPropertyCount PC/clinic/_msi.c.h /^_msi_SummaryInformation_GetPropertyCount(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_SummaryInformation_GetPropertyCount_impl PC/_msi.c /^_msi_SummaryInformation_GetPropertyCount_impl(msiobj *self)$/;" f file: +_msi_SummaryInformation_GetProperty_impl PC/_msi.c /^_msi_SummaryInformation_GetProperty_impl(msiobj *self, int field)$/;" f file: +_msi_SummaryInformation_Persist PC/clinic/_msi.c.h /^_msi_SummaryInformation_Persist(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_SummaryInformation_Persist_impl PC/_msi.c /^_msi_SummaryInformation_Persist_impl(msiobj *self)$/;" f file: +_msi_SummaryInformation_SetProperty PC/clinic/_msi.c.h /^_msi_SummaryInformation_SetProperty(msiobj *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_msi_SummaryInformation_SetProperty_impl PC/_msi.c /^_msi_SummaryInformation_SetProperty_impl(msiobj *self, int field,$/;" f file: +_msi_UuidCreate PC/clinic/_msi.c.h /^_msi_UuidCreate(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_msi_UuidCreate_impl PC/_msi.c /^_msi_UuidCreate_impl(PyObject *module)$/;" f file: +_msi_View_Close PC/clinic/_msi.c.h /^_msi_View_Close(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_View_Close_impl PC/_msi.c /^_msi_View_Close_impl(msiobj *self)$/;" f file: +_msi_View_Execute PC/_msi.c /^_msi_View_Execute(msiobj *self, PyObject *oparams)$/;" f file: +_msi_View_Fetch PC/clinic/_msi.c.h /^_msi_View_Fetch(msiobj *self, PyObject *Py_UNUSED(ignored))$/;" f +_msi_View_Fetch_impl PC/_msi.c /^_msi_View_Fetch_impl(msiobj *self)$/;" f file: +_msi_View_GetColumnInfo PC/clinic/_msi.c.h /^_msi_View_GetColumnInfo(msiobj *self, PyObject *arg)$/;" f +_msi_View_GetColumnInfo_impl PC/_msi.c /^_msi_View_GetColumnInfo_impl(msiobj *self, int kind)$/;" f file: +_msi_View_Modify PC/clinic/_msi.c.h /^_msi_View_Modify(msiobj *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_msi_View_Modify_impl PC/_msi.c /^_msi_View_Modify_impl(msiobj *self, int kind, PyObject *data)$/;" f file: +_msimodule PC/_msi.c /^static struct PyModuleDef _msimodule = {$/;" v typeref:struct:PyModuleDef file: +_msmarkedsectionclose Lib/_markupbase.py /^_msmarkedsectionclose = re.compile(r']\\s*>')$/;" v +_mswindows Lib/subprocess.py /^ _mswindows = False$/;" v +_mswindows Lib/subprocess.py /^ _mswindows = True$/;" v +_mul Lib/fractions.py /^ def _mul(a, b):$/;" m class:Fraction +_multi_call Lib/idlelib/multicall.py /^def _multi_call(parent): # htest #$/;" f +_multi_call_spec Lib/idlelib/idle_test/htest.py /^_multi_call_spec = {$/;" v +_multibyte_codec Modules/cjkcodecs/multibytecodec.h /^typedef struct _multibyte_codec {$/;" s +_multibytecodec_MultibyteCodec_decode Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteCodec_decode(MultibyteCodecObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multibytecodec_MultibyteCodec_decode_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteCodec_decode_impl(MultibyteCodecObject *self,$/;" f file: +_multibytecodec_MultibyteCodec_encode Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteCodec_encode(MultibyteCodecObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multibytecodec_MultibyteCodec_encode_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteCodec_encode_impl(MultibyteCodecObject *self,$/;" f file: +_multibytecodec_MultibyteIncrementalDecoder_decode Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalDecoder_decode(MultibyteIncrementalDecoderObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multibytecodec_MultibyteIncrementalDecoder_decode_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalDecoder_decode_impl(MultibyteIncrementalDecoderObject *self,$/;" f file: +_multibytecodec_MultibyteIncrementalDecoder_getstate Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalDecoder_getstate(MultibyteIncrementalDecoderObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multibytecodec_MultibyteIncrementalDecoder_getstate_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalDecoder_getstate_impl(MultibyteIncrementalDecoderObject *self)$/;" f file: +_multibytecodec_MultibyteIncrementalDecoder_reset Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalDecoder_reset(MultibyteIncrementalDecoderObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multibytecodec_MultibyteIncrementalDecoder_reset_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalDecoder_reset_impl(MultibyteIncrementalDecoderObject *self)$/;" f file: +_multibytecodec_MultibyteIncrementalDecoder_setstate Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalDecoder_setstate(MultibyteIncrementalDecoderObject *self, PyObject *arg)$/;" f +_multibytecodec_MultibyteIncrementalDecoder_setstate_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalDecoder_setstate_impl(MultibyteIncrementalDecoderObject *self,$/;" f file: +_multibytecodec_MultibyteIncrementalEncoder_encode Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalEncoder_encode(MultibyteIncrementalEncoderObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multibytecodec_MultibyteIncrementalEncoder_encode_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalEncoder_encode_impl(MultibyteIncrementalEncoderObject *self,$/;" f file: +_multibytecodec_MultibyteIncrementalEncoder_getstate Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalEncoder_getstate(MultibyteIncrementalEncoderObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multibytecodec_MultibyteIncrementalEncoder_getstate_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalEncoder_getstate_impl(MultibyteIncrementalEncoderObject *self)$/;" f file: +_multibytecodec_MultibyteIncrementalEncoder_reset Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalEncoder_reset(MultibyteIncrementalEncoderObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multibytecodec_MultibyteIncrementalEncoder_reset_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalEncoder_reset_impl(MultibyteIncrementalEncoderObject *self)$/;" f file: +_multibytecodec_MultibyteIncrementalEncoder_setstate Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteIncrementalEncoder_setstate(MultibyteIncrementalEncoderObject *self, PyObject *arg)$/;" f +_multibytecodec_MultibyteIncrementalEncoder_setstate_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteIncrementalEncoder_setstate_impl(MultibyteIncrementalEncoderObject *self,$/;" f file: +_multibytecodec_MultibyteStreamReader_read Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteStreamReader_read(MultibyteStreamReaderObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_multibytecodec_MultibyteStreamReader_read_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteStreamReader_read_impl(MultibyteStreamReaderObject *self,$/;" f file: +_multibytecodec_MultibyteStreamReader_readline Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteStreamReader_readline(MultibyteStreamReaderObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_multibytecodec_MultibyteStreamReader_readline_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteStreamReader_readline_impl(MultibyteStreamReaderObject *self,$/;" f file: +_multibytecodec_MultibyteStreamReader_readlines Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteStreamReader_readlines(MultibyteStreamReaderObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_multibytecodec_MultibyteStreamReader_readlines_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteStreamReader_readlines_impl(MultibyteStreamReaderObject *self,$/;" f file: +_multibytecodec_MultibyteStreamReader_reset Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteStreamReader_reset(MultibyteStreamReaderObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multibytecodec_MultibyteStreamReader_reset_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteStreamReader_reset_impl(MultibyteStreamReaderObject *self)$/;" f file: +_multibytecodec_MultibyteStreamWriter_reset Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteStreamWriter_reset(MultibyteStreamWriterObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multibytecodec_MultibyteStreamWriter_reset_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteStreamWriter_reset_impl(MultibyteStreamWriterObject *self,$/;" f file: +_multibytecodec_MultibyteStreamWriter_write Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteStreamWriter_write(MultibyteStreamWriterObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multibytecodec_MultibyteStreamWriter_write_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteStreamWriter_write_impl(MultibyteStreamWriterObject *self,$/;" f file: +_multibytecodec_MultibyteStreamWriter_writelines Modules/cjkcodecs/clinic/multibytecodec.c.h /^_multibytecodec_MultibyteStreamWriter_writelines(MultibyteStreamWriterObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multibytecodec_MultibyteStreamWriter_writelines_impl Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_MultibyteStreamWriter_writelines_impl(MultibyteStreamWriterObject *self,$/;" f file: +_multibytecodec___create_codec Modules/cjkcodecs/multibytecodec.c /^_multibytecodec___create_codec(PyObject *module, PyObject *arg)$/;" f file: +_multibytecodec_clear Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_clear(PyObject *mod)$/;" f file: +_multibytecodec_exec Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_exec(PyObject *mod)$/;" f file: +_multibytecodec_free Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_free(void *mod)$/;" f file: +_multibytecodec_methods Modules/cjkcodecs/multibytecodec.c /^static struct PyMethodDef _multibytecodec_methods[] = {$/;" v typeref:struct:PyMethodDef file: +_multibytecodec_slots Modules/cjkcodecs/multibytecodec.c /^static PyModuleDef_Slot _multibytecodec_slots[] = {$/;" v file: +_multibytecodec_traverse Modules/cjkcodecs/multibytecodec.c /^_multibytecodec_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +_multibytecodecmodule Modules/cjkcodecs/multibytecodec.c /^static struct PyModuleDef _multibytecodecmodule = {$/;" v typeref:struct:PyModuleDef file: +_multibytecodecmodule Modules/cjkcodecs/multibytecodec.c /^static struct PyModuleDef _multibytecodecmodule;$/;" v typeref:struct:PyModuleDef file: +_multicall_dict Lib/idlelib/multicall.py /^_multicall_dict = {}$/;" v +_multicast_network Lib/ipaddress.py /^ _multicast_network = IPv4Network('224.0.0.0\/4')$/;" v class:_IPv4Constants +_multicast_network Lib/ipaddress.py /^ _multicast_network = IPv6Network('ff00::\/8')$/;" v class:_IPv6Constants +_multiprocessing Lib/test/_test_multiprocessing.py /^_multiprocessing = import_helper.import_module('_multiprocessing')$/;" v +_multiprocessing Lib/test/test___all__.py /^ _multiprocessing = None$/;" v +_multiprocessing_SemLock Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +_multiprocessing_SemLock___enter__ Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock___enter__(SemLockObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multiprocessing_SemLock___enter___impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock___enter___impl(SemLockObject *self)$/;" f file: +_multiprocessing_SemLock___exit__ Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock___exit__(SemLockObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_multiprocessing_SemLock___exit___impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock___exit___impl(SemLockObject *self,$/;" f file: +_multiprocessing_SemLock__after_fork Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock__after_fork(SemLockObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multiprocessing_SemLock__after_fork_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock__after_fork_impl(SemLockObject *self)$/;" f file: +_multiprocessing_SemLock__count Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock__count(SemLockObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multiprocessing_SemLock__count_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock__count_impl(SemLockObject *self)$/;" f file: +_multiprocessing_SemLock__get_value Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock__get_value(SemLockObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multiprocessing_SemLock__get_value_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock__get_value_impl(SemLockObject *self)$/;" f file: +_multiprocessing_SemLock__is_mine Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock__is_mine(SemLockObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multiprocessing_SemLock__is_mine_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock__is_mine_impl(SemLockObject *self)$/;" f file: +_multiprocessing_SemLock__is_zero Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock__is_zero(SemLockObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multiprocessing_SemLock__is_zero_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock__is_zero_impl(SemLockObject *self)$/;" f file: +_multiprocessing_SemLock__rebuild Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock__rebuild(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs)$/;" f +_multiprocessing_SemLock__rebuild_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock__rebuild_impl(PyTypeObject *type, SEM_HANDLE handle,$/;" f file: +_multiprocessing_SemLock_acquire Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock_acquire(SemLockObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_multiprocessing_SemLock_acquire_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock_acquire_impl(SemLockObject *self, int blocking,$/;" f file: +_multiprocessing_SemLock_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock_impl(PyTypeObject *type, int kind, int value,$/;" f file: +_multiprocessing_SemLock_release Modules/_multiprocessing/clinic/semaphore.c.h /^_multiprocessing_SemLock_release(SemLockObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_multiprocessing_SemLock_release_impl Modules/_multiprocessing/semaphore.c /^_multiprocessing_SemLock_release_impl(SemLockObject *self)$/;" f file: +_multiprocessing_closesocket Modules/_multiprocessing/clinic/multiprocessing.c.h /^_multiprocessing_closesocket(PyObject *module, PyObject *arg)$/;" f +_multiprocessing_closesocket_impl Modules/_multiprocessing/multiprocessing.c /^_multiprocessing_closesocket_impl(PyObject *module, HANDLE handle)$/;" f file: +_multiprocessing_recv Modules/_multiprocessing/clinic/multiprocessing.c.h /^_multiprocessing_recv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_multiprocessing_recv_impl Modules/_multiprocessing/multiprocessing.c /^_multiprocessing_recv_impl(PyObject *module, HANDLE handle, int size)$/;" f file: +_multiprocessing_sem_unlink Modules/_multiprocessing/clinic/multiprocessing.c.h /^_multiprocessing_sem_unlink(PyObject *module, PyObject *arg)$/;" f +_multiprocessing_sem_unlink_impl Modules/_multiprocessing/multiprocessing.c /^_multiprocessing_sem_unlink_impl(PyObject *module, const char *name)$/;" f file: +_multiprocessing_send Modules/_multiprocessing/clinic/multiprocessing.c.h /^_multiprocessing_send(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_multiprocessing_send_impl Modules/_multiprocessing/multiprocessing.c /^_multiprocessing_send_impl(PyObject *module, HANDLE handle, Py_buffer *buf)$/;" f file: +_multistatus_bar Lib/idlelib/statusbar.py /^def _multistatus_bar(parent): # htest #$/;" f +_multistatus_bar_spec Lib/idlelib/idle_test/htest.py /^_multistatus_bar_spec = {$/;" v +_munge_whitespace Lib/textwrap.py /^ def _munge_whitespace(self, text):$/;" m class:TextWrapper +_must_skip Lib/unittest/mock.py /^def _must_skip(spec, entry, is_type):$/;" f +_mutex Lib/multiprocessing/managers.py /^ _mutex = util.ForkAwareThreadLock()$/;" v class:BaseProxy +_my_loader Lib/test/test_xml_etree.py /^ def _my_loader(self, href, parse):$/;" m class:XIncludeTest +_n_getter Lib/ast.py /^ def _n_getter(self):$/;" m class:NodeTransformer +_n_setter Lib/ast.py /^ def _n_setter(self, value):$/;" m class:NodeTransformer +_naive_prod Lib/test/test_math.py /^ def _naive_prod(iterable, start=1):$/;" f function:MathTests.test_prod +_name Doc/tools/extensions/asdl_highlight.py /^ _name = r"([^\\W\\d]\\w*)"$/;" v class:ASDLLexer +_name Doc/tools/extensions/peg_highlight.py /^ _name = r"([^\\W\\d]\\w*)"$/;" v class:PEGLexer +_name Lib/csv.py /^ _name = "sniffed"$/;" v class:Sniffer.sniff.dialect +_name Lib/csv.py /^ _name = ""$/;" v class:Dialect +_name Lib/ctypes/__init__.py /^ _name = ''$/;" v class:CDLL +_name Lib/multiprocessing/context.py /^ _name = 'fork'$/;" v class:.ForkContext +_name Lib/multiprocessing/context.py /^ _name = 'forkserver'$/;" v class:.ForkServerContext +_name Lib/multiprocessing/context.py /^ _name = 'spawn'$/;" v class:.SpawnContext +_name Lib/multiprocessing/shared_memory.py /^ _name = None$/;" v class:SharedMemory +_name Lib/tkinter/ttk.py /^ _name = "ttk::style"$/;" v class:Style +_name Lib/webbrowser.py /^ def _name(self):$/;" m class:.MacOSXOSAScript +_name Lib/webbrowser.py /^ def _name(self, val):$/;" m class:.MacOSXOSAScript +_nameToLevel Lib/logging/__init__.py /^_nameToLevel = {$/;" v +_name_from_offset Lib/_pydatetime.py /^ def _name_from_offset(delta):$/;" m class:timezone +_name_from_stem Lib/importlib/metadata/__init__.py /^ def _name_from_stem(stem):$/;" m class:PathDistribution +_name_sequence Lib/tempfile.py /^_name_sequence = None$/;" v +_name_set Lib/zipfile/_path/__init__.py /^ def _name_set(self):$/;" m class:CompleteDirs +_name_set Lib/zipfile/_path/__init__.py /^ def _name_set(self):$/;" m class:FastLookup +_name_xform Lib/xml/dom/xmlbuilder.py /^def _name_xform(name):$/;" f +_namedtuple_mro_entries Lib/typing.py /^def _namedtuple_mro_entries(bases):$/;" f +_names Lib/dbm/__init__.py /^_names = ['dbm.gnu', 'dbm.ndbm', 'dbm.dumb']$/;" v +_names Lib/os.py /^_names = sys.builtin_module_names$/;" v +_namespace_map Lib/xml/etree/ElementTree.py /^_namespace_map = {$/;" v +_namespaces Lib/xml/etree/ElementTree.py /^def _namespaces(elem, default_namespace=None):$/;" f +_nametowidget Lib/tkinter/__init__.py /^ _nametowidget = nametowidget$/;" v class:Misc +_nan_equal Lib/test/test_statistics.py /^def _nan_equal(a, b):$/;" f +_native Lib/importlib/resources/_adapters.py /^ def _native(self):$/;" m class:CompatibilityFiles +_nb_ops Lib/opcode.py /^_nb_ops = [$/;" v +_nbits Lib/_pydecimal.py /^_nbits = int.bit_length$/;" v +_ne Lib/test/test_weakref.py /^ def _ne(a, b):$/;" f function:WeakMethodTestCase.test_equality +_needs_transcode Lib/wsgiref/handlers.py /^def _needs_transcode(k):$/;" f +_nest_class Lib/pyclbr.py /^def _nest_class(ob, class_name, lineno, end_lineno, super=None):$/;" f +_nest_function Lib/pyclbr.py /^def _nest_function(ob, func_name, lineno, end_lineno, is_async=False):$/;" f +_netbios_getnode Lib/uuid.py /^def _netbios_getnode():$/;" f +_netmask_cache Lib/ipaddress.py /^ _netmask_cache = {}$/;" v class:_BaseV4 +_netmask_cache Lib/ipaddress.py /^ _netmask_cache = {}$/;" v class:_BaseV6 +_netrclex Lib/netrc.py /^class _netrclex:$/;" c +_netstat_getnode Lib/uuid.py /^def _netstat_getnode():$/;" f +_new Lib/ast.py /^def _new(cls, *args, **kwargs):$/;" f +_newLine Lib/turtle.py /^ def _newLine(self, usePos = True):$/;" m class:TPen +_newLine Lib/turtle.py /^ def _newLine(self, usePos=True):$/;" m class:RawTurtle +_newSymbolTable Lib/symtable.py /^_newSymbolTable = SymbolTableFactory()$/;" v +_new_arena Lib/multiprocessing/heap.py /^ def _new_arena(self, size):$/;" m class:Heap +_new_buffer Lib/email/generator.py /^ def _new_buffer(self):$/;" m class:BytesGenerator +_new_buffer Lib/email/generator.py /^ def _new_buffer(self):$/;" m class:Generator +_new_bytes_object Python/pystate.c /^_new_bytes_object(_PyCrossInterpreterData *data)$/;" f file: +_new_channel Lib/test/test__xxinterpchannels.py /^ def _new_channel(self, creator):$/;" m class:ChannelCloseFixture +_new_future Lib/test/test_asyncio/test_futures.py /^ def _new_future(self):$/;" m class:BaseFutureDoneCallbackTests +_new_future Lib/test/test_asyncio/test_futures.py /^ def _new_future(self):$/;" m class:CFutureDoneCallbackTests +_new_future Lib/test/test_asyncio/test_futures.py /^ def _new_future(self):$/;" m class:CSubFutureDoneCallbackTests +_new_future Lib/test/test_asyncio/test_futures.py /^ def _new_future(self):$/;" m class:PyFutureDoneCallbackTests +_new_future Lib/test/test_asyncio/test_futures.py /^ def _new_future(self, *args, **kwargs):$/;" m class:BaseFutureTests +_new_handle Lib/multiprocessing/connection.py /^ def _new_handle(self, first=False):$/;" m class:.PipeListener +_new_instance Lib/zoneinfo/_zoneinfo.py /^ def _new_instance(cls, key):$/;" m class:ZoneInfo +_new_long_object Python/pystate.c /^_new_long_object(_PyCrossInterpreterData *data)$/;" f file: +_new_message Lib/email/feedparser.py /^ def _new_message(self):$/;" m class:FeedParser +_new_module Lib/importlib/_bootstrap.py /^def _new_module(name):$/;" f +_new_none_object Python/pystate.c /^_new_none_object(_PyCrossInterpreterData *data)$/;" f file: +_new_shm_name Lib/test/_test_multiprocessing.py /^ def _new_shm_name(self, prefix):$/;" m class:_TestSharedMemory +_new_str_object Python/pystate.c /^_new_str_object(_PyCrossInterpreterData *data)$/;" f file: +_new_tag Lib/imaplib.py /^ def _new_tag(self):$/;" m class:IMAP4 +_new_type Lib/copyreg.py /^_new_type = type(int.__new__)$/;" v +_new_value Lib/multiprocessing/sharedctypes.py /^def _new_value(type_):$/;" f +_newer Lib/lib2to3/pgen2/driver.py /^def _newer(a, b):$/;" f +_newline_convert Lib/doctest.py /^def _newline_convert(data):$/;" f +_newname Lib/threading.py /^def _newname(name_template):$/;" f +_next Lib/zipfile/_path/__init__.py /^ def _next(self, at):$/;" m class:Path +_nextPackageAfterRestart Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ LPWSTR _nextPackageAfterRestart;$/;" m class:PythonBootstrapperApplication file: +_next_external_frame Lib/warnings.py /^def _next_external_frame(frame, skip_file_prefixes):$/;" f +_next_pending_call Python/ceval_gil.c /^_next_pending_call(struct _pending_calls *pending,$/;" f file: +_next_side_effect Lib/unittest/mock.py /^ def _next_side_effect():$/;" f function:mock_open +_nextmonth Lib/calendar.py /^def _nextmonth(year, month):$/;" f +_no_default Lib/test/test_asyncgen.py /^_no_default = object()$/;" v +_no_init_or_replace_init Lib/typing.py /^def _no_init_or_replace_init(self, *args, **kwargs):$/;" f +_no_type Lib/xml/dom/minidom.py /^_no_type = TypeInfo(None, None)$/;" v +_noarg_ Lib/tkinter/__init__.py /^ _noarg_ = ['_noarg_']$/;" v class:Misc +_node Lib/platform.py /^def _node(default=''):$/;" f +_node Lib/uuid.py /^_node = None$/;" v +_nodeTypes_with_children Lib/xml/dom/minidom.py /^_nodeTypes_with_children = (xml.dom.Node.ELEMENT_NODE,$/;" v +_nodetype_mask Lib/xml/dom/expatbuilder.py /^ _nodetype_mask = {$/;" v class:FilterVisibilityController +_noheaders Lib/urllib/request.py /^_noheaders = None$/;" v +_non_atom_end_matcher Lib/email/_header_value_parser.py /^_non_atom_end_matcher = re.compile(r"[^{}]+".format($/;" v +_non_attribute_end_matcher Lib/email/_header_value_parser.py /^_non_attribute_end_matcher = re.compile(r"[^{}]+".format($/;" v +_non_defaults Lib/unittest/mock.py /^_non_defaults = {$/;" v +_non_extended_attribute_end_matcher Lib/email/_header_value_parser.py /^_non_extended_attribute_end_matcher = re.compile(r"[^{}]+".format($/;" v +_non_printable_finder Lib/email/_header_value_parser.py /^_non_printable_finder = re.compile(r"[\\x00-\\x20\\x7F]").findall$/;" v +_non_token_end_matcher Lib/email/_header_value_parser.py /^_non_token_end_matcher = re.compile(r"[^{}]+".format($/;" v +_nonctext Lib/email/header.py /^ def _nonctext(self, s):$/;" m class:Header +_none_shared Python/pystate.c /^_none_shared(PyThreadState *tstate, PyObject *obj,$/;" f file: +_nonlocal_vars Lib/test/test_inspect.py /^ def _nonlocal_vars(f):$/;" f function:TestGetClosureVars.test_nonlocal_vars +_noop Lib/asyncio/subprocess.py /^ async def _noop(self):$/;" m class:Process +_noop Lib/urllib/parse.py /^def _noop(obj):$/;" f +_nop Lib/shutil.py /^ def _nop(*args, ns=None, follow_symlinks=None):$/;" f function:copystat +_norm Lib/test/test_ntpath.py /^def _norm(path):$/;" f +_norm_version Lib/platform.py /^def _norm_version(version, build=''):$/;" f +_normal_dist_inv_cdf Lib/statistics.py /^def _normal_dist_inv_cdf(p, mu, sigma):$/;" f +_normalize Lib/_pydecimal.py /^def _normalize(op1, op2, prec = 0):$/;" f +_normalize Lib/email/header.py /^ def _normalize(self):$/;" m class:Header +_normalize Tools/c-analyzer/c_common/tables.py /^ def _normalize(cls, spec):$/;" m class:ColumnSpec +_normalize_cwd Lib/test/test_subprocess.py /^ def _normalize_cwd(self, cwd):$/;" m class:ProcessTestCase +_normalize_datetime_str Lib/test/test_tomllib/burntsushi.py /^def _normalize_datetime_str(dt_str: str) -> str:$/;" f +_normalize_filename Lib/tracemalloc.py /^def _normalize_filename(filename):$/;" f +_normalize_fix_read Tools/c-analyzer/c_common/tables.py /^def _normalize_fix_read(fix):$/;" f +_normalize_fix_write Tools/c-analyzer/c_common/tables.py /^def _normalize_fix_write(fix, empty=''):$/;" f +_normalize_float_str Lib/test/test_tomllib/burntsushi.py /^def _normalize_float_str(float_str: str) -> str:$/;" f +_normalize_line_endings Lib/zipimport.py /^def _normalize_line_endings(source):$/;" f +_normalize_localtime_str Lib/test/test_tomllib/burntsushi.py /^def _normalize_localtime_str(lt_str: str) -> str:$/;" f +_normalize_module Lib/doctest.py /^def _normalize_module(module, depth=2):$/;" f +_normalize_table_file_props Tools/c-analyzer/c_common/tables.py /^def _normalize_table_file_props(header, sep):$/;" f +_normalized_cookie_tuples Lib/http/cookiejar.py /^ def _normalized_cookie_tuples(self, attrs_set):$/;" m class:CookieJar +_normalized_name Lib/importlib/metadata/__init__.py /^ def _normalized_name(self):$/;" m class:Distribution +_normalized_name Lib/importlib/metadata/__init__.py /^ def _normalized_name(self):$/;" m class:PathDistribution +_normpath Tools/c-analyzer/c_parser/preprocessor/gcc.py /^def _normpath(filename, cwd):$/;" f +_not_tracked Lib/test/test_dict.py /^ def _not_tracked(self, t):$/;" m class:DictTest +_not_tracked Lib/test/test_tuple.py /^ def _not_tracked(self, t):$/;" m class:TupleTest +_not_used Include/internal/pycore_dtoa.h /^ int _not_used;$/;" m struct:_dtoa_state +_not_used Include/internal/pycore_global_objects.h /^ int _not_used;$/;" m struct:_Py_interp_static_objects::__anon149 +_not_used Include/internal/pycore_object_state.h /^ int _not_used;$/;" m struct:_py_object_runtime_state +_not_used Include/internal/pycore_object_state.h /^ int _not_used;$/;" m struct:_py_object_state +_notimplemented Lib/random.py /^ def _notimplemented(self, *args, **kwds):$/;" m class:SystemRandom +_nssplit Lib/xml/dom/minidom.py /^def _nssplit(qualifiedName):$/;" f +_ntuple_diskusage Lib/shutil.py /^ _ntuple_diskusage = collections.namedtuple('usage', 'total used free')$/;" v +_null_to_none Modules/_testcapimodule.c /^_null_to_none(PyObject* obj)$/;" f file: +_nulljoin Lib/http/cookies.py /^_nulljoin = ''.join$/;" v +_num_version Lib/ctypes/_aix.py /^ def _num_version(libname):$/;" f function:_last_version +_num_version Lib/ctypes/util.py /^ def _num_version(libname):$/;" f +_number_of_objects Lib/multiprocessing/managers.py /^ def _number_of_objects(self):$/;" m class:BaseManager +_numeric_repr_ Lib/enum.py /^ _numeric_repr_ = repr$/;" v class:Flag +_numeric_repr_ Lib/re/__init__.py /^ _numeric_repr_ = hex$/;" v class:RegexFlag +_object Include/object.h /^struct _object {$/;" s +_object_browser Lib/idlelib/debugobj.py /^def _object_browser(parent): # htest #$/;" f +_object_browser_spec Lib/idlelib/idle_test/htest.py /^_object_browser_spec = {$/;" v +_object_name Lib/importlib/_bootstrap.py /^def _object_name(obj):$/;" f +_object_stats Include/pystats.h /^typedef struct _object_stats {$/;" s +_obmalloc_global_state Include/internal/pycore_obmalloc.h /^struct _obmalloc_global_state {$/;" s +_obmalloc_global_state_INIT Include/internal/pycore_obmalloc_init.h 57;" d +_obmalloc_mgmt Include/internal/pycore_obmalloc.h /^struct _obmalloc_mgmt {$/;" s +_obmalloc_pools Include/internal/pycore_obmalloc.h /^struct _obmalloc_pools {$/;" s +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 30;" d +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 33;" d +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 36;" d +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 39;" d +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 42;" d +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 45;" d +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 48;" d +_obmalloc_pools_INIT Include/internal/pycore_obmalloc_init.h 51;" d +_obmalloc_state Include/internal/pycore_obmalloc.h /^struct _obmalloc_state {$/;" s +_obmalloc_state_INIT Include/internal/pycore_obmalloc_init.h 62;" d +_obmalloc_usage Include/internal/pycore_obmalloc.h /^struct _obmalloc_usage {$/;" s +_odict_EMPTY Objects/odictobject.c 524;" d file: +_odict_FIRST Objects/odictobject.c 522;" d file: +_odict_FOREACH Objects/odictobject.c 525;" d file: +_odict_ITER_ITEMS Objects/odictobject.c 1234;" d file: +_odict_ITER_KEYS Objects/odictobject.c 1232;" d file: +_odict_ITER_REVERSED Objects/odictobject.c 1231;" d file: +_odict_ITER_VALUES Objects/odictobject.c 1233;" d file: +_odict_LAST Objects/odictobject.c 523;" d file: +_odict_add_head Objects/odictobject.c /^_odict_add_head(PyODictObject *od, _ODictNode *node)$/;" f file: +_odict_add_new_node Objects/odictobject.c /^_odict_add_new_node(PyODictObject *od, PyObject *key, Py_hash_t hash)$/;" f file: +_odict_add_tail Objects/odictobject.c /^_odict_add_tail(PyODictObject *od, _ODictNode *node)$/;" f file: +_odict_clear_node Objects/odictobject.c /^_odict_clear_node(PyODictObject *od, _ODictNode *node, PyObject *key,$/;" f file: +_odict_clear_nodes Objects/odictobject.c /^_odict_clear_nodes(PyODictObject *od)$/;" f file: +_odict_find_node Objects/odictobject.c /^_odict_find_node(PyODictObject *od, PyObject *key)$/;" f file: +_odict_find_node_hash Objects/odictobject.c /^_odict_find_node_hash(PyODictObject *od, PyObject *key, Py_hash_t hash)$/;" f file: +_odict_get_index Objects/odictobject.c /^_odict_get_index(PyODictObject *od, PyObject *key, Py_hash_t hash)$/;" f file: +_odict_get_index_raw Objects/odictobject.c /^_odict_get_index_raw(PyODictObject *od, PyObject *key, Py_hash_t hash)$/;" f file: +_odict_keys_equal Objects/odictobject.c /^_odict_keys_equal(PyODictObject *a, PyODictObject *b)$/;" f file: +_odict_popkey_hash Objects/odictobject.c /^_odict_popkey_hash(PyObject *od, PyObject *key, PyObject *failobj,$/;" f file: +_odict_remove_node Objects/odictobject.c /^_odict_remove_node(PyODictObject *od, _ODictNode *node)$/;" f file: +_odict_resize Objects/odictobject.c /^_odict_resize(PyODictObject *od)$/;" f file: +_odictnode Objects/odictobject.c /^struct _odictnode {$/;" s file: +_odictnode_DEALLOC Objects/odictobject.c 701;" d file: +_odictnode_DEALLOC Objects/odictobject.c 795;" d file: +_odictnode_HASH Objects/odictobject.c 514;" d file: +_odictnode_KEY Objects/odictobject.c 512;" d file: +_odictnode_NEXT Objects/odictobject.c 520;" d file: +_odictnode_PREV Objects/odictobject.c 519;" d file: +_odictnode_VALUE Objects/odictobject.c 517;" d file: +_odictobject Objects/odictobject.c /^struct _odictobject {$/;" s file: +_offset_back_transform_codes Lib/multiprocessing/shared_memory.py /^ def _offset_back_transform_codes(self):$/;" m class:ShareableList +_offset_data_start Lib/multiprocessing/shared_memory.py /^ def _offset_data_start(self):$/;" m class:ShareableList +_offset_packing_formats Lib/multiprocessing/shared_memory.py /^ def _offset_packing_formats(self):$/;" m class:ShareableList +_old_convert_ Lib/enum.py /^def _old_convert_(etype, name, module, filter, source=None, *, boundary=None):$/;" f +_on_completion Lib/asyncio/tasks.py /^ def _on_completion(f):$/;" f function:_wait +_on_completion Lib/asyncio/tasks.py /^ def _on_completion(f):$/;" f function:as_completed +_on_error_fd_closer Lib/subprocess.py /^ def _on_error_fd_closer(self):$/;" m class:Popen +_on_handshake_complete Lib/asyncio/sslproto.py /^ def _on_handshake_complete(self, handshake_exc):$/;" m class:SSLProtocol +_on_queue_feeder_error Lib/concurrent/futures/process.py /^ def _on_queue_feeder_error(self, e, obj):$/;" m class:_SafeQueue +_on_queue_feeder_error Lib/multiprocessing/queues.py /^ def _on_queue_feeder_error(e, obj):$/;" m class:Queue +_on_queue_feeder_error Lib/test/_test_multiprocessing.py /^ def _on_queue_feeder_error(e, obj):$/;" m class:_TestQueue.test_queue_feeder_on_queue_feeder_error.SafeQueue +_on_shutdown_complete Lib/asyncio/sslproto.py /^ def _on_shutdown_complete(self, shutdown_exc):$/;" m class:SSLProtocol +_on_sigint Lib/asyncio/runners.py /^ def _on_sigint(self, signum, frame, main_task):$/;" m class:Runner +_on_task_done Lib/asyncio/taskgroups.py /^ def _on_task_done(self, task):$/;" m class:TaskGroup +_on_timeout Lib/asyncio/tasks.py /^ def _on_timeout():$/;" f function:as_completed +_on_timeout Lib/asyncio/timeouts.py /^ def _on_timeout(self) -> None:$/;" m class:Timeout +_once_lock Lib/tempfile.py /^_once_lock = _allocate_lock()$/;" v +_onclick Lib/turtle.py /^ def _onclick(self, item, fun, num=1, add=None):$/;" m class:TurtleScreenBase +_ondrag Lib/turtle.py /^ def _ondrag(self, item, fun, num=1, add=None):$/;" m class:TurtleScreenBase +_onkeypress Lib/turtle.py /^ def _onkeypress(self, fun, key=None):$/;" m class:TurtleScreenBase +_onkeyrelease Lib/turtle.py /^ def _onkeyrelease(self, fun, key):$/;" m class:TurtleScreenBase +_onrelease Lib/turtle.py /^ def _onrelease(self, item, fun, num=1, add=None):$/;" m class:TurtleScreenBase +_onscreenclick Lib/turtle.py /^ def _onscreenclick(self, fun, num=1, add=None):$/;" m class:TurtleScreenBase +_ontimer Lib/turtle.py /^ def _ontimer(self, fun, t):$/;" m class:TurtleScreenBase +_opaque Include/cpython/code.h /^struct _opaque {$/;" s +_opaque_pthread_attr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_attr_t(Structure):$/;" c +_opaque_pthread_cond_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_cond_t(Structure):$/;" c +_opaque_pthread_condattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_condattr_t(Structure):$/;" c +_opaque_pthread_mutex_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_mutex_t(Structure):$/;" c +_opaque_pthread_mutexattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_mutexattr_t(Structure):$/;" c +_opaque_pthread_once_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_once_t(Structure):$/;" c +_opaque_pthread_rwlock_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_rwlock_t(Structure):$/;" c +_opaque_pthread_rwlockattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_rwlockattr_t(Structure):$/;" c +_opaque_pthread_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class _opaque_pthread_t(Structure):$/;" c +_opcode Lib/test/test__opcode.py /^_opcode = import_module("_opcode")$/;" v +_opcode_get_specialization_stats Modules/clinic/_opcode.c.h /^_opcode_get_specialization_stats(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_opcode_get_specialization_stats_impl Modules/_opcode.c /^_opcode_get_specialization_stats_impl(PyObject *module)$/;" f file: +_opcode_stack_effect Modules/clinic/_opcode.c.h /^_opcode_stack_effect(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_opcode_stack_effect_impl Modules/_opcode.c /^_opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg,$/;" f file: +_opcode_stats Include/pystats.h /^typedef struct _opcode_stats {$/;" s +_open Lib/logging/__init__.py /^ def _open(self):$/;" m class:FileHandler +_open Lib/test/test_shutil.py /^ def _open(filename, mode='r'):$/;" f function:TestCopyFile.test_w_dest_close_fails +_open Lib/test/test_shutil.py /^ def _open(filename, mode='r'):$/;" f function:TestCopyFile.test_w_dest_open_fails +_open Lib/test/test_shutil.py /^ def _open(filename, mode='r'):$/;" f function:TestCopyFile.test_w_source_close_fails +_open Lib/test/test_shutil.py /^ def _open(filename, mode='r'):$/;" f function:TestCopyFile.test_w_source_open_fails +_open Lib/urllib/request.py /^ def _open(self, req, data=None):$/;" m class:OpenerDirector +_open_code_hook Programs/_testembed.c /^static PyObject *_open_code_hook(PyObject *path, void *data)$/;" f file: +_open_code_with_warning Lib/_pyio.py /^def _open_code_with_warning(path):$/;" f +_open_gap_from_i Lib/turtledemo/sorting_animate.py /^ def _open_gap_from_i(self, i):$/;" m class:Shelf +_open_generic_http Lib/urllib/request.py /^ def _open_generic_http(self, connection_factory, url, data):$/;" m class:URLopener +_open_registry Lib/importlib/_bootstrap_external.py /^ def _open_registry(key):$/;" m class:WindowsRegistryFinder +_open_terminal Lib/pty.py /^def _open_terminal():$/;" f +_open_to_write Lib/zipfile/__init__.py /^ def _open_to_write(self, zinfo, force_zip64=False):$/;" m class:ZipFile +_opener Lib/urllib/request.py /^_opener = None$/;" v +_openers Lib/idlelib/parenmatch.py /^_openers = {')':'(',']':'[','}':'{'}$/;" v +_openssl_hash_name_mapper Modules/_hashopenssl.c /^_openssl_hash_name_mapper(EVP_MD *md, void *arg)$/;" f file: +_operator Include/internal/pycore_ast.h /^typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7,$/;" g +_operator__compare_digest Modules/clinic/_operator.c.h /^_operator__compare_digest(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator__compare_digest_impl Modules/_operator.c /^_operator__compare_digest_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_abs Modules/_operator.c /^_operator_abs(PyObject *module, PyObject *a)$/;" f file: +_operator_add Modules/clinic/_operator.c.h /^_operator_add(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_add_impl Modules/_operator.c /^_operator_add_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_and_ Modules/clinic/_operator.c.h /^_operator_and_(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_and__impl Modules/_operator.c /^_operator_and__impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_call Modules/_operator.c /^_operator_call(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f file: +_operator_concat Modules/clinic/_operator.c.h /^_operator_concat(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_concat_impl Modules/_operator.c /^_operator_concat_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_contains Modules/clinic/_operator.c.h /^_operator_contains(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_contains_impl Modules/_operator.c /^_operator_contains_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_countOf Modules/clinic/_operator.c.h /^_operator_countOf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_countOf_impl Modules/_operator.c /^_operator_countOf_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_delitem Modules/clinic/_operator.c.h /^_operator_delitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_delitem_impl Modules/_operator.c /^_operator_delitem_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_eq Modules/clinic/_operator.c.h /^_operator_eq(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_eq_impl Modules/_operator.c /^_operator_eq_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_fallbacks Lib/fractions.py /^ def _operator_fallbacks(monomorphic_operator, fallback_operator):$/;" m class:Fraction +_operator_floordiv Modules/clinic/_operator.c.h /^_operator_floordiv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_floordiv_impl Modules/_operator.c /^_operator_floordiv_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_ge Modules/clinic/_operator.c.h /^_operator_ge(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_ge_impl Modules/_operator.c /^_operator_ge_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_getitem Modules/clinic/_operator.c.h /^_operator_getitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_getitem_impl Modules/_operator.c /^_operator_getitem_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_gt Modules/clinic/_operator.c.h /^_operator_gt(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_gt_impl Modules/_operator.c /^_operator_gt_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_iadd Modules/clinic/_operator.c.h /^_operator_iadd(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_iadd_impl Modules/_operator.c /^_operator_iadd_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_iand Modules/clinic/_operator.c.h /^_operator_iand(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_iand_impl Modules/_operator.c /^_operator_iand_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_iconcat Modules/clinic/_operator.c.h /^_operator_iconcat(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_iconcat_impl Modules/_operator.c /^_operator_iconcat_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_ifloordiv Modules/clinic/_operator.c.h /^_operator_ifloordiv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_ifloordiv_impl Modules/_operator.c /^_operator_ifloordiv_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_ilshift Modules/clinic/_operator.c.h /^_operator_ilshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_ilshift_impl Modules/_operator.c /^_operator_ilshift_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_imatmul Modules/clinic/_operator.c.h /^_operator_imatmul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_imatmul_impl Modules/_operator.c /^_operator_imatmul_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_imod Modules/clinic/_operator.c.h /^_operator_imod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_imod_impl Modules/_operator.c /^_operator_imod_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_imul Modules/clinic/_operator.c.h /^_operator_imul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_imul_impl Modules/_operator.c /^_operator_imul_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_index Modules/_operator.c /^_operator_index(PyObject *module, PyObject *a)$/;" f file: +_operator_indexOf Modules/clinic/_operator.c.h /^_operator_indexOf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_indexOf_impl Modules/_operator.c /^_operator_indexOf_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_inv Modules/_operator.c /^_operator_inv(PyObject *module, PyObject *a)$/;" f file: +_operator_invert Modules/_operator.c /^_operator_invert(PyObject *module, PyObject *a)$/;" f file: +_operator_ior Modules/clinic/_operator.c.h /^_operator_ior(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_ior_impl Modules/_operator.c /^_operator_ior_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_ipow Modules/clinic/_operator.c.h /^_operator_ipow(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_ipow_impl Modules/_operator.c /^_operator_ipow_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_irshift Modules/clinic/_operator.c.h /^_operator_irshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_irshift_impl Modules/_operator.c /^_operator_irshift_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_is_ Modules/clinic/_operator.c.h /^_operator_is_(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_is__impl Modules/_operator.c /^_operator_is__impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_is_not Modules/clinic/_operator.c.h /^_operator_is_not(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_is_not_impl Modules/_operator.c /^_operator_is_not_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_isub Modules/clinic/_operator.c.h /^_operator_isub(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_isub_impl Modules/_operator.c /^_operator_isub_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_itruediv Modules/clinic/_operator.c.h /^_operator_itruediv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_itruediv_impl Modules/_operator.c /^_operator_itruediv_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_ixor Modules/clinic/_operator.c.h /^_operator_ixor(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_ixor_impl Modules/_operator.c /^_operator_ixor_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_le Modules/clinic/_operator.c.h /^_operator_le(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_le_impl Modules/_operator.c /^_operator_le_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_length_hint Modules/clinic/_operator.c.h /^_operator_length_hint(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_length_hint_impl Modules/_operator.c /^_operator_length_hint_impl(PyObject *module, PyObject *obj,$/;" f file: +_operator_lshift Modules/clinic/_operator.c.h /^_operator_lshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_lshift_impl Modules/_operator.c /^_operator_lshift_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_lt Modules/clinic/_operator.c.h /^_operator_lt(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_lt_impl Modules/_operator.c /^_operator_lt_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_matmul Modules/clinic/_operator.c.h /^_operator_matmul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_matmul_impl Modules/_operator.c /^_operator_matmul_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_mod Modules/clinic/_operator.c.h /^_operator_mod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_mod_impl Modules/_operator.c /^_operator_mod_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_mul Modules/clinic/_operator.c.h /^_operator_mul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_mul_impl Modules/_operator.c /^_operator_mul_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_ne Modules/clinic/_operator.c.h /^_operator_ne(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_ne_impl Modules/_operator.c /^_operator_ne_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_neg Modules/_operator.c /^_operator_neg(PyObject *module, PyObject *a)$/;" f file: +_operator_not_ Modules/clinic/_operator.c.h /^_operator_not_(PyObject *module, PyObject *a)$/;" f +_operator_not__impl Modules/_operator.c /^_operator_not__impl(PyObject *module, PyObject *a)$/;" f file: +_operator_or_ Modules/clinic/_operator.c.h /^_operator_or_(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_or__impl Modules/_operator.c /^_operator_or__impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_pos Modules/_operator.c /^_operator_pos(PyObject *module, PyObject *a)$/;" f file: +_operator_pow Modules/clinic/_operator.c.h /^_operator_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_pow_impl Modules/_operator.c /^_operator_pow_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_rshift Modules/clinic/_operator.c.h /^_operator_rshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_rshift_impl Modules/_operator.c /^_operator_rshift_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_setitem Modules/clinic/_operator.c.h /^_operator_setitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_setitem_impl Modules/_operator.c /^_operator_setitem_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +_operator_state Modules/_operator.c /^} _operator_state;$/;" t typeref:struct:__anon473 file: +_operator_sub Modules/clinic/_operator.c.h /^_operator_sub(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_sub_impl Modules/_operator.c /^_operator_sub_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_truediv Modules/clinic/_operator.c.h /^_operator_truediv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_truediv_impl Modules/_operator.c /^_operator_truediv_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_operator_truth Modules/clinic/_operator.c.h /^_operator_truth(PyObject *module, PyObject *a)$/;" f +_operator_truth_impl Modules/_operator.c /^_operator_truth_impl(PyObject *module, PyObject *a)$/;" f file: +_operator_xor Modules/clinic/_operator.c.h /^_operator_xor(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_operator_xor_impl Modules/_operator.c /^_operator_xor_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +_optim_args_from_interpreter_flags Lib/subprocess.py /^def _optim_args_from_interpreter_flags():$/;" f +_optimize_charset Lib/re/_compiler.py /^def _optimize_charset(charset, iscased=None, fixup=None, fixes=None):$/;" f +_options Lib/configparser.py /^ def _options(self):$/;" m class:SectionProxy +_options Lib/tkinter/__init__.py /^ def _options(self, cnf, kw = None):$/;" m class:Misc +_options Lib/tkinter/tix.py /^ def _options(self, cnf, kw):$/;" m class:DisplayStyle +_ord2ymd Lib/_pydatetime.py /^def _ord2ymd(n):$/;" f +_order_ Lib/test/test_enum.py /^ _order_ = 'red green blue purple'$/;" v class:TestOrder.test_order_has_extra_members.Color +_order_ Lib/test/test_enum.py /^ _order_ = 'red green blue purple'$/;" v class:TestOrder.test_order_has_extra_members_with_aliases.Color +_order_ Lib/test/test_enum.py /^ _order_ = 'red green blue'$/;" v class:TestOrder.test_enum_has_extra_members.Color +_order_ Lib/test/test_enum.py /^ _order_ = 'red green blue'$/;" v class:TestOrder.test_enum_has_extra_members_with_aliases.Color +_order_ Lib/test/test_enum.py /^ _order_ = 'red green blue'$/;" v class:TestOrder.test_same_members_wrong_order.Color +_order_ Lib/test/test_enum.py /^ _order_ = 'ONE TWO FOUR DOS EIGHT SIXTEEN'$/;" v class:OldTestFlag.test_number_reset_and_order_cleanup.Confused +_order_ Lib/test/test_enum.py /^ _order_ = 'red green blue'$/;" v class:TestOrder.test_same_members.Color +_order_ Lib/test/test_enum.py /^ _order_ = 'red green blue'$/;" v class:TestOrder.test_same_members_with_aliases.Color +_original_line Lib/traceback.py /^ def _original_line(self):$/;" m class:FrameSummary +_original_stdout Lib/test/support/__init__.py /^_original_stdout = None$/;" v +_os Lib/dbm/dumb.py /^ _os = _os # for _commit()$/;" v class:_Database +_os_preferred_browser Lib/webbrowser.py /^_os_preferred_browser = None # The preferred browser$/;" v +_os_release_cache Lib/platform.py /^_os_release_cache = None$/;" v +_os_release_candidates Lib/platform.py /^_os_release_candidates = ("\/etc\/os-release", "\/usr\/lib\/os-release")$/;" v +_ossl_old_des_cblock Lib/test/test_lib2to3/data/infinite_recursion.py /^_ossl_old_des_cblock = c_ubyte * 8$/;" v +_ossl_old_des_key_schedule Lib/test/test_lib2to3/data/infinite_recursion.py /^_ossl_old_des_key_schedule = _ossl_old_des_ks_struct * 16$/;" v +_ossl_old_des_ks_struct Lib/test/test_lib2to3/data/infinite_recursion.py /^class _ossl_old_des_ks_struct(Structure):$/;" c +_other_base_helper Lib/test/test_int.py /^ def _other_base_helper(self, base):$/;" m class:IntStrDigitLimitsTests +_other_endian Lib/ctypes/_endian.py /^def _other_endian(typ):$/;" f +_outer_done_callback Lib/asyncio/tasks.py /^ def _outer_done_callback(outer):$/;" f function:shield +_output Lib/http/client.py /^ def _output(self, s):$/;" m class:HTTPConnection +_overlapped_BindLocal Modules/clinic/overlapped.c.h /^_overlapped_BindLocal(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_BindLocal_impl Modules/overlapped.c /^_overlapped_BindLocal_impl(PyObject *module, HANDLE Socket, int Family)$/;" f file: +_overlapped_CreateEvent Modules/clinic/overlapped.c.h /^_overlapped_CreateEvent(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_CreateEvent_impl Modules/overlapped.c /^_overlapped_CreateEvent_impl(PyObject *module, PyObject *EventAttributes,$/;" f file: +_overlapped_CreateIoCompletionPort Modules/clinic/overlapped.c.h /^_overlapped_CreateIoCompletionPort(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_CreateIoCompletionPort_impl Modules/overlapped.c /^_overlapped_CreateIoCompletionPort_impl(PyObject *module, HANDLE FileHandle,$/;" f file: +_overlapped_FormatMessage Modules/clinic/overlapped.c.h /^_overlapped_FormatMessage(PyObject *module, PyObject *arg)$/;" f +_overlapped_FormatMessage_impl Modules/overlapped.c /^_overlapped_FormatMessage_impl(PyObject *module, DWORD code)$/;" f file: +_overlapped_GetQueuedCompletionStatus Modules/clinic/overlapped.c.h /^_overlapped_GetQueuedCompletionStatus(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_GetQueuedCompletionStatus_impl Modules/overlapped.c /^_overlapped_GetQueuedCompletionStatus_impl(PyObject *module,$/;" f file: +_overlapped_Overlapped Modules/clinic/overlapped.c.h /^_overlapped_Overlapped(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +_overlapped_Overlapped_AcceptEx Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_AcceptEx(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_AcceptEx_impl Modules/overlapped.c /^_overlapped_Overlapped_AcceptEx_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_ConnectEx Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_ConnectEx(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_ConnectEx_impl Modules/overlapped.c /^_overlapped_Overlapped_ConnectEx_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_ConnectNamedPipe Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_ConnectNamedPipe(OverlappedObject *self, PyObject *arg)$/;" f +_overlapped_Overlapped_ConnectNamedPipe_impl Modules/overlapped.c /^_overlapped_Overlapped_ConnectNamedPipe_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_ConnectPipe Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_ConnectPipe(OverlappedObject *self, PyObject *arg)$/;" f +_overlapped_Overlapped_ConnectPipe_impl Modules/overlapped.c /^_overlapped_Overlapped_ConnectPipe_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_DisconnectEx Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_DisconnectEx(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_DisconnectEx_impl Modules/overlapped.c /^_overlapped_Overlapped_DisconnectEx_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_ReadFile Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_ReadFile(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_ReadFileInto Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_ReadFileInto(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_ReadFileInto_impl Modules/overlapped.c /^_overlapped_Overlapped_ReadFileInto_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_ReadFile_impl Modules/overlapped.c /^_overlapped_Overlapped_ReadFile_impl(OverlappedObject *self, HANDLE handle,$/;" f file: +_overlapped_Overlapped_TransmitFile Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_TransmitFile(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_TransmitFile_impl Modules/overlapped.c /^_overlapped_Overlapped_TransmitFile_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_WSARecv Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_WSARecv(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_WSARecvFrom Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_WSARecvFrom(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_WSARecvFromInto Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_WSARecvFromInto(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_WSARecvFromInto_impl Modules/overlapped.c /^_overlapped_Overlapped_WSARecvFromInto_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_WSARecvFrom_impl Modules/overlapped.c /^_overlapped_Overlapped_WSARecvFrom_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_WSARecvInto Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_WSARecvInto(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_WSARecvInto_impl Modules/overlapped.c /^_overlapped_Overlapped_WSARecvInto_impl(OverlappedObject *self,$/;" f file: +_overlapped_Overlapped_WSARecv_impl Modules/overlapped.c /^_overlapped_Overlapped_WSARecv_impl(OverlappedObject *self, HANDLE handle,$/;" f file: +_overlapped_Overlapped_WSASend Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_WSASend(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_WSASendTo Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_WSASendTo(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_WSASendTo_impl Modules/overlapped.c /^_overlapped_Overlapped_WSASendTo_impl(OverlappedObject *self, HANDLE handle,$/;" f file: +_overlapped_Overlapped_WSASend_impl Modules/overlapped.c /^_overlapped_Overlapped_WSASend_impl(OverlappedObject *self, HANDLE handle,$/;" f file: +_overlapped_Overlapped_WriteFile Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_WriteFile(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_WriteFile_impl Modules/overlapped.c /^_overlapped_Overlapped_WriteFile_impl(OverlappedObject *self, HANDLE handle,$/;" f file: +_overlapped_Overlapped_cancel Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_cancel(OverlappedObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_overlapped_Overlapped_cancel_impl Modules/overlapped.c /^_overlapped_Overlapped_cancel_impl(OverlappedObject *self)$/;" f file: +_overlapped_Overlapped_getresult Modules/clinic/overlapped.c.h /^_overlapped_Overlapped_getresult(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_Overlapped_getresult_impl Modules/overlapped.c /^_overlapped_Overlapped_getresult_impl(OverlappedObject *self, BOOL wait)$/;" f file: +_overlapped_Overlapped_impl Modules/overlapped.c /^_overlapped_Overlapped_impl(PyTypeObject *type, HANDLE event)$/;" f file: +_overlapped_PostQueuedCompletionStatus Modules/clinic/overlapped.c.h /^_overlapped_PostQueuedCompletionStatus(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_PostQueuedCompletionStatus_impl Modules/overlapped.c /^_overlapped_PostQueuedCompletionStatus_impl(PyObject *module,$/;" f file: +_overlapped_RegisterWaitWithQueue Modules/clinic/overlapped.c.h /^_overlapped_RegisterWaitWithQueue(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_RegisterWaitWithQueue_impl Modules/overlapped.c /^_overlapped_RegisterWaitWithQueue_impl(PyObject *module, HANDLE Object,$/;" f file: +_overlapped_ResetEvent Modules/clinic/overlapped.c.h /^_overlapped_ResetEvent(PyObject *module, PyObject *arg)$/;" f +_overlapped_ResetEvent_impl Modules/overlapped.c /^_overlapped_ResetEvent_impl(PyObject *module, HANDLE Handle)$/;" f file: +_overlapped_SetEvent Modules/clinic/overlapped.c.h /^_overlapped_SetEvent(PyObject *module, PyObject *arg)$/;" f +_overlapped_SetEvent_impl Modules/overlapped.c /^_overlapped_SetEvent_impl(PyObject *module, HANDLE Handle)$/;" f file: +_overlapped_UnregisterWait Modules/clinic/overlapped.c.h /^_overlapped_UnregisterWait(PyObject *module, PyObject *arg)$/;" f +_overlapped_UnregisterWaitEx Modules/clinic/overlapped.c.h /^_overlapped_UnregisterWaitEx(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_UnregisterWaitEx_impl Modules/overlapped.c /^_overlapped_UnregisterWaitEx_impl(PyObject *module, HANDLE WaitHandle,$/;" f file: +_overlapped_UnregisterWait_impl Modules/overlapped.c /^_overlapped_UnregisterWait_impl(PyObject *module, HANDLE WaitHandle)$/;" f file: +_overlapped_WSAConnect Modules/clinic/overlapped.c.h /^_overlapped_WSAConnect(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_overlapped_WSAConnect_impl Modules/overlapped.c /^_overlapped_WSAConnect_impl(PyObject *module, HANDLE ConnectSocket,$/;" f file: +_overload_dummy Lib/typing.py /^def _overload_dummy(*args, **kwds):$/;" f +_overload_registry Lib/typing.py /^_overload_registry = defaultdict(functools.partial(defaultdict, dict))$/;" v +_overridableVariables Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ STRINGDICT_HANDLE _overridableVariables;$/;" m class:PythonBootstrapperApplication file: +_override_all_archs Lib/_osx_support.py /^def _override_all_archs(_config_vars):$/;" f +_override_localeconv Lib/locale.py /^_override_localeconv = {}$/;" v +_pack_ Lib/test/test_ctypes/test_byteswap.py /^ _pack_ = 1$/;" v class:Test.test_unaligned_native_struct_fields.S +_pack_ Lib/test/test_ctypes/test_byteswap.py /^ _pack_ = 1$/;" v class:Test.test_unaligned_nonnative_struct_fields.S +_pack_ Lib/test/test_ctypes/test_pep3118.py /^ _pack_ = 2$/;" v class:PackedPoint +_pack_ Lib/test/test_ctypes/test_pep3118.py /^ _pack_ = 2$/;" v class:PackedPointEndPad +_pack_ Lib/test/test_ctypes/test_pep3118.py /^ _pack_ = 2$/;" v class:PackedPointMidPad +_pack_ Lib/test/test_ctypes/test_structures.py /^ _pack_ = 1$/;" v class:StructureTestCase.test_packed.X +_pack_ Lib/test/test_ctypes/test_structures.py /^ _pack_ = 2$/;" v class:StructureTestCase.test_packed.X +_pack_ Lib/test/test_ctypes/test_structures.py /^ _pack_ = 4$/;" v class:StructureTestCase.test_packed.X +_pack_ Lib/test/test_ctypes/test_structures.py /^ _pack_ = 8$/;" v class:StructureTestCase.test_packed.X +_pack_ Lib/test/test_ctypes/test_unaligned_structures.py /^ _pack_ = 1$/;" v class:X +_pack_ Lib/test/test_ctypes/test_unaligned_structures.py /^ _pack_ = 1$/;" v class:Y +_pack_ PC/layout/support/appxmanifest.py /^ _pack_ = 4$/;" v class:get_packagefamilyname.PACKAGE_ID +_pack_cookie Lib/_pyio.py /^ def _pack_cookie(self, position, dec_flags=0,$/;" m class:TextIOWrapper +_pack_uint32 Lib/importlib/__init__.py /^_pack_uint32 = _bootstrap_external._pack_uint32$/;" v +_pack_uint32 Lib/importlib/_bootstrap_external.py /^def _pack_uint32(x):$/;" f +_pad_whitespace Lib/ast.py /^def _pad_whitespace(source):$/;" f +_padding Include/internal/pycore_obmalloc.h /^ union { pymem_block *_padding;$/;" m union:pool_header::__anon141 +_pageIds Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ DWORD _pageIds[countof(PAGE_NAMES)];$/;" m class:PythonBootstrapperApplication file: +_pagesize Modules/_ctypes/malloc_closure.c /^static int _pagesize;$/;" v file: +_pair Modules/_sre/sre.c /^_pair(Py_ssize_t i1, Py_ssize_t i2)$/;" f +_parameter_cls Lib/inspect.py /^ _parameter_cls = Parameter$/;" v class:Signature +_paramspec_prepare_subst Lib/typing.py /^def _paramspec_prepare_subst(self, alias, args):$/;" f +_paramspec_subst Lib/typing.py /^def _paramspec_subst(self, arg):$/;" f +_parent_process Lib/multiprocessing/process.py /^_parent_process = None$/;" v +_parents Lib/zipfile/_path/__init__.py /^def _parents(path):$/;" f +_parse Lib/gettext.py /^ def _parse(self, fp):$/;" m class:GNUTranslations +_parse Lib/gettext.py /^ def _parse(self, fp):$/;" m class:NullTranslations +_parse Lib/gettext.py /^def _parse(tokens, priority=-1):$/;" f +_parse Lib/netrc.py /^ def _parse(self, file, fp, default_netrc):$/;" m class:netrc +_parse Lib/re/_parser.py /^def _parse(source, state, verbose, nested, first=False):$/;" f +_parse Lib/urllib/request.py /^ def _parse(self):$/;" m class:Request +_parse Tools/c-analyzer/c_common/tables.py /^ def _parse(cls, specstr):$/;" m class:ColumnSpec +_parse Tools/c-analyzer/c_parser/parser/__init__.py /^def _parse(srclines, anon_name, **srckwargs):$/;" f +_parse_arg Tools/clinic/clinic.py /^ def _parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:fildes_converter +_parse_args Lib/test/libregrtest/cmdline.py /^def _parse_args(args, **kwargs):$/;" f +_parse_array_unicode Modules/_json.c /^_parse_array_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) {$/;" f file: +_parse_bytestream Lib/xml/dom/xmlbuilder.py /^ def _parse_bytestream(self, stream, options):$/;" m class:DOMBuilder +_parse_capi Tools/c-analyzer/cpython/_capi.py /^def _parse_capi(lines, filename):$/;" f +_parse_chunked Lib/test/test_httplib.py /^ def _parse_chunked(self, data):$/;" m class:TransferEncodingTest +_parse_columns Tools/c-analyzer/c_parser/info.py /^ def _parse_columns(cls, columns):$/;" m class:HighlevelParsedItem +_parse_constant Modules/_json.c /^_parse_constant(PyScannerObject *s, const char *constant, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) {$/;" f file: +_parse_data Tools/c-analyzer/c_parser/info.py /^ def _parse_data(cls, datastr, fmt=None):$/;" m class:Declaration +_parse_data Tools/c-analyzer/c_parser/info.py /^ def _parse_data(self, datastr, fmt=None):$/;" m class:Statement +_parse_datetime Lib/nntplib.py /^def _parse_datetime(date_str, time_str=None):$/;" f +_parse_definitions Parser/asdl.py /^ def _parse_definitions(self):$/;" m class:ASDLParser +_parse_doctype_attlist Lib/_markupbase.py /^ def _parse_doctype_attlist(self, i, declstartpos):$/;" m class:ParserBase +_parse_doctype_element Lib/_markupbase.py /^ def _parse_doctype_element(self, i, declstartpos):$/;" m class:ParserBase +_parse_doctype_entity Lib/_markupbase.py /^ def _parse_doctype_entity(self, i, declstartpos):$/;" m class:ParserBase +_parse_doctype_notation Lib/_markupbase.py /^ def _parse_doctype_notation(self, i, declstartpos):$/;" m class:ParserBase +_parse_doctype_subset Lib/_markupbase.py /^ def _parse_doctype_subset(self, i, declstartpos):$/;" m class:ParserBase +_parse_dostime Lib/zipimport.py /^def _parse_dostime(d, t):$/;" f +_parse_dst_start_end Lib/zoneinfo/_zoneinfo.py /^def _parse_dst_start_end(dststr):$/;" f +_parse_example Lib/doctest.py /^ def _parse_example(self, m, name, lineno):$/;" m class:DocTestParser +_parse_exception_table Lib/dis.py /^def _parse_exception_table(code):$/;" f +_parse_feature_string Lib/xml/dom/domreg.py /^def _parse_feature_string(s):$/;" f +_parse_fields Parser/asdl.py /^ def _parse_fields(self):$/;" m class:ASDLParser +_parse_file Tools/c-analyzer/c_parser/__init__.py /^def _parse_file(filename, match_kind, get_file_preprocessor, maxsizes):$/;" f +_parse_files Tools/c-analyzer/c_common/scriptutil.py /^def _parse_files(filenames):$/;" f +_parse_flags Lib/re/_parser.py /^def _parse_flags(source, state, char):$/;" f +_parse_fmt Tools/c-analyzer/c_common/tables.py /^def _parse_fmt(fmt):$/;" f +_parse_format_specifier Lib/_pydecimal.py /^def _parse_format_specifier(format_spec, _localeconv=None):$/;" f +_parse_groupby Tools/c-analyzer/cpython/_capi.py /^def _parse_groupby(raw):$/;" f +_parse_guards Lib/test/support/__init__.py /^def _parse_guards(guards):$/;" f +_parse_header_lines Lib/http/client.py /^def _parse_header_lines(header_lines, _class=HTTPMessage):$/;" f +_parse_headers Lib/email/feedparser.py /^ def _parse_headers(self, lines):$/;" m class:FeedParser +_parse_hextet Lib/ipaddress.py /^ def _parse_hextet(cls, hextet_str):$/;" m class:_BaseV6 +_parse_hh_mm_ss_ff Lib/_pydatetime.py /^def _parse_hh_mm_ss_ff(tstr):$/;" f +_parse_incldirs Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _parse_incldirs(incldirs):$/;" f +_parse_includes Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _parse_includes(includes):$/;" f +_parse_int Lib/optparse.py /^def _parse_int(val):$/;" f +_parse_isoformat_date Lib/_pydatetime.py /^def _parse_isoformat_date(dtstr):$/;" f +_parse_isoformat_time Lib/_pydatetime.py /^def _parse_isoformat_time(tstr):$/;" f +_parse_known_args Lib/argparse.py /^ def _parse_known_args(self, arg_strings, namespace):$/;" m class:ArgumentParser +_parse_line Tools/c-analyzer/cpython/_builtin_types.py /^def _parse_line(line):$/;" f +_parse_line Tools/c-analyzer/cpython/_capi.py /^def _parse_line(line, prev=None):$/;" f +_parse_localename Lib/locale.py /^def _parse_localename(localename):$/;" f +_parse_mac Lib/uuid.py /^def _parse_mac(word):$/;" f +_parse_macros Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _parse_macros(macros):$/;" f +_parse_makefile Lib/sysconfig.py /^def _parse_makefile(filename, vars=None, keep_unresolved=True):$/;" f +_parse_marker_line Tools/c-analyzer/c_parser/preprocessor/gcc.py /^def _parse_marker_line(line, reqfile=None):$/;" f +_parse_module Parser/asdl.py /^ def _parse_module(self):$/;" m class:ASDLParser +_parse_next Tools/c-analyzer/c_parser/parser/_global.py /^def _parse_next(m, srcinfo, anon_name):$/;" f +_parse_next_local_static Tools/c-analyzer/c_parser/parser/_func_body.py /^def _parse_next_local_static(m, srcinfo, anon_name, func, depth):$/;" f +_parse_ns_name Lib/xml/dom/expatbuilder.py /^def _parse_ns_name(builder, name):$/;" f +_parse_num Lib/optparse.py /^def _parse_num(val, type):$/;" f +_parse_object_unicode Modules/_json.c /^_parse_object_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr)$/;" f file: +_parse_octet Lib/ipaddress.py /^ def _parse_octet(cls, octet_str):$/;" m class:_BaseV4 +_parse_optional Lib/argparse.py /^ def _parse_optional(self, arg_string):$/;" m class:ArgumentParser +_parse_optional_attributes Parser/asdl.py /^ def _parse_optional_attributes(self):$/;" m class:ASDLParser +_parse_optional_field_quantifier Parser/asdl.py /^ def _parse_optional_field_quantifier(self):$/;" m class:ASDLParser +_parse_optional_fields Parser/asdl.py /^ def _parse_optional_fields(self):$/;" m class:ASDLParser +_parse_os_release Lib/platform.py /^def _parse_os_release(lines):$/;" f +_parse_overview Lib/nntplib.py /^def _parse_overview(lines, fmt, data_process_func=None):$/;" f +_parse_overview_fmt Lib/nntplib.py /^def _parse_overview_fmt(lines):$/;" f +_parse_path Lib/pathlib.py /^ def _parse_path(cls, path):$/;" m class:PurePath +_parse_product Parser/asdl.py /^ def _parse_product(self):$/;" m class:ASDLParser +_parse_proxy Lib/urllib/request.py /^def _parse_proxy(proxy):$/;" f +_parse_python_tzpath Lib/zoneinfo/_tzpath.py /^def _parse_python_tzpath(env_var):$/;" f +_parse_raw_resolved Tools/c-analyzer/c_analyzer/info.py /^ def _parse_raw_resolved(cls, item, resolved, extra_extra):$/;" m class:Analyzed +_parse_realm Lib/urllib/request.py /^ def _parse_realm(self, header):$/;" m class:AbstractBasicAuthHandler +_parse_request Lib/test/test_httplib.py /^ def _parse_request(self, data):$/;" m class:TransferEncodingTest +_parse_row Tools/c-analyzer/c_common/tables.py /^def _parse_row(line, sep, ncols, default):$/;" f +_parse_sequence Lib/idlelib/multicall.py /^def _parse_sequence(sequence):$/;" f +_parse_spec Tools/build/freeze_modules.py /^def _parse_spec(spec, knownids=None, section=None):$/;" f +_parse_specs Tools/build/freeze_modules.py /^def _parse_specs(specs, section, seen):$/;" f +_parse_struct_next Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^def _parse_struct_next(m, srcinfo, anon_name, parent):$/;" f +_parse_sub Lib/re/_parser.py /^def _parse_sub(source, state, verbose, nested):$/;" f +_parse_type Parser/asdl.py /^ def _parse_type(self):$/;" m class:ASDLParser +_parse_tz_delta Lib/zoneinfo/_zoneinfo.py /^def _parse_tz_delta(tz_delta):$/;" f +_parse_tz_str Lib/zoneinfo/_zoneinfo.py /^def _parse_tz_str(tz_str):$/;" f +_parse_value Lib/test/test_ast.py /^ def _parse_value(self, s):$/;" m class:EndPositionTests +_parse_value_tb Lib/traceback.py /^def _parse_value_tb(exc, value, tb):$/;" f +_parse_varint Lib/dis.py /^def _parse_varint(iterator):$/;" f +_parse_version Lib/tkinter/__init__.py /^def _parse_version(version):$/;" f +_parse_voidp Modules/_ctypes/callproc.c /^_parse_voidp(PyObject *obj, void **address)$/;" f file: +_parse_worker_args Lib/test/libregrtest/runtest_mp.py /^def _parse_worker_args(worker_json: str) -> tuple[Namespace, str]:$/;" f +_parsecap Lib/poplib.py /^ def _parsecap(line):$/;" f function:POP3.capa +_parsedate_tz Lib/email/_parseaddr.py /^def _parsedate_tz(data):$/;" f +_parsegen Lib/email/feedparser.py /^ def _parsegen(self):$/;" m class:FeedParser +_parseparam Lib/cgi.py /^def _parseparam(s):$/;" f +_parseparam Lib/email/message.py /^def _parseparam(s):$/;" f +_parser_init Python/getargs.c /^_parser_init(struct _PyArg_Parser *parser)$/;" f file: +_parser_runtime_state Include/internal/pycore_parser.h /^struct _parser_runtime_state {$/;" s +_parser_runtime_state_INIT Include/internal/pycore_parser.h 31;" d +_partial_matches Lib/test/support/__init__.py /^ _partial_matches = ('msg', 'message')$/;" v class:Matcher +_partial_types Lib/test/test_functools.py /^_partial_types = [py_functools.partial]$/;" v +_parts_normcase Lib/pathlib.py /^ def _parts_normcase(self):$/;" m class:PurePath +_password_callback Modules/_ssl.c /^_password_callback(char *buf, int size, int rwflag, void *userdata)$/;" f file: +_patch Lib/_threading_local.py /^def _patch(self):$/;" f +_patch Lib/unittest/mock.py /^class _patch(object):$/;" c +_patch_dict Lib/unittest/mock.py /^ def _patch_dict(self):$/;" m class:_patch_dict +_patch_dict Lib/unittest/mock.py /^class _patch_dict(object):$/;" c +_patch_isfile Lib/test/test_unittest/test_program.py /^ def _patch_isfile(self, names, exists=True):$/;" m class:TestCommandLineArgs +_patch_multiple Lib/unittest/mock.py /^def _patch_multiple(target, spec=None, create=False, spec_set=None,$/;" f +_patch_object Lib/unittest/mock.py /^def _patch_object($/;" f +_patch_stopall Lib/unittest/mock.py /^def _patch_stopall():$/;" f +_patchheader Lib/aifc.py /^ def _patchheader(self):$/;" m class:Aifc_write +_patchheader Lib/sunau.py /^ def _patchheader(self):$/;" m class:Au_write +_patchheader Lib/wave.py /^ def _patchheader(self):$/;" m class:Wave_write +_path_abspath Lib/importlib/_bootstrap_external.py /^def _path_abspath(path):$/;" f +_path_browser Lib/idlelib/pathbrowser.py /^def _path_browser(parent): # htest #$/;" f +_path_browser_spec Lib/idlelib/idle_test/htest.py /^_path_browser_spec = {$/;" v +_path_eq Lib/multiprocessing/popen_spawn_win32.py /^def _path_eq(p1, p2):$/;" f +_path_hooks Lib/importlib/_bootstrap_external.py /^ def _path_hooks(path):$/;" m class:PathFinder +_path_importer_cache Lib/importlib/_bootstrap_external.py /^ def _path_importer_cache(cls, path):$/;" m class:PathFinder +_path_is_mode_type Lib/importlib/_bootstrap_external.py /^def _path_is_mode_type(path, mode):$/;" f +_path_isabs Lib/importlib/_bootstrap_external.py /^ def _path_isabs(path):$/;" f +_path_isdir Lib/importlib/_bootstrap_external.py /^def _path_isdir(path):$/;" f +_path_isfile Lib/importlib/_bootstrap_external.py /^def _path_isfile(path):$/;" f +_path_join Lib/importlib/_bootstrap_external.py /^ def _path_join(*path_parts):$/;" f function:_unpack_uint16 +_path_split Lib/importlib/_bootstrap_external.py /^def _path_split(path):$/;" f +_path_stat Lib/importlib/_bootstrap_external.py /^def _path_stat(path):$/;" f +_pathseps_with_colon Lib/importlib/_bootstrap_external.py /^_pathseps_with_colon = {f':{s}' for s in path_separators}$/;" v +_pattern Include/internal/pycore_ast.h /^struct _pattern {$/;" s +_pattern_kind Include/internal/pycore_ast.h /^enum _pattern_kind {MatchValue_kind=1, MatchSingleton_kind=2,$/;" g +_pause_reading Lib/asyncio/sslproto.py /^ def _pause_reading(self):$/;" m class:SSLProtocol +_pbm Lib/email/mime/image.py /^def _pbm(h):$/;" f +_peek Lib/test/test_io.py /^ def _peek(bufio):$/;" f function:BufferedRandomTest.test_writes_and_peek +_peek Lib/test/test_io.py /^ def _peek(bufio, n=-1):$/;" f function:BufferedRandomTest.test_flush_and_peek +_peek_chunked Lib/http/client.py /^ def _peek_chunked(self, n):$/;" m class:HTTPResponse +_peek_unlocked Lib/_pyio.py /^ def _peek_unlocked(self, n=0):$/;" m class:BufferedReader +_pen Lib/turtle.py /^ _pen = None$/;" v class:Turtle +_pending_call Include/internal/pycore_ceval_state.h /^ struct _pending_call {$/;" s struct:_pending_calls +_pending_callback Modules/_testcapimodule.c /^static int _pending_callback(void *arg)$/;" f file: +_pending_callback Modules/_testinternalcapi.c /^static int _pending_callback(void *arg)$/;" f file: +_pending_calls Include/internal/pycore_ceval_state.h /^struct _pending_calls {$/;" s +_pending_identify_callback Modules/_testinternalcapi.c /^_pending_identify_callback(void *arg)$/;" f file: +_percent_re Lib/locale.py /^_percent_re = re.compile(r'%(?:\\((?P.*?)\\))?'$/;" v +_percolator Lib/idlelib/percolator.py /^def _percolator(parent): # htest #$/;" f +_percolator_spec Lib/idlelib/idle_test/htest.py /^_percolator_spec = {$/;" v +_pgm Lib/email/mime/image.py /^def _pgm(h):$/;" f +_pgo_flag Lib/test/test_peg_generator/test_c_parser.py /^_pgo_flag = sysconfig.get_config_var("PGO_PROF_USE_FLAG")$/;" v +_pick_rounding_function Lib/_pydecimal.py /^ _pick_rounding_function = dict($/;" v class:Decimal +_pickle Lib/re/__init__.py /^def _pickle(p):$/;" f +_pickle_PicklerMemoProxy___reduce__ Modules/clinic/_pickle.c.h /^_pickle_PicklerMemoProxy___reduce__(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_PicklerMemoProxy___reduce___impl Modules/_pickle.c /^_pickle_PicklerMemoProxy___reduce___impl(PicklerMemoProxyObject *self)$/;" f file: +_pickle_PicklerMemoProxy_clear Modules/clinic/_pickle.c.h /^_pickle_PicklerMemoProxy_clear(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_PicklerMemoProxy_clear_impl Modules/_pickle.c /^_pickle_PicklerMemoProxy_clear_impl(PicklerMemoProxyObject *self)$/;" f file: +_pickle_PicklerMemoProxy_copy Modules/clinic/_pickle.c.h /^_pickle_PicklerMemoProxy_copy(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_PicklerMemoProxy_copy_impl Modules/_pickle.c /^_pickle_PicklerMemoProxy_copy_impl(PicklerMemoProxyObject *self)$/;" f file: +_pickle_Pickler___init__ Modules/clinic/_pickle.c.h /^_pickle_Pickler___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_pickle_Pickler___init___impl Modules/_pickle.c /^_pickle_Pickler___init___impl(PicklerObject *self, PyObject *file,$/;" f file: +_pickle_Pickler___sizeof__ Modules/clinic/_pickle.c.h /^_pickle_Pickler___sizeof__(PicklerObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_Pickler___sizeof___impl Modules/_pickle.c /^_pickle_Pickler___sizeof___impl(PicklerObject *self)$/;" f file: +_pickle_Pickler_clear_memo Modules/clinic/_pickle.c.h /^_pickle_Pickler_clear_memo(PicklerObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_Pickler_clear_memo_impl Modules/_pickle.c /^_pickle_Pickler_clear_memo_impl(PicklerObject *self)$/;" f file: +_pickle_Pickler_dump Modules/clinic/_pickle.c.h /^_pickle_Pickler_dump(PicklerObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_pickle_Pickler_dump_impl Modules/_pickle.c /^_pickle_Pickler_dump_impl(PicklerObject *self, PyTypeObject *cls,$/;" f file: +_pickle_UnpicklerMemoProxy___reduce__ Modules/clinic/_pickle.c.h /^_pickle_UnpicklerMemoProxy___reduce__(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_UnpicklerMemoProxy___reduce___impl Modules/_pickle.c /^_pickle_UnpicklerMemoProxy___reduce___impl(UnpicklerMemoProxyObject *self)$/;" f file: +_pickle_UnpicklerMemoProxy_clear Modules/clinic/_pickle.c.h /^_pickle_UnpicklerMemoProxy_clear(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_UnpicklerMemoProxy_clear_impl Modules/_pickle.c /^_pickle_UnpicklerMemoProxy_clear_impl(UnpicklerMemoProxyObject *self)$/;" f file: +_pickle_UnpicklerMemoProxy_copy Modules/clinic/_pickle.c.h /^_pickle_UnpicklerMemoProxy_copy(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_UnpicklerMemoProxy_copy_impl Modules/_pickle.c /^_pickle_UnpicklerMemoProxy_copy_impl(UnpicklerMemoProxyObject *self)$/;" f file: +_pickle_Unpickler___init__ Modules/clinic/_pickle.c.h /^_pickle_Unpickler___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +_pickle_Unpickler___init___impl Modules/_pickle.c /^_pickle_Unpickler___init___impl(UnpicklerObject *self, PyObject *file,$/;" f file: +_pickle_Unpickler___sizeof__ Modules/clinic/_pickle.c.h /^_pickle_Unpickler___sizeof__(UnpicklerObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_pickle_Unpickler___sizeof___impl Modules/_pickle.c /^_pickle_Unpickler___sizeof___impl(UnpicklerObject *self)$/;" f file: +_pickle_Unpickler_find_class Modules/clinic/_pickle.c.h /^_pickle_Unpickler_find_class(UnpicklerObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_pickle_Unpickler_find_class_impl Modules/_pickle.c /^_pickle_Unpickler_find_class_impl(UnpicklerObject *self, PyTypeObject *cls,$/;" f file: +_pickle_Unpickler_load Modules/clinic/_pickle.c.h /^_pickle_Unpickler_load(UnpicklerObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_pickle_Unpickler_load_impl Modules/_pickle.c /^_pickle_Unpickler_load_impl(UnpicklerObject *self, PyTypeObject *cls)$/;" f file: +_pickle_dump Modules/clinic/_pickle.c.h /^_pickle_dump(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_pickle_dump_impl Modules/_pickle.c /^_pickle_dump_impl(PyObject *module, PyObject *obj, PyObject *file,$/;" f file: +_pickle_dumps Modules/clinic/_pickle.c.h /^_pickle_dumps(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_pickle_dumps_impl Modules/_pickle.c /^_pickle_dumps_impl(PyObject *module, PyObject *obj, PyObject *protocol,$/;" f file: +_pickle_exec Modules/_pickle.c /^_pickle_exec(PyObject *m)$/;" f file: +_pickle_load Modules/clinic/_pickle.c.h /^_pickle_load(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_pickle_load_impl Modules/_pickle.c /^_pickle_load_impl(PyObject *module, PyObject *file, int fix_imports,$/;" f file: +_pickle_loads Modules/clinic/_pickle.c.h /^_pickle_loads(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_pickle_loads_impl Modules/_pickle.c /^_pickle_loads_impl(PyObject *module, PyObject *data, int fix_imports,$/;" f file: +_pickle_psargs Lib/typing.py /^def _pickle_psargs(psargs):$/;" f +_pickle_pskwargs Lib/typing.py /^def _pickle_pskwargs(pskwargs):$/;" f +_picklemodule Modules/_pickle.c /^static struct PyModuleDef _picklemodule = {$/;" v typeref:struct:PyModuleDef file: +_picklemodule Modules/_pickle.c /^static struct PyModuleDef _picklemodule;$/;" v typeref:struct:PyModuleDef file: +_ping Tools/ccbench/ccbench.py /^ def _ping():$/;" f function:latency_client +_pipe Lib/test/test_pty.py /^ def _pipe(self):$/;" m class:SmallPtyTests +_pipe_closed Lib/asyncio/proactor_events.py /^ def _pipe_closed(self, fut):$/;" m class:_ProactorWritePipeTransport +_pipe_connection_lost Lib/asyncio/base_subprocess.py /^ def _pipe_connection_lost(self, fd, exc):$/;" m class:BaseSubprocessTransport +_pipe_data_received Lib/asyncio/base_subprocess.py /^ def _pipe_data_received(self, fd, data):$/;" m class:BaseSubprocessTransport +_place_window Lib/tkinter/simpledialog.py /^def _place_window(w, parent=None):$/;" f +_plain_replace Lib/difflib.py /^ def _plain_replace(self, a, alo, ahi, b, blo, bhi):$/;" m class:Differ +_plannedAction Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOTSTRAPPER_ACTION _plannedAction;$/;" m class:PythonBootstrapperApplication file: +_platform Lib/platform.py /^def _platform(*args):$/;" f +_platform_cache Lib/platform.py /^_platform_cache = {}$/;" v +_platform_specific Lib/test/support/__init__.py /^ def _platform_specific(self):$/;" f function:PythonSymlink.__init__ +_platform_supports_abstract_sockets Lib/multiprocessing/util.py /^def _platform_supports_abstract_sockets():$/;" f +_platform_system Lib/uuid.py /^ _platform_system = platform.system()$/;" v +_png Lib/email/mime/image.py /^def _png(h):$/;" f +_pointlist Lib/turtle.py /^ def _pointlist(self, item):$/;" m class:TurtleScreenBase +_poll Lib/asyncio/windows_events.py /^ def _poll(self):$/;" m class:_BaseWaitHandleFuture +_poll Lib/asyncio/windows_events.py /^ def _poll(self, timeout=None):$/;" m class:IocpProactor +_poll Lib/multiprocessing/connection.py /^ def _poll(self, timeout):$/;" m class:.PipeConnection +_poll Lib/multiprocessing/connection.py /^ def _poll(self, timeout):$/;" m class:Connection +_polytrafo Lib/turtle.py /^ def _polytrafo(self, poly):$/;" m class:RawTurtle +_pop_action_class Lib/argparse.py /^ def _pop_action_class(self, kwargs, default=None):$/;" m class:_ActionsContainer +_pop_message Lib/email/feedparser.py /^ def _pop_message(self):$/;" m class:FeedParser +_pop_pending_call Python/ceval_gil.c /^_pop_pending_call(struct _pending_calls *pending,$/;" f file: +_populate_fixed_offsets Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _populate_fixed_offsets(cls):$/;" m class:ZoneDumpData +_populate_option_list Lib/optparse.py /^ def _populate_option_list(self, option_list, add_help=True):$/;" m class:OptionParser +_populate_test_cases Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _populate_test_cases(cls):$/;" m class:TZStrTest +_populate_tzpath Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _populate_tzpath(self, source_json):$/;" m class:ZoneInfoData +_populate_zonedump_data Lib/test/test_zoneinfo/test_zoneinfo.py /^ def _populate_zonedump_data(cls):$/;" m class:ZoneDumpData +_portprog Lib/urllib/parse.py /^_portprog = None$/;" v +_pos_int_from_ascii Modules/_posixsubprocess.c /^_pos_int_from_ascii(const char *name)$/;" f file: +_posix_clear Modules/posixmodule.c /^_posix_clear(PyObject *module)$/;" f file: +_posix_free Modules/posixmodule.c /^_posix_free(void *module)$/;" f file: +_posix_listdir Modules/posixmodule.c /^_posix_listdir(path_t *path, PyObject *list)$/;" f file: +_posix_spawn Lib/subprocess.py /^ def _posix_spawn(self, args, executable, env, restore_signals,$/;" f function:Popen._on_error_fd_closer +_posix_split_name Lib/tarfile.py /^ def _posix_split_name(self, name, encoding, errors):$/;" m class:TarInfo +_posix_traverse Modules/posixmodule.c /^_posix_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_posixshmem_shm_open Modules/_multiprocessing/clinic/posixshmem.c.h /^_posixshmem_shm_open(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_posixshmem_shm_open_impl Modules/_multiprocessing/posixshmem.c /^_posixshmem_shm_open_impl(PyObject *module, PyObject *path, int flags,$/;" f file: +_posixshmem_shm_unlink Modules/_multiprocessing/clinic/posixshmem.c.h /^_posixshmem_shm_unlink(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_posixshmem_shm_unlink_impl Modules/_multiprocessing/posixshmem.c /^_posixshmem_shm_unlink_impl(PyObject *module, PyObject *path)$/;" f file: +_posixshmemmodule Modules/_multiprocessing/posixshmem.c /^static struct PyModuleDef _posixshmemmodule = {$/;" v typeref:struct:PyModuleDef file: +_posixstate Modules/posixmodule.c /^} _posixstate;$/;" t typeref:struct:__anon477 file: +_posixsubprocess Lib/test/test_capi/test_misc.py /^ _posixsubprocess = None$/;" v +_posixsubprocess_slots Modules/_posixsubprocess.c /^static PyModuleDef_Slot _posixsubprocess_slots[] = {$/;" v file: +_posixsubprocessmodule Modules/_posixsubprocess.c /^static struct PyModuleDef _posixsubprocessmodule = {$/;" v typeref:struct:PyModuleDef file: +_posixsubprocessmodule Modules/_posixsubprocess.c /^static struct PyModuleDef _posixsubprocessmodule;$/;" v typeref:struct:PyModuleDef file: +_possibly_sorted Lib/reprlib.py /^def _possibly_sorted(x):$/;" f +_post Lib/nntplib.py /^ def _post(self, command, f):$/;" m class:NNTP +_post_epoch_days_before_year Lib/zoneinfo/_zoneinfo.py /^def _post_epoch_days_before_year(year):$/;" f +_post_initialize_hook Lib/test/test_mailbox.py /^ def _post_initialize_hook(self, msg):$/;" m class:TestBabylMessage +_post_initialize_hook Lib/test/test_mailbox.py /^ def _post_initialize_hook(self, msg):$/;" m class:TestMHMessage +_post_initialize_hook Lib/test/test_mailbox.py /^ def _post_initialize_hook(self, msg):$/;" m class:TestMaildirMessage +_post_initialize_hook Lib/test/test_mailbox.py /^ def _post_initialize_hook(self, msg):$/;" m class:TestMessage +_post_initialize_hook Lib/test/test_mailbox.py /^ def _post_initialize_hook(self, msg):$/;" m class:_TestMboxMMDFMessage +_post_install Tools/ssl/multissltests.py /^ def _post_install(self):$/;" m class:AbstractBuilder +_post_install Tools/ssl/multissltests.py /^ def _post_install(self):$/;" m class:BuildOpenSSL +_post_install_3xx Tools/ssl/multissltests.py /^ def _post_install_3xx(self):$/;" m class:BuildOpenSSL +_post_message_hook Lib/mailbox.py /^ def _post_message_hook(self, f):$/;" m class:Babyl +_post_message_hook Lib/mailbox.py /^ def _post_message_hook(self, f):$/;" m class:MMDF +_post_message_hook Lib/mailbox.py /^ def _post_message_hook(self, f):$/;" m class:_singlefileMailbox +_post_message_hook Lib/mailbox.py /^ def _post_message_hook(self, f):$/;" m class:mbox +_power_exact Lib/_pydecimal.py /^ def _power_exact(self, other, p):$/;" m class:Decimal +_power_modulo Lib/_pydecimal.py /^ def _power_modulo(self, other, modulo, context=None):$/;" m class:Decimal +_pp Lib/email/_header_value_parser.py /^ def _pp(self, indent=''):$/;" m class:Terminal +_pp Lib/email/_header_value_parser.py /^ def _pp(self, indent=''):$/;" m class:TokenList +_ppm Lib/email/mime/image.py /^def _ppm(h):$/;" f +_pprint_bytearray Lib/pprint.py /^ def _pprint_bytearray(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_bytes Lib/pprint.py /^ def _pprint_bytes(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_chain_map Lib/pprint.py /^ def _pprint_chain_map(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_counter Lib/pprint.py /^ def _pprint_counter(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_dataclass Lib/pprint.py /^ def _pprint_dataclass(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_default_dict Lib/pprint.py /^ def _pprint_default_dict(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_deque Lib/pprint.py /^ def _pprint_deque(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_dict Lib/pprint.py /^ def _pprint_dict(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_list Lib/pprint.py /^ def _pprint_list(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_mappingproxy Lib/pprint.py /^ def _pprint_mappingproxy(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_ordered_dict Lib/pprint.py /^ def _pprint_ordered_dict(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_set Lib/pprint.py /^ def _pprint_set(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_simplenamespace Lib/pprint.py /^ def _pprint_simplenamespace(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_str Lib/pprint.py /^ def _pprint_str(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_tuple Lib/pprint.py /^ def _pprint_tuple(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_user_dict Lib/pprint.py /^ def _pprint_user_dict(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_user_list Lib/pprint.py /^ def _pprint_user_list(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pprint_user_string Lib/pprint.py /^ def _pprint_user_string(self, object, stream, indent, allowance, context, level):$/;" m class:PrettyPrinter +_pre_mailbox_hook Lib/mailbox.py /^ def _pre_mailbox_hook(self, f):$/;" m class:Babyl +_pre_mailbox_hook Lib/mailbox.py /^ def _pre_mailbox_hook(self, f):$/;" m class:_singlefileMailbox +_pre_message_hook Lib/mailbox.py /^ def _pre_message_hook(self, f):$/;" m class:Babyl +_pre_message_hook Lib/mailbox.py /^ def _pre_message_hook(self, f):$/;" m class:MMDF +_pre_message_hook Lib/mailbox.py /^ def _pre_message_hook(self, f):$/;" m class:_singlefileMailbox +_prefix Lib/lib2to3/pytree.py /^ _prefix = "" # Whitespace and comments preceding this token in the input$/;" v class:Leaf +_prefix_from_ip_int Lib/ipaddress.py /^ def _prefix_from_ip_int(cls, ip_int):$/;" m class:_IPAddressBase +_prefix_from_ip_string Lib/ipaddress.py /^ def _prefix_from_ip_string(cls, ip_str):$/;" m class:_IPAddressBase +_prefix_from_prefix_string Lib/ipaddress.py /^ def _prefix_from_prefix_string(cls, prefixlen_str):$/;" m class:_IPAddressBase +_preinit_entry Python/sysmodule.c /^struct _preinit_entry {$/;" s file: +_preinit_warnoptions Python/sysmodule.c /^static _Py_PreInitEntry _preinit_warnoptions = NULL;$/;" v file: +_preinit_xoptions Python/sysmodule.c /^static _Py_PreInitEntry _preinit_xoptions = NULL;$/;" v file: +_prep_interpreter Lib/test/test__xxinterpchannels.py /^ def _prep_interpreter(self, interp):$/;" m class:ChannelCloseFixture +_prepare_set Lib/email/contentmanager.py /^def _prepare_set(msg, maintype, subtype, headers):$/;" f +_prepare_tag Lib/xml/etree/ElementPath.py /^def _prepare_tag(tag):$/;" f +_prepare_test_cases Lib/test/test_dis.py /^def _prepare_test_cases():$/;" f +_prepend_leading_slash Lib/multiprocessing/shared_memory.py /^ _prepend_leading_slash = True if _USE_POSIX else False$/;" v class:SharedMemory +_preprocess Objects/stringlib/fastsearch.h /^STRINGLIB(_preprocess)(const STRINGLIB_CHAR *needle, Py_ssize_t len_needle,$/;" f +_previousTestClass Lib/unittest/result.py /^ _previousTestClass = None$/;" v class:TestResult +_previousTestClass Lib/unittest/suite.py /^ _previousTestClass = None$/;" v class:_DebugResult +_previous_sigint_handler Lib/pdb.py /^ _previous_sigint_handler = None$/;" v class:Pdb +_prevmonth Lib/calendar.py /^def _prevmonth(year, month):$/;" f +_printDurations Lib/unittest/runner.py /^ def _printDurations(self, result):$/;" m class:TextTestRunner +_printEnvironment PC/launcher2.c /^_printEnvironment(const EnvironmentInfo *env, FILE *out, bool showPath, const wchar_t *argument)$/;" f +_print_debug Lib/smtplib.py /^ def _print_debug(self, *args):$/;" m class:SMTP +_print_dict Lib/sysconfig.py /^def _print_dict(title, data):$/;" f +_print_help Lib/unittest/main.py /^ def _print_help(self, *args, **kwargs):$/;" m class:TestProgram +_print_lines Lib/pdb.py /^ def _print_lines(self, lines, start, breaks=(), frame=None):$/;" m class:Pdb +_print_locale Lib/locale.py /^def _print_locale():$/;" f +_print_message Lib/argparse.py /^ def _print_message(self, message, file=None):$/;" m class:ArgumentParser +_print_message_content Lib/test/smtpd.py /^ def _print_message_content(self, peer, data):$/;" m class:DebuggingServer +_print_mutex Lib/test/test_thread.py /^_print_mutex = thread.allocate_lock()$/;" v +_print_tokens Lib/shlex.py /^def _print_tokens(lexer):$/;" f +_private_globals Lib/test/test_inspect.py /^ def _private_globals(self):$/;" m class:TestGetClosureVars +_private_networks Lib/ipaddress.py /^ _private_networks = [$/;" v class:_IPv4Constants +_private_networks Lib/ipaddress.py /^ _private_networks = [$/;" v class:_IPv6Constants +_private_networks Lib/ipaddress.py /^ _private_networks = []$/;" v class:_BaseConstants +_proc_builtin Lib/tarfile.py /^ def _proc_builtin(self, tarfile):$/;" m class:TarInfo +_proc_gnulong Lib/tarfile.py /^ def _proc_gnulong(self, tarfile):$/;" m class:TarInfo +_proc_gnusparse_00 Lib/tarfile.py /^ def _proc_gnusparse_00(self, next, pax_headers, buf):$/;" m class:TarInfo +_proc_gnusparse_01 Lib/tarfile.py /^ def _proc_gnusparse_01(self, next, pax_headers):$/;" m class:TarInfo +_proc_gnusparse_10 Lib/tarfile.py /^ def _proc_gnusparse_10(self, next, pax_headers, tarfile):$/;" m class:TarInfo +_proc_member Lib/tarfile.py /^ def _proc_member(self, tarfile):$/;" m class:TarInfo +_proc_pax Lib/tarfile.py /^ def _proc_pax(self, tarfile):$/;" m class:TarInfo +_proc_sparse Lib/tarfile.py /^ def _proc_sparse(self, tarfile):$/;" m class:TarInfo +_process Doc/tools/extensions/escape4chm.py /^def _process(string):$/;" f +_process_args Lib/optparse.py /^ def _process_args(self, largs, rargs, values):$/;" m class:OptionParser +_process_chunk Lib/concurrent/futures/process.py /^def _process_chunk(fn, chunk):$/;" f +_process_class Lib/dataclasses.py /^def _process_class(cls, init, repr, eq, order, unsafe_hash, frozen,$/;" f +_process_counter Lib/multiprocessing/process.py /^_process_counter = itertools.count(1)$/;" v +_process_events Lib/asyncio/base_events.py /^ def _process_events(self, event_list):$/;" m class:BaseEventLoop +_process_events Lib/asyncio/proactor_events.py /^ def _process_events(self, event_list):$/;" m class:BaseProactorEventLoop +_process_events Lib/asyncio/selector_events.py /^ def _process_events(self, event_list):$/;" m class:BaseSelectorEventLoop +_process_events Lib/test/test_asyncio/test_base_events.py /^ _process_events = mock.Mock()$/;" v class:BaseEventLoopTests.test_default_exc_handler_broken.Loop +_process_events Lib/test/test_asyncio/utils.py /^ def _process_events(self, event_list):$/;" m class:TestLoop +_process_exited Lib/asyncio/base_subprocess.py /^ def _process_exited(self, returncode):$/;" m class:BaseSubprocessTransport +_process_long_opt Lib/optparse.py /^ def _process_long_opt(self, rargs, values):$/;" m class:OptionParser +_process_outgoing Lib/asyncio/sslproto.py /^ def _process_outgoing(self):$/;" m class:SSLProtocol +_process_result Lib/test/libregrtest/runtest_mp.py /^ def _process_result(self, item: QueueOutput) -> bool:$/;" m class:MultiprocessTestRunner +_process_rfc2109_cookies Lib/http/cookiejar.py /^ def _process_rfc2109_cookies(self, cookies):$/;" m class:CookieJar +_process_self_data Lib/asyncio/selector_events.py /^ def _process_self_data(self, data):$/;" m class:BaseSelectorEventLoop +_process_self_data Lib/asyncio/unix_events.py /^ def _process_self_data(self, data):$/;" m class:_UnixSelectorEventLoop +_process_short_opts Lib/optparse.py /^ def _process_short_opts(self, rargs, values):$/;" m class:OptionParser +_process_tokens Lib/tabnanny.py /^def _process_tokens(tokens):$/;" f +_process_worker Lib/concurrent/futures/process.py /^def _process_worker(call_queue, result_queue, initializer, initargs, max_tasks=None):$/;" f +_processoptions Lib/warnings.py /^def _processoptions(args):$/;" f +_profile_hook Lib/threading.py /^_profile_hook = None$/;" v +_profiles Tools/wasm/wasm_build.py /^_profiles = [$/;" v +_prohibited Lib/typing.py /^_prohibited = frozenset({'__new__', '__init__', '__slots__', '__getnewargs__',$/;" v +_proto Lib/test/pickletester.py /^ _proto = None$/;" v class:REX_four +_proto Lib/test/pickletester.py /^ _proto = None$/;" v class:REX_three +_proto Lib/test/pickletester.py /^ _proto = None$/;" v class:REX_two +_proto_hook Lib/typing.py /^def _proto_hook(cls, other):$/;" f +_proto_member Lib/enum.py /^class _proto_member:$/;" c +_protocol_paused Lib/asyncio/sslproto.py /^ def _protocol_paused(self):$/;" m class:_SSLProtocolTransport +_proxify Lib/idlelib/rpc.py /^ def _proxify(self, obj):$/;" m class:SocketIO +_proxy_bypass_macosx_sysconf Lib/urllib/request.py /^def _proxy_bypass_macosx_sysconf(host, proxy_settings):$/;" f +_prune_breaks Lib/bdb.py /^ def _prune_breaks(self, filename, lineno):$/;" m class:Bdb +_pseudo_ops Lib/opcode.py /^_pseudo_ops = {}$/;" v +_pthFileTests Lib/test/test_site.py /^class _pthFileTests(unittest.TestCase):$/;" c +_public_network Lib/ipaddress.py /^ _public_network = IPv4Network('100.64.0.0\/10')$/;" v class:_IPv4Constants +_push_async_cm_exit Lib/contextlib.py /^ def _push_async_cm_exit(self, cm, cm_exit):$/;" m class:AsyncExitStack +_push_cm_exit Lib/contextlib.py /^ def _push_cm_exit(self, cm, cm_exit):$/;" m class:_BaseExitStack +_push_exit_callback Lib/contextlib.py /^ def _push_exit_callback(self, callback, is_sync=True):$/;" m class:_BaseExitStack +_push_pending_call Python/ceval_gil.c /^_push_pending_call(struct _pending_calls *pending,$/;" f file: +_put Lib/asyncio/queues.py /^ def _put(self, item):$/;" m class:LifoQueue +_put Lib/asyncio/queues.py /^ def _put(self, item):$/;" m class:Queue +_put Lib/asyncio/queues.py /^ def _put(self, item, heappush=heapq.heappush):$/;" m class:PriorityQueue +_put Lib/queue.py /^ def _put(self, item):$/;" m class:LifoQueue +_put Lib/queue.py /^ def _put(self, item):$/;" m class:PriorityQueue +_put Lib/queue.py /^ def _put(self, item):$/;" m class:Queue +_put Lib/test/test_queue.py /^ def _put(self, item):$/;" m class:FailingQueueTest.setUp.FailingQueue +_put_one_in_queue Lib/test/_test_multiprocessing.py /^ def _put_one_in_queue(cls, queue):$/;" m class:TestStartMethod +_put_two_and_nest_once Lib/test/_test_multiprocessing.py /^ def _put_two_and_nest_once(cls, queue):$/;" m class:TestStartMethod +_putcmd Lib/nntplib.py /^ def _putcmd(self, line):$/;" m class:NNTP +_putcmd Lib/poplib.py /^ def _putcmd(self, line):$/;" m class:POP3 +_putline Lib/nntplib.py /^ def _putline(self, line):$/;" m class:NNTP +_putline Lib/poplib.py /^ def _putline(self, line):$/;" m class:POP3 +_putter Lib/test/_test_multiprocessing.py /^ def _putter(cls, address, authkey):$/;" m class:_TestManagerRestart +_putter Lib/test/_test_multiprocessing.py /^ def _putter(cls, address, authkey):$/;" m class:_TestRemoteManager +_pwinfo_set Modules/_ssl.c /^_pwinfo_set(_PySSLPasswordInfo *pw_info, PyObject* password,$/;" f file: +_py__get_running_loop Lib/asyncio/events.py /^_py__get_running_loop = _get_running_loop$/;" v +_py__set_running_loop Lib/asyncio/events.py /^_py__set_running_loop = _set_running_loop$/;" v +_py_cflags_nodist Lib/test/test_peg_generator/test_c_parser.py /^_py_cflags_nodist = sysconfig.get_config_var("PY_CFLAGS_NODIST")$/;" v +_py_current_task Lib/asyncio/tasks.py /^_py_current_task = current_task$/;" v +_py_enter_task Lib/asyncio/tasks.py /^_py_enter_task = _enter_task$/;" v +_py_float_abs Modules/_decimal/_decimal.c /^static unaryfunc _py_float_abs;$/;" v file: +_py_float_as_integer_ratio Modules/_decimal/_decimal.c /^static PyCFunction _py_float_as_integer_ratio;$/;" v file: +_py_float_format_ieee_big_endian Include/internal/pycore_floatobject.h /^ _py_float_format_ieee_big_endian,$/;" e enum:_py_float_format_type +_py_float_format_ieee_little_endian Include/internal/pycore_floatobject.h /^ _py_float_format_ieee_little_endian,$/;" e enum:_py_float_format_type +_py_float_format_type Include/internal/pycore_floatobject.h /^enum _py_float_format_type {$/;" g +_py_float_format_unknown Include/internal/pycore_floatobject.h /^ _py_float_format_unknown,$/;" e enum:_py_float_format_type +_py_free_history_entry Modules/readline.c /^_py_free_history_entry(HIST_ENTRY *entry)$/;" f file: +_py_func Modules/_ctypes/_ctypes_test.c /^EXPORT(void) _py_func(void)$/;" f +_py_func_si Modules/_ctypes/_ctypes_test.c /^EXPORT(void) _py_func_si(char *s, int i)$/;" f +_py_func_state Include/internal/pycore_function.h /^struct _py_func_state {$/;" s +_py_get_event_loop Lib/asyncio/events.py /^_py_get_event_loop = get_event_loop$/;" v +_py_get_history_length Modules/readline.c /^_py_get_history_length(void)$/;" f file: +_py_get_running_loop Lib/asyncio/events.py /^_py_get_running_loop = get_running_loop$/;" v +_py_leave_task Lib/asyncio/tasks.py /^_py_leave_task = _leave_task$/;" v +_py_long_bit_length Modules/_decimal/_decimal.c /^static PyCFunction _py_long_bit_length;$/;" v file: +_py_long_floor_divide Modules/_decimal/_decimal.c /^static binaryfunc _py_long_floor_divide;$/;" v file: +_py_long_multiply Modules/_decimal/_decimal.c /^static binaryfunc _py_long_multiply;$/;" v file: +_py_long_power Modules/_decimal/_decimal.c /^static ternaryfunc _py_long_power;$/;" v file: +_py_make_codeunit Include/cpython/code.h /^_py_make_codeunit(uint8_t opcode, uint8_t oparg)$/;" f +_py_object_runtime_state Include/internal/pycore_object_state.h /^struct _py_object_runtime_state {$/;" s +_py_object_state Include/internal/pycore_object_state.h /^struct _py_object_state {$/;" s +_py_object_state_INIT Include/internal/pycore_runtime_init.h 135;" d +_py_object_state_INIT Include/internal/pycore_runtime_init.h 140;" d +_py_register_eager_task Lib/asyncio/tasks.py /^_py_register_eager_task = _register_eager_task$/;" v +_py_register_task Lib/asyncio/tasks.py /^_py_register_task = _register_task$/;" v +_py_set_opcode Include/cpython/code.h /^_py_set_opcode(_Py_CODEUNIT *word, uint8_t opcode)$/;" f +_py_stats Python/specialize.c /^PyStats *_py_stats = NULL;$/;" v +_py_stats_struct Python/specialize.c /^PyStats _py_stats_struct = { 0 };$/;" v +_py_swap_current_task Lib/asyncio/tasks.py /^_py_swap_current_task = _swap_current_task$/;" v +_py_temp_compile PC/layout/main.py /^def _py_temp_compile(src, name, ns, dest_dir=None, checked=True):$/;" f +_py_trashcan Include/cpython/pystate.h /^struct _py_trashcan {$/;" s +_py_unregister_eager_task Lib/asyncio/tasks.py /^_py_unregister_eager_task = _unregister_eager_task$/;" v +_py_unregister_task Lib/asyncio/tasks.py /^_py_unregister_task = _unregister_task$/;" v +_py_urandom_cache_INIT Include/internal/pycore_pyhash.h 23;" d +_py_urandom_cache_INIT Include/internal/pycore_pyhash.h 28;" d +_py_version Lib/idlelib/editor.py /^_py_version = ' (%s)' % platform.python_version()$/;" v +_pycontextobject Include/internal/pycore_context.h /^struct _pycontextobject {$/;" s +_pycontexttokenobject Include/internal/pycore_context.h /^struct _pycontexttokenobject {$/;" s +_pycontextvarobject Include/internal/pycore_context.h /^struct _pycontextvarobject {$/;" s +_pylong Lib/test/test_int.py /^ _pylong = None$/;" v +_pymem_allocators Include/internal/pycore_pymem.h /^struct _pymem_allocators {$/;" s +_pymem_allocators_debug_INIT Include/internal/pycore_pymem_init.h 71;" d +_pymem_allocators_obj_arena_INIT Include/internal/pycore_pymem_init.h 78;" d +_pymem_allocators_standard_INIT Include/internal/pycore_pymem_init.h 56;" d +_pymem_allocators_standard_INIT Include/internal/pycore_pymem_init.h 63;" d +_pysqlite_build_column_name Modules/_sqlite/cursor.c /^_pysqlite_build_column_name(pysqlite_Cursor *self, const char *colname)$/;" f file: +_pysqlite_build_py_params Modules/_sqlite/connection.c /^_pysqlite_build_py_params(sqlite3_context *context, int argc,$/;" f file: +_pysqlite_drop_unused_cursor_references Modules/_sqlite/connection.c /^static void _pysqlite_drop_unused_cursor_references(pysqlite_Connection* self)$/;" f file: +_pysqlite_fetch_one_row Modules/_sqlite/cursor.c /^_pysqlite_fetch_one_row(pysqlite_Cursor* self)$/;" f file: +_pysqlite_get_converter Modules/_sqlite/cursor.c /^_pysqlite_get_converter(pysqlite_state *state, const char *keystr,$/;" f file: +_pysqlite_long_as_int64 Modules/_sqlite/util.c /^_pysqlite_long_as_int64(PyObject * py_val)$/;" f +_pysqlite_query_execute Modules/_sqlite/cursor.c /^_pysqlite_query_execute(pysqlite_Cursor* self, int multiple, PyObject* operation, PyObject* second_argument)$/;" f +_pysqlite_set_result Modules/_sqlite/connection.c /^_pysqlite_set_result(sqlite3_context* context, PyObject* py_val)$/;" f file: +_pysqlite_seterror Modules/_sqlite/util.c /^_pysqlite_seterror(pysqlite_state *state, sqlite3 *db)$/;" f +_pystat_fromstructstat Modules/posixmodule.c /^_pystat_fromstructstat(PyObject *module, STRUCT_STAT *st)$/;" f file: +_pystat_l128_from_l64_l64 Modules/posixmodule.c /^_pystat_l128_from_l64_l64(uint64_t low, uint64_t high)$/;" f file: +_pystatvfs_fromstructstatvfs Modules/posixmodule.c /^_pystatvfs_fromstructstatvfs(PyObject *module, struct statvfs st) {$/;" f file: +_python_exit Lib/concurrent/futures/process.py /^def _python_exit():$/;" f +_python_exit Lib/concurrent/futures/thread.py /^def _python_exit():$/;" f +_pythread_nt_set_stacksize Python/thread_nt.h /^_pythread_nt_set_stacksize(size_t size)$/;" f +_pythread_pthread_set_stacksize Python/thread_pthread.h /^_pythread_pthread_set_stacksize(size_t size)$/;" f +_pythread_runtime_state Include/internal/pycore_pythread.h /^struct _pythread_runtime_state {$/;" s +_q_byte_map Lib/email/_encoded_words.py /^_q_byte_map = _QByteMap()$/;" v +_q_byte_subber Lib/email/_encoded_words.py /^_q_byte_subber = functools.partial(re.compile(br'=([a-fA-F0-9]{2})').sub,$/;" v +_qcheck_pow_bounds Modules/_decimal/libmpdec/mpdecimal.c /^_qcheck_pow_bounds(mpd_t *result, const mpd_t *x, const mpd_t *y,$/;" f file: +_qcheck_pow_one Modules/_decimal/libmpdec/mpdecimal.c /^_qcheck_pow_one(mpd_t *result, const mpd_t *base, const mpd_t *exp,$/;" f file: +_qcheck_pow_one_inf Modules/_decimal/libmpdec/mpdecimal.c /^_qcheck_pow_one_inf(mpd_t *result, const mpd_t *base, uint8_t resultsign,$/;" f file: +_qencode Lib/email/encoders.py /^def _qencode(s):$/;" f +_qformat Lib/difflib.py /^ def _qformat(self, aline, bline, atags, btags):$/;" m class:Differ +_qname Lib/xml/etree/ElementTree.py /^ def _qname(self, qname, uri=None):$/;" m class:C14NWriterTarget +_qname Lib/xml/sax/saxutils.py /^ def _qname(self, name):$/;" m class:XMLGenerator +_qs_result Lib/test/test_cgi.py /^ _qs_result = {$/;" v +_qsize Lib/queue.py /^ def _qsize(self):$/;" m class:LifoQueue +_qsize Lib/queue.py /^ def _qsize(self):$/;" m class:PriorityQueue +_qsize Lib/queue.py /^ def _qsize(self):$/;" m class:Queue +_query_data PC/_wmimodule.cpp /^struct _query_data {$/;" s file: +_query_thread PC/_wmimodule.cpp /^_query_thread(LPVOID param)$/;" f file: +_queue Lib/test/_test_multiprocessing.py /^_queue = pyqueue.Queue()$/;" v +_queue_SimpleQueue_empty Modules/clinic/_queuemodule.c.h /^_queue_SimpleQueue_empty(simplequeueobject *self, PyObject *Py_UNUSED(ignored))$/;" f +_queue_SimpleQueue_empty_impl Modules/_queuemodule.c /^_queue_SimpleQueue_empty_impl(simplequeueobject *self)$/;" f file: +_queue_SimpleQueue_get Modules/clinic/_queuemodule.c.h /^_queue_SimpleQueue_get(simplequeueobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_queue_SimpleQueue_get_impl Modules/_queuemodule.c /^_queue_SimpleQueue_get_impl(simplequeueobject *self, PyTypeObject *cls,$/;" f file: +_queue_SimpleQueue_get_nowait Modules/clinic/_queuemodule.c.h /^_queue_SimpleQueue_get_nowait(simplequeueobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_queue_SimpleQueue_get_nowait_impl Modules/_queuemodule.c /^_queue_SimpleQueue_get_nowait_impl(simplequeueobject *self,$/;" f file: +_queue_SimpleQueue_put Modules/clinic/_queuemodule.c.h /^_queue_SimpleQueue_put(simplequeueobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_queue_SimpleQueue_put_impl Modules/_queuemodule.c /^_queue_SimpleQueue_put_impl(simplequeueobject *self, PyObject *item,$/;" f file: +_queue_SimpleQueue_put_nowait Modules/clinic/_queuemodule.c.h /^_queue_SimpleQueue_put_nowait(simplequeueobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_queue_SimpleQueue_put_nowait_impl Modules/_queuemodule.c /^_queue_SimpleQueue_put_nowait_impl(simplequeueobject *self, PyObject *item)$/;" f file: +_queue_SimpleQueue_qsize Modules/clinic/_queuemodule.c.h /^_queue_SimpleQueue_qsize(simplequeueobject *self, PyObject *Py_UNUSED(ignored))$/;" f +_queue_SimpleQueue_qsize_impl Modules/_queuemodule.c /^_queue_SimpleQueue_qsize_impl(simplequeueobject *self)$/;" f file: +_quote Lib/http/cookies.py /^def _quote(str):$/;" f +_quote Lib/imaplib.py /^ def _quote(self, arg):$/;" m class:IMAP4 +_quote_periods Lib/smtplib.py /^def _quote_periods(bindata):$/;" f +_r_object Tools/build/umarshal.py /^ def _r_object(self) -> Any:$/;" m class:Reader +_raise Lib/test/test_unittest/test_assertions.py /^ def _raise(e):$/;" f function:Test_Assertions.test_assertRaises +_raise Lib/test/test_unittest/test_case.py /^ def _raise(self=None):$/;" f function:.testKeyboardInterrupt +_raise Lib/test/test_unittest/test_case.py /^ def _raise(self=None):$/;" f function:.testSystemExit +_raiseFailure Lib/unittest/case.py /^ def _raiseFailure(self, standardMsg):$/;" m class:_BaseTestCaseContext +_raise_error Lib/_pydecimal.py /^ def _raise_error(self, condition, explanation = None, *args):$/;" m class:Context +_raise_error Lib/test/test_concurrent_futures/test_deadlock.py /^def _raise_error(Err):$/;" f +_raise_error_ignore_stderr Lib/test/test_concurrent_futures/test_deadlock.py /^def _raise_error_ignore_stderr(Err):$/;" f +_raise_malformed_node Lib/ast.py /^ def _raise_malformed_node(node):$/;" f function:literal_eval +_raise_on_src Lib/test/test_shutil.py /^ def _raise_on_src(fname, *, follow_symlinks=True):$/;" f function:TestCopy.test_copyxattr +_raise_on_user_foo Lib/test/test_shutil.py /^ def _raise_on_user_foo(fname, attr, val, **kwargs):$/;" f function:TestCopy.test_copyxattr +_raise_point Lib/test/test_email/test_defect_handling.py /^ def _raise_point(self, defect):$/;" m class:TestDefectRaising +_raise_point Lib/test/test_email/test_defect_handling.py /^ def _raise_point(self, defect):$/;" m class:TestDefectsBase +_raise_serialization_error Lib/xml/etree/ElementTree.py /^def _raise_serialization_error(text):$/;" f +_raised Lib/test/test_shutil.py /^ _raised = False$/;" v class:TestCopyFile.Faux +_raiseerror Lib/xml/etree/ElementTree.py /^ def _raiseerror(self, value):$/;" m class:XMLParser +_raiser Lib/test/test_shutil.py /^ def _raiser(*args, **kwargs):$/;" f function:TestRmTree.test_rmtree_uses_safe_fd_version_if_available +_rand Lib/multiprocessing/heap.py /^ _rand = tempfile._RandomNameSequence()$/;" v class:Arena +_rand Lib/multiprocessing/synchronize.py /^ _rand = tempfile._RandomNameSequence()$/;" v class:SemLock +_randbelow Lib/random.py /^ _randbelow = _randbelow_with_getrandbits$/;" v class:Random +_randbelow_with_getrandbits Lib/random.py /^ def _randbelow_with_getrandbits(self, n):$/;" m class:Random +_randbelow_without_getrandbits Lib/random.py /^ def _randbelow_without_getrandbits(self, n, maxsize=1< list[float]:$/;" f +_rast Lib/email/mime/image.py /^def _rast(h):$/;" f +_raw_data Tools/c-analyzer/c_parser/info.py /^ def _raw_data(cls, data, extra):$/;" m class:HighlevelParsedItem +_raw_data Tools/c-analyzer/c_parser/info.py /^ def _raw_data(self, data):$/;" m class:Enum +_raw_data Tools/c-analyzer/c_parser/info.py /^ def _raw_data(self, data):$/;" m class:Function +_raw_data Tools/c-analyzer/c_parser/info.py /^ def _raw_data(self, data):$/;" m class:Statement +_raw_data Tools/c-analyzer/c_parser/info.py /^ def _raw_data(self, data):$/;" m class:TypeDef +_raw_data Tools/c-analyzer/c_parser/info.py /^ def _raw_data(self, data):$/;" m class:_StructUnion +_raw_data Tools/c-analyzer/c_parser/info.py /^ def _raw_data(self, data, extra):$/;" m class:Variable +_raw_input Lib/getpass.py /^def _raw_input(prompt="", stream=None, input=None):$/;" f +_rc_extensions Tools/c-analyzer/distutils/_msvccompiler.py /^ _rc_extensions = ['.rc']$/;" v class:MSVCCompiler +_rc_extensions Tools/c-analyzer/distutils/msvc9compiler.py /^ _rc_extensions = ['.rc']$/;" v class:MSVCCompiler +_rc_extensions Tools/c-analyzer/distutils/msvccompiler.py /^ _rc_extensions = ['.rc']$/;" v class:MSVCCompiler +_re_stripid Lib/pydoc.py /^_re_stripid = re.compile(r' at 0x[0-9a-f]{6,16}(>+)$', re.IGNORECASE)$/;" v +_read Lib/configparser.py /^ def _read(self, fp, fpname):$/;" m class:RawConfigParser +_read Lib/mailbox.py /^ def _read(self, size, read_method):$/;" m class:_PartialFile +_read Lib/mailbox.py /^ def _read(self, size, read_method):$/;" m class:_ProxyFile +_read Lib/multiprocessing/connection.py /^ _read = _multiprocessing.recv$/;" v class:Connection +_read Lib/multiprocessing/connection.py /^ _read = os.read$/;" v class:Connection +_read Lib/pty.py /^def _read(fd):$/;" f +_read Lib/tarfile.py /^ def _read(self, size):$/;" m class:_Stream +_read Lib/test/test_io.py /^ def _read():$/;" f function:SignalsTest.check_interrupted_write +_read Lib/test/test_io.py /^ def _read():$/;" f function:SignalsTest.check_interrupted_write_retry +_read Lib/test/test_io.py /^ def _read(bufio):$/;" f function:BufferedRandomTest.test_writes_and_readintos +_read Lib/test/test_io.py /^ def _read(bufio):$/;" f function:BufferedRandomTest.test_writes_and_reads +_read1 Lib/test/test_io.py /^ def _read1(bufio):$/;" f function:BufferedRandomTest.test_writes_and_read1s +_read1 Lib/zipfile/__init__.py /^ def _read1(self, n):$/;" m class:ZipExtFile +_read1_chunked Lib/http/client.py /^ def _read1_chunked(self, n):$/;" m class:HTTPResponse +_read2 Lib/zipfile/__init__.py /^ def _read2(self, n):$/;" m class:ZipExtFile +_readAndReseek Lib/test/test_httpservers.py /^ def _readAndReseek(f):$/;" f function:BaseHTTPRequestHandlerTestCase.test_header_unbuffered_when_continue +_readIni PC/launcher2.c /^_readIni(const wchar_t *section, const wchar_t *settingName, wchar_t *buffer, int bufferLength)$/;" f +_read_and_discard_trailer Lib/http/client.py /^ def _read_and_discard_trailer(self):$/;" m class:HTTPResponse +_read_args_from_files Lib/argparse.py /^ def _read_args_from_files(self, arg_strings):$/;" m class:ArgumentParser +_read_char Lib/netrc.py /^ def _read_char(self):$/;" m class:_netrclex +_read_chunk Lib/_pyio.py /^ def _read_chunk(self):$/;" m class:TextIOWrapper +_read_chunked Lib/http/client.py /^ def _read_chunked(self, amt=None):$/;" m class:HTTPResponse +_read_cmd_output Lib/_aix_support.py /^def _read_cmd_output(commandstring, capture_stderr=False):$/;" f +_read_comm_chunk Lib/aifc.py /^ def _read_comm_chunk(self, chunk):$/;" m class:Aifc_read +_read_defaults Lib/configparser.py /^ def _read_defaults(self, defaults):$/;" m class:ConfigParser +_read_defaults Lib/configparser.py /^ def _read_defaults(self, defaults):$/;" m class:RawConfigParser +_read_directory Lib/zipimport.py /^def _read_directory(archive):$/;" f +_read_dist_info_reqs Lib/importlib/metadata/__init__.py /^ def _read_dist_info_reqs(self):$/;" m class:Distribution +_read_eager Lib/test/test_telnetlib.py /^ def _read_eager(self, func_name):$/;" m class:ReadTests +_read_egg_info_reqs Lib/importlib/metadata/__init__.py /^ def _read_egg_info_reqs(self):$/;" m class:Distribution +_read_eof Lib/gzip.py /^ def _read_eof(self):$/;" m class:_GzipReader +_read_exact Lib/gzip.py /^def _read_exact(fp, n):$/;" f +_read_files_distinfo Lib/importlib/metadata/__init__.py /^ def _read_files_distinfo(self):$/;" m class:Distribution +_read_files_egginfo_installed Lib/importlib/metadata/__init__.py /^ def _read_files_egginfo_installed(self):$/;" m class:Distribution +_read_files_egginfo_sources Lib/importlib/metadata/__init__.py /^ def _read_files_egginfo_sources(self):$/;" m class:Distribution +_read_float Lib/aifc.py /^def _read_float(f): # 10 bytes$/;" f +_read_fmt_chunk Lib/wave.py /^ def _read_fmt_chunk(self, chunk):$/;" m class:Wave_read +_read_from_self Lib/asyncio/selector_events.py /^ def _read_from_self(self):$/;" m class:BaseSelectorEventLoop +_read_gzip_header Lib/gzip.py /^ def _read_gzip_header(self):$/;" m class:_GzipReader +_read_gzip_header Lib/gzip.py /^def _read_gzip_header(fp):$/;" f +_read_headers Lib/http/client.py /^def _read_headers(fp):$/;" f +_read_ints Lib/plistlib.py /^ def _read_ints(self, n, size):$/;" m class:_BinaryPlistParser +_read_long Lib/aifc.py /^def _read_long(file):$/;" f +_read_next_chunk_size Lib/http/client.py /^ def _read_next_chunk_size(self):$/;" m class:HTTPResponse +_read_object Lib/plistlib.py /^ def _read_object(self, ref):$/;" m class:_BinaryPlistParser +_read_output Lib/_osx_support.py /^def _read_output(commandstring, capture_stderr=False):$/;" f +_read_python_source Lib/lib2to3/refactor.py /^ def _read_python_source(self, filename):$/;" m class:RefactoringTool +_read_readable Lib/http/client.py /^ def _read_readable(self, readable):$/;" m class:HTTPConnection +_read_ready Lib/asyncio/selector_events.py /^ def _read_ready(self):$/;" m class:_SelectorDatagramTransport +_read_ready Lib/asyncio/selector_events.py /^ def _read_ready(self):$/;" m class:_SelectorSocketTransport +_read_ready Lib/asyncio/unix_events.py /^ def _read_ready(self):$/;" m class:_UnixReadPipeTransport +_read_ready Lib/asyncio/unix_events.py /^ def _read_ready(self):$/;" m class:_UnixWritePipeTransport +_read_ready__data_received Lib/asyncio/selector_events.py /^ def _read_ready__data_received(self):$/;" m class:_SelectorSocketTransport +_read_ready__get_buffer Lib/asyncio/selector_events.py /^ def _read_ready__get_buffer(self):$/;" m class:_SelectorSocketTransport +_read_ready__on_eof Lib/asyncio/selector_events.py /^ def _read_ready__on_eof(self):$/;" m class:_SelectorSocketTransport +_read_refs Lib/plistlib.py /^ def _read_refs(self, n):$/;" m class:_BinaryPlistParser +_read_short Lib/aifc.py /^def _read_short(file):$/;" f +_read_side_effect Lib/unittest/mock.py /^ def _read_side_effect(*args, **kwargs):$/;" f function:mock_open +_read_status Lib/http/client.py /^ def _read_status(self):$/;" m class:HTTPResponse +_read_stream Lib/asyncio/subprocess.py /^ async def _read_stream(self, fd):$/;" m class:Process +_read_string Lib/aifc.py /^def _read_string(file):$/;" f +_read_test Lib/test/test_csv.py /^ def _read_test(self, input, expect, **kwargs):$/;" m class:Test_Csv +_read_test_data Lib/test/test_winreg.py /^ def _read_test_data(self, root_key, subkeystr="sub_key", OpenKey=OpenKey):$/;" m class:BaseWinregTests +_read_u32 Lib/sunau.py /^def _read_u32(file):$/;" f +_read_ulong Lib/aifc.py /^def _read_ulong(file):$/;" f +_read_unlocked Lib/_pyio.py /^ def _read_unlocked(self, n=None):$/;" m class:BufferedReader +_read_ushort Lib/aifc.py /^def _read_ushort(file):$/;" f +_read_windows_registry Lib/mimetypes.py /^ def _read_windows_registry(cls, add_type):$/;" m class:MimeTypes +_readable Lib/_pyio.py /^ _readable = False$/;" v class:FileIO +_reader Lib/importlib/resources/_adapters.py /^ def _reader(self):$/;" m class:CompatibilityFiles +_readerthread Lib/subprocess.py /^ def _readerthread(self, fh, buffer):$/;" f function:Popen._on_error_fd_closer +_readinto Lib/_pyio.py /^ def _readinto(self, b, read1):$/;" m class:BufferedIOBase +_readinto Lib/_pyio.py /^ def _readinto(self, buf, read1):$/;" m class:BufferedReader +_readinto Lib/test/test_io.py /^ def _readinto(bufio, n=-1):$/;" f function:BufferedRandomTest.test_flush_and_readinto +_readinto_chunked Lib/http/client.py /^ def _readinto_chunked(self, b):$/;" m class:HTTPResponse +_readline Lib/fileinput.py /^ def _readline(self):$/;" m class:FileInput +_readline Lib/test/test_pty.py /^def _readline(fd):$/;" f +_readline_available Lib/rlcompleter.py /^ _readline_available = False$/;" v +_readline_available Lib/rlcompleter.py /^ _readline_available = True$/;" v +_readline_side_effect Lib/unittest/mock.py /^ def _readline_side_effect(*args, **kwargs):$/;" f function:mock_open +_readlines_side_effect Lib/unittest/mock.py /^ def _readlines_side_effect(*args, **kwargs):$/;" f function:mock_open +_readlink_deep Lib/ntpath.py /^ def _readlink_deep(path):$/;" f +_readmailcapfile Lib/mailcap.py /^def _readmailcapfile(fp, lineno):$/;" f +_readmark Lib/aifc.py /^ def _readmark(self, chunk):$/;" m class:Aifc_read +_readmodule Lib/pyclbr.py /^def _readmodule(module, path, inpackage=None):$/;" f +_ready Tools/c-analyzer/c_parser/parser/_info.py /^ _ready = False$/;" v class:SourceInfo +_ready_to_import Lib/test/test_import/__init__.py /^def _ready_to_import(name=None, source=""):$/;" f +_real_close Lib/socket.py /^ def _real_close(self, _ss=_socket.socket):$/;" m class:socket +_real_close Lib/ssl.py /^ def _real_close(self):$/;" m class:SSLSocket +_real_connect Lib/ssl.py /^ def _real_connect(self, addr, connect_ex):$/;" m class:SSLSocket +_real_select Lib/test/test_socketserver.py /^_real_select = select.select$/;" v +_really_load Lib/http/cookiejar.py /^ def _really_load(self, f, filename, ignore_discard, ignore_expires):$/;" m class:LWPCookieJar +_really_load Lib/http/cookiejar.py /^ def _really_load(self, f, filename, ignore_discard, ignore_expires):$/;" m class:MozillaCookieJar +_rebuild_exc Lib/concurrent/futures/process.py /^def _rebuild_exc(exc, tb):$/;" f +_rebuild_partial Lib/multiprocessing/reduction.py /^ _rebuild_partial = _rebuild_partial$/;" v class:AbstractReducer +_rebuild_partial Lib/multiprocessing/reduction.py /^def _rebuild_partial(func, args, keywords):$/;" f +_rebuild_socket Lib/multiprocessing/reduction.py /^ _rebuild_socket = _rebuild_socket$/;" v class:AbstractReducer +_rebuild_socket Lib/multiprocessing/reduction.py /^ def _rebuild_socket(df, family, type, proto):$/;" f +_rebuild_socket Lib/multiprocessing/reduction.py /^ def _rebuild_socket(ds):$/;" f function:_rebuild_partial +_recalculate Lib/importlib/_bootstrap_external.py /^ def _recalculate(self):$/;" m class:_NamespacePath +_reconfigure_frame Lib/test/test_sys_settrace.py /^ def _reconfigure_frame(self, frame):$/;" m class:Tracer +_reconstruct Lib/copy.py /^def _reconstruct(x, memo, func, args,$/;" f +_reconstruct Lib/email/headerregistry.py /^ def _reconstruct(cls, value):$/;" m class:BaseHeader +_reconstruct Lib/test/pickletester.py /^ def _reconstruct(cls, obj, kwargs):$/;" m class:ZeroCopyBytearray.PicklableNDArray +_reconstruct Lib/test/pickletester.py /^ def _reconstruct(cls, obj):$/;" m class:ZeroCopyBytearray +_reconstruct Lib/test/pickletester.py /^ def _reconstruct(cls, obj):$/;" m class:ZeroCopyBytes +_reconstruct_header Lib/email/headerregistry.py /^def _reconstruct_header(cls_name, bases, value):$/;" f +_reconstructor Lib/copyreg.py /^def _reconstructor(cls, base, state):$/;" f +_recreate_cm Lib/contextlib.py /^ def _recreate_cm(self):$/;" m class:AsyncContextDecorator +_recreate_cm Lib/contextlib.py /^ def _recreate_cm(self):$/;" m class:ContextDecorator +_recreate_cm Lib/contextlib.py /^ def _recreate_cm(self):$/;" m class:_GeneratorContextManagerBase +_recursion Lib/pprint.py /^def _recursion(object):$/;" f +_recursive_matches Lib/lib2to3/pytree.py /^ def _recursive_matches(self, nodes, count):$/;" m class:WildcardPattern +_recursive_repr Lib/dataclasses.py /^def _recursive_repr(user_function):$/;" f +_recv Lib/multiprocessing/connection.py /^ def _recv(self, size, read=_read):$/;" m class:Connection +_recv Tools/ccbench/ccbench.py /^def _recv(sock, n):$/;" f +_recv_bytes Lib/multiprocessing/connection.py /^ def _recv_bytes(self, maxsize=None):$/;" m class:.PipeConnection +_recv_bytes Lib/multiprocessing/connection.py /^ def _recv_bytes(self, maxsize=None):$/;" m class:Connection +_recv_into Lib/test/test_ssl.py /^ def _recv_into():$/;" f function:ThreadedTests.test_recv_send +_recvfrom_into Lib/test/test_ssl.py /^ def _recvfrom_into():$/;" f function:ThreadedTests.test_recv_send +_reduce_called Lib/test/pickletester.py /^ _reduce_called = 0$/;" v class:REX_five +_reduce_called Lib/test/pickletester.py /^ _reduce_called = 0$/;" v class:REX_one +_reduce_ex Lib/copyreg.py /^def _reduce_ex(self, proto):$/;" f +_reduce_ex_by_global_name Lib/enum.py /^_reduce_ex_by_global_name = pickle_by_global_name$/;" v +_reduce_method Lib/multiprocessing/reduction.py /^ _reduce_method = _reduce_method$/;" v class:AbstractReducer +_reduce_method Lib/multiprocessing/reduction.py /^def _reduce_method(m):$/;" f +_reduce_method_descriptor Lib/multiprocessing/reduction.py /^ _reduce_method_descriptor = _reduce_method_descriptor$/;" v class:AbstractReducer +_reduce_method_descriptor Lib/multiprocessing/reduction.py /^def _reduce_method_descriptor(m):$/;" f +_reduce_partial Lib/multiprocessing/reduction.py /^def _reduce_partial(p):$/;" f +_reduce_socket Lib/multiprocessing/reduction.py /^ _reduce_socket = _reduce_socket$/;" v class:AbstractReducer +_reduce_socket Lib/multiprocessing/reduction.py /^ def _reduce_socket(s):$/;" f +_reduce_socket Lib/multiprocessing/reduction.py /^ def _reduce_socket(s):$/;" f function:_rebuild_partial +_reference Lib/test/mapping_tests.py /^ def _reference(self):$/;" m class:BasicTestMappingProtocol +_reference Lib/test/test_os.py /^ def _reference(self):$/;" m class:EnvironTests +_reference Lib/test/test_shelve.py /^ def _reference(self):$/;" m class:TestShelveBase +_reference Lib/test/test_weakref.py /^ def _reference(self):$/;" m class:WeakKeyDictionaryTestCase +_reference Lib/test/test_weakref.py /^ def _reference(self):$/;" m class:WeakValueDictionaryTestCase +_refold_parse_tree Lib/email/_header_value_parser.py /^def _refold_parse_tree(parse_tree, *, policy):$/;" f +_refresh Lib/mailbox.py /^ def _refresh(self):$/;" m class:Maildir +_regard_flags Lib/_pydecimal.py /^ def _regard_flags(self, *flags):$/;" m class:Context +_regex_cache Lib/_strptime.py /^_regex_cache = {}$/;" v +_register Lib/asyncio/windows_events.py /^ def _register(self, ov, obj, callback):$/;" m class:IocpProactor +_register Lib/importlib/abc.py /^def _register(abstract_cls, *classes):$/;" f +_register Lib/tkinter/__init__.py /^ def _register(self, callback):$/;" m class:Variable +_register Lib/tkinter/__init__.py /^ def _register(self, func, subst=None, needcleanup=1):$/;" m class:Misc +_register_at_fork_reinit_lock Lib/logging/__init__.py /^ def _register_at_fork_reinit_lock(instance):$/;" f +_register_at_fork_reinit_lock Lib/logging/__init__.py /^ def _register_at_fork_reinit_lock(instance):$/;" f function:_releaseLock +_register_atexit Lib/threading.py /^def _register_atexit(func, *arg, **kwargs):$/;" f +_register_builtins_for_crossinterpreter_data Python/pystate.c /^_register_builtins_for_crossinterpreter_data(struct _xidregistry *xidregistry)$/;" f file: +_register_eager_task Lib/asyncio/tasks.py /^def _register_eager_task(task):$/;" f +_register_task Lib/asyncio/tasks.py /^def _register_task(task):$/;" f +_register_task Lib/test/test_asyncio/test_tasks.py /^ _register_task = staticmethod(tasks._c_register_task)$/;" v class:CIntrospectionTests +_register_task Lib/test/test_asyncio/test_tasks.py /^ _register_task = None$/;" v class:BaseTaskIntrospectionTests +_register_task Lib/test/test_asyncio/test_tasks.py /^ _register_task = staticmethod(tasks._py_register_task)$/;" v class:PyIntrospectionTests +_register_with_iocp Lib/asyncio/windows_events.py /^ def _register_with_iocp(self, obj):$/;" m class:IocpProactor +_registered Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _registered;$/;" m class:PythonBootstrapperApplication file: +_registered_with_atexit Lib/weakref.py /^ _registered_with_atexit = False$/;" v class:finalize +_registry Lib/multiprocessing/managers.py /^ _registry = {}$/;" v class:BaseManager +_registry Lib/weakref.py /^ _registry = {}$/;" v class:finalize +_registryReadEnvironment PC/launcher2.c /^_registryReadEnvironment(const SearchInfo *search, HKEY root, EnvironmentInfo *env, const wchar_t *fallbackArch)$/;" f +_registryReadLegacyEnvironment PC/launcher2.c /^_registryReadLegacyEnvironment(const SearchInfo *search, HKEY root, EnvironmentInfo *env, const wchar_t *fallbackArch)$/;" f +_registryReadString PC/launcher2.c /^_registryReadString(const wchar_t **dest, HKEY root, const wchar_t *subkey, const wchar_t *value)$/;" f +_registrySearchTags PC/launcher2.c /^_registrySearchTags(const SearchInfo *search, EnvironmentInfo **result, HKEY root, int sortKey, const wchar_t *company, const wchar_t *fallbackArch)$/;" f +_registry_get Lib/argparse.py /^ def _registry_get(self, registry_name, value, default=None):$/;" m class:_ActionsContainer +_relax_case Lib/importlib/_bootstrap_external.py /^ def _relax_case():$/;" f function:_make_relax_case +_relax_case Lib/importlib/_bootstrap_external.py /^_relax_case = _make_relax_case()$/;" v +_release Lib/asyncio/locks.py /^ async def _release(self):$/;" m class:Barrier +_release Lib/threading.py /^ def _release(self):$/;" m class:Barrier +_releaseLock Lib/logging/__init__.py /^def _releaseLock():$/;" f +_release_save Lib/threading.py /^ def _release_save(self):$/;" m class:Condition +_release_save Lib/threading.py /^ def _release_save(self):$/;" m class:_RLock +_release_waiter Lib/asyncio/tasks.py /^def _release_waiter(waiter, *args):$/;" f +_release_xid_data Modules/_xxinterpchannelsmodule.c /^_release_xid_data(_PyCrossInterpreterData *data, int ignoreexc)$/;" f file: +_release_xid_data Modules/_xxsubinterpretersmodule.c /^_release_xid_data(_PyCrossInterpreterData *data, int ignoreexc)$/;" f file: +_remaining_time Lib/subprocess.py /^ def _remaining_time(self, endtime):$/;" m class:Popen +_remote Lib/test/_test_multiprocessing.py /^ def _remote(cls, conn):$/;" m class:_TestPicklingConnections +_remove Lib/_weakrefset.py /^ def _remove(item, selfref=ref(self)):$/;" f function:WeakSet.__init__ +_removeHandlerRef Lib/logging/__init__.py /^def _removeHandlerRef(wr):$/;" f +_removeTestAtIndex Lib/doctest.py /^ def _removeTestAtIndex(self, index):$/;" m class:_DocTestSuite +_removeTestAtIndex Lib/unittest/suite.py /^ def _removeTestAtIndex(self, index):$/;" m class:BaseTestSuite +_remove_action Lib/argparse.py /^ def _remove_action(self, action):$/;" m class:_ActionsContainer +_remove_action Lib/argparse.py /^ def _remove_action(self, action):$/;" m class:_ArgumentGroup +_remove_action Lib/argparse.py /^ def _remove_action(self, action):$/;" m class:_MutuallyExclusiveGroup +_remove_allocated_block Lib/multiprocessing/heap.py /^ def _remove_allocated_block(self, block):$/;" m class:Heap +_remove_autocomplete_window Lib/idlelib/autocomplete.py /^ def _remove_autocomplete_window(self, event=None):$/;" m class:AutoComplete +_remove_dups_flatten Lib/typing.py /^def _remove_dups_flatten(parameters):$/;" f +_remove_original_values Lib/_osx_support.py /^def _remove_original_values(_config_vars):$/;" f +_remove_reader Lib/asyncio/selector_events.py /^ def _remove_reader(self, fd):$/;" m class:BaseSelectorEventLoop +_remove_reader Lib/test/test_asyncio/utils.py /^ def _remove_reader(self, fd):$/;" m class:TestLoop +_remove_temp_dir Lib/multiprocessing/util.py /^def _remove_temp_dir(rmtree, tempdir):$/;" f +_remove_unittest_tb_frames Lib/unittest/result.py /^ def _remove_unittest_tb_frames(self, tb):$/;" m class:TestResult +_remove_universal_flags Lib/_osx_support.py /^def _remove_universal_flags(_config_vars):$/;" f +_remove_unsupported_archs Lib/_osx_support.py /^def _remove_unsupported_archs(_config_vars):$/;" f +_remove_visual_c_ref Tools/c-analyzer/distutils/msvc9compiler.py /^ def _remove_visual_c_ref(self, manifest_file):$/;" m class:MSVCCompiler +_remove_writer Lib/asyncio/selector_events.py /^ def _remove_writer(self, fd):$/;" m class:BaseSelectorEventLoop +_remove_writer Lib/test/test_asyncio/utils.py /^ def _remove_writer(self, fd):$/;" m class:TestLoop +_removed_label Doc/tools/extensions/pyspecific.py /^ _removed_label = sphinx_gettext('Deprecated since version {deprecated}, removed in version {removed}')$/;" v class:DeprecatedRemoved +_render_data Tools/c-analyzer/c_parser/info.py /^ def _render_data(cls, fmt, data, extra):$/;" m class:Declaration +_render_data Tools/c-analyzer/c_parser/info.py /^ def _render_data(cls, fmt, data, extra):$/;" m class:HighlevelParsedItem +_render_data Tools/c-analyzer/c_parser/info.py /^ def _render_data(cls, fmt, data, extra):$/;" m class:Statement +_render_data Tools/c-analyzer/c_parser/info.py /^ def _render_data(self):$/;" m class:ParsedItem +_render_data_row Tools/c-analyzer/c_parser/info.py /^ def _render_data_row(cls, fmt, data, extra, colnames):$/;" m class:HighlevelParsedItem +_render_data_row_item Tools/c-analyzer/c_parser/info.py /^ def _render_data_row_item(cls, colname, data, extra):$/;" m class:Declaration +_render_data_row_item Tools/c-analyzer/c_parser/info.py /^ def _render_data_row_item(cls, colname, data, extra):$/;" m class:HighlevelParsedItem +_render_extra Tools/c-analyzer/c_analyzer/info.py /^ def _render_extra(self, fmt):$/;" m class:Analyzed +_render_item_full Tools/c-analyzer/cpython/_capi.py /^def _render_item_full(item, groupby, verbose):$/;" f +_render_known_decl Tools/c-analyzer/c_parser/datafiles.py /^def _render_known_decl(decl, *,$/;" f +_render_non_self Tools/clinic/clinic.py /^ def _render_non_self(self, parameter, data):$/;" m class:CConverter +_render_self Tools/clinic/clinic.py /^ def _render_self(self, parameter: str, data: CRenderData) -> None:$/;" m class:CConverter +_render_table Tools/c-analyzer/c_analyzer/__main__.py /^def _render_table(items, columns, relroot=None):$/;" f +_repair_headers Lib/importlib/metadata/_adapters.py /^ def _repair_headers(self):$/;" m class:Message +_repeat Lib/lib2to3/fixes/fix_operator.py /^ def _repeat(self, node, results):$/;" m class:FixOperator +_replace Lib/collections/__init__.py /^ def _replace(self, \/, **kwds):$/;" f function:namedtuple +_replace Tools/c-analyzer/c_parser/parser/_info.py /^ def _replace(self, text, start=None, *, fixnested=False):$/;" m class:SourceInfo +_replace_charref Lib/html/__init__.py /^def _replace_charref(s):$/;" f +_replace_dialog Lib/idlelib/replace.py /^def _replace_dialog(parent): # htest #$/;" f +_replace_dialog_spec Lib/idlelib/idle_test/htest.py /^_replace_dialog_spec = {$/;" v +_replace_encoding Lib/locale.py /^def _replace_encoding(code, encoding):$/;" f +_replace_expand Lib/idlelib/replace.py /^ def _replace_expand(self, m, repl):$/;" m class:ReplaceDialog +_replace_writer Lib/asyncio/streams.py /^ def _replace_writer(self, writer):$/;" m class:StreamReaderProtocol +_reply_data Lib/test/mock_socket.py /^_reply_data = None$/;" v +_repopulate_pool Lib/multiprocessing/pool.py /^ def _repopulate_pool(self):$/;" m class:Pool +_repopulate_pool_static Lib/multiprocessing/pool.py /^ def _repopulate_pool_static(ctx, Process, processes, pool, inqueue,$/;" m class:Pool +_report_exception Lib/tkinter/__init__.py /^ def _report_exception(self):$/;" m class:Misc +_report_invalid_netmask Lib/ipaddress.py /^ def _report_invalid_netmask(cls, netmask_str):$/;" m class:_IPAddressBase +_report_unexpected_items Tools/build/stable_abi.py /^def _report_unexpected_items(items, msg):$/;" f +_reporthook Lib/test/test_urllib.py /^ def _reporthook(par1, par2, par3):$/;" f function:.test_short_content_raises_ContentTooShortError +_repr Lib/optparse.py /^def _repr(self):$/;" f +_repr Lib/pprint.py /^ def _repr(self, object, context, level):$/;" m class:PrettyPrinter +_repr_fn Lib/dataclasses.py /^def _repr_fn(fields, globals):$/;" f +_repr_info Lib/asyncio/events.py /^ def _repr_info(self):$/;" m class:Handle +_repr_info Lib/asyncio/events.py /^ def _repr_info(self):$/;" m class:TimerHandle +_repr_info Lib/asyncio/windows_events.py /^ def _repr_info(self):$/;" m class:_BaseWaitHandleFuture +_repr_info Lib/asyncio/windows_events.py /^ def _repr_info(self):$/;" m class:_OverlappedFuture +_repr_instance Lib/pydoc.py /^ _repr_instance = HTMLRepr()$/;" v class:HTMLDoc +_repr_instance Lib/pydoc.py /^ _repr_instance = TextRepr()$/;" v class:TextDoc +_repr_iterable Lib/reprlib.py /^ def _repr_iterable(self, x, level, left, right, maxiter, trail=''):$/;" m class:Repr +_require_loader Lib/test/test_import/__init__.py /^def _require_loader(module, loader, skip):$/;" f +_requires_builtin Lib/importlib/_bootstrap.py /^def _requires_builtin(fxn):$/;" f +_requires_builtin_wrapper Lib/importlib/_bootstrap.py /^ def _requires_builtin_wrapper(self, fullname):$/;" f function:_requires_builtin +_requires_frozen Lib/importlib/_bootstrap.py /^def _requires_frozen(fxn):$/;" f +_requires_frozen_wrapper Lib/importlib/_bootstrap.py /^ def _requires_frozen_wrapper(self, fullname):$/;" f function:_requires_frozen +_requires_unix_version Lib/test/support/__init__.py /^def _requires_unix_version(sysname, min_version):$/;" f +_reraised_exceptions Lib/test/support/asyncore.py /^_reraised_exceptions = (ExitNow, KeyboardInterrupt, SystemExit)$/;" v +_rerun_failed_tests Lib/test/libregrtest/main.py /^ def _rerun_failed_tests(self, need_rerun):$/;" m class:Regrtest +_rescale Lib/_pydecimal.py /^ def _rescale(self, exp, rounding):$/;" m class:Decimal +_rescale Lib/turtle.py /^ def _rescale(self, xscalefactor, yscalefactor):$/;" m class:TurtleScreenBase +_reserved Lib/http/cookies.py /^ _reserved = {$/;" v class:Morsel +_reserved_network Lib/ipaddress.py /^ _reserved_network = IPv4Network('240.0.0.0\/4')$/;" v class:_IPv4Constants +_reserved_networks Lib/ipaddress.py /^ _reserved_networks = [$/;" v class:_IPv6Constants +_reset Lib/idlelib/codecontext.py /^ def _reset(self):$/;" m class:CodeContext +_reset Lib/multiprocessing/queues.py /^ def _reset(self, after_fork=False):$/;" m class:Queue +_reset Lib/turtle.py /^ def _reset(self, pencolor=_CFG["pencolor"],$/;" m class:TPen +_reset_cache Lib/ctypes/__init__.py /^def _reset_cache():$/;" f +_reset_cont_handler Lib/xml/sax/expatreader.py /^ def _reset_cont_handler(self):$/;" m class:ExpatParser +_reset_empty_waiter Lib/asyncio/proactor_events.py /^ def _reset_empty_waiter(self):$/;" m class:_ProactorBaseWritePipeTransport +_reset_empty_waiter Lib/asyncio/selector_events.py /^ def _reset_empty_waiter(self):$/;" m class:_SelectorSocketTransport +_reset_encoder Lib/_pyio.py /^ def _reset_encoder(position):$/;" f function:TextIOWrapper.seek +_reset_internal_locks Lib/threading.py /^ def _reset_internal_locks(self, is_alive):$/;" m class:Thread +_reset_lex_handler_prop Lib/xml/sax/expatreader.py /^ def _reset_lex_handler_prop(self):$/;" m class:ExpatParser +_reset_read_buf Lib/_pyio.py /^ def _reset_read_buf(self):$/;" m class:BufferedReader +_resize Lib/turtle.py /^ def _resize(self, canvwidth=None, canvheight=None, bg=None):$/;" m class:TurtleScreenBase +_resize_tokens_array Parser/pegen.c /^_resize_tokens_array(Parser *p) {$/;" f file: +_resolve Lib/logging/config.py /^def _resolve(name):$/;" f +_resolve_data Tools/c-analyzer/c_parser/info.py /^ def _resolve_data(cls, data):$/;" m class:Enum +_resolve_data Tools/c-analyzer/c_parser/info.py /^ def _resolve_data(cls, data):$/;" m class:Function +_resolve_data Tools/c-analyzer/c_parser/info.py /^ def _resolve_data(cls, data):$/;" m class:HighlevelParsedItem +_resolve_data Tools/c-analyzer/c_parser/info.py /^ def _resolve_data(cls, data):$/;" m class:Statement +_resolve_data Tools/c-analyzer/c_parser/info.py /^ def _resolve_data(cls, data):$/;" m class:TypeDef +_resolve_data Tools/c-analyzer/c_parser/info.py /^ def _resolve_data(cls, data):$/;" m class:Variable +_resolve_data Tools/c-analyzer/c_parser/info.py /^ def _resolve_data(cls, data):$/;" m class:_StructUnion +_resolve_file Tools/c-analyzer/c_parser/info.py /^ def _resolve_file(cls, parsed):$/;" m class:HighlevelParsedItem +_resolve_file_values Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _resolve_file_values(filename, file_values):$/;" f +_resolve_filename Lib/importlib/_bootstrap.py /^ def _resolve_filename(cls, fullname, alias=None, ispkg=False):$/;" m class:FrozenImporter +_resolve_filename Tools/c-analyzer/c_parser/source.py /^def _resolve_filename(filename, alt=None):$/;" f +_resolve_filenames Tools/c-analyzer/cpython/__main__.py /^def _resolve_filenames(filenames):$/;" f +_resolve_full_groupby Tools/c-analyzer/cpython/_capi.py /^def _resolve_full_groupby(groupby):$/;" f +_resolve_ignored Tools/c-analyzer/cpython/_capi.py /^def _resolve_ignored(ignored):$/;" f +_resolve_key Tools/c-analyzer/c_parser/info.py /^ def _resolve_key(cls, raw):$/;" m class:Declarations +_resolve_max_size Tools/c-analyzer/c_parser/__init__.py /^def _resolve_max_size(filename, maxsizes):$/;" f +_resolve_modname_matcher Tools/build/freeze_modules.py /^def _resolve_modname_matcher(match, rootdir=None):$/;" f +_resolve_module Tools/build/freeze_modules.py /^def _resolve_module(modname, pathentry=STDLIB_DIR, ispkg=False):$/;" f +_resolve_name Lib/importlib/_bootstrap.py /^def _resolve_name(name, package, level):$/;" f +_resolve_parent Tools/c-analyzer/c_parser/info.py /^ def _resolve_parent(cls, parsed):$/;" m class:Variable +_resolve_parent Tools/c-analyzer/c_parser/info.py /^ def _resolve_parent(cls, parsed, *, _kind=None):$/;" m class:Declaration +_resolve_parent Tools/c-analyzer/c_parser/info.py /^ def _resolve_parent(cls, parsed, *, _kind=None):$/;" m class:HighlevelParsedItem +_resolve_prefix_name Lib/xml/etree/ElementTree.py /^ def _resolve_prefix_name(self, prefixed_name):$/;" m class:C14NWriterTarget +_resolve_samefile Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _resolve_samefile(filename, pattern, suffix):$/;" f +_resolve_samefiles Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def _resolve_samefiles(filename, file_same):$/;" f +_resolve_width Tools/c-analyzer/c_common/tables.py /^def _resolve_width(width, fmt, label, default):$/;" f +_resource_sharer Lib/multiprocessing/resource_sharer.py /^_resource_sharer = _ResourceSharer()$/;" v +_resource_tracker Lib/multiprocessing/resource_tracker.py /^_resource_tracker = ResourceTracker()$/;" v +_resource_unlink Lib/test/_test_multiprocessing.py /^ def _resource_unlink(name, rtype):$/;" f function:join_process +_restartRequired Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _restartRequired;$/;" m class:PythonBootstrapperApplication file: +_restartResult Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOTSTRAPPER_APPLY_RESTART _restartResult;$/;" m class:PythonBootstrapperApplication file: +_restoreStdout Lib/unittest/result.py /^ def _restoreStdout(self):$/;" m class:TestResult +_restore_fds Lib/test/test_subprocess.py /^ def _restore_fds(self, fds):$/;" m class:POSIXProcessTestCase +_restricted_walk_packages Lib/test/test_pydoc.py /^ def _restricted_walk_packages(self, walk_packages, path=None):$/;" m class:PydocBaseTest +_restype_ Lib/ctypes/__init__.py /^ _restype_ = restype$/;" v class:CFUNCTYPE.WINFUNCTYPE.WinFunctionType +_restype_ Lib/ctypes/__init__.py /^ _restype_ = self._func_restype_$/;" v class:CDLL.__init__._FuncPtr +_restype_ Lib/ctypes/__init__.py /^ _restype_ = restype$/;" v class:CFUNCTYPE.CFunctionType +_restype_ Lib/ctypes/__init__.py /^ _restype_ = restype$/;" v class:PYFUNCTYPE.CFunctionType +_result Lib/asyncio/futures.py /^ _result = None$/;" v class:Future +_result Lib/asyncio/windows_events.py /^ def _result(self, value):$/;" m class:IocpProactor +_result_or_cancel Lib/concurrent/futures/_base.py /^def _result_or_cancel(fut, timeout=None):$/;" f +_results Lib/unittest/signals.py /^_results = weakref.WeakKeyDictionary()$/;" v +_resume_reading Lib/asyncio/sslproto.py /^ def _resume_reading(self):$/;" m class:SSLProtocol +_retry_thrice Lib/test/test_urllib2net.py /^def _retry_thrice(func, exc, *args, **kwargs):$/;" f +_return_auth_challenge Lib/test/test_urllib2_localnet.py /^ def _return_auth_challenge(self, request_handler):$/;" m class:DigestAuthHandler +_return_instance Lib/test/test_concurrent_futures/test_deadlock.py /^def _return_instance(cls):$/;" f +_return_true PC/layout/support/filesets.py /^def _return_true(f):$/;" f +_return_values Lib/unittest/mock.py /^_return_values = {$/;" v +_rev Lib/test/test_descr.py /^ _rev = None$/;" v class:.test_basic_inheritance.madstring +_rev Lib/test/test_descr.py /^ _rev = None$/;" v class:.test_basic_inheritance.madtuple +_rev Lib/test/test_descr.py /^ _rev = None$/;" v class:.test_basic_inheritance.madunicode +_reverse_pointer Lib/ipaddress.py /^ def _reverse_pointer(self):$/;" m class:_BaseV4 +_reverse_pointer Lib/ipaddress.py /^ def _reverse_pointer(self):$/;" m class:_BaseV6 +_rewind Lib/_compression.py /^ def _rewind(self):$/;" m class:DecompressReader +_rewind Lib/gzip.py /^ def _rewind(self):$/;" m class:_GzipReader +_rewind_decoded_chars Lib/_pyio.py /^ def _rewind_decoded_chars(self, n):$/;" m class:TextIOWrapper +_rfc4231_test_cases Lib/test/test_hmac.py /^ def _rfc4231_test_cases(self, hashfunc, hash_name, digest_size, block_size):$/;" m class:TestVectorsTestCase +_rgb Lib/email/mime/image.py /^def _rgb(h):$/;" f +_rglob PC/layout/support/filesets.py /^def _rglob(root, pattern, condition):$/;" f +_richcmp Lib/fractions.py /^ def _richcmp(self, other, op):$/;" m class:Fraction +_richcmp Lib/test/test_fractions.py /^ def _richcmp(self, other, op):$/;" m class:DummyFloat +_rlistdir Lib/glob.py /^def _rlistdir(dirname, dir_fd, dironly, include_hidden=False):$/;" f +_rmcolorizer Lib/idlelib/editor.py /^ def _rmcolorizer(self):$/;" m class:EditorWindow +_rmdir Lib/test/support/os_helper.py /^ def _rmdir(dirname):$/;" f function:unlink +_rmtree Lib/tempfile.py /^ def _rmtree(cls, name, ignore_errors=False):$/;" m class:TemporaryDirectory +_rmtree Lib/test/support/os_helper.py /^ def _rmtree(path):$/;" f function:unlink +_rmtree_inner Lib/test/support/os_helper.py /^ def _rmtree_inner(path):$/;" f function:unlink._rmtree +_rmtree_islink Lib/shutil.py /^ def _rmtree_islink(path):$/;" f +_rmtree_safe_fd Lib/shutil.py /^def _rmtree_safe_fd(topfd, path, onexc):$/;" f +_rmtree_unsafe Lib/shutil.py /^def _rmtree_unsafe(path, onexc):$/;" f +_rolled Lib/tempfile.py /^ _rolled = False$/;" v class:SpooledTemporaryFile +_root Lib/tkinter/__init__.py /^ def _root(self):$/;" m class:Misc +_root Lib/turtle.py /^ _root = None$/;" v class:_Screen +_rotate Lib/turtle.py /^ def _rotate(self, angle):$/;" m class:RawTurtle +_rotate Lib/turtle.py /^ def _rotate(self, angle):$/;" m class:TNavigator +_round Lib/_pydecimal.py /^ def _round(self, places, rounding):$/;" m class:Decimal +_round_05up Lib/_pydecimal.py /^ def _round_05up(self, prec):$/;" m class:Decimal +_round_ceiling Lib/_pydecimal.py /^ def _round_ceiling(self, prec):$/;" m class:Decimal +_round_down Lib/_pydecimal.py /^ def _round_down(self, prec):$/;" m class:Decimal +_round_floor Lib/_pydecimal.py /^ def _round_floor(self, prec):$/;" m class:Decimal +_round_half_down Lib/_pydecimal.py /^ def _round_half_down(self, prec):$/;" m class:Decimal +_round_half_even Lib/_pydecimal.py /^ def _round_half_even(self, prec):$/;" m class:Decimal +_round_half_up Lib/_pydecimal.py /^ def _round_half_up(self, prec):$/;" m class:Decimal +_round_to_exponent Lib/fractions.py /^def _round_to_exponent(n, d, exponent, no_neg_zero=False):$/;" f +_round_to_figures Lib/fractions.py /^def _round_to_figures(n, d, figures):$/;" f +_round_up Lib/_pydecimal.py /^ def _round_up(self, prec):$/;" m class:Decimal +_rounding_modes Lib/_pydecimal.py /^_rounding_modes = (ROUND_DOWN, ROUND_HALF_UP, ROUND_HALF_EVEN, ROUND_CEILING,$/;" v +_rounding_values Lib/test/test_time.py /^ def _rounding_values(self, use_float):$/;" m class:CPyTimeTestCase +_roundup Lib/multiprocessing/heap.py /^ def _roundup(n, alignment):$/;" m class:Heap +_rset Lib/smtplib.py /^ def _rset(self):$/;" m class:SMTP +_rshift_nearest Lib/_pydecimal.py /^def _rshift_nearest(x, shift):$/;" f +_rstr Lib/pdb.py /^class _rstr(str):$/;" c +_rstrip Tools/patchcheck/reindent.py /^def _rstrip(line, JUNK='\\n \\t'):$/;" f +_rtp_spawn Modules/posixmodule.c /^_rtp_spawn(int mode, const char *rtpFileName, const char *argv[],$/;" f file: +_rules Lib/email/mime/audio.py /^_rules = []$/;" v +_rules Lib/email/mime/image.py /^_rules = []$/;" v +_run Lib/asyncio/events.py /^ def _run(self):$/;" m class:Handle +_run Lib/pdb.py /^ def _run(self, target: Union[_ModuleTarget, _ScriptTarget]):$/;" m class:Pdb +_run Lib/test/test_asyncio/functional.py /^ def _run(self):$/;" m class:TestThreadedServer +_run Lib/test/test_asyncio/test_ssl.py /^ def _run(self):$/;" m class:TestThreadedServer +_run Lib/test/test_capi/test_misc.py /^ def _run(self):$/;" m class:TestPendingCalls.PendingTask +_run Lib/test/test_threading.py /^ def _run(self, other_ref, yet_another):$/;" m class:ThreadTests.test_no_refcycle_through_target.RunSelfFunction +_run_action Lib/test/test__xxinterpchannels.py /^def _run_action(cid, action, end, state):$/;" f +_run_after_forkers Lib/multiprocessing/util.py /^def _run_after_forkers():$/;" f +_run_and_join Lib/test/test_threading.py /^ def _run_and_join(self, script):$/;" m class:ThreadJoinOnShutdown +_run_cases Lib/test/test_mailcap.py /^ def _run_cases(self, cases):$/;" m class:FindmatchTest +_run_check Lib/test/test_htmlparser.py /^ def _run_check(self, source, expected_events, collector=None):$/;" m class:TestCaseBase +_run_check_extra Lib/test/test_htmlparser.py /^ def _run_check_extra(self, source, events):$/;" m class:TestCaseBase +_run_child Lib/test/test_builtin.py /^ def _run_child(self, child, terminal_input):$/;" m class:PtyTests +_run_cmd Tools/wasm/wasm_build.py /^ def _run_cmd($/;" m class:BuildProfile +_run_code Lib/runpy.py /^def _run_code(code, run_globals, init_globals=None,$/;" f +_run_finalizers Lib/multiprocessing/util.py /^def _run_finalizers(minpriority=None):$/;" f +_run_fuzz Modules/_xxtestfuzz/fuzzer.c /^static int _run_fuzz(const uint8_t *data, size_t size, int(*fuzzer)(const char* , size_t)) {$/;" f file: +_run_interp Lib/test/test__xxinterpchannels.py /^def _run_interp(id, source, shared, _mainns={}):$/;" f +_run_loop Lib/test/test_asyncio/test_tasks.py /^ def _run_loop(self, loop):$/;" m class:GatherTestsBase +_run_module_as_main Lib/runpy.py /^def _run_module_as_main(mod_name, alter_argv=True):$/;" f +_run_module_code Lib/runpy.py /^def _run_module_code(code, init_globals=None,$/;" f +_run_object_doctest Lib/test/test_zipimport_support.py /^def _run_object_doctest(obj, module):$/;" f +_run_once Lib/asyncio/base_events.py /^ def _run_once(self):$/;" m class:BaseEventLoop +_run_once Lib/test/test_asyncio/test_events.py /^ def _run_once():$/;" f function:EventLoopTestsMixin.test_timeout_rounding +_run_once Lib/test/test_asyncio/utils.py /^ def _run_once(self):$/;" m class:TestLoop +_run_output Lib/test/test__xxsubinterpreters.py /^def _run_output(interp, request, shared=None):$/;" f +_run_output Lib/test/test_interpreters.py /^def _run_output(interp, request, channels=None):$/;" f +_run_pdb Lib/test/test_pdb.py /^ def _run_pdb(self, pdb_args, commands, expected_returncode=0):$/;" m class:PdbTestCase +_run_pip Lib/ensurepip/__init__.py /^def _run_pip(args, additional_paths=None):$/;" f +_run_process Lib/test/libregrtest/runtest_mp.py /^ def _run_process(self, worker_job, output_file: TextIO,$/;" m class:TestWorkerProcess +_run_quiet Tools/freeze/test/freeze.py /^def _run_quiet(cmd, cwd=None):$/;" f +_run_script Modules/_xxsubinterpretersmodule.c /^_run_script(PyInterpreterState *interp, const char *codestr,$/;" f file: +_run_script_in_interpreter Modules/_xxsubinterpretersmodule.c /^_run_script_in_interpreter(PyObject *mod, PyInterpreterState *interp,$/;" f file: +_run_server Lib/multiprocessing/managers.py /^ def _run_server(cls, registry, address, authkey, serializer, writer,$/;" m class:BaseManager +_run_stdout Tools/freeze/test/freeze.py /^def _run_stdout(cmd, cwd=None):$/;" f +_run_suite Lib/test/support/__init__.py /^def _run_suite(suite):$/;" f +_run_test Lib/test/test_sqlite3/test_dbapi.py /^ def _run_test(self, fn, *args, **kwds):$/;" m class:ThreadTests +_run_test Lib/test/test_sqlite3/test_transactions.py /^ def _run_test(self, cx):$/;" m class:IsolationLevelFromInit +_run_test Lib/test/test_unittest/test_result.py /^ def _run_test(self, test_name, verbosity, tearDownError=None):$/;" m class:Test_TextTestResult +_run_test_server Lib/test/test_asyncio/utils.py /^def _run_test_server(*, address, use_ssl=False, server_cls, server_ssl_cls):$/;" f +_run_tests_mp Lib/test/libregrtest/main.py /^ def _run_tests_mp(self, runtests: RunTests) -> None:$/;" m class:Regrtest +_run_until_complete_cb Lib/asyncio/base_events.py /^def _run_until_complete_cb(fut):$/;" f +_runnable_test Lib/test/test_unittest/testmock/testasync.py /^ async def _runnable_test(self, *args, **kwargs):$/;" m class:AsyncMockAssert +_running Lib/test/test__xxsubinterpreters.py /^def _running(interp):$/;" f +_running Lib/test/test_interpreters.py /^def _running(interp):$/;" f +_running_loop Lib/asyncio/events.py /^_running_loop = _RunningLoop()$/;" v +_runtest Lib/test/libregrtest/runtest.py /^def _runtest(result: TestResult, ns: Namespace) -> None:$/;" f +_runtest Lib/test/libregrtest/runtest_mp.py /^ def _runtest(self, test_name: str) -> MultiprocessResult:$/;" m class:TestWorkerProcess +_runtest_env_changed_exc Lib/test/libregrtest/runtest.py /^def _runtest_env_changed_exc(result: TestResult, ns: Namespace,$/;" f +_runtime_warn Lib/test/test_unittest/test_case.py /^ def _runtime_warn():$/;" f function:.testAssertWarnsCallable +_runtime_warn Lib/test/test_unittest/test_case.py /^ def _runtime_warn():$/;" f function:.testAssertWarnsContext +_runtime_warn Lib/test/test_unittest/test_case.py /^ def _runtime_warn(msg):$/;" f function:.testAssertWarnsRegexCallable +_runtime_warn Lib/test/test_unittest/test_case.py /^ def _runtime_warn(msg):$/;" f function:.testAssertWarnsRegexContext +_s_getter Lib/ast.py /^ def _s_getter(self):$/;" m class:NodeTransformer +_s_setter Lib/ast.py /^ def _s_setter(self, value):$/;" m class:NodeTransformer +_safeDuplicateHandle PC/launcher2.c /^_safeDuplicateHandle(HANDLE in, HANDLE * pout, const wchar_t *nameForError)$/;" f +_safe_gethostbyname Lib/urllib/request.py /^def _safe_gethostbyname(host):$/;" f +_safe_import_hook Lib/modulefinder.py /^ def _safe_import_hook(self, name, caller, fromlist, level=-1):$/;" m class:ModuleFinder +_safe_key Lib/pprint.py /^class _safe_key:$/;" c +_safe_print Lib/tarfile.py /^def _safe_print(s):$/;" f +_safe_read Lib/http/client.py /^ def _safe_read(self, amt):$/;" m class:HTTPResponse +_safe_readinto Lib/http/client.py /^ def _safe_readinto(self, b):$/;" m class:HTTPResponse +_safe_realpath Lib/sysconfig.py /^def _safe_realpath(path):$/;" f +_safe_repr Lib/pprint.py /^ def _safe_repr(self, object, context, maxlevels, level):$/;" m class:PrettyPrinter +_safe_string Lib/traceback.py /^def _safe_string(value, what, func=str):$/;" f +_safe_super Lib/unittest/mock.py /^_safe_super = super$/;" v +_safe_tuple Lib/pprint.py /^def _safe_tuple(t):$/;" f +_saltchars Lib/crypt.py /^_saltchars = _string.ascii_letters + _string.digits + '.\/'$/;" v +_samefile Lib/shutil.py /^def _samefile(src, dst):$/;" f +_sample Lib/importlib/metadata/__init__.py /^ _sample = textwrap.dedent($/;" v class:Sectioned +_sample_headers Lib/test/test_mailbox.py /^_sample_headers = [$/;" v +_sanitize Lib/email/utils.py /^def _sanitize(string):$/;" f +_sanitize_filename Lib/zipfile/__init__.py /^def _sanitize_filename(filename):$/;" f +_sanitize_header Lib/email/_policybase.py /^ def _sanitize_header(self, name, value):$/;" m class:Compat32 +_sanitize_isoformat_str Modules/_datetimemodule.c /^_sanitize_isoformat_str(PyObject *dtstr)$/;" f file: +_sanitize_params Lib/tempfile.py /^def _sanitize_params(prefix, suffix, dir):$/;" f +_sanitize_windows_name Lib/zipfile/__init__.py /^ def _sanitize_windows_name(cls, arcname, pathsep):$/;" m class:ZipFile +_sanity_check Lib/importlib/_bootstrap.py /^def _sanity_check(name, package, level):$/;" f +_sanity_check_python_fd_sequence Modules/_posixsubprocess.c /^_sanity_check_python_fd_sequence(PyObject *fd_sequence)$/;" f file: +_save_and_remove_modules Lib/test/support/import_helper.py /^def _save_and_remove_modules(names):$/;" f +_save_bytearray_data Modules/_pickle.c /^_save_bytearray_data(PickleState *state, PicklerObject *self, PyObject *obj,$/;" f file: +_save_bytes_data Modules/_pickle.c /^_save_bytes_data(PickleState *st, PicklerObject *self, PyObject *obj,$/;" f file: +_save_fds Lib/test/test_subprocess.py /^ def _save_fds(self, save_fds):$/;" m class:POSIXProcessTestCase +_save_input Lib/subprocess.py /^ def _save_input(self, input):$/;" f function:Popen._on_error_fd_closer +_save_modified_value Lib/_osx_support.py /^def _save_modified_value(_config_vars, cv, newvalue):$/;" f +_scalars Lib/plistlib.py /^_scalars = (str, int, float, datetime.datetime, bytes)$/;" v +_scan_name Lib/_markupbase.py /^ def _scan_name(self, i, declstartpos):$/;" m class:ParserBase +_scan_once Lib/json/scanner.py /^ def _scan_once(string, idx):$/;" f function:py_make_scanner +_scandir Lib/pathlib.py /^ def _scandir(self):$/;" m class:Path +_scheduled_tasks Lib/asyncio/tasks.py /^_scheduled_tasks = weakref.WeakSet()$/;" v +_scproxy_module Modules/_scproxy.c /^static struct PyModuleDef _scproxy_module = {$/;" v typeref:struct:PyModuleDef file: +_scproxy_slots Modules/_scproxy.c /^static PyModuleDef_Slot _scproxy_slots[] = {$/;" v file: +_screen Lib/turtle.py /^ _screen = None$/;" v class:Turtle +_screen_docrevise Lib/turtle.py /^def _screen_docrevise(docstr):$/;" f +_script Lib/site.py /^def _script():$/;" f +_script_from_settings Lib/tkinter/ttk.py /^def _script_from_settings(settings):$/;" f +_scrolled_list Lib/idlelib/scrolledlist.py /^def _scrolled_list(parent): # htest #$/;" f +_scrolled_list_spec Lib/idlelib/idle_test/htest.py /^_scrolled_list_spec = {$/;" v +_scrub_removals Lib/weakref.py /^ def _scrub_removals(self):$/;" m class:WeakKeyDictionary +_search_dialog Lib/idlelib/search.py /^def _search_dialog(parent): # htest #$/;" f +_search_dialog_spec Lib/idlelib/idle_test/htest.py /^_search_dialog_spec = {$/;" v +_search_paths Lib/importlib/metadata/__init__.py /^ def _search_paths(cls, name, paths):$/;" m class:MetadataPathFinder +_search_registry Lib/importlib/_bootstrap_external.py /^ def _search_registry(cls, fullname):$/;" m class:WindowsRegistryFinder +_searchbase Lib/idlelib/searchbase.py /^class _searchbase(SearchDialogBase): # htest #$/;" c +_searchbase_spec Lib/idlelib/idle_test/htest.py /^_searchbase_spec = {$/;" v +_security_check Lib/netrc.py /^ def _security_check(self, fp, default_netrc, login):$/;" m class:netrc +_seekable Lib/_pyio.py /^ _seekable = None$/;" v class:FileIO +_seekabs Lib/test/test_io.py /^ def _seekabs(bufio):$/;" f function:BufferedWriterTest.test_writes_and_seeks +_seekrel Lib/test/test_io.py /^ def _seekrel(bufio):$/;" f function:BufferedWriterTest.test_writes_and_seeks +_select Lib/selectors.py /^ def _select(self, r, w, _, timeout=None):$/;" f function:SelectSelector.unregister +_selectALPN_cb Modules/_ssl.c /^_selectALPN_cb(SSL *s,$/;" f file: +_selectEnvironment PC/launcher2.c /^_selectEnvironment(const SearchInfo *search, EnvironmentInfo *env, EnvironmentInfo **best)$/;" f +_select_clear Modules/selectmodule.c /^_select_clear(PyObject *module)$/;" f file: +_select_exec Modules/selectmodule.c /^_select_exec(PyObject *m)$/;" f +_select_for_exit Lib/weakref.py /^ def _select_for_exit(cls):$/;" m class:finalize +_select_frame Lib/pdb.py /^ def _select_frame(self, number):$/;" m class:Pdb +_select_free Modules/selectmodule.c /^_select_free(void *module)$/;" f file: +_select_from Lib/pathlib.py /^ def _select_from(self, parent_path, scandir):$/;" m class:_ParentSelector +_select_from Lib/pathlib.py /^ def _select_from(self, parent_path, scandir):$/;" m class:_DoubleRecursiveWildcardSelector +_select_from Lib/pathlib.py /^ def _select_from(self, parent_path, scandir):$/;" m class:_RecursiveWildcardSelector +_select_from Lib/pathlib.py /^ def _select_from(self, parent_path, scandir):$/;" m class:_TerminatingSelector +_select_from Lib/pathlib.py /^ def _select_from(self, parent_path, scandir):$/;" m class:_WildcardSelector +_select_slots Modules/selectmodule.c /^static PyModuleDef_Slot _select_slots[] = {$/;" v file: +_select_traverse Modules/selectmodule.c /^_select_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_selection Lib/tkinter/ttk.py /^ def _selection(self, selop, items):$/;" m class:Treeview +_selection_changed Lib/idlelib/autocomplete_w.py /^ def _selection_changed(self):$/;" m class:AutoCompleteWindow +_selector Lib/test/test_asyncio/test_base_events.py /^ _selector = mock.Mock()$/;" v class:BaseEventLoopTests.test_default_exc_handler_broken.Loop +_selector_cls Lib/selectors.py /^ _selector_cls = select.devpoll$/;" v class:_PollLikeSelector.DevpollSelector +_selector_cls Lib/selectors.py /^ _selector_cls = select.epoll$/;" v class:_PollLikeSelector.EpollSelector +_selector_cls Lib/selectors.py /^ _selector_cls = select.poll$/;" v class:_PollLikeSelector.PollSelector +_selector_cls Lib/selectors.py /^ _selector_cls = None$/;" v class:_PollLikeSelector +_selectstate Modules/selectmodule.c /^} _selectstate;$/;" t typeref:struct:__anon572 file: +_selectstate_by_type Modules/selectmodule.c 92;" d file: +_semispacejoin Lib/http/cookies.py /^_semispacejoin = '; '.join$/;" v +_send Lib/multiprocessing/connection.py /^ def _send(self, buf, write=_write):$/;" m class:Connection +_send Lib/multiprocessing/resource_tracker.py /^ def _send(self, cmd, name, rtype):$/;" m class:ResourceTracker +_send Lib/test/test_imaplib.py /^ def _send(self, message):$/;" m class:SimpleIMAPHandler +_send_bytes Lib/multiprocessing/connection.py /^ def _send_bytes(self, buf):$/;" m class:.PipeConnection +_send_bytes Lib/multiprocessing/connection.py /^ def _send_bytes(self, buf):$/;" m class:Connection +_send_chunk Tools/ccbench/ccbench.py /^ def _send_chunk(msg):$/;" f function:bandwidth_client +_send_data_without_fd Lib/test/_test_multiprocessing.py /^ def _send_data_without_fd(self, conn):$/;" m class:_TestConnection +_send_line Lib/test/test_imaplib.py /^ def _send_line(self, message):$/;" m class:SimpleIMAPHandler +_send_output Lib/http/client.py /^ def _send_output(self, message_body=None, encode_chunked=False):$/;" m class:HTTPConnection +_send_request Lib/http/client.py /^ def _send_request(self, method, url, body, headers, encode_chunked):$/;" m class:HTTPConnection +_send_signal Lib/multiprocessing/popen_fork.py /^ def _send_signal(self, sig):$/;" m class:Popen +_send_tagged Lib/test/test_imaplib.py /^ def _send_tagged(self, tag, code, message):$/;" m class:SimpleIMAPHandler +_send_textline Lib/test/test_imaplib.py /^ def _send_textline(self, message):$/;" m class:SimpleIMAPHandler +_send_traceback_header Lib/xmlrpc/server.py /^ _send_traceback_header = False$/;" v class:SimpleXMLRPCServer +_sendback_result Lib/concurrent/futures/process.py /^def _sendback_result(result_queue, work_id, result=None, exception=None,$/;" f +_sendfile_compatible Lib/asyncio/proactor_events.py /^ _sendfile_compatible = constants._SendfileMode.TRY_NATIVE$/;" v class:_ProactorSocketTransport +_sendfile_compatible Lib/asyncio/selector_events.py /^ _sendfile_compatible = constants._SendfileMode.TRY_NATIVE$/;" v class:_SelectorSocketTransport +_sendfile_compatible Lib/asyncio/sslproto.py /^ _sendfile_compatible = constants._SendfileMode.FALLBACK$/;" v class:_SSLProtocolTransport +_sendfile_fallback Lib/asyncio/base_events.py /^ async def _sendfile_fallback(self, transp, file, offset, count):$/;" m class:BaseEventLoop +_sendfile_native Lib/asyncio/base_events.py /^ async def _sendfile_native(self, transp, file, offset, count):$/;" m class:BaseEventLoop +_sendfile_native Lib/asyncio/proactor_events.py /^ async def _sendfile_native(self, transp, file, offset, count):$/;" m class:BaseProactorEventLoop +_sendfile_native Lib/asyncio/selector_events.py /^ async def _sendfile_native(self, transp, file, offset, count):$/;" m class:BaseSelectorEventLoop +_sendfile_use_send Lib/socket.py /^ def _sendfile_use_send(self, file, offset=0, count=None):$/;" m class:socket +_sendfile_use_sendfile Lib/socket.py /^ def _sendfile_use_sendfile(self, file, offset=0, count=None):$/;" f function:socket.makefile +_sendto Tools/ccbench/ccbench.py /^def _sendto(sock, s, addr):$/;" f +_sendto_ready Lib/asyncio/selector_events.py /^ def _sendto_ready(self):$/;" m class:_SelectorDatagramTransport +_sentinel Lib/inspect.py /^_sentinel = object()$/;" v +_sentinel Lib/logging/handlers.py /^ _sentinel = None$/;" v class:QueueListener +_sentinel Lib/multiprocessing/queues.py /^_sentinel = object()$/;" v +_sentinel Lib/sched.py /^_sentinel = object()$/;" v +_sentinel Lib/test/test_tkinter/widget_tests.py /^_sentinel = object()$/;" v +_sentinel Lib/traceback.py /^_sentinel = _Sentinel()$/;" v +_sentinel_dict Lib/string.py /^_sentinel_dict = {}$/;" v +_seq_number_of_starred_exprs Parser/action_helpers.c /^_seq_number_of_starred_exprs(asdl_seq *seq)$/;" f file: +_sequence Lib/test/test_ast.py /^ def _sequence(self, fac):$/;" m class:ASTValidatorTests +_sequenceIncludes Lib/lib2to3/fixes/fix_operator.py /^ def _sequenceIncludes(self, node, results):$/;" m class:FixOperator +_serialize Lib/xml/etree/ElementTree.py /^_serialize = {$/;" v +_serialize_html Lib/xml/etree/ElementTree.py /^def _serialize_html(write, elem, qnames, namespaces, **kwargs):$/;" f +_serialize_text Lib/xml/etree/ElementTree.py /^def _serialize_text(write, elem):$/;" f +_serialize_xml Lib/xml/etree/ElementTree.py /^def _serialize_xml(write, elem, qnames, namespaces,$/;" f +_serve Lib/multiprocessing/resource_sharer.py /^ def _serve(self):$/;" m class:_ResourceSharer +_serve_one Lib/multiprocessing/forkserver.py /^def _serve_one(child_r, fds, unused_fds, handlers):$/;" f +_server_pipe_handle Lib/asyncio/windows_events.py /^ def _server_pipe_handle(self, first):$/;" m class:PipeServer +_servername_callback Modules/_ssl.c /^_servername_callback(SSL *s, int *al, void *args)$/;" f file: +_set Lib/multiprocessing/pool.py /^ def _set(self, i, obj):$/;" m class:ApplyResult +_set Lib/multiprocessing/pool.py /^ def _set(self, i, obj):$/;" m class:IMapIterator +_set Lib/multiprocessing/pool.py /^ def _set(self, i, obj):$/;" m class:IMapUnorderedIterator +_set Lib/multiprocessing/pool.py /^ def _set(self, i, success_result):$/;" m class:MapResult +_set Lib/os.py /^ _set = set()$/;" v +_set Lib/test/test_unittest/testmock/testmagicmethods.py /^ def _set():$/;" f function:TestMockingMagicMethods.test_dict_methods +_set Lib/test/test_unittest/testmock/testmock.py /^ def _set(self, value):$/;" m class:MockTest.test_subclass_with_properties.SubClass +_set Lib/tkinter/font.py /^ def _set(self, kw):$/;" m class:Font +_set Lib/unittest/mock.py /^ def _set(self, value, name=name, _the_name=_the_name):$/;" f function:_delegating_property +_setDegreesPerAU Lib/turtle.py /^ def _setDegreesPerAU(self, fullcircle):$/;" m class:TNavigator +_setException Modules/_hashopenssl.c /^_setException(PyObject *exc, const char* altmsg, ...)$/;" f file: +_setSSLError Modules/_ssl.c /^_setSSLError (_sslmodulestate *state, const char *errstr, int errcode, const char *filename, int lineno)$/;" f file: +_setUp Lib/test/test_socket.py /^ def _setUp(self):$/;" m class:ThreadableTest +_set_BlockingIOError Modules/_io/bufferedio.c /^_set_BlockingIOError(const char *msg, Py_ssize_t written)$/;" f file: +_set_app_protocol Lib/asyncio/sslproto.py /^ def _set_app_protocol(self, app_protocol):$/;" m class:SSLProtocol +_set_async Lib/xml/dom/xmlbuilder.py /^ def _set_async(self, flag):$/;" m class:DocumentLS +_set_attribute_context Parser/action_helpers.c /^_set_attribute_context(Parser *p, expr_ty e, expr_context_ty ctx)$/;" f file: +_set_attribute_node Lib/xml/dom/minidom.py /^def _set_attribute_node(element, attr):$/;" f +_set_attrs Lib/optparse.py /^ def _set_attrs(self, attrs):$/;" m class:Option +_set_baseURI Lib/xml/dom/xmlbuilder.py /^ def _set_baseURI(self, uri):$/;" m class:DOMInputSource +_set_bool Modules/_csv.c /^_set_bool(const char *name, char *target, PyObject *src, bool dflt)$/;" f file: +_set_bootstrap_module Lib/importlib/_bootstrap_external.py /^def _set_bootstrap_module(_bootstrap_module):$/;" f +_set_byteStream Lib/xml/dom/xmlbuilder.py /^ def _set_byteStream(self, byteStream):$/;" m class:DOMInputSource +_set_called Lib/asyncio/events.py /^ _set_called = False$/;" v class:BaseDefaultEventLoopPolicy._Local +_set_char Modules/_csv.c /^_set_char(const char *name, Py_UCS4 *target, PyObject *src, Py_UCS4 dflt)$/;" f file: +_set_char_or_none Modules/_csv.c /^_set_char_or_none(const char *name, Py_UCS4 *target, PyObject *src, Py_UCS4 dflt)$/;" f file: +_set_characterStream Lib/xml/dom/xmlbuilder.py /^ def _set_characterStream(self, characterStream):$/;" m class:DOMInputSource +_set_coeff Modules/_decimal/libmpdec/mpdecimal.c /^_set_coeff(mpd_uint_t *data, mpd_ssize_t len, uint64_t hi, uint64_t lo)$/;" f file: +_set_coeff Modules/_decimal/libmpdec/mpdecimal.c /^_set_coeff(uint64_t data[3], uint64_t hi, uint64_t lo)$/;" f file: +_set_concurrent_future_state Lib/asyncio/futures.py /^def _set_concurrent_future_state(concurrent, source):$/;" f +_set_coroutine_origin_tracking Lib/asyncio/base_events.py /^ def _set_coroutine_origin_tracking(self, enabled):$/;" m class:BaseEventLoop +_set_data Lib/xml/dom/minidom.py /^ def _set_data(self, data):$/;" m class:CharacterData +_set_decoded_chars Lib/_pyio.py /^ def _set_decoded_chars(self, chars):$/;" m class:TextIOWrapper +_set_encoding Lib/xml/dom/xmlbuilder.py /^ def _set_encoding(self, encoding):$/;" m class:DOMInputSource +_set_entityResolver Lib/xml/dom/xmlbuilder.py /^ def _set_entityResolver(self, entityResolver):$/;" m class:DOMBuilder +_set_errorHandler Lib/xml/dom/xmlbuilder.py /^ def _set_errorHandler(self, errorHandler):$/;" m class:DOMBuilder +_set_extra Lib/asyncio/proactor_events.py /^ def _set_extra(self, sock):$/;" m class:_ProactorBasePipeTransport +_set_extra Lib/asyncio/proactor_events.py /^ def _set_extra(self, sock):$/;" m class:_ProactorDatagramTransport +_set_extra Lib/asyncio/proactor_events.py /^ def _set_extra(self, sock):$/;" m class:_ProactorSocketTransport +_set_filter Lib/xml/dom/xmlbuilder.py /^ def _set_filter(self, filter):$/;" m class:DOMBuilder +_set_headersonly Lib/email/feedparser.py /^ def _set_headersonly(self):$/;" m class:FeedParser +_set_ident Lib/threading.py /^ def _set_ident(self):$/;" m class:Thread +_set_initialized Modules/_testsinglephase.c /^_set_initialized(_PyTime_t *initialized)$/;" f file: +_set_int Modules/_csv.c /^_set_int(const char *name, int *target, PyObject *src, int dflt)$/;" f file: +_set_integer_check Lib/_pydecimal.py /^ def _set_integer_check(self, name, value, vmin, vmax):$/;" m class:Context +_set_joined_ptr Modules/_elementtree.c /^_set_joined_ptr(PyObject **p, PyObject *new_joined_ptr)$/;" f +_set_length Lib/multiprocessing/pool.py /^ def _set_length(self, length):$/;" m class:IMapIterator +_set_length Lib/xml/dom/minicompat.py /^ def _set_length(self, value):$/;" m class:EmptyNodeList +_set_length Lib/xml/dom/minicompat.py /^ def _set_length(self, value):$/;" m class:NodeList +_set_list_context Parser/action_helpers.c /^_set_list_context(Parser *p, expr_ty e, expr_context_ty ctx)$/;" f file: +_set_locale_in_subprocess Lib/test/test_c_locale_coercion.py /^def _set_locale_in_subprocess(locale_name):$/;" f +_set_name Lib/xml/dom/minidom.py /^ def _set_name(self, value):$/;" m class:Attr +_set_name_context Parser/action_helpers.c /^_set_name_context(Parser *p, expr_ty e, expr_context_ty ctx)$/;" f file: +_set_native_id Lib/threading.py /^ def _set_native_id(self):$/;" f function:Thread._set_ident +_set_new_attribute Lib/dataclasses.py /^def _set_new_attribute(cls, name, value):$/;" f +_set_nodeName Lib/xml/dom/minidom.py /^ def _set_nodeName(self, value):$/;" m class:ProcessingInstruction +_set_nodeValue Lib/xml/dom/minidom.py /^ def _set_nodeValue(self, value):$/;" m class:ProcessingInstruction +_set_nodelay Lib/asyncio/base_events.py /^ def _set_nodelay(sock):$/;" f +_set_opt_strings Lib/optparse.py /^ def _set_opt_strings(self, opts):$/;" m class:Option +_set_packing_format_and_transform Lib/multiprocessing/shared_memory.py /^ def _set_packing_format_and_transform(self, position, fmt_as_str, value):$/;" m class:ShareableList +_set_post_data_state Lib/test/smtpd.py /^ def _set_post_data_state(self):$/;" m class:SMTPChannel +_set_prefix Lib/xml/dom/minidom.py /^ def _set_prefix(self, prefix):$/;" m class:Attr +_set_publicId Lib/xml/dom/xmlbuilder.py /^ def _set_publicId(self, publicId):$/;" m class:DOMInputSource +_set_qualname Lib/dataclasses.py /^def _set_qualname(cls, value):$/;" f +_set_read_buffer_limits Lib/asyncio/sslproto.py /^ def _set_read_buffer_limits(self, high=None, low=None):$/;" m class:SSLProtocol +_set_ready Tools/c-analyzer/c_parser/parser/_info.py /^ def _set_ready(self):$/;" m class:SourceInfo +_set_result_unless_cancelled Lib/asyncio/futures.py /^def _set_result_unless_cancelled(fut, result):$/;" f +_set_return_value Lib/unittest/mock.py /^def _set_return_value(mock, method, name):$/;" f +_set_reuseport Lib/asyncio/base_events.py /^def _set_reuseport(sock):$/;" f +_set_rounding Lib/_pydecimal.py /^ def _set_rounding(self, type):$/;" m class:Context +_set_rset_state Lib/test/smtpd.py /^ def _set_rset_state(self):$/;" m class:SMTPChannel +_set_running_loop Lib/asyncio/events.py /^def _set_running_loop(loop):$/;" f +_set_running_loop_impl Lib/test/test_asyncio/test_events.py /^ _set_running_loop_impl = events._c__set_running_loop$/;" v class:.TestCGetEventLoop +_set_running_loop_impl Lib/test/test_asyncio/test_events.py /^ _set_running_loop_impl = None$/;" v class:GetEventLoopTestsMixin +_set_running_loop_impl Lib/test/test_asyncio/test_events.py /^ _set_running_loop_impl = events._py__set_running_loop$/;" v class:TestPyGetEventLoop +_set_sentinel Lib/threading.py /^_set_sentinel = _thread._set_sentinel$/;" v +_set_seq_context Parser/action_helpers.c /^_set_seq_context(Parser *p, asdl_expr_seq *seq, expr_context_ty ctx)$/;" f file: +_set_signal_dict Lib/_pydecimal.py /^ def _set_signal_dict(self, name, d):$/;" m class:Context +_set_signature Lib/unittest/mock.py /^def _set_signature(mock, original, instance=False):$/;" f +_set_socket_extra Lib/asyncio/proactor_events.py /^def _set_socket_extra(transport, sock):$/;" f +_set_starred_context Parser/action_helpers.c /^_set_starred_context(Parser *p, expr_ty e, expr_context_ty ctx)$/;" f file: +_set_state Lib/asyncio/futures.py /^ def _set_state(future, other):$/;" f function:_chain_future +_set_state Lib/asyncio/sslproto.py /^ def _set_state(self, new_state):$/;" m class:SSLProtocol +_set_stopinfo Lib/bdb.py /^ def _set_stopinfo(self, stopframe, returnframe, stoplineno=0):$/;" m class:Bdb +_set_str Modules/_csv.c /^_set_str(const char *name, PyObject **target, PyObject *src, const char *dflt)$/;" f file: +_set_stringData Lib/xml/dom/xmlbuilder.py /^ def _set_stringData(self, data):$/;" m class:DOMInputSource +_set_subscript_context Parser/action_helpers.c /^_set_subscript_context(Parser *p, expr_ty e, expr_context_ty ctx)$/;" f file: +_set_systemId Lib/xml/dom/xmlbuilder.py /^ def _set_systemId(self, systemId):$/;" m class:DOMInputSource +_set_task_name Lib/asyncio/tasks.py /^def _set_task_name(task, name):$/;" f +_set_tstate_lock Lib/threading.py /^ def _set_tstate_lock(self):$/;" m class:Thread +_set_tuple_context Parser/action_helpers.c /^_set_tuple_context(Parser *p, expr_ty e, expr_context_ty ctx)$/;" f file: +_set_uid_gid Lib/shutil.py /^ def _set_uid_gid(tarinfo):$/;" f function:_make_tarball +_set_uint128_coeff_exp Modules/_decimal/libmpdec/mpdecimal.c /^_set_uint128_coeff_exp(mpd_t *result, uint64_t hi, uint64_t lo, mpd_ssize_t exp)$/;" f file: +_set_uname Lib/test/test_sysconfig.py /^ def _set_uname(self, uname):$/;" m class:TestSysConfig +_set_up_rule_memoization Tools/peg_generator/pegen/c_generator.py /^ def _set_up_rule_memoization(self, node: Rule, result_type: str) -> None:$/;" m class:CParserGenerator +_set_up_token_end_metadata_extraction Tools/peg_generator/pegen/c_generator.py /^ def _set_up_token_end_metadata_extraction(self) -> None:$/;" m class:CParserGenerator +_set_up_token_start_metadata_extraction Tools/peg_generator/pegen/c_generator.py /^ def _set_up_token_start_metadata_extraction(self) -> None:$/;" m class:CParserGenerator +_set_value Lib/xml/dom/minidom.py /^ def _set_value(self, value):$/;" m class:Attr +_set_verify_mode Modules/_ssl.c /^_set_verify_mode(PySSLContext *self, enum py_ssl_cert_requirements n)$/;" f file: +_set_write_buffer_limits Lib/asyncio/sslproto.py /^ def _set_write_buffer_limits(self, high=None, low=None):$/;" m class:SSLProtocol +_set_write_buffer_limits Lib/asyncio/transports.py /^ def _set_write_buffer_limits(self, high=None, low=None):$/;" m class:_FlowControlMixin +_set_x Lib/test/test_descr.py /^ def _set_x(self, x):$/;" m class:ClassPropertiesAndMethods.test_metaclass.A +_setbgpic Lib/turtle.py /^ def _setbgpic(self, item, image):$/;" m class:TurtleScreenBase +_setevents Lib/xml/etree/ElementTree.py /^ def _setevents(self, events_queue, events_to_report):$/;" m class:XMLParser +_setit Lib/tkinter/__init__.py /^class _setit:$/;" c +_setlocale Lib/locale.py /^_setlocale = setlocale$/;" v +_setmode Lib/_pyio.py /^ _setmode = None$/;" v +_setmode Lib/turtle.py /^ def _setmode(self, mode=None):$/;" m class:TNavigator +_setoption Lib/warnings.py /^def _setoption(arg):$/;" f +_setreadermode Lib/nntplib.py /^ def _setreadermode(self):$/;" m class:NNTP +_setroot Lib/xml/etree/ElementTree.py /^ def _setroot(self, element):$/;" m class:ElementTree +_setscrollregion Lib/turtle.py /^ def _setscrollregion(self, srx1, sry1, srx2, sry2):$/;" m class:TurtleScreenBase +_setshape Lib/turtle.py /^ def _setshape(self, shapeIndex):$/;" m class:_TurtleImage +_settings Lib/xml/dom/xmlbuilder.py /^ _settings = {$/;" v class:DOMBuilder +_settrace_and_raise Lib/test/test_sys_settrace.py /^def _settrace_and_raise(tracefunc):$/;" f +_settrace_and_return Lib/test/test_sys_settrace.py /^def _settrace_and_return(tracefunc):$/;" f +_settriple Modules/_decimal/libmpdec/mpdecimal.c /^_settriple(mpd_t *result, uint8_t sign, mpd_uint_t a, mpd_ssize_t exp)$/;" f file: +_setup Lib/idlelib/search.py /^def _setup(text):$/;" f +_setup Lib/importlib/_bootstrap.py /^def _setup(sys_module, _imp_module):$/;" f +_setup Lib/test/test_imaplib.py /^ def _setup(self, imap_handler, connect=True):$/;" m class:NewIMAPTestsMixin +_setup Lib/tkinter/__init__.py /^ def _setup(self, master, cnf):$/;" m class:BaseWidget +_setup Lib/tkinter/__init__.py /^ def _setup(self, master, cnf):$/;" m class:Checkbutton +_setupAsyncioRunner Lib/unittest/async_case.py /^ def _setupAsyncioRunner(self):$/;" m class:IsolatedAsyncioTestCase +_setupCloneElement Lib/test/test_minidom.py /^ def _setupCloneElement(self, deep):$/;" m class:MinidomTest +_setupStdout Lib/unittest/result.py /^ def _setupStdout(self):$/;" m class:TestResult +_setup_async_mock Lib/unittest/mock.py /^def _setup_async_mock(mock):$/;" f +_setup_broken_package Lib/test/test_import/__init__.py /^ def _setup_broken_package(self, parent, child):$/;" m class:ImportTracebackTests +_setup_dialog Lib/tkinter/simpledialog.py /^def _setup_dialog(w):$/;" f +_setup_func Lib/unittest/mock.py /^def _setup_func(funcopy, mock, sig):$/;" f +_setup_keywords Tools/peg_generator/pegen/c_generator.py /^ def _setup_keywords(self) -> None:$/;" m class:CParserGenerator +_setup_pip Lib/venv/__init__.py /^ def _setup_pip(self, context):$/;" m class:EnvBuilder +_setup_queues Lib/multiprocessing/pool.py /^ def _setup_queues(self):$/;" m class:Pool +_setup_queues Lib/multiprocessing/pool.py /^ def _setup_queues(self):$/;" m class:ThreadPool +_setup_soft_keywords Tools/peg_generator/pegen/c_generator.py /^ def _setup_soft_keywords(self) -> None:$/;" m class:CParserGenerator +_setup_subset Lib/xml/dom/expatbuilder.py /^ def _setup_subset(self, buffer):$/;" m class:ExpatBuilder +_setup_test Lib/test/test_tarfile.py /^ def _setup_test(mock_geteuid):$/;" m class:NumericOwnerTest +_setval Lib/dbm/dumb.py /^ def _setval(self, pos, val):$/;" m class:_Database +_setx Lib/test/pydocfodder.py /^ def _setx(self, value):$/;" m class:A_new +_sha1_clear Modules/sha1module.c /^_sha1_clear(PyObject *module)$/;" f file: +_sha1_exec Modules/sha1module.c /^_sha1_exec(PyObject *module)$/;" f file: +_sha1_free Modules/sha1module.c /^_sha1_free(void *module)$/;" f file: +_sha1_sha1 Modules/clinic/sha1module.c.h /^_sha1_sha1(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sha1_sha1_impl Modules/sha1module.c /^_sha1_sha1_impl(PyObject *module, PyObject *string, int usedforsecurity)$/;" f file: +_sha1_slots Modules/sha1module.c /^static PyModuleDef_Slot _sha1_slots[] = {$/;" v file: +_sha1_traverse Modules/sha1module.c /^_sha1_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_sha1module Modules/sha1module.c /^static struct PyModuleDef _sha1module = {$/;" v typeref:struct:PyModuleDef file: +_sha2_clear Modules/sha2module.c /^_sha2_clear(PyObject *module)$/;" f file: +_sha2_free Modules/sha2module.c /^_sha2_free(void *module)$/;" f file: +_sha2_sha224 Modules/clinic/sha2module.c.h /^_sha2_sha224(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sha2_sha224_impl Modules/sha2module.c /^_sha2_sha224_impl(PyObject *module, PyObject *string, int usedforsecurity)$/;" f file: +_sha2_sha256 Modules/clinic/sha2module.c.h /^_sha2_sha256(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sha2_sha256_impl Modules/sha2module.c /^_sha2_sha256_impl(PyObject *module, PyObject *string, int usedforsecurity)$/;" f file: +_sha2_sha384 Modules/clinic/sha2module.c.h /^_sha2_sha384(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sha2_sha384_impl Modules/sha2module.c /^_sha2_sha384_impl(PyObject *module, PyObject *string, int usedforsecurity)$/;" f file: +_sha2_sha512 Modules/clinic/sha2module.c.h /^_sha2_sha512(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sha2_sha512_impl Modules/sha2module.c /^_sha2_sha512_impl(PyObject *module, PyObject *string, int usedforsecurity)$/;" f file: +_sha2_slots Modules/sha2module.c /^static PyModuleDef_Slot _sha2_slots[] = {$/;" v file: +_sha2_traverse Modules/sha2module.c /^_sha2_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_sha2module Modules/sha2module.c /^static struct PyModuleDef _sha2module = {$/;" v typeref:struct:PyModuleDef file: +_sha3_clear Modules/sha3module.c /^_sha3_clear(PyObject *module)$/;" f file: +_sha3_exec Modules/sha3module.c /^_sha3_exec(PyObject *m)$/;" f file: +_sha3_free Modules/sha3module.c /^_sha3_free(void *module)$/;" f file: +_sha3_sha3_224_copy Modules/clinic/sha3module.c.h /^_sha3_sha3_224_copy(SHA3object *self, PyObject *Py_UNUSED(ignored))$/;" f +_sha3_sha3_224_copy_impl Modules/sha3module.c /^_sha3_sha3_224_copy_impl(SHA3object *self)$/;" f file: +_sha3_sha3_224_digest Modules/clinic/sha3module.c.h /^_sha3_sha3_224_digest(SHA3object *self, PyObject *Py_UNUSED(ignored))$/;" f +_sha3_sha3_224_digest_impl Modules/sha3module.c /^_sha3_sha3_224_digest_impl(SHA3object *self)$/;" f file: +_sha3_sha3_224_hexdigest Modules/clinic/sha3module.c.h /^_sha3_sha3_224_hexdigest(SHA3object *self, PyObject *Py_UNUSED(ignored))$/;" f +_sha3_sha3_224_hexdigest_impl Modules/sha3module.c /^_sha3_sha3_224_hexdigest_impl(SHA3object *self)$/;" f file: +_sha3_sha3_224_update Modules/sha3module.c /^_sha3_sha3_224_update(SHA3object *self, PyObject *data)$/;" f file: +_sha3_shake_128_digest Modules/clinic/sha3module.c.h /^_sha3_shake_128_digest(SHA3object *self, PyObject *arg)$/;" f +_sha3_shake_128_digest_impl Modules/sha3module.c /^_sha3_shake_128_digest_impl(SHA3object *self, unsigned long length)$/;" f file: +_sha3_shake_128_hexdigest Modules/clinic/sha3module.c.h /^_sha3_shake_128_hexdigest(SHA3object *self, PyObject *arg)$/;" f +_sha3_shake_128_hexdigest_impl Modules/sha3module.c /^_sha3_shake_128_hexdigest_impl(SHA3object *self, unsigned long length)$/;" f file: +_sha3_slots Modules/sha3module.c /^static PyModuleDef_Slot _sha3_slots[] = {$/;" v file: +_sha3_traverse Modules/sha3module.c /^_sha3_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_sha3module Modules/sha3module.c /^static struct PyModuleDef _sha3module = {$/;" v typeref:struct:PyModuleDef file: +_shadowed_dict Lib/inspect.py /^def _shadowed_dict(klass):$/;" f +_shadowed_dict_from_mro_tuple Lib/inspect.py /^def _shadowed_dict_from_mro_tuple(mro):$/;" f +_shallow_copy Lib/_pydecimal.py /^ def _shallow_copy(self):$/;" m class:Context +_share_option_mappings Lib/optparse.py /^ def _share_option_mappings(self, parser):$/;" m class:OptionContainer +_shared_bytes_data Python/pystate.c /^struct _shared_bytes_data {$/;" s file: +_shared_str_data Python/pystate.c /^struct _shared_str_data {$/;" s file: +_sharedexception Modules/_xxsubinterpretersmodule.c /^typedef struct _sharedexception {$/;" s file: +_sharedexception Modules/_xxsubinterpretersmodule.c /^} _sharedexception;$/;" t typeref:struct:_sharedexception file: +_sharedexception_apply Modules/_xxsubinterpretersmodule.c /^_sharedexception_apply(_sharedexception *exc, PyObject *wrapperclass)$/;" f file: +_sharedexception_bind Modules/_xxsubinterpretersmodule.c /^_sharedexception_bind(PyObject *exc, _sharedexception *sharedexc)$/;" f file: +_sharedexception_clear Modules/_xxsubinterpretersmodule.c /^_sharedexception_clear(_sharedexception *exc)$/;" f file: +_sharedns Modules/_xxsubinterpretersmodule.c /^typedef struct _sharedns {$/;" s file: +_sharedns Modules/_xxsubinterpretersmodule.c /^} _sharedns;$/;" t typeref:struct:_sharedns file: +_sharedns_apply Modules/_xxsubinterpretersmodule.c /^_sharedns_apply(_sharedns *shared, PyObject *ns)$/;" f file: +_sharedns_free Modules/_xxsubinterpretersmodule.c /^_sharedns_free(_sharedns *shared)$/;" f file: +_sharedns_new Modules/_xxsubinterpretersmodule.c /^_sharedns_new(Py_ssize_t len)$/;" f file: +_sharednsitem Modules/_xxsubinterpretersmodule.c /^struct _sharednsitem {$/;" s file: +_sharednsitem_apply Modules/_xxsubinterpretersmodule.c /^_sharednsitem_apply(struct _sharednsitem *item, PyObject *ns)$/;" f file: +_sharednsitem_clear Modules/_xxsubinterpretersmodule.c /^_sharednsitem_clear(struct _sharednsitem *item)$/;" f file: +_sharednsitem_init Modules/_xxsubinterpretersmodule.c /^_sharednsitem_init(struct _sharednsitem *item, PyObject *key, PyObject *value)$/;" f file: +_shebangStartsWith PC/launcher2.c /^_shebangStartsWith(const wchar_t *buffer, int bufferLength, const wchar_t *prefix, const wchar_t **rest, int *firstArgumentLength)$/;" f +_shortcmd Lib/nntplib.py /^ def _shortcmd(self, line):$/;" m class:NNTP +_shortcmd Lib/poplib.py /^ def _shortcmd(self, line):$/;" m class:POP3 +_shorten Lib/unittest/util.py /^def _shorten(s, prefixlen, suffixlen):$/;" f +_should_memoize Tools/peg_generator/pegen/c_generator.py /^ def _should_memoize(self, node: Rule) -> bool:$/;" m class:CParserGenerator +_should_unflatten_callable_args Lib/typing.py /^def _should_unflatten_callable_args(typ, args):$/;" f +_show Lib/profile.py /^ def _show(self, prof, filename, sort):$/;" m class:_Utils +_show Lib/tkinter/messagebox.py /^def _show(title=None, message=None, _icon=None, _type=None, **options):$/;" f +_show_drop_down_listbox Lib/test/test_ttk/test_widgets.py /^ def _show_drop_down_listbox(self):$/;" m class:ComboboxTest +_show_event Lib/idlelib/tooltip.py /^ def _show_event(self, event=None):$/;" m class:OnHoverTooltipBase +_showingInternalUIThisPackage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _showingInternalUIThisPackage;$/;" m class:PythonBootstrapperApplication file: +_showwarning Lib/logging/__init__.py /^def _showwarning(message, category, filename, lineno, file=None, line=None):$/;" f +_showwarning_orig Lib/warnings.py /^_showwarning_orig = showwarning$/;" v +_showwarnmsg Lib/warnings.py /^def _showwarnmsg(msg):$/;" f +_showwarnmsg_impl Lib/warnings.py /^def _showwarnmsg_impl(msg):$/;" f +_shuffle_bits Objects/setobject.c /^_shuffle_bits(Py_uhash_t h)$/;" f file: +_shutdown Lib/concurrent/futures/thread.py /^_shutdown = False$/;" v +_shutdown Lib/threading.py /^def _shutdown():$/;" f +_shutdown Lib/weakref.py /^ _shutdown = False$/;" v class:finalize +_shutdown_locks Lib/threading.py /^_shutdown_locks = set()$/;" v +_shutdown_locks_lock Lib/threading.py /^_shutdown_locks_lock = _allocate_lock()$/;" v +_shutdown_timeout_handle Lib/asyncio/sslproto.py /^ _shutdown_timeout_handle = None$/;" v class:SSLProtocol +_side_effect_methods Lib/unittest/mock.py /^_side_effect_methods = {$/;" v +_siftdown Lib/heapq.py /^def _siftdown(heap, startpos, pos):$/;" f +_siftdown_max Lib/heapq.py /^def _siftdown_max(heap, startpos, pos):$/;" f +_siftup Lib/heapq.py /^def _siftup(heap, pos):$/;" f +_siftup_max Lib/heapq.py /^def _siftup_max(heap, pos):$/;" f +_sig Lib/filecmp.py /^def _sig(st):$/;" f +_sig_chld Lib/asyncio/unix_events.py /^ def _sig_chld(self):$/;" m class:BaseChildWatcher +_sig_chld Lib/asyncio/unix_events.py /^ def _sig_chld(self, signum, frame):$/;" m class:MultiLoopChildWatcher +_sighandler_noop Lib/asyncio/unix_events.py /^def _sighandler_noop(signum, frame):$/;" f +_signal_module_clear Modules/signalmodule.c /^_signal_module_clear(PyObject *module)$/;" f file: +_signal_module_free Modules/signalmodule.c /^_signal_module_free(void *module)$/;" f file: +_signal_module_state Modules/signalmodule.c /^} _signal_module_state;$/;" t typeref:struct:__anon300 file: +_signal_module_traverse Modules/signalmodule.c /^_signal_module_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_signals Lib/_pydecimal.py /^_signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,$/;" v +_signals_RUNTIME_INIT Include/internal/pycore_signal.h 89;" d +_signals_WAKEUP_INIT Include/internal/pycore_signal.h 82;" d +_signals_WAKEUP_INIT Include/internal/pycore_signal.h 85;" d +_signals_runtime_state Include/internal/pycore_signal.h /^struct _signals_runtime_state {$/;" s +_signature_bound_method Lib/inspect.py /^def _signature_bound_method(sig):$/;" f +_signature_from_builtin Lib/inspect.py /^def _signature_from_builtin(cls, func, skip_bound_arg=True):$/;" f +_signature_from_callable Lib/inspect.py /^def _signature_from_callable(obj, *,$/;" f +_signature_from_function Lib/inspect.py /^def _signature_from_function(cls, func, skip_bound_arg=True,$/;" f +_signature_fromstr Lib/inspect.py /^def _signature_fromstr(cls, obj, s, skip_bound_arg=True):$/;" f +_signature_get_partial Lib/inspect.py /^def _signature_get_partial(wrapped_sig, partial, extra_args=()):$/;" f +_signature_get_user_defined_method Lib/inspect.py /^def _signature_get_user_defined_method(cls, method_name):$/;" f +_signature_is_builtin Lib/inspect.py /^def _signature_is_builtin(obj):$/;" f +_signature_is_functionlike Lib/inspect.py /^def _signature_is_functionlike(obj):$/;" f +_signature_strip_non_python_syntax Lib/inspect.py /^def _signature_strip_non_python_syntax(signature):$/;" f +_signed_parts_eq Lib/test/test_email/test_email.py /^ def _signed_parts_eq(self, original, result):$/;" m class:TestSigned +_silence_eof_received_warning Lib/test/test_asyncio/test_ssl.py /^ def _silence_eof_received_warning(self):$/;" m class:TestSSL +_silent_invalid_parameter_handler PC/invalid_parameter_handler.c /^static void __cdecl _silent_invalid_parameter_handler($/;" f file: +_simple Lib/re/_compiler.py /^def _simple(p):$/;" f +_simple_command Lib/imaplib.py /^ def _simple_command(self, name, *args):$/;" m class:IMAP4 +_simple_comp Lib/test/test_ast.py /^ def _simple_comp(self, fac):$/;" m class:ASTValidatorTests +_simple_encodings Lib/sunau.py /^_simple_encodings = [AUDIO_FILE_ENCODING_MULAW_8,$/;" v +_simple_enum Lib/enum.py /^def _simple_enum(etype=Enum, *, boundary=None, use_args=None):$/;" f +_singlefileMailbox Lib/mailbox.py /^class _singlefileMailbox(Mailbox):$/;" c +_sitelocal_network Lib/ipaddress.py /^ _sitelocal_network = IPv6Network('fec0::\/10')$/;" v class:_IPv6Constants +_sizeof_void_p Tools/gdb/libpython.py /^def _sizeof_void_p():$/;" f +_skim_close_tests Lib/test/test__xxinterpchannels.py /^ def _skim_close_tests(self):$/;" m class:ExhaustiveChannelTests +_skip Lib/test/test_unittest/test_case.py /^ def _skip(self=None):$/;" f function:.testSkippingEverywhere +_sleep_and_set_event Lib/test/_test_multiprocessing.py /^ def _sleep_and_set_event(self, evt, delay=0.0):$/;" m class:_TestProcess +_sleep_some Lib/test/_test_multiprocessing.py /^ def _sleep_some(cls):$/;" m class:_TestProcess +_slotnames Lib/copyreg.py /^def _slotnames(cls):$/;" f +_slurp Lib/xml/dom/pulldom.py /^ def _slurp(self):$/;" m class:DOMEventStream +_sock Lib/asyncio/selector_events.py /^ _sock = None$/;" v class:_SelectorTransport +_sock Lib/test/test_asyncio/test_base_events.py /^ _sock = None$/;" v class:BaseEventLoopWithSelectorTests.test_create_connection_ssl_server_hostname_default._SelectorTransportMock +_sock_accept Lib/asyncio/selector_events.py /^ def _sock_accept(self, fut, sock):$/;" m class:BaseSelectorEventLoop +_sock_add_cancellation_callback Lib/asyncio/unix_events.py /^ def _sock_add_cancellation_callback(self, fut, sock):$/;" m class:_UnixSelectorEventLoop +_sock_connect Lib/asyncio/selector_events.py /^ def _sock_connect(self, fut, sock, address):$/;" m class:BaseSelectorEventLoop +_sock_connect_cb Lib/asyncio/selector_events.py /^ def _sock_connect_cb(self, fut, sock, address):$/;" m class:BaseSelectorEventLoop +_sock_operation Lib/test/test_timeout.py /^ def _sock_operation(self, count, timeout, method, *args):$/;" m class:TimeoutTestCase +_sock_read_done Lib/asyncio/selector_events.py /^ def _sock_read_done(self, fd, fut, handle=None):$/;" m class:BaseSelectorEventLoop +_sock_recv Lib/asyncio/selector_events.py /^ def _sock_recv(self, fut, sock, n):$/;" m class:BaseSelectorEventLoop +_sock_recv_into Lib/asyncio/selector_events.py /^ def _sock_recv_into(self, fut, sock, buf):$/;" m class:BaseSelectorEventLoop +_sock_recvfrom Lib/asyncio/selector_events.py /^ def _sock_recvfrom(self, fut, sock, bufsize):$/;" m class:BaseSelectorEventLoop +_sock_recvfrom_into Lib/asyncio/selector_events.py /^ def _sock_recvfrom_into(self, fut, sock, buf, bufsize):$/;" m class:BaseSelectorEventLoop +_sock_sendall Lib/asyncio/selector_events.py /^ def _sock_sendall(self, fut, sock, view, pos):$/;" m class:BaseSelectorEventLoop +_sock_sendfile_fallback Lib/asyncio/base_events.py /^ async def _sock_sendfile_fallback(self, sock, file, offset, count):$/;" m class:BaseEventLoop +_sock_sendfile_native Lib/asyncio/base_events.py /^ async def _sock_sendfile_native(self, sock, file, offset, count):$/;" m class:BaseEventLoop +_sock_sendfile_native Lib/asyncio/proactor_events.py /^ async def _sock_sendfile_native(self, sock, file, offset, count):$/;" m class:BaseProactorEventLoop +_sock_sendfile_native Lib/asyncio/unix_events.py /^ async def _sock_sendfile_native(self, sock, file, offset, count):$/;" m class:_UnixSelectorEventLoop +_sock_sendfile_native_impl Lib/asyncio/unix_events.py /^ def _sock_sendfile_native_impl(self, fut, registered_fd, sock, fileno,$/;" m class:_UnixSelectorEventLoop +_sock_sendfile_update_filepos Lib/asyncio/unix_events.py /^ def _sock_sendfile_update_filepos(self, fileno, offset, total_sent):$/;" m class:_UnixSelectorEventLoop +_sock_sendto Lib/asyncio/selector_events.py /^ def _sock_sendto(self, fut, sock, data, address):$/;" m class:BaseSelectorEventLoop +_sock_write_done Lib/asyncio/selector_events.py /^ def _sock_write_done(self, fd, fut, handle=None):$/;" m class:BaseSelectorEventLoop +_socket Lib/test/test_asyncio/test_base_events.py /^ def _socket(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors +_socket Lib/test/test_socket.py /^ _socket = None$/;" v +_socket_state Modules/socketmodule.c /^typedef struct _socket_state {$/;" s file: +_socketpair Lib/test/test_pty.py /^ def _socketpair(self):$/;" m class:SmallPtyTests +_sort_key Lib/tracemalloc.py /^ def _sort_key(self):$/;" m class:Statistic +_sort_key Lib/tracemalloc.py /^ def _sort_key(self):$/;" m class:StatisticDiff +_source Lib/test/test_memoryview.py /^ def _source(self):$/;" m class:AbstractMemoryTests +_source Lib/test/test_typing.py /^ def _source(self):$/;" m class:NamedTupleTests.test_annotation_usage_with_methods.XMethBad2 +_source_offset_converter Objects/codeobject.c /^_source_offset_converter(int *value) {$/;" f file: +_source_traceback Lib/asyncio/futures.py /^ _source_traceback = None$/;" v class:Future +_source_traceback Lib/asyncio/streams.py /^ _source_traceback = None$/;" v class:StreamReader +_source_traceback Lib/asyncio/streams.py /^ _source_traceback = None$/;" v class:StreamReaderProtocol +_sowt2lin Lib/aifc.py /^ def _sowt2lin(self, data):$/;" m class:Aifc_read +_space_re Lib/tkinter/__init__.py /^_space_re = re.compile(r'([\\s])', re.ASCII)$/;" v +_spacejoin Lib/http/cookies.py /^_spacejoin = ' '.join$/;" v +_spacing Lib/calendar.py /^_spacing = 6 # Number of spaces between columns$/;" v +_spam Lib/test/test_dynamicclassattribute.py /^ _spam = 1$/;" v class:PropertyDocBase +_spam Lib/test/test_property.py /^ _spam = 1$/;" v class:PropertyDocBase +_sparse_structs Lib/tarfile.py /^ _sparse_structs = None,$/;" v class:TarInfo +_spawn Tools/c-analyzer/c_parser/preprocessor/common.py /^ def _spawn(_argv):$/;" f +_spawn_process Lib/concurrent/futures/process.py /^ def _spawn_process(self):$/;" m class:ProcessPoolExecutor +_spawnvef Lib/os.py /^ def _spawnvef(mode, file, args, env, func):$/;" f function:_fscodec +_spec Lib/pdb.py /^ def _spec(self):$/;" m class:_ModuleTarget +_spec_cache Include/cpython/object.h /^ struct _specialization_cache _spec_cache; \/\/ For use by the specializer.$/;" m struct:_heaptypeobject typeref:struct:_heaptypeobject::_specialization_cache +_spec_from_module Lib/importlib/_bootstrap.py /^def _spec_from_module(module, loader=None, origin=None):$/;" f +_special Lib/typing.py /^_special = frozenset({'__module__', '__name__', '__annotations__'})$/;" v +_special_chars_map Lib/re/__init__.py /^_special_chars_map = {i: '\\\\' + chr(i) for i in b'()[]{}?*+-|^$\\\\.&~# \\t\\n\\r\\v\\f'}$/;" v +_special_labels Lib/mailbox.py /^ _special_labels = frozenset({'unseen', 'deleted', 'filed', 'answered',$/;" v class:Babyl +_specialization_cache Include/cpython/object.h /^struct _specialization_cache {$/;" s +_specialization_stats Include/pystats.h /^typedef struct _specialization_stats {$/;" s +_specializations Lib/opcode.py /^_specializations = {$/;" v +_specialized_instructions Lib/opcode.py /^_specialized_instructions = [$/;" v +_sphinx_version Lib/idlelib/editor.py /^def _sphinx_version():$/;" f +_split Lib/textwrap.py /^ def _split(self, text):$/;" m class:TextWrapper +_split_addr_prefix Lib/ipaddress.py /^ def _split_addr_prefix(cls, address):$/;" m class:_IPAddressBase +_split_chunks Lib/textwrap.py /^ def _split_chunks(self, text):$/;" m class:TextWrapper +_split_line Lib/difflib.py /^ def _split_line(self,data_list,line_num,text):$/;" m class:HtmlDiff +_split_lines Lib/argparse.py /^ def _split_lines(self, text, width):$/;" m class:HelpFormatter +_split_lines Lib/argparse.py /^ def _split_lines(self, text, width):$/;" m class:RawTextHelpFormatter +_split_list Lib/pydoc.py /^def _split_list(s, predicate):$/;" f +_split_optional_netmask Lib/ipaddress.py /^def _split_optional_netmask(address):$/;" f +_split_python_path Lib/test/test_subprocess.py /^ def _split_python_path(self):$/;" m class:ProcessTestCase +_split_scope_id Lib/ipaddress.py /^ def _split_scope_id(ip_str):$/;" m class:_BaseV6 +_splitattr Lib/urllib/parse.py /^def _splitattr(url):$/;" f +_splitdict Lib/tkinter/__init__.py /^def _splitdict(tk, v, cut_minus=True, conv=None):$/;" f +_splitext Lib/genericpath.py /^def _splitext(p, sep, altsep, extsep):$/;" f +_splitext Lib/unittest/loader.py /^def _splitext(path):$/;" f +_splithost Lib/urllib/parse.py /^def _splithost(url):$/;" f +_splitlines_no_ff Lib/ast.py /^def _splitlines_no_ff(source, maxlines=None):$/;" f +_splitnetloc Lib/urllib/parse.py /^def _splitnetloc(url, start=0):$/;" f +_splitnport Lib/urllib/parse.py /^def _splitnport(host, defport=-1):$/;" f +_splitparam Lib/email/message.py /^def _splitparam(param):$/;" f +_splitparams Lib/urllib/parse.py /^def _splitparams(url):$/;" f +_splitpasswd Lib/urllib/parse.py /^def _splitpasswd(user):$/;" f +_splitport Lib/urllib/parse.py /^def _splitport(host):$/;" f +_splitquery Lib/urllib/parse.py /^def _splitquery(url):$/;" f +_splittag Lib/urllib/parse.py /^def _splittag(url):$/;" f +_splittype Lib/urllib/parse.py /^def _splittype(url):$/;" f +_splituser Lib/urllib/parse.py /^def _splituser(host):$/;" f +_splitvalue Lib/urllib/parse.py /^def _splitvalue(attr):$/;" f +_sql Lib/test/test_sqlite3/test_dbapi.py /^ _sql = "create table test(id integer)"$/;" v class:OpenTests +_sqlite3module Modules/_sqlite/module.c /^struct PyModuleDef _sqlite3module = {$/;" v typeref:struct:PyModuleDef +_sqrt_nearest Lib/_pydecimal.py /^def _sqrt_nearest(n, a):$/;" f +_sr Lib/crypt.py /^_sr = _SystemRandom()$/;" v +_srcfile Lib/logging/__init__.py /^_srcfile = os.path.normcase(addLevelName.__code__.co_filename)$/;" v +_sre_SRE_Match___copy__ Modules/_sre/clinic/sre.c.h /^_sre_SRE_Match___copy__(MatchObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_sre_SRE_Match___copy___impl Modules/_sre/sre.c /^_sre_SRE_Match___copy___impl(MatchObject *self)$/;" f file: +_sre_SRE_Match___deepcopy__ Modules/_sre/sre.c /^_sre_SRE_Match___deepcopy__(MatchObject *self, PyObject *memo)$/;" f file: +_sre_SRE_Match_end Modules/_sre/clinic/sre.c.h /^_sre_SRE_Match_end(MatchObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_sre_SRE_Match_end_impl Modules/_sre/sre.c /^_sre_SRE_Match_end_impl(MatchObject *self, PyObject *group)$/;" f file: +_sre_SRE_Match_expand Modules/_sre/clinic/sre.c.h /^_sre_SRE_Match_expand(MatchObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Match_expand_impl Modules/_sre/sre.c /^_sre_SRE_Match_expand_impl(MatchObject *self, PyObject *template)$/;" f file: +_sre_SRE_Match_groupdict Modules/_sre/clinic/sre.c.h /^_sre_SRE_Match_groupdict(MatchObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Match_groupdict_impl Modules/_sre/sre.c /^_sre_SRE_Match_groupdict_impl(MatchObject *self, PyObject *default_value)$/;" f file: +_sre_SRE_Match_groups Modules/_sre/clinic/sre.c.h /^_sre_SRE_Match_groups(MatchObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Match_groups_impl Modules/_sre/sre.c /^_sre_SRE_Match_groups_impl(MatchObject *self, PyObject *default_value)$/;" f file: +_sre_SRE_Match_span Modules/_sre/clinic/sre.c.h /^_sre_SRE_Match_span(MatchObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_sre_SRE_Match_span_impl Modules/_sre/sre.c /^_sre_SRE_Match_span_impl(MatchObject *self, PyObject *group)$/;" f file: +_sre_SRE_Match_start Modules/_sre/clinic/sre.c.h /^_sre_SRE_Match_start(MatchObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_sre_SRE_Match_start_impl Modules/_sre/sre.c /^_sre_SRE_Match_start_impl(MatchObject *self, PyObject *group)$/;" f file: +_sre_SRE_Pattern___copy__ Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern___copy__(PatternObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_sre_SRE_Pattern___copy___impl Modules/_sre/sre.c /^_sre_SRE_Pattern___copy___impl(PatternObject *self)$/;" f file: +_sre_SRE_Pattern___deepcopy__ Modules/_sre/sre.c /^_sre_SRE_Pattern___deepcopy__(PatternObject *self, PyObject *memo)$/;" f file: +_sre_SRE_Pattern_findall Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_findall(PatternObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_findall_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_findall_impl(PatternObject *self, PyObject *string,$/;" f file: +_sre_SRE_Pattern_finditer Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_finditer(PatternObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_finditer_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_finditer_impl(PatternObject *self, PyTypeObject *cls,$/;" f file: +_sre_SRE_Pattern_fullmatch Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_fullmatch(PatternObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_fullmatch_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_fullmatch_impl(PatternObject *self, PyTypeObject *cls,$/;" f file: +_sre_SRE_Pattern_match Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_match(PatternObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_match_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_match_impl(PatternObject *self, PyTypeObject *cls,$/;" f file: +_sre_SRE_Pattern_scanner Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_scanner(PatternObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_scanner_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_scanner_impl(PatternObject *self, PyTypeObject *cls,$/;" f file: +_sre_SRE_Pattern_search Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_search(PatternObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_search_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_search_impl(PatternObject *self, PyTypeObject *cls,$/;" f file: +_sre_SRE_Pattern_split Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_split(PatternObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_split_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_split_impl(PatternObject *self, PyObject *string,$/;" f file: +_sre_SRE_Pattern_sub Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_sub(PatternObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_sub_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_sub_impl(PatternObject *self, PyTypeObject *cls,$/;" f file: +_sre_SRE_Pattern_subn Modules/_sre/clinic/sre.c.h /^_sre_SRE_Pattern_subn(PatternObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Pattern_subn_impl Modules/_sre/sre.c /^_sre_SRE_Pattern_subn_impl(PatternObject *self, PyTypeObject *cls,$/;" f file: +_sre_SRE_Scanner_match Modules/_sre/clinic/sre.c.h /^_sre_SRE_Scanner_match(ScannerObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Scanner_match_impl Modules/_sre/sre.c /^_sre_SRE_Scanner_match_impl(ScannerObject *self, PyTypeObject *cls)$/;" f file: +_sre_SRE_Scanner_search Modules/_sre/clinic/sre.c.h /^_sre_SRE_Scanner_search(ScannerObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_SRE_Scanner_search_impl Modules/_sre/sre.c /^_sre_SRE_Scanner_search_impl(ScannerObject *self, PyTypeObject *cls)$/;" f file: +_sre_ascii_iscased Modules/_sre/clinic/sre.c.h /^_sre_ascii_iscased(PyObject *module, PyObject *arg)$/;" f +_sre_ascii_iscased_impl Modules/_sre/sre.c /^_sre_ascii_iscased_impl(PyObject *module, int character)$/;" f file: +_sre_ascii_tolower Modules/_sre/clinic/sre.c.h /^_sre_ascii_tolower(PyObject *module, PyObject *arg)$/;" f +_sre_ascii_tolower_impl Modules/_sre/sre.c /^_sre_ascii_tolower_impl(PyObject *module, int character)$/;" f file: +_sre_compile Modules/_sre/clinic/sre.c.h /^_sre_compile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_sre_compile_impl Modules/_sre/sre.c /^_sre_compile_impl(PyObject *module, PyObject *pattern, int flags,$/;" f file: +_sre_getcodesize Modules/_sre/clinic/sre.c.h /^_sre_getcodesize(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_sre_getcodesize_impl Modules/_sre/sre.c /^_sre_getcodesize_impl(PyObject *module)$/;" f file: +_sre_template Modules/_sre/clinic/sre.c.h /^_sre_template(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_sre_template_impl Modules/_sre/sre.c /^_sre_template_impl(PyObject *module, PyObject *pattern, PyObject *template)$/;" f file: +_sre_unicode_iscased Modules/_sre/clinic/sre.c.h /^_sre_unicode_iscased(PyObject *module, PyObject *arg)$/;" f +_sre_unicode_iscased_impl Modules/_sre/sre.c /^_sre_unicode_iscased_impl(PyObject *module, int character)$/;" f file: +_sre_unicode_tolower Modules/_sre/clinic/sre.c.h /^_sre_unicode_tolower(PyObject *module, PyObject *arg)$/;" f +_sre_unicode_tolower_impl Modules/_sre/sre.c /^_sre_unicode_tolower_impl(PyObject *module, int character)$/;" f file: +_sremodulestate Modules/_sre/sre.c /^} _sremodulestate;$/;" t typeref:struct:__anon462 file: +_ss Lib/statistics.py /^def _ss(data, c=None):$/;" f +_ssettriple Modules/_decimal/libmpdec/mpdecimal.c /^_ssettriple(mpd_t *result, uint8_t sign, mpd_uint_t a, mpd_ssize_t exp)$/;" f file: +_ssize Modules/ossaudiodev.c /^_ssize(oss_audio_t *self, int *nchannels, int *ssize)$/;" f file: +_ssl_Certificate_get_info Modules/_ssl/clinic/cert.c.h /^_ssl_Certificate_get_info(PySSLCertificate *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl_Certificate_get_info_impl Modules/_ssl/cert.c /^_ssl_Certificate_get_info_impl(PySSLCertificate *self)$/;" f file: +_ssl_Certificate_public_bytes Modules/_ssl/clinic/cert.c.h /^_ssl_Certificate_public_bytes(PySSLCertificate *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl_Certificate_public_bytes_impl Modules/_ssl/cert.c /^_ssl_Certificate_public_bytes_impl(PySSLCertificate *self, int format)$/;" f file: +_ssl_MemoryBIO Modules/clinic/_ssl.c.h /^_ssl_MemoryBIO(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +_ssl_MemoryBIO_impl Modules/_ssl.c /^_ssl_MemoryBIO_impl(PyTypeObject *type)$/;" f file: +_ssl_MemoryBIO_read Modules/clinic/_ssl.c.h /^_ssl_MemoryBIO_read(PySSLMemoryBIO *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_ssl_MemoryBIO_read_impl Modules/_ssl.c /^_ssl_MemoryBIO_read_impl(PySSLMemoryBIO *self, int len)$/;" f file: +_ssl_MemoryBIO_write Modules/clinic/_ssl.c.h /^_ssl_MemoryBIO_write(PySSLMemoryBIO *self, PyObject *arg)$/;" f +_ssl_MemoryBIO_write_eof Modules/clinic/_ssl.c.h /^_ssl_MemoryBIO_write_eof(PySSLMemoryBIO *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl_MemoryBIO_write_eof_impl Modules/_ssl.c /^_ssl_MemoryBIO_write_eof_impl(PySSLMemoryBIO *self)$/;" f file: +_ssl_MemoryBIO_write_impl Modules/_ssl.c /^_ssl_MemoryBIO_write_impl(PySSLMemoryBIO *self, Py_buffer *b)$/;" f file: +_ssl_RAND_add Modules/clinic/_ssl.c.h /^_ssl_RAND_add(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_ssl_RAND_add_impl Modules/_ssl.c /^_ssl_RAND_add_impl(PyObject *module, Py_buffer *view, double entropy)$/;" f file: +_ssl_RAND_bytes Modules/clinic/_ssl.c.h /^_ssl_RAND_bytes(PyObject *module, PyObject *arg)$/;" f +_ssl_RAND_bytes_impl Modules/_ssl.c /^_ssl_RAND_bytes_impl(PyObject *module, int n)$/;" f file: +_ssl_RAND_status Modules/clinic/_ssl.c.h /^_ssl_RAND_status(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_ssl_RAND_status_impl Modules/_ssl.c /^_ssl_RAND_status_impl(PyObject *module)$/;" f file: +_ssl__SSLContext Modules/clinic/_ssl.c.h /^_ssl__SSLContext(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +_ssl__SSLContext__set_alpn_protocols Modules/clinic/_ssl.c.h /^_ssl__SSLContext__set_alpn_protocols(PySSLContext *self, PyObject *arg)$/;" f +_ssl__SSLContext__set_alpn_protocols_impl Modules/_ssl.c /^_ssl__SSLContext__set_alpn_protocols_impl(PySSLContext *self,$/;" f file: +_ssl__SSLContext__wrap_bio Modules/clinic/_ssl.c.h /^_ssl__SSLContext__wrap_bio(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl__SSLContext__wrap_bio_impl Modules/_ssl.c /^_ssl__SSLContext__wrap_bio_impl(PySSLContext *self, PySSLMemoryBIO *incoming,$/;" f file: +_ssl__SSLContext__wrap_socket Modules/clinic/_ssl.c.h /^_ssl__SSLContext__wrap_socket(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl__SSLContext__wrap_socket_impl Modules/_ssl.c /^_ssl__SSLContext__wrap_socket_impl(PySSLContext *self, PyObject *sock,$/;" f file: +_ssl__SSLContext_cert_store_stats Modules/clinic/_ssl.c.h /^_ssl__SSLContext_cert_store_stats(PySSLContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLContext_cert_store_stats_impl Modules/_ssl.c /^_ssl__SSLContext_cert_store_stats_impl(PySSLContext *self)$/;" f file: +_ssl__SSLContext_get_ca_certs Modules/clinic/_ssl.c.h /^_ssl__SSLContext_get_ca_certs(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl__SSLContext_get_ca_certs_impl Modules/_ssl.c /^_ssl__SSLContext_get_ca_certs_impl(PySSLContext *self, int binary_form)$/;" f file: +_ssl__SSLContext_get_ciphers Modules/clinic/_ssl.c.h /^_ssl__SSLContext_get_ciphers(PySSLContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLContext_get_ciphers_impl Modules/_ssl.c /^_ssl__SSLContext_get_ciphers_impl(PySSLContext *self)$/;" f file: +_ssl__SSLContext_impl Modules/_ssl.c /^_ssl__SSLContext_impl(PyTypeObject *type, int proto_version)$/;" f file: +_ssl__SSLContext_load_cert_chain Modules/clinic/_ssl.c.h /^_ssl__SSLContext_load_cert_chain(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl__SSLContext_load_cert_chain_impl Modules/_ssl.c /^_ssl__SSLContext_load_cert_chain_impl(PySSLContext *self, PyObject *certfile,$/;" f file: +_ssl__SSLContext_load_dh_params Modules/_ssl.c /^_ssl__SSLContext_load_dh_params(PySSLContext *self, PyObject *filepath)$/;" f file: +_ssl__SSLContext_load_verify_locations Modules/clinic/_ssl.c.h /^_ssl__SSLContext_load_verify_locations(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl__SSLContext_load_verify_locations_impl Modules/_ssl.c /^_ssl__SSLContext_load_verify_locations_impl(PySSLContext *self,$/;" f file: +_ssl__SSLContext_session_stats Modules/clinic/_ssl.c.h /^_ssl__SSLContext_session_stats(PySSLContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLContext_session_stats_impl Modules/_ssl.c /^_ssl__SSLContext_session_stats_impl(PySSLContext *self)$/;" f file: +_ssl__SSLContext_set_ciphers Modules/clinic/_ssl.c.h /^_ssl__SSLContext_set_ciphers(PySSLContext *self, PyObject *arg)$/;" f +_ssl__SSLContext_set_ciphers_impl Modules/_ssl.c /^_ssl__SSLContext_set_ciphers_impl(PySSLContext *self, const char *cipherlist)$/;" f file: +_ssl__SSLContext_set_default_verify_paths Modules/clinic/_ssl.c.h /^_ssl__SSLContext_set_default_verify_paths(PySSLContext *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLContext_set_default_verify_paths_impl Modules/_ssl.c /^_ssl__SSLContext_set_default_verify_paths_impl(PySSLContext *self)$/;" f file: +_ssl__SSLContext_set_ecdh_curve Modules/_ssl.c /^_ssl__SSLContext_set_ecdh_curve(PySSLContext *self, PyObject *name)$/;" f file: +_ssl__SSLSocket_cipher Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_cipher(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_cipher_impl Modules/_ssl.c /^_ssl__SSLSocket_cipher_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_compression Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_compression(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_compression_impl Modules/_ssl.c /^_ssl__SSLSocket_compression_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_do_handshake Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_do_handshake(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_do_handshake_impl Modules/_ssl.c /^_ssl__SSLSocket_do_handshake_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_get_channel_binding Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_get_channel_binding(PySSLSocket *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl__SSLSocket_get_channel_binding_impl Modules/_ssl.c /^_ssl__SSLSocket_get_channel_binding_impl(PySSLSocket *self,$/;" f file: +_ssl__SSLSocket_get_unverified_chain Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_get_unverified_chain(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_get_unverified_chain_impl Modules/_ssl.c /^_ssl__SSLSocket_get_unverified_chain_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_get_verified_chain Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_get_verified_chain(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_get_verified_chain_impl Modules/_ssl.c /^_ssl__SSLSocket_get_verified_chain_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_getpeercert Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_getpeercert(PySSLSocket *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_ssl__SSLSocket_getpeercert_impl Modules/_ssl.c /^_ssl__SSLSocket_getpeercert_impl(PySSLSocket *self, int binary_mode)$/;" f file: +_ssl__SSLSocket_pending Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_pending(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_pending_impl Modules/_ssl.c /^_ssl__SSLSocket_pending_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_read Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_read(PySSLSocket *self, PyObject *args)$/;" f +_ssl__SSLSocket_read_impl Modules/_ssl.c /^_ssl__SSLSocket_read_impl(PySSLSocket *self, Py_ssize_t len,$/;" f file: +_ssl__SSLSocket_selected_alpn_protocol Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_selected_alpn_protocol(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_selected_alpn_protocol_impl Modules/_ssl.c /^_ssl__SSLSocket_selected_alpn_protocol_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_shared_ciphers Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_shared_ciphers(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_shared_ciphers_impl Modules/_ssl.c /^_ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_shutdown Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_shutdown(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_shutdown_impl Modules/_ssl.c /^_ssl__SSLSocket_shutdown_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_verify_client_post_handshake Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_verify_client_post_handshake(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_verify_client_post_handshake_impl Modules/_ssl.c /^_ssl__SSLSocket_verify_client_post_handshake_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_version Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_version(PySSLSocket *self, PyObject *Py_UNUSED(ignored))$/;" f +_ssl__SSLSocket_version_impl Modules/_ssl.c /^_ssl__SSLSocket_version_impl(PySSLSocket *self)$/;" f file: +_ssl__SSLSocket_write Modules/clinic/_ssl.c.h /^_ssl__SSLSocket_write(PySSLSocket *self, PyObject *arg)$/;" f +_ssl__SSLSocket_write_impl Modules/_ssl.c /^_ssl__SSLSocket_write_impl(PySSLSocket *self, Py_buffer *b)$/;" f file: +_ssl__test_decode_cert Modules/clinic/_ssl.c.h /^_ssl__test_decode_cert(PyObject *module, PyObject *arg)$/;" f +_ssl__test_decode_cert_impl Modules/_ssl.c /^_ssl__test_decode_cert_impl(PyObject *module, PyObject *path)$/;" f file: +_ssl_accepting Lib/test/test_ftplib.py /^ _ssl_accepting = False$/;" v class:.SSLConnection +_ssl_closing Lib/test/test_ftplib.py /^ _ssl_closing = False$/;" v class:.SSLConnection +_ssl_configure_hostname Modules/_ssl.c /^_ssl_configure_hostname(PySSLSocket *self, const char* server_hostname)$/;" f file: +_ssl_deprecated Modules/_ssl.c /^_ssl_deprecated(const char* msg, int stacklevel) {$/;" f file: +_ssl_enum_certificates Modules/clinic/_ssl.c.h /^_ssl_enum_certificates(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl_enum_certificates_impl Modules/_ssl.c /^_ssl_enum_certificates_impl(PyObject *module, const char *store_name)$/;" f file: +_ssl_enum_crls Modules/clinic/_ssl.c.h /^_ssl_enum_crls(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl_enum_crls_impl Modules/_ssl.c /^_ssl_enum_crls_impl(PyObject *module, const char *store_name)$/;" f file: +_ssl_get_default_verify_paths Modules/clinic/_ssl.c.h /^_ssl_get_default_verify_paths(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_ssl_get_default_verify_paths_impl Modules/_ssl.c /^_ssl_get_default_verify_paths_impl(PyObject *module)$/;" f file: +_ssl_nid2obj Modules/clinic/_ssl.c.h /^_ssl_nid2obj(PyObject *module, PyObject *arg)$/;" f +_ssl_nid2obj_impl Modules/_ssl.c /^_ssl_nid2obj_impl(PyObject *module, int nid)$/;" f file: +_ssl_session_dup Modules/_ssl.c /^_ssl_session_dup(SSL_SESSION *session) {$/;" f file: +_ssl_txt2obj Modules/clinic/_ssl.c.h /^_ssl_txt2obj(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_ssl_txt2obj_impl Modules/_ssl.c /^_ssl_txt2obj_impl(PyObject *module, const char *txt, int name)$/;" f file: +_sslcopydoc Lib/ssl.py /^def _sslcopydoc(func):$/;" f +_sslmodule_def Modules/_ssl.c /^static struct PyModuleDef _sslmodule_def = {$/;" v typeref:struct:PyModuleDef file: +_sslmodule_def Modules/_ssl.h /^static struct PyModuleDef _sslmodule_def;$/;" v typeref:struct:PyModuleDef +_sslmodulestate Modules/_ssl.h /^} _sslmodulestate;$/;" t typeref:struct:__anon485 +_st_alaw2linear16 Modules/audioop.c /^static const int16_t _st_alaw2linear16[256] = {$/;" v file: +_st_ulaw2linear16 Modules/audioop.c /^static const int16_t _st_ulaw2linear16[256] = {$/;" v file: +_stack_chunk Include/cpython/pystate.h /^typedef struct _stack_chunk {$/;" s +_stack_viewer Lib/idlelib/stackviewer.py /^def _stack_viewer(parent): # htest #$/;" f +_stack_viewer_spec Lib/idlelib/idle_test/htest.py /^_stack_viewer_spec = {$/;" v +_stage0 Lib/idlelib/rpc.py /^ def _stage0(self):$/;" m class:SocketIO +_stage1 Lib/idlelib/rpc.py /^ def _stage1(self):$/;" m class:SocketIO +_start Lib/asyncio/base_subprocess.py /^ def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):$/;" m class:BaseSubprocessTransport +_start Lib/asyncio/unix_events.py /^ def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):$/;" m class:_UnixSubprocessTransport +_start Lib/asyncio/windows_events.py /^ def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):$/;" m class:_WindowsSubprocessTransport +_start Lib/multiprocessing/resource_sharer.py /^ def _start(self):$/;" m class:_ResourceSharer +_start Lib/test/test_asyncio/test_subprocess.py /^ def _start(self, *args, **kwargs):$/;" m class:TestSubprocessTransport +_start Lib/xml/etree/ElementTree.py /^ def _start(self, tag, attr_list):$/;" m class:XMLParser +_start Lib/xml/etree/ElementTree.py /^ def _start(self, tag, attrs, new_namespaces, qname_text=None):$/;" m class:C14NWriterTarget +_startTime Lib/logging/__init__.py /^_startTime = time.time()$/;" v +_start_executor_manager_thread Lib/concurrent/futures/process.py /^ def _start_executor_manager_thread(self):$/;" m class:ProcessPoolExecutor +_start_handshake Lib/asyncio/sslproto.py /^ def _start_handshake(self):$/;" m class:SSLProtocol +_start_method Lib/multiprocessing/context.py /^ _start_method = 'fork'$/;" v class:.ForkProcess +_start_method Lib/multiprocessing/context.py /^ _start_method = 'forkserver'$/;" v class:.ForkServerProcess +_start_method Lib/multiprocessing/context.py /^ _start_method = 'spawn'$/;" v class:.SpawnProcess +_start_method Lib/multiprocessing/context.py /^ _start_method = None$/;" v class:Process +_start_new_thread Lib/threading.py /^_start_new_thread = _thread.start_new_thread$/;" v +_start_ns Lib/xml/etree/ElementTree.py /^ def _start_ns(self, prefix, uri):$/;" m class:XMLParser +_start_server Lib/pydoc.py /^def _start_server(urlhandler, hostname, port):$/;" f +_start_serving Lib/asyncio/base_events.py /^ def _start_serving(self):$/;" m class:Server +_start_serving Lib/asyncio/proactor_events.py /^ def _start_serving(self, protocol_factory, sock,$/;" m class:BaseProactorEventLoop +_start_serving Lib/asyncio/selector_events.py /^ def _start_serving(self, protocol_factory, sock,$/;" m class:BaseSelectorEventLoop +_start_shutdown Lib/asyncio/sslproto.py /^ def _start_shutdown(self):$/;" m class:SSLProtocol +_start_thread Lib/multiprocessing/queues.py /^ def _start_thread(self):$/;" m class:Queue +_start_tls_compatible Lib/asyncio/proactor_events.py /^ _start_tls_compatible = True$/;" v class:_ProactorBaseWritePipeTransport +_start_tls_compatible Lib/asyncio/selector_events.py /^ _start_tls_compatible = True$/;" v class:_SelectorSocketTransport +_start_tls_compatible Lib/asyncio/sslproto.py /^ _start_tls_compatible = True$/;" v class:_SSLProtocolTransport +_startedExecution Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _startedExecution;$/;" m class:PythonBootstrapperApplication file: +_startsWith PC/launcher2.c /^_startsWith(const wchar_t *x, int xLen, const wchar_t *y, int yLen)$/;" f +_startsWithArgument PC/launcher2.c /^_startsWithArgument(const wchar_t *x, int xLen, const wchar_t *y, int yLen)$/;" f +_startsWithSeparated PC/launcher2.c /^_startsWithSeparated(const wchar_t *x, int xLen, const wchar_t *y, int yLen, const wchar_t *separators)$/;" f +_stat Lib/shutil.py /^def _stat(fn):$/;" f +_statcmd Lib/nntplib.py /^ def _statcmd(self, line):$/;" m class:NNTP +_state Lib/asyncio/futures.py /^ _state = _PENDING$/;" v class:Future +_state Lib/fileinput.py /^_state = None$/;" v +_state Lib/multiprocessing/synchronize.py /^ def _state(self):$/;" m class:Barrier +_state Lib/multiprocessing/synchronize.py /^ def _state(self, value):$/;" m class:Barrier +_state Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ PYBA_STATE _state;$/;" m class:PythonBootstrapperApplication file: +_state_codes Lib/idlelib/multicall.py /^_state_codes = []$/;" v +_state_names Lib/idlelib/multicall.py /^_state_names = [''.join(m[0]+'-'$/;" v +_state_subsets Lib/idlelib/multicall.py /^_state_subsets = expand_substates(_states)$/;" v +_states Lib/idlelib/multicall.py /^_states = range(1 << len(_modifiers))$/;" v +_static_getmro Lib/inspect.py /^_static_getmro = type.__dict__['__mro__'].__get__$/;" v +_statistics__normal_dist_inv_cdf Modules/clinic/_statisticsmodule.c.h /^_statistics__normal_dist_inv_cdf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_statistics__normal_dist_inv_cdf_impl Modules/_statisticsmodule.c /^_statistics__normal_dist_inv_cdf_impl(PyObject *module, double p, double mu,$/;" f file: +_statisticsmodule_slots Modules/_statisticsmodule.c /^static struct PyModuleDef_Slot _statisticsmodule_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +_statparse Lib/nntplib.py /^ def _statparse(self, resp):$/;" m class:NNTP +_stats Include/pystats.h /^typedef struct _stats {$/;" s +_statstream Lib/logging/handlers.py /^ def _statstream(self):$/;" m class:WatchedFileHandler +_status Include/cpython/pystate.h /^ } _status;$/;" m struct:_ts typeref:struct:_ts::__anon219 +_stdauthor Doc/conf.py /^_stdauthor = 'Guido van Rossum and the Python development team'$/;" v +_stdin_write Lib/subprocess.py /^ def _stdin_write(self, input):$/;" m class:Popen +_stdlib_enums Lib/enum.py /^_stdlib_enums = IntEnum, StrEnum, IntFlag$/;" v +_steal_accumulate Modules/_json.c /^_steal_accumulate(_PyUnicodeWriter *writer, PyObject *stolen)$/;" f file: +_steal_trailing_WSP_if_exists Lib/email/_header_value_parser.py /^def _steal_trailing_WSP_if_exists(lines):$/;" f +_stmt Include/internal/pycore_ast.h /^struct _stmt {$/;" s +_stmt_kind Include/internal/pycore_ast.h /^enum _stmt_kind {FunctionDef_kind=1, AsyncFunctionDef_kind=2, ClassDef_kind=3,$/;" g +_stop Lib/multiprocessing/forkserver.py /^ def _stop(self):$/;" m class:ForkServer +_stop Lib/multiprocessing/resource_tracker.py /^ def _stop(self):$/;" m class:ResourceTracker +_stop Lib/threading.py /^ def _stop(self):$/;" m class:Thread +_stop Lib/threading.py /^ def _stop(self):$/;" m class:_DummyThread +_stop_accept_futures Lib/asyncio/proactor_events.py /^ def _stop_accept_futures(self):$/;" m class:BaseProactorEventLoop +_stop_readline_flag Lib/idlelib/pyshell.py /^ _stop_readline_flag = False$/;" v class:PyShell +_stop_serving Lib/asyncio/proactor_events.py /^ def _stop_serving(self, sock):$/;" m class:BaseProactorEventLoop +_stop_serving Lib/asyncio/selector_events.py /^ def _stop_serving(self, sock):$/;" m class:BaseSelectorEventLoop +_stop_serving Lib/asyncio/windows_events.py /^ def _stop_serving(self, obj):$/;" m class:IocpProactor +_stop_unlocked Lib/multiprocessing/forkserver.py /^ def _stop_unlocked(self):$/;" m class:ForkServer +_str Lib/email/header.py /^ def _str(self, linesep):$/;" m class:_ValueFormatter +_str Lib/test/test_dict.py /^ class _str(str):$/;" c function:DictTest.test_instance_dict_getattr_str_subclass +_str Lib/test/test_tkinter/widget_tests.py /^ def _str(self, value):$/;" m class:AbstractWidgetTest +_str2time Lib/http/cookiejar.py /^def _str2time(day, mon, yr, hr, min, sec, tz):$/;" f +_str_formatter Lib/logging/__init__.py /^_str_formatter = StrFormatter()$/;" v +_str_literal_helper Lib/ast.py /^ def _str_literal_helper($/;" m class:_Unparser +_str_msg Lib/test/test_email/__init__.py /^ def _str_msg(self, string, message=None, policy=None):$/;" m class:TestEmailBase +_str_normcase Lib/pathlib.py /^ def _str_normcase(self):$/;" m class:PurePath +_str_replace_inf Python/ast_unparse.c 19;" d file: +_str_shared Python/pystate.c /^_str_shared(PyThreadState *tstate, PyObject *obj,$/;" f file: +_str_to_int_inner Lib/_pylong.py /^def _str_to_int_inner(s):$/;" f +_strcoll Lib/locale.py /^def _strcoll(a,b):$/;" f +_stream Lib/contextlib.py /^ _stream = "stderr"$/;" v class:redirect_stderr +_stream Lib/contextlib.py /^ _stream = "stdout"$/;" v class:redirect_stdout +_stream Lib/contextlib.py /^ _stream = None$/;" v class:_RedirectStream +_stream_reader Lib/asyncio/streams.py /^ def _stream_reader(self):$/;" m class:StreamReaderProtocol +_strerror Lib/test/support/asyncore.py /^def _strerror(err):$/;" f +_strftime Lib/xmlrpc/client.py /^def _strftime(value):$/;" f +_string_at Lib/ctypes/__init__.py /^_string_at = PYFUNCTYPE(py_object, c_void_p, c_int)(_string_at_addr)$/;" v +_string_from_ip_int Lib/ipaddress.py /^ def _string_from_ip_int(cls, ip_int):$/;" m class:_BaseV4 +_string_from_ip_int Lib/ipaddress.py /^ def _string_from_ip_int(cls, ip_int=None):$/;" m class:_BaseV6 +_string_methods Objects/unicodeobject.c /^static PyMethodDef _string_methods[] = {$/;" v file: +_string_module Objects/unicodeobject.c /^static struct PyModuleDef _string_module = {$/;" v typeref:struct:PyModuleDef file: +_string_to_bytes Lib/mailbox.py /^ def _string_to_bytes(self, message):$/;" m class:Mailbox +_stringify Lib/test/test_tkinter/test_widgets.py /^ _stringify = True$/;" v class:CanvasTest +_stringify Lib/test/test_tkinter/test_widgets.py /^ _stringify = True$/;" v class:ScrollbarTest +_stringify Lib/test/test_tkinter/widget_tests.py /^ _stringify = False$/;" v class:AbstractWidgetTest +_stringify Lib/tkinter/__init__.py /^def _stringify(value):$/;" f +_stringify_instruction Lib/test/test_dis.py /^def _stringify_instruction(instr):$/;" f +_stringio_readline Modules/_io/stringio.c /^_stringio_readline(stringio *self, Py_ssize_t limit)$/;" f file: +_strip_annotations Lib/typing.py /^def _strip_annotations(t):$/;" f +_strip_command_keyword Lib/test/smtpd.py /^ def _strip_command_keyword(self, keyword, arg):$/;" m class:SMTPChannel +_strip_directives Tools/c-analyzer/c_parser/preprocessor/gcc.py /^def _strip_directives(line, partial=0):$/;" f +_strip_exception_details Lib/doctest.py /^def _strip_exception_details(msg):$/;" f +_strip_extra Lib/zipfile/__init__.py /^def _strip_extra(extra, xids):$/;" f +_strip_non_python_syntax Lib/test/test_inspect.py /^ def _strip_non_python_syntax(self, input,$/;" m class:TestSignaturePrivateHelpers +_strip_padding Lib/locale.py /^def _strip_padding(s, amount):$/;" f +_strip_spaces Lib/logging/config.py /^def _strip_spaces(alist):$/;" f +_strong_cache Lib/zoneinfo/_zoneinfo.py /^ _strong_cache = collections.OrderedDict()$/;" v class:ZoneInfo +_strong_cache_size Lib/zoneinfo/_zoneinfo.py /^ _strong_cache_size = 8$/;" v class:ZoneInfo +_strprefixes Lib/lib2to3/pgen2/tokenize.py /^_strprefixes = ($/;" v +_strprefixes Lib/pydoc.py /^ _strprefixes = [p + q for p in ('b', 'f', 'r', 'u') for q in ("'", '"')]$/;" v class:Helper +_strptime Lib/_strptime.py /^def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"):$/;" f +_strptime_datetime Lib/_strptime.py /^def _strptime_datetime(cls, data_string, format="%a %b %d %H:%M:%S %Y"):$/;" f +_strptime_time Lib/_strptime.py /^def _strptime_time(data_string, format="%a %b %d %H:%M:%S %Y"):$/;" f +_structmodule Modules/_struct.c /^static struct PyModuleDef _structmodule = {$/;" v typeref:struct:PyModuleDef file: +_structmodule Modules/_struct.c /^static struct PyModuleDef _structmodule;$/;" v typeref:struct:PyModuleDef file: +_structmodule_clear Modules/_struct.c /^_structmodule_clear(PyObject *module)$/;" f file: +_structmodule_exec Modules/_struct.c /^_structmodule_exec(PyObject *m)$/;" f file: +_structmodule_free Modules/_struct.c /^_structmodule_free(void *module)$/;" f file: +_structmodule_slots Modules/_struct.c /^static PyModuleDef_Slot _structmodule_slots[] = {$/;" v file: +_structmodule_traverse Modules/_struct.c /^_structmodule_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +_structmodulestate Modules/_struct.c /^} _structmodulestate;$/;" t typeref:struct:__anon369 file: +_structure Lib/email/iterators.py /^def _structure(msg, fp=None, level=0, include_default=False):$/;" f +_strxfrm Lib/locale.py /^def _strxfrm(s):$/;" f +_study1 Lib/idlelib/pyparse.py /^ def _study1(self):$/;" m class:Parser +_study2 Lib/idlelib/pyparse.py /^ def _study2(self):$/;" m class:Parser +_styles Lib/difflib.py /^ _styles = _styles$/;" v class:HtmlDiff +_sub Lib/fractions.py /^ def _sub(a, b):$/;" m class:Fraction +_subDescription Lib/unittest/case.py /^ def _subDescription(self):$/;" m class:_SubTest +_subclass Lib/test/test_weakref.py /^ def _subclass(self):$/;" m class:WeakMethodTestCase +_subelem_tags Lib/test/test_xml_etree.py /^ def _subelem_tags(self, elem):$/;" m class:ElementSlicingTest +_submatch Lib/lib2to3/pytree.py /^ def _submatch(self, node, results=None):$/;" m class:LeafPattern +_submatch Lib/lib2to3/pytree.py /^ def _submatch(self, node, results=None):$/;" m class:NodePattern +_subprocess_call Tools/ssl/multissltests.py /^ def _subprocess_call(self, cmd, env=None, **kwargs):$/;" m class:AbstractBuilder +_subprocess_output Tools/ssl/multissltests.py /^ def _subprocess_output(self, cmd, env=None, **kwargs):$/;" m class:AbstractBuilder +_subst_format Lib/tkinter/__init__.py /^ _subst_format = ('%#', '%b', '%f', '%h', '%k',$/;" v class:Misc +_subst_format_str Lib/tkinter/__init__.py /^ _subst_format_str = " ".join(_subst_format)$/;" v class:Misc +_subst_vars Lib/sysconfig.py /^def _subst_vars(s, local_vars):$/;" f +_substitute Lib/tkinter/__init__.py /^ def _substitute(self, *args):$/;" m class:Misc +_substitution_cost Lib/traceback.py /^def _substitution_cost(ch_a, ch_b):$/;" f +_substitution_cost Tools/build/generate_levenshtein_examples.py /^def _substitution_cost(ch_a, ch_b):$/;" f +_subtest_msg_sentinel Lib/unittest/case.py /^_subtest_msg_sentinel = object()$/;" v +_subwidget_name Lib/tkinter/tix.py /^ def _subwidget_name(self,name):$/;" m class:TixWidget +_subwidget_names Lib/tkinter/tix.py /^ def _subwidget_names(self):$/;" m class:TixWidget +_suite Lib/test/test_unittest/test_setups.py /^ _suite = unittest.defaultTestLoader.loadTestsFromTestCase(Test)$/;" v class:TestSetups.test_suite_debug_propagates_exceptions.Test +_sum Lib/statistics.py /^def _sum(data):$/;" f +_sum2 Modules/audioop.c /^static double _sum2(const int16_t *a, const int16_t *b, Py_ssize_t len)$/;" f file: +_sunau_params Lib/sunau.py /^_sunau_params = namedtuple('_sunau_params',$/;" v +_super_attr Lib/test/test_monitoring.py /^ def _super_attr(self, optimized=False):$/;" m class:TestLoadSuperAttr +_super_lookup_descr Objects/typeobject.c /^_super_lookup_descr(PyTypeObject *su_type, PyTypeObject *su_obj_type, PyObject *name)$/;" f file: +_super_method_call Lib/test/test_monitoring.py /^ def _super_method_call(self, optimized=False):$/;" m class:TestLoadSuperAttr +_super_method_call_error Lib/test/test_monitoring.py /^ def _super_method_call_error(self, optimized=False):$/;" m class:TestLoadSuperAttr +_superset_test Lib/test/test_collections.py /^ def _superset_test(self, a, b):$/;" m class:TestUserObjects +_support_default_root Lib/tkinter/__init__.py /^_support_default_root = True$/;" v +_supports_arm64_builds Lib/_osx_support.py /^def _supports_arm64_builds():$/;" f +_supports_sched Lib/test/test_posix.py /^def _supports_sched():$/;" f +_supports_universal_builds Lib/_osx_support.py /^def _supports_universal_builds():$/;" f +_suppressDowngradeFailure Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _suppressDowngradeFailure;$/;" m class:PythonBootstrapperApplication file: +_suppressPaint Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _suppressPaint;$/;" m class:PythonBootstrapperApplication file: +_suppressRepair Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _suppressRepair;$/;" m class:PythonBootstrapperApplication file: +_suppress_exc Lib/test/test_contextlib.py /^ def _suppress_exc(*exc_details):$/;" f function:TestBaseExitStack.test_push +_suppress_exc Lib/test/test_contextlib_async.py /^ async def _suppress_exc(*exc_details):$/;" f function:TestAsyncExitStack.test_async_push +_swap Modules/_zoneinfo.c 2160;" d file: +_swap_current_task Lib/asyncio/tasks.py /^def _swap_current_task(loop, task):$/;" f +_swap_thread_states Python/pystate.c /^_swap_thread_states(_PyRuntimeState *runtime,$/;" f file: +_swapped_meta Lib/ctypes/_endian.py /^class _swapped_meta:$/;" c +_swapped_struct_meta Lib/ctypes/_endian.py /^class _swapped_struct_meta(_swapped_meta, type(Structure)): pass$/;" c +_swapped_union_meta Lib/ctypes/_endian.py /^class _swapped_union_meta(_swapped_meta, type(Union)): pass$/;" c +_swappedbytes_ Lib/ctypes/_endian.py /^ _swappedbytes_ = None$/;" v class:_swapped_union_meta.BigEndianStructure +_swappedbytes_ Lib/ctypes/_endian.py /^ _swappedbytes_ = None$/;" v class:_swapped_union_meta.BigEndianUnion +_swappedbytes_ Lib/ctypes/_endian.py /^ _swappedbytes_ = None$/;" v class:_swapped_union_meta.LittleEndianStructure +_swappedbytes_ Lib/ctypes/_endian.py /^ _swappedbytes_ = None$/;" v class:_swapped_union_meta.LittleEndianUnion +_symbols_inverse Lib/pydoc.py /^ _symbols_inverse = {$/;" v class:Helper +_symtable_entry Include/internal/pycore_symtable.h /^typedef struct _symtable_entry {$/;" s +_symtable_symtable Modules/clinic/symtablemodule.c.h /^_symtable_symtable(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_symtable_symtable_impl Modules/symtablemodule.c /^_symtable_symtable_impl(PyObject *module, PyObject *source,$/;" f file: +_sync_async_magics Lib/unittest/mock.py /^_sync_async_magics = {"__aiter__"}$/;" v +_sync_close Lib/mailbox.py /^def _sync_close(f):$/;" f +_sync_flush Lib/mailbox.py /^def _sync_flush(f):$/;" f +_syntaxerror_range Parser/tokenizer.c /^_syntaxerror_range(struct tok_state *tok, const char *format,$/;" f file: +_synthesize Lib/webbrowser.py /^def _synthesize(browser, *, preferred=False):$/;" f +_sys_getwindowsversion_from_kernel32 Python/sysmodule.c /^_sys_getwindowsversion_from_kernel32(void)$/;" f file: +_sys_home Lib/sysconfig.py /^_sys_home = getattr(sys, '_home', None)$/;" v +_sys_version Lib/platform.py /^def _sys_version(sys_version=None):$/;" f +_sys_version_cache Lib/platform.py /^_sys_version_cache = {}$/;" v +_syscmd_file Lib/platform.py /^def _syscmd_file(target, default=''):$/;" f +_syscmd_ver Lib/platform.py /^def _syscmd_ver(system='', release='', version='',$/;" f +_sysctl_cache Lib/test/support/socket_helper.py /^_sysctl_cache = {}$/;" v +_sysrand Lib/secrets.py /^_sysrand = SystemRandom()$/;" v +_system_limited Lib/concurrent/futures/process.py /^_system_limited = None$/;" v +_system_limits_checked Lib/concurrent/futures/process.py /^_system_limits_checked = False$/;" v +_t Modules/_hacl/Hacl_Hash_MD5.c /^_t[64U] =$/;" v file: +_tab_newline_replace Lib/difflib.py /^ def _tab_newline_replace(self,fromlines,tolines):$/;" m class:HtmlDiff +_table_template Lib/difflib.py /^ _table_template = _table_template$/;" v class:HtmlDiff +_tagITEM Modules/_ctypes/malloc_closure.c /^typedef union _tagITEM {$/;" u file: +_tagMatches PC/launcher2.c /^_tagMatches(const SearchInfo *search, const EnvironmentInfo *env, int searchTagLength)$/;" f +_tail Lib/pathlib.py /^ def _tail(self):$/;" m class:PurePath +_tarinfo Lib/test/test_shutil.py /^ def _tarinfo(self, path):$/;" m class:TestArchives +_task_get_stack Lib/asyncio/base_tasks.py /^def _task_get_stack(task, limit):$/;" f +_task_name_counter Lib/asyncio/tasks.py /^_task_name_counter = itertools.count(1).__next__$/;" v +_task_print_stack Lib/asyncio/base_tasks.py /^def _task_print_stack(task, limit, file):$/;" f +_task_repr Lib/asyncio/base_tasks.py /^def _task_repr(task):$/;" f +_task_repr_info Lib/asyncio/base_tasks.py /^def _task_repr_info(task):$/;" f +_taskbarButtonCreatedMessage Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ UINT _taskbarButtonCreatedMessage;$/;" m class:PythonBootstrapperApplication file: +_taskbarButtonOK Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _taskbarButtonOK;$/;" m class:PythonBootstrapperApplication file: +_taskbarList Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ ITaskbarList3* _taskbarList;$/;" m class:PythonBootstrapperApplication file: +_tclCommands Lib/tkinter/__init__.py /^ _tclCommands = None$/;" v class:Misc +_tclCommands Lib/tkinter/__init__.py /^ _tclCommands = None$/;" v class:Variable +_tclobj_to_py Lib/tkinter/ttk.py /^def _tclobj_to_py(val):$/;" f +_tearDownAsyncioRunner Lib/unittest/async_case.py /^ def _tearDownAsyncioRunner(self):$/;" m class:IsolatedAsyncioTestCase +_tearDownPreviousClass Lib/unittest/suite.py /^ def _tearDownPreviousClass(self, test, result):$/;" m class:TestSuite +_temp_dir Lib/importlib/resources/_common.py /^def _temp_dir(path):$/;" f +_temp_file Lib/importlib/resources/_common.py /^def _temp_file(path):$/;" f +_temp_path Lib/importlib/resources/_common.py /^def _temp_path(dir: tempfile.TemporaryDirectory):$/;" f +_tempfile Lib/importlib/resources/_common.py /^def _tempfile($/;" f +_template Lib/test/test_mailbox.py /^ _template = 'From: foo\\n\\n%s\\n'$/;" v class:TestMailbox +_terminate_pool Lib/multiprocessing/pool.py /^ def _terminate_pool(cls, taskqueue, inqueue, outqueue, pool, change_notifier,$/;" m class:Pool +_test Lib/difflib.py /^def _test():$/;" f +_test Lib/dis.py /^def _test():$/;" f +_test Lib/doctest.py /^def _test():$/;" f +_test Lib/fileinput.py /^def _test():$/;" f +_test Lib/idlelib/filelist.py /^def _test(): # TODO check and convert to htest$/;" f +_test Lib/locale.py /^def _test():$/;" f +_test Lib/pickle.py /^def _test():$/;" f +_test Lib/pickletools.py /^def _test():$/;" f +_test Lib/random.py /^def _test(N=10_000):$/;" f +_test Lib/test/_test_multiprocessing.py /^ def _test(cls, address):$/;" m class:_TestListenerClient +_test Lib/test/_test_multiprocessing.py /^ def _test(cls, q, *args, **kwds):$/;" m class:_TestProcess +_test Lib/test/_test_multiprocessing.py /^ def _test(cls, values):$/;" m class:_TestValue +_test Lib/test/test_argparse.py /^ def _test(self, tester, parser_text):$/;" m class:TestHelpFormattingMetaclass.__init__.AddTests +_test Lib/test/test_clinic.py /^ def _test(self, input, output):$/;" m class:ClinicBlockParserTest +_test Lib/test/test_clinic.py /^ def _test(self, input, output, **kwargs):$/;" m class:ClinicLinearFormatTest +_test Lib/test/test_clinic.py /^ def _test(self, l, m, r, output):$/;" m class:ClinicGroupPermuterTest +_test Lib/test/test_email/test__encoded_words.py /^ def _test(self, source, ex_result, ex_defects=[]):$/;" m class:TestDecodeB +_test Lib/test/test_email/test__encoded_words.py /^ def _test(self, source, ex_result, ex_defects=[]):$/;" m class:TestDecodeQ +_test Lib/test/test_email/test__encoded_words.py /^ def _test(self, source, result, charset='us-ascii', lang='', defects=[]):$/;" m class:TestDecode +_test Lib/test/test_email/test__encoded_words.py /^ def _test(self, src, expected):$/;" m class:TestEncodeQ +_test Lib/test/test_email/test__header_value_parser.py /^ def _test(self, tl, folded, policy=policy):$/;" m class:TestFolding +_test Lib/test/test_marshal.py /^ def _test(self, version):$/;" m class:CompatibilityTestCase +_test Lib/test/test_tarfile.py /^ def _test(self, name, link=None):$/;" m class:GNUWriteTest +_test Lib/test/test_tarfile.py /^ def _test(self, name, link=None):$/;" m class:PaxWriteTest +_test Lib/test/test_tarfile.py /^ def _test(self, names=["bar"], fileobj=None):$/;" m class:AppendTest +_test Lib/test/test_unittest/testmock/testpatch.py /^ def _test(self, f, foo):$/;" m class:PatchTest.test_patch_multiple_decorating_class.SomeTest +_test Lib/test/test_unittest/testmock/testpatch.py /^ def _test(self, mock_foo):$/;" m class:PatchTest.test_new_callable_class_decorating.SomeTest +_test Lib/test/test_unittest/testmock/testpatch.py /^ def _test(g, **kwargs):$/;" f function:PatchTest.test_patch_multiple_stacked_decorators +_test Lib/test/test_unittest/testmock/testpatch.py /^ def _test(mock):$/;" f function:PatchTest.test_autospec +_test Lib/test/test_webbrowser.py /^ def _test(self, meth, *, args=[URL], kw={}, options, arguments):$/;" m class:CommandTestMixin +_test Lib/tkinter/__init__.py /^def _test():$/;" f +_test Lib/tkinter/dialog.py /^def _test():$/;" f +_test Lib/xml/sax/xmlreader.py /^def _test():$/;" f +_test2 Lib/test/test_unittest/testmock/testpatch.py /^ def _test2(mock):$/;" f function:PatchTest.test_autospec +_testAccept Lib/test/test_socket.py /^ def _testAccept(self):$/;" m class:NonBlockingTCPTests +_testAttributes Lib/test/test_socket.py /^ def _testAttributes(self):$/;" m class:FileObjectClassTestCase +_testBCM Lib/test/test_socket.py /^ def _testBCM(self):$/;" m class:CANTest +_testBogusZipFile Lib/test/test_zipimport.py /^ def _testBogusZipFile(self):$/;" m class:BadFileZipImportTestCase +_testCloneElementCopiesAttributes Lib/test/test_minidom.py /^ def _testCloneElementCopiesAttributes(self, e1, e2, test):$/;" m class:MinidomTest +_testClose Lib/test/test_socket.py /^ def _testClose(self):$/;" m class:TCPCloserTest +_testCloseAfterMakefile Lib/test/test_socket.py /^ def _testCloseAfterMakefile(self):$/;" m class:FileObjectClassTestCase +_testClosedAttr Lib/test/test_socket.py /^ def _testClosedAttr(self):$/;" m class:FileObjectClassTestCase +_testCmsgTrunc0 Lib/test/test_socket.py /^ def _testCmsgTrunc0(self):$/;" m class:SCMRightsTest +_testCmsgTrunc1 Lib/test/test_socket.py /^ def _testCmsgTrunc1(self):$/;" m class:SCMRightsTest +_testCmsgTrunc2Int Lib/test/test_socket.py /^ def _testCmsgTrunc2Int(self):$/;" m class:SCMRightsTest +_testCmsgTruncLen0 Lib/test/test_socket.py /^ def _testCmsgTruncLen0(self):$/;" m class:SCMRightsTest +_testCmsgTruncLen0Minus1 Lib/test/test_socket.py /^ def _testCmsgTruncLen0Minus1(self):$/;" m class:SCMRightsTest +_testCmsgTruncLen0Plus1 Lib/test/test_socket.py /^ def _testCmsgTruncLen0Plus1(self):$/;" m class:SCMRightsTest +_testCmsgTruncLen1 Lib/test/test_socket.py /^ def _testCmsgTruncLen1(self):$/;" m class:SCMRightsTest +_testCmsgTruncLen2Minus1 Lib/test/test_socket.py /^ def _testCmsgTruncLen2Minus1(self):$/;" m class:SCMRightsTest +_testCmsgTruncNoBufSize Lib/test/test_socket.py /^ def _testCmsgTruncNoBufSize(self):$/;" m class:RFC3542AncillaryTest +_testCmsgTruncNoBufSize Lib/test/test_socket.py /^ def _testCmsgTruncNoBufSize(self):$/;" m class:SCMRightsTest +_testCount Lib/test/test_socket.py /^ def _testCount(self):$/;" m class:SendfileUsingSendTest +_testCountSmall Lib/test/test_socket.py /^ def _testCountSmall(self):$/;" m class:SendfileUsingSendTest +_testCountWithOffset Lib/test/test_socket.py /^ def _testCountWithOffset(self):$/;" m class:SendfileUsingSendTest +_testCreateConnectionBase Lib/test/test_socket.py /^ def _testCreateConnectionBase(self):$/;" m class:ContextManagersTest +_testCreateConnectionClose Lib/test/test_socket.py /^ def _testCreateConnectionClose(self):$/;" m class:ContextManagersTest +_testDefaults Lib/test/test_socket.py /^ def _testDefaults(self):$/;" m class:BasicSocketPairTest +_testDetach Lib/test/test_socket.py /^ def _testDetach(self):$/;" m class:BasicTCPTest +_testDup Lib/test/test_socket.py /^ def _testDup(self):$/;" m class:BasicTCPTest +_testEmptyFileSend Lib/test/test_socket.py /^ def _testEmptyFileSend(self):$/;" m class:SendfileUsingSendTest +_testFDPassCMSG_LEN Lib/test/test_socket.py /^ def _testFDPassCMSG_LEN(self):$/;" m class:SCMRightsTest +_testFDPassCMSG_SPACE Lib/test/test_socket.py /^ def _testFDPassCMSG_SPACE(self):$/;" m class:SCMRightsTest +_testFDPassEmpty Lib/test/test_socket.py /^ def _testFDPassEmpty(self):$/;" m class:SCMRightsTest +_testFDPassPartialInt Lib/test/test_socket.py /^ def _testFDPassPartialInt(self):$/;" m class:SCMRightsTest +_testFDPassPartialIntInMiddle Lib/test/test_socket.py /^ def _testFDPassPartialIntInMiddle(self):$/;" m class:SCMRightsTest +_testFDPassSeparate Lib/test/test_socket.py /^ def _testFDPassSeparate(self):$/;" m class:SCMRightsTest +_testFDPassSeparateMinSpace Lib/test/test_socket.py /^ def _testFDPassSeparateMinSpace(self):$/;" m class:SCMRightsTest +_testFDPassSimple Lib/test/test_socket.py /^ def _testFDPassSimple(self):$/;" m class:SCMRightsTest +_testFamily Lib/test/test_socket.py /^ def _testFamily(self):$/;" m class:NetworkConnectionAttributesTest +_testFromFd Lib/test/test_socket.py /^ def _testFromFd(self):$/;" m class:BasicTCPTest +_testFullRead Lib/test/test_socket.py /^ def _testFullRead(self):$/;" m class:FileObjectClassTestCase +_testInheritFlagsBlocking Lib/test/test_socket.py /^ def _testInheritFlagsBlocking(self):$/;" m class:NonBlockingTCPTests +_testInheritFlagsTimeout Lib/test/test_socket.py /^ def _testInheritFlagsTimeout(self):$/;" m class:NonBlockingTCPTests +_testInitNonBlocking Lib/test/test_socket.py /^ def _testInitNonBlocking(self):$/;" m class:NonBlockingTCPTests +_testInsideTimeout Lib/test/test_socket.py /^ def _testInsideTimeout(self):$/;" m class:NetworkConnectionBehaviourTest +_testMakefileAfterMakefileClose Lib/test/test_socket.py /^ def _testMakefileAfterMakefileClose(self):$/;" m class:FileObjectClassTestCase +_testMakefileClose Lib/test/test_socket.py /^ def _testMakefileClose(self):$/;" m class:UnbufferedFileObjectClassTestCase +_testMakefileCloseSocketDestroy Lib/test/test_socket.py /^ def _testMakefileCloseSocketDestroy(self):$/;" m class:UnbufferedFileObjectClassTestCase +_testMethodName Lib/unittest/loader.py /^ _testMethodName = None$/;" v class:_FailedTest +_testMultipleFDPass Lib/test/test_socket.py /^ def _testMultipleFDPass(self):$/;" m class:SCMRightsTest +_testNonBlocking Lib/test/test_socket.py /^ def _testNonBlocking(self):$/;" m class:SendfileUsingSendTest +_testNonRegularFile Lib/test/test_socket.py /^ def _testNonRegularFile(self):$/;" m class:SendfileUsingSendTest +_testOddCmsgSize Lib/test/test_socket.py /^ def _testOddCmsgSize(self):$/;" m class:RFC3542AncillaryTest +_testOffset Lib/test/test_socket.py /^ def _testOffset(self):$/;" m class:SendfileUsingSendTest +_testOutsideTimeout Lib/test/test_socket.py /^ def _testOutsideTimeout(self):$/;" m class:NetworkConnectionBehaviourTest +_testOverFlowRecv Lib/test/test_socket.py /^ def _testOverFlowRecv(self):$/;" m class:BasicTCPTest +_testOverFlowRecvFrom Lib/test/test_socket.py /^ def _testOverFlowRecvFrom(self):$/;" m class:BasicTCPTest +_testPeek Lib/test/test_socket.py /^ def _testPeek(self):$/;" m class:RDSTest +_testReadAfterTimeout Lib/test/test_socket.py /^ def _testReadAfterTimeout(self):$/;" m class:FileObjectClassTestCase +_testReadintoArray Lib/test/test_fileio.py /^ def _testReadintoArray(self):$/;" m class:AutoFileTests +_testReadintoMemoryview Lib/test/test_fileio.py /^ def _testReadintoMemoryview(self):$/;" m class:AutoFileTests +_testReadline Lib/test/test_socket.py /^ def _testReadline(self):$/;" m class:FileObjectClassTestCase +_testRealClose Lib/test/test_socket.py /^ def _testRealClose(self):$/;" m class:FileObjectClassTestCase +_testRecv Lib/test/test_socket.py /^ def _testRecv(self):$/;" m class:BasicSocketPairTest +_testRecv Lib/test/test_socket.py /^ def _testRecv(self):$/;" m class:BasicTCPTest +_testRecv Lib/test/test_socket.py /^ def _testRecv(self):$/;" m class:NonBlockingTCPTests +_testRecvFrom Lib/test/test_socket.py /^ def _testRecvFrom(self):$/;" m class:BasicTCPTest +_testRecvFrom Lib/test/test_socket.py /^ def _testRecvFrom(self):$/;" m class:BasicUDPLITETest +_testRecvFrom Lib/test/test_socket.py /^ def _testRecvFrom(self):$/;" m class:BasicUDPTest +_testRecvFromIntoArray Lib/test/test_socket.py /^ def _testRecvFromIntoArray(self):$/;" m class:BufferIOTest +_testRecvFromIntoBytearray Lib/test/test_socket.py /^ _testRecvFromIntoBytearray = _testRecvFromIntoArray$/;" v class:BufferIOTest +_testRecvFromIntoEmptyBuffer Lib/test/test_socket.py /^ _testRecvFromIntoEmptyBuffer = _testRecvFromIntoArray$/;" v class:BufferIOTest +_testRecvFromIntoMemoryview Lib/test/test_socket.py /^ _testRecvFromIntoMemoryview = _testRecvFromIntoArray$/;" v class:BufferIOTest +_testRecvFromIntoSmallBuffer Lib/test/test_socket.py /^ def _testRecvFromIntoSmallBuffer(self):$/;" m class:BufferIOTest +_testRecvFromNegative Lib/test/test_socket.py /^ def _testRecvFromNegative(self):$/;" m class:BasicUDPLITETest +_testRecvFromNegative Lib/test/test_socket.py /^ def _testRecvFromNegative(self):$/;" m class:BasicUDPTest +_testRecvHopLimit Lib/test/test_socket.py /^ def _testRecvHopLimit(self):$/;" m class:RFC3542AncillaryTest +_testRecvHopLimitCMSG_SPACE Lib/test/test_socket.py /^ def _testRecvHopLimitCMSG_SPACE(self):$/;" m class:RFC3542AncillaryTest +_testRecvIntoArray Lib/test/test_socket.py /^ def _testRecvIntoArray(self):$/;" m class:BufferIOTest +_testRecvIntoBytearray Lib/test/test_socket.py /^ _testRecvIntoBytearray = _testRecvIntoArray$/;" v class:BufferIOTest +_testRecvIntoMemoryview Lib/test/test_socket.py /^ _testRecvIntoMemoryview = _testRecvIntoArray$/;" v class:BufferIOTest +_testRecvTrafficClassAndHopLimit Lib/test/test_socket.py /^ def _testRecvTrafficClassAndHopLimit(self):$/;" m class:RFC3542AncillaryTest +_testRecvTrafficClassAndHopLimitCMSG_SPACE Lib/test/test_socket.py /^ def _testRecvTrafficClassAndHopLimitCMSG_SPACE(self):$/;" m class:RFC3542AncillaryTest +_testRecvmsg Lib/test/test_socket.py /^ def _testRecvmsg(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgAfterClose Lib/test/test_socket.py /^ def _testRecvmsgAfterClose(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgBadArgs Lib/test/test_socket.py /^ def _testRecvmsgBadArgs(self):$/;" m class:RecvmsgTests +_testRecvmsgEOF Lib/test/test_socket.py /^ def _testRecvmsgEOF(self):$/;" m class:RecvmsgGenericStreamTests +_testRecvmsgExplicitDefaults Lib/test/test_socket.py /^ def _testRecvmsgExplicitDefaults(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgFromSendmsg Lib/test/test_socket.py /^ def _testRecvmsgFromSendmsg(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgIntoArray Lib/test/test_socket.py /^ def _testRecvmsgIntoArray(self):$/;" m class:RecvmsgIntoTests +_testRecvmsgIntoBadArgs Lib/test/test_socket.py /^ def _testRecvmsgIntoBadArgs(self):$/;" m class:RecvmsgIntoTests +_testRecvmsgIntoGenerator Lib/test/test_socket.py /^ def _testRecvmsgIntoGenerator(self):$/;" m class:RecvmsgIntoTests +_testRecvmsgIntoScatter Lib/test/test_socket.py /^ def _testRecvmsgIntoScatter(self):$/;" m class:RecvmsgIntoTests +_testRecvmsgLongAncillaryBuf Lib/test/test_socket.py /^ def _testRecvmsgLongAncillaryBuf(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgOverflow Lib/test/test_socket.py /^ def _testRecvmsgOverflow(self):$/;" m class:RecvmsgGenericStreamTests +_testRecvmsgPeek Lib/test/test_socket.py /^ def _testRecvmsgPeek(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgShortAncillaryBuf Lib/test/test_socket.py /^ def _testRecvmsgShortAncillaryBuf(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgShorter Lib/test/test_socket.py /^ def _testRecvmsgShorter(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgTimeout Lib/test/test_socket.py /^ def _testRecvmsgTimeout(self):$/;" m class:RecvmsgGenericTests +_testRecvmsgTrunc Lib/test/test_socket.py /^ def _testRecvmsgTrunc(self):$/;" m class:RecvmsgGenericTests +_testRegularFile Lib/test/test_socket.py /^ def _testRegularFile(self):$/;" m class:SendfileUsingSendTest +_testRunEntered Lib/unittest/result.py /^ _testRunEntered = False$/;" v class:TestResult +_testSecondCmsgTrunc0 Lib/test/test_socket.py /^ def _testSecondCmsgTrunc0(self):$/;" m class:RFC3542AncillaryTest +_testSecondCmsgTrunc1 Lib/test/test_socket.py /^ def _testSecondCmsgTrunc1(self):$/;" m class:RFC3542AncillaryTest +_testSecondCmsgTrunc2Int Lib/test/test_socket.py /^ def _testSecondCmsgTrunc2Int(self):$/;" m class:RFC3542AncillaryTest +_testSecondCmsgTruncInData Lib/test/test_socket.py /^ def _testSecondCmsgTruncInData(self):$/;" m class:RFC3542AncillaryTest +_testSecondCmsgTruncLen0Minus1 Lib/test/test_socket.py /^ def _testSecondCmsgTruncLen0Minus1(self):$/;" m class:RFC3542AncillaryTest +_testSelect Lib/test/test_socket.py /^ def _testSelect(self):$/;" m class:RDSTest +_testSend Lib/test/test_socket.py /^ def _testSend(self):$/;" m class:BasicSocketPairTest +_testSendAll Lib/test/test_socket.py /^ def _testSendAll(self):$/;" m class:BasicTCPTest +_testSendAndRecv Lib/test/test_socket.py /^ def _testSendAndRecv(self):$/;" m class:RDSTest +_testSendAndRecvMsg Lib/test/test_socket.py /^ def _testSendAndRecvMsg(self):$/;" m class:RDSTest +_testSendAndRecvMulti Lib/test/test_socket.py /^ def _testSendAndRecvMulti(self):$/;" m class:RDSTest +_testSendFrame Lib/test/test_socket.py /^ def _testSendFrame(self):$/;" m class:CANTest +_testSendMaxFrame Lib/test/test_socket.py /^ def _testSendMaxFrame(self):$/;" m class:CANTest +_testSendMultiFrames Lib/test/test_socket.py /^ def _testSendMultiFrames(self):$/;" m class:CANTest +_testSendmsg Lib/test/test_socket.py /^ def _testSendmsg(self):$/;" m class:SendmsgTests +_testSendmsgAfterClose Lib/test/test_socket.py /^ def _testSendmsgAfterClose(self):$/;" m class:SendmsgTests +_testSendmsgAncillaryGenerator Lib/test/test_socket.py /^ def _testSendmsgAncillaryGenerator(self):$/;" m class:SendmsgTests +_testSendmsgArray Lib/test/test_socket.py /^ def _testSendmsgArray(self):$/;" m class:SendmsgTests +_testSendmsgBadArgs Lib/test/test_socket.py /^ def _testSendmsgBadArgs(self):$/;" m class:SendmsgTests +_testSendmsgBadCmsg Lib/test/test_socket.py /^ def _testSendmsgBadCmsg(self):$/;" m class:SendmsgTests +_testSendmsgBadMultiCmsg Lib/test/test_socket.py /^ def _testSendmsgBadMultiCmsg(self):$/;" m class:SendmsgTests +_testSendmsgDataGenerator Lib/test/test_socket.py /^ def _testSendmsgDataGenerator(self):$/;" m class:SendmsgTests +_testSendmsgDontWait Lib/test/test_socket.py /^ def _testSendmsgDontWait(self):$/;" m class:SendmsgStreamTests +_testSendmsgExcessCmsgReject Lib/test/test_socket.py /^ def _testSendmsgExcessCmsgReject(self):$/;" m class:SendmsgTests +_testSendmsgExplicitNoneAddr Lib/test/test_socket.py /^ def _testSendmsgExplicitNoneAddr(self):$/;" m class:SendmsgStreamTests +_testSendmsgGather Lib/test/test_socket.py /^ def _testSendmsgGather(self):$/;" m class:SendmsgTests +_testSendmsgNoDestAddr Lib/test/test_socket.py /^ def _testSendmsgNoDestAddr(self):$/;" m class:SendmsgConnectionlessTests +_testSendmsgTimeout Lib/test/test_socket.py /^ def _testSendmsgTimeout(self):$/;" m class:SendmsgStreamTests +_testSendtoAndRecv Lib/test/test_socket.py /^ def _testSendtoAndRecv(self):$/;" m class:BasicUDPLITETest +_testSendtoAndRecv Lib/test/test_socket.py /^ def _testSendtoAndRecv(self):$/;" m class:BasicUDPTest +_testSetBlocking Lib/test/test_socket.py /^ def _testSetBlocking(self):$/;" m class:NonBlockingTCPTests +_testSetBlocking_overflow Lib/test/test_socket.py /^ _testSetBlocking_overflow = support.cpython_only(_testSetBlocking)$/;" v class:NonBlockingTCPTests +_testSetHopLimit Lib/test/test_socket.py /^ def _testSetHopLimit(self):$/;" m class:RFC3542AncillaryTest +_testSetTrafficClassAndHopLimit Lib/test/test_socket.py /^ def _testSetTrafficClassAndHopLimit(self):$/;" m class:RFC3542AncillaryTest +_testShutdown Lib/test/test_socket.py /^ def _testShutdown(self):$/;" m class:BasicTCPTest +_testShutdown_overflow Lib/test/test_socket.py /^ def _testShutdown_overflow(self):$/;" m class:BasicTCPTest +_testSingleCmsgTrunc0 Lib/test/test_socket.py /^ def _testSingleCmsgTrunc0(self):$/;" m class:RFC3542AncillaryTest +_testSingleCmsgTrunc1 Lib/test/test_socket.py /^ def _testSingleCmsgTrunc1(self):$/;" m class:RFC3542AncillaryTest +_testSingleCmsgTrunc2Int Lib/test/test_socket.py /^ def _testSingleCmsgTrunc2Int(self):$/;" m class:RFC3542AncillaryTest +_testSingleCmsgTruncInData Lib/test/test_socket.py /^ def _testSingleCmsgTruncInData(self):$/;" m class:RFC3542AncillaryTest +_testSingleCmsgTruncLen0Minus1 Lib/test/test_socket.py /^ def _testSingleCmsgTruncLen0Minus1(self):$/;" m class:RFC3542AncillaryTest +_testSmallRead Lib/test/test_socket.py /^ def _testSmallRead(self):$/;" m class:FileObjectClassTestCase +_testSmallReadNonBlocking Lib/test/test_socket.py /^ def _testSmallReadNonBlocking(self):$/;" m class:UnbufferedFileObjectClassTestCase +_testSocketClass Lib/test/test_socket.py /^ def _testSocketClass(self):$/;" m class:ContextManagersTest +_testSourceAddress Lib/test/test_socket.py /^ def _testSourceAddress(self):$/;" m class:NetworkConnectionAttributesTest +_testStream Lib/test/test_socket.py /^ def _testStream(self):$/;" m class:TIPCThreadableTest +_testStream Lib/test/test_socket.py /^ def _testStream(self):$/;" m class:ThreadedVSOCKSocketStreamTest +_testTimeoutDefault Lib/test/test_socket.py /^ def _testTimeoutDefault(self):$/;" m class:NetworkConnectionAttributesTest +_testTimeoutNone Lib/test/test_socket.py /^ def _testTimeoutNone(self):$/;" m class:NetworkConnectionAttributesTest +_testTimeoutValueNamed Lib/test/test_socket.py /^ def _testTimeoutValueNamed(self):$/;" m class:NetworkConnectionAttributesTest +_testTimeoutValueNonamed Lib/test/test_socket.py /^ def _testTimeoutValueNonamed(self):$/;" m class:NetworkConnectionAttributesTest +_testUnbufferedRead Lib/test/test_socket.py /^ def _testUnbufferedRead(self):$/;" m class:FileObjectClassTestCase +_testUnbufferedReadline Lib/test/test_socket.py /^ def _testUnbufferedReadline(self):$/;" m class:UnbufferedFileObjectClassTestCase +_testWithTimeout Lib/test/test_socket.py /^ def _testWithTimeout(self):$/;" m class:SendfileUsingSendTest +_testWithTimeoutTriggeredSend Lib/test/test_socket.py /^ def _testWithTimeoutTriggeredSend(self):$/;" m class:SendfileUsingSendTest +_testWriteNonBlocking Lib/test/test_socket.py /^ def _testWriteNonBlocking(self):$/;" m class:UnbufferedFileObjectClassTestCase +_test__append_write_backlog Lib/asyncio/sslproto.py /^ def _test__append_write_backlog(self, data):$/;" m class:_SSLProtocolTransport +_test_abort_and_reset_f Lib/test/_test_multiprocessing.py /^ def _test_abort_and_reset_f(cls, barrier, barrier2,$/;" m class:_TestBarrier +_test_abort_f Lib/test/_test_multiprocessing.py /^ def _test_abort_f(cls, barrier, results1, results2):$/;" m class:_TestBarrier +_test_action_f Lib/test/_test_multiprocessing.py /^ def _test_action_f(cls, barrier, results):$/;" m class:_TestBarrier +_test_algorithm_via_hashlib_new Lib/test/test_hashlib.py /^ def _test_algorithm_via_hashlib_new(data=None, _alg=algorithm, **kwargs):$/;" f function:HashLibTestCase.__init__ +_test_all Lib/test/test_winreg.py /^ def _test_all(self, root_key, subkeystr="sub_key"):$/;" m class:BaseWinregTests +_test_all_chown_common Lib/test/test_posix.py /^ def _test_all_chown_common(self, chown_func, first_param, stat_func):$/;" m class:PosixTester +_test_arg_valid Lib/test/test_csv.py /^ def _test_arg_valid(self, ctor, arg):$/;" m class:Test_Csv +_test_args Lib/test/_test_multiprocessing.py /^ def _test_args(cls, q, arg):$/;" m class:_TestProcess +_test_around_boundary Lib/test/test_mmap.py /^ def _test_around_boundary(self, boundary):$/;" m class:LargeMmapTests +_test_array Lib/test/_test_multiprocessing.py /^ def _test_array(cls, obj):$/;" m class:TestSyncManagerTypes +_test_atof Lib/test/test_locale.py /^ def _test_atof(self, value, out):$/;" m class:BaseDelocalizeTest +_test_atoi Lib/test/test_locale.py /^ def _test_atoi(self, value, out):$/;" m class:BaseDelocalizeTest +_test_attr_ro Lib/test/test_email/test_headerregistry.py /^ def _test_attr_ro(self, attr):$/;" m class:TestBaseHeaderFeatures +_test_attr_ro Lib/test/test_email/test_headerregistry.py /^ def _test_attr_ro(self, obj, attr):$/;" m class:TestAddressAndGroup +_test_audit Programs/_testembed.c /^static int _test_audit(Py_ssize_t setValue)$/;" f file: +_test_audit_hook Lib/test/libregrtest/setup.py /^ def _test_audit_hook(name, args):$/;" f function:setup_tests +_test_bad_magic Lib/test/test_importlib/source/test_file_loader.py /^ def _test_bad_magic(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_bad_marshal Lib/test/test_importlib/source/test_file_loader.py /^ def _test_bad_marshal(self, *, del_source=False):$/;" m class:BadBytecodeTest +_test_barrier Lib/test/_test_multiprocessing.py /^ def _test_barrier(cls, obj):$/;" m class:TestSyncManagerTypes +_test_basic_auth Lib/test/test_urllib2.py /^ def _test_basic_auth(self, opener, auth_handler, auth_header,$/;" m class:HandlerTests +_test_bufsize_equal_one Lib/test/test_subprocess.py /^ def _test_bufsize_equal_one(self, line, expected, universal_newlines):$/;" m class:ProcessTestCase +_test_bz2_header Lib/test/test_tarfile.py /^ def _test_bz2_header(self, compresslevel):$/;" m class:_CompressedWriteTest +_test_callback Lib/tkinter/commondialog.py /^ def _test_callback(self, master):$/;" m class:Dialog +_test_cancel_wait_for Lib/test/test_asyncio/test_waitfor.py /^ async def _test_cancel_wait_for(self, timeout):$/;" m class:AsyncioWaitForTest +_test_capitalize Lib/test/test_bigmem.py /^ def _test_capitalize(self, size):$/;" m class:BaseStrTest +_test_chflags_regular_file Lib/test/test_posix.py /^ def _test_chflags_regular_file(self, chflags_func, target_file, **kwargs):$/;" m class:PosixTester +_test_child_fd_inflation Lib/test/_test_multiprocessing.py /^ def _test_child_fd_inflation(self, evt, q):$/;" m class:_TestProcess +_test_client_pipe_stat Lib/test/test_asyncio/test_windows_events.py /^ async def _test_client_pipe_stat(self):$/;" m class:ProactorTests +_test_clinic Lib/test/test_clinic.py /^ def _test_clinic(self, input, output):$/;" f +_test_close Lib/test/_test_multiprocessing.py /^ def _test_close(cls, rc=0, q=None):$/;" m class:_TestProcess +_test_close Lib/test/test_mailbox.py /^ def _test_close(self, proxy):$/;" m class:TestProxyFileBase +_test_closefds Lib/test/_test_multiprocessing.py /^ def _test_closefds(cls, conn, fd):$/;" m class:TestCloseFds +_test_command Lib/test/test_telnetlib.py /^ def _test_command(self, data):$/;" m class:OptionTests +_test_comment Lib/test/test_netrc.py /^ def _test_comment(self, nrc, passwd='pass'):$/;" m class:NetrcTestCase +_test_compare_digest Lib/test/test_hmac.py /^ def _test_compare_digest(self, compare_digest):$/;" m class:CompareDigestTestCase +_test_condition Lib/test/_test_multiprocessing.py /^ def _test_condition(cls, obj):$/;" m class:TestSyncManagerTypes +_test_copy_dir Lib/test/test_shutil.py /^ def _test_copy_dir(self, copy_func):$/;" m class:TestCopy +_test_cow_mutation Lib/test/test_memoryio.py /^ def _test_cow_mutation(self, mutation):$/;" m class:CBytesIOTest +_test_create_connection_ip_addr Lib/test/test_asyncio/test_base_events.py /^ def _test_create_connection_ip_addr(self, m_socket, allow_inet_pton):$/;" m class:BaseEventLoopWithSelectorTests +_test_create_datagram_endpoint Lib/test/test_asyncio/test_events.py /^ def _test_create_datagram_endpoint(self, local_addr, family):$/;" m class:EventLoopTestsMixin +_test_create_grandchild_process Lib/test/_test_multiprocessing.py /^ def _test_create_grandchild_process(cls, wconn):$/;" m class:_TestProcess +_test_create_ssl_connection Lib/test/test_asyncio/test_events.py /^ def _test_create_ssl_connection(self, httpd, create_connection,$/;" m class:EventLoopTestsMixin +_test_currency Lib/test/test_locale.py /^ def _test_currency(self, value, out, **format_opts):$/;" m class:BaseFormattingTest +_test_cwd Lib/test/test_pathlib.py /^ def _test_cwd(self, p):$/;" m class:_BasePathTest +_test_ddir_only Lib/test/test_compileall.py /^ def _test_ddir_only(self, *, ddir, parallel=True):$/;" m class:CompileallTestsBase +_test_decode Lib/test/test_email/test_email.py /^ def _test_decode(self, encoded, expected_decoded, eol=None):$/;" m class:TestQuopri +_test_decompressor Lib/test/test_lzma.py /^ def _test_decompressor(self, lzd, data, check, unused_data=b""):$/;" m class:CompressorDecompressorTestCase +_test_default_attrs Lib/test/test_csv.py /^ def _test_default_attrs(self, ctor, *args):$/;" m class:Test_Csv +_test_default_timeout_f Lib/test/_test_multiprocessing.py /^ def _test_default_timeout_f(cls, barrier, results):$/;" m class:_TestBarrier +_test_delocalize Lib/test/test_locale.py /^ def _test_delocalize(self, value, out):$/;" m class:BaseDelocalizeTest +_test_dialect_attrs Lib/test/test_csv.py /^ def _test_dialect_attrs(self, ctor, *args):$/;" m class:Test_Csv +_test_dict Lib/test/_test_multiprocessing.py /^ def _test_dict(cls, obj):$/;" m class:TestSyncManagerTypes +_test_dict_attribute Lib/test/test_threading_local.py /^ def _test_dict_attribute(self, cls):$/;" m class:BaseLocalTest +_test_dispatch_table Lib/test/pickletester.py /^ def _test_dispatch_table(self, dumps, dispatch_table):$/;" m class:AbstractDispatchTableTests +_test_empty Lib/test/_test_multiprocessing.py /^ def _test_empty(cls, queue, child_can_start, parent_can_continue):$/;" m class:TestSimpleQueue +_test_empty_file Lib/test/test_importlib/source/test_file_loader.py /^ def _test_empty_file(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_encode Lib/test/test_email/test_email.py /^ def _test_encode(self, body, expected_encoded_body, maxlinelen=None, eol=None):$/;" m class:TestQuopri +_test_environ_iteration Lib/test/test_os.py /^ def _test_environ_iteration(self, collection):$/;" m class:EnvironTests +_test_error Lib/test/test_tarfile.py /^ def _test_error(self, data):$/;" m class:AppendTest +_test_error_on_stdio_flush Lib/test/_test_multiprocessing.py /^ def _test_error_on_stdio_flush(self, evt, break_std_streams={}):$/;" m class:_TestProcess +_test_errors Lib/test/test_socket.py /^ def _test_errors(self):$/;" m class:SendfileUsingSendTest +_test_event Lib/test/_test_multiprocessing.py /^ def _test_event(cls, event):$/;" m class:_TestEvent +_test_event Lib/test/_test_multiprocessing.py /^ def _test_event(cls, obj):$/;" m class:TestSyncManagerTypes +_test_exception Lib/test/test_pyexpat.py /^ def _test_exception(self, have_source):$/;" m class:HandlerExceptionTest +_test_extract_all_with_target Lib/test/test_zipfile/test_core.py /^ def _test_extract_all_with_target(self, target):$/;" m class:ExtractTests +_test_extract_hackers_arcnames Lib/test/test_zipfile/test_core.py /^ def _test_extract_hackers_arcnames(self, hacknames):$/;" m class:ExtractTests +_test_extract_with_target Lib/test/test_zipfile/test_core.py /^ def _test_extract_with_target(self, target):$/;" m class:ExtractTests +_test_fileobj_link Lib/test/test_tarfile.py /^ def _test_fileobj_link(self, lnktype, regtype):$/;" m class:UstarReadTest +_test_files Lib/test/test_importlib/test_metadata_api.py /^ def _test_files(files):$/;" m class:APITests +_test_finalize Lib/test/_test_multiprocessing.py /^ def _test_finalize(cls, conn):$/;" m class:_TestFinalize +_test_flush_or_close Lib/test/test_mailbox.py /^ def _test_flush_or_close(self, method, should_call_close):$/;" m class:TestMailbox +_test_fork Lib/test/_test_multiprocessing.py /^ def _test_fork(cls, queue):$/;" m class:_TestQueue +_test_format_string Lib/test/test_locale.py /^ def _test_format_string(self, format, value, out, **format_opts):$/;" m class:BaseFormattingTest +_test_gen Lib/test/test_collections.py /^def _test_gen():$/;" f +_test_generator Lib/random.py /^def _test_generator(n, func, args):$/;" f +_test_get Lib/test/_test_multiprocessing.py /^ def _test_get(cls, queue, child_can_start, parent_can_continue):$/;" m class:_TestQueue +_test_get_event_loop_new_process__sub_proc Lib/test/test_asyncio/test_events.py /^def _test_get_event_loop_new_process__sub_proc():$/;" f +_test_get_server_certificate Lib/test/test_ssl.py /^def _test_get_server_certificate(test, host, port, cert=None):$/;" f +_test_get_server_certificate_fail Lib/test/test_ssl.py /^def _test_get_server_certificate_fail(test, host, port):$/;" f +_test_get_x Lib/test/test_email/test__header_value_parser.py /^ def _test_get_x(self, method, source, string, value, defects,$/;" m class:TestParserMixin +_test_graph Lib/test/test_graphlib.py /^ def _test_graph(self, graph, expected):$/;" m class:TestTopologicalSort +_test_gz_header Lib/test/test_tarfile.py /^ def _test_gz_header(self, compresslevel):$/;" m class:_CompressedWriteTest +_test_header_decode Lib/test/test_email/test_email.py /^ def _test_header_decode(self, encoded_header, expected_decoded_header):$/;" m class:TestQuopri +_test_header_encode Lib/test/test_email/test_email.py /^ def _test_header_encode(self, header, expected_encoded_header, charset=None):$/;" m class:TestQuopri +_test_home Lib/test/test_pathlib.py /^ def _test_home(self, p):$/;" m class:_BasePathTest +_test_i38748_funcType Modules/_ctypes/_ctypes_test.c /^typedef long(__stdcall *_test_i38748_funcType)(long, long long);$/;" t file: +_test_i38748_runCallback Modules/_ctypes/_ctypes_test.c /^EXPORT(long) _test_i38748_runCallback(_test_i38748_funcType callback, int a, int b) {$/;" f +_test_ignore Lib/test/_test_multiprocessing.py /^ def _test_ignore(cls, conn):$/;" m class:TestIgnoreEINTR +_test_ignore_listener Lib/test/_test_multiprocessing.py /^ def _test_ignore_listener(cls, conn):$/;" m class:TestIgnoreEINTR +_test_incref Modules/_testcapimodule.c /^_test_incref(PyObject *ob)$/;" f file: +_test_internal_execvpe Lib/test/test_os.py /^ def _test_internal_execvpe(self, test_type):$/;" m class:ExecTests +_test_invalid_env Lib/test/test_os.py /^ def _test_invalid_env(self, spawn):$/;" m class:SpawnTests +_test_iteration Lib/test/test_mailbox.py /^ def _test_iteration(self, proxy):$/;" m class:TestProxyFileBase +_test_keyboardinterrupt_no_kill Lib/test/test_subprocess.py /^ def _test_keyboardinterrupt_no_kill(self, popener, mock__communicate,$/;" m class:MiscTests +_test_kw_attrs Lib/test/test_csv.py /^ def _test_kw_attrs(self, ctor, *args):$/;" m class:Test_Csv +_test_len Lib/test/test_configparser.py /^ def _test_len(self, cfg):$/;" m class:BlatantOverrideConvertersTestCase +_test_level Lib/test/_test_multiprocessing.py /^ def _test_level(cls, conn):$/;" m class:_TestLogging +_test_link Lib/test/test_os.py /^ def _test_link(self, file1, file2):$/;" m class:LinkTests +_test_link_extraction Lib/test/test_tarfile.py /^ def _test_link_extraction(self, name):$/;" m class:LinkEmulationTest +_test_list Lib/test/_test_multiprocessing.py /^ def _test_list(cls, obj):$/;" m class:TestSyncManagerTypes +_test_localize Lib/test/test_locale.py /^ def _test_localize(self, value, out, grouping=False):$/;" m class:BaseLocalizeTest +_test_lock Lib/test/_test_multiprocessing.py /^ def _test_lock(cls, obj):$/;" m class:TestSyncManagerTypes +_test_log Lib/test/test_logging.py /^ def _test_log(self, method, level=None):$/;" m class:BasicConfigTest +_test_log Lib/test/test_logging.py /^ def _test_log(self, method, level=None):$/;" m class:ModuleLevelMiscTest +_test_magic_only Lib/test/test_importlib/source/test_file_loader.py /^ def _test_magic_only(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_mapping_file_plain Lib/test/multibytecodec_support.py /^ def _test_mapping_file_plain(self):$/;" m class:TestBase_Mapping +_test_mapping_file_ucm Lib/test/multibytecodec_support.py /^ def _test_mapping_file_ucm(self):$/;" m class:TestBase_Mapping +_test_member Lib/test/test_tarfile.py /^ def _test_member(self, tarinfo, chksum=None, **kwargs):$/;" m class:MemberReadTest +_test_modes Lib/test/test_tarfile.py /^ def _test_modes(self, testfunc):$/;" m class:DetectReadTest +_test_module_encoding Lib/test/test_argparse.py /^ def _test_module_encoding(self, path):$/;" m class:TestEncoding +_test_mutex_ab Lib/test/test_argparse.py /^ def _test_mutex_ab(self, parse_args):$/;" m class:TestParentParsers +_test_named_args Lib/test/test_winreg.py /^ def _test_named_args(self, key, sub_key):$/;" m class:BaseWinregTests +_test_namespace Lib/test/_test_multiprocessing.py /^ def _test_namespace(cls, obj):$/;" m class:TestSyncManagerTypes +_test_no_marshal Lib/test/test_importlib/source/test_file_loader.py /^ def _test_no_marshal(self, *, del_source=False):$/;" m class:BadBytecodeTest +_test_no_stdio Lib/test/test_cmd_line.py /^ def _test_no_stdio(self, streams):$/;" m class:CmdLineTest +_test_non_code_marshal Lib/test/test_importlib/source/test_file_loader.py /^ def _test_non_code_marshal(self, *, del_source=False):$/;" m class:BadBytecodeTest +_test_nonblock_pipe_write Lib/test/test_io.py /^ def _test_nonblock_pipe_write(self, bufsize):$/;" m class:MiscIOTest +_test_one_class Lib/test/test_threading_local.py /^ def _test_one_class(self, c):$/;" m class:BaseLocalTest +_test_open Lib/test/_test_eintr.py /^ def _test_open(self, do_open_close_reader, do_open_close_writer):$/;" m class:SocketEINTRTest +_test_option_joinstyle Lib/test/test_tkinter/test_widgets.py /^ def _test_option_joinstyle(self, c, factory):$/;" m class:CanvasTest +_test_option_smooth Lib/test/test_tkinter/test_widgets.py /^ def _test_option_smooth(self, c, factory):$/;" m class:CanvasTest +_test_overflow_special Lib/test/datetimetester.py /^ def _test_overflow_special(self):$/;" m class:TestTimeDelta +_test_parse_x Lib/test/test_email/test__header_value_parser.py /^ def _test_parse_x(self, method, input, string, value, defects,$/;" m class:TestParserMixin +_test_partial_flags Lib/test/test_importlib/source/test_file_loader.py /^ def _test_partial_flags(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_partial_hash Lib/test/test_importlib/source/test_file_loader.py /^ def _test_partial_hash(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_partial_input Lib/test/test_tarfile.py /^ def _test_partial_input(self, mode):$/;" m class:Bz2PartialReadTest +_test_partial_magic Lib/test/test_importlib/source/test_file_loader.py /^ def _test_partial_magic(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_partial_size Lib/test/test_importlib/source/test_file_loader.py /^ def _test_partial_size(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_partial_timestamp Lib/test/test_importlib/source/test_file_loader.py /^ def _test_partial_timestamp(self, test, *, del_source=False):$/;" m class:BadBytecodeTest +_test_pathname Lib/test/test_tarfile.py /^ def _test_pathname(self, path, cmp_path=None, dir=False):$/;" m class:WriteTest +_test_pbkdf2_hmac Lib/test/test_hashlib.py /^ def _test_pbkdf2_hmac(self, pbkdf2, supported):$/;" m class:KDFTests +_test_pipe Lib/test/test_asyncio/test_windows_events.py /^ async def _test_pipe(self):$/;" m class:ProactorTests +_test_pool Lib/test/_test_multiprocessing.py /^ def _test_pool(cls, obj):$/;" m class:TestSyncManagerTypes +_test_popen_error Lib/test/test_asyncio/test_subprocess.py /^ async def _test_popen_error(self, stdin):$/;" m class:SubprocessMixin +_test_process Lib/test/_test_multiprocessing.py /^def _test_process():$/;" f +_test_process_mainthread_native_id Lib/test/_test_multiprocessing.py /^ def _test_process_mainthread_native_id(cls, q):$/;" m class:_TestProcess +_test_put Lib/test/_test_multiprocessing.py /^ def _test_put(cls, queue, child_can_start, parent_can_continue):$/;" m class:_TestQueue +_test_queue Lib/test/_test_multiprocessing.py /^ def _test_queue(cls, obj):$/;" m class:TestSyncManagerTypes +_test_read Lib/test/test_mailbox.py /^ def _test_read(self, proxy):$/;" m class:TestProxyFileBase +_test_read Lib/test/test_zipfile/test_core.py /^ def _test_read(self, zipfp, expected_names, expected_content):$/;" m class:EncodedMetadataTests +_test_reading Lib/test/test_file_eintr.py /^ def _test_reading(self, data_to_write, read_and_verify_code):$/;" m class:TestFileIOSignalInterrupt +_test_readline Lib/test/test_mailbox.py /^ def _test_readline(self, proxy):$/;" m class:TestProxyFileBase +_test_readlines Lib/test/test_mailbox.py /^ def _test_readlines(self, proxy):$/;" m class:TestProxyFileBase +_test_recursion Lib/test/_test_multiprocessing.py /^ def _test_recursion(cls, wconn, id):$/;" m class:_TestProcess +_test_recursive_collection_and_inst Lib/test/pickletester.py /^ def _test_recursive_collection_and_inst(self, factory):$/;" m class:AbstractPickleTests +_test_recursive_dict Lib/test/pickletester.py /^ def _test_recursive_dict(self, cls, asdict=identity, minprotocol=0):$/;" m class:AbstractPickleTests +_test_recursive_dict_key Lib/test/pickletester.py /^ def _test_recursive_dict_key(self, cls, asdict=identity, minprotocol=0):$/;" m class:AbstractPickleTests +_test_recursive_list Lib/test/pickletester.py /^ def _test_recursive_list(self, cls, aslist=identity, minprotocol=0):$/;" m class:AbstractPickleTests +_test_recursive_tuple_and_dict Lib/test/pickletester.py /^ def _test_recursive_tuple_and_dict(self, cls, asdict=identity, minprotocol=0):$/;" m class:AbstractPickleTests +_test_recursive_tuple_and_dict_key Lib/test/pickletester.py /^ def _test_recursive_tuple_and_dict_key(self, cls, asdict=identity, minprotocol=0):$/;" m class:AbstractPickleTests +_test_recursive_tuple_and_list Lib/test/pickletester.py /^ def _test_recursive_tuple_and_list(self, cls, aslist=identity, minprotocol=0):$/;" m class:AbstractPickleTests +_test_recv Lib/test/_test_eintr.py /^ def _test_recv(self, recv_func):$/;" m class:SocketEINTRTest +_test_remove_or_delitem Lib/test/test_mailbox.py /^ def _test_remove_or_delitem(self, method):$/;" m class:TestMailbox +_test_report_parent_status Lib/test/_test_multiprocessing.py /^ def _test_report_parent_status(cls, wconn):$/;" m class:_TestProcess +_test_repr_or_str Lib/test/test_asyncio/test_queues.py /^ async def _test_repr_or_str(self, fn, expect_id):$/;" m class:QueueBasicTests +_test_required_subparsers Lib/test/test_argparse.py /^ def _test_required_subparsers(self, parser):$/;" m class:TestAddSubparsers +_test_reset_f Lib/test/_test_multiprocessing.py /^ def _test_reset_f(cls, barrier, results1, results2, results3):$/;" m class:_TestBarrier +_test_rlock Lib/test/_test_multiprocessing.py /^ def _test_rlock(cls, obj):$/;" m class:TestSyncManagerTypes +_test_samefile_on_link_func Lib/test/test_genericpath.py /^ def _test_samefile_on_link_func(self, func):$/;" m class:GenericTest +_test_samestat_on_link_func Lib/test/test_genericpath.py /^ def _test_samestat_on_link_func(self, func):$/;" m class:GenericTest +_test_seek_and_tell Lib/test/test_mailbox.py /^ def _test_seek_and_tell(self, proxy):$/;" m class:TestProxyFileBase +_test_selector_event Lib/asyncio/selector_events.py /^def _test_selector_event(selector, fd, event):$/;" f +_test_semaphore Lib/test/_test_multiprocessing.py /^ def _test_semaphore(cls, obj):$/;" m class:TestSyncManagerTypes +_test_semaphore Lib/test/_test_multiprocessing.py /^ def _test_semaphore(self, sem):$/;" m class:_TestSemaphore +_test_send Lib/test/_test_eintr.py /^ def _test_send(self, send_func):$/;" m class:SocketEINTRTest +_test_send_parent_process Lib/test/_test_multiprocessing.py /^ def _test_send_parent_process(cls, wconn):$/;" m class:_TestProcess +_test_sentinel Lib/test/_test_multiprocessing.py /^ def _test_sentinel(cls, event):$/;" m class:_TestProcess +_test_simple_enum Lib/enum.py /^def _test_simple_enum(checked_enum, simple_enum):$/;" f +_test_single Lib/test/test_unicode_file.py /^ def _test_single(self, filename):$/;" m class:TestUnicodeFiles +_test_sleep Lib/test/_test_multiprocessing.py /^ def _test_sleep(cls, delay):$/;" m class:_TestProcess +_test_socket_fileno Lib/test/test_socket.py /^ def _test_socket_fileno(self, s, family, stype):$/;" m class:GeneralModuleTests +_test_sparse_file Lib/test/test_tarfile.py /^ def _test_sparse_file(self, name):$/;" m class:GNUReadTest +_test_stderr_flush Lib/test/_test_multiprocessing.py /^ def _test_stderr_flush(cls, testfn):$/;" m class:_TestSubclassingProcess +_test_subparser_help Lib/test/test_argparse.py /^ def _test_subparser_help(self, args_str, expected_help):$/;" m class:TestAddSubparsers +_test_swapcase Lib/test/test_bigmem.py /^ def _test_swapcase(self, size):$/;" m class:BaseStrTest +_test_sys_exit Lib/test/_test_multiprocessing.py /^ def _test_sys_exit(cls, reason, testfn):$/;" m class:_TestSubclassingProcess +_test_task_done Lib/test/_test_multiprocessing.py /^ def _test_task_done(cls, q):$/;" m class:_TestQueue +_test_taskgroup_21 Lib/test/test_asyncio/test_taskgroups.py /^ async def _test_taskgroup_21(self):$/;" m class:TestTaskGroup +_test_thorough Lib/test/test_pulldom.py /^ def _test_thorough(self, pd, before_root=True):$/;" m class:ThoroughTestCase +_test_thousand_f Lib/test/_test_multiprocessing.py /^ def _test_thousand_f(cls, barrier, passes, conn, lock):$/;" m class:_TestBarrier +_test_timeout Lib/test/_test_multiprocessing.py /^ def _test_timeout(cls, child, address):$/;" m class:TestTimeouts +_test_timeout_f Lib/test/_test_multiprocessing.py /^ def _test_timeout_f(cls, barrier, results):$/;" m class:_TestBarrier +_test_title Lib/test/test_bigmem.py /^ def _test_title(self, size):$/;" m class:BaseStrTest +_test_token_x Lib/test/test_netrc.py /^ def _test_token_x(self, nrc, token, value):$/;" m class:NetrcTestCase +_test_traceback Lib/test/_test_multiprocessing.py /^ def _test_traceback(cls):$/;" m class:_TestPool +_test_traceback Lib/test/test_concurrent_futures/test_process_pool.py /^ def _test_traceback(cls):$/;" m class:ProcessPoolExecutorTest +_test_underlying_process_env Lib/test/test_os.py /^ def _test_underlying_process_env(self, var, expected):$/;" m class:EnvironTests +_test_unicode_filename Lib/test/test_tarfile.py /^ def _test_unicode_filename(self, encoding):$/;" m class:UnicodeTest +_test_urls Lib/test/test_urllib2net.py /^ def _test_urls(self, urls, handlers, retry=True):$/;" m class:OtherNetworkTests +_test_ustar_link Lib/test/test_tarfile.py /^ def _test_ustar_link(self, name, exc=None):$/;" m class:UstarUnicodeTest +_test_ustar_name Lib/test/test_tarfile.py /^ def _test_ustar_name(self, name, exc=None):$/;" m class:UstarUnicodeTest +_test_utime Lib/test/test_os.py /^ def _test_utime(self, set_time, filename=None):$/;" m class:UtimeTests +_test_utime_current Lib/test/test_os.py /^ def _test_utime_current(self, set_time):$/;" m class:UtimeTests +_test_value Lib/test/_test_multiprocessing.py /^ def _test_value(cls, obj):$/;" m class:TestSyncManagerTypes +_test_wait_for_threads Lib/test/_test_multiprocessing.py /^ def _test_wait_for_threads(self, evt):$/;" m class:_TestProcess +_test_wait_multiple Lib/test/_test_eintr.py /^ def _test_wait_multiple(self, wait_func):$/;" m class:OSEINTRTest +_test_wait_result Lib/test/_test_multiprocessing.py /^ def _test_wait_result(cls, c, pid):$/;" m class:_TestCondition +_test_wait_return_f Lib/test/_test_multiprocessing.py /^ def _test_wait_return_f(cls, barrier, queue):$/;" m class:_TestBarrier +_test_wait_single Lib/test/_test_eintr.py /^ def _test_wait_single(self, wait_func):$/;" m class:OSEINTRTest +_test_waitfor_f Lib/test/_test_multiprocessing.py /^ def _test_waitfor_f(cls, cond, state):$/;" m class:_TestCondition +_test_waitfor_timeout_f Lib/test/_test_multiprocessing.py /^ def _test_waitfor_timeout_f(cls, cond, state, success, sem):$/;" m class:_TestCondition +_test_widget Lib/test/test_tkinter/support.py /^ def _test_widget(self, constructor):$/;" m class:AbstractDefaultRootTest +_test_with_failure_in_method Lib/test/test_logging.py /^ def _test_with_failure_in_method(self, method, error):$/;" m class:ShutdownTest +_test_wrapped_exception Lib/test/_test_multiprocessing.py /^ def _test_wrapped_exception(cls):$/;" m class:_TestPool +_test_zip_works Lib/test/test_zipfile/test_core.py /^ def _test_zip_works(self, name):$/;" m class:TestExecutablePrependedZip +_testbuffer Lib/test/pickletester.py /^ _testbuffer = None$/;" v +_testbuffer_functions Modules/_testbuffer.c /^static struct PyMethodDef _testbuffer_functions[] = {$/;" v typeref:struct:PyMethodDef file: +_testbuffermodule Modules/_testbuffer.c /^static struct PyModuleDef _testbuffermodule = {$/;" v typeref:struct:PyModuleDef file: +_testcapi Lib/test/datetimetester.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_buffer.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_bytes.py /^ _testcapi = import_helper.import_module('_testcapi')$/;" v class:ByteArrayTest +_testcapi Lib/test/test_call.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_capi/test_codecs.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_eval_code_ex.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_exceptions.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_getargs.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_immortal.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_long.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_mem.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_misc.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_capi/test_unicode.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_capi/test_watchers.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_codecs.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_descr.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_dict_version.py /^_testcapi = import_helper.import_module('_testcapi')$/;" v +_testcapi Lib/test/test_faulthandler.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_fileutils.py /^_testcapi = import_helper.import_module('_testinternalcapi')$/;" v +_testcapi Lib/test/test_float.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_frame.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_generators.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_marshal.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_signal.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_subprocess.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_time.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_tracemalloc.py /^ _testcapi = None$/;" v +_testcapi Lib/test/test_unicode.py /^ _testcapi = None$/;" v +_testcapi_VectorCallClass_set_vectorcall Modules/_testcapi/clinic/vectorcall.c.h /^_testcapi_VectorCallClass_set_vectorcall(PyObject *self, PyObject *arg)$/;" f +_testcapi_VectorCallClass_set_vectorcall_impl Modules/_testcapi/vectorcall.c /^_testcapi_VectorCallClass_set_vectorcall_impl(PyObject *self,$/;" f file: +_testcapi_err_set_raised Modules/_testcapi/exceptions.c /^_testcapi_err_set_raised(PyObject *module, PyObject *exc)$/;" f file: +_testcapi_err_setfromerrnowithfilename Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_err_setfromerrnowithfilename(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_err_setfromerrnowithfilename_impl Modules/_testcapi/exceptions.c /^_testcapi_err_setfromerrnowithfilename_impl(PyObject *module, int error,$/;" f file: +_testcapi_err_setstring Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_err_setstring(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_err_setstring_impl Modules/_testcapi/exceptions.c /^_testcapi_err_setstring_impl(PyObject *module, PyObject *exc,$/;" f file: +_testcapi_exc_set_object Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_exc_set_object(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_exc_set_object_fetch Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_exc_set_object_fetch(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_exc_set_object_fetch_impl Modules/_testcapi/exceptions.c /^_testcapi_exc_set_object_fetch_impl(PyObject *module, PyObject *exc,$/;" f file: +_testcapi_exc_set_object_impl Modules/_testcapi/exceptions.c /^_testcapi_exc_set_object_impl(PyObject *module, PyObject *exc, PyObject *obj)$/;" f file: +_testcapi_exception_print Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_exception_print(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_exception_print_impl Modules/_testcapi/exceptions.c /^_testcapi_exception_print_impl(PyObject *module, PyObject *exc, int legacy)$/;" f file: +_testcapi_fatal_error Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_fatal_error(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_fatal_error_impl Modules/_testcapi/exceptions.c /^_testcapi_fatal_error_impl(PyObject *module, const char *message,$/;" f file: +_testcapi_float_pack Modules/_testcapi/clinic/float.c.h /^_testcapi_float_pack(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_float_pack_impl Modules/_testcapi/float.c /^_testcapi_float_pack_impl(PyObject *module, int size, double d, int le)$/;" f file: +_testcapi_float_unpack Modules/_testcapi/clinic/float.c.h /^_testcapi_float_unpack(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_float_unpack_impl Modules/_testcapi/float.c /^_testcapi_float_unpack_impl(PyObject *module, const char *data,$/;" f file: +_testcapi_has_vectorcall_flag Modules/_testcapi/clinic/vectorcall.c.h /^_testcapi_has_vectorcall_flag(PyObject *module, PyObject *arg)$/;" f +_testcapi_has_vectorcall_flag_impl Modules/_testcapi/vectorcall.c /^_testcapi_has_vectorcall_flag_impl(PyObject *module, PyTypeObject *type)$/;" f file: +_testcapi_make_exception_with_doc Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_make_exception_with_doc(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testcapi_make_exception_with_doc_impl Modules/_testcapi/exceptions.c /^_testcapi_make_exception_with_doc_impl(PyObject *module, const char *name,$/;" f file: +_testcapi_make_vectorcall_class Modules/_testcapi/clinic/vectorcall.c.h /^_testcapi_make_vectorcall_class(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_make_vectorcall_class_impl Modules/_testcapi/vectorcall.c /^_testcapi_make_vectorcall_class_impl(PyObject *module, PyTypeObject *base)$/;" f file: +_testcapi_raise_exception Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_raise_exception(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_raise_exception_impl Modules/_testcapi/exceptions.c /^_testcapi_raise_exception_impl(PyObject *module, PyObject *exc, int num_args)$/;" f file: +_testcapi_raise_memoryerror Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_raise_memoryerror(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_testcapi_raise_memoryerror_impl Modules/_testcapi/exceptions.c /^_testcapi_raise_memoryerror_impl(PyObject *module)$/;" f file: +_testcapi_set_exc_info Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_set_exc_info(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_set_exc_info_impl Modules/_testcapi/exceptions.c /^_testcapi_set_exc_info_impl(PyObject *module, PyObject *new_type,$/;" f file: +_testcapi_set_exception Modules/_testcapi/exceptions.c /^_testcapi_set_exception(PyObject *module, PyObject *new_exc)$/;" f file: +_testcapi_set_func_defaults_via_capi Modules/_testcapi/clinic/watchers.c.h /^_testcapi_set_func_defaults_via_capi(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_set_func_defaults_via_capi_impl Modules/_testcapi/watchers.c /^_testcapi_set_func_defaults_via_capi_impl(PyObject *module, PyObject *func,$/;" f file: +_testcapi_set_func_kwdefaults_via_capi Modules/_testcapi/clinic/watchers.c.h /^_testcapi_set_func_kwdefaults_via_capi(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_set_func_kwdefaults_via_capi_impl Modules/_testcapi/watchers.c /^_testcapi_set_func_kwdefaults_via_capi_impl(PyObject *module, PyObject *func,$/;" f file: +_testcapi_traceback_print Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_traceback_print(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_traceback_print_impl Modules/_testcapi/exceptions.c /^_testcapi_traceback_print_impl(PyObject *module, PyObject *traceback,$/;" f file: +_testcapi_unstable_exc_prep_reraise_star Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_unstable_exc_prep_reraise_star(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_unstable_exc_prep_reraise_star_impl Modules/_testcapi/exceptions.c /^_testcapi_unstable_exc_prep_reraise_star_impl(PyObject *module,$/;" f file: +_testcapi_unwatch_dict Modules/_testcapi/clinic/watchers.c.h /^_testcapi_unwatch_dict(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_unwatch_dict_impl Modules/_testcapi/watchers.c /^_testcapi_unwatch_dict_impl(PyObject *module, int watcher_id, PyObject *dict)$/;" f file: +_testcapi_unwatch_type Modules/_testcapi/clinic/watchers.c.h /^_testcapi_unwatch_type(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_unwatch_type_impl Modules/_testcapi/watchers.c /^_testcapi_unwatch_type_impl(PyObject *module, int watcher_id, PyObject *type)$/;" f file: +_testcapi_watch_dict Modules/_testcapi/clinic/watchers.c.h /^_testcapi_watch_dict(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_watch_dict_impl Modules/_testcapi/watchers.c /^_testcapi_watch_dict_impl(PyObject *module, int watcher_id, PyObject *dict)$/;" f file: +_testcapi_watch_type Modules/_testcapi/clinic/watchers.c.h /^_testcapi_watch_type(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_watch_type_impl Modules/_testcapi/watchers.c /^_testcapi_watch_type_impl(PyObject *module, int watcher_id, PyObject *type)$/;" f file: +_testcapi_write_unraisable_exc Modules/_testcapi/clinic/exceptions.c.h /^_testcapi_write_unraisable_exc(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_testcapi_write_unraisable_exc_impl Modules/_testcapi/exceptions.c /^_testcapi_write_unraisable_exc_impl(PyObject *module, PyObject *exc,$/;" f file: +_testcapimodule Modules/_testcapi/heaptype.c /^static struct PyModuleDef *_testcapimodule = NULL; \/\/ set at initialization$/;" v typeref:struct:PyModuleDef file: +_testcapimodule Modules/_testcapi/unicode.c /^static struct PyModuleDef *_testcapimodule = NULL; \/\/ set at initialization$/;" v typeref:struct:PyModuleDef file: +_testcapimodule Modules/_testcapimodule.c /^static struct PyModuleDef _testcapimodule = {$/;" v typeref:struct:PyModuleDef file: +_testcapimodule Modules/_testcapimodule.c /^static struct PyModuleDef _testcapimodule;$/;" v typeref:struct:PyModuleDef file: +_testcapimodule Modules/_testinternalcapi.c /^static struct PyModuleDef _testcapimodule = {$/;" v typeref:struct:PyModuleDef file: +_testclasses Lib/test/test_email/torture_test.py /^def _testclasses():$/;" f +_testclinic_module Modules/_testclinic.c /^static struct PyModuleDef _testclinic_module = {$/;" v typeref:struct:PyModuleDef file: +_testconsole_read_output PC/clinic/_testconsole.c.h /^_testconsole_read_output(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testconsole_read_output_impl PC/_testconsole.c /^_testconsole_read_output_impl(PyObject *module, PyObject *file)$/;" f file: +_testconsole_write_input PC/clinic/_testconsole.c.h /^_testconsole_write_input(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testconsole_write_input_impl PC/_testconsole.c /^_testconsole_write_input_impl(PyObject *module, PyObject *file,$/;" f file: +_testcppext_exec Lib/test/test_cppext/extension.cpp /^_testcppext_exec(PyObject *module)$/;" f file: +_testcppext_methods Lib/test/test_cppext/extension.cpp /^static PyMethodDef _testcppext_methods[] = {$/;" v file: +_testcppext_module Lib/test/test_cppext/extension.cpp /^static struct PyModuleDef _testcppext_module = {$/;" v typeref:struct:PyModuleDef file: +_testcppext_slots Lib/test/test_cppext/extension.cpp /^static PyModuleDef_Slot _testcppext_slots[] = {$/;" v file: +_testdata Lib/test/pickletester.py /^ _testdata = AbstractUnpickleTests._testdata$/;" v class:AbstractPickleTests +_testdata Lib/test/pickletester.py /^ _testdata = create_data()$/;" v class:AbstractUnpickleTests +_testembed_Py_Initialize Programs/_testembed.c /^static void _testembed_Py_Initialize(void)$/;" f file: +_testembed_Py_InitializeFromConfig Programs/_testembed.c /^static void _testembed_Py_InitializeFromConfig(void)$/;" f file: +_testfunc_D_bhilfD Modules/_ctypes/_ctypes_test.c /^EXPORT(long double) _testfunc_D_bhilfD(signed char b, short h, int i, long l, float f, long double d)$/;" f +_testfunc_ai8 Modules/_ctypes/_ctypes_test.c /^EXPORT(int *) _testfunc_ai8(int a[8])$/;" f +_testfunc_array_in_struct1 Modules/_ctypes/_ctypes_test.c /^_testfunc_array_in_struct1(Test2 in)$/;" f +_testfunc_array_in_struct2 Modules/_ctypes/_ctypes_test.c /^_testfunc_array_in_struct2(Test3 in)$/;" f +_testfunc_array_in_struct2a Modules/_ctypes/_ctypes_test.c /^_testfunc_array_in_struct2a(Test3B in)$/;" f +_testfunc_bitfield_by_reference1 Modules/_ctypes/_ctypes_test.c /^_testfunc_bitfield_by_reference1(Test6 *in) {$/;" f +_testfunc_bitfield_by_reference2 Modules/_ctypes/_ctypes_test.c /^_testfunc_bitfield_by_reference2(Test7 *in) {$/;" f +_testfunc_bitfield_by_value1 Modules/_ctypes/_ctypes_test.c /^_testfunc_bitfield_by_value1(Test6 in) {$/;" f +_testfunc_bitfield_by_value2 Modules/_ctypes/_ctypes_test.c /^_testfunc_bitfield_by_value2(Test8 in) {$/;" f +_testfunc_byval Modules/_ctypes/_ctypes_test.c /^EXPORT(int) _testfunc_byval(point in, point *pout)$/;" f +_testfunc_c_p_p Modules/_ctypes/_ctypes_test.c /^EXPORT(void *) _testfunc_c_p_p(int *argcp, char **argv)$/;" f +_testfunc_callback_i_if Modules/_ctypes/_ctypes_test.c /^EXPORT(int) _testfunc_callback_i_if(int value, int (*func)(int))$/;" f +_testfunc_callback_q_qf Modules/_ctypes/_ctypes_test.c /^EXPORT(long long) _testfunc_callback_q_qf(long long value,$/;" f +_testfunc_callback_with_pointer Modules/_ctypes/_ctypes_test.c /^EXPORT(int) _testfunc_callback_with_pointer(int (*func)(int *))$/;" f +_testfunc_callfuncp Modules/_ctypes/_ctypes_test.c /^EXPORT(int) _testfunc_callfuncp(FUNCS *fp)$/;" f +_testfunc_cbk_large_struct Modules/_ctypes/_ctypes_test.c /^_testfunc_cbk_large_struct(Test in, void (*func)(Test))$/;" f +_testfunc_cbk_reg_double Modules/_ctypes/_ctypes_test.c /^_testfunc_cbk_reg_double(double a, double b, double c, double d, double e,$/;" f +_testfunc_cbk_reg_int Modules/_ctypes/_ctypes_test.c /^_testfunc_cbk_reg_int(int a, int b, int c, int d, int e,$/;" f +_testfunc_d_bhilfd Modules/_ctypes/_ctypes_test.c /^EXPORT(double) _testfunc_d_bhilfd(signed char b, short h, int i, long l, float f, double d)$/;" f +_testfunc_deref_pointer Modules/_ctypes/_ctypes_test.c /^EXPORT(int) _testfunc_deref_pointer(int *pi)$/;" f +_testfunc_f_bhilfd Modules/_ctypes/_ctypes_test.c /^EXPORT(float) _testfunc_f_bhilfd(signed char b, short h, int i, long l, float f, double d)$/;" f +_testfunc_file Lib/test/test_tarfile.py /^ def _testfunc_file(self, name, mode):$/;" m class:DetectReadTest +_testfunc_fileobj Lib/test/test_tarfile.py /^ def _testfunc_fileobj(self, name, mode):$/;" m class:DetectReadTest +_testfunc_i_bhilfd Modules/_ctypes/_ctypes_test.c /^EXPORT(int) _testfunc_i_bhilfd(signed char b, short h, int i, long l, float f, double d)$/;" f +_testfunc_large_struct_update_value Modules/_ctypes/_ctypes_test.c /^_testfunc_large_struct_update_value(Test in)$/;" f +_testfunc_p_p Modules/_ctypes/_ctypes_test.c /^EXPORT(char *) _testfunc_p_p(void *s)$/;" f +_testfunc_piunk Modules/_ctypes/_ctypes_test.c /^EXPORT(int) _testfunc_piunk(IUnknown FAR *piunk)$/;" f +_testfunc_pylist_append Modules/_ctypes/_ctypes_test.c /^_testfunc_pylist_append(PyObject *list, PyObject *item)$/;" f +_testfunc_q_bhilfd Modules/_ctypes/_ctypes_test.c /^EXPORT(long long) _testfunc_q_bhilfd(signed char b, short h, int i, long l, float f, double d)$/;" f +_testfunc_q_bhilfdq Modules/_ctypes/_ctypes_test.c /^EXPORT(long long) _testfunc_q_bhilfdq(signed char b, short h, int i, long l, float f,$/;" f +_testfunc_reg_struct_update_value Modules/_ctypes/_ctypes_test.c /^_testfunc_reg_struct_update_value(TestReg in)$/;" f +_testfunc_union_by_reference1 Modules/_ctypes/_ctypes_test.c /^_testfunc_union_by_reference1(Test4 *in) {$/;" f +_testfunc_union_by_reference2 Modules/_ctypes/_ctypes_test.c /^_testfunc_union_by_reference2(Test4 *in) {$/;" f +_testfunc_union_by_reference3 Modules/_ctypes/_ctypes_test.c /^_testfunc_union_by_reference3(Test5 *in) {$/;" f +_testfunc_union_by_value1 Modules/_ctypes/_ctypes_test.c /^_testfunc_union_by_value1(Test4 in) {$/;" f +_testfunc_union_by_value2 Modules/_ctypes/_ctypes_test.c /^_testfunc_union_by_value2(Test5 in) {$/;" f +_testfunc_v Modules/_ctypes/_ctypes_test.c /^EXPORT(void) _testfunc_v(int a, int b, int *presult)$/;" f +_testimportmultiple Modules/_testimportmultiple.c /^static struct PyModuleDef _testimportmultiple = {$/;" v typeref:struct:PyModuleDef file: +_testinternalcapi Lib/test/test_codecs.py /^ _testinternalcapi = None$/;" v +_testinternalcapi_assemble_code_object Modules/clinic/_testinternalcapi.c.h /^_testinternalcapi_assemble_code_object(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testinternalcapi_assemble_code_object_impl Modules/_testinternalcapi.c /^_testinternalcapi_assemble_code_object_impl(PyObject *module,$/;" f file: +_testinternalcapi_compiler_codegen Modules/clinic/_testinternalcapi.c.h /^_testinternalcapi_compiler_codegen(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testinternalcapi_compiler_codegen_impl Modules/_testinternalcapi.c /^_testinternalcapi_compiler_codegen_impl(PyObject *module, PyObject *ast,$/;" f file: +_testinternalcapi_optimize_cfg Modules/clinic/_testinternalcapi.c.h /^_testinternalcapi_optimize_cfg(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testinternalcapi_optimize_cfg_impl Modules/_testinternalcapi.c /^_testinternalcapi_optimize_cfg_impl(PyObject *module, PyObject *instructions,$/;" f file: +_testmultiphase Lib/test/test_capi/test_misc.py /^ _testmultiphase = None$/;" v +_testmultiphase Lib/test/test_import/__init__.py /^ _testmultiphase = None$/;" v +_testmultiphase Lib/test/test_importlib/test_util.py /^ _testmultiphase = None$/;" v +_testmultiphase_StateAccessType_get_count Modules/clinic/_testmultiphase.c.h /^_testmultiphase_StateAccessType_get_count(StateAccessTypeObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testmultiphase_StateAccessType_get_count_impl Modules/_testmultiphase.c /^_testmultiphase_StateAccessType_get_count_impl(StateAccessTypeObject *self,$/;" f file: +_testmultiphase_StateAccessType_get_defining_module Modules/clinic/_testmultiphase.c.h /^_testmultiphase_StateAccessType_get_defining_module(StateAccessTypeObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testmultiphase_StateAccessType_get_defining_module_impl Modules/_testmultiphase.c /^_testmultiphase_StateAccessType_get_defining_module_impl(StateAccessTypeObject *self,$/;" f file: +_testmultiphase_StateAccessType_getmodulebydef_bad_def Modules/clinic/_testmultiphase.c.h /^_testmultiphase_StateAccessType_getmodulebydef_bad_def(StateAccessTypeObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testmultiphase_StateAccessType_getmodulebydef_bad_def_impl Modules/_testmultiphase.c /^_testmultiphase_StateAccessType_getmodulebydef_bad_def_impl(StateAccessTypeObject *self,$/;" f file: +_testmultiphase_StateAccessType_increment_count_clinic Modules/clinic/_testmultiphase.c.h /^_testmultiphase_StateAccessType_increment_count_clinic(StateAccessTypeObject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_testmultiphase_StateAccessType_increment_count_clinic_impl Modules/_testmultiphase.c /^_testmultiphase_StateAccessType_increment_count_clinic_impl(StateAccessTypeObject *self,$/;" f file: +_testpoint Lib/test/multibytecodec_support.py /^ def _testpoint(self, csetch, unich):$/;" m class:TestBase_Mapping +_testsinglephase Lib/test/test_capi/test_misc.py /^ _testsinglephase = None$/;" v +_testsinglephase Lib/test/test_import/__init__.py /^ _testsinglephase = None$/;" v +_testsinglephase Lib/test/test_importlib/test_util.py /^ _testsinglephase = None$/;" v +_testsinglephase_basic Modules/_testsinglephase.c /^static struct PyModuleDef _testsinglephase_basic = {$/;" v typeref:struct:PyModuleDef file: +_testsinglephase_with_reinit Modules/_testsinglephase.c /^static struct PyModuleDef _testsinglephase_with_reinit = {$/;" v typeref:struct:PyModuleDef file: +_testsinglephase_with_state Modules/_testsinglephase.c /^static struct PyModuleDef _testsinglephase_with_state = {$/;" v typeref:struct:PyModuleDef file: +_text_accumulator Tools/clinic/clinic.py /^def _text_accumulator() -> _TextAccumulator:$/;" f +_text_encoding Lib/subprocess.py /^def _text_encoding():$/;" f +_text_openflags Lib/tempfile.py /^_text_openflags = _os.O_RDWR | _os.O_CREAT | _os.O_EXCL$/;" v +_text_with_2000_lines Tools/stringbench/stringbench.py /^_text_with_2000_lines = _make_2000_lines()$/;" v +_text_with_2000_lines_bytes Tools/stringbench/stringbench.py /^_text_with_2000_lines_bytes = bytes_from_str(_text_with_2000_lines)$/;" v +_text_with_2000_lines_unicode Tools/stringbench/stringbench.py /^_text_with_2000_lines_unicode = unicode_from_str(_text_with_2000_lines)$/;" v +_text_ws Doc/tools/extensions/asdl_highlight.py /^ _text_ws = r"(\\s*)"$/;" v class:ASDLLexer +_text_ws Doc/tools/extensions/peg_highlight.py /^ _text_ws = r"(\\s*)"$/;" v class:PEGLexer +_textiowrapper_decode Modules/_io/textio.c /^_textiowrapper_decode(_PyIO_State *state, PyObject *decoder, PyObject *bytes,$/;" f file: +_textiowrapper_decoder_setstate Modules/_io/textio.c /^_textiowrapper_decoder_setstate(textio *self, cookie_type *cookie)$/;" f file: +_textiowrapper_encoder_reset Modules/_io/textio.c /^_textiowrapper_encoder_reset(textio *self, int start_of_stream)$/;" f file: +_textiowrapper_encoder_setstate Modules/_io/textio.c /^_textiowrapper_encoder_setstate(textio *self, cookie_type *cookie)$/;" f file: +_textiowrapper_fix_encoder_state Modules/_io/textio.c /^_textiowrapper_fix_encoder_state(textio *self)$/;" f file: +_textiowrapper_readline Modules/_io/textio.c /^_textiowrapper_readline(textio *self, Py_ssize_t limit)$/;" f file: +_textiowrapper_set_decoder Modules/_io/textio.c /^_textiowrapper_set_decoder(textio *self, PyObject *codec_info,$/;" f file: +_textiowrapper_set_encoder Modules/_io/textio.c /^_textiowrapper_set_encoder(textio *self, PyObject *codec_info,$/;" f file: +_textiowrapper_writeflush Modules/_io/textio.c /^_textiowrapper_writeflush(textio *self)$/;" f file: +_tflags Lib/test/test_tempfile.py /^ _tflags = tempfile._text_openflags$/;" v class:TestMkstempInner.mkstemped +_tg_classes Lib/turtle.py /^_tg_classes = ['ScrolledCanvas', 'TurtleScreen', 'Screen',$/;" v +_tg_screen_functions Lib/turtle.py /^_tg_screen_functions = ['addshape', 'bgcolor', 'bgpic', 'bye',$/;" v +_tg_turtle_functions Lib/turtle.py /^_tg_turtle_functions = ['back', 'backward', 'begin_fill', 'begin_poly', 'bk',$/;" v +_tg_utilities Lib/turtle.py /^_tg_utilities = ['write_docstringdict', 'done']$/;" v +_theme Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ THEME* _theme;$/;" m class:PythonBootstrapperApplication file: +_this_sub_process Lib/test/_test_multiprocessing.py /^def _this_sub_process(q):$/;" f +_thishost Lib/urllib/request.py /^_thishost = None$/;" v +_thread Lib/importlib/_bootstrap.py /^_thread = None$/;" v +_threading_atexits Lib/threading.py /^_threading_atexits = []$/;" v +_threads Lib/socketserver.py /^ _threads = _NoThreads()$/;" v class:ThreadingMixIn +_threads_queues Lib/concurrent/futures/thread.py /^_threads_queues = weakref.WeakKeyDictionary()$/;" v +_threads_wakeups Lib/concurrent/futures/process.py /^_threads_wakeups = weakref.WeakKeyDictionary()$/;" v +_tiff Lib/email/mime/image.py /^def _tiff(h):$/;" f +_time_class Lib/_pydatetime.py /^_time_class = time # so functions w\/ args named "time" can get at the class$/;" v +_time_runtime_state Include/internal/pycore_time.h /^struct _time_runtime_state {$/;" s +_time_units Lib/test/test_optparse.py /^_time_units = { 's' : 1, 'm' : 60, 'h' : 60*60, 'd' : 60*60*24 }$/;" v +_timegm Lib/http/cookiejar.py /^def _timegm(tt):$/;" f +_timer_handle_cancelled Lib/asyncio/base_events.py /^ def _timer_handle_cancelled(self, handle):$/;" m class:BaseEventLoop +_timer_handle_cancelled Lib/asyncio/events.py /^ def _timer_handle_cancelled(self, handle):$/;" m class:AbstractEventLoop +_timezone_check_argument Modules/_datetimemodule.c /^_timezone_check_argument(PyObject *dt, const char *meth)$/;" f file: +_timezones Lib/email/_parseaddr.py /^_timezones = {'UT':0, 'UTC':0, 'GMT':0, 'Z':0,$/;" v +_title Lib/turtle.py /^ _title = _CFG["title"]$/;" v class:_Screen +_tk Lib/tkinter/__init__.py /^ _tk = None$/;" v class:Variable +_tk_patchlevel Lib/test/test_tkinter/support.py /^_tk_patchlevel = None$/;" v +_tk_type Lib/idlelib/macosx.py /^_tk_type = None$/;" v +_tkerror Lib/tkinter/__init__.py /^def _tkerror(err):$/;" f +_tkinter Lib/test/test_tcl.py /^_tkinter = import_helper.import_module('_tkinter')$/;" v +_tkinter Lib/test/test_tix.py /^_tkinter = import_helper.import_module('_tkinter')$/;" v +_tkinter__flatten Modules/_tkinter.c /^_tkinter__flatten(PyObject *module, PyObject *item)$/;" f file: +_tkinter_create Modules/clinic/_tkinter.c.h /^_tkinter_create(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_tkinter_create_impl Modules/_tkinter.c /^_tkinter_create_impl(PyObject *module, const char *screenName,$/;" f file: +_tkinter_getbusywaitinterval Modules/clinic/_tkinter.c.h /^_tkinter_getbusywaitinterval(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tkinter_getbusywaitinterval_impl Modules/_tkinter.c /^_tkinter_getbusywaitinterval_impl(PyObject *module)$/;" f file: +_tkinter_setbusywaitinterval Modules/clinic/_tkinter.c.h /^_tkinter_setbusywaitinterval(PyObject *module, PyObject *arg)$/;" f +_tkinter_setbusywaitinterval_impl Modules/_tkinter.c /^_tkinter_setbusywaitinterval_impl(PyObject *module, int new_val)$/;" f file: +_tkinter_tkapp_adderrorinfo Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_adderrorinfo(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_adderrorinfo_impl Modules/_tkinter.c /^_tkinter_tkapp_adderrorinfo_impl(TkappObject *self, const char *msg)$/;" f file: +_tkinter_tkapp_createcommand Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_createcommand(TkappObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_tkinter_tkapp_createcommand_impl Modules/_tkinter.c /^_tkinter_tkapp_createcommand_impl(TkappObject *self, const char *name,$/;" f file: +_tkinter_tkapp_createfilehandler Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_createfilehandler(TkappObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_tkinter_tkapp_createfilehandler_impl Modules/_tkinter.c /^_tkinter_tkapp_createfilehandler_impl(TkappObject *self, PyObject *file,$/;" f file: +_tkinter_tkapp_createtimerhandler Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_createtimerhandler(TkappObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_tkinter_tkapp_createtimerhandler_impl Modules/_tkinter.c /^_tkinter_tkapp_createtimerhandler_impl(TkappObject *self, int milliseconds,$/;" f file: +_tkinter_tkapp_deletecommand Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_deletecommand(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_deletecommand_impl Modules/_tkinter.c /^_tkinter_tkapp_deletecommand_impl(TkappObject *self, const char *name)$/;" f file: +_tkinter_tkapp_deletefilehandler Modules/_tkinter.c /^_tkinter_tkapp_deletefilehandler(TkappObject *self, PyObject *file)$/;" f file: +_tkinter_tkapp_dooneevent Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_dooneevent(TkappObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_tkinter_tkapp_dooneevent_impl Modules/_tkinter.c /^_tkinter_tkapp_dooneevent_impl(TkappObject *self, int flags)$/;" f file: +_tkinter_tkapp_eval Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_eval(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_eval_impl Modules/_tkinter.c /^_tkinter_tkapp_eval_impl(TkappObject *self, const char *script)$/;" f file: +_tkinter_tkapp_evalfile Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_evalfile(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_evalfile_impl Modules/_tkinter.c /^_tkinter_tkapp_evalfile_impl(TkappObject *self, const char *fileName)$/;" f file: +_tkinter_tkapp_exprboolean Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_exprboolean(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_exprboolean_impl Modules/_tkinter.c /^_tkinter_tkapp_exprboolean_impl(TkappObject *self, const char *s)$/;" f file: +_tkinter_tkapp_exprdouble Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_exprdouble(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_exprdouble_impl Modules/_tkinter.c /^_tkinter_tkapp_exprdouble_impl(TkappObject *self, const char *s)$/;" f file: +_tkinter_tkapp_exprlong Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_exprlong(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_exprlong_impl Modules/_tkinter.c /^_tkinter_tkapp_exprlong_impl(TkappObject *self, const char *s)$/;" f file: +_tkinter_tkapp_exprstring Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_exprstring(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_exprstring_impl Modules/_tkinter.c /^_tkinter_tkapp_exprstring_impl(TkappObject *self, const char *s)$/;" f file: +_tkinter_tkapp_getboolean Modules/_tkinter.c /^_tkinter_tkapp_getboolean(TkappObject *self, PyObject *arg)$/;" f file: +_tkinter_tkapp_getdouble Modules/_tkinter.c /^_tkinter_tkapp_getdouble(TkappObject *self, PyObject *arg)$/;" f file: +_tkinter_tkapp_getint Modules/_tkinter.c /^_tkinter_tkapp_getint(TkappObject *self, PyObject *arg)$/;" f file: +_tkinter_tkapp_interpaddr Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_interpaddr(TkappObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_tkinter_tkapp_interpaddr_impl Modules/_tkinter.c /^_tkinter_tkapp_interpaddr_impl(TkappObject *self)$/;" f file: +_tkinter_tkapp_loadtk Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_loadtk(TkappObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_tkinter_tkapp_loadtk_impl Modules/_tkinter.c /^_tkinter_tkapp_loadtk_impl(TkappObject *self)$/;" f file: +_tkinter_tkapp_mainloop Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_mainloop(TkappObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +_tkinter_tkapp_mainloop_impl Modules/_tkinter.c /^_tkinter_tkapp_mainloop_impl(TkappObject *self, int threshold)$/;" f file: +_tkinter_tkapp_quit Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_quit(TkappObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_tkinter_tkapp_quit_impl Modules/_tkinter.c /^_tkinter_tkapp_quit_impl(TkappObject *self)$/;" f file: +_tkinter_tkapp_record Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_record(TkappObject *self, PyObject *arg)$/;" f +_tkinter_tkapp_record_impl Modules/_tkinter.c /^_tkinter_tkapp_record_impl(TkappObject *self, const char *script)$/;" f file: +_tkinter_tkapp_splitlist Modules/_tkinter.c /^_tkinter_tkapp_splitlist(TkappObject *self, PyObject *arg)$/;" f file: +_tkinter_tkapp_willdispatch Modules/clinic/_tkinter.c.h /^_tkinter_tkapp_willdispatch(TkappObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_tkinter_tkapp_willdispatch_impl Modules/_tkinter.c /^_tkinter_tkapp_willdispatch_impl(TkappObject *self)$/;" f file: +_tkinter_tktimertoken_deletetimerhandler Modules/clinic/_tkinter.c.h /^_tkinter_tktimertoken_deletetimerhandler(TkttObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_tkinter_tktimertoken_deletetimerhandler_impl Modules/_tkinter.c /^_tkinter_tktimertoken_deletetimerhandler_impl(TkttObject *self)$/;" f file: +_tkintermodule Modules/_tkinter.c /^static struct PyModuleDef _tkintermodule = {$/;" v typeref:struct:PyModuleDef file: +_tls Lib/multiprocessing/context.py /^_tls = threading.local()$/;" v +_tmp_10_rule Parser/parser.c /^_tmp_10_rule(Parser *p)$/;" f file: +_tmp_10_type Parser/parser.c 334;" d file: +_tmp_113_rule Parser/parser.c /^_tmp_113_rule(Parser *p)$/;" f file: +_tmp_113_type Parser/parser.c 437;" d file: +_tmp_116_rule Parser/parser.c /^_tmp_116_rule(Parser *p)$/;" f file: +_tmp_116_type Parser/parser.c 440;" d file: +_tmp_11_rule Parser/parser.c /^_tmp_11_rule(Parser *p)$/;" f file: +_tmp_11_type Parser/parser.c 335;" d file: +_tmp_122_rule Parser/parser.c /^_tmp_122_rule(Parser *p)$/;" f file: +_tmp_122_type Parser/parser.c 446;" d file: +_tmp_125_rule Parser/parser.c /^_tmp_125_rule(Parser *p)$/;" f file: +_tmp_125_type Parser/parser.c 449;" d file: +_tmp_12_rule Parser/parser.c /^_tmp_12_rule(Parser *p)$/;" f file: +_tmp_12_type Parser/parser.c 336;" d file: +_tmp_138_rule Parser/parser.c /^_tmp_138_rule(Parser *p)$/;" f file: +_tmp_138_type Parser/parser.c 462;" d file: +_tmp_13_rule Parser/parser.c /^_tmp_13_rule(Parser *p)$/;" f file: +_tmp_13_type Parser/parser.c 337;" d file: +_tmp_149_rule Parser/parser.c /^_tmp_149_rule(Parser *p)$/;" f file: +_tmp_149_type Parser/parser.c 473;" d file: +_tmp_14_rule Parser/parser.c /^_tmp_14_rule(Parser *p)$/;" f file: +_tmp_14_type Parser/parser.c 338;" d file: +_tmp_150_rule Parser/parser.c /^_tmp_150_rule(Parser *p)$/;" f file: +_tmp_150_type Parser/parser.c 474;" d file: +_tmp_151_rule Parser/parser.c /^_tmp_151_rule(Parser *p)$/;" f file: +_tmp_151_type Parser/parser.c 475;" d file: +_tmp_152_rule Parser/parser.c /^_tmp_152_rule(Parser *p)$/;" f file: +_tmp_152_type Parser/parser.c 476;" d file: +_tmp_153_rule Parser/parser.c /^_tmp_153_rule(Parser *p)$/;" f file: +_tmp_153_type Parser/parser.c 477;" d file: +_tmp_154_rule Parser/parser.c /^_tmp_154_rule(Parser *p)$/;" f file: +_tmp_154_type Parser/parser.c 478;" d file: +_tmp_155_rule Parser/parser.c /^_tmp_155_rule(Parser *p)$/;" f file: +_tmp_155_type Parser/parser.c 479;" d file: +_tmp_156_rule Parser/parser.c /^_tmp_156_rule(Parser *p)$/;" f file: +_tmp_156_type Parser/parser.c 480;" d file: +_tmp_157_rule Parser/parser.c /^_tmp_157_rule(Parser *p)$/;" f file: +_tmp_157_type Parser/parser.c 481;" d file: +_tmp_158_rule Parser/parser.c /^_tmp_158_rule(Parser *p)$/;" f file: +_tmp_158_type Parser/parser.c 482;" d file: +_tmp_159_rule Parser/parser.c /^_tmp_159_rule(Parser *p)$/;" f file: +_tmp_159_type Parser/parser.c 483;" d file: +_tmp_163_rule Parser/parser.c /^_tmp_163_rule(Parser *p)$/;" f file: +_tmp_163_type Parser/parser.c 487;" d file: +_tmp_164_rule Parser/parser.c /^_tmp_164_rule(Parser *p)$/;" f file: +_tmp_164_type Parser/parser.c 488;" d file: +_tmp_165_rule Parser/parser.c /^_tmp_165_rule(Parser *p)$/;" f file: +_tmp_165_type Parser/parser.c 489;" d file: +_tmp_166_rule Parser/parser.c /^_tmp_166_rule(Parser *p)$/;" f file: +_tmp_166_type Parser/parser.c 490;" d file: +_tmp_167_rule Parser/parser.c /^_tmp_167_rule(Parser *p)$/;" f file: +_tmp_167_type Parser/parser.c 491;" d file: +_tmp_16_rule Parser/parser.c /^_tmp_16_rule(Parser *p)$/;" f file: +_tmp_16_type Parser/parser.c 340;" d file: +_tmp_172_rule Parser/parser.c /^_tmp_172_rule(Parser *p)$/;" f file: +_tmp_172_type Parser/parser.c 496;" d file: +_tmp_174_rule Parser/parser.c /^_tmp_174_rule(Parser *p)$/;" f file: +_tmp_174_type Parser/parser.c 498;" d file: +_tmp_177_rule Parser/parser.c /^_tmp_177_rule(Parser *p)$/;" f file: +_tmp_177_type Parser/parser.c 501;" d file: +_tmp_178_rule Parser/parser.c /^_tmp_178_rule(Parser *p)$/;" f file: +_tmp_178_type Parser/parser.c 502;" d file: +_tmp_179_rule Parser/parser.c /^_tmp_179_rule(Parser *p)$/;" f file: +_tmp_179_type Parser/parser.c 503;" d file: +_tmp_17_rule Parser/parser.c /^_tmp_17_rule(Parser *p)$/;" f file: +_tmp_17_type Parser/parser.c 341;" d file: +_tmp_181_rule Parser/parser.c /^_tmp_181_rule(Parser *p)$/;" f file: +_tmp_181_type Parser/parser.c 505;" d file: +_tmp_182_rule Parser/parser.c /^_tmp_182_rule(Parser *p)$/;" f file: +_tmp_182_type Parser/parser.c 506;" d file: +_tmp_184_rule Parser/parser.c /^_tmp_184_rule(Parser *p)$/;" f file: +_tmp_184_type Parser/parser.c 508;" d file: +_tmp_18_rule Parser/parser.c /^_tmp_18_rule(Parser *p)$/;" f file: +_tmp_18_type Parser/parser.c 342;" d file: +_tmp_190_rule Parser/parser.c /^_tmp_190_rule(Parser *p)$/;" f file: +_tmp_190_type Parser/parser.c 514;" d file: +_tmp_192_rule Parser/parser.c /^_tmp_192_rule(Parser *p)$/;" f file: +_tmp_192_type Parser/parser.c 516;" d file: +_tmp_196_rule Parser/parser.c /^_tmp_196_rule(Parser *p)$/;" f file: +_tmp_196_type Parser/parser.c 520;" d file: +_tmp_197_rule Parser/parser.c /^_tmp_197_rule(Parser *p)$/;" f file: +_tmp_197_type Parser/parser.c 521;" d file: +_tmp_199_rule Parser/parser.c /^_tmp_199_rule(Parser *p)$/;" f file: +_tmp_199_type Parser/parser.c 523;" d file: +_tmp_200_rule Parser/parser.c /^_tmp_200_rule(Parser *p)$/;" f file: +_tmp_200_type Parser/parser.c 524;" d file: +_tmp_201_rule Parser/parser.c /^_tmp_201_rule(Parser *p)$/;" f file: +_tmp_201_type Parser/parser.c 525;" d file: +_tmp_212_rule Parser/parser.c /^_tmp_212_rule(Parser *p)$/;" f file: +_tmp_212_type Parser/parser.c 536;" d file: +_tmp_215_rule Parser/parser.c /^_tmp_215_rule(Parser *p)$/;" f file: +_tmp_215_type Parser/parser.c 539;" d file: +_tmp_218_rule Parser/parser.c /^_tmp_218_rule(Parser *p)$/;" f file: +_tmp_218_type Parser/parser.c 542;" d file: +_tmp_219_rule Parser/parser.c /^_tmp_219_rule(Parser *p)$/;" f file: +_tmp_219_type Parser/parser.c 543;" d file: +_tmp_220_rule Parser/parser.c /^_tmp_220_rule(Parser *p)$/;" f file: +_tmp_220_type Parser/parser.c 544;" d file: +_tmp_221_rule Parser/parser.c /^_tmp_221_rule(Parser *p)$/;" f file: +_tmp_221_type Parser/parser.c 545;" d file: +_tmp_222_rule Parser/parser.c /^_tmp_222_rule(Parser *p)$/;" f file: +_tmp_222_type Parser/parser.c 546;" d file: +_tmp_223_rule Parser/parser.c /^_tmp_223_rule(Parser *p)$/;" f file: +_tmp_223_type Parser/parser.c 547;" d file: +_tmp_224_rule Parser/parser.c /^_tmp_224_rule(Parser *p)$/;" f file: +_tmp_224_type Parser/parser.c 548;" d file: +_tmp_225_rule Parser/parser.c /^_tmp_225_rule(Parser *p)$/;" f file: +_tmp_225_type Parser/parser.c 549;" d file: +_tmp_226_rule Parser/parser.c /^_tmp_226_rule(Parser *p)$/;" f file: +_tmp_226_type Parser/parser.c 550;" d file: +_tmp_227_rule Parser/parser.c /^_tmp_227_rule(Parser *p)$/;" f file: +_tmp_227_type Parser/parser.c 551;" d file: +_tmp_230_rule Parser/parser.c /^_tmp_230_rule(Parser *p)$/;" f file: +_tmp_230_type Parser/parser.c 554;" d file: +_tmp_231_rule Parser/parser.c /^_tmp_231_rule(Parser *p)$/;" f file: +_tmp_231_type Parser/parser.c 555;" d file: +_tmp_232_rule Parser/parser.c /^_tmp_232_rule(Parser *p)$/;" f file: +_tmp_232_type Parser/parser.c 556;" d file: +_tmp_233_rule Parser/parser.c /^_tmp_233_rule(Parser *p)$/;" f file: +_tmp_233_type Parser/parser.c 557;" d file: +_tmp_234_rule Parser/parser.c /^_tmp_234_rule(Parser *p)$/;" f file: +_tmp_234_type Parser/parser.c 558;" d file: +_tmp_235_rule Parser/parser.c /^_tmp_235_rule(Parser *p)$/;" f file: +_tmp_235_type Parser/parser.c 559;" d file: +_tmp_236_rule Parser/parser.c /^_tmp_236_rule(Parser *p)$/;" f file: +_tmp_236_type Parser/parser.c 560;" d file: +_tmp_237_rule Parser/parser.c /^_tmp_237_rule(Parser *p)$/;" f file: +_tmp_237_type Parser/parser.c 561;" d file: +_tmp_238_rule Parser/parser.c /^_tmp_238_rule(Parser *p)$/;" f file: +_tmp_238_type Parser/parser.c 562;" d file: +_tmp_239_rule Parser/parser.c /^_tmp_239_rule(Parser *p)$/;" f file: +_tmp_239_type Parser/parser.c 563;" d file: +_tmp_23_rule Parser/parser.c /^_tmp_23_rule(Parser *p)$/;" f file: +_tmp_23_type Parser/parser.c 347;" d file: +_tmp_240_rule Parser/parser.c /^_tmp_240_rule(Parser *p)$/;" f file: +_tmp_240_type Parser/parser.c 564;" d file: +_tmp_241_rule Parser/parser.c /^_tmp_241_rule(Parser *p)$/;" f file: +_tmp_241_type Parser/parser.c 565;" d file: +_tmp_242_rule Parser/parser.c /^_tmp_242_rule(Parser *p)$/;" f file: +_tmp_242_type Parser/parser.c 566;" d file: +_tmp_244_rule Parser/parser.c /^_tmp_244_rule(Parser *p)$/;" f file: +_tmp_244_type Parser/parser.c 568;" d file: +_tmp_245_rule Parser/parser.c /^_tmp_245_rule(Parser *p)$/;" f file: +_tmp_245_type Parser/parser.c 569;" d file: +_tmp_246_rule Parser/parser.c /^_tmp_246_rule(Parser *p)$/;" f file: +_tmp_246_type Parser/parser.c 570;" d file: +_tmp_247_rule Parser/parser.c /^_tmp_247_rule(Parser *p)$/;" f file: +_tmp_247_type Parser/parser.c 571;" d file: +_tmp_248_rule Parser/parser.c /^_tmp_248_rule(Parser *p)$/;" f file: +_tmp_248_type Parser/parser.c 572;" d file: +_tmp_249_rule Parser/parser.c /^_tmp_249_rule(Parser *p)$/;" f file: +_tmp_249_type Parser/parser.c 573;" d file: +_tmp_24_rule Parser/parser.c /^_tmp_24_rule(Parser *p)$/;" f file: +_tmp_24_type Parser/parser.c 348;" d file: +_tmp_250_rule Parser/parser.c /^_tmp_250_rule(Parser *p)$/;" f file: +_tmp_250_type Parser/parser.c 574;" d file: +_tmp_251_rule Parser/parser.c /^_tmp_251_rule(Parser *p)$/;" f file: +_tmp_251_type Parser/parser.c 575;" d file: +_tmp_252_rule Parser/parser.c /^_tmp_252_rule(Parser *p)$/;" f file: +_tmp_252_type Parser/parser.c 576;" d file: +_tmp_253_rule Parser/parser.c /^_tmp_253_rule(Parser *p)$/;" f file: +_tmp_253_type Parser/parser.c 577;" d file: +_tmp_254_rule Parser/parser.c /^_tmp_254_rule(Parser *p)$/;" f file: +_tmp_254_type Parser/parser.c 578;" d file: +_tmp_255_rule Parser/parser.c /^_tmp_255_rule(Parser *p)$/;" f file: +_tmp_255_type Parser/parser.c 579;" d file: +_tmp_256_rule Parser/parser.c /^_tmp_256_rule(Parser *p)$/;" f file: +_tmp_256_type Parser/parser.c 580;" d file: +_tmp_257_rule Parser/parser.c /^_tmp_257_rule(Parser *p)$/;" f file: +_tmp_257_type Parser/parser.c 581;" d file: +_tmp_258_rule Parser/parser.c /^_tmp_258_rule(Parser *p)$/;" f file: +_tmp_258_type Parser/parser.c 582;" d file: +_tmp_259_rule Parser/parser.c /^_tmp_259_rule(Parser *p)$/;" f file: +_tmp_259_type Parser/parser.c 583;" d file: +_tmp_260_rule Parser/parser.c /^_tmp_260_rule(Parser *p)$/;" f file: +_tmp_260_type Parser/parser.c 584;" d file: +_tmp_261_rule Parser/parser.c /^_tmp_261_rule(Parser *p)$/;" f file: +_tmp_261_type Parser/parser.c 585;" d file: +_tmp_262_rule Parser/parser.c /^_tmp_262_rule(Parser *p)$/;" f file: +_tmp_262_type Parser/parser.c 586;" d file: +_tmp_263_rule Parser/parser.c /^_tmp_263_rule(Parser *p)$/;" f file: +_tmp_263_type Parser/parser.c 587;" d file: +_tmp_264_rule Parser/parser.c /^_tmp_264_rule(Parser *p)$/;" f file: +_tmp_264_type Parser/parser.c 588;" d file: +_tmp_265_rule Parser/parser.c /^_tmp_265_rule(Parser *p)$/;" f file: +_tmp_265_type Parser/parser.c 589;" d file: +_tmp_266_rule Parser/parser.c /^_tmp_266_rule(Parser *p)$/;" f file: +_tmp_266_type Parser/parser.c 590;" d file: +_tmp_267_rule Parser/parser.c /^_tmp_267_rule(Parser *p)$/;" f file: +_tmp_267_type Parser/parser.c 591;" d file: +_tmp_268_rule Parser/parser.c /^_tmp_268_rule(Parser *p)$/;" f file: +_tmp_268_type Parser/parser.c 592;" d file: +_tmp_269_rule Parser/parser.c /^_tmp_269_rule(Parser *p)$/;" f file: +_tmp_269_type Parser/parser.c 593;" d file: +_tmp_270_rule Parser/parser.c /^_tmp_270_rule(Parser *p)$/;" f file: +_tmp_270_type Parser/parser.c 594;" d file: +_tmp_271_rule Parser/parser.c /^_tmp_271_rule(Parser *p)$/;" f file: +_tmp_271_type Parser/parser.c 595;" d file: +_tmp_272_rule Parser/parser.c /^_tmp_272_rule(Parser *p)$/;" f file: +_tmp_272_type Parser/parser.c 596;" d file: +_tmp_273_rule Parser/parser.c /^_tmp_273_rule(Parser *p)$/;" f file: +_tmp_273_type Parser/parser.c 597;" d file: +_tmp_274_rule Parser/parser.c /^_tmp_274_rule(Parser *p)$/;" f file: +_tmp_274_type Parser/parser.c 598;" d file: +_tmp_275_rule Parser/parser.c /^_tmp_275_rule(Parser *p)$/;" f file: +_tmp_275_type Parser/parser.c 599;" d file: +_tmp_29_rule Parser/parser.c /^_tmp_29_rule(Parser *p)$/;" f file: +_tmp_29_type Parser/parser.c 353;" d file: +_tmp_32_rule Parser/parser.c /^_tmp_32_rule(Parser *p)$/;" f file: +_tmp_32_type Parser/parser.c 356;" d file: +_tmp_34_rule Parser/parser.c /^_tmp_34_rule(Parser *p)$/;" f file: +_tmp_34_type Parser/parser.c 358;" d file: +_tmp_35_rule Parser/parser.c /^_tmp_35_rule(Parser *p)$/;" f file: +_tmp_35_type Parser/parser.c 359;" d file: +_tmp_36_rule Parser/parser.c /^_tmp_36_rule(Parser *p)$/;" f file: +_tmp_36_type Parser/parser.c 360;" d file: +_tmp_60_rule Parser/parser.c /^_tmp_60_rule(Parser *p)$/;" f file: +_tmp_60_type Parser/parser.c 384;" d file: +_tmp_63_rule Parser/parser.c /^_tmp_63_rule(Parser *p)$/;" f file: +_tmp_63_type Parser/parser.c 387;" d file: +_tmp_64_rule Parser/parser.c /^_tmp_64_rule(Parser *p)$/;" f file: +_tmp_64_type Parser/parser.c 388;" d file: +_tmp_68_rule Parser/parser.c /^_tmp_68_rule(Parser *p)$/;" f file: +_tmp_68_type Parser/parser.c 392;" d file: +_tmp_69_rule Parser/parser.c /^_tmp_69_rule(Parser *p)$/;" f file: +_tmp_69_type Parser/parser.c 393;" d file: +_tmp_70_rule Parser/parser.c /^_tmp_70_rule(Parser *p)$/;" f file: +_tmp_70_type Parser/parser.c 394;" d file: +_tmp_71_rule Parser/parser.c /^_tmp_71_rule(Parser *p)$/;" f file: +_tmp_71_type Parser/parser.c 395;" d file: +_tmp_76_rule Parser/parser.c /^_tmp_76_rule(Parser *p)$/;" f file: +_tmp_76_type Parser/parser.c 400;" d file: +_tmp_7_rule Parser/parser.c /^_tmp_7_rule(Parser *p)$/;" f file: +_tmp_7_type Parser/parser.c 331;" d file: +_tmp_8_rule Parser/parser.c /^_tmp_8_rule(Parser *p)$/;" f file: +_tmp_8_type Parser/parser.c 332;" d file: +_tmp_90_rule Parser/parser.c /^_tmp_90_rule(Parser *p)$/;" f file: +_tmp_90_type Parser/parser.c 414;" d file: +_tmp_93_rule Parser/parser.c /^_tmp_93_rule(Parser *p)$/;" f file: +_tmp_93_type Parser/parser.c 417;" d file: +_tmp_94_rule Parser/parser.c /^_tmp_94_rule(Parser *p)$/;" f file: +_tmp_94_type Parser/parser.c 418;" d file: +_tmp_95_rule Parser/parser.c /^_tmp_95_rule(Parser *p)$/;" f file: +_tmp_95_type Parser/parser.c 419;" d file: +_tmp_96_rule Parser/parser.c /^_tmp_96_rule(Parser *p)$/;" f file: +_tmp_96_type Parser/parser.c 420;" d file: +_tmp_97_rule Parser/parser.c /^_tmp_97_rule(Parser *p)$/;" f file: +_tmp_97_type Parser/parser.c 421;" d file: +_tmp_98_rule Parser/parser.c /^_tmp_98_rule(Parser *p)$/;" f file: +_tmp_98_type Parser/parser.c 422;" d file: +_tmp_9_rule Parser/parser.c /^_tmp_9_rule(Parser *p)$/;" f file: +_tmp_9_type Parser/parser.c 333;" d file: +_toAscii Lib/doctest.py /^ def _toAscii(self, s):$/;" m class:OutputChecker +_to_bytes Lib/urllib/parse.py /^def _to_bytes(url):$/;" f +_to_memoryview Lib/test/test_io.py /^def _to_memoryview(buf):$/;" f +_to_microseconds Lib/_pydatetime.py /^ def _to_microseconds(self):$/;" m class:timedelta +_to_number Lib/tkinter/ttk.py /^def _to_number(x):$/;" f +_to_stream Lib/unittest/mock.py /^def _to_stream(read_data):$/;" f +_tokenize Lib/gettext.py /^def _tokenize(plural):$/;" f +_tokenize_get_state_by_type Python/Python-tokenize.c 18;" d file: +_tokenizemodule Python/Python-tokenize.c /^static struct PyModuleDef _tokenizemodule = {$/;" v typeref:struct:PyModuleDef file: +_tokenizemodule Python/Python-tokenize.c /^static struct PyModuleDef _tokenizemodule;$/;" v typeref:struct:PyModuleDef file: +_tokenizer_error Python/Python-tokenize.c /^_tokenizer_error(struct tok_state *tok)$/;" f file: +_tokenizer_mode Parser/tokenizer.h /^typedef struct _tokenizer_mode {$/;" s +_too_many Lib/inspect.py /^def _too_many(f_name, args, kwonly, varargs, defcount, given, values):$/;" f +_tooltip Lib/idlelib/tooltip.py /^def _tooltip(parent): # htest #$/;" f +_tooltip_spec Lib/idlelib/idle_test/htest.py /^_tooltip_spec = {$/;" v +_top_level_declared Lib/importlib/metadata/__init__.py /^def _top_level_declared(dist):$/;" f +_top_level_dir Lib/unittest/loader.py /^ _top_level_dir = None$/;" v class:TestLoader +_top_level_inferred Lib/importlib/metadata/__init__.py /^def _top_level_inferred(dist):$/;" f +_tp_cache Lib/typing.py /^def _tp_cache(func=None, \/, *, typed=False):$/;" f +_trace Lib/site.py /^def _trace(message):$/;" f +_trace Lib/test/test_patma.py /^ def _trace(func, *args, **kwargs):$/;" m class:TestTracing +_trace_hook Lib/threading.py /^_trace_hook = None$/;" v +_traceback Include/cpython/traceback.h /^struct _traceback {$/;" s +_tracemalloc__get_object_traceback Modules/_tracemalloc.c /^_tracemalloc__get_object_traceback(PyObject *module, PyObject *obj)$/;" f file: +_tracemalloc__get_traces Modules/clinic/_tracemalloc.c.h /^_tracemalloc__get_traces(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc__get_traces_impl Modules/_tracemalloc.c /^_tracemalloc__get_traces_impl(PyObject *module)$/;" f file: +_tracemalloc_clear_traces Modules/clinic/_tracemalloc.c.h /^_tracemalloc_clear_traces(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc_clear_traces_impl Modules/_tracemalloc.c /^_tracemalloc_clear_traces_impl(PyObject *module)$/;" f file: +_tracemalloc_get_traceback_limit Modules/clinic/_tracemalloc.c.h /^_tracemalloc_get_traceback_limit(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc_get_traceback_limit_impl Modules/_tracemalloc.c /^_tracemalloc_get_traceback_limit_impl(PyObject *module)$/;" f file: +_tracemalloc_get_traced_memory Modules/clinic/_tracemalloc.c.h /^_tracemalloc_get_traced_memory(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc_get_traced_memory_impl Modules/_tracemalloc.c /^_tracemalloc_get_traced_memory_impl(PyObject *module)$/;" f file: +_tracemalloc_get_tracemalloc_memory Modules/clinic/_tracemalloc.c.h /^_tracemalloc_get_tracemalloc_memory(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc_get_tracemalloc_memory_impl Modules/_tracemalloc.c /^_tracemalloc_get_tracemalloc_memory_impl(PyObject *module)$/;" f file: +_tracemalloc_is_tracing Modules/clinic/_tracemalloc.c.h /^_tracemalloc_is_tracing(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc_is_tracing_impl Modules/_tracemalloc.c /^_tracemalloc_is_tracing_impl(PyObject *module)$/;" f file: +_tracemalloc_reset_peak Modules/clinic/_tracemalloc.c.h /^_tracemalloc_reset_peak(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc_reset_peak_impl Modules/_tracemalloc.c /^_tracemalloc_reset_peak_impl(PyObject *module)$/;" f file: +_tracemalloc_runtime_state Include/internal/pycore_tracemalloc.h /^struct _tracemalloc_runtime_state {$/;" s +_tracemalloc_runtime_state_INIT Include/internal/pycore_tracemalloc.h 109;" d +_tracemalloc_start Modules/clinic/_tracemalloc.c.h /^_tracemalloc_start(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_tracemalloc_start_impl Modules/_tracemalloc.c /^_tracemalloc_start_impl(PyObject *module, int nframe)$/;" f file: +_tracemalloc_stop Modules/clinic/_tracemalloc.c.h /^_tracemalloc_stop(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_tracemalloc_stop_impl Modules/_tracemalloc.c /^_tracemalloc_stop_impl(PyObject *module)$/;" f file: +_tracer Lib/turtle.py /^ def _tracer(self, a=None, b=None):$/;" m class:TNavigator +_tracer Lib/turtle.py /^ def _tracer(self, flag=None, delay=None):$/;" m class:RawTurtle +_tracked Lib/test/test_dict.py /^ def _tracked(self, t):$/;" m class:DictTest +_tracked Lib/test/test_tuple.py /^ def _tracked(self, t):$/;" m class:TupleTest +_transform_msg Lib/tokenize.py /^def _transform_msg(msg):$/;" f +_translate_newlines Lib/subprocess.py /^ def _translate_newlines(self, data, encoding, errors):$/;" m class:Popen +_translations Lib/gettext.py /^_translations = {}$/;" v +_tree_widget Lib/idlelib/tree.py /^def _tree_widget(parent): # htest #$/;" f +_tree_widget_spec Lib/idlelib/idle_test/htest.py /^_tree_widget_spec = {$/;" v +_triplet_to_sequence Lib/idlelib/multicall.py /^def _triplet_to_sequence(triplet):$/;" f +_truncateMessage Lib/unittest/case.py /^ def _truncateMessage(self, message, diff):$/;" m class:TestCase +_try Lib/xmlrpc/client.py /^def _try(fmt):$/;" f +_try_compile Lib/dis.py /^def _try_compile(source, name):$/;" f +_try_finish Lib/asyncio/base_subprocess.py /^ def _try_finish(self):$/;" m class:BaseSubprocessTransport +_try_iter Lib/unittest/mock.py /^def _try_iter(obj):$/;" f +_try_wait Lib/subprocess.py /^ def _try_wait(self, wait_flags):$/;" f function:Popen._on_error_fd_closer +_tryfinally Lib/test/test_dis.py /^def _tryfinally(a, b):$/;" f +_tryfinallyconst Lib/test/test_dis.py /^def _tryfinallyconst(b):$/;" f +_tryorder Lib/webbrowser.py /^_tryorder = None # Preference order of available browsers$/;" v +_ts Include/cpython/pystate.h /^struct _ts {$/;" s +_ts_to_local Lib/zoneinfo/_zoneinfo.py /^ def _ts_to_local(trans_idx, trans_list_utc, utcoffsets):$/;" m class:ZoneInfo +_tscmp Modules/_hashopenssl.c /^_tscmp(const unsigned char *a, const unsigned char *b,$/;" f file: +_tscmp Modules/_operator.c /^_tscmp(const unsigned char *a, const unsigned char *b,$/;" f file: +_ttinfo Lib/zoneinfo/_zoneinfo.py /^class _ttinfo:$/;" c +_ttinfo Modules/_zoneinfo.c /^} _ttinfo;$/;" t typeref:struct:__anon636 file: +_ttinfos Modules/_zoneinfo.c /^ _ttinfo *_ttinfos; \/\/ Unique array of ttinfos for ease of deallocation$/;" m struct:__anon638 file: +_tunnel Lib/http/client.py /^ def _tunnel(self):$/;" m class:HTTPConnection +_tuple_empty_gc_not_used Include/internal/pycore_global_objects.h /^ _PyGC_Head_UNUSED _tuple_empty_gc_not_used;$/;" m struct:_Py_static_objects::__anon147 +_tuple_str Lib/dataclasses.py /^def _tuple_str(obj_name, fields):$/;" f +_tuplegetter Lib/collections/__init__.py /^ _tuplegetter = lambda index, doc: property(_itemgetter(index), doc=doc)$/;" v class:OrderedDict +_tuplegetterobject Modules/_collectionsmodule.c /^} _tuplegetterobject;$/;" t typeref:struct:__anon533 file: +_tuplesize2code Lib/pickle.py /^_tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3]$/;" v +_turtle_docrevise Lib/turtle.py /^def _turtle_docrevise(docstr):$/;" f +_two_way Objects/stringlib/fastsearch.h /^STRINGLIB(_two_way)(const STRINGLIB_CHAR *haystack, Py_ssize_t len_haystack,$/;" f +_two_way_count Objects/stringlib/fastsearch.h /^STRINGLIB(_two_way_count)(const STRINGLIB_CHAR *haystack,$/;" f +_two_way_find Objects/stringlib/fastsearch.h /^STRINGLIB(_two_way_find)(const STRINGLIB_CHAR *haystack,$/;" f +_type Include/cpython/initconfig.h /^ } _type;$/;" m struct:__anon198 typeref:enum:__anon198::__anon199 +_type Lib/turtle.py /^ def _type(self, item):$/;" m class:TurtleScreenBase +_type_ Lib/ctypes/__init__.py /^ _type_ = "I"$/;" v class:.c_uint +_type_ Lib/ctypes/__init__.py /^ _type_ = "Q"$/;" v class:.c_ulonglong +_type_ Lib/ctypes/__init__.py /^ _type_ = "i"$/;" v class:.c_int +_type_ Lib/ctypes/__init__.py /^ _type_ = "l"$/;" v class:.HRESULT +_type_ Lib/ctypes/__init__.py /^ _type_ = "q"$/;" v class:.c_longlong +_type_ Lib/ctypes/__init__.py /^ _type_ = "?"$/;" v class:c_bool +_type_ Lib/ctypes/__init__.py /^ _type_ = "B"$/;" v class:c_ubyte +_type_ Lib/ctypes/__init__.py /^ _type_ = "H"$/;" v class:c_ushort +_type_ Lib/ctypes/__init__.py /^ _type_ = "L"$/;" v class:c_ulong +_type_ Lib/ctypes/__init__.py /^ _type_ = "O"$/;" v class:py_object +_type_ Lib/ctypes/__init__.py /^ _type_ = "P"$/;" v class:c_void_p +_type_ Lib/ctypes/__init__.py /^ _type_ = "Z"$/;" v class:c_wchar_p +_type_ Lib/ctypes/__init__.py /^ _type_ = "b"$/;" v class:c_byte +_type_ Lib/ctypes/__init__.py /^ _type_ = "c"$/;" v class:c_char +_type_ Lib/ctypes/__init__.py /^ _type_ = "d"$/;" v class:c_double +_type_ Lib/ctypes/__init__.py /^ _type_ = "f"$/;" v class:c_float +_type_ Lib/ctypes/__init__.py /^ _type_ = "g"$/;" v class:c_longdouble +_type_ Lib/ctypes/__init__.py /^ _type_ = "h"$/;" v class:c_short +_type_ Lib/ctypes/__init__.py /^ _type_ = "l"$/;" v class:c_long +_type_ Lib/ctypes/__init__.py /^ _type_ = "u"$/;" v class:c_wchar +_type_ Lib/ctypes/__init__.py /^ _type_ = "z"$/;" v class:c_char_p +_type_ Lib/ctypes/wintypes.py /^ _type_ = "v"$/;" v class:VARIANT_BOOL +_type_ Lib/test/test_ctypes/test_arrays.py /^ _type_ = c_int$/;" v class:ArrayTestCase.test_bad_length.T +_type_ Lib/test/test_ctypes/test_arrays.py /^ _type_ = c_int$/;" v class:ArrayTestCase.test_bad_subclass.T +_type_ Lib/test/test_ctypes/test_arrays.py /^ _type_ = c_int$/;" v class:ArrayTestCase.test_empty_element_array.EmptyArray +_type_ Lib/test/test_ctypes/test_arrays.py /^ _type_ = c_int$/;" v class:ArrayTestCase.test_subclass.T +_type_ Lib/test/test_ctypes/test_arrays.py /^ _type_ = c_int$/;" v class:ArrayTestCase.test_zero_length.T +_type_ Lib/test/test_ctypes/test_arrays.py /^ _type_ = c_short$/;" v class:ArrayTestCase.test_subclass.X +_type_ Lib/test/test_ctypes/test_bytes.py /^ _type_ = "X"$/;" v class:BytesTest.test_BSTR.BSTR +_type_ Lib/test/test_ctypes/test_functions.py /^ _type_ = "i"$/;" v class:FunctionTestCase.test_mro.X +_type_char_ptr Tools/gdb/libpython.py /^def _type_char_ptr():$/;" f +_type_check Lib/typing.py /^def _type_check(arg, msg, is_argument=True, module=None, *, allow_special_forms=False):$/;" f +_type_convert Lib/typing.py /^def _type_convert(arg, module=None, *, allow_special_forms=False):$/;" f +_type_ignore Include/internal/pycore_ast.h /^struct _type_ignore {$/;" s +_type_ignore_kind Include/internal/pycore_ast.h /^enum _type_ignore_kind {TypeIgnore_kind=1};$/;" g +_type_names Lib/idlelib/multicall.py /^_type_names = {name: number$/;" v +_type_of_literal Lib/lib2to3/patcomp.py /^def _type_of_literal(value):$/;" f +_type_param Include/internal/pycore_ast.h /^struct _type_param {$/;" s +_type_param_kind Include/internal/pycore_ast.h /^enum _type_param_kind {TypeVar_kind=1, ParamSpec_kind=2, TypeVarTuple_kind=3};$/;" g +_type_params_helper Lib/ast.py /^ def _type_params_helper(self, type_params):$/;" m class:_Unparser +_type_repr Lib/_collections_abc.py /^def _type_repr(obj):$/;" f +_type_repr Lib/typing.py /^def _type_repr(obj):$/;" f +_type_reprs Lib/lib2to3/btm_matcher.py /^_type_reprs = {}$/;" v +_type_reprs Lib/lib2to3/pytree.py /^_type_reprs = {}$/;" v +_type_specific_attributes Lib/mailbox.py /^ _type_specific_attributes = ['_from']$/;" v class:_mboxMMDFMessage +_type_specific_attributes Lib/mailbox.py /^ _type_specific_attributes = ['_labels', '_visible']$/;" v class:BabylMessage +_type_specific_attributes Lib/mailbox.py /^ _type_specific_attributes = ['_sequences']$/;" v class:MHMessage +_type_specific_attributes Lib/mailbox.py /^ _type_specific_attributes = ['_subdir', '_info', '_date']$/;" v class:MaildirMessage +_type_unsigned_char_ptr Tools/gdb/libpython.py /^def _type_unsigned_char_ptr():$/;" f +_type_unsigned_int_ptr Tools/gdb/libpython.py /^def _type_unsigned_int_ptr():$/;" f +_type_unsigned_short_ptr Tools/gdb/libpython.py /^def _type_unsigned_short_ptr():$/;" f +_typeinfo_map Lib/xml/dom/expatbuilder.py /^_typeinfo_map = {$/;" v +_typename Tools/gdb/libpython.py /^ _typename = 'PyBaseExceptionObject'$/;" v class:PyBaseExceptionObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyBytesObject'$/;" v class:PyBytesObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyCFunctionObject'$/;" v class:PyCFunctionObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyClassObject'$/;" v class:PyClassObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyCodeObject'$/;" v class:PyCodeObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyDictObject'$/;" v class:PyDictObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyFrameObject'$/;" v class:PyFrameObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyListObject'$/;" v class:PyListObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyLongObject'$/;" v class:PyLongObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyObject'$/;" v class:HeapTypeObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyObject'$/;" v class:PyNoneStructPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyObject'$/;" v class:PyObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PySetObject'$/;" v class:PySetObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyTupleObject'$/;" v class:PyTupleObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyTypeObject'$/;" v class:PyTypeObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyUnicodeObject'$/;" v class:PyUnicodeObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'PyVarObject'$/;" v class:PyVarObjectPtr +_typename Tools/gdb/libpython.py /^ _typename = 'wrapperobject'$/;" v class:wrapperobject +_typeobject Doc/includes/typestruct.h /^typedef struct _typeobject {$/;" s +_typeobject Include/cpython/object.h /^struct _typeobject {$/;" s +_typeprog Lib/urllib/parse.py /^_typeprog = None$/;" v +_types Lib/idlelib/multicall.py /^_types = ($/;" v +_types Lib/test/test_memoryview.py /^ def _types(self):$/;" m class:AbstractMemoryTests +_types_mapping Lib/multiprocessing/shared_memory.py /^ _types_mapping = {$/;" v class:ShareableList +_types_runtime_state Include/internal/pycore_typeobject.h /^struct _types_runtime_state {$/;" s +_typevar_subst Lib/typing.py /^def _typevar_subst(self, arg):$/;" f +_typevartuple_prepare_subst Lib/typing.py /^def _typevartuple_prepare_subst(self, alias, args):$/;" f +_typing__idfunc Modules/_typingmodule.c /^_typing__idfunc(PyObject *module, PyObject *x)$/;" f file: +_typing_exec Modules/_typingmodule.c /^_typing_exec(PyObject *m)$/;" f file: +_typingmodule_slots Modules/_typingmodule.c /^static struct PyModuleDef_Slot _typingmodule_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +_tzinfo_class Lib/_pydatetime.py /^_tzinfo_class = tzinfo$/;" v +_tzpath_find_tzfile Modules/_zoneinfo.c /^ PyObject *_tzpath_find_tzfile;$/;" m struct:__anon641 file: +_tzrule Modules/_zoneinfo.c /^} _tzrule;$/;" t typeref:struct:__anon637 file: +_tzstr Lib/_pydatetime.py /^ def _tzstr(self):$/;" m class:time +_uint_from_u16 Modules/_decimal/libmpdec/mpdecimal.c /^_uint_from_u16(mpd_uint_t *w, mpd_ssize_t wlen, const uint16_t *u, size_t ulen)$/;" f file: +_uint_to_u16 Modules/_decimal/libmpdec/mpdecimal.c /^_uint_to_u16(uint16_t w[8], mpd_uint_t *u, mpd_ssize_t ulen)$/;" f file: +_ulaw2lin Lib/aifc.py /^ def _ulaw2lin(self, data):$/;" m class:Aifc_read +_uname_cache Lib/platform.py /^_uname_cache = None$/;" v +_unaryop Include/internal/pycore_ast.h /^typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;$/;" g +_unbind_events Lib/idlelib/calltip_w.py /^ def _unbind_events(self):$/;" m class:CalltipWindow +_undefined Lib/plistlib.py /^_undefined = object()$/;" v +_underscored Lib/test/final_a.py /^_underscored = C()$/;" v +_underscored Lib/test/final_b.py /^_underscored = C()$/;" v +_undo Lib/turtle.py /^ def _undo(self, action, data):$/;" m class:RawTurtle +_undo_delegator Lib/idlelib/undo.py /^def _undo_delegator(parent): # htest #$/;" f +_undo_delegator_spec Lib/idlelib/idle_test/htest.py /^_undo_delegator_spec = {$/;" v +_undogoto Lib/turtle.py /^ def _undogoto(self, entry):$/;" m class:RawTurtle +_unformat_data Tools/c-analyzer/c_parser/info.py /^ def _unformat_data(cls, datastr, fmt=None):$/;" m class:Declaration +_unformat_data Tools/c-analyzer/c_parser/info.py /^ def _unformat_data(cls, datastr, fmt=None):$/;" m class:Enum +_unformat_data Tools/c-analyzer/c_parser/info.py /^ def _unformat_data(cls, datastr, fmt=None):$/;" m class:Function +_unformat_data Tools/c-analyzer/c_parser/info.py /^ def _unformat_data(cls, datastr, fmt=None):$/;" m class:TypeDef +_unformat_data Tools/c-analyzer/c_parser/info.py /^ def _unformat_data(cls, datastr, fmt=None):$/;" m class:Variable +_unformat_data Tools/c-analyzer/c_parser/info.py /^ def _unformat_data(cls, datastr, fmt=None):$/;" m class:_StructUnion +_unichr_is_printable Tools/gdb/libpython.py /^def _unichr_is_printable(char):$/;" f +_unify_values Lib/configparser.py /^ def _unify_values(self, section, vars):$/;" m class:RawConfigParser +_uninstall_helper Lib/ensurepip/__init__.py /^def _uninstall_helper(*, verbosity=0):$/;" f +_uniq Lib/re/_parser.py /^def _uniq(items):$/;" f +_unique Lib/importlib/metadata/__init__.py /^_unique = functools.partial($/;" v +_unittest_reportflags Lib/doctest.py /^_unittest_reportflags = 0$/;" v +_unix_getnode Lib/uuid.py /^def _unix_getnode():$/;" f +_unknown Lib/encodings/__init__.py /^_unknown = '--unknown--'$/;" v +_unknown_as_blank Lib/platform.py /^def _unknown_as_blank(val):$/;" f +_unlink Lib/test/support/os_helper.py /^ def _unlink(filename):$/;" f function:unlink +_unlink Lib/test/test_tempfile.py /^ _unlink = os.unlink$/;" v class:TestMkstempInner.mkstemped +_unlink Lib/test/test_tempfile.py /^ _unlink = os.unlink$/;" v class:TestMktemp.mktemped +_unlock_file Lib/mailbox.py /^def _unlock_file(f):$/;" f +_unmarshal_code Lib/zipimport.py /^def _unmarshal_code(self, pathname, fullpath, fullname, data):$/;" f +_unpack_args Lib/typing.py /^def _unpack_args(args):$/;" f +_unpack_args Objects/genericaliasobject.c /^_unpack_args(PyObject *item)$/;" f file: +_unpack_cookie Lib/_pyio.py /^ def _unpack_cookie(self, bigint):$/;" m class:TextIOWrapper +_unpack_hexversion PC/layout/support/constants.py /^def _unpack_hexversion():$/;" f +_unpack_opargs Lib/dis.py /^def _unpack_opargs(code):$/;" f +_unpack_src Tools/ssl/multissltests.py /^ def _unpack_src(self):$/;" m class:AbstractBuilder +_unpack_tarfile Lib/shutil.py /^def _unpack_tarfile(filename, extract_dir, *, filter=None):$/;" f +_unpack_uint16 Lib/importlib/_bootstrap_external.py /^def _unpack_uint16(data):$/;" f +_unpack_uint32 Lib/importlib/__init__.py /^_unpack_uint32 = _bootstrap_external._unpack_uint32$/;" v +_unpack_uint32 Lib/importlib/_bootstrap_external.py /^def _unpack_uint32(data):$/;" f +_unpack_zipfile Lib/shutil.py /^def _unpack_zipfile(filename, extract_dir):$/;" f +_unpacked_tuple_args Objects/genericaliasobject.c /^_unpacked_tuple_args(PyObject *arg)$/;" f file: +_unparse_datetime Lib/nntplib.py /^def _unparse_datetime(dt, legacy=False):$/;" f +_unpatch_dict Lib/unittest/mock.py /^ def _unpatch_dict(self):$/;" m class:_patch_dict +_unpickle Lib/zoneinfo/_zoneinfo.py /^ def _unpickle(cls, key, from_cache, \/):$/;" m class:ZoneInfo +_unpickle Modules/_ctypes/_ctypes.c /^static PyObject *_unpickle;$/;" v file: +_unquote Lib/http/cookies.py /^def _unquote(str):$/;" f +_unquote_impl Lib/urllib/parse.py /^def _unquote_impl(string: bytes | bytearray | str) -> bytes | bytearray:$/;" f +_unquote_match Lib/email/quoprimime.py /^def _unquote_match(match):$/;" f +_unquotevalue Lib/email/message.py /^def _unquotevalue(value):$/;" f +_unregister Lib/asyncio/windows_events.py /^ def _unregister(self, ov):$/;" m class:IocpProactor +_unregister_eager_task Lib/asyncio/tasks.py /^def _unregister_eager_task(task):$/;" f +_unregister_task Lib/asyncio/tasks.py /^def _unregister_task(task):$/;" f +_unregister_task Lib/test/test_asyncio/test_tasks.py /^ _unregister_task = staticmethod(tasks._c_unregister_task)$/;" v class:CIntrospectionTests +_unregister_task Lib/test/test_asyncio/test_tasks.py /^ _unregister_task = None$/;" v class:BaseTaskIntrospectionTests +_unregister_task Lib/test/test_asyncio/test_tasks.py /^ _unregister_task = staticmethod(tasks._py_unregister_task)$/;" v class:PyIntrospectionTests +_unregister_wait Lib/asyncio/windows_events.py /^ def _unregister_wait(self):$/;" m class:_BaseWaitHandleFuture +_unregister_wait Lib/asyncio/windows_events.py /^ def _unregister_wait(self):$/;" m class:_WaitHandleFuture +_unregister_wait_cb Lib/asyncio/windows_events.py /^ def _unregister_wait_cb(self, fut):$/;" m class:_BaseWaitHandleFuture +_unregister_wait_cb Lib/asyncio/windows_events.py /^ def _unregister_wait_cb(self, fut):$/;" m class:_WaitHandleFuture +_unsafe_closer Modules/_posixsubprocess.c /^_unsafe_closer(int first, int last)$/;" f file: +_unspecified_address Lib/ipaddress.py /^ _unspecified_address = IPv4Address('0.0.0.0')$/;" v class:_IPv4Constants +_unsupported Lib/_pyio.py /^ def _unsupported(self, name):$/;" m class:IOBase +_unsupported Modules/_io/textio.c /^_unsupported(_PyIO_State *state, const char *message)$/;" f file: +_unsupported_magics Lib/unittest/mock.py /^_unsupported_magics = {$/;" v +_untagged_response Lib/imaplib.py /^ def _untagged_response(self, typ, dat, name):$/;" m class:IMAP4 +_unwrap_partial Lib/functools.py /^def _unwrap_partial(func):$/;" f +_update Lib/dbm/dumb.py /^ def _update(self, flag):$/;" m class:_Database +_update Lib/optparse.py /^ def _update(self, dict, mode):$/;" m class:Values +_update Lib/turtle.py /^ def _update(self):$/;" m class:RawTurtle +_update Lib/turtle.py /^ def _update(self):$/;" m class:TurtleScreenBase +_update Lib/turtle.py /^ def _update(self, count=True, forced=False):$/;" m class:TPen +_update_careful Lib/optparse.py /^ def _update_careful(self, dict):$/;" m class:Values +_update_crc Lib/zipfile/__init__.py /^ def _update_crc(self, newdata):$/;" m class:ZipExtFile +_update_data Lib/turtle.py /^ def _update_data(self):$/;" m class:RawTurtle +_update_load Lib/test/libregrtest/win_utils.py /^ def _update_load(self,$/;" m class:WindowsLoadTracker +_update_loose Lib/optparse.py /^ def _update_loose(self, dict):$/;" m class:Values +_update_max_yx Lib/curses/textpad.py /^ def _update_max_yx(self):$/;" m class:Textbox +_update_variables Lib/test/test_strftime.py /^ def _update_variables(self, now):$/;" m class:StrftimeTest +_upgrading Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ BOOL _upgrading;$/;" m class:PythonBootstrapperApplication file: +_url_collapse_path Lib/http/server.py /^def _url_collapse_path(path):$/;" f +_url_handler Lib/pydoc.py /^def _url_handler(url, content_type="text\/html"):$/;" f +_url_tempfiles Lib/urllib/request.py /^_url_tempfiles = []$/;" v +_urlopen_with_retry Lib/test/test_urllib2net.py /^_urlopen_with_retry = _wrap_with_retry_thrice(urllib.request.urlopen,$/;" v +_urlopener Lib/test/test_urllib.py /^_urlopener = None$/;" v +_urlsafe_decode_translation Lib/base64.py /^_urlsafe_decode_translation = bytes.maketrans(b'-_', b'+\/')$/;" v +_urlsafe_encode_translation Lib/base64.py /^_urlsafe_encode_translation = bytes.maketrans(b'+\/', b'-_')$/;" v +_useShebangAsExecutable PC/launcher2.c /^_useShebangAsExecutable(SearchInfo *search, const wchar_t *shebang, int shebangLength)$/;" f +_use_fd_functions Lib/shutil.py /^_use_fd_functions = ({os.open, os.stat, os.unlink, os.rmdir} <=$/;" v +_use_posix_spawn Lib/subprocess.py /^def _use_posix_spawn():$/;" f +_used Tools/c-analyzer/c_parser/parser/_info.py /^ def _used(self):$/;" m class:SourceInfo +_userinfo Lib/urllib/parse.py /^ def _userinfo(self):$/;" m class:_NetlocResultMixinBytes +_userinfo Lib/urllib/parse.py /^ def _userinfo(self):$/;" m class:_NetlocResultMixinStr +_using_bytecode Tools/importbench/importbench.py /^def _using_bytecode(module):$/;" f +_utc_fold Lib/test/datetimetester.py /^ def _utc_fold(self):$/;" m class:Europe_Vilnius_1941 +_utcoff_to_dstoff Lib/zoneinfo/_zoneinfo.py /^ def _utcoff_to_dstoff(trans_idx, utcoffsets, isdsts):$/;" m class:ZoneInfo +_utest Lib/idlelib/idle_test/test_help_about.py /^ _utest = True$/;" v class:Dummy_about_dialog +_uuid Lib/test/test_uuid.py /^ _uuid = py_uuid$/;" v class:BaseTestInternals +_uuid Lib/uuid.py /^ _uuid = None$/;" v +_v Lib/colorsys.py /^def _v(m1, m2, hue):$/;" f +_val_or_dict Lib/tkinter/ttk.py /^def _val_or_dict(tk, options, *args):$/;" f +_valid Lib/csv.py /^ _valid = False$/;" v class:Dialect +_valid_keys Lib/test/test_zoneinfo/test_zoneinfo_property.py /^def _valid_keys():$/;" f +_validate Lib/csv.py /^ def _validate(self):$/;" m class:Dialect +_validate Modules/_sre/sre.c /^_validate(PatternObject *self)$/;" f file: +_validate Tools/c-analyzer/c_analyzer/info.py /^ def _validate(self):$/;" m class:Analyzed +_validate_auth Lib/test/test_urllib2_localnet.py /^ def _validate_auth(self, auth_dict, password, method, uri):$/;" m class:DigestAuthHandler +_validate_charset Modules/_sre/sre.c /^_validate_charset(SRE_CODE *code, SRE_CODE *end)$/;" f file: +_validate_family Lib/multiprocessing/connection.py /^def _validate_family(family):$/;" f +_validate_hash_pyc Lib/importlib/_bootstrap_external.py /^def _validate_hash_pyc(data, source_hash, name, exc_details):$/;" f +_validate_host Lib/http/client.py /^ def _validate_host(self, host):$/;" m class:HTTPConnection +_validate_host Lib/test/test_httplib.py /^ def _validate_host(self, url):$/;" m class:BasicTest.test_putrequest_override_host_validation.UnsafeHTTPConnection +_validate_inner Modules/_sre/sre.c /^_validate_inner(SRE_CODE *code, SRE_CODE *end, Py_ssize_t groups)$/;" f file: +_validate_method Lib/http/client.py /^ def _validate_method(self, method):$/;" m class:HTTPConnection +_validate_nonempty_seq Python/ast.c /^_validate_nonempty_seq(asdl_seq *seq, const char *what, const char *owner)$/;" f file: +_validate_outer Modules/_sre/sre.c /^_validate_outer(SRE_CODE *code, SRE_CODE *end, Py_ssize_t groups)$/;" f file: +_validate_paramflags Modules/_ctypes/_ctypes.c /^_validate_paramflags(PyTypeObject *type, PyObject *paramflags)$/;" f file: +_validate_path Lib/http/client.py /^ def _validate_path(self, url):$/;" m class:HTTPConnection +_validate_path Lib/test/test_httplib.py /^ def _validate_path(self, url):$/;" m class:BasicTest.test_putrequest_override_domain_validation.UnsafeHTTPConnection +_validate_status Lib/wsgiref/handlers.py /^ def _validate_status(self, status):$/;" m class:BaseHandler +_validate_timestamp_pyc Lib/importlib/_bootstrap_external.py /^def _validate_timestamp_pyc(data, source_mtime, source_size, name,$/;" f +_validate_tzfile_path Lib/zoneinfo/_tzpath.py /^def _validate_tzfile_path(path, _base=_TEST_PATH):$/;" f +_validate_value_types Lib/configparser.py /^ def _validate_value_types(self, *, section="", option="", value=""):$/;" m class:RawConfigParser +_validate_xtext Lib/email/_header_value_parser.py /^def _validate_xtext(xtext):$/;" f +_value Include/internal/pycore_atomic.h /^ atomic_int _value;$/;" m struct:_Py_atomic_int +_value Include/internal/pycore_atomic.h /^ atomic_uintptr_t _value;$/;" m struct:_Py_atomic_address +_value Include/internal/pycore_atomic.h /^ int _value;$/;" m struct:_Py_atomic_int +_value Include/internal/pycore_atomic.h /^ uintptr_t _value;$/;" m struct:_Py_atomic_address +_value Include/internal/pycore_atomic.h /^ volatile int _value;$/;" m struct:_Py_atomic_int +_value Include/internal/pycore_atomic.h /^ volatile uintptr_t _value;$/;" m struct:_Py_atomic_address +_value_and_type_iter Lib/typing.py /^def _value_and_type_iter(parameters):$/;" f +_variable_rx Lib/sysconfig.py /^_variable_rx = r"([a-zA-Z][a-zA-Z0-9_]+)\\s*=\\s*(.*)"$/;" v +_varnum Lib/tkinter/__init__.py /^_varnum = 0$/;" v +_varprog Lib/posixpath.py /^_varprog = None$/;" v +_varprogb Lib/posixpath.py /^_varprogb = None$/;" v +_venv_path Lib/venv/__init__.py /^ def _venv_path(self, env_dir, name):$/;" m class:EnvBuilder +_ver_stages Lib/platform.py /^_ver_stages = {$/;" v +_verbose_message Lib/importlib/_bootstrap.py /^def _verbose_message(message, *args, verbosity=1):$/;" f +_verify_available Lib/test/test_posix.py /^ def _verify_available(self, name):$/;" m class:TestPosixWeaklinking +_verify_challenge Lib/multiprocessing/connection.py /^def _verify_challenge(authkey, message, response):$/;" f +_verify_open Lib/dbm/dumb.py /^ def _verify_open(self):$/;" m class:_Database +_verify_parse_output Lib/test/test_pyexpat.py /^ def _verify_parse_output(self, operations):$/;" m class:ParseTest +_verify_readline Lib/test/test_httplib.py /^ def _verify_readline(self, readline, expected):$/;" m class:ExtendedReadTest +_version Lib/ipaddress.py /^ _version = 4$/;" v class:_BaseV4 +_version Lib/ipaddress.py /^ _version = 6$/;" v class:_BaseV6 +_vformat Lib/string.py /^ def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,$/;" m class:Formatter +_vheader Lib/test/support/__init__.py /^_vheader = _header + 'n'$/;" v +_view Lib/test/test_memoryview.py /^ def _view(self, obj):$/;" m class:BaseMemorySliceSliceTests +_view Lib/test/test_memoryview.py /^ def _view(self, obj):$/;" m class:BaseMemorySliceTests +_view Lib/test/test_memoryview.py /^ def _view(self, obj):$/;" m class:BaseMemoryviewTests +_visiblePageId Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ DWORD _visiblePageId;$/;" m class:PythonBootstrapperApplication file: +_void Lib/inspect.py /^class _void:$/;" c +_w Lib/tkinter/__init__.py /^ _w = '.'$/;" v class:Tk +_wait Lib/asyncio/base_subprocess.py /^ async def _wait(self):$/;" m class:BaseSubprocessTransport +_wait Lib/asyncio/locks.py /^ async def _wait(self):$/;" m class:Barrier +_wait Lib/asyncio/tasks.py /^async def _wait(fs, timeout, return_when, loop):$/;" f +_wait Lib/subprocess.py /^ def _wait(self, timeout):$/;" f function:Popen._on_error_fd_closer +_wait Lib/test/_test_multiprocessing.py /^def _wait():$/;" f +_wait Lib/test/lock_tests.py /^def _wait():$/;" f +_wait Lib/threading.py /^ def _wait(self, timeout):$/;" m class:Barrier +_wait_cancel Lib/asyncio/windows_events.py /^ def _wait_cancel(self, event, done_callback):$/;" m class:IocpProactor +_wait_completed Lib/test/libregrtest/runtest_mp.py /^ def _wait_completed(self) -> None:$/;" m class:TestWorkerProcess +_wait_for_data Lib/asyncio/streams.py /^ async def _wait_for_data(self, func_name):$/;" m class:StreamReader +_wait_for_handle Lib/asyncio/windows_events.py /^ def _wait_for_handle(self, handle, timeout, _is_cancel):$/;" m class:IocpProactor +_wait_for_interp_to_run Lib/test/test__xxsubinterpreters.py /^def _wait_for_interp_to_run(interp, timeout=None):$/;" f +_wait_for_one Lib/asyncio/tasks.py /^ async def _wait_for_one():$/;" f function:as_completed +_wait_for_tstate_lock Lib/threading.py /^ def _wait_for_tstate_lock(self, block=True, timeout=-1):$/;" m class:Thread +_wait_for_updates Lib/multiprocessing/pool.py /^ def _wait_for_updates(self, sentinels, change_notifier, timeout):$/;" m class:ThreadPool +_wait_for_updates Lib/multiprocessing/pool.py /^ def _wait_for_updates(sentinels, change_notifier, timeout=None):$/;" m class:Pool +_waitfor Lib/test/support/os_helper.py /^ def _waitfor(func, pathname, waitall=False):$/;" f function:unlink +_waitpid Lib/subprocess.py /^ _waitpid = None$/;" v +_waitpid Lib/subprocess.py /^ _waitpid = os.waitpid$/;" v +_waitstatus_to_exitcode Lib/subprocess.py /^ _waitstatus_to_exitcode = None$/;" v +_waitstatus_to_exitcode Lib/subprocess.py /^ _waitstatus_to_exitcode = os.waitstatus_to_exitcode$/;" v +_wake_up_first Lib/asyncio/locks.py /^ def _wake_up_first(self):$/;" m class:Lock +_wake_up_next Lib/asyncio/locks.py /^ def _wake_up_next(self):$/;" m class:Semaphore +_wakeup Lib/asyncio/base_events.py /^ def _wakeup(self):$/;" m class:Server +_wakeup_next Lib/asyncio/queues.py /^ def _wakeup_next(self, waiters):$/;" m class:Queue +_wakeup_waiter Lib/asyncio/sslproto.py /^ def _wakeup_waiter(self, exc=None):$/;" m class:SSLProtocol +_wakeup_waiter Lib/asyncio/streams.py /^ def _wakeup_waiter(self):$/;" m class:StreamReader +_walk_dir Lib/compileall.py /^def _walk_dir(dir, maxlevels, quiet=0):$/;" f +_walk_tb_with_full_positions Lib/traceback.py /^def _walk_tb_with_full_positions(tb):$/;" f +_walk_tree Tools/c-analyzer/c_common/fsutil.py /^def _walk_tree(root, *,$/;" f +_warn Lib/idlelib/config.py /^def _warn(msg, *key):$/;" f +_warn Lib/importlib/metadata/__init__.py /^ _warn = functools.partial($/;" v class:DeprecatedTuple +_warn Lib/importlib/metadata/_adapters.py /^_warn = functools.partial($/;" v +_warn_about_deprecation Lib/test/support/warnings_helper.py /^def _warn_about_deprecation():$/;" f +_warn_on_extension_import Lib/test/test_hashlib.py /^ _warn_on_extension_import = (os.name == 'posix' or support.Py_DEBUG)$/;" v class:HashLibTestCase +_warn_unawaited_coroutine Lib/warnings.py /^def _warn_unawaited_coroutine(coro):$/;" f +_warn_unhandled_exception Lib/http/cookiejar.py /^def _warn_unhandled_exception():$/;" f +_warned Lib/idlelib/config.py /^_warned = set()$/;" v +_warnings Lib/importlib/_bootstrap.py /^_warnings = None$/;" v +_warnings_defaults Lib/warnings.py /^ _warnings_defaults = False$/;" v +_warnings_defaults Lib/warnings.py /^ _warnings_defaults = True$/;" v +_warnings_runtime_state Include/internal/pycore_warnings.h /^struct _warnings_runtime_state {$/;" s +_warnings_showwarning Lib/idlelib/pyshell.py /^_warnings_showwarning = None$/;" v +_warnings_showwarning Lib/idlelib/run.py /^_warnings_showwarning = None$/;" v +_warnings_showwarning Lib/logging/__init__.py /^_warnings_showwarning = None$/;" v +_watch_for_survival Lib/test/test_logging.py /^ def _watch_for_survival(self, *args):$/;" m class:MemoryTest +_wav Lib/email/mime/audio.py /^def _wav(h, f):$/;" f +_wave_params Lib/wave.py /^_wave_params = namedtuple('_wave_params',$/;" v +_weak_cache Lib/zoneinfo/_zoneinfo.py /^ _weak_cache = weakref.WeakValueDictionary()$/;" v class:ZoneInfo +_weakref Lib/importlib/_bootstrap.py /^_weakref = None$/;" v +_weakref__remove_dead_weakref Modules/clinic/_weakref.c.h /^_weakref__remove_dead_weakref(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_weakref__remove_dead_weakref_impl Modules/_weakref.c /^_weakref__remove_dead_weakref_impl(PyObject *module, PyObject *dct,$/;" f file: +_weakref_getweakrefcount Modules/clinic/_weakref.c.h /^_weakref_getweakrefcount(PyObject *module, PyObject *object)$/;" f +_weakref_getweakrefcount_impl Modules/_weakref.c /^_weakref_getweakrefcount_impl(PyObject *module, PyObject *object)$/;" f file: +_weakref_getweakrefs Modules/_weakref.c /^_weakref_getweakrefs(PyObject *module, PyObject *object)$/;" f file: +_weakref_proxy Modules/clinic/_weakref.c.h /^_weakref_proxy(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_weakref_proxy_impl Modules/_weakref.c /^_weakref_proxy_impl(PyObject *module, PyObject *object, PyObject *callback)$/;" f file: +_webp Lib/email/mime/image.py /^def _webp(h):$/;" f +_weekdayname Lib/http/cookies.py /^_weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']$/;" v +_weekdayname Lib/wsgiref/handlers.py /^_weekdayname = ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]$/;" v +_what Lib/email/mime/audio.py /^def _what(data):$/;" f +_what Lib/email/mime/image.py /^def _what(data):$/;" f +_whitespace Lib/textwrap.py /^_whitespace = '\\t\\n\\x0b\\x0c\\r '$/;" v +_whitespace_chars Lib/idlelib/hyperparser.py /^ _whitespace_chars = " \\t\\n\\\\"$/;" v class:HyperParser +_whitespace_only_re Lib/textwrap.py /^_whitespace_only_re = re.compile('^[ \\t]+$', re.MULTILINE)$/;" v +_widget_redirector Lib/idlelib/redirector.py /^def _widget_redirector(parent): # htest #$/;" f +_widget_redirector_spec Lib/idlelib/idle_test/htest.py /^_widget_redirector_spec = {$/;" v +_width Lib/email/generator.py /^_width = len(repr(sys.maxsize-1))$/;" v +_win32_ver Lib/platform.py /^def _win32_ver(version, csd, ptype):$/;" f +_win_path_needs_curdir Lib/shutil.py /^def _win_path_needs_curdir(cmd, mode):$/;" f +_winapi Lib/multiprocessing/connection.py /^ _winapi = None$/;" v +_winapi Lib/shutil.py /^ _winapi = None$/;" v +_winapi Lib/test/test_mimetypes.py /^ _winapi = None$/;" v +_winapi Lib/test/test_os.py /^ _winapi = None$/;" v +_winapi Lib/test/test_shutil.py /^ _winapi = None$/;" v +_winapi_CloseHandle Modules/clinic/_winapi.c.h /^_winapi_CloseHandle(PyObject *module, PyObject *arg)$/;" f +_winapi_CloseHandle_impl Modules/_winapi.c /^_winapi_CloseHandle_impl(PyObject *module, HANDLE handle)$/;" f file: +_winapi_ConnectNamedPipe Modules/clinic/_winapi.c.h /^_winapi_ConnectNamedPipe(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_winapi_ConnectNamedPipe_impl Modules/_winapi.c /^_winapi_ConnectNamedPipe_impl(PyObject *module, HANDLE handle,$/;" f file: +_winapi_CopyFile2 Modules/clinic/_winapi.c.h /^_winapi_CopyFile2(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_winapi_CopyFile2_impl Modules/_winapi.c /^_winapi_CopyFile2_impl(PyObject *module, LPCWSTR existing_file_name,$/;" f file: +_winapi_CreateFile Modules/clinic/_winapi.c.h /^_winapi_CreateFile(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_CreateFileMapping Modules/clinic/_winapi.c.h /^_winapi_CreateFileMapping(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_CreateFileMapping_impl Modules/_winapi.c /^_winapi_CreateFileMapping_impl(PyObject *module, HANDLE file_handle,$/;" f file: +_winapi_CreateFile_impl Modules/_winapi.c /^_winapi_CreateFile_impl(PyObject *module, LPCTSTR file_name,$/;" f file: +_winapi_CreateJunction Modules/clinic/_winapi.c.h /^_winapi_CreateJunction(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_CreateJunction_impl Modules/_winapi.c /^_winapi_CreateJunction_impl(PyObject *module, LPCWSTR src_path,$/;" f file: +_winapi_CreateNamedPipe Modules/clinic/_winapi.c.h /^_winapi_CreateNamedPipe(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_CreateNamedPipe_impl Modules/_winapi.c /^_winapi_CreateNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD open_mode,$/;" f file: +_winapi_CreatePipe Modules/clinic/_winapi.c.h /^_winapi_CreatePipe(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_CreatePipe_impl Modules/_winapi.c /^_winapi_CreatePipe_impl(PyObject *module, PyObject *pipe_attrs, DWORD size)$/;" f file: +_winapi_CreateProcess Modules/clinic/_winapi.c.h /^_winapi_CreateProcess(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_CreateProcess_impl Modules/_winapi.c /^_winapi_CreateProcess_impl(PyObject *module,$/;" f file: +_winapi_DuplicateHandle Modules/clinic/_winapi.c.h /^_winapi_DuplicateHandle(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_DuplicateHandle_impl Modules/_winapi.c /^_winapi_DuplicateHandle_impl(PyObject *module, HANDLE source_process_handle,$/;" f file: +_winapi_ExitProcess Modules/clinic/_winapi.c.h /^_winapi_ExitProcess(PyObject *module, PyObject *arg)$/;" f +_winapi_ExitProcess_impl Modules/_winapi.c /^_winapi_ExitProcess_impl(PyObject *module, UINT ExitCode)$/;" f file: +_winapi_GetACP Modules/clinic/_winapi.c.h /^_winapi_GetACP(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_winapi_GetACP_impl Modules/_winapi.c /^_winapi_GetACP_impl(PyObject *module)$/;" f file: +_winapi_GetCurrentProcess Modules/clinic/_winapi.c.h /^_winapi_GetCurrentProcess(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_winapi_GetCurrentProcess_impl Modules/_winapi.c /^_winapi_GetCurrentProcess_impl(PyObject *module)$/;" f file: +_winapi_GetExitCodeProcess Modules/clinic/_winapi.c.h /^_winapi_GetExitCodeProcess(PyObject *module, PyObject *arg)$/;" f +_winapi_GetExitCodeProcess_impl Modules/_winapi.c /^_winapi_GetExitCodeProcess_impl(PyObject *module, HANDLE process)$/;" f file: +_winapi_GetFileType Modules/clinic/_winapi.c.h /^_winapi_GetFileType(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_winapi_GetFileType_impl Modules/_winapi.c /^_winapi_GetFileType_impl(PyObject *module, HANDLE handle)$/;" f file: +_winapi_GetLastError Modules/clinic/_winapi.c.h /^_winapi_GetLastError(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_winapi_GetLastError_impl Modules/_winapi.c /^_winapi_GetLastError_impl(PyObject *module)$/;" f file: +_winapi_GetModuleFileName Modules/clinic/_winapi.c.h /^_winapi_GetModuleFileName(PyObject *module, PyObject *arg)$/;" f +_winapi_GetModuleFileName_impl Modules/_winapi.c /^_winapi_GetModuleFileName_impl(PyObject *module, HMODULE module_handle)$/;" f file: +_winapi_GetStdHandle Modules/clinic/_winapi.c.h /^_winapi_GetStdHandle(PyObject *module, PyObject *arg)$/;" f +_winapi_GetStdHandle_impl Modules/_winapi.c /^_winapi_GetStdHandle_impl(PyObject *module, DWORD std_handle)$/;" f file: +_winapi_GetVersion Modules/clinic/_winapi.c.h /^_winapi_GetVersion(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +_winapi_GetVersion_impl Modules/_winapi.c /^_winapi_GetVersion_impl(PyObject *module)$/;" f file: +_winapi_LCMapStringEx Modules/clinic/_winapi.c.h /^_winapi_LCMapStringEx(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_winapi_LCMapStringEx_impl Modules/_winapi.c /^_winapi_LCMapStringEx_impl(PyObject *module, LPCWSTR locale, DWORD flags,$/;" f file: +_winapi_MapViewOfFile Modules/clinic/_winapi.c.h /^_winapi_MapViewOfFile(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_MapViewOfFile_impl Modules/_winapi.c /^_winapi_MapViewOfFile_impl(PyObject *module, HANDLE file_map,$/;" f file: +_winapi_NeedCurrentDirectoryForExePath Modules/clinic/_winapi.c.h /^_winapi_NeedCurrentDirectoryForExePath(PyObject *module, PyObject *arg)$/;" f +_winapi_NeedCurrentDirectoryForExePath_impl Modules/_winapi.c /^_winapi_NeedCurrentDirectoryForExePath_impl(PyObject *module,$/;" f file: +_winapi_OpenFileMapping Modules/clinic/_winapi.c.h /^_winapi_OpenFileMapping(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_OpenFileMapping_impl Modules/_winapi.c /^_winapi_OpenFileMapping_impl(PyObject *module, DWORD desired_access,$/;" f file: +_winapi_OpenProcess Modules/clinic/_winapi.c.h /^_winapi_OpenProcess(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_OpenProcess_impl Modules/_winapi.c /^_winapi_OpenProcess_impl(PyObject *module, DWORD desired_access,$/;" f file: +_winapi_Overlapped_GetOverlappedResult Modules/clinic/_winapi.c.h /^_winapi_Overlapped_GetOverlappedResult(OverlappedObject *self, PyObject *arg)$/;" f +_winapi_Overlapped_GetOverlappedResult_impl Modules/_winapi.c /^_winapi_Overlapped_GetOverlappedResult_impl(OverlappedObject *self, int wait)$/;" f file: +_winapi_Overlapped_cancel Modules/clinic/_winapi.c.h /^_winapi_Overlapped_cancel(OverlappedObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_winapi_Overlapped_cancel_impl Modules/_winapi.c /^_winapi_Overlapped_cancel_impl(OverlappedObject *self)$/;" f file: +_winapi_Overlapped_getbuffer Modules/clinic/_winapi.c.h /^_winapi_Overlapped_getbuffer(OverlappedObject *self, PyObject *Py_UNUSED(ignored))$/;" f +_winapi_Overlapped_getbuffer_impl Modules/_winapi.c /^_winapi_Overlapped_getbuffer_impl(OverlappedObject *self)$/;" f file: +_winapi_PeekNamedPipe Modules/clinic/_winapi.c.h /^_winapi_PeekNamedPipe(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_PeekNamedPipe_impl Modules/_winapi.c /^_winapi_PeekNamedPipe_impl(PyObject *module, HANDLE handle, int size)$/;" f file: +_winapi_ReadFile Modules/clinic/_winapi.c.h /^_winapi_ReadFile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_winapi_ReadFile_impl Modules/_winapi.c /^_winapi_ReadFile_impl(PyObject *module, HANDLE handle, DWORD size,$/;" f file: +_winapi_SetNamedPipeHandleState Modules/clinic/_winapi.c.h /^_winapi_SetNamedPipeHandleState(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_SetNamedPipeHandleState_impl Modules/_winapi.c /^_winapi_SetNamedPipeHandleState_impl(PyObject *module, HANDLE named_pipe,$/;" f file: +_winapi_TerminateProcess Modules/clinic/_winapi.c.h /^_winapi_TerminateProcess(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_TerminateProcess_impl Modules/_winapi.c /^_winapi_TerminateProcess_impl(PyObject *module, HANDLE handle,$/;" f file: +_winapi_UnmapViewOfFile Modules/clinic/_winapi.c.h /^_winapi_UnmapViewOfFile(PyObject *module, PyObject *arg)$/;" f +_winapi_UnmapViewOfFile_impl Modules/_winapi.c /^_winapi_UnmapViewOfFile_impl(PyObject *module, LPCVOID address)$/;" f file: +_winapi_VirtualQuerySize Modules/clinic/_winapi.c.h /^_winapi_VirtualQuerySize(PyObject *module, PyObject *arg)$/;" f +_winapi_VirtualQuerySize_impl Modules/_winapi.c /^_winapi_VirtualQuerySize_impl(PyObject *module, LPCVOID address)$/;" f file: +_winapi_WaitForMultipleObjects Modules/clinic/_winapi.c.h /^_winapi_WaitForMultipleObjects(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_WaitForMultipleObjects_impl Modules/_winapi.c /^_winapi_WaitForMultipleObjects_impl(PyObject *module, PyObject *handle_seq,$/;" f file: +_winapi_WaitForSingleObject Modules/clinic/_winapi.c.h /^_winapi_WaitForSingleObject(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_WaitForSingleObject_impl Modules/_winapi.c /^_winapi_WaitForSingleObject_impl(PyObject *module, HANDLE handle,$/;" f file: +_winapi_WaitNamedPipe Modules/clinic/_winapi.c.h /^_winapi_WaitNamedPipe(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +_winapi_WaitNamedPipe_impl Modules/_winapi.c /^_winapi_WaitNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD timeout)$/;" f file: +_winapi_WriteFile Modules/clinic/_winapi.c.h /^_winapi_WriteFile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_winapi_WriteFile_impl Modules/_winapi.c /^_winapi_WriteFile_impl(PyObject *module, HANDLE handle, PyObject *buffer,$/;" f file: +_winapi__mimetypes_read_windows_registry Modules/clinic/_winapi.c.h /^_winapi__mimetypes_read_windows_registry(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_winapi__mimetypes_read_windows_registry_impl Modules/_winapi.c /^_winapi__mimetypes_read_windows_registry_impl(PyObject *module,$/;" f file: +_windll_getnode Lib/uuid.py /^def _windll_getnode():$/;" f +_window_size Lib/turtle.py /^ def _window_size(self):$/;" m class:TurtleScreenBase +_windowingsystem Lib/tkinter/__init__.py /^ def _windowingsystem(self):$/;" m class:Misc +_windows_cert_stores Lib/ssl.py /^ _windows_cert_stores = ("CA", "ROOT")$/;" v class:SSLContext +_windows_illegal_name_trans_table Lib/zipfile/__init__.py /^ _windows_illegal_name_trans_table = None$/;" v class:ZipFile +_winreg Lib/mimetypes.py /^ _winreg = None$/;" v +_with Lib/test/lock_tests.py /^ def _with(err=None):$/;" f function:BaseLockTests.test_with +_with Lib/test/lock_tests.py /^ def _with(err=None):$/;" f function:BaseSemaphoreTests.test_with +_with Lib/test/test_dis.py /^def _with(c):$/;" f +_with Lib/test/test_io.py /^ def _with():$/;" f function:CommonBufferedTests.test_context_manager +_with_repr Lib/test/support/_hypothesis_stubs/_helpers.py /^ def _with_repr(self, new_repr):$/;" m class:StubClass +_withitem Include/internal/pycore_ast.h /^struct _withitem {$/;" s +_wixLoc Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^ WIX_LOCALIZATION* _wixLoc;$/;" m class:PythonBootstrapperApplication file: +_wmi Lib/test/test_wmi.py /^_wmi = import_helper.import_module('_wmi', required_on=['win'])$/;" v +_wmi_exec_query PC/clinic/_wmimodule.cpp.h /^_wmi_exec_query(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +_wmi_exec_query_impl PC/_wmimodule.cpp /^_wmi_exec_query_impl(PyObject *module, PyObject *query)$/;" f file: +_wmi_query Lib/platform.py /^ def _wmi_query(*keys):$/;" f +_wmi_query Lib/platform.py /^ def _wmi_query(table, *keys):$/;" f +_wo_bytecode Tools/importbench/importbench.py /^def _wo_bytecode(module):$/;" f +_worker Lib/concurrent/futures/thread.py /^def _worker(executor_reference, work_queue, initializer, initargs):$/;" f +_worker Lib/test/test_ctypes/test_errno.py /^ def _worker():$/;" f function:Test.test_GetLastError +_worker Lib/test/test_ctypes/test_errno.py /^ def _worker():$/;" f function:Test.test_open +_wrap Lib/importlib/_bootstrap.py /^def _wrap(new, old):$/;" f +_wrap Lib/importlib/_bootstrap_external.py /^ def _wrap(new, old):$/;" f function:_check_name._check_name_wrapper +_wrap_awaitable Lib/asyncio/tasks.py /^ async def _wrap_awaitable(awaitable):$/;" f function:ensure_future +_wrap_bytes_repr Lib/pprint.py /^def _wrap_bytes_repr(object, width, allowance):$/;" f +_wrap_chunks Lib/textwrap.py /^ def _wrap_chunks(self, chunks):$/;" m class:TextWrapper +_wrap_close Lib/os.py /^ class _wrap_close:$/;" c +_wrap_exception Lib/multiprocessing/pool.py /^ _wrap_exception = False$/;" v class:ThreadPool +_wrap_exception Lib/multiprocessing/pool.py /^ _wrap_exception = True$/;" v class:Pool +_wrap_strftime Lib/_pydatetime.py /^def _wrap_strftime(object, format, timetuple):$/;" f +_wrap_with_retry_thrice Lib/test/test_urllib2net.py /^def _wrap_with_retry_thrice(func, exc):$/;" f +_wrapper Lib/xml/sax/saxutils.py /^ class _wrapper:$/;" c function:_gettextwriter +_wraps Lib/signal.py /^def _wraps(wrapped):$/;" f +_writable Lib/_pyio.py /^ _writable = False$/;" v class:FileIO +_write Lib/email/generator.py /^ def _write(self, msg):$/;" m class:Generator +_write Lib/multiprocessing/connection.py /^ _write = _multiprocessing.send$/;" v class:Connection +_write Lib/multiprocessing/connection.py /^ _write = os.write$/;" v class:Connection +_write Lib/turtle.py /^ def _write(self, pos, txt, align, font, pencolor):$/;" m class:TurtleScreenBase +_write Lib/turtle.py /^ def _write(self, txt, align, font):$/;" m class:RawTurtle +_write Lib/wsgiref/handlers.py /^ def _write(self,data):$/;" m class:BaseHandler +_write Lib/wsgiref/handlers.py /^ def _write(self,data):$/;" m class:SimpleHandler +_writeBody Lib/email/generator.py /^ _writeBody = _handle_text$/;" v class:BytesGenerator +_writeBody Lib/email/generator.py /^ _writeBody = _handle_text$/;" v class:Generator +_write_appdata Lib/asyncio/sslproto.py /^ def _write_appdata(self, list_of_data):$/;" m class:SSLProtocol +_write_atomic Lib/importlib/_bootstrap_external.py /^def _write_atomic(path, data, mode=0o666):$/;" f +_write_constant Lib/ast.py /^ def _write_constant(self, value):$/;" m class:_Unparser +_write_contents Lib/importlib/resources/_common.py /^def _write_contents(target, source):$/;" f +_write_data Lib/xml/dom/minidom.py /^def _write_data(writer, data):$/;" f +_write_decls_tsv Tools/c-analyzer/c_parser/datafiles.py /^def _write_decls_tsv(decls, outfile, extracolumns, kwargs):$/;" f +_write_docstring Lib/ast.py /^ def _write_docstring(self, node):$/;" m class:_Unparser +_write_docstring_and_traverse_body Lib/ast.py /^ def _write_docstring_and_traverse_body(self, node):$/;" m class:_Unparser +_write_end_record Lib/zipfile/__init__.py /^ def _write_end_record(self):$/;" m class:ZipFile +_write_error_test Lib/test/test_csv.py /^ def _write_error_test(self, exc, fields, **kwargs):$/;" m class:Test_Csv +_write_file_prefix Lib/zipapp.py /^def _write_file_prefix(f, interpreter):$/;" f +_write_float Lib/aifc.py /^def _write_float(f, x):$/;" f +_write_form_length Lib/aifc.py /^ def _write_form_length(self, datalength):$/;" m class:Aifc_write +_write_fstring_inner Lib/ast.py /^ def _write_fstring_inner(self, node):$/;" m class:_Unparser +_write_gzip_header Lib/gzip.py /^ def _write_gzip_header(self, compresslevel):$/;" m class:GzipFile +_write_header Lib/aifc.py /^ def _write_header(self, initlength):$/;" m class:Aifc_write +_write_header Lib/sunau.py /^ def _write_header(self):$/;" m class:Au_write +_write_header Lib/wave.py /^ def _write_header(self, initlength):$/;" m class:Wave_write +_write_headers Lib/email/generator.py /^ def _write_headers(self, msg):$/;" m class:BytesGenerator +_write_headers Lib/email/generator.py /^ def _write_headers(self, msg):$/;" m class:Generator +_write_instance_repr Tools/gdb/libpython.py /^def _write_instance_repr(out, visited, name, pyop_attrdict, address):$/;" f +_write_lines Lib/email/generator.py /^ def _write_lines(self, lines):$/;" m class:Generator +_write_long Lib/aifc.py /^def _write_long(f, x):$/;" f +_write_object Lib/plistlib.py /^ def _write_object(self, value):$/;" m class:_BinaryPlistWriter +_write_raw Lib/gzip.py /^ def _write_raw(self, data):$/;" m class:GzipFile +_write_ready Lib/asyncio/unix_events.py /^ def _write_ready(self):$/;" m class:_UnixWritePipeTransport +_write_section Lib/configparser.py /^ def _write_section(self, fp, section_name, section_items, delimiter):$/;" m class:RawConfigParser +_write_send Lib/asyncio/selector_events.py /^ def _write_send(self):$/;" m class:_SelectorSocketTransport +_write_sendmsg Lib/asyncio/selector_events.py /^ def _write_sendmsg(self):$/;" m class:_SelectorSocketTransport +_write_short Lib/aifc.py /^def _write_short(f, x):$/;" f +_write_size Lib/plistlib.py /^ def _write_size(self, token, size):$/;" m class:_BinaryPlistWriter +_write_size64 Modules/_pickle.c /^_write_size64(char *out, size_t value)$/;" f file: +_write_status Lib/unittest/runner.py /^ def _write_status(self, test, status):$/;" m class:TextTestResult +_write_str_avoiding_backslashes Lib/ast.py /^ def _write_str_avoiding_backslashes(self, string, *, quote_types=_ALL_QUOTES):$/;" m class:_Unparser +_write_string Lib/aifc.py /^def _write_string(f, s):$/;" f +_write_test Lib/test/test_csv.py /^ def _write_test(self, fields, expect, **kwargs):$/;" m class:Test_Csv +_write_test_data Lib/test/test_winreg.py /^ def _write_test_data(self, root_key, subkeystr="sub_key",$/;" m class:BaseWinregTests +_write_to_self Lib/asyncio/base_events.py /^ def _write_to_self(self):$/;" m class:BaseEventLoop +_write_to_self Lib/asyncio/proactor_events.py /^ def _write_to_self(self):$/;" m class:BaseProactorEventLoop +_write_to_self Lib/asyncio/selector_events.py /^ def _write_to_self(self):$/;" m class:BaseSelectorEventLoop +_write_to_self Lib/test/test_asyncio/utils.py /^ def _write_to_self(self):$/;" m class:TestLoop +_write_to_zip PC/layout/main.py /^def _write_to_zip(zf, dest, src, ns, checked=True):$/;" f +_write_u32 Lib/sunau.py /^def _write_u32(file, x):$/;" f +_write_ulong Lib/aifc.py /^def _write_ulong(f, x):$/;" f +_write_ushort Lib/aifc.py /^def _write_ushort(f, x):$/;" f +_writecheck Lib/zipfile/__init__.py /^ def _writecheck(self, zinfo):$/;" m class:ZipFile +_writefd Lib/test/_test_multiprocessing.py /^ def _writefd(cls, conn, data, create_dummy_fds=False):$/;" m class:_TestConnection +_writemarkers Lib/aifc.py /^ def _writemarkers(self):$/;" m class:Aifc_write +_writing_bytecode Tools/importbench/importbench.py /^def _writing_bytecode(module):$/;" f +_wsp_splitter Lib/email/_header_value_parser.py /^_wsp_splitter = re.compile(r'([{}]+)'.format(''.join(WSP))).split$/;" v +_x Lib/test/test_inspect.py /^ _x = object()$/;" v class:TestGetattrStatic.test_classVirtualAttribute.Thing +_x509name_print Modules/_ssl/cert.c /^_x509name_print(_sslmodulestate *state, X509_NAME *name, int indent, unsigned long flags)$/;" f file: +_xbm Lib/email/mime/image.py /^def _xbm(h):$/;" f +_xid Include/cpython/pystate.h /^struct _xid {$/;" s +_xid_capsule_destructor Modules/_testcapimodule.c /^_xid_capsule_destructor(PyObject *capsule)$/;" f file: +_xidata_clear Python/pystate.c /^_xidata_clear(_PyCrossInterpreterData *data)$/;" f file: +_xidata_init Python/pystate.c /^_xidata_init(_PyCrossInterpreterData *data)$/;" f file: +_xidregistry Include/internal/pycore_runtime.h /^ struct _xidregistry {$/;" s struct:pyruntimestate +_xidregistry_add_type Python/pystate.c /^_xidregistry_add_type(struct _xidregistry *xidregistry, PyTypeObject *cls,$/;" f file: +_xidregistry_find_type Python/pystate.c /^_xidregistry_find_type(struct _xidregistry *xidregistry, PyTypeObject *cls)$/;" f file: +_xidregistry_remove_entry Python/pystate.c /^_xidregistry_remove_entry(struct _xidregistry *xidregistry,$/;" f file: +_xidregitem Include/internal/pycore_interp.h /^struct _xidregitem {$/;" s +_xml_dumps Lib/multiprocessing/connection.py /^def _xml_dumps(obj):$/;" f +_xml_loads Lib/multiprocessing/connection.py /^def _xml_loads(s):$/;" f +_xml_parse_type_spec Modules/pyexpat.c /^static PyType_Spec _xml_parse_type_spec = {$/;" v file: +_xml_parse_type_spec_slots Modules/pyexpat.c /^static PyType_Slot _xml_parse_type_spec_slots[] = {$/;" v file: +_xxtestfuzz Lib/test/test_xxtestfuzz.py /^_xxtestfuzz = import_helper.import_module('_xxtestfuzz')$/;" v +_xxx_init Modules/_ctypes/_ctypes_test.c /^static void _xxx_init(void *(*Xalloc)(int), void (*Xfree)(void *))$/;" f file: +_xxx_lib Modules/_ctypes/_ctypes_test.c /^xxx_library _xxx_lib = {$/;" v +_yield_finished_futures Lib/concurrent/futures/_base.py /^def _yield_finished_futures(fs, waiter, ref_collect):$/;" f +_ymd2ord Lib/_pydatetime.py /^def _ymd2ord(year, month, day):$/;" f +_ymd2ord Lib/zoneinfo/_zoneinfo.py /^ def _ymd2ord(cls, year, month, day):$/;" m class:_CalendarOffset +_zip_directory_cache Lib/zipimport.py /^_zip_directory_cache = {}$/;" v +_zip_searchorder Lib/zipimport.py /^_zip_searchorder = ($/;" v +a Lib/poplib.py /^ a = POP3(sys.argv[1])$/;" v class:POP3 +a Lib/test/crashers/underlying_dict.py /^a = A()$/;" v +a Lib/test/dtracedata/instance.py /^a = old_style_class()$/;" v +a Lib/test/inspect_fodder2.py /^a = [None,$/;" v +a Lib/test/test_capi/test_misc.py /^ def a(self):$/;" m class:Test_Pep523API.test_inlined_load_attr.C +a Lib/test/test_class.py /^ a = property(booh)$/;" v class:ClassTests.testForExceptionsRaisedInInstanceGetattr2.A +a Lib/test/test_coroutines.py /^ async def a():$/;" f function:CoroutineTest.test_stack_in_coroutine_throw +a Lib/test/test_coroutines.py /^ def a():$/;" f function:CoroutineTest.test_cr_await +a Lib/test/test_decorators.py /^ a = A()$/;" v class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2 +a Lib/test/test_descr.py /^ a = 1$/;" v class:.test_object_class_assignment_between_heaptypes_and_nonheaptypes.SubType +a Lib/test/test_descr.py /^ a = descr$/;" v class:.test_set_and_no_get.X +a Lib/test/test_dict.py /^ a = C()$/;" v class:DictTest.make_shared_key_dict.C +a Lib/test/test_enum.py /^ a = 1$/;" v class:TestSpecial.test_nested_classes_in_enum_are_members.Outer +a Lib/test/test_enum.py /^ a = ...$/;" v class:TestSpecial.test_multiple_mixin_mro.TestAutoInt +a Lib/test/test_enum.py /^ a = ...$/;" v class:TestSpecial.test_multiple_mixin_mro.TestAutoNumber +a Lib/test/test_enum.py /^ a = 1$/;" v class:TestSpecial.test_equality.OrdinaryEnum +a Lib/test/test_enum.py /^ a = 1$/;" v class:TestSpecial.test_nested_classes_in_enum_are_not_members.Outer +a Lib/test/test_enum.py /^ a = 1$/;" v class:TestSpecial.test_nested_classes_in_enum_with_member.Outer +a Lib/test/test_enum.py /^ a = 1$/;" v class:TestSpecial.test_nested_classes_in_enum_with_nonmember.Outer +a Lib/test/test_enum.py /^ a = Foo$/;" v class:TestSpecial.test_enum_of_types.MyTypes2 +a Lib/test/test_enum.py /^ a = Foo$/;" v class:TestSpecial.test_enum_of_types_with_nonmember.MyTypes2 +a Lib/test/test_enum.py /^ a = ord('a')$/;" v class:TestSpecial.test_flag_with_custom_new.FlagFromChar +a Lib/test/test_enum.py /^ a = typing.List[int]$/;" v class:TestSpecial.test_enum_of_generic_aliases.E +a Lib/test/test_exceptions.py /^ a = _a$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle2.C +a Lib/test/test_exceptions.py /^ a = _a$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle3.E +a Lib/test/test_exceptions.py /^ a = a_$/;" v class:ExceptionTests.test_raise_does_not_create_context_chain_cycle.C +a Lib/test/test_funcattrs.py /^ def a(self):$/;" m class:FuncAttrsTest.setUp.F +a Lib/test/test_funcattrs.py /^ def a(): pass$/;" f function:FunctionPropertiesTest.test___code__ +a Lib/test/test_functools.py /^ def a(self):$/;" m class:TestCachedProperty.test_reuse_different_names.ReusedCachedProperty +a Lib/test/test_functools.py /^ a = ComparatorNotImplemented(8)$/;" v class:TestTotalOrdering.test_type_error_when_not_implemented.ComparatorNotImplemented +a Lib/test/test_functools.py /^ a = ComparatorNotImplemented(9)$/;" v class:TestTotalOrdering.test_type_error_when_not_implemented.ComparatorNotImplemented +a Lib/test/test_functools.py /^ a = A()$/;" v class:TestPartialMethod +a Lib/test/test_generators.py /^ def a():$/;" f function:YieldFromTests.test_generator_gi_yieldfrom +a Lib/test/test_import/data/circular_imports/from_cycle2.py /^a = 1$/;" v +a Lib/test/test_inspect.py /^ a = 3$/;" v class:TestGetattrStatic.test_custom_object_dict.Foo +a Lib/test/test_inspect.py /^ a = 3$/;" v class:TestGetattrStatic.test_dict_as_property.Foo +a Lib/test/test_inspect.py /^ a = 3$/;" v class:TestGetattrStatic.test_mutated_mro.Foo +a Lib/test/test_inspect.py /^ a = 4$/;" v class:TestGetattrStatic.test_mutated_mro.Bar +a Lib/test/test_patma.py /^ a = None$/;" v class:TestTypeErrors.test_got_multiple_subpatterns_for_attribute_0.Class +a Lib/test/test_patma.py /^ a = None$/;" v class:TestTypeErrors.test_got_multiple_subpatterns_for_attribute_1.Class +a Lib/test/test_pprint.py /^ a=6,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +a Lib/test/test_scope.py /^ a = x$/;" v class:ScopeTests.testBoundAndFree.f.C +a Lib/test/test_subclassinit.py /^ a = Descriptor()$/;" v class:Test.test_set_name_modifying_dict.A +a Lib/test/test_sys_settrace.py /^ a = 1$/;" v class:TraceTestCase.test_implicit_return_in_class.func.A +a Lib/test/test_sys_settrace.py /^ a = 2$/;" v class:TraceTestCase.test_implicit_return_in_class.func.A +a Lib/test/test_typing.py /^ a = c[[s], s]$/;" v class:GenericTests.test_non_generic_subscript.A +a Lib/test/test_typing.py /^ a = t[s]$/;" v class:GenericTests.test_non_generic_subscript.A +a Lib/test/test_typing.py /^ a = A(3)$/;" v class:NamedTupleTests.test_generic.Y +a Lib/test/test_typing.py /^ a = None$/;" v class:GenericTests.test_nested.Visitor +a Lib/test/test_typing.py /^ def a(*args: *tuple[int, *Ts]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +a Lib/test/test_typing.py /^ def a(*args: *tuple[int, ...]): pass$/;" f function:TypeVarTupleTests.test_variadic_args_with_ellipsis_annotations_are_correct +a Lib/test/test_unittest/testmock/testasync.py /^ def a(self): pass$/;" m class:NormalClass +a Lib/test/test_unittest/testmock/testhelpers.py /^ a = 3$/;" v class:SpecSignatureTest.test_create_autospec_keyword_arguments.Foo +a Lib/test/test_unittest/testmock/testhelpers.py /^ a = 3$/;" v class:SpecSignatureTest.test_inherit.Foo +a Lib/test/test_unittest/testmock/testhelpers.py /^ def a(self): pass$/;" m class:SpecSignatureTest.test_recursive.A +a Lib/test/test_unittest/testmock/testhelpers.py /^ def a(self, x): pass$/;" m class:SpecSignatureTest.test_spec_inheritance_for_classes.Foo +a Lib/test/test_unittest/testmock/testpatch.py /^ def a(self): pass$/;" m class:PatchTest.test_autospec.Boo.Bar +a Lib/test/test_unittest/testmock/testpatch.py /^ def a(self): pass$/;" m class:Foo.Bar +a Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +a Modules/_decimal/libmpdec/literature/fnt.py /^a = [1, 2, 0, 0]$/;" v +a Objects/listobject.c /^ sortslice a; \/* may point to temparray below *\/$/;" m struct:s_MergeState file: +a1 Lib/test/test_coroutines.py /^ def a1():$/;" f function:OriginTrackingTest.test_origin_tracking_warning +a1 Lib/test/test_grammar.py /^ def a1(one_arg,): pass$/;" f function:GrammarTests.test_funcdef +a1 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def a1(one_arg,): pass$/;" f function:GrammarTests.testFuncdef +a1 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def a1(one_arg,): pass$/;" f function:GrammarTests.testFuncdef +a2 Lib/test/test_coroutines.py /^ def a2():$/;" f function:OriginTrackingTest.test_origin_tracking_warning +a2 Lib/test/test_grammar.py /^ def a2(two, args,): pass$/;" f function:GrammarTests.test_funcdef +a2 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def a2(two, args,): pass$/;" f function:GrammarTests.testFuncdef +a2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def a2(two, args,): pass$/;" f function:GrammarTests.testFuncdef +a2b_functions Lib/test/test_binascii.py /^a2b_functions = ['a2b_base64', 'a2b_hex', 'a2b_qp', 'a2b_uu',$/;" v +a2b_qp Lib/quopri.py /^ a2b_qp = None$/;" v +a85decode Lib/base64.py /^def a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \\t\\n\\r\\v'):$/;" f +a85encode Lib/base64.py /^def a85encode(b, *, foldspaces=False, wrapcol=0, pad=False, adobe=False):$/;" f +aList Lib/test/test_contains.py /^ aList = list(range(15))$/;" v class:TestContains.test_builtin_sequence_types.Deviant1 +aProp Lib/test/test_descr.py /^ aProp = property(lambda self: "foo")$/;" v class:.test_supers.Base +aRepr Lib/reprlib.py /^aRepr = Repr()$/;" v +aUnion Lib/test/test_ctypes/test_pep3118.py /^class aUnion(Union):$/;" c +a_addrany Modules/getaddrinfo.c /^ const char *a_addrany;$/;" m struct:gai_afd file: +a_addrlen Modules/getaddrinfo.c /^ int a_addrlen;$/;" m struct:gai_afd file: +a_addrlen Modules/getnameinfo.c /^ int a_addrlen;$/;" m struct:gni_afd file: +a_af Modules/getaddrinfo.c /^ int a_af;$/;" m struct:gai_afd file: +a_af Modules/getnameinfo.c /^ int a_af;$/;" m struct:gni_afd file: +a_array Python/hamt.c /^ PyHamtNode *a_array[HAMT_ARRAY_NODE_SIZE];$/;" m struct:__anon680 file: +a_bytecode Python/assemble.c /^ PyObject *a_bytecode; \/* bytes containing bytecode *\/$/;" m struct:assembler file: +a_class_attribute Lib/test/test_doctest.py /^ a_class_attribute = 42$/;" v class:SampleClass +a_classmethod Lib/test/test_doctest.py /^ a_classmethod = classmethod(a_classmethod)$/;" v class:SampleClass +a_classmethod Lib/test/test_doctest.py /^ def a_classmethod(cls, v):$/;" m class:SampleClass +a_classmethod_property Lib/test/test_doctest.py /^ def a_classmethod_property(cls):$/;" m class:SampleClass +a_count Python/hamt.c /^ Py_ssize_t a_count;$/;" m struct:__anon680 file: +a_cur Python/pyarena.c /^ block *a_cur;$/;" m struct:_arena file: +a_except_table Python/assemble.c /^ PyObject *a_except_table; \/* bytes containing exception table *\/$/;" m struct:assembler file: +a_except_table_off Python/assemble.c /^ int a_except_table_off; \/* offset into exception table *\/$/;" m struct:assembler file: +a_fn_with_https_link Lib/test/test_pydoc.py /^ def a_fn_with_https_link():$/;" f function:TestDescriptions.test_html_for_https_links +a_global Lib/test/test_fstring.py /^a_global = 'global variable'$/;" v +a_head Python/pyarena.c /^ block *a_head;$/;" m struct:_arena file: +a_lineno Python/assemble.c /^ int a_lineno; \/* lineno of last emitted instruction *\/$/;" m struct:assembler file: +a_linetable Python/assemble.c /^ PyObject* a_linetable; \/* bytes containing location info *\/$/;" m struct:assembler file: +a_location_off Python/assemble.c /^ int a_location_off; \/* offset of last written location info frame *\/$/;" m struct:assembler file: +a_long Modules/_ctypes/_ctypes_test.c /^ long a_long;$/;" m union:__anon504 file: +a_loopback Modules/getaddrinfo.c /^ const char *a_loopback;$/;" m struct:gai_afd file: +a_method Lib/test/test_symtable.py /^ a_method = find_block(Mine, "a_method")$/;" v class:SymtableTest +a_methods Modules/arraymodule.c /^static PyMethodDef a_methods[] = {$/;" v file: +a_objects Python/pyarena.c /^ PyObject *a_objects;$/;" m struct:_arena file: +a_off Modules/getaddrinfo.c /^ int a_off;$/;" m struct:gai_afd file: +a_off Modules/getnameinfo.c /^ int a_off;$/;" m struct:gni_afd file: +a_offset Python/assemble.c /^ int a_offset; \/* offset into bytecode *\/$/;" m struct:assembler file: +a_property Lib/test/test_inspect.py /^ def a_property(self):$/;" m class:TestIsDataDescriptor.test_property.Propertied +a_size Lib/test/test_pydoc.py /^ def a_size(self):$/;" m class:PydocDocTest.test_method_aliases.A +a_socklen Modules/getaddrinfo.c /^ int a_socklen;$/;" m struct:gai_afd file: +a_socklen Modules/getnameinfo.c /^ int a_socklen;$/;" m struct:gni_afd file: +a_staticmethod Lib/test/test_doctest.py /^ a_staticmethod = staticmethod(a_staticmethod)$/;" v class:SampleClass +a_staticmethod Lib/test/test_doctest.py /^ def a_staticmethod(v):$/;" m class:SampleClass +a_struct Modules/_ctypes/_ctypes_test.c /^ } a_struct;$/;" m union:__anon504 typeref:struct:__anon504::__anon505 file: +a_union Modules/_ctypes/_ctypes_test.c /^ Test4 a_union;$/;" m struct:__anon506::__anon507 file: +ab_mem Python/pyarena.c /^ void *ab_mem;$/;" m struct:_block file: +ab_next Python/pyarena.c /^ struct _block *ab_next;$/;" m struct:_block typeref:struct:_block::_block file: +ab_offset Python/pyarena.c /^ size_t ab_offset;$/;" m struct:_block file: +ab_size Python/pyarena.c /^ size_t ab_size;$/;" m struct:_block file: +abc Lib/test/test_importlib/test_abc.py /^abc = test_util.import_importlib('importlib.abc')$/;" v +abc Lib/test/test_importlib/test_util.py /^abc = util.import_importlib('importlib.abc')$/;" v +abc_ABC Lib/test/test_abc.py /^ class abc_ABC(metaclass=abc_ABCMeta):$/;" c function:test_factory.TestABCWithInitSubclass.test_works_with_init_subclass +abc_data_clear Modules/_abc.c /^abc_data_clear(_abc_data *self)$/;" f file: +abc_data_dealloc Modules/_abc.c /^abc_data_dealloc(_abc_data *self)$/;" f file: +abc_data_new Modules/_abc.c /^abc_data_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +abc_data_traverse Modules/_abc.c /^abc_data_traverse(_abc_data *self, visitproc visit, void *arg)$/;" f file: +abc_invalidation_counter Modules/_abc.c /^ unsigned long long abc_invalidation_counter;$/;" m struct:__anon627 file: +abort Lib/asyncio/locks.py /^ async def abort(self):$/;" m class:Barrier +abort Lib/asyncio/proactor_events.py /^ def abort(self):$/;" m class:_ProactorBaseWritePipeTransport +abort Lib/asyncio/proactor_events.py /^ def abort(self):$/;" m class:_ProactorDatagramTransport +abort Lib/asyncio/selector_events.py /^ def abort(self):$/;" m class:_SelectorTransport +abort Lib/asyncio/sslproto.py /^ def abort(self):$/;" m class:_SSLProtocolTransport +abort Lib/asyncio/transports.py /^ def abort(self):$/;" m class:DatagramTransport +abort Lib/asyncio/transports.py /^ def abort(self):$/;" m class:WriteTransport +abort Lib/asyncio/unix_events.py /^ def abort(self):$/;" m class:_UnixWritePipeTransport +abort Lib/ftplib.py /^ def abort(self):$/;" m class:.FTP_TLS +abort Lib/ftplib.py /^ def abort(self):$/;" m class:FTP +abort Lib/imaplib.py /^ class abort(error): pass # Service errors - close and retry$/;" c class:IMAP4 +abort Lib/multiprocessing/managers.py /^ def abort(self):$/;" m class:BarrierProxy +abort Lib/threading.py /^ def abort(self):$/;" m class:Barrier +abort Lib/xml/dom/xmlbuilder.py /^ def abort(self):$/;" m class:DocumentLS +abort_loop Lib/idlelib/debugger.py /^ def abort_loop(self):$/;" m class:Debugger +about_dialog Lib/idlelib/editor.py /^ def about_dialog(self, event=None):$/;" m class:EditorWindow +about_dialog Lib/idlelib/macosx.py /^ def about_dialog(event=None):$/;" f function:overrideRootMenu +abs Lib/_pydecimal.py /^ def abs(self, a):$/;" m class:Context +abs Lib/operator.py /^def abs(a):$/;" f +abs_module_name Lib/test/libregrtest/runtest.py /^def abs_module_name(test_name: str, test_dir: str | None) -> str:$/;" f +abs_paths Lib/site.py /^def abs_paths():$/;" f +abs_pos Modules/_io/bufferedio.c /^ Py_off_t abs_pos;$/;" m struct:__anon435 file: +absolute Lib/pathlib.py /^ def absolute(self):$/;" m class:Path +absolute_import Lib/__future__.py /^absolute_import = _Feature((2, 5, 0, "alpha", 1),$/;" v +absolute_import_test Lib/test/test_modulefinder.py /^absolute_import_test = [$/;" v +absorb Modules/_hacl/Hacl_Hash_SHA3.c /^absorb($/;" f file: +abspath Lib/ntpath.py /^ abspath = _abspath_fallback$/;" v +abspath Lib/ntpath.py /^ def abspath(path):$/;" f +abspath Lib/posixpath.py /^def abspath(path):$/;" f +abspath Lib/test/test_dtrace.py /^def abspath(filename):$/;" f +abspath Lib/test/test_getpath.py /^ def abspath(self, path):$/;" m class:MockNTNamespace +abspath Lib/test/test_getpath.py /^ def abspath(self, path):$/;" m class:MockPosixNamespace +abstract Tools/c-analyzer/c_parser/info.py /^ def abstract(self):$/;" m class:Signature +abstract_get_bases Objects/abstract.c /^abstract_get_bases(PyObject *cls)$/;" f file: +abstract_issubclass Objects/abstract.c /^abstract_issubclass(PyObject *derived, PyObject *cls)$/;" f file: +abstract_sockets_supported Lib/multiprocessing/util.py /^abstract_sockets_supported = _platform_supports_abstract_sockets()$/;" v +abstractclassmethod Lib/abc.py /^class abstractclassmethod(classmethod):$/;" c +abstractmethod Lib/abc.py /^def abstractmethod(funcobj):$/;" f +abstractproperty Lib/abc.py /^class abstractproperty(property):$/;" c +abstractstaticmethod Lib/abc.py /^class abstractstaticmethod(staticmethod):$/;" c +abuse Lib/test/inspect_fodder.py /^ def abuse(self, a, b, c):$/;" m class:FesteringGob +abuse Lib/test/inspect_fodder.py /^ def abuse(self, a, b, c):$/;" m class:MalodorousPervert +abuse Lib/test/inspect_fodder.py /^ def abuse(self, a, b, c):$/;" m class:StupidGit +ac_fn_c_check_func configure /^ac_fn_c_check_func ()$/;" f +ac_fn_c_check_header_compile configure /^ac_fn_c_check_header_compile ()$/;" f +ac_fn_c_check_member configure /^ac_fn_c_check_member ()$/;" f +ac_fn_c_check_type configure /^ac_fn_c_check_type ()$/;" f +ac_fn_c_compute_int configure /^ac_fn_c_compute_int ()$/;" f +ac_fn_c_try_compile configure /^ac_fn_c_try_compile ()$/;" f +ac_fn_c_try_cpp configure /^ac_fn_c_try_cpp ()$/;" f +ac_fn_c_try_link configure /^ac_fn_c_try_link ()$/;" f +ac_fn_c_try_run configure /^ac_fn_c_try_run ()$/;" f +ac_fn_check_decl configure /^ac_fn_check_decl ()$/;" f +ac_in_buffer_size Lib/test/support/asynchat.py /^ ac_in_buffer_size = 65536$/;" v class:async_chat +ac_out_buffer_size Lib/test/support/asynchat.py /^ ac_out_buffer_size = 65536$/;" v class:async_chat +ac_tester Lib/test/test_clinic.py /^ ac_tester = None$/;" v class:ClinicExternalTest +acallback Lib/test/test_weakref.py /^ def acallback(self, ignore):$/;" m class:ReferencesTestCase.test_callback_in_cycle.II +acallback Lib/test/test_weakref.py /^ def acallback(self, ignore):$/;" m class:ReferencesTestCase.test_callback_in_cycle_resurrection.C +acc Lib/turtledemo/planet_and_moon.py /^ def acc(self):$/;" m class:Star +accept Lib/asyncio/windows_events.py /^ def accept(self, listener):$/;" m class:IocpProactor +accept Lib/idlelib/rpc.py /^ def accept(self):$/;" m class:RPCClient +accept Lib/multiprocessing/connection.py /^ def accept(self):$/;" m class:.PipeListener +accept Lib/multiprocessing/connection.py /^ def accept(self):$/;" m class:Listener +accept Lib/multiprocessing/connection.py /^ def accept(self):$/;" m class:SocketListener +accept Lib/multiprocessing/connection.py /^ def accept(self):$/;" m class:XmlListener +accept Lib/multiprocessing/dummy/connection.py /^ def accept(self):$/;" m class:Listener +accept Lib/socket.py /^ def accept(self):$/;" m class:socket +accept Lib/ssl.py /^ def accept(self):$/;" m class:SSLSocket +accept Lib/test/mock_socket.py /^ def accept(self):$/;" m class:MockSocket +accept Lib/test/support/asyncore.py /^ def accept(self):$/;" m class:dispatcher +accept Lib/test/test__locale.py /^ def accept(loc):$/;" f function:setUpModule +accept4_works Modules/socketmodule.c /^ int accept4_works;$/;" m struct:_socket_state file: +acceptNode Lib/xml/dom/NodeFilter.py /^ def acceptNode(self, node):$/;" m class:NodeFilter +acceptNode Lib/xml/dom/expatbuilder.py /^ def acceptNode(self, node):$/;" m class:FilterVisibilityController +acceptNode Lib/xml/dom/xmlbuilder.py /^ def acceptNode(self, element):$/;" m class:DOMBuilderFilter +accept_conn Lib/test/test_socket.py /^ def accept_conn(self):$/;" m class:SendfileUsingSendTest +accept_connection Lib/multiprocessing/managers.py /^ def accept_connection(self, c, name):$/;" m class:Server +accept_coro Lib/asyncio/windows_events.py /^ async def accept_coro(future, conn):$/;" f function:IocpProactor.accept +accept_encodings Lib/xmlrpc/server.py /^ def accept_encodings(self):$/;" m class:SimpleXMLRPCRequestHandler +accept_gzip_encoding Lib/xmlrpc/client.py /^ accept_gzip_encoding = True$/;" v class:Transport +accept_pipe Lib/asyncio/windows_events.py /^ def accept_pipe(self, pipe):$/;" m class:IocpProactor +accepter Lib/multiprocessing/managers.py /^ def accepter(self):$/;" m class:Server +accepting Lib/test/support/asyncore.py /^ accepting = False$/;" v class:dispatcher +access Modules/mmapmodule.c /^ access_mode access;$/;" m struct:__anon490 file: +access_mode Modules/mmapmodule.c /^} access_mode;$/;" t typeref:enum:__anon489 file: +accounting Modules/expat/xmlparse.c /^typedef struct accounting {$/;" s file: +accountingDiffTolerated Modules/expat/xmlparse.c /^accountingDiffTolerated(XML_Parser originParser, int tok, const char *before,$/;" f file: +accountingGetCurrentAmplification Modules/expat/xmlparse.c /^accountingGetCurrentAmplification(XML_Parser rootParser) {$/;" f file: +accountingOnAbort Modules/expat/xmlparse.c /^accountingOnAbort(XML_Parser originParser) {$/;" f file: +accountingReportDiff Modules/expat/xmlparse.c /^accountingReportDiff(XML_Parser rootParser,$/;" f file: +accountingReportStats Modules/expat/xmlparse.c /^accountingReportStats(XML_Parser originParser, const char *epilog) {$/;" f file: +acct Lib/ftplib.py /^ def acct(self, password):$/;" m class:FTP +accum Modules/_datetimemodule.c /^accum(const char* tag, PyObject *sofar, PyObject *num, PyObject *factor,$/;" f file: +accumulate Lib/test/support/__init__.py /^ def accumulate(self, stats):$/;" m class:TestStats +accumulate_dealloc Modules/itertoolsmodule.c /^accumulate_dealloc(accumulateobject *lz)$/;" f file: +accumulate_methods Modules/itertoolsmodule.c /^static PyMethodDef accumulate_methods[] = {$/;" v file: +accumulate_next Modules/itertoolsmodule.c /^accumulate_next(accumulateobject *lz)$/;" f file: +accumulate_reduce Modules/itertoolsmodule.c /^accumulate_reduce(accumulateobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +accumulate_result Lib/test/libregrtest/main.py /^ def accumulate_result(self, result, rerun=False):$/;" m class:Regrtest +accumulate_setstate Modules/itertoolsmodule.c /^accumulate_setstate(accumulateobject *lz, PyObject *state)$/;" f file: +accumulate_slots Modules/itertoolsmodule.c /^static PyType_Slot accumulate_slots[] = {$/;" v file: +accumulate_spec Modules/itertoolsmodule.c /^static PyType_Spec accumulate_spec = {$/;" v file: +accumulate_traverse Modules/itertoolsmodule.c /^accumulate_traverse(accumulateobject *lz, visitproc visit, void *arg)$/;" f file: +accumulate_type Modules/itertoolsmodule.c /^ PyTypeObject *accumulate_type;$/;" m struct:__anon400 file: +accumulated Include/internal/pycore_import.h /^ _PyTime_t accumulated;$/;" m struct:_import_state::__anon138 +accumulated Python/import.c 2726;" d file: +accumulated Python/import.c 2784;" d file: +accumulateobject Modules/itertoolsmodule.c /^} accumulateobject;$/;" t typeref:struct:__anon417 file: +ace_prefix Lib/encodings/idna.py /^ace_prefix = b"xn--"$/;" v +aclose Lib/_collections_abc.py /^ async def aclose(self):$/;" m class:AsyncGenerator +aclose Lib/contextlib.py /^ async def aclose(self):$/;" m class:AsyncExitStack +aclose Lib/test/test_collections.py /^ async def aclose(self): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.Gen +aclose Lib/test/test_collections.py /^ def aclose(self): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen1 +aclose Lib/test/test_collections.py /^ def aclose(self): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen2 +aclose Lib/test/test_collections.py /^ def aclose(self): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen3 +aclose Lib/test/test_contextlib_async.py /^ async def aclose(self):$/;" m class:AclosingTestCase.test_aclosing.C +aclose Lib/test/test_contextlib_async.py /^ async def aclose(self):$/;" m class:AclosingTestCase.test_aclosing_error.C +aclosing Lib/contextlib.py /^class aclosing(AbstractAsyncContextManager):$/;" c +acos_special_values Modules/cmathmodule.c /^static Py_complex acos_special_values[7][7];$/;" v file: +acosh_special_values Modules/cmathmodule.c /^static Py_complex acosh_special_values[7][7];$/;" v file: +acquire Lib/asyncio/locks.py /^ async def acquire(self):$/;" m class:Lock +acquire Lib/asyncio/locks.py /^ async def acquire(self):$/;" m class:Semaphore +acquire Lib/importlib/_bootstrap.py /^ def acquire(self):$/;" m class:_DummyModuleLock +acquire Lib/importlib/_bootstrap.py /^ def acquire(self):$/;" m class:_ModuleLock +acquire Lib/logging/__init__.py /^ def acquire(self):$/;" m class:Handler +acquire Lib/multiprocessing/managers.py /^ def acquire(self, blocking=True, timeout=None):$/;" m class:AcquirerProxy +acquire Lib/threading.py /^ def acquire(self, blocking=True, timeout=-1):$/;" m class:_RLock +acquire Lib/threading.py /^ def acquire(self, blocking=True, timeout=None):$/;" m class:Semaphore +acquire_lock Lib/test/test_concurrent_futures/test_shutdown.py /^ def acquire_lock(lock):$/;" f function:ProcessPoolShutdownTest.test_processes_terminate +acquire_lock Lib/test/test_concurrent_futures/test_shutdown.py /^ def acquire_lock(lock):$/;" f function:ThreadPoolShutdownTest.test_threads_terminate +acquire_lock Lib/test/test_concurrent_futures/test_thread_pool.py /^ def acquire_lock(lock):$/;" f function:ThreadPoolExecutorTest.test_saturation +acquire_retries_on_intr Lib/test/test_threadsignals.py /^ def acquire_retries_on_intr(self, lock):$/;" m class:ThreadSignals +acquire_timed Modules/_threadmodule.c /^acquire_timed(PyThread_type_lock lock, _PyTime_t timeout)$/;" f file: +act Lib/test/datetimetester.py /^ act = func(d1, td)$/;" v class:TestTimeDelta.test_subclass_date.DateSubclass +act Lib/test/datetimetester.py /^ act = func(d1, td)$/;" v class:TestTimeDelta.test_subclass_datetime.DateTimeSubclass +action Lib/test/lock_tests.py /^ def action():$/;" f function:BarrierTests.test_action +action Lib/test/test_argparse.py /^ action=argparse.BooleanOptionalAction),$/;" v class:TestHelpUsage +action Tools/build/check_extension_modules.py /^ action="store_true",$/;" v +action Tools/build/check_extension_modules.py /^ action=argparse.BooleanOptionalAction,$/;" v +action Tools/peg_generator/pegen/__main__.py /^ action="count",$/;" v +action Tools/peg_generator/pegen/__main__.py /^ action="store_true",$/;" v +action Tools/peg_generator/pegen/grammar_parser.py /^ def action(self) -> Optional[str]:$/;" m class:GeneratedParser +action Tools/peg_generator/scripts/benchmark.py /^ action="store",$/;" v +action Tools/ssl/multissltests.py /^ action='store_false',$/;" v +action Tools/ssl/multissltests.py /^ action='store_true',$/;" v +action Tools/stringbench/stringbench.py /^ action="store_true",$/;" v +action Tools/stringbench/stringbench.py /^ action="store_true",$/;" v class:UnsupportedType +action Tools/wasm/wasm_build.py /^ action="store_true",$/;" v +action_run_tests Lib/test/libregrtest/main.py /^ def action_run_tests(self):$/;" m class:Regrtest +activate Lib/tkinter/__init__.py /^ def activate(self, index):$/;" m class:Listbox +activate Lib/tkinter/__init__.py /^ def activate(self, index):$/;" m class:Menu +activate Lib/tkinter/__init__.py /^ def activate(self, index=None):$/;" m class:Scrollbar +activate_config_changes Lib/idlelib/configdialog.py /^ def activate_config_changes(self):$/;" m class:ConfigDialog +activate_config_changes Lib/idlelib/idle_test/test_configdialog.py /^ def activate_config_changes(self):$/;" m class:ConfigDialogTest +activate_restore Lib/idlelib/parenmatch.py /^ def activate_restore(self):$/;" m class:ParenMatch +activationThresholdBytes Modules/expat/xmlparse.c /^ unsigned long long activationThresholdBytes;$/;" m struct:accounting file: +active Include/cpython/pystate.h /^ unsigned int active:1;$/;" m struct:_ts::__anon219 +active Modules/itertoolsmodule.c /^ PyObject *active; \/* Currently running input iterator *\/$/;" m struct:__anon412 file: +activeCount Lib/threading.py /^def activeCount():$/;" f +active_children Lib/multiprocessing/context.py /^ active_children = staticmethod(process.active_children)$/;" v class:BaseContext +active_children Lib/multiprocessing/dummy/__init__.py /^def active_children():$/;" f +active_children Lib/multiprocessing/process.py /^def active_children():$/;" f +active_children Lib/socketserver.py /^ active_children = None$/;" v class:.ForkingMixIn +active_children Lib/test/_test_multiprocessing.py /^ active_children = staticmethod(multiprocessing.active_children)$/;" v class:ProcessesMixin +active_children Lib/test/_test_multiprocessing.py /^ active_children = staticmethod(multiprocessing.dummy.active_children)$/;" v class:ThreadsMixin +active_clear Lib/tkinter/tix.py /^ def active_clear(self):$/;" m class:TList +active_code_watchers Include/internal/pycore_interp.h /^ uint8_t active_code_watchers;$/;" m struct:_is +active_count Lib/threading.py /^def active_count():$/;" f +active_func_watchers Include/internal/pycore_interp.h /^ uint8_t active_func_watchers;$/;" m struct:_is +active_monitors Include/cpython/code.h /^ _Py_LocalMonitors active_monitors;$/;" m struct:__anon229 +active_seq Lib/idlelib/pyshell.py /^ active_seq = None$/;" v class:ModifiedInterpreter +active_set Lib/tkinter/tix.py /^ def active_set(self, index):$/;" m class:TList +actual Lib/test/test_traceback.py /^ actual = self.get_suggestion(MyClass, name)$/;" v class:SuggestionFormattingTestBase.test_getattr_error_bad_suggestions_do_not_trigger_for_small_names.MyClass +actual Lib/test/test_traceback.py /^ actual = self.get_suggestion(cls(), 'bluch')$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.CaseChangeOverSubstitution +actual Lib/test/test_traceback.py /^ actual = self.get_suggestion(cls(), 'bluch')$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.C +actual Lib/tkinter/font.py /^ def actual(self, option=None, displayof=None):$/;" m class:Font +actualEncoding Lib/xml/dom/minidom.py /^ actualEncoding = None$/;" v class:Document +actualEncoding Lib/xml/dom/minidom.py /^ actualEncoding = None$/;" v class:Entity +actual_global Lib/test/test_scope.py /^ def actual_global(self):$/;" m class:ScopeTests.testFreeVarInMethod.test.Test +actual_global Lib/test/test_scope.py /^ def actual_global(self):$/;" m class:ScopeTests.testFreeVarInMethod.Test +actual_len PC/validate_ucrtbase.py /^ actual_len = kernel32.GetModuleFileNameW(HANDLE(ucrtbased._handle),$/;" v +adapt Lib/encodings/punycode.py /^def adapt(delta, first, numchars):$/;" f +adapt_date Lib/sqlite3/dbapi2.py /^ def adapt_date(val):$/;" f function:register_adapters_and_converters +adapt_datetime Lib/sqlite3/dbapi2.py /^ def adapt_datetime(val):$/;" f function:register_adapters_and_converters +adaptgetter Lib/test/test_scope.py /^ def adaptgetter(name, klass, getter):$/;" f function:ScopeTests.testInteractionWithTraceFunc +adaptive_counter_backoff Include/internal/pycore_code.h /^adaptive_counter_backoff(uint16_t counter) {$/;" f +adaptive_counter_bits Include/internal/pycore_code.h /^adaptive_counter_bits(int value, int backoff) {$/;" f +adaptive_counter_cooldown Include/internal/pycore_code.h /^adaptive_counter_cooldown(void) {$/;" f +adaptive_counter_warmup Include/internal/pycore_code.h /^adaptive_counter_warmup(void) {$/;" f +adaptive_find Objects/stringlib/fastsearch.h /^STRINGLIB(adaptive_find)(const STRINGLIB_CHAR* s, Py_ssize_t n,$/;" f +add Lib/_collections_abc.py /^ def add(self, value):$/;" m class:MutableSet +add Lib/_pydecimal.py /^ def add(self, a, b):$/;" m class:Context +add Lib/_weakrefset.py /^ def add(self, item):$/;" m class:WeakSet +add Lib/graphlib.py /^ def add(self, node, *predecessors):$/;" m class:TopologicalSorter +add Lib/idlelib/configdialog.py /^ def add(self, var, callback):$/;" m class:VarTrace +add Lib/idlelib/window.py /^ def add(self, window):$/;" m class:WindowList +add Lib/lib2to3/btm_matcher.py /^ def add(self, pattern, start):$/;" m class:BottomMatcher +add Lib/mailbox.py /^ def add(self, message):$/;" m class:Babyl +add Lib/mailbox.py /^ def add(self, message):$/;" m class:MH +add Lib/mailbox.py /^ def add(self, message):$/;" m class:Mailbox +add Lib/mailbox.py /^ def add(self, message):$/;" m class:Maildir +add Lib/mailbox.py /^ def add(self, message):$/;" m class:_singlefileMailbox +add Lib/msilib/__init__.py /^ def add(self, name, x, y, w, h, text, value = None):$/;" m class:RadioButtonGroup +add Lib/operator.py /^def add(a, b):$/;" f +add Lib/pstats.py /^ def add(self, *arg_list):$/;" m class:Stats +add Lib/tarfile.py /^ def add(self, name, arcname=None, recursive=True, *, filter=None):$/;" m class:TarFile +add Lib/test/pythoninfo.py /^ def add(self, key, value):$/;" m class:PythonInfo +add Lib/test/test_asyncio/test_tasks.py /^ async def add(self, a, b, fail=False, cancel=False):$/;" m class:RunCoroutineThreadsafeTests +add Lib/test/test_class.py /^ def add(self, other):$/;" f function:ClassTests.testSetattrWrapperNameIntern +add Lib/test/test_collections.py /^ def add(self, value):$/;" m class:TestCollectionABCs.test_Set_from_iterable.SetUsingInstanceFromIterable +add Lib/test/test_collections.py /^ def add(self,v):$/;" m class:TestCollectionABCs.test_issue_4920.MySet +add Lib/test/test_collections.py /^ def add(self, item):$/;" m class:WithSet +add Lib/test/test_docxmlrpc.py /^ def add(x, y):$/;" f function:make_server +add Lib/test/test_functools.py /^ def add(self, x, y):$/;" m class:TestPartialMethod.test_abstract.Abstract +add Lib/test/test_functools.py /^ def add(self, x, y):$/;" m class:TestSingleDispatch.test_abstractmethod_register.Abstract +add Lib/test/test_functools.py /^ def add(x, y):$/;" f function:TestReduce.test_reduce +add Lib/test/test_inspect.py /^ def add(y):$/;" f function:TestGetClosureVars.test_nonlocal_vars.make_adder +add Lib/test/test_tarfile.py /^ def add(self, name, *, type=None, symlink_to=None, hardlink_to=None,$/;" m class:ArchiveMaker +add Lib/test/test_unittest/testmock/testmagicmethods.py /^ def add(self, other):$/;" f function:TestMockingMagicMethods.test_numeric +add Lib/test/test_weakref.py /^ def add(x,y,z):$/;" f function:FinalizeTestCase.test_finalize +add Lib/tkinter/__init__.py /^ def add(self, child, **kw):$/;" m class:PanedWindow +add Lib/tkinter/__init__.py /^ def add(self, itemType, cnf={}, **kw):$/;" m class:Menu +add Lib/tkinter/tix.py /^ def add(self, entry, cnf={}, **kw):$/;" m class:HList +add Lib/tkinter/tix.py /^ def add(self, name, cnf={}, **kw):$/;" m class:ButtonBox +add Lib/tkinter/tix.py /^ def add(self, name, cnf={}, **kw):$/;" m class:ListNoteBook +add Lib/tkinter/tix.py /^ def add(self, name, cnf={}, **kw):$/;" m class:NoteBook +add Lib/tkinter/tix.py /^ def add(self, name, cnf={}, **kw):$/;" m class:PanedWindow +add Lib/tkinter/tix.py /^ def add(self, name, cnf={}, **kw):$/;" m class:Select +add Lib/tkinter/ttk.py /^ def add(self, child, **kw):$/;" m class:Notebook +add Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun add (a b)$/;" f +add Tools/build/stable_abi.py /^ def add(self, item):$/;" m class:Manifest +add Tools/i18n/msgfmt.py /^def add(ctxt, id, str, fuzzy):$/;" f +add5 Lib/test/test_functools.py /^ add5 = functools.partialmethod(add, 5)$/;" v class:TestPartialMethod.test_abstract.Abstract +addAsyncCleanup Lib/unittest/async_case.py /^ def addAsyncCleanup(self, func, \/, *args, **kwargs):$/;" m class:IsolatedAsyncioTestCase +addBinding Modules/expat/xmlparse.c /^addBinding(XML_Parser parser, PREFIX *prefix, const ATTRIBUTE_ID *attId,$/;" f file: +addClassCleanup Lib/unittest/case.py /^ def addClassCleanup(cls, function, \/, *args, **kwargs):$/;" m class:TestCase +addCleanup Lib/test/test_socket.py /^ def addCleanup(self, *args, **kwargs):$/;" m class:ThreadSafeCleanupTestCase +addCleanup Lib/unittest/case.py /^ def addCleanup(self, function, \/, *args, **kwargs):$/;" m class:TestCase +addDuration Lib/unittest/result.py /^ def addDuration(self, test, elapsed):$/;" m class:TestResult +addEnvironmentInfo PC/launcher2.c /^addEnvironmentInfo(EnvironmentInfo **root, EnvironmentInfo* parent, EnvironmentInfo *node)$/;" f +addError Lib/test/support/testresult.py /^ def addError(self, test, err):$/;" m class:RegressionTestResult +addError Lib/test/test_unittest/support.py /^ def addError(self, *args):$/;" m class:_BaseLoggingResult +addError Lib/test/test_unittest/support.py /^ def addError(self, test):$/;" m class:ResultWithNoStartTestRunStopTestRun +addError Lib/unittest/result.py /^ def addError(self, test, err):$/;" m class:TestResult +addError Lib/unittest/runner.py /^ def addError(self, test, err):$/;" m class:TextTestResult +addError Tools/unittestgui/unittestgui.py /^ def addError(self, test, err):$/;" m class:GUITestResult +addExpectedFailure Lib/test/support/testresult.py /^ def addExpectedFailure(self, test, err):$/;" m class:RegressionTestResult +addExpectedFailure Lib/test/test_unittest/support.py /^ def addExpectedFailure(self, *args):$/;" m class:_BaseLoggingResult +addExpectedFailure Lib/unittest/result.py /^ def addExpectedFailure(self, test, err):$/;" m class:TestResult +addExpectedFailure Lib/unittest/runner.py /^ def addExpectedFailure(self, test, err):$/;" m class:TextTestResult +addExpectedFailure Tools/unittestgui/unittestgui.py /^ def addExpectedFailure(self, test, err):$/;" m class:GUITestResult +addFailure Lib/test/support/testresult.py /^ def addFailure(self, test, err):$/;" m class:RegressionTestResult +addFailure Lib/test/test_unittest/support.py /^ def addFailure(self, *args):$/;" m class:_BaseLoggingResult +addFailure Lib/test/test_unittest/support.py /^ def addFailure(self, test):$/;" m class:ResultWithNoStartTestRunStopTestRun +addFailure Lib/unittest/result.py /^ def addFailure(self, test, err):$/;" m class:TestResult +addFailure Lib/unittest/runner.py /^ def addFailure(self, test, err):$/;" m class:TextTestResult +addFailure Tools/unittestgui/unittestgui.py /^ def addFailure(self, test, err):$/;" m class:GUITestResult +addFilter Lib/logging/__init__.py /^ def addFilter(self, filter):$/;" m class:Filterer +addHandler Lib/logging/__init__.py /^ def addHandler(self, hdlr):$/;" m class:Logger +addLevelName Lib/logging/__init__.py /^def addLevelName(level, levelName):$/;" f +addModuleCleanup Lib/unittest/case.py /^def addModuleCleanup(function, \/, *args, **kwargs):$/;" f +addObj Parser/asdl_c.py /^ def addObj(self, name):$/;" f +addOpenEventSupport Lib/idlelib/macosx.py /^def addOpenEventSupport(root, flist):$/;" f +addSkip Lib/test/support/testresult.py /^ def addSkip(self, test, reason):$/;" m class:RegressionTestResult +addSkip Lib/test/test_unittest/support.py /^ def addSkip(self, *args):$/;" m class:_BaseLoggingResult +addSkip Lib/unittest/result.py /^ def addSkip(self, test, reason):$/;" m class:TestResult +addSkip Lib/unittest/runner.py /^ def addSkip(self, test, reason):$/;" m class:TextTestResult +addSkip Tools/unittestgui/unittestgui.py /^ def addSkip(self, test, reason):$/;" m class:GUITestResult +addSubTest Lib/test/test_unittest/support.py /^ def addSubTest(self):$/;" m class:LegacyLoggingResult +addSubTest Lib/test/test_unittest/support.py /^ def addSubTest(self, test, subtest, err):$/;" m class:LoggingResult +addSubTest Lib/unittest/result.py /^ def addSubTest(self, test, subtest, err):$/;" m class:TestResult +addSubTest Lib/unittest/runner.py /^ def addSubTest(self, test, subtest, err):$/;" m class:TextTestResult +addSuccess Lib/test/support/testresult.py /^ def addSuccess(self, test):$/;" m class:RegressionTestResult +addSuccess Lib/test/test_unittest/support.py /^ def addSuccess(self, *args):$/;" m class:_BaseLoggingResult +addSuccess Lib/test/test_unittest/support.py /^ def addSuccess(self, test):$/;" m class:ResultWithNoStartTestRunStopTestRun +addSuccess Lib/unittest/result.py /^ def addSuccess(self, test):$/;" m class:TestResult +addSuccess Lib/unittest/runner.py /^ def addSuccess(self, test):$/;" m class:TextTestResult +addTest Lib/unittest/suite.py /^ def addTest(self, test):$/;" m class:BaseTestSuite +addTests Lib/unittest/suite.py /^ def addTests(self, tests):$/;" m class:BaseTestSuite +addToZip Lib/zipfile/__main__.py /^ def addToZip(zf, path, zippath):$/;" f function:main +addTypeEqualityFunc Lib/unittest/case.py /^ def addTypeEqualityFunc(self, typeobj, function):$/;" m class:TestCase +addUnexpectedSuccess Lib/test/support/testresult.py /^ def addUnexpectedSuccess(self, test):$/;" m class:RegressionTestResult +addUnexpectedSuccess Lib/test/test_unittest/support.py /^ def addUnexpectedSuccess(self, *args):$/;" m class:_BaseLoggingResult +addUnexpectedSuccess Lib/unittest/result.py /^ def addUnexpectedSuccess(self, test):$/;" m class:TestResult +addUnexpectedSuccess Lib/unittest/runner.py /^ def addUnexpectedSuccess(self, test):$/;" m class:TextTestResult +add_alias Lib/email/charset.py /^def add_alias(alias, canonical):$/;" f +add_alias PC/layout/support/appxmanifest.py /^def add_alias(xml, appid, alias, subsystem="windows"):$/;" f +add_all_subclasses Objects/typeobject.c /^add_all_subclasses(PyTypeObject *type, PyObject *bases)$/;" f file: +add_alternative Lib/email/message.py /^ def add_alternative(self, *args, **kw):$/;" m class:MIMEPart +add_annotations Doc/tools/extensions/c_annotations.py /^ def add_annotations(self, app, doctree):$/;" m class:Annotations +add_application PC/layout/support/appxmanifest.py /^def add_application($/;" f +add_argument Lib/argparse.py /^ def add_argument(self, *args, **kwargs):$/;" m class:_ActionsContainer +add_argument Lib/argparse.py /^ def add_argument(self, action):$/;" m class:HelpFormatter +add_argument_group Lib/argparse.py /^ def add_argument_group(self, *args, **kwargs):$/;" m class:_ActionsContainer +add_argument_group Lib/argparse.py /^ def add_argument_group(self, *args, **kwargs):$/;" m class:_ArgumentGroup +add_arguments Lib/argparse.py /^ def add_arguments(self, actions):$/;" m class:HelpFormatter +add_ast_fields Python/Python-ast.c /^static int add_ast_fields(struct ast_state *state)$/;" f file: +add_attachment Lib/email/message.py /^ def add_attachment(self, *args, **kw):$/;" m class:MIMEPart +add_attributes Python/Python-ast.c /^add_attributes(struct ast_state *state, PyObject *type, const char * const *attrs, int num_fields)$/;" f file: +add_audit_hook_entry_unlocked Python/sysmodule.c /^add_audit_hook_entry_unlocked(_PyRuntimeState *runtime,$/;" f file: +add_bad_source_file Lib/test/test_compileall.py /^ def add_bad_source_file(self):$/;" m class:CompileallTestsBase +add_both Lib/test/test_typing.py /^ def add_both(self,$/;" m class:ForwardRefTests.test_basics.Node +add_builtin_constructor Lib/test/test_hashlib.py /^ def add_builtin_constructor(name):$/;" f function:HashLibTestCase.__init__ +add_c_converter Tools/clinic/clinic.py /^def add_c_converter(f, name=None):$/;" f +add_c_return_converter Tools/clinic/clinic.py /^def add_c_return_converter($/;" f +add_call Lib/test/test_dictcomps.py /^ def add_call(pos, value):$/;" f function:DictComprehensionTest.test_evaluation_order +add_call_counting Lib/idlelib/idle_test/test_tooltip.py /^def add_call_counting(func):$/;" f +add_call_item_to_queue Lib/concurrent/futures/process.py /^ def add_call_item_to_queue(self):$/;" m class:_ExecutorManagerThread +add_callers Lib/pstats.py /^def add_callers(target, source):$/;" f +add_cancelled Lib/concurrent/futures/_base.py /^ def add_cancelled(self, future):$/;" m class:_AllCompletedWaiter +add_cancelled Lib/concurrent/futures/_base.py /^ def add_cancelled(self, future):$/;" m class:_AsCompletedWaiter +add_cancelled Lib/concurrent/futures/_base.py /^ def add_cancelled(self, future):$/;" m class:_FirstCompletedWaiter +add_cancelled Lib/concurrent/futures/_base.py /^ def add_cancelled(self, future):$/;" m class:_Waiter +add_cascade Lib/tkinter/__init__.py /^ def add_cascade(self, cnf={}, **kw):$/;" m class:Menu +add_cgi_vars Lib/wsgiref/handlers.py /^ def add_cgi_vars(self):$/;" m class:BaseHandler +add_cgi_vars Lib/wsgiref/handlers.py /^ def add_cgi_vars(self):$/;" m class:SimpleHandler +add_channel Lib/test/support/asyncore.py /^ def add_channel(self, map=None):$/;" m class:dispatcher +add_charset Lib/email/charset.py /^def add_charset(charset, header_enc=None, body_enc=None, output_charset=None):$/;" f +add_checkbutton Lib/tkinter/__init__.py /^ def add_checkbutton(self, cnf={}, **kw):$/;" m class:Menu +add_checks_cli Tools/c-analyzer/c_analyzer/__main__.py /^def add_checks_cli(parser, checks=None, *, add_flags=None):$/;" f +add_checks_for_loads_of_uninitialized_variables Python/flowgraph.c /^add_checks_for_loads_of_uninitialized_variables(basicblock *entryblock,$/;" f file: +add_child Lib/tkinter/tix.py /^ def add_child(self, parent=None, cnf={}, **kw):$/;" m class:HList +add_child_handler Lib/asyncio/unix_events.py /^ def add_child_handler(self, pid, callback, *args):$/;" m class:AbstractChildWatcher +add_child_handler Lib/asyncio/unix_events.py /^ def add_child_handler(self, pid, callback, *args):$/;" m class:FastChildWatcher +add_child_handler Lib/asyncio/unix_events.py /^ def add_child_handler(self, pid, callback, *args):$/;" m class:MultiLoopChildWatcher +add_child_handler Lib/asyncio/unix_events.py /^ def add_child_handler(self, pid, callback, *args):$/;" m class:PidfdChildWatcher +add_child_handler Lib/asyncio/unix_events.py /^ def add_child_handler(self, pid, callback, *args):$/;" m class:SafeChildWatcher +add_child_handler Lib/asyncio/unix_events.py /^ def add_child_handler(self, pid, callback, *args):$/;" m class:ThreadedChildWatcher +add_code_watcher Modules/_testcapi/watchers.c /^add_code_watcher(PyObject *self, PyObject *which_watcher)$/;" f file: +add_codec Lib/email/charset.py /^def add_codec(charset, codecname):$/;" f +add_command Lib/tkinter/__init__.py /^ def add_command(self, cnf={}, **kw):$/;" m class:Menu +add_command Lib/tkinter/tix.py /^ def add_command(self, name, cnf={}, **kw):$/;" m class:OptionMenu +add_command PC/launcher.c /^add_command(wchar_t * name, wchar_t * cmdline)$/;" f file: +add_commands_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_commands_cli(parser, commands, *, commonspecs=COMMON_CLI, subset=None):$/;" f +add_common_cli Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def add_common_cli(parser, *, get_preprocessor=_get_preprocessor):$/;" f +add_cookie_header Lib/http/cookiejar.py /^ def add_cookie_header(self, request):$/;" m class:CookieJar +add_cookie_header Lib/test/test_urllib2.py /^ def add_cookie_header(self, request):$/;" m class:MockCookieJar +add_data Lib/msilib/__init__.py /^def add_data(db, table, values):$/;" f +add_date_timedelta Modules/_datetimemodule.c /^add_date_timedelta(PyDateTime_Date *date, PyDateTime_Delta *delta, int negate)$/;" f file: +add_datetime_timedelta Modules/_datetimemodule.c /^add_datetime_timedelta(PyDateTime_DateTime *date, PyDateTime_Delta *delta,$/;" f file: +add_default_legacy_c_converter Tools/clinic/clinic.py /^def add_default_legacy_c_converter(cls):$/;" f +add_destination Lib/test/test_clinic.py /^ def add_destination(self, name, type, *args):$/;" m class:FakeClinic +add_destination Tools/clinic/clinic.py /^ def add_destination($/;" m class:Clinic +add_dict Objects/typeobject.c /^ int add_dict;$/;" m struct:__anon718 file: +add_dict_attr Lib/test/test_functools.py /^ def add_dict_attr(f):$/;" f function:TestWraps.test_selective_update +add_dict_watcher Modules/_testcapi/watchers.c /^add_dict_watcher(PyObject *self, PyObject *kind)$/;" f file: +add_dir_and_getmember Lib/test/test_tarfile.py /^ def add_dir_and_getmember(self, name):$/;" m class:UstarReadTest +add_dirs Lib/test/test_zipfile/_path/test_path.py /^def add_dirs(zf):$/;" f +add_dispatcher Lib/xmlrpc/server.py /^ def add_dispatcher(self, path, dispatcher):$/;" m class:MultiPathXMLRPCServer +add_dll_directory Lib/os.py /^ def add_dll_directory(path):$/;" f +add_done_callback Lib/asyncio/futures.py /^ def add_done_callback(self, fn, *, context=None):$/;" m class:Future +add_done_callback Lib/concurrent/futures/_base.py /^ def add_done_callback(self, fn):$/;" m class:Future +add_done_callback Lib/test/test_asyncio/test_runners.py /^ def add_done_callback(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +add_done_callback Lib/test/test_asyncio/test_tasks.py /^ def add_done_callback(self, *args, **kwargs):$/;" m class:BaseTaskTests.test_step_result_future.Fut +add_done_callback Lib/test/test_asyncio/test_tasks.py /^ def add_done_callback(self, *args, **kwargs):$/;" m class:add_subclass_tests.CommonFuture +add_errcode Modules/errnomodule.c 98;" d file: +add_error Modules/pyexpat.c /^add_error(PyObject *errors_module, PyObject *codes_dict,$/;" f file: +add_error_constants Modules/_sqlite/module.c /^add_error_constants(PyObject *module)$/;" f file: +add_errors_module Modules/pyexpat.c /^add_errors_module(PyObject *mod)$/;" f file: +add_event Lib/test/test_sys_setprofile.py /^ def add_event(self, event, frame=None):$/;" m class:HookWatcher +add_exception Lib/concurrent/futures/_base.py /^ def add_exception(self, future):$/;" m class:_AllCompletedWaiter +add_exception Lib/concurrent/futures/_base.py /^ def add_exception(self, future):$/;" m class:_AsCompletedWaiter +add_exception Lib/concurrent/futures/_base.py /^ def add_exception(self, future):$/;" m class:_FirstCompletedWaiter +add_exception Lib/concurrent/futures/_base.py /^ def add_exception(self, future):$/;" m class:_Waiter +add_exception Modules/_ssl.c 5668;" d file: +add_exception Modules/_ssl.c 5731;" d file: +add_expected_saved_initial_values Lib/test/test__osx_support.py /^ def add_expected_saved_initial_values(self, config_vars, expected_vars):$/;" m class:Test_OSXSupport +add_extension Lib/copyreg.py /^def add_extension(module, name, code):$/;" f +add_failure_filtering_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_failure_filtering_cli(parser, pool, *, default=False):$/;" f +add_fallback Lib/gettext.py /^ def add_fallback(self, fallback):$/;" m class:NullTranslations +add_feature Lib/test/test_smtplib.py /^ def add_feature(self, feature):$/;" m class:SimSMTPServer +add_features Modules/pyexpat.c /^add_features(PyObject *mod)$/;" f file: +add_field Lib/msilib/__init__.py /^ def add_field(self, index, name, type):$/;" m class:Table +add_file Lib/msilib/__init__.py /^ def add_file(self, file, src=None, version=None, language=None):$/;" m class:Directory +add_file_filtering_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_file_filtering_cli(parser, *, excluded=None):$/;" f +add_file_type PC/layout/support/appxmanifest.py /^def add_file_type(xml, appid, name, suffix, parameters='"%1"', info=None, logo=None):$/;" f +add_filename Lib/test/test_os.py /^ def add_filename(fn):$/;" f function:Pep383Tests.setUp +add_files_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_files_cli(parser, *, excluded=None, nargs=None):$/;" f +add_filters Lib/logging/config.py /^ def add_filters(self, filterer, filters):$/;" m class:DictConfigurator +add_five Lib/test/test_decorators.py /^ def add_five(x):$/;" f function:TestClassDecorators.test_double +add_fixer Lib/lib2to3/btm_matcher.py /^ def add_fixer(self, fixer):$/;" m class:BottomMatcher +add_flag Lib/mailbox.py /^ def add_flag(self, flag):$/;" m class:MaildirMessage +add_flag Lib/mailbox.py /^ def add_flag(self, flag):$/;" m class:_mboxMMDFMessage +add_flowcontrol_defaults Lib/asyncio/sslproto.py /^def add_flowcontrol_defaults(high, low, kb):$/;" f +add_folder Lib/mailbox.py /^ def add_folder(self, folder):$/;" m class:MH +add_folder Lib/mailbox.py /^ def add_folder(self, folder):$/;" m class:Maildir +add_foreign_method Lib/test/test_code.py /^ def add_foreign_method(cls, name, f):$/;" f function:CodeTest.test_closure_injection +add_func_event Modules/_testcapi/watchers.c /^add_func_event(PyObject *module, const char *name, PyFunction_WatchEvent event)$/;" f file: +add_func_stats Lib/pstats.py /^def add_func_stats(target, source):$/;" f +add_func_watcher Modules/_testcapi/watchers.c /^add_func_watcher(PyObject *self, PyObject *func)$/;" f file: +add_get_handler Lib/email/contentmanager.py /^ def add_get_handler(self, key, handler):$/;" m class:ContentManager +add_getset Modules/_ctypes/_ctypes.c /^add_getset(PyTypeObject *type, PyGetSetDef *gsp)$/;" f file: +add_handler Lib/urllib/request.py /^ def add_handler(self, handler):$/;" m class:OpenerDirector +add_handlers Lib/logging/config.py /^ def add_handlers(self, logger, handlers):$/;" m class:DictConfigurator +add_header Lib/email/message.py /^ def add_header(self, _name, _value, **_params):$/;" m class:Message +add_header Lib/urllib/request.py /^ def add_header(self, key, val):$/;" m class:Request +add_header Lib/wsgiref/headers.py /^ def add_header(self, _name, _value, **_params):$/;" m class:Headers +add_history Lib/tkinter/tix.py /^ def add_history(self, str):$/;" m class:ComboBox +add_include_dir Tools/c-analyzer/distutils/ccompiler.py /^ def add_include_dir(self, dir):$/;" m class:CCompiler +add_integer_constants Modules/_sqlite/module.c /^add_integer_constants(PyObject *module) {$/;" f file: +add_job Lib/test/test_capi/test_misc.py /^ def add_job():$/;" f function:TestPendingCalls.test_isolated_subinterpreter.create_pipe +add_key_examples Lib/test/test_zoneinfo/test_zoneinfo_property.py /^def add_key_examples(f):$/;" f +add_kind_filtering_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_kind_filtering_cli(parser, *, default=None):$/;" f +add_known_dir Lib/test/test_getpath.py /^ def add_known_dir(self, path):$/;" m class:MockNTNamespace +add_known_dir Lib/test/test_getpath.py /^ def add_known_dir(self, path):$/;" m class:MockPosixNamespace +add_known_file Lib/test/test_getpath.py /^ def add_known_file(self, path, lines=None):$/;" m class:MockNTNamespace +add_known_file Lib/test/test_getpath.py /^ def add_known_file(self, path, lines=None):$/;" m class:MockPosixNamespace +add_known_link Lib/test/test_getpath.py /^ def add_known_link(self, path, target):$/;" m class:MockNTNamespace +add_known_link Lib/test/test_getpath.py /^ def add_known_link(self, path, target):$/;" m class:MockPosixNamespace +add_known_xfile Lib/test/test_getpath.py /^ def add_known_xfile(self, path):$/;" m class:MockNTNamespace +add_known_xfile Lib/test/test_getpath.py /^ def add_known_xfile(self, path):$/;" m class:MockPosixNamespace +add_kwarg Lib/lib2to3/fixes/fix_print.py /^ def add_kwarg(self, l_nodes, s_kwd, n_expr):$/;" m class:FixPrint +add_label Lib/mailbox.py /^ def add_label(self, label):$/;" m class:BabylMessage +add_left Lib/test/test_typing.py /^ def add_left(self, node: Optional['Node[T]']):$/;" m class:ForwardRefTests.test_basics.Node +add_legacy_c_converter Tools/clinic/clinic.py /^def add_legacy_c_converter(format_unit, **kwargs):$/;" f +add_level Tools/peg_generator/pegen/c_generator.py /^ def add_level(self) -> None:$/;" m class:CParserGenerator +add_line Tools/c-analyzer/c_parser/parser/_info.py /^ def add_line(self, line, lno=None):$/;" m class:TextInfo +add_line_tools Python/instrumentation.c /^add_line_tools(PyCodeObject * code, int offset, int tools)$/;" f file: +add_main_module Python/pylifecycle.c /^add_main_module(PyInterpreterState *interp)$/;" f file: +add_model_module Modules/pyexpat.c /^add_model_module(PyObject *mod)$/;" f file: +add_module Lib/modulefinder.py /^ def add_module(self, fqname):$/;" m class:ModuleFinder +add_module_cleanup Lib/test/test_import/__init__.py /^ def add_module_cleanup(self, name):$/;" m class:SinglephaseInitTests +add_mutually_exclusive_group Lib/argparse.py /^ def add_mutually_exclusive_group(self, **kwargs):$/;" m class:_ActionsContainer +add_mutually_exclusive_group Lib/argparse.py /^ def add_mutually_exclusive_group(self, *args, **kwargs):$/;" m class:_MutuallyExclusiveGroup +add_new_exception Modules/_xxinterpchannelsmodule.c /^add_new_exception(PyObject *mod, const char *name, PyObject *base)$/;" f file: +add_new_exception Modules/_xxsubinterpretersmodule.c /^add_new_exception(PyObject *mod, const char *name, PyObject *base)$/;" f file: +add_new_type Modules/_xxinterpchannelsmodule.c /^add_new_type(PyObject *mod, PyType_Spec *spec, crossinterpdatafunc shared)$/;" f file: +add_object Lib/plistlib.py /^ def add_object(self, value):$/;" m class:_PlistParser +add_operators Objects/typeobject.c /^add_operators(PyTypeObject *type)$/;" f file: +add_option Lib/idlelib/config.py /^ def add_option(self, config_type, section, item, value):$/;" m class:ConfigChanges +add_option Lib/optparse.py /^ def add_option(self, *args, **kwargs):$/;" m class:OptionContainer +add_option_group Lib/optparse.py /^ def add_option_group(self, *args, **kwargs):$/;" m class:OptionParser +add_options Lib/optparse.py /^ def add_options(self, option_list):$/;" m class:OptionContainer +add_ordered_mock_handlers Lib/test/test_urllib2.py /^def add_ordered_mock_handlers(opener, meth_spec):$/;" f +add_output_cli Tools/c-analyzer/c_analyzer/__main__.py /^def add_output_cli(parser, *, default='summary'):$/;" f +add_output_cli Tools/c-analyzer/c_parser/__main__.py /^def add_output_cli(parser):$/;" f +add_parameter Tools/clinic/clinic.py /^ def add_parameter(text):$/;" f function:DSLParser.format_docstring +add_parent Lib/test/test_urllib2.py /^ def add_parent(self, parent):$/;" m class:MockHandler +add_parent Lib/urllib/request.py /^ def add_parent(self, parent):$/;" m class:BaseHandler +add_parser Lib/argparse.py /^ def add_parser(self, name, **kwargs):$/;" m class:_SubParsersAction +add_password Lib/test/test_urllib2.py /^ def add_password(self, realm, uri, user, password):$/;" m class:MockPasswordManager +add_password Lib/urllib/request.py /^ def add_password(self, realm, uri, user, passwd):$/;" m class:HTTPPasswordMgr +add_password Lib/urllib/request.py /^ def add_password(self, realm, uri, user, passwd, is_authenticated=False):$/;" m class:HTTPPasswordMgrWithPriorAuth +add_pending Lib/tomllib/_parser.py /^ def add_pending(self, key: Key, flag: int) -> None:$/;" m class:Flags +add_per_instruction_tools Python/instrumentation.c /^add_per_instruction_tools(PyCodeObject * code, int offset, int tools)$/;" f file: +add_power2_constant Python/instrumentation.c /^add_power2_constant(PyObject *obj, const char *name, int i)$/;" f file: +add_progress_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_progress_cli(parser, *, threshold=VERBOSITY, **kwargs):$/;" f +add_qname Lib/xml/etree/ElementTree.py /^ def add_qname(qname):$/;" f function:_namespaces +add_radiobutton Lib/tkinter/__init__.py /^ def add_radiobutton(self, cnf={}, **kw):$/;" m class:Menu +add_reader Lib/asyncio/events.py /^ def add_reader(self, fd, callback, *args):$/;" m class:AbstractEventLoop +add_reader Lib/asyncio/selector_events.py /^ def add_reader(self, fd, callback, *args):$/;" m class:BaseSelectorEventLoop +add_reader Lib/test/test_asyncio/utils.py /^ def add_reader(self, fd, callback, *args):$/;" m class:TestLoop +add_registry_entries PC/layout/support/appxmanifest.py /^def add_registry_entries(ns, xml):$/;" f +add_related Lib/email/message.py /^ def add_related(self, *args, **kw):$/;" m class:MIMEPart +add_result Lib/concurrent/futures/_base.py /^ def add_result(self, future):$/;" m class:_AllCompletedWaiter +add_result Lib/concurrent/futures/_base.py /^ def add_result(self, future):$/;" m class:_AsCompletedWaiter +add_result Lib/concurrent/futures/_base.py /^ def add_result(self, future):$/;" m class:_FirstCompletedWaiter +add_result Lib/concurrent/futures/_base.py /^ def add_result(self, future):$/;" m class:_Waiter +add_return Tools/peg_generator/pegen/c_generator.py /^ def add_return(self, ret_val: str) -> None:$/;" m class:CParserGenerator +add_return_at_end Python/compile.c /^add_return_at_end(struct compiler *c, int addNone)$/;" f file: +add_right Lib/test/test_typing.py /^ def add_right(self, node: 'Node[T]' = None):$/;" m class:ForwardRefTests.test_basics.Node +add_section Lib/configparser.py /^ def add_section(self, section):$/;" m class:ConfigParser +add_section Lib/configparser.py /^ def add_section(self, section):$/;" m class:RawConfigParser +add_separator Lib/tkinter/__init__.py /^ def add_separator(self, cnf={}, **kw):$/;" m class:Menu +add_separator Lib/tkinter/tix.py /^ def add_separator(self, name, cnf={}, **kw):$/;" m class:OptionMenu +add_sepval_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_sepval_cli(parser, opt, dest, choices, *, sep=',', **kwargs):$/;" f +add_sequence Lib/mailbox.py /^ def add_sequence(self, sequence):$/;" m class:MHMessage +add_set_handler Lib/email/contentmanager.py /^ def add_set_handler(self, typekey, handler):$/;" m class:ContentManager +add_signal_handler Lib/asyncio/events.py /^ def add_signal_handler(self, sig, callback, *args):$/;" m class:AbstractEventLoop +add_signal_handler Lib/asyncio/unix_events.py /^ def add_signal_handler(self, sig, callback, *args):$/;" m class:_UnixSelectorEventLoop +add_size_t Modules/_decimal/libmpdec/typearith.h /^add_size_t(mpd_size_t a, mpd_size_t b)$/;" f +add_size_t_overflow Modules/_decimal/libmpdec/typearith.h /^add_size_t_overflow(mpd_size_t a, mpd_size_t b, mpd_size_t *overflow)$/;" f +add_standard_options Lib/test/test_tkinter/widget_tests.py /^def add_standard_options(*source_classes):$/;" f +add_stat_dict Python/specialize.c /^add_stat_dict($/;" f file: +add_stream Lib/msilib/__init__.py /^def add_stream(db, name, path):$/;" f +add_subclass Objects/typeobject.c /^add_subclass(PyTypeObject *base, PyTypeObject *type)$/;" f file: +add_subclass_tests Lib/test/test_asyncio/test_tasks.py /^def add_subclass_tests(cls):$/;" f +add_subinterpreter Lib/test/test_import/__init__.py /^ def add_subinterpreter(self):$/;" m class:SinglephaseInitTests +add_submodule Modules/pyexpat.c /^add_submodule(PyObject *mod, const char *fullname)$/;" f file: +add_subparsers Lib/argparse.py /^ def add_subparsers(self, **kwargs):$/;" m class:ArgumentParser +add_sys_path Lib/test/test_importlib/fixtures.py /^ def add_sys_path(dir):$/;" m class:OnSysPath +add_tables Lib/msilib/__init__.py /^def add_tables(db, module):$/;" f +add_tasks Lib/test/test_capi/test_misc.py /^ def add_tasks(worker_tids):$/;" f function:TestPendingCalls.test_many_subthreads_can_handle_pending_calls +add_text Lib/argparse.py /^ def add_text(self, text):$/;" m class:HelpFormatter +add_threadstate Python/pystate.c /^add_threadstate(PyInterpreterState *interp, PyThreadState *tstate,$/;" f file: +add_to_successors Lib/test/test_generators.py /^ def add_to_successors(i0):$/;" f function:Knights.__init__ +add_tools Python/instrumentation.c /^add_tools(PyCodeObject * code, int offset, int event, int tools)$/;" f file: +add_tp_new_wrapper Objects/typeobject.c /^add_tp_new_wrapper(PyTypeObject *type)$/;" f file: +add_traceback_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_traceback_cli(parser):$/;" f +add_transition Lib/email/header.py /^ def add_transition(self):$/;" m class:_ValueFormatter +add_type Lib/mimetypes.py /^ def add_type(self, type, ext, strict=True):$/;" m class:MimeTypes +add_type Lib/mimetypes.py /^def add_type(type, ext, strict=True):$/;" f +add_type_watcher Modules/_testcapi/watchers.c /^add_type_watcher(PyObject *self, PyObject *kind)$/;" f file: +add_unredirected_header Lib/urllib/request.py /^ def add_unredirected_header(self, key, val):$/;" m class:Request +add_usage Lib/argparse.py /^ def add_usage(self, usage, actions, groups, prefix=None):$/;" m class:HelpFormatter +add_var Tools/peg_generator/pegen/c_generator.py /^ def add_var(self, node: NamedItem) -> Tuple[Optional[str], Optional[str]]:$/;" m class:CParserGenerator +add_verbosity_cli Tools/c-analyzer/c_common/scriptutil.py /^def add_verbosity_cli(parser):$/;" f +add_visual PC/layout/support/appxmanifest.py /^def add_visual(xml, appid, data):$/;" f +add_watcher Lib/test/test_capi/test_watchers.py /^ def add_watcher(self, func):$/;" m class:TestFuncWatchers +add_watcher Lib/test/test_capi/test_watchers.py /^ def add_watcher(self, kind=EVENTS):$/;" m class:TestDictWatchers +add_watcher Lib/test/test_capi/test_watchers.py /^ def add_watcher(self, kind=TYPES):$/;" m class:TestTypeWatchers +add_weak Objects/typeobject.c /^ int add_weak;$/;" m struct:__anon718 file: +add_whitespace Lib/lib2to3/pgen2/tokenize.py /^ def add_whitespace(self, start):$/;" m class:Untokenizer +add_whitespace Lib/tokenize.py /^ def add_whitespace(self, start):$/;" m class:Untokenizer +add_windows_to_menu Lib/idlelib/window.py /^ def add_windows_to_menu(self, menu):$/;" m class:WindowList +add_windows_to_menu Lib/idlelib/window.py /^add_windows_to_menu = registry.add_windows_to_menu$/;" v +add_writer Lib/asyncio/events.py /^ def add_writer(self, fd, callback, *args):$/;" m class:AbstractEventLoop +add_writer Lib/asyncio/selector_events.py /^ def add_writer(self, fd, callback, *args):$/;" m class:BaseSelectorEventLoop +add_writer Lib/test/test_asyncio/utils.py /^ def add_writer(self, fd, callback, *args):$/;" m class:TestLoop +add_zombie Lib/test/test_asyncio/test_unix_events.py /^ def add_zombie(self, pid, status):$/;" m class:ChildWatcherTestsMixin +addarc Lib/lib2to3/pgen2/pgen.py /^ def addarc(self, next, label):$/;" m class:DFAState +addarc Lib/lib2to3/pgen2/pgen.py /^ def addarc(self, next, label=None):$/;" m class:NFAState +addbase Lib/urllib/response.py /^class addbase(tempfile._TemporaryFileWrapper):$/;" c +addbool Modules/_ssl.c 5972;" d file: +addcleanup Python/getargs.c /^addcleanup(void *ptr, freelist_t *freelist, destr_t destructor)$/;" f file: +addclosehook Lib/urllib/response.py /^class addclosehook(addbase):$/;" c +addclosure Lib/lib2to3/pgen2/pgen.py /^ def addclosure(state, base):$/;" f function:ParserGenerator.make_dfa +addcmd Lib/idlelib/undo.py /^ def addcmd(self, cmd, execute=True):$/;" m class:UndoDelegator +addcomponent Lib/turtle.py /^ def addcomponent(self, poly, fill, outline=None):$/;" m class:Shape +adder Lib/test/test_scope.py /^ def adder(y):$/;" f function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest.nest +adder Lib/test/test_scope.py /^ def adder(y):$/;" f function:ScopeTests.testExtraNesting.make_adder2.extra +adder Lib/test/test_scope.py /^ def adder(y):$/;" f function:ScopeTests.testNestingPlusFreeRefToGlobal.make_adder6 +adder Lib/test/test_scope.py /^ def adder(y):$/;" f function:ScopeTests.testSimpleAndRebinding.make_adder3 +adder Lib/test/test_scope.py /^ def adder(y):$/;" f function:ScopeTests.testSimpleNesting.make_adder +addfile Lib/tarfile.py /^ def addfile(self, tarinfo, fileobj=None):$/;" m class:TarFile +addfirstsets Lib/lib2to3/pgen2/pgen.py /^ def addfirstsets(self):$/;" m class:ParserGenerator +addgroup Lib/re/_parser.py /^ def addgroup(index, pos):$/;" f function:parse_template +addheader Lib/urllib/request.py /^ def addheader(self, *args):$/;" m class:URLopener +addheaders Lib/test/test_urllib2.py /^ addheaders = []$/;" v class:MockOpener +addinfo Lib/urllib/response.py /^class addinfo(addbase):$/;" c +addinfourl Lib/urllib/response.py /^class addinfourl(addinfo):$/;" c +addition Lib/test/test_unittest/testmock/testasync.py /^ async def addition(self, var): pass$/;" f function:AsyncArguments.test_add_return_value +addition Lib/test/test_unittest/testmock/testasync.py /^ async def addition(var): pass$/;" f function:AsyncArguments.test_add_side_effect_exception +addition Lib/test/test_unittest/testmock/testasync.py /^ async def addition(var):$/;" f function:AsyncArguments.test_add_side_effect_coroutine +addition Lib/test/test_unittest/testmock/testasync.py /^ def addition(var):$/;" f function:AsyncArguments.test_add_side_effect_normal_function +addliteral Lib/re/_parser.py /^ def addliteral():$/;" f function:parse_template +addmod Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun addmod (a b m base)$/;" f +addmod Modules/_decimal/libmpdec/umodarith.h /^addmod(mpd_uint_t a, mpd_uint_t b, mpd_uint_t m)$/;" f +addmod-correct Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd addmod-correct$/;" f +addnoise Lib/test/test_binascii.py /^ def addnoise(line):$/;" f function:BinASCIITest.test_base64invalid +addop_binary Python/compile.c /^addop_binary(struct compiler *c, location loc, operator_ty binop,$/;" f file: +addop_yield Python/compile.c /^addop_yield(struct compiler *c, location loc) {$/;" f file: +addpackage Lib/site.py /^def addpackage(sitedir, name, known_paths):$/;" f +addr Lib/test/support/asyncore.py /^ addr = None$/;" v class:dispatcher +addr Lib/test/test_asyncio/functional.py /^ def addr(self):$/;" m class:TestThreadedServer +addr Lib/test/test_asyncio/test_ssl.py /^ def addr(self):$/;" m class:TestThreadedServer +addr2line Tools/gdb/libpython.py /^ def addr2line(self, addrq):$/;" m class:PyCodeObjectPtr +addr_spec Lib/email/_header_value_parser.py /^ def addr_spec(self):$/;" m class:AddrSpec +addr_spec Lib/email/_header_value_parser.py /^ def addr_spec(self):$/;" m class:AngleAddr +addr_spec Lib/email/_header_value_parser.py /^ def addr_spec(self):$/;" m class:Mailbox +addr_spec Lib/email/_header_value_parser.py /^ def addr_spec(self):$/;" m class:NameAddr +addr_spec Lib/email/headerregistry.py /^ def addr_spec(self):$/;" m class:Address +addrbuf Modules/socketmodule.c /^ sock_addr_t *addrbuf;$/;" m struct:sock_accept file: +addrbuf Modules/socketmodule.c /^ sock_addr_t *addrbuf;$/;" m struct:sock_recvfrom file: +addrbuf Modules/socketmodule.c /^ sock_addr_t *addrbuf;$/;" m struct:sock_sendto file: +address Include/internal/pycore_obmalloc.h /^ uintptr_t address;$/;" m struct:arena_object +address Lib/email/headerregistry.py /^ def address(self):$/;" m class:SingleAddressHeader +address Lib/multiprocessing/connection.py /^ def address(self):$/;" m class:Listener +address Lib/multiprocessing/dummy/connection.py /^ def address(self):$/;" m class:Listener +address Lib/multiprocessing/managers.py /^ def address(self):$/;" m class:BaseManager +address Lib/test/test_logging.py /^ address = ('::1', 0)$/;" v class:IPv6SysLogHandlerTest +address Lib/test/test_logging.py /^ address = ('localhost', 0)$/;" v class:DatagramHandlerTest +address Lib/test/test_logging.py /^ address = ('localhost', 0)$/;" v class:SocketHandlerTest +address Lib/test/test_logging.py /^ address = ('localhost', 0)$/;" v class:SysLogHandlerTest +address Modules/overlapped.c /^ struct sockaddr_in6 address;$/;" m struct:__anon567::__anon568::__anon569 typeref:struct:__anon567::__anon568::__anon569::sockaddr_in6 file: +address Modules/overlapped.c /^ struct sockaddr_in6 address;$/;" m struct:__anon567::__anon568::__anon570 typeref:struct:__anon567::__anon568::__anon570::sockaddr_in6 file: +addressFamily Modules/socketmodule.h /^ USHORT addressFamily;$/;" m union:SOCKADDR_BTH_REDEF::__anon395 +address_exclude Lib/ipaddress.py /^ def address_exclude(self, other):$/;" m class:_BaseNetwork +address_family Lib/socketserver.py /^ address_family = socket.AF_UNIX$/;" v class:ThreadingTCPServer.UnixDatagramServer +address_family Lib/socketserver.py /^ address_family = socket.AF_UNIX$/;" v class:ThreadingTCPServer.UnixStreamServer +address_family Lib/socketserver.py /^ address_family = socket.AF_INET$/;" v class:TCPServer +address_family Lib/test/test_logging.py /^ address_family = socket.AF_UNIX$/;" v class:.TestUnixDatagramServer +address_family Lib/test/test_logging.py /^ address_family = socket.AF_UNIX$/;" v class:.TestUnixStreamServer +address_in_range Objects/obmalloc.c /^address_in_range(OMState *state, void *p, poolp Py_UNUSED(pool))$/;" f file: +address_in_range Objects/obmalloc.c /^address_in_range(OMState *state, void *p, poolp pool)$/;" f file: +address_length Modules/overlapped.c /^ int address_length;$/;" m struct:__anon567::__anon568::__anon569 file: +address_length Modules/overlapped.c /^ int address_length;$/;" m struct:__anon567::__anon568::__anon570 file: +address_string Lib/http/server.py /^ def address_string(self):$/;" m class:BaseHTTPRequestHandler +address_type Lib/multiprocessing/connection.py /^def address_type(address):$/;" f +addresses Lib/email/_header_value_parser.py /^ def addresses(self):$/;" m class:AddressList +addresses Lib/email/headerregistry.py /^ def addresses(self):$/;" m class:AddressHeader +addresses Lib/email/headerregistry.py /^ def addresses(self):$/;" m class:Group +addressof Modules/_ctypes/callproc.c /^addressof(PyObject *self, PyObject *obj)$/;" f file: +addrinfo Modules/addrinfo.h /^struct addrinfo {$/;" s +addrlen Modules/socketmodule.c /^ int addrlen;$/;" m struct:sock_sendto file: +addrlen Modules/socketmodule.c /^ socklen_t *addrlen;$/;" m struct:sock_accept file: +addrlen Modules/socketmodule.c /^ socklen_t *addrlen;$/;" m struct:sock_recvfrom file: +addshape Lib/turtle.py /^ addshape = register_shape$/;" v class:TurtleScreen +addsitedir Lib/site.py /^def addsitedir(sitedir, known_paths=None):$/;" f +addsitepackages Lib/site.py /^def addsitepackages(known_paths, prefixes=None):$/;" f +addtag Lib/tkinter/__init__.py /^ def addtag(self, *args):$/;" m class:Canvas +addtag_above Lib/tkinter/__init__.py /^ def addtag_above(self, newtag, tagOrId):$/;" m class:Canvas +addtag_all Lib/tkinter/__init__.py /^ def addtag_all(self, newtag):$/;" m class:Canvas +addtag_below Lib/tkinter/__init__.py /^ def addtag_below(self, newtag, tagOrId):$/;" m class:Canvas +addtag_closest Lib/tkinter/__init__.py /^ def addtag_closest(self, newtag, x, y, halo=None, start=None):$/;" m class:Canvas +addtag_enclosed Lib/tkinter/__init__.py /^ def addtag_enclosed(self, newtag, x1, y1, x2, y2):$/;" m class:Canvas +addtag_overlapping Lib/tkinter/__init__.py /^ def addtag_overlapping(self, newtag, x1, y1, x2, y2):$/;" m class:Canvas +addtag_withtag Lib/tkinter/__init__.py /^ def addtag_withtag(self, newtag, tagOrId):$/;" m class:Canvas +addtoken Lib/lib2to3/pgen2/parse.py /^ def addtoken(self, type, value, context):$/;" m class:Parser +addusersitepackages Lib/site.py /^def addusersitepackages(known_paths):$/;" f +adjustScrolls Lib/turtle.py /^ def adjustScrolls(self):$/;" m class:ScrolledCanvas +adjust_fmt Objects/memoryobject.c /^adjust_fmt(const Py_buffer *view)$/;" f file: +adjust_int_max_str_digits Lib/test/support/__init__.py /^def adjust_int_max_str_digits(max_digits):$/;" f +adjust_label Lib/tkinter/ttk.py /^ def adjust_label():$/;" f function:LabeledScale._adjust +adjustable Include/cpython/pytime.h /^ int adjustable;$/;" m struct:__anon176 +adjusted Lib/_pydecimal.py /^ def adjusted(self):$/;" m class:Decimal +adr Modules/_ctypes/ctypes.h /^ char *adr;$/;" m struct:basespec +advance Lib/lib2to3/refactor.py /^ def advance():$/;" f function:_detect_future_features +advance Lib/test/test_generators.py /^ def advance(len=len):$/;" f function:Knights.__init__ +advance Lib/test/test_sched.py /^ def advance(self, t):$/;" m class:Timer +advance Objects/codeobject.c /^advance(PyCodeAddressRange *bounds)$/;" f file: +advance Tools/c-analyzer/c_parser/parser/_info.py /^ def advance(self, remainder, start=None):$/;" m class:SourceInfo +advance_hard Lib/test/test_generators.py /^ def advance_hard(vmid=(m-1)\/2.0, hmid=(n-1)\/2.0, len=len):$/;" f function:Knights.__init__ +advance_time Lib/test/test_asyncio/utils.py /^ def advance_time(self, advance):$/;" m class:TestLoop +advance_with_locations Objects/codeobject.c /^advance_with_locations(PyCodeAddressRange *bounds, int *endline, int *column, int *endcolumn)$/;" f file: +aes_key_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class aes_key_st(Structure):$/;" c +afmts Modules/ossaudiodev.c /^ uint32_t afmts; \/* audio formats supported by hardware *\/$/;" m struct:__anon471 file: +after Lib/tkinter/__init__.py /^ def after(self, ms, func=None, *args):$/;" m class:Misc +after_callback Lib/idlelib/idle_test/tkinter_testing_utils.py /^ def after_callback():$/;" f function:run_in_tk_mainloop.decorator.new_test_method +after_cancel Lib/tkinter/__init__.py /^ def after_cancel(self, id):$/;" m class:Misc +after_forkers_child Include/internal/pycore_interp.h /^ PyObject *after_forkers_child;$/;" m struct:_is +after_forkers_parent Include/internal/pycore_interp.h /^ PyObject *after_forkers_parent;$/;" m struct:_is +after_idle Lib/tkinter/__init__.py /^ def after_idle(self, func, *args):$/;" m class:Misc +after_in_child Lib/concurrent/futures/thread.py /^ after_in_child=_global_shutdown_lock._at_fork_reinit,$/;" v +after_in_parent Lib/concurrent/futures/thread.py /^ after_in_parent=_global_shutdown_lock.release)$/;" v +after_with Lib/test/test_exceptions.py /^ def after_with():$/;" f function:PEP626Tests.test_lineno_after_raise_in_with_exit +after_with Lib/test/test_exceptions.py /^ def after_with():$/;" f function:PEP626Tests.test_lineno_after_with +afunc Lib/test/test_asyncio/test_pep492.py /^ async def afunc():$/;" f function:CoroutineTests.test_double_await +ag_getcode Objects/genobject.c /^ag_getcode(PyGenObject *gen, void *Py_UNUSED(ignored))$/;" f file: +ag_getframe Objects/genobject.c /^ag_getframe(PyAsyncGenObject *ag, void *Py_UNUSED(ignored))$/;" f file: +ag_getsuspended Objects/genobject.c /^ag_getsuspended(PyAsyncGenObject *ag, void *Py_UNUSED(ignored))$/;" f file: +agen Lib/test/test_asyncgen.py /^ async def agen():$/;" f function:AsyncGenAsyncioTest.test_async_generator_anext +agen Lib/test/test_asyncio/test_base_events.py /^ async def agen():$/;" f function:BaseEventLoopTests.leave_unfinalized_asyncgen +agenfn Lib/test/test_asyncgen.py /^ async def agenfn():$/;" f function:AsyncGenAsyncioTest.test_anext_iter.test4 +agenfn Lib/test/test_asyncgen.py /^ async def agenfn():$/;" f function:AsyncGenAsyncioTest.test_anext_iter.test5 +agenfn Lib/test/test_asyncgen.py /^ async def agenfn():$/;" f function:AsyncGenAsyncioTest.test_anext_iter.test6 +agenfn Lib/test/test_asyncgen.py /^ async def agenfn():$/;" f function:AsyncGenAsyncioTest.test_anext_iter +agenfunc Lib/test/test_contextlib_async.py /^ async def agenfunc():$/;" f function:AclosingTestCase.test_aclosing_bpo41229 +agent Lib/test/test_robotparser.py /^ agent = 'FigTree Robot libwww-perl\/5.04'$/;" v class:DifferentAgentTest +agent Lib/test/test_robotparser.py /^ agent = 'Googlebot'$/;" v class:AnotherInvalidRequestRateTest +agent Lib/test/test_robotparser.py /^ agent = 'Googlebot'$/;" v class:UserAgentOrderingTest +agent Lib/test/test_robotparser.py /^ agent = 'Googlebot-Mobile'$/;" v class:UserAgentGoogleMobileTest +agent Lib/test/test_robotparser.py /^ agent = 'figtree'$/;" v class:CrawlDelayAndRequestRateTest +agent Lib/test/test_robotparser.py /^ agent = 'googlebot'$/;" v class:GoogleURLOrderingTest +agent Lib/test/test_robotparser.py /^ agent = 'test_robotparser'$/;" v class:BaseRobotTest +ags_gen Objects/genobject.c /^ PyAsyncGenObject *ags_gen;$/;" m struct:PyAsyncGenASend file: +ags_sendval Objects/genobject.c /^ PyObject *ags_sendval;$/;" m struct:PyAsyncGenASend file: +ags_state Objects/genobject.c /^ AwaitableState ags_state;$/;" m struct:PyAsyncGenASend file: +agt_args Objects/genobject.c /^ PyObject *agt_args;$/;" m struct:PyAsyncGenAThrow file: +agt_gen Objects/genobject.c /^ PyAsyncGenObject *agt_gen;$/;" m struct:PyAsyncGenAThrow file: +agt_state Objects/genobject.c /^ AwaitableState agt_state;$/;" m struct:PyAsyncGenAThrow file: +agw_val Objects/genobject.c /^ PyObject *agw_val;$/;" m struct:_PyAsyncGenWrappedValue file: +ai_addr Modules/addrinfo.h /^ struct sockaddr *ai_addr; \/* binary address *\/$/;" m struct:addrinfo typeref:struct:addrinfo::sockaddr +ai_addrlen Modules/addrinfo.h /^ size_t ai_addrlen; \/* length of ai_addr *\/$/;" m struct:addrinfo +ai_canonname Modules/addrinfo.h /^ char *ai_canonname; \/* canonical name for hostname *\/$/;" m struct:addrinfo +ai_errlist Modules/getaddrinfo.c /^static const char * const ai_errlist[] = {$/;" v file: +ai_family Modules/addrinfo.h /^ int ai_family; \/* PF_xxx *\/$/;" m struct:addrinfo +ai_flags Modules/addrinfo.h /^ int ai_flags; \/* AI_PASSIVE, AI_CANONNAME *\/$/;" m struct:addrinfo +ai_next Modules/addrinfo.h /^ struct addrinfo *ai_next; \/* next structure in linked list *\/$/;" m struct:addrinfo typeref:struct:addrinfo::addrinfo +ai_protocol Modules/addrinfo.h /^ int ai_protocol; \/* 0 or IPPROTO_xxx for IPv4 and IPv6 *\/$/;" m struct:addrinfo +ai_socktype Modules/addrinfo.h /^ int ai_socktype; \/* SOCK_xxx *\/$/;" m struct:addrinfo +aifc Lib/aifc.py /^ def aifc(self):$/;" m class:Aifc_write +aifc Lib/test/test_aifc.py /^aifc = import_deprecated("aifc")$/;" v +aiff Lib/aifc.py /^ def aiff(self):$/;" m class:Aifc_write +aiter Python/bytecodes.c /^static PyObject *aiter, *awaitable, *iterable, *w, *exc_value, *bc, *locals;$/;" v file: +aix_buildtag Lib/_aix_support.py /^def aix_buildtag():$/;" f +aix_platform Lib/_aix_support.py /^def aix_platform():$/;" f +alarm1 Lib/test/test_io.py /^ def alarm1(sig, frame):$/;" f function:SignalsTest.check_interrupted_write_retry +alarm2 Lib/test/test_io.py /^ def alarm2(sig, frame):$/;" f function:SignalsTest.check_interrupted_write_retry +alarm_handler Lib/test/test_io.py /^ def alarm_handler(sig, frame):$/;" f function:SignalsTest.check_interrupted_read_retry +alarm_handler Lib/test/test_socket.py /^ def alarm_handler(signal, frame):$/;" f function:TCPTimeoutTest.testInterruptedTimeout +alarm_interrupt Lib/test/test_io.py /^ def alarm_interrupt(self, sig, frame):$/;" m class:SignalsTest +alarm_interrupt Lib/test/test_threadsignals.py /^ def alarm_interrupt(self, sig, frame):$/;" m class:ThreadSignals +alg Modules/socketmodule.h /^ struct sockaddr_alg alg;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_alg +algorithms_available Lib/hashlib.py /^algorithms_available = set(__always_supported)$/;" v +algorithms_guaranteed Lib/hashlib.py /^algorithms_guaranteed = set(__always_supported)$/;" v +alias Modules/nismodule.c /^ char *alias;$/;" m struct:nis_map file: +alias_attributes Python/Python-ast.c /^static const char * const alias_attributes[] = {$/;" v file: +alias_fields Python/Python-ast.c /^static const char * const alias_fields[]={$/;" v file: +alias_ty Include/internal/pycore_ast.h /^typedef struct _alias *alias_ty;$/;" t typeref:struct:_alias +alias_type Include/internal/pycore_ast_state.h /^ PyObject *alias_type;$/;" m struct:ast_state +aliased Lib/platform.py /^ aliased = (not 'nonaliased' in sys.argv and not '--nonaliased' in sys.argv)$/;" v +aliases Doc/tools/extensions/asdl_highlight.py /^ aliases = ["asdl"]$/;" v class:ASDLLexer +aliases Doc/tools/extensions/peg_highlight.py /^ aliases = ["peg"]$/;" v class:PEGLexer +aliases Lib/encodings/aliases.py /^aliases = {$/;" v +aliases Modules/nismodule.c /^} aliases [] = {$/;" v typeref:struct:nis_map file: +aliases Programs/_bootstrap_python.c /^static const struct _module_alias aliases[] = {$/;" v typeref:struct:_module_alias file: +aliases Programs/_freeze_module.c /^static const struct _module_alias aliases[] = {$/;" v typeref:struct:_module_alias file: +aliases Python/frozen.c /^static const struct _module_alias aliases[] = {$/;" v typeref:struct:_module_alias file: +aliases_end Modules/unicodename_db.h /^static const unsigned int aliases_end = 0xf01d9;$/;" v +aliases_start Modules/unicodename_db.h /^static const unsigned int aliases_start = 0xf0000;$/;" v +align Modules/_ctypes/ctypes.h /^ Py_ssize_t align; \/* alignment requirements *\/$/;" m struct:__anon495 +align Modules/_decimal/libmpdec/mpdecimal.h /^ char align; \/* alignment *\/$/;" m struct:mpd_spec_t +align Modules/_struct.c /^align(Py_ssize_t size, char c, const formatdef *e)$/;" f file: +align Python/formatter_unicode.c /^ Py_UCS4 align;$/;" m struct:__anon674 file: +align_func Modules/_ctypes/callproc.c /^align_func(PyObject *self, PyObject *obj)$/;" f file: +alignment Modules/_struct.c /^ Py_ssize_t alignment;$/;" m struct:_formatdef file: +alist Lib/test/test_xmlrpc.py /^alist = [{'astring': 'foo@bar.baz.spam',$/;" v +alive Lib/weakref.py /^ def alive(self):$/;" m class:finalize +all Lib/test/support/_hypothesis_stubs/__init__.py /^ def all(cls):$/;" m class:HealthCheck +all_binary Modules/_decimal/tests/randdec.py /^def all_binary(prec, exp_range, itr):$/;" f +all_comp_classes Lib/test/test_compare.py /^ all_comp_classes = ($/;" v class:ComparisonFullTest +all_contained_in Objects/dictobject.c /^all_contained_in(PyObject *self, PyObject *other)$/;" f file: +all_defects Lib/email/_header_value_parser.py /^ def all_defects(self):$/;" m class:Terminal +all_defects Lib/email/_header_value_parser.py /^ def all_defects(self):$/;" m class:TokenList +all_errors Lib/ftplib.py /^ all_errors = (Error, OSError, EOFError, ssl.SSLError)$/;" v +all_errors Lib/ftplib.py /^all_errors = (Error, OSError, EOFError)$/;" v +all_feature_names Lib/__future__.py /^all_feature_names = [$/;" v +all_features Lib/xml/sax/handler.py /^all_features = [feature_namespaces,$/;" v +all_fillchars Modules/_decimal/tests/formathelper.py /^def all_fillchars():$/;" f +all_format_loc Modules/_decimal/tests/formathelper.py /^def all_format_loc():$/;" f +all_format_sep Modules/_decimal/tests/formathelper.py /^def all_format_sep():$/;" f +all_functions Lib/test/test_binascii.py /^all_functions = a2b_functions + b2a_functions + ['crc32', 'crc_hqx']$/;" v +all_ins Modules/fcntlmodule.c /^all_ins(PyObject* m)$/;" f file: +all_ins Modules/posixmodule.c /^all_ins(PyObject *m)$/;" f file: +all_mailbox_types Lib/test/test_mailbox.py /^ all_mailbox_types = (mailbox.Message, mailbox.MaildirMessage,$/;" v class:TestBase +all_mailboxes Lib/email/_header_value_parser.py /^ def all_mailboxes(self):$/;" m class:Address +all_mailboxes Lib/email/_header_value_parser.py /^ def all_mailboxes(self):$/;" m class:AddressList +all_mailboxes Lib/email/_header_value_parser.py /^ def all_mailboxes(self):$/;" m class:Group +all_mailboxes Lib/email/_header_value_parser.py /^ def all_mailboxes(self):$/;" m class:GroupList +all_mailboxes Lib/email/_header_value_parser.py /^ def all_mailboxes(self):$/;" m class:MailboxList +all_markers Lib/test/inspect_fodder2.py /^def all_markers(a, b, \/, c, d, *, e, f):$/;" f +all_markers_with_args_and_kwargs Lib/test/inspect_fodder2.py /^def all_markers_with_args_and_kwargs(a, b, \/, c, d, *args, e, f, **kwargs):$/;" f +all_markers_with_defaults Lib/test/inspect_fodder2.py /^def all_markers_with_defaults(a, b=1, \/, c=2, d=3, *, e=4, f=5):$/;" f +all_methods Lib/multiprocessing/managers.py /^def all_methods(obj):$/;" f +all_name_chars Objects/codeobject.c /^all_name_chars(PyObject *o)$/;" f file: +all_nan Modules/_decimal/tests/deccheck.py /^def all_nan(a):$/;" f +all_pickle_protocols Lib/test/test_typing.py /^def all_pickle_protocols(test_func):$/;" f +all_project_files Lib/test/test_lib2to3/support.py /^def all_project_files():$/;" f +all_properties Lib/xml/sax/handler.py /^all_properties = [property_lexical_handler,$/;" v +all_removed Lib/idlelib/idle_test/test_pyshell.py /^ def all_removed(self, text):$/;" m class:PyShellRemoveLastNewlineAndSurroundingWhitespaceTest +all_structmembers Modules/_testcapi/structmember.c /^} all_structmembers;$/;" t typeref:struct:__anon543 file: +all_suffixes Lib/importlib/machinery.py /^def all_suffixes():$/;" f +all_tasks Lib/asyncio/tasks.py /^def all_tasks(loop=None):$/;" f +all_ternary Modules/_decimal/tests/randdec.py /^def all_ternary(prec, exp_range, itr):$/;" f +all_threads Include/internal/pycore_faulthandler.h /^ int all_threads;$/;" m struct:_faulthandler_runtime_state::__anon126 +all_threads Include/internal/pycore_faulthandler.h /^ int all_threads;$/;" m struct:faulthandler_user_signal +all_threads Modules/faulthandler.c /^ int all_threads;$/;" m struct:__anon559 file: +all_unary Modules/_decimal/tests/randdec.py /^def all_unary(prec, exp_range, itr):$/;" f +all_unicode_encodings Lib/test/test_codecs.py /^all_unicode_encodings = [$/;" v +all_users Lib/test/test_os.py /^ all_users = []$/;" v +all_users Lib/test/test_os.py /^ all_users = [u.pw_uid for u in pwd.getpwall()]$/;" v +allarenas Objects/obmalloc.c 875;" d file: +allcr Modules/_decimal/libmpdec/mpdecimal.h /^ int allcr; \/* all functions correctly rounded *\/$/;" m struct:mpd_context_t +allmethods Lib/pydoc.py /^def allmethods(cl):$/;" f +alloc Include/cpython/objimpl.h /^ void* (*alloc) (void *ctx, size_t size);$/;" m struct:__anon208 +alloc Include/internal/pycore_hashtable.h /^ _Py_hashtable_allocator_t alloc;$/;" m struct:_Py_hashtable_t +alloc Include/internal/pycore_pymem.h /^ PyMemAllocatorEx alloc;$/;" m struct:__anon15 +alloc Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t alloc;$/;" m struct:mpd_t +alloc Modules/_lzmamodule.c /^ lzma_allocator alloc;$/;" m struct:__anon295 file: +alloc Modules/_lzmamodule.c /^ lzma_allocator alloc;$/;" m struct:__anon296 file: +alloc Modules/_testcapi/mem.c /^ PyMemAllocatorEx alloc;$/;" m struct:__anon555 file: +allocDefaultAtts Modules/expat/xmlparse.c /^ int allocDefaultAtts;$/;" m struct:__anon616 file: +allocSearchInfoBuffer PC/launcher2.c /^allocSearchInfoBuffer(SearchInfo *search, int wcharCount)$/;" f +alloc_for_runtime Python/pystate.c /^alloc_for_runtime(PyThread_type_lock locks[NUMLOCKS])$/;" f file: +alloc_hook_t Modules/_testcapi/mem.c /^} alloc_hook_t;$/;" t typeref:struct:__anon555 file: +alloc_interpreter Python/pystate.c /^alloc_interpreter(void)$/;" f file: +alloc_threadstate Python/pystate.c /^alloc_threadstate(void)$/;" f file: +allocate_bytes Lib/test/test_tracemalloc.py /^def allocate_bytes(size):$/;" f +allocate_bytes2 Lib/test/test_tracemalloc.py /^ def allocate_bytes2(size):$/;" f function:TestTracemallocEnabled.test_get_traces_intern_traceback +allocate_bytes3 Lib/test/test_tracemalloc.py /^ def allocate_bytes3(size):$/;" f function:TestTracemallocEnabled.test_get_traces_intern_traceback +allocate_bytes4 Lib/test/test_tracemalloc.py /^ def allocate_bytes4(size):$/;" f function:TestTracemallocEnabled.test_get_traces_intern_traceback +allocate_chunk Python/pystate.c /^allocate_chunk(int size_in_bytes, _PyStackChunk* previous)$/;" f file: +allocate_from_new_pool Objects/obmalloc.c /^allocate_from_new_pool(OMState *state, uint size)$/;" f file: +allocate_instrumentation_data Python/instrumentation.c /^allocate_instrumentation_data(PyCodeObject *code)$/;" f file: +allocate_too_many_code_watchers Modules/_testcapi/watchers.c /^allocate_too_many_code_watchers(PyObject *self, PyObject *args)$/;" f file: +allocate_too_many_func_watchers Modules/_testcapi/watchers.c /^allocate_too_many_func_watchers(PyObject *self, PyObject *args)$/;" f file: +allocated Include/cpython/bytesobject.h /^ Py_ssize_t allocated;$/;" m struct:__anon174 +allocated Include/cpython/listobject.h /^ Py_ssize_t allocated;$/;" m struct:__anon239 +allocated Include/internal/pycore_blocks_output_buffer.h /^ Py_ssize_t allocated;$/;" m struct:__anon140 +allocated Modules/_elementtree.c /^ Py_ssize_t allocated; \/* allocated items *\/$/;" m struct:__anon382 file: +allocated Modules/_pickle.c /^ Py_ssize_t allocated; \/* number of slots in data allocated *\/$/;" m struct:__anon449 file: +allocated Modules/arraymodule.c /^ Py_ssize_t allocated;$/;" m struct:arrayobject file: +allocated_buffer Modules/overlapped.c /^ PyObject *allocated_buffer;$/;" m struct:__anon567::__anon568::__anon569 file: +allocated_buffer Modules/overlapped.c /^ PyObject *allocated_buffer;$/;" m union:__anon567::__anon568 file: +allocated_c_char_p Lib/test/test_ctypes/test_slicing.py /^ class allocated_c_char_p(c_char_p):$/;" c function:SlicesTestCase.test_char_ptr_with_free +allocations Include/pystats.h /^ uint64_t allocations;$/;" m struct:_object_stats +allocations4k Include/pystats.h /^ uint64_t allocations4k;$/;" m struct:_object_stats +allocations512 Include/pystats.h /^ uint64_t allocations512;$/;" m struct:_object_stats +allocations_big Include/pystats.h /^ uint64_t allocations_big;$/;" m struct:_object_stats +allocator Include/cpython/initconfig.h /^ int allocator;$/;" m struct:PyPreConfig +allocator Include/cpython/objimpl.h /^PyAPI_FUNC(void) PyObject_GetArenaAllocator(PyObjectArenaAllocator *allocator);$/;" v +allocator Include/cpython/objimpl.h /^PyAPI_FUNC(void) PyObject_SetArenaAllocator(PyObjectArenaAllocator *allocator);$/;" v +allocator Include/internal/pycore_pymem.h /^PyAPI_FUNC(int) _PyMem_SetupAllocators(PyMemAllocatorName allocator);$/;" v +allocators Include/internal/pycore_runtime.h /^ struct _pymem_allocators allocators;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_pymem_allocators +allocators Include/internal/pycore_tracemalloc.h /^ } allocators;$/;" m struct:_tracemalloc_runtime_state typeref:struct:_tracemalloc_runtime_state::__anon31 +allocators Python/tracemalloc.c 29;" d file: +alloced Objects/listobject.c /^ Py_ssize_t alloced;$/;" m struct:s_MergeState file: +allocfunc Include/object.h /^typedef PyObject *(*allocfunc)(PyTypeObject *, Py_ssize_t);$/;" t +allowDefaults PC/launcher2.c /^ bool allowDefaults;$/;" m struct:__anon284 file: +allowExecutableOverride PC/launcher2.c /^ bool allowExecutableOverride;$/;" m struct:__anon284 file: +allowPyvenvCfg PC/launcher2.c /^ bool allowPyvenvCfg;$/;" m struct:__anon284 file: +allow_code_context Lib/idlelib/editor.py /^ allow_code_context = True$/;" v class:EditorWindow +allow_code_context Lib/idlelib/outwin.py /^ allow_code_context = False$/;" v class:OutputWindow +allow_connection_pickling Lib/multiprocessing/context.py /^ def allow_connection_pickling(self):$/;" m class:BaseContext +allow_daemon_threads Include/cpython/pylifecycle.h /^ int allow_daemon_threads;$/;" m struct:__anon194 +allow_daemon_threads Lib/test/test_import/__init__.py /^ allow_daemon_threads=False,$/;" v class:SubinterpImportTests +allow_exec Include/cpython/pylifecycle.h /^ int allow_exec;$/;" m struct:__anon194 +allow_exec Lib/test/test_import/__init__.py /^ allow_exec=False,$/;" v class:SubinterpImportTests +allow_fd Modules/posixmodule.c /^ int allow_fd;$/;" m struct:__anon478 file: +allow_fork Include/cpython/pylifecycle.h /^ int allow_fork;$/;" m struct:__anon194 +allow_fork Lib/test/test_import/__init__.py /^ allow_fork=False,$/;" v class:SubinterpImportTests +allow_irrefutable Python/compile.c /^ int allow_irrefutable;$/;" m struct:__anon672 file: +allow_line_numbers Lib/idlelib/editor.py /^ allow_line_numbers = True$/;" v class:EditorWindow +allow_line_numbers Lib/idlelib/pyshell.py /^ allow_line_numbers = False$/;" v class:PyShell +allow_nan Lib/json/__init__.py /^ allow_nan=True,$/;" v +allow_nan Modules/_json.c /^ int allow_nan;$/;" m struct:_PyEncoderObject file: +allow_no_value Lib/test/test_configparser.py /^ allow_no_value = False$/;" v class:CfgParserTestCaseClass +allow_no_value Lib/test/test_configparser.py /^ allow_no_value = True$/;" v class:ConfigParserTestCaseNoValue +allow_no_value Lib/test/test_configparser.py /^ allow_no_value = True$/;" v class:ConfigParserTestCaseTrickyFile +allow_reuse_address Lib/http/server.py /^ allow_reuse_address = 1 # Seems to make sense in testing environment$/;" v class:HTTPServer +allow_reuse_address Lib/logging/config.py /^ allow_reuse_address = 1$/;" v class:listen.ConfigSocketReceiver +allow_reuse_address Lib/socketserver.py /^ allow_reuse_address = False$/;" v class:TCPServer +allow_reuse_address Lib/socketserver.py /^ allow_reuse_address = False$/;" v class:UDPServer +allow_reuse_address Lib/test/test_logging.py /^ allow_reuse_address = True$/;" v class:TestTCPServer +allow_reuse_address Lib/xmlrpc/server.py /^ allow_reuse_address = True$/;" v class:SimpleXMLRPCServer +allow_reuse_port Lib/socketserver.py /^ allow_reuse_port = False$/;" v class:TCPServer +allow_reuse_port Lib/socketserver.py /^ allow_reuse_port = False$/;" v class:UDPServer +allow_threads Include/cpython/pylifecycle.h /^ int allow_threads;$/;" m struct:__anon194 +allow_threads Lib/test/test_import/__init__.py /^ allow_threads=True,$/;" v class:SubinterpImportTests +allowance Lib/urllib/robotparser.py /^ def allowance(self, filename):$/;" m class:Entry +allowed_domains Lib/http/cookiejar.py /^ def allowed_domains(self):$/;" m class:DefaultCookiePolicy +alltests packaging/skipped_tests.py /^alltests = set()$/;" v +alltypes Lib/idlelib/idle_test/test_macosx.py /^alltypes = mactypes | nontypes$/;" v +alpha Tools/build/generate_re_casefix.py /^def alpha(i):$/;" f +alphanumeric Lib/idlelib/undo.py /^ alphanumeric = string.ascii_letters + string.digits + "_"$/;" v class:InsertCommand +alpharep_generators Lib/test/test_zipfile/_path/test_path.py /^alpharep_generators = [$/;" v +alpn_protocols Modules/_ssl.c /^ unsigned char *alpn_protocols;$/;" m struct:__anon579 file: +alpn_protocols_len Modules/_ssl.c /^ unsigned int alpn_protocols_len;$/;" m struct:__anon579 file: +already_warned Python/_warnings.c /^already_warned(PyInterpreterState *interp, PyObject *registry, PyObject *key,$/;" f file: +alt Lib/curses/ascii.py /^def alt(c):$/;" f +alt Tools/peg_generator/pegen/grammar_parser.py /^ def alt(self) -> Optional[Alt]:$/;" m class:GeneratedParser +alt_path_sep Lib/zipimport.py /^alt_path_sep = _bootstrap_external.path_separators[1:]$/;" v +alternate Python/formatter_unicode.c /^ int alternate;$/;" m struct:__anon674 file: +alternates Lib/lib2to3/fixes/fix_imports.py /^def alternates(members):$/;" f +alternates Lib/lib2to3/fixes/fix_renames.py /^def alternates(members):$/;" f +altindstack Parser/tokenizer.h /^ int altindstack[MAXINDENT]; \/* Stack of alternate indents *\/$/;" m struct:tok_state +alts Tools/peg_generator/pegen/grammar_parser.py /^ def alts(self) -> Optional[Rhs]:$/;" m class:GeneratedParser +alts_uses_locations Tools/peg_generator/pegen/python_generator.py /^ def alts_uses_locations(self, alts: Sequence[Alt]) -> bool:$/;" m class:PythonParserGenerator +altsep Lib/ntpath.py /^altsep = '\/'$/;" v +altsep Lib/posixpath.py /^altsep = None$/;" v +always_exits Tools/cases_generator/generate_cases.py /^def always_exits(lines: list[str]) -> bool:$/;" f +always_iterable Lib/importlib/metadata/_itertools.py /^def always_iterable(obj, base_type=(str, bytes)):$/;" f +always_iterable Lib/test/test_zipfile/_path/_itertools.py /^def always_iterable(obj, base_type=(str, bytes)):$/;" f +am_aiter Include/cpython/object.h /^ unaryfunc am_aiter;$/;" m struct:__anon212 +am_anext Include/cpython/object.h /^ unaryfunc am_anext;$/;" m struct:__anon212 +am_await Include/cpython/object.h /^ unaryfunc am_await;$/;" m struct:__anon212 +am_send Include/cpython/object.h /^ sendfunc am_send;$/;" m struct:__anon212 +amd64 PC/layout/support/appxmanifest.py /^ amd64=("x64",),$/;" v +amd64 PC/layout/support/nuspec.py /^ amd64=("64-bit", "python", "Python"),$/;" v +ameth Lib/test/test_typing.py /^ def ameth(self) -> int:$/;" m class:ProtocolTests.test_cannot_instantiate_abstract.C +ameth Lib/test/test_typing.py /^ def ameth(self) -> int:$/;" m class:ProtocolTests.test_cannot_instantiate_abstract.P +an_async_generator Lib/test/test_pydoc.py /^ async def an_async_generator():$/;" f function:TestDescriptions.test_async_generator_annotation +an_field_number Objects/stringlib/unicode_format.h /^ int an_field_number;$/;" m struct:__anon705 +an_int Modules/_ctypes/_ctypes_test.c /^ int an_int;$/;" m struct:__anon504::__anon505 file: +an_int Modules/_ctypes/_ctypes_test.c /^ int an_int;$/;" m struct:__anon506::__anon507 file: +an_int Modules/_ctypes/_ctypes_test.c /^ int an_int;$/;" m struct:__anon506 file: +an_state Objects/stringlib/unicode_format.h /^ AutoNumberState an_state;$/;" m struct:__anon705 +analyze Tools/c-analyzer/c_analyzer/__init__.py /^def analyze(filenmes, **kwargs):$/;" f +analyze Tools/c-analyzer/cpython/__main__.py /^ def analyze(files, **kwargs):$/;" f function:cmd_data +analyze Tools/c-analyzer/cpython/_analyzer.py /^def analyze(filenames, *,$/;" f +analyze Tools/cases_generator/generate_cases.py /^ def analyze(self) -> None:$/;" m class:Analyzer +analyze_block Python/symtable.c /^analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free,$/;" f file: +analyze_cells Python/symtable.c /^analyze_cells(PyObject *scopes, PyObject *free, PyObject *inlined_cells)$/;" f file: +analyze_character_width Tools/build/deepfreeze.py /^def analyze_character_width(s: str) -> Tuple[int, bool]:$/;" f +analyze_child_block Python/symtable.c /^analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free,$/;" f file: +analyze_decl Tools/c-analyzer/c_analyzer/__init__.py /^ def analyze_decl(decl):$/;" f function:analyze_decls +analyze_decl Tools/c-analyzer/c_analyzer/analyze.py /^def analyze_decl(decl, typespecs, knowntypespecs, types, knowntypes, *,$/;" f +analyze_decl Tools/c-analyzer/c_analyzer/datafiles.py /^ def analyze_decl(decl):$/;" f function:analyze_known +analyze_decls Tools/c-analyzer/c_analyzer/__init__.py /^def analyze_decls(decls, known, *,$/;" f +analyze_descriptor Python/specialize.c /^analyze_descriptor(PyTypeObject *type, PyObject *name, PyObject **descr, int store)$/;" f file: +analyze_instruction Tools/cases_generator/generate_cases.py /^ def analyze_instruction($/;" m class:Analyzer +analyze_known Tools/c-analyzer/c_analyzer/datafiles.py /^def analyze_known(known, *,$/;" f +analyze_macro Tools/cases_generator/generate_cases.py /^ def analyze_macro(self, macro: parser.Macro) -> MacroInstruction:$/;" m class:Analyzer +analyze_name Python/symtable.c /^analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags,$/;" f file: +analyze_resolved Tools/c-analyzer/cpython/_analyzer.py /^def analyze_resolved(resolved, decl, types, knowntypes, extra=None):$/;" f +analyze_super Tools/cases_generator/generate_cases.py /^ def analyze_super(self, super: parser.Super) -> SuperInstruction:$/;" m class:Analyzer +analyze_supers_and_macros Tools/cases_generator/generate_cases.py /^ def analyze_supers_and_macros(self) -> None:$/;" m class:Analyzer +analyze_type_decls Tools/c-analyzer/c_analyzer/analyze.py /^def analyze_type_decls(types, analyze_decl, handle_unresolved=True):$/;" f +anchor Lib/pathlib.py /^ def anchor(self):$/;" m class:PurePath +anchor Lib/tkinter/__init__.py /^ anchor = grid_anchor$/;" v class:Misc +anchor_clear Lib/tkinter/tix.py /^ def anchor_clear(self):$/;" m class:Grid +anchor_clear Lib/tkinter/tix.py /^ def anchor_clear(self):$/;" m class:HList +anchor_clear Lib/tkinter/tix.py /^ def anchor_clear(self):$/;" m class:TList +anchor_get Lib/tkinter/tix.py /^ def anchor_get(self):$/;" m class:Grid +anchor_set Lib/tkinter/tix.py /^ def anchor_set(self, entry):$/;" m class:HList +anchor_set Lib/tkinter/tix.py /^ def anchor_set(self, index):$/;" m class:TList +anchor_set Lib/tkinter/tix.py /^ def anchor_set(self, x, y):$/;" m class:Grid +ancillaryMapping Lib/test/test_socket.py /^ def ancillaryMapping(self, ancdata):$/;" m class:RFC3542AncillaryTest +and_ Lib/operator.py /^def and_(a, b):$/;" f +and_false Lib/test/test_compile.py /^ def and_false(x):$/;" f function:TestSpecifics.test_consts_in_conditionals +and_true Lib/test/test_compile.py /^ def and_true(x):$/;" f function:TestSpecifics.test_consts_in_conditionals +anext_impl Lib/test/test_asyncgen.py /^ async def anext_impl():$/;" f function:py_anext +anextawaitable_as_async Objects/iterobject.c /^static PyAsyncMethods anextawaitable_as_async = {$/;" v file: +anextawaitable_close Objects/iterobject.c /^anextawaitable_close(anextawaitableobject *obj, PyObject *arg) {$/;" f file: +anextawaitable_dealloc Objects/iterobject.c /^anextawaitable_dealloc(anextawaitableobject *obj)$/;" f file: +anextawaitable_getiter Objects/iterobject.c /^anextawaitable_getiter(anextawaitableobject *obj)$/;" f file: +anextawaitable_iternext Objects/iterobject.c /^anextawaitable_iternext(anextawaitableobject *obj)$/;" f file: +anextawaitable_methods Objects/iterobject.c /^static PyMethodDef anextawaitable_methods[] = {$/;" v file: +anextawaitable_proxy Objects/iterobject.c /^anextawaitable_proxy(anextawaitableobject *obj, char *meth, PyObject *arg) {$/;" f file: +anextawaitable_send Objects/iterobject.c /^anextawaitable_send(anextawaitableobject *obj, PyObject *arg) {$/;" f file: +anextawaitable_throw Objects/iterobject.c /^anextawaitable_throw(anextawaitableobject *obj, PyObject *arg) {$/;" f file: +anextawaitable_traverse Objects/iterobject.c /^anextawaitable_traverse(anextawaitableobject *obj, visitproc visit, void *arg)$/;" f file: +anextawaitableobject Objects/iterobject.c /^} anextawaitableobject;$/;" t typeref:struct:__anon742 file: +ann Lib/test/typinganndata/ann_module9.py /^ann = Union[List[str], int]$/;" v +ann1 Lib/test/typinganndata/ann_module9.py /^ann1 = Union[List[A], int]$/;" v +annotate_diff Doc/tools/check-warnings.py /^def annotate_diff($/;" f +annotated Lib/test/inspect_fodder2.py /^def annotated(arg1: list):$/;" f +annotated_rhs_rule Parser/parser.c /^annotated_rhs_rule(Parser *p)$/;" f file: +annotated_rhs_type Parser/parser.c 93;" d file: +annotated_with_none_default Lib/test/test_typing.py /^ def annotated_with_none_default(x: Annotated[int, 'data'] = None): ...$/;" f function:GetTypeHintTests.test_get_type_hints_annotated_with_none_default +annotation Include/internal/pycore_ast.h /^ expr_ty annotation;$/;" m struct:_stmt::__anon51::__anon60 +annotation Include/internal/pycore_ast.h /^ expr_ty annotation;$/;" m struct:_arg +annotation Include/internal/pycore_ast_state.h /^ PyObject *annotation;$/;" m struct:ast_state +annotation Lib/inspect.py /^ def annotation(self):$/;" m class:Parameter +annotation Lib/test/test_docxmlrpc.py /^ def annotation(x: int):$/;" f function:make_server +annotation Tools/peg_generator/pegen/grammar_parser.py /^ def annotation(self) -> Optional[str]:$/;" m class:GeneratedParser +annotation_rule Parser/parser.c /^annotation_rule(Parser *p)$/;" f file: +annotation_type Parser/parser.c 129;" d file: +annotations Lib/__future__.py /^annotations = _Feature((3, 7, 0, "beta", 1),$/;" v +anomaly_end Lib/test/test_zoneinfo/test_zoneinfo.py /^ def anomaly_end(self):$/;" m class:ZoneTransition +anomaly_start Lib/test/test_zoneinfo/test_zoneinfo.py /^ def anomaly_start(self):$/;" m class:ZoneTransition +anon_mmap Lib/test/test_mmap.py /^ class anon_mmap(mmap.mmap):$/;" c function:MmapTests.test_subclass +anon_name Tools/c-analyzer/c_parser/parser/__init__.py /^ def anon_name(prefix='anon-'):$/;" f function:anonymous_names +anonymous Lib/test/test_unittest/testmock/testpatch.py /^ def anonymous():$/;" f function:PatchTest.test_patch_local +anonymous Lib/test/test_unittest/testmock/testpatch.py /^ def anonymous():$/;" f function:PatchTest.test_patch_slots +anonymous Lib/test/test_unittest/testmock/testpatch.py /^ def anonymous():$/;" f function:PatchTest.test_patch_with_static_methods +anonymous Modules/_ctypes/ctypes.h /^ int anonymous;$/;" m struct:__anon494 +anonymous_names Tools/c-analyzer/c_parser/parser/__init__.py /^def anonymous_names():$/;" f +another_int Modules/_ctypes/_ctypes_test.c /^ int another_int;$/;" m struct:__anon504::__anon505 file: +another_int Modules/_ctypes/_ctypes_test.c /^ int another_int;$/;" m struct:__anon506 file: +another_new_sample Lib/test/test_dataclasses.py /^ another_new_sample = pickle.loads(pickle.dumps(new_sample, proto))$/;" v class:TestCase.test_dataclasses_pickleable.R +ans Doc/includes/email-read-alternative.py /^ans = input("View full message?")$/;" v +answer_challenge Lib/multiprocessing/connection.py /^def answer_challenge(connection, authkey: bytes):$/;" f +anticipate_failure Lib/test/support/__init__.py /^def anticipate_failure(condition):$/;" f +any Include/cpython/unicodeobject.h /^ void *any;$/;" m union:__anon234::__anon235 +any Lib/idlelib/colorizer.py /^def any(name, alternates):$/;" f +any Lib/lib2to3/pgen2/tokenize.py /^def any(*choices): return group(*choices) + '*'$/;" f +any Lib/tokenize.py /^def any(*choices): return group(*choices) + '*'$/;" f +any_find_slice Objects/unicodeobject.c /^any_find_slice(PyObject* s1, PyObject* s2,$/;" f file: +any_missing Lib/modulefinder.py /^ def any_missing(self):$/;" m class:ModuleFinder +any_missing_maybe Lib/modulefinder.py /^ def any_missing_maybe(self):$/;" m class:ModuleFinder +anylib_count Objects/unicodeobject.c /^anylib_count(int kind, PyObject *sstr, const void* sbuf, Py_ssize_t slen,$/;" f file: +anylib_find Objects/unicodeobject.c /^anylib_find(int kind, PyObject *str1, const void *buf1, Py_ssize_t len1,$/;" f file: +anyobject Lib/pickletools.py /^anyobject = StackObject($/;" v +anyset Include/setobject.h /^PyAPI_FUNC(Py_ssize_t) PySet_Size(PyObject *anyset);$/;" v +ao Modules/arraymodule.c /^ arrayobject *ao;$/;" m struct:__anon648 file: +ao_iterator Modules/_testcapimodule.c /^ PyObject *ao_iterator;$/;" m struct:__anon592 file: +api Tools/c-analyzer/cpython/_builtin_types.py /^ def api(self):$/;" m class:BuiltinTypeDecl +api Tools/c-analyzer/cpython/_builtin_types.py /^ def api(self):$/;" m class:BuiltinTypeInfo +api_id Include/internal/pycore_pymem.h /^ char api_id;$/;" m struct:__anon15 +apilevel Lib/sqlite3/dbapi2.py /^apilevel = "2.0"$/;" v +apop Lib/poplib.py /^ def apop(self, user, password):$/;" m class:POP3 +app Lib/test/test_asyncio/utils.py /^ def app(environ, start_response):$/;" f function:_run_test_server +app Lib/test/test_wsgiref.py /^ def app(e, s):$/;" f function:HandlerTests.testBytesData +app Lib/test/test_wsgiref.py /^ def app(e, s):$/;" f function:IntegrationTests.test_bytes_validation +app Lib/test/test_wsgiref.py /^ def app(e, s):$/;" f function:IntegrationTests.test_cp1252_url +app Lib/test/test_wsgiref.py /^ def app(environ, start_response):$/;" f function:IntegrationTests.test_interrupted_write +appdata_ini_path PC/launcher.c /^static wchar_t appdata_ini_path[MAX_PATH];$/;" v file: +append Lib/_collections_abc.py /^ def append(self, value):$/;" m class:MutableSequence +append Lib/collections/__init__.py /^ def append(self, item):$/;" m class:UserList +append Lib/configparser.py /^ def append(self, lineno, line):$/;" m class:ParsingError +append Lib/email/header.py /^ def append(self, s, charset=None, errors='strict'):$/;" m class:Header +append Lib/idlelib/scrolledlist.py /^ def append(self, item):$/;" m class:ScrolledList +append Lib/idlelib/undo.py /^ def append(self, cmd):$/;" m class:CommandSequence +append Lib/imaplib.py /^ def append(self, mailbox, flags, date_time, message):$/;" m class:IMAP4 +append Lib/importlib/_bootstrap_external.py /^ def append(self, item):$/;" m class:_NamespacePath +append Lib/logging/__init__.py /^ def append(self, alogger):$/;" m class:PlaceHolder +append Lib/msilib/__init__.py /^ def append(self, full, file, logical):$/;" m class:CAB +append Lib/pipes.py /^ def append(self, cmd, kind):$/;" m class:Template +append Lib/re/_parser.py /^ def append(self, code):$/;" m class:SubPattern +append Lib/socketserver.py /^ def append(self, thread):$/;" m class:_NoThreads +append Lib/socketserver.py /^ def append(self, thread):$/;" m class:_Threads +append Lib/test/_test_multiprocessing.py /^ def append(self, _):$/;" m class:_DummyList +append Lib/test/pickletester.py /^ def append(self, item):$/;" m class:REX_six +append Lib/test/test_httplib.py /^ def append(self, item):$/;" m class:HeaderTests.test_auto_headers.HeaderCountingBuffer +append Lib/test/test_httplib.py /^ def append(self, item):$/;" m class:HeaderTests.test_content_length_0.ContentLengthChecker +append Lib/test/test_reprlib.py /^ def append(self, value):$/;" m class:MyContainer +append Lib/test/test_typing.py /^ def append(self, x: int):$/;" m class:GenericTests.test_nested.IntListVisitor +append Lib/xml/etree/ElementTree.py /^ def append(self, subelement):$/;" m class:Element +appendAttributeValue Modules/expat/xmlparse.c /^appendAttributeValue(XML_Parser parser, const ENCODING *enc, XML_Bool isCdata,$/;" f file: +appendChild Lib/xml/dom/minidom.py /^ def appendChild(self, newChild):$/;" m class:Entity +appendChild Lib/xml/dom/minidom.py /^ def appendChild(self, node):$/;" m class:Childless +appendChild Lib/xml/dom/minidom.py /^ def appendChild(self, node):$/;" m class:Document +appendChild Lib/xml/dom/minidom.py /^ def appendChild(self, node):$/;" m class:Node +appendData Lib/xml/dom/minidom.py /^ def appendData(self, arg):$/;" m class:CharacterData +append_ast_arg Python/ast_unparse.c /^append_ast_arg(_PyUnicodeWriter *writer, arg_ty arg)$/;" f file: +append_ast_args Python/ast_unparse.c /^append_ast_args(_PyUnicodeWriter *writer, arguments_ty args)$/;" f file: +append_ast_attribute Python/ast_unparse.c /^append_ast_attribute(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_await Python/ast_unparse.c /^append_ast_await(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_binop Python/ast_unparse.c /^append_ast_binop(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_boolop Python/ast_unparse.c /^append_ast_boolop(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_call Python/ast_unparse.c /^append_ast_call(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_compare Python/ast_unparse.c /^append_ast_compare(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_comprehension Python/ast_unparse.c /^append_ast_comprehension(_PyUnicodeWriter *writer, comprehension_ty gen)$/;" f file: +append_ast_comprehensions Python/ast_unparse.c /^append_ast_comprehensions(_PyUnicodeWriter *writer, asdl_comprehension_seq *comprehensions)$/;" f file: +append_ast_constant Python/ast_unparse.c /^append_ast_constant(_PyUnicodeWriter *writer, PyObject *constant)$/;" f file: +append_ast_dict Python/ast_unparse.c /^append_ast_dict(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_dictcomp Python/ast_unparse.c /^append_ast_dictcomp(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_expr Python/ast_unparse.c /^append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_genexp Python/ast_unparse.c /^append_ast_genexp(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_ifexp Python/ast_unparse.c /^append_ast_ifexp(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_keyword Python/ast_unparse.c /^append_ast_keyword(_PyUnicodeWriter *writer, keyword_ty kw)$/;" f file: +append_ast_lambda Python/ast_unparse.c /^append_ast_lambda(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_list Python/ast_unparse.c /^append_ast_list(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_listcomp Python/ast_unparse.c /^append_ast_listcomp(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_set Python/ast_unparse.c /^append_ast_set(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_setcomp Python/ast_unparse.c /^append_ast_setcomp(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_slice Python/ast_unparse.c /^append_ast_slice(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_starred Python/ast_unparse.c /^append_ast_starred(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_subscript Python/ast_unparse.c /^append_ast_subscript(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_tuple Python/ast_unparse.c /^append_ast_tuple(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_unaryop Python/ast_unparse.c /^append_ast_unaryop(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_ast_yield Python/ast_unparse.c /^append_ast_yield(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_ast_yield_from Python/ast_unparse.c /^append_ast_yield_from(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_charp Python/ast_unparse.c /^append_charp(_PyUnicodeWriter *writer, const char *charp)$/;" f file: +append_child Lib/lib2to3/pytree.py /^ def append_child(self, child):$/;" m class:Node +append_formattedvalue Python/ast_unparse.c /^append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e)$/;" f file: +append_fstring_element Python/ast_unparse.c /^append_fstring_element(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec)$/;" f file: +append_fstring_unicode Python/ast_unparse.c /^append_fstring_unicode(_PyUnicodeWriter *writer, PyObject *unicode)$/;" f file: +append_history Lib/tkinter/tix.py /^ def append_history(self, str):$/;" m class:ComboBox +append_joinedstr Python/ast_unparse.c /^append_joinedstr(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec)$/;" f file: +append_keyword_fold Modules/_datetimemodule.c /^append_keyword_fold(PyObject *repr, int fold)$/;" f file: +append_keyword_tzinfo Modules/_datetimemodule.c /^append_keyword_tzinfo(PyObject *repr, PyObject *tzinfo)$/;" f file: +append_named_expr Python/ast_unparse.c /^append_named_expr(_PyUnicodeWriter *writer, expr_ty e, int level)$/;" f file: +append_nest_to_list Lib/tomllib/_parser.py /^ def append_nest_to_list(self, key: Key) -> None:$/;" m class:NestedDict +append_nul Lib/logging/handlers.py /^ append_nul = True # some old syslog daemons expect a NUL terminator$/;" v class:SysLogHandler +append_objects Modules/gcmodule.c /^append_objects(PyObject *py_list, PyGC_Head *gc_list)$/;" f file: +append_repr Python/ast_unparse.c /^append_repr(_PyUnicodeWriter *writer, PyObject *obj)$/;" f file: +append_result Lib/test/test_sqlite3/test_userfunctions.py /^ def append_result(arg):$/;" f function:FunctionTests.test_func_params +append_triple Lib/tkinter/__init__.py /^ def append_triple(key, value, index, result=result):$/;" f function:Text.dump +appending Modules/_io/fileio.c /^ unsigned int appending : 1;$/;" m struct:__anon431 file: +application Lib/wsgiref/simple_server.py /^ application = None$/;" v class:WSGIServer +application_uri Lib/wsgiref/util.py /^def application_uri(environ):$/;" f +applied_first Lib/test/test_decorators.py /^ def applied_first(x):$/;" f function:TestClassDecorators.test_order +applied_second Lib/test/test_decorators.py /^ def applied_second(x):$/;" f function:TestClassDecorators.test_order +applies_to Lib/urllib/robotparser.py /^ def applies_to(self, filename):$/;" m class:RuleLine +applies_to Lib/urllib/robotparser.py /^ def applies_to(self, useragent):$/;" m class:Entry +apply Lib/idlelib/configdialog.py /^ def apply(self):$/;" m class:ConfigDialog +apply Lib/idlelib/zzdummy.py /^ def apply(self, event=None):$/;" f function:format_selection +apply Lib/multiprocessing/pool.py /^ def apply(self, func, args=(), kwds={}):$/;" m class:Pool +apply Lib/tkinter/simpledialog.py /^ def apply(self):$/;" m class:Dialog +apply Tools/c-analyzer/c_common/scriptutil.py /^ def apply(self, parser):$/;" m class:CLIArgSpec +apply Tools/unittestgui/unittestgui.py /^ def apply(self):$/;" m class:DiscoverSettingsDialog +apply_async Lib/multiprocessing/pool.py /^ def apply_async(self, func, args=(), kwds={}, callback=None,$/;" m class:Pool +apply_bindings Lib/idlelib/editor.py /^ def apply_bindings(self, keydefs=None):$/;" m class:EditorWindow +apply_cli_argspecs Tools/c-analyzer/c_common/scriptutil.py /^def apply_cli_argspecs(parser, specs):$/;" f +apply_config Lib/test/test_logging.py /^ def apply_config(self, conf):$/;" m class:ConfigDictTest +apply_config Lib/test/test_logging.py /^ def apply_config(self, conf, **kwargs):$/;" m class:ConfigFileTest +apply_defaults Lib/inspect.py /^ def apply_defaults(self):$/;" m class:BoundArguments +apply_filter Lib/tkinter/tix.py /^ def apply_filter(self): # name of subwidget is same as command$/;" m class:FileSelectBox +apply_static_swaps Python/flowgraph.c /^apply_static_swaps(basicblock *block, int i)$/;" f file: +applydecs Lib/test/test_traceback.py /^ def applydecs():$/;" f function:TracebackErrorLocationCaretTestBase.test_decorator_application_lineno_correct +applydecs_class Lib/test/test_traceback.py /^ def applydecs_class():$/;" f function:TracebackErrorLocationCaretTestBase.test_decorator_application_lineno_correct +apprentice Lib/test/test_enum.py /^ apprentice = 'knock, knock!'$/;" v class:TestSpecial.test_string_enum.SkillLevel +approx_equal Lib/test/test_statistics.py /^def approx_equal(x, y, tol=1e-12, rel=1e-7):$/;" f +appxSearch PC/launcher2.c /^appxSearch(const SearchInfo *search, EnvironmentInfo **result, const wchar_t *packageFamilyName, const wchar_t *tag, int sortKey)$/;" f +apropos Lib/pydoc.py /^def apropos(key):$/;" f +ar_end Include/cpython/code.h /^ int ar_end;$/;" m struct:_line_offsets +ar_line Include/cpython/code.h /^ int ar_line;$/;" m struct:_line_offsets +ar_start Include/cpython/code.h /^ int ar_start;$/;" m struct:_line_offsets +arange Lib/test/test_asyncgen.py /^ async def arange(n):$/;" f function:AsyncGenAsyncioTest.test_async_gen_expression_01 +arange Lib/test/test_builtin.py /^ async def arange(n):$/;" f function:BuiltinTest.test_compile_top_level_await +arange Lib/test/test_builtin.py /^ async def arange(n):$/;" f function:BuiltinTest.test_compile_top_level_await_invalid_cases +arange Lib/test/test_sys_settrace.py /^ async def arange(n):$/;" f function:TraceTestCase.test_async_for_backwards_jump_has_no_line +arbitrary_address Lib/multiprocessing/connection.py /^def arbitrary_address(family):$/;" f +architecture Lib/platform.py /^def architecture(executable=sys.executable, bits='', linkage=''):$/;" f +architecture PC/launcher2.c /^ const wchar_t *architecture;$/;" m struct:EnvironmentInfo file: +archiver Lib/test/test_shutil.py /^ def archiver(base_name, base_dir, **kw):$/;" f function:TestArchives.test_make_archive_cwd +archiver Lib/test/test_shutil.py /^ def archiver(base_name, base_dir, **kw):$/;" f function:TestArchives.test_make_archive_cwd_default +archiver Lib/test/test_shutil.py /^ def archiver(base_name, base_dir, **kw):$/;" f function:TestArchives.test_make_archive_cwd_supports_root_dir +are_all_items_const Python/compile.c /^are_all_items_const(asdl_expr_seq *seq, Py_ssize_t begin, Py_ssize_t end)$/;" f file: +area Lib/test/test_pydoc.py /^ def area(self):$/;" m class:TestDescriptions.test_property.Rect +arena Parser/pegen.h /^ PyArena *arena;$/;" m struct:__anon657 +arena_coverage_t Include/internal/pycore_obmalloc.h /^} arena_coverage_t;$/;" t typeref:struct:__anon142 +arena_map_bot Include/internal/pycore_obmalloc.h /^typedef struct arena_map_bot {$/;" s +arena_map_bot_count Include/internal/pycore_obmalloc.h /^ int arena_map_bot_count;$/;" m struct:_obmalloc_usage +arena_map_bot_count Objects/obmalloc.c 1005;" d file: +arena_map_bot_t Include/internal/pycore_obmalloc.h /^} arena_map_bot_t;$/;" t typeref:struct:arena_map_bot +arena_map_get Objects/obmalloc.c /^arena_map_get(OMState *state, pymem_block *p, int create)$/;" f file: +arena_map_is_used Objects/obmalloc.c /^arena_map_is_used(OMState *state, pymem_block *p)$/;" f file: +arena_map_mark_used Objects/obmalloc.c /^arena_map_mark_used(OMState *state, uintptr_t arena_base, int is_used)$/;" f file: +arena_map_mid Include/internal/pycore_obmalloc.h /^typedef struct arena_map_mid {$/;" s +arena_map_mid_count Include/internal/pycore_obmalloc.h /^ int arena_map_mid_count;$/;" m struct:_obmalloc_usage +arena_map_mid_count Objects/obmalloc.c 1004;" d file: +arena_map_mid_t Include/internal/pycore_obmalloc.h /^} arena_map_mid_t;$/;" t typeref:struct:arena_map_mid +arena_map_root Include/internal/pycore_obmalloc.h /^ arena_map_top_t arena_map_root;$/;" m struct:_obmalloc_usage +arena_map_root Objects/obmalloc.c 1002;" d file: +arena_map_top Include/internal/pycore_obmalloc.h /^typedef struct arena_map_top {$/;" s +arena_map_top_t Include/internal/pycore_obmalloc.h /^} arena_map_top_t;$/;" t typeref:struct:arena_map_top +arena_object Include/internal/pycore_obmalloc.h /^struct arena_object {$/;" s +arenaindex Include/internal/pycore_obmalloc.h /^ uint arenaindex; \/* index into arenas of base adr *\/$/;" m struct:pool_header +arenas Include/internal/pycore_obmalloc.h /^ arena_coverage_t arenas[MAP_BOT_LENGTH];$/;" m struct:arena_map_bot +arenas Include/internal/pycore_obmalloc.h /^ struct arena_object* arenas;$/;" m struct:_obmalloc_mgmt typeref:struct:_obmalloc_mgmt::arena_object +arg Include/cpython/code.h /^ uint8_t arg;$/;" m struct:__anon225::__anon226 +arg Include/internal/pycore_ast.h /^ identifier arg;$/;" m struct:_arg +arg Include/internal/pycore_ast.h /^ identifier arg;$/;" m struct:_keyword +arg Include/internal/pycore_ast_state.h /^ PyObject *arg;$/;" m struct:ast_state +arg Include/internal/pycore_ceval_state.h /^ void *arg;$/;" m struct:_pending_calls::_pending_call +arg Lib/pydoc.py /^ arg = importfile(arg)$/;" v class:cli.BadUsage +arg Parser/pegen.h /^ arg_ty arg;$/;" m struct:__anon661 +arg Python/thread_nt.h /^ void *arg;$/;" m struct:__anon691 +arg Python/thread_pthread.h /^ void *arg;$/;" m struct:__anon693 +arg_attributes Python/Python-ast.c /^static const char * const arg_attributes[] = {$/;" v file: +arg_fields Python/Python-ast.c /^static const char * const arg_fields[]={$/;" v file: +arg_parser Tools/cases_generator/generate_cases.py /^arg_parser = argparse.ArgumentParser($/;" v +arg_ty Include/internal/pycore_ast.h /^typedef struct _arg *arg_ty;$/;" t typeref:struct:_arg +arg_type Include/internal/pycore_ast_state.h /^ PyObject *arg_type;$/;" m struct:ast_state +argc Include/internal/pycore_initconfig.h /^ Py_ssize_t argc;$/;" m struct:_PyArgv +argcount Include/internal/pycore_code.h /^ int argcount;$/;" m struct:_PyCodeConstructor +argidx Objects/unicodeobject.c /^ Py_ssize_t arglen, argidx;$/;" m struct:unicode_formatter_t file: +arglen Objects/unicodeobject.c /^ Py_ssize_t arglen, argidx;$/;" m struct:unicode_formatter_t file: +argparser Tools/peg_generator/pegen/__main__.py /^argparser = argparse.ArgumentParser($/;" v +argparser Tools/peg_generator/pegen/first_sets.py /^argparser = argparse.ArgumentParser($/;" v +argparser Tools/peg_generator/pegen/grammar_visualizer.py /^argparser = argparse.ArgumentParser($/;" v +argparser Tools/peg_generator/scripts/benchmark.py /^argparser = argparse.ArgumentParser($/;" v +argparser Tools/peg_generator/scripts/download_pypi_packages.py /^argparser = argparse.ArgumentParser($/;" v +argparser Tools/peg_generator/scripts/grammar_grapher.py /^argparser = argparse.ArgumentParser($/;" v +argparser Tools/peg_generator/scripts/test_parse_directory.py /^argparser = argparse.ArgumentParser($/;" v +argparser Tools/peg_generator/scripts/test_pypi_packages.py /^argparser = argparse.ArgumentParser($/;" v +argparsing Modules/_testcapimodule.c /^argparsing(PyObject *o, PyObject *args)$/;" f file: +args Include/internal/pycore_ast.h /^ arguments_ty args;$/;" m struct:_expr::__anon77::__anon82 +args Include/internal/pycore_ast.h /^ arguments_ty args;$/;" m struct:_stmt::__anon51::__anon52 +args Include/internal/pycore_ast.h /^ arguments_ty args;$/;" m struct:_stmt::__anon51::__anon53 +args Include/internal/pycore_ast.h /^ asdl_expr_seq *args;$/;" m struct:_expr::__anon77::__anon94 +args Include/internal/pycore_ast.h /^ asdl_arg_seq *args;$/;" m struct:_arguments +args Include/internal/pycore_ast_state.h /^ PyObject *args;$/;" m struct:ast_state +args Include/internal/pycore_atexit.h /^ PyObject *args;$/;" m struct:__anon122 +args Lib/code.py /^ args = parser.parse_args()$/;" v +args Lib/http/server.py /^ args = parser.parse_args()$/;" v +args Lib/idlelib/idle_test/test_calltip.py /^ def args(self):$/;" f function:CalltipTest.test_open_close +args Lib/inspect.py /^ def args(self):$/;" m class:BoundArguments +args Lib/nntplib.py /^ args = parser.parse_args()$/;" v class:NNTP +args Lib/test/ssl_servers.py /^ args = parser.parse_args()$/;" v +args Lib/test/test_capi/test_misc.py /^ args=(context,))$/;" v class:TestPendingCalls.test_pendingcalls_threaded.foo +args Lib/test/test_unittest/test_discovery.py /^ args = []$/;" v class:TestDiscovery.test_command_line_handling_do_discovery_calls_loader.Loader +args Lib/test/test_unittest/test_discovery.py /^ args = []$/;" v class:TestDiscovery.test_command_line_handling_do_discovery_uses_default_loader.Loader +args Lib/unittest/mock.py /^ def args(self):$/;" m class:_Call +args Lib/webbrowser.py /^ args = ['%s']$/;" v class:BaseBrowser +args Modules/_decimal/tests/deccheck.py /^ args = parser.parse_args()$/;" v +args Modules/_functoolsmodule.c /^ PyObject *args;$/;" m struct:__anon393 file: +args Modules/_operator.c /^ PyObject *args;$/;" m struct:__anon476 file: +args Modules/_threadmodule.c /^ PyObject *args;$/;" m struct:__anon445 file: +args Modules/_threadmodule.c /^ PyObject *args;$/;" m struct:bootstate file: +args Modules/_tkinter.c /^ PyObject *args;$/;" m struct:Tkapp_CallEvent file: +args Modules/_tkinter.c /^ PyObject *args;$/;" m struct:VarEvent file: +args Objects/genericaliasobject.c /^ PyObject *args;$/;" m struct:__anon711 file: +args Objects/typeobject.c /^ PyObject *args;$/;" m struct:__anon718 file: +args Objects/unicodeobject.c /^ PyObject *args;$/;" m struct:unicode_formatter_t file: +args Objects/unionobject.c /^ PyObject *args;$/;" m struct:__anon751 file: +args Parser/asdl_c.py /^ args = parser.parse_args()$/;" v +args Tools/build/update_file.py /^ args = parser.parse_args()$/;" v +args Tools/i18n/makelocalealias.py /^ args = parser.parse_args()$/;" v +args Tools/patchcheck/patchcheck.py /^ args = parser.parse_args()$/;" v +args_from_interpreter_flags Lib/test/support/__init__.py /^def args_from_interpreter_flags():$/;" f +args_owned Objects/unicodeobject.c /^ int args_owned;$/;" m struct:unicode_formatter_t file: +args_rule Parser/parser.c /^args_rule(Parser *p)$/;" f file: +args_tuple Python/codecs.c /^PyObject *args_tuple(PyObject *object,$/;" f file: +args_type Parser/parser.c 254;" d file: +argtypes Include/internal/pycore_ast.h /^ asdl_expr_seq *argtypes;$/;" m struct:_mod::__anon46::__anon50 +argtypes Include/internal/pycore_ast_state.h /^ PyObject *argtypes;$/;" m struct:ast_state +argtypes Modules/_ctypes/ctypes.h /^ PyObject *argtypes; \/* tuple of CDataObjects *\/$/;" m struct:__anon495 +argtypes Modules/_ctypes/ctypes.h /^ PyObject *argtypes;$/;" m struct:__anon493 +argue Lib/test/inspect_fodder.py /^ def argue(self, a, b, c):$/;" f +argument Modules/_ctypes/callproc.c /^struct argument {$/;" s file: +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = TestHelpBiggerOptionals.argument_group_signatures$/;" v class:TestShortColumns +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpArgumentDefaults +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpBiggerOptionalGroups +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpOnlyUserGroups +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpRawDescription +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpRawText +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpReformatting +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpSuppressOptionalGroup +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpUsage +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpVariableExpansion +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpWrappingLongNames +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = [$/;" v class:TestHelpWrappingShortNames +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpAlternatePrefixChars +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpBiggerOptionals +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpBiggerPositionals +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpMetavarTypeFormatter +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpNoHelpOptional +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpNone +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpRequiredOptional +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpSuppressOptional +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpSuppressPositional +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpSuppressUsage +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpTupleMetavar +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsageLongProg +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsageLongProgOptionsWrap +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsageLongProgPositionalsWrap +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsageOptionalsOnlyWrap +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsageOptionalsPositionalsWrap +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsageOptionalsWrap +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsagePositionalsOnlyWrap +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpUsagePositionalsWrap +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpVariableExpansionNoArguments +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpVariableExpansionUsageSupplied +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpVersionAction +argument_group_signatures Lib/test/test_argparse.py /^ argument_group_signatures = []$/;" v class:TestHelpVersionActionSuppress +argument_name Modules/posixmodule.c /^ const char *argument_name;$/;" m struct:__anon478 file: +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = TestHelpBiggerOptionals.argument_signatures$/;" v class:TestShortColumns +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestActionExtend +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestActionUserDefined +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestArgumentsFromFile +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestArgumentsFromFileConverter +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestBooleanOptionalActionRequired +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestConstActionsMissingConstKwarg +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestDefaultSuppress +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestDisallowLongAbbreviationAllowsShortGrouping +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestDisallowLongAbbreviationAllowsShortGroupingPrefix +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestEmptyAndSpaceContainingArguments +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestFileTypeDefaults +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestFileTypeR +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestFileTypeRB +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestFileTypeW +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestFileTypeWB +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestFileTypeX +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestFileTypeXB +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpAlternatePrefixChars +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpArgumentDefaults +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpBiggerOptionalGroups +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpBiggerOptionals +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpBiggerPositionals +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpNoHelpOptional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpNone +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpRawDescription +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpRawText +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpReformatting +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpRequiredOptional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpSuppressOptional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpSuppressOptionalGroup +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpSuppressPositional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpSuppressUsage +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpTupleMetavar +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsage +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsageLongProg +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsageLongProgOptionsWrap +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsageLongProgPositionalsWrap +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsageOptionalsOnlyWrap +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsageOptionalsPositionalsWrap +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsageOptionalsWrap +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsagePositionalsOnlyWrap +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsagePositionalsWrap +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpUsageWithParentheses +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpVariableExpansion +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpVersionActionSuppress +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpWrappingLongNames +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestHelpWrappingShortNames +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionLike +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsActionAppendConst +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsActionAppendConstWithDefault +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsAllowLongAbbreviation +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsAlmostNumericAndPositionals +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsAlternatePrefixChars +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsAlternatePrefixCharsAddedHelp +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsAlternatePrefixCharsMultipleShortArgs +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsChoices +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsDisallowLongAbbreviation +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsDisallowLongAbbreviationPrefixChars +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsDoubleDashPartialMatch +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsDoubleDashPrefixMatch +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsNargsOneOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsNargsOptional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsNargsZeroOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsNumericAndPositionals +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsRequired +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsShortLong +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsSingleDashCombined +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestOptionalsSingleDoubleDash +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestParserDefault42 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestParserDefaultSuppress +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestPositionalsActionAppend +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestPositionalsNargsNoneOneOrMore1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestPositionalsNargsNoneOptional1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestPositionalsNargsNoneZeroOrMore1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestPositionalsNargsOptionalConvertedDefault +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestPositionalsNargsOptionalOptional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestPrefixCharacterOnlyArguments +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestTypeCallable +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestTypeClassicClass +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [$/;" v class:TestTypeUserDefined +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('--apple', action='store_true')]$/;" v class:TestOptionalsActionStoreTrue +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('--baz', action='append')]$/;" v class:TestOptionalsActionAppend +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('--baz', action='append', default=['X'])]$/;" v class:TestOptionalsActionAppendWithDefault +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('--foo')]$/;" v class:TestOptionalsDoubleDash +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('--foo', action=argparse.BooleanOptionalAction)]$/;" v class:TestBooleanOptionalAction +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('--foo-bar'), Sig('--baz', dest='zabbaz')]$/;" v class:TestOptionalsDest +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-1', dest='one')]$/;" v class:TestOptionalsNumeric +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-V', '--version', action='version', version='3.6')]$/;" v class:TestHelpVersionAction +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-f'), Sig('-foobar'), Sig('-foorab')]$/;" v class:TestOptionalsSingleDashSubsetAmbiguous +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-foo')]$/;" v class:TestOptionalsSingleDashLong +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-foobar'), Sig('-foorab')]$/;" v class:TestOptionalsSingleDashAmbiguous +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-v', '--version', action='version', version='0.1')]$/;" v class:TestHelpSubparsersOrdering +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-v', '--version', action='version', version='0.1')]$/;" v class:TestHelpSubparsersWithHelpOrdering +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x'), Sig('-y', default=42)]$/;" v class:TestOptionalsDefault +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x')]$/;" v class:TestOptionalsNargsDefault +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x')]$/;" v class:TestOptionalsSingleDash +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x', action='count')]$/;" v class:TestOptionalsActionCount +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x', action='store')]$/;" v class:TestOptionalsActionStore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x', nargs='*'), Sig('y', nargs='*')]$/;" v class:TestNargsZeroOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x', nargs=1)]$/;" v class:TestOptionalsNargs1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-x', nargs=3)]$/;" v class:TestOptionalsNargs3 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-y', action='store_const', const=object)]$/;" v class:TestOptionalsActionStoreConst +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('-z', action='store_false')]$/;" v class:TestOptionalsActionStoreFalse +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('a', type=int),$/;" v class:TestHelpMetavarTypeFormatter +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo'), Sig('bar')]$/;" v class:TestPositionalsNargsNoneNone +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo'), Sig('bar', nargs='*')]$/;" v class:TestPositionalsNargsNoneZeroOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo'), Sig('bar', nargs='+')]$/;" v class:TestPositionalsNargsNoneOneOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo'), Sig('bar', nargs='?')]$/;" v class:TestPositionalsNargsNoneOptional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo'), Sig('bar', nargs=1)]$/;" v class:TestPositionalsNargsNone1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo')]$/;" v class:TestPositionalsNargsNone +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='*'), Sig('bar')]$/;" v class:TestPositionalsNargsZeroOrMoreNone +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='*'), Sig('bar', nargs=1)]$/;" v class:TestPositionalsNargsZeroOrMore1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='*')]$/;" v class:TestPositionalsNargsZeroOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='*', default='bar')]$/;" v class:TestPositionalsNargsZeroOrMoreDefault +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='+'), Sig('bar')]$/;" v class:TestPositionalsNargsOneOrMoreNone +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='+'), Sig('bar', nargs=1)]$/;" v class:TestPositionalsNargsOneOrMore1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='+')]$/;" v class:TestPositionalsNargsOneOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='?'), Sig('bar', nargs='*')]$/;" v class:TestPositionalsNargsOptionalZeroOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='?'), Sig('bar', nargs='+')]$/;" v class:TestPositionalsNargsOptionalOneOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='?'), Sig('bar', nargs=1)]$/;" v class:TestPositionalsNargsOptional1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='?')]$/;" v class:TestPositionalsNargsOptional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='?', default=42), Sig('bar')]$/;" v class:TestPositionalsNargsOptionalNone +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs='?', default=42)]$/;" v class:TestPositionalsNargsOptionalDefault +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs=1)]$/;" v class:TestPositionalsNargs1 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs=2), Sig('bar')]$/;" v class:TestPositionalsNargs2None +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs=2), Sig('bar', nargs='*')]$/;" v class:TestPositionalsNargs2ZeroOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs=2), Sig('bar', nargs='+')]$/;" v class:TestPositionalsNargs2OneOrMore +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs=2), Sig('bar', nargs='?')]$/;" v class:TestPositionalsNargs2Optional +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('foo', nargs=2)]$/;" v class:TestPositionalsNargs2 +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('spam', choices=set('abcdefg'))]$/;" v class:TestPositionalsChoicesString +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('spam', type=int, choices=range(20))]$/;" v class:TestPositionalsChoicesInt +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = [Sig('x'), Sig('y', nargs='...'), Sig('-z')]$/;" v class:TestNargsRemainder +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = []$/;" v class:TestHelpOnlyUserGroups +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = []$/;" v class:TestHelpVariableExpansionNoArguments +argument_signatures Lib/test/test_argparse.py /^ argument_signatures = []$/;" v class:TestHelpVariableExpansionUsageSupplied +argument_unavailable_error Modules/posixmodule.c /^argument_unavailable_error(const char *function_name, const char *argument_name)$/;" f file: +arguments Lib/test/test_ast.py /^ def arguments(args=None, posonlyargs=None, vararg=None,$/;" f function:ASTValidatorTests._check_arguments +arguments_fields Python/Python-ast.c /^static const char * const arguments_fields[]={$/;" v file: +arguments_rule Parser/parser.c /^arguments_rule(Parser *p)$/;" f file: +arguments_ty Include/internal/pycore_ast.h /^typedef struct _arguments *arguments_ty;$/;" t typeref:struct:_arguments +arguments_type Include/internal/pycore_ast_state.h /^ PyObject *arguments_type;$/;" m struct:ast_state +arguments_type Parser/parser.c 253;" d file: +argv Include/cpython/initconfig.h /^ PyWideStringList argv;$/;" m struct:PyConfig +argv Include/internal/pycore_initconfig.h /^ PyWideStringList argv;$/;" m struct:__anon163 +argv Lib/test/test_cgi.py /^ argv = []$/;" v class:HackedSysModule +argv Lib/test/test_getpath.py /^ argv=None,$/;" v +argv Tools/c-analyzer/c_parser/preprocessor/common.py /^ argv = None$/;" v +argv0 Lib/test/test_getpath.py /^ argv0="",$/;" v class:MockGetPathTests +arigo_example0 Lib/test/test_sys_settrace.py /^def arigo_example0():$/;" f +arigo_example1 Lib/test/test_sys_settrace.py /^def arigo_example1():$/;" f +arigo_example2 Lib/test/test_sys_settrace.py /^def arigo_example2():$/;" f +arm32 PC/layout/support/appxmanifest.py /^ arm32=("arm",),$/;" v +arm32 PC/layout/support/nuspec.py /^ arm32=("ARM", "pythonarm", "Python (ARM)"),$/;" v +arm32_ssh Tools/buildbot/remoteDeploy.bat /^if "%1"=="-arm32" (set arm32_ssh=true) & shift & goto CheckOpts$/;" v +arm32_ssh Tools/buildbot/remoteDeploy.bat /^set arm32_ssh=$/;" v +arm32_ssh Tools/buildbot/remotePythonInfo.bat /^if "%1"=="-arm32" (set arm32_ssh=true) & (set prefix=%REMOTE_PYTHON_DIR%pcbuild\\arm32) & shift & goto CheckOpts$/;" v +arm32_ssh Tools/buildbot/remotePythonInfo.bat /^set arm32_ssh=$/;" v +arm32_ssh Tools/buildbot/test.bat /^set arm32_ssh=$/;" v +arm64 PC/layout/support/appxmanifest.py /^ arm64=("arm64",),$/;" v +arm64 PC/layout/support/nuspec.py /^ arm64=("ARM64", "pythonarm64", "Python (ARM64)"),$/;" v +arrange_input_buffer Modules/zlibmodule.c /^arrange_input_buffer(z_stream *zst, Py_ssize_t *remains)$/;" f file: +arrange_output_buffer_with_maximum Modules/zlibmodule.c /^arrange_output_buffer_with_maximum(uint32_t *avail_out,$/;" f file: +array Include/internal/pycore_unicodeobject.h /^ PyObject **array;$/;" m struct:_Py_unicode_ids +array Objects/memoryobject.c /^ Py_ssize_t array[1];$/;" m struct:__anon732 file: +array_Check Modules/arraymodule.c 125;" d file: +array__array_reconstructor Modules/clinic/arraymodule.c.h /^array__array_reconstructor(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +array__array_reconstructor_impl Modules/arraymodule.c /^array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype,$/;" f file: +array_array___copy__ Modules/clinic/arraymodule.c.h /^array_array___copy__(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array___copy___impl Modules/arraymodule.c /^array_array___copy___impl(arrayobject *self)$/;" f file: +array_array___deepcopy__ Modules/arraymodule.c /^array_array___deepcopy__(arrayobject *self, PyObject *unused)$/;" f file: +array_array___reduce_ex__ Modules/clinic/arraymodule.c.h /^array_array___reduce_ex__(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +array_array___reduce_ex___impl Modules/arraymodule.c /^array_array___reduce_ex___impl(arrayobject *self, PyTypeObject *cls,$/;" f file: +array_array___sizeof__ Modules/clinic/arraymodule.c.h /^array_array___sizeof__(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array___sizeof___impl Modules/arraymodule.c /^array_array___sizeof___impl(arrayobject *self)$/;" f file: +array_array_append Modules/arraymodule.c /^array_array_append(arrayobject *self, PyObject *v)$/;" f file: +array_array_buffer_info Modules/clinic/arraymodule.c.h /^array_array_buffer_info(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array_buffer_info_impl Modules/arraymodule.c /^array_array_buffer_info_impl(arrayobject *self)$/;" f file: +array_array_byteswap Modules/clinic/arraymodule.c.h /^array_array_byteswap(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array_byteswap_impl Modules/arraymodule.c /^array_array_byteswap_impl(arrayobject *self)$/;" f file: +array_array_count Modules/arraymodule.c /^array_array_count(arrayobject *self, PyObject *v)$/;" f file: +array_array_extend Modules/clinic/arraymodule.c.h /^array_array_extend(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +array_array_extend_impl Modules/arraymodule.c /^array_array_extend_impl(arrayobject *self, PyTypeObject *cls, PyObject *bb)$/;" f file: +array_array_frombytes Modules/clinic/arraymodule.c.h /^array_array_frombytes(arrayobject *self, PyObject *arg)$/;" f +array_array_frombytes_impl Modules/arraymodule.c /^array_array_frombytes_impl(arrayobject *self, Py_buffer *buffer)$/;" f file: +array_array_fromfile Modules/clinic/arraymodule.c.h /^array_array_fromfile(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +array_array_fromfile_impl Modules/arraymodule.c /^array_array_fromfile_impl(arrayobject *self, PyTypeObject *cls, PyObject *f,$/;" f file: +array_array_fromlist Modules/arraymodule.c /^array_array_fromlist(arrayobject *self, PyObject *list)$/;" f file: +array_array_fromunicode Modules/clinic/arraymodule.c.h /^array_array_fromunicode(arrayobject *self, PyObject *arg)$/;" f +array_array_fromunicode_impl Modules/arraymodule.c /^array_array_fromunicode_impl(arrayobject *self, PyObject *ustr)$/;" f file: +array_array_index Modules/clinic/arraymodule.c.h /^array_array_index(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +array_array_index_impl Modules/arraymodule.c /^array_array_index_impl(arrayobject *self, PyObject *v, Py_ssize_t start,$/;" f file: +array_array_insert Modules/clinic/arraymodule.c.h /^array_array_insert(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +array_array_insert_impl Modules/arraymodule.c /^array_array_insert_impl(arrayobject *self, Py_ssize_t i, PyObject *v)$/;" f file: +array_array_pop Modules/clinic/arraymodule.c.h /^array_array_pop(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +array_array_pop_impl Modules/arraymodule.c /^array_array_pop_impl(arrayobject *self, Py_ssize_t i)$/;" f file: +array_array_remove Modules/arraymodule.c /^array_array_remove(arrayobject *self, PyObject *v)$/;" f file: +array_array_reverse Modules/clinic/arraymodule.c.h /^array_array_reverse(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array_reverse_impl Modules/arraymodule.c /^array_array_reverse_impl(arrayobject *self)$/;" f file: +array_array_tobytes Modules/clinic/arraymodule.c.h /^array_array_tobytes(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array_tobytes_impl Modules/arraymodule.c /^array_array_tobytes_impl(arrayobject *self)$/;" f file: +array_array_tofile Modules/clinic/arraymodule.c.h /^array_array_tofile(arrayobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +array_array_tofile_impl Modules/arraymodule.c /^array_array_tofile_impl(arrayobject *self, PyTypeObject *cls, PyObject *f)$/;" f file: +array_array_tolist Modules/clinic/arraymodule.c.h /^array_array_tolist(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array_tolist_impl Modules/arraymodule.c /^array_array_tolist_impl(arrayobject *self)$/;" f file: +array_array_tounicode Modules/clinic/arraymodule.c.h /^array_array_tounicode(arrayobject *self, PyObject *Py_UNUSED(ignored))$/;" f +array_array_tounicode_impl Modules/arraymodule.c /^array_array_tounicode_impl(arrayobject *self)$/;" f file: +array_arrayiterator___reduce__ Modules/clinic/arraymodule.c.h /^array_arrayiterator___reduce__(arrayiterobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +array_arrayiterator___reduce___impl Modules/arraymodule.c /^array_arrayiterator___reduce___impl(arrayiterobject *self, PyTypeObject *cls)$/;" f file: +array_arrayiterator___setstate__ Modules/arraymodule.c /^array_arrayiterator___setstate__(arrayiterobject *self, PyObject *state)$/;" f file: +array_ass_item Modules/arraymodule.c /^array_ass_item(arrayobject *a, Py_ssize_t i, PyObject *v)$/;" f file: +array_ass_subscr Modules/arraymodule.c /^array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value)$/;" f file: +array_buffer_getbuf Modules/arraymodule.c /^array_buffer_getbuf(arrayobject *self, Py_buffer *view, int flags)$/;" f file: +array_buffer_relbuf Modules/arraymodule.c /^array_buffer_relbuf(arrayobject *self, Py_buffer *view)$/;" f file: +array_clear Modules/arraymodule.c /^array_clear(PyObject *module)$/;" f file: +array_concat Modules/arraymodule.c /^array_concat(arrayobject *a, PyObject *bb)$/;" f file: +array_contains Modules/arraymodule.c /^array_contains(arrayobject *self, PyObject *v)$/;" f file: +array_dealloc Modules/arraymodule.c /^array_dealloc(arrayobject *op)$/;" f file: +array_del_slice Modules/arraymodule.c /^array_del_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh)$/;" f file: +array_do_extend Modules/arraymodule.c /^array_do_extend(array_state *state, arrayobject *self, PyObject *bb)$/;" f file: +array_free Modules/arraymodule.c /^array_free(void *module)$/;" f file: +array_get_itemsize Modules/arraymodule.c /^array_get_itemsize(arrayobject *a, void *closure)$/;" f file: +array_get_typecode Modules/arraymodule.c /^array_get_typecode(arrayobject *a, void *closure)$/;" f file: +array_getsets Modules/arraymodule.c /^static PyGetSetDef array_getsets [] = {$/;" v file: +array_inplace_concat Modules/arraymodule.c /^array_inplace_concat(arrayobject *self, PyObject *bb)$/;" f file: +array_inplace_repeat Modules/arraymodule.c /^array_inplace_repeat(arrayobject *self, Py_ssize_t n)$/;" f file: +array_item Modules/arraymodule.c /^array_item(arrayobject *a, Py_ssize_t i)$/;" f file: +array_iter Modules/arraymodule.c /^array_iter(arrayobject *ao)$/;" f file: +array_iter_extend Modules/arraymodule.c /^array_iter_extend(arrayobject *self, PyObject *bb)$/;" f file: +array_length Modules/arraymodule.c /^array_length(arrayobject *a)$/;" f file: +array_members Modules/arraymodule.c /^static struct PyMemberDef array_members[] = {$/;" v typeref:struct:PyMemberDef file: +array_methods Modules/arraymodule.c /^static PyMethodDef array_methods[] = {$/;" v file: +array_modexec Modules/arraymodule.c /^array_modexec(PyObject *m)$/;" f file: +array_new Modules/arraymodule.c /^array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +array_reconstructor Modules/arraymodule.c /^ PyObject *array_reconstructor;$/;" m struct:__anon649 file: +array_repeat Modules/arraymodule.c /^array_repeat(arrayobject *a, Py_ssize_t n)$/;" f file: +array_repr Modules/arraymodule.c /^array_repr(arrayobject *a)$/;" f file: +array_resize Modules/arraymodule.c /^array_resize(arrayobject *self, Py_ssize_t newsize)$/;" f file: +array_richcompare Modules/arraymodule.c /^array_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +array_slice Modules/arraymodule.c /^array_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh)$/;" f file: +array_slots Modules/arraymodule.c /^static PyType_Slot array_slots[] = {$/;" v file: +array_spec Modules/arraymodule.c /^static PyType_Spec array_spec = {$/;" v file: +array_state Modules/arraymodule.c /^} array_state;$/;" t typeref:struct:__anon649 file: +array_subscr Modules/arraymodule.c /^array_subscr(arrayobject* self, PyObject* item)$/;" f file: +array_tp_traverse Modules/arraymodule.c /^array_tp_traverse(arrayobject *op, visitproc visit, void *arg)$/;" f file: +array_traverse Modules/arraymodule.c /^array_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +arraycmp Modules/_testbuffer.c /^arraycmp(const Py_ssize_t *a1, const Py_ssize_t *a2, const Py_ssize_t *shape,$/;" f file: +arraydescr Modules/arraymodule.c /^struct arraydescr {$/;" s file: +arrayiter_dealloc Modules/arraymodule.c /^arrayiter_dealloc(arrayiterobject *it)$/;" f file: +arrayiter_methods Modules/arraymodule.c /^static PyMethodDef arrayiter_methods[] = {$/;" v file: +arrayiter_next Modules/arraymodule.c /^arrayiter_next(arrayiterobject *it)$/;" f file: +arrayiter_slots Modules/arraymodule.c /^static PyType_Slot arrayiter_slots[] = {$/;" v file: +arrayiter_spec Modules/arraymodule.c /^static PyType_Spec arrayiter_spec = {$/;" v file: +arrayiter_traverse Modules/arraymodule.c /^arrayiter_traverse(arrayiterobject *it, visitproc visit, void *arg)$/;" f file: +arrayiterobject Modules/arraymodule.c /^} arrayiterobject;$/;" t typeref:struct:__anon648 file: +arraymodule Modules/arraymodule.c /^static struct PyModuleDef arraymodule = {$/;" v typeref:struct:PyModuleDef file: +arraymodule Modules/arraymodule.c /^static struct PyModuleDef arraymodule;$/;" v typeref:struct:PyModuleDef file: +arrayobject Modules/arraymodule.c /^typedef struct arrayobject {$/;" s file: +arrayobject Modules/arraymodule.c /^} arrayobject;$/;" t typeref:struct:arrayobject file: +arraysize Modules/_sqlite/cursor.h /^ int arraysize;$/;" m struct:__anon358 +arrayslots Modules/arraymodule.c /^static PyModuleDef_Slot arrayslots[] = {$/;" v file: +article Lib/nntplib.py /^ def article(self, message_spec=None, *, file=None):$/;" m class:NNTP +artifical_rule_from_gather Tools/peg_generator/pegen/parser_generator.py /^ def artifical_rule_from_gather(self, node: Gather) -> str:$/;" m class:ParserGenerator +artifical_rule_from_rhs Tools/peg_generator/pegen/parser_generator.py /^ def artifical_rule_from_rhs(self, rhs: Rhs) -> str:$/;" m class:ParserGenerator +artificial_rule_from_repeat Tools/peg_generator/pegen/parser_generator.py /^ def artificial_rule_from_repeat(self, node: Plain, is_repeat1: bool) -> str:$/;" m class:ParserGenerator +asBignumObj Modules/_tkinter.c /^asBignumObj(PyObject *value)$/;" f file: +as_address Tools/gdb/libpython.py /^ def as_address(self):$/;" m class:PyFramePtr +as_address Tools/gdb/libpython.py /^ def as_address(self):$/;" m class:PyObjectPtr +as_async Include/cpython/object.h /^ PyAsyncMethods as_async;$/;" m struct:_heaptypeobject +as_buffer Include/cpython/object.h /^ PyBufferProcs as_buffer;$/;" m struct:_heaptypeobject +as_bytes Lib/email/message.py /^ def as_bytes(self, unixfrom=False, policy=None):$/;" m class:Message +as_completed Lib/asyncio/tasks.py /^def as_completed(fs, *, timeout=None):$/;" f +as_completed Lib/concurrent/futures/_base.py /^def as_completed(fs, timeout=None):$/;" f +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:AddrSpec +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:ContentDisposition +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:ContentTransferEncoding +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:ContentType +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:Domain +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:DomainLiteral +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:HeaderLabel +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:LocalPart +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:MsgID +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:NoFoldLiteral +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = False$/;" v class:ObsLocalPart +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = True$/;" v class:DotAtomText +as_ew_allowed Lib/email/_header_value_parser.py /^ as_ew_allowed = True$/;" v class:Terminal +as_ew_allowed Lib/email/_header_value_parser.py /^ def as_ew_allowed(self):$/;" m class:TokenList +as_file Lib/importlib/resources/_common.py /^def as_file(path):$/;" f +as_fn_append configure /^ as_fn_append ()$/;" f +as_fn_arith configure /^ as_fn_arith ()$/;" f +as_fn_error configure /^as_fn_error ()$/;" f +as_fn_executable_p configure /^as_fn_executable_p ()$/;" f +as_fn_exit configure /^as_fn_exit ()$/;" f +as_fn_failure configure /^as_fn_failure () { as_fn_return 1; }$/;" f +as_fn_mkdir_p configure /^as_fn_mkdir_p ()$/;" f +as_fn_nop configure /^as_fn_nop ()$/;" f +as_fn_ret_failure configure /^as_fn_ret_failure () { return 1; }$/;" f +as_fn_ret_success configure /^as_fn_ret_success () { return 0; }$/;" f +as_fn_set_status configure /^as_fn_set_status ()$/;" f +as_fn_success configure /^as_fn_success () { as_fn_return 0; }$/;" f +as_fn_unset configure /^as_fn_unset ()$/;" f +as_hours Lib/test/datetimetester.py /^ def as_hours(self):$/;" m class:TestTimeDelta.test_subclass_timedelta.T +as_integer_ratio Lib/_pydecimal.py /^ def as_integer_ratio(self):$/;" m class:Decimal +as_integer_ratio Lib/fractions.py /^ def as_integer_ratio(self):$/;" m class:Fraction +as_integer_ratio Lib/test/datetimetester.py /^ def as_integer_ratio(self):$/;" m class:TestTimeDelta.test_issue31293.get_bad_float.BadFloat +as_integer_ratio Lib/test/test_decimal.py /^ def as_integer_ratio(self):$/;" m class:CWhitebox.test_internal_use_of_overridden_methods.X +as_integer_ratio Lib/test/test_decimal.py /^ def as_integer_ratio(self):$/;" m class:CWhitebox.test_internal_use_of_overridden_methods.Z +as_lwp_str Lib/http/cookiejar.py /^ def as_lwp_str(self, ignore_discard=True, ignore_expires=True):$/;" m class:LWPCookieJar +as_mapping Include/cpython/object.h /^ PyMappingMethods as_mapping;$/;" m struct:_heaptypeobject +as_method_of Lib/test/inspect_fodder.py /^ def as_method_of(self, obj):$/;" m class:Callable +as_number Include/cpython/object.h /^ PyNumberMethods as_number;$/;" m struct:_heaptypeobject +as_pattern_rule Parser/parser.c /^as_pattern_rule(Parser *p)$/;" f file: +as_pattern_type Parser/parser.c 149;" d file: +as_posix Lib/pathlib.py /^ def as_posix(self):$/;" m class:PurePath +as_read_buffer Objects/abstract.c /^as_read_buffer(PyObject *obj, const void **buffer, Py_ssize_t *buffer_len)$/;" f file: +as_row Tools/c-analyzer/c_parser/info.py /^ def as_row(self, columns=None):$/;" m class:ParsedItem +as_rowdata Tools/c-analyzer/c_analyzer/info.py /^ def as_rowdata(self, columns=None):$/;" m class:Analyzed +as_rowdata Tools/c-analyzer/c_parser/info.py /^ def as_rowdata(self, columns=None):$/;" m class:HighlevelParsedItem +as_sequence Include/cpython/object.h /^ PySequenceMethods as_sequence; \/* as_sequence comes after as_mapping,$/;" m struct:_heaptypeobject +as_string Lib/email/message.py /^ def as_string(self, unixfrom=False, maxheaderlen=0, policy=None):$/;" m class:Message +as_string Lib/email/message.py /^ def as_string(self, unixfrom=False, maxheaderlen=None, policy=None):$/;" m class:MIMEPart +as_tuple Lib/_pydecimal.py /^ def as_tuple(self):$/;" m class:Decimal +as_tuple Lib/logging/config.py /^ def as_tuple(self, value):$/;" m class:BaseConfigurator +as_ucs4 Objects/unicodeobject.c /^as_ucs4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize,$/;" f file: +as_uri Lib/pathlib.py /^ def as_uri(self):$/;" m class:PurePath +ascii Include/cpython/unicodeobject.h /^ unsigned int ascii:1;$/;" m struct:__anon231::__anon232 +ascii Include/internal/pycore_global_strings.h /^ } ascii[128];$/;" m struct:_Py_global_strings typeref:struct:_Py_global_strings::__anon7 +ascii Lib/curses/ascii.py /^def ascii(c):$/;" f +ascii_buffer_converter Modules/binascii.c /^ascii_buffer_converter(PyObject *arg, Py_buffer *buf)$/;" f file: +ascii_char_size Lib/test/test_bigmem.py /^ascii_char_size = 1$/;" v +ascii_decode Objects/unicodeobject.c /^ascii_decode(const char *start, const char *end, Py_UCS1 *dest)$/;" f file: +ascii_encode Modules/_io/textio.c /^ascii_encode(textio *self, PyObject *text)$/;" f file: +ascii_encoding Modules/expat/xmltok.c /^static const struct normal_encoding ascii_encoding$/;" v typeref:struct:normal_encoding file: +ascii_encoding_ns Modules/expat/xmltok.c /^static const struct normal_encoding ascii_encoding_ns$/;" v typeref:struct:normal_encoding file: +ascii_escape_unichar Modules/_json.c /^ascii_escape_unichar(Py_UCS4 c, unsigned char *output, Py_ssize_t chars)$/;" f file: +ascii_escape_unicode Modules/_json.c /^ascii_escape_unicode(PyObject *pystr)$/;" f file: +ascii_letters Lib/string.py /^ascii_letters = ascii_lowercase + ascii_uppercase$/;" v +ascii_linebreak Objects/unicodeobject.c /^static const unsigned char ascii_linebreak[] = {$/;" v file: +ascii_lowercase Lib/string.py /^ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'$/;" v +ascii_only_prefix Python/importdl.c /^static const char * const ascii_only_prefix = "PyInit";$/;" v file: +ascii_toUtf8 Modules/expat/xmltok.c /^ascii_toUtf8(const ENCODING *enc, const char **fromP, const char *fromLim,$/;" f file: +ascii_upper_or_lower Objects/unicodeobject.c /^ascii_upper_or_lower(PyObject *self, int lower)$/;" f file: +ascii_uppercase Lib/string.py /^ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'$/;" v +asctime_format Lib/logging/__init__.py /^ asctime_format = '${asctime}'$/;" v class:StringTemplateStyle +asctime_format Lib/logging/__init__.py /^ asctime_format = '%(asctime)s'$/;" v class:PercentStyle +asctime_format Lib/logging/__init__.py /^ asctime_format = '{asctime}'$/;" v class:StrFormatStyle +asctime_search Lib/logging/__init__.py /^ asctime_search = '${asctime}'$/;" v class:StringTemplateStyle +asctime_search Lib/logging/__init__.py /^ asctime_search = '%(asctime)'$/;" v class:PercentStyle +asctime_search Lib/logging/__init__.py /^ asctime_search = '{asctime'$/;" v class:StrFormatStyle +asdict Lib/dataclasses.py /^def asdict(obj, *, dict_factory=dict):$/;" f +asdl_alias_seq Include/internal/pycore_ast.h /^} asdl_alias_seq;$/;" t typeref:struct:__anon40 +asdl_arg_seq Include/internal/pycore_ast.h /^} asdl_arg_seq;$/;" t typeref:struct:__anon38 +asdl_arguments_seq Include/internal/pycore_ast.h /^} asdl_arguments_seq;$/;" t typeref:struct:__anon37 +asdl_comprehension_seq Include/internal/pycore_ast.h /^} asdl_comprehension_seq;$/;" t typeref:struct:__anon35 +asdl_excepthandler_seq Include/internal/pycore_ast.h /^} asdl_excepthandler_seq;$/;" t typeref:struct:__anon36 +asdl_expr_seq Include/internal/pycore_ast.h /^} asdl_expr_seq;$/;" t typeref:struct:__anon34 +asdl_generic_seq Include/internal/pycore_asdl.h /^} asdl_generic_seq;$/;" t typeref:struct:__anon133 +asdl_identifier_seq Include/internal/pycore_asdl.h /^} asdl_identifier_seq;$/;" t typeref:struct:__anon134 +asdl_int_seq Include/internal/pycore_asdl.h /^} asdl_int_seq;$/;" t typeref:struct:__anon135 +asdl_keyword_seq Include/internal/pycore_ast.h /^} asdl_keyword_seq;$/;" t typeref:struct:__anon39 +asdl_match_case_seq Include/internal/pycore_ast.h /^} asdl_match_case_seq;$/;" t typeref:struct:__anon42 +asdl_mod_seq Include/internal/pycore_ast.h /^} asdl_mod_seq;$/;" t typeref:struct:__anon32 +asdl_of Parser/asdl_c.py /^def asdl_of(name, obj):$/;" f +asdl_pattern_seq Include/internal/pycore_ast.h /^} asdl_pattern_seq;$/;" t typeref:struct:__anon43 +asdl_seq Include/internal/pycore_asdl.h /^} asdl_seq;$/;" t typeref:struct:__anon132 +asdl_seq_GET Include/internal/pycore_asdl.h 82;" d +asdl_seq_GET_UNTYPED Include/internal/pycore_asdl.h 81;" d +asdl_seq_LEN Include/internal/pycore_asdl.h 83;" d +asdl_seq_SET Include/internal/pycore_asdl.h 86;" d +asdl_seq_SET Include/internal/pycore_asdl.h 94;" d +asdl_seq_SET_UNTYPED Include/internal/pycore_asdl.h 106;" d +asdl_seq_SET_UNTYPED Include/internal/pycore_asdl.h 98;" d +asdl_stmt_seq Include/internal/pycore_ast.h /^} asdl_stmt_seq;$/;" t typeref:struct:__anon33 +asdl_type_ignore_seq Include/internal/pycore_ast.h /^} asdl_type_ignore_seq;$/;" t typeref:struct:__anon44 +asdl_type_param_seq Include/internal/pycore_ast.h /^} asdl_type_param_seq;$/;" t typeref:struct:__anon45 +asdl_withitem_seq Include/internal/pycore_ast.h /^} asdl_withitem_seq;$/;" t typeref:struct:__anon41 +asend Lib/_collections_abc.py /^ async def asend(self, value):$/;" m class:AsyncGenerator +asend Lib/test/test_collections.py /^ async def asend(self, value): return value$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.FailOnClose +asend Lib/test/test_collections.py /^ async def asend(self, value): return value$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.Gen +asend Lib/test/test_collections.py /^ async def asend(self, value): return value$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.IgnoreGeneratorExit +asend Lib/test/test_collections.py /^ async def asend(self, value):$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.MinimalAGen +asend Lib/test/test_collections.py /^ def asend(self, value): return value$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen2 +asend Lib/test/test_collections.py /^ def asend(self, value): return value$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen3 +asend Lib/test/test_typing.py /^ def asend(self, value):$/;" m class:CollectionsAbcTests.test_subclassing_async_generator.G +asend_freelist Include/internal/pycore_genobject.h /^ struct PyAsyncGenASend* asend_freelist[_PyAsyncGen_MAXFREELIST];$/;" m struct:_Py_async_gen_state typeref:struct:_Py_async_gen_state::PyAsyncGenASend +asend_numfree Include/internal/pycore_genobject.h /^ int asend_numfree;$/;" m struct:_Py_async_gen_state +asinh_special_values Modules/cmathmodule.c /^static Py_complex asinh_special_values[7][7];$/;" v file: +ask_save_dialog Lib/idlelib/runscript.py /^ def ask_save_dialog(self):$/;" m class:ScriptBinding +askcolor Lib/tkinter/colorchooser.py /^def askcolor(color=None, **options):$/;" f +askdirectory Lib/tkinter/filedialog.py /^def askdirectory (**options):$/;" f +askfilename Lib/idlelib/query.py /^ def askfilename(self, filetypes, initdir, initfile): # htest #$/;" m class:HelpSource +askfloat Lib/tkinter/simpledialog.py /^def askfloat(title, prompt, **kw):$/;" f +askinteger Lib/tkinter/simpledialog.py /^def askinteger(title, prompt, **kw):$/;" f +askokcancel Lib/idlelib/idle_test/mock_tk.py /^ askokcancel = Mbox_func() # True or False$/;" v class:Mbox +askokcancel Lib/tkinter/messagebox.py /^def askokcancel(title=None, message=None, **options):$/;" f +askopenfile Lib/idlelib/iomenu.py /^ def askopenfile(self):$/;" m class:IOBinding +askopenfile Lib/tkinter/filedialog.py /^def askopenfile(mode = "r", **options):$/;" f +askopenfilename Lib/tkinter/filedialog.py /^def askopenfilename(**options):$/;" f +askopenfilenames Lib/tkinter/filedialog.py /^def askopenfilenames(**options):$/;" f +askopenfiles Lib/tkinter/filedialog.py /^def askopenfiles(mode = "r", **options):$/;" f +askquestion Lib/idlelib/idle_test/mock_tk.py /^ askquestion = Mbox_func() # 'yes' or 'no'$/;" v class:Mbox +askquestion Lib/tkinter/messagebox.py /^def askquestion(title=None, message=None, **options):$/;" f +askretrycancel Lib/idlelib/idle_test/mock_tk.py /^ askretrycancel = Mbox_func() # True or False$/;" v class:Mbox +askretrycancel Lib/tkinter/messagebox.py /^def askretrycancel(title=None, message=None, **options):$/;" f +asksaveasfile Lib/tkinter/filedialog.py /^def asksaveasfile(mode = "w", **options):$/;" f +asksaveasfilename Lib/tkinter/filedialog.py /^def asksaveasfilename(**options):$/;" f +asksavefile Lib/idlelib/iomenu.py /^ def asksavefile(self):$/;" m class:IOBinding +askstring Lib/tkinter/simpledialog.py /^def askstring(title, prompt, **kw):$/;" f +askyesno Lib/idlelib/configdialog.py /^ def askyesno(self, *args, **kwargs):$/;" m class:HighPage +askyesno Lib/idlelib/configdialog.py /^ def askyesno(self, *args, **kwargs):$/;" m class:KeysPage +askyesno Lib/idlelib/idle_test/mock_tk.py /^ askyesno = Mbox_func() # True or False$/;" v class:Mbox +askyesno Lib/tkinter/messagebox.py /^def askyesno(title=None, message=None, **options):$/;" f +askyesnocancel Lib/idlelib/idle_test/mock_tk.py /^ askyesnocancel = Mbox_func() # True, False, or None$/;" v class:Mbox +askyesnocancel Lib/tkinter/messagebox.py /^def askyesnocancel(title=None, message=None, **options):$/;" f +asn1_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class asn1_ctx_st(Structure):$/;" c +asn1_header_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class asn1_header_st(Structure):$/;" c +asn1_method_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class asn1_method_st(Structure):$/;" c +asn1_object_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class asn1_object_st(Structure):$/;" c +asn1_string_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class asn1_string_st(Structure):$/;" c +asn1_string_table_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class asn1_string_table_st(Structure):$/;" c +asn1_type_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class asn1_type_st(Structure):$/;" c +asn1obj2py Modules/_ssl.c /^asn1obj2py(_sslmodulestate *state, ASN1_OBJECT *obj)$/;" f file: +asname Include/internal/pycore_ast.h /^ identifier asname;$/;" m struct:_alias +asname Include/internal/pycore_ast_state.h /^ PyObject *asname;$/;" m struct:ast_state +asparagus_cid Doc/includes/email-alternative.py /^asparagus_cid = make_msgid()$/;" v +aspect Lib/tkinter/__init__.py /^ aspect = wm_aspect$/;" v class:Wm +ass_subscript_index Modules/_sqlite/blob.c /^ass_subscript_index(pysqlite_Blob *self, PyObject *item, PyObject *value)$/;" f file: +ass_subscript_slice Modules/_sqlite/blob.c /^ass_subscript_slice(pysqlite_Blob *self, PyObject *item, PyObject *value)$/;" f file: +assemble_emit Python/assemble.c /^assemble_emit(struct assembler *a, instr_sequence *instrs,$/;" f file: +assemble_emit_exception_table_entry Python/assemble.c /^assemble_emit_exception_table_entry(struct assembler *a, int start, int end,$/;" f file: +assemble_emit_exception_table_item Python/assemble.c /^assemble_emit_exception_table_item(struct assembler *a, int value, int msb)$/;" f file: +assemble_emit_instr Python/assemble.c /^assemble_emit_instr(struct assembler *a, instruction *instr)$/;" f file: +assemble_emit_location Python/assemble.c /^assemble_emit_location(struct assembler* a, location loc, int isize)$/;" f file: +assemble_exception_table Python/assemble.c /^assemble_exception_table(struct assembler *a, instr_sequence *instrs)$/;" f file: +assemble_free Python/assemble.c /^assemble_free(struct assembler *a)$/;" f file: +assemble_init Python/assemble.c /^assemble_init(struct assembler *a, int firstlineno)$/;" f file: +assemble_location_info Python/assemble.c /^assemble_location_info(struct assembler *a, instr_sequence *instrs,$/;" f file: +assemble_test Lib/test/test_compiler_assemble.py /^ def assemble_test(self, insts, metadata, expected):$/;" m class:IsolatedAssembleTests +assembler Python/assemble.c /^struct assembler {$/;" s file: +assert Misc/coverity_model.c 22;" d file: +assert0 Objects/codeobject.c /^static const uint8_t assert0[6] = {$/;" v file: +assertASTEqual Lib/test/support/ast_helper.py /^ def assertASTEqual(self, ast1, ast2):$/;" m class:ASTTestMixin +assertASTTransformation Lib/test/test_ast.py /^ def assertASTTransformation(self, tranformer_class,$/;" m class:NodeTransformerTests +assertAddressError Lib/test/test_ipaddress.py /^ def assertAddressError(self, details, *args):$/;" m class:BaseTestCase +assertAfterWithGeneratorInvariantsNoError Lib/test/test_with.py /^ def assertAfterWithGeneratorInvariantsNoError(self, mock_generator):$/;" m class:ContextmanagerAssertionMixin +assertAfterWithGeneratorInvariantsWithError Lib/test/test_with.py /^ def assertAfterWithGeneratorInvariantsWithError(self, mock_generator):$/;" m class:ContextmanagerAssertionMixin +assertAfterWithManagerInvariants Lib/test/test_with.py /^ def assertAfterWithManagerInvariants(self, mock_manager, exit_args):$/;" m class:ContextmanagerAssertionMixin +assertAfterWithManagerInvariantsNoError Lib/test/test_with.py /^ def assertAfterWithManagerInvariantsNoError(self, mock_manager):$/;" m class:ContextmanagerAssertionMixin +assertAfterWithManagerInvariantsWithError Lib/test/test_with.py /^ def assertAfterWithManagerInvariantsWithError(self, mock_manager,$/;" m class:ContextmanagerAssertionMixin +assertAllClose Lib/test/test_math.py /^ def assertAllClose(self, examples, *args, **kwargs):$/;" m class:IsCloseTests +assertAllNotClose Lib/test/test_math.py /^ def assertAllNotClose(self, examples, *args, **kwargs):$/;" m class:IsCloseTests +assertAllRaise Lib/test/test_fstring.py /^ def assertAllRaise(self, exception_type, regex, error_strings):$/;" m class:TestCase +assertAlmostEqual Lib/test/test_complex.py /^ def assertAlmostEqual(self, a, b):$/;" m class:ComplexTest +assertAlmostEqual Lib/unittest/case.py /^ def assertAlmostEqual(self, first, second, places=None, msg=None,$/;" m class:TestCase +assertAlmostEquals Lib/lib2to3/fixes/fix_asserts.py /^ assertAlmostEquals="assertAlmostEqual",$/;" v +assertAnnotationEqual Lib/test/test_future.py /^ def assertAnnotationEqual($/;" m class:AnnotationsFutureTestCase +assertApprox Lib/test/test_tkinter/test_misc.py /^ def assertApprox(col1, col2):$/;" f function:MiscTest.test_winfo_rgb +assertApproxEqual Lib/test/test_statistics.py /^ def assertApproxEqual($/;" m class:NumericTestCase +assertArgumentParserError Lib/test/test_argparse.py /^ def assertArgumentParserError(self, *args, **kwargs):$/;" m class:TestAddSubparsers +assertArgumentParserError Lib/test/test_argparse.py /^ def assertArgumentParserError(self, *args, **kwargs):$/;" m class:TestParentParsers +assertArgumentParserError Lib/test/test_argparse.py /^ def assertArgumentParserError(self, parser, *args):$/;" m class:TestOptionalsHelpVersionActions +assertBadAddress Lib/test/test_ipaddress.py /^ def assertBadAddress(addr, details):$/;" f function:NetmaskTestMixin_v4.test_address_errors +assertBadAddress Lib/test/test_ipaddress.py /^ def assertBadAddress(addr, details):$/;" f function:NetmaskTestMixin_v6.test_address_errors +assertBadAddressPart Lib/test/test_ipaddress.py /^ def assertBadAddressPart(addr, v4_error):$/;" f function:AddressTestCase_v6.test_bad_v4_part_in +assertBadLength Lib/test/test_ipaddress.py /^ def assertBadLength(length):$/;" f function:CommonTestMixin_v4.test_bad_packed_length +assertBadLength Lib/test/test_ipaddress.py /^ def assertBadLength(length):$/;" f function:CommonTestMixin_v6.test_bad_packed_length +assertBadNetmask Lib/test/test_ipaddress.py /^ def assertBadNetmask(addr, netmask):$/;" f function:NetmaskTestMixin_v4.test_netmask_errors +assertBadNetmask Lib/test/test_ipaddress.py /^ def assertBadNetmask(addr, netmask):$/;" f function:NetmaskTestMixin_v4.test_netmask_in_tuple_errors +assertBadNetmask Lib/test/test_ipaddress.py /^ def assertBadNetmask(addr, netmask):$/;" f function:NetmaskTestMixin_v6.test_netmask_errors +assertBadNetmask Lib/test/test_ipaddress.py /^ def assertBadNetmask(addr, netmask):$/;" f function:NetmaskTestMixin_v6.test_netmask_in_tuple_errors +assertBadOctet Lib/test/test_ipaddress.py /^ def assertBadOctet(addr):$/;" f function:AddressTestCase_v4.test_empty_octet +assertBadOctet Lib/test/test_ipaddress.py /^ def assertBadOctet(addr, octet):$/;" f function:AddressTestCase_v4.test_invalid_characters +assertBadOctet Lib/test/test_ipaddress.py /^ def assertBadOctet(addr, octet):$/;" f function:AddressTestCase_v4.test_octet_length +assertBadOctet Lib/test/test_ipaddress.py /^ def assertBadOctet(addr, octet):$/;" f function:AddressTestCase_v4.test_octet_limit +assertBadPart Lib/test/test_ipaddress.py /^ def assertBadPart(addr, part):$/;" f function:AddressTestCase_v6.test_invalid_characters +assertBadPart Lib/test/test_ipaddress.py /^ def assertBadPart(addr, part):$/;" f function:AddressTestCase_v6.test_part_length +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v4.test_bad_address_split +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_bad_address_split_v6_leading_colon +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_bad_address_split_v6_not_enough_parts +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_bad_address_split_v6_repeated_double_colon +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_bad_address_split_v6_too_many_colons +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_bad_address_split_v6_too_many_parts +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_bad_address_split_v6_too_many_parts_with_double_colon +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_bad_address_split_v6_trailing_colon +assertBadSplit Lib/test/test_ipaddress.py /^ def assertBadSplit(addr):$/;" f function:AddressTestCase_v6.test_network_passed_as_address +assertBytesEqual Lib/test/test_email/__init__.py /^ def assertBytesEqual(self, first, second, msg):$/;" m class:TestEmailBase +assertCEqual Lib/test/test_cmath.py /^ def assertCEqual(self, a, b):$/;" m class:CMathTests +assertCallStack Lib/test/test_class.py /^ def assertCallStack(self, expected_calls):$/;" m class:ClassTests +assertCleanError Lib/test/test_ipaddress.py /^ def assertCleanError(self, exc_type, details, *args):$/;" m class:BaseTestCase +assertClose Lib/test/test_complex.py /^ def assertClose(self, x, y, eps=1e-9):$/;" m class:ComplexTest +assertCloseAbs Lib/test/test_complex.py /^ def assertCloseAbs(self, x, y, eps=1e-9):$/;" m class:ComplexTest +assertCoerceRaises Lib/test/test_statistics.py /^ def assertCoerceRaises(self, A, B):$/;" m class:CoerceTest +assertCoerceTo Lib/test/test_statistics.py /^ def assertCoerceTo(self, A, B):$/;" m class:CoerceTest +assertCompiled Lib/test/test_compileall.py /^ def assertCompiled(self, fn):$/;" m class:CommandLineTestsBase +assertCompiledIn Lib/test/test_zipfile/test_core.py /^ def assertCompiledIn(self, name, namelist):$/;" m class:PyZipFileTests +assertComplexIdentical Lib/test/test_cmath.py /^ def assertComplexIdentical(self, x, y):$/;" m class:CMathTests +assertContainsAdditionalHeaders Lib/test/test_xmlrpc.py /^ def assertContainsAdditionalHeaders(self, headers, additional):$/;" m class:HeadersServerTestCase +assertCorrectUTF8Decoding Lib/test/test_unicode.py /^ def assertCorrectUTF8Decoding(self, seq, res, err):$/;" m class:UnicodeTest +assertCountEqual Lib/unittest/case.py /^ def assertCountEqual(self, first, second, msg=None):$/;" m class:TestCase +assertDefectsEqual Lib/test/test_email/__init__.py /^ def assertDefectsEqual(self, actual, expected):$/;" m class:TestEmailBase +assertDictEqual Lib/unittest/case.py /^ def assertDictEqual(self, d1, d2, msg=None):$/;" m class:TestCase +assertDiff Lib/test/test_difflib.py /^ def assertDiff(expect, actual):$/;" f function:TestBytes.test_byte_filenames +assertDiscontinuousPadding Lib/test/test_binascii.py /^ def assertDiscontinuousPadding(data, non_strict_mode_expected_result: bytes):$/;" f function:BinASCIITest.test_base64_strict_mode +assertDocStrEqual Lib/test/test_dataclasses.py /^ def assertDocStrEqual(self, a, b):$/;" m class:TestDocString +assertEndsWith Lib/test/test_gdb.py /^ def assertEndsWith(self, actual, exp_end):$/;" m class:DebuggerTests +assertEndsWith Lib/test/test_typing.py /^ def assertEndsWith(self, string, tail):$/;" m class:TypeVarTupleTests +assertEntryEqual Lib/test/test_array.py /^ def assertEntryEqual(self, entry1, entry2):$/;" m class:BaseTest +assertEntryEqual Lib/test/test_array.py /^ def assertEntryEqual(self, entry1, entry2):$/;" m class:FPTest +assertEqual Lib/test/audit-tests.py /^def assertEqual(x, y):$/;" f +assertEqual Lib/test/test_patma.py /^ def assertEqual(*_, **__):$/;" m class:TestTracing.PerfPatma +assertEqual Lib/unittest/case.py /^ def assertEqual(self, first, second, msg=None):$/;" m class:TestCase +assertEqual2 Lib/test/test_tkinter/widget_tests.py /^ def assertEqual2(self, actual, expected, msg=None, eq=object.__eq__):$/;" m class:AbstractWidgetTest +assertEqualAndEqualSign Lib/test/test_float.py /^ def assertEqualAndEqualSign(self, a, b):$/;" m class:GeneralFloatCases +assertEqualCI Lib/test/test_ntpath.py /^ def assertEqualCI(self, s1, s2):$/;" m class:TestNtpath +assertEqualCallArgs Lib/test/test_inspect.py /^ def assertEqualCallArgs(self, func, call_params_string, locs=None):$/;" m class:TestGetcallargsFunctions +assertEqualCallArgs Lib/test/test_inspect.py /^ def assertEqualCallArgs(self, func, call_params_string, locs=None):$/;" m class:TestGetcallargsUnboundMethods +assertEqualElements Lib/test/test_xml_etree.py /^ def assertEqualElements(self, alice, bob):$/;" m class:ElementTestCase +assertEqualExcept Lib/test/test_traceback.py /^ def assertEqualExcept(actual, expected, ignore):$/;" f function:LimitTests.test_extract_stack +assertEqualException Lib/test/test_inspect.py /^ def assertEqualException(self, func, call_param_string, locs=None):$/;" m class:TestGetcallargsFunctions +assertEqualException Lib/test/test_inspect.py /^ def assertEqualException(self, func, call_params_string, locs=None):$/;" m class:TestGetcallargsUnboundMethods +assertEqualNormCase Lib/test/test_pathlib.py /^ def assertEqualNormCase(self, path_a, path_b):$/;" m class:_BasePathTest +assertEqualSign Lib/test/test_math.py /^ def assertEqualSign(self, x, y):$/;" m class:MathTests +assertEqualStrList Lib/test/test_tkinter/test_images.py /^ def assertEqualStrList(self, actual, expected):$/;" m class:BitmapImageTest +assertEqualWithSign Lib/test/test_capi/test_getargs.py /^ def assertEqualWithSign(self, actual, expected):$/;" m class:Float_TestCase +assertEquals Lib/lib2to3/fixes/fix_asserts.py /^ assertEquals="assertEqual",$/;" v +assertEqualsOrIgnored Lib/test/test_pyclbr.py /^ def assertEqualsOrIgnored(self, a, b, ignore):$/;" m class:PyclbrTest +assertEquivDatetimes Lib/test/datetimetester.py /^ def assertEquivDatetimes(self, a, b):$/;" m class:ZoneInfoTest +assertError Lib/test/test_getopt.py /^ def assertError(self, *args, **kwargs):$/;" m class:GetoptTests +assertExactlyOneInvocation Lib/test/test_fileinput.py /^ def assertExactlyOneInvocation(self, mock_file_input, method_name):$/;" m class:BaseFileInputGlobalMethodsTest +assertExceptionIsLike Lib/test/support/testcase.py /^ def assertExceptionIsLike(self, exc, template):$/;" m class:ExceptionIsLikeMixin +assertExcessData Lib/test/test_binascii.py /^ def assertExcessData(data, non_strict_mode_expected_result: bytes):$/;" f function:BinASCIITest.test_base64_strict_mode +assertFactoryError Lib/test/test_ipaddress.py /^ def assertFactoryError(self, factory, kind):$/;" m class:FactoryFunctionErrors +assertFailure Lib/test/test_calendar.py /^ def assertFailure(self, *args):$/;" m class:CommandLineTestCase +assertFalse Lib/unittest/case.py /^ def assertFalse(self, expr, msg=None):$/;" m class:TestCase +assertFileNotFound Lib/test/test_pathlib.py /^ def assertFileNotFound(self, func, *args, **kwargs):$/;" m class:_BasePathTest +assertFloatIdentical Lib/test/test_cmath.py /^ def assertFloatIdentical(self, x, y):$/;" m class:CMathTests +assertFloatsAreIdentical Lib/test/test_complex.py /^ def assertFloatsAreIdentical(self, x, y):$/;" m class:ComplexTest +assertFormatIsStr Lib/test/test_enum.py /^ def assertFormatIsStr(self, spec, member):$/;" m class:_EnumTests +assertFormatIsValue Lib/test/test_enum.py /^ def assertFormatIsValue(self, spec, member):$/;" m class:_EnumTests +assertFullArgSpecEquals Lib/test/test_inspect.py /^ def assertFullArgSpecEquals(self, routine, args_e, varargs_e=None,$/;" m class:TestClassesAndFunctions +assertGdbRepr Lib/test/test_gdb.py /^ def assertGdbRepr(self, val, exp_repr=None):$/;" m class:PrettyPrintTests +assertGreater Lib/unittest/case.py /^ def assertGreater(self, a, b, msg=None):$/;" m class:TestCase +assertGreaterEqual Lib/unittest/case.py /^ def assertGreaterEqual(self, a, b, msg=None):$/;" m class:TestCase +assertHasAttr Lib/test/test_descr.py /^ def assertHasAttr(self, obj, name):$/;" m class:ClassPropertiesAndMethods +assertHasattr Lib/test/test_pyclbr.py /^ def assertHasattr(self, obj, attr, ignore):$/;" m class:PyclbrTest +assertHaskey Lib/test/test_pyclbr.py /^ def assertHaskey(self, obj, key, ignore):$/;" m class:PyclbrTest +assertHelp Lib/test/test_optparse.py /^ def assertHelp(self, parser, expected_help):$/;" m class:BaseTest +assertHelpEquals Lib/test/test_optparse.py /^ def assertHelpEquals(self, expected_output):$/;" m class:TestHelp +assertIn Lib/test/audit-tests.py /^def assertIn(el, series):$/;" f +assertIn Lib/unittest/case.py /^ def assertIn(self, member, container, msg=None):$/;" m class:TestCase +assertInBytecode Lib/test/support/bytecode_helper.py /^ def assertInBytecode(self, x, opname, argval=_UNSPECIFIED):$/;" m class:BytecodeTestCase +assertInWithGeneratorInvariants Lib/test/test_with.py /^ def assertInWithGeneratorInvariants(self, mock_generator):$/;" m class:ContextmanagerAssertionMixin +assertInWithManagerInvariants Lib/test/test_with.py /^ def assertInWithManagerInvariants(self, mock_manager):$/;" m class:ContextmanagerAssertionMixin +assertIncomplete Lib/test/test_codeop.py /^ def assertIncomplete(self, str, symbol='single'):$/;" m class:CodeopTests +assertIncorrectPadding Lib/test/test_binascii.py /^ def assertIncorrectPadding(data):$/;" f function:BinASCIITest.test_base64errors +assertInspectEqual Lib/test/test_inspect.py /^ def assertInspectEqual(self, path, source):$/;" m class:TestReload +assertInstancesEqual Lib/test/test_ipaddress.py /^ def assertInstancesEqual(self, lhs, rhs):$/;" m class:BaseTestCase +assertInstructionsEqual Lib/test/test_dis.py /^ def assertInstructionsEqual(self, instrs_1, instrs_2, \/):$/;" m class:InstructionTestCase +assertInstructionsMatch Lib/test/support/bytecode_helper.py /^ def assertInstructionsMatch(self, actual_, expected_):$/;" m class:CompilationStepTestCase +assertInvalid Lib/test/test_codeop.py /^ def assertInvalid(self, str, symbol='single', is_syntax=1):$/;" m class:CodeopTests +assertInvalidLength Lib/test/test_binascii.py /^ def assertInvalidLength(data):$/;" f function:BinASCIITest.test_base64errors +assertInvalidSingle Lib/test/test_compile.py /^ def assertInvalidSingle(self, source):$/;" m class:TestSpecifics +assertIs Lib/test/test_patma.py /^ def assertIs(*_, **__):$/;" m class:TestTracing.PerfPatma +assertIs Lib/unittest/case.py /^ def assertIs(self, expr1, expr2, msg=None):$/;" m class:TestCase +assertIsBoundingBox Lib/test/test_tkinter/widget_tests.py /^ def assertIsBoundingBox(self, bbox):$/;" m class:AbstractWidgetTest +assertIsClose Lib/test/test_math.py /^ def assertIsClose(self, a, b, *args, **kwargs):$/;" m class:IsCloseTests +assertIsExclusivelySet Lib/test/test_decimal.py /^ def assertIsExclusivelySet(signal, signal_dict):$/;" f function:CWhitebox.test_c_signal_dict +assertIsInstance Lib/unittest/case.py /^ def assertIsInstance(self, obj, cls, msg=None):$/;" m class:TestCase +assertIsInterned Lib/test/test_code.py /^ def assertIsInterned(self, s):$/;" m class:CodeConstsTest +assertIsNaN Lib/test/test_math.py /^ def assertIsNaN(self, value):$/;" m class:MathTests +assertIsNone Lib/unittest/case.py /^ def assertIsNone(self, obj, msg=None):$/;" m class:TestCase +assertIsNot Lib/unittest/case.py /^ def assertIsNot(self, expr1, expr2, msg=None):$/;" m class:TestCase +assertIsNotClose Lib/test/test_math.py /^ def assertIsNotClose(self, a, b, *args, **kwargs):$/;" m class:IsCloseTests +assertIsNotInterned Lib/test/test_code.py /^ def assertIsNotInterned(self, s):$/;" m class:CodeConstsTest +assertIsNotNone Lib/unittest/case.py /^ def assertIsNotNone(self, obj, msg=None):$/;" m class:TestCase +assertIsSigned Lib/test/test_ctypes/test_wintypes.py /^ def assertIsSigned(self, ctype):$/;" m class:WinTypesTest +assertIsSubclass Lib/test/test_typing.py /^ def assertIsSubclass(self, cls, class_or_tuple, msg=None):$/;" m class:BaseTestCase +assertIsUnsigned Lib/test/test_ctypes/test_wintypes.py /^ def assertIsUnsigned(self, ctype):$/;" m class:WinTypesTest +assertLeadingPadding Lib/test/test_binascii.py /^ def assertLeadingPadding(data, non_strict_mode_expected_result: bytes):$/;" f function:BinASCIITest.test_base64_strict_mode +assertLess Lib/test/test_pathlib.py /^ def assertLess(a, b):$/;" f function:_BasePurePathTest.test_ordering_common +assertLess Lib/unittest/case.py /^ def assertLess(self, a, b, msg=None):$/;" m class:TestCase +assertLessEqual Lib/unittest/case.py /^ def assertLessEqual(self, a, b, msg=None):$/;" m class:TestCase +assertListEq Lib/test/test_pyclbr.py /^ def assertListEq(self, l1, l2, ignore):$/;" m class:PyclbrTest +assertListEqual Lib/unittest/case.py /^ def assertListEqual(self, list1, list2, msg=None):$/;" m class:TestCase +assertListing Lib/test/test_gdb.py /^ def assertListing(self, expected, actual):$/;" m class:PyListTests +assertLogFile Lib/test/test_logging.py /^ def assertLogFile(self, filename):$/;" m class:BaseFileTest +assertLogRecords Lib/test/test_unittest/test_case.py /^ def assertLogRecords(self, records, matches):$/;" f +assertLogs Lib/unittest/case.py /^ def assertLogs(self, logger=None, level=None):$/;" m class:TestCase +assertMailboxEmpty Lib/test/test_mailbox.py /^ def assertMailboxEmpty(self):$/;" m class:TestBabyl +assertMailboxEmpty Lib/test/test_mailbox.py /^ def assertMailboxEmpty(self):$/;" m class:TestMH +assertMailboxEmpty Lib/test/test_mailbox.py /^ def assertMailboxEmpty(self):$/;" m class:TestMaildir +assertMailboxEmpty Lib/test/test_mailbox.py /^ def assertMailboxEmpty(self):$/;" m class:_TestMboxMMDF +assertMatch Lib/test/test_re.py /^ def assertMatch(self, pattern, text, match=None, span=None,$/;" m class:ReTests +assertMatchesIni Lib/test/test_configparser.py /^ def assertMatchesIni(self, cf):$/;" m class:ConfigParserTestCaseNoInterpolation +assertMatchesTemplate Lib/test/test_exception_group.py /^ def assertMatchesTemplate(self, exc, exc_type, template):$/;" m class:ExceptionGroupTestBase +assertMessages Lib/test/test_unittest/test_assertions.py /^ def assertMessages(self, methodName, args, errors):$/;" m class:TestLongMessage +assertMessagesCM Lib/test/test_unittest/test_assertions.py /^ def assertMessagesCM(self, methodName, args, func, errors):$/;" m class:TestLongMessage +assertMetadataEqual Lib/test/test_except_star.py /^ def assertMetadataEqual(self, e1, e2):$/;" m class:ExceptStarTest +assertMetadataNotEqual Lib/test/test_except_star.py /^ def assertMetadataNotEqual(self, e1, e2):$/;" m class:ExceptStarTest +assertModuleSource Lib/test/test_zipimport.py /^ def assertModuleSource(self, module):$/;" m class:UncompressedZipImportTestCase +assertMultiLineEqual Lib/unittest/case.py /^ def assertMultiLineEqual(self, first, second, msg=None):$/;" m class:TestCase +assertMultilineMatches Lib/test/test_gdb.py /^ def assertMultilineMatches(self, actual, pattern):$/;" m class:DebuggerTests +assertNamespaceMatches Lib/test/test_runpy.py /^ def assertNamespaceMatches(self, result_ns, expected_ns):$/;" m class:CodeExecutionMixin +assertNetmaskError Lib/test/test_ipaddress.py /^ def assertNetmaskError(self, details, *args):$/;" m class:BaseTestCase +assertNeverAwaited Lib/test/test_unittest/testmock/testasync.py /^def assertNeverAwaited(test):$/;" f +assertNoLogs Lib/unittest/case.py /^ def assertNoLogs(self, logger=None, level=None):$/;" m class:TestCase +assertNoStderr Lib/test/test_unittest/test_case.py /^ def assertNoStderr(self):$/;" f +assertNonBase64Data Lib/test/test_binascii.py /^ def assertNonBase64Data(data, non_strict_mode_expected_result: bytes):$/;" f function:BinASCIITest.test_base64_strict_mode +assertNotAlmostEqual Lib/unittest/case.py /^ def assertNotAlmostEqual(self, first, second, places=None, msg=None,$/;" m class:TestCase +assertNotAlmostEquals Lib/lib2to3/fixes/fix_asserts.py /^ assertNotAlmostEquals="assertNotAlmostEqual",$/;" v +assertNotCallable Lib/test/test_unittest/testmock/testcallable.py /^ def assertNotCallable(self, mock):$/;" m class:TestCallable +assertNotCallable Lib/test/test_unittest/testmock/testpatch.py /^ def assertNotCallable(self, obj, magic=True):$/;" m class:PatchTest +assertNotCompiled Lib/test/test_compileall.py /^ def assertNotCompiled(self, fn):$/;" m class:CommandLineTestsBase +assertNotEqual Lib/unittest/case.py /^ def assertNotEqual(self, first, second, msg=None):$/;" m class:TestCase +assertNotEquals Lib/lib2to3/fixes/fix_asserts.py /^ assertNotEquals="assertNotEqual",$/;" v +assertNotHasAttr Lib/test/test_descr.py /^ def assertNotHasAttr(self, obj, name):$/;" m class:ClassPropertiesAndMethods +assertNotIn Lib/test/audit-tests.py /^def assertNotIn(el, series):$/;" f +assertNotIn Lib/unittest/case.py /^ def assertNotIn(self, member, container, msg=None):$/;" m class:TestCase +assertNotInBytecode Lib/test/support/bytecode_helper.py /^ def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED):$/;" m class:BytecodeTestCase +assertNotIsInstance Lib/unittest/case.py /^ def assertNotIsInstance(self, obj, cls, msg=None):$/;" m class:TestCase +assertNotIsSubclass Lib/test/test_typing.py /^ def assertNotIsSubclass(self, cls, class_or_tuple, msg=None):$/;" m class:BaseTestCase +assertNotOrderable Lib/test/test_class.py /^ def assertNotOrderable(self, a, b):$/;" m class:ClassTests +assertNotOrderable Lib/test/test_descr.py /^ def assertNotOrderable(self, a, b):$/;" f +assertNotRegex Lib/unittest/case.py /^ def assertNotRegex(self, text, unexpected_regex, msg=None):$/;" m class:TestCase +assertNoted Lib/test/test_codecs.py /^ def assertNoted(self, operation, exc_type, msg):$/;" m class:ExceptionNotesTest +assertOK Lib/test/test_poplib.py /^ def assertOK(self, resp):$/;" m class:TestPOP3Class +assertOldResultWarning Lib/test/test_unittest/test_result.py /^ def assertOldResultWarning(self, test, failures):$/;" m class:Test_OldTestResult +assertOpcodeSourcePositionIs Lib/test/test_compile.py /^ def assertOpcodeSourcePositionIs(self, code, opcode,$/;" m class:TestSourcePositions +assertOptionError Lib/test/test_optparse.py /^ def assertOptionError(self, expected_message, args=[], kwargs={}):$/;" m class:TestOptionChecks +assertOrderedEqual Lib/test/test_pathlib.py /^ def assertOrderedEqual(a, b):$/;" f function:PureWindowsPathTest.test_ordering_common +assertOutput Lib/test/test_optparse.py /^ def assertOutput(self,$/;" m class:BaseTest +assertParseFail Lib/test/test_optparse.py /^ def assertParseFail(self, cmdline_args, expected_output):$/;" m class:BaseTest +assertParseOK Lib/test/test_optparse.py /^ def assertParseOK(self, args, expected_opts, expected_positional_args):$/;" m class:BaseTest +assertPathEqual Lib/test/test_genericpath.py /^ def assertPathEqual(self, func):$/;" m class:PathLikeTests +assertPathEqual Lib/test/test_ntpath.py /^ def assertPathEqual(self, path1, path2):$/;" m class:NtpathTestCase +assertPathEqual Lib/test/test_os.py /^ def assertPathEqual(self, left, right):$/;" m class:ReadlinkTests +assertPathEqual Lib/test/test_posixpath.py /^ def assertPathEqual(self, func):$/;" m class:PathLikeTests +assertPathIn Lib/test/test_ntpath.py /^ def assertPathIn(self, path, pathset):$/;" m class:NtpathTestCase +assertPrintHelpExit Lib/test/test_argparse.py /^ def assertPrintHelpExit(self, parser, args_str):$/;" m class:TestOptionalsHelpVersionActions +assertRaises Lib/test/audit-tests.py /^def assertRaises(ex_type):$/;" f +assertRaises Lib/test/test_optparse.py /^ def assertRaises(self,$/;" m class:BaseTest +assertRaises Lib/test/test_patma.py /^ def assertRaises(*_, **__):$/;" m class:TestTracing.PerfPatma +assertRaises Lib/unittest/case.py /^ def assertRaises(self, expected_exception, *args, **kwargs):$/;" m class:TestCase +assertRaises Objects/setobject.c 2371;" d file: +assertRaises Objects/setobject.c 2504;" d file: +assertRaisesConversion Lib/test/test_xdrlib.py /^ def assertRaisesConversion(self, *args):$/;" m class:ConversionErrorTest +assertRaisesMessage Lib/test/test_fractions.py /^ def assertRaisesMessage(self, exc_type, message,$/;" m class:FractionTest +assertRaisesRegex Lib/unittest/case.py /^ def assertRaisesRegex(self, expected_exception, expected_regex,$/;" m class:TestCase +assertRaisesRegexp Lib/lib2to3/fixes/fix_asserts.py /^ assertRaisesRegexp="assertRaisesRegex",$/;" v +assertRaisesSyntaxError Lib/test/test_keywordonlyarg.py /^ def assertRaisesSyntaxError(self, codestr):$/;" m class:KeywordOnlyArgTestCase +assertRaisesSyntaxError Lib/test/test_positional_only_arg.py /^ def assertRaisesSyntaxError(self, codestr, regex="invalid syntax"):$/;" m class:PositionalOnlyTestCase +assertRaisesSyntaxError Lib/test/test_with.py /^ def assertRaisesSyntaxError(self, codestr):$/;" m class:FailureTestCase +assertRaisesWithMsg Lib/test/test_unittest/testmock/testmock.py /^ def assertRaisesWithMsg(self, exception, message, func, *args, **kwargs):$/;" m class:MockTest +assertReachesEventually Lib/test/_test_multiprocessing.py /^ def assertReachesEventually(self, func, value):$/;" m class:_TestCondition +assertRegex Lib/unittest/case.py /^ def assertRegex(self, text, expected_regex, msg=None):$/;" m class:TestCase +assertRegexpMatches Lib/lib2to3/fixes/fix_asserts.py /^ assertRegexpMatches="assertRegex",$/;" v +assertReturnsIfImplemented Lib/test/_test_multiprocessing.py /^ def assertReturnsIfImplemented(self, value, func, *args):$/;" m class:BaseTestCase +assertRunNotOK Lib/test/test_compileall.py /^ def assertRunNotOK(self, *args, **env_vars):$/;" m class:CommandLineTestsBase +assertRunOK Lib/test/test_compileall.py /^ def assertRunOK(self, *args, **env_vars):$/;" m class:CommandLineTestsBase +assertS_IS Lib/test/test_stat.py /^ def assertS_IS(self, name, mode):$/;" m class:TestFilemode +assertSame Lib/test/test_ctypes/test_internals.py /^ def assertSame(self, a, b):$/;" m class:ObjectsTestCase +assertSame Lib/test/test_pathlib.py /^ def assertSame(self, path_a, path_b):$/;" m class:_BasePathTest +assertSameSet Lib/test/test_collections.py /^ def assertSameSet(self, s1, s2):$/;" m class:TestCollectionABCs +assertSane Lib/test/test_gdb.py /^ def assertSane(self, source, corruption, exprepr=None):$/;" f +assertScan Lib/test/test_json/test_scanstring.py /^ def assertScan(given, expect):$/;" f function:TestScanstring.test_surrogates +assertSequenceEqual Lib/test/audit-tests.py /^def assertSequenceEqual(x, y):$/;" f +assertSequenceEqual Lib/unittest/case.py /^ def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None):$/;" m class:TestCase +assertSequencesEqual_noorder Lib/test/test_glob.py /^ def assertSequencesEqual_noorder(self, l1, l2):$/;" m class:GlobTests +assertSetEqual Lib/unittest/case.py /^ def assertSetEqual(self, set1, set2, msg=None):$/;" m class:TestCase +assertSigInt Lib/test/test_runpy.py /^ def assertSigInt(self, cmd, *args, **kwargs):$/;" m class:TestExit +assertSome Lib/test/test_unittest/testmock/testmock.py /^ def assertSome(self): pass$/;" m class:MockTest.test_mock_safe_with_spec.Foo +assertSourceEqual Lib/test/test_inspect.py /^ def assertSourceEqual(self, obj, top, bottom):$/;" m class:GetSourceBase +assertSpecialized Lib/test/test_traceback.py /^ def assertSpecialized(self, func, expected_specialization):$/;" m class:TracebackErrorLocationCaretTestBase +assertStdinRoundTrip Lib/test/test_winconsoleio.py /^ def assertStdinRoundTrip(self, text):$/;" m class:WindowsConsoleIOTests +assertStr Lib/test/test_lib2to3/test_util.py /^ def assertStr(self, node, string):$/;" m class:MacroTestCase +assertStringEqual Lib/test/test_argparse.py /^ def assertStringEqual(self, obj, result_string):$/;" m class:TestStrings +assertStructError Lib/test/test_struct.py /^ def assertStructError(func, *args, **kwargs):$/;" f function:StructTest.test_nN_code +assertTimeout Lib/test/lock_tests.py /^ def assertTimeout(self, actual, expected):$/;" m class:BaseTestCase +assertTimingAlmostEqual Lib/test/_test_multiprocessing.py /^ def assertTimingAlmostEqual(self, a, b):$/;" m class:BaseTestCase +assertTripleEqual Lib/test/test_colorsys.py /^ def assertTripleEqual(self, tr1, tr2):$/;" m class:ColorsysTest +assertTrue Lib/unittest/case.py /^ def assertTrue(self, expr, msg=None):$/;" m class:TestCase +assertTrueconflict_error Lib/test/test_optparse.py /^ def assertTrueconflict_error(self, func):$/;" m class:TestConflict +assertTrueremoved Lib/test/test_optparse.py /^ def assertTrueremoved(self):$/;" m class:TestOptionParser +assertTupleEqual Lib/unittest/case.py /^ def assertTupleEqual(self, tuple1, tuple2, msg=None):$/;" m class:TestCase +assertTypeError Lib/test/test_argparse.py /^ def assertTypeError(self, *args, **kwargs):$/;" m class:TestInvalidArgumentConstructors +assertTypeError Lib/test/test_optparse.py /^ def assertTypeError(self, func, expected_message, *args):$/;" m class:BaseTest +assertTypedEqual Lib/test/test_re.py /^ def assertTypedEqual(self, actual, expect, msg=None):$/;" m class:ReTests +assertTypedEquals Lib/test/test_fractions.py /^ def assertTypedEquals(self, expected, actual):$/;" m class:FractionTest +assertTypedTupleEquals Lib/test/test_fractions.py /^ def assertTypedTupleEquals(self, expected, actual):$/;" m class:FractionTest +assertUnchanged Lib/test/test_textwrap.py /^ def assertUnchanged(self, text):$/;" m class:DedentTestCase +assertUsage Lib/test/test_optparse.py /^ def assertUsage(self, parser, expected_usage):$/;" m class:TestProgName +assertValid Lib/test/test_codeop.py /^ def assertValid(self, str, symbol='single'):$/;" m class:CodeopTests +assertValueError Lib/test/test_argparse.py /^ def assertValueError(self, *args, **kwargs):$/;" m class:TestInvalidArgumentConstructors +assertVectorsAlmostEqual Lib/test/test_turtle.py /^ def assertVectorsAlmostEqual(self, vec1, vec2):$/;" m class:VectorComparisonMixin +assertVersion Lib/test/test_optparse.py /^ def assertVersion(self, parser, expected_version):$/;" m class:TestProgName +assertWarns Lib/unittest/case.py /^ def assertWarns(self, expected_warning, *args, **kwargs):$/;" m class:TestCase +assertWarnsRegex Lib/unittest/case.py /^ def assertWarnsRegex(self, expected_warning, expected_regex,$/;" m class:TestCase +assertZipFailure Lib/test/test_zipimport.py /^ def assertZipFailure(self, filename):$/;" m class:BadFileZipImportTestCase +assert_ Lib/lib2to3/fixes/fix_asserts.py /^ assert_="assertTrue",$/;" v +assert_ Lib/wsgiref/validate.py /^def assert_(cond, *args):$/;" f +assert_any_await Lib/unittest/mock.py /^ def assert_any_await(self, \/, *args, **kwargs):$/;" m class:AsyncMockMixin +assert_any_call Lib/unittest/mock.py /^ def assert_any_call(*args, **kwargs):$/;" f function:_setup_func +assert_any_call Lib/unittest/mock.py /^ def assert_any_call(self, \/, *args, **kwargs):$/;" m class:NonCallableMock +assert_attr Lib/test/test_decimal.py /^ def assert_attr(a, b, attr, context, signal=None):$/;" f function:ContextFlags.test_float_comparison +assert_attrs Lib/test/test_range.py /^ def assert_attrs(self, rangeobj, start, stop, step):$/;" m class:RangeTest +assert_attrs Lib/test/test_unittest/testmock/testasync.py /^ def assert_attrs(mock):$/;" f function:AsyncMockAssert.test_async_arg_lists +assert_attrs Lib/test/test_unittest/testmock/testmock.py /^ def assert_attrs(mock):$/;" f function:MockTest.test_arg_lists +assert_awaited Lib/unittest/mock.py /^ def assert_awaited(self):$/;" m class:AsyncMockMixin +assert_awaited_once Lib/unittest/mock.py /^ def assert_awaited_once(self):$/;" m class:AsyncMockMixin +assert_awaited_once_with Lib/unittest/mock.py /^ def assert_awaited_once_with(self, \/, *args, **kwargs):$/;" m class:AsyncMockMixin +assert_awaited_with Lib/unittest/mock.py /^ def assert_awaited_with(self, \/, *args, **kwargs):$/;" m class:AsyncMockMixin +assert_bar Lib/test/test_unittest/testmock/testmock.py /^ def assert_bar(self): pass$/;" m class:MockTest.test_mock_safe_with_spec.Foo +assert_called Lib/unittest/mock.py /^ def assert_called(*args, **kwargs):$/;" f function:_setup_func +assert_called Lib/unittest/mock.py /^ def assert_called(self):$/;" m class:NonCallableMock +assert_called_once Lib/unittest/mock.py /^ def assert_called_once(*args, **kwargs):$/;" f function:_setup_func +assert_called_once Lib/unittest/mock.py /^ def assert_called_once(self):$/;" m class:NonCallableMock +assert_called_once_with Lib/unittest/mock.py /^ def assert_called_once_with(*args, **kwargs):$/;" f function:_setup_func +assert_called_once_with Lib/unittest/mock.py /^ def assert_called_once_with(self, \/, *args, **kwargs):$/;" m class:NonCallableMock +assert_called_with Lib/unittest/mock.py /^ def assert_called_with(*args, **kwargs):$/;" f function:_setup_func +assert_called_with Lib/unittest/mock.py /^ def assert_called_with(self, \/, *args, **kwargs):$/;" m class:NonCallableMock +assert_colors_are_equal Lib/idlelib/idle_test/test_codecontext.py /^ def assert_colors_are_equal(colors):$/;" f function:CodeContextTest.test_highlight_colors +assert_colors_are_equal Lib/idlelib/idle_test/test_sidebar.py /^ def assert_colors_are_equal(colors):$/;" f function:LineNumbersTest.test_highlight_colors +assert_del_calls Lib/test/test_finalization.py /^ def assert_del_calls(self, ids):$/;" m class:TestBase +assert_eq_status Modules/_decimal/tests/deccheck.py /^ def assert_eq_status(self):$/;" m class:Context +assert_eq_subtest Lib/test/test_compare.py /^ def assert_eq_subtest(self, a, b, comp, a_meth, b_meth):$/;" m class:ComparisonFullTest +assert_equal_float Lib/test/test_math_property.py /^def assert_equal_float(x, y):$/;" f +assert_equality_only Lib/test/test_compare.py /^ def assert_equality_only(self, a, b, equal):$/;" m class:ComparisonFullTest +assert_error_message Lib/test/test_logging.py /^ def assert_error_message(self, exception, message, *args, **kwargs):$/;" m class:AssertErrorMessage +assert_event_counts Lib/test/test_capi/test_watchers.py /^ def assert_event_counts(self, exp_created_0, exp_destroyed_0,$/;" m class:TestCodeObjectWatchers +assert_event_tags Lib/test/test_xml_etree.py /^ def assert_event_tags(self, parser, expected, max_events=None):$/;" m class:XMLPullParserTest +assert_event_tuples Lib/test/test_xml_etree.py /^ def assert_event_tuples(self, parser, expected, max_events=None):$/;" m class:XMLPullParserTest +assert_events Lib/test/test_capi/test_watchers.py /^ def assert_events(self, expected):$/;" m class:TestDictWatchers +assert_events Lib/test/test_capi/test_watchers.py /^ def assert_events(self, expected):$/;" m class:TestTypeWatchers +assert_events Lib/test/test_xml_etree.py /^ def assert_events(self, parser, expected, max_events=None):$/;" m class:XMLPullParserTest +assert_exc_string Lib/test/test_timeit.py /^ def assert_exc_string(self, exc_string, expected_exc_name):$/;" m class:TestTimeit +assert_exception_table_increasing Lib/test/test_dis.py /^ def assert_exception_table_increasing(self, lines):$/;" m class:DisTestBase +assert_files_eq Lib/test/test_shutil.py /^ def assert_files_eq(self, src, dst):$/;" m class:TestCopyFileObj +assert_garbage Lib/test/test_finalization.py /^ def assert_garbage(self, ids):$/;" m class:TestBase +assert_garbage_collect_test_after_run Lib/test/test_unittest/test_suite.py /^ def assert_garbage_collect_test_after_run(self, TestSuiteClass):$/;" m class:Test_TestSuite +assert_ge_subtest Lib/test/test_compare.py /^ def assert_ge_subtest(self, a, b, comp, a_meth, b_meth):$/;" m class:ComparisonFullTest +assert_generator_ignored_generator_exit Lib/test/test_yield_from.py /^ def assert_generator_ignored_generator_exit(self):$/;" m class:TestInterestingEdgeCases +assert_generator_raised_stop_iteration Lib/test/test_yield_from.py /^ def assert_generator_raised_stop_iteration(self):$/;" m class:TestInterestingEdgeCases +assert_gt_subtest Lib/test/test_compare.py /^ def assert_gt_subtest(self, a, b, comp, a_meth, b_meth):$/;" m class:ComparisonFullTest +assert_has_awaits Lib/unittest/mock.py /^ def assert_has_awaits(self, calls, any_order=False):$/;" m class:AsyncMockMixin +assert_has_calls Lib/unittest/mock.py /^ def assert_has_calls(*args, **kwargs):$/;" f function:_setup_func +assert_has_calls Lib/unittest/mock.py /^ def assert_has_calls(self, calls, any_order=False):$/;" m class:NonCallableMock +assert_hmac Lib/test/test_hmac.py /^ def assert_hmac($/;" m class:TestVectorsTestCase +assert_hmac_internals Lib/test/test_hmac.py /^ def assert_hmac_internals($/;" m class:TestVectorsTestCase +assert_immortal Lib/test/test_builtin.py /^ def assert_immortal(self, immortal):$/;" m class:ImmortalTests +assert_index_same Lib/test/test_collections.py /^ def assert_index_same(seq1, seq2, index_args):$/;" f function:TestCollectionABCs.test_Sequence_mixins +assert_is_copy Lib/test/pickletester.py /^ assert_is_copy = AbstractUnpickleTests.assert_is_copy$/;" v class:AbstractPickleTests +assert_is_copy Lib/test/pickletester.py /^ def assert_is_copy(self, obj, objcopy, msg=None):$/;" m class:AbstractUnpickleTests +assert_iterators_equal Lib/test/test_range.py /^ def assert_iterators_equal(self, xs, ys, test_id, limit=None):$/;" m class:RangeTest +assert_le_subtest Lib/test/test_compare.py /^ def assert_le_subtest(self, a, b, comp, a_meth, b_meth):$/;" m class:ComparisonFullTest +assert_log_lines Lib/test/test_logging.py /^ def assert_log_lines(self, expected_values, stream=None, pat=None):$/;" m class:BaseTest +assert_lt_subtest Lib/test/test_compare.py /^ def assert_lt_subtest(self, a, b, comp, a_meth, b_meth):$/;" m class:ComparisonFullTest +assert_ne_subtest Lib/test/test_compare.py /^ def assert_ne_subtest(self, a, b, comp, a_meth, b_meth):$/;" m class:ComparisonFullTest +assert_never Lib/typing.py /^def assert_never(arg: Never, \/) -> Never:$/;" f +assert_no_reader Lib/test/test_asyncio/utils.py /^ def assert_no_reader(self, fd):$/;" m class:TestLoop +assert_none_check Lib/test/test_ast.py /^ def assert_none_check(self, node: type[ast.AST], attr: str, source: str) -> None:$/;" m class:AST_Tests +assert_not_awaited Lib/unittest/mock.py /^ def assert_not_awaited(self):$/;" m class:AsyncMockMixin +assert_not_called Lib/unittest/mock.py /^ def assert_not_called(*args, **kwargs):$/;" f function:_setup_func +assert_not_called Lib/unittest/mock.py /^ def assert_not_called(self):$/;" m class:NonCallableMock +assert_offsets_increasing Lib/test/test_dis.py /^ def assert_offsets_increasing(self, text, delta):$/;" m class:DisTestBase +assert_only_one Tools/clinic/clinic.py /^ def assert_only_one(attr, *additional_fields):$/;" f function:Language.validate +assert_out_of_bounds_error Lib/test/test_buffer.py /^ def assert_out_of_bounds_error(self, dim):$/;" m class:TestBufferProtocol +assert_pip_not_installed Lib/test/test_venv.py /^ def assert_pip_not_installed(self):$/;" m class:EnsurePipTest +assert_python_failure Lib/test/support/script_helper.py /^def assert_python_failure(*args, **env_vars):$/;" f +assert_python_ok Lib/test/support/script_helper.py /^def assert_python_ok(*args, **env_vars):$/;" f +assert_raise_on_new_sys_type Lib/test/test_sys.py /^ def assert_raise_on_new_sys_type(self, sys_attr):$/;" m class:SysModuleTest +assert_raises Lib/test/test_asyncio/test_unix_events.py /^ def assert_raises():$/;" f function:TestFunctional.test_add_reader_invalid_argument +assert_raises Lib/test/test_asyncio/test_unix_events.py /^ def assert_raises():$/;" f function:TestFunctional.test_add_reader_or_writer_transport_fd +assert_raises_unraisable Lib/test/_test_atexit.py /^ def assert_raises_unraisable(self, exc_type, func, *args):$/;" m class:GeneralTest +assert_reader Lib/test/test_asyncio/utils.py /^ def assert_reader(self, fd, callback, *args):$/;" m class:TestLoop +assert_recursive_equal Lib/test/test_minidom.py /^ def assert_recursive_equal(self, doc, doc2):$/;" m class:MinidomTest +assert_rest Lib/test/test_decimal.py /^ def assert_rest(self, context):$/;" f function:CFunctionality.test_c_ieee_context +assert_run_failed Lib/test/test__xxsubinterpreters.py /^ def assert_run_failed(self, exctype, msg=None):$/;" m class:RunStringTests +assert_runs_after Lib/test/test_lib2to3/test_fixers.py /^ def assert_runs_after(self, *names):$/;" m class:FixerTestCase +assert_sidebar_lines_end_with Lib/idlelib/idle_test/test_sidebar.py /^ def assert_sidebar_lines_end_with(self, expected_lines):$/;" m class:ShellSidebarTest +assert_sidebar_lines_synced Lib/idlelib/idle_test/test_sidebar.py /^ def assert_sidebar_lines_synced(self):$/;" m class:ShellSidebarTest +assert_sidebar_n_lines Lib/idlelib/idle_test/test_sidebar.py /^ def assert_sidebar_n_lines(self, n_lines):$/;" m class:LineNumbersTest +assert_signals Lib/test/test_decimal.py /^def assert_signals(cls, context, attr, expected):$/;" f +assert_sock_timeout Lib/test/test_socket.py /^ def assert_sock_timeout(self, sock, timeout):$/;" m class:NonBlockingTCPTests +assert_spawning Lib/multiprocessing/context.py /^def assert_spawning(obj):$/;" f +assert_stat_equal Lib/test/test_os.py /^ def assert_stat_equal(self, stat1, stat2, skip_fields):$/;" m class:TestScandir +assert_state_disabled Lib/idlelib/idle_test/test_sidebar.py /^ def assert_state_disabled(self):$/;" m class:LineNumbersTest +assert_stmt_rule Parser/parser.c /^assert_stmt_rule(Parser *p)$/;" f file: +assert_stmt_type Parser/parser.c 101;" d file: +assert_stop_iteration Lib/test/test_yield_from.py /^ def assert_stop_iteration(self, iterator):$/;" m class:TestInterestingEdgeCases +assert_survivors Lib/test/test_finalization.py /^ def assert_survivors(self, ids):$/;" m class:TestBase +assert_syntax_error Lib/test/test_patma.py /^ def assert_syntax_error(self, code: str):$/;" m class:TestSyntaxErrors +assert_text_contains Lib/test/test_asyncio/test_tasks.py /^ def assert_text_contains(self, text, substr):$/;" m class:BaseTaskTests +assert_text_equals Lib/idlelib/idle_test/test_sidebar.py /^ def assert_text_equals(self, expected):$/;" m class:LineNumbersTest +assert_total_order Lib/test/test_compare.py /^ def assert_total_order(self, a, b, comp, a_meth=None, b_meth=None):$/;" m class:ComparisonFullTest +assert_tp_del_calls Lib/test/test_finalization.py /^ def assert_tp_del_calls(self, ids):$/;" m class:TestBase +assert_traceback Lib/test/test_import/__init__.py /^ def assert_traceback(self, tb, files):$/;" m class:ImportTracebackTests +assert_type Lib/typing.py /^def assert_type(val, typ, \/):$/;" f +assert_usable Lib/test/test_dtrace.py /^ def assert_usable(self):$/;" m class:TraceBackend +assert_writer Lib/test/test_asyncio/utils.py /^ def assert_writer(self, fd, callback, *args):$/;" m class:TestLoop +assign Tools/cases_generator/generate_cases.py /^ def assign(self, dst: StackEffect, src: StackEffect):$/;" m class:Formatter +assign_version_tag Objects/typeobject.c /^assign_version_tag(PyInterpreterState *interp, PyTypeObject *type)$/;" f file: +assignment_expression_rule Parser/parser.c /^assignment_expression_rule(Parser *p)$/;" f file: +assignment_expression_type Parser/parser.c 191;" d file: +assignment_helper Python/compile.c /^assignment_helper(struct compiler *c, location loc, asdl_expr_seq *elts)$/;" f file: +assignment_rule Parser/parser.c /^assignment_rule(Parser *p)$/;" f file: +assignment_type Parser/parser.c 92;" d file: +assume Lib/test/support/_hypothesis_stubs/__init__.py /^def assume(condition):$/;" f +assure_pickle_consistency Lib/pickletools.py /^def assure_pickle_consistency(verbose=False):$/;" f +ast Include/internal/pycore_ast_state.h /^ PyObject *ast;$/;" m struct:ast_state +ast Include/internal/pycore_interp.h /^ struct ast_state ast;$/;" m struct:_is typeref:struct:_is::ast_state +ast2obj_alias Python/Python-ast.c /^ast2obj_alias(struct ast_state *state, void* _o)$/;" f +ast2obj_arg Python/Python-ast.c /^ast2obj_arg(struct ast_state *state, void* _o)$/;" f +ast2obj_arguments Python/Python-ast.c /^ast2obj_arguments(struct ast_state *state, void* _o)$/;" f +ast2obj_boolop Python/Python-ast.c /^PyObject* ast2obj_boolop(struct ast_state *state, boolop_ty o)$/;" f +ast2obj_cmpop Python/Python-ast.c /^PyObject* ast2obj_cmpop(struct ast_state *state, cmpop_ty o)$/;" f +ast2obj_comprehension Python/Python-ast.c /^ast2obj_comprehension(struct ast_state *state, void* _o)$/;" f +ast2obj_constant Python/Python-ast.c 1039;" d file: +ast2obj_excepthandler Python/Python-ast.c /^ast2obj_excepthandler(struct ast_state *state, void* _o)$/;" f +ast2obj_expr Python/Python-ast.c /^ast2obj_expr(struct ast_state *state, void* _o)$/;" f +ast2obj_expr_context Python/Python-ast.c /^PyObject* ast2obj_expr_context(struct ast_state *state, expr_context_ty o)$/;" f +ast2obj_identifier Python/Python-ast.c 1040;" d file: +ast2obj_int Python/Python-ast.c /^static PyObject* ast2obj_int(struct ast_state *Py_UNUSED(state), long b)$/;" f file: +ast2obj_keyword Python/Python-ast.c /^ast2obj_keyword(struct ast_state *state, void* _o)$/;" f +ast2obj_list Python/Python-ast.c /^static PyObject* ast2obj_list(struct ast_state *state, asdl_seq *seq, PyObject* (*func)(struct ast_state *state, void*))$/;" f file: +ast2obj_match_case Python/Python-ast.c /^ast2obj_match_case(struct ast_state *state, void* _o)$/;" f +ast2obj_mod Python/Python-ast.c /^ast2obj_mod(struct ast_state *state, void* _o)$/;" f +ast2obj_object Python/Python-ast.c /^static PyObject* ast2obj_object(struct ast_state *Py_UNUSED(state), void *o)$/;" f file: +ast2obj_operator Python/Python-ast.c /^PyObject* ast2obj_operator(struct ast_state *state, operator_ty o)$/;" f +ast2obj_pattern Python/Python-ast.c /^ast2obj_pattern(struct ast_state *state, void* _o)$/;" f +ast2obj_stmt Python/Python-ast.c /^ast2obj_stmt(struct ast_state *state, void* _o)$/;" f +ast2obj_string Python/Python-ast.c 1041;" d file: +ast2obj_type_ignore Python/Python-ast.c /^ast2obj_type_ignore(struct ast_state *state, void* _o)$/;" f +ast2obj_type_param Python/Python-ast.c /^ast2obj_type_param(struct ast_state *state, void* _o)$/;" f +ast2obj_unaryop Python/Python-ast.c /^PyObject* ast2obj_unaryop(struct ast_state *state, unaryop_ty o)$/;" f +ast2obj_withitem Python/Python-ast.c /^ast2obj_withitem(struct ast_state *state, void* _o)$/;" f +ast_clear Python/Python-ast.c /^ast_clear(AST_object *self)$/;" f file: +ast_dealloc Python/Python-ast.c /^ast_dealloc(AST_object *self)$/;" f file: +ast_dump Tools/peg_generator/pegen/ast_dump.py /^def ast_dump($/;" f +ast_func_name Parser/asdl_c.py /^def ast_func_name(name):$/;" f +ast_literal_eval_method Modules/_xxtestfuzz/fuzzer.c /^PyObject* ast_literal_eval_method = NULL;$/;" v +ast_state Include/internal/pycore_ast_state.h /^struct ast_state {$/;" s +ast_traverse Python/Python-ast.c /^ast_traverse(AST_object *self, visitproc visit, void *arg)$/;" f file: +ast_type_getsets Python/Python-ast.c /^static PyGetSetDef ast_type_getsets[] = {$/;" v file: +ast_type_init Python/Python-ast.c /^ast_type_init(PyObject *self, PyObject *args, PyObject *kw)$/;" f file: +ast_type_members Python/Python-ast.c /^static PyMemberDef ast_type_members[] = {$/;" v file: +ast_type_methods Python/Python-ast.c /^static PyMethodDef ast_type_methods[] = {$/;" v file: +ast_type_reduce Python/Python-ast.c /^ast_type_reduce(PyObject *self, PyObject *unused)$/;" f file: +astfold_arg Python/ast_opt.c /^astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_arguments Python/ast_opt.c /^astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_body Python/ast_opt.c /^astfold_body(asdl_stmt_seq *stmts, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_comprehension Python/ast_opt.c /^astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_excepthandler Python/ast_opt.c /^astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_expr Python/ast_opt.c /^astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_keyword Python/ast_opt.c /^astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_match_case Python/ast_opt.c /^astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_mod Python/ast_opt.c /^astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_pattern Python/ast_opt.c /^astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_stmt Python/ast_opt.c /^astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_type_param Python/ast_opt.c /^astfold_type_param(type_param_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astfold_withitem Python/ast_opt.c /^astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state)$/;" f file: +astimezone Lib/_pydatetime.py /^ def astimezone(self, tz=None):$/;" m class:datetime +astmodule_exec Python/Python-ast.c /^astmodule_exec(PyObject *m)$/;" f file: +astmodule_slots Python/Python-ast.c /^static PyModuleDef_Slot astmodule_slots[] = {$/;" v file: +astuple Lib/dataclasses.py /^def astuple(obj, *, tuple_factory=tuple):$/;" f +asyncSetUp Lib/test/test_asyncio/test_locks.py /^ async def asyncSetUp(self):$/;" m class:BarrierTests +asyncSetUp Lib/test/test_os.py /^ async def asyncSetUp(self):$/;" m class:TestSendfile +asyncSetUp Lib/test/test_unittest/test_async_case.py /^ async def asyncSetUp(self):$/;" m class:TestAsyncCase.test_debug_cleanup_same_loop.Test +asyncSetUp Lib/test/test_unittest/test_async_case.py /^ async def asyncSetUp(self):$/;" m class:TestAsyncCase.test_exception_in_setup.Test +asyncSetUp Lib/test/test_unittest/test_async_case.py /^ async def asyncSetUp(self):$/;" m class:TestAsyncCase.test_exception_in_tear_clean_up.Test +asyncSetUp Lib/test/test_unittest/test_async_case.py /^ async def asyncSetUp(self):$/;" m class:TestAsyncCase.test_exception_in_tear_down.Test +asyncSetUp Lib/test/test_unittest/test_async_case.py /^ async def asyncSetUp(self):$/;" m class:TestAsyncCase.test_exception_in_test.Test +asyncSetUp Lib/test/test_unittest/test_async_case.py /^ async def asyncSetUp(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +asyncSetUp Lib/unittest/async_case.py /^ async def asyncSetUp(self):$/;" m class:IsolatedAsyncioTestCase +asyncTearDown Lib/test/test_inspect.py /^ async def asyncTearDown(self):$/;" m class:TestGetAsyncGenState +asyncTearDown Lib/test/test_os.py /^ async def asyncTearDown(self):$/;" m class:TestSendfile +asyncTearDown Lib/test/test_unittest/test_async_case.py /^ async def asyncTearDown(self):$/;" m class:TestAsyncCase.test_debug_cleanup_same_loop.Test +asyncTearDown Lib/test/test_unittest/test_async_case.py /^ async def asyncTearDown(self):$/;" m class:TestAsyncCase.test_exception_in_setup.Test +asyncTearDown Lib/test/test_unittest/test_async_case.py /^ async def asyncTearDown(self):$/;" m class:TestAsyncCase.test_exception_in_tear_clean_up.Test +asyncTearDown Lib/test/test_unittest/test_async_case.py /^ async def asyncTearDown(self):$/;" m class:TestAsyncCase.test_exception_in_tear_down.Test +asyncTearDown Lib/test/test_unittest/test_async_case.py /^ async def asyncTearDown(self):$/;" m class:TestAsyncCase.test_exception_in_test.Test +asyncTearDown Lib/test/test_unittest/test_async_case.py /^ async def asyncTearDown(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +asyncTearDown Lib/unittest/async_case.py /^ async def asyncTearDown(self):$/;" m class:IsolatedAsyncioTestCase +async_ Lib/xml/dom/xmlbuilder.py /^ async_ = False$/;" v class:DocumentLS +async_chat Lib/test/support/asynchat.py /^class async_chat(asyncore.dispatcher):$/;" c +async_class_method Lib/test/test_unittest/testmock/testasync.py /^ async def async_class_method(cls): pass$/;" m class:AsyncClass +async_def Lib/test/test_dis.py /^async def async_def():$/;" f +async_def Parser/tokenizer.h /^ int async_def; \/* =1 if tokens are inside an 'async def' body. *\/$/;" m struct:tok_state +async_def_indent Parser/tokenizer.h /^ int async_def_indent; \/* Indentation level of the outermost 'async def'. *\/$/;" m struct:tok_state +async_def_nl Parser/tokenizer.h /^ int async_def_nl; \/* =1 if the outermost 'async def' had at least one$/;" m struct:tok_state +async_exc Include/cpython/pystate.h /^ PyObject *async_exc; \/* Asynchronous exception to raise *\/$/;" m struct:_ts +async_exc Include/internal/pycore_ceval_state.h /^ int async_exc;$/;" m struct:_pending_calls +async_foo_name Lib/test/test_unittest/testmock/testasync.py /^async_foo_name = f'{__name__}.AsyncClass'$/;" v +async_func Lib/test/test_unittest/testmock/testasync.py /^async def async_func(): pass$/;" f +async_func_args Lib/test/test_unittest/testmock/testasync.py /^async def async_func_args(a, b, *, c): pass$/;" f +async_gen Include/internal/pycore_interp.h /^ struct _Py_async_gen_state async_gen;$/;" m struct:_is typeref:struct:_is::_Py_async_gen_state +async_gen Lib/test/test_asyncgen.py /^ async def async_gen():$/;" f function:AsyncGenTest.test_async_gen_exception_07 +async_gen Lib/test/test_asyncgen.py /^ async def async_gen():$/;" f function:AsyncGenTest.test_async_gen_exception_08 +async_gen Lib/test/test_asyncgen.py /^ async def async_gen():$/;" f function:AsyncGenTest.test_async_gen_exception_09 +async_gen Lib/test/test_asyncgen.py /^ async def async_gen():$/;" f function:AsyncGenTest.test_async_gen_exception_11 +async_gen_aclose Objects/genobject.c /^async_gen_aclose(PyAsyncGenObject *o, PyObject *arg)$/;" f file: +async_gen_anext Objects/genobject.c /^async_gen_anext(PyAsyncGenObject *o)$/;" f file: +async_gen_as_async Objects/genobject.c /^static PyAsyncMethods async_gen_as_async = {$/;" v file: +async_gen_asend Objects/genobject.c /^async_gen_asend(PyAsyncGenObject *o, PyObject *arg)$/;" f file: +async_gen_asend_as_async Objects/genobject.c /^static PyAsyncMethods async_gen_asend_as_async = {$/;" v file: +async_gen_asend_close Objects/genobject.c /^async_gen_asend_close(PyAsyncGenASend *o, PyObject *args)$/;" f file: +async_gen_asend_dealloc Objects/genobject.c /^async_gen_asend_dealloc(PyAsyncGenASend *o)$/;" f file: +async_gen_asend_iternext Objects/genobject.c /^async_gen_asend_iternext(PyAsyncGenASend *o)$/;" f file: +async_gen_asend_methods Objects/genobject.c /^static PyMethodDef async_gen_asend_methods[] = {$/;" v file: +async_gen_asend_new Objects/genobject.c /^async_gen_asend_new(PyAsyncGenObject *gen, PyObject *sendval)$/;" f file: +async_gen_asend_send Objects/genobject.c /^async_gen_asend_send(PyAsyncGenASend *o, PyObject *arg)$/;" f file: +async_gen_asend_throw Objects/genobject.c /^async_gen_asend_throw(PyAsyncGenASend *o, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +async_gen_asend_traverse Objects/genobject.c /^async_gen_asend_traverse(PyAsyncGenASend *o, visitproc visit, void *arg)$/;" f file: +async_gen_athrow Objects/genobject.c /^async_gen_athrow(PyAsyncGenObject *o, PyObject *args)$/;" f file: +async_gen_athrow_as_async Objects/genobject.c /^static PyAsyncMethods async_gen_athrow_as_async = {$/;" v file: +async_gen_athrow_close Objects/genobject.c /^async_gen_athrow_close(PyAsyncGenAThrow *o, PyObject *args)$/;" f file: +async_gen_athrow_dealloc Objects/genobject.c /^async_gen_athrow_dealloc(PyAsyncGenAThrow *o)$/;" f file: +async_gen_athrow_iternext Objects/genobject.c /^async_gen_athrow_iternext(PyAsyncGenAThrow *o)$/;" f file: +async_gen_athrow_methods Objects/genobject.c /^static PyMethodDef async_gen_athrow_methods[] = {$/;" v file: +async_gen_athrow_new Objects/genobject.c /^async_gen_athrow_new(PyAsyncGenObject *gen, PyObject *args)$/;" f file: +async_gen_athrow_send Objects/genobject.c /^async_gen_athrow_send(PyAsyncGenAThrow *o, PyObject *arg)$/;" f file: +async_gen_athrow_throw Objects/genobject.c /^async_gen_athrow_throw(PyAsyncGenAThrow *o, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +async_gen_athrow_traverse Objects/genobject.c /^async_gen_athrow_traverse(PyAsyncGenAThrow *o, visitproc visit, void *arg)$/;" f file: +async_gen_finalizer Include/cpython/pystate.h /^ PyObject *async_gen_finalizer;$/;" m struct:_ts +async_gen_firstiter Include/cpython/pystate.h /^ PyObject *async_gen_firstiter;$/;" m struct:_ts +async_gen_getsetlist Objects/genobject.c /^static PyGetSetDef async_gen_getsetlist[] = {$/;" v file: +async_gen_init_hooks Objects/genobject.c /^async_gen_init_hooks(PyAsyncGenObject *o)$/;" f file: +async_gen_memberlist Objects/genobject.c /^static PyMemberDef async_gen_memberlist[] = {$/;" v file: +async_gen_methods Objects/genobject.c /^static PyMethodDef async_gen_methods[] = {$/;" v file: +async_gen_repr Objects/genobject.c /^async_gen_repr(PyAsyncGenObject *o)$/;" f file: +async_gen_traverse Objects/genobject.c /^async_gen_traverse(PyAsyncGenObject *gen, visitproc visit, void *arg)$/;" f file: +async_gen_unwrap_value Objects/genobject.c /^async_gen_unwrap_value(PyAsyncGenObject *gen, PyObject *result)$/;" f file: +async_gen_wrapped_val_dealloc Objects/genobject.c /^async_gen_wrapped_val_dealloc(_PyAsyncGenWrappedValue *o)$/;" f file: +async_gen_wrapped_val_traverse Objects/genobject.c /^async_gen_wrapped_val_traverse(_PyAsyncGenWrappedValue *o,$/;" f file: +async_gen_wrapper Lib/test/test_asyncgen.py /^ async def async_gen_wrapper():$/;" f function:AsyncGenTest.test_async_gen_exception_11 +async_generator Lib/_collections_abc.py /^async_generator = type(_ag)$/;" v +async_generator Lib/test/test_asyncgen.py /^ async def async_generator():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aclose_compatible_with_get_stack +async_generator Lib/test/test_monitoring.py /^ async def async_generator():$/;" f function:ExceptionMonitoringTest.test_async_for.func +async_generator_function_example Lib/test/test_inspect.py /^async def async_generator_function_example(self):$/;" f +async_hacks Parser/tokenizer.h /^ int async_hacks; \/* =1 if async\/await aren't always keywords *\/$/;" m struct:tok_state +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aclose_after_exhaustion +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aclose_twice_with_different_coros +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_02 +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_exception_01 +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_exception_02 +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_async_gen_await_same_aclose_coro_twice +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_async_gen_await_same_anext_coro_twice +async_iterate Lib/test/test_asyncgen.py /^ async def async_iterate():$/;" f function:AsyncGenAsyncioTest.test_asyncgen_nonstarted_hooks_are_cancellable +async_iterate Lib/test/test_asyncgen.py /^ def async_iterate(g):$/;" f function:AsyncGenTest.compare_generators +async_jump_test Lib/test/test_sys_settrace.py /^ def async_jump_test(jumpFrom, jumpTo, expected, error=None, event='line', warning=None):$/;" m class:JumpTestCase +async_loop Lib/test/test_monitoring.py /^ async def async_loop():$/;" f function:ExceptionMonitoringTest.test_async_for.func +async_method Lib/test/test_unittest/testmock/testasync.py /^ async def async_method(self): pass$/;" m class:AsyncClass +async_sendfile Lib/test/test_os.py /^ async def async_sendfile(*args, **kwargs):$/;" m class:TestSendfile +async_static_method Lib/test/test_unittest/testmock/testasync.py /^ async def async_static_method(): pass$/;" m class:AsyncClass +asynccall Lib/idlelib/rpc.py /^ def asynccall(self, oid, methodname, args, kwargs):$/;" m class:SocketIO +asynccontextmanager Lib/contextlib.py /^def asynccontextmanager(func):$/;" f +asyncf Lib/test/inspect_fodder.py /^ async def asyncf(self):$/;" m class:WhichComments +asyncgen_hooks_desc Python/sysmodule.c /^static PyStructSequence_Desc asyncgen_hooks_desc = {$/;" v file: +asyncgen_hooks_fields Python/sysmodule.c /^static PyStructSequence_Field asyncgen_hooks_fields[] = {$/;" v file: +asyncio Lib/test/test_asyncgen.py /^asyncio = import_module("asyncio")$/;" v +asyncio_CancelledError Modules/_asynciomodule.c /^ PyObject *asyncio_CancelledError;$/;" m struct:__anon308 file: +asyncio_InvalidStateError Modules/_asynciomodule.c /^ PyObject *asyncio_InvalidStateError;$/;" m struct:__anon308 file: +asyncio_future_repr_func Modules/_asynciomodule.c /^ PyObject *asyncio_future_repr_func;$/;" m struct:__anon308 file: +asyncio_get_event_loop_policy Modules/_asynciomodule.c /^ PyObject *asyncio_get_event_loop_policy;$/;" m struct:__anon308 file: +asyncio_iscoroutine_func Modules/_asynciomodule.c /^ PyObject *asyncio_iscoroutine_func;$/;" m struct:__anon308 file: +asyncio_methods Modules/_asynciomodule.c /^static PyMethodDef asyncio_methods[] = {$/;" v file: +asyncio_mod Modules/_asynciomodule.c /^ PyObject *asyncio_mod;$/;" m struct:__anon308 file: +asyncio_state Modules/_asynciomodule.c /^} asyncio_state;$/;" t typeref:struct:__anon308 file: +asyncio_task_get_stack_func Modules/_asynciomodule.c /^ PyObject *asyncio_task_get_stack_func;$/;" m struct:__anon308 file: +asyncio_task_print_stack_func Modules/_asynciomodule.c /^ PyObject *asyncio_task_print_stack_func;$/;" m struct:__anon308 file: +asyncio_task_repr_func Modules/_asynciomodule.c /^ PyObject *asyncio_task_repr_func;$/;" m struct:__anon308 file: +asynciter Lib/test/test_coroutines.py /^async def asynciter(iterable):$/;" f +asynciter Lib/test/test_sys_settrace.py /^async def asynciter(iterable):$/;" f +asyncqueue Lib/idlelib/rpc.py /^ def asyncqueue(self, oid, methodname, args, kwargs):$/;" m class:SocketIO +asyncreturn Lib/idlelib/rpc.py /^ def asyncreturn(self, seq):$/;" m class:SocketIO +asynctracecontext Lib/test/test_sys_settrace.py /^class asynctracecontext:$/;" c +at Lib/importlib/metadata/__init__.py /^ def at(path):$/;" m class:Distribution +at Modules/_sre/sre_lib.h /^SRE(at)(SRE_STATE* state, const SRE_CHAR* ptr, SRE_CODE at)$/;" f +at_classmethod Tools/clinic/clinic.py /^ def at_classmethod(self) -> None:$/;" m class:DSLParser +at_coexist Tools/clinic/clinic.py /^ def at_coexist(self) -> None:$/;" m class:DSLParser +at_end Objects/codeobject.c /^at_end(PyCodeAddressRange *bounds) {$/;" f file: +at_eof Lib/asyncio/streams.py /^ def at_eof(self):$/;" m class:StreamReader +at_staticmethod Tools/clinic/clinic.py /^ def at_staticmethod(self) -> None:$/;" m class:DSLParser +at_text_signature Tools/clinic/clinic.py /^ def at_text_signature(self, text_signature: str) -> None:$/;" m class:DSLParser +atanh_special_values Modules/cmathmodule.c /^static Py_complex atanh_special_values[7][7];$/;" v file: +atbol Parser/tokenizer.h /^ int atbol; \/* Nonzero if at begin of new line *\/$/;" m struct:tok_state +atexit Include/internal/pycore_interp.h /^ struct atexit_state atexit;$/;" m struct:_is typeref:struct:_is::atexit_state +atexit Include/internal/pycore_runtime.h /^ struct _atexit_runtime_state atexit;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_atexit_runtime_state +atexit Lib/weakref.py /^ def atexit(self):$/;" m class:finalize +atexit Lib/weakref.py /^ def atexit(self, value):$/;" m class:finalize +atexit_callback Include/internal/pycore_atexit.h /^typedef struct atexit_callback {$/;" s +atexit_callback Include/internal/pycore_atexit.h /^} atexit_callback;$/;" t typeref:struct:atexit_callback +atexit_callbackfunc Include/internal/pycore_atexit.h /^typedef void (*atexit_callbackfunc)(void);$/;" t +atexit_callfuncs Modules/atexitmodule.c /^atexit_callfuncs(struct atexit_state *state)$/;" f file: +atexit_cleanup Modules/atexitmodule.c /^atexit_cleanup(struct atexit_state *state)$/;" f file: +atexit_clear Modules/atexitmodule.c /^atexit_clear(PyObject *module, PyObject *unused)$/;" f file: +atexit_data Modules/_testcapimodule.c /^struct atexit_data {$/;" s file: +atexit_datacallbackfunc Include/cpython/pylifecycle.h /^typedef void (*atexit_datacallbackfunc)(void *);$/;" t +atexit_delete_cb Modules/atexitmodule.c /^atexit_delete_cb(struct atexit_state *state, int i)$/;" f file: +atexit_methods Modules/atexitmodule.c /^static PyMethodDef atexit_methods[] = {$/;" v file: +atexit_ncallbacks Modules/atexitmodule.c /^atexit_ncallbacks(PyObject *module, PyObject *unused)$/;" f file: +atexit_py_callback Include/internal/pycore_atexit.h /^} atexit_py_callback;$/;" t typeref:struct:__anon122 +atexit_register Modules/atexitmodule.c /^atexit_register(PyObject *module, PyObject *args, PyObject *kwargs)$/;" f file: +atexit_run_exitfuncs Modules/atexitmodule.c /^atexit_run_exitfuncs(PyObject *module, PyObject *unused)$/;" f file: +atexit_state Include/internal/pycore_atexit.h /^struct atexit_state {$/;" s +atexit_unregister Modules/atexitmodule.c /^atexit_unregister(PyObject *module, PyObject *func)$/;" f file: +atexitmodule Modules/atexitmodule.c /^static struct PyModuleDef atexitmodule = {$/;" v typeref:struct:PyModuleDef file: +atexitmodule_slots Modules/atexitmodule.c /^static PyModuleDef_Slot atexitmodule_slots[] = {$/;" v file: +atfork_func Lib/test/support/__init__.py /^ def atfork_func():$/;" f function:late_deletion.search_func +athrow Lib/_collections_abc.py /^ async def athrow(self, typ, val=None, tb=None):$/;" m class:AsyncGenerator +athrow Lib/test/test_collections.py /^ async def athrow(self, *args): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.IgnoreGeneratorExit +athrow Lib/test/test_collections.py /^ async def athrow(self, *args): raise ValueError$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.FailOnClose +athrow Lib/test/test_collections.py /^ async def athrow(self, typ, val=None, tb=None): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.Gen +athrow Lib/test/test_collections.py /^ async def athrow(self, typ, val=None, tb=None):$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.MinimalAGen +athrow Lib/test/test_collections.py /^ def athrow(self, typ, val=None, tb=None): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen1 +athrow Lib/test/test_collections.py /^ def athrow(self, typ, val=None, tb=None): pass$/;" m class:TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen3 +athrow Lib/test/test_typing.py /^ def athrow(self, typ, val=None, tb=None):$/;" m class:CollectionsAbcTests.test_subclassing_async_generator.G +atime_ns Modules/posixmodule.c /^ long atime_ns;$/;" m struct:__anon479 file: +atime_s Modules/posixmodule.c /^ time_t atime_s;$/;" m struct:__anon479 file: +atof Lib/locale.py /^def atof(string, func=float):$/;" f +atoi Lib/locale.py /^def atoi(string):$/;" f +atom Tools/peg_generator/pegen/grammar_parser.py /^ def atom(self) -> Optional[Plain]:$/;" m class:GeneratedParser +atom_rule Parser/parser.c /^atom_rule(Parser *p)$/;" f file: +atom_type Parser/parser.c 220;" d file: +atomp Lib/test/test_buffer.py /^def atomp(lst):$/;" f +attId Modules/expat/xmlparse.c /^ const struct attribute_id *attId;$/;" m struct:binding typeref:struct:binding::attribute_id file: +attach Lib/email/message.py /^ def attach(self, payload):$/;" m class:Message +attach Lib/email/mime/nonmultipart.py /^ def attach(self, payload):$/;" m class:MIMENonMultipart +attach Lib/idlelib/configdialog.py /^ def attach(self):$/;" m class:VarTrace +attach Lib/tkinter/dnd.py /^ def attach(self, canvas, x=10, y=10):$/;" m class:Icon +attach_loop Lib/asyncio/unix_events.py /^ def attach_loop(self, loop):$/;" m class:AbstractChildWatcher +attach_loop Lib/asyncio/unix_events.py /^ def attach_loop(self, loop):$/;" m class:BaseChildWatcher +attach_loop Lib/asyncio/unix_events.py /^ def attach_loop(self, loop):$/;" m class:MultiLoopChildWatcher +attach_loop Lib/asyncio/unix_events.py /^ def attach_loop(self, loop):$/;" m class:PidfdChildWatcher +attach_loop Lib/asyncio/unix_events.py /^ def attach_loop(self, loop):$/;" m class:ThreadedChildWatcher +attach_mock Lib/unittest/mock.py /^ def attach_mock(self, mock, attribute):$/;" m class:NonCallableMock +attach_widget Lib/tkinter/tix.py /^ def attach_widget(self, widget):$/;" m class:ResizeHandle +attempt Lib/test/test_unittest/testmock/testmock.py /^ def attempt():$/;" f function:MockTest.test_mock_open_write +attlist0 Modules/expat/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4, attlist0, attlist1,$/;" v file: +attlist0 Modules/expat/xmlrole.c /^attlist0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist1 Modules/expat/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4, attlist0, attlist1,$/;" v file: +attlist1 Modules/expat/xmlrole.c /^attlist1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist2 Modules/expat/xmlrole.c /^ attlist2, attlist3, attlist4, attlist5, attlist6, attlist7, attlist8,$/;" v file: +attlist2 Modules/expat/xmlrole.c /^attlist2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist3 Modules/expat/xmlrole.c /^ attlist2, attlist3, attlist4, attlist5, attlist6, attlist7, attlist8,$/;" v file: +attlist3 Modules/expat/xmlrole.c /^attlist3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist4 Modules/expat/xmlrole.c /^ attlist2, attlist3, attlist4, attlist5, attlist6, attlist7, attlist8,$/;" v file: +attlist4 Modules/expat/xmlrole.c /^attlist4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist5 Modules/expat/xmlrole.c /^ attlist2, attlist3, attlist4, attlist5, attlist6, attlist7, attlist8,$/;" v file: +attlist5 Modules/expat/xmlrole.c /^attlist5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist6 Modules/expat/xmlrole.c /^ attlist2, attlist3, attlist4, attlist5, attlist6, attlist7, attlist8,$/;" v file: +attlist6 Modules/expat/xmlrole.c /^attlist6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist7 Modules/expat/xmlrole.c /^ attlist2, attlist3, attlist4, attlist5, attlist6, attlist7, attlist8,$/;" v file: +attlist7 Modules/expat/xmlrole.c /^attlist7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist8 Modules/expat/xmlrole.c /^ attlist2, attlist3, attlist4, attlist5, attlist6, attlist7, attlist8,$/;" v file: +attlist8 Modules/expat/xmlrole.c /^attlist8(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist9 Modules/expat/xmlrole.c /^ attlist9, element0, element1, element2, element3, element4, element5,$/;" v file: +attlist9 Modules/expat/xmlrole.c /^attlist9(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +attlist_decl_handler Lib/xml/dom/expatbuilder.py /^ def attlist_decl_handler(self, elem, name, type, default, required):$/;" m class:ExpatBuilder +attr Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_attr_destroy(pthread_attr_t *attr);$/;" v +attr Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_attr_init(pthread_attr_t *attr);$/;" v +attr Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_condattr_init(pthread_condattr_t *attr);$/;" v +attr Include/internal/pycore_ast.h /^ identifier attr;$/;" m struct:_expr::__anon77::__anon98 +attr Include/internal/pycore_ast_state.h /^ PyObject *attr;$/;" m struct:ast_state +attr Lib/importlib/metadata/__init__.py /^ def attr(self):$/;" m class:EntryPoint +attr Lib/test/test_descr.py /^ attr = Descr()$/;" v class:.test_vicious_descriptor_nonsense.C +attr Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py /^attr = 'both_portions foo one'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py /^attr = 'both_portions foo two'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py /^attr = 'in module'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py /^attr = 'portion1 foo one'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py /^attr = 'portion1 foo one'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py /^attr = 'portion2 foo two'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py /^attr = 'parent child one'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py /^attr = 'parent child two'$/;" v +attr Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py /^attr = 'parent child three'$/;" v +attr Lib/test/test_inspect.py /^ attr = 'foo'$/;" v class:TestGetattrStatic.test_metaclass.meta +attr Lib/test/test_pydoc.py /^ attr = Descr()$/;" v class:TestDescriptions.test_custom_data_descriptor.X +attr Lib/test/test_pydoc.py /^ attr = Descr()$/;" v class:TestDescriptions.test_custom_non_data_descriptor.X +attr Lib/test/test_subclassinit.py /^ attr = Descriptor()$/;" v class:Test.test_set_name_error.Descriptor.NotGoingToWork +attr Lib/test/test_subclassinit.py /^ attr = Descriptor()$/;" v class:Test.test_set_name_wrong.Descriptor.NotGoingToWork +attr Lib/test/test_typing.py /^ attr = CustomDescriptor()$/;" v class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.D +attr Lib/test/test_typing.py /^ attr = CustomDescriptor()$/;" v class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.D +attr Lib/test/test_typing.py /^ def attr(self) -> T: ...$/;" m class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.MethodPG +attr Lib/test/test_typing.py /^ def attr(self) -> T: ...$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.MethodPG +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.MethodP +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.P +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.PG +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.BadP +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.BadPG +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.MethodP +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.P +attr Lib/test/test_typing.py /^ def attr(self): ...$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.PG +attr Lib/test/test_typing.py /^ def attr(self):$/;" m class:ProtocolTests.test_protocols_isinstance_attribute_access_with_side_effects.C +attr Lib/test/test_typing.py /^ def attr(self):$/;" m class:ProtocolTests.test_protocols_isinstance_properties_and_descriptors.C +attr Lib/test/test_unittest/testmock/testhelpers.py /^ attr = SomeClass()$/;" v class:SpecSignatureTest.test_attributes.Sub +attr Lib/test/test_unittest/testmock/testhelpers.py /^ attr = SomeClass()$/;" v class:SpecSignatureTest.test_method_calls.Sub +attr Lib/test/test_unittest/testmock/testhelpers.py /^ attr = SomeClass()$/;" v class:SpecSignatureTest.test_spec_set.Sub +attr Lib/test/test_unittest/testmock/testhelpers.py /^ attr = {}$/;" v class:SpecSignatureTest.test_builtin_functions_types.BuiltinSubclass +attr Lib/test/test_unittest/testmock/testhelpers.py /^ attr = {}$/;" v class:SpecSignatureTest.test_magic_methods.BuiltinSubclass +attr Modules/_operator.c /^ PyObject *attr;$/;" m struct:__anon475 file: +attr_chain Lib/lib2to3/fixer_util.py /^def attr_chain(obj, attr):$/;" f +attr_exceptions Objects/genericaliasobject.c /^static const char* const attr_exceptions[] = {$/;" v file: +attr_matches Lib/rlcompleter.py /^ def attr_matches(self, text):$/;" m class:Completer +attr_raw Parser/parser.c /^attr_raw(Parser *p)$/;" f file: +attr_rule Parser/parser.c /^attr_rule(Parser *p)$/;" f file: +attr_t Modules/_cursesmodule.c /^typedef chtype attr_t; \/* No attr_t type is available *\/$/;" t file: +attr_type Parser/parser.c 163;" d file: +attrfind_tolerant Lib/html/parser.py /^attrfind_tolerant = re.compile($/;" v +attrgetter Lib/operator.py /^class attrgetter:$/;" c +attrgetter_args Modules/_operator.c /^attrgetter_args(attrgetterobject *ag)$/;" f file: +attrgetter_call Modules/_operator.c /^attrgetter_call(attrgetterobject *ag, PyObject *args, PyObject *kw)$/;" f file: +attrgetter_call_impl Modules/_operator.c /^attrgetter_call_impl(attrgetterobject *ag, PyObject *obj)$/;" f file: +attrgetter_clear Modules/_operator.c /^attrgetter_clear(attrgetterobject *ag)$/;" f file: +attrgetter_dealloc Modules/_operator.c /^attrgetter_dealloc(attrgetterobject *ag)$/;" f file: +attrgetter_members Modules/_operator.c /^static PyMemberDef attrgetter_members[] = {$/;" v file: +attrgetter_methods Modules/_operator.c /^static PyMethodDef attrgetter_methods[] = {$/;" v file: +attrgetter_new Modules/_operator.c /^attrgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +attrgetter_reduce Modules/_operator.c /^attrgetter_reduce(attrgetterobject *ag, PyObject *Py_UNUSED(ignored))$/;" f file: +attrgetter_repr Modules/_operator.c /^attrgetter_repr(attrgetterobject *ag)$/;" f file: +attrgetter_traverse Modules/_operator.c /^attrgetter_traverse(attrgetterobject *ag, visitproc visit, void *arg)$/;" f file: +attrgetter_type Modules/_operator.c /^ PyObject *attrgetter_type;$/;" m struct:__anon473 file: +attrgetter_type_slots Modules/_operator.c /^static PyType_Slot attrgetter_type_slots[] = {$/;" v file: +attrgetter_type_spec Modules/_operator.c /^static PyType_Spec attrgetter_type_spec = {$/;" v file: +attrgetter_vectorcall Modules/_operator.c /^attrgetter_vectorcall(PyObject *ag, PyObject *const *args, size_t nargsf, PyObject *kwnames)$/;" f file: +attrgetterobject Modules/_operator.c /^} attrgetterobject;$/;" t typeref:struct:__anon475 file: +attrib Lib/xml/etree/ElementTree.py /^ attrib = None$/;" v class:Element +attrib Modules/_elementtree.c /^ PyObject* attrib;$/;" m struct:__anon382 file: +attribs Lib/test/test_contextlib.py /^ def attribs(**kw):$/;" f function:._create_contextmanager_attribs +attribs Lib/test/test_contextlib_async.py /^ def attribs(**kw):$/;" f function:AsyncContextManagerTestCase._create_contextmanager_attribs +attribute Lib/test/test_opcache.py /^ attribute = Descriptor()$/;" v class:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization.Metaclass +attribute Lib/test/test_opcache.py /^ attribute = Descriptor()$/;" v class:TestLoadMethodCache.test_descriptor_added_after_optimization.Class +attribute Lib/test/test_opcache.py /^ attribute = Descriptor()$/;" v class:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization.Metaclass +attribute Lib/test/test_opcache.py /^ attribute = False$/;" v class:TestLoadAttrCache.test_metaclass_del_descriptor_after_optimization.Class +attribute Lib/test/test_opcache.py /^ attribute = False$/;" v class:TestLoadAttrCache.test_metaclass_descriptor_shadows_class_attribute.Class +attribute Lib/test/test_opcache.py /^ attribute = False$/;" v class:TestLoadAttrCache.test_metaclass_getattribute.Class +attribute Lib/test/test_opcache.py /^ attribute = True$/;" v class:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization.Class +attribute Lib/test/test_opcache.py /^ attribute = True$/;" v class:TestLoadAttrCache.test_metaclass_set_descriptor_after_optimization.Class +attribute Lib/test/test_opcache.py /^ def attribute():$/;" m class:TestLoadMethodCache.test_metaclass_del_descriptor_after_optimization.Class +attribute Lib/test/test_opcache.py /^ def attribute():$/;" m class:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization.Class +attribute Lib/test/test_opcache.py /^ def attribute():$/;" m class:TestLoadMethodCache.test_metaclass_descriptor_shadows_class_attribute.Class +attribute Lib/test/test_opcache.py /^ def attribute():$/;" m class:TestLoadMethodCache.test_metaclass_getattribute.Class +attribute Lib/test/test_opcache.py /^ def attribute():$/;" m class:TestLoadMethodCache.test_metaclass_set_descriptor_after_optimization.Class +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadAttrCache.test_metaclass_del_descriptor_after_optimization.Metaclass +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadAttrCache.test_metaclass_descriptor_shadows_class_attribute.Metaclass +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadAttrCache.test_metaclass_swap.NewMetaclass +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadAttrCache.test_metaclass_swap.OldMetaclass +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadMethodCache.test_metaclass_del_descriptor_after_optimization.Metaclass +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadMethodCache.test_metaclass_descriptor_shadows_class_attribute.Metaclass +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadMethodCache.test_metaclass_swap.NewMetaclass +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" m class:TestLoadMethodCache.test_metaclass_swap.OldMetaclass +attribute Lib/test/test_opcache.py /^ def attribute():$/;" f function:TestLoadMethodCache.test_descriptor_added_after_optimization +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" f function:TestLoadAttrCache.test_metaclass_set_descriptor_after_optimization +attribute Lib/test/test_opcache.py /^ def attribute(self):$/;" f function:TestLoadMethodCache.test_metaclass_set_descriptor_after_optimization +attribute Lib/test/test_unittest/testmock/testmock.py /^ attribute = Mock()$/;" v class:MockTest.test_wraps_attributes.Real +attribute Lib/test/test_unittest/testmock/testpatch.py /^ attribute = sentinel.Original$/;" v class:PatchTest.test_multiple_patchobject.Something +attribute Lib/test/test_unittest/testmock/testpatch.py /^ attribute = sentinel.Original$/;" v class:PatchTest.test_patch_class_decorator.Something +attribute Lib/test/test_unittest/testmock/testpatch.py /^ attribute = sentinel.Original$/;" v class:PatchTest.test_patchobject_class_decorator.Something +attribute Lib/test/test_unittest/testmock/testpatch.py /^ attribute = sentinel.Original$/;" v class:PatchTest.test_patchobject_twice.Something +attribute Lib/test/test_unittest/testmock/testpatch.py /^ attribute = sentinel.Original$/;" v class:PatchTest.test_patchobject_with_none.Something +attribute Lib/test/test_unittest/testmock/testpatch.py /^ attribute = sentinel.Original$/;" v class:PatchTest.test_single_patchobject.Something +attribute Modules/_testcapimodule.c /^ char *attribute;$/;" m struct:__anon588 file: +attribute1 Lib/test/test_support.py /^ attribute1 = None$/;" v class:TestSupport.RefClass +attribute2 Lib/test/test_support.py /^ attribute2 = None$/;" v class:TestSupport.OtherClass +attribute2 Lib/test/test_support.py /^ attribute2 = None$/;" v class:TestSupport.RefClass +attribute3 Lib/test/test_support.py /^ attribute3 = None$/;" v class:TestSupport.OtherClass +attributeIds Modules/expat/xmlparse.c /^ HASH_TABLE attributeIds;$/;" m struct:__anon617 file: +attributeValueTok Modules/expat/xmltok_impl.c /^PREFIX(attributeValueTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +attribute_id Modules/expat/xmlparse.c /^typedef struct attribute_id {$/;" s file: +attribute_list Modules/_winapi.c /^ LPPROC_THREAD_ATTRIBUTE_LIST attribute_list;$/;" m struct:__anon536 file: +attribute_name Lib/unittest/mock.py /^ attribute_name = None$/;" v class:_patch +attribute_special_defaults Parser/asdl_c.py /^ attribute_special_defaults = {$/;" v class:Obj2ModVisitor +attributes Lib/test/test_genericpath.py /^ attributes = []$/;" v class:GenericTest +attributes Lib/test/test_ntpath.py /^ attributes = ['relpath']$/;" v class:NtCommonTest +attributes Lib/test/test_posixpath.py /^ attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']$/;" v class:PosixCommonTest +attributes Lib/tkinter/__init__.py /^ attributes = wm_attributes$/;" v class:Wm +attributes Lib/xml/dom/minidom.py /^ attributes = None$/;" v class:Attr +attributes Lib/xml/dom/minidom.py /^ attributes = None$/;" v class:Childless +attributes Lib/xml/dom/minidom.py /^ attributes = None$/;" v class:Document +attributes Lib/xml/dom/minidom.py /^ attributes = None$/;" v class:DocumentFragment +attributes Lib/xml/dom/minidom.py /^ attributes = None$/;" v class:Entity +attributes Lib/xml/dom/minidom.py /^ attributes = None$/;" v class:Text +attributes_from_dir Modules/posixmodule.c /^attributes_from_dir(LPCWSTR pszFile, BY_HANDLE_FILE_INFORMATION *info, ULONG *reparse_tag)$/;" f file: +attributes_to_mode Python/fileutils.c /^attributes_to_mode(DWORD attr)$/;" f file: +attrs Lib/test/test_lib2to3/test_fixers.py /^ attrs = ["closure", "doc", "name", "defaults", "code", "globals", "dict"]$/;" v class:Test_funcattrs +attrs Lib/test/test_lib2to3/test_fixers.py /^ attrs = ["func", "self", "class"]$/;" v class:Test_methodattrs +attrs_wo_objs Lib/test/test_inspect.py /^def attrs_wo_objs(cls):$/;" f +atypes Modules/_ctypes/ctypes.h /^ ffi_type *atypes[1];$/;" m struct:__anon492 +audioop Lib/test/test_aifc.py /^audioop = import_deprecated("audioop")$/;" v +audioop Lib/test/test_audioop.py /^audioop = warnings_helper.import_deprecated("audioop")$/;" v +audioop Lib/test/test_ossaudiodev.py /^audioop = warnings_helper.import_deprecated('audioop')$/;" v +audioop Lib/test/test_sunau.py /^audioop = warnings_helper.import_deprecated("audioop")$/;" v +audioop_add Modules/clinic/audioop.c.h /^audioop_add(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_add_impl Modules/audioop.c /^audioop_add_impl(PyObject *module, Py_buffer *fragment1,$/;" f file: +audioop_adpcm2lin Modules/clinic/audioop.c.h /^audioop_adpcm2lin(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_adpcm2lin_impl Modules/audioop.c /^audioop_adpcm2lin_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_alaw2lin Modules/clinic/audioop.c.h /^audioop_alaw2lin(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_alaw2lin_impl Modules/audioop.c /^audioop_alaw2lin_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_avg Modules/clinic/audioop.c.h /^audioop_avg(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_avg_impl Modules/audioop.c /^audioop_avg_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_avgpp Modules/clinic/audioop.c.h /^audioop_avgpp(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_avgpp_impl Modules/audioop.c /^audioop_avgpp_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_bias Modules/clinic/audioop.c.h /^audioop_bias(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_bias_impl Modules/audioop.c /^audioop_bias_impl(PyObject *module, Py_buffer *fragment, int width, int bias)$/;" f file: +audioop_byteswap Modules/clinic/audioop.c.h /^audioop_byteswap(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_byteswap_impl Modules/audioop.c /^audioop_byteswap_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_check_parameters Modules/audioop.c /^audioop_check_parameters(PyObject *module, Py_ssize_t len, int size)$/;" f file: +audioop_check_size Modules/audioop.c /^audioop_check_size(PyObject *module, int size)$/;" f file: +audioop_clear Modules/audioop.c /^audioop_clear(PyObject *module)$/;" f file: +audioop_cross Modules/clinic/audioop.c.h /^audioop_cross(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_cross_impl Modules/audioop.c /^audioop_cross_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_exec Modules/audioop.c /^audioop_exec(PyObject* module)$/;" f file: +audioop_findfactor Modules/clinic/audioop.c.h /^audioop_findfactor(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_findfactor_impl Modules/audioop.c /^audioop_findfactor_impl(PyObject *module, Py_buffer *fragment,$/;" f file: +audioop_findfit Modules/clinic/audioop.c.h /^audioop_findfit(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_findfit_impl Modules/audioop.c /^audioop_findfit_impl(PyObject *module, Py_buffer *fragment,$/;" f file: +audioop_findmax Modules/clinic/audioop.c.h /^audioop_findmax(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_findmax_impl Modules/audioop.c /^audioop_findmax_impl(PyObject *module, Py_buffer *fragment,$/;" f file: +audioop_free Modules/audioop.c /^audioop_free(void *module) {$/;" f file: +audioop_getsample Modules/clinic/audioop.c.h /^audioop_getsample(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_getsample_impl Modules/audioop.c /^audioop_getsample_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_lin2adpcm Modules/clinic/audioop.c.h /^audioop_lin2adpcm(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_lin2adpcm_impl Modules/audioop.c /^audioop_lin2adpcm_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_lin2alaw Modules/clinic/audioop.c.h /^audioop_lin2alaw(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_lin2alaw_impl Modules/audioop.c /^audioop_lin2alaw_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_lin2lin Modules/clinic/audioop.c.h /^audioop_lin2lin(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_lin2lin_impl Modules/audioop.c /^audioop_lin2lin_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_lin2ulaw Modules/clinic/audioop.c.h /^audioop_lin2ulaw(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_lin2ulaw_impl Modules/audioop.c /^audioop_lin2ulaw_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_max Modules/clinic/audioop.c.h /^audioop_max(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_max_impl Modules/audioop.c /^audioop_max_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_maxpp Modules/clinic/audioop.c.h /^audioop_maxpp(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_maxpp_impl Modules/audioop.c /^audioop_maxpp_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_methods Modules/audioop.c /^static PyMethodDef audioop_methods[] = {$/;" v file: +audioop_minmax Modules/clinic/audioop.c.h /^audioop_minmax(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_minmax_impl Modules/audioop.c /^audioop_minmax_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_mul Modules/clinic/audioop.c.h /^audioop_mul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_mul_impl Modules/audioop.c /^audioop_mul_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_ratecv Modules/clinic/audioop.c.h /^audioop_ratecv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_ratecv_impl Modules/audioop.c /^audioop_ratecv_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_reverse Modules/clinic/audioop.c.h /^audioop_reverse(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_reverse_impl Modules/audioop.c /^audioop_reverse_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_rms Modules/clinic/audioop.c.h /^audioop_rms(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_rms_impl Modules/audioop.c /^audioop_rms_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioop_slots Modules/audioop.c /^static PyModuleDef_Slot audioop_slots[] = {$/;" v file: +audioop_state Modules/audioop.c /^} audioop_state;$/;" t typeref:struct:__anon558 file: +audioop_tomono Modules/clinic/audioop.c.h /^audioop_tomono(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_tomono_impl Modules/audioop.c /^audioop_tomono_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_tostereo Modules/clinic/audioop.c.h /^audioop_tostereo(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_tostereo_impl Modules/audioop.c /^audioop_tostereo_impl(PyObject *module, Py_buffer *fragment, int width,$/;" f file: +audioop_traverse Modules/audioop.c /^audioop_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +audioop_ulaw2lin Modules/clinic/audioop.c.h /^audioop_ulaw2lin(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +audioop_ulaw2lin_impl Modules/audioop.c /^audioop_ulaw2lin_impl(PyObject *module, Py_buffer *fragment, int width)$/;" f file: +audioopmodule Modules/audioop.c /^static PyModuleDef audioopmodule;$/;" v file: +audioopmodule Modules/audioop.c /^static struct PyModuleDef audioopmodule = {$/;" v typeref:struct:PyModuleDef file: +audit_event_list Doc/tools/extensions/pyspecific.py /^class audit_event_list(nodes.General, nodes.Element):$/;" c +audit_events_merge Doc/tools/extensions/pyspecific.py /^def audit_events_merge(app, env, docnames, other):$/;" f +audit_events_purge Doc/tools/extensions/pyspecific.py /^def audit_events_purge(app, env, docname):$/;" f +audit_hooks Include/internal/pycore_interp.h /^ PyObject *audit_hooks;$/;" m struct:_is +audit_hooks Include/internal/pycore_runtime.h /^ } audit_hooks;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::__anon162 +aug Lib/test/test_compile.py /^ def aug():$/;" f function:TestSpecifics.test_uses_slice_instructions +aug_store_attr Lib/test/test_compile.py /^ def aug_store_attr():$/;" f function:TestSpecifics.test_lineno_attribute +aug_test Lib/test/test_augassign.py /^ class aug_test:$/;" c function:AugAssignTest.testCustomMethods1 +aug_test2 Lib/test/test_augassign.py /^ class aug_test2(aug_test):$/;" c function:AugAssignTest.testCustomMethods1 +aug_test3 Lib/test/test_augassign.py /^ class aug_test3(aug_test):$/;" c function:AugAssignTest.testCustomMethods1 +aug_test4 Lib/test/test_augassign.py /^ class aug_test4(aug_test3):$/;" c function:AugAssignTest.testCustomMethods1 +augassign_rule Parser/parser.c /^augassign_rule(Parser *p)$/;" f file: +augassign_type Parser/parser.c 94;" d file: +augmented Lib/test/test_sort.py /^ augmented = [(e, e.index) for e in s]$/;" v class:TestBase.testStressfully.Stable +auth Lib/ftplib.py /^ def auth(self):$/;" m class:.FTP_TLS +auth Lib/smtplib.py /^ def auth(self, mechanism, authobject, *, initial_response_ok=True):$/;" m class:SMTP +auth_buggy Lib/test/test_smtplib.py /^ def auth_buggy(challenge=None):$/;" f function:SMTPSimTests.testAUTH_BUGGY +auth_cram_md5 Lib/smtplib.py /^ def auth_cram_md5(self, challenge=None):$/;" m class:SMTP +auth_header Lib/urllib/request.py /^ auth_header = 'Authorization'$/;" v class:HTTPBasicAuthHandler +auth_header Lib/urllib/request.py /^ auth_header = 'Authorization'$/;" v class:HTTPDigestAuthHandler +auth_header Lib/urllib/request.py /^ auth_header = 'Proxy-Authorization'$/;" v class:ProxyDigestAuthHandler +auth_header Lib/urllib/request.py /^ auth_header = 'Proxy-authorization'$/;" v class:ProxyBasicAuthHandler +auth_login Lib/smtplib.py /^ def auth_login(self, challenge=None):$/;" m class:SMTP +auth_plain Lib/smtplib.py /^ def auth_plain(self, challenge=None):$/;" m class:SMTP +authenticate Lib/imaplib.py /^ def authenticate(self, mechanism, authobject):$/;" m class:IMAP4 +authenticated_user Lib/test/test_smtplib.py /^ authenticated_user = None$/;" v class:SimSMTPChannel +authenticators Lib/netrc.py /^ def authenticators(self, host):$/;" m class:netrc +authkey Lib/multiprocessing/process.py /^ def authkey(self):$/;" m class:BaseProcess +authkey Lib/multiprocessing/process.py /^ def authkey(self, authkey):$/;" m class:BaseProcess +authkey Lib/test/_test_multiprocessing.py /^ authkey = b'supadupasecretkey'$/;" v class:ChallengeResponseTest +author Lib/test/test_decorators.py /^ def author(name):$/;" m class:MiscDecorators +author Lib/test/test_enum.py /^ author = 'author'$/;" v class:TestStrEnumClass.test_shadowed_attr.Book +authorizer Lib/test/test_sqlite3/test_dbapi.py /^ def authorizer(*args):$/;" f function:ClosedConTests.test_closed_set_authorizer +authorizer_callback Modules/_sqlite/connection.c /^authorizer_callback(void *ctx, int action, const char *arg1,$/;" f file: +authorizer_cb Lib/test/test_sqlite3/test_userfunctions.py /^ def authorizer_cb(action, arg1, arg2, dbname, source):$/;" m class:AuthorizerIllegalTypeTests +authorizer_cb Lib/test/test_sqlite3/test_userfunctions.py /^ def authorizer_cb(action, arg1, arg2, dbname, source):$/;" m class:AuthorizerLargeIntegerTests +authorizer_cb Lib/test/test_sqlite3/test_userfunctions.py /^ def authorizer_cb(action, arg1, arg2, dbname, source):$/;" m class:AuthorizerRaiseExceptionTests +authorizer_cb Lib/test/test_sqlite3/test_userfunctions.py /^ def authorizer_cb(action, arg1, arg2, dbname, source):$/;" m class:AuthorizerTests +authorizer_ctx Modules/_sqlite/connection.h /^ callback_context *authorizer_ctx;$/;" m struct:__anon359 +auto Lib/enum.py /^class auto:$/;" c +autoInterpreterState Include/internal/pycore_runtime.h /^ PyInterpreterState *autoInterpreterState;$/;" m struct:_gilstate_runtime_state +autoTSSkey Include/internal/pycore_runtime.h /^ Py_tss_t autoTSSkey;$/;" m struct:pyruntimestate +auto_enum Lib/test/test_enum.py /^ class auto_enum(type(Enum)):$/;" c function:TestSpecial.test_multiple_mixin_mro +auto_open Lib/http/client.py /^ auto_open = 1$/;" v class:HTTPConnection +auto_spec Lib/test/test_unittest/testmock/testmock.py /^ auto_spec = None$/;" v class:Typos +autocommit Modules/_sqlite/connection.h /^ enum autocommit_mode autocommit;$/;" m struct:__anon359 typeref:enum:__anon359::autocommit_mode +autocommit_converter Modules/_sqlite/connection.c /^autocommit_converter(PyObject *val, enum autocommit_mode *result)$/;" f file: +autocommit_mode Modules/_sqlite/connection.h /^enum autocommit_mode {$/;" g +autocomplete_event Lib/idlelib/autocomplete.py /^ def autocomplete_event(self, event):$/;" m class:AutoComplete +autonumber_state_error Objects/stringlib/unicode_format.h /^autonumber_state_error(AutoNumberState state, int field_name_is_empty)$/;" f +autoproperty Lib/test/test_descr.py /^ class autoproperty(type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +autorange Lib/test/test_timeit.py /^ def autorange(self, seconds_per_increment=1\/1024, callback=None):$/;" m class:TestTimeit +autorange Lib/timeit.py /^ def autorange(self, callback=None):$/;" m class:Timer +autosetmode Lib/tkinter/tix.py /^ def autosetmode(self):$/;" m class:CheckList +autosetmode Lib/tkinter/tix.py /^ def autosetmode(self):$/;" m class:Tree +autospect Lib/test/test_unittest/testmock/testmock.py /^ autospect = None$/;" v class:Typos +autosuper Lib/test/test_descr.py /^ class autosuper(type):$/;" c function:ClassPropertiesAndMethods.test_metaclass +avail_in_real Modules/zlibmodule.c /^ Py_ssize_t avail_in_real;$/;" m struct:__anon307 file: +available_timezones Lib/zoneinfo/__init__.py /^available_timezones = _tzpath.available_timezones$/;" v +available_timezones Lib/zoneinfo/_tzpath.py /^def available_timezones():$/;" f +awaitObject Modules/_testcapimodule.c /^} awaitObject;$/;" t typeref:struct:__anon592 file: +awaitObject_await Modules/_testcapimodule.c /^awaitObject_await(awaitObject *ao)$/;" f file: +awaitObject_dealloc Modules/_testcapimodule.c /^awaitObject_dealloc(awaitObject *ao)$/;" f file: +awaitObject_new Modules/_testcapimodule.c /^awaitObject_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +awaitType Modules/_testcapimodule.c /^static PyTypeObject awaitType = {$/;" v file: +awaitType_as_async Modules/_testcapimodule.c /^static PyAsyncMethods awaitType_as_async = {$/;" v file: +await_args Lib/unittest/mock.py /^ await_args = _delegating_property('await_args')$/;" v class:AsyncMockMixin +await_args_list Lib/unittest/mock.py /^ await_args_list = _delegating_property('await_args_list')$/;" v class:AsyncMockMixin +await_count Lib/unittest/mock.py /^ await_count = _delegating_property('await_count')$/;" v class:AsyncMockMixin +await_primary_rule Parser/parser.c /^await_primary_rule(Parser *p)$/;" f file: +await_primary_type Parser/parser.c 216;" d file: +awaitable Lib/test/test_asyncgen.py /^def awaitable(*, throw=False):$/;" f +awaitable Python/bytecodes.c /^static PyObject *aiter, *awaitable, *iterable, *w, *exc_value, *bc, *locals;$/;" v file: +awaitable_chain Lib/test/test_asyncio/test_eager_task_factory.py /^async def awaitable_chain(depth):$/;" f +aware_dt Lib/test/test_email/test_utils.py /^ aware_dt = datetime.datetime(*dateargs, tzinfo=tz)$/;" v class:DateTimeTests +b Lib/test/dtracedata/instance.py /^b = new_style_class()$/;" v +b Lib/test/test_bytes.py /^ b = bytearray(b'Now you see me...')$/;" v class:ByteArrayTest.test_mutating_index.Boom +b Lib/test/test_coroutines.py /^ b = wrap$/;" v class:CoroutineTest.test_await_9.foo.DB +b Lib/test/test_coroutines.py /^ async def b():$/;" f function:CoroutineTest.test_cr_await +b Lib/test/test_coroutines.py /^ async def b():$/;" f function:CoroutineTest.test_stack_in_coroutine_throw +b Lib/test/test_descr.py /^ b = B(3)$/;" v class:.test_restored_object_new.B +b Lib/test/test_enum.py /^ b = 2$/;" v class:TestSpecial.test_nested_classes_in_enum_are_members.Outer +b Lib/test/test_enum.py /^ b = 3$/;" v class:TestVerify.test_composite.Bizarre.Bizarre +b Lib/test/test_enum.py /^ b = 2$/;" v class:TestSpecial.test_nested_classes_in_enum_are_not_members.Outer +b Lib/test/test_enum.py /^ b = 2$/;" v class:TestSpecial.test_nested_classes_in_enum_with_member.Outer +b Lib/test/test_enum.py /^ b = 2$/;" v class:TestSpecial.test_nested_classes_in_enum_with_nonmember.Outer +b Lib/test/test_enum.py /^ b = 3$/;" v class:OldTestFlag.test_boundary.Bizarre +b Lib/test/test_enum.py /^ b = 3$/;" v class:OldTestIntFlag.test_boundary.Bizarre +b Lib/test/test_enum.py /^ b = 3$/;" v class:TestSpecial.test_multiple_mixin_mro.TestAutoInt +b Lib/test/test_enum.py /^ b = 3$/;" v class:TestSpecial.test_multiple_mixin_mro.TestAutoNumber +b Lib/test/test_enum.py /^ b = 3$/;" v class:TestVerify.test_composite.Bizarre +b Lib/test/test_enum.py /^ b = Bar$/;" v class:TestSpecial.test_enum_of_types.MyTypes2 +b Lib/test/test_enum.py /^ b = list[int]$/;" v class:TestSpecial.test_enum_of_generic_aliases.E +b Lib/test/test_enum.py /^ b = nonmember(Bar)$/;" v class:TestSpecial.test_enum_of_types_with_nonmember.MyTypes2 +b Lib/test/test_exceptions.py /^ b = _b$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle2.C +b Lib/test/test_exceptions.py /^ b = _b$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle3.E +b Lib/test/test_exceptions.py /^ b = b_$/;" v class:ExceptionTests.test_raise_does_not_create_context_chain_cycle.C +b Lib/test/test_funcattrs.py /^ def b(): return 12$/;" f function:FunctionPropertiesTest.test___code__ +b Lib/test/test_funcattrs.py /^ def b():$/;" f function:FuncAttrsTest.setUp +b Lib/test/test_functools.py /^ b = a$/;" v class:TestCachedProperty.test_reuse_different_names.ReusedCachedProperty +b Lib/test/test_functools.py /^ b = ComparatorNotImplemented(8)$/;" v class:TestTotalOrdering.test_type_error_when_not_implemented.ComparatorNotImplemented +b Lib/test/test_functools.py /^ b = ComparatorNotImplemented(9)$/;" v class:TestTotalOrdering.test_type_error_when_not_implemented.ComparatorNotImplemented +b Lib/test/test_generators.py /^ def b():$/;" f function:YieldFromTests.test_generator_gi_yieldfrom +b Lib/test/test_import/data/circular_imports/from_cycle1.py /^b = 1$/;" v +b Lib/test/test_scope.py /^ def b():$/;" f function:ScopeTests.testTopIsNotSignificant +b Lib/test/test_subclassinit.py /^ b = Descriptor()$/;" v class:Test.test_set_name_modifying_dict.A +b Lib/test/test_typing.py /^ def b(*args: *tuple[*Ts, int]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +b Lib/test/test_typing.py /^ def b(*args: Unpack[Tuple[int, ...]]): pass$/;" f function:TypeVarTupleTests.test_variadic_args_with_ellipsis_annotations_are_correct +b Modules/_collectionsmodule.c /^ block *b;$/;" m struct:__anon531 file: +b Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +b Modules/_ctypes/callproc.c /^ char b;$/;" m union:result file: +b Modules/_ctypes/ctypes.h /^ char b;$/;" m union:tagPyCArgObject::__anon496 +b Modules/_decimal/libmpdec/literature/fnt.py /^b = [1, 8, 0, 0]$/;" v +b Modules/arraymodule.c 1020;" d file: +b Modules/arraymodule.c 1043;" d file: +b Modules/arraymodule.c 883;" d file: +b Modules/arraymodule.c 904;" d file: +b Objects/listobject.c 525;" d file: +b Objects/listobject.c 549;" d file: +b Objects/listobject.c 642;" d file: +b Objects/listobject.c 724;" d file: +b Python/bytecodes.c /^static PyObject *orig, *excs, *update, *b, *fromlist, *level, *from;$/;" v file: +b16decode Lib/base64.py /^def b16decode(s, casefold=False):$/;" f +b16encode Lib/base64.py /^def b16encode(s):$/;" f +b1_drag_handler Lib/idlelib/sidebar.py /^ def b1_drag_handler(event):$/;" f function:BaseSideBar.bind_events +b1_enter_handler Lib/idlelib/sidebar.py /^ def b1_enter_handler(event):$/;" f function:BaseSideBar.bind_events +b1_leave_handler Lib/idlelib/sidebar.py /^ def b1_leave_handler(event):$/;" f function:BaseSideBar.bind_events +b1_mousedown_handler Lib/idlelib/sidebar.py /^ def b1_mousedown_handler(event):$/;" f function:BaseSideBar.bind_events +b1_mouseup_handler Lib/idlelib/sidebar.py /^ def b1_mouseup_handler(event):$/;" f function:BaseSideBar.bind_events +b1_set Lib/stringprep.py /^b1_set = set([173, 847, 6150, 6155, 6156, 6157, 8203, 8204, 8205, 8288, 65279] + list(range(65024,65040)))$/;" v +b2a_functions Lib/test/test_binascii.py /^b2a_functions = ['b2a_base64', 'b2a_hex', 'b2a_qp', 'b2a_uu',$/;" v +b2a_qp Lib/quopri.py /^ b2a_qp = None$/;" v +b2cratio Modules/_io/textio.c /^ double b2cratio;$/;" m struct:textio file: +b2d Python/dtoa.c /^b2d(Bigint *a, int *e)$/;" f file: +b3 Tools/unicode/mkstringprep.py /^b3 = sorted(b3_exceptions.items())$/;" v +b32decode Lib/base64.py /^def b32decode(s, casefold=False, map01=None):$/;" f +b32encode Lib/base64.py /^def b32encode(s):$/;" f +b32hexdecode Lib/base64.py /^def b32hexdecode(s, casefold=False):$/;" f +b32hexencode Lib/base64.py /^def b32hexencode(s):$/;" f +b3_exceptions Lib/stringprep.py /^b3_exceptions = {$/;" v +b3_exceptions Tools/unicode/mkstringprep.py /^b3_exceptions = {}$/;" v +b64decode Lib/base64.py /^def b64decode(s, altchars=None, validate=False):$/;" f +b64encode Lib/base64.py /^def b64encode(s, altchars=None):$/;" f +b85decode Lib/base64.py /^def b85decode(b):$/;" f +b85encode Lib/base64.py /^def b85encode(b, pad=False):$/;" f +bCRLF Lib/smtplib.py /^bCRLF = b"\\r\\n"$/;" v +b_array Include/internal/pycore_hamt.h /^ PyObject *b_array[1];$/;" m struct:__anon12 +b_base Modules/_ctypes/ctypes.h /^ CDataObject *b_base; \/* pointer to base object or NULL *\/$/;" m struct:__anon493 +b_base Modules/_ctypes/ctypes.h /^ CDataObject *b_base; \/* pointer to base object or NULL *\/$/;" m struct:tagCDataObject +b_bitmap Include/internal/pycore_hamt.h /^ uint32_t b_bitmap;$/;" m struct:__anon12 +b_check Lib/test/test_tempfile.py /^ b_check = re.compile(br"^[a-z0-9_-]{8}$")$/;" v class:BaseTestCase +b_cold Include/internal/pycore_flowgraph.h /^ unsigned b_cold : 1;$/;" m struct:_PyCfgBasicblock_ +b_except_handler Include/internal/pycore_flowgraph.h /^ unsigned b_except_handler : 1;$/;" m struct:_PyCfgBasicblock_ +b_exceptstack Include/internal/pycore_flowgraph.h /^ _PyCfgExceptStack *b_exceptstack;$/;" m struct:_PyCfgBasicblock_ +b_get Modules/_ctypes/cfield.c /^b_get(void *ptr, Py_ssize_t size)$/;" f file: +b_getitem Modules/arraymodule.c /^b_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +b_ialloc Include/internal/pycore_flowgraph.h /^ int b_ialloc;$/;" m struct:_PyCfgBasicblock_ +b_index Modules/_ctypes/ctypes.h /^ Py_ssize_t b_index; \/* index of this object into base's$/;" m struct:__anon493 +b_index Modules/_ctypes/ctypes.h /^ Py_ssize_t b_index; \/* index of this object into base's$/;" m struct:tagCDataObject +b_instr Include/internal/pycore_flowgraph.h /^ _PyCfgInstruction *b_instr;$/;" m struct:_PyCfgBasicblock_ +b_iused Include/internal/pycore_flowgraph.h /^ int b_iused;$/;" m struct:_PyCfgBasicblock_ +b_label Include/internal/pycore_flowgraph.h /^ _PyCfgJumpTargetLabel b_label;$/;" m struct:_PyCfgBasicblock_ +b_length Modules/_ctypes/ctypes.h /^ Py_ssize_t b_length; \/* number of references we need *\/$/;" m struct:__anon493 +b_length Modules/_ctypes/ctypes.h /^ Py_ssize_t b_length; \/* number of references we need *\/$/;" m struct:tagCDataObject +b_list Include/internal/pycore_flowgraph.h /^ struct _PyCfgBasicblock_ *b_list;$/;" m struct:_PyCfgBasicblock_ typeref:struct:_PyCfgBasicblock_::_PyCfgBasicblock_ +b_needsfree Modules/_ctypes/ctypes.h /^ int b_needsfree; \/* need _we_ free the memory? *\/$/;" m struct:__anon493 +b_needsfree Modules/_ctypes/ctypes.h /^ int b_needsfree; \/* need _we_ free the memory? *\/$/;" m struct:tagCDataObject +b_next Include/internal/pycore_flowgraph.h /^ struct _PyCfgBasicblock_ *b_next;$/;" m struct:_PyCfgBasicblock_ typeref:struct:_PyCfgBasicblock_::_PyCfgBasicblock_ +b_objects Modules/_ctypes/ctypes.h /^ PyObject *b_objects; \/* dictionary of references we need to keep, or Py_None *\/$/;" m struct:tagCDataObject +b_objects Modules/_ctypes/ctypes.h /^ PyObject *b_objects; \/* list of references we need to keep *\/$/;" m struct:__anon493 +b_offset Include/internal/pycore_flowgraph.h /^ int b_offset;$/;" m struct:_PyCfgBasicblock_ +b_predecessors Include/internal/pycore_flowgraph.h /^ int b_predecessors;$/;" m struct:_PyCfgBasicblock_ +b_preserve_lasti Include/internal/pycore_flowgraph.h /^ unsigned b_preserve_lasti : 1;$/;" m struct:_PyCfgBasicblock_ +b_ptr Modules/_ctypes/ctypes.h /^ char *b_ptr; \/* pointer to memory block *\/$/;" m struct:__anon493 +b_ptr Modules/_ctypes/ctypes.h /^ char *b_ptr; \/* pointer to memory block *\/$/;" m struct:tagCDataObject +b_set Modules/_ctypes/cfield.c /^b_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +b_setitem Modules/arraymodule.c /^b_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +b_size Lib/test/test_pydoc.py /^ b_size = A.a_size$/;" v class:PydocDocTest.test_method_aliases.B +b_size Modules/_ctypes/ctypes.h /^ Py_ssize_t b_size; \/* size of memory block in bytes *\/$/;" m struct:__anon493 +b_size Modules/_ctypes/ctypes.h /^ Py_ssize_t b_size; \/* size of memory block in bytes *\/$/;" m struct:tagCDataObject +b_startdepth Include/internal/pycore_flowgraph.h /^ int b_startdepth;$/;" m struct:_PyCfgBasicblock_ +b_unsafe_locals_mask Include/internal/pycore_flowgraph.h /^ uint64_t b_unsafe_locals_mask;$/;" m struct:_PyCfgBasicblock_ +b_value Modules/_ctypes/ctypes.h /^ union value b_value;$/;" m struct:__anon493 typeref:union:__anon493::value +b_value Modules/_ctypes/ctypes.h /^ union value b_value;$/;" m struct:tagCDataObject typeref:union:tagCDataObject::value +b_visited Include/internal/pycore_flowgraph.h /^ unsigned b_visited : 1;$/;" m struct:_PyCfgBasicblock_ +b_warm Include/internal/pycore_flowgraph.h /^ unsigned b_warm : 1;$/;" m struct:_PyCfgBasicblock_ +baba Lib/turtle.py /^ def baba(xdummy, ydummy):$/;" f function:.demo2 +back Lib/turtle.py /^ def back(self, distance):$/;" m class:TNavigator +backend Lib/test/test_dtrace.py /^ backend = DTraceBackend()$/;" v class:DTraceNormalTests +backend Lib/test/test_dtrace.py /^ backend = DTraceBackend()$/;" v class:DTraceOptimizedTests +backend Lib/test/test_dtrace.py /^ backend = None$/;" v class:TraceTests +backend Lib/test/test_dtrace.py /^ backend = SystemTapBackend()$/;" v class:SystemTapNormalTests +backend Lib/test/test_dtrace.py /^ backend = SystemTapBackend()$/;" v class:SystemTapOptimizedTests +background Lib/webbrowser.py /^ background = False$/;" v class:Elinks +background Lib/webbrowser.py /^ background = False$/;" v class:UnixBrowser +background Lib/webbrowser.py /^ background = True$/;" v class:Chrome +background Lib/webbrowser.py /^ background = True$/;" v class:Edge +background Lib/webbrowser.py /^ background = True$/;" v class:Epiphany +background Lib/webbrowser.py /^ background = True$/;" v class:Mozilla +background Lib/webbrowser.py /^ background = True$/;" v class:Opera +backslashreplace Objects/unicodeobject.c /^backslashreplace(_PyBytesWriter *writer, char *str,$/;" f file: +backslashreplace_errors Lib/codecs.py /^ backslashreplace_errors = None$/;" v +backslashreplace_errors Lib/codecs.py /^ backslashreplace_errors = lookup_error("backslashreplace")$/;" v +backslashreplace_errors Python/codecs.c /^static PyObject *backslashreplace_errors(PyObject *self, PyObject *exc)$/;" f file: +backup Tools/cases_generator/plexer.py /^ def backup(self) -> None:$/;" m class:PLexer +backward Lib/turtle.py /^ backward = back$/;" v class:TNavigator +bad Lib/test/test_robotparser.py /^ bad = ['\/another\/path?']$/;" v class:EmptyQueryStringTest +bad Lib/test/test_robotparser.py /^ bad = ['\/cyberworld\/map\/index.html', '\/', '\/tmp\/']$/;" v class:RejectAllRobotsTest +bad Lib/test/test_robotparser.py /^ bad = ['\/cyberworld\/map\/index.html', '\/tmp\/xxx', '\/foo.html']$/;" v class:UserAgentWildcardTest +bad Lib/test/test_robotparser.py /^ bad = ['\/cyberworld\/map\/index.html']$/;" v class:CrawlDelayAndCustomAgentTest +bad Lib/test/test_robotparser.py /^ bad = ['\/cyberworld\/map\/index.html']$/;" v class:DefaultEntryTest +bad Lib/test/test_robotparser.py /^ bad = ['\/cyberworld\/map\/index.html']$/;" v class:SitemapTest +bad Lib/test/test_robotparser.py /^ bad = ['\/folder1\/anotherfile.html']$/;" v class:AnotherInvalidRequestRateTest +bad Lib/test/test_robotparser.py /^ bad = ['\/folder1\/anotherfile.html']$/;" v class:GoogleURLOrderingTest +bad Lib/test/test_robotparser.py /^ bad = ['\/some\/path']$/;" v class:UseFirstUserAgentWildcardTest +bad Lib/test/test_robotparser.py /^ bad = ['\/something.jpg']$/;" v class:UserAgentOrderingTest +bad Lib/test/test_robotparser.py /^ bad = ['\/tmp', '\/tmp.html', '\/tmp\/a.html', '\/a%3cd.html', '\/a%3Cd.html',$/;" v class:CrawlDelayAndRequestRateTest +bad Lib/test/test_robotparser.py /^ bad = ['\/tmp\/', '\/tmp\/a.html', '\/a%3cd.html', '\/a%3Cd.html', '\/a\/b.html',$/;" v class:InvalidRequestRateTest +bad Lib/test/test_robotparser.py /^ bad = []$/;" v class:BaseRobotTest +bad Lib/test/test_robotparser.py /^ bad = []$/;" v class:InvalidCrawlDelayTest +bad Tools/clinic/clinic.py /^ bad = False$/;" v class:DSLParser.state_parameter.DetectBadNodes +badPtr Modules/expat/xmltok.c /^ const char *end, const char **badPtr, const char **versionPtr,$/;" v file: +bad___new__ Lib/test/test_deque.py /^ def bad___new__(cls, *args, **kwargs):$/;" f function:TestSubclass.test_bug_31608 +bad_app Lib/test/test_wsgiref.py /^ def bad_app(environ, start_response):$/;" f function:IntegrationTests.test_status_validation_errors.create_bad_app +bad_app Lib/test/test_wsgiref.py /^ def bad_app(e,s):$/;" f function:IntegrationTests.test_wsgi_input +bad_app Lib/test/test_wsgiref.py /^ def bad_app(environ,start_response):$/;" f function:IntegrationTests.test_simple_validation_error +bad_awaitable Lib/test/test_asyncgen.py /^ async def bad_awaitable():$/;" f function:AsyncGenAsyncioTest.test_anext_bad_await +bad_cert_test Lib/test/test_ssl.py /^ def bad_cert_test(self, certfile):$/;" m class:BasicSocketTests +bad_cleanup1 Lib/test/test_unittest/test_result.py /^def bad_cleanup1():$/;" f +bad_cleanup2 Lib/test/test_unittest/test_result.py /^def bad_cleanup2():$/;" f +bad_close Lib/test/test_io.py /^ def bad_close():$/;" f function:CommonBufferedTests.test_close_error_on_close +bad_close Lib/test/test_io.py /^ def bad_close():$/;" f function:CommonBufferedTests.test_nonnormalized_close_error_on_close +bad_close Lib/test/test_io.py /^ def bad_close():$/;" f function:TextIOWrapperTest.test_close_error_on_close +bad_close Lib/test/test_io.py /^ def bad_close():$/;" f function:TextIOWrapperTest.test_nonnormalized_close_error_on_close +bad_colors Lib/test/test_curses.py /^ def bad_colors(self):$/;" m class:TestCurses +bad_colors2 Lib/test/test_curses.py /^ def bad_colors2(self):$/;" m class:TestCurses +bad_dict_clear Lib/test/test_set.py /^class bad_dict_clear:$/;" c +bad_encoder1 Lib/test/test_json/test_speedups.py /^ def bad_encoder1(*args):$/;" f function:TestEncode.test_bad_str_encoder +bad_encoder2 Lib/test/test_json/test_speedups.py /^ def bad_encoder2(*args):$/;" f function:TestEncode.test_bad_str_encoder +bad_eq Lib/test/test_set.py /^class bad_eq:$/;" c +bad_error Lib/test/test_subprocess.py /^ def bad_error(*args):$/;" f function:POSIXProcessTestCase.test_exception_errpipe_bad_data +bad_finder_loader Lib/test/test_importlib/import_/test_api.py /^ bad_finder_loader = BadLoaderFinder$/;" v class:OldAPITests +bad_finder_loader Lib/test/test_importlib/import_/test_api.py /^ bad_finder_loader = BadSpecFinderLoader$/;" v class:SpecAPITests +bad_flush Lib/test/test_io.py /^ def bad_flush():$/;" f function:CommonBufferedTests.test_close_error_on_close +bad_flush Lib/test/test_io.py /^ def bad_flush():$/;" f function:CommonBufferedTests.test_flush_error_on_close +bad_flush Lib/test/test_io.py /^ def bad_flush():$/;" f function:CommonBufferedTests.test_nonnormalized_close_error_on_close +bad_flush Lib/test/test_io.py /^ def bad_flush():$/;" f function:IOTest.check_flush_error_on_close +bad_flush Lib/test/test_io.py /^ def bad_flush():$/;" f function:TextIOWrapperTest.test_close_error_on_close +bad_flush Lib/test/test_io.py /^ def bad_flush():$/;" f function:TextIOWrapperTest.test_flush_error_on_close +bad_flush Lib/test/test_io.py /^ def bad_flush():$/;" f function:TextIOWrapperTest.test_nonnormalized_close_error_on_close +bad_format Lib/test/test_logging.py /^ bad_format = {$/;" v class:ConfigDictTest +bad_get Modules/_testcapimodule.c /^bad_get(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +bad_header_value_re Lib/wsgiref/validate.py /^bad_header_value_re = re.compile(r'[\\000-\\037]')$/;" v +bad_key Lib/test/test_sort.py /^ def bad_key(x):$/;" f function:TestBase.testStressfully.Stable.__repr__ +bad_map Lib/test/test_concurrent_futures/test_process_pool.py /^ def bad_map():$/;" f function:ProcessPoolExecutorTest.test_map_chunksize +bad_node Tools/clinic/clinic.py /^ def bad_node(self, node):$/;" m class:DSLParser.state_parameter.DetectBadNodes +bad_normalize Lib/test/test_ast.py /^ def bad_normalize(*args):$/;" f function:AST_Tests.test_issue31592 +bad_pairs Lib/test/test_curses.py /^ def bad_pairs(self):$/;" m class:TestCurses +bad_progress Lib/test/test_sqlite3/test_hooks.py /^ def bad_progress():$/;" f function:ProgressTests.test_error_in_progress_handler +bad_progress Lib/test/test_sqlite3/test_hooks.py /^ def bad_progress():$/;" f function:ProgressTests.test_error_in_progress_handler_result +bad_readline Modules/_pickle.c /^bad_readline(PickleState *st)$/;" f file: +bad_single_statement Parser/pegen.c /^bad_single_statement(Parser *p)$/;" f file: +bad_stack_errors Lib/test/test_pickle.py /^ bad_stack_errors = (pickle.UnpicklingError,)$/;" v class:.CUnpicklerTests +bad_stack_errors Lib/test/test_pickle.py /^ bad_stack_errors = (IndexError,)$/;" v class:PyUnpicklerTests +bad_stack_errors Lib/test/test_pickle.py /^ bad_stack_errors = (pickle.UnpicklingError, IndexError)$/;" v class:InMemoryPickleTests +bad_write Lib/test/test_io.py /^ def bad_write(b):$/;" f function:BufferedWriterTest.test_write_error_on_close +baddecodereturn1 Lib/test/test_codeccallbacks.py /^ def baddecodereturn1(exc):$/;" f function:CodecCallbackTest.test_decodehelper +baddecodereturn2 Lib/test/test_codeccallbacks.py /^ def baddecodereturn2(exc):$/;" f function:CodecCallbackTest.test_decodehelper +baddict1 Lib/test/mapping_tests.py /^ class baddict1(self.type2test):$/;" c function:TestMappingProtocol.test_fromkeys +baddict1 Lib/test/test_dict.py /^ class baddict1(dict):$/;" c function:DictTest.test_fromkeys +baddict2 Lib/test/mapping_tests.py /^ class baddict2(self.type2test):$/;" c function:TestMappingProtocol.test_fromkeys +baddict2 Lib/test/test_dict.py /^ class baddict2(dict):$/;" c function:DictTest.test_fromkeys +baddict3 Lib/test/test_dict.py /^ class baddict3(dict):$/;" c function:DictTest.test_fromkeys +baddisplayhook Lib/test/test_sys.py /^ def baddisplayhook(obj):$/;" f function:DisplayHookTest.test_custom_displayhook +badencodereturn1 Lib/test/test_codeccallbacks.py /^ def badencodereturn1(exc):$/;" f function:CodecCallbackTest.test_encodehelper +badencodereturn2 Lib/test/test_codeccallbacks.py /^ def badencodereturn2(exc):$/;" f function:CodecCallbackTest.test_encodehelper +badfd Lib/test/test_socket.py /^ badfd = -0x5555$/;" v class:SCMRightsTest +badfunc Lib/test/test_builtin.py /^ def badfunc():$/;" f function:BuiltinTest.test_filter +badfunc Lib/test/test_builtin.py /^ def badfunc(x):$/;" f function:BuiltinTest.test_map +badimport_pattern Lib/test/test_pydoc.py /^badimport_pattern = "problem in %s - ModuleNotFoundError: No module named %r"$/;" v +baditer Lib/test/test_set.py /^def baditer():$/;" f +badmethod Lib/test/test_email/test_policy.py /^ def badmethod(self, *args, **kw):$/;" m class:TestPolicyPropagation.MyPolicy +badopener Lib/test/test_io.py /^ def badopener(fname, flags):$/;" f function:IOTest.test_bad_opener_negative_1 +badopener Lib/test/test_io.py /^ def badopener(fname, flags):$/;" f function:IOTest.test_bad_opener_other_negative +badpairs Lib/test/test_coroutines.py /^ async def badpairs():$/;" f function:CoroutineTest.test_for_assign_raising_stop_async_iteration_2 +badseq Lib/test/mapping_tests.py /^ class badseq(object):$/;" c function:BasicTestMappingProtocol.test_update +badseq Lib/test/test_dict.py /^ class badseq(object):$/;" c function:DictTest.test_update +badtypecode Lib/test/test_array.py /^ def badtypecode(self):$/;" m class:BaseTest +bag_appender Lib/test/test_asyncio/test_futures.py /^ def bag_appender(future):$/;" f function:BaseFutureDoneCallbackTests._make_callback +ban Lib/test/test_unittest/testmock/testsealable.py /^ def ban(self): pass$/;" m class:TestSealable.test_seal_with_autospec.Foo.Baz +bandwidth_client Tools/ccbench/ccbench.py /^def bandwidth_client(addr, packet_size, duration):$/;" f +bandwidth_tasks Tools/ccbench/ccbench.py /^bandwidth_tasks = [task_pidigits]$/;" v +banner Lib/code.py /^ banner = ''$/;" v +banner Lib/code.py /^ banner = None$/;" v +bar Lib/bdb.py /^def bar(a):$/;" f +bar Lib/idlelib/idle_test/test_calltip.py /^ def bar(s='a'*100):$/;" f function:.test_properly_formatted +bar Lib/test/ann_module.py /^ def bar(y: List[str]):$/;" f function:foo +bar Lib/test/gdb_sample.py /^def bar(a, b, c):$/;" f +bar Lib/test/sample_doctest.py /^def bar():$/;" f +bar Lib/test/test_abc.py /^ def bar(self): pass # abstract override of concrete$/;" m class:test_factory.TestABC.test_abstractmethod_integration.F +bar Lib/test/test_abc.py /^ def bar(self): pass # concrete override of concrete$/;" m class:test_factory.TestABC.test_abstractmethod_integration.D +bar Lib/test/test_abc.py /^ def bar(self): pass # concrete$/;" m class:test_factory.TestABC.test_abstractmethod_integration.C +bar Lib/test/test_abc.py /^ def bar(self):$/;" m class:test_factory.TestABC.test_descriptors_with_abstractmethod.NotBool.F +bar Lib/test/test_abc.py /^ def bar(self):$/;" m class:test_factory.TestABC.test_update_new_abstractmethods.A +bar Lib/test/test_abc.py /^ def bar(): pass$/;" f function:test_factory.TestABC.test_abstractstaticmethod_basics +bar Lib/test/test_abc.py /^ def bar(): pass$/;" f function:test_factory.TestLegacyAPI.test_abstractstaticmethod_basics +bar Lib/test/test_abc.py /^ def bar(cls): pass$/;" f function:test_factory.TestABC.test_abstractclassmethod_basics +bar Lib/test/test_abc.py /^ def bar(cls): pass$/;" f function:test_factory.TestLegacyAPI.test_abstractclassmethod_basics +bar Lib/test/test_abc.py /^ def bar(self): pass$/;" f function:test_factory.TestABC.test_abstractmethod_basics +bar Lib/test/test_abc.py /^ def bar(self): pass$/;" f function:test_factory.TestABC.test_abstractproperty_basics +bar Lib/test/test_abc.py /^ def bar(self): pass$/;" f function:test_factory.TestLegacyAPI.test_abstractproperty_basics +bar Lib/test/test_asyncio/test_pep492.py /^ async def bar():$/;" f function:CoroutineTests.test_async_def_coroutines +bar Lib/test/test_asyncio/test_tasks.py /^ async def bar():$/;" f function:BaseTaskTests.test_get_stack +bar Lib/test/test_coroutines.py /^ async def bar():$/;" f function:CoroutineTest.test_await_10 +bar Lib/test/test_coroutines.py /^ async def bar():$/;" f function:CoroutineTest.test_await_11 +bar Lib/test/test_coroutines.py /^ async def bar():$/;" f function:CoroutineTest.test_await_4 +bar Lib/test/test_coroutines.py /^ async def bar():$/;" f function:CoroutineTest.test_await_9 +bar Lib/test/test_coroutines.py /^ async def bar():$/;" f function:CoroutineTest.test_func_7 +bar Lib/test/test_coroutines.py /^ def bar(): pass$/;" f function:CoroutineTest.test_func_1 +bar Lib/test/test_coroutines.py /^ def bar():$/;" f function:CoroutineTest.test_func_5 +bar Lib/test/test_coroutines.py /^ def bar():$/;" f function:CoroutineTest.test_func_6 +bar Lib/test/test_coroutines.py /^ def bar():$/;" f function:CoroutineTest.test_func_8 +bar Lib/test/test_dataclasses.py /^ def bar(self) -> int:$/;" m class:TestCase.test_dont_include_other_annotations.C +bar Lib/test/test_decorators.py /^ bar = classmethod(A().foo)$/;" v class:TestDecorators.test_bound_function_inside_classmethod.B +bar Lib/test/test_decorators.py /^ def bar(): return 42$/;" f function:TestDecorators.test_eval_order +bar Lib/test/test_dynamic.py /^ def bar():$/;" f function:RebindBuiltinsTests.test_modify_builtins_from_leaf_function +bar Lib/test/test_enum.py /^ bar = 11$/;" v class:TestSpecial.test_nested_classes_in_enum_are_members.Outer.Inner +bar Lib/test/test_enum.py /^ bar = 11$/;" v class:TestSpecial.test_nested_classes_in_enum_are_not_members.Outer.Inner +bar Lib/test/test_enum.py /^ bar = 11$/;" v class:TestSpecial.test_nested_classes_in_enum_with_member.Outer.Inner +bar Lib/test/test_enum.py /^ bar = 11$/;" v class:TestSpecial.test_nested_classes_in_enum_with_nonmember.Outer.Inner +bar Lib/test/test_inspect.py /^ def bar(self, a, b):$/;" m class:TestSignatureObject.test_signature_on_decorated.Foo +bar Lib/test/test_inspect.py /^ def bar(*, c, b, a): pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(*, c, b, a=1): pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(a) -> 1: pass$/;" f function:TestSignatureObject.test_signature_hashable +bar Lib/test/test_inspect.py /^ def bar(a, *, b:int) -> float: pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(a, *, b:int) -> int: pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(a, *, b:int): pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(a, *, b:int=42) -> float: pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(a, *, c) -> float: pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(a, b:int) -> float: pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(b): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_equality +bar Lib/test/test_inspect.py /^ def bar(pos, *, c, b, a=1): pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_inspect.py /^ def bar(pos, *args, c, b, a=42, **kwargs:int): pass$/;" f function:TestSignatureObject.test_signature_equality +bar Lib/test/test_operator.py /^ def bar(self, f=42):$/;" m class:OperatorPickleTestCase.test_methodcaller.A +bar Lib/test/test_operator.py /^ def bar(self, f=42):$/;" m class:OperatorTestCase.test_methodcaller.A +bar Lib/test/test_rlcompleter.py /^ bar = ''$/;" v class:TestRlcompleter.test_excessive_getattr.Foo +bar Lib/test/test_rlcompleter.py /^ def bar(self):$/;" m class:TestRlcompleter.test_property_method_not_called.Foo +bar Lib/test/test_scope.py /^ def bar():$/;" f function:ScopeTests.testCellIsKwonlyArg.foo +bar Lib/test/test_sys.py /^ def bar(cls):$/;" m class:SizeofTest.test_objecttypes.c +bar Lib/test/test_sys_setprofile.py /^ def bar(*args):$/;" f function:TestEdgeCases.test_reentrancy +bar Lib/test/test_sys_settrace.py /^ def bar(*args):$/;" f function:TestEdgeCases.test_reentrancy +bar Lib/test/test_types.py /^ def bar(): return foo_coro$/;" f function:CoroutineTests.test_async_def +bar Lib/test/test_types.py /^ def bar(): return wrapper$/;" f function:CoroutineTests.test_duck_gen +bar Lib/test/test_typing.py /^ def bar(self) -> 'LiteralString': ...$/;" m class:LiteralStringTests.test_basics.FooStr +bar Lib/test/test_typing.py /^ def bar(self) -> 'Self': ...$/;" m class:SelfTests.test_basics.FooStr +bar Lib/test/test_typing.py /^ def bar(self) -> 'typing.LiteralString': ...$/;" m class:LiteralStringTests.test_basics.FooStrTyping +bar Lib/test/test_typing.py /^ def bar(self) -> 'typing.Self': ...$/;" m class:SelfTests.test_basics.FooStrTyping +bar Lib/test/test_typing.py /^ def bar(self) -> LiteralString: ...$/;" m class:LiteralStringTests.test_basics.Foo +bar Lib/test/test_typing.py /^ def bar(self) -> Self: ...$/;" m class:SelfTests.test_basics.Foo +bar Lib/test/test_typing.py /^ def bar(self):$/;" m class:SpecialAttrsTests.test_genericalias_dir.Foo +bar Lib/test/test_typing.py /^ def bar(self, x: T) -> str: ...$/;" m class:ProtocolTests.test_defining_generic_protocols_old_style.P1 +bar Lib/test/test_typing.py /^ def bar(self, x: T) -> str: ...$/;" m class:ProtocolTests.test_defining_generic_protocols_old_style.P2 +bar Lib/test/test_typing.py /^ def bar(self, x: str) -> str:$/;" m class:ProtocolTests.test_defining_generic_protocols_old_style.Test +bar Lib/test/test_unittest/testmock/testhelpers.py /^ bar = None$/;" v class:SpecSignatureTest.test_create_autospec_none.Foo +bar Lib/test/test_unittest/testmock/testhelpers.py /^ bar = foo$/;" v class:SpecSignatureTest.test_recursive.A +bar Lib/test/test_unittest/testmock/testhelpers.py /^ def bar(self, arg): pass$/;" m class:SpecSignatureTest.test_builtin_functions_types.BuiltinSubclass +bar Lib/test/test_weakref.py /^ bar = None$/;" v class:Callable +bar1 Lib/test/test_unittest/testmock/testsealable.py /^ def bar1(self): pass$/;" m class:TestSealable.test_seal_with_autospec.Foo +bar2 Lib/test/test_unittest/testmock/testsealable.py /^ def bar2(self): pass$/;" m class:TestSealable.test_seal_with_autospec.Foo +bar_getter Lib/test/test_email/test_contentmanager.py /^ def bar_getter(msg):$/;" f function:TestContentManager.get_key_as_get_content_key_order +bar_one Lib/test/test_unittest/testmock/testpatch.py /^ def bar_one(self):$/;" m class:PatchTest.test_patch_dict_test_prefix.Foo +bar_open Lib/test/test_urllib2.py /^ def bar_open(self):$/;" m class:MiscTests.test_build_opener.BarHandler +bar_setter Lib/test/test_email/test_contentmanager.py /^ def bar_setter(msg, obj):$/;" f function:TestContentManager.set_key_as_set_content_key_order +bar_two Lib/test/test_unittest/testmock/testpatch.py /^ def bar_two(self):$/;" m class:PatchTest.test_patch_dict_test_prefix.Foo +bare_raise Lib/test/test_threading.py /^ def bare_raise():$/;" f function:ThreadingExceptionTests.test_bare_raise_in_brand_new_thread +barfoo Lib/test/test_typing.py /^ def barfoo(x: AT): ...$/;" f function:GenericTests.test_generic_forward_ref +barfoo Lib/test/test_typing.py /^ def barfoo(x: BA): ...$/;" f function:GetTypeHintTests.test_get_type_hints_annotated +barfoo2 Lib/test/test_typing.py /^ def barfoo2(x: CT): ...$/;" f function:GenericTests.test_generic_forward_ref +barfoo2 Lib/test/test_typing.py /^ def barfoo2(x: typing.Callable[..., Annotated[List[T], "const"]],$/;" f function:GetTypeHintTests.test_get_type_hints_annotated +barfoo3 Lib/test/test_typing.py /^ def barfoo3(x: BA2): ...$/;" f function:GetTypeHintTests.test_get_type_hints_annotated +barfoo4 Lib/test/test_typing.py /^ def barfoo4(x: BA3): ...$/;" f function:GetTypeHintTests.test_get_type_hints_annotated +barriertype Lib/test/test_threading.py /^ barriertype = staticmethod(threading.Barrier)$/;" v class:BarrierTests +barry_as_FLUFL Lib/__future__.py /^barry_as_FLUFL = _Feature((3, 1, 0, "alpha", 2),$/;" v +base Include/memoryobject.h /^PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);$/;" v +base Modules/_ctypes/ctypes.h /^ CDataObject *base;$/;" m struct:basespec +base Modules/_decimal/tests/deccheck.py /^ base = {$/;" v +base Modules/_testbuffer.c /^ Py_buffer base; \/* base buffer *\/$/;" m struct:ndbuf file: +base Modules/_testcapi/heaptype.c /^ HeapCTypeObject base;$/;" m struct:__anon549 file: +base Modules/_testcapi/heaptype.c /^ HeapCTypeObject base;$/;" m struct:__anon550 file: +base Modules/_testcapi/vectorcall.c /^ MethodDescriptorObject base;$/;" m struct:__anon541 file: +base Modules/_zoneinfo.c /^ PyDateTime_TZInfo base;$/;" m struct:__anon638 file: +base Modules/_zoneinfo.c /^ TransitionRuleType base;$/;" m struct:__anon639 file: +base Modules/_zoneinfo.c /^ TransitionRuleType base;$/;" m struct:__anon640 file: +base Modules/cjkcodecs/mappings_cn.h /^ DBCHAR base;$/;" m struct:_gb18030_to_unibmp_ranges +base Modules/expat/xmlparse.c /^ const XML_Char *base;$/;" m struct:__anon611 file: +base Objects/listobject.c /^ sortslice base;$/;" m struct:s_slice file: +base Objects/typeobject.c /^ PyTypeObject *base;$/;" m struct:__anon718 file: +base64_decode Lib/encodings/base64_codec.py /^def base64_decode(input, errors='strict'):$/;" f +base64_encode Lib/encodings/base64_codec.py /^def base64_encode(input, errors='strict'):$/;" f +base_exe Modules/getpath.py /^ base_exe = basename(executable)$/;" v +base_exec_prefix Include/cpython/initconfig.h /^ wchar_t *base_exec_prefix;$/;" m struct:PyConfig +base_exec_prefix Lib/test/test_getpath.py /^ base_exec_prefix=None,$/;" v +base_exec_prefix Modules/getpath.py /^base_exec_prefix = config.get('base_exec_prefix')$/;" v +base_executable Include/cpython/initconfig.h /^ wchar_t *base_executable;$/;" m struct:PyConfig +base_executable Lib/test/test_getpath.py /^ base_executable="",$/;" v +base_executable Modules/getpath.py /^ base_executable = candidate$/;" v +base_executable Modules/getpath.py /^ base_executable = ''$/;" v +base_executable Modules/getpath.py /^ base_executable = joinpath(executable_dir, basename(executable))$/;" v +base_executable Modules/getpath.py /^ base_executable = realpath(executable)$/;" v +base_executable Modules/getpath.py /^ base_executable = executable$/;" v +base_executable Modules/getpath.py /^ base_executable = f"{dirname(library)}\/bin\/python{VERSION_MAJOR}.{VERSION_MINOR}"$/;" v +base_executable Modules/getpath.py /^ base_executable = executable or real_executable or ''$/;" v +base_executable Modules/getpath.py /^base_executable = config.get('base_executable')$/;" v +base_expts Modules/_decimal/tests/deccheck.py /^ base_expts = [(C.MIN_EMIN, C.MAX_EMAX)]$/;" v +base_prefix Include/cpython/initconfig.h /^ wchar_t *base_prefix;$/;" m struct:PyConfig +base_prefix Lib/test/test_getpath.py /^ base_prefix=None,$/;" v +base_prefix Modules/getpath.py /^base_prefix = config.get('base_prefix')$/;" v +base_set Lib/test/test_contains.py /^class base_set:$/;" c +base_url Lib/test/test_robotparser.py /^ base_url = 'http:\/\/www.pythontest.net\/'$/;" v class:NetworkTestCase +basekeys Objects/listobject.c /^ PyObject **basekeys; \/* base address of keys array - read only *\/$/;" m struct:s_MergeState file: +baseline_sumprod Lib/test/test_math.py /^ def baseline_sumprod(p, q):$/;" f function:MathTests.test_sumprod_stress +basename Lib/ntpath.py /^def basename(p):$/;" f +basename Lib/posixpath.py /^def basename(p):$/;" f +basename Lib/test/test_getpath.py /^ def basename(self, path):$/;" m class:MockNTNamespace +basename Lib/test/test_getpath.py /^ def basename(self, path):$/;" m class:MockPosixNamespace +baseobject_full_path Lib/test/test_email/test_contentmanager.py /^ baseobject_full_path = __name__ + '.' + 'TestContentManager.BaseThing'$/;" v class:TestContentManager +basepath Lib/test/test_tools/__init__.py /^basepath = os.path.normpath($/;" v +bases Include/internal/pycore_ast.h /^ asdl_expr_seq *bases;$/;" m struct:_stmt::__anon51::__anon54 +bases Include/internal/pycore_ast_state.h /^ PyObject *bases;$/;" m struct:ast_state +bases Lib/test/test_argparse.py /^bases = TestCase,$/;" v +bases Lib/test/test_dataclasses.py /^ bases=(Parent[int], Generic[T]), namespace={'other': 42})$/;" v class:TestCase.test_generic_dynamic.Parent +bases Lib/test/test_dataclasses.py /^ bases=(Base1, Base2))$/;" v class:TestMakeDataclass.test_base.Base2 +bases Lib/test/test_dataclasses.py /^ bases=(Base1, Base2))$/;" v class:TestMakeDataclass.test_base_dataclass.Base2 +bases Lib/test/test_shelve.py /^ bases = (TestShelveFileBase, mapping_tests.BasicTestMappingProtocol)$/;" v class:TestShelveFileBase +bases Lib/test/test_shelve.py /^ bases = (TestShelveInMemBase, mapping_tests.BasicTestMappingProtocol)$/;" v class:TestShelveFileBase +bases Objects/typeobject.c /^ PyObject *bases;$/;" m struct:__anon718 file: +basespec Modules/_ctypes/ctypes.h /^struct basespec {$/;" s +basetype Lib/test/test_set.py /^ basetype = frozenset$/;" v class:TestFrozenSet +basetype Lib/test/test_set.py /^ basetype = frozenset$/;" v class:TestFrozenSetSubclass +basetype Lib/test/test_set.py /^ basetype = set$/;" v class:TestSet +basetype Lib/test/test_set.py /^ basetype = set$/;" v class:TestSetSubclass +basic Lib/test/test_sys_settrace.py /^def basic():$/;" f +basicConfig Lib/logging/__init__.py /^def basicConfig(**kwargs):$/;" f +basic__clear_globals Modules/_testsinglephase.c /^basic__clear_globals(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +basic__clear_module_state Modules/_testsinglephase.c /^basic__clear_module_state(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +basic_concat_test Lib/test/test_bigmem.py /^ def basic_concat_test(self, size):$/;" m class:TupleTest +basic_context_template Modules/_decimal/_decimal.c /^static PyObject *basic_context_template = NULL;$/;" v file: +basic_encode_test Lib/test/test_bigmem.py /^ def basic_encode_test(self, size, enc, c='.', expectedsize=None):$/;" m class:StrTest +basic_initialized_count Modules/_testsinglephase.c /^basic_initialized_count(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +basic_queue_test Lib/test/test_queue.py /^ def basic_queue_test(self, q):$/;" m class:BaseQueueTestMixin +basic_star_test Lib/test/test_importlib/import_/test_fromlist.py /^ def basic_star_test(self, fromlist=['*']):$/;" m class:HandlingFromlist +basic_static_type Lib/test/test_capi/test_misc.py /^ def basic_static_type(self, *args):$/;" m class:TestStaticTypes +basic_test Lib/test/test_configparser.py /^ def basic_test(self, cf):$/;" m class:BasicTestCase +basic_test_concat Lib/test/test_bigmem.py /^ def basic_test_concat(self, size):$/;" m class:ListTest +basic_test_extend Lib/test/test_bigmem.py /^ def basic_test_extend(self, size):$/;" m class:ListTest +basic_test_inplace_concat Lib/test/test_bigmem.py /^ def basic_test_inplace_concat(self, size):$/;" m class:ListTest +basic_test_inplace_repeat Lib/test/test_bigmem.py /^ def basic_test_inplace_repeat(self, size):$/;" m class:ListTest +basic_test_repeat Lib/test/test_bigmem.py /^ def basic_test_repeat(self, size):$/;" m class:ListTest +basic_test_repeat Lib/test/test_bigmem.py /^ def basic_test_repeat(self, size):$/;" m class:TupleTest +basic_test_repr Lib/test/test_bigmem.py /^ def basic_test_repr(self, size):$/;" m class:ListTest +basic_test_repr Lib/test/test_bigmem.py /^ def basic_test_repr(self, size):$/;" m class:TupleTest +basicblock Python/compile.c /^typedef _PyCfgBasicblock basicblock;$/;" t file: +basicblock Python/flowgraph.c /^typedef _PyCfgBasicblock basicblock;$/;" t file: +basicblock_addop Python/flowgraph.c /^basicblock_addop(basicblock *b, int opcode, int oparg, location loc)$/;" f file: +basicblock_append_instructions Python/flowgraph.c /^basicblock_append_instructions(basicblock *target, basicblock *source)$/;" f file: +basicblock_exits_scope Python/flowgraph.c /^basicblock_exits_scope(const basicblock *b) {$/;" f file: +basicblock_next_instr Python/flowgraph.c /^basicblock_next_instr(basicblock *b)$/;" f file: +basicblock_nofallthrough Include/internal/pycore_flowgraph.h /^basicblock_nofallthrough(const _PyCfgBasicblock *b) {$/;" f +basicsize Include/object.h /^ int basicsize;$/;" m struct:__anon253 +batch_dict Modules/_pickle.c /^batch_dict(PickleState *state, PicklerObject *self, PyObject *iter)$/;" f file: +batch_dict_exact Modules/_pickle.c /^batch_dict_exact(PickleState *state, PicklerObject *self, PyObject *obj)$/;" f file: +batch_list Modules/_pickle.c /^batch_list(PickleState *state, PicklerObject *self, PyObject *iter)$/;" f file: +batch_list_exact Modules/_pickle.c /^batch_list_exact(PickleState *state, PicklerObject *self, PyObject *obj)$/;" f file: +batch_size Modules/itertoolsmodule.c /^ Py_ssize_t batch_size;$/;" m struct:__anon401 file: +batched_dealloc Modules/itertoolsmodule.c /^batched_dealloc(batchedobject *bo)$/;" f file: +batched_new Modules/clinic/itertoolsmodule.c.h /^batched_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +batched_new_impl Modules/itertoolsmodule.c /^batched_new_impl(PyTypeObject *type, PyObject *iterable, Py_ssize_t n)$/;" f file: +batched_next Modules/itertoolsmodule.c /^batched_next(batchedobject *bo)$/;" f file: +batched_recipe Lib/test/test_itertools.py /^ def batched_recipe(iterable, n):$/;" f function:TestPurePythonRoughEquivalents.test_batched_recipe +batched_slots Modules/itertoolsmodule.c /^static PyType_Slot batched_slots[] = {$/;" v file: +batched_spec Modules/itertoolsmodule.c /^static PyType_Spec batched_spec = {$/;" v file: +batched_traverse Modules/itertoolsmodule.c /^batched_traverse(batchedobject *bo, visitproc visit, void *arg)$/;" f file: +batched_type Modules/itertoolsmodule.c /^ PyTypeObject *batched_type;$/;" m struct:__anon400 file: +batchedobject Modules/itertoolsmodule.c /^} batchedobject;$/;" t typeref:struct:__anon401 file: +baz Doc/includes/mp_newtype.py /^def baz():$/;" f +baz Lib/idlelib/idle_test/test_calltip.py /^ def baz(s='a'*100, z='b'*100):$/;" f function:.test_properly_formatted +baz Lib/test/_test_multiprocessing.py /^def baz():$/;" f +baz Lib/test/gdb_sample.py /^def baz(*args):$/;" f +baz Lib/test/test_contextlib.py /^ def baz(spam):$/;" f function:._create_contextmanager_attribs +baz Lib/test/test_contextlib_async.py /^ async def baz(spam):$/;" f function:AsyncContextManagerTestCase._create_contextmanager_attribs +baz Lib/test/test_coroutines.py /^ async def baz():$/;" f function:CoroutineTest.test_await_10 +baz Lib/test/test_operator.py /^ def baz(*args, **kwds):$/;" m class:OperatorPickleTestCase.test_methodcaller.A +baz Lib/test/test_operator.py /^ def baz(*args, **kwds):$/;" m class:OperatorTestCase.test_methodcaller.A +baz Lib/test/test_typing.py /^ baz = 3$/;" v class:SpecialAttrsTests.test_genericalias_dir.Foo +baz Lib/test/test_unittest/testmock/testsealable.py /^ baz = 3$/;" v class:TestSealable.test_seal_with_autospec.Foo.Baz +bbox Lib/tkinter/__init__.py /^ bbox = grid_bbox$/;" v class:Misc +bbox Lib/tkinter/__init__.py /^ def bbox(self, *args):$/;" m class:Canvas +bbox Lib/tkinter/__init__.py /^ def bbox(self, index):$/;" m class:Listbox +bbox Lib/tkinter/__init__.py /^ def bbox(self, index):$/;" m class:Spinbox +bbox Lib/tkinter/__init__.py /^ def bbox(self, index):$/;" m class:Text +bbox Lib/tkinter/ttk.py /^ def bbox(self, index):$/;" m class:Entry +bbox Lib/tkinter/ttk.py /^ def bbox(self, item, column=None):$/;" m class:Treeview +bbox Lib/turtle.py /^ def bbox(self, *args):$/;" m class:ScrolledCanvas +bc Python/bytecodes.c /^static PyObject *aiter, *awaitable, *iterable, *w, *exc_value, *bc, *locals;$/;" v file: +bcm_cmd_msg_fmt Lib/test/test_socket.py /^ bcm_cmd_msg_fmt = "@3I4l2I"$/;" v class:SocketCANTest +bdaddr Modules/socketmodule.h /^ bdaddr_t bdaddr;$/;" m union:SOCKADDR_BTH_REDEF::__anon396 +bdaddr_t Modules/socketmodule.h /^typedef ULONGLONG bdaddr_t;$/;" t +be16toh Modules/_hacl/include/krml/lowstar_endianness.h 29;" d +be16toh Modules/_hacl/include/krml/lowstar_endianness.h 47;" d +be16toh Modules/_hacl/include/krml/lowstar_endianness.h 66;" d +be16toh Modules/_hacl/include/krml/lowstar_endianness.h 85;" d +be32toh Modules/_hacl/include/krml/lowstar_endianness.h 107;" d +be32toh Modules/_hacl/include/krml/lowstar_endianness.h 138;" d +be32toh Modules/_hacl/include/krml/lowstar_endianness.h 34;" d +be32toh Modules/_hacl/include/krml/lowstar_endianness.h 52;" d +be32toh Modules/_hacl/include/krml/lowstar_endianness.h 71;" d +be32toh Modules/_hacl/include/krml/lowstar_endianness.h 90;" d +be64toh Modules/_hacl/include/krml/lowstar_endianness.h 117;" d +be64toh Modules/_hacl/include/krml/lowstar_endianness.h 149;" d +be64toh Modules/_hacl/include/krml/lowstar_endianness.h 24;" d +be64toh Modules/_hacl/include/krml/lowstar_endianness.h 42;" d +be64toh Modules/_hacl/include/krml/lowstar_endianness.h 76;" d +be64toh Modules/_hacl/include/krml/lowstar_endianness.h 95;" d +before_forkers Include/internal/pycore_interp.h /^ PyObject *before_forkers;$/;" m struct:_is +before_get Lib/configparser.py /^ def before_get(self, parser, section, option, value, defaults):$/;" m class:BasicInterpolation +before_get Lib/configparser.py /^ def before_get(self, parser, section, option, value, defaults):$/;" m class:ExtendedInterpolation +before_get Lib/configparser.py /^ def before_get(self, parser, section, option, value, defaults):$/;" m class:Interpolation +before_get Lib/configparser.py /^ def before_get(self, parser, section, option, value, vars):$/;" m class:LegacyInterpolation +before_read Lib/configparser.py /^ def before_read(self, parser, section, option, value):$/;" m class:Interpolation +before_set Lib/configparser.py /^ def before_set(self, parser, section, option, value):$/;" m class:BasicInterpolation +before_set Lib/configparser.py /^ def before_set(self, parser, section, option, value):$/;" m class:ExtendedInterpolation +before_set Lib/configparser.py /^ def before_set(self, parser, section, option, value):$/;" m class:Interpolation +before_set Lib/configparser.py /^ def before_set(self, parser, section, option, value):$/;" m class:LegacyInterpolation +before_write Lib/configparser.py /^ def before_write(self, parser, section, option, value):$/;" m class:Interpolation +begidx Modules/readline.c /^ PyObject *begidx;$/;" m struct:__anon339 file: +begin Lib/http/client.py /^ def begin(self):$/;" m class:HTTPResponse +begin Lib/idlelib/pyshell.py /^ def begin(self):$/;" m class:PyShell +begin_array Lib/plistlib.py /^ def begin_array(self, attrs):$/;" m class:_PlistParser +begin_dict Lib/plistlib.py /^ def begin_dict(self, attrs):$/;" m class:_PlistParser +begin_element Lib/plistlib.py /^ def begin_element(self, element):$/;" m class:_DumbXMLWriter +begin_fill Lib/turtle.py /^ def begin_fill(self):$/;" m class:RawTurtle +begin_poly Lib/turtle.py /^ def begin_poly(self):$/;" m class:RawTurtle +begin_search PCbuild/find_msbuild.bat /^:begin_search$/;" l +begin_search PCbuild/find_python.bat /^:begin_search$/;" l +begin_transaction Modules/_sqlite/cursor.c /^begin_transaction(pysqlite_Connection *self)$/;" f file: +beginexecuting Lib/idlelib/pyshell.py /^ def beginexecuting(self):$/;" m class:PyShell +beginning Modules/_sre/sre.h /^ const void* beginning; \/* start of original string *\/$/;" m struct:__anon458 +behavior Lib/test/test_enum.py /^ def behavior(self):$/;" m class:TestSpecial.test_multiple_mixin.AnotherEnum +behavior Lib/test/test_enum.py /^ def behavior(self):$/;" m class:TestSpecial.test_multiple_mixin.SomeEnum +bell Lib/idlelib/idle_test/test_history.py /^ def bell(self):$/;" m class:TextWrapper +bell Lib/tkinter/__init__.py /^ def bell(self, displayof=0):$/;" m class:Misc +bench Tools/importbench/importbench.py /^def bench(name, cleanup=lambda: None, *, seconds=1, repeat=3):$/;" f +bench Tools/stringbench/stringbench.py /^def bench(s, group, repeat_count):$/;" f +benchmark Tools/peg_generator/scripts/benchmark.py /^def benchmark(func):$/;" f +benchmark_wo_bytecode Tools/importbench/importbench.py /^ def benchmark_wo_bytecode(seconds, repeat):$/;" f function:_wo_bytecode +benchmarks Lib/test/re_tests.py /^benchmarks = [$/;" v +best Tools/stringbench/stringbench.py /^ def best(self, repeat=1):$/;" m class:BenchTimer +best_base Objects/typeobject.c /^best_base(PyObject *bases)$/;" f file: +betavariate Lib/random.py /^ def betavariate(self, alpha, beta):$/;" m class:Random +betavariate Lib/random.py /^betavariate = _inst.betavariate$/;" v +betweenDecl Modules/expat/xmlparse.c /^ XML_Bool betweenDecl; \/* WFC: PE Between Declarations *\/$/;" m struct:open_internal_entity file: +bf_getbuffer Include/cpython/object.h /^ getbufferproc bf_getbuffer;$/;" m struct:__anon213 +bf_key_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class bf_key_st(Structure):$/;" c +bf_releasebuffer Include/cpython/object.h /^ releasebufferproc bf_releasebuffer;$/;" m struct:__anon213 +bgcolor Lib/turtle.py /^ def bgcolor(self, *args):$/;" m class:TurtleScreen +bgpic Lib/turtle.py /^ def bgpic(self, picname=None):$/;" m class:TurtleScreen +bh2s Tools/unicode/genmap_tchinese.py /^def bh2s(code):$/;" f +bias Lib/profile.py /^ bias = 0 # calibration constant$/;" v class:Profile +bidir_changed Modules/unicodedata.c /^ const unsigned char bidir_changed;$/;" m struct:change_record file: +bidirectional Modules/unicodedata.c /^ const unsigned char bidirectional; \/* index into$/;" m struct:__anon642 file: +big Lib/test/test_json/test_enum.py /^ big = BIG$/;" v class:BigNum +big2_byteToAscii Modules/expat/xmltok.c /^big2_byteToAscii(const ENCODING *enc, const char *p) {$/;" f file: +big2_byteType Modules/expat/xmltok.c /^big2_byteType(const ENCODING *enc, const char *p) {$/;" f file: +big2_charMatches Modules/expat/xmltok.c /^big2_charMatches(const ENCODING *enc, const char *p, int c) {$/;" f file: +big2_encoding Modules/expat/xmltok.c /^static const struct normal_encoding big2_encoding$/;" v typeref:struct:normal_encoding file: +big2_encoding_ns Modules/expat/xmltok.c /^static const struct normal_encoding big2_encoding_ns$/;" v typeref:struct:normal_encoding file: +big2_isNameMin Modules/expat/xmltok.c /^big2_isNameMin(const ENCODING *enc, const char *p) {$/;" f file: +big2_isNmstrtMin Modules/expat/xmltok.c /^big2_isNmstrtMin(const ENCODING *enc, const char *p) {$/;" f file: +big5_decmap Modules/cjkcodecs/mappings_tw.h /^static const struct dbcs_index big5_decmap[256] = {$/;" v typeref:struct:dbcs_index +big5_encmap Modules/cjkcodecs/mappings_tw.h /^static const struct unim_index big5_encmap[256] = {$/;" v typeref:struct:unim_index +big5hkscs_bmp_encmap Modules/cjkcodecs/mappings_hk.h /^static const struct unim_index big5hkscs_bmp_encmap[256] = {$/;" v typeref:struct:unim_index +big5hkscs_decmap Modules/cjkcodecs/mappings_hk.h /^static const struct dbcs_index big5hkscs_decmap[256] = {$/;" v typeref:struct:dbcs_index +big5hkscs_nonbmp_encmap Modules/cjkcodecs/mappings_hk.h /^static const struct unim_index big5hkscs_nonbmp_encmap[256] = {$/;" v typeref:struct:unim_index +big5hkscs_pairenc_table Modules/cjkcodecs/_codecs_hk.c /^static const DBCHAR big5hkscs_pairenc_table[4] = {0x8862, 0x8864, 0x88a3, 0x88a5};$/;" v file: +big5hkscs_phint_0 Modules/cjkcodecs/mappings_hk.h /^static const unsigned char big5hkscs_phint_0[] = {$/;" v +big5hkscs_phint_12130 Modules/cjkcodecs/mappings_hk.h /^static const unsigned char big5hkscs_phint_12130[] = {$/;" v +big5hkscs_phint_21924 Modules/cjkcodecs/mappings_hk.h /^static const unsigned char big5hkscs_phint_21924[] = {$/;" v +big_o Lib/test/test_zipfile/_path/test_complexity.py /^big_o = import_or_skip('big_o')$/;" v +big_s Tools/stringbench/stringbench.py /^big_s = "A" + ("Z"*128*1024)$/;" v +big_s_bytes Tools/stringbench/stringbench.py /^big_s_bytes = bytes_from_str(big_s)$/;" v +big_s_unicode Tools/stringbench/stringbench.py /^big_s_unicode = unicode_from_str(big_s)$/;" v +bigaddrspacetest Lib/test/support/__init__.py /^def bigaddrspacetest(f):$/;" f +bigcomp Python/dtoa.c /^bigcomp(U *rv, const char *s0, BCinfo *bc)$/;" f file: +bigendian_table Modules/_struct.c /^static formatdef bigendian_table[] = {$/;" v file: +bigendian_to_native Lib/test/test_struct.py /^def bigendian_to_native(value):$/;" f +biggerexample Lib/test/test_array.py /^ biggerexample = '\\x01\\u263a\\x01\\ufeff'$/;" v class:UnicodeTest +biggerexample Lib/test/test_array.py /^ biggerexample = [-1, 0, 1, 43, 0x7f]$/;" v class:SignedNumberTest +biggerexample Lib/test/test_array.py /^ biggerexample = [-42.0, 0, 42, 1e5, 1e10]$/;" v class:FPTest +biggerexample Lib/test/test_array.py /^ biggerexample = [0, 1, 17, 23, 43, 0xff]$/;" v class:UnsignedNumberTest +bigmemtest Lib/test/support/__init__.py /^def bigmemtest(size, memuse, dry_run=True):$/;" f +bignum_ctx Lib/test/test_lib2to3/data/infinite_recursion.py /^class bignum_ctx(Structure):$/;" c +bignum_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class bignum_st(Structure):$/;" c +bigsection Lib/pydoc.py /^ def bigsection(self, title, *args):$/;" f +bigtens Python/dtoa.c /^bigtens[] = { 1e16, 1e32, 1e64, 1e128, 1e256 };$/;" v file: +billion Modules/posixmodule.c /^ PyObject *billion;$/;" m struct:__anon477 file: +bin Lib/enum.py /^def bin(num, max_bits=None):$/;" f +bin Lib/test/test_ctypes/test_byteswap.py /^def bin(s):$/;" f +bin Modules/_pickle.c /^ int bin; \/* Boolean, true if proto > 0 *\/$/;" m struct:PicklerObject file: +bin_close_numbers Modules/_decimal/tests/randdec.py /^def bin_close_numbers(prec, emax, emin, itr=None):$/;" f +bin_close_to_pow10 Modules/_decimal/tests/randdec.py /^def bin_close_to_pow10(prec, maxexp, itr=None):$/;" f +bin_incr_digits Modules/_decimal/tests/randdec.py /^def bin_incr_digits(prec, maxexp, itr):$/;" f +bin_randfloat Modules/_decimal/tests/randfloat.py /^def bin_randfloat():$/;" f +bin_random_mixed_op Modules/_decimal/tests/randdec.py /^def bin_random_mixed_op(prec, emax, emin, itr=None):$/;" f +bin_resolve_ulp Modules/_decimal/tests/deccheck.py /^ def bin_resolve_ulp(self, t):$/;" m class:SkipHandler +binaries PCbuild/get_externals.bat /^if NOT "%IncludeLibffi%"=="false" set binaries=%binaries% libffi-3.4.4$/;" v +binaries PCbuild/get_externals.bat /^if NOT "%IncludeSSL%"=="false" set binaries=%binaries% openssl-bin-3.0.11$/;" v +binaries PCbuild/get_externals.bat /^if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06$/;" v +binaries PCbuild/get_externals.bat /^if NOT "%IncludeTkinter%"=="false" set binaries=%binaries% tcltk-8.6.13.0$/;" v +binaries PCbuild/get_externals.bat /^set binaries=$/;" v +binaries Tools/msi/get_externals.bat /^set binaries=$/;" v +binaries Tools/msi/get_externals.bat /^set binaries=%binaries% binutils$/;" v +binaries Tools/msi/get_externals.bat /^set binaries=%binaries% gpg$/;" v +binaries Tools/msi/get_externals.bat /^set binaries=%binaries% htmlhelp$/;" v +binaries Tools/msi/get_externals.bat /^set binaries=%binaries% nuget$/;" v +binaries Tools/msi/get_externals.bat /^set binaries=%binaries% redist-1$/;" v +binaries Tools/msi/get_externals.bat /^set binaries=%binaries% wix-314$/;" v +binary_iop Objects/abstract.c /^binary_iop(PyObject *v, PyObject *w, const int iop_slot, const int op_slot,$/;" f file: +binary_iop1 Objects/abstract.c /^binary_iop1(PyObject *v, PyObject *w, const int iop_slot, const int op_slot$/;" f file: +binary_op Objects/abstract.c /^binary_op(PyObject *v, PyObject *w, const int op_slot, const char *op_name)$/;" f file: +binary_op1 Objects/abstract.c /^binary_op1(PyObject *v, PyObject *w, const int op_slot$/;" f file: +binary_op_fail_kind Python/specialize.c /^binary_op_fail_kind(int oparg, PyObject *lhs, PyObject *rhs)$/;" f file: +binary_ops Python/ceval.c /^static const binaryfunc binary_ops[] = {$/;" v file: +binary_optarg Modules/_decimal/tests/randdec.py /^def binary_optarg(prec, exp_range, itr):$/;" f +binary_subscr_fail_kind Python/specialize.c /^binary_subscr_fail_kind(PyTypeObject *container_type, PyObject *sub)$/;" f file: +binaryfunc Include/object.h /^typedef PyObject * (*binaryfunc)(PyObject *, PyObject *);$/;" t +binarysort Objects/listobject.c /^binarysort(MergeState *ms, sortslice lo, PyObject **hi, PyObject **start)$/;" f file: +binascii_a2b_base64 Modules/clinic/binascii.c.h /^binascii_a2b_base64(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +binascii_a2b_base64_impl Modules/binascii.c /^binascii_a2b_base64_impl(PyObject *module, Py_buffer *data, int strict_mode)$/;" f file: +binascii_a2b_hex Modules/clinic/binascii.c.h /^binascii_a2b_hex(PyObject *module, PyObject *arg)$/;" f +binascii_a2b_hex_impl Modules/binascii.c /^binascii_a2b_hex_impl(PyObject *module, Py_buffer *hexstr)$/;" f file: +binascii_a2b_qp Modules/clinic/binascii.c.h /^binascii_a2b_qp(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +binascii_a2b_qp_impl Modules/binascii.c /^binascii_a2b_qp_impl(PyObject *module, Py_buffer *data, int header)$/;" f file: +binascii_a2b_uu Modules/clinic/binascii.c.h /^binascii_a2b_uu(PyObject *module, PyObject *arg)$/;" f +binascii_a2b_uu_impl Modules/binascii.c /^binascii_a2b_uu_impl(PyObject *module, Py_buffer *data)$/;" f file: +binascii_b2a_base64 Modules/clinic/binascii.c.h /^binascii_b2a_base64(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +binascii_b2a_base64_impl Modules/binascii.c /^binascii_b2a_base64_impl(PyObject *module, Py_buffer *data, int newline)$/;" f file: +binascii_b2a_hex Modules/clinic/binascii.c.h /^binascii_b2a_hex(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +binascii_b2a_hex_impl Modules/binascii.c /^binascii_b2a_hex_impl(PyObject *module, Py_buffer *data, PyObject *sep,$/;" f file: +binascii_b2a_qp Modules/clinic/binascii.c.h /^binascii_b2a_qp(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +binascii_b2a_qp_impl Modules/binascii.c /^binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs,$/;" f file: +binascii_b2a_uu Modules/clinic/binascii.c.h /^binascii_b2a_uu(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +binascii_b2a_uu_impl Modules/binascii.c /^binascii_b2a_uu_impl(PyObject *module, Py_buffer *data, int backtick)$/;" f file: +binascii_clear Modules/binascii.c /^binascii_clear(PyObject *module)$/;" f file: +binascii_crc32 Modules/clinic/binascii.c.h /^binascii_crc32(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +binascii_crc32_impl Modules/binascii.c /^binascii_crc32_impl(PyObject *module, Py_buffer *data, unsigned int crc)$/;" f file: +binascii_crc_hqx Modules/clinic/binascii.c.h /^binascii_crc_hqx(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +binascii_crc_hqx_impl Modules/binascii.c /^binascii_crc_hqx_impl(PyObject *module, Py_buffer *data, unsigned int crc)$/;" f file: +binascii_exec Modules/binascii.c /^binascii_exec(PyObject *module) {$/;" f file: +binascii_free Modules/binascii.c /^binascii_free(void *module)$/;" f file: +binascii_hexlify Modules/clinic/binascii.c.h /^binascii_hexlify(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +binascii_hexlify_impl Modules/binascii.c /^binascii_hexlify_impl(PyObject *module, Py_buffer *data, PyObject *sep,$/;" f file: +binascii_module_methods Modules/binascii.c /^static struct PyMethodDef binascii_module_methods[] = {$/;" v typeref:struct:PyMethodDef file: +binascii_slots Modules/binascii.c /^static PyModuleDef_Slot binascii_slots[] = {$/;" v file: +binascii_state Modules/binascii.c /^typedef struct binascii_state {$/;" s file: +binascii_state Modules/binascii.c /^} binascii_state;$/;" t typeref:struct:binascii_state file: +binascii_traverse Modules/binascii.c /^binascii_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +binascii_unhexlify Modules/clinic/binascii.c.h /^binascii_unhexlify(PyObject *module, PyObject *arg)$/;" f +binascii_unhexlify_impl Modules/binascii.c /^binascii_unhexlify_impl(PyObject *module, Py_buffer *hexstr)$/;" f file: +binasciimodule Modules/binascii.c /^static struct PyModuleDef binasciimodule = {$/;" v typeref:struct:PyModuleDef file: +bind Lib/http/server.py /^ bind=args.bind,$/;" v class:.DualStackServer +bind Lib/idlelib/idle_test/mock_tk.py /^ def bind(sequence=None, func=None, add=None):$/;" m class:Text +bind Lib/idlelib/multicall.py /^ def bind(self, sequence=None, func=None, add=None):$/;" m class:MultiCallCreator.MultiCall +bind Lib/idlelib/multicall.py /^ def bind(self, triplet, func):$/;" m class:_ComplexBinder +bind Lib/idlelib/multicall.py /^ def bind(self, triplet, func):$/;" m class:_SimpleBinder +bind Lib/inspect.py /^ def bind(self, \/, *args, **kwargs):$/;" m class:Signature +bind Lib/test/mock_socket.py /^ def bind(self, address):$/;" m class:MockSocket +bind Lib/test/support/asyncore.py /^ def bind(self, addr):$/;" m class:dispatcher +bind Lib/test/test_asyncio/test_base_events.py /^ def bind(addr):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors_local_addr +bind Lib/test/test_socket.py /^ def bind(self, sock, path):$/;" m class:TestUnixDomain +bind Lib/tkinter/__init__.py /^ def bind(self, sequence=None, func=None, add=None):$/;" m class:Misc +bind Lib/turtle.py /^ def bind(self, *args, **kwargs):$/;" m class:ScrolledCanvas +bindClient Lib/test/test_socket.py /^ def bindClient(self):$/;" m class:ThreadedSocketTestMixin +bindServer Lib/test/test_socket.py /^ def bindServer(self):$/;" m class:SocketTestBase +bindSock Lib/test/test_socket.py /^ def bindSock(self, sock):$/;" m class:InetTestBase +bindSock Lib/test/test_socket.py /^ def bindSock(self, sock):$/;" m class:UnixSocketTestBase +bind_all Lib/tkinter/__init__.py /^ def bind_all(self, sequence=None, func=None, add=None):$/;" m class:Misc +bind_class Lib/tkinter/__init__.py /^ def bind_class(self, className, sequence=None, func=None, add=None):$/;" m class:Misc +bind_events Lib/idlelib/sidebar.py /^ def bind_events(self):$/;" m class:BaseSideBar +bind_events Lib/idlelib/sidebar.py /^ def bind_events(self):$/;" m class:ShellSidebar +bind_gilstate_tstate Python/pystate.c /^bind_gilstate_tstate(PyThreadState *tstate)$/;" f file: +bind_mouse_event Lib/idlelib/sidebar.py /^ def bind_mouse_event(event_name, target_event_name):$/;" f function:BaseSideBar.bind_events +bind_ok Lib/idlelib/config_key.py /^ def bind_ok(self, keys):$/;" m class:GetKeysFrame +bind_param Modules/_sqlite/cursor.c /^bind_param(pysqlite_state *state, pysqlite_Statement *self, int pos,$/;" f file: +bind_parameters Modules/_sqlite/cursor.c /^bind_parameters(pysqlite_state *state, pysqlite_Statement *self,$/;" f file: +bind_partial Lib/inspect.py /^ def bind_partial(self, \/, *args, **kwargs):$/;" m class:Signature +bind_port Lib/test/support/socket_helper.py /^def bind_port(sock, host=HOST):$/;" f +bind_tstate Python/pystate.c /^bind_tstate(PyThreadState *tstate)$/;" f file: +bind_unix_socket Lib/test/support/socket_helper.py /^def bind_unix_socket(sock, addr):$/;" f +bind_warning Lib/lib2to3/fixes/fix_next.py /^bind_warning = "Calls to builtin next() possibly shadowed by global binding"$/;" v +bind_widget Lib/tkinter/tix.py /^ def bind_widget(self, widget):$/;" m class:PopupMenu +bind_widget Lib/tkinter/tix.py /^ def bind_widget(self, widget, cnf={}, **kw):$/;" m class:Balloon +bindigits Modules/_decimal/tests/randdec.py /^def bindigits(prec):$/;" f +binding Modules/expat/xmlparse.c /^ BINDING *binding;$/;" m struct:prefix file: +binding Modules/expat/xmlparse.c /^typedef struct binding {$/;" s file: +bindings Modules/expat/xmlparse.c /^ BINDING *bindings;$/;" m struct:tag file: +bindseq Lib/idlelib/multicall.py /^ def bindseq(seq, n=[0]):$/;" f function:_multi_call +bindtags Lib/tkinter/__init__.py /^ def bindtags(self, tagList=None):$/;" m class:Misc +bindtextdomain Lib/gettext.py /^def bindtextdomain(domain, localedir=None):$/;" f +binomialvariate Lib/random.py /^ def binomialvariate(self, n=1, p=0.5):$/;" m class:Random +binomialvariate Lib/random.py /^binomialvariate = _inst.binomialvariate$/;" v +binop Lib/ast.py /^ binop = {$/;" v class:_Unparser +binop Modules/itertoolsmodule.c /^ PyObject *binop;$/;" m struct:__anon417 file: +binop_precedence Lib/ast.py /^ binop_precedence = {$/;" v class:_Unparser +binop_rassoc Lib/ast.py /^ binop_rassoc = frozenset(("**",))$/;" v class:_Unparser +binop_test Lib/test/test_descr.py /^ def binop_test(self, a, b, res, expr="a+b", meth="__add__"):$/;" m class:OperatorsTest +binop_type_error Objects/abstract.c /^binop_type_error(PyObject *v, PyObject *w, const char *op_name)$/;" f file: +binutils_check_library Tools/build/stable_abi.py /^def binutils_check_library(manifest, library, expected_symbols, dynamic):$/;" f +binutils_get_exported_symbols Tools/build/stable_abi.py /^def binutils_get_exported_symbols(library, dynamic=False):$/;" f +bio Lib/test/pickletester.py /^ bio = io.BytesIO()$/;" v class:AbstractHookTests.test_pickler_hook.MyClass +bio Modules/_ssl.c /^ BIO *bio;$/;" m struct:__anon582 file: +bio_f_buffer_ctx_struct Lib/test/test_lib2to3/data/infinite_recursion.py /^class bio_f_buffer_ctx_struct(Structure):$/;" c +bio_info_cb Lib/test/test_lib2to3/data/infinite_recursion.py /^bio_info_cb = CFUNCTYPE(None, POINTER(bio_st), c_int, STRING, c_int, c_long, c_long)$/;" v +bio_method_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class bio_method_st(Structure):$/;" c +bio_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class bio_st(Structure):$/;" c +biscuits Lib/test/pickletester.py /^ def biscuits(self):$/;" m class:AbstractPickleTests.test_py_methods.PyMethodsTest +bisect Lib/bisect.py /^bisect = bisect_right$/;" v +bisect_clear Modules/_bisectmodule.c /^bisect_clear(PyObject *module)$/;" f file: +bisect_free Modules/_bisectmodule.c /^bisect_free(void *module)$/;" f file: +bisect_left Lib/bisect.py /^def bisect_left(a, x, lo=0, hi=None, *, key=None):$/;" f +bisect_methods Modules/_bisectmodule.c /^static PyMethodDef bisect_methods[] = {$/;" v file: +bisect_modexec Modules/_bisectmodule.c /^bisect_modexec(PyObject *m)$/;" f file: +bisect_right Lib/bisect.py /^def bisect_right(a, x, lo=0, hi=None, *, key=None):$/;" f +bisect_slots Modules/_bisectmodule.c /^static PyModuleDef_Slot bisect_slots[] = {$/;" v file: +bisect_state Modules/_bisectmodule.c /^} bisect_state;$/;" t typeref:struct:__anon368 file: +bit_length Lib/test/test_decimal.py /^ def bit_length(self):$/;" m class:CWhitebox.test_internal_use_of_overridden_methods.I +bit_length_digit Objects/longobject.c /^bit_length_digit(digit x)$/;" f file: +bitmap Lib/msilib/__init__.py /^ def bitmap(self, name, x, y, w, h, text):$/;" m class:Dialog +bitreverse_permute Modules/_decimal/libmpdec/difradix2.c /^bitreverse_permute(mpd_uint_t a[], mpd_size_t n)$/;" f file: +bits Lib/idlelib/help_about.py /^ bits = '64' if sys.maxsize > 2**32 else '32'$/;" v +bits Lib/idlelib/help_about.py /^ bits = architecture()[0][:2]$/;" v +bits PC/launcher.c /^ int bits; \/* 32 or 64 *\/$/;" m struct:__anon286 file: +bitwise_and_raw Parser/parser.c /^bitwise_and_raw(Parser *p)$/;" f file: +bitwise_and_rule Parser/parser.c /^bitwise_and_rule(Parser *p)$/;" f file: +bitwise_and_type Parser/parser.c 210;" d file: +bitwise_or_raw Parser/parser.c /^bitwise_or_raw(Parser *p)$/;" f file: +bitwise_or_rule Parser/parser.c /^bitwise_or_rule(Parser *p)$/;" f file: +bitwise_or_type Parser/parser.c 208;" d file: +bitwise_xor_raw Parser/parser.c /^bitwise_xor_raw(Parser *p)$/;" f file: +bitwise_xor_rule Parser/parser.c /^bitwise_xor_rule(Parser *p)$/;" f file: +bitwise_xor_type Parser/parser.c 209;" d file: +bk Lib/turtle.py /^ bk = back$/;" v class:TNavigator +blach Lib/test/test_traceback.py /^ blach = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.SubstitutionOverAddition +blach Lib/test/test_traceback.py /^ blach = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.SubstitutionOverElimination +black Lib/test/test_enum.py /^ black = 0$/;" v class:TestSpecial.test_mixed_enum_in_call_1.Monochrome +black Lib/test/test_enum.py /^ black = 0$/;" v class:TestSpecial.test_mixed_enum_in_call_2.Monochrome +black Lib/test/test_enum.py /^ black = 0$/;" v class:TestSpecial.test_wrong_enum_in_call.Monochrome +black Lib/test/test_enum.py /^ black = 0$/;" v class:TestSpecial.test_wrong_enum_in_mixed_call.Monochrome +blah Lib/test/test_typing.py /^ def blah():$/;" f function:OverloadTests.test_overload_fails +blah Lib/test/test_typing.py /^ def blah():$/;" f function:OverloadTests.set_up_overloads +blah Lib/test/test_typing.py /^ def blah():$/;" f function:OverloadTests.test_overload_succeeds +blah Tools/stringbench/stringbench.py /^ def blah(f):$/;" f function:bench +blake2_exec Modules/_blake2/blake2module.c /^blake2_exec(PyObject *m)$/;" f file: +blake2_get_state Modules/_blake2/blake2module.c /^blake2_get_state(PyObject *module)$/;" f file: +blake2_module Modules/_blake2/blake2module.c /^static struct PyModuleDef blake2_module = {$/;" v typeref:struct:PyModuleDef file: +blake2_rfc7693 Lib/test/test_hashlib.py /^ def blake2_rfc7693(self, constructor, md_len, in_len):$/;" m class:HashLibTestCase +blake2b Modules/_blake2/blake2module.h 11;" d +blake2b Modules/_blake2/impl/blake2b-ref.c /^int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen )$/;" f +blake2b Modules/_blake2/impl/blake2b.c /^int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen )$/;" f +blake2b_IV Modules/_blake2/impl/blake2b-ref.c /^static const uint64_t blake2b_IV[8] =$/;" v file: +blake2b_IV Modules/_blake2/impl/blake2b.c /^static const uint64_t blake2b_IV[8] =$/;" v file: +blake2b_clear_lastblock Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_clear_lastblock( blake2b_state *S )$/;" f file: +blake2b_clear_lastblock Modules/_blake2/impl/blake2b.c /^static inline int blake2b_clear_lastblock( blake2b_state *S )$/;" f file: +blake2b_clear_lastnode Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_clear_lastnode( blake2b_state *S )$/;" f file: +blake2b_clear_lastnode Modules/_blake2/impl/blake2b.c /^static inline int blake2b_clear_lastnode( blake2b_state *S )$/;" f file: +blake2b_compress Modules/_blake2/blake2module.h 12;" d +blake2b_compress Modules/_blake2/impl/blake2b-ref.c /^static int blake2b_compress( blake2b_state *S, const uint8_t block[BLAKE2B_BLOCKBYTES] )$/;" f file: +blake2b_compress Modules/_blake2/impl/blake2b.c /^static inline int blake2b_compress( blake2b_state *S, const uint8_t block[BLAKE2B_BLOCKBYTES] )$/;" f file: +blake2b_constant Modules/_blake2/impl/blake2.h /^ enum blake2b_constant$/;" g +blake2b_final Modules/_blake2/blake2module.h 13;" d +blake2b_final Modules/_blake2/impl/blake2b-ref.c /^int blake2b_final( blake2b_state *S, uint8_t *out, size_t outlen )$/;" f +blake2b_final Modules/_blake2/impl/blake2b.c /^int blake2b_final( blake2b_state *S, uint8_t *out, size_t outlen )$/;" f +blake2b_increment_counter Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_increment_counter( blake2b_state *S, const uint64_t inc )$/;" f file: +blake2b_increment_counter Modules/_blake2/impl/blake2b.c /^static inline int blake2b_increment_counter( blake2b_state *S, const uint64_t inc )$/;" f file: +blake2b_init Modules/_blake2/blake2module.h 14;" d +blake2b_init Modules/_blake2/impl/blake2b-ref.c /^int blake2b_init( blake2b_state *S, size_t outlen )$/;" f +blake2b_init Modules/_blake2/impl/blake2b.c /^int blake2b_init( blake2b_state *S, size_t outlen )$/;" f +blake2b_init0 Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_init0( blake2b_state *S )$/;" f file: +blake2b_init0 Modules/_blake2/impl/blake2b.c /^static inline int blake2b_init0( blake2b_state *S )$/;" f file: +blake2b_init_key Modules/_blake2/blake2module.h 15;" d +blake2b_init_key Modules/_blake2/impl/blake2b-ref.c /^int blake2b_init_key( blake2b_state *S, size_t outlen, const void *key, size_t keylen )$/;" f +blake2b_init_key Modules/_blake2/impl/blake2b.c /^int blake2b_init_key( blake2b_state *S, size_t outlen, const void *key, size_t keylen )$/;" f +blake2b_init_param Modules/_blake2/blake2module.h 16;" d +blake2b_init_param Modules/_blake2/impl/blake2b-ref.c /^int blake2b_init_param( blake2b_state *S, const blake2b_param *P )$/;" f +blake2b_init_param Modules/_blake2/impl/blake2b.c /^int blake2b_init_param( blake2b_state *S, const blake2b_param *P )$/;" f +blake2b_param Modules/_blake2/impl/blake2.h /^ } blake2b_param;$/;" t typeref:struct:__blake2b_param +blake2b_param_set_digest_length Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_length )$/;" f file: +blake2b_param_set_digest_length Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_length )$/;" f file: +blake2b_param_set_fanout Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout )$/;" f file: +blake2b_param_set_fanout Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout )$/;" f file: +blake2b_param_set_inner_length Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_inner_length( blake2b_param *P, const uint8_t inner_length )$/;" f file: +blake2b_param_set_inner_length Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_inner_length( blake2b_param *P, const uint8_t inner_length )$/;" f file: +blake2b_param_set_leaf_length Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_length )$/;" f file: +blake2b_param_set_leaf_length Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_length )$/;" f file: +blake2b_param_set_max_depth Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth )$/;" f file: +blake2b_param_set_max_depth Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth )$/;" f file: +blake2b_param_set_node_depth Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth )$/;" f file: +blake2b_param_set_node_depth Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth )$/;" f file: +blake2b_param_set_node_offset Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset )$/;" f file: +blake2b_param_set_node_offset Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset )$/;" f file: +blake2b_param_set_personal Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_personal( blake2b_param *P, const uint8_t personal[BLAKE2B_PERSONALBYTES] )$/;" f file: +blake2b_param_set_personal Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_personal( blake2b_param *P, const uint8_t personal[BLAKE2B_PERSONALBYTES] )$/;" f file: +blake2b_param_set_salt Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_param_set_salt( blake2b_param *P, const uint8_t salt[BLAKE2B_SALTBYTES] )$/;" f file: +blake2b_param_set_salt Modules/_blake2/impl/blake2b.c /^static inline int blake2b_param_set_salt( blake2b_param *P, const uint8_t salt[BLAKE2B_SALTBYTES] )$/;" f file: +blake2b_set_lastblock Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_set_lastblock( blake2b_state *S )$/;" f file: +blake2b_set_lastblock Modules/_blake2/impl/blake2b.c /^static inline int blake2b_set_lastblock( blake2b_state *S )$/;" f file: +blake2b_set_lastnode Modules/_blake2/impl/blake2b-ref.c /^static inline int blake2b_set_lastnode( blake2b_state *S )$/;" f file: +blake2b_set_lastnode Modules/_blake2/impl/blake2b.c /^static inline int blake2b_set_lastnode( blake2b_state *S )$/;" f file: +blake2b_sigma Modules/_blake2/impl/blake2b-ref.c /^static const uint8_t blake2b_sigma[12][16] =$/;" v file: +blake2b_sigma Modules/_blake2/impl/blake2b.c /^static const uint8_t blake2b_sigma[12][16] =$/;" v file: +blake2b_state Modules/_blake2/impl/blake2.h /^ } blake2b_state;$/;" t typeref:struct:__blake2b_state +blake2b_type Modules/_blake2/blake2module.c /^ PyTypeObject* blake2b_type;$/;" m struct:__anon538 file: +blake2b_type_slots Modules/_blake2/blake2b_impl.c /^static PyType_Slot blake2b_type_slots[] = {$/;" v file: +blake2b_type_spec Modules/_blake2/blake2b_impl.c /^PyType_Spec blake2b_type_spec = {$/;" v +blake2b_update Modules/_blake2/blake2module.h 17;" d +blake2b_update Modules/_blake2/impl/blake2b-ref.c /^int blake2b_update( blake2b_state *S, const uint8_t *in, size_t inlen )$/;" f +blake2b_update Modules/_blake2/impl/blake2b.c /^int blake2b_update( blake2b_state *S, const uint8_t *in, size_t inlen )$/;" f +blake2bp Modules/_blake2/blake2module.h 18;" d +blake2bp_final Modules/_blake2/blake2module.h 19;" d +blake2bp_init Modules/_blake2/blake2module.h 20;" d +blake2bp_init_key Modules/_blake2/blake2module.h 21;" d +blake2bp_state Modules/_blake2/impl/blake2.h /^ } blake2bp_state;$/;" t typeref:struct:__blake2bp_state +blake2bp_update Modules/_blake2/blake2module.h 22;" d +blake2mod_functions Modules/_blake2/blake2module.c /^static struct PyMethodDef blake2mod_functions[] = {$/;" v typeref:struct:PyMethodDef file: +blake2s Modules/_blake2/blake2module.h 23;" d +blake2s Modules/_blake2/impl/blake2s-ref.c /^int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen )$/;" f +blake2s Modules/_blake2/impl/blake2s.c /^int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t keylen )$/;" f +blake2s_IV Modules/_blake2/impl/blake2s-ref.c /^static const uint32_t blake2s_IV[8] =$/;" v file: +blake2s_IV Modules/_blake2/impl/blake2s.c /^static const uint32_t blake2s_IV[8] =$/;" v file: +blake2s_clear_lastblock Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_clear_lastblock( blake2s_state *S )$/;" f file: +blake2s_clear_lastblock Modules/_blake2/impl/blake2s.c /^static inline int blake2s_clear_lastblock( blake2s_state *S )$/;" f file: +blake2s_clear_lastnode Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_clear_lastnode( blake2s_state *S )$/;" f file: +blake2s_clear_lastnode Modules/_blake2/impl/blake2s.c /^static inline int blake2s_clear_lastnode( blake2s_state *S )$/;" f file: +blake2s_compress Modules/_blake2/blake2module.h 24;" d +blake2s_compress Modules/_blake2/impl/blake2s-ref.c /^static int blake2s_compress( blake2s_state *S, const uint8_t block[BLAKE2S_BLOCKBYTES] )$/;" f file: +blake2s_compress Modules/_blake2/impl/blake2s.c /^static inline int blake2s_compress( blake2s_state *S, const uint8_t block[BLAKE2S_BLOCKBYTES] )$/;" f file: +blake2s_constant Modules/_blake2/impl/blake2.h /^ enum blake2s_constant$/;" g +blake2s_final Modules/_blake2/blake2module.h 25;" d +blake2s_final Modules/_blake2/impl/blake2s-ref.c /^int blake2s_final( blake2s_state *S, uint8_t *out, size_t outlen )$/;" f +blake2s_final Modules/_blake2/impl/blake2s.c /^int blake2s_final( blake2s_state *S, uint8_t *out, size_t outlen )$/;" f +blake2s_increment_counter Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_increment_counter( blake2s_state *S, const uint32_t inc )$/;" f file: +blake2s_increment_counter Modules/_blake2/impl/blake2s.c /^static inline int blake2s_increment_counter( blake2s_state *S, const uint32_t inc )$/;" f file: +blake2s_init Modules/_blake2/blake2module.h 26;" d +blake2s_init Modules/_blake2/impl/blake2s-ref.c /^int blake2s_init( blake2s_state *S, size_t outlen )$/;" f +blake2s_init Modules/_blake2/impl/blake2s.c /^int blake2s_init( blake2s_state *S, size_t outlen )$/;" f +blake2s_init0 Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_init0( blake2s_state *S )$/;" f file: +blake2s_init0 Modules/_blake2/impl/blake2s.c /^static inline int blake2s_init0( blake2s_state *S )$/;" f file: +blake2s_init_key Modules/_blake2/blake2module.h 27;" d +blake2s_init_key Modules/_blake2/impl/blake2s-ref.c /^int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, size_t keylen )$/;" f +blake2s_init_key Modules/_blake2/impl/blake2s.c /^int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, size_t keylen )$/;" f +blake2s_init_param Modules/_blake2/blake2module.h 28;" d +blake2s_init_param Modules/_blake2/impl/blake2s-ref.c /^int blake2s_init_param( blake2s_state *S, const blake2s_param *P )$/;" f +blake2s_init_param Modules/_blake2/impl/blake2s.c /^int blake2s_init_param( blake2s_state *S, const blake2s_param *P )$/;" f +blake2s_param Modules/_blake2/impl/blake2.h /^ } blake2s_param;$/;" t typeref:struct:__blake2s_param +blake2s_param_set_digest_length Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_digest_length( blake2s_param *P, const uint8_t digest_length )$/;" f file: +blake2s_param_set_digest_length Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_digest_length( blake2s_param *P, const uint8_t digest_length )$/;" f file: +blake2s_param_set_fanout Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout )$/;" f file: +blake2s_param_set_fanout Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout )$/;" f file: +blake2s_param_set_inner_length Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_inner_length( blake2s_param *P, const uint8_t inner_length )$/;" f file: +blake2s_param_set_inner_length Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_inner_length( blake2s_param *P, const uint8_t inner_length )$/;" f file: +blake2s_param_set_leaf_length Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_leaf_length( blake2s_param *P, const uint32_t leaf_length )$/;" f file: +blake2s_param_set_leaf_length Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_leaf_length( blake2s_param *P, const uint32_t leaf_length )$/;" f file: +blake2s_param_set_max_depth Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_max_depth( blake2s_param *P, const uint8_t depth )$/;" f file: +blake2s_param_set_max_depth Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_max_depth( blake2s_param *P, const uint8_t depth )$/;" f file: +blake2s_param_set_node_depth Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth )$/;" f file: +blake2s_param_set_node_depth Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth )$/;" f file: +blake2s_param_set_node_offset Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset )$/;" f file: +blake2s_param_set_node_offset Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset )$/;" f file: +blake2s_param_set_personal Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_personal( blake2s_param *P, const uint8_t personal[BLAKE2S_PERSONALBYTES] )$/;" f file: +blake2s_param_set_personal Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_personal( blake2s_param *P, const uint8_t personal[BLAKE2S_PERSONALBYTES] )$/;" f file: +blake2s_param_set_salt Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_param_set_salt( blake2s_param *P, const uint8_t salt[BLAKE2S_SALTBYTES] )$/;" f file: +blake2s_param_set_salt Modules/_blake2/impl/blake2s.c /^static inline int blake2s_param_set_salt( blake2s_param *P, const uint8_t salt[BLAKE2S_SALTBYTES] )$/;" f file: +blake2s_set_lastblock Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_set_lastblock( blake2s_state *S )$/;" f file: +blake2s_set_lastblock Modules/_blake2/impl/blake2s.c /^static inline int blake2s_set_lastblock( blake2s_state *S )$/;" f file: +blake2s_set_lastnode Modules/_blake2/impl/blake2s-ref.c /^static inline int blake2s_set_lastnode( blake2s_state *S )$/;" f file: +blake2s_set_lastnode Modules/_blake2/impl/blake2s.c /^static inline int blake2s_set_lastnode( blake2s_state *S )$/;" f file: +blake2s_sigma Modules/_blake2/impl/blake2s-ref.c /^static const uint8_t blake2s_sigma[10][16] =$/;" v file: +blake2s_sigma Modules/_blake2/impl/blake2s.c /^static const uint8_t blake2s_sigma[10][16] =$/;" v file: +blake2s_state Modules/_blake2/impl/blake2.h /^ } blake2s_state;$/;" t typeref:struct:__blake2s_state +blake2s_type Modules/_blake2/blake2module.c /^ PyTypeObject* blake2s_type;$/;" m struct:__anon538 file: +blake2s_type_slots Modules/_blake2/blake2s_impl.c /^static PyType_Slot blake2s_type_slots[] = {$/;" v file: +blake2s_type_spec Modules/_blake2/blake2s_impl.c /^PyType_Spec blake2s_type_spec = {$/;" v +blake2s_update Modules/_blake2/blake2module.h 29;" d +blake2s_update Modules/_blake2/impl/blake2s-ref.c /^int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen )$/;" f +blake2s_update Modules/_blake2/impl/blake2s.c /^int blake2s_update( blake2s_state *S, const uint8_t *in, size_t inlen )$/;" f +blake2sp Modules/_blake2/blake2module.h 30;" d +blake2sp_final Modules/_blake2/blake2module.h 31;" d +blake2sp_init Modules/_blake2/blake2module.h 32;" d +blake2sp_init_key Modules/_blake2/blake2module.h 33;" d +blake2sp_state Modules/_blake2/impl/blake2.h /^ } blake2sp_state;$/;" t typeref:struct:__blake2sp_state +blake2sp_update Modules/_blake2/blake2module.h 34;" d +blank Lib/tkinter/__init__.py /^ def blank(self):$/;" m class:PhotoImage +blank_re Lib/lib2to3/pgen2/tokenize.py /^blank_re = re.compile(br'^[ \\t\\f]*(?:[#\\r\\n]|$)', re.ASCII)$/;" v +blank_re Lib/tokenize.py /^blank_re = re.compile(br'^[ \\t\\f]*(?:[#\\r\\n]|$)', re.ASCII)$/;" v +blch Lib/test/test_traceback.py /^ blch = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.Elimination +blech Lib/test/test_exceptions.py /^ blech = None$/;" v class:AttributeErrorTests.test_getattr_has_name_and_obj.A +blech Lib/test/test_exceptions.py /^ def blech(self):$/;" m class:AttributeErrorTests.test_getattr_has_name_and_obj_for_method.A +blech Lib/test/test_traceback.py /^ blech = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.Substitution +blech Lib/test/test_traceback.py /^ blech = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_do_not_trigger_for_big_dicts.A +blech Lib/test/test_traceback.py /^ blech = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_do_not_trigger_for_long_attributes.A +blech Lib/test/test_traceback.py /^ blech = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.A +blech Lib/test/test_traceback.py /^ blech = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.B +blech Lib/test/test_traceback.py /^ blech = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_invalid_args.C +blech Lib/test/test_traceback.py /^ blech = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions_no_args.A +blinesep Lib/test/test_email/test_email.py /^ blinesep = b'\\n'$/;" v class:TestBytesGeneratorIdempotentNL +blinesep Lib/test/test_email/test_email.py /^ blinesep = b'\\r\\n'$/;" v class:TestBytesGeneratorIdempotentCRLF +blkcnt_t Lib/test/test_lib2to3/data/infinite_recursion.py /^blkcnt_t = __darwin_blkcnt_t$/;" v +blksize Modules/_io/fileio.c /^ unsigned int blksize;$/;" m struct:__anon431 file: +blksize Modules/_io/winconsoleio.c /^ unsigned int blksize;$/;" m struct:__anon432 file: +blksize_t Lib/test/test_lib2to3/data/infinite_recursion.py /^blksize_t = __darwin_blksize_t$/;" v +blob Modules/_sqlite/blob.h /^ sqlite3_blob *blob;$/;" m struct:__anon360 +blob_ass_subscript Modules/_sqlite/blob.c /^blob_ass_subscript(pysqlite_Blob *self, PyObject *item, PyObject *value)$/;" f file: +blob_clear Modules/_sqlite/blob.c /^blob_clear(pysqlite_Blob *self)$/;" f file: +blob_close Modules/_sqlite/clinic/blob.c.h /^blob_close(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored))$/;" f +blob_close_impl Modules/_sqlite/blob.c /^blob_close_impl(pysqlite_Blob *self)$/;" f file: +blob_dealloc Modules/_sqlite/blob.c /^blob_dealloc(pysqlite_Blob *self)$/;" f file: +blob_enter Modules/_sqlite/clinic/blob.c.h /^blob_enter(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored))$/;" f +blob_enter_impl Modules/_sqlite/blob.c /^blob_enter_impl(pysqlite_Blob *self)$/;" f file: +blob_exit Modules/_sqlite/clinic/blob.c.h /^blob_exit(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +blob_exit_impl Modules/_sqlite/blob.c /^blob_exit_impl(pysqlite_Blob *self, PyObject *type, PyObject *val,$/;" f file: +blob_length Modules/_sqlite/blob.c /^blob_length(pysqlite_Blob *self)$/;" f file: +blob_members Modules/_sqlite/blob.c /^static struct PyMemberDef blob_members[] = {$/;" v typeref:struct:PyMemberDef file: +blob_methods Modules/_sqlite/blob.c /^static PyMethodDef blob_methods[] = {$/;" v file: +blob_read Modules/_sqlite/clinic/blob.c.h /^blob_read(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +blob_read_impl Modules/_sqlite/blob.c /^blob_read_impl(pysqlite_Blob *self, int length)$/;" f file: +blob_seek Modules/_sqlite/clinic/blob.c.h /^blob_seek(pysqlite_Blob *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +blob_seek_impl Modules/_sqlite/blob.c /^blob_seek_impl(pysqlite_Blob *self, int offset, int origin)$/;" f file: +blob_seterror Modules/_sqlite/blob.c /^blob_seterror(pysqlite_Blob *self, int rc)$/;" f file: +blob_slots Modules/_sqlite/blob.c /^static PyType_Slot blob_slots[] = {$/;" v file: +blob_spec Modules/_sqlite/blob.c /^static PyType_Spec blob_spec = {$/;" v file: +blob_subscript Modules/_sqlite/blob.c /^blob_subscript(pysqlite_Blob *self, PyObject *item)$/;" f file: +blob_tell Modules/_sqlite/clinic/blob.c.h /^blob_tell(pysqlite_Blob *self, PyObject *Py_UNUSED(ignored))$/;" f +blob_tell_impl Modules/_sqlite/blob.c /^blob_tell_impl(pysqlite_Blob *self)$/;" f file: +blob_traverse Modules/_sqlite/blob.c /^blob_traverse(pysqlite_Blob *self, visitproc visit, void *arg)$/;" f file: +blob_write Modules/_sqlite/clinic/blob.c.h /^blob_write(pysqlite_Blob *self, PyObject *arg)$/;" f +blob_write_impl Modules/_sqlite/blob.c /^blob_write_impl(pysqlite_Blob *self, Py_buffer *data)$/;" f file: +blobopen Modules/_sqlite/clinic/connection.c.h /^blobopen(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +blobopen_impl Modules/_sqlite/connection.c /^blobopen_impl(pysqlite_Connection *self, const char *table, const char *col,$/;" f file: +blobs Modules/_sqlite/connection.h /^ PyObject *blobs;$/;" m struct:__anon359 +block Lib/ast.py /^ def block(self, *, extra = None):$/;" m class:_Unparser +block Modules/_collectionsmodule.c /^} block;$/;" t typeref:struct:BLOCK file: +block Modules/expat/xmlparse.c /^typedef struct block {$/;" s file: +block Python/pyarena.c /^} block;$/;" t typeref:struct:_block file: +block Tools/build/deepfreeze.py /^ def block(self, prefix: str, suffix: str = "") -> None:$/;" m class:Printer +block Tools/build/generate_global_objects.py /^ def block(self, prefix, suffix="", *, continuation=None):$/;" m class:Printer +block Tools/cases_generator/generate_cases.py /^ def block(self, head: str):$/;" m class:Formatter +block Tools/cases_generator/parser.py /^ def block(self) -> Block | None:$/;" m class:Parser +block_alloc Python/pyarena.c /^block_alloc(block *b, size_t size)$/;" f file: +block_free Python/pyarena.c /^block_free(block *b) {$/;" f file: +block_len Modules/_hacl/Hacl_Hash_SHA3.c /^static uint32_t block_len(Spec_Hash_Definitions_hash_alg a)$/;" f file: +block_new Python/pyarena.c /^block_new(size_t size)$/;" f file: +block_on Lib/test/test_io.py /^ def block_on(self, char):$/;" m class:MockNonBlockWriterIO +block_on_close Lib/socketserver.py /^ block_on_close = True$/;" v class:.ForkingMixIn +block_on_close Lib/socketserver.py /^ block_on_close = True$/;" v class:ThreadingMixIn +block_rule Parser/parser.c /^block_rule(Parser *p)$/;" f file: +block_state Modules/_hacl/Hacl_Hash_SHA3.h /^ Hacl_Streaming_Keccak_hash_buf block_state;$/;" m struct:Hacl_Streaming_Keccak_state_s +block_state Modules/_hacl/Hacl_Streaming_Types.h /^ uint32_t *block_state;$/;" m struct:Hacl_Streaming_MD_state_32_s +block_state Modules/_hacl/Hacl_Streaming_Types.h /^ uint64_t *block_state;$/;" m struct:Hacl_Streaming_MD_state_64_s +block_type Parser/parser.c 111;" d file: +block_tzdata Lib/test/test_zoneinfo/test_zoneinfo.py /^ def block_tzdata(self):$/;" m class:TZDataTests +block_tzdata Lib/test/test_zoneinfo/test_zoneinfo.py /^ def block_tzdata(self):$/;" m class:TzPathUserMixin +blocked Lib/test/test_functools.py /^ blocked=['_functools'])$/;" v +blocked Lib/test/test_operator.py /^ blocked=['_operator'])$/;" v +blocked Lib/test/test_ordered_dict.py /^ blocked=['_collections'])$/;" v +blocked Lib/test/test_statistics.py /^ blocked=['_statistics'])$/;" v class:_DoNothing +blocked Lib/test/test_warnings/__init__.py /^ blocked=['_warnings'])$/;" v +blocked_domains Lib/http/cookiejar.py /^ def blocked_domains(self):$/;" m class:DefaultCookiePolicy +blocking_coroutine Lib/test/test_asyncio/test_waitfor.py /^ async def blocking_coroutine():$/;" f function:AsyncioWaitForTest._test_cancel_wait_for +blocking_hash Lib/test/test_ordered_dict.py /^ def blocking_hash(hash):$/;" f function:OrderedDictTests.test_delitem_hash_collision +blocks Modules/expat/xmlparse.c /^ BLOCK *blocks;$/;" m struct:__anon613 file: +blocksize Lib/hmac.py /^ blocksize = 64 # 512-bit HMAC; can be changed in subclasses.$/;" v class:HMAC +blocksize Python/flowgraph.c /^blocksize(basicblock *b)$/;" f file: +bloom_linebreak Objects/unicodeobject.c /^static BLOOM_MASK bloom_linebreak = ~(BLOOM_MASK)0;$/;" v file: +blowstack Lib/test/test_isinstance.py /^def blowstack(fxn, arg, compare_to):$/;" f +bltinlink Lib/pydoc.py /^ def bltinlink(name):$/;" f function:_url_handler.html_topicpage +bltinlink Lib/pydoc.py /^ def bltinlink(name):$/;" f function:_url_handler.html_index +bltinlink Lib/pydoc.py /^ def bltinlink(name):$/;" f function:_url_handler.html_keywords +bltinlink Lib/pydoc.py /^ def bltinlink(name):$/;" f function:_url_handler.html_search +bltinlink Lib/pydoc.py /^ def bltinlink(name):$/;" f function:_url_handler.html_topics +bluc Lib/test/test_traceback.py /^ bluc = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.EliminationOverAddition +bluc Lib/test/test_traceback.py /^ bluc = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.SubstitutionOverElimination +bluch Lib/test/test_traceback.py /^ bluch = 1$/;" v class:SuggestionFormattingTestBase.test_attribute_error_inside_nested_getattr.A +bluch Lib/test/test_traceback.py /^ bluch = 1$/;" v class:SuggestionFormattingTestBase.test_attribute_error_with_failing_dict.T +blucha Lib/test/test_traceback.py /^ blucha = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.EliminationOverAddition +bluchi Lib/test/test_traceback.py /^ bluchi = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.SubstitutionOverAddition +bluchin Lib/test/test_traceback.py /^ bluchin = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.Addition +blue Lib/test/test_enum.py /^ blue = 2$/;" v class:TestInternals.test_auto_garbage_corrected_fail.Color +blue Lib/test/test_enum.py /^ blue = 2$/;" v class:TestInternals.test_auto_garbage_corrected_ok.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestOrder.test_enum_has_extra_members.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestOrder.test_enum_has_extra_members_with_aliases.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestOrder.test_order_has_extra_members.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestOrder.test_order_has_extra_members_with_aliases.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestOrder.test_same_members_wrong_order.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestSpecial.test_duplicate_name_error.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestSpecial.test_no_duplicates.Color.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:OldTestFlag.test_auto_number_garbage.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_garbage_fail.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_garbage_ok.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_order.Color +blue Lib/test/test_enum.py /^ blue = ()$/;" v class:TestSpecial.test_inherited_new_from_enhanced_enum.Color +blue Lib/test/test_enum.py /^ blue = ()$/;" v class:TestSpecial.test_inherited_new_from_mixed_enum.Color +blue Lib/test/test_enum.py /^ blue = ()$/;" v class:TestSpecial.test_nonhash_value.ColorInAList +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestOrder.test_same_members.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestOrder.test_same_members_with_aliases.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestSpecial.test_extending.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestSpecial.test_extending2.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestSpecial.test_missing_override.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestSpecial.test_no_duplicates.Color +blue Lib/test/test_enum.py /^ blue = 3$/;" v class:TestSpecial.test_no_such_enum_member.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:OldTestFlag.test_auto_number.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_name.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_name_inherit.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_number.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_order_wierd.Color +blue Lib/test/test_enum.py /^ blue = auto()$/;" v class:TestInternals.test_auto_with_aliases.Color +bm Lib/test/pyclbr_input.py /^ def bm(self): pass$/;" m class:B +bn_blinding_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class bn_blinding_st(Structure):$/;" c +bn_mont_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class bn_mont_ctx_st(Structure):$/;" c +bn_recp_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class bn_recp_ctx_st(Structure):$/;" c +body Doc/includes/email-read-alternative.py /^ body = richest$/;" v +body Doc/includes/email-read-alternative.py /^ body = richest.get_body(preferencelist=('html'))$/;" v +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_excepthandler::__anon105::__anon106 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_mod::__anon46::__anon47 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_mod::__anon46::__anon48 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon52 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon53 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon54 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon61 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon62 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon63 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon64 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon65 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon66 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon69 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_stmt::__anon51::__anon70 +body Include/internal/pycore_ast.h /^ expr_ty body;$/;" m struct:_expr::__anon77::__anon82 +body Include/internal/pycore_ast.h /^ expr_ty body;$/;" m struct:_expr::__anon77::__anon83 +body Include/internal/pycore_ast.h /^ expr_ty body;$/;" m struct:_mod::__anon46::__anon49 +body Include/internal/pycore_ast.h /^ asdl_stmt_seq *body;$/;" m struct:_match_case +body Include/internal/pycore_ast_state.h /^ PyObject *body;$/;" m struct:ast_state +body Lib/nntplib.py /^ def body(self, message_spec=None, *, file=None):$/;" m class:NNTP +body Lib/test/test_httplib.py /^ def body():$/;" f function:BasicTest.test_send_iter +body Lib/tkinter/simpledialog.py /^ def body(self, master):$/;" m class:Dialog +body Lib/tkinter/simpledialog.py /^ def body(self, master):$/;" m class:_QueryDialog +body Lib/tkinter/simpledialog.py /^ def body(self, master):$/;" m class:_QueryString +body Tools/unittestgui/unittestgui.py /^ def body(self, master):$/;" m class:DiscoverSettingsDialog +body_check Lib/email/quoprimime.py /^def body_check(octet):$/;" f +body_decode Lib/email/base64mime.py /^body_decode = decode$/;" v +body_decode Lib/email/quoprimime.py /^body_decode = decode$/;" v +body_encode Lib/email/base64mime.py /^def body_encode(s, maxlinelen=76, eol=NL):$/;" f +body_encode Lib/email/charset.py /^ def body_encode(self, string):$/;" m class:Charset +body_encode Lib/email/quoprimime.py /^def body_encode(body, maxlinelen=76, eol=NL):$/;" f +body_length Lib/email/quoprimime.py /^def body_length(bytearray):$/;" f +body_line_iterator Lib/email/iterators.py /^def body_line_iterator(msg, decode=False):$/;" f +body_prefix Tools/clinic/clinic.py /^ body_prefix = ""$/;" v class:CLanguage +body_prefix Tools/clinic/clinic.py /^ body_prefix = "#"$/;" v class:CLanguage +body_prefix Tools/clinic/clinic.py /^ body_prefix = "#"$/;" v class:PythonLanguage +body_prefix Tools/clinic/clinic.py /^ body_prefix = ""$/;" v class:Language +boilerPlate Lib/test/test_contextlib.py /^ def boilerPlate(self, lock, locked):$/;" m class:LockContextTestCase +bold Lib/pydoc.py /^ def bold(self, text):$/;" m class:TextDoc +bold Lib/pydoc.py /^ def bold(self, text):$/;" m class:_PlainTextDoc +boo Lib/test/test_descr.py /^ boo = C.foo$/;" v class:.test_methods.D +boo Lib/test/test_descr.py /^ def boo(self): return "B"$/;" m class:ClassPropertiesAndMethods.test_diamond_inheritance.B +boo Lib/test/test_descr.py /^ def boo(self): return "C"$/;" m class:ClassPropertiesAndMethods.test_diamond_inheritance.C +booh Lib/test/test_class.py /^ def booh(self):$/;" f function:ClassTests.testForExceptionsRaisedInInstanceGetattr2 +bool_and Objects/boolobject.c /^bool_and(PyObject *a, PyObject *b)$/;" f file: +bool_as_number Objects/boolobject.c /^static PyNumberMethods bool_as_number = {$/;" v file: +bool_converter Modules/clinic/_testclinic.c.h /^bool_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +bool_converter Tools/clinic/clinic.py /^class bool_converter(CConverter):$/;" c +bool_converter_impl Modules/_testclinic.c /^bool_converter_impl(PyObject *module, int a, int b, int c)$/;" f file: +bool_dealloc Objects/boolobject.c /^bool_dealloc(PyObject *boolean)$/;" f file: +bool_get Modules/_ctypes/cfield.c /^bool_get(void *ptr, Py_ssize_t size)$/;" f file: +bool_invert Objects/boolobject.c /^bool_invert(PyObject *v)$/;" f file: +bool_member Modules/_testcapi/structmember.c /^ char bool_member;$/;" m struct:__anon543 file: +bool_new Objects/boolobject.c /^bool_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +bool_or Objects/boolobject.c /^bool_or(PyObject *a, PyObject *b)$/;" f file: +bool_repr Objects/boolobject.c /^bool_repr(PyObject *self)$/;" f file: +bool_return_converter Tools/clinic/clinic.py /^class bool_return_converter(CReturnConverter):$/;" c +bool_set Modules/_ctypes/cfield.c /^bool_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +bool_types Lib/test/test_ctypes/test_numbers.py /^bool_types = []$/;" v +bool_values Lib/test/test_ctypes/test_numbers.py /^bool_values = [True, False, 0, 1, -1, 5000, 'test', [], [1]]$/;" v +bool_vectorcall Objects/boolobject.c /^bool_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +bool_xor Objects/boolobject.c /^bool_xor(PyObject *a, PyObject *b)$/;" f file: +boolop_precedence Lib/ast.py /^ boolop_precedence = {"and": _Precedence.AND, "or": _Precedence.OR}$/;" v class:_Unparser +boolop_ty Include/internal/pycore_ast.h /^typedef enum _boolop { And=1, Or=2 } boolop_ty;$/;" t typeref:enum:_boolop +boolop_type Include/internal/pycore_ast_state.h /^ PyObject *boolop_type;$/;" m struct:ast_state +boolops Lib/ast.py /^ boolops = {"And": "and", "Or": "or"}$/;" v class:_Unparser +bootstate Modules/_threadmodule.c /^struct bootstate {$/;" s file: +bootstrap Lib/ensurepip/__init__.py /^def bootstrap(*, root=None, upgrade=False, user=False,$/;" f +bootstrap Lib/test/test_importlib/test_locks.py /^ def bootstrap(self):$/;" m class:LifetimeTests +bootstrap Lib/test/test_importlib/test_spec.py /^ def bootstrap(self):$/;" m class:ModuleSpecMethodsTests +bootstrap Python/thread_nt.h /^bootstrap(void *call)$/;" f +bootstrap_imp Python/import.c /^bootstrap_imp(PyThreadState *tstate)$/;" f file: +bootstrap_modules Programs/_bootstrap_python.c /^static const struct _frozen bootstrap_modules[] = {$/;" v typeref:struct:_frozen file: +bootstrap_modules Python/frozen.c /^static const struct _frozen bootstrap_modules[] = {$/;" v typeref:struct:_frozen file: +boring_generator Lib/test/test_generators.py /^ def boring_generator():$/;" f function:ExceptionTest.test_except_throw_bad_exception +borrow_read Parser/tokenizer.c /^borrow_read(void *cookie, char *buf, size_t size)$/;" f file: +borrowed Lib/test/test_opcache.py /^ borrowed = Class.slot$/;" v class:TestLoadAttrCache.test_load_borrowed_slot_should_not_crash.Sneaky +borrowed Lib/test/test_opcache.py /^ borrowed = Class.slot$/;" v class:TestLoadAttrCache.test_store_borrowed_slot_should_not_crash.Sneaky +borrowed Parser/tokenizer.c /^} borrowed;$/;" t typeref:union:__anon668 file: +both Lib/test/test_functools.py /^ both = functools.partialmethod(capture, 3, b=4)$/;" v class:TestPartialMethod.A +bottom Modules/_ctypes/_ctypes_test.c /^ long bottom;$/;" m struct:__anon516 file: +bottom Modules/cjkcodecs/cjkcodecs.h /^ unsigned char bottom, top;$/;" m struct:dbcs_index +bottom Modules/cjkcodecs/cjkcodecs.h /^ unsigned char bottom, top;$/;" m struct:unim_index +bottom Modules/cjkcodecs/cjkcodecs.h /^ unsigned char bottom, top;$/;" m struct:unim_index_bytebased +bottom Modules/cjkcodecs/cjkcodecs.h /^ unsigned char bottom, top;$/;" m struct:widedbcs_index +bottom_type Lib/test/test_typing.py /^ bottom_type = Never$/;" v class:NeverTests +bottom_type Lib/test/test_typing.py /^ bottom_type = NoReturn$/;" v class:NoReturnTests +bound Include/cpython/pystate.h /^ unsigned int bound:1;$/;" m struct:_ts::__anon219 +bound Include/internal/pycore_ast.h /^ expr_ty bound;$/;" m struct:_type_param::__anon118::__anon119 +bound Include/internal/pycore_ast_state.h /^ PyObject *bound;$/;" m struct:ast_state +bound Objects/typevarobject.c /^ PyObject *bound;$/;" m struct:__anon713 file: +bound Objects/typevarobject.c /^ PyObject *bound;$/;" m struct:__anon715 file: +bound_gilstate Include/cpython/pystate.h /^ unsigned int bound_gilstate:1;$/;" m struct:_ts::__anon219 +boundaries Lib/test/test_traceback.py /^boundaries = re.compile($/;" v +bounded_lru_cache_wrapper Modules/_functoolsmodule.c /^bounded_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)$/;" f file: +bp_bool Modules/_struct.c /^bp_bool(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bp_commands Lib/pdb.py /^ def bp_commands(self, frame):$/;" m class:Pdb +bp_double Modules/_struct.c /^bp_double(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bp_float Modules/_struct.c /^bp_float(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bp_halffloat Modules/_struct.c /^bp_halffloat(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bp_int Modules/_struct.c /^bp_int(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bp_longlong Modules/_struct.c /^bp_longlong(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bp_uint Modules/_struct.c /^bp_uint(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bp_ulonglong Modules/_struct.c /^bp_ulonglong(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +bpbynumber Lib/bdb.py /^ bpbynumber = [None] # Each entry is None or an instance of Bpt$/;" v class:Breakpoint +bpformat Lib/bdb.py /^ def bpformat(self):$/;" m class:Breakpoint +bplist Lib/bdb.py /^ bplist = {} # indexed by (file, lineno) tuple$/;" v class:Breakpoint +bpo20891_thread Programs/_testembed.c /^static void bpo20891_thread(void *lockp)$/;" f file: +bpprint Lib/bdb.py /^ def bpprint(self, out=None):$/;" m class:Breakpoint +braceidpattern Lib/string.py /^ braceidpattern = None$/;" v class:Template +braceidpattern Lib/test/test_string.py /^ braceidpattern = r'[A-Z]+'$/;" v class:TestTemplate.test_idpattern_override_inside_outside.MyPattern +braceidpattern Lib/test/test_string.py /^ braceidpattern = r'[A-Z]+'$/;" v class:TestTemplate.test_idpattern_override_inside_outside_invalid_unbraced.MyPattern +break_anywhere Lib/bdb.py /^ def break_anywhere(self, frame):$/;" m class:Bdb +break_here Lib/bdb.py /^ def break_here(self, frame):$/;" m class:Bdb +break_in_func Lib/test/test_bdb.py /^def break_in_func(funcname, fname=__file__, temporary=False, cond=None):$/;" f +break_in_while Lib/test/test_compile.py /^ def break_in_while():$/;" f function:TestSpecifics.test_false_while_loop +broadcast_address Lib/ipaddress.py /^ def broadcast_address(self):$/;" m class:_BaseNetwork +broken Lib/asyncio/locks.py /^ def broken(self):$/;" m class:Barrier +broken Lib/multiprocessing/managers.py /^ def broken(self):$/;" m class:BarrierProxy +broken Lib/threading.py /^ def broken(self):$/;" m class:Barrier +broken Tools/wasm/wasm_build.py /^ broken = "broken \/ unavailable"$/;" v class:SupportLevel +broken_unicode_with_stateful Lib/test/test_codecs.py /^broken_unicode_with_stateful = [$/;" v +broken_unix_getsockname Lib/test/test_asyncio/test_events.py /^def broken_unix_getsockname():$/;" f +brown Lib/test/test_pprint.py /^ brown=2,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +browse Lib/pydoc.py /^def browse(port=0, *, open_browser=True, hostname='localhost'):$/;" f +browse_file Lib/idlelib/idle_test/test_query.py /^ browse_file = query.HelpSource.browse_file$/;" v class:HelpsourceBrowsefileTest.Dummy_HelpSource +browse_file Lib/idlelib/query.py /^ def browse_file(self):$/;" m class:HelpSource +browseable_extension_blocklist Lib/idlelib/browser.py /^browseable_extension_blocklist = ('.pyi',)$/;" v +browser Lib/pstats.py /^ browser = ProfileBrowser(initprofile)$/;" v class:f8.ProfileBrowser +browser Tools/wasm/wasm_build.py /^ browser = "browser"$/;" v class:EmscriptenTarget +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.BackgroundBrowser$/;" v class:BackgroundBrowserCommandTest +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.Chrome$/;" v class:ChromeCommandTest +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.Edge$/;" v class:EdgeCommandTest +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.Elinks$/;" v class:ELinksCommandTest +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.Epiphany$/;" v class:EpiphanyCommandTest +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.GenericBrowser$/;" v class:GenericBrowserCommandTest +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.Mozilla$/;" v class:MozillaCommandTest +browser_class Lib/test/test_webbrowser.py /^ browser_class = webbrowser.Opera$/;" v class:OperaCommandTest +browser_debug Tools/wasm/wasm_build.py /^ browser_debug = "browser-debug"$/;" v class:EmscriptenTarget +btAddr Modules/socketmodule.h /^ ULONGLONG btAddr;$/;" m union:SOCKADDR_BTH_REDEF::__anon396 +bt_hci Modules/socketmodule.h /^ struct sockaddr_hci bt_hci;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_hci +bt_l2 Modules/socketmodule.h /^ struct sockaddr_l2 bt_l2;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_l2 +bt_l2 Modules/socketmodule.h /^ struct sockaddr_l2cap bt_l2;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_l2cap +bt_rc Modules/socketmodule.h /^ struct SOCKADDR_BTH_REDEF bt_rc;$/;" m union:sock_addr typeref:struct:sock_addr::SOCKADDR_BTH_REDEF +bt_rc Modules/socketmodule.h /^ struct sockaddr_rc bt_rc;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_rc +bt_rc Modules/socketmodule.h /^ struct sockaddr_rfcomm bt_rc;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_rfcomm +bt_sco Modules/socketmodule.h /^ struct sockaddr_sco bt_sco;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_sco +btn_test_setup Lib/idlelib/idle_test/test_searchbase.py /^ def btn_test_setup(self, meth):$/;" m class:SearchDialogBaseTest +btnfont Lib/turtledemo/__main__.py /^btnfont = ("Arial", 12, 'bold')$/;" v +bu_bool Modules/_struct.c /^bu_bool(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_double Modules/_struct.c /^bu_double(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_float Modules/_struct.c /^bu_float(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_halffloat Modules/_struct.c /^bu_halffloat(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_int Modules/_struct.c /^bu_int(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_longlong Modules/_struct.c /^bu_longlong(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_short Modules/_struct.c /^bu_short(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_uint Modules/_struct.c /^bu_uint(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +bu_ulonglong Modules/_struct.c /^bu_ulonglong(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +buckets Include/internal/pycore_hashtable.h /^ _Py_slist_t *buckets;$/;" m struct:_Py_hashtable_t +buf Include/pybuffer.h /^ void *buf;$/;" m struct:__anon1 +buf Lib/multiprocessing/shared_memory.py /^ def buf(self):$/;" m class:SharedMemory +buf Lib/test/test_asyncio/echo.py /^ buf = os.read(0, 1024)$/;" v +buf Lib/test/test_asyncio/echo2.py /^ buf = os.read(0, 1024)$/;" v +buf Lib/test/test_asyncio/echo3.py /^ buf = os.read(0, 1024)$/;" v +buf Lib/test/test_urllib.py /^ buf = None$/;" v class:fakehttp.FakeHTTPConnection +buf Modules/_blake2/impl/blake2.h /^ uint8_t buf[2 * BLAKE2B_BLOCKBYTES];$/;" m struct:__blake2b_state +buf Modules/_blake2/impl/blake2.h /^ uint8_t buf[2 * BLAKE2S_BLOCKBYTES];$/;" m struct:__blake2s_state +buf Modules/_blake2/impl/blake2.h /^ uint8_t buf[4 * BLAKE2B_BLOCKBYTES];$/;" m struct:__blake2bp_state +buf Modules/_blake2/impl/blake2.h /^ uint8_t buf[8 * BLAKE2S_BLOCKBYTES];$/;" m struct:__blake2sp_state +buf Modules/_hacl/Hacl_Hash_SHA3.h /^ uint8_t *buf;$/;" m struct:Hacl_Streaming_Keccak_state_s +buf Modules/_hacl/Hacl_Streaming_Types.h /^ uint8_t *buf;$/;" m struct:Hacl_Streaming_MD_state_32_s +buf Modules/_hacl/Hacl_Streaming_Types.h /^ uint8_t *buf;$/;" m struct:Hacl_Streaming_MD_state_64_s +buf Modules/_io/bytesio.c /^ PyObject *buf;$/;" m struct:__anon439 file: +buf Modules/_io/stringio.c /^ Py_UCS4 *buf;$/;" m struct:__anon433 file: +buf Modules/_io/winconsoleio.c /^ char buf[SMALLBUF];$/;" m struct:__anon432 file: +buf Modules/_struct.c /^ Py_buffer buf;$/;" m struct:__anon380 file: +buf Modules/expat/siphash.h /^ unsigned char buf[8], *p;$/;" m struct:siphash +buf Modules/expat/xmlparse.c /^ char *buf; \/* buffer for name components *\/$/;" m struct:tag file: +buf Modules/socketmodule.c /^ char *buf;$/;" m struct:maybe_idna file: +buf Modules/socketmodule.c /^ char *buf;$/;" m struct:sock_send file: +buf Modules/socketmodule.c /^ char *buf;$/;" m struct:sock_sendto file: +buf Parser/tokenizer.h /^ char *buf; \/* Input buffer, or NULL; malloc'ed if fp != NULL or readline != NULL *\/$/;" m struct:tok_state +buf Python/marshal.c /^ char *buf;$/;" m struct:__anon699 file: +buf Python/marshal.c /^ char *buf;$/;" m struct:__anon700 file: +bufEnd Modules/expat/xmlparse.c /^ char *bufEnd; \/* end of the buffer *\/$/;" m struct:tag file: +buf_getc Parser/tokenizer.c /^buf_getc(struct tok_state *tok) {$/;" f file: +buf_mem_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class buf_mem_st(Structure):$/;" c +buf_setreadl Parser/tokenizer.c /^buf_setreadl(struct tok_state *tok, const char* enc) {$/;" f file: +buf_size Modules/_io/stringio.c /^ size_t buf_size;$/;" m struct:__anon433 file: +buf_size Modules/_pickle.c /^ Py_ssize_t buf_size; \/* Size of the current buffered pickle data *\/$/;" m struct:PicklerObject file: +buf_size Python/marshal.c /^ Py_ssize_t buf_size;$/;" m struct:__anon700 file: +buf_ungetc Parser/tokenizer.c /^buf_ungetc(int c, struct tok_state *tok) {$/;" f file: +buff Lib/idlelib/rpc.py /^ buff = b''$/;" v class:SocketIO +buffer Include/cpython/bytesobject.h /^ PyObject *buffer;$/;" m struct:__anon174 +buffer Include/cpython/unicodeobject.h /^ PyObject *buffer;$/;" m struct:__anon236 +buffer Lib/_pyio.py /^ def buffer(self):$/;" m class:TextIOWrapper +buffer Lib/test/test_buffer.py /^ buffer = None$/;" v class:TestPythonBufferProtocol.test_multiple_inheritance_buffer_last_raising.Releaser +buffer Lib/typing.py /^ def buffer(self) -> BinaryIO:$/;" m class:TextIO +buffer Modules/_io/bufferedio.c /^ char *buffer;$/;" m struct:__anon435 file: +buffer Modules/_io/textio.c /^ PyObject *buffer;$/;" m struct:textio file: +buffer Modules/_pickle.c /^ Py_buffer buffer;$/;" m struct:UnpicklerObject file: +buffer Modules/_sre/sre.h /^ Py_buffer buffer;$/;" m struct:__anon458 +buffer Modules/_testcapi/heaptype.c /^ char buffer[4];$/;" m struct:__anon550 file: +buffer Modules/pyexpat.c /^ XML_Char *buffer; \/* Buffer used when accumulating characters *\/$/;" m struct:__anon483 file: +buffer PC/launcher2.c /^ wchar_t buffer[0];$/;" m struct:_SearchInfoBuffer file: +buffer Python/pystate.c /^ const void *buffer;$/;" m struct:_shared_str_data file: +buffer Tools/clinic/clinic.py /^class buffer: pass$/;" c +buffer_callback Lib/test/pickletester.py /^ def buffer_callback(obj):$/;" f function:AbstractPickleTests.test_in_band_buffers +buffer_callback Lib/test/pickletester.py /^ def buffer_callback(buffers):$/;" f function:AbstractPickleTests.test_buffer_callback_error +buffer_callback Modules/_pickle.c /^ PyObject *buffer_callback; \/* Callback for out-of-band buffers, or NULL *\/$/;" m struct:PicklerObject file: +buffer_info Modules/_ctypes/callproc.c /^buffer_info(PyObject *self, PyObject *arg)$/;" f file: +buffer_like_objects Lib/test/pickletester.py /^ def buffer_like_objects(self):$/;" m class:AbstractPickleTests +buffer_mask Modules/_io/bufferedio.c /^ Py_ssize_t buffer_mask;$/;" m struct:__anon435 file: +buffer_size Modules/_io/bufferedio.c /^ Py_ssize_t buffer_size;$/;" m struct:__anon435 file: +buffer_size Modules/pyexpat.c /^ int buffer_size; \/* Size of buffer, in XML_Char units *\/$/;" m struct:__anon483 file: +buffer_to_contiguous Objects/memoryobject.c /^buffer_to_contiguous(char *mem, const Py_buffer *src, char order)$/;" f file: +buffer_updated Lib/asyncio/protocols.py /^ def buffer_updated(self, nbytes):$/;" m class:BufferedProtocol +buffer_updated Lib/asyncio/sslproto.py /^ def buffer_updated(self, nbytes):$/;" m class:SSLProtocol +buffer_updated Lib/test/test_asyncio/test_buffered_proto.py /^ def buffer_updated(self, nbytes):$/;" m class:ReceiveStuffProto +buffer_updated Lib/test/test_asyncio/test_ssl.py /^ def buffer_updated(self, nsize):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoFirst +buffer_updated Lib/test/test_asyncio/test_sslproto.py /^ def buffer_updated(self, nsize):$/;" m class:BaseStartTLS.test_buf_feed_data.Proto +buffer_updated Lib/test/test_asyncio/test_sslproto.py /^ def buffer_updated(slf, nsize):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoFirst +buffer_used Modules/pyexpat.c /^ int buffer_used; \/* Buffer units in use *\/$/;" m struct:__anon483 file: +buffered Lib/ast.py /^ def buffered(self, buffer = None):$/;" m class:_Unparser +buffered Modules/_io/bufferedio.c /^} buffered;$/;" t typeref:struct:__anon435 file: +buffered_clear Modules/_io/bufferedio.c /^buffered_clear(buffered *self)$/;" f file: +buffered_closed Modules/_io/bufferedio.c /^buffered_closed(buffered *self)$/;" f file: +buffered_closed_get Modules/_io/bufferedio.c /^buffered_closed_get(buffered *self, void *context)$/;" f file: +buffered_dealloc Modules/_io/bufferedio.c /^buffered_dealloc(buffered *self)$/;" f file: +buffered_flush_and_rewind_unlocked Modules/_io/bufferedio.c /^buffered_flush_and_rewind_unlocked(buffered *self)$/;" f file: +buffered_iternext Modules/_io/bufferedio.c /^buffered_iternext(buffered *self)$/;" f file: +buffered_mode_get Modules/_io/bufferedio.c /^buffered_mode_get(buffered *self, void *context)$/;" f file: +buffered_name_get Modules/_io/bufferedio.c /^buffered_name_get(buffered *self, void *context)$/;" f file: +buffered_random Lib/test/test_io.py /^ def buffered_random():$/;" f function:IOTest.test_optional_abilities +buffered_reader Lib/test/test_io.py /^ def buffered_reader():$/;" f function:IOTest.test_optional_abilities +buffered_repr Modules/_io/bufferedio.c /^buffered_repr(buffered *self)$/;" f file: +buffered_rw_pair Lib/test/test_io.py /^ def buffered_rw_pair():$/;" f function:IOTest.test_optional_abilities +buffered_stdio Include/cpython/initconfig.h /^ int buffered_stdio;$/;" m struct:PyConfig +buffered_traverse Modules/_io/bufferedio.c /^buffered_traverse(buffered *self, visitproc visit, void *arg)$/;" f file: +buffered_writer Lib/test/test_io.py /^ def buffered_writer():$/;" f function:IOTest.test_optional_abilities +bufferediobase_methods Modules/_io/bufferedio.c /^static PyMethodDef bufferediobase_methods[] = {$/;" v file: +bufferediobase_slots Modules/_io/bufferedio.c /^static PyType_Slot bufferediobase_slots[] = {$/;" v file: +bufferediobase_spec Modules/_io/bufferedio.c /^PyType_Spec bufferediobase_spec = {$/;" v +bufferediobase_unsupported Modules/_io/bufferedio.c /^bufferediobase_unsupported(_PyIO_State *state, const char *message)$/;" f file: +bufferedrandom_getset Modules/_io/bufferedio.c /^static PyGetSetDef bufferedrandom_getset[] = {$/;" v file: +bufferedrandom_members Modules/_io/bufferedio.c /^static PyMemberDef bufferedrandom_members[] = {$/;" v file: +bufferedrandom_methods Modules/_io/bufferedio.c /^static PyMethodDef bufferedrandom_methods[] = {$/;" v file: +bufferedrandom_slots Modules/_io/bufferedio.c /^static PyType_Slot bufferedrandom_slots[] = {$/;" v file: +bufferedrandom_spec Modules/_io/bufferedio.c /^PyType_Spec bufferedrandom_spec = {$/;" v +bufferedreader_getset Modules/_io/bufferedio.c /^static PyGetSetDef bufferedreader_getset[] = {$/;" v file: +bufferedreader_members Modules/_io/bufferedio.c /^static PyMemberDef bufferedreader_members[] = {$/;" v file: +bufferedreader_methods Modules/_io/bufferedio.c /^static PyMethodDef bufferedreader_methods[] = {$/;" v file: +bufferedreader_slots Modules/_io/bufferedio.c /^static PyType_Slot bufferedreader_slots[] = {$/;" v file: +bufferedreader_spec Modules/_io/bufferedio.c /^PyType_Spec bufferedreader_spec = {$/;" v +bufferedrwpair_clear Modules/_io/bufferedio.c /^bufferedrwpair_clear(rwpair *self)$/;" f file: +bufferedrwpair_close Modules/_io/bufferedio.c /^bufferedrwpair_close(rwpair *self, PyObject *Py_UNUSED(ignored))$/;" f file: +bufferedrwpair_closed_get Modules/_io/bufferedio.c /^bufferedrwpair_closed_get(rwpair *self, void *context)$/;" f file: +bufferedrwpair_dealloc Modules/_io/bufferedio.c /^bufferedrwpair_dealloc(rwpair *self)$/;" f file: +bufferedrwpair_flush Modules/_io/bufferedio.c /^bufferedrwpair_flush(rwpair *self, PyObject *Py_UNUSED(ignored))$/;" f file: +bufferedrwpair_getset Modules/_io/bufferedio.c /^static PyGetSetDef bufferedrwpair_getset[] = {$/;" v file: +bufferedrwpair_isatty Modules/_io/bufferedio.c /^bufferedrwpair_isatty(rwpair *self, PyObject *Py_UNUSED(ignored))$/;" f file: +bufferedrwpair_members Modules/_io/bufferedio.c /^static PyMemberDef bufferedrwpair_members[] = {$/;" v file: +bufferedrwpair_methods Modules/_io/bufferedio.c /^static PyMethodDef bufferedrwpair_methods[] = {$/;" v file: +bufferedrwpair_peek Modules/_io/bufferedio.c /^bufferedrwpair_peek(rwpair *self, PyObject *args)$/;" f file: +bufferedrwpair_read Modules/_io/bufferedio.c /^bufferedrwpair_read(rwpair *self, PyObject *args)$/;" f file: +bufferedrwpair_read1 Modules/_io/bufferedio.c /^bufferedrwpair_read1(rwpair *self, PyObject *args)$/;" f file: +bufferedrwpair_readable Modules/_io/bufferedio.c /^bufferedrwpair_readable(rwpair *self, PyObject *Py_UNUSED(ignored))$/;" f file: +bufferedrwpair_readinto Modules/_io/bufferedio.c /^bufferedrwpair_readinto(rwpair *self, PyObject *args)$/;" f file: +bufferedrwpair_readinto1 Modules/_io/bufferedio.c /^bufferedrwpair_readinto1(rwpair *self, PyObject *args)$/;" f file: +bufferedrwpair_slots Modules/_io/bufferedio.c /^static PyType_Slot bufferedrwpair_slots[] = {$/;" v file: +bufferedrwpair_spec Modules/_io/bufferedio.c /^PyType_Spec bufferedrwpair_spec = {$/;" v +bufferedrwpair_traverse Modules/_io/bufferedio.c /^bufferedrwpair_traverse(rwpair *self, visitproc visit, void *arg)$/;" f file: +bufferedrwpair_writable Modules/_io/bufferedio.c /^bufferedrwpair_writable(rwpair *self, PyObject *Py_UNUSED(ignored))$/;" f file: +bufferedrwpair_write Modules/_io/bufferedio.c /^bufferedrwpair_write(rwpair *self, PyObject *args)$/;" f file: +bufferedwriter_getset Modules/_io/bufferedio.c /^static PyGetSetDef bufferedwriter_getset[] = {$/;" v file: +bufferedwriter_members Modules/_io/bufferedio.c /^static PyMemberDef bufferedwriter_members[] = {$/;" v file: +bufferedwriter_methods Modules/_io/bufferedio.c /^static PyMethodDef bufferedwriter_methods[] = {$/;" v file: +bufferedwriter_slots Modules/_io/bufferedio.c /^static PyType_Slot bufferedwriter_slots[] = {$/;" v file: +bufferedwriter_spec Modules/_io/bufferedio.c /^PyType_Spec bufferedwriter_spec = {$/;" v +buffers Modules/_pickle.c /^ PyObject *buffers; \/* iterable of out-of-band buffers, or NULL *\/$/;" m struct:UnpicklerObject file: +bufferwrapper_as_buffer Objects/typeobject.c /^static PyBufferProcs bufferwrapper_as_buffer = {$/;" v file: +bufferwrapper_dealloc Objects/typeobject.c /^bufferwrapper_dealloc(PyObject *self)$/;" f file: +bufferwrapper_releasebuf Objects/typeobject.c /^bufferwrapper_releasebuf(PyObject *self, Py_buffer *view)$/;" f file: +bufferwrapper_traverse Objects/typeobject.c /^bufferwrapper_traverse(PyBufferWrapper *self, visitproc visit, void *arg)$/;" f file: +bufio Lib/test/test_io.py /^ def bufio():$/;" f function:BufferedReaderTest.test_readlines +buflen Modules/_blake2/impl/blake2.h /^ uint32_t buflen;$/;" m struct:__blake2b_state +buflen Modules/_blake2/impl/blake2.h /^ uint32_t buflen;$/;" m struct:__blake2bp_state +buflen Modules/_blake2/impl/blake2.h /^ uint32_t buflen;$/;" m struct:__blake2s_state +buflen Modules/_blake2/impl/blake2.h /^ uint32_t buflen;$/;" m struct:__blake2sp_state +bufneed Lib/idlelib/rpc.py /^ bufneed = 4$/;" v class:SocketIO +bufsize Lib/cgi.py /^ bufsize = 8*1024 # I\/O buffering size for copy to file$/;" v class:FieldStorage +bufsize Lib/test/test_socket.py /^ bufsize = -1 # Use default buffer size$/;" v class:FileObjectClassTestCase +bufsize Lib/test/test_socket.py /^ bufsize = 0 # Use unbuffered mode$/;" v class:UnbufferedFileObjectClassTestCase +bufsize Lib/test/test_socket.py /^ bufsize = 1 # Default-buffered for reading; line-buffered for writing$/;" v class:LineBufferedFileObjectClassTestCase +bufsize Lib/test/test_socket.py /^ bufsize = 128$/;" v class:SocketCANTest +bufsize Lib/test/test_socket.py /^ bufsize = 2 # Exercise the buffering code$/;" v class:SmallBufferedFileObjectClassTestCase +bufsize Lib/test/test_socket.py /^ bufsize = 8192$/;" v class:SocketRDSTest +bufstate Lib/idlelib/rpc.py /^ bufstate = 0 # meaning: 0 => reading count; 1 => reading data$/;" v class:SocketIO +buftype Lib/test/test_memoryio.py /^ buftype = str$/;" v class:PyStringIOPickleTest +buftype Lib/test/test_memoryio.py /^ buftype = str$/;" v class:PyStringIOTest +buftype Lib/test/test_memoryio.py /^ def buftype(s):$/;" m class:PyBytesIOTest +bug1333982 Lib/test/test_dis.py /^def bug1333982(x=[]):$/;" f +bug42562 Lib/test/test_dis.py /^def bug42562():$/;" f +bug46724 Lib/test/test_dis.py /^bug46724 = bytes([$/;" v +bug708901 Lib/test/test_dis.py /^def bug708901():$/;" f +bug801631 Lib/test/test_fileio.py /^ def bug801631():$/;" f function:OtherFileTests.testTruncateOnWindows +bug93662 Lib/test/test_code.py /^def bug93662():$/;" f +build Doc/make.bat /^:build$/;" l +build Lib/test/test_importlib/_path.py /^def build($/;" f +build Lib/test/test_importlib/resources/_path.py /^def build(spec: FilesSpec, prefix=pathlib.Path()):$/;" f +build Tools/msi/buildrelease.bat /^:build$/;" l +build Tools/wasm/wasm_build.py /^ build = sysconfig.get_config_var("BUILD_GNU_TYPE")$/;" v class:Host +build Tools/wasm/wasm_build.py /^ build="auto build (build 'build' Python, emports, configure, compile)",$/;" v +buildArgs Parser/asdl_c.py /^ def buildArgs(self, fields):$/;" m class:Obj2ModVisitor +buildDMG Mac/BuildScript/build-installer.py /^def buildDMG():$/;" f +buildDocument Lib/xml/dom/pulldom.py /^ def buildDocument(self, uri, tagname):$/;" m class:PullDOM +buildInstaller Mac/BuildScript/build-installer.py /^def buildInstaller():$/;" f +buildLibraries Mac/BuildScript/build-installer.py /^def buildLibraries():$/;" f +buildPython Mac/BuildScript/build-installer.py /^def buildPython():$/;" f +buildPythonDocs Mac/BuildScript/build-installer.py /^def buildPythonDocs():$/;" f +buildRecipe Mac/BuildScript/build-installer.py /^def buildRecipe(recipe, basedir, archList):$/;" f +build_alpharep_fixture Lib/test/test_zipfile/_path/test_path.py /^def build_alpharep_fixture():$/;" f +build_c_generator Tools/peg_generator/pegen/build.py /^def build_c_generator($/;" f +build_c_parser_and_generator Tools/peg_generator/pegen/build.py /^def build_c_parser_and_generator($/;" f +build_can_frame Lib/test/test_socket.py /^ def build_can_frame(cls, can_id, data):$/;" m class:CANTest +build_cellfixedoffsets Python/compile.c /^build_cellfixedoffsets(_PyCompile_CodeUnitMetadata *umd)$/;" f file: +build_chain Lib/test/test_finalization.py /^ def build_chain(self, classes):$/;" m class:CycleChainFinalizationTest +build_emports Tools/wasm/wasm_build.py /^ def build_emports(self, force: bool = False):$/;" m class:BuildProfile +build_extension Lib/test/test_peg_generator/test_c_parser.py /^ def build_extension(self, grammar_source):$/;" m class:TestCParser +build_files Lib/test/test_importlib/fixtures.py /^build_files = _path.build$/;" v +build_filter_spec Modules/_lzmamodule.c /^build_filter_spec(const lzma_filter *f)$/;" f file: +build_fstr Lib/test/test_fstring.py /^ def build_fstr(n, extra=''):$/;" f function:.test_many_expressions +build_fstring_body Python/ast_unparse.c /^build_fstring_body(asdl_expr_seq *values, bool is_format_spec)$/;" f file: +build_indices_generic Objects/dictobject.c /^build_indices_generic(PyDictKeysObject *keys, PyDictKeyEntry *ep, Py_ssize_t n)$/;" f file: +build_indices_unicode Objects/dictobject.c /^build_indices_unicode(PyDictKeysObject *keys, PyDictUnicodeEntry *ep, Py_ssize_t n)$/;" f file: +build_item Tools/c-analyzer/c_analyzer/info.py /^ def build_item(cls, info, resolved=None, **extra):$/;" m class:Analysis +build_item Tools/c-analyzer/cpython/_analyzer.py /^ def build_item(cls, info, result=None):$/;" m class:Analysis +build_key_string Lib/idlelib/config_key.py /^ def build_key_string(self):$/;" m class:GetKeysFrame +build_model Modules/expat/xmlparse.c /^build_model(XML_Parser parser) {$/;" f file: +build_namelists Modules/ossaudiodev.c /^build_namelists (PyObject *module)$/;" f file: +build_number Modules/socketmodule.c /^ DWORD build_number; \/* available starting with this Win10 BuildNumber *\/$/;" m struct:__anon389 file: +build_opener Lib/urllib/request.py /^def build_opener(*handlers):$/;" f +build_openssl_arch Mac/BuildScript/build-installer.py /^ def build_openssl_arch(archbase, arch):$/;" f function:build_universal_openssl +build_parser Tools/peg_generator/pegen/build.py /^def build_parser($/;" f +build_pattern Lib/lib2to3/fixes/fix_imports.py /^ def build_pattern(self):$/;" m class:FixImports +build_pattern Lib/lib2to3/fixes/fix_imports.py /^def build_pattern(mapping=MAPPING):$/;" f +build_pattern Lib/lib2to3/fixes/fix_renames.py /^def build_pattern():$/;" f +build_pattern Lib/lib2to3/fixes/fix_urllib.py /^ def build_pattern(self):$/;" m class:FixUrllib +build_pattern Lib/lib2to3/fixes/fix_urllib.py /^def build_pattern():$/;" f +build_prefix Lib/test/test_getpath.py /^ build_prefix=None,$/;" v class:MockGetPathTests +build_prefix Modules/getpath.py /^ build_prefix = joinpath(real_executable_dir, VPATH)$/;" v +build_prefix Modules/getpath.py /^ build_prefix = joinpath(real_executable_dir, VPATH)$/;" v +build_prefix Modules/getpath.py /^build_prefix = None$/;" v +build_python_generator Tools/peg_generator/pegen/build.py /^def build_python_generator($/;" f +build_python_parser_and_generator Tools/peg_generator/pegen/build.py /^def build_python_parser_and_generator($/;" f +build_record Lib/test/test_importlib/fixtures.py /^def build_record(file_defs):$/;" f +build_script Lib/test/test_import/__init__.py /^ def build_script(cls, name, *,$/;" m class:ModuleSnapshot +build_section Tools/c-analyzer/c_analyzer/__main__.py /^def build_section(name, groupitems, *, relroot=None):$/;" f +build_stdlib_prefix Modules/getpath.py /^ build_stdlib_prefix = build_prefix$/;" v +build_stdlib_prefix Modules/getpath.py /^ build_stdlib_prefix = search_up(build_prefix, *BUILDSTDLIB_LANDMARKS)$/;" v +build_string Objects/stringlib/unicode_format.h /^build_string(SubString *input, PyObject *args, PyObject *kwargs,$/;" f +build_struct_time Misc/coverity_model.c /^build_struct_time(int y, int m, int d, int hh, int mm, int ss, int dstflag)$/;" f file: +build_struct_time Modules/_datetimemodule.c /^build_struct_time(int y, int m, int d, int hh, int mm, int ss, int dstflag)$/;" f file: +build_subprocess_arglist Lib/idlelib/pyshell.py /^ def build_subprocess_arglist(self):$/;" m class:ModifiedInterpreter +build_table Tools/c-analyzer/c_common/tables.py /^def build_table(specs, *, sep=' ', defaultwidth=None):$/;" f +build_template Tools/ssl/multissltests.py /^ build_template = "libressl-{}"$/;" v class:BuildLibreSSL +build_template Tools/ssl/multissltests.py /^ build_template = "openssl-{}"$/;" v class:BuildOpenSSL +build_template Tools/ssl/multissltests.py /^ build_template = None$/;" v class:AbstractBuilder +build_test_opener Lib/test/test_urllib2.py /^def build_test_opener(*handler_instances):$/;" f +build_times_result Modules/posixmodule.c /^build_times_result(PyObject *module, double user, double system,$/;" f file: +build_ttinfo Modules/_zoneinfo.c /^build_ttinfo(zoneinfo_state *state, long utcoffset, long dstoffset,$/;" f file: +build_tzrule Modules/_zoneinfo.c /^build_tzrule(zoneinfo_state *state, PyObject *std_abbr, PyObject *dst_abbr,$/;" f file: +build_universal_openssl Mac/BuildScript/build-installer.py /^def build_universal_openssl(basedir, archList):$/;" f +builddir Tools/wasm/wasm_build.py /^ def builddir(self) -> pathlib.Path:$/;" m class:BuildProfile +builddoc Tools/msi/buildrelease.bat /^:builddoc$/;" l +buildinfo Modules/getbuildinfo.c /^static char buildinfo[50 + sizeof(GITVERSION) +$/;" v file: +buildmap Tools/unicode/genmap_support.py /^ def buildmap(self):$/;" m class:EncodeMapWriter +builtin___build_class__ Python/bltinmodule.c /^builtin___build_class__(PyObject *self, PyObject *const *args, Py_ssize_t nargs,$/;" f file: +builtin___import__ Python/clinic/bltinmodule.c.h /^builtin___import__(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +builtin___import___impl Python/bltinmodule.c /^builtin___import___impl(PyObject *module, PyObject *name, PyObject *globals,$/;" f file: +builtin_abs Python/bltinmodule.c /^builtin_abs(PyObject *module, PyObject *x)$/;" f file: +builtin_aiter Python/bltinmodule.c /^builtin_aiter(PyObject *module, PyObject *async_iterable)$/;" f file: +builtin_all Python/bltinmodule.c /^builtin_all(PyObject *module, PyObject *iterable)$/;" f file: +builtin_anext Python/clinic/bltinmodule.c.h /^builtin_anext(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_anext_impl Python/bltinmodule.c /^builtin_anext_impl(PyObject *module, PyObject *aiterator,$/;" f file: +builtin_any Python/bltinmodule.c /^builtin_any(PyObject *module, PyObject *iterable)$/;" f file: +builtin_ascii Python/bltinmodule.c /^builtin_ascii(PyObject *module, PyObject *obj)$/;" f file: +builtin_bin Python/bltinmodule.c /^builtin_bin(PyObject *module, PyObject *number)$/;" f file: +builtin_breakpoint Python/bltinmodule.c /^builtin_breakpoint(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *keywords)$/;" f file: +builtin_call_fail_kind Python/specialize.c /^builtin_call_fail_kind(int ml_flags)$/;" f file: +builtin_callable Python/bltinmodule.c /^builtin_callable(PyObject *module, PyObject *obj)$/;" f file: +builtin_chr Python/clinic/bltinmodule.c.h /^builtin_chr(PyObject *module, PyObject *arg)$/;" f +builtin_chr_impl Python/bltinmodule.c /^builtin_chr_impl(PyObject *module, int i)$/;" f file: +builtin_compile Python/clinic/bltinmodule.c.h /^builtin_compile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +builtin_compile_impl Python/bltinmodule.c /^builtin_compile_impl(PyObject *module, PyObject *source, PyObject *filename,$/;" f file: +builtin_delattr Python/clinic/bltinmodule.c.h /^builtin_delattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_delattr_impl Python/bltinmodule.c /^builtin_delattr_impl(PyObject *module, PyObject *obj, PyObject *name)$/;" f file: +builtin_dir Python/clinic/bltinmodule.c.h /^builtin_dir(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_dir_impl Python/bltinmodule.c /^builtin_dir_impl(PyObject *module, PyObject *arg)$/;" f file: +builtin_divmod Python/clinic/bltinmodule.c.h /^builtin_divmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_divmod_impl Python/bltinmodule.c /^builtin_divmod_impl(PyObject *module, PyObject *x, PyObject *y)$/;" f file: +builtin_eval Python/clinic/bltinmodule.c.h /^builtin_eval(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_eval_impl Python/bltinmodule.c /^builtin_eval_impl(PyObject *module, PyObject *source, PyObject *globals,$/;" f file: +builtin_exec Python/clinic/bltinmodule.c.h /^builtin_exec(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +builtin_exec_impl Python/bltinmodule.c /^builtin_exec_impl(PyObject *module, PyObject *source, PyObject *globals,$/;" f file: +builtin_format Python/clinic/bltinmodule.c.h /^builtin_format(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_format_impl Python/bltinmodule.c /^builtin_format_impl(PyObject *module, PyObject *value, PyObject *format_spec)$/;" f file: +builtin_getattr Python/clinic/bltinmodule.c.h /^builtin_getattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_getattr_impl Python/bltinmodule.c /^builtin_getattr_impl(PyObject *module, PyObject *object, PyObject *name,$/;" f file: +builtin_globals Python/clinic/bltinmodule.c.h /^builtin_globals(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +builtin_globals_impl Python/bltinmodule.c /^builtin_globals_impl(PyObject *module)$/;" f file: +builtin_hasattr Python/clinic/bltinmodule.c.h /^builtin_hasattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_hasattr_impl Python/bltinmodule.c /^builtin_hasattr_impl(PyObject *module, PyObject *obj, PyObject *name)$/;" f file: +builtin_hash Python/bltinmodule.c /^builtin_hash(PyObject *module, PyObject *obj)$/;" f file: +builtin_hashes Lib/test/test_hashlib.py /^ builtin_hashes = default_builtin_hashes$/;" v +builtin_hashes Lib/test/test_hashlib.py /^ builtin_hashes = {$/;" v +builtin_hashes Lib/test/test_hashlib.py /^builtin_hashes = sysconfig.get_config_var("PY_BUILTIN_HASHLIB_HASHES")$/;" v +builtin_hashlib Lib/test/test_hashlib.py /^ builtin_hashlib = None$/;" v +builtin_hashlib Lib/test/test_hashlib.py /^ builtin_hashlib = import_fresh_module('hashlib', blocked=['_hashlib'])$/;" v +builtin_hex Python/bltinmodule.c /^builtin_hex(PyObject *module, PyObject *number)$/;" f file: +builtin_id Python/bltinmodule.c /^builtin_id(PyModuleDef *self, PyObject *v)$/;" f file: +builtin_input Python/clinic/bltinmodule.c.h /^builtin_input(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_input_impl Python/bltinmodule.c /^builtin_input_impl(PyObject *module, PyObject *prompt)$/;" f file: +builtin_isinstance Python/clinic/bltinmodule.c.h /^builtin_isinstance(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_isinstance_impl Python/bltinmodule.c /^builtin_isinstance_impl(PyObject *module, PyObject *obj,$/;" f file: +builtin_issubclass Python/clinic/bltinmodule.c.h /^builtin_issubclass(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_issubclass_impl Python/bltinmodule.c /^builtin_issubclass_impl(PyObject *module, PyObject *cls,$/;" f file: +builtin_iter Python/clinic/bltinmodule.c.h /^builtin_iter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_iter_impl Python/bltinmodule.c /^builtin_iter_impl(PyObject *module, PyObject *object, PyObject *sentinel)$/;" f file: +builtin_keys_version Include/internal/pycore_code.h /^ uint16_t builtin_keys_version;$/;" m struct:__anon18 +builtin_len Python/bltinmodule.c /^builtin_len(PyObject *module, PyObject *obj)$/;" f file: +builtin_locals Python/clinic/bltinmodule.c.h /^builtin_locals(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +builtin_locals_impl Python/bltinmodule.c /^builtin_locals_impl(PyObject *module)$/;" f file: +builtin_max Python/bltinmodule.c /^builtin_max(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +builtin_methods Python/bltinmodule.c /^static PyMethodDef builtin_methods[] = {$/;" v file: +builtin_min Python/bltinmodule.c /^builtin_min(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +builtin_mod Tools/importbench/importbench.py /^def builtin_mod(seconds, repeat):$/;" f +builtin_next Python/clinic/bltinmodule.c.h /^builtin_next(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_next_impl Python/bltinmodule.c /^builtin_next_impl(PyObject *module, PyObject *iterator,$/;" f file: +builtin_oct Python/bltinmodule.c /^builtin_oct(PyObject *module, PyObject *number)$/;" f file: +builtin_ord Python/bltinmodule.c /^builtin_ord(PyObject *module, PyObject *c)$/;" f file: +builtin_pow Python/clinic/bltinmodule.c.h /^builtin_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +builtin_pow_impl Python/bltinmodule.c /^builtin_pow_impl(PyObject *module, PyObject *base, PyObject *exp,$/;" f file: +builtin_prefixes PC/launcher.c /^static wchar_t * builtin_prefixes [] = {$/;" v file: +builtin_print Python/clinic/bltinmodule.c.h /^builtin_print(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +builtin_print_impl Python/bltinmodule.c /^builtin_print_impl(PyObject *module, PyObject *args, PyObject *sep,$/;" f file: +builtin_repr Python/bltinmodule.c /^builtin_repr(PyObject *module, PyObject *obj)$/;" f file: +builtin_round Python/clinic/bltinmodule.c.h /^builtin_round(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +builtin_round_impl Python/bltinmodule.c /^builtin_round_impl(PyObject *module, PyObject *number, PyObject *ndigits)$/;" f file: +builtin_setattr Python/clinic/bltinmodule.c.h /^builtin_setattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_setattr_impl Python/bltinmodule.c /^builtin_setattr_impl(PyObject *module, PyObject *obj, PyObject *name,$/;" f file: +builtin_sorted Python/bltinmodule.c /^builtin_sorted(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f file: +builtin_string Lib/test/test_unittest/testmock/testpatch.py /^builtin_string = 'builtins'$/;" v +builtin_sum Python/clinic/bltinmodule.c.h /^builtin_sum(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +builtin_sum_impl Python/bltinmodule.c /^builtin_sum_impl(PyObject *module, PyObject *iterable, PyObject *start)$/;" f file: +builtin_types Parser/asdl.py /^builtin_types = {'identifier', 'string', 'int', 'constant'}$/;" v +builtin_vars Python/clinic/bltinmodule.c.h /^builtin_vars(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +builtin_vars_impl Python/bltinmodule.c /^builtin_vars_impl(PyObject *module, PyObject *object)$/;" f file: +builtin_virtual_paths PC/launcher.c /^static SHEBANG builtin_virtual_paths [] = {$/;" v file: +builtins Include/internal/pycore_interp.h /^ PyObject *builtins;$/;" m struct:_is +builtins Include/internal/pycore_typeobject.h /^ static_builtin_state builtins[_Py_MAX_STATIC_BUILTIN_TYPES];$/;" m struct:types_state +builtins_copy Include/internal/pycore_interp.h /^ PyObject *builtins_copy;$/;" m struct:_is +builtinsmodule Python/bltinmodule.c /^static struct PyModuleDef builtinsmodule = {$/;" v typeref:struct:PyModuleDef file: +bump_depth Lib/idlelib/undo.py /^ def bump_depth(self, incr=1):$/;" m class:CommandSequence +bump_num Lib/test/test_re.py /^ def bump_num(self, matchobj):$/;" m class:ReTests +bumpserialno Objects/obmalloc.c /^bumpserialno(void)$/;" f file: +busy Include/internal/pycore_ceval_state.h /^ int busy;$/;" m struct:_pending_calls +busy_retry Lib/test/support/__init__.py /^def busy_retry(timeout, err_msg=None, \/, *, error=True):$/;" f +buttonbox Lib/tkinter/simpledialog.py /^ def buttonbox(self):$/;" m class:Dialog +bxml Lib/test/test_xml_etree.py /^ def bxml(encoding):$/;" f function:ElementTreeTest.test_encoding +by Lib/test/test_bytes.py /^ def by(s):$/;" f function:BaseBytesTest.test_getslice +by Lib/test/test_bytes.py /^ def by(s):$/;" f function:ByteArrayTest.test_regexps +by_priority Tools/c-analyzer/c_parser/info.py /^ def by_priority(cls, group=None):$/;" m class:KIND +bye Lib/turtle.py /^ def bye(self):$/;" m class:_Screen +bypass_context Lib/test/test_nntplib.py /^class bypass_context:$/;" c +byref Modules/_ctypes/callproc.c /^byref(PyObject *self, PyObject *args)$/;" f file: +byte Lib/test/test_string_literals.py /^def byte(i):$/;" f +byteToAscii Modules/expat/xmltok.c /^ int(PTRFASTCALL *byteToAscii)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +byteType Modules/expat/xmltok.c /^ int(PTRFASTCALL *byteType)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +byte_array_object_converter Modules/clinic/_testclinic.c.h /^byte_array_object_converter(PyObject *module, PyObject *arg)$/;" f +byte_array_object_converter_impl Modules/_testclinic.c /^byte_array_object_converter_impl(PyObject *module, PyByteArrayObject *a)$/;" f file: +byte_converter Objects/bytesobject.c /^byte_converter(PyObject *arg, char *p)$/;" f file: +byte_converter Tools/clinic/clinic.py /^class byte_converter(unsigned_char_converter): pass$/;" c +byte_member Modules/_testcapi/structmember.c /^ char byte_member;$/;" m struct:__anon543 file: +bytearray8 Lib/pickletools.py /^bytearray8 = ArgumentDescriptor($/;" v +bytearray___init__ Objects/clinic/bytearrayobject.c.h /^bytearray___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +bytearray___init___impl Objects/bytearrayobject.c /^bytearray___init___impl(PyByteArrayObject *self, PyObject *arg,$/;" f file: +bytearray_alloc Objects/bytearrayobject.c /^bytearray_alloc(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +bytearray_append Objects/clinic/bytearrayobject.c.h /^bytearray_append(PyByteArrayObject *self, PyObject *arg)$/;" f +bytearray_append_impl Objects/bytearrayobject.c /^bytearray_append_impl(PyByteArrayObject *self, int item)$/;" f file: +bytearray_as_buffer Objects/bytearrayobject.c /^static PyBufferProcs bytearray_as_buffer = {$/;" v file: +bytearray_as_mapping Objects/bytearrayobject.c /^static PyMappingMethods bytearray_as_mapping = {$/;" v file: +bytearray_as_number Objects/bytearrayobject.c /^static PyNumberMethods bytearray_as_number = {$/;" v file: +bytearray_as_sequence Objects/bytearrayobject.c /^static PySequenceMethods bytearray_as_sequence = {$/;" v file: +bytearray_ass_subscript Objects/bytearrayobject.c /^bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *values)$/;" f file: +bytearray_clear Objects/clinic/bytearrayobject.c.h /^bytearray_clear(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))$/;" f +bytearray_clear_impl Objects/bytearrayobject.c /^bytearray_clear_impl(PyByteArrayObject *self)$/;" f file: +bytearray_contains Objects/bytearrayobject.c /^bytearray_contains(PyObject *self, PyObject *arg)$/;" f file: +bytearray_copy Objects/clinic/bytearrayobject.c.h /^bytearray_copy(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))$/;" f +bytearray_copy_impl Objects/bytearrayobject.c /^bytearray_copy_impl(PyByteArrayObject *self)$/;" f file: +bytearray_count Objects/bytearrayobject.c /^bytearray_count(PyByteArrayObject *self, PyObject *args)$/;" f file: +bytearray_dealloc Objects/bytearrayobject.c /^bytearray_dealloc(PyByteArrayObject *self)$/;" f file: +bytearray_decode Objects/clinic/bytearrayobject.c.h /^bytearray_decode(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytearray_decode_impl Objects/bytearrayobject.c /^bytearray_decode_impl(PyByteArrayObject *self, const char *encoding,$/;" f file: +bytearray_endswith Objects/bytearrayobject.c /^bytearray_endswith(PyByteArrayObject *self, PyObject *args)$/;" f file: +bytearray_extend Objects/bytearrayobject.c /^bytearray_extend(PyByteArrayObject *self, PyObject *iterable_of_ints)$/;" f file: +bytearray_find Objects/bytearrayobject.c /^bytearray_find(PyByteArrayObject *self, PyObject *args)$/;" f file: +bytearray_fromhex Objects/clinic/bytearrayobject.c.h /^bytearray_fromhex(PyTypeObject *type, PyObject *arg)$/;" f +bytearray_fromhex_impl Objects/bytearrayobject.c /^bytearray_fromhex_impl(PyTypeObject *type, PyObject *string)$/;" f file: +bytearray_getbuffer Objects/bytearrayobject.c /^bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags)$/;" f file: +bytearray_getitem Objects/bytearrayobject.c /^bytearray_getitem(PyByteArrayObject *self, Py_ssize_t i)$/;" f file: +bytearray_hex Objects/clinic/bytearrayobject.c.h /^bytearray_hex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytearray_hex_impl Objects/bytearrayobject.c /^bytearray_hex_impl(PyByteArrayObject *self, PyObject *sep, int bytes_per_sep)$/;" f file: +bytearray_iconcat Objects/bytearrayobject.c /^bytearray_iconcat(PyByteArrayObject *self, PyObject *other)$/;" f file: +bytearray_index Objects/bytearrayobject.c /^bytearray_index(PyByteArrayObject *self, PyObject *args)$/;" f file: +bytearray_insert Objects/clinic/bytearrayobject.c.h /^bytearray_insert(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_insert_impl Objects/bytearrayobject.c /^bytearray_insert_impl(PyByteArrayObject *self, Py_ssize_t index, int item)$/;" f file: +bytearray_irepeat Objects/bytearrayobject.c /^bytearray_irepeat(PyByteArrayObject *self, Py_ssize_t count)$/;" f file: +bytearray_iter Objects/bytearrayobject.c /^bytearray_iter(PyObject *seq)$/;" f file: +bytearray_iterator Lib/_collections_abc.py /^bytearray_iterator = type(iter(bytearray()))$/;" v +bytearray_join Objects/bytearrayobject.c /^bytearray_join(PyByteArrayObject *self, PyObject *iterable_of_bytes)$/;" f file: +bytearray_length Objects/bytearrayobject.c /^bytearray_length(PyByteArrayObject *self)$/;" f file: +bytearray_lstrip Objects/clinic/bytearrayobject.c.h /^bytearray_lstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_lstrip_impl Objects/bytearrayobject.c /^bytearray_lstrip_impl(PyByteArrayObject *self, PyObject *bytes)$/;" f file: +bytearray_maketrans Objects/clinic/bytearrayobject.c.h /^bytearray_maketrans(void *null, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_maketrans_impl Objects/bytearrayobject.c /^bytearray_maketrans_impl(Py_buffer *frm, Py_buffer *to)$/;" f file: +bytearray_methods Objects/bytearrayobject.c /^bytearray_methods[] = {$/;" v file: +bytearray_mod Objects/bytearrayobject.c /^bytearray_mod(PyObject *v, PyObject *w)$/;" f file: +bytearray_partition Objects/bytearrayobject.c /^bytearray_partition(PyByteArrayObject *self, PyObject *sep)$/;" f file: +bytearray_pop Objects/clinic/bytearrayobject.c.h /^bytearray_pop(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_pop_impl Objects/bytearrayobject.c /^bytearray_pop_impl(PyByteArrayObject *self, Py_ssize_t index)$/;" f file: +bytearray_reduce Objects/clinic/bytearrayobject.c.h /^bytearray_reduce(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))$/;" f +bytearray_reduce_ex Objects/clinic/bytearrayobject.c.h /^bytearray_reduce_ex(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_reduce_ex_impl Objects/bytearrayobject.c /^bytearray_reduce_ex_impl(PyByteArrayObject *self, int proto)$/;" f file: +bytearray_reduce_impl Objects/bytearrayobject.c /^bytearray_reduce_impl(PyByteArrayObject *self)$/;" f file: +bytearray_releasebuffer Objects/bytearrayobject.c /^bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view)$/;" f file: +bytearray_remove Objects/clinic/bytearrayobject.c.h /^bytearray_remove(PyByteArrayObject *self, PyObject *arg)$/;" f +bytearray_remove_impl Objects/bytearrayobject.c /^bytearray_remove_impl(PyByteArrayObject *self, int value)$/;" f file: +bytearray_removeprefix Objects/clinic/bytearrayobject.c.h /^bytearray_removeprefix(PyByteArrayObject *self, PyObject *arg)$/;" f +bytearray_removeprefix_impl Objects/bytearrayobject.c /^bytearray_removeprefix_impl(PyByteArrayObject *self, Py_buffer *prefix)$/;" f file: +bytearray_removesuffix Objects/clinic/bytearrayobject.c.h /^bytearray_removesuffix(PyByteArrayObject *self, PyObject *arg)$/;" f +bytearray_removesuffix_impl Objects/bytearrayobject.c /^bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix)$/;" f file: +bytearray_repeat Objects/bytearrayobject.c /^bytearray_repeat(PyByteArrayObject *self, Py_ssize_t count)$/;" f file: +bytearray_replace Objects/clinic/bytearrayobject.c.h /^bytearray_replace(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_replace_impl Objects/bytearrayobject.c /^bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,$/;" f file: +bytearray_repr Objects/bytearrayobject.c /^bytearray_repr(PyByteArrayObject *self)$/;" f file: +bytearray_reverse Objects/clinic/bytearrayobject.c.h /^bytearray_reverse(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))$/;" f +bytearray_reverse_impl Objects/bytearrayobject.c /^bytearray_reverse_impl(PyByteArrayObject *self)$/;" f file: +bytearray_rfind Objects/bytearrayobject.c /^bytearray_rfind(PyByteArrayObject *self, PyObject *args)$/;" f file: +bytearray_richcompare Objects/bytearrayobject.c /^bytearray_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +bytearray_rindex Objects/bytearrayobject.c /^bytearray_rindex(PyByteArrayObject *self, PyObject *args)$/;" f file: +bytearray_rpartition Objects/bytearrayobject.c /^bytearray_rpartition(PyByteArrayObject *self, PyObject *sep)$/;" f file: +bytearray_rsplit Objects/clinic/bytearrayobject.c.h /^bytearray_rsplit(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytearray_rsplit_impl Objects/bytearrayobject.c /^bytearray_rsplit_impl(PyByteArrayObject *self, PyObject *sep,$/;" f file: +bytearray_rstrip Objects/clinic/bytearrayobject.c.h /^bytearray_rstrip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_rstrip_impl Objects/bytearrayobject.c /^bytearray_rstrip_impl(PyByteArrayObject *self, PyObject *bytes)$/;" f file: +bytearray_setitem Objects/bytearrayobject.c /^bytearray_setitem(PyByteArrayObject *self, Py_ssize_t i, PyObject *value)$/;" f file: +bytearray_setslice Objects/bytearrayobject.c /^bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi,$/;" f file: +bytearray_setslice_linear Objects/bytearrayobject.c /^bytearray_setslice_linear(PyByteArrayObject *self,$/;" f file: +bytearray_sizeof Objects/clinic/bytearrayobject.c.h /^bytearray_sizeof(PyByteArrayObject *self, PyObject *Py_UNUSED(ignored))$/;" f +bytearray_sizeof_impl Objects/bytearrayobject.c /^bytearray_sizeof_impl(PyByteArrayObject *self)$/;" f file: +bytearray_split Objects/clinic/bytearrayobject.c.h /^bytearray_split(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytearray_split_impl Objects/bytearrayobject.c /^bytearray_split_impl(PyByteArrayObject *self, PyObject *sep,$/;" f file: +bytearray_splitlines Objects/clinic/bytearrayobject.c.h /^bytearray_splitlines(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytearray_splitlines_impl Objects/bytearrayobject.c /^bytearray_splitlines_impl(PyByteArrayObject *self, int keepends)$/;" f file: +bytearray_startswith Objects/bytearrayobject.c /^bytearray_startswith(PyByteArrayObject *self, PyObject *args)$/;" f file: +bytearray_str Objects/bytearrayobject.c /^bytearray_str(PyObject *op)$/;" f file: +bytearray_strip Objects/clinic/bytearrayobject.c.h /^bytearray_strip(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytearray_strip_impl Objects/bytearrayobject.c /^bytearray_strip_impl(PyByteArrayObject *self, PyObject *bytes)$/;" f file: +bytearray_strip_impl_helper Objects/bytearrayobject.c /^bytearray_strip_impl_helper(PyByteArrayObject* self, PyObject* bytes, int striptype)$/;" f file: +bytearray_subscript Objects/bytearrayobject.c /^bytearray_subscript(PyByteArrayObject *self, PyObject *index)$/;" f file: +bytearray_translate Objects/clinic/bytearrayobject.c.h /^bytearray_translate(PyByteArrayObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytearray_translate_impl Objects/bytearrayobject.c /^bytearray_translate_impl(PyByteArrayObject *self, PyObject *table,$/;" f file: +bytearrayiter_dealloc Objects/bytearrayobject.c /^bytearrayiter_dealloc(bytesiterobject *it)$/;" f file: +bytearrayiter_length_hint Objects/bytearrayobject.c /^bytearrayiter_length_hint(bytesiterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +bytearrayiter_methods Objects/bytearrayobject.c /^static PyMethodDef bytearrayiter_methods[] = {$/;" v file: +bytearrayiter_next Objects/bytearrayobject.c /^bytearrayiter_next(bytesiterobject *it)$/;" f file: +bytearrayiter_reduce Objects/bytearrayobject.c /^bytearrayiter_reduce(bytesiterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +bytearrayiter_setstate Objects/bytearrayobject.c /^bytearrayiter_setstate(bytesiterobject *it, PyObject *state)$/;" f file: +bytearrayiter_traverse Objects/bytearrayobject.c /^bytearrayiter_traverse(bytesiterobject *it, visitproc visit, void *arg)$/;" f file: +bytecode_test Lib/test/test_modulefinder.py /^bytecode_test = [$/;" v +bytes Lib/lib2to3/pgen2/tokenize.py /^ bytes = str$/;" v +bytes Lib/uuid.py /^ def bytes(self):$/;" m class:UUID +bytes Parser/pegen.h /^ PyObject *bytes;$/;" m struct:__anon653 +bytes Python/pystate.c /^ char *bytes;$/;" m struct:_shared_bytes_data file: +bytes1 Lib/pickletools.py /^bytes1 = ArgumentDescriptor($/;" v +bytes4 Lib/pickletools.py /^bytes4 = ArgumentDescriptor($/;" v +bytes8 Lib/pickletools.py /^bytes8 = ArgumentDescriptor($/;" v +bytes_ Lib/uuid.py /^bytes_ = bytes # The built-in bytes type$/;" v +bytes___bytes__ Objects/clinic/bytesobject.c.h /^bytes___bytes__(PyBytesObject *self, PyObject *Py_UNUSED(ignored))$/;" f +bytes___bytes___impl Objects/bytesobject.c /^bytes___bytes___impl(PyBytesObject *self)$/;" f file: +bytes_alloc Objects/bytesobject.c /^bytes_alloc(PyTypeObject *self, Py_ssize_t nitems)$/;" f file: +bytes_argv Include/internal/pycore_initconfig.h /^ char * const *bytes_argv;$/;" m struct:_PyArgv +bytes_as_buffer Objects/bytesobject.c /^static PyBufferProcs bytes_as_buffer = {$/;" v file: +bytes_as_mapping Objects/bytesobject.c /^static PyMappingMethods bytes_as_mapping = {$/;" v file: +bytes_as_number Objects/bytesobject.c /^static PyNumberMethods bytes_as_number = {$/;" v file: +bytes_as_sequence Objects/bytesobject.c /^static PySequenceMethods bytes_as_sequence = {$/;" v file: +bytes_buffer_getbuffer Objects/bytesobject.c /^bytes_buffer_getbuffer(PyBytesObject *self, Py_buffer *view, int flags)$/;" f file: +bytes_characters Include/internal/pycore_global_objects.h /^ } bytes_characters[256];$/;" m struct:_Py_static_objects::__anon147 typeref:struct:_Py_static_objects::__anon147::__anon148 +bytes_compare_eq Objects/bytesobject.c /^bytes_compare_eq(PyBytesObject *a, PyBytesObject *b)$/;" f file: +bytes_concat Objects/bytesobject.c /^bytes_concat(PyObject *a, PyObject *b)$/;" f file: +bytes_contains Objects/bytesobject.c /^bytes_contains(PyObject *self, PyObject *arg)$/;" f file: +bytes_count Objects/bytesobject.c /^bytes_count(PyBytesObject *self, PyObject *args)$/;" f file: +bytes_decode Objects/clinic/bytesobject.c.h /^bytes_decode(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytes_decode_impl Objects/bytesobject.c /^bytes_decode_impl(PyBytesObject *self, const char *encoding,$/;" f file: +bytes_empty Include/internal/pycore_global_objects.h /^ PyBytesObject bytes_empty;$/;" m struct:_Py_static_objects::__anon147 +bytes_endswith Objects/bytesobject.c /^bytes_endswith(PyBytesObject *self, PyObject *args)$/;" f file: +bytes_find Objects/bytesobject.c /^bytes_find(PyBytesObject *self, PyObject *args)$/;" f file: +bytes_from_buffer Modules/_testclinic.c /^bytes_from_buffer(Py_buffer *buf)$/;" f file: +bytes_fromhex Objects/clinic/bytesobject.c.h /^bytes_fromhex(PyTypeObject *type, PyObject *arg)$/;" f +bytes_fromhex_impl Objects/bytesobject.c /^bytes_fromhex_impl(PyTypeObject *type, PyObject *string)$/;" f file: +bytes_get_empty Objects/bytesobject.c /^static inline PyObject* bytes_get_empty(void)$/;" f file: +bytes_getnewargs Objects/bytesobject.c /^bytes_getnewargs(PyBytesObject *v, PyObject *Py_UNUSED(ignored))$/;" f file: +bytes_hash Objects/bytesobject.c /^bytes_hash(PyBytesObject *a)$/;" f file: +bytes_hex Objects/clinic/bytesobject.c.h /^bytes_hex(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytes_hex_impl Objects/bytesobject.c /^bytes_hex_impl(PyBytesObject *self, PyObject *sep, int bytes_per_sep)$/;" f file: +bytes_index Objects/bytesobject.c /^bytes_index(PyBytesObject *self, PyObject *args)$/;" f file: +bytes_item Objects/bytesobject.c /^bytes_item(PyBytesObject *a, Py_ssize_t i)$/;" f file: +bytes_iter Objects/bytesobject.c /^bytes_iter(PyObject *seq)$/;" f file: +bytes_iterator Lib/_collections_abc.py /^bytes_iterator = type(iter(b''))$/;" v +bytes_join Objects/bytesobject.c /^bytes_join(PyBytesObject *self, PyObject *iterable_of_bytes)$/;" f file: +bytes_join Objects/stringlib/join.h /^STRINGLIB(bytes_join)(PyObject *sep, PyObject *iterable)$/;" f +bytes_le Lib/uuid.py /^ def bytes_le(self):$/;" m class:UUID +bytes_length Objects/bytesobject.c /^bytes_length(PyBytesObject *a)$/;" f file: +bytes_lstrip Objects/clinic/bytesobject.c.h /^bytes_lstrip(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytes_lstrip_impl Objects/bytesobject.c /^bytes_lstrip_impl(PyBytesObject *self, PyObject *bytes)$/;" f file: +bytes_maketrans Objects/clinic/bytesobject.c.h /^bytes_maketrans(void *null, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytes_maketrans_impl Objects/bytesobject.c /^bytes_maketrans_impl(Py_buffer *frm, Py_buffer *to)$/;" f file: +bytes_methods Objects/bytesobject.c /^bytes_methods[] = {$/;" v file: +bytes_mod Objects/bytesobject.c /^bytes_mod(PyObject *self, PyObject *arg)$/;" f file: +bytes_new Objects/clinic/bytesobject.c.h /^bytes_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +bytes_new_empty Objects/bytesobject.c /^static inline PyObject* bytes_new_empty(void)$/;" f file: +bytes_new_impl Objects/bytesobject.c /^bytes_new_impl(PyTypeObject *type, PyObject *x, const char *encoding,$/;" f file: +bytes_object_converter Modules/clinic/_testclinic.c.h /^bytes_object_converter(PyObject *module, PyObject *arg)$/;" f +bytes_object_converter_impl Modules/_testclinic.c /^bytes_object_converter_impl(PyObject *module, PyBytesObject *a)$/;" f file: +bytes_partition Objects/clinic/bytesobject.c.h /^bytes_partition(PyBytesObject *self, PyObject *arg)$/;" f +bytes_partition_impl Objects/bytesobject.c /^bytes_partition_impl(PyBytesObject *self, Py_buffer *sep)$/;" f file: +bytes_removeprefix Objects/clinic/bytesobject.c.h /^bytes_removeprefix(PyBytesObject *self, PyObject *arg)$/;" f +bytes_removeprefix_impl Objects/bytesobject.c /^bytes_removeprefix_impl(PyBytesObject *self, Py_buffer *prefix)$/;" f file: +bytes_removesuffix Objects/clinic/bytesobject.c.h /^bytes_removesuffix(PyBytesObject *self, PyObject *arg)$/;" f +bytes_removesuffix_impl Objects/bytesobject.c /^bytes_removesuffix_impl(PyBytesObject *self, Py_buffer *suffix)$/;" f file: +bytes_repeat Objects/bytesobject.c /^bytes_repeat(PyBytesObject *a, Py_ssize_t n)$/;" f file: +bytes_replace Objects/clinic/bytesobject.c.h /^bytes_replace(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytes_replace_impl Objects/bytesobject.c /^bytes_replace_impl(PyBytesObject *self, Py_buffer *old, Py_buffer *new,$/;" f file: +bytes_repr Objects/bytesobject.c /^bytes_repr(PyObject *op)$/;" f file: +bytes_rfind Objects/bytesobject.c /^bytes_rfind(PyBytesObject *self, PyObject *args)$/;" f file: +bytes_richcompare Objects/bytesobject.c /^bytes_richcompare(PyBytesObject *a, PyBytesObject *b, int op)$/;" f file: +bytes_rindex Objects/bytesobject.c /^bytes_rindex(PyBytesObject *self, PyObject *args)$/;" f file: +bytes_rpartition Objects/clinic/bytesobject.c.h /^bytes_rpartition(PyBytesObject *self, PyObject *arg)$/;" f +bytes_rpartition_impl Objects/bytesobject.c /^bytes_rpartition_impl(PyBytesObject *self, Py_buffer *sep)$/;" f file: +bytes_rsplit Objects/clinic/bytesobject.c.h /^bytes_rsplit(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytes_rsplit_impl Objects/bytesobject.c /^bytes_rsplit_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit)$/;" f file: +bytes_rstrip Objects/clinic/bytesobject.c.h /^bytes_rstrip(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytes_rstrip_impl Objects/bytesobject.c /^bytes_rstrip_impl(PyBytesObject *self, PyObject *bytes)$/;" f file: +bytes_sent Lib/wsgiref/handlers.py /^ bytes_sent = 0$/;" v class:BaseHandler +bytes_split Objects/clinic/bytesobject.c.h /^bytes_split(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytes_split_impl Objects/bytesobject.c /^bytes_split_impl(PyBytesObject *self, PyObject *sep, Py_ssize_t maxsplit)$/;" f file: +bytes_splitlines Objects/clinic/bytesobject.c.h /^bytes_splitlines(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytes_splitlines_impl Objects/bytesobject.c /^bytes_splitlines_impl(PyBytesObject *self, int keepends)$/;" f file: +bytes_startswith Objects/bytesobject.c /^bytes_startswith(PyBytesObject *self, PyObject *args)$/;" f file: +bytes_str Objects/bytesobject.c /^bytes_str(PyObject *op)$/;" f file: +bytes_strip Objects/clinic/bytesobject.c.h /^bytes_strip(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +bytes_strip_impl Objects/bytesobject.c /^bytes_strip_impl(PyBytesObject *self, PyObject *bytes)$/;" f file: +bytes_subclass Lib/test/test_bytes.py /^ class bytes_subclass(bytes):$/;" c function:BytesTest.test__bytes__ +bytes_subscript Objects/bytesobject.c /^bytes_subscript(PyBytesObject* self, PyObject* item)$/;" f file: +bytes_subtype_new Objects/bytesobject.c /^bytes_subtype_new(PyTypeObject *type, PyObject *tmp)$/;" f file: +bytes_to_feed Modules/_io/textio.c /^ int bytes_to_feed;$/;" m struct:__anon438 file: +bytes_transform_encodings Lib/test/test_codecs.py /^bytes_transform_encodings = [$/;" v +bytes_translate Objects/clinic/bytesobject.c.h /^bytes_translate(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +bytes_translate_impl Objects/bytesobject.c /^bytes_translate_impl(PyBytesObject *self, PyObject *table,$/;" f file: +bytes_types Lib/base64.py /^bytes_types = (bytes, bytearray) # Types acceptable as binary data$/;" v +bytes_types Lib/pickle.py /^bytes_types = (bytes, bytearray)$/;" v +bytes_types Lib/pickletools.py /^bytes_types = pickle.bytes_types$/;" v +bytes_warning Include/cpython/initconfig.h /^ int bytes_warning;$/;" m struct:PyConfig +bytes_warning Lib/test/test_unittest/test_case.py /^ def bytes_warning():$/;" f function:.testEqualityBytesWarning +bytesio Modules/_io/bytesio.c /^} bytesio;$/;" t typeref:struct:__anon439 file: +bytesio_clear Modules/_io/bytesio.c /^bytesio_clear(bytesio *self)$/;" f file: +bytesio_dealloc Modules/_io/bytesio.c /^bytesio_dealloc(bytesio *self)$/;" f file: +bytesio_get_closed Modules/_io/bytesio.c /^bytesio_get_closed(bytesio *self, void *Py_UNUSED(ignored))$/;" f file: +bytesio_getsetlist Modules/_io/bytesio.c /^static PyGetSetDef bytesio_getsetlist[] = {$/;" v file: +bytesio_getstate Modules/_io/bytesio.c /^bytesio_getstate(bytesio *self, PyObject *Py_UNUSED(ignored))$/;" f file: +bytesio_iternext Modules/_io/bytesio.c /^bytesio_iternext(bytesio *self)$/;" f file: +bytesio_members Modules/_io/bytesio.c /^static PyMemberDef bytesio_members[] = {$/;" v file: +bytesio_methods Modules/_io/bytesio.c /^static struct PyMethodDef bytesio_methods[] = {$/;" v typeref:struct:PyMethodDef file: +bytesio_new Modules/_io/bytesio.c /^bytesio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +bytesio_setstate Modules/_io/bytesio.c /^bytesio_setstate(bytesio *self, PyObject *state)$/;" f file: +bytesio_sizeof Modules/_io/bytesio.c /^bytesio_sizeof(bytesio *self, void *unused)$/;" f file: +bytesio_slots Modules/_io/bytesio.c /^static PyType_Slot bytesio_slots[] = {$/;" v file: +bytesio_spec Modules/_io/bytesio.c /^PyType_Spec bytesio_spec = {$/;" v +bytesio_traverse Modules/_io/bytesio.c /^bytesio_traverse(bytesio *self, visitproc visit, void *arg)$/;" f file: +bytesiobuf Modules/_io/bytesio.c /^} bytesiobuf;$/;" t typeref:struct:__anon440 file: +bytesiobuf_clear Modules/_io/bytesio.c /^bytesiobuf_clear(bytesiobuf *self)$/;" f file: +bytesiobuf_dealloc Modules/_io/bytesio.c /^bytesiobuf_dealloc(bytesiobuf *self)$/;" f file: +bytesiobuf_getbuffer Modules/_io/bytesio.c /^bytesiobuf_getbuffer(bytesiobuf *obj, Py_buffer *view, int flags)$/;" f file: +bytesiobuf_releasebuffer Modules/_io/bytesio.c /^bytesiobuf_releasebuffer(bytesiobuf *obj, Py_buffer *view)$/;" f file: +bytesiobuf_slots Modules/_io/bytesio.c /^static PyType_Slot bytesiobuf_slots[] = {$/;" v file: +bytesiobuf_spec Modules/_io/bytesio.c /^PyType_Spec bytesiobuf_spec = {$/;" v +bytesiobuf_traverse Modules/_io/bytesio.c /^bytesiobuf_traverse(bytesiobuf *self, visitproc visit, void *arg)$/;" f file: +bytesiterobject Objects/bytearrayobject.c /^} bytesiterobject;$/;" t typeref:struct:__anon738 file: +byteskeydict Lib/test/test_shelve.py /^class byteskeydict(MutableMapping):$/;" c +byteslike Lib/test/test_io.py /^ def byteslike(*pos, **kw):$/;" f +byteswapped_structures Lib/test/test_ctypes/test_unaligned_structures.py /^byteswapped_structures = []$/;" v +bz2 Lib/test/test_bz2.py /^bz2 = import_helper.import_module('bz2')$/;" v +bz2 Lib/test/test_fileinput.py /^ bz2 = None$/;" v +bz2 Lib/test/test_tarfile.py /^ bz2 = None$/;" v +bz2 Lib/zipfile/__init__.py /^ bz2 = None$/;" v +bz2_compressor_type Modules/_bz2module.c /^ PyTypeObject *bz2_compressor_type;$/;" m struct:__anon464 file: +bz2_compressor_type_slots Modules/_bz2module.c /^static PyType_Slot bz2_compressor_type_slots[] = {$/;" v file: +bz2_compressor_type_spec Modules/_bz2module.c /^static PyType_Spec bz2_compressor_type_spec = {$/;" v file: +bz2_decode Lib/encodings/bz2_codec.py /^def bz2_decode(input, errors='strict'):$/;" f +bz2_decompressor_type Modules/_bz2module.c /^ PyTypeObject *bz2_decompressor_type;$/;" m struct:__anon464 file: +bz2_decompressor_type_slots Modules/_bz2module.c /^static PyType_Slot bz2_decompressor_type_slots[] = {$/;" v file: +bz2_decompressor_type_spec Modules/_bz2module.c /^static PyType_Spec bz2_decompressor_type_spec = {$/;" v file: +bz2_encode Lib/encodings/bz2_codec.py /^def bz2_encode(input, errors='strict'):$/;" f +bz2name Lib/test/test_tarfile.py /^bz2name = os.path.join(TEMPDIR, "testtar.tar.bz2")$/;" v +bz2open Lib/tarfile.py /^ def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs):$/;" m class:TarFile +bzs Modules/_bz2module.c /^ bz_stream bzs;$/;" m struct:__anon465 file: +bzs Modules/_bz2module.c /^ bz_stream bzs;$/;" m struct:__anon466 file: +bzs_avail_in_real Modules/_bz2module.c /^ size_t bzs_avail_in_real;$/;" m struct:__anon466 file: +c Lib/calendar.py /^c = TextCalendar()$/;" v +c Lib/test/ann_module2.py /^c = C(5)$/;" v +c Lib/test/final_a.py /^c = C()$/;" v +c Lib/test/final_b.py /^c = C()$/;" v +c Lib/test/test_clinic.py /^c = clinic.Clinic(language='C', filename = "file")$/;" v +c Lib/test/test_coroutines.py /^ async def c():$/;" f function:CoroutineTest.test_cr_await +c Lib/test/test_coroutines.py /^ def c():$/;" f function:CoroutineTest.test_stack_in_coroutine_throw +c Lib/test/test_dataclasses.py /^ c = C()$/;" v class:TestDescriptors.test_no_default_value.C +c Lib/test/test_dataclasses.py /^ c = C(2)$/;" v class:TestMakeDataclass.test_base_dataclass.Base2 +c Lib/test/test_descr.py /^ c = {1: c1, 2: c2, 3: c3}$/;" v class:.test_classic_comparisons.classic +c Lib/test/test_descr.py /^ c = {1: c1, 2: c2, 3: c3}$/;" v class:.test_rich_comparisons.classic +c Lib/test/test_enum.py /^ c = 4$/;" v class:TestVerify.test_composite.Bizarre.Bizarre +c Lib/test/test_enum.py /^ c = ...$/;" v class:TestSpecial.test_multiple_mixin_mro.TestAutoInt +c Lib/test/test_enum.py /^ c = ...$/;" v class:TestSpecial.test_multiple_mixin_mro.TestAutoNumber +c Lib/test/test_enum.py /^ c = 4$/;" v class:OldTestFlag.test_boundary.Bizarre +c Lib/test/test_enum.py /^ c = 4$/;" v class:OldTestIntFlag.test_boundary.Bizarre +c Lib/test/test_enum.py /^ c = 4$/;" v class:TestVerify.test_composite.Bizarre +c Lib/test/test_exceptions.py /^ c = _c$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle2.C +c Lib/test/test_exceptions.py /^ c = _c$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle3.E +c Lib/test/test_exceptions.py /^ c = c_$/;" v class:ExceptionTests.test_raise_does_not_create_context_chain_cycle.C +c Lib/test/test_funcattrs.py /^ def c(): return num_one$/;" f function:FunctionPropertiesTest.test___code__ +c Lib/test/test_functools.py /^ c = collections.abc$/;" v class:TestSingleDispatch.test_cache_invalidation.TracingDict +c Lib/test/test_http_cookiejar.py /^ c = LWPCookieJar(filename=instance)$/;" v class:FileCookieJarTests.test_constructor_with_other_types.A +c Lib/test/test_inspect.py /^ c = classmethod(c)$/;" v class:TestClassesAndFunctions.test_classify_newstyle.A +c Lib/test/test_inspect.py /^ def c(cls): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.A +c Lib/test/test_inspect.py /^ def c(self): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.C +c Lib/test/test_scope.py /^ class c:$/;" c function:ScopeTests.testNonLocalClass.f +c Lib/test/test_scope.py /^ class c:$/;" c function:ScopeTests.testNonLocalMethod.f +c Lib/test/test_subclassinit.py /^ c = Descriptor()$/;" v class:Test.test_set_name_modifying_dict.A +c Lib/test/test_sys.py /^ class c():$/;" c function:SizeofTest.test_objecttypes +c Lib/test/test_typing.py /^ c = C$/;" v class:ForwardRefTests.test_no_type_check_no_bases.D +c Lib/test/test_typing.py /^ def c(*args: *tuple[str, *Ts, int]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +c Modules/_ctypes/_ctypes_test.c /^ int (*c)(int, int);$/;" m struct:__anon511 file: +c Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +c Modules/_ctypes/callproc.c /^ char c;$/;" m union:result file: +c Modules/_ctypes/ctypes.h /^ char c[16];$/;" m union:value +c Modules/_ctypes/ctypes.h /^ char c;$/;" m union:tagPyCArgObject::__anon496 +c Modules/_decimal/tests/bench.py /^ c = C.getcontext()$/;" v +c Modules/_ssl.c /^ int c; \/* last seen error from libc *\/$/;" m struct:__anon580 file: +c Modules/_struct.c /^typedef struct { char c; _Bool x; } st_bool;$/;" m struct:__anon378 file: +c Modules/_struct.c /^typedef struct { char c; double x; } st_double;$/;" m struct:__anon375 file: +c Modules/_struct.c /^typedef struct { char c; float x; } st_float;$/;" m struct:__anon374 file: +c Modules/_struct.c /^typedef struct { char c; int x; } st_int;$/;" m struct:__anon372 file: +c Modules/_struct.c /^typedef struct { char c; long long x; } s_long_long;$/;" m struct:__anon379 file: +c Modules/_struct.c /^typedef struct { char c; long x; } st_long;$/;" m struct:__anon373 file: +c Modules/_struct.c /^typedef struct { char c; short x; } st_short;$/;" m struct:__anon371 file: +c Modules/_struct.c /^typedef struct { char c; size_t x; } st_size_t;$/;" m struct:__anon377 file: +c Modules/_struct.c /^typedef struct { char c; void *x; } st_void_p;$/;" m struct:__anon376 file: +c Modules/cjkcodecs/multibytecodec.h /^ unsigned char c[8];$/;" m struct:__anon324 +c Modules/expat/siphash.h /^ uint64_t c;$/;" m struct:siphash +c1 Lib/idlelib/idle_test/test_browser.py /^c1 = mb._nest_class(f0, 'c1', 15, 15)$/;" v +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1():$/;" f function:SemaphoreTests.test_acquire_no_hang +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:ConditionTests.test_notify +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:ConditionTests.test_notify_all +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:ConditionTests.test_wait +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:ConditionTests.test_wait_for +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:EventTests.test_clear_with_waiters +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:EventTests.test_wait +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:LockTests.test_acquire +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:SemaphoreTests.test_acquire +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:SemaphoreTests.test_acquire_fifo_order_2 +c1 Lib/test/test_asyncio/test_locks.py /^ async def c1(result):$/;" f function:SemaphoreTests.test_acquire_fifo_order_3 +c1 Lib/test/test_dataclasses.py /^ c1 = replace(c, x=20, a=5)$/;" v class:TestReplace.test_frozen.C +c1 Lib/test/test_dataclasses.py /^ c1 = replace(c, z=3)$/;" v class:TestReplace.test_invalid_field_name.C +c1 Lib/test/test_descr.py /^ c1 = C(1)$/;" v class:.test_classic_comparisons.classic +c1 Lib/test/test_descr.py /^ c1 = C(1)$/;" v class:.test_rich_comparisons.classic +c14n_roundtrip Lib/test/test_xml_etree.py /^def c14n_roundtrip(xml, **options):$/;" f +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2():$/;" f function:SemaphoreTests.test_acquire_no_hang +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:ConditionTests.test_notify +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:ConditionTests.test_notify_all +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:ConditionTests.test_wait +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:EventTests.test_wait +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:LockTests.test_acquire +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:SemaphoreTests.test_acquire +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:SemaphoreTests.test_acquire_fifo_order_2 +c2 Lib/test/test_asyncio/test_locks.py /^ async def c2(result):$/;" f function:SemaphoreTests.test_acquire_fifo_order_3 +c2 Lib/test/test_descr.py /^ c2 = C(2)$/;" v class:.test_classic_comparisons.classic +c2 Lib/test/test_descr.py /^ c2 = C(2)$/;" v class:.test_rich_comparisons.classic +c22_specials Lib/stringprep.py /^c22_specials = set([1757, 1807, 6158, 8204, 8205, 8232, 8233, 65279] + list(range(8288,8292)) + list(range(8298,8304)) + list(range(65529,65533)) + list(range(119155,119163)))$/;" v +c2py Lib/gettext.py /^def c2py(plural):$/;" f +c3 Lib/test/test_asyncio/test_locks.py /^ async def c3(result):$/;" f function:ConditionTests.test_notify +c3 Lib/test/test_asyncio/test_locks.py /^ async def c3(result):$/;" f function:ConditionTests.test_wait +c3 Lib/test/test_asyncio/test_locks.py /^ async def c3(result):$/;" f function:EventTests.test_wait +c3 Lib/test/test_asyncio/test_locks.py /^ async def c3(result):$/;" f function:LockTests.test_acquire +c3 Lib/test/test_asyncio/test_locks.py /^ async def c3(result):$/;" f function:SemaphoreTests.test_acquire +c3 Lib/test/test_asyncio/test_locks.py /^ async def c3(result):$/;" f function:SemaphoreTests.test_acquire_fifo_order_2 +c3 Lib/test/test_asyncio/test_locks.py /^ async def c3(result):$/;" f function:SemaphoreTests.test_acquire_fifo_order_3 +c3 Lib/test/test_descr.py /^ c3 = C(3)$/;" v class:.test_classic_comparisons.classic +c3 Lib/test/test_descr.py /^ c3 = C(3)$/;" v class:.test_rich_comparisons.classic +c4 Lib/test/test_asyncio/test_locks.py /^ async def c4(result):$/;" f function:SemaphoreTests.test_acquire +c6_set Lib/stringprep.py /^c6_set = set(range(65529,65534))$/;" v +c7_set Lib/stringprep.py /^c7_set = set(range(12272,12284))$/;" v +c8_set Lib/stringprep.py /^c8_set = set([832, 833, 8206, 8207] + list(range(8234,8239)) + list(range(8298,8304)))$/;" v +c9_set Lib/stringprep.py /^c9_set = set([917505] + list(range(917536,917632)))$/;" v +cET Lib/test/test_xml_etree_c.py /^cET = import_fresh_module('xml.etree.ElementTree',$/;" v +cET_alias Lib/test/test_xml_etree_c.py /^cET_alias = import_fresh_module('xml.etree.cElementTree',$/;" v +c_1 Objects/complexobject.c /^static Py_complex c_1 = {1., 0.};$/;" v file: +c_alias Lib/test/pydoc_mod.py /^c_alias = C[int]$/;" v +c_arena Python/compile.c /^ PyArena *c_arena; \/* pointer to memory allocation arena *\/$/;" m struct:compiler file: +c_array Python/hamt.c /^ PyObject *c_array[1];$/;" m struct:__anon681 file: +c_atan2 Modules/cmathmodule.c /^c_atan2(Py_complex z)$/;" f file: +c_bisect Lib/test/test_bisect.py /^c_bisect = import_helper.import_fresh_module('bisect', fresh=['_bisect'])$/;" v +c_blob Tools/cases_generator/parser.py /^ def c_blob(self) -> list[lx.Token]:$/;" m class:Parser +c_bool Lib/ctypes/__init__.py /^class c_bool(_SimpleCData):$/;" c +c_buffer Lib/ctypes/__init__.py /^c_buffer = create_string_buffer$/;" v +c_byte Lib/ctypes/__init__.py /^class c_byte(_SimpleCData):$/;" c +c_cached_func Lib/test/test_functools.py /^ def c_cached_func(x, y):$/;" f function:py_cached_func +c_char Lib/ctypes/__init__.py /^class c_char(_SimpleCData):$/;" c +c_char_p Lib/ctypes/__init__.py /^class c_char_p(_SimpleCData):$/;" c +c_char_p_from_param Modules/_ctypes/_ctypes.c /^c_char_p_from_param(PyObject *type, PyObject *value)$/;" f file: +c_char_p_method Modules/_ctypes/_ctypes.c /^static PyMethodDef c_char_p_method = { "from_param", c_char_p_from_param, METH_O };$/;" v file: +c_coll Lib/test/test_ordered_dict.py /^c_coll = import_helper.import_fresh_module('collections',$/;" v +c_const_cache Python/compile.c /^ PyObject *c_const_cache; \/* Python dict holding all constants,$/;" m struct:compiler file: +c_contiguous Lib/test/pickletester.py /^ def c_contiguous(self):$/;" m class:ZeroCopyBytearray.PicklableNDArray +c_contiguous Lib/test/pickletester.py /^ c_contiguous = True$/;" v class:ZeroCopyBytearray +c_contiguous Lib/test/pickletester.py /^ c_contiguous = True$/;" v class:ZeroCopyBytes +c_default Tools/clinic/clinic.py /^ c_default = "Py_" + py_default$/;" v class:DSLParser.state_parameter.DetectBadNodes +c_default Tools/clinic/clinic.py /^ c_default = c_repr(value)$/;" v class:DSLParser.state_parameter.DetectBadNodes +c_default Tools/clinic/clinic.py /^ c_default = py_default$/;" v class:DSLParser.state_parameter.DetectBadNodes +c_double Lib/ctypes/__init__.py /^class c_double(_SimpleCData):$/;" c +c_encode_basestring Lib/json/encoder.py /^ c_encode_basestring = None$/;" v +c_encode_basestring_ascii Lib/json/encoder.py /^ c_encode_basestring_ascii = None$/;" v +c_filename Python/compile.c /^ PyObject *c_filename;$/;" m struct:compiler file: +c_flags Python/compile.c /^ PyCompilerFlags c_flags;$/;" m struct:compiler file: +c_float Lib/ctypes/__init__.py /^class c_float(_SimpleCData):$/;" c +c_functools Lib/test/test_functools.py /^c_functools = import_helper.import_fresh_module('functools',$/;" v +c_future Python/compile.c /^ PyFutureFeatures c_future; \/* module's __future__ *\/$/;" m struct:compiler file: +c_get Modules/_ctypes/cfield.c /^c_get(void *ptr, Py_ssize_t size)$/;" f file: +c_hash Python/hamt.c /^ int32_t c_hash;$/;" m struct:__anon681 file: +c_heapq Lib/test/test_heapq.py /^c_heapq = import_helper.import_fresh_module('heapq', fresh=['_heapq'])$/;" v +c_hmac_new Lib/test/test_hmac.py /^ c_hmac_new = None$/;" v +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "'\\0'"$/;" v class:char_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "'\\0'"$/;" v class:unsigned_char_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:Py_ssize_t_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:int_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:long_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:long_long_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:short_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:size_t_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:unsigned_int_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:unsigned_long_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:unsigned_long_long_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0"$/;" v class:unsigned_short_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0.0"$/;" v class:double_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "0.0"$/;" v class:float_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "{0.0, 0.0}"$/;" v class:Py_complex_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = "{NULL, NULL}"$/;" v class:Py_buffer_converter +c_ignored_default Tools/clinic/clinic.py /^ c_ignored_default = '0'$/;" v class:bool_converter +c_int Lib/ctypes/__init__.py /^ c_int = c_long$/;" v +c_int Lib/ctypes/__init__.py /^ class c_int(_SimpleCData):$/;" c +c_int8 Lib/ctypes/__init__.py /^c_int8 = c_byte$/;" v +c_int_filter Lib/test/test_time.py /^ def c_int_filter(secs):$/;" f function:TestCPyTime.test_FromSeconds +c_interactive Python/compile.c /^ int c_interactive; \/* true if in interactive mode *\/$/;" m struct:compiler file: +c_locale_get_error_handler Lib/test/test_sys.py /^ def c_locale_get_error_handler(self, locale, isolated=False, encoding=None):$/;" m class:SysModuleTest +c_log Modules/cmathmodule.c /^c_log(Py_complex z)$/;" f file: +c_long Lib/ctypes/__init__.py /^class c_long(_SimpleCData):$/;" c +c_longdouble Lib/ctypes/__init__.py /^ c_longdouble = c_double$/;" v +c_longdouble Lib/ctypes/__init__.py /^class c_longdouble(_SimpleCData):$/;" c +c_longlong Lib/ctypes/__init__.py /^ c_longlong = c_long$/;" v +c_longlong Lib/ctypes/__init__.py /^ class c_longlong(_SimpleCData):$/;" c +c_make_encoder Lib/json/encoder.py /^ c_make_encoder = None$/;" v +c_make_scanner Lib/json/scanner.py /^ c_make_scanner = None$/;" v +c_nestlevel Python/compile.c /^ int c_nestlevel;$/;" m struct:compiler file: +c_operator Lib/test/test_operator.py /^c_operator = import_helper.import_fresh_module('operator',$/;" v +c_optimize Python/compile.c /^ int c_optimize; \/* optimization level *\/$/;" m struct:compiler file: +c_parser Tools/peg_generator/pegen/__main__.py /^c_parser = subparsers.add_parser("c", help="Generate C code for inclusion into CPython")$/;" v +c_powi Objects/complexobject.c /^c_powi(Py_complex x, long n)$/;" f file: +c_powu Objects/complexobject.c /^c_powu(Py_complex x, long n)$/;" f file: +c_profilefunc Include/cpython/pystate.h /^ Py_tracefunc c_profilefunc;$/;" m struct:_ts +c_profileobj Include/cpython/pystate.h /^ PyObject *c_profileobj;$/;" m struct:_ts +c_py_recurse Lib/test/test_call.py /^ def c_py_recurse(m):$/;" f function:TestRecursion.test_super_deep +c_queue Lib/test/test_queue.py /^c_queue = import_helper.import_fresh_module('queue', fresh=['_queue'])$/;" v +c_recurse Lib/test/test_call.py /^ def c_recurse(n):$/;" f function:TestRecursion.test_super_deep +c_recursion_remaining Include/cpython/pystate.h /^ int c_recursion_remaining;$/;" m struct:_ts +c_repr Tools/clinic/clinic.py /^def c_repr(s: str) -> str:$/;" f +c_scanstring Lib/json/decoder.py /^ c_scanstring = None$/;" v +c_set Modules/_ctypes/cfield.c /^c_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +c_short Lib/ctypes/__init__.py /^class c_short(_SimpleCData):$/;" c +c_size_t Lib/ctypes/__init__.py /^ c_size_t = c_uint$/;" v +c_size_t Lib/ctypes/__init__.py /^ c_size_t = c_ulong$/;" v +c_size_t Lib/ctypes/__init__.py /^ c_size_t = c_ulonglong$/;" v +c_ssize_t Lib/ctypes/__init__.py /^ c_ssize_t = c_int$/;" v +c_ssize_t Lib/ctypes/__init__.py /^ c_ssize_t = c_long$/;" v +c_ssize_t Lib/ctypes/__init__.py /^ c_ssize_t = c_longlong$/;" v +c_st Python/compile.c /^ struct symtable *c_st;$/;" m struct:compiler typeref:struct:compiler::symtable file: +c_stack Python/compile.c /^ PyObject *c_stack; \/* Python list holding compiler_unit ptrs *\/$/;" m struct:compiler file: +c_stat Lib/test/test_stat.py /^c_stat = import_fresh_module('stat', fresh=['_stat'])$/;" v +c_statistics Lib/test/test_statistics.py /^c_statistics = import_helper.import_fresh_module('statistics',$/;" v +c_string Lib/test/test_ctypes/test_funcptr.py /^ def c_string(init):$/;" f function:CFuncPtrTestCase.test_dllfunctions +c_time_t Lib/ctypes/__init__.py /^ c_time_t = c_int32$/;" v +c_time_t Lib/ctypes/__init__.py /^ c_time_t = c_int64$/;" v +c_tracefunc Include/cpython/pystate.h /^ Py_tracefunc c_tracefunc;$/;" m struct:_ts +c_traceobj Include/cpython/pystate.h /^ PyObject *c_traceobj;$/;" m struct:_ts +c_ubyte Lib/ctypes/__init__.py /^class c_ubyte(_SimpleCData):$/;" c +c_uint Lib/ctypes/__init__.py /^ c_uint = c_ulong$/;" v +c_uint Lib/ctypes/__init__.py /^ class c_uint(_SimpleCData):$/;" c +c_uint8 Lib/ctypes/__init__.py /^c_uint8 = c_ubyte$/;" v +c_ulong Lib/ctypes/__init__.py /^class c_ulong(_SimpleCData):$/;" c +c_ulonglong Lib/ctypes/__init__.py /^ c_ulonglong = c_ulong$/;" v +c_ulonglong Lib/ctypes/__init__.py /^ class c_ulonglong(_SimpleCData):$/;" c +c_ushort Lib/ctypes/__init__.py /^class c_ushort(_SimpleCData):$/;" c +c_uuid Lib/test/test_uuid.py /^c_uuid = import_helper.import_fresh_module('uuid', fresh=['_uuid'])$/;" v +c_void_p Lib/ctypes/__init__.py /^class c_void_p(_SimpleCData):$/;" c +c_void_p_from_param Modules/_ctypes/_ctypes.c /^c_void_p_from_param(PyObject *type, PyObject *value)$/;" f file: +c_void_p_method Modules/_ctypes/_ctypes.c /^static PyMethodDef c_void_p_method = { "from_param", c_void_p_from_param, METH_O };$/;" v file: +c_voidp Lib/ctypes/__init__.py /^c_voidp = c_void_p # backwards compatibility (to a bug)$/;" v +c_warnings Lib/test/test_warnings/__init__.py /^c_warnings = import_helper.import_fresh_module('warnings',$/;" v +c_wbuffer Lib/test/test_ctypes/test_prototypes.py /^def c_wbuffer(init):$/;" f +c_wchar Lib/ctypes/__init__.py /^class c_wchar(_SimpleCData):$/;" c +c_wchar_p Lib/ctypes/__init__.py /^class c_wchar_p(_SimpleCData):$/;" c +c_wchar_p_from_param Modules/_ctypes/_ctypes.c /^c_wchar_p_from_param(PyObject *type, PyObject *value)$/;" f file: +c_wchar_p_method Modules/_ctypes/_ctypes.c /^static PyMethodDef c_wchar_p_method = { "from_param", c_wchar_p_from_param, METH_O };$/;" v file: +ca Python/thread_pthread.h 128;" d +ca Python/thread_pthread.h 135;" d +cache Include/cpython/code.h /^ uint16_t cache;$/;" m union:__anon225 +cache Lib/functools.py /^def cache(user_function, \/):$/;" f +cache Lib/linecache.py /^cache = {}$/;" v +cache Lib/test/_test_multiprocessing.py /^ def cache(self):$/;" m class:_file_like +cache Modules/_functoolsmodule.c /^ PyObject *cache;$/;" m struct:lru_cache_object file: +cache Modules/_struct.c /^ PyObject *cache;$/;" m struct:__anon369 file: +cache_clear Lib/functools.py /^ def cache_clear():$/;" f function:_lru_cache_wrapper +cache_effect Tools/cases_generator/parser.py /^ def cache_effect(self) -> CacheEffect | None:$/;" m class:Parser +cache_friendly_heapify Modules/_heapqmodule.c /^cache_friendly_heapify(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))$/;" f file: +cache_from_source Lib/importlib/_bootstrap_external.py /^def cache_from_source(path, debug_override=None, *, optimization=None):$/;" f +cache_info Lib/functools.py /^ def cache_info():$/;" f function:_lru_cache_wrapper +cache_info_type Modules/_functoolsmodule.c /^ PyObject *cache_info_type;$/;" m struct:lru_cache_object file: +cache_struct_converter Modules/_struct.c /^cache_struct_converter(PyObject *module, PyObject *fmt, PyStructObject **ptr)$/;" f file: +cached Lib/importlib/_bootstrap.py /^ def cached(self):$/;" m class:ModuleSpec +cached Lib/importlib/_bootstrap.py /^ def cached(self, cached):$/;" m class:ModuleSpec +cached Lib/test/test_typing.py /^ def cached(self): ...$/;" m class:FinalDecoratorTests.test_dunder_final.Methods +cached_context Modules/_decimal/_decimal.c /^static PyDecContextObject *cached_context = NULL;$/;" v file: +cached_cost Lib/test/test_functools.py /^ cached_cost = py_functools.cached_property(get_cost)$/;" v class:OptionallyCachedCostItem +cached_func Lib/test/test_functools.py /^ cached_func = c_cached_func,$/;" v class:TestLRUC +cached_func Lib/test/test_functools.py /^ cached_func = py_cached_func,$/;" v class:TestLRUPy +cached_func Lib/test/test_typing.py /^def cached_func(x, y):$/;" f +cached_meth Lib/test/test_functools.py /^ def cached_meth(self, x, y):$/;" m class:TestLRUC +cached_meth Lib/test/test_functools.py /^ def cached_meth(self, x, y):$/;" m class:TestLRUPy +cached_objects Include/internal/pycore_interp.h /^ struct _Py_interp_cached_objects cached_objects;$/;" m struct:_is typeref:struct:_is::_Py_interp_cached_objects +cached_property Lib/functools.py /^class cached_property:$/;" c +cached_running_loop Modules/_asynciomodule.c /^ PyObject *cached_running_loop; \/\/ Borrowed reference$/;" m struct:__anon308 file: +cached_running_loop_tsid Modules/_asynciomodule.c /^ volatile uint64_t cached_running_loop_tsid;$/;" m struct:__anon308 file: +cached_staticmeth Lib/test/test_functools.py /^ def cached_staticmeth(x, y):$/;" m class:TestLRUC +cached_staticmeth Lib/test/test_functools.py /^ def cached_staticmeth(x, y):$/;" m class:TestLRUPy +cached_tz Lib/tomllib/_re.py /^def cached_tz(hour_str: str, minute_str: str, sign_str: str) -> timezone:$/;" f +caddr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^caddr_t = STRING$/;" v +calc_binint Modules/_pickle.c /^calc_binint(char *bytes, int nbytes)$/;" f file: +calc_binsize Modules/_pickle.c /^calc_binsize(char *bytes, int nbytes)$/;" f file: +calc_callees Lib/pstats.py /^ def calc_callees(self):$/;" m class:Stats +calc_chksums Lib/tarfile.py /^def calc_chksums(buf):$/;" f +calc_ndigits Tools/ccbench/ccbench.py /^ def calc_ndigits(n):$/;" f function:task_pidigits +calc_number_widths Python/formatter_unicode.c /^calc_number_widths(NumberFieldWidths *spec, Py_ssize_t n_prefix,$/;" f file: +calc_padding Python/formatter_unicode.c /^calc_padding(Py_ssize_t nchars, Py_ssize_t width, Py_UCS4 align,$/;" f file: +calcfirst Lib/lib2to3/pgen2/pgen.py /^ def calcfirst(self, name):$/;" m class:ParserGenerator +calcobjsize Lib/test/support/__init__.py /^def calcobjsize(fmt):$/;" f +calcsize Modules/_testbuffer.c /^static PyObject *calcsize = NULL;$/;" v file: +calcsize Modules/clinic/_struct.c.h /^calcsize(PyObject *module, PyObject *arg)$/;" f +calcsize_impl Modules/_struct.c /^calcsize_impl(PyObject *module, PyStructObject *s_object)$/;" f file: +calculate Doc/includes/mp_pool.py /^def calculate(func, args):$/;" f +calculate Doc/includes/mp_workers.py /^def calculate(func, args):$/;" f +calculate Tools/peg_generator/pegen/first_sets.py /^ def calculate(self) -> Dict[str, Set[str]]:$/;" m class:FirstSetCalculator +calculateCommandLine PC/launcher2.c /^calculateCommandLine(const SearchInfo *search, const EnvironmentInfo *launch, wchar_t *buffer, int bufferLength)$/;" f +calculate_call_stats Tools/scripts/summarize_stats.py /^def calculate_call_stats(stats):$/;" f +calculate_execution_counts Tools/scripts/summarize_stats.py /^def calculate_execution_counts(opcode_stats, total):$/;" f +calculate_first_sets Lib/test/test_peg_generator/test_first_sets.py /^ def calculate_first_sets(self, grammar_source: str) -> Dict[str, Set[str]]:$/;" m class:TestFirstSets +calculate_indent Tools/clinic/clinic.py /^ def calculate_indent(line: str) -> int:$/;" m class:DSLParser +calculate_log2_keysize Objects/dictobject.c /^calculate_log2_keysize(Py_ssize_t minsize)$/;" f file: +calculate_object_stats Tools/scripts/summarize_stats.py /^def calculate_object_stats(stats):$/;" f +calculate_qualname Objects/descrobject.c /^calculate_qualname(PyDescrObject *descr)$/;" f file: +calculate_specialization_effectiveness Tools/scripts/summarize_stats.py /^def calculate_specialization_effectiveness(opcode_stats, total):$/;" f +calculate_specialization_failure_kinds Tools/scripts/summarize_stats.py /^def calculate_specialization_failure_kinds(name, family_stats, defines):$/;" f +calculate_specialization_stats Tools/scripts/summarize_stats.py /^def calculate_specialization_stats(family_stats, total):$/;" f +calculate_specialization_success_failure Tools/scripts/summarize_stats.py /^def calculate_specialization_success_failure(family_stats):$/;" f +calculate_suggestions Python/suggestions.c /^calculate_suggestions(PyObject *dir,$/;" f file: +calculated_module_search_path Python/pathconfig.c /^ wchar_t *calculated_module_search_path;$/;" m struct:_PyPathConfig file: +calculatestar Doc/includes/mp_pool.py /^def calculatestar(args):$/;" f +calcvobjsize Lib/test/support/__init__.py /^def calcvobjsize(fmt):$/;" f +calendar Lib/calendar.py /^calendar = c.formatyear$/;" v +calendarrule_new Modules/_zoneinfo.c /^calendarrule_new(uint8_t month, uint8_t week, uint8_t day, int8_t hour,$/;" f +calendarrule_year_to_timestamp Modules/_zoneinfo.c /^calendarrule_year_to_timestamp(TransitionRuleType *base_self, int year)$/;" f +calibrate Lib/profile.py /^ def calibrate(self, m, verbose=0):$/;" m class:Profile +call Lib/cgitb.py /^ call = 'in ' + func$/;" v +call Lib/cgitb.py /^ call = 'in ' + strong(pydoc.html.escape(func))$/;" v +call Lib/cgitb.py /^ call = ''$/;" v +call Lib/idlelib/debugger_r.py /^ def call(self, methodname, \/, *args, **kwargs):$/;" m class:IdbProxy +call Lib/operator.py /^def call(obj, \/, *args, **kwargs):$/;" f +call Lib/subprocess.py /^def call(*popenargs, timeout=None, **kwargs):$/;" f +call Lib/test/test_compile.py /^ def call():$/;" f function:TestSpecifics.test_lineno_procedure_call +call Lib/test/test_decorators.py /^ def call(*args, **kwds):$/;" f function:countcalls.decorate +call Lib/test/test_decorators.py /^ def call(*args):$/;" f function:memoize +call Lib/test/test_inspect.py /^ def call(func, *args, **kwargs):$/;" m class:TestSignatureBind +call Lib/test/test_monitoring.py /^ def call(code, offset, callable, arg):$/;" f function:SimulateProfileTest.test_frame_stack +call Lib/test/test_sys_settrace.py /^def call(): # line 0$/;" f +call Lib/test/test_zoneinfo/test_zoneinfo.py /^ def call(f):$/;" f function:TZStrTest._populate_test_cases +call Lib/unittest/mock.py /^call = _Call(from_kall=False)$/;" v +callHandlers Lib/logging/__init__.py /^ def callHandlers(self, record):$/;" m class:Logger +callLst Lib/test/test_class.py /^callLst = []$/;" v +call_after_accept Lib/test/test_ssl.py /^ def call_after_accept(conn_to_client):$/;" f function:TestPreHandshakeClose.test_https_client_non_tls_response_ignored +call_after_accept Lib/test/test_ssl.py /^ def call_after_accept(conn_to_client):$/;" f function:TestPreHandshakeClose.test_preauth_data_to_tls_client +call_after_accept Lib/test/test_ssl.py /^ def call_after_accept(unused):$/;" f function:TestPreHandshakeClose.test_preauth_data_to_tls_server +call_args Lib/unittest/mock.py /^ call_args = _delegating_property('call_args')$/;" v class:NonCallableMock +call_args_list Lib/unittest/mock.py /^ call_args_list = _delegating_property('call_args_list')$/;" v class:NonCallableMock +call_at Lib/asyncio/base_events.py /^ def call_at(self, when, callback, *args, context=None):$/;" m class:BaseEventLoop +call_at Lib/asyncio/events.py /^ def call_at(self, when, callback, *args, context=None):$/;" m class:AbstractEventLoop +call_at Lib/test/test_asyncio/utils.py /^ def call_at(self, when, callback, *args, context=None):$/;" m class:TestLoop +call_attribute Objects/typeobject.c /^call_attribute(PyObject *self, PyObject *attr, PyObject *name)$/;" f file: +call_callbacks Lib/idlelib/window.py /^ def call_callbacks(self):$/;" m class:WindowList +call_cdeclfunction Modules/_ctypes/callproc.c /^call_cdeclfunction(PyObject *self, PyObject *args)$/;" f file: +call_change_cwd Lib/test/test_support.py /^ def call_change_cwd(path):$/;" f function:TestSupport.test_change_cwd__non_existent_dir +call_character_handler Modules/pyexpat.c /^call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len)$/;" f file: +call_count Lib/unittest/mock.py /^ call_count = _delegating_property('call_count')$/;" v class:NonCallableMock +call_dst Modules/_datetimemodule.c /^call_dst(PyObject *tzinfo, PyObject *tzinfoarg)$/;" f file: +call_error_callback Modules/cjkcodecs/multibytecodec.c /^call_error_callback(PyObject *errors, PyObject *exc)$/;" f file: +call_exception_handler Lib/asyncio/base_events.py /^ def call_exception_handler(self, context):$/;" m class:BaseEventLoop +call_exception_handler Lib/asyncio/events.py /^ def call_exception_handler(self, context):$/;" m class:AbstractEventLoop +call_fail_kind Python/specialize.c /^call_fail_kind(PyObject *callable)$/;" f file: +call_func Lib/test/pythoninfo.py /^def call_func(info_add, name, mod, func_name, *, formatter=None):$/;" f +call_function Modules/_ctypes/callproc.c /^call_function(PyObject *self, PyObject *args)$/;" f file: +call_function_TestCase Lib/test/test_ctypes/test_random_things.py /^class call_function_TestCase(unittest.TestCase):$/;" c +call_fxn Tools/patchcheck/patchcheck.py /^ def call_fxn(*args, **kwargs):$/;" f function:status.decorated_fxn +call_in_temporary_c_thread Modules/_testcapimodule.c /^call_in_temporary_c_thread(PyObject *self, PyObject *args)$/;" f file: +call_instrumentation_vector Python/instrumentation.c /^call_instrumentation_vector($/;" f file: +call_instrumentation_vector_protected Python/instrumentation.c /^call_instrumentation_vector_protected($/;" f file: +call_interrupt Lib/test/test_threading.py /^ def call_interrupt():$/;" f function:InterruptMainTests.test_interrupt_main_subthread +call_invalid_rules Parser/pegen.h /^ int call_invalid_rules;$/;" m struct:__anon657 +call_later Lib/asyncio/base_events.py /^ def call_later(self, delay, callback, *args, context=None):$/;" m class:BaseEventLoop +call_later Lib/asyncio/events.py /^ def call_later(self, delay, callback, *args, context=None):$/;" m class:AbstractEventLoop +call_later Lib/test/test_asyncio/test_tasks.py /^ def call_later(delay, callback, *args):$/;" f function:BaseTaskTests.test_sleep_cancel +call_link Lib/test/support/__init__.py /^ def call_link(self, *args, returncode=0):$/;" m class:PythonSymlink +call_list Lib/unittest/mock.py /^ def call_list(self):$/;" m class:_Call +call_ll_exitfuncs Python/pylifecycle.c /^call_ll_exitfuncs(_PyRuntimeState *runtime)$/;" f file: +call_method Modules/_pickle.c /^call_method(PyObject *func, PyObject *self, PyObject *obj)$/;" f file: +call_once Lib/test/test_zoneinfo/_support.py /^def call_once(f):$/;" f +call_one_instrument Python/instrumentation.c /^call_one_instrument($/;" f file: +call_profile_func Python/legacy_tracing.c /^call_profile_func(_PyLegacyEventHandler *self, PyObject *arg)$/;" f file: +call_pyfunc_watcher Modules/_testcapi/watchers.c /^call_pyfunc_watcher(PyObject *watcher, PyFunction_WatchEvent event,$/;" f file: +call_readline Modules/readline.c /^call_readline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt)$/;" f file: +call_real Lib/test/support/__init__.py /^ def call_real(self, *args, returncode=0):$/;" m class:PythonSymlink +call_return_args Modules/_testcapi/vectorcall.c /^call_return_args(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +call_send Lib/test/test_generators.py /^ def call_send(gen):$/;" f function:GeneratorStackTraceTest.test_send_with_yield_from +call_show_warning Python/_warnings.c /^call_show_warning(PyThreadState *tstate, PyObject *category,$/;" f file: +call_soon Lib/asyncio/base_events.py /^ def call_soon(self, callback, *args, context=None):$/;" m class:BaseEventLoop +call_soon Lib/asyncio/events.py /^ def call_soon(self, callback, *args, context=None):$/;" m class:AbstractEventLoop +call_soon Lib/test/test_asyncio/test_tasks.py /^ def call_soon(callback, *args, **kwargs):$/;" f function:BaseTaskTests.test_error_in_call_soon +call_soon Modules/_asynciomodule.c /^call_soon(asyncio_state *state, PyObject *loop, PyObject *func, PyObject *arg,$/;" f file: +call_soon_threadsafe Lib/asyncio/base_events.py /^ def call_soon_threadsafe(self, callback, *args, context=None):$/;" m class:BaseEventLoop +call_soon_threadsafe Lib/asyncio/events.py /^ def call_soon_threadsafe(self, callback, *args, context=None):$/;" m class:AbstractEventLoop +call_stack Lib/test/test_yield_from.py /^ def call_stack():$/;" f function:TestPEP380Operation.test_delegator_is_visible_to_debugger +call_state_registration_func Modules/_testmultiphase.c /^call_state_registration_func(PyObject *mod, PyObject *args)$/;" f file: +call_stats Include/pystats.h /^ CallStats call_stats;$/;" m struct:_stats +call_temp_dir Lib/test/test_support.py /^ def call_temp_dir(path):$/;" f function:TestSupport.test_temp_dir__existing_dir__quiet_default +call_throw Lib/test/test_generators.py /^ def call_throw(gen):$/;" f function:GeneratorStackTraceTest.test_throw_with_yield_from +call_timer Modules/_lsprof.c /^call_timer(ProfilerObject *pObj)$/;" f file: +call_trace_func Python/legacy_tracing.c /^call_trace_func(_PyLegacyEventHandler *self, PyObject *arg)$/;" f file: +call_trampoline Python/sysmodule.c /^call_trampoline(PyThreadState *tstate, PyObject* callback,$/;" f file: +call_typing_args_kwargs Objects/typevarobject.c /^call_typing_args_kwargs(const char *name, PyTypeObject *cls, PyObject *args, PyObject *kwargs)$/;" f file: +call_typing_func_object Objects/typevarobject.c /^call_typing_func_object(const char *name, PyObject **args, size_t nargs)$/;" f file: +call_tzinfo_method Modules/_datetimemodule.c /^call_tzinfo_method(PyObject *tzinfo, const char *name, PyObject *tzinfoarg)$/;" f file: +call_tzname Modules/_datetimemodule.c /^call_tzname(PyObject *tzinfo, PyObject *tzinfoarg)$/;" f file: +call_unbound_noarg Objects/typeobject.c /^call_unbound_noarg(int unbound, PyObject *func, PyObject *self)$/;" f file: +call_url_handler Lib/test/test_pydoc.py /^ def call_url_handler(self, url, expected_title):$/;" m class:PydocBaseTest +call_utcoffset Modules/_datetimemodule.c /^call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg)$/;" f file: +call_vectorcall Modules/_testcapi/vectorcall_limited.c /^call_vectorcall(PyObject* self, PyObject *callable)$/;" f file: +call_vectorcall_method Modules/_testcapi/vectorcall_limited.c /^call_vectorcall_method(PyObject* self, PyObject *callable)$/;" f file: +call_with_errorcheck_goto Tools/peg_generator/pegen/c_generator.py /^ def call_with_errorcheck_goto(self, call_text: str, goto_target: str) -> None:$/;" m class:CParserGenerator +call_with_errorcheck_return Tools/peg_generator/pegen/c_generator.py /^ def call_with_errorcheck_return(self, call_text: str, returnval: str) -> None:$/;" m class:CParserGenerator +call_with_frame Modules/pyexpat.c /^call_with_frame(const char *funcname, int lineno, PyObject* func, PyObject* args,$/;" f file: +call_with_kwarg Lib/test/test_asyncgen.py /^ async def call_with_kwarg():$/;" f function:AsyncGenAsyncioTest.test_anext_bad_args +call_with_too_few_args Lib/test/test_asyncgen.py /^ async def call_with_too_few_args():$/;" f function:AsyncGenAsyncioTest.test_aiter_bad_args +call_with_too_few_args Lib/test/test_asyncgen.py /^ async def call_with_too_few_args():$/;" f function:AsyncGenAsyncioTest.test_anext_bad_args +call_with_too_many_args Lib/test/test_asyncgen.py /^ async def call_with_too_many_args():$/;" f function:AsyncGenAsyncioTest.test_aiter_bad_args +call_with_too_many_args Lib/test/test_asyncgen.py /^ async def call_with_too_many_args():$/;" f function:AsyncGenAsyncioTest.test_anext_bad_args +call_with_wrong_type_arg Lib/test/test_asyncgen.py /^ async def call_with_wrong_type_arg():$/;" f function:AsyncGenAsyncioTest.test_aiter_bad_args +call_with_wrong_type_args Lib/test/test_asyncgen.py /^ async def call_with_wrong_type_args():$/;" f function:AsyncGenAsyncioTest.test_anext_bad_args +callable Include/cpython/abstract.h /^PyAPI_FUNC(vectorcallfunc) PyVectorcall_Function(PyObject *callable);$/;" v +callable Lib/test/test_traceback.py /^ def callable():$/;" f function:SuggestionFormattingTestBase.get_suggestion +callable Lib/test/test_traceback.py /^ def callable():$/;" f function:SuggestionFormattingTestBase.get_import_from_suggestion +callable Modules/_ctypes/ctypes.h /^ PyObject *callable;$/;" m struct:__anon492 +callable Modules/_ctypes/ctypes.h /^ PyObject *callable;$/;" m struct:__anon493 +callable Modules/_sqlite/connection.h /^ PyObject *callable;$/;" m struct:_callback_context +callable Modules/_ssl.c /^ PyObject *callable;$/;" m struct:__anon585 file: +callable Tools/clinic/clinic.py /^ callable = getattr(cls, attribute, None)$/;" v +callable_cache Include/internal/pycore_code.h /^struct callable_cache {$/;" s +callable_cache Include/internal/pycore_interp.h /^ struct callable_cache callable_cache;$/;" m struct:_is typeref:struct:_is::callable_cache +callable_line Lib/test/test_traceback.py /^ callable_line = get_exception.__code__.co_firstlineno + 2$/;" v class:PurePythonExceptionFormattingMixin +callable_line Lib/test/test_traceback.py /^ callable_line = get_exception.__code__.co_firstlineno + 3$/;" v class:CAPIExceptionFormattingMixin +callable_line Lib/test/test_traceback.py /^ callable_line = get_exception.__code__.co_firstlineno + 4$/;" v class:BaseExceptionReportingTests +callback Include/cpython/code.h /^PyAPI_FUNC(int) PyCode_AddWatcher(PyCode_WatchCallback callback);$/;" v +callback Include/cpython/dictobject.h /^PyAPI_FUNC(int) PyDict_AddWatcher(PyDict_WatchCallback callback);$/;" v +callback Include/cpython/funcobject.h /^PyAPI_FUNC(int) PyFunction_AddWatcher(PyFunction_WatchCallback callback);$/;" v +callback Include/cpython/object.h /^PyAPI_FUNC(int) PyType_AddWatcher(PyType_WatchCallback callback);$/;" v +callback Lib/asyncio/__main__.py /^ def callback():$/;" f function:AsyncIOInteractiveConsole.runcode +callback Lib/asyncio/tasks.py /^ def callback():$/;" f function:run_coroutine_threadsafe +callback Lib/asyncio/windows_events.py /^ def callback(f):$/;" f function:_WindowsSubprocessTransport._start +callback Lib/contextlib.py /^ def callback(self, callback, \/, *args, **kwds):$/;" m class:_BaseExitStack +callback Lib/pydoc.py /^ def callback(path, modname, desc, modules=modules):$/;" f function:.listmodules +callback Lib/pydoc.py /^ def callback(path, modname, desc):$/;" f function:_url_handler.html_search +callback Lib/pydoc.py /^ def callback(path, modname, desc):$/;" f function:apropos +callback Lib/test/crashers/mutation_inside_cyclegc.py /^def callback(x):$/;" f +callback Lib/test/test_asyncio/test_base_events.py /^ def callback():$/;" f function:BaseEventLoopTests.test_run_once +callback Lib/test/test_asyncio/test_events.py /^ def callback():$/;" f function:HandleTests.test_callback_with_exception +callback Lib/test/test_asyncio/test_events.py /^ def callback(*args):$/;" f function:HandleTests.test_handle +callback Lib/test/test_asyncio/test_events.py /^ def callback(*args):$/;" f function:TimerTests.test_timer +callback Lib/test/test_asyncio/test_events.py /^ def callback(*args):$/;" f function:TimerTests.test_timer_comparison +callback Lib/test/test_asyncio/test_events.py /^ def callback(arg):$/;" f function:EventLoopTestsMixin.test_call_later +callback Lib/test/test_asyncio/test_events.py /^ def callback(arg):$/;" f function:EventLoopTestsMixin.test_call_soon_threadsafe +callback Lib/test/test_asyncio/test_events.py /^ def callback(arg):$/;" f function:EventLoopTestsMixin.test_call_soon_threadsafe_same_thread +callback Lib/test/test_asyncio/test_events.py /^ def callback(arg1, arg2):$/;" f function:EventLoopTestsMixin.test_call_soon +callback Lib/test/test_asyncio/test_futures2.py /^ def callback():$/;" f function:FutureTests.test_handle_exc_handler_correct_context +callback Lib/test/test_asyncio/test_selector_events.py /^ def callback():$/;" f function:BaseSelectorEventLoopTests.test_close +callback Lib/test/test_capi/test_misc.py /^ def callback():$/;" f function:TestPendingCalls.PendingTask.run_in_pending_call +callback Lib/test/test_capi/test_misc.py /^ def callback():$/;" f function:TestThreadState.test_thread_state.target +callback Lib/test/test_capi/test_misc.py /^ def callback():$/;" f function:TestPendingCalls.pendingcalls_submit +callback Lib/test/test_code.py /^ def callback(code):$/;" f function:CodeWeakRefTest.test_basic +callback Lib/test/test_ctypes/test_as_parameter.py /^ def callback(v):$/;" f function:BasicWrapTestCase.test_shorts +callback Lib/test/test_ctypes/test_as_parameter.py /^ def callback(value):$/;" f function:BasicWrapTestCase.test_callbacks +callback Lib/test/test_ctypes/test_as_parameter.py /^ def callback(value):$/;" f function:BasicWrapTestCase.test_callbacks_2 +callback Lib/test/test_ctypes/test_as_parameter.py /^ def callback(value):$/;" f function:BasicWrapTestCase.test_longlong_callbacks +callback Lib/test/test_ctypes/test_callbacks.py /^ def callback(a, b):$/;" f function:Callbacks.test_i38748_stackCorruption +callback Lib/test/test_ctypes/test_callbacks.py /^ def callback(a, b, c, d, e):$/;" f function:SampleCallbacksTestCase.test_callback_register_double +callback Lib/test/test_ctypes/test_callbacks.py /^ def callback(a, b, c, d, e):$/;" f function:SampleCallbacksTestCase.test_callback_register_int +callback Lib/test/test_ctypes/test_callbacks.py /^ def callback(check, s):$/;" f function:SampleCallbacksTestCase.test_callback_large_struct +callback Lib/test/test_ctypes/test_callbacks.py /^ def callback(self, *args):$/;" m class:Callbacks +callback Lib/test/test_ctypes/test_functions.py /^ def callback(*args):$/;" f function:FunctionTestCase.test_c_char_parm +callback Lib/test/test_ctypes/test_functions.py /^ def callback(*args):$/;" f function:FunctionTestCase.test_sf1651235 +callback Lib/test/test_ctypes/test_functions.py /^ def callback(v):$/;" f function:FunctionTestCase.test_shorts +callback Lib/test/test_ctypes/test_functions.py /^ def callback(value):$/;" f function:FunctionTestCase.test_callbacks +callback Lib/test/test_ctypes/test_functions.py /^ def callback(value):$/;" f function:FunctionTestCase.test_callbacks_2 +callback Lib/test/test_ctypes/test_functions.py /^ def callback(value):$/;" f function:FunctionTestCase.test_longlong_callbacks +callback Lib/test/test_ctypes/test_refcounts.py /^ def callback(value):$/;" f function:RefcountTestCase.test_1 +callback Lib/test/test_frame.py /^ def callback(phase, info):$/;" f function:TestIncompleteFrameAreInvisible.test_sneaky_frame_object +callback Lib/test/test_ftplib.py /^ def callback(data):$/;" f function:TestIPv6Environment.test_transfer.retr +callback Lib/test/test_ftplib.py /^ def callback(data):$/;" f function:TestFTPClass.test_retrbinary +callback Lib/test/test_ftplib.py /^ def callback(data):$/;" f function:TestFTPClass.test_retrbinary_rest +callback Lib/test/test_gc.py /^ def callback(ignored):$/;" f function:GCTests.test_bug1055820b +callback Lib/test/test_gc.py /^ def callback(ignored):$/;" f function:GCTogglingTests.test_bug1055820c +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_attr_from_module +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_deep_import +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_import_from_different_package +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_import_relative_import_no_fromlist +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_module_from_module +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_module_to_package +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_package_to_module +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_package_to_package +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_too_high_from_module +callback Lib/test/test_importlib/import_/test_relative_imports.py /^ def callback(global_):$/;" f function:RelativeImports.test_too_high_from_package +callback Lib/test/test_memoryview.py /^ def callback(wr, b=b):$/;" f function:AbstractMemoryTests.test_weakref +callback Lib/test/test_sqlite3/test_regression.py /^ def callback(*args):$/;" f function:RegressionTests.test_bpo31770 +callback Lib/test/test_sys_setprofile.py /^ def callback(self, frame, event, arg):$/;" m class:HookWatcher +callback Lib/test/test_sys_setprofile.py /^ def callback(self, frame, event, arg):$/;" m class:ProfileSimulator +callback Lib/test/test_threading.py /^ def callback():$/;" f function:ThreadTests.test_frame_tstate_tracing +callback Lib/test/test_timeit.py /^ def callback(a, b):$/;" f function:TestTimeit.test_autorange_with_callback +callback Lib/test/test_tkinter/test_misc.py /^ def callback():$/;" f function:MiscTest.test_after_cancel +callback Lib/test/test_tkinter/test_misc.py /^ def callback():$/;" f function:MiscTest.test_mainloop +callback Lib/test/test_tkinter/test_misc.py /^ def callback(start=0, step=1):$/;" f function:MiscTest.test_after +callback Lib/test/test_tkinter/test_misc.py /^ def callback(start=0, step=1):$/;" f function:MiscTest.test_after_idle +callback Lib/test/test_weakref.py /^ def callback():$/;" f function:FinalizeTestCase.test_all_freed +callback Lib/test/test_weakref.py /^ def callback(*args):$/;" f function:ReferencesTestCase.check_gc_during_creation +callback Lib/test/test_weakref.py /^ def callback(object, self=self):$/;" f function:ReferencesTestCase.test_multiple_selfref_callbacks +callback Lib/test/test_weakref.py /^ def callback(w):$/;" f function:SubclassableWeakrefTestCase.test_subclass_refs_with_cycle +callback Lib/test/test_weakref.py /^ def callback(self, ref):$/;" m class:TestBase +callback Lib/timeit.py /^ def callback(number, time_taken):$/;" f function:main +callback Modules/_testcapimodule.c /^ PyObject *callback;$/;" m struct:__anon589 file: +callback Modules/_testcapimodule.c /^callback(void *data)$/;" f file: +callback_context Modules/_sqlite/connection.h /^} callback_context;$/;" t typeref:struct:_callback_context +callback_error_internal_frames Lib/test/test_contextlib.py /^ callback_error_internal_frames = [$/;" v class:TestExitStack +callback_error_internal_frames Lib/test/test_contextlib_async.py /^ callback_error_internal_frames = [$/;" v class:TestAsyncExitStack +callback_func Lib/test/test_ctypes/test_random_things.py /^def callback_func(arg):$/;" f +callback_len Include/internal/pycore_atexit.h /^ int callback_len;$/;" m struct:atexit_state +callback_method Modules/_lsprof.c /^ const char* callback_method;$/;" m struct:__anon365 file: +callback_table Modules/_lsprof.c /^} callback_table[] = {$/;" v typeref:struct:__anon365 file: +callbacks Include/internal/pycore_atexit.h /^ atexit_callbackfunc callbacks[NEXITFUNCS];$/;" m struct:_atexit_runtime_state +callbacks Include/internal/pycore_atexit.h /^ atexit_py_callback **callbacks;$/;" m struct:atexit_state +callbacks Include/internal/pycore_gc.h /^ PyObject *callbacks;$/;" m struct:_gc_runtime_state +callcount Modules/_lsprof.c /^ long callcount; \/* how many times this was called *\/$/;" m struct:_ProfilerEntry file: +callcount Modules/_lsprof.c /^ long callcount;$/;" m struct:_ProfilerSubEntry file: +called Lib/test/test_enumerate.py /^ called = False$/;" v class:TestReversed.test_len.SeqWithWeirdLen +called Lib/test/test_minidom.py /^ called = 0$/;" v class:MinidomTest.UserDataHandler +called Lib/test/test_sys_settrace.py /^def called(): # line -3$/;" f +called Lib/test/test_unittest/test_suite.py /^ called = False$/;" v class:Test_TestSuite.test_overriding_call.MySuite +called Lib/unittest/mock.py /^ called = _delegating_property('called')$/;" v class:NonCallableMock +called Modules/_testcapimodule.c /^ int called;$/;" m struct:atexit_data file: +called_once Lib/test/test_unittest/testmock/testmock.py /^ def called_once(self): pass$/;" m class:MockTest.test_mock_unsafe.Foo +called_with Lib/test/test_genericclass.py /^ called_with = None$/;" v class:TestClassGetitem.test_class_getitem_with_builtins.A +caller Objects/typevarobject.c /^caller(void)$/;" f file: +callfuncs Modules/_decimal/tests/deccheck.py /^def callfuncs(t):$/;" f +callit Lib/tkinter/__init__.py /^ def callit():$/;" f function:Misc.after +calliter_dealloc Objects/iterobject.c /^calliter_dealloc(calliterobject *it)$/;" f file: +calliter_iternext Objects/iterobject.c /^calliter_iternext(calliterobject *it)$/;" f file: +calliter_methods Objects/iterobject.c /^static PyMethodDef calliter_methods[] = {$/;" v file: +calliter_reduce Objects/iterobject.c /^calliter_reduce(calliterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +calliter_traverse Objects/iterobject.c /^calliter_traverse(calliterobject *it, visitproc visit, void *arg)$/;" f file: +calliterobject Objects/iterobject.c /^} calliterobject;$/;" t typeref:struct:__anon741 file: +callme Lib/idlelib/parenmatch.py /^ def callme(callme, self=self, c=self.counter,$/;" f function:ParenMatch.set_timeout_none +callmethod Objects/call.c /^callmethod(PyThreadState *tstate, PyObject* callable, const char *format, va_list va, int is_size_t)$/;" f file: +callnum Lib/test/test_decorators.py /^ def callnum(num):$/;" f function:TestDecorators.test_order +callobj Python/thread_nt.h /^} callobj;$/;" t typeref:struct:__anon691 +calloc Include/cpython/pymem.h /^ void* (*calloc) (void *ctx, size_t nelem, size_t elsize);$/;" m struct:__anon249 +calloc_elsize Modules/_testcapi/mem.c /^ size_t calloc_elsize;$/;" m struct:__anon555 file: +calloc_nelem Modules/_testcapi/mem.c /^ size_t calloc_nelem;$/;" m struct:__anon555 file: +calloc_wrapper Programs/_testembed.c /^calloc_wrapper(void *ctx, size_t nelem, size_t elsize)$/;" f file: +calls Include/internal/pycore_ceval_state.h /^ } calls[NPENDINGCALLS];$/;" m struct:_pending_calls typeref:struct:_pending_calls::_pending_call +calls Lib/test/test_rlcompleter.py /^ calls = 0$/;" v class:TestRlcompleter.test_excessive_getattr.Foo +calls Modules/_lsprof.c /^ rotating_node_t *calls;$/;" m struct:_ProfilerEntry file: +calls_to_do Include/internal/pycore_ceval_state.h /^ _Py_atomic_int calls_to_do;$/;" m struct:_pending_calls +calltip_hide Lib/idlelib/calltip_w.py /^ def calltip_hide(event):$/;" f function:_calltip_window +calltip_show Lib/idlelib/calltip_w.py /^ def calltip_show(event):$/;" f function:_calltip_window +can Modules/socketmodule.h /^ struct sockaddr_can can;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_can +canSetFeature Lib/xml/dom/xmlbuilder.py /^ def canSetFeature(self, name, state):$/;" m class:DOMBuilder +can_be_inlined Tools/peg_generator/pegen/grammar.py /^ def can_be_inlined(self) -> bool:$/;" m class:Rhs +can_chmod Lib/test/support/os_helper.py /^def can_chmod():$/;" f +can_dac_override Lib/test/support/os_helper.py /^def can_dac_override():$/;" f +can_delete_dict Lib/test/test_descr.py /^ def can_delete_dict(e):$/;" f function:.test_set_dict +can_fetch Lib/urllib/robotparser.py /^ def can_fetch(self, useragent, url):$/;" m class:RobotFileParser +can_frame_size Lib/test/test_socket.py /^ can_frame_size = struct.calcsize(can_frame_fmt)$/;" v class:SocketCANTest +can_have_symbol Tools/c-analyzer/c_parser/match.py /^def can_have_symbol(decl):$/;" f +can_optimize_super_call Python/compile.c /^can_optimize_super_call(struct compiler *c, expr_ty attr)$/;" f file: +can_return_struct_as_int Modules/_ctypes/callproc.c /^int can_return_struct_as_int(size_t s)$/;" f +can_return_struct_as_sint64 Modules/_ctypes/callproc.c /^int can_return_struct_as_sint64(size_t s)$/;" f +can_sign PC/layout/support/catalog.py /^def can_sign(file):$/;" f +can_start_thread Lib/test/support/threading_helper.py /^can_start_thread = _can_start_thread()$/;" v +can_symlink Lib/test/support/os_helper.py /^def can_symlink():$/;" f +can_use_pidfd Lib/asyncio/unix_events.py /^def can_use_pidfd():$/;" f +can_write_eof Lib/asyncio/proactor_events.py /^ def can_write_eof(self):$/;" m class:_ProactorBaseWritePipeTransport +can_write_eof Lib/asyncio/proactor_events.py /^ def can_write_eof(self):$/;" m class:_ProactorDuplexPipeTransport +can_write_eof Lib/asyncio/proactor_events.py /^ def can_write_eof(self):$/;" m class:_ProactorSocketTransport +can_write_eof Lib/asyncio/selector_events.py /^ def can_write_eof(self):$/;" m class:_SelectorSocketTransport +can_write_eof Lib/asyncio/sslproto.py /^ def can_write_eof(self):$/;" m class:_SSLProtocolTransport +can_write_eof Lib/asyncio/streams.py /^ def can_write_eof(self):$/;" m class:StreamWriter +can_write_eof Lib/asyncio/transports.py /^ def can_write_eof(self):$/;" m class:WriteTransport +can_write_eof Lib/asyncio/unix_events.py /^ def can_write_eof(self):$/;" m class:_UnixWritePipeTransport +can_xattr Lib/test/support/os_helper.py /^def can_xattr():$/;" f +cancel Lib/asyncio/events.py /^ def cancel(self):$/;" m class:Handle +cancel Lib/asyncio/events.py /^ def cancel(self):$/;" m class:TimerHandle +cancel Lib/asyncio/futures.py /^ def cancel(self, msg=None):$/;" m class:Future +cancel Lib/asyncio/tasks.py /^ def cancel(self, msg=None):$/;" m class:Task +cancel Lib/asyncio/tasks.py /^ def cancel(self, msg=None):$/;" m class:_GatheringFuture +cancel Lib/asyncio/windows_events.py /^ def cancel(self):$/;" m class:_WaitCancelFuture +cancel Lib/asyncio/windows_events.py /^ def cancel(self, msg=None):$/;" m class:_BaseWaitHandleFuture +cancel Lib/asyncio/windows_events.py /^ def cancel(self, msg=None):$/;" m class:_OverlappedFuture +cancel Lib/concurrent/futures/_base.py /^ def cancel(self):$/;" m class:Future +cancel Lib/idlelib/config_key.py /^ def cancel(self, event=None):$/;" m class:GetKeysWindow +cancel Lib/idlelib/configdialog.py /^ def cancel(self):$/;" m class:ConfigDialog +cancel Lib/idlelib/idle_test/test_query.py /^ cancel = query.Query.cancel$/;" v class:QueryTest.Dummy_Query +cancel Lib/idlelib/query.py /^ def cancel(self, event=None): # Do not replace.$/;" m class:Query +cancel Lib/multiprocessing/util.py /^ def cancel(self):$/;" m class:Finalize +cancel Lib/sched.py /^ def cancel(self, event):$/;" m class:scheduler +cancel Lib/test/test_asyncio/test_futures.py /^ def cancel(self):$/;" m class:DuckFuture +cancel Lib/test/test_asyncio/test_runners.py /^ def cancel(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +cancel Lib/threading.py /^ def cancel(self):$/;" m class:Timer +cancel Lib/tkinter/dnd.py /^ def cancel(self, event=None):$/;" m class:DndHandler +cancel Lib/tkinter/simpledialog.py /^ def cancel(self, event=None):$/;" m class:Dialog +cancel_callback Lib/idlelib/pyshell.py /^ def cancel_callback(self, event=None):$/;" m class:PyShell +cancel_command Lib/tkinter/filedialog.py /^ def cancel_command(self, event=None):$/;" m class:FileDialog +cancel_dump_traceback_later Modules/faulthandler.c /^cancel_dump_traceback_later(void)$/;" f file: +cancel_event Include/internal/pycore_faulthandler.h /^ PyThread_type_lock cancel_event;$/;" m struct:_faulthandler_runtime_state::__anon127 +cancel_join_thread Lib/multiprocessing/queues.py /^ def cancel_join_thread(self):$/;" m class:Queue +cancel_make_transport Lib/test/test_asyncio/test_subprocess.py /^ async def cancel_make_transport():$/;" f function:SubprocessMixin.test_cancel_make_subprocess_transport_exec +cancel_make_transport Lib/test/test_asyncio/test_subprocess.py /^ async def cancel_make_transport():$/;" f function:SubprocessMixin.test_cancel_post_init +cancel_wait Lib/test/test_asyncio/test_subprocess.py /^ async def cancel_wait():$/;" f function:SubprocessMixin.test_cancel_process_wait +canceled Lib/idlelib/pyshell.py /^ canceled = False$/;" v class:PyShell +cancelled Lib/asyncio/events.py /^ def cancelled(self):$/;" m class:Handle +cancelled Lib/asyncio/futures.py /^ def cancelled(self):$/;" m class:Future +cancelled Lib/concurrent/futures/_base.py /^ def cancelled(self):$/;" m class:Future +cancelled Lib/test/test_asyncio/test_futures.py /^ def cancelled(self):$/;" m class:DuckFuture +cancelled Lib/test/test_asyncio/test_runners.py /^ def cancelled(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +cancelling Lib/asyncio/tasks.py /^ def cancelling(self):$/;" m class:Task +cancelling_callback Lib/test/test_asyncio/test_tasks.py /^ def cancelling_callback(_):$/;" f function:BaseTaskTests.test_cancel_gather_1 +candidate Modules/getpath.py /^ candidate = joinpath(executable_dir, candidate)$/;" v +candidate_locales Lib/test/test__locale.py /^candidate_locales = ['es_UY', 'fr_FR', 'fi_FI', 'es_CO', 'pt_PT', 'it_IT',$/;" v +candidates Lib/test/test_compare.py /^ candidates = set1 + set2$/;" v class:ComparisonSimpleTest +cannot_convert Lib/lib2to3/fixer_base.py /^ def cannot_convert(self, node, reason=None):$/;" m class:BaseFix +cannot_set_attr Lib/test/test_funcattrs.py /^ def cannot_set_attr(self, obj, name, value, exceptions):$/;" m class:FuncAttrsTest +canonic Lib/bdb.py /^ def canonic(self, filename):$/;" m class:Bdb +canonical Lib/_pydecimal.py /^ def canonical(self):$/;" m class:Decimal +canonical Lib/_pydecimal.py /^ def canonical(self, a):$/;" m class:Context +canonicalize Lib/xml/etree/ElementTree.py /^def canonicalize(xml_data=None, *, out=None, from_file=None, **options):$/;" f +canonize Lib/idlelib/filelist.py /^ def canonize(self, filename):$/;" m class:FileList +cant Lib/test/test_descr.py /^ def cant(x, C):$/;" f function:.test_set_class +cant Lib/test/test_descr.py /^ def cant(x, dict):$/;" f function:.test_set_dict +canvasx Lib/tkinter/__init__.py /^ def canvasx(self, screenx, gridspacing=None):$/;" m class:Canvas +canvasy Lib/tkinter/__init__.py /^ def canvasy(self, screeny, gridspacing=None):$/;" m class:Canvas +cap Lib/test/test_buffer.py /^cap = { # format chars # multiplier$/;" v +capa Lib/poplib.py /^ def capa(self):$/;" m class:POP3 +capabilities Lib/nntplib.py /^ def capabilities(self):$/;" m class:NNTP +capabilities Lib/test/test_imaplib.py /^ capabilities = 'AUTH'$/;" v class:ThreadedNetworkedTests.test_enable_raises_error_if_no_capability.NoEnableServer +capabilities Lib/test/test_imaplib.py /^ capabilities = ''$/;" v class:SimpleIMAPHandler +capability Lib/imaplib.py /^ def capability(self):$/;" m class:IMAP4 +capi_getcode Modules/unicodedata.c /^capi_getcode(const char* name, int namelen, Py_UCS4* code,$/;" f file: +capi_getucname Modules/unicodedata.c /^capi_getucname(Py_UCS4 code,$/;" f file: +capitalize Lib/collections/__init__.py /^ def capitalize(self):$/;" m class:UserString +capitals Lib/_pydecimal.py /^ capitals=1,$/;" v +capitals Modules/_decimal/_decimal.c /^ int capitals;$/;" m struct:__anon351 file: +capitals Modules/_decimal/tests/deccheck.py /^ capitals = property(getcapitals, setcapitals)$/;" v class:Context +capitals Modules/_decimal/tests/deccheck.py /^ capitals=1$/;" v +caps Lib/nntplib.py /^ caps = s.getcapabilities()$/;" v class:NNTP +capsulate_codec Modules/cjkcodecs/cjkcodecs.h /^capsulate_codec(PyObject *mod, const MultibyteCodec *codec)$/;" f +capsule Include/pycapsule.h /^PyAPI_FUNC(PyCapsule_Destructor) PyCapsule_GetDestructor(PyObject *capsule);$/;" v +capsule Include/pycapsule.h /^PyAPI_FUNC(const char *) PyCapsule_GetName(PyObject *capsule);$/;" v +capsule Include/pycapsule.h /^PyAPI_FUNC(void *) PyCapsule_GetContext(PyObject *capsule);$/;" v +capsule_context Modules/_testcapimodule.c /^static char *capsule_context = "capsule context";$/;" v file: +capsule_dealloc Objects/capsule.c /^capsule_dealloc(PyObject *o)$/;" f file: +capsule_destructor Modules/_testcapimodule.c /^capsule_destructor(PyObject *o) {$/;" f file: +capsule_destructor_call_count Modules/_testcapimodule.c /^capsule_destructor_call_count = 0;$/;" v file: +capsule_error Modules/_testcapimodule.c /^static const char *capsule_error = NULL;$/;" v file: +capsule_name Modules/_testcapimodule.c /^static const char *capsule_name = "capsule name";$/;" v file: +capsule_pointer Modules/_testcapimodule.c /^static char *capsule_pointer = "capsule pointer";$/;" v file: +capsule_repr Objects/capsule.c /^capsule_repr(PyObject *o)$/;" f file: +capture Lib/test/test_concurrent_futures/executor.py /^def capture(*args, **kwargs):$/;" f +capture Lib/test/test_functools.py /^def capture(*args, **kw):$/;" f +captureCommand Mac/BuildScript/build-installer.py /^def captureCommand(commandline):$/;" f +captureWarnings Lib/logging/__init__.py /^def captureWarnings(capture):$/;" f +capture_events Lib/test/test_sys_setprofile.py /^def capture_events(callable, p=None):$/;" f +capture_pattern_rule Parser/parser.c /^capture_pattern_rule(Parser *p)$/;" f file: +capture_pattern_type Parser/parser.c 159;" d file: +capture_warnings Lib/idlelib/pyshell.py /^def capture_warnings(capture):$/;" f +capture_warnings Lib/idlelib/run.py /^def capture_warnings(capture):$/;" f +captured Lib/test/test_email/test_defect_handling.py /^ captured = None$/;" v class:TestDefectCapture.CapturePolicy +captured_output Lib/test/support/__init__.py /^def captured_output(stream_name):$/;" f +captured_stderr Lib/test/support/__init__.py /^def captured_stderr():$/;" f +captured_stdin Lib/test/support/__init__.py /^def captured_stdin():$/;" f +captured_stdout Lib/test/support/__init__.py /^def captured_stdout():$/;" f +captured_stdout Lib/test/test_xmlrpc.py /^def captured_stdout(encoding='utf-8'):$/;" f +capwords Lib/string.py /^def capwords(s, sep=None):$/;" f +carg_slots Modules/_ctypes/callproc.c /^static PyType_Slot carg_slots[] = {$/;" v file: +carg_spec Modules/_ctypes/callproc.c /^PyType_Spec carg_spec = {$/;" v +carray Lib/test/test_buffer.py /^def carray(items, shape):$/;" f +case_block_rule Parser/parser.c /^case_block_rule(Parser *p)$/;" f file: +case_block_type Parser/parser.c 145;" d file: +case_insensitive_match Python/pystrtod.c /^case_insensitive_match(const char *s, const char *t)$/;" f file: +case_insensitive_tests Lib/test/test_importlib/util.py /^def case_insensitive_tests(test):$/;" f +case_operation Objects/unicodeobject.c /^case_operation(PyObject *self,$/;" f file: +casefold Lib/collections/__init__.py /^ def casefold(self):$/;" m class:UserString +caseok_env_changed Lib/test/test_importlib/util.py /^ def caseok_env_changed(self, *, should_exist):$/;" m class:CASEOKTestBase +cases Include/internal/pycore_ast.h /^ asdl_match_case_seq *cases;$/;" m struct:_stmt::__anon51::__anon67 +cases Include/internal/pycore_ast_state.h /^ PyObject *cases;$/;" m struct:ast_state +cast Lib/ctypes/__init__.py /^def cast(obj, typ):$/;" f +cast Lib/test/test_sqlite3/test_types.py /^ cast = staticmethod(cast)$/;" v class:ObjectAdaptationTests +cast Lib/test/test_sqlite3/test_types.py /^ def cast(obj):$/;" m class:ObjectAdaptationTests +cast Lib/typing.py /^def cast(typ, val):$/;" f +cast Modules/_ctypes/_ctypes.c /^cast(void *ptr, PyObject *src, PyObject *ctype)$/;" f file: +cast Tools/cases_generator/generate_cases.py /^ def cast(self, dst: StackEffect, src: StackEffect) -> str:$/;" m class:Formatter +cast Tools/clinic/clinic.py /^ cast = ''$/;" v class:double_return_converter +cast Tools/clinic/clinic.py /^ cast = ''$/;" v class:long_return_converter +cast Tools/clinic/clinic.py /^ cast = '(double)'$/;" v class:float_return_converter +cast Tools/clinic/clinic.py /^ cast = '(long)'$/;" v class:init_return_converter +cast Tools/clinic/clinic.py /^ cast = '(long)'$/;" v class:int_return_converter +cast Tools/clinic/clinic.py /^ cast = '(unsigned long)'$/;" v class:unsigned_int_return_converter +cast_check_pointertype Modules/_ctypes/_ctypes.c /^cast_check_pointertype(PyObject *arg)$/;" f file: +cast_items Lib/test/test_buffer.py /^def cast_items(exporter, fmt, itemsize, shape=None):$/;" f +cast_key_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class cast_key_st(Structure):$/;" c +cast_to_1D Objects/memoryobject.c /^cast_to_1D(PyMemoryViewObject *mv, PyObject *format)$/;" f file: +cast_to_ND Objects/memoryobject.c /^cast_to_ND(PyMemoryViewObject *mv, const PyObject *shape, int ndim)$/;" f file: +catch Lib/test/test_contextlib.py /^ catch = False$/;" v class:mycontext +catch22 Lib/test/test_buffer.py /^ def catch22(b):$/;" f function:TestBufferProtocol.test_memoryview_release +catch_bz2_error Modules/_bz2module.c /^catch_bz2_error(int bzerror)$/;" f file: +catch_fails Lib/test/test_baseexception.py /^ def catch_fails(self, object_):$/;" m class:UsageTests +catch_lzma_error Modules/_lzmamodule.c /^catch_lzma_error(_lzma_state *state, lzma_ret lzret)$/;" f file: +catch_threading_exception Lib/test/support/threading_helper.py /^class catch_threading_exception:$/;" c +catch_unraisable_exception Lib/test/support/__init__.py /^class catch_unraisable_exception:$/;" c +catch_warnings Lib/warnings.py /^class catch_warnings(object):$/;" c +catchall_ERR Include/py_curses.h /^static const char catchall_ERR[] = "curses function returned ERR";$/;" v +catchall_NULL Include/py_curses.h /^static const char catchall_NULL[] = "curses function returned NULL";$/;" v +categorized_counts Tools/scripts/summarize_stats.py /^def categorized_counts(opcode_stats):$/;" f +category Modules/unicodedata.c /^ const unsigned char category; \/* index into$/;" m struct:__anon642 file: +category_changed Modules/unicodedata.c /^ const unsigned char category_changed;$/;" m struct:change_record file: +caught Lib/test/test_monitoring.py /^def caught():$/;" f +cause Include/internal/pycore_ast.h /^ expr_ty cause;$/;" m struct:_stmt::__anon51::__anon68 +cause Include/internal/pycore_ast_state.h /^ PyObject *cause;$/;" m struct:ast_state +cause_message Lib/test/test_traceback.py /^cause_message = ($/;" v +cause_message Python/pythonrun.c /^static const char cause_message[] =$/;" v file: +cb Lib/asyncio/unix_events.py /^ def cb(fut):$/;" f function:_UnixSelectorEventLoop._sock_add_cancellation_callback +cb Lib/importlib/_bootstrap.py /^ def cb(ref, name=name):$/;" f function:_get_module_lock +cb Lib/test/_test_multiprocessing.py /^ def cb():$/;" f function:_TestFinalize.test_thread_safety +cb Lib/test/test_asyncio/test_base_events.py /^ def cb():$/;" f function:BaseEventLoopTests.check_thread +cb Lib/test/test_asyncio/test_base_events.py /^ def cb():$/;" f function:BaseEventLoopTests.test__run_once_cancelled_event_cleanup +cb Lib/test/test_asyncio/test_base_events.py /^ def cb():$/;" f function:BaseEventLoopTests.test_call_later +cb Lib/test/test_asyncio/test_base_events.py /^ def cb():$/;" f function:BaseEventLoopTests.test_call_soon +cb Lib/test/test_asyncio/test_base_events.py /^ def cb():$/;" f function:BaseEventLoopTests.test_time_and_call_at +cb Lib/test/test_asyncio/test_base_events.py /^ def cb(arg):$/;" f function:BaseEventLoopTests.test_call_later_negative_delays +cb Lib/test/test_asyncio/test_base_events.py /^ def cb(loop):$/;" f function:BaseEventLoopTests.test__run_once_schedule_handle +cb Lib/test/test_asyncio/test_events.py /^ async def cb():$/;" f function:EventLoopTestsMixin.test_run_until_complete_stopped +cb Lib/test/test_asyncio/test_ssl.py /^ def cb(_):$/;" f function:TestSSL.test_create_server_ssl_over_ssl.ServerProtocol.connection_made +cb Lib/test/test_asyncio/test_streams.py /^ def cb():$/;" f function:StreamTests.test_read +cb Lib/test/test_asyncio/test_streams.py /^ def cb():$/;" f function:StreamTests.test_read_eof +cb Lib/test/test_asyncio/test_streams.py /^ def cb():$/;" f function:StreamTests.test_read_until_eof +cb Lib/test/test_asyncio/test_streams.py /^ def cb():$/;" f function:StreamTests.test_readexactly +cb Lib/test/test_asyncio/test_streams.py /^ def cb():$/;" f function:StreamTests.test_readexactly_eof +cb Lib/test/test_asyncio/test_streams.py /^ def cb():$/;" f function:StreamTests.test_readline +cb Lib/test/test_asyncio/test_streams.py /^ def cb():$/;" f function:StreamTests.test_readline_limit +cb Lib/test/test_generators.py /^ def cb(*args):$/;" f function:GeneratorTest.test_handle_frame_object_in_creation +cb Lib/test/test_weakref.py /^ def cb(wparent):$/;" f function:ReferencesTestCase.test_trashcan_16602.C.__init__ +cb Lib/test/test_weakref.py /^ def cb(self, ignore):$/;" m class:ReferencesTestCase.test_callback_different_classes.C +cb Lib/test/test_weakref.py /^ def cb(self, ignore):$/;" m class:ReferencesTestCase.test_callback_reachable_one_way.C +cb Lib/test/test_weakref.py /^ def cb(self, ignore):$/;" m class:ReferencesTestCase.test_callbacks_on_callback.C +cb Lib/test/test_weakref.py /^ def cb(_):$/;" f function:WeakMethodTestCase.test_no_cycles +cb Lib/test/test_weakref.py /^ def cb(arg):$/;" f function:WeakMethodTestCase.test_callback_when_method_dead +cb Lib/test/test_weakref.py /^ def cb(arg):$/;" f function:WeakMethodTestCase.test_callback_when_object_dead +cb1 Lib/test/test_gc.py /^ def cb1(self, phase, info):$/;" m class:GCCallbackTests +cb2 Lib/test/test_gc.py /^ def cb2(self, phase, info):$/;" m class:GCCallbackTests +cb_raising Lib/test/test_ssl.py /^ def cb_raising(ssl_sock, server_name, initial_context):$/;" f function:ThreadedTests.test_sni_callback_raising +cb_returning_alert Lib/test/test_ssl.py /^ def cb_returning_alert(ssl_sock, server_name, initial_context):$/;" f function:ThreadedTests.test_sni_callback_alert +cb_sni Lib/test/test_urllib2_localnet.py /^ def cb_sni(ssl_sock, server_name, initial_context):$/;" f function:TestUrlopen.test_https_sni +cb_test Lib/test/test_ttk/test_extensions.py /^ def cb_test(*args):$/;" f function:OptionMenuTest.test_trace_variable +cb_test Lib/test/test_ttk/test_extensions.py /^ def cb_test(item):$/;" f function:OptionMenuTest.test_menu +cb_test Lib/test/test_ttk/test_widgets.py /^ def cb_test():$/;" f function:CheckbuttonTest.test_invoke +cb_test Lib/test/test_ttk/test_widgets.py /^ def cb_test():$/;" f function:RadiobuttonTest.test_configure_invoke +cb_wrong_return_type Lib/test/test_ssl.py /^ def cb_wrong_return_type(ssl_sock, server_name, initial_context):$/;" f function:ThreadedTests.test_sni_callback_wrong_return_type +cbuf Modules/socketmodule.c /^ char *cbuf;$/;" m struct:sock_recv file: +cbuf Modules/socketmodule.c /^ char* cbuf;$/;" m struct:sock_recvfrom file: +cc Tools/wasm/wasm_build.py /^ cc=EMSCRIPTEN_ROOT \/ "emcc",$/;" v +cc Tools/wasm/wasm_build.py /^ cc=WASI_SDK_PATH \/ "bin" \/ "clang",$/;" v +cc_exts Tools/freeze/checkextensions.py /^cc_exts = ['.c', '.C', '.cc', '.c++']$/;" v +cc_flags Tools/freeze/checkextensions.py /^cc_flags = ['-I', '-D', '-U']$/;" v +ccall_callback Modules/_lsprof.c /^PyObject* ccall_callback(ProfilerObject* self, PyObject *const *args, Py_ssize_t size)$/;" f +ccc Lib/ftplib.py /^ def ccc(self):$/;" m class:.FTP_TLS +cdataSectionProcessor Modules/expat/xmlparse.c /^cdataSectionProcessor(XML_Parser parser, const char *start, const char *end,$/;" f file: +cdataSectionProcessor Modules/expat/xmlparse.c /^static Processor cdataSectionProcessor;$/;" v file: +cdataSectionTok Modules/expat/xmltok_impl.c /^PREFIX(cdataSectionTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +cdata_sections Lib/xml/dom/xmlbuilder.py /^ cdata_sections = True$/;" v class:Options +cdf Lib/statistics.py /^ def cdf(self, x):$/;" m class:NormalDist +cdll Lib/ctypes/__init__.py /^cdll = LibraryLoader(CDLL)$/;" v +ce_extras Objects/codeobject.c /^ void *ce_extras[1];$/;" m struct:__anon745 file: +ce_size Objects/codeobject.c /^ Py_ssize_t ce_size;$/;" m struct:__anon745 file: +cell Lib/test/test_ctypes/test_incomplete.py /^ class cell(Structure):$/;" c function:MyTestCase.test_incomplete_example +cell Lib/test/test_funcattrs.py /^def cell(value):$/;" f +cell_clear Objects/cellobject.c /^cell_clear(PyCellObject *op)$/;" f file: +cell_dealloc Objects/cellobject.c /^cell_dealloc(PyCellObject *op)$/;" f file: +cell_get_contents Objects/cellobject.c /^cell_get_contents(PyCellObject *op, void *closure)$/;" f file: +cell_getsetlist Objects/cellobject.c /^static PyGetSetDef cell_getsetlist[] = {$/;" v file: +cell_new Objects/cellobject.c /^cell_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f file: +cell_repr Objects/cellobject.c /^cell_repr(PyCellObject *op)$/;" f file: +cell_richcompare Objects/cellobject.c /^cell_richcompare(PyObject *a, PyObject *b, int op)$/;" f file: +cell_set_contents Objects/cellobject.c /^cell_set_contents(PyCellObject *op, PyObject *obj, void *Py_UNUSED(ignored))$/;" f file: +cell_traverse Objects/cellobject.c /^cell_traverse(PyCellObject *op, visitproc visit, void *arg)$/;" f file: +center Lib/collections/__init__.py /^ def center(self, width, *args):$/;" m class:UserString +center Lib/idlelib/editor.py /^ def center(self, mark="insert"):$/;" m class:EditorWindow +center Lib/tkinter/tix.py /^ def center(self):$/;" m class:DialogShell +center_insert_event Lib/idlelib/editor.py /^ def center_insert_event(self, event):$/;" m class:EditorWindow +centerpiece Lib/turtledemo/bytedesign.py /^ def centerpiece(self, s, a, scale):$/;" m class:Designer +cert Modules/_ssl.h /^ X509 *cert;$/;" m struct:__anon486 +certEncodingType Modules/_ssl.c /^certEncodingType(DWORD encodingType)$/;" f file: +cert_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class cert_st(Structure):$/;" c +cert_time_fail Lib/test/test_ssl.py /^ def cert_time_fail(self, timestring):$/;" m class:BasicSocketTests +cert_time_ok Lib/test/test_ssl.py /^ def cert_time_ok(self, timestring, timestamp):$/;" m class:BasicSocketTests +cert_time_to_seconds Lib/ssl.py /^def cert_time_to_seconds(cert_time):$/;" f +certfile Lib/test/test_nntplib.py /^certfile = os.path.join(os.path.dirname(__file__), 'keycert3.pem')$/;" v +certificate_dealloc Modules/_ssl/cert.c /^certificate_dealloc(PySSLCertificate *self)$/;" f file: +certificate_hash Modules/_ssl/cert.c /^certificate_hash(PySSLCertificate *self)$/;" f file: +certificate_methods Modules/_ssl/cert.c /^static PyMethodDef certificate_methods[] = {$/;" v file: +certificate_repr Modules/_ssl/cert.c /^certificate_repr(PySSLCertificate *self)$/;" f file: +certificate_richcompare Modules/_ssl/cert.c /^certificate_richcompare(PySSLCertificate *self, PyObject *other, int op)$/;" f file: +cet_protection Lib/test/test_gdb.py /^def cet_protection():$/;" f +ceval Include/internal/pycore_interp.h /^ struct _ceval_state ceval;$/;" m struct:_is typeref:struct:_is::_ceval_state +ceval Include/internal/pycore_runtime.h /^ struct _ceval_runtime_state ceval;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_ceval_runtime_state +cf Include/cpython/ceval.h /^PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf);$/;" v +cfDragWindow PC/pyshellext.cpp /^static CLIPFORMAT cfDragWindow;$/;" v file: +cfDropDescription PC/pyshellext.cpp /^static CLIPFORMAT cfDropDescription;$/;" v file: +cf_feature_version Include/cpython/compile.h /^ int cf_feature_version; \/* minor Python version (PyCF_ONLY_AST) *\/$/;" m struct:__anon205 +cf_flags Include/cpython/compile.h /^ int cf_flags; \/* bitmask of CO_xxx flags relevant to future *\/$/;" m struct:__anon205 +cfg_builder Python/compile.c /^typedef _PyCfgBuilder cfg_builder;$/;" t file: +cfg_builder Python/flowgraph.c /^typedef _PyCfgBuilder cfg_builder;$/;" t file: +cfg_builder_ Include/internal/pycore_flowgraph.h /^typedef struct cfg_builder_ {$/;" s +cfg_builder_check Python/flowgraph.c /^cfg_builder_check(cfg_builder *g)$/;" f file: +cfg_builder_current_block_is_terminated Python/flowgraph.c /^cfg_builder_current_block_is_terminated(cfg_builder *g)$/;" f file: +cfg_builder_maybe_start_new_block Python/flowgraph.c /^cfg_builder_maybe_start_new_block(cfg_builder *g)$/;" f file: +cfg_builder_new_block Python/flowgraph.c /^cfg_builder_new_block(cfg_builder *g)$/;" f file: +cfg_builder_use_next_block Python/flowgraph.c /^cfg_builder_use_next_block(cfg_builder *g, basicblock *block)$/;" f file: +cfg_convert Lib/logging/config.py /^ def cfg_convert(self, value):$/;" m class:BaseConfigurator +cfg_instr Python/compile.c /^typedef _PyCfgInstruction cfg_instr;$/;" t file: +cfg_instr Python/flowgraph.c /^typedef _PyCfgInstruction cfg_instr;$/;" t file: +cfg_optimization_test Lib/test/test_peepholer.py /^ def cfg_optimization_test(self, insts, expected_insts,$/;" m class:DirectCfgOptimizerTests +cfg_to_instr_sequence Python/compile.c /^cfg_to_instr_sequence(cfg_builder *g, instr_sequence *seq)$/;" f file: +cfg_to_instructions Python/compile.c /^cfg_to_instructions(cfg_builder *g)$/;" f file: +cfield_slots Modules/_ctypes/cfield.c /^static PyType_Slot cfield_slots[] = {$/;" v file: +cfield_spec Modules/_ctypes/cfield.c /^PyType_Spec cfield_spec = {$/;" v +cfmakecbreak Lib/tty.py /^def cfmakecbreak(mode):$/;" f +cfmakeraw Lib/tty.py /^def cfmakeraw(mode):$/;" f +cfnum_to_int32 Modules/_scproxy.c /^cfnum_to_int32(CFNumberRef num)$/;" f file: +cfractions Lib/test/test_decimal.py /^cfractions = import_fresh_module('fractions', fresh=['fractions'])$/;" v +cframe Include/cpython/pystate.h /^ _PyCFrame *cframe;$/;" m struct:_ts +cfstring_to_pystring Modules/_scproxy.c /^cfstring_to_pystring(CFStringRef ref)$/;" f file: +cfunc_noargs Modules/_decimal/_decimal.c /^cfunc_noargs(PyTypeObject *t, const char *name)$/;" f file: +cfunction_call Objects/methodobject.c /^cfunction_call(PyObject *func, PyObject *args, PyObject *kwargs)$/;" f file: +cfunction_check_kwargs Objects/methodobject.c /^cfunction_check_kwargs(PyThreadState *tstate, PyObject *func, PyObject *kwnames)$/;" f file: +cfunction_enter_call Objects/methodobject.c /^cfunction_enter_call(PyThreadState *tstate, PyObject *func)$/;" f file: +cfunction_vectorcall_FASTCALL Objects/methodobject.c /^cfunction_vectorcall_FASTCALL($/;" f file: +cfunction_vectorcall_FASTCALL_KEYWORDS Objects/methodobject.c /^cfunction_vectorcall_FASTCALL_KEYWORDS($/;" f file: +cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD Objects/methodobject.c /^cfunction_vectorcall_FASTCALL_KEYWORDS_METHOD($/;" f file: +cfunction_vectorcall_NOARGS Objects/methodobject.c /^cfunction_vectorcall_NOARGS($/;" f file: +cfunction_vectorcall_O Objects/methodobject.c /^cfunction_vectorcall_O($/;" f file: +cget Lib/tkinter/__init__.py /^ def cget(self, key):$/;" m class:Misc +cget Lib/tkinter/__init__.py /^ def cget(self, option):$/;" m class:PhotoImage +cget Lib/tkinter/font.py /^ def cget(self, option):$/;" m class:Font +cget Lib/turtle.py /^ def cget(self, *args, **kwargs):$/;" m class:ScrolledCanvas +cgi Lib/test/test_cgi.py /^cgi = warnings_helper.import_deprecated("cgi")$/;" v +cgi_directories Lib/http/server.py /^ cgi_directories = ['\/cgi-bin', '\/htbin']$/;" v class:CGIHTTPRequestHandler +cgitb Lib/test/test_cgitb.py /^cgitb = import_deprecated("cgitb")$/;" v +cgk2u_choseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char cgk2u_choseong[] = { \/* [A1, BE] *\/$/;" v file: +cgk2u_jongseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char cgk2u_jongseong[] = { \/* [A1, BE] *\/$/;" v file: +ch Include/cpython/unicodeobject.h /^ Py_UCS4 ch \/* Unicode character *\/$/;" v +ch Include/cpython/unicodeobject.h /^ Py_UCS4 ch \/* Unicode character *\/$/;" v +ch Include/cpython/unicodeobject.h /^ const Py_UCS4 ch \/* Unicode character *\/$/;" v +ch Objects/unicodeobject.c /^ Py_UCS4 ch;$/;" m struct:unicode_format_arg_t file: +chain Include/internal/pycore_faulthandler.h /^ int chain;$/;" m struct:faulthandler_user_signal +chain Lib/test/test_finalization.py /^ def chain(self, left):$/;" m class:ChainedBase +chain Tools/c-analyzer/c_common/iterutil.py /^ def chain():$/;" f function:peek_and_iter +chain2 Lib/test/test_itertools.py /^ def chain2(*iterables):$/;" f function:TestBasicOps.test_chain +chain_dealloc Modules/itertoolsmodule.c /^chain_dealloc(chainobject *lz)$/;" f file: +chain_methods Modules/itertoolsmodule.c /^static PyMethodDef chain_methods[] = {$/;" v file: +chain_new Modules/itertoolsmodule.c /^chain_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +chain_new_internal Modules/itertoolsmodule.c /^chain_new_internal(PyTypeObject *type, PyObject *source)$/;" f file: +chain_next Modules/itertoolsmodule.c /^chain_next(chainobject *lz)$/;" f file: +chain_reduce Modules/itertoolsmodule.c /^chain_reduce(chainobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +chain_setstate Modules/itertoolsmodule.c /^chain_setstate(chainobject *lz, PyObject *state)$/;" f file: +chain_slots Modules/itertoolsmodule.c /^static PyType_Slot chain_slots[] = {$/;" v file: +chain_spec Modules/itertoolsmodule.c /^static PyType_Spec chain_spec = {$/;" v file: +chain_traverse Modules/itertoolsmodule.c /^chain_traverse(chainobject *lz, visitproc visit, void *arg)$/;" f file: +chain_type Modules/itertoolsmodule.c /^ PyTypeObject *chain_type;$/;" m struct:__anon400 file: +chainobject Modules/itertoolsmodule.c /^} chainobject;$/;" t typeref:struct:__anon412 file: +chan Modules/_xxinterpchannelsmodule.c /^ _PyChannelState *chan;$/;" m struct:_channelref file: +change Lib/idlelib/statusbar.py /^ def change():$/;" f function:_multistatus_bar +change_callback Lib/idlelib/sidebar.py /^ def change_callback(self):$/;" m class:ShellSidebar +change_clamp Lib/test/test_decimal.py /^ def change_clamp(self, clamp):$/;" m class:IBMTestCases +change_cwd Lib/test/support/os_helper.py /^def change_cwd(path, quiet=False):$/;" f +change_decimal_from_locale_to_dot Python/pystrtod.c /^change_decimal_from_locale_to_dot(char* buffer)$/;" f +change_indentwidth_event Lib/idlelib/format.py /^ def change_indentwidth_event(self, event):$/;" m class:Indents +change_max_exponent Lib/test/test_decimal.py /^ def change_max_exponent(self, exp):$/;" m class:IBMTestCases +change_min_exponent Lib/test/test_decimal.py /^ def change_min_exponent(self, exp):$/;" m class:IBMTestCases +change_precision Lib/test/test_decimal.py /^ def change_precision(self, prec):$/;" m class:IBMTestCases +change_record Modules/unicodedata.c /^typedef struct change_record {$/;" s file: +change_record Modules/unicodedata.c /^} change_record;$/;" t typeref:struct:change_record file: +change_records_3_2_0 Modules/unicodedata_db.h /^static const change_record change_records_3_2_0[] = {$/;" v +change_rounding_method Lib/test/test_decimal.py /^ def change_rounding_method(self, rounding):$/;" m class:IBMTestCases +change_sequence Lib/msilib/__init__.py /^def change_sequence(seq, action, seqno=_Unspecified, cond = _Unspecified):$/;" f +changecolor Lib/turtledemo/paint.py /^def changecolor(x=0, y=0):$/;" f +changed Lib/lib2to3/pytree.py /^ def changed(self):$/;" m class:Base +changed_files Tools/patchcheck/patchcheck.py /^def changed_files(base_branch=None):$/;" f +changes Lib/idlelib/configdialog.py /^changes = ConfigChanges()$/;" v +changes_3_2_0_data Modules/unicodedata_db.h /^static const unsigned char changes_3_2_0_data[] = {$/;" v +changes_3_2_0_index Modules/unicodedata_db.h /^static const unsigned char changes_3_2_0_index[] = {$/;" v +channel Modules/socketmodule.h /^ ULONG channel;$/;" m union:SOCKADDR_BTH_REDEF::__anon397 +channel__channel_id Modules/_xxinterpchannelsmodule.c /^channel__channel_id(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +channel_class Lib/test/smtpd.py /^ channel_class = SMTPChannel$/;" v class:SMTPServer +channel_class Lib/test/test_smtplib.py /^ channel_class = SimSMTPAUTHInitialResponseChannel$/;" v class:SimSMTPAUTHInitialResponseServer +channel_class Lib/test/test_smtplib.py /^ channel_class = SimSMTPChannel$/;" v class:SimSMTPServer +channel_close Modules/_xxinterpchannelsmodule.c /^channel_close(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +channel_create Modules/_xxinterpchannelsmodule.c /^channel_create(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +channel_destroy Modules/_xxinterpchannelsmodule.c /^channel_destroy(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +channel_id_converter Modules/_xxinterpchannelsmodule.c /^channel_id_converter(PyObject *arg, void *ptr)$/;" f file: +channel_id_converter_data Modules/_xxinterpchannelsmodule.c /^struct channel_id_converter_data {$/;" s file: +channel_list_all Modules/_xxinterpchannelsmodule.c /^channel_list_all(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +channel_list_interpreters Modules/_xxinterpchannelsmodule.c /^channel_list_interpreters(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +channel_recv Modules/_xxinterpchannelsmodule.c /^channel_recv(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +channel_release Modules/_xxinterpchannelsmodule.c /^channel_release(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +channel_send Modules/_xxinterpchannelsmodule.c /^channel_send(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +channelid Modules/_xxinterpchannelsmodule.c /^typedef struct channelid {$/;" s file: +channelid Modules/_xxinterpchannelsmodule.c /^} channelid;$/;" t typeref:struct:channelid file: +channelid_dealloc Modules/_xxinterpchannelsmodule.c /^channelid_dealloc(PyObject *self)$/;" f file: +channelid_end Modules/_xxinterpchannelsmodule.c /^channelid_end(PyObject *self, void *end)$/;" f file: +channelid_getsets Modules/_xxinterpchannelsmodule.c /^static PyGetSetDef channelid_getsets[] = {$/;" v file: +channelid_hash Modules/_xxinterpchannelsmodule.c /^channelid_hash(PyObject *self)$/;" f file: +channelid_int Modules/_xxinterpchannelsmodule.c /^channelid_int(PyObject *self)$/;" f file: +channelid_repr Modules/_xxinterpchannelsmodule.c /^channelid_repr(PyObject *self)$/;" f file: +channelid_richcompare Modules/_xxinterpchannelsmodule.c /^channelid_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +channelid_str Modules/_xxinterpchannelsmodule.c /^channelid_str(PyObject *self)$/;" f file: +channels Lib/test/test__xxinterpchannels.py /^channels = import_helper.import_module('_xxinterpchannels')$/;" v +channels Modules/_xxinterpchannelsmodule.c /^ _channels *channels;$/;" m struct:channelid file: +channels Modules/_xxinterpchannelsmodule.c /^ _channels channels;$/;" m struct:globals file: +char Tools/cases_generator/lexer.py /^char = r'\\'.\\'' # TODO: escape sequence$/;" v +charMatches Modules/expat/xmltok.c /^ int(PTRCALL *charMatches)(const ENCODING *, const char *, int);$/;" m struct:normal_encoding file: +charRefNumber Modules/expat/xmltok.h /^ int(PTRFASTCALL *charRefNumber)(const ENCODING *enc, const char *ptr);$/;" m struct:encoding +charRefNumber Modules/expat/xmltok_impl.c /^PREFIX(charRefNumber)(const ENCODING *enc, const char *ptr) {$/;" f file: +char_converter Modules/clinic/_testclinic.c.h /^char_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +char_converter Tools/clinic/clinic.py /^class char_converter(CConverter):$/;" c +char_converter_impl Modules/_testclinic.c /^char_converter_impl(PyObject *module, char a, char b, char c, char d, char e,$/;" f file: +char_from_hex Objects/floatobject.c /^char_from_hex(int x)$/;" f file: +char_in_string_false Lib/idlelib/idle_test/test_pyparse.py /^ def char_in_string_false(index): return False$/;" f function:PyParseTest.test_find_good_parse_start +char_loc_ignore Modules/_sre/sre.c /^char_loc_ignore(SRE_CODE pattern, SRE_CODE ch)$/;" f +char_width Tools/gdb/libpython.py /^ def char_width(self):$/;" m class:PyUnicodeObjectPtr +character Lib/test/test_importlib/source/test_source_encoding.py /^ character = '\\u00c9'$/;" v class:EncodingTest +character_data Lib/xml/sax/expatreader.py /^ def character_data(self, data):$/;" m class:ExpatParser +character_data_handler Lib/xml/dom/expatbuilder.py /^ def character_data_handler(self, data):$/;" m class:ExpatBuilder +character_data_handler_cdata Lib/xml/dom/expatbuilder.py /^ def character_data_handler_cdata(self, data):$/;" m class:ExpatBuilder +characters Lib/tempfile.py /^ characters = "abcdefghijklmnopqrstuvwxyz0123456789_"$/;" v class:_RandomNameSequence +characters Lib/test/test_sax.py /^ def characters(self, content):$/;" m class:CDATAHandlerTest.test_handlers.TestCharHandler +characters Lib/xml/dom/pulldom.py /^ def characters(self, chars):$/;" m class:PullDOM +characters Lib/xml/dom/pulldom.py /^ def characters(self, chars):$/;" m class:SAX2DOM +characters Lib/xml/sax/handler.py /^ def characters(self, content):$/;" m class:ContentHandler +characters Lib/xml/sax/saxutils.py /^ def characters(self, content):$/;" m class:XMLFilterBase +characters Lib/xml/sax/saxutils.py /^ def characters(self, content):$/;" m class:XMLGenerator +charbuffertype Lib/codecs.py /^ charbuffertype = str$/;" v class:StreamReader +charbuffertype Lib/encodings/base64_codec.py /^ charbuffertype = bytes$/;" v class:StreamReader +charbuffertype Lib/encodings/base64_codec.py /^ charbuffertype = bytes$/;" v class:StreamWriter +charbuffertype Lib/encodings/bz2_codec.py /^ charbuffertype = bytes$/;" v class:StreamReader +charbuffertype Lib/encodings/bz2_codec.py /^ charbuffertype = bytes$/;" v class:StreamWriter +charbuffertype Lib/encodings/hex_codec.py /^ charbuffertype = bytes$/;" v class:StreamReader +charbuffertype Lib/encodings/hex_codec.py /^ charbuffertype = bytes$/;" v class:StreamWriter +charbuffertype Lib/encodings/quopri_codec.py /^ charbuffertype = bytes$/;" v class:StreamReader +charbuffertype Lib/encodings/quopri_codec.py /^ charbuffertype = bytes$/;" v class:StreamWriter +charbuffertype Lib/encodings/uu_codec.py /^ charbuffertype = bytes$/;" v class:StreamReader +charbuffertype Lib/encodings/uu_codec.py /^ charbuffertype = bytes$/;" v class:StreamWriter +charbuffertype Lib/encodings/zlib_codec.py /^ charbuffertype = bytes$/;" v class:StreamReader +charbuffertype Lib/encodings/zlib_codec.py /^ charbuffertype = bytes$/;" v class:StreamWriter +charmap_decode_mapping Objects/unicodeobject.c /^charmap_decode_mapping(const char *s,$/;" f file: +charmap_decode_string Objects/unicodeobject.c /^charmap_decode_string(const char *s,$/;" f file: +charmap_encoding_error Objects/unicodeobject.c /^charmap_encoding_error($/;" f file: +charmapencode_lookup Objects/unicodeobject.c /^charmapencode_lookup(Py_UCS4 c, PyObject *mapping)$/;" f file: +charmapencode_output Objects/unicodeobject.c /^charmapencode_output(Py_UCS4 c, PyObject *mapping,$/;" f file: +charmapencode_resize Objects/unicodeobject.c /^charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize)$/;" f file: +charmapencode_result Objects/unicodeobject.c /^typedef enum charmapencode_result {$/;" g file: +charmapencode_result Objects/unicodeobject.c /^} charmapencode_result;$/;" t typeref:enum:charmapencode_result file: +charmaptranslate_lookup Objects/unicodeobject.c /^charmaptranslate_lookup(Py_UCS4 c, PyObject *mapping, PyObject **result)$/;" f file: +charmaptranslate_output Objects/unicodeobject.c /^charmaptranslate_output(Py_UCS4 ch, PyObject *mapping,$/;" f file: +charref Lib/html/parser.py /^charref = re.compile('&#(?:[0-9]+|[xX][0-9a-fA-F]+)[^0-9a-fA-F]')$/;" v +chars_to_skip Modules/_io/textio.c /^ int chars_to_skip;$/;" m struct:__anon438 file: +charset Lib/email/_header_value_parser.py /^ charset = 'us-ascii'$/;" v class:Parameter +charset Lib/email/_header_value_parser.py /^ charset = None$/;" v class:EncodedWord +charset Lib/gettext.py /^ def charset(self):$/;" m class:NullTranslations +charset Modules/_sre/sre_lib.h /^SRE(charset)(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch)$/;" f +charset Modules/cjkcodecs/cjkcodecs.h /^ const char *charset;$/;" m struct:dbcs_map +charset_loc_ignore Modules/_sre/sre_lib.h /^SRE(charset_loc_ignore)(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch)$/;" f +charset_overrides_xml_encoding Lib/xml/dom/xmlbuilder.py /^ charset_overrides_xml_encoding = True$/;" v class:Options +charsize Modules/_sre/sre.h /^ int charsize; \/* character size *\/$/;" m struct:__anon458 +chartruese Lib/test/test_enum.py /^ chartruese = 7$/;" v class:TestSpecial.test_extending.Color.EvenMoreColor +chdir Lib/contextlib.py /^class chdir(AbstractContextManager):$/;" c +chdir Lib/tkinter/tix.py /^ def chdir(self, dir):$/;" m class:DirList +chdir Lib/tkinter/tix.py /^ def chdir(self, dir):$/;" m class:DirTree +check Doc/make.bat /^:check$/;" l +check Lib/idlelib/idle_test/test_squeezer.py /^ def check(self, expected, text, linewidth):$/;" m class:CountLinesTest +check Lib/imaplib.py /^ def check(self):$/;" m class:IMAP4 +check Lib/pdb.py /^ def check(self):$/;" m class:_ModuleTarget +check Lib/pdb.py /^ def check(self):$/;" m class:_ScriptTarget +check Lib/tabnanny.py /^def check(file):$/;" f +check Lib/test/_test_embed_set_config.py /^ def check(self, **kwargs):$/;" m class:SetConfigTests +check Lib/test/pickletester.py /^ def check(collection):$/;" f function:AbstractPickleTests.test_evil_pickler_mutating_collection +check Lib/test/test___future__.py /^ def check(t, name):$/;" f function:FutureTest.test_attributes +check Lib/test/test_bytes.py /^ def check(fmt, vals, result):$/;" f function:BaseBytesTest.test_mod +check Lib/test/test_capi/test_mem.py /^ def check(self, code):$/;" m class:PyMemDebugTests +check Lib/test/test_capi/test_misc.py /^ def check(enabled, override):$/;" f function:SubinterpreterTest.test_overridden_setting_extensions_subinterp_check +check Lib/test/test_capi/test_misc.py /^ def check(extra_base_size, extra_size):$/;" f function:TestHeapTypeRelative.test_heaptype_relative_sizes +check Lib/test/test_cgi.py /^ def check(content):$/;" f function:.test_fieldstorage_multipart_maxline +check Lib/test/test_cmath.py /^ def check(arg, expected):$/;" f function:CMathTests.check_polar +check Lib/test/test_codecs.py /^ def check(input, expect):$/;" f function:coding_checker +check Lib/test/test_collections.py /^ def check(dup):$/;" f function:TestCounter.test_copying +check Lib/test/test_complex.py /^ def check(n, deltas, is_equal, imag = 0.0):$/;" f function:ComplexTest.test_richcompare_boundaries +check Lib/test/test_coroutines.py /^ def check(depth, msg):$/;" f function:OriginTrackingTest.test_origin_tracking_warning +check Lib/test/test_curses.py /^ def check(func, expected):$/;" f function:TestAscii.test_ctypes +check Lib/test/test_decorators.py /^ def check(*args, **kwds):$/;" f function:dbcheck.decorate +check Lib/test/test_descr.py /^ def check(descr, what):$/;" f function:.test_descrdoc +check Lib/test/test_descr.py /^ def check(expr, x, y):$/;" f function:.test_not_implemented +check Lib/test/test_difflib.py /^ def check(self, diff):$/;" m class:TestBytes +check Lib/test/test_dis.py /^ def check(expected, **kwargs):$/;" f function:DisTests.test_disassemble_recursive +check Lib/test/test_exceptions.py /^ def check(self, src, lineno, offset, end_lineno=None, end_offset=None, encoding='utf-8'):$/;" m class:ExceptionTests +check Lib/test/test_fileinput.py /^ def check(errors, expected_lines):$/;" f function:Test_hook_encoded.test_errors +check Lib/test/test_fileinput.py /^ def check(mode, expected_lines):$/;" f function:Test_hook_encoded.test_modes +check Lib/test/test_float.py /^ def check(s):$/;" f function:GeneralFloatCases.test_error_message +check Lib/test/test_genericpath.py /^ def check(value, expected):$/;" f function:CommonTest.test_expandvars_nonascii +check Lib/test/test_grammar.py /^ def check(test):$/;" f function:GrammarTests.test_warn_missed_comma +check Lib/test/test_grammar.py /^ def check(test, error=False):$/;" f function:TokenTests.test_end_of_numerical_literals +check Lib/test/test_grammar.py /^ def check(test, msg):$/;" f function:GrammarTests.test_comparison_is_literal +check Lib/test/test_hashlib.py /^ def check(self, name, data, hexdigest, shake=False, **kwargs):$/;" m class:HashLibTestCase +check Lib/test/test_html.py /^ def check(text, expected):$/;" f function:HtmlTests.test_unescape +check Lib/test/test_int.py /^ def check(s, base=None):$/;" f function:IntTestCases.test_error_message +check Lib/test/test_int.py /^ def check(self, i, base=None):$/;" m class:IntStrDigitLimitsTests +check Lib/test/test_io.py /^ def check(f):$/;" f function:IOTest.test_array_writes +check Lib/test/test_json/test_indent.py /^ def check(indent, expected):$/;" f function:TestIndent.test_indent0 +check Lib/test/test_lib2to3/test_fixers.py /^ def check(self, b, a):$/;" m class:Test_map +check Lib/test/test_lib2to3/test_fixers.py /^ def check(self, b, a):$/;" m class:Test_zip +check Lib/test/test_lib2to3/test_fixers.py /^ def check(self, before, after, ignore_warnings=False):$/;" m class:FixerTestCase +check Lib/test/test_lib2to3/test_refactor.py /^ def check(structure, expected):$/;" f function:TestRefactoringTool.test_refactor_dir +check Lib/test/test_list.py /^ def check(n):$/;" f function:ListTest.test_repr_large +check Lib/test/test_locale.py /^ def check(self, localename, expected):$/;" m class:NormalizeTest +check Lib/test/test_long.py /^ def check(tests, byteorder, signed=False):$/;" f function:LongTest.test_from_bytes +check Lib/test/test_long.py /^ def check(tests, byteorder, signed=False):$/;" f function:LongTest.test_to_bytes +check Lib/test/test_marshal.py /^ def check(s):$/;" f function:BugsTestCase.test_loads_recursion +check Lib/test/test_ntpath.py /^ def check(paths, expected):$/;" f function:TestNtpath.test_commonpath +check Lib/test/test_ntpath.py /^ def check(value, expected):$/;" f function:TestNtpath.test_expandvars_nonascii +check Lib/test/test_ordered_dict.py /^ def check(dup):$/;" f function:OrderedDictTests.test_copying +check Lib/test/test_os.py /^ def check(self, f, *args, **kwargs):$/;" m class:TestInvalidFD +check Lib/test/test_pathlib.py /^ def check():$/;" f function:WindowsPathTest.test_expanduser +check Lib/test/test_pdb.py /^ def check(bad_arg, msg):$/;" f function:.test_issue34266 +check Lib/test/test_pickle.py /^ def check(Pickler):$/;" f function:PyIdPersPicklerTests.test_pickler_reference_cycle +check Lib/test/test_pickle.py /^ def check(Unpickler):$/;" f function:PyIdPersPicklerTests.test_unpickler_reference_cycle +check Lib/test/test_posixpath.py /^ def check(paths, expected):$/;" f function:PosixPathTest.test_commonpath +check Lib/test/test_print.py /^ def check(self, expected, args,$/;" m class:TestPrint +check Lib/test/test_pyexpat.py /^ def check(self, expected, label):$/;" m class:BufferTextTest +check Lib/test/test_range.py /^ def check(start, stop, step=None):$/;" f function:RangeTest.test_slice +check Lib/test/test_re.py /^ def check(self, pattern, expected):$/;" m class:PatternReprTests +check Lib/test/test_sort.py /^def check(tag, expected, raw, compare=None):$/;" f +check Lib/test/test_source_encoding.py /^ def check(content):$/;" f function:UTF8ValidatorTest.test_invalid_utf8 +check Lib/test/test_strptime.py /^ def check(value, format, *expected):$/;" f function:CalculationTests.test_week_0 +check Lib/test/test_sys.py /^ def check(tracebacklimit, expected):$/;" f function:SysModuleTest.test_sys_tracebacklimit +check Lib/test/test_tcl.py /^ def check(expr, expected):$/;" f function:TclTest.test_booleans +check Lib/test/test_tcl.py /^ def check(expr, expected):$/;" f function:TclTest.test_exprboolean +check Lib/test/test_tcl.py /^ def check(expr, expected):$/;" f function:TclTest.test_exprdouble +check Lib/test/test_tcl.py /^ def check(expr, expected):$/;" f function:TclTest.test_exprlong +check Lib/test/test_tcl.py /^ def check(expr, expected):$/;" f function:TclTest.test_exprstring +check Lib/test/test_tcl.py /^ def check(value):$/;" f function:TclTest.test_join +check Lib/test/test_tcl.py /^ def check(value, expected=None, *, eq=self.assertEqual):$/;" f function:TclTest.test_user_command +check Lib/test/test_textwrap.py /^ def check(self, result, expect):$/;" m class:BaseTestCase +check Lib/test/test_tkinter/test_geometry_managers.py /^ def check(*geoms):$/;" f function:PackTest.test_pack_configure_expand +check Lib/test/test_tkinter/test_geometry_managers.py /^ def check(anchor, geom):$/;" f function:PackTest.test_pack_configure_anchor +check Lib/test/test_tkinter/test_geometry_managers.py /^ def check(geom1, geom2, **kwargs):$/;" f function:PackTest.test_pack_configure_padx_ipadx_fill +check Lib/test/test_tkinter/test_geometry_managers.py /^ def check(geom1, geom2, **kwargs):$/;" f function:PackTest.test_pack_configure_pady_ipady_fill +check Lib/test/test_tkinter/test_geometry_managers.py /^ def check(side, geom1, geom2):$/;" f function:PackTest.test_pack_configure_side +check Lib/test/test_tuple.py /^ def check(n):$/;" f function:TupleTest.test_repr_large +check Lib/test/test_type_annotations.py /^ def check(self, code: str):$/;" m class:TestSetupAnnotations +check Lib/test/test_types.py /^ def check(arg, expected):$/;" f function:UnionTests.test_union_args +check Lib/test/test_utf8_mode.py /^ def check(utf8_opt, expected, **kw):$/;" f function:UTF8ModeTests.test_cmd_line +check Lib/test/test_uuid.py /^ def check(actual, expected):$/;" f function:BaseTestUUID.test_pickle_roundtrip +check Lib/test/test_uuid.py /^ def check(actual, expected):$/;" f function:BaseTestUUID.test_unpickle_previous_python_versions +check Lib/test/test_weakref.py /^ def check(proxy):$/;" f function:ReferencesTestCase.test_proxy_ref +check Lib/test/test_xml_etree.py /^ def check(elem):$/;" f function:BugsTest.test_bug_xmltoolkit21 +check Lib/test/test_xml_etree.py /^ def check(encoding, body=''):$/;" f function:ElementTreeTest.test_encoding +check Lib/test/test_xml_etree.py /^ def check(p, expected, namespaces=None):$/;" f function:ElementTreeTest.test_xpath_tokenizer +check Lib/test/test_zipimport.py /^ def check(mod):$/;" f function:UncompressedZipImportTestCase.testUncheckedHashBasedPyc +check Lib/test/test_zipimport.py /^ def check(mod):$/;" f function:UncompressedZipImportTestCase.test_checked_hash_based_change_pyc +check Lib/tkinter/tix.py /^ def check(self):$/;" m class:Form +check Modules/_lzmamodule.c /^ int check;$/;" m struct:__anon296 file: +check Parser/asdl.py /^def check(mod):$/;" f +check Tools/build/check_extension_modules.py /^ def check(self):$/;" m class:ModuleChecker +check Tools/c-analyzer/c_common/fsutil.py /^ def check():$/;" f function:_get_check +check Tools/i18n/makelocalealias.py /^def check(data):$/;" f +check Tools/patchcheck/reindent.py /^def check(file):$/;" f +check Tools/wasm/wasm_build.py /^ check=_check_emscripten,$/;" v +check Tools/wasm/wasm_build.py /^ check=_check_wasi,$/;" v +checkAppURI Lib/test/test_wsgiref.py /^ def checkAppURI(self,uri,**kw):$/;" m class:UtilityTests +checkAssertLogsPerLevel Lib/test/test_unittest/test_case.py /^ def checkAssertLogsPerLevel(self, level):$/;" f +checkAssertLogsPerLogger Lib/test/test_unittest/test_case.py /^ def checkAssertLogsPerLogger(self, logger):$/;" f +checkBooleanParam Lib/test/test_tkinter/widget_tests.py /^ def checkBooleanParam(self, widget, name):$/;" m class:AbstractWidgetTest +checkCharRefNumber Modules/expat/xmltok.c /^checkCharRefNumber(int result) {$/;" f file: +checkColorParam Lib/test/test_tkinter/widget_tests.py /^ def checkColorParam(self, widget, name, *, allow_empty=None, **kwargs):$/;" m class:AbstractWidgetTest +checkCommandParam Lib/test/test_tkinter/widget_tests.py /^ def checkCommandParam(self, widget, name):$/;" m class:AbstractWidgetTest +checkContent Lib/test/test_sax.py /^ def checkContent(self, stream, content):$/;" m class:PrepareInputSourceTest +checkCrossDefault Lib/test/test_wsgiref.py /^ def checkCrossDefault(self,key,value,**kw):$/;" m class:UtilityTests +checkCursorParam Lib/test/test_tkinter/widget_tests.py /^ def checkCursorParam(self, widget, name, **kwargs):$/;" m class:AbstractWidgetTest +checkDefault Lib/test/test_wsgiref.py /^ def checkDefault(self, key, value, alt=None):$/;" m class:UtilityTests +checkDefaults PC/launcher2.c /^checkDefaults(SearchInfo *search)$/;" f +checkDocstring Lib/test/test_clinic.py /^ def checkDocstring(self, fn, expected):$/;" m class:ClinicParserTest +checkEnumParam Lib/test/test_tkinter/widget_tests.py /^ def checkEnumParam(self, widget, name, *values, errmsg=None, **kwargs):$/;" m class:AbstractWidgetTest +checkEnvironment Mac/BuildScript/build-installer.py /^def checkEnvironment():$/;" f +checkError Lib/test/test_regrtest.py /^ def checkError(self, args, msg):$/;" m class:ParseArgsTestCase +checkFDs Lib/test/test_socket.py /^ def checkFDs(self, fds):$/;" m class:SCMRightsTest +checkFW Lib/test/test_wsgiref.py /^ def checkFW(self,text,size,match):$/;" m class:UtilityTests +checkFlags Lib/test/test_socket.py /^ def checkFlags(self, flags, eor=None, checkset=0, checkunset=0, ignore=0):$/;" m class:SendrecvmsgBase +checkFloatParam Lib/test/test_tkinter/widget_tests.py /^ def checkFloatParam(self, widget, name, *values, conv=float, **kwargs):$/;" m class:AbstractWidgetTest +checkHopLimit Lib/test/test_socket.py /^ def checkHopLimit(self, ancbufsize, maxhop=255, ignoreflags=0):$/;" m class:RFC3542AncillaryTest +checkHopLimitTruncatedHeader Lib/test/test_socket.py /^ def checkHopLimitTruncatedHeader(self, ancbufsize, ignoreflags=0):$/;" m class:RFC3542AncillaryTest +checkImageParam Lib/test/test_tkinter/widget_tests.py /^ def checkImageParam(self, widget, name):$/;" m class:AbstractWidgetTest +checkImageParam Lib/test/test_ttk/test_widgets.py /^ def checkImageParam(self, widget, name):$/;" m class:AbstractLabelTest +checkIntegerParam Lib/test/test_tkinter/widget_tests.py /^ def checkIntegerParam(self, widget, name, *values, **kwargs):$/;" m class:AbstractWidgetTest +checkInterruptedRecv Lib/test/test_socket.py /^ def checkInterruptedRecv(self, func, *args, **kwargs):$/;" m class:InterruptedRecvTimeoutTest +checkInterruptedSend Lib/test/test_socket.py /^ def checkInterruptedSend(self, func, *args, **kwargs):$/;" m class:InterruptedSendTimeoutTest +checkInvalidParam Lib/test/test_tkinter/widget_tests.py /^ def checkInvalidParam(self, widget, name, value, errmsg=None):$/;" m class:AbstractWidgetTest +checkJoin Lib/test/test_urlparse.py /^ def checkJoin(self, base, relurl, expected):$/;" m class:UrlParseTestCase +checkModule Lib/test/test_pyclbr.py /^ def checkModule(self, moduleName, module=None, ignore=()):$/;" m class:PyclbrTest +checkNonblock Lib/test/test_socket.py /^ def checkNonblock(self, s, nonblock=True, timeout=0.0):$/;" m class:NonblockConstantTest +checkParam Lib/test/test_tkinter/widget_tests.py /^ def checkParam(self, widget, name, value, *, expected=_sentinel,$/;" m class:AbstractWidgetTest +checkParams Lib/test/test_tkinter/widget_tests.py /^ def checkParams(self, widget, name, *values, **kwargs):$/;" m class:AbstractWidgetTest +checkPatternError Lib/test/test_re.py /^ def checkPatternError(self, pattern, errmsg, pos=None):$/;" m class:ReTests +checkPiTarget Modules/expat/xmltok_impl.c /^PREFIX(checkPiTarget)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +checkPixelsParam Lib/test/test_tkinter/widget_tests.py /^ def checkPixelsParam(self, widget, name, *values,$/;" m class:AbstractWidgetTest +checkRecvmsgAddress Lib/test/test_socket.py /^ def checkRecvmsgAddress(self, addr1, addr2):$/;" m class:SendrecvmsgBase +checkRecvmsgAddress Lib/test/test_socket.py /^ def checkRecvmsgAddress(self, addr1, addr2):$/;" m class:SendrecvmsgConnectedBase +checkRecvmsgAddress Lib/test/test_socket.py /^ def checkRecvmsgAddress(self, addr1, addr2):$/;" m class:SendrecvmsgUDP6TestBase +checkRecvmsgAddress Lib/test/test_socket.py /^ def checkRecvmsgAddress(self, addr1, addr2):$/;" m class:SendrecvmsgUDPLITE6TestBase +checkRecvmsgFDs Lib/test/test_socket.py /^ def checkRecvmsgFDs(self, numfds, result, maxcmsgs=1, ignoreflags=0):$/;" m class:SCMRightsTest +checkReliefParam Lib/test/test_tkinter/widget_tests.py /^ def checkReliefParam(self, widget, name):$/;" m class:AbstractWidgetTest +checkRenameNodeSharedConstraints Lib/test/test_minidom.py /^ def checkRenameNodeSharedConstraints(self, doc, node):$/;" m class:MinidomTest +checkReqURI Lib/test/test_wsgiref.py /^ def checkReqURI(self,uri,query=1,**kw):$/;" m class:UtilityTests +checkRoundtrips Lib/test/test_urlparse.py /^ def checkRoundtrips(self, url, parsed, split):$/;" m class:UrlParseTestCase +checkSameDec Lib/test/test_decimal.py /^ def checkSameDec(operation, useOther=False):$/;" f function:PyWhitebox.test_py_immutability_operations +checkShebang PC/launcher2.c /^checkShebang(SearchInfo *search)$/;" f +checkShift Lib/test/test_wsgiref.py /^ def checkShift(self,sn_in,pi_in,part,sn_out,pi_out):$/;" m class:UtilityTests +checkTemplateError Lib/test/test_re.py /^ def checkTemplateError(self, pattern, repl, string, errmsg, pos=None):$/;" m class:ReTests +checkTrafficClassAndHopLimit Lib/test/test_socket.py /^ def checkTrafficClassAndHopLimit(self, ancbufsize, maxhop=255,$/;" m class:RFC3542AncillaryTest +checkTruncatedArray Lib/test/test_socket.py /^ def checkTruncatedArray(self, ancbuf, maxdata, mindata=0):$/;" m class:SCMRightsTest +checkTruncatedHeader Lib/test/test_socket.py /^ def checkTruncatedHeader(self, result, ignoreflags=0):$/;" m class:SCMRightsTest +checkTruncatedSecondHeader Lib/test/test_socket.py /^ def checkTruncatedSecondHeader(self, ancbufsize, ignoreflags=0):$/;" m class:RFC3542AncillaryTest +checkVariableParam Lib/test/test_tkinter/widget_tests.py /^ def checkVariableParam(self, widget, name, var):$/;" m class:AbstractWidgetTest +checkWholeText Lib/test/test_minidom.py /^ def checkWholeText(self, node, s):$/;" m class:MinidomTest +check_1 Lib/test/test_unittest/test_loader.py /^ def check_1(self): pass$/;" m class:TestObsoleteFunctions.MyTestCase +check_2 Lib/test/test_unittest/test_loader.py /^ def check_2(self): pass$/;" m class:TestObsoleteFunctions.MyTestCase +check_ShellExecute Modules/posixmodule.c /^check_ShellExecute(void)$/;" f file: +check__all__ Lib/test/support/__init__.py /^def check__all__(test_case, module, name_of_module=None, extra=(),$/;" f +check_abbrev Lib/test/test_optparse.py /^ def check_abbrev(self, option, opt, value, parser):$/;" m class:TestCallbackCheckAbbrev +check_against Lib/test/test_ttk_textonly.py /^ def check_against(fmt_opts, result):$/;" f function:InternalFunctionsTest.test_format_optdict +check_against_PyObject_RichCompareBool Lib/test/test_sort.py /^def check_against_PyObject_RichCompareBool(self, L):$/;" f +check_all Lib/test/test___all__.py /^ def check_all(self, modname):$/;" m class:AllTest +check_all Tools/c-analyzer/c_analyzer/__init__.py /^def check_all(analysis, checks, *, failfast=False):$/;" f +check_all_configs Lib/test/test_embed.py /^ def check_all_configs(self, testname, expected_config=None,$/;" m class:InitConfigTests +check_anext_returning_iterator Lib/test/test_asyncgen.py /^ async def check_anext_returning_iterator(self, aiter_class):$/;" m class:AsyncGenAsyncioTest +check_ann_expr Python/compile.c /^check_ann_expr(struct compiler *c, expr_ty e)$/;" f file: +check_ann_subscr Python/compile.c /^check_ann_subscr(struct compiler *c, expr_ty e)$/;" f file: +check_annotation Python/compile.c /^check_annotation(struct compiler *c, stmt_ty s)$/;" f file: +check_api_version Objects/moduleobject.c /^check_api_version(const char *name, int module_api_version)$/;" f file: +check_args_iterable Python/ceval.c /^check_args_iterable(PyThreadState *tstate, PyObject *func, PyObject *args)$/;" f file: +check_args_to_onerror Lib/test/test_shutil.py /^ def check_args_to_onerror(self, func, arg, exc):$/;" m class:TestRmTree +check_args_to_onexc Lib/test/test_shutil.py /^ def check_args_to_onexc(self, func, arg, exc):$/;" m class:TestRmTree +check_array Lib/test/pickletester.py /^ def check_array(arr):$/;" f function:AbstractPickleTests.test_buffers_numpy +check_article_resp Lib/test/test_nntplib.py /^ def check_article_resp(self, resp, article, art_num=None):$/;" m class:NetworkedNNTPTestsMixin +check_ast_module Lib/test/test_ast.py /^ def check_ast_module(self):$/;" m class:ModuleStateTests +check_ast_roundtrip Lib/test/test_unparse.py /^ def check_ast_roundtrip(self, code1, **kwargs):$/;" m class:ASTTestCase +check_async_iterator_anext Lib/test/test_asyncgen.py /^ def check_async_iterator_anext(self, ait_class):$/;" m class:AsyncGenAsyncioTest +check_attributes_with_type Lib/test/test_memoryview.py /^ def check_attributes_with_type(self, tp):$/;" m class:AbstractMemoryTests +check_balanced Lib/test/test_monitoring.py /^ def check_balanced(self, func, recorders):$/;" m class:CheckEvents +check_basic Lib/test/test_import/__init__.py /^ def check_basic(self, loaded, expected_init_count):$/;" m class:SinglephaseInitTests +check_basic Lib/test/test_importlib/frozen/test_finder.py /^ def check_basic(self, spec, name, ispkg=False):$/;" m class:FindSpecTests +check_basic_auth Lib/test/test_urllib2.py /^ def check_basic_auth(self, headers, realm):$/;" m class:HandlerTests +check_basic_callback Lib/test/test_weakref.py /^ def check_basic_callback(self, factory):$/;" m class:ReferencesTestCase +check_basic_ref Lib/test/test_weakref.py /^ def check_basic_ref(self, factory):$/;" m class:ReferencesTestCase +check_basicsize_includes_size_and_offsets Objects/typeobject.c /^check_basicsize_includes_size_and_offsets(PyTypeObject* type)$/;" f file: +check_big_compress_buffer Lib/test/test_zlib.py /^ def check_big_compress_buffer(self, size, compress_func):$/;" m class:BaseCompressTestCase +check_big_decompress_buffer Lib/test/test_zlib.py /^ def check_big_decompress_buffer(self, size, decompress_func):$/;" m class:BaseCompressTestCase +check_bit_length Modules/_testinternalcapi.c /^check_bit_length(unsigned long x, int expected)$/;" f file: +check_bitop_identities_1 Lib/test/test_long.py /^ def check_bitop_identities_1(self, x):$/;" m class:LongTest +check_bitop_identities_2 Lib/test/test_long.py /^ def check_bitop_identities_2(self, x, y):$/;" m class:LongTest +check_bitop_identities_3 Lib/test/test_long.py /^ def check_bitop_identities_3(self, x, y, z):$/;" m class:LongTest +check_blake2 Lib/test/test_hashlib.py /^ def check_blake2(self, constructor, salt_size, person_size, key_size,$/;" m class:HashLibTestCase +check_blob Modules/_sqlite/blob.c /^check_blob(pysqlite_Blob *self)$/;" f file: +check_blocksize_name Lib/test/test_hashlib.py /^ def check_blocksize_name(self, name, block_size=0, digest_size=0,$/;" m class:HashLibTestCase +check_bom Parser/tokenizer.c /^check_bom(int get_char(struct tok_state *),$/;" f file: +check_both Lib/test/test_lib2to3/test_fixers.py /^ def check_both(self, b, a):$/;" m class:Test_import +check_both_ways Lib/test/test_type_comments.py /^ def check_both_ways(source):$/;" f function:TypeCommentTests.test_inappropriate_type_comments +check_build Lib/test/test_cppext/__init__.py /^ def check_build(self, std_cpp03, extension_name):$/;" m class:TestCPPExt +check_builtin Lib/optparse.py /^def check_builtin(option, opt, value):$/;" f +check_bytes_find Modules/_testinternalcapi.c /^check_bytes_find(const char *haystack0, const char *needle0,$/;" f file: +check_bytes_find_large Modules/_testinternalcapi.c /^check_bytes_find_large(Py_ssize_t len_haystack, Py_ssize_t len_needle,$/;" f file: +check_bytes_warnings Lib/test/test_bytes.py /^ def check_bytes_warnings(func):$/;" f +check_cache Lib/urllib/request.py /^ def check_cache(self):$/;" m class:CacheFTPHandler +check_call Lib/subprocess.py /^def check_call(*popenargs, **kwargs):$/;" f +check_caller Python/compile.c /^check_caller(struct compiler *c, expr_ty e)$/;" f file: +check_cfg Python/flowgraph.c /^check_cfg(cfg_builder *g) {$/;" f file: +check_choice Lib/optparse.py /^def check_choice(option, opt, value):$/;" f +check_chown Lib/test/test_shutil.py /^ def check_chown(path, uid=None, gid=None):$/;" f function:TestMisc.test_chown +check_circular Lib/json/__init__.py /^ check_circular=True,$/;" v +check_class Objects/abstract.c /^check_class(PyObject *cls, const char *error)$/;" f file: +check_clone_attribute Lib/test/test_minidom.py /^ def check_clone_attribute(self, deep, testName):$/;" m class:MinidomTest +check_clone_node_entity Lib/test/test_minidom.py /^ def check_clone_node_entity(self, clone_document):$/;" m class:MinidomTest +check_clone_pi Lib/test/test_minidom.py /^ def check_clone_pi(self, deep, testName):$/;" m class:MinidomTest +check_close_std_fds Lib/test/test_subprocess.py /^ def check_close_std_fds(self, fds):$/;" m class:POSIXProcessTestCase +check_closed Modules/_io/bytesio.c /^check_closed(bytesio *self)$/;" f file: +check_code_execution Lib/test/test_runpy.py /^ def check_code_execution(self, create_namespace, expected_namespace):$/;" m class:CodeExecutionMixin +check_code_size Lib/test/test_sys.py /^ def check_code_size(a, expected_size):$/;" f function:SizeofTest.test_objecttypes +check_coding_spec Parser/tokenizer.c /^check_coding_spec(const char* line, Py_ssize_t size, struct tok_state *tok,$/;" f file: +check_coerce_to Lib/test/test_statistics.py /^ def check_coerce_to(self, A, B):$/;" m class:CoerceTest +check_common Lib/test/test_import/__init__.py /^ def check_common(self, loaded):$/;" m class:SinglephaseInitTests +check_common_name Lib/test/test_ssl.py /^ def check_common_name(self, stats, name):$/;" m class:ThreadedTests +check_compare Python/compile.c /^check_compare(struct compiler *c, expr_ty e)$/;" f file: +check_compatible Lib/test/test_import/__init__.py /^ def check_compatible(setting, override):$/;" f function:SubinterpImportTests.test_singlephase_check_with_setting_and_override +check_compatible_fresh Lib/test/test_import/__init__.py /^ def check_compatible_fresh(self, name, *, strict=False, isolated=False):$/;" m class:SubinterpImportTests +check_compatible_here Lib/test/test_import/__init__.py /^ def check_compatible_here(self, name, filename=None, *,$/;" m class:SubinterpImportTests +check_complexity Python/ast_opt.c /^check_complexity(PyObject *obj, Py_ssize_t limit)$/;" f file: +check_config Lib/test/test_embed.py /^ def check_config(self, configs, expected):$/;" m class:InitConfigTests +check_config_h Tools/c-analyzer/distutils/cygwinccompiler.py /^def check_config_h():$/;" f +check_constant Lib/test/test_compile.py /^ def check_constant(self, func, expected):$/;" m class:TestSpecifics +check_constructor_error_conditions Lib/test/test_nntplib.py /^ def check_constructor_error_conditions($/;" m class:MockSocketTests +check_content Lib/test/test_plistlib.py /^ def check_content(self):$/;" m class:TestPlutil +check_content_type Lib/wsgiref/validate.py /^def check_content_type(status, headers):$/;" f +check_context Lib/test/_test_multiprocessing.py /^ def check_context(self, ctx):$/;" m class:TestStartMethod +check_context Lib/test/test_tarfile.py /^ def check_context(self, tar, filter):$/;" m class:TestExtractionFilters +check_copied Lib/test/test_import/__init__.py /^ def check_copied(self, loaded, base):$/;" m class:SinglephaseInitTests +check_copy Lib/test/pickletester.py /^ def check_copy(x, y):$/;" f function:AbstractPickleTests.test_buffers_numpy +check_create_from_data Lib/test/test_tkinter/test_images.py /^ def check_create_from_data(self, ext):$/;" m class:PhotoImageTest +check_create_from_file Lib/test/test_tkinter/test_images.py /^ def check_create_from_file(self, ext):$/;" m class:PhotoImageTest +check_cursor Modules/_sqlite/cursor.c /^static int check_cursor(pysqlite_Cursor* cur)$/;" f file: +check_cursor_locked Modules/_sqlite/cursor.c /^check_cursor_locked(pysqlite_Cursor *cur)$/;" f file: +check_daemon_threads_shutdown_deadlock Lib/test/test_io.py /^ def check_daemon_threads_shutdown_deadlock(self, stream_name):$/;" m class:CMiscIOTest +check_dash_m_failure Lib/test/test_cmd_line_script.py /^ def check_dash_m_failure(self, *args):$/;" m class:CmdLineTest +check_data Lib/test/test_ftplib.py /^ def check_data(self, received, expected):$/;" m class:TestFTPClass +check_data_descriptor Lib/test/test_unittest/testmock/testhelpers.py /^ def check_data_descriptor(mock_attr):$/;" f function:SpecSignatureTest.test_autospec_data_descriptor +check_date_args Modules/_datetimemodule.c /^check_date_args(int year, int month, int day)$/;" f file: +check_dbmobject_open Modules/_dbmmodule.c 65;" d file: +check_decode Lib/test/test_codecs.py /^ def check_decode(self, cp, tests):$/;" m class:CodePageTest +check_decode_strings Lib/test/test_codecs.py /^ def check_decode_strings(self, errors):$/;" m class:LocaleCodecTest +check_decode_type_errors Lib/test/test_base64.py /^ def check_decode_type_errors(self, f):$/;" m class:BaseXYTestCase +check_decoded Modules/_io/textio.c /^check_decoded(PyObject *decoded)$/;" f file: +check_deferred_error Lib/test/test_unittest/test_loader.py /^ def check_deferred_error(self, loader, suite):$/;" m class:Test_TestLoader +check_delta_day_range Modules/_datetimemodule.c /^check_delta_day_range(int days)$/;" f file: +check_different_constants Lib/test/test_compile.py /^ def check_different_constants(const1, const2):$/;" f function:TestSpecifics.test_dont_merge_constants +check_direct Lib/test/test_import/__init__.py /^ def check_direct(self, loaded):$/;" m class:SinglephaseInitTests +check_disallow_instantiation Lib/test/support/__init__.py /^def check_disallow_instantiation(testcase, tp, *args, **kwds):$/;" f +check_div Lib/test/test_complex.py /^ def check_div(self, x, y):$/;" m class:ComplexTest +check_division Lib/test/test_long.py /^ def check_division(self, x, y):$/;" m class:LongTest +check_dump Tools/build/stable_abi.py /^def check_dump(manifest, filename):$/;" f +check_dump_traceback Lib/test/test_faulthandler.py /^ def check_dump_traceback(self, *, filename=None, fd=None):$/;" m class:FaultHandlerTests +check_dump_traceback_later Lib/test/test_faulthandler.py /^ def check_dump_traceback_later(self, repeat=False, cancel=False, loops=1,$/;" m class:FaultHandlerTests +check_dump_traceback_threads Lib/test/test_faulthandler.py /^ def check_dump_traceback_threads(self, filename):$/;" m class:FaultHandlerTests +check_dumps_loads_oob_buffers Lib/test/pickletester.py /^ def check_dumps_loads_oob_buffers(self, dumps, loads):$/;" m class:AbstractPickleModuleTests +check_duplicates Objects/typeobject.c /^check_duplicates(PyObject *tuple)$/;" f file: +check_edit_cost Modules/_testinternalcapi.c /^check_edit_cost(const char *a, const char *b, Py_ssize_t expected)$/;" f file: +check_element Lib/test/test_xml_etree.py /^ def check_element(element):$/;" f function:ElementTreeTest.test_interface +check_eloop Lib/pathlib.py /^ def check_eloop(e):$/;" f function:Path.resolve +check_en_US_iso88591 Lib/test/test_re.py /^ def check_en_US_iso88591(self):$/;" m class:ReTests +check_en_US_utf8 Lib/test/test_re.py /^ def check_en_US_utf8(self):$/;" m class:ReTests +check_enabled Include/internal/pycore_runtime.h /^ int check_enabled;$/;" m struct:_gilstate_runtime_state +check_enableusersite Lib/site.py /^def check_enableusersite():$/;" f +check_encode Lib/test/test_codecs.py /^ def check_encode(self, cp, tests):$/;" m class:CodePageTest +check_encode_strings Lib/test/test_codecs.py /^ def check_encode_strings(self, errors):$/;" m class:LocaleCodecTest +check_encode_type_errors Lib/test/test_base64.py /^ def check_encode_type_errors(self, f):$/;" m class:BaseXYTestCase +check_encoding Lib/test/test_string_literals.py /^ def check_encoding(self, encoding, extra=""):$/;" m class:TestLiterals +check_enough_semaphores Lib/test/_test_multiprocessing.py /^def check_enough_semaphores():$/;" f +check_entry Lib/test/test_os.py /^ def check_entry(self, entry, name, is_dir, is_file, is_symlink):$/;" m class:TestScandir +check_env_var_invalid Lib/test/test_tracemalloc.py /^ def check_env_var_invalid(self, nframe):$/;" m class:TestCommandLine +check_environ Lib/wsgiref/validate.py /^def check_environ(environ):$/;" f +check_equal Lib/test/test_bdb.py /^ def check_equal(self, expected, result, msg):$/;" m class:Tracer +check_equal_hash Lib/test/test_numeric_tower.py /^ def check_equal_hash(self, x, y):$/;" m class:HashTest +check_error Lib/test/test_faulthandler.py /^ def check_error(self, code, lineno, fatal_error, *,$/;" m class:FaultHandlerTests +check_error Lib/test/test_ntpath.py /^ def check_error(exc, paths):$/;" f function:TestNtpath.test_commonpath +check_error Lib/test/test_posixpath.py /^ def check_error(exc, paths):$/;" f function:PosixPathTest.test_commonpath +check_errors Lib/wsgiref/validate.py /^def check_errors(wsgi_errors):$/;" f +check_escape Lib/test/test_glob.py /^ def check_escape(self, arg, expected):$/;" m class:GlobTests +check_event_count Lib/test/test_monitoring.py /^ def check_event_count(self, func, event, expected):$/;" m class:MonitoringCountTest +check_events Lib/test/test_monitoring.py /^ def check_events(self, func, expected, tool=TEST_TOOL, recorders=()):$/;" m class:TestLocalEvents +check_events Lib/test/test_monitoring.py /^ def check_events(self, func, expected, tool=TEST_TOOL, recorders=(ExceptionRecorder,)):$/;" m class:CheckEvents +check_events Lib/test/test_monitoring.py /^ def check_events(self, func, expected=None):$/;" m class:MonitoringEventsBase +check_events Lib/test/test_monitoring.py /^ def check_events(self, func, must_include, tool=TEST_TOOL, recorders=(ExceptionRecorder,)):$/;" m class:TestInstallIncrementallly +check_events Lib/test/test_sys_setprofile.py /^ def check_events(self, callable, expected):$/;" m class:TestCaseBase +check_exact_equal Lib/test/test_statistics.py /^ def check_exact_equal(self, x, y):$/;" m class:ConvertTest +check_exc_info Lib/wsgiref/validate.py /^def check_exc_info(exc_info):$/;" f +check_except_star_type_valid Python/ceval.c /^check_except_star_type_valid(PyThreadState *tstate, PyObject* right)$/;" f file: +check_except_type_valid Python/ceval.c /^check_except_type_valid(PyThreadState *tstate, PyObject* right)$/;" f file: +check_exceptionobjectargs Lib/test/test_codeccallbacks.py /^ def check_exceptionobjectargs(self, exctype, args, msg):$/;" m class:CodecCallbackTest +check_executed_tests Lib/test/test_regrtest.py /^ def check_executed_tests(self, output, tests, skipped=(), failed=(),$/;" m class:BaseTestCase +check_exit_message Lib/test/test_sys.py /^ def check_exit_message(code, expected, **env_vars):$/;" f function:SysModuleTest.test_exit +check_expat224_utf8_bug Lib/test/test_xml_etree.py /^ def check_expat224_utf8_bug(self, text):$/;" m class:BugsTest +check_expect_max_size Lib/test/test_bdb.py /^ def check_expect_max_size(self, size):$/;" m class:Tracer +check_exports Modules/_io/bytesio.c /^check_exports(bytesio *self)$/;" f file: +check_extensions Lib/test/test_mimetypes.py /^ def check_extensions():$/;" f function:MimeTypesTestCase.test_preferred_extension +check_extensions Tools/build/smelly.py /^def check_extensions():$/;" f +check_families Tools/cases_generator/generate_cases.py /^ def check_families(self) -> None:$/;" m class:Analyzer +check_fatal_error Lib/test/test_capi/test_exceptions.py /^ def check_fatal_error(self, code, expected, not_expected=()):$/;" m class:Test_FatalError +check_fatal_error Lib/test/test_faulthandler.py /^ def check_fatal_error(self, code, line_number, name_regex, func=None, **kw):$/;" m class:FaultHandlerTests +check_fatal_error_func Lib/test/test_faulthandler.py /^ def check_fatal_error_func(self, release_gil):$/;" m class:FaultHandlerTests +check_fd_deltas Lib/test/libregrtest/refleak.py /^ def check_fd_deltas(deltas):$/;" f function:dash_R +check_file Lib/test/audiotests.py /^ def check_file(self, testfile, nframes, frames):$/;" m class:AudioWriteTests +check_file Lib/test/test_optparse.py /^ def check_file(option, opt, value):$/;" m class:TestExtendAddTypes.MyOption +check_file Lib/test/test_zipfile/test_core.py /^ def check_file(self, filename, content):$/;" m class:ExtractTests +check_file_attributes Lib/test/test_os.py /^ def check_file_attributes(self, result):$/;" m class:StatAttributeTests +check_file_digest Lib/test/test_hashlib.py /^ def check_file_digest(self, name, data, hexdigest):$/;" m class:HashLibTestCase +check_file_refactoring Lib/test/test_lib2to3/test_refactor.py /^ def check_file_refactoring(self, test_file, fixers=_2TO3_FIXERS,$/;" m class:TestRefactoringTool +check_files_present Lib/test/test_tarfile.py /^ def check_files_present(self, directory):$/;" m class:NoneInfoExtractTests +check_fillchar Modules/_decimal/tests/formathelper.py /^def check_fillchar(i):$/;" f +check_flags Lib/test/test_re.py /^ def check_flags(self, pattern, flags, expected):$/;" m class:PatternReprTests +check_float_conversion Lib/test/test_long.py /^ def check_float_conversion(self, n):$/;" m class:LongTest +check_float_rounding Lib/test/test_time.py /^ def check_float_rounding(self, pytime_converter, expected_func,$/;" m class:CPyTimeTestCase +check_flush_and_read Lib/test/test_io.py /^ def check_flush_and_read(self, read_func):$/;" m class:BufferedRandomTest +check_flush_error_on_close Lib/test/test_io.py /^ def check_flush_error_on_close(self, *args, **kwargs):$/;" m class:IOTest +check_for_loop Lib/test/test_iter.py /^ def check_for_loop(self, expr, seq, pickle=True):$/;" m class:TestCase +check_for_type_error Lib/test/test_statistics.py /^ def check_for_type_error(self, *args):$/;" m class:UnivariateCommonMixin +check_for_whole_start_tag Lib/html/parser.py /^ def check_for_whole_start_tag(self, i):$/;" m class:HTMLParser +check_force_ascii Python/fileutils.c /^check_force_ascii(void)$/;" f file: +check_forkserver_death Lib/test/_test_multiprocessing.py /^ def check_forkserver_death(self, signum):$/;" m class:_TestProcess +check_format Lib/test/test_capi/test_unicode.py /^ def check_format(expected, format, *args):$/;" f function:CAPITest.test_from_format +check_format_1 Lib/test/test_long.py /^ def check_format_1(self, x):$/;" m class:LongTest +check_found Lib/test/test_importlib/import_/test_path.py /^ check_found = None$/;" v class:FinderTests +check_found Lib/test/test_importlib/import_/test_path.py /^ def check_found(self, found, importer):$/;" m class:FindModuleTests +check_found Lib/test/test_importlib/import_/test_path.py /^ def check_found(self, found, importer):$/;" m class:FindSpecTests +check_frame_opcodes Lib/test/pickletester.py /^ def check_frame_opcodes(self, pickled):$/;" m class:AbstractPickleTests +check_free_after_iterating Lib/test/support/__init__.py /^def check_free_after_iterating(test, iter, cls, args=()):$/;" f +check_fresh Lib/test/test_import/__init__.py /^ def check_fresh(self, loaded):$/;" m class:SinglephaseInitTests +check_fsencoding Lib/test/test_sys.py /^ def check_fsencoding(self, fs_encoding, expected=None):$/;" m class:SysModuleTest +check_future_exception_never_retrieved Lib/test/test_asyncio/test_futures.py /^ def check_future_exception_never_retrieved(self, debug, m_log):$/;" m class:BaseFutureTests +check_gc_during_creation Lib/test/test_weakref.py /^ def check_gc_during_creation(self, makeref):$/;" m class:ReferencesTestCase +check_gdbmobject_open Modules/_gdbmmodule.c 59;" d file: +check_get_current Lib/test/test_ttk/test_widgets.py /^ def check_get_current(getval, currval):$/;" f function:ComboboxTest.test_configure_values +check_getitem_with_type Lib/test/test_memoryview.py /^ def check_getitem_with_type(self, tp):$/;" m class:AbstractMemoryTests +check_global_config Lib/test/test_embed.py /^ def check_global_config(self, configs):$/;" m class:InitConfigTests +check_globals Tools/c-analyzer/cpython/_analyzer.py /^def check_globals(analysis):$/;" f +check_handler Lib/test/test_logging.py /^ def check_handler(self, name, cls):$/;" m class:ConfigDictTest +check_hardlinks Lib/test/test_compileall.py /^ def check_hardlinks(self, script, docstring=False, assertion=False):$/;" m class:HardlinkDedupTestsBase +check_hash_pycs_mode Include/cpython/initconfig.h /^ wchar_t *check_hash_pycs_mode;$/;" m struct:PyConfig +check_headers Lib/wsgiref/validate.py /^def check_headers(headers):$/;" f +check_hello Lib/test/test_wsgiref.py /^ def check_hello(self, out, has_length=True):$/;" m class:IntegrationTests +check_hostname Modules/_ssl.c /^ int check_hostname;$/;" m struct:__anon579 file: +check_hresult Modules/_ctypes/callproc.c /^check_hresult(PyObject *self, PyObject *args)$/;" f file: +check_htmlcalendar_encoding Lib/test/test_calendar.py /^ def check_htmlcalendar_encoding(self, req, res):$/;" m class:OutputTestCase +check_impl_detail Lib/test/support/__init__.py /^def check_impl_detail(**guards):$/;" f +check_import_document Lib/test/test_minidom.py /^ def check_import_document(self, deep, testName):$/;" m class:MinidomTest +check_imports Tools/ssl/multissltests.py /^ def check_imports(self):$/;" m class:AbstractBuilder +check_in_thread Lib/test/test_asyncio/test_base_events.py /^ def check_in_thread(loop, event, debug, create_loop, fut):$/;" f function:BaseEventLoopTests.test_check_thread +check_incompatible Lib/test/test_import/__init__.py /^ def check_incompatible(setting, override):$/;" f function:SubinterpImportTests.test_singlephase_check_with_setting_and_override +check_incompatible_fresh Lib/test/test_import/__init__.py /^ def check_incompatible_fresh(self, name, *, isolated=False):$/;" m class:SubinterpImportTests +check_incompatible_here Lib/test/test_import/__init__.py /^ def check_incompatible_here(self, name, filename=None, *, isolated=False):$/;" m class:SubinterpImportTests +check_index Python/compile.c /^check_index(struct compiler *c, expr_ty e, expr_ty s)$/;" f file: +check_indices Lib/test/test_slice.py /^ def check_indices(self, slice, length):$/;" m class:SliceTest +check_indirect Lib/test/test_import/__init__.py /^ def check_indirect(self, loaded, orig):$/;" m class:SinglephaseInitTests +check_infinity Lib/test/test_statistics.py /^ def check_infinity(self, x, inf):$/;" m class:SumSpecialValues +check_init_compat_config Programs/_testembed.c /^static int check_init_compat_config(int preinit)$/;" f file: +check_init_parse_argv Programs/_testembed.c /^static int check_init_parse_argv(int parse_argv)$/;" f file: +check_init_python_config Programs/_testembed.c /^static int check_init_python_config(int preinit)$/;" f file: +check_input Lib/test/test_cmd_line.py /^ def check_input(self, code, expected):$/;" m class:CmdLineTest +check_input Lib/wsgiref/validate.py /^def check_input(wsgi_input):$/;" f +check_input_tty Lib/test/test_builtin.py /^ def check_input_tty(self, prompt, terminal_input, stdio_encoding=None):$/;" m class:PtyTests +check_instances Lib/test/test_lib2to3/test_refactor.py /^ def check_instances(self, instances, classes):$/;" m class:TestRefactoringTool +check_int_rounding Lib/test/test_time.py /^ def check_int_rounding(self, pytime_converter, expected_func,$/;" m class:CPyTimeTestCase +check_interp Python/_warnings.c /^check_interp(PyInterpreterState *interp)$/;" f file: +check_interrupt_main_noerror Lib/test/test_threading.py /^ def check_interrupt_main_noerror(self, signum):$/;" m class:InterruptMainTests +check_interrupt_main_with_signal_handler Lib/test/test_threading.py /^ def check_interrupt_main_with_signal_handler(self, signum):$/;" m class:InterruptMainTests +check_interrupted_read_retry Lib/test/test_io.py /^ def check_interrupted_read_retry(self, decode, **fdopen_kwargs):$/;" m class:SignalsTest +check_interrupted_write Lib/test/test_io.py /^ def check_interrupted_write(self, item, bytes, **fdopen_kwargs):$/;" m class:SignalsTest +check_interrupted_write_retry Lib/test/test_io.py /^ def check_interrupted_write_retry(self, item, **fdopen_kwargs):$/;" m class:SignalsTest +check_intersection Tools/peg_generator/pegen/validator.py /^ def check_intersection(self, first_alt: Alt, second_alt: Alt) -> None:$/;" m class:SubRuleValidator +check_invalid Lib/test/test_except_star.py /^ def check_invalid(self, src):$/;" m class:TestBreakContinueReturnInExceptStarBlock +check_invalid Lib/test/test_unparse.py /^ def check_invalid(self, node, raises=ValueError):$/;" m class:ASTTestCase +check_invariant Lib/test/_test_multiprocessing.py /^ def check_invariant(self, cond):$/;" m class:_TestCondition +check_invariant Lib/test/test_heapq.py /^ def check_invariant(self, heap):$/;" m class:TestHeap +check_io_encoding Lib/test/test_utf8_mode.py /^ def check_io_encoding(self, module):$/;" m class:UTF8ModeTests +check_is_arg Python/compile.c /^check_is_arg(expr_ty e)$/;" f file: +check_itemconfigure Lib/test/test_tkinter/test_widgets.py /^ def check_itemconfigure(self, name, value):$/;" m class:ListboxTest +check_items_config Lib/test/test_configparser.py /^ def check_items_config(self, expected):$/;" f +check_iter Lib/test/test_xml_etree.py /^ def check_iter(it):$/;" f function:ElementTreeTest.test_interface +check_iter_pickle Lib/test/test_builtin.py /^ def check_iter_pickle(self, it, seq, proto):$/;" m class:BuiltinTest +check_iterandlist Lib/test/mapping_tests.py /^ def check_iterandlist(iter, lst, ref):$/;" f function:BasicTestMappingProtocol.test_read +check_iterator Lib/test/test_iter.py /^ def check_iterator(self, it, seq, pickle=True):$/;" m class:TestCase +check_iterator Lib/wsgiref/validate.py /^def check_iterator(iterator):$/;" f +check_iters Lib/test/test_weakref.py /^ def check_iters(self, dict):$/;" m class:MappingTestCase +check_join Lib/test/test_importlib/test_windows.py /^ def check_join(self, expected, *inputs):$/;" m class:WindowsBootstrapPathTests +check_jump_targets Lib/test/test_peepholer.py /^ def check_jump_targets(self, code):$/;" m class:TestTranforms +check_keys_reuse Lib/test/test_json/test_decode.py /^ def check_keys_reuse(self, source, loads):$/;" m class:TestDecode +check_keyword Objects/enumobject.c /^static int check_keyword(PyObject *kwnames, int index,$/;" f file: +check_killed Lib/test/test_asyncio/test_events.py /^ def check_killed(self, returncode):$/;" m class:SubprocessTestsMixin +check_leak Lib/test/test_regrtest.py /^ def check_leak(self, code, what):$/;" m class:ArgsTestCase +check_len_cycles Lib/test/test_weakref.py /^ def check_len_cycles(self, dict_type, cons):$/;" m class:MappingTestCase +check_len_race Lib/test/test_weakref.py /^ def check_len_race(self, dict_type, cons):$/;" m class:MappingTestCase +check_library Tools/build/smelly.py /^def check_library(library, dynamic=False):$/;" f +check_limit Lib/test/test_ast.py /^ def check_limit(prefix, repeated):$/;" f function:AST_Tests.test_ast_recursion_limit +check_limit Lib/test/test_compile.py /^ def check_limit(prefix, repeated, mode="single"):$/;" f function:TestSpecifics.test_compiler_recursion_limit +check_line Lib/test/test_regrtest.py /^ def check_line(self, output, regex, full=False):$/;" m class:BaseTestCase +check_lines Lib/test/test_code.py /^ def check_lines(self, func):$/;" m class:CodeLocationTest +check_lines Lib/test/test_monitoring.py /^ def check_lines(self, func, expected, tool=TEST_TOOL):$/;" m class:LineMonitoringTest +check_lno_name Lib/test/test_bdb.py /^ def check_lno_name(self):$/;" m class:Tracer +check_lnotab Lib/test/test_peepholer.py /^ def check_lnotab(self, code):$/;" m class:TestTranforms +check_loader_state Lib/test/test_importlib/frozen/test_finder.py /^ def check_loader_state(self, spec, origname=None, filename=None):$/;" m class:FindSpecTests +check_loads Lib/test/test_xmlrpc.py /^ def check_loads(self, s, value, **kwargs):$/;" m class:XMLRPCTestCase +check_locale_surrogateescape Lib/test/test_sys.py /^ def check_locale_surrogateescape(self, locale):$/;" m class:SysModuleTest +check_logincapa Lib/test/test_imaplib.py /^ def check_logincapa(self, server):$/;" m class:RemoteIMAP_SSLTest +check_long_compact_api Modules/_testcapi/long.c /^check_long_compact_api(PyObject *self, PyObject *arg)$/;" f file: +check_macro_components Tools/cases_generator/generate_cases.py /^ def check_macro_components($/;" m class:Analyzer +check_malloc_without_gil Lib/test/test_capi/test_mem.py /^ def check_malloc_without_gil(self, code):$/;" m class:PyMemDebugTests +check_mapping_then_sequence Lib/test/test_patma.py /^ def check_mapping_then_sequence(x):$/;" m class:TestInheritance +check_match Lib/test/test_fnmatch.py /^ def check_match(self, filename, pattern, should_match=True, fn=fnmatch):$/;" m class:FnmatchTestCase +check_matched Python/_warnings.c /^check_matched(PyInterpreterState *interp, PyObject *obj, PyObject *arg)$/;" f file: +check_memoryview Lib/test/test_buffer.py /^ def check_memoryview(m, expected_readonly=readonly):$/;" f function:TestBufferProtocol.verify +check_memoryview Lib/test/test_picklebuffer.py /^ def check_memoryview(self, pb, equiv):$/;" m class:PickleBufferTest +check_method Lib/test/test_xml_etree.py /^ def check_method(method):$/;" f function:ElementTreeTest.test_interface +check_modname Tools/build/freeze_modules.py /^def check_modname(modname):$/;" f +check_module_cross Tools/build/check_extension_modules.py /^ def check_module_cross(self, modinfo: ModuleInfo):$/;" m class:ModuleChecker +check_module_event Lib/idlelib/runscript.py /^ def check_module_event(self, event):$/;" m class:ScriptBinding +check_module_import Tools/build/check_extension_modules.py /^ def check_module_import(self, modinfo: ModuleInfo):$/;" m class:ModuleChecker +check_multi_interp_extensions Include/cpython/pylifecycle.h /^ int check_multi_interp_extensions;$/;" m struct:__anon194 +check_multi_interp_extensions Python/import.c /^check_multi_interp_extensions(PyInterpreterState *interp)$/;" f file: +check_multidimensional Lib/test/test_base64.py /^ def check_multidimensional(self, f, data):$/;" m class:BaseXYTestCase +check_negative_refcount Lib/test/test_capi/test_misc.py /^ def check_negative_refcount(self, code):$/;" m class:CAPITest +check_nested_expr Tools/peg_generator/scripts/find_max_nesting.py /^def check_nested_expr(nesting_depth: int) -> bool:$/;" f +check_newline_decoding Lib/test/test_io.py /^ def check_newline_decoding(self, decoder, encoding):$/;" m class:IncrementalNewlineDecoderTest +check_newline_decoding_utf8 Lib/test/test_io.py /^ def check_newline_decoding_utf8(self, decoder):$/;" m class:IncrementalNewlineDecoderTest +check_no_copy Lib/test/pickletester.py /^ def check_no_copy(x, y):$/;" f function:AbstractPickleTests.test_buffers_numpy +check_no_resource_warning Lib/test/support/warnings_helper.py /^def check_no_resource_warning(testcase):$/;" f +check_no_resource_warning Lib/test/test_logging.py /^ check_no_resource_warning = warnings_helper.check_no_resource_warning$/;" v class:ConfigDictTest +check_no_resource_warning Lib/test/test_logging.py /^ check_no_resource_warning = warnings_helper.check_no_resource_warning$/;" v class:ConfigFileTest +check_no_resource_warning Lib/test/test_os.py /^ check_no_resource_warning = warnings_helper.check_no_resource_warning$/;" v class:TestScandir +check_no_unicode Lib/test/test_hashlib.py /^ def check_no_unicode(self, algorithm_name):$/;" m class:HashLibTestCase +check_no_warnings Lib/test/support/warnings_helper.py /^def check_no_warnings(testcase, message='', category=Warning, force_gc=False):$/;" f +check_node Lib/test/test_uuid.py /^ def check_node(self, node, requires=None):$/;" f +check_non_resurrecting_chain Lib/test/test_finalization.py /^ def check_non_resurrecting_chain(self, classes):$/;" m class:CycleChainFinalizationTest +check_nonbyte_element_format Lib/test/test_base64.py /^ def check_nonbyte_element_format(self, f, data):$/;" m class:BaseXYTestCase +check_note Lib/test/test_codecs.py /^ def check_note(self, obj_to_raise, msg, exc_type=RuntimeError):$/;" m class:ExceptionNotesTest +check_ns Lib/test/test_time.py /^ def check_ns(sec, ns):$/;" f function:TimeTestCase.test_time_ns_type +check_null_or_callable Modules/posixmodule.c /^check_null_or_callable(PyObject *obj, const char* obj_name)$/;" f file: +check_num Lib/test/test_html.py /^ def check_num(num, expected):$/;" f function:HtmlTests.test_unescape +check_num_args Objects/typeobject.c /^check_num_args(PyObject *ob, int n)$/;" f file: +check_ok Lib/test/double_const.py /^def check_ok(x, x_str):$/;" f +check_one_exact Lib/test/test_tuple.py /^ def check_one_exact(t, e32, e64):$/;" f function:TupleTest.test_hash_exact +check_op_count Lib/test/test_compile.py /^ def check_op_count(func, op, expected):$/;" f function:TestSpecifics.test_uses_slice_instructions +check_options Lib/test/test_support.py /^ def check_options(self, args, func, expected=None):$/;" m class:TestSupport +check_order_with_hash_seed Lib/test/test_graphlib.py /^ def check_order_with_hash_seed(seed):$/;" f function:TestTopologicalSort.test_static_order_does_not_change_with_the_hash_seed +check_other_types Lib/test/test_base64.py /^ def check_other_types(self, f, bytes_data, expected):$/;" m class:BaseXYTestCase +check_output Lib/doctest.py /^ def check_output(self, want, got, optionflags):$/;" m class:OutputChecker +check_output Lib/subprocess.py /^def check_output(*popenargs, timeout=None, **kwargs):$/;" f +check_output Lib/test/test_regrtest.py /^ def check_output(self, output):$/;" m class:ProgramsTestCase +check_output Lib/test/test_venv.py /^def check_output(cmd, encoding=None):$/;" f +check_over_xover_resp Lib/test/test_nntplib.py /^ def check_over_xover_resp(self, resp, overviews):$/;" m class:NNTPv1v2TestsMixin +check_overflow Lib/test/test_array.py /^ def check_overflow(self, lower, upper):$/;" m class:NumberTest +check_paneconfigure Lib/test/test_tkinter/test_widgets.py /^ def check_paneconfigure(self, p, b, name, value, expected):$/;" m class:PanedWindowTest +check_paneconfigure_bad Lib/test/test_tkinter/test_widgets.py /^ def check_paneconfigure_bad(self, p, b, name, msg):$/;" m class:PanedWindowTest +check_parallel_module_init Lib/test/test_importlib/test_threaded_import.py /^ def check_parallel_module_init(self, mock_os):$/;" m class:ThreadedImportTests +check_params Lib/test/audiotests.py /^ def check_params(self, f, nchannels, sampwidth, framerate, nframes,$/;" m class:AudioTests +check_parse Lib/test/test_sax.py /^ def check_parse(self, f):$/;" m class:ParseTest +check_parseString Lib/test/test_sax.py /^ def check_parseString(self, s):$/;" m class:ParseTest +check_parse_mac Lib/test/test_uuid.py /^ def check_parse_mac(self, aix):$/;" m class:BaseTestInternals +check_partial Lib/test/test_codecs.py /^ def check_partial(self, input, partialresults):$/;" m class:ReadTest +check_pass_thru Lib/test/test_set.py /^def check_pass_thru():$/;" f +check_path_succeeds Lib/test/test_io.py /^ def check_path_succeeds(path):$/;" f function:IOTest.test_fspath_support +check_pickle Lib/test/test_enumerate.py /^ def check_pickle(self, itorg, seq):$/;" m class:PickleTest +check_pickle Lib/test/test_iter.py /^ def check_pickle(self, itorg, seq):$/;" m class:TestCase +check_plistlib_parse Lib/test/test_plistlib.py /^ def check_plistlib_parse(self):$/;" m class:TestPlutil +check_polar Lib/test/test_cmath.py /^ def check_polar(self, func):$/;" m class:CMathTests +check_popcount Modules/_testinternalcapi.c /^check_popcount(uint32_t x, int expected)$/;" f file: +check_popitem Lib/test/test_weakref.py /^ def check_popitem(self, klass, key1, value1, key2, value2):$/;" m class:MappingTestCase +check_pos Lib/test/test_pyexpat.py /^ def check_pos(self, event):$/;" m class:PositionTest +check_positions Lib/test/test_code.py /^ def check_positions(self, func):$/;" m class:CodeLocationTest +check_positions Lib/test/test_ttk/test_extensions.py /^ def check_positions(scale, scale_pos, label, label_pos):$/;" f function:LabeledScaleTest.test_initialization +check_positions_against_ast Lib/test/test_compile.py /^ def check_positions_against_ast(self, snippet):$/;" m class:TestSourcePositions +check_post_ihave Lib/test/test_nntplib.py /^ def check_post_ihave(self, func, success_resp, *args):$/;" m class:NNTPv1v2TestsMixin +check_pre_config Lib/test/test_embed.py /^ def check_pre_config(self, configs, expected):$/;" m class:InitConfigTests +check_preinit_isolated_config Programs/_testembed.c /^static int check_preinit_isolated_config(int preinit)$/;" f file: +check_print_warning Lib/test/test_support.py /^ def check_print_warning(self, msg, expected):$/;" m class:TestSupport +check_private_names Tools/build/stable_abi.py /^def check_private_names(manifest):$/;" f +check_proxy Lib/test/test_weakref.py /^ def check_proxy(self, o, proxy):$/;" m class:ReferencesTestCase +check_pyobject_forbidden_bytes_is_freed Modules/_testcapi/mem.c /^check_pyobject_forbidden_bytes_is_freed(PyObject *self,$/;" f file: +check_pyobject_freed_is_freed Modules/_testcapi/mem.c /^check_pyobject_freed_is_freed(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +check_pyobject_is_freed Lib/test/test_capi/test_mem.py /^ def check_pyobject_is_freed(self, func_name):$/;" m class:PyMemDebugTests +check_pyobject_null_is_freed Modules/_testcapi/mem.c /^check_pyobject_null_is_freed(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +check_pyobject_uninitialized_is_freed Modules/_testcapi/mem.c /^check_pyobject_uninitialized_is_freed(PyObject *self,$/;" f file: +check_pyssl Tools/ssl/multissltests.py /^ def check_pyssl(self):$/;" m class:AbstractBuilder +check_pythonmalloc Lib/test/test_cmd_line.py /^ def check_pythonmalloc(self, env_var, name):$/;" m class:CmdLineTest +check_raised_systemerror Modules/_testcapi/unicode.c /^check_raised_systemerror(PyObject *result, char* msg)$/;" f file: +check_raises_type_error Lib/test/test_call.py /^ def check_raises_type_error(self, message):$/;" m class:TestErrorMessagesUseQualifiedName +check_raw Lib/test/test_picklebuffer.py /^ def check_raw(self, obj, equiv):$/;" m class:PickleBufferTest +check_raw_non_contiguous Lib/test/test_picklebuffer.py /^ def check_raw_non_contiguous(self, obj):$/;" m class:PickleBufferTest +check_rc_deltas Lib/test/libregrtest/refleak.py /^ def check_rc_deltas(deltas):$/;" f function:dash_R +check_read Lib/test/test_urllib.py /^ def check_read(self, ver):$/;" m class:urlopen_HttpTests +check_reentrant_insertion Lib/test/test_dict.py /^ def check_reentrant_insertion(self, mutate):$/;" m class:DictTest +check_reentrant_write Lib/test/test_io.py /^ def check_reentrant_write(self, data, **fdopen_kwargs):$/;" m class:SignalsTest +check_register Lib/test/test_faulthandler.py /^ def check_register(self, filename=False, all_threads=False,$/;" m class:FaultHandlerTests +check_relative Lib/test/test_import/__init__.py /^ def check_relative():$/;" f function:RelativeImportTests.test_issue3221 +check_repl_stderr_flush Lib/test/test_cmd_line_script.py /^ def check_repl_stderr_flush(self, separate_stderr=False):$/;" m class:CmdLineTest +check_repl_stdout_flush Lib/test/test_cmd_line_script.py /^ def check_repl_stdout_flush(self, separate_stderr=False):$/;" m class:CmdLineTest +check_repr Lib/test/test_gdb.py /^ def check_repr(text):$/;" f function:PrettyPrintTests.test_strings +check_repr_against_values Lib/test/test_set.py /^ def check_repr_against_values(self):$/;" m class:TestBasicOps +check_resource_tracker_death Lib/test/_test_multiprocessing.py /^ def check_resource_tracker_death(self, signum, should_die):$/;" m class:TestResourceTracker +check_result Lib/idlelib/idle_test/test_pyshell.py /^ def check_result(self, text, expected):$/;" m class:PyShellRemoveLastNewlineAndSurroundingWhitespaceTest +check_result Lib/test/test_call.py /^ def check_result(self, result, expected):$/;" m class:FastCallTests +check_result Lib/test/test_socketserver.py /^ def check_result(self, handled):$/;" m class:ErrorHandlerTest +check_resurrecting_chain Lib/test/test_finalization.py /^ def check_resurrecting_chain(self, classes):$/;" m class:CycleChainFinalizationTest +check_returncode Lib/subprocess.py /^ def check_returncode(self):$/;" m class:CompletedProcess +check_same_constant Lib/test/test_compile.py /^ def check_same_constant(const):$/;" f function:TestSpecifics.test_merge_constants +check_same_thread Modules/_sqlite/connection.h /^ int check_same_thread;$/;" m struct:__anon359 +check_sanitizer Lib/test/support/__init__.py /^def check_sanitizer(*, address=False, memory=False, ub=False):$/;" f +check_sanity Lib/test/test_finalization.py /^ def check_sanity(self):$/;" m class:ChainedBase +check_sanity Lib/test/test_finalization.py /^ def check_sanity(self):$/;" m class:NonGCSimpleBase +check_sanity Lib/test/test_finalization.py /^ def check_sanity(self):$/;" m class:SelfCycleBase +check_sanity Lib/test/test_finalization.py /^ def check_sanity(self):$/;" m class:SimpleBase +check_saved Lib/idlelib/undo.py /^ def check_saved(self):$/;" m class:UndoDelegator +check_script_output Lib/test/test_source_encoding.py /^ def check_script_output(self, src, expected):$/;" m class:BytesSourceEncodingTest +check_script_output Lib/test/test_source_encoding.py /^ def check_script_output(self, src, expected):$/;" m class:FileSourceEncodingTest +check_search_locations Lib/test/test_importlib/frozen/test_finder.py /^ def check_search_locations(self, spec):$/;" m class:FindSpecTests +check_semi_fresh Lib/test/test_import/__init__.py /^ def check_semi_fresh(self, loaded, base, prev):$/;" m class:SinglephaseInitTests +check_sendall_interrupted Lib/test/test_socket.py /^ def check_sendall_interrupted(self, with_timeout):$/;" m class:GeneralModuleTests +check_sequence_then_mapping Lib/test/test_patma.py /^ def check_sequence_then_mapping(x):$/;" m class:TestInheritance +check_set_nodelay Lib/test/test_asyncio/test_base_events.py /^ def check_set_nodelay(self, sock):$/;" m class:TestSelectorUtils +check_set_op_does_not_crash Lib/test/test_set.py /^ def check_set_op_does_not_crash(self, function):$/;" m class:TestOperationsMutating +check_set_special_type_attr Objects/typeobject.c /^check_set_special_type_attr(PyTypeObject *type, PyObject *value, const char *name)$/;" f file: +check_setdefault Lib/test/test_weakref.py /^ def check_setdefault(self, klass, key, value1, value2):$/;" m class:MappingTestCase +check_sha3 Lib/test/test_hashlib.py /^ def check_sha3(self, name, capacity, rate, suffix):$/;" m class:HashLibTestCase +check_shared_without_callback Lib/test/test_weakref.py /^ def check_shared_without_callback(self, makeref):$/;" m class:ReferencesTestCase +check_shorten Lib/test/test_textwrap.py /^ def check_shorten(self, text, width, expect, **kwargs):$/;" m class:ShortenTestCase +check_signum Modules/faulthandler.c /^check_signum(int signum)$/;" f file: +check_sigwait Lib/test/_test_eintr.py /^ def check_sigwait(self, wait_func):$/;" m class:SignalEINTRTest +check_singlephase Lib/test/test_capi/check_config.py /^def check_singlephase(override):$/;" f +check_sizeof Lib/test/support/__init__.py /^def check_sizeof(test, o, size):$/;" f +check_sizeof Lib/test/test_buffer.py /^ check_sizeof = support.check_sizeof$/;" v class:TestBufferProtocol +check_sizeof Lib/test/test_deque.py /^ check_sizeof = support.check_sizeof$/;" v class:TestBasic +check_sizeof Lib/test/test_itertools.py /^ check_sizeof = support.check_sizeof$/;" v class:SizeofTest +check_sizeof Lib/test/test_memoryio.py /^ check_sizeof = support.check_sizeof$/;" v class:CBytesIOTest +check_sizeof Lib/test/test_ordered_dict.py /^ check_sizeof = support.check_sizeof$/;" v class:CPythonOrderedDictTests +check_sizeof Lib/test/test_pickle.py /^ check_sizeof = support.check_sizeof$/;" v class:.SizeofTests +check_sizeof Lib/test/test_struct.py /^ def check_sizeof(self, format_str, number_of_codes):$/;" m class:StructTest +check_sizeof Lib/test/test_sys.py /^ check_sizeof = test.support.check_sizeof$/;" v class:SizeofTest +check_sizeof Lib/test/test_xml_etree_c.py /^ check_sizeof = support.check_sizeof$/;" v class:SizeofTest +check_slots Lib/test/test_sys.py /^ def check_slots(self, obj, base, extra):$/;" m class:SizeofTest +check_source_traceback Lib/test/test_asyncio/test_events.py /^ def check_source_traceback(h):$/;" f function:HandleTests.test_handle_source_traceback +check_split Lib/test/test_textwrap.py /^ def check_split(self, text, expect):$/;" m class:BaseTestCase +check_src_dont_roundtrip Lib/test/test_unparse.py /^ def check_src_dont_roundtrip(self, code1, code2=None):$/;" m class:ASTTestCase +check_src_roundtrip Lib/test/test_unparse.py /^ def check_src_roundtrip(self, code1, code2=None):$/;" m class:ASTTestCase +check_ssl_extra_info Lib/test/test_asyncio/test_events.py /^ def check_ssl_extra_info(self, client, check_sockname=True,$/;" m class:EventLoopTestsMixin +check_ssl_verifiy Lib/test/test_smtpnet.py /^def check_ssl_verifiy(host, port):$/;" f +check_stack_names Lib/test/test_generators.py /^ def check_stack_names(self, frame, expected):$/;" m class:GeneratorStackTraceTest +check_stack_size Lib/test/test_compile.py /^ def check_stack_size(self, code):$/;" m class:TestExpressionStackSize +check_stack_size Lib/test/test_compile.py /^ def check_stack_size(self, snippet, async_=False):$/;" m class:TestStackSizeStability +check_stat Lib/test/test_os.py /^ def check_stat(self, link, target):$/;" m class:Win32SymlinkTests +check_stat Lib/test/test_posix.py /^ def check_stat(uid, gid):$/;" f function:PosixTester._test_all_chown_common +check_stat_attributes Lib/test/test_os.py /^ def check_stat_attributes(self, fname):$/;" m class:StatAttributeTests +check_state_handling_decode Lib/test/test_codecs.py /^ def check_state_handling_decode(self, encoding, u, s):$/;" m class:MixInCheckStateHandling +check_state_handling_encode Lib/test/test_codecs.py /^ def check_state_handling_encode(self, encoding, u, s):$/;" m class:MixInCheckStateHandling +check_status Lib/wsgiref/validate.py /^def check_status(status):$/;" f +check_status_and_reason Lib/test/test_httpservers.py /^ def check_status_and_reason(self, response, status, data=None):$/;" m class:SimpleHTTPServerTestCase +check_stderr_none Lib/test/test_faulthandler.py /^ def check_stderr_none(self):$/;" m class:FaultHandlerTests +check_stdio_details Programs/_testembed.c /^static void check_stdio_details(const char *encoding, const char * errors)$/;" f file: +check_stdout_output Lib/test/test_asyncio/test_subprocess.py /^ async def check_stdout_output(self, coro, output):$/;" m class:SubprocessMixin +check_stmt_trace Lib/test/test_sqlite3/test_hooks.py /^ def check_stmt_trace(self, cx, expected):$/;" m class:TraceCallbackTests +check_stmt_trace Lib/test/test_sqlite3/test_transactions.py /^ def check_stmt_trace(self, cx, expected, reset=True):$/;" m class:AutocommitAttribute +check_str Lib/os.py /^ def check_str(value):$/;" f function:_createenviron +check_strict_build Tools/build/check_extension_modules.py /^ def check_strict_build(self):$/;" m class:ModuleChecker +check_string Lib/test/test_cmd_line.py /^ def check_string(self, code):$/;" m class:SyntaxErrorTests +check_string_type Lib/wsgiref/validate.py /^def check_string_type(value, title):$/;" f +check_strtod Lib/test/test_strtod.py /^ def check_strtod(self, s):$/;" m class:StrtodTests +check_subs Lib/test/test_io.py /^ def check_subs(types, base):$/;" f function:TestIOCTypes.test_class_hierarchy +check_subscripter Python/compile.c /^check_subscripter(struct compiler *c, expr_ty e)$/;" f file: +check_super_components Tools/cases_generator/generate_cases.py /^ def check_super_components(self, super: parser.Super) -> list[Instruction]:$/;" m class:Analyzer +check_swap_fds Lib/test/test_subprocess.py /^ def check_swap_fds(self, stdin_no, stdout_no, stderr_no):$/;" m class:POSIXProcessTestCase +check_syntax_error Lib/test/support/__init__.py /^def check_syntax_error(testcase, statement, errtext='', *, lineno=None, offset=None):$/;" f +check_syntax_error Lib/test/test_future.py /^ def check_syntax_error(self, err, basename, lineno, offset=1):$/;" m class:FutureTest +check_syntax_warning Lib/test/support/warnings_helper.py /^def check_syntax_warning(testcase, statement, errtext='',$/;" f +check_sys_xoptions_invalid Lib/test/test_tracemalloc.py /^ def check_sys_xoptions_invalid(self, nframe):$/;" m class:TestCommandLine +check_terminated Lib/test/test_asyncio/test_events.py /^ def check_terminated(self, returncode):$/;" m class:SubprocessTestsMixin +check_thread Lib/test/test_asyncio/test_base_events.py /^ def check_thread(self, loop, debug):$/;" m class:BaseEventLoopTests +check_threaded_weak_dict_copy Lib/test/test_weakref.py /^ def check_threaded_weak_dict_copy(self, type_, deepcopy):$/;" m class:MappingTestCase +check_ticks_per_second Modules/timemodule.c /^check_ticks_per_second(long tps, const char *context)$/;" f file: +check_time_args Modules/_datetimemodule.c /^check_time_args(int h, int m, int s, int us, int fold)$/;" f file: +check_time_rounding Modules/_testcapi/pytime.c /^check_time_rounding(int round)$/;" f file: +check_tokenize Lib/test/test_tokenize.py /^ def check_tokenize(self, s, expected):$/;" m class:TokenizeTest +check_tool Python/instrumentation.c /^check_tool(PyInterpreterState *interp, int tool_id)$/;" f file: +check_traceback_entry Lib/test/test_pyexpat.py /^ def check_traceback_entry(self, entry, filename, funcname):$/;" m class:HandlerExceptionTest +check_traceback_format Lib/test/test_traceback.py /^ def check_traceback_format(self, cleanup_func=None):$/;" m class:TracebackFormatTests +check_tracebacks Lib/test/test_sqlite3/test_userfunctions.py /^def check_tracebacks(self, cm, exc, regex, obj_name):$/;" f +check_track Lib/test/test_tracemalloc.py /^ def check_track(self, release_gil):$/;" m class:TestCAPI +check_track_dynamic Lib/test/test_tuple.py /^ def check_track_dynamic(self, tp, always_track):$/;" m class:TupleTest +check_truediv Lib/test/test_long.py /^ def check_truediv(self, a, b, skip_small=True):$/;" m class:LongTest +check_type Lib/test/test_ctypes/test_callbacks.py /^ def check_type(self, typ, arg):$/;" m class:Callbacks +check_type_coercions Lib/test/test_statistics.py /^ def check_type_coercions(self, T):$/;" m class:CoerceTest +check_type_errors Lib/test/test_base64.py /^ def check_type_errors(self, f):$/;" m class:LegacyBase64TestCase +check_tzinfo_subclass Modules/_datetimemodule.c /^check_tzinfo_subclass(PyObject *p)$/;" f file: +check_ulpdiff Modules/_decimal/tests/deccheck.py /^ def check_ulpdiff(self, exact, rounded):$/;" m class:SkipHandler +check_unmarshallable Lib/test/test_marshal.py /^ def check_unmarshallable(self, data):$/;" m class:LargeValuesTestCase +check_unpack_archive Lib/test/test_shutil.py /^ def check_unpack_archive(self, format, **kwargs):$/;" m class:TestArchives +check_unpack_archive_with_converter Lib/test/test_shutil.py /^ def check_unpack_archive_with_converter(self, format, converter, **kwargs):$/;" m class:TestArchives +check_unpack_tarball Lib/test/test_shutil.py /^ def check_unpack_tarball(self, format):$/;" m class:TestArchives +check_unpickler Lib/test/test_pickle.py /^ def check_unpickler(data, memo_size, marks_size):$/;" f function:.SizeofTests.test_unpickler +check_unpickling_error Lib/test/pickletester.py /^ def check_unpickling_error(self, errors, data):$/;" m class:AbstractUnpickleTests +check_untested Modules/_decimal/tests/deccheck.py /^def check_untested(funcdict, c_cls, p_cls):$/;" f +check_unused_args Lib/string.py /^ def check_unused_args(self, used_args, args, kwargs):$/;" m class:Formatter +check_unused_args Lib/test/test_string.py /^ def check_unused_args(self, used_args, args, kwargs):$/;" m class:ModuleTest.test_check_unused_args.CheckAllUsedFormatter +check_update Lib/test/test_weakref.py /^ def check_update(self, klass, dict):$/;" m class:MappingTestCase +check_use_frozen_modules Programs/_testembed.c /^static int check_use_frozen_modules(const char *rawval)$/;" f file: +check_valid_file Lib/test/support/__init__.py /^ def check_valid_file(fn):$/;" f function:open_urlresource +check_valid_tool Python/instrumentation.c /^check_valid_tool(int tool_id)$/;" f file: +check_value Lib/optparse.py /^ def check_value(self, opt, value):$/;" m class:Option +check_value Lib/test/test_grp.py /^ def check_value(self, value):$/;" m class:GroupDatabaseTestCase +check_values Lib/optparse.py /^ def check_values(self, values, args):$/;" m class:OptionParser +check_version Lib/test/test_ucn.py /^ def check_version(testfile):$/;" f function:UnicodeNamesTest.test_named_sequences_full +check_version Lib/test/test_unicodedata.py /^ def check_version(testfile):$/;" m class:NormalizationTest +check_version_changed Lib/test/test_dict_version.py /^ def check_version_changed(self, mydict, method, *args, **kw):$/;" m class:DictVersionTests +check_version_dont_change Lib/test/test_dict_version.py /^ def check_version_dont_change(self, mydict, method, *args, **kw):$/;" m class:DictVersionTests +check_version_unique Lib/test/test_dict_version.py /^ def check_version_unique(self, mydict):$/;" m class:DictVersionTests +check_waitpid Lib/test/test_os.py /^ def check_waitpid(self, code, exitcode, callback=None):$/;" m class:PidTests +check_wakeup Lib/test/test_signal.py /^ def check_wakeup(self, test_body, *signals, ordered=True):$/;" m class:WakeupSignalTests +check_warnings Lib/test/support/warnings_helper.py /^def check_warnings(*filters, **kwargs):$/;" f +check_warnings_filters Lib/test/test_cmd_line.py /^ def check_warnings_filters(self, cmdline_option, envvar, use_pywarning=False):$/;" m class:CmdLineTest +check_weak_del_and_len_while_iterating Lib/test/test_weakref.py /^ def check_weak_del_and_len_while_iterating(self, dict, testcontext):$/;" m class:MappingTestCase +check_weak_destroy_and_mutate_while_iterating Lib/test/test_weakref.py /^ def check_weak_destroy_and_mutate_while_iterating(self, dict, testcontext):$/;" m class:MappingTestCase +check_weak_destroy_while_iterating Lib/test/test_weakref.py /^ def check_weak_destroy_while_iterating(self, dict, objects, iter_name):$/;" m class:MappingTestCase +check_weeks Lib/test/test_calendar.py /^ def check_weeks(self, year, month, weeks):$/;" m class:MonthCalendarTestCase +check_windows_exception Lib/test/test_faulthandler.py /^ def check_windows_exception(self, code, line_number, name_regex, **kw):$/;" m class:FaultHandlerTests +check_with_reinit Lib/test/test_import/__init__.py /^ def check_with_reinit(self, loaded):$/;" m class:SinglephaseInitTests +check_wrap Lib/test/test_textwrap.py /^ def check_wrap(self, text, width, expect, **kwargs):$/;" m class:BaseTestCase +check_wrapper Lib/test/test_functools.py /^ def check_wrapper(self, wrapper, wrapped,$/;" m class:TestUpdateWrapper +check_wrapper_attrs Lib/test/test_decorators.py /^ def check_wrapper_attrs(self, method_wrapper, format_str):$/;" m class:TestDecorators +check_writes Lib/test/test_io.py /^ def check_writes(self, intermediate_func):$/;" m class:BufferedWriterTest +check_y_combinator Lib/test/test_inspect.py /^ def check_y_combinator(func):$/;" f function:TestGetClosureVars.test_nonlocal_vars +check_yield_from_example Lib/test/test_generators.py /^ def check_yield_from_example(self, call_method):$/;" m class:GeneratorStackTraceTest +check_zero_div Lib/test/test_traceback.py /^ def check_zero_div(self, msg):$/;" m class:BaseExceptionReportingTests +checkall Lib/test/test_lib2to3/test_fixers.py /^ def checkall(self, before, after):$/;" m class:Test_itertools +checkbox Lib/msilib/__init__.py /^ def checkbox(self, name, x, y, w, h, attr, prop, text, next):$/;" m class:Dialog +checkcache Lib/linecache.py /^def checkcache(filename=None):$/;" f +checkcall Lib/test/string_tests.py /^ def checkcall(self, obj, methodname, *args):$/;" m class:BaseTest +checkcall Lib/test/test_userstring.py /^ def checkcall(self, object, methodname, *args):$/;" m class:UserStringTest +checked_divmod Modules/_datetimemodule.c /^checked_divmod(PyObject *a, PyObject *b)$/;" f file: +checkequal Lib/test/string_tests.py /^ def checkequal(self, result, obj, methodname, *args, **kwargs):$/;" m class:BaseTest +checkequal Lib/test/test_richcmp.py /^ def checkequal(self, opname, a, b, expres):$/;" m class:VectorTest +checkequal Lib/test/test_userstring.py /^ def checkequal(self, result, object, methodname, *args, **kwargs):$/;" m class:UserStringTest +checkequalnofix Lib/test/test_unicode.py /^ def checkequalnofix(self, result, object, methodname, *args):$/;" m class:UnicodeTest +checker Lib/test/test_threading.py /^ def checker():$/;" f function:ThreadTests.test_getprofile_all_threads +checker Lib/test/test_threading.py /^ def checker():$/;" f function:ThreadTests.test_gettrace_all_threads +checker Modules/_ctypes/ctypes.h /^ PyObject *checker;$/;" m struct:__anon493 +checker Modules/_ctypes/ctypes.h /^ PyObject *checker;$/;" m struct:__anon495 +checkextensions Tools/freeze/checkextensions.py /^def checkextensions(unknown, extensions):$/;" f +checkextensions Tools/freeze/checkextensions_win32.py /^def checkextensions(unknown, extra_inis, prefix):$/;" f +checkfail Lib/test/test_richcmp.py /^ def checkfail(self, error, opname, *args):$/;" m class:VectorTest +checkfilename Lib/test/test_symtable.py /^ def checkfilename(brokencode, offset):$/;" f function:SymtableTest.test_filename_correct +checkfuncname Lib/bdb.py /^def checkfuncname(b, frame):$/;" f +checkgroup Lib/re/_parser.py /^ def checkgroup(self, gid):$/;" m class:State +checkgroupname Lib/re/_parser.py /^ def checkgroupname(self, name, offset):$/;" m class:Tokenizer +checkhide_event Lib/idlelib/calltip_w.py /^ def checkhide_event(self, event=None):$/;" m class:CalltipWindow +checkinside Lib/test/datetimetester.py /^ def checkinside(self, dt, tz, utc, dston, dstoff):$/;" m class:TestTimezoneConversions +checkletter Lib/test/test_ucn.py /^ def checkletter(self, name, code):$/;" m class:UnicodeNamesTest +checkline Lib/pdb.py /^ def checkline(self, filename, lineno):$/;" m class:Pdb +checklinecache Lib/idlelib/pyshell.py /^ def checklinecache(self):$/;" m class:ModifiedInterpreter +checklines Lib/idlelib/idle_test/test_zzdummy.py /^ def checklines(self, text, value):$/;" m class:ZZDummyTest +checklookbehindgroup Lib/re/_parser.py /^ def checklookbehindgroup(self, gid, source):$/;" m class:State +checkout_hook_path Lib/test/test_gdb.py /^checkout_hook_path = os.path.join(os.path.dirname(sys.executable),$/;" v +checkoutside Lib/test/datetimetester.py /^ def checkoutside(self, dt, tz, utc):$/;" m class:TestTimezoneConversions +checkpath Modules/_elementtree.c /^checkpath(PyObject* tag)$/;" f +checkraises Lib/test/string_tests.py /^ def checkraises(self, exc, obj, methodname, *args, expected_msg=None):$/;" m class:BaseTest +checkraises Lib/test/test_userstring.py /^ def checkraises(self, exc, obj, methodname, *args, expected_msg=None):$/;" m class:UserStringTest +checksig Lib/unittest/mock.py /^ def checksig(*args, **kwargs):$/;" f function:_set_signature +checksig Lib/unittest/mock.py /^ def checksig(self, \/, *args, **kwargs):$/;" f function:_check_signature +checksum_line Tools/clinic/clinic.py /^ checksum_line = ""$/;" v class:Language +checksum_line Tools/clinic/clinic.py /^ checksum_line = "#\/*[{dsl_name} end generated code: {arguments}]*\/"$/;" v class:PythonLanguage +checksum_line Tools/clinic/clinic.py /^ checksum_line = "\/*[{dsl_name} end generated code: {arguments}]*\/"$/;" v class:CLanguage +checksyntax Lib/idlelib/runscript.py /^ def checksyntax(self, filename):$/;" m class:ScriptBinding +checktm Modules/timemodule.c /^checktm(struct tm* buf)$/;" f file: +checkvalue Lib/test/test_richcmp.py /^ def checkvalue(self, opname, a, b, expres):$/;" m class:NumberTest +checkwarnings Lib/test/test_xml_etree.py /^def checkwarnings(*filters, quiet=False):$/;" f +cheese Lib/test/pickletester.py /^ def cheese():$/;" m class:AbstractPickleTests.test_py_methods.PyMethodsTest +chflags_nofollow Lib/test/test_posix.py /^ def chflags_nofollow(path, flags):$/;" f function:PosixTester.test_lchflags_symlink +child Lib/test/_test_multiprocessing.py /^ def child(cls, n, conn):$/;" m class:TestForkAwareThreadLock +child Lib/test/test_builtin.py /^ def child(wpipe):$/;" f function:PtyTests.check_input_tty +child Lib/test/test_builtin.py /^ def child(wpipe):$/;" f function:PtyTests.test_input_no_stdout_fileno +childNodes Lib/xml/dom/minidom.py /^ childNodes = EmptyNodeList()$/;" v class:Childless +child_access Lib/test/_test_multiprocessing.py /^ def child_access(cls, conn):$/;" m class:_TestPicklingConnections +child_coro Lib/test/test_asyncio/test_tasks.py /^ async def child_coro():$/;" f function:BaseTaskTests.test_cancel_gather_1.create +child_exec Modules/_posixsubprocess.c /^child_exec(char *const exec_array[],$/;" f file: +child_index Modules/_elementtree.c /^ Py_ssize_t child_index;$/;" m struct:ParentLocator_t file: +child_main Lib/test/test_asyncio/test_unix_events.py /^ async def child_main():$/;" f function:TestFork.test_fork_asyncio_run +child_main Lib/test/test_asyncio/test_unix_events.py /^ async def child_main():$/;" f function:TestFork.test_fork_asyncio_subprocess +child_main Lib/test/test_asyncio/test_unix_events.py /^ def child_main():$/;" f function:TestFork.test_fork_signal_handling +childcnt Modules/expat/xmlparse.c /^ int childcnt;$/;" m struct:__anon612 file: +children Lib/importlib/metadata/__init__.py /^ def children(self):$/;" m class:FastPath +children Lib/importlib/resources/simple.py /^ def children(self) -> List['SimpleReader']:$/;" m class:SimpleReader +children Lib/lib2to3/pytree.py /^ children = () # Tuple of subnodes$/;" v class:Base +children Modules/_elementtree.c /^ PyObject* *children;$/;" m struct:__anon382 file: +children Modules/expat/expat.h /^ XML_Content *children;$/;" m struct:XML_cp +children Tools/peg_generator/pegen/grammar_visualizer.py /^ def children(self, node: Rule) -> Iterator[Any]:$/;" m class:ASTGrammarPrinter +chksum Lib/tarfile.py /^ chksum = 'Header checksum.',$/;" v class:TarInfo +chmod Lib/pathlib.py /^ def chmod(self, mode, *, follow_symlinks=True):$/;" m class:Path +chmod Lib/tarfile.py /^ def chmod(self, tarinfo, targetpath):$/;" m class:TarFile +choice Lib/random.py /^ def choice(self, seq):$/;" m class:Random +choice Lib/random.py /^choice = _inst.choice$/;" v +choice Lib/secrets.py /^choice = _sysrand.choice$/;" v +choice Tools/cases_generator/lexer.py /^def choice(*opts):$/;" f +choices Lib/random.py /^ def choices(self, population, weights=None, *, cum_weights=None, k=1):$/;" m class:Random +choices Lib/random.py /^choices = _inst.choices$/;" v +choices Tools/peg_generator/scripts/benchmark.py /^ choices=["xxl", "stdlib"],$/;" v +choices Tools/peg_generator/scripts/grammar_grapher.py /^ choices=["exec", "eval", "single"],$/;" v +choices Tools/ssl/multissltests.py /^ choices=['library', 'modules', 'tests'],$/;" v +choices Tools/wasm/wasm_build.py /^ choices=platforms_choices,$/;" v +choices Tools/wasm/wasm_build.py /^ choices=tuple(ops),$/;" v +choose_lines Lib/test/test_zlib.py /^def choose_lines(source, number, seed=None, generator=random):$/;" f +chown Lib/shutil.py /^def chown(path, user=None, group=None):$/;" f +chown Lib/tarfile.py /^ def chown(self, tarinfo, targetpath, numeric_owner):$/;" m class:TarFile +chr Modules/_sre/sre_lib.h /^ SRE_CODE chr;$/;" m union:__anon460::__anon461 +chunk_size Modules/_io/textio.c /^ Py_ssize_t chunk_size;$/;" m struct:textio file: +chunk_sizes Lib/test/pickletester.py /^ chunk_sizes = [len(c) for c in writer.chunks]$/;" v class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +chunked_end Lib/test/test_httplib.py /^chunked_end = "\\r\\n"$/;" v +chunked_expected Lib/test/test_httplib.py /^chunked_expected = b'hello world! and now for something completely different'$/;" v +chunked_start Lib/test/test_httplib.py /^chunked_start = ($/;" v +chunks Lib/test/test_os.py /^ async def chunks(reader):$/;" m class:TestSendfile +chunks Lib/test/test_shutil.py /^ def chunks(total, step):$/;" f function:write_test_file +chunks Lib/test/test_socket.py /^ def chunks(total, step):$/;" f function:SendfileUsingSendTest.setUpClass +chunks Modules/_sre/sre.h /^ Py_ssize_t chunks; \/* the number of group references and non-NULL literals$/;" m struct:__anon456 +ci Tools/patchcheck/patchcheck.py /^def ci(pull_request):$/;" f +cid Doc/includes/email-alternative.py /^ cid=asparagus_cid)$/;" v +cid Lib/test/test__xxinterpchannels.py /^ def cid(self):$/;" m class:ChannelCloseFixture +cid Modules/_xxinterpchannelsmodule.c /^ int64_t cid;$/;" m struct:channel_id_converter_data file: +cif Modules/_ctypes/ctypes.h /^ ffi_cif cif;$/;" m struct:__anon492 +cipher Lib/ssl.py /^ def cipher(self):$/;" m class:SSLObject +cipher Lib/ssl.py /^ def cipher(self):$/;" m class:SSLSocket +cipher_to_dict Modules/_ssl.c /^cipher_to_dict(const SSL_CIPHER *cipher)$/;" f file: +cipher_to_tuple Modules/_ssl.c /^cipher_to_tuple(const SSL_CIPHER *cipher)$/;" f file: +circle Lib/turtle.py /^ def circle(self, radius, extent = None, steps = None):$/;" m class:TNavigator +circular_imports_modules Lib/test/test_importlib/test_threaded_import.py /^circular_imports_modules = {$/;" v +cistr Lib/test/test_descr.py /^ class cistr(str):$/;" c function:.test_str_subclass_as_dict_key +cjk_module Modules/cjkcodecs/multibytecodec.h /^ PyObject *cjk_module;$/;" m struct:__anon325 +cjk_module Modules/cjkcodecs/multibytecodec.h /^ PyObject *cjk_module;$/;" m struct:__anon333 +cjk_ranges Tools/unicode/makeunicodedata.py /^cjk_ranges = [$/;" v +cjkcodecs_module_state Modules/cjkcodecs/cjkcodecs.h /^} cjkcodecs_module_state;$/;" t typeref:struct:_cjk_mod_state +cjson Lib/test/test_json/__init__.py /^cjson = import_helper.import_fresh_module('json', fresh=['_json'])$/;" v +ckmsg Lib/test/test_exceptions.py /^ def ckmsg(src, msg):$/;" f function:ExceptionTests.testSyntaxErrorMessage +ckmsg Lib/test/test_exceptions.py /^ def ckmsg(src, msg, exception=SyntaxError):$/;" f function:ExceptionTests.testSyntaxErrorMissingParens +cl Lib/test/test_typing.py /^ def cl(cls, y: int) -> int: ...$/;" m class:ForwardRefTests.test_no_type_check_class_and_static_methods.Some +clamp Lib/_pydecimal.py /^ clamp=0$/;" v +clamp Modules/_decimal/libmpdec/mpdecimal.h /^ int clamp; \/* clamp mode *\/$/;" m struct:mpd_context_t +clamp Modules/_decimal/tests/deccheck.py /^ clamp = property(getclamp, setclamp)$/;" v class:Context +classDict Lib/test/test_unittest/test_result.py /^classDict = dict(unittest.TestResult.__dict__)$/;" v +classSetUp Lib/test/test_unittest/test_setups.py /^ classSetUp = False$/;" v class:TestSetups.test_class_not_setup_or_torndown_when_skipped.Test +classSetUp Lib/test/test_unittest/test_setups.py /^ classSetUp = False$/;" v class:TestSetups.test_error_in_setup_module.Test +classSetUp Lib/test/test_unittest/test_setups.py /^ classSetUp = False$/;" v class:TestSetups.test_error_in_teardown_module.Test +classTornDown Lib/test/test_unittest/test_setups.py /^ classTornDown = False$/;" v class:TestSetups.test_error_in_setup_module.Test +classTornDown Lib/test/test_unittest/test_setups.py /^ classTornDown = False$/;" v class:TestSetups.test_error_in_teardown_module.Test +class_ Lib/test/smtpd.py /^ class_ = getattr(mod, classname)$/;" v +class_attribute Lib/test/test_unittest/testmock/support.py /^ class_attribute = None$/;" v class:SomeClass +class_cache Lib/multiprocessing/sharedctypes.py /^class_cache = weakref.WeakKeyDictionary()$/;" v +class_cleanup1 Lib/test/test_unittest/test_runner.py /^ def class_cleanup1(*args, **kwargs):$/;" f function:TestClassCleanup.test_addClassCleanUp +class_cleanup2 Lib/test/test_unittest/test_runner.py /^ def class_cleanup2(*args, **kwargs):$/;" f function:TestClassCleanup.test_addClassCleanUp +class_decorator Lib/test/inspect_fodder2.py /^def class_decorator(cls):$/;" f +class_decorator Lib/test/test_abc.py /^ def class_decorator(cls):$/;" f function:test_factory.TestABC.test_update_as_decorator +class_decorator Lib/test/test_grammar.py /^ def class_decorator(x): return x$/;" f function:GrammarTests.test_classdef +class_decorator Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def class_decorator(x):$/;" f function:GrammarTests.testClassdef +class_decorator Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def class_decorator(x): return x$/;" f function:GrammarTests.testClassdef +class_def_raw_rule Parser/parser.c /^class_def_raw_rule(Parser *p)$/;" f file: +class_def_raw_type Parser/parser.c 114;" d file: +class_def_rule Parser/parser.c /^class_def_rule(Parser *p)$/;" f file: +class_def_type Parser/parser.c 113;" d file: +class_dict Lib/test/test_descr.py /^ class_dict = cls.__dict__$/;" v class:.test_set_dict.E +class_method Lib/test/test_call.py /^ def class_method(cls):$/;" m class:PythonClass +class_method Lib/test/test_inspect.py /^ def class_method(cls): pass$/;" m class:TestIsDataDescriptor.test_functions.Test +class_method Lib/test/test_unittest/testmock/testhelpers.py /^ def class_method(cls, a, b=10, *, c): pass$/;" m class:SpecSignatureTest.test_autospec_signature_classmethod.Foo +class_method Lib/test/test_unittest/testmock/testmock.py /^ def class_method(cls): pass$/;" m class:MockTest.test_create_autospec_classmethod_and_staticmethod.TestClass +class_method Lib/test/test_unittest/testmock/testpatch.py /^ def class_method(cls, a, b=10, *, c): pass$/;" m class:PatchTest.test_autospec_classmethod_signature.Foo +class_method Lib/test/test_unittest/testmock/testpatch.py /^ def class_method(cls): pass$/;" m class:Foo +class_method_bad_order Lib/test/test_typing.py /^ def class_method_bad_order(cls): ...$/;" m class:OverrideDecoratorTests.test_override.Base +class_method_bad_order Lib/test/test_typing.py /^ def class_method_bad_order(cls):$/;" m class:OverrideDecoratorTests.test_override.Derived +class_method_good_order Lib/test/test_typing.py /^ def class_method_good_order(cls): ...$/;" m class:OverrideDecoratorTests.test_override.Base +class_method_good_order Lib/test/test_typing.py /^ def class_method_good_order(cls):$/;" m class:OverrideDecoratorTests.test_override.Derived +class_method_linear Lib/test/test_trace.py /^ def class_method_linear(cls, y):$/;" m class:TracedClass +class_name Lib/test/test_zoneinfo/test_zoneinfo.py /^ class_name = "ZoneInfo"$/;" v class:ZoneInfoTest +class_name Objects/typeobject.c /^class_name(PyObject *cls)$/;" f file: +class_pattern_rule Parser/parser.c /^class_pattern_rule(Parser *p)$/;" f file: +class_pattern_type Parser/parser.c 175;" d file: +class_test Lib/test/test_builtin.py /^ def class_test(A, DerivedFromA, DerivedFromSimple, DerivedFromSimple2):$/;" f function:BuiltinTest.test_format +classes_new Lib/test/test_builtin.py /^ def classes_new():$/;" f function:BuiltinTest.test_format +classfunc Lib/test/test_unittest/testmock/testhelpers.py /^ def classfunc(cls): pass$/;" m class:TestCallablePredicate.test_classmethod.WithClassMethod +classic Lib/test/test_descr.py /^ class classic:$/;" c function:.test_classic_comparisons +classic Lib/test/test_descr.py /^ class classic:$/;" c function:.test_rich_comparisons +classic_parse Lib/test/test_type_comments.py /^ def classic_parse(self, source):$/;" m class:TypeCommentTests +classify Lib/idlelib/undo.py /^ def classify(self, c):$/;" m class:InsertCommand +classify Lib/lib2to3/pgen2/parse.py /^ def classify(self, type, value, context):$/;" m class:Parser +classify_class_attrs Lib/inspect.py /^def classify_class_attrs(cls):$/;" f +classify_class_attrs Lib/pydoc.py /^def classify_class_attrs(object):$/;" f +classlink Lib/pydoc.py /^ def classlink(self, object, modname):$/;" f +classmethod Objects/funcobject.c /^} classmethod;$/;" t typeref:struct:__anon720 file: +classmethod_friendly_decorator Lib/test/test_functools.py /^ def classmethod_friendly_decorator(func):$/;" f function:TestSingleDispatch.test_double_wrapped_methods +classmethod_get Objects/descrobject.c /^classmethod_get(PyMethodDescrObject *descr, PyObject *obj, PyObject *type)$/;" f file: +classmethoddescr_call Objects/descrobject.c /^classmethoddescr_call(PyMethodDescrObject *descr, PyObject *args,$/;" f file: +classname Lib/pydoc.py /^def classname(object, modname):$/;" f +classname Lib/test/smtpd.py /^ classname = classname[lastdot+1:]$/;" v +classname Lib/test/smtpd.py /^ classname = 'PureProxy'$/;" v class:Options +classname Lib/test/smtpd.py /^ classname = options.classname$/;" v +classonly Tools/c-analyzer/c_common/clsutil.py /^class classonly:$/;" c +classproperty Lib/test/test_enum.py /^class classproperty:$/;" c +classvar Lib/test/test_typing.py /^ classvar = 4$/;" v class:AnnotatedTests.test_attr_passthrough.C +classvar Lib/test/test_typing.py /^ classvar = 4$/;" v class:AnnotatedTests.test_instantiate.C +clean Lib/mailbox.py /^ def clean(self):$/;" m class:Maildir +clean PCbuild/get_externals.bat /^:clean$/;" l +clean Tools/msi/get_externals.bat /^:clean$/;" l +clean Tools/wasm/wasm_build.py /^ clean="run 'make clean'",$/;" v +clean Tools/wasm/wasm_build.py /^ def clean(self, all: bool = False):$/;" m class:BuildProfile +clean_asynciter Lib/test/test_sys_settrace.py /^def clean_asynciter(test):$/;" f +clean_lines Tools/c-analyzer/cpython/_parser.py /^def clean_lines(text):$/;" f +clean_up Lib/test/test__xxinterpchannels.py /^ def clean_up(self):$/;" m class:ChannelCloseFixture +clean_up Lib/test/test_import/__init__.py /^ def clean_up():$/;" f function:SinglephaseInitTests.add_module_cleanup +clean_up Lib/test/test_import/__init__.py /^ def clean_up():$/;" f function:SinglephaseInitTests.add_subinterpreter +clean_up Lib/test/test_import/__init__.py /^ def clean_up(cls):$/;" m class:SinglephaseInitTests +clean_up_channels Lib/test/test__xxinterpchannels.py /^def clean_up_channels():$/;" f +clean_up_interpreters Lib/test/test__xxsubinterpreters.py /^def clean_up_interpreters():$/;" f +clean_up_interpreters Lib/test/test_interpreters.py /^def clean_up_interpreters():$/;" f +cleanall Tools/wasm/wasm_build.py /^ cleanall="remove all build directories",$/;" v +cleandoc Lib/inspect.py /^def cleandoc(doc):$/;" f +cleanout Lib/test/test_pkg.py /^def cleanout(root):$/;" f +cleanreturn Python/getargs.c /^cleanreturn(int retval, freelist_t *freelist)$/;" f file: +cleanup Lib/idlelib/idle_test/test_sidebar.py /^ def cleanup():$/;" f function:ShellSidebarTest.test_font +cleanup Lib/idlelib/idle_test/test_sidebar.py /^ def cleanup():$/;" f function:ShellSidebarTest.test_highlight_colors +cleanup Lib/tempfile.py /^ def cleanup(self):$/;" m class:TemporaryDirectory +cleanup Lib/tempfile.py /^ def cleanup(self, windows=(_os.name == 'nt'), unlink=_os.unlink):$/;" m class:_TemporaryFileCloser +cleanup Lib/test/libregrtest/main.py /^ def cleanup(self):$/;" m class:Regrtest +cleanup Lib/test/ssl_servers.py /^ def cleanup():$/;" f function:make_https_server +cleanup Lib/test/support/__init__.py /^ def cleanup():$/;" f function:patch +cleanup Lib/test/test_asyncio/test_base_events.py /^ def cleanup():$/;" f function:BaseLoopSockSendfileTests.prepare +cleanup Lib/test/test_asyncio/test_proactor_events.py /^ def cleanup():$/;" f function:ProactorEventLoopUnixSockSendfileTests.prepare +cleanup Lib/test/test_asyncio/test_sendfile.py /^ def cleanup():$/;" f function:SendfileMixin.prepare_sendfile +cleanup Lib/test/test_asyncio/test_sendfile.py /^ def cleanup():$/;" f function:SockSendfileMixin.prepare_socksendfile +cleanup Lib/test/test_asyncio/test_unix_events.py /^ def cleanup():$/;" f function:SelectorEventLoopUnixSockSendfileTests.prepare +cleanup Lib/test/test_import/__init__.py /^ def cleanup():$/;" f function:PycacheTests.test_package___cached__ +cleanup Lib/test/test_import/__init__.py /^ def cleanup():$/;" f function:PycacheTests.test_package___cached___from_pyc +cleanup Lib/test/test_logging.py /^ def cleanup():$/;" f function:LoggerAdapterTest.setUp +cleanup Lib/test/test_logging.py /^ def cleanup(h1, h2, fn):$/;" f function:BasicConfigTest.test_filemode +cleanup Lib/test/test_logging.py /^ def cleanup(h1, h2, fn):$/;" f function:BasicConfigTest.test_filename +cleanup Lib/test/test_logging.py /^ def cleanup(self):$/;" m class:BasicConfigTest +cleanup Lib/test/test_pathlib.py /^ def cleanup():$/;" f function:_BasePathTest.setUp +cleanup Lib/test/test_sax.py /^ def cleanup():$/;" f function:StreamReaderWriterXmlgenTest.ioclass +cleanup Lib/test/test_site.py /^ def cleanup(self, prep=False):$/;" m class:PthFile +cleanup Lib/test/test_unittest/test_async_case.py /^ async def cleanup(self, fut):$/;" m class:TestAsyncCase.test_debug_cleanup_same_loop.Test +cleanup Lib/test/test_unittest/test_discovery.py /^ def cleanup():$/;" f function:TestDiscovery.setup_module_clash +cleanup Lib/test/test_unittest/test_discovery.py /^ def cleanup():$/;" f function:TestDiscovery.test_module_symlink_ok +cleanup Lib/test/test_unittest/test_runner.py /^ def cleanup():$/;" f function:Test_TextTestRunner.testRunnerRegistersResult +cleanup Lib/test/test_unittest/test_runner.py /^ def cleanup(*args, **kwargs):$/;" f function:TestModuleCleanUp.test_addClassCleanup_arg_errors +cleanup Lib/test/test_unittest/test_runner.py /^ def cleanup(*args, **kwargs):$/;" f function:TestModuleCleanUp.test_addCleanup_arg_errors +cleanup Lib/test/test_unittest/test_runner.py /^ def cleanup(*args, **kwargs):$/;" f function:TestModuleCleanUp.test_addModuleCleanup_arg_errors +cleanup Lib/test/test_unittest/test_runner.py /^def cleanup(ordering, blowUp=False):$/;" f +cleanup Lib/test/test_xml_etree.py /^ def cleanup():$/;" f function:setUpModule +cleanup Lib/urllib/request.py /^ def cleanup(self):$/;" m class:URLopener +cleanup Modules/posixmodule.c /^ PyObject *cleanup;$/;" m struct:__anon478 file: +cleanup Python/compile.c /^ jump_target_label cleanup;$/;" m struct:__anon673 file: +cleanup Tools/clinic/clinic.py /^ def cleanup(self) -> str:$/;" m class:CConverter +cleanup Tools/clinic/clinic.py /^ def cleanup(self):$/;" m class:Py_UNICODE_converter +cleanup Tools/clinic/clinic.py /^ def cleanup(self):$/;" m class:Py_buffer_converter +cleanup Tools/importbench/importbench.py /^ def cleanup():$/;" f function:_writing_bytecode.writing_bytecode_benchmark +cleanup Tools/importbench/importbench.py /^ def cleanup():$/;" f function:source_writing_bytecode +cleanup1 Lib/test/test_unittest/test_runner.py /^ def cleanup1():$/;" f function:TestClassCleanup.test_doClassCleanups_with_errors_addClassCleanUp +cleanup1 Lib/test/test_unittest/test_runner.py /^ def cleanup1():$/;" f function:TestCleanUp.testCleanUpWithErrors +cleanup1 Lib/test/test_unittest/test_runner.py /^ def cleanup1():$/;" f function:TestCleanUp.testCleanupInRun +cleanup1 Lib/test/test_unittest/test_runner.py /^ def cleanup1():$/;" f function:TestCleanUp.testTestCaseDebugExecutesCleanups +cleanup1 Lib/test/test_unittest/test_runner.py /^ def cleanup1():$/;" f function:TestModuleCleanUp.test_module_cleanUp_with_multiple_classes +cleanup1 Lib/test/test_unittest/test_runner.py /^ def cleanup1(*args, **kwargs):$/;" f function:TestCleanUp.testCleanUp +cleanup2 Lib/test/test_unittest/test_runner.py /^ def cleanup2():$/;" f function:TestClassCleanup.test_doClassCleanups_with_errors_addClassCleanUp +cleanup2 Lib/test/test_unittest/test_runner.py /^ def cleanup2():$/;" f function:TestCleanUp.testCleanUpWithErrors +cleanup2 Lib/test/test_unittest/test_runner.py /^ def cleanup2():$/;" f function:TestCleanUp.testCleanupInRun +cleanup2 Lib/test/test_unittest/test_runner.py /^ def cleanup2():$/;" f function:TestCleanUp.testTestCaseDebugExecutesCleanups +cleanup2 Lib/test/test_unittest/test_runner.py /^ def cleanup2():$/;" f function:TestModuleCleanUp.test_module_cleanUp_with_multiple_classes +cleanup2 Lib/test/test_unittest/test_runner.py /^ def cleanup2(*args, **kwargs):$/;" f function:TestCleanUp.testCleanUp +cleanup3 Lib/test/test_unittest/test_runner.py /^ def cleanup3():$/;" f function:TestCleanUp.testCleanupInRun +cleanup3 Lib/test/test_unittest/test_runner.py /^ def cleanup3():$/;" f function:TestCleanUp.testTestCaseDebugExecutesCleanups +cleanup3 Lib/test/test_unittest/test_runner.py /^ def cleanup3():$/;" f function:TestModuleCleanUp.test_module_cleanUp_with_multiple_classes +cleanup4 Lib/test/test_unittest/test_runner.py /^ def cleanup4():$/;" f function:TestCleanUp.testTestCaseDebugExecutesCleanups +cleanup_buffer Python/getargs.c /^cleanup_buffer(PyObject *self, void *ptr)$/;" f file: +cleanup_called Lib/tempfile.py /^ cleanup_called = False$/;" v class:_TemporaryFileCloser +cleanup_fds Lib/test/test_io.py /^ def cleanup_fds():$/;" f function:MiscIOTest._check_warn_on_dealloc_fd +cleanup_frame Lib/idlelib/idle_test/test_textview.py /^ def cleanup_frame():$/;" f function:ScrollableTextFrameTest.make_frame +cleanup_headers Lib/wsgiref/handlers.py /^ def cleanup_headers(self):$/;" m class:BaseHandler +cleanup_ptr Python/getargs.c /^cleanup_ptr(PyObject *self, void *ptr)$/;" f file: +cleanup_root Lib/idlelib/idle_test/test_squeezer.py /^ def cleanup_root():$/;" f function:get_test_tk_root +cleanup_tb Lib/test/test_traceback.py /^ def cleanup_tb(tb):$/;" f function:TracebackFormatTests.test_traceback_format_with_cleared_frames +cleanup_traceback Lib/idlelib/run.py /^def cleanup_traceback(tb, exclude):$/;" f +clear Lib/_collections_abc.py /^ def clear(self):$/;" m class:MutableMapping +clear Lib/_collections_abc.py /^ def clear(self):$/;" m class:MutableSequence +clear Lib/_collections_abc.py /^ def clear(self):$/;" m class:MutableSet +clear Lib/_weakrefset.py /^ def clear(self):$/;" m class:WeakSet +clear Lib/asyncio/locks.py /^ def clear(self):$/;" m class:Event +clear Lib/collections/__init__.py /^ def clear(self):$/;" m class:ChainMap +clear Lib/collections/__init__.py /^ def clear(self):$/;" m class:OrderedDict +clear Lib/collections/__init__.py /^ def clear(self):$/;" m class:UserList +clear Lib/concurrent/futures/process.py /^ def clear(self):$/;" m class:_ThreadWakeup +clear Lib/email/message.py /^ def clear(self):$/;" m class:MIMEPart +clear Lib/http/cookiejar.py /^ def clear(self, domain=None, path=None, name=None):$/;" m class:CookieJar +clear Lib/idlelib/config.py /^ def clear(self):$/;" m class:ConfigChanges +clear Lib/idlelib/configdialog.py /^ def clear(self):$/;" m class:VarTrace +clear Lib/idlelib/scrolledlist.py /^ def clear(self):$/;" m class:ScrolledList +clear Lib/importlib/_bootstrap.py /^ def clear(self):$/;" m class:_WeakValueDictionary +clear Lib/mailbox.py /^ def clear(self):$/;" m class:Mailbox +clear Lib/multiprocessing/managers.py /^ def clear(self):$/;" m class:EventProxy +clear Lib/multiprocessing/synchronize.py /^ def clear(self):$/;" m class:Event +clear Lib/test/test_functools.py /^ def clear(self):$/;" m class:TestSingleDispatch.test_cache_invalidation.TracingDict +clear Lib/test/test_functools.py /^ def clear():$/;" f function:TestLRU.test_lru_cache_threaded +clear Lib/threading.py /^ def clear(self):$/;" m class:Event +clear Lib/turtle.py /^ def clear(self):$/;" m class:RawTurtle +clear Lib/turtle.py /^ def clear(self):$/;" m class:TurtleScreen +clear Lib/turtledemo/nim.py /^ def clear(self):$/;" m class:NimView +clear Lib/xml/dom/pulldom.py /^ def clear(self):$/;" m class:DOMEventStream +clear Lib/xml/dom/pulldom.py /^ def clear(self):$/;" m class:PullDOM +clear Lib/xml/etree/ElementTree.py /^ def clear(self):$/;" m class:Element +clear Tools/clinic/clinic.py /^ def clear(self):$/;" m class:BufferSeries +clear Tools/clinic/clinic.py /^ def clear(self):$/;" m class:Destination +clearBreakpoints Lib/bdb.py /^ def clearBreakpoints():$/;" m class:Breakpoint +clearCanvas Lib/turtledemo/__main__.py /^ def clearCanvas(self):$/;" m class:DemoWindow +clearEntries Modules/_lsprof.c /^static void clearEntries(ProfilerObject *pObj)$/;" f file: +clear_all_breaks Lib/bdb.py /^ def clear_all_breaks(self):$/;" m class:Bdb +clear_all_file_breaks Lib/bdb.py /^ def clear_all_file_breaks(self, filename):$/;" m class:Bdb +clear_all_file_breaks Lib/idlelib/debugger_r.py /^ def clear_all_file_breaks(self, filename):$/;" m class:IdbAdapter +clear_all_file_breaks Lib/idlelib/debugger_r.py /^ def clear_all_file_breaks(self, filename):$/;" m class:IdbProxy +clear_bpbynumber Lib/bdb.py /^ def clear_bpbynumber(self, arg):$/;" m class:Bdb +clear_break Lib/bdb.py /^ def clear_break(self, filename, lineno):$/;" m class:Bdb +clear_break Lib/idlelib/debugger_r.py /^ def clear_break(self, filename, lineno):$/;" m class:IdbAdapter +clear_break Lib/idlelib/debugger_r.py /^ def clear_break(self, filename, lineno):$/;" m class:IdbProxy +clear_breakpoint_here Lib/idlelib/debugger.py /^ def clear_breakpoint_here(self, filename, lineno):$/;" m class:Debugger +clear_breakpoint_here Lib/idlelib/pyshell.py /^ def clear_breakpoint_here(self, event=None):$/;" m class:PyShellEditorWindow +clear_cache Lib/filecmp.py /^def clear_cache():$/;" f +clear_cache Lib/urllib/parse.py /^def clear_cache():$/;" f +clear_cache Lib/urllib/request.py /^ def clear_cache(self):$/;" m class:CacheFTPHandler +clear_cache Lib/zoneinfo/_zoneinfo.py /^ def clear_cache(cls, *, only_keys=None):$/;" m class:ZoneInfo +clear_caches Lib/test/libregrtest/utils.py /^def clear_caches():$/;" f +clear_caches Lib/test/test_platform.py /^ def clear_caches(self):$/;" m class:PlatformTest +clear_caches Lib/test/test_typing.py /^ def clear_caches(self):$/;" m class:BaseTestCase +clear_callback_context Modules/_sqlite/connection.c /^clear_callback_context(callback_context *ctx)$/;" f file: +clear_cdata_mode Lib/html/parser.py /^ def clear_cdata_mode(self):$/;" m class:HTMLParser +clear_code_watcher Modules/_testcapi/watchers.c /^clear_code_watcher(PyObject *self, PyObject *watcher_id)$/;" f file: +clear_content Lib/email/message.py /^ def clear_content(self):$/;" m class:MIMEPart +clear_datastack Python/pystate.c /^clear_datastack(PyThreadState *tstate)$/;" f file: +clear_dict_watcher Modules/_testcapi/watchers.c /^clear_dict_watcher(PyObject *self, PyObject *watcher_id)$/;" f file: +clear_directory Lib/test/test_venv.py /^ def clear_directory(self, path):$/;" m class:BasicTest +clear_directory Lib/venv/__init__.py /^ def clear_directory(self, path):$/;" m class:EnvBuilder +clear_expired_cookies Lib/http/cookiejar.py /^ def clear_expired_cookies(self):$/;" m class:CookieJar +clear_extension Modules/_testinternalcapi.c /^clear_extension(PyObject *self, PyObject *args)$/;" f file: +clear_extension_cache Lib/copyreg.py /^def clear_extension_cache():$/;" f +clear_extra Modules/_elementtree.c /^clear_extra(ElementObject* self)$/;" f +clear_file_breaks Lib/idlelib/debugger.py /^ def clear_file_breaks(self, filename):$/;" m class:Debugger +clear_file_breaks Lib/idlelib/pyshell.py /^ def clear_file_breaks(self):$/;" m class:PyShellEditorWindow +clear_flags Lib/_pydecimal.py /^ def clear_flags(self):$/;" m class:Context +clear_frames Lib/traceback.py /^def clear_frames(tb):$/;" f +clear_freelists Modules/gcmodule.c /^clear_freelists(PyInterpreterState *interp)$/;" f file: +clear_func_watcher Modules/_testcapi/watchers.c /^clear_func_watcher(PyObject *self, PyObject *watcher_id_obj)$/;" f file: +clear_gen_frame Python/ceval.c /^clear_gen_frame(PyThreadState *tstate, _PyInterpreterFrame * frame)$/;" f file: +clear_global_state Modules/_testsinglephase.c /^clear_global_state(void)$/;" f file: +clear_handlers Modules/pyexpat.c /^clear_handlers(xmlparseobject *self, int initial)$/;" f file: +clear_ignored_deprecations Lib/test/support/__init__.py /^def clear_ignored_deprecations(*tokens: object) -> None:$/;" f +clear_interned_dict Objects/unicodeobject.c /^clear_interned_dict(PyInterpreterState *interp)$/;" f file: +clear_interpreter Modules/_xxinterpchannelsmodule.c /^clear_interpreter(void *data)$/;" f file: +clear_key_seq Lib/idlelib/config_key.py /^ def clear_key_seq(self):$/;" m class:GetKeysFrame +clear_managed_dict Modules/_testcapimodule.c /^clear_managed_dict(PyObject *self, PyObject *obj)$/;" f file: +clear_memo Lib/pickle.py /^ def clear_memo(self):$/;" m class:_Pickler +clear_module_state Modules/_testinternalcapi.c /^clear_module_state(module_state *state)$/;" f file: +clear_module_state Modules/_xxinterpchannelsmodule.c /^clear_module_state(module_state *state)$/;" f file: +clear_module_state Modules/_xxsubinterpretersmodule.c /^clear_module_state(module_state *state)$/;" f file: +clear_overloads Lib/typing.py /^def clear_overloads():$/;" f +clear_selector Lib/test/test_asyncio/test_base_events.py /^ def clear_selector():$/;" f function:BaseEventLoopTests.test_single_selecter_event_callback_after_stopping +clear_session_cookies Lib/http/cookiejar.py /^ def clear_session_cookies(self):$/;" m class:CookieJar +clear_singlephase_extension Python/import.c /^clear_singlephase_extension(PyInterpreterState *interp,$/;" f file: +clear_slots Objects/typeobject.c /^clear_slots(PyTypeObject *type, PyObject *self)$/;" f file: +clear_state Modules/_testsinglephase.c /^clear_state(module_state *state)$/;" f file: +clear_static_tp_subclasses Objects/typeobject.c /^clear_static_tp_subclasses(PyTypeObject *type)$/;" f file: +clear_static_type_objects Objects/typeobject.c /^clear_static_type_objects(PyInterpreterState *interp, PyTypeObject *type)$/;" f file: +clear_status Modules/_decimal/tests/deccheck.py /^ def clear_status(self):$/;" m class:Context +clear_strong_cache Modules/_zoneinfo.c /^clear_strong_cache(zoneinfo_state *state, const PyTypeObject *const type)$/;" f +clear_survivors Lib/test/test_finalization.py /^ def clear_survivors(self):$/;" m class:TestBase +clear_thread_frame Python/ceval.c /^clear_thread_frame(PyThreadState *tstate, _PyInterpreterFrame * frame)$/;" f file: +clear_tp_bases Objects/typeobject.c /^clear_tp_bases(PyTypeObject *self)$/;" f file: +clear_tp_dict Objects/typeobject.c /^clear_tp_dict(PyTypeObject *self)$/;" f file: +clear_tp_mro Objects/typeobject.c /^clear_tp_mro(PyTypeObject *self)$/;" f file: +clear_tp_subclasses Objects/typeobject.c /^clear_tp_subclasses(PyTypeObject *self)$/;" f file: +clear_traceback_frames Lib/test/test_frame.py /^ def clear_traceback_frames(self, tb):$/;" m class:ClearTest +clear_traps Lib/_pydecimal.py /^ def clear_traps(self):$/;" m class:Context +clear_traps Modules/_decimal/tests/deccheck.py /^ def clear_traps(self):$/;" m class:Context +clear_type_watcher Modules/_testcapi/watchers.c /^clear_type_watcher(PyObject *self, PyObject *watcher_id)$/;" f file: +clear_typing_caches Lib/test/test_types.py /^def clear_typing_caches():$/;" f +clear_unreachable_mask Modules/gcmodule.c /^clear_unreachable_mask(PyGC_Head *unreachable)$/;" f file: +clear_watcher Lib/test/test_capi/test_watchers.py /^ def clear_watcher(self, watcher_id):$/;" m class:TestDictWatchers +clear_watcher Lib/test/test_capi/test_watchers.py /^ def clear_watcher(self, watcher_id):$/;" m class:TestTypeWatchers +clear_weakref Objects/weakrefobject.c /^clear_weakref(PyWeakReference *self)$/;" f file: +clearcache Lib/linecache.py /^def clearcache():$/;" f +cleared Include/cpython/pystate.h /^ unsigned int cleared:1;$/;" m struct:_ts::__anon219 +clearscreen Lib/turtle.py /^ clearscreen = clear$/;" v class:TurtleScreen +clearstamp Lib/turtle.py /^ def clearstamp(self, stampid):$/;" m class:RawTurtle +clearstamps Lib/turtle.py /^ def clearstamps(self, n=None):$/;" m class:RawTurtle +cleaunup_test_dir Lib/test/test_dbm.py /^def cleaunup_test_dir():$/;" f +cli Lib/pydoc.py /^def cli():$/;" f +cli_args_ok Lib/idlelib/idle_test/test_query.py /^ cli_args_ok = query.CustomRun.cli_args_ok$/;" v class:CustomRunCLIargsokTest.Dummy_CustomRun +cli_args_ok Lib/idlelib/idle_test/test_query.py /^ def cli_args_ok(self):$/;" m class:CustomRunEntryokTest.Dummy_CustomRun +cli_args_ok Lib/idlelib/query.py /^ def cli_args_ok(self):$/;" m class:CustomRun +cli_sock Lib/test/test_socket.py /^ def cli_sock(self):$/;" m class:SendrecvmsgConnectedBase +cli_sock Lib/test/test_socket.py /^ def cli_sock(self):$/;" m class:SendrecvmsgConnectionlessBase +click_event Lib/idlelib/scrolledlist.py /^ def click_event(self, event):$/;" m class:ScrolledList +click_it Lib/idlelib/idle_test/test_configdialog.py /^ def click_it(start):$/;" f function:HighPageTest.test_highlight_target_text_mouse +client Lib/test/test_asyncio/test_buffered_proto.py /^ async def client(addr):$/;" f function:BaseTestBufferedProtocol.test_buffered_proto_create_connection +client Lib/test/test_asyncio/test_events.py /^ def client():$/;" f function:EventLoopTestsMixin.test_connect_accepted_socket +client Lib/test/test_asyncio/test_server.py /^ def client(sock, addr):$/;" f function:BaseStartServer.test_start_server_1 +client Lib/test/test_asyncio/test_server.py /^ def client(sock, addr):$/;" f function:SelectorStartServerTests.test_start_unix_server_1 +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_create_connection_memory_leak +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_create_connection_ssl_1 +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_create_connection_ssl_failed_certificate +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_create_connection_ssl_slow_handshake +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_flush_before_shutdown +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_remote_shutdown_receives_trailing_data +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_shutdown_cleanly +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_shutdown_timeout_handler_not_set +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_ssl_handshake_connection_lost +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_ssl_handshake_timeout +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_start_tls_client_buf_proto_1 +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_start_tls_client_corrupted_ssl +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_start_tls_client_reg_proto_1 +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr):$/;" f function:TestSSL.test_start_tls_slow_client_cancel +client Lib/test/test_asyncio/test_ssl.py /^ async def client(addr, ctx):$/;" f function:TestSSL.test_shutdown_timeout_handler_leak +client Lib/test/test_asyncio/test_ssl.py /^ def client():$/;" f function:TestSSL.test_connect_accepted_socket +client Lib/test/test_asyncio/test_ssl.py /^ def client(sock, addr):$/;" f function:TestSSL.test_start_tls_server_1 +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_create_connection_memory_leak +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_create_connection_ssl_failed_certificate +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_create_connection_ssl_slow_handshake +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_handshake_timeout +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_start_tls_client_buf_proto_1 +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_start_tls_client_corrupted_ssl +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_start_tls_client_reg_proto_1 +client Lib/test/test_asyncio/test_sslproto.py /^ async def client(addr):$/;" f function:BaseStartTLS.test_start_tls_slow_client_cancel +client Lib/test/test_asyncio/test_sslproto.py /^ def client(sock, addr):$/;" f function:BaseStartTLS.test_start_tls_server_1 +client Lib/test/test_asyncio/test_streams.py /^ async def client(addr):$/;" f function:StreamTests.test_start_server +client Lib/test/test_asyncio/test_streams.py /^ async def client(addr):$/;" f function:StreamTests.test_start_tls +client Lib/test/test_asyncio/test_streams.py /^ async def client(host, port):$/;" f function:.test_drain_raises +client Lib/test/test_asyncio/test_streams.py /^ async def client(path):$/;" f function:StreamTests.test_start_unix_server +client Lib/test/test_imaplib.py /^ client = self.imap_class("localhost", addr, timeout=0.001)$/;" v class:NewIMAPTestsMixin.test_imaplib_timeout_functionality_test.TimeoutHandler +client Lib/test/test_imaplib.py /^ client = None$/;" v class:NewIMAPTestsMixin +client Lib/test/test_smtplib.py /^ client = smtplib.LMTP$/;" v class:LMTPGeneralTests +client Lib/test/test_smtplib.py /^ client = smtplib.SMTP$/;" v class:SMTPGeneralTests +client Lib/tkinter/__init__.py /^ client = wm_client$/;" v class:Wm +clientRun Lib/test/test_socket.py /^ def clientRun(self, test_func):$/;" m class:ThreadableTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ConnectedStreamTestMixin +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:FileObjectClassTestCase +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:NetworkConnectionAttributesTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:NetworkConnectionBehaviourTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:NetworkConnectionTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:SocketConnectedTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:SocketPairTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:TIPCThreadableTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadableTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadedCANSocketTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadedRDSSocketTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadedSocketTestMixin +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadedTCPSocketTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadedUDPLITESocketTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadedUDPSocketTest +clientSetUp Lib/test/test_socket.py /^ def clientSetUp(self):$/;" m class:ThreadedVSOCKSocketStreamTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ConnectedStreamTestMixin +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:FileObjectClassTestCase +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:NetworkConnectionAttributesTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:NetworkConnectionBehaviourTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:SocketConnectedTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:SocketPairTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ThreadableTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ThreadedCANSocketTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ThreadedRDSSocketTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ThreadedSocketTestMixin +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ThreadedTCPSocketTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ThreadedUDPLITESocketTest +clientTearDown Lib/test/test_socket.py /^ def clientTearDown(self):$/;" m class:ThreadedUDPSocketTest +client_is_modern Lib/wsgiref/handlers.py /^ def client_is_modern(self):$/;" m class:BaseHandler +client_pass Lib/test/test_socket.py /^ def client_pass(*args, **kwargs):$/;" f function:skipWithClientIf +client_sock Lib/test/test_asyncio/test_ssl.py /^ async def client_sock(addr):$/;" f function:TestSSL.test_create_connection_ssl_1 +clinic Tools/clinic/clinic.py /^clinic = None$/;" v +clinic_HKEY_converter PC/winreg.c /^clinic_HKEY_converter(winreg_state *st, PyObject *ob, void *p)$/;" f +clinic_get_state Modules/cjkcodecs/multibytecodec.c 42;" d file: +clinic_get_state Modules/cjkcodecs/multibytecodec.c 52;" d file: +clinic_py Lib/test/test_clinic.py /^ clinic_py = os.path.join(test_tools.toolsdir, "clinic", "clinic.py")$/;" v class:ClinicExternalTest +clinic_state Modules/_bz2module.c 245;" d file: +clinic_state Modules/_bz2module.c 247;" d file: +clinic_state Modules/_collectionsmodule.c 51;" d file: +clinic_state Modules/_collectionsmodule.c 53;" d file: +clinic_state Modules/_elementtree.c 4159;" d file: +clinic_state Modules/_elementtree.c 4161;" d file: +clinic_state Modules/_io/_iomodule.c 626;" d file: +clinic_state Modules/_io/_iomodule.c 628;" d file: +clinic_state Modules/_io/bufferedio.c 2423;" d file: +clinic_state Modules/_io/bufferedio.c 2425;" d file: +clinic_state Modules/_io/bytesio.c 995;" d file: +clinic_state Modules/_io/bytesio.c 997;" d file: +clinic_state Modules/_io/iobase.c 840;" d file: +clinic_state Modules/_io/iobase.c 842;" d file: +clinic_state Modules/_io/stringio.c 975;" d file: +clinic_state Modules/_io/stringio.c 977;" d file: +clinic_state Modules/_io/textio.c 30;" d file: +clinic_state Modules/_io/textio.c 32;" d file: +clinic_state Modules/_io/winconsoleio.c 1099;" d file: +clinic_state Modules/_io/winconsoleio.c 1101;" d file: +clinic_state Modules/_sqlite/blob.c 4;" d file: +clinic_state Modules/_sqlite/blob.c 6;" d file: +clinic_state Modules/_sqlite/connection.c 135;" d file: +clinic_state Modules/_sqlite/connection.c 137;" d file: +clinic_state Modules/_sqlite/cursor.c 37;" d file: +clinic_state Modules/_sqlite/cursor.c 39;" d file: +clinic_state Modules/_sqlite/module.c 36;" d file: +clinic_state Modules/_sqlite/module.c 38;" d file: +clinic_state Modules/_sqlite/row.c 27;" d file: +clinic_state Modules/_sqlite/row.c 29;" d file: +clinic_state Modules/itertoolsmodule.c 90;" d file: +clinic_state Modules/itertoolsmodule.c 94;" d file: +clinic_state Modules/socketmodule.c 591;" d file: +clinic_state Modules/socketmodule.c 593;" d file: +clinic_state_by_cls Modules/itertoolsmodule.c 91;" d file: +clinic_state_by_cls Modules/itertoolsmodule.c 93;" d file: +clipboard_append Lib/tkinter/__init__.py /^ def clipboard_append(self, string, **kw):$/;" m class:Misc +clipboard_clear Lib/tkinter/__init__.py /^ def clipboard_clear(self, **kw):$/;" m class:Misc +clipboard_get Lib/tkinter/__init__.py /^ def clipboard_get(self, **kw):$/;" m class:Misc +clock_seq Lib/uuid.py /^ def clock_seq(self):$/;" m class:UUID +clock_seq_hi_variant Lib/uuid.py /^ def clock_seq_hi_variant(self):$/;" m class:UUID +clock_seq_low Lib/uuid.py /^ def clock_seq_low(self):$/;" m class:UUID +clock_t Lib/test/test_lib2to3/data/infinite_recursion.py /^clock_t = __darwin_clock_t$/;" v +clockface Lib/turtledemo/clock.py /^def clockface(radius):$/;" f +clone Lib/email/_policybase.py /^ def clone(self, **kw):$/;" m class:_PolicyBase +clone Lib/email/generator.py /^ def clone(self, fp):$/;" m class:Generator +clone Lib/lib2to3/pytree.py /^ def clone(self):$/;" m class:Base +clone Lib/lib2to3/pytree.py /^ def clone(self):$/;" m class:Leaf +clone Lib/lib2to3/pytree.py /^ def clone(self):$/;" m class:Node +clone Lib/pipes.py /^ def clone(self):$/;" m class:Template +clone Lib/test/test_minidom.py /^ clone = document.cloneNode(deep=True)$/;" v class:MinidomTest.check_clone_node_entity.Handler +clone Lib/turtle.py /^ def clone(self):$/;" m class:RawTurtle +cloneNode Lib/xml/dom/minidom.py /^ def cloneNode(self, deep):$/;" m class:Document +cloneNode Lib/xml/dom/minidom.py /^ def cloneNode(self, deep):$/;" m class:DocumentType +cloneNode Lib/xml/dom/minidom.py /^ def cloneNode(self, deep):$/;" m class:Node +clone_combined_dict_keys Objects/dictobject.c /^clone_combined_dict_keys(PyDictObject *orig)$/;" f file: +clone_f1 Modules/clinic/_testclinic.c.h /^clone_f1(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +clone_f1_impl Modules/_testclinic.c /^clone_f1_impl(PyObject *module, const char *path)$/;" f file: +clone_f2 Modules/clinic/_testclinic.c.h /^clone_f2(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +clone_f2_impl Modules/_testclinic.c /^clone_f2_impl(PyObject *module, const char *path)$/;" f file: +clone_with_conv_f1 Modules/clinic/_testclinic.c.h /^clone_with_conv_f1(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +clone_with_conv_f1_impl Modules/_testclinic.c /^clone_with_conv_f1_impl(PyObject *module, custom_t path)$/;" f file: +clone_with_conv_f2 Modules/clinic/_testclinic.c.h /^clone_with_conv_f2(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +clone_with_conv_f2_impl Modules/_testclinic.c /^clone_with_conv_f2_impl(PyObject *module, custom_t path)$/;" f file: +cloned Lib/test/clinic.test.c /^cloned(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +close Lib/_collections_abc.py /^ def close(self):$/;" m class:Coroutine +close Lib/_collections_abc.py /^ def close(self):$/;" m class:Generator +close Lib/_compression.py /^ def close(self):$/;" m class:DecompressReader +close Lib/_pyio.py /^ def close(self):$/;" m class:BufferedRWPair +close Lib/_pyio.py /^ def close(self):$/;" m class:BufferedWriter +close Lib/_pyio.py /^ def close(self):$/;" m class:BytesIO +close Lib/_pyio.py /^ def close(self):$/;" m class:FileIO +close Lib/_pyio.py /^ def close(self):$/;" m class:IOBase +close Lib/_pyio.py /^ def close(self):$/;" m class:TextIOWrapper +close Lib/_pyio.py /^ def close(self):$/;" m class:_BufferedIOMixin +close Lib/aifc.py /^ def close(self):$/;" m class:Aifc_read +close Lib/aifc.py /^ def close(self):$/;" m class:Aifc_write +close Lib/asyncio/base_events.py /^ def close(self):$/;" m class:BaseEventLoop +close Lib/asyncio/base_events.py /^ def close(self):$/;" m class:Server +close Lib/asyncio/base_subprocess.py /^ def close(self):$/;" m class:BaseSubprocessTransport +close Lib/asyncio/events.py /^ def close(self):$/;" m class:AbstractEventLoop +close Lib/asyncio/events.py /^ def close(self):$/;" m class:AbstractServer +close Lib/asyncio/proactor_events.py /^ def close(self):$/;" m class:BaseProactorEventLoop +close Lib/asyncio/proactor_events.py /^ def close(self):$/;" m class:_ProactorBasePipeTransport +close Lib/asyncio/runners.py /^ def close(self):$/;" m class:Runner +close Lib/asyncio/selector_events.py /^ def close(self):$/;" m class:BaseSelectorEventLoop +close Lib/asyncio/selector_events.py /^ def close(self):$/;" m class:_SelectorSocketTransport +close Lib/asyncio/selector_events.py /^ def close(self):$/;" m class:_SelectorTransport +close Lib/asyncio/sslproto.py /^ def close(self):$/;" m class:_SSLProtocolTransport +close Lib/asyncio/streams.py /^ def close(self):$/;" m class:StreamWriter +close Lib/asyncio/transports.py /^ def close(self):$/;" m class:BaseTransport +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:AbstractChildWatcher +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:BaseChildWatcher +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:FastChildWatcher +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:MultiLoopChildWatcher +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:PidfdChildWatcher +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:SafeChildWatcher +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:ThreadedChildWatcher +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:_UnixReadPipeTransport +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:_UnixSelectorEventLoop +close Lib/asyncio/unix_events.py /^ def close(self):$/;" m class:_UnixWritePipeTransport +close Lib/asyncio/windows_events.py /^ def close(self):$/;" m class:IocpProactor +close Lib/asyncio/windows_events.py /^ def close(self):$/;" m class:PipeServer +close Lib/asyncio/windows_utils.py /^ def close(self, *, CloseHandle=_winapi.CloseHandle):$/;" m class:PipeHandle +close Lib/bz2.py /^ def close(self):$/;" m class:BZ2File +close Lib/chunk.py /^ def close(self):$/;" m class:Chunk +close Lib/concurrent/futures/process.py /^ def close(self):$/;" m class:_ThreadWakeup +close Lib/contextlib.py /^ def close(self):$/;" m class:ExitStack +close Lib/dbm/dumb.py /^ def close(self):$/;" m class:_Database +close Lib/email/feedparser.py /^ def close(self):$/;" m class:BufferedSubFile +close Lib/email/feedparser.py /^ def close(self):$/;" m class:FeedParser +close Lib/fileinput.py /^ def close(self):$/;" m class:FileInput +close Lib/fileinput.py /^def close():$/;" f +close Lib/ftplib.py /^ def close(self):$/;" m class:FTP +close Lib/gzip.py /^ def close(self):$/;" m class:GzipFile +close Lib/html/parser.py /^ def close(self):$/;" m class:HTMLParser +close Lib/http/client.py /^ def close(self):$/;" m class:HTTPConnection +close Lib/http/client.py /^ def close(self):$/;" m class:HTTPResponse +close Lib/idlelib/browser.py /^ def close(self, event=None):$/;" m class:ModuleBrowser +close Lib/idlelib/calltip.py /^ def close(self):$/;" m class:Calltip +close Lib/idlelib/colorizer.py /^ def close(self):$/;" m class:ColorDelegator +close Lib/idlelib/debugger.py /^ def close(self):$/;" m class:NamespaceViewer +close Lib/idlelib/debugger.py /^ def close(self, event=None):$/;" m class:Debugger +close Lib/idlelib/editor.py /^ def close(self):$/;" m class:EditorWindow +close Lib/idlelib/format.py /^ def close(self):$/;" m class:FormatParagraph +close Lib/idlelib/idle_test/htest.py /^ def close(_=None):$/;" f function:run +close Lib/idlelib/idle_test/test_grep.py /^ def close(self): # gui method$/;" m class:Dummy_grep +close Lib/idlelib/idle_test/test_run.py /^ def close(self):$/;" m class:MockShell +close Lib/idlelib/iomenu.py /^ def close(self):$/;" m class:IOBinding +close Lib/idlelib/percolator.py /^ def close(self):$/;" m class:Percolator +close Lib/idlelib/pyshell.py /^ def close(self):$/;" m class:PyShell +close Lib/idlelib/redirector.py /^ def close(self):$/;" m class:WidgetRedirector +close Lib/idlelib/replace.py /^ def close(self, event=None):$/;" m class:ReplaceDialog +close Lib/idlelib/rpc.py /^ def close(self):$/;" m class:SocketIO +close Lib/idlelib/run.py /^ def close(self):$/;" m class:StdInputFile +close Lib/idlelib/scrolledlist.py /^ def close(self):$/;" m class:ScrolledList +close Lib/idlelib/searchbase.py /^ def close(self, event=None):$/;" m class:SearchDialogBase +close Lib/imaplib.py /^ def close(self):$/;" m class:IMAP4 +close Lib/logging/__init__.py /^ def close(self):$/;" m class:FileHandler +close Lib/logging/__init__.py /^ def close(self):$/;" m class:Handler +close Lib/logging/handlers.py /^ def close(self):$/;" m class:BufferingHandler +close Lib/logging/handlers.py /^ def close(self):$/;" m class:MemoryHandler +close Lib/logging/handlers.py /^ def close(self):$/;" m class:NTEventLogHandler +close Lib/logging/handlers.py /^ def close(self):$/;" m class:SocketHandler +close Lib/logging/handlers.py /^ def close(self):$/;" m class:SysLogHandler +close Lib/lzma.py /^ def close(self):$/;" m class:LZMAFile +close Lib/mailbox.py /^ def close(self):$/;" m class:MH +close Lib/mailbox.py /^ def close(self):$/;" m class:Mailbox +close Lib/mailbox.py /^ def close(self):$/;" m class:Maildir +close Lib/mailbox.py /^ def close(self):$/;" m class:_PartialFile +close Lib/mailbox.py /^ def close(self):$/;" m class:_ProxyFile +close Lib/mailbox.py /^ def close(self):$/;" m class:_singlefileMailbox +close Lib/multiprocessing/connection.py /^ def close(self):$/;" m class:Listener +close Lib/multiprocessing/connection.py /^ def close(self):$/;" m class:SocketListener +close Lib/multiprocessing/connection.py /^ def close(self):$/;" m class:_ConnectionBase +close Lib/multiprocessing/dummy/connection.py /^ def close(self):$/;" m class:Connection +close Lib/multiprocessing/dummy/connection.py /^ def close(self):$/;" m class:Listener +close Lib/multiprocessing/managers.py /^ def close(self, *args):$/;" m class:IteratorProxy +close Lib/multiprocessing/pool.py /^ def close(self):$/;" m class:Pool +close Lib/multiprocessing/popen_fork.py /^ def close(self):$/;" m class:Popen +close Lib/multiprocessing/popen_spawn_win32.py /^ def close(self):$/;" m class:Popen +close Lib/multiprocessing/process.py /^ def close(self):$/;" m class:BaseProcess +close Lib/multiprocessing/process.py /^ def close(self):$/;" m class:_MainProcess +close Lib/multiprocessing/queues.py /^ def close(self):$/;" m class:Queue +close Lib/multiprocessing/queues.py /^ def close(self):$/;" m class:SimpleQueue +close Lib/multiprocessing/resource_sharer.py /^ def close():$/;" f function:DupFd.__init__ +close Lib/multiprocessing/shared_memory.py /^ def close(self):$/;" m class:SharedMemory +close Lib/os.py /^ def close(self):$/;" m class:._AddedDllDirectory +close Lib/os.py /^ def close(self):$/;" m class:._wrap_close +close Lib/poplib.py /^ def close(self):$/;" m class:POP3 +close Lib/selectors.py /^ def close(self):$/;" m class:_PollLikeSelector.DevpollSelector +close Lib/selectors.py /^ def close(self):$/;" m class:_PollLikeSelector.EpollSelector +close Lib/selectors.py /^ def close(self):$/;" m class:_PollLikeSelector.KqueueSelector +close Lib/selectors.py /^ def close(self):$/;" m class:BaseSelector +close Lib/selectors.py /^ def close(self):$/;" m class:_BaseSelectorImpl +close Lib/shelve.py /^ def close(self):$/;" m class:Shelf +close Lib/smtplib.py /^ def close(self):$/;" m class:SMTP +close Lib/socket.py /^ def close(self):$/;" m class:SocketIO +close Lib/socket.py /^ def close(self):$/;" m class:socket +close Lib/sunau.py /^ def close(self):$/;" m class:Au_read +close Lib/sunau.py /^ def close(self):$/;" m class:Au_write +close Lib/tarfile.py /^ def close(self):$/;" m class:TarFile +close Lib/tarfile.py /^ def close(self):$/;" m class:_FileInFile +close Lib/tarfile.py /^ def close(self):$/;" m class:_LowLevelFile +close Lib/tarfile.py /^ def close(self):$/;" m class:_Stream +close Lib/tarfile.py /^ def close(self):$/;" m class:_StreamProxy +close Lib/telnetlib.py /^ def close(self):$/;" m class:Telnet +close Lib/tempfile.py /^ def close(self):$/;" m class:SpooledTemporaryFile +close Lib/tempfile.py /^ def close(self):$/;" m class:_TemporaryFileCloser +close Lib/tempfile.py /^ def close(self):$/;" m class:_TemporaryFileWrapper +close Lib/test/_test_multiprocessing.py /^ def close(self):$/;" m class:Bunch +close Lib/test/_test_multiprocessing.py /^ def close(self, fd):$/;" m class:TestCloseFds +close Lib/test/audit-tests.py /^ def close(self):$/;" m class:TestHook +close Lib/test/libregrtest/win_utils.py /^ def close(self, kill=True):$/;" m class:WindowsLoadTracker +close Lib/test/mock_socket.py /^ def close(self):$/;" m class:MockFile +close Lib/test/mock_socket.py /^ def close(self):$/;" m class:MockSocket +close Lib/test/support/asyncore.py /^ def close(self):$/;" m class:.file_wrapper +close Lib/test/support/asyncore.py /^ def close(self):$/;" m class:dispatcher +close Lib/test/support/interpreters.py /^ def close(self):$/;" m class:Interpreter +close Lib/test/test__xxinterpchannels.py /^ def close(self, *, force=True):$/;" m class:ChannelState +close Lib/test/test_asyncio/test_base_events.py /^ def close(self):$/;" m class:BaseEventLoopWithSelectorTests.test_create_connection_ssl_server_hostname_default._SelectorTransportMock +close Lib/test/test_asyncio/test_events.py /^ def close(self):$/;" m class:CoroLike +close Lib/test/test_asyncio/test_pep492.py /^ def close(self):$/;" m class:FakeCoro +close Lib/test/test_asyncio/test_tasks.py /^ def close(self):$/;" m class:CoroLikeObject +close Lib/test/test_asyncio/utils.py /^ def close(self):$/;" m class:TestLoop +close Lib/test/test_collections.py /^ def close(self): pass$/;" m class:TestOneTrickPonyABCs.test_Generator.Gen +close Lib/test/test_collections.py /^ def close(self): pass$/;" m class:TestOneTrickPonyABCs.test_Generator.NonGen1 +close Lib/test/test_collections.py /^ def close(self): pass$/;" m class:TestOneTrickPonyABCs.test_Generator.NonGen2 +close Lib/test/test_collections.py /^ def close(self): pass$/;" m class:TestOneTrickPonyABCs.test_Generator.NonGen3 +close Lib/test/test_collections.py /^ def close(self):$/;" m class:TestOneTrickPonyABCs.test_Coroutine.CoroLike +close Lib/test/test_contextlib.py /^ def close(self):$/;" m class:ClosingTestCase.test_closing.C +close Lib/test/test_contextlib.py /^ def close(self):$/;" m class:ClosingTestCase.test_closing_error.C +close Lib/test/test_contextlib_async.py /^ def close(self):$/;" m class:TestAsyncExitStack.SyncAsyncExitStack +close Lib/test/test_fileinput.py /^ def close(self):$/;" m class:LineReader +close Lib/test/test_fileinput.py /^ def close(self):$/;" m class:MockFileInput +close Lib/test/test_ftplib.py /^ def close(self):$/;" m class:.SSLConnection +close Lib/test/test_httplib.py /^ def close(self):$/;" m class:EPipeSocket +close Lib/test/test_httplib.py /^ def close(self):$/;" m class:FakeSocket +close Lib/test/test_io.py /^ def close(self):$/;" m class:CIOTest.test_IOBase_finalize.MyIO +close Lib/test/test_io.py /^ def close(self):$/;" m class:CommonBufferedTests.test_override_destructor.MyBufferedIO +close Lib/test/test_io.py /^ def close(self):$/;" m class:IOTest._check_base_destructor.MyIO +close Lib/test/test_io.py /^ def close(self):$/;" m class:IOTest.test_destructor.MyFileIO +close Lib/test/test_io.py /^ def close(self):$/;" m class:TextIOWrapperTest.test_destructor.MyBytesIO +close Lib/test/test_io.py /^ def close(self):$/;" m class:TextIOWrapperTest.test_override_destructor.MyTextIO +close Lib/test/test_io.py /^ def close(self):$/;" m class:CloseFailureIO +close Lib/test/test_mailbox.py /^ def close(self):$/;" m class:FakeFileLikeObject +close Lib/test/test_nntplib.py /^ def close(self):$/;" m class:MockSocketTests.check_constructor_error_conditions.MockSocket +close Lib/test/test_ssl.py /^ def close(self):$/;" m class:ThreadedEchoServer.ConnectionHandler +close Lib/test/test_ssl.py /^ def close(self):$/;" m class:ThreadedEchoServer +close Lib/test/test_telnetlib.py /^ def close(self): pass$/;" m class:TelnetAlike +close Lib/test/test_types.py /^ def close(self): pass$/;" m class:CoroutineTests.test_duck_coro.CoroLike +close Lib/test/test_types.py /^ def close(self): pass$/;" m class:CoroutineTests.test_duck_corogen.CoroGenLike +close Lib/test/test_types.py /^ def close(self): pass$/;" m class:CoroutineTests.test_duck_gen.GenLike +close Lib/test/test_types.py /^ def close(self):$/;" m class:CoroutineTests.test_duck_functional_gen.Generator +close Lib/test/test_typing.py /^ def close(self): ...$/;" m class:ProtocolTests.test_collections_protocols_allowed.Custom +close Lib/test/test_typing.py /^ def close(self):$/;" m class:ProtocolTests.test_collections_protocols_allowed.B +close Lib/test/test_urllib.py /^ def close(self):$/;" f function:fakehttp.FakeHTTPConnection.connect +close Lib/test/test_urllib.py /^ def close(self):$/;" m class:FakeFTPMixin.fakeftp.FakeFtpWrapper +close Lib/test/test_urllib.py /^ def close(self):$/;" m class:fakehttp.FakeSocket +close Lib/test/test_urllib2.py /^ def close(self):$/;" m class:HandlerTests.test_ftp.MockFTPWrapper +close Lib/test/test_urllib2.py /^ def close(self):$/;" m class:MockFile +close Lib/test/test_urllib2.py /^ def close(self):$/;" m class:MockHTTPClass +close Lib/test/test_urllib2.py /^ def close(self):$/;" m class:MockHandler +close Lib/test/test_wsgiref.py /^ def close(self):$/;" m class:HandlerTests.testCloseOnError.error_app.CrashyIterable +close Lib/test/test_xml_etree.py /^ def close(self):$/;" m class:BugsTest.test_bug_200708_close.EchoTarget +close Lib/test/test_xml_etree.py /^ def close(self):$/;" m class:TreeBuilderTest.test_doctype.DoctypeParser +close Lib/test/test_xml_etree.py /^ def close(self):$/;" m class:TreeBuilderTest.test_dummy_builder.BaseDummyBuilder +close Lib/test/test_yield_from.py /^ def close(self_):$/;" m class:TestPEP380Operation.test_delegating_generators_claim_to_be_running.MyIt +close Lib/tkinter/tix.py /^ def close(self, entrypath):$/;" m class:CheckList +close Lib/tkinter/tix.py /^ def close(self, entrypath):$/;" m class:Tree +close Lib/types.py /^ def close(self):$/;" m class:_GeneratorWrapper +close Lib/typing.py /^ def close(self) -> None:$/;" m class:IO +close Lib/urllib/request.py /^ def close(self):$/;" m class:BaseHandler +close Lib/urllib/request.py /^ def close(self):$/;" m class:OpenerDirector +close Lib/urllib/request.py /^ def close(self):$/;" m class:URLopener +close Lib/urllib/request.py /^ def close(self):$/;" m class:ftpwrapper +close Lib/urllib/response.py /^ def close(self):$/;" m class:addclosehook +close Lib/wave.py /^ def close(self):$/;" m class:Wave_read +close Lib/wave.py /^ def close(self):$/;" m class:Wave_write +close Lib/wave.py /^ def close(self):$/;" m class:_Chunk +close Lib/wsgiref/handlers.py /^ def close(self):$/;" m class:BaseHandler +close Lib/wsgiref/simple_server.py /^ def close(self):$/;" m class:ServerHandler +close Lib/wsgiref/validate.py /^ def close(self):$/;" m class:ErrorWrapper +close Lib/wsgiref/validate.py /^ def close(self):$/;" m class:InputWrapper +close Lib/wsgiref/validate.py /^ def close(self):$/;" m class:IteratorWrapper +close Lib/xml/etree/ElementTree.py /^ def close(self):$/;" m class:TreeBuilder +close Lib/xml/etree/ElementTree.py /^ def close(self):$/;" m class:XMLParser +close Lib/xml/etree/ElementTree.py /^ def close(self):$/;" m class:XMLPullParser +close Lib/xml/sax/expatreader.py /^ def close(self):$/;" m class:ExpatParser +close Lib/xml/sax/xmlreader.py /^ def close(self):$/;" m class:IncrementalParser +close Lib/xmlrpc/client.py /^ def close(self):$/;" m class:ExpatParser +close Lib/xmlrpc/client.py /^ def close(self):$/;" m class:GzipDecodedResponse +close Lib/xmlrpc/client.py /^ def close(self):$/;" m class:Transport +close Lib/xmlrpc/client.py /^ def close(self):$/;" m class:Unmarshaller +close Lib/zipfile/__init__.py /^ def close(self):$/;" m class:ZipExtFile +close Lib/zipfile/__init__.py /^ def close(self):$/;" m class:ZipFile +close Lib/zipfile/__init__.py /^ def close(self):$/;" m class:_SharedFile +close Lib/zipfile/__init__.py /^ def close(self):$/;" m class:_Tellable +close Lib/zipfile/__init__.py /^ def close(self):$/;" m class:_ZipWriteFile +close Modules/selectmodule.c /^ PyObject *close;$/;" m struct:__anon572 file: +close Tools/clinic/cpp.py /^ def close(self) -> None:$/;" m class:Monitor +close Tools/freeze/bkfile.py /^ def close():$/;" f function:open +closeFileHandler Lib/test/test_logging.py /^def closeFileHandler(h, fn):$/;" f +closeRecvmsgFDs Lib/test/test_socket.py /^ def closeRecvmsgFDs(self, recvmsg_result):$/;" m class:SCMRightsTest +close_all Lib/test/support/asyncore.py /^def close_all(map=None, ignore_all=False):$/;" f +close_all_callback Lib/idlelib/filelist.py /^ def close_all_callback(self, *args, **kwds):$/;" m class:FileList +close_all_fds_except Lib/multiprocessing/util.py /^def close_all_fds_except(fds):$/;" f +close_blob Modules/_sqlite/blob.c /^close_blob(pysqlite_Blob *self)$/;" f file: +close_called Lib/tempfile.py /^ close_called = False$/;" v class:_TemporaryFileCloser +close_conn Lib/test/test_httpservers.py /^ def close_conn():$/;" f function:SimpleHTTPServerTestCase.check_status_and_reason +close_debugger Lib/idlelib/pyshell.py /^ def close_debugger(self):$/;" m class:PyShell +close_event Lib/idlelib/editor.py /^ def close_event(self, event):$/;" m class:EditorWindow +close_fd Lib/test/audiotests.py /^ close_fd = False$/;" v class:AudioTests +close_fd Lib/test/test_aifc.py /^ close_fd = True$/;" v class:AifcTest +close_fds Lib/multiprocessing/util.py /^def close_fds(*fds):$/;" f +close_fds Lib/test/test_socket.py /^ def close_fds(fds):$/;" f function:SendRecvFdsTests.testSendAndRecvFds +close_funcs Modules/_decimal/tests/randdec.py /^close_funcs = [$/;" v +close_hook Lib/idlelib/editor.py /^ def close_hook(self):$/;" m class:EditorWindow +close_loop Lib/test/test_asyncio/test_events.py /^ async def close_loop(loop):$/;" f function:EventLoopTestsMixin.test_close_running_event_loop +close_loop Lib/test/test_asyncio/utils.py /^ def close_loop(loop):$/;" m class:TestCase +close_pipe_transport Lib/test/test_asyncio/test_unix_events.py /^def close_pipe_transport(transport):$/;" f +close_pipes Lib/test/test_socket.py /^ def close_pipes(pipes):$/;" f function:SendRecvFdsTests.testSendAndRecvFds +close_queue Lib/test/_test_multiprocessing.py /^def close_queue(queue):$/;" f +close_remote_debugger Lib/idlelib/debugger_r.py /^def close_remote_debugger(rpcclt):$/;" f +close_request Lib/socketserver.py /^ def close_request(self, request):$/;" m class:BaseServer +close_request Lib/socketserver.py /^ def close_request(self, request):$/;" m class:TCPServer +close_request Lib/socketserver.py /^ def close_request(self, request):$/;" m class:UDPServer +close_server Lib/test/test_socket.py /^ def close_server(self):$/;" m class:SocketTestBase +close_subprocess_debugger Lib/idlelib/debugger_r.py /^def close_subprocess_debugger(rpcclt):$/;" f +close_to_emax_greater Modules/_decimal/tests/randdec.py /^def close_to_emax_greater(prec, emax, emin):$/;" f +close_to_emax_less Modules/_decimal/tests/randdec.py /^def close_to_emax_less(prec, emax, emin):$/;" f +close_to_emin_greater Modules/_decimal/tests/randdec.py /^def close_to_emin_greater(prec, emax, emin):$/;" f +close_to_emin_less Modules/_decimal/tests/randdec.py /^def close_to_emin_less(prec, emax, emin):$/;" f +close_to_etiny_greater Modules/_decimal/tests/randdec.py /^def close_to_etiny_greater(prec, emax, emin):$/;" f +close_to_etiny_less Modules/_decimal/tests/randdec.py /^def close_to_etiny_less(prec, emax, emin):$/;" f +close_to_min_etiny_greater Modules/_decimal/tests/randdec.py /^def close_to_min_etiny_greater(prec, max_prec, min_emin):$/;" f +close_to_min_etiny_less Modules/_decimal/tests/randdec.py /^def close_to_min_etiny_less(prec, max_prec, min_emin):$/;" f +close_to_one_greater Modules/_decimal/tests/randdec.py /^def close_to_one_greater(prec, emax, emin):$/;" f +close_to_one_less Modules/_decimal/tests/randdec.py /^def close_to_one_less(prec, emax, emin):$/;" f +close_to_zero_greater Modules/_decimal/tests/randdec.py /^def close_to_zero_greater(prec, emax, emin):$/;" f +close_to_zero_less Modules/_decimal/tests/randdec.py /^def close_to_zero_less(prec, emax, emin):$/;" f +close_transport Lib/test/test_asyncio/test_proactor_events.py /^def close_transport(transport):$/;" f +close_transport Lib/test/test_asyncio/test_selector_events.py /^def close_transport(transport):$/;" f +close_when_done Lib/test/support/asynchat.py /^ def close_when_done(self):$/;" m class:async_chat +closed Lib/_pyio.py /^ def closed(self):$/;" m class:BufferedRWPair +closed Lib/_pyio.py /^ def closed(self):$/;" m class:IOBase +closed Lib/_pyio.py /^ def closed(self):$/;" m class:TextIOWrapper +closed Lib/_pyio.py /^ def closed(self):$/;" m class:_BufferedIOMixin +closed Lib/asyncio/windows_events.py /^ def closed(self):$/;" m class:PipeServer +closed Lib/bz2.py /^ def closed(self):$/;" m class:BZ2File +closed Lib/gzip.py /^ def closed(self):$/;" m class:GzipFile +closed Lib/lzma.py /^ def closed(self):$/;" m class:LZMAFile +closed Lib/mailbox.py /^ def closed(self):$/;" m class:_ProxyFile +closed Lib/multiprocessing/connection.py /^ def closed(self):$/;" m class:_ConnectionBase +closed Lib/shelve.py /^ def closed(self, *args):$/;" m class:_ClosedDict +closed Lib/subprocess.py /^ closed = False$/;" v class:.Handle +closed Lib/tempfile.py /^ def closed(self):$/;" m class:SpooledTemporaryFile +closed Lib/test/test_io.py /^ closed = 0$/;" v class:CloseFailureIO +closed Lib/test/test_sax.py /^ closed = False$/;" v class:WriterXmlgenTest.ioclass +closed Lib/typing.py /^ def closed(self) -> bool:$/;" m class:IO +closed Modules/_io/stringio.c /^ char closed;$/;" m struct:__anon433 file: +closed Modules/_sqlite/cursor.h /^ int closed;$/;" m struct:__anon358 +closed_pattern_rule Parser/parser.c /^closed_pattern_rule(Parser *p)$/;" f file: +closed_pattern_type Parser/parser.c 151;" d file: +closefd Lib/_pyio.py /^ def closefd(self):$/;" m class:FileIO +closefd Modules/_io/fileio.c /^ unsigned int closefd : 1;$/;" m struct:__anon431 file: +closefd Modules/_io/winconsoleio.c /^ unsigned int closefd : 1;$/;" m struct:__anon432 file: +closegroup Lib/re/_parser.py /^ def closegroup(self, gid, p):$/;" m class:State +closehook Lib/test/test_urllib_response.py /^ def closehook():$/;" f function:TestResponse.test_addclosehook +closelog Lib/cgi.py /^def closelog():$/;" f +closep Tools/i18n/pygettext.py /^ closep = 0$/;" v class:main.Options +closep Tools/i18n/pygettext.py /^ closep = 1$/;" v class:main.Options +closep Tools/i18n/pygettext.py /^ closep = 0$/;" v class:main.Options +closep Tools/i18n/pygettext.py /^ closep = 1$/;" v class:main.Options +closing Lib/contextlib.py /^class closing(AbstractContextManager):$/;" c +closing Lib/idlelib/pyshell.py /^ closing = False$/;" v class:PyShell +closing Lib/test/support/asyncore.py /^ closing = False$/;" v class:dispatcher +closing Modules/_xxinterpchannelsmodule.c /^ struct _channel_closing *closing;$/;" m struct:_channel typeref:struct:_channel::_channel_closing file: +closure Include/descrobject.h /^ void *closure;$/;" m struct:PyGetSetDef +closure Lib/idlelib/browser.py /^ def closure():$/;" f function:_module_browser +closure Lib/lib2to3/pgen2/pgen.py /^ def closure(state):$/;" f function:ParserGenerator.make_dfa +closure Lib/test/test_importlib/test_abc.py /^ def closure(*args, **kwargs):$/;" f function:SourceLoaderBytecodeTests.test_set_data_raises_exceptions.raise_exception +closure Modules/_ctypes/malloc_closure.c /^ ffi_closure closure;$/;" m union:_tagITEM file: +closure Tools/clinic/clinic.py /^ def closure(f):$/;" f function:add_legacy_c_converter +closure_fcn Modules/_ctypes/callbacks.c /^static void closure_fcn(ffi_cif *cif,$/;" f file: +cls Include/internal/pycore_ast.h /^ expr_ty cls;$/;" m struct:_pattern::__anon107::__anon112 +cls Include/internal/pycore_ast_state.h /^ PyObject *cls;$/;" m struct:ast_state +cls Include/internal/pycore_interp.h /^ PyObject *cls; \/\/ weakref to a PyTypeObject$/;" m struct:_xidregitem +cls Include/object.h /^PyAPI_FUNC(Py_ssize_t) PyType_GetTypeDataSize(PyTypeObject *cls);$/;" v +cls Lib/test/test_ast.py /^ def cls(bases=None, keywords=None, body=None, decorator_list=None, type_params=None):$/;" f function:ASTValidatorTests.test_classdef +cls Lib/test/test_asyncio/test_futures.py /^ cls = CSubFuture$/;" v class:CSubFutureTests +cls Lib/test/test_asyncio/test_futures.py /^ cls = None$/;" v class:CFutureTests +cls Lib/test/test_asyncio/test_futures.py /^ cls = None$/;" v class:CSubFutureTests +cls Lib/test/test_asyncio/test_futures.py /^ cls = futures._CFuture$/;" v class:CFutureTests +cls Lib/test/test_asyncio/test_futures.py /^ cls = futures._PyFuture$/;" v class:PyFutureTests +cls Lib/test/test_asyncio/test_futures2.py /^ cls = tasks._CTask$/;" v class:CFutureTests +cls Lib/test/test_asyncio/test_futures2.py /^ cls = tasks._PyTask$/;" v class:PyFutureTests +cls Lib/test/test_capi/test_structmembers.py /^ cls = _test_structmembersType_NewAPI$/;" v class:ReadWriteTests_NewAPI +cls Lib/test/test_capi/test_structmembers.py /^ cls = _test_structmembersType_NewAPI$/;" v class:TestWarnings_NewAPI +cls Lib/test/test_capi/test_structmembers.py /^ cls = _test_structmembersType_OldAPI$/;" v class:ReadWriteTests_OldAPI +cls Lib/test/test_capi/test_structmembers.py /^ cls = _test_structmembersType_OldAPI$/;" v class:TestWarnings_OldAPI +cls Lib/test/test_functools.py /^ cls = functools.partialmethod(classmethod(capture), d=9)$/;" v class:TestPartialMethod.A +cls Lib/test/test_pathlib.py /^ class cls(pathlib.Path):$/;" c class:PathSubclassTest +cls Lib/test/test_pathlib.py /^ class cls(pathlib.PurePath):$/;" c class:PurePathSubclassTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.Path$/;" v class:PathTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.PosixPath$/;" v class:PosixPathAsPureTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.PosixPath$/;" v class:PosixPathTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.PurePath$/;" v class:PurePathTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.PurePosixPath$/;" v class:PurePosixPathTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.PureWindowsPath$/;" v class:PureWindowsPathTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.WindowsPath$/;" v class:WindowsPathAsPureTest +cls Lib/test/test_pathlib.py /^ cls = pathlib.WindowsPath$/;" v class:WindowsPathTest +cls Lib/test/test_property.py /^ class cls:$/;" c class:PropertyUnreachableAttributeNoName +cls Lib/test/test_property.py /^ class cls:$/;" c class:PropertyUnreachableAttributeWithName +cls Lib/test/test_property.py /^ cls = None$/;" v class:_PropertyUnreachableAttribute +cls Tools/clinic/clinic.py /^ cls = module[name]$/;" v +cls135 Lib/test/inspect_fodder2.py /^class cls135:$/;" c +cls142 Lib/test/inspect_fodder2.py /^class cls142:$/;" c +cls149 Lib/test/inspect_fodder2.py /^class cls149:$/;" c +cls160 Lib/test/inspect_fodder2.py /^class cls160:$/;" c +cls166 Lib/test/inspect_fodder2.py /^class cls166:$/;" c +cls173 Lib/test/inspect_fodder2.py /^class cls173:$/;" c +cls175 Lib/test/inspect_fodder2.py /^ class cls175:$/;" c class:cls173 +cls179 Lib/test/inspect_fodder2.py /^class cls179:$/;" c +cls183 Lib/test/inspect_fodder2.py /^class cls183:$/;" c +cls185 Lib/test/inspect_fodder2.py /^ class cls185:$/;" c class:cls183 +cls196 Lib/test/inspect_fodder2.py /^class cls196:$/;" c +cls200 Lib/test/inspect_fodder2.py /^ class cls200:$/;" c class:cls196 +cls203 Lib/test/inspect_fodder2.py /^class cls203:$/;" c +cls204 Lib/test/inspect_fodder2.py /^ class cls204:$/;" c class:cls203 +cls205 Lib/test/inspect_fodder2.py /^ class cls205:$/;" c class:cls203.cls204 +cls205 Lib/test/inspect_fodder2.py /^ class cls205:$/;" c class:cls203.cls207 +cls207 Lib/test/inspect_fodder2.py /^ class cls207:$/;" c class:cls203 +cls213 Lib/test/inspect_fodder2.py /^ class cls213:$/;" c function:func212 +cls213 Lib/test/inspect_fodder2.py /^class cls213:$/;" c +cls220 Lib/test/inspect_fodder2.py /^ class cls220:$/;" c function:cls213.func219 +cls226 Lib/test/inspect_fodder2.py /^ class cls226:$/;" c function:func225 +cls226 Lib/test/inspect_fodder2.py /^class cls226:$/;" c +cls233 Lib/test/inspect_fodder2.py /^ class cls233:$/;" c function:cls226.func232 +cls238 Lib/test/inspect_fodder2.py /^ class cls238:$/;" c class:cls226 +cls239 Lib/test/inspect_fodder2.py /^ class cls239:$/;" c class:cls226.cls238 +cls70 Lib/test/inspect_fodder2.py /^ class cls70:$/;" c function:func69 +cls82 Lib/test/inspect_fodder2.py /^class cls82:$/;" c +cls_attrs Objects/unionobject.c /^static const char* const cls_attrs[] = {$/;" v file: +cls_context_manager Lib/test/test_functools.py /^ def cls_context_manager(cls, arg: int) -> str:$/;" m class:TestSingleDispatch.test_double_wrapped_methods.WithSingleDispatch +cls_context_manager Lib/test/test_functools.py /^ def cls_context_manager(cls, arg: int) -> str:$/;" m class:TestSingleDispatch.test_double_wrapped_methods.WithoutSingleDispatch +cls_func Lib/test/test_functools.py /^ def cls_func(cls, arg: int) -> str:$/;" m class:TestSingleDispatch.test_method_wrapping_attributes.A +clsm Lib/test/test_doctest2.py /^ def clsm(cls, val):$/;" m class:C +clsmethod Lib/test/test_typing.py /^ def clsmethod(cls): ...$/;" m class:FinalDecoratorTests.test_dunder_final.Methods +clsmethod Lib/test/test_typing.py /^ def clsmethod(cls): ...$/;" m class:MethodHolder +cm Lib/idlelib/idle_test/test_calltip.py /^ def cm(cls, a): 'doc'$/;" m class:TC +cm Lib/test/pyclbr_input.py /^ def cm(self): pass$/;" m class:C +cm Lib/test/test_contextlib.py /^ cm = ExitCM(_expect_exc)$/;" v class:TestBaseExitStack.test_push.ExitCM +cm Lib/test/test_contextlib.py /^ cm = ExitCM(_expect_ok)$/;" v class:TestBaseExitStack.test_push.ExitCM +cm Lib/test/test_contextlib_async.py /^ cm = ExitCM(_expect_exc)$/;" v class:TestAsyncExitStack.test_async_push.ExitCM +cm Lib/test/test_contextlib_async.py /^ cm = ExitCM(_expect_ok)$/;" v class:TestAsyncExitStack.test_async_push.ExitCM +cm Lib/test/test_dis.py /^ def cm(cls, x):$/;" m class:_C +cm Lib/test/test_pydoc.py /^ def cm(cls, x):$/;" m class:TestDescriptions.test_classmethod.X +cm Lib/test/test_super.py /^ def cm(cls):$/;" m class:A +cm Lib/test/test_super.py /^ def cm(cls):$/;" m class:B +cm Lib/test/test_super.py /^ def cm(cls):$/;" m class:C +cm Lib/test/test_super.py /^ def cm(cls):$/;" m class:D +cm Lib/test/test_with.py /^ class cm (object):$/;" c function:ExceptionalTestCase.testRaisedGeneratorExit2 +cm Lib/test/test_with.py /^ class cm(object):$/;" c function:ExceptionalTestCase.testErrorsInBool +cm Lib/test/test_with.py /^ class cm(object):$/;" c function:ExceptionalTestCase.testRaisedStopIteration2 +cm Lib/test/test_with.py /^ def cm():$/;" f function:ExceptionalTestCase.testRaisedGeneratorExit1 +cm Lib/test/test_with.py /^ def cm():$/;" f function:ExceptionalTestCase.testRaisedStopIteration1 +cm Lib/test/test_with.py /^ def cm():$/;" f function:ExceptionalTestCase.testRaisedStopIteration3 +cm_callable Objects/funcobject.c /^ PyObject *cm_callable;$/;" m struct:__anon720 file: +cm_clear Objects/funcobject.c /^cm_clear(classmethod *cm)$/;" f file: +cm_dealloc Objects/funcobject.c /^cm_dealloc(classmethod *cm)$/;" f file: +cm_descr_get Objects/funcobject.c /^cm_descr_get(PyObject *self, PyObject *obj, PyObject *type)$/;" f file: +cm_dict Objects/funcobject.c /^ PyObject *cm_dict;$/;" m struct:__anon720 file: +cm_get___isabstractmethod__ Objects/funcobject.c /^cm_get___isabstractmethod__(classmethod *cm, void *closure)$/;" f file: +cm_getsetlist Objects/funcobject.c /^static PyGetSetDef cm_getsetlist[] = {$/;" v file: +cm_init Objects/funcobject.c /^cm_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +cm_memberlist Objects/funcobject.c /^static PyMemberDef cm_memberlist[] = {$/;" v file: +cm_repr Objects/funcobject.c /^cm_repr(classmethod *cm)$/;" f file: +cm_traverse Objects/funcobject.c /^cm_traverse(classmethod *cm, visitproc visit, void *arg)$/;" f file: +cmath_acos Modules/clinic/cmathmodule.c.h /^cmath_acos(PyObject *module, PyObject *arg)$/;" f +cmath_acos_impl Modules/cmathmodule.c /^cmath_acos_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_acosh Modules/clinic/cmathmodule.c.h /^cmath_acosh(PyObject *module, PyObject *arg)$/;" f +cmath_acosh_impl Modules/cmathmodule.c /^cmath_acosh_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_asin Modules/clinic/cmathmodule.c.h /^cmath_asin(PyObject *module, PyObject *arg)$/;" f +cmath_asin_impl Modules/cmathmodule.c /^cmath_asin_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_asinh Modules/clinic/cmathmodule.c.h /^cmath_asinh(PyObject *module, PyObject *arg)$/;" f +cmath_asinh_impl Modules/cmathmodule.c /^cmath_asinh_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_atan Modules/clinic/cmathmodule.c.h /^cmath_atan(PyObject *module, PyObject *arg)$/;" f +cmath_atan_impl Modules/cmathmodule.c /^cmath_atan_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_atanh Modules/clinic/cmathmodule.c.h /^cmath_atanh(PyObject *module, PyObject *arg)$/;" f +cmath_atanh_impl Modules/cmathmodule.c /^cmath_atanh_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_cos Modules/clinic/cmathmodule.c.h /^cmath_cos(PyObject *module, PyObject *arg)$/;" f +cmath_cos_impl Modules/cmathmodule.c /^cmath_cos_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_cosh Modules/clinic/cmathmodule.c.h /^cmath_cosh(PyObject *module, PyObject *arg)$/;" f +cmath_cosh_impl Modules/cmathmodule.c /^cmath_cosh_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_exec Modules/cmathmodule.c /^cmath_exec(PyObject *mod)$/;" f file: +cmath_exp Modules/clinic/cmathmodule.c.h /^cmath_exp(PyObject *module, PyObject *arg)$/;" f +cmath_exp_impl Modules/cmathmodule.c /^cmath_exp_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_isclose Modules/clinic/cmathmodule.c.h /^cmath_isclose(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +cmath_isclose_impl Modules/cmathmodule.c /^cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b,$/;" f file: +cmath_isfinite Modules/clinic/cmathmodule.c.h /^cmath_isfinite(PyObject *module, PyObject *arg)$/;" f +cmath_isfinite_impl Modules/cmathmodule.c /^cmath_isfinite_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_isinf Modules/clinic/cmathmodule.c.h /^cmath_isinf(PyObject *module, PyObject *arg)$/;" f +cmath_isinf_impl Modules/cmathmodule.c /^cmath_isinf_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_isnan Modules/clinic/cmathmodule.c.h /^cmath_isnan(PyObject *module, PyObject *arg)$/;" f +cmath_isnan_impl Modules/cmathmodule.c /^cmath_isnan_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_log Modules/clinic/cmathmodule.c.h /^cmath_log(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +cmath_log10 Modules/clinic/cmathmodule.c.h /^cmath_log10(PyObject *module, PyObject *arg)$/;" f +cmath_log10_impl Modules/cmathmodule.c /^cmath_log10_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_log_impl Modules/cmathmodule.c /^cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj)$/;" f file: +cmath_methods Modules/cmathmodule.c /^static PyMethodDef cmath_methods[] = {$/;" v file: +cmath_phase Modules/clinic/cmathmodule.c.h /^cmath_phase(PyObject *module, PyObject *arg)$/;" f +cmath_phase_impl Modules/cmathmodule.c /^cmath_phase_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_polar Modules/clinic/cmathmodule.c.h /^cmath_polar(PyObject *module, PyObject *arg)$/;" f +cmath_polar_impl Modules/cmathmodule.c /^cmath_polar_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_rect Modules/clinic/cmathmodule.c.h /^cmath_rect(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +cmath_rect_impl Modules/cmathmodule.c /^cmath_rect_impl(PyObject *module, double r, double phi)$/;" f file: +cmath_sin Modules/clinic/cmathmodule.c.h /^cmath_sin(PyObject *module, PyObject *arg)$/;" f +cmath_sin_impl Modules/cmathmodule.c /^cmath_sin_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_sinh Modules/clinic/cmathmodule.c.h /^cmath_sinh(PyObject *module, PyObject *arg)$/;" f +cmath_sinh_impl Modules/cmathmodule.c /^cmath_sinh_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_slots Modules/cmathmodule.c /^static PyModuleDef_Slot cmath_slots[] = {$/;" v file: +cmath_sqrt Modules/clinic/cmathmodule.c.h /^cmath_sqrt(PyObject *module, PyObject *arg)$/;" f +cmath_sqrt_impl Modules/cmathmodule.c /^cmath_sqrt_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_tan Modules/clinic/cmathmodule.c.h /^cmath_tan(PyObject *module, PyObject *arg)$/;" f +cmath_tan_impl Modules/cmathmodule.c /^cmath_tan_impl(PyObject *module, Py_complex z)$/;" f file: +cmath_tanh Modules/clinic/cmathmodule.c.h /^cmath_tanh(PyObject *module, PyObject *arg)$/;" f +cmath_tanh_impl Modules/cmathmodule.c /^cmath_tanh_impl(PyObject *module, Py_complex z)$/;" f file: +cmathmodule Modules/cmathmodule.c /^static struct PyModuleDef cmathmodule = {$/;" v typeref:struct:PyModuleDef file: +cmd Lib/idlelib/idle_test/test_macosx.py /^ def cmd(tkpath, func):$/;" f function:SetupTest.setUpClass +cmd Lib/pydoc.py /^ cmd = os.path.splitext(os.path.basename(sys.argv[0]))[0]$/;" v class:cli.BadUsage +cmd PCbuild/idle.bat /^set cmd=%exedir%\\%exe% %PCBUILD%\\..\\Lib\\idlelib\\idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9$/;" v +cmd PCbuild/rt.bat /^set cmd="%exe%" %dashO% -u -Wd -E -bb -m test %regrtestargs%$/;" v +cmd_APPEND Lib/test/test_imaplib.py /^ def cmd_APPEND(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_enable_UTF8_True_append.UTF8AppendServer +cmd_APPEND Lib/test/test_imaplib.py /^ def cmd_APPEND(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_enable_UTF8_True_append.UTF8AppendServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_aborted_authentication.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_bad_auth_name.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_enable_UTF8_True_append.UTF8AppendServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_invalid_authentication.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_login_cram_md5_bytes.AuthHandler +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_login_cram_md5_plain_text.AuthHandler +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_search_disallows_charset_in_utf8_mode.UTF8Server +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_valid_authentication_bytes.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_valid_authentication_plain_text.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_aborted_authentication.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_bad_auth_name.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_bracket_flags.BracketFlagHandler +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_invalid_authentication.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_login_cram_md5.AuthHandler +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_valid_authentication.MyServer +cmd_AUTHENTICATE Lib/test/test_imaplib.py /^ def cmd_AUTHENTICATE(self, tag, args):$/;" m class:ThreadedNetworkedTests.UTF8Server +cmd_CAPABILITY Lib/test/test_imaplib.py /^ def cmd_CAPABILITY(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_line_termination.BadNewlineHandler +cmd_CAPABILITY Lib/test/test_imaplib.py /^ def cmd_CAPABILITY(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_line_termination.BadNewlineHandler +cmd_CAPABILITY Lib/test/test_imaplib.py /^ def cmd_CAPABILITY(self, tag, args):$/;" m class:SimpleIMAPHandler +cmd_ENABLE Lib/test/test_imaplib.py /^ def cmd_ENABLE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_enable_UTF8_True_append.UTF8AppendServer +cmd_ENABLE Lib/test/test_imaplib.py /^ def cmd_ENABLE(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_search_disallows_charset_in_utf8_mode.UTF8Server +cmd_ENABLE Lib/test/test_imaplib.py /^ def cmd_ENABLE(self, tag, args):$/;" m class:ThreadedNetworkedTests.UTF8Server +cmd_LOGIN Lib/test/test_imaplib.py /^ def cmd_LOGIN(self, tag, args):$/;" m class:SimpleIMAPHandler +cmd_LOGOUT Lib/test/test_imaplib.py /^ def cmd_LOGOUT(self, tag, args):$/;" m class:SimpleIMAPHandler +cmd_LSUB Lib/test/test_imaplib.py /^ def cmd_LSUB(self, tag, args):$/;" m class:NewIMAPTestsMixin.test_lsub.LsubCmd +cmd_SELECT Lib/test/test_imaplib.py /^ def cmd_SELECT(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_bracket_flags.BracketFlagHandler +cmd_SELECT Lib/test/test_imaplib.py /^ def cmd_SELECT(self, tag, args):$/;" m class:SimpleIMAPHandler +cmd_STORE Lib/test/test_imaplib.py /^ def cmd_STORE(self, tag, args):$/;" m class:ThreadedNetworkedTests.test_bracket_flags.BracketFlagHandler +cmd_UNSELECT Lib/test/test_imaplib.py /^ def cmd_UNSELECT(self, tag, args):$/;" m class:SimpleIMAPHandler +cmd_abor Lib/test/test_ftplib.py /^ def cmd_abor(self, arg):$/;" m class:DummyFTPHandler +cmd_acct Lib/test/test_ftplib.py /^ def cmd_acct(self, arg):$/;" m class:DummyFTPHandler +cmd_analyze Tools/c-analyzer/c_analyzer/__main__.py /^def cmd_analyze(filenames, *,$/;" f +cmd_analyze Tools/c-analyzer/cpython/__main__.py /^def cmd_analyze(filenames=None, **kwargs):$/;" f +cmd_apop Lib/test/test_poplib.py /^ def cmd_apop(self, arg):$/;" m class:DummyPOP3Handler +cmd_auth Lib/test/test_ftplib.py /^ def cmd_auth(self, line):$/;" m class:.DummyTLS_FTPHandler +cmd_builtin_types Tools/c-analyzer/cpython/__main__.py /^def cmd_builtin_types(fmt, *,$/;" f +cmd_capa Lib/test/test_poplib.py /^ def cmd_capa(self, arg):$/;" m class:DummyPOP3Handler +cmd_capi Tools/c-analyzer/cpython/__main__.py /^def cmd_capi(filenames=None, *,$/;" f +cmd_ccc Lib/test/test_ftplib.py /^ def cmd_ccc(self, line):$/;" m class:.DummyTLS_FTPHandler +cmd_check Tools/c-analyzer/c_analyzer/__main__.py /^def cmd_check(filenames, *,$/;" f +cmd_check Tools/c-analyzer/cpython/__main__.py /^def cmd_check(filenames=None, **kwargs):$/;" f +cmd_count_by_section Tools/c-analyzer/table-file.py /^def cmd_count_by_section(lines):$/;" f +cmd_cwd Lib/test/test_ftplib.py /^ def cmd_cwd(self, arg):$/;" m class:DummyFTPHandler +cmd_data Tools/c-analyzer/c_analyzer/__main__.py /^def cmd_data(datacmd, filenames, known=None, *,$/;" f +cmd_data Tools/c-analyzer/c_parser/__main__.py /^def cmd_data(filenames,$/;" f +cmd_data Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def cmd_data(filenames,$/;" f +cmd_data Tools/c-analyzer/cpython/__main__.py /^def cmd_data(datacmd, **kwargs):$/;" f +cmd_dele Lib/test/test_ftplib.py /^ def cmd_dele(self, arg):$/;" m class:DummyFTPHandler +cmd_dele Lib/test/test_poplib.py /^ def cmd_dele(self, arg):$/;" m class:DummyPOP3Handler +cmd_echo Lib/test/test_ftplib.py /^ def cmd_echo(self, arg):$/;" m class:DummyFTPHandler +cmd_echo Lib/test/test_poplib.py /^ def cmd_echo(self, arg):$/;" m class:DummyPOP3Handler +cmd_eprt Lib/test/test_ftplib.py /^ def cmd_eprt(self, arg):$/;" m class:DummyFTPHandler +cmd_epsv Lib/test/test_ftplib.py /^ def cmd_epsv(self, arg):$/;" m class:DummyFTPHandler +cmd_list Lib/test/test_ftplib.py /^ def cmd_list(self, arg):$/;" m class:DummyFTPHandler +cmd_list Lib/test/test_poplib.py /^ def cmd_list(self, arg):$/;" m class:DummyPOP3Handler +cmd_mkd Lib/test/test_ftplib.py /^ def cmd_mkd(self, arg):$/;" m class:DummyFTPHandler +cmd_mlsd Lib/test/test_ftplib.py /^ def cmd_mlsd(self, arg):$/;" m class:DummyFTPHandler +cmd_nlst Lib/test/test_ftplib.py /^ def cmd_nlst(self, arg):$/;" m class:DummyFTPHandler +cmd_noop Lib/test/test_ftplib.py /^ def cmd_noop(self, arg):$/;" m class:DummyFTPHandler +cmd_noop Lib/test/test_poplib.py /^ def cmd_noop(self, arg):$/;" m class:DummyPOP3Handler +cmd_opts Lib/test/test_ftplib.py /^ def cmd_opts(self, arg):$/;" m class:DummyFTPHandler +cmd_parse Tools/c-analyzer/c_parser/__main__.py /^def cmd_parse(filenames, *,$/;" f +cmd_parse Tools/c-analyzer/cpython/__main__.py /^def cmd_parse(filenames=None, **kwargs):$/;" f +cmd_pass Lib/test/test_ftplib.py /^ def cmd_pass(self, arg):$/;" m class:DummyFTPHandler +cmd_pass Lib/test/test_poplib.py /^ def cmd_pass(self, arg):$/;" m class:DummyPOP3Handler +cmd_pasv Lib/test/test_ftplib.py /^ def cmd_pasv(self, arg):$/;" m class:DummyFTPHandler +cmd_pbsz Lib/test/test_ftplib.py /^ def cmd_pbsz(self, line):$/;" m class:.DummyTLS_FTPHandler +cmd_port Lib/test/test_ftplib.py /^ def cmd_port(self, arg):$/;" m class:DummyFTPHandler +cmd_preprocess Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def cmd_preprocess(filenames, *,$/;" f +cmd_prot Lib/test/test_ftplib.py /^ def cmd_prot(self, line):$/;" m class:.DummyTLS_FTPHandler +cmd_pwd Lib/test/test_ftplib.py /^ def cmd_pwd(self, arg):$/;" m class:DummyFTPHandler +cmd_quit Lib/test/test_ftplib.py /^ def cmd_quit(self, arg):$/;" m class:DummyFTPHandler +cmd_quit Lib/test/test_poplib.py /^ def cmd_quit(self, arg):$/;" m class:DummyPOP3Handler +cmd_rest Lib/test/test_ftplib.py /^ def cmd_rest(self, arg):$/;" m class:DummyFTPHandler +cmd_retr Lib/test/test_ftplib.py /^ def cmd_retr(self, arg):$/;" m class:DummyFTPHandler +cmd_retr Lib/test/test_poplib.py /^ def cmd_retr(self, arg):$/;" m class:DummyPOP3Handler +cmd_rmd Lib/test/test_ftplib.py /^ def cmd_rmd(self, arg):$/;" m class:DummyFTPHandler +cmd_rnfr Lib/test/test_ftplib.py /^ def cmd_rnfr(self, arg):$/;" m class:DummyFTPHandler +cmd_rnto Lib/test/test_ftplib.py /^ def cmd_rnto(self, arg):$/;" m class:DummyFTPHandler +cmd_rpop Lib/test/test_poplib.py /^ def cmd_rpop(self, arg):$/;" m class:DummyPOP3Handler +cmd_setlongretr Lib/test/test_ftplib.py /^ def cmd_setlongretr(self, arg):$/;" m class:DummyFTPHandler +cmd_size Lib/test/test_ftplib.py /^ def cmd_size(self, arg):$/;" m class:DummyFTPHandler +cmd_stat Lib/test/test_poplib.py /^ def cmd_stat(self, arg):$/;" m class:DummyPOP3Handler +cmd_stls Lib/test/test_poplib.py /^ def cmd_stls(self, arg):$/;" f function:DummyPOP3Handler.cmd_utf8 +cmd_stor Lib/test/test_ftplib.py /^ def cmd_stor(self, arg):$/;" m class:DummyFTPHandler +cmd_top Lib/test/test_poplib.py /^ cmd_top = cmd_retr$/;" v class:DummyPOP3Handler +cmd_type Lib/test/test_ftplib.py /^ def cmd_type(self, arg):$/;" m class:DummyFTPHandler +cmd_uidl Lib/test/test_poplib.py /^ cmd_uidl = cmd_list$/;" v class:DummyPOP3Handler +cmd_user Lib/test/test_ftplib.py /^ def cmd_user(self, arg):$/;" m class:DummyFTPHandler +cmd_user Lib/test/test_poplib.py /^ def cmd_user(self, arg):$/;" m class:DummyPOP3Handler +cmd_utf8 Lib/test/test_poplib.py /^ def cmd_utf8(self, arg):$/;" m class:DummyPOP3Handler +cmdloop Lib/cmd.py /^ def cmdloop(self, intro=None):$/;" m class:Cmd +cmds Lib/test/test_telnetlib.py /^ cmds = [tl.AO, tl.AYT, tl.BRK, tl.EC, tl.EL, tl.GA, tl.IP, tl.NOP]$/;" v class:OptionTests +cmeth Lib/test/test_unittest/testmock/testmock.py /^ def cmeth(cls, a, b, c, d=None): pass$/;" m class:Something +cmp Lib/filecmp.py /^def cmp(f1, f2, shallow=True):$/;" f +cmp Lib/test/test_typing.py /^ def cmp(o1, o2):$/;" f function:ForwardRefTests.test_forward_recursion_actually +cmp Modules/_functoolsmodule.c /^ PyObject *cmp;$/;" m struct:__anon394 file: +cmp Python/dtoa.c /^cmp(Bigint *a, Bigint *b)$/;" f file: +cmp1 Lib/test/test_functools.py /^ def cmp1(x, y):$/;" f function:TestCmpToKey.test_bad_cmp +cmp1 Lib/test/test_functools.py /^ def cmp1(x, y):$/;" f function:TestCmpToKey.test_cmp_to_key +cmp1 Lib/test/test_functools.py /^ def cmp1(x, y):$/;" f function:TestCmpToKey.test_cmp_to_key_arguments +cmp1 Lib/test/test_functools.py /^ def cmp1(x, y):$/;" f function:TestCmpToKey.test_obj_field +cmp2 Lib/test/test_functools.py /^ def cmp2(x, y):$/;" f function:TestCmpToKey.test_cmp_to_key +cmp_base Objects/memoryobject.c /^cmp_base(const char *p, const char *q, const Py_ssize_t *shape,$/;" f file: +cmp_constdefs Modules/posixmodule.c /^cmp_constdefs(const void *v1, const void *v2)$/;" f file: +cmp_contig Modules/_testbuffer.c /^cmp_contig(PyObject *self, PyObject *args)$/;" f file: +cmp_func Lib/test/test_ctypes/test_callbacks.py /^ def cmp_func(a, b):$/;" f function:SampleCallbacksTestCase.test_issue_8959_a +cmp_op Lib/opcode.py /^cmp_op = ('<', '<=', '==', '!=', '>', '>=')$/;" v +cmp_rec Objects/memoryobject.c /^cmp_rec(const char *p, const char *q,$/;" f file: +cmp_structure Lib/test/test_buffer.py /^def cmp_structure(llst, rlst, lslices, rslices):$/;" f +cmp_structure Modules/_testbuffer.c /^cmp_structure(Py_buffer *dest, Py_buffer *src)$/;" f file: +cmp_to_key Lib/functools.py /^def cmp_to_key(mycmp):$/;" f +cmp_to_key Lib/test/test_functools.py /^ cmp_to_key = c_functools.cmp_to_key$/;" v class:TestCmpToKeyC +cmp_to_key Lib/test/test_functools.py /^ cmp_to_key = staticmethod(py_functools.cmp_to_key)$/;" v class:TestCmpToKeyPy +cmperror Modules/_datetimemodule.c /^cmperror(PyObject *a, PyObject *b)$/;" f file: +cmpfiles Lib/filecmp.py /^def cmpfiles(a, b, common, shallow=True):$/;" f +cmpop Parser/pegen.h /^ cmpop_ty cmpop;$/;" m struct:__anon658 +cmpop_ty Include/internal/pycore_ast.h /^ In=9, NotIn=10 } cmpop_ty;$/;" t typeref:enum:_cmpop +cmpop_type Include/internal/pycore_ast_state.h /^ PyObject *cmpop_type;$/;" m struct:ast_state +cmpops Lib/ast.py /^ cmpops = {$/;" v class:_Unparser +cmptest Lib/test/test_buffer.py /^ def cmptest(testcase, a, b, m, singleitem):$/;" f function:TestBufferProtocol.test_memoryview_array +cmsg_min_space Modules/socketmodule.c /^cmsg_min_space(struct msghdr *msg, struct cmsghdr *cmsgh, size_t space)$/;" f file: +cname Include/internal/pycore_code.h /^ const char *cname;$/;" m struct:_PyShimCodeDef +cnt Modules/itertoolsmodule.c /^ Py_ssize_t cnt;$/;" m struct:__anon410 file: +cnt Modules/itertoolsmodule.c /^ Py_ssize_t cnt;$/;" m struct:__anon420 file: +cnt Modules/itertoolsmodule.c /^ Py_ssize_t cnt;$/;" m struct:__anon421 file: +co Lib/test/crashers/bogus_code_obj.py /^co = types.CodeType(0, 0, 0, 0, 0, 0, b'\\x04\\x00\\x71\\x00',$/;" v +co_cellvars Tools/build/umarshal.py /^ def co_cellvars(self) -> Tuple[str, ...]:$/;" m class:Code +co_extra_freefuncs Include/internal/pycore_interp.h /^ freefunc co_extra_freefuncs[MAX_CO_EXTRA_USERS];$/;" m struct:_is +co_extra_user_count Include/internal/pycore_interp.h /^ Py_ssize_t co_extra_user_count;$/;" m struct:_is +co_freevars Tools/build/umarshal.py /^ def co_freevars(self) -> Tuple[str, ...]:$/;" m class:Code +co_nlocals Tools/build/umarshal.py /^ def co_nlocals(self) -> int:$/;" m class:Code +co_tricky_nested_f Lib/test/test_dis.py /^co_tricky_nested_f = tricky.__func__.__code__.co_consts[1]$/;" v +co_varnames Tools/build/umarshal.py /^ def co_varnames(self) -> Tuple[str, ...]:$/;" m class:Code +code Include/cpython/code.h /^ uint8_t code;$/;" m struct:__anon225::__anon226 +code Include/cpython/code.h /^PyAPI_FUNC(PyObject *) PyCode_GetCellvars(PyCodeObject *code);$/;" v +code Include/cpython/code.h /^PyAPI_FUNC(PyObject *) PyCode_GetCode(PyCodeObject *code);$/;" v +code Include/cpython/code.h /^PyAPI_FUNC(PyObject *) PyCode_GetFreevars(PyCodeObject *code);$/;" v +code Include/cpython/code.h /^PyAPI_FUNC(PyObject *) PyCode_GetVarnames(PyCodeObject *code);$/;" v +code Include/cpython/import.h /^ const unsigned char *code;$/;" m struct:_frozen +code Include/cpython/pyerrors.h /^ PyObject *code;$/;" m struct:__anon185 +code Include/internal/pycore_code.h /^ PyObject *code;$/;" m struct:_PyCodeConstructor +code Include/internal/pycore_code.h /^ const uint8_t *code;$/;" m struct:_PyShimCodeDef +code Lib/idlelib/idle_test/test_hyperparser.py /^ code = ($/;" v class:HyperParserTest +code Lib/pdb.py /^ def code(self):$/;" m class:_ModuleTarget +code Lib/pdb.py /^ def code(self):$/;" m class:_ScriptTarget +code Lib/test/test_code_module.py /^code = import_helper.import_module('code')$/;" v +code Lib/test/test_enum.py /^ code = 'An$(5,1)', 2$/;" v class:TestSpecial.test_missing_value_error.Combined +code Lib/test/test_importlib/test_api.py /^ def code():$/;" f function:ReloadTests.test_module_replaced +code Lib/xml/dom/__init__.py /^ code = DOMSTRING_SIZE_ERR$/;" v class:DomstringSizeErr +code Lib/xml/dom/__init__.py /^ code = HIERARCHY_REQUEST_ERR$/;" v class:HierarchyRequestErr +code Lib/xml/dom/__init__.py /^ code = INDEX_SIZE_ERR$/;" v class:IndexSizeErr +code Lib/xml/dom/__init__.py /^ code = INUSE_ATTRIBUTE_ERR$/;" v class:InuseAttributeErr +code Lib/xml/dom/__init__.py /^ code = INVALID_ACCESS_ERR$/;" v class:InvalidAccessErr +code Lib/xml/dom/__init__.py /^ code = INVALID_CHARACTER_ERR$/;" v class:InvalidCharacterErr +code Lib/xml/dom/__init__.py /^ code = INVALID_MODIFICATION_ERR$/;" v class:InvalidModificationErr +code Lib/xml/dom/__init__.py /^ code = INVALID_STATE_ERR$/;" v class:InvalidStateErr +code Lib/xml/dom/__init__.py /^ code = NAMESPACE_ERR$/;" v class:NamespaceErr +code Lib/xml/dom/__init__.py /^ code = NOT_FOUND_ERR$/;" v class:NotFoundErr +code Lib/xml/dom/__init__.py /^ code = NOT_SUPPORTED_ERR$/;" v class:NotSupportedErr +code Lib/xml/dom/__init__.py /^ code = NO_DATA_ALLOWED_ERR$/;" v class:NoDataAllowedErr +code Lib/xml/dom/__init__.py /^ code = NO_MODIFICATION_ALLOWED_ERR$/;" v class:NoModificationAllowedErr +code Lib/xml/dom/__init__.py /^ code = SYNTAX_ERR$/;" v class:SyntaxErr +code Lib/xml/dom/__init__.py /^ code = VALIDATION_ERR$/;" v class:ValidationErr +code Lib/xml/dom/__init__.py /^ code = WRONG_DOCUMENT_ERR$/;" v class:WrongDocumentErr +code Modules/_ctypes/ctypes.h /^ char code;$/;" m struct:fielddesc +code Modules/_sre/sre.h /^ SRE_CODE code[1];$/;" m struct:__anon454 +code Modules/_ssl.c /^ int code;$/;" m struct:py_ssl_library_code file: +code Modules/cjkcodecs/cjkcodecs.h /^ DBCHAR code;$/;" m struct:pair_encodemap +code Tools/build/generate_sre_constants.py /^ code = fp.read()$/;" v +code2i Lib/pickletools.py /^code2i = {}$/;" v +code2op Lib/pickletools.py /^code2op = {}$/;" v +code__varname_from_oparg Objects/clinic/codeobject.c.h /^code__varname_from_oparg(PyCodeObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +code__varname_from_oparg_impl Objects/codeobject.c /^code__varname_from_oparg_impl(PyCodeObject *self, int oparg)$/;" f file: +code_arena Include/internal/pycore_ceval_state.h /^ struct code_arena_st *code_arena;$/;" m struct:_ceval_runtime_state::__anon166 typeref:struct:_ceval_runtime_state::__anon166::code_arena_st +code_arena_new_code Python/perf_trampoline.c /^code_arena_new_code(code_arena_t *code_arena)$/;" f file: +code_arena_st Python/perf_trampoline.c /^struct code_arena_st {$/;" s file: +code_arena_t Python/perf_trampoline.c /^typedef struct code_arena_st code_arena_t;$/;" t typeref:struct:code_arena_st file: +code_bug_45757 Lib/test/test_dis.py /^code_bug_45757 = bytes([$/;" v +code_dealloc Objects/codeobject.c /^code_dealloc(PyCodeObject *co)$/;" f file: +code_debug_ranges Include/cpython/initconfig.h /^ int code_debug_ranges;$/;" m struct:PyConfig +code_event_name Objects/codeobject.c /^code_event_name(PyCodeEvent event) {$/;" f file: +code_filename Lib/idlelib/debugger_r.py /^ def code_filename(self, cid):$/;" m class:IdbAdapter +code_getcellvars Objects/codeobject.c /^code_getcellvars(PyCodeObject *code, void *closure)$/;" f file: +code_getcode Objects/codeobject.c /^code_getcode(PyCodeObject *code, void *closure)$/;" f file: +code_getcodeadaptive Objects/codeobject.c /^code_getcodeadaptive(PyCodeObject *code, void *closure)$/;" f file: +code_getfreevars Objects/codeobject.c /^code_getfreevars(PyCodeObject *code, void *closure)$/;" f file: +code_getlnotab Objects/codeobject.c /^code_getlnotab(PyCodeObject *code, void *closure)$/;" f file: +code_getsetlist Objects/codeobject.c /^static PyGetSetDef code_getsetlist[] = {$/;" v file: +code_getvarnames Objects/codeobject.c /^code_getvarnames(PyCodeObject *code, void *closure)$/;" f file: +code_hash Modules/unicodename_db.h /^static const unsigned int code_hash[] = {$/;" v +code_hash Objects/codeobject.c /^code_hash(PyCodeObject *co)$/;" f file: +code_info Lib/dis.py /^def code_info(x):$/;" f +code_info_consts Lib/test/test_dis.py /^ code_info_consts = "0: 'Formatted details of methods, functions, or code.'"$/;" v +code_info_consts Lib/test/test_dis.py /^ code_info_consts = "0: None"$/;" v class:DisWithFileTests +code_linesiterator Objects/codeobject.c /^code_linesiterator(PyCodeObject *code, PyObject *Py_UNUSED(args))$/;" f file: +code_magic Modules/unicodename_db.h 30119;" d +code_memberlist Objects/codeobject.c /^static PyMemberDef code_memberlist[] = {$/;" v file: +code_methods Objects/codeobject.c /^static struct PyMethodDef code_methods[] = {$/;" v typeref:struct:PyMethodDef file: +code_name Lib/idlelib/debugger_r.py /^ def code_name(self, cid):$/;" m class:IdbAdapter +code_new Objects/clinic/codeobject.c.h /^code_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +code_new_impl Objects/codeobject.c /^code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount,$/;" f file: +code_newempty Modules/_testcapimodule.c /^code_newempty(PyObject *self, PyObject *args)$/;" f file: +code_object_f Lib/test/test_dis.py /^code_object_f = outer.__code__.co_consts[1]$/;" v +code_object_inner Lib/test/test_dis.py /^code_object_inner = code_object_f.co_consts[1]$/;" v +code_page PC/launcher.c /^ UINT code_page;$/;" m struct:__anon289 file: +code_page_name Objects/unicodeobject.c /^code_page_name(UINT code_page, PyObject **obj)$/;" f file: +code_poly Modules/unicodename_db.h 30121;" d +code_positionsiterator Objects/codeobject.c /^code_positionsiterator(PyCodeObject* code, PyObject* Py_UNUSED(args))$/;" f file: +code_quicken Lib/test/test_dis.py /^ def code_quicken(f, times=ADAPTIVE_WARMUP_DELAY):$/;" m class:DisTests +code_replace Objects/clinic/codeobject.c.h /^code_replace(PyCodeObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +code_replace_impl Objects/codeobject.c /^code_replace_impl(PyCodeObject *self, int co_argcount,$/;" f file: +code_repr Objects/codeobject.c /^code_repr(PyCodeObject *co)$/;" f file: +code_richcompare Objects/codeobject.c /^code_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +code_size Modules/unicodename_db.h 30120;" d +code_size Python/perf_trampoline.c /^ size_t code_size; \/\/ Size of the code of every trampoline in the arena$/;" m struct:code_arena_st file: +code_sizeof Objects/codeobject.c /^code_sizeof(PyCodeObject *co, PyObject *Py_UNUSED(args))$/;" f file: +code_watcher Lib/test/test_capi/test_watchers.py /^ def code_watcher(self, which_watcher):$/;" m class:TestCodeObjectWatchers +code_watcher_ids Modules/_testcapi/watchers.c /^static int code_watcher_ids[NUM_CODE_WATCHERS] = {-1, -1};$/;" v file: +code_watchers Include/internal/pycore_interp.h /^ PyCode_WatchCallback code_watchers[CODE_MAX_WATCHERS];$/;" m struct:_is +codec Lib/encodings/big5.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/big5.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/big5.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/big5.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/big5.py /^codec = _codecs_tw.getcodec('big5')$/;" v +codec Lib/encodings/big5hkscs.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/big5hkscs.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/big5hkscs.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/big5hkscs.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/big5hkscs.py /^codec = _codecs_hk.getcodec('big5hkscs')$/;" v +codec Lib/encodings/cp932.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/cp932.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/cp932.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/cp932.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/cp932.py /^codec = _codecs_jp.getcodec('cp932')$/;" v +codec Lib/encodings/cp949.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/cp949.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/cp949.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/cp949.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/cp949.py /^codec = _codecs_kr.getcodec('cp949')$/;" v +codec Lib/encodings/cp950.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/cp950.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/cp950.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/cp950.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/cp950.py /^codec = _codecs_tw.getcodec('cp950')$/;" v +codec Lib/encodings/euc_jis_2004.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/euc_jis_2004.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/euc_jis_2004.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/euc_jis_2004.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/euc_jis_2004.py /^codec = _codecs_jp.getcodec('euc_jis_2004')$/;" v +codec Lib/encodings/euc_jisx0213.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/euc_jisx0213.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/euc_jisx0213.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/euc_jisx0213.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/euc_jisx0213.py /^codec = _codecs_jp.getcodec('euc_jisx0213')$/;" v +codec Lib/encodings/euc_jp.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/euc_jp.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/euc_jp.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/euc_jp.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/euc_jp.py /^codec = _codecs_jp.getcodec('euc_jp')$/;" v +codec Lib/encodings/euc_kr.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/euc_kr.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/euc_kr.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/euc_kr.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/euc_kr.py /^codec = _codecs_kr.getcodec('euc_kr')$/;" v +codec Lib/encodings/gb18030.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/gb18030.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/gb18030.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/gb18030.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/gb18030.py /^codec = _codecs_cn.getcodec('gb18030')$/;" v +codec Lib/encodings/gb2312.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/gb2312.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/gb2312.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/gb2312.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/gb2312.py /^codec = _codecs_cn.getcodec('gb2312')$/;" v +codec Lib/encodings/gbk.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/gbk.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/gbk.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/gbk.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/gbk.py /^codec = _codecs_cn.getcodec('gbk')$/;" v +codec Lib/encodings/hz.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/hz.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/hz.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/hz.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/hz.py /^codec = _codecs_cn.getcodec('hz')$/;" v +codec Lib/encodings/iso2022_jp.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/iso2022_jp.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/iso2022_jp.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/iso2022_jp.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/iso2022_jp.py /^codec = _codecs_iso2022.getcodec('iso2022_jp')$/;" v +codec Lib/encodings/iso2022_jp_1.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/iso2022_jp_1.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/iso2022_jp_1.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/iso2022_jp_1.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/iso2022_jp_1.py /^codec = _codecs_iso2022.getcodec('iso2022_jp_1')$/;" v +codec Lib/encodings/iso2022_jp_2.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/iso2022_jp_2.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/iso2022_jp_2.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/iso2022_jp_2.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/iso2022_jp_2.py /^codec = _codecs_iso2022.getcodec('iso2022_jp_2')$/;" v +codec Lib/encodings/iso2022_jp_2004.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/iso2022_jp_2004.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/iso2022_jp_2004.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/iso2022_jp_2004.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/iso2022_jp_2004.py /^codec = _codecs_iso2022.getcodec('iso2022_jp_2004')$/;" v +codec Lib/encodings/iso2022_jp_3.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/iso2022_jp_3.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/iso2022_jp_3.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/iso2022_jp_3.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/iso2022_jp_3.py /^codec = _codecs_iso2022.getcodec('iso2022_jp_3')$/;" v +codec Lib/encodings/iso2022_jp_ext.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/iso2022_jp_ext.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/iso2022_jp_ext.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/iso2022_jp_ext.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/iso2022_jp_ext.py /^codec = _codecs_iso2022.getcodec('iso2022_jp_ext')$/;" v +codec Lib/encodings/iso2022_kr.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/iso2022_kr.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/iso2022_kr.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/iso2022_kr.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/iso2022_kr.py /^codec = _codecs_iso2022.getcodec('iso2022_kr')$/;" v +codec Lib/encodings/johab.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/johab.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/johab.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/johab.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/johab.py /^codec = _codecs_kr.getcodec('johab')$/;" v +codec Lib/encodings/shift_jis.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/shift_jis.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/shift_jis.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/shift_jis.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/shift_jis.py /^codec = _codecs_jp.getcodec('shift_jis')$/;" v +codec Lib/encodings/shift_jis_2004.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/shift_jis_2004.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/shift_jis_2004.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/shift_jis_2004.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/shift_jis_2004.py /^codec = _codecs_jp.getcodec('shift_jis_2004')$/;" v +codec Lib/encodings/shift_jisx0213.py /^ codec = codec$/;" v class:IncrementalDecoder +codec Lib/encodings/shift_jisx0213.py /^ codec = codec$/;" v class:IncrementalEncoder +codec Lib/encodings/shift_jisx0213.py /^ codec = codec$/;" v class:StreamReader +codec Lib/encodings/shift_jisx0213.py /^ codec = codec$/;" v class:StreamWriter +codec Lib/encodings/shift_jisx0213.py /^codec = _codecs_jp.getcodec('shift_jisx0213')$/;" v +codec Lib/test/multibytecodec_support.py /^ codec = None # codec tuple (with 4 elements)$/;" v class:TestBase +codec Modules/cjkcodecs/multibytecodec.h /^ const MultibyteCodec *codec;$/;" m struct:__anon325 +codec Modules/cjkcodecs/multibytecodec.h /^ const MultibyteCodec *codec;$/;" m struct:__anon333 +codecEnabled Lib/test/test_io.py /^ codecEnabled = False$/;" v class:StatefulIncrementalDecoder +codec_capsule Modules/cjkcodecs/multibytecodec.h /^} codec_capsule;$/;" t typeref:struct:__anon333 +codec_error_registry Include/internal/pycore_interp.h /^ PyObject *codec_error_registry;$/;" m struct:_is +codec_getincrementalcodec Python/codecs.c /^PyObject *codec_getincrementalcodec(const char *encoding,$/;" f file: +codec_getitem Python/codecs.c /^PyObject *codec_getitem(const char *encoding, int index)$/;" f file: +codec_getitem_checked Python/codecs.c /^PyObject *codec_getitem_checked(const char *encoding,$/;" f file: +codec_getstreamcodec Python/codecs.c /^PyObject *codec_getstreamcodec(const char *encoding,$/;" f file: +codec_incrementaldecoder Modules/_testcapi/unicode.c /^codec_incrementaldecoder(PyObject *self, PyObject *args)$/;" f file: +codec_incrementalencoder Modules/_testcapi/unicode.c /^codec_incrementalencoder(PyObject *self, PyObject *args)$/;" f file: +codec_list Modules/cjkcodecs/cjkcodecs.h /^ MultibyteCodec *codec_list;$/;" m struct:_cjk_mod_state +codec_makeincrementalcodec Python/codecs.c /^PyObject *codec_makeincrementalcodec(PyObject *codec_info,$/;" f file: +codec_search_cache Include/internal/pycore_interp.h /^ PyObject *codec_search_cache;$/;" m struct:_is +codec_search_function Lib/test/test_charmapcodec.py /^def codec_search_function(encoding):$/;" f +codec_search_path Include/internal/pycore_interp.h /^ PyObject *codec_search_path;$/;" m struct:_is +codec_tuple Modules/_codecsmodule.c /^PyObject *codec_tuple(PyObject *decoded,$/;" f file: +codecctx_errors_get Modules/cjkcodecs/multibytecodec.c /^codecctx_errors_get(MultibyteStatefulCodecContext *self, void *Py_UNUSED(ignored))$/;" f file: +codecctx_errors_set Modules/cjkcodecs/multibytecodec.c /^codecctx_errors_set(MultibyteStatefulCodecContext *self, PyObject *value,$/;" f file: +codecctx_getsets Modules/cjkcodecs/multibytecodec.c /^static PyGetSetDef codecctx_getsets[] = {$/;" v file: +codecinit Modules/cjkcodecs/multibytecodec.h /^ mbcodec_init codecinit;$/;" m struct:_multibyte_codec +codecname Lib/test/test_charmapcodec.py /^codecname = 'testcodec'$/;" v +codecs Tools/unicode/gencjkcodecs.py /^codecs = {$/;" v +codecs_encode Modules/_pickle.c /^ PyObject *codecs_encode;$/;" m struct:__anon448 file: +codecs_initialized Include/internal/pycore_interp.h /^ int codecs_initialized;$/;" m struct:_is +codecsmodule Modules/_codecsmodule.c /^static struct PyModuleDef codecsmodule = {$/;" v typeref:struct:PyModuleDef file: +codectests Lib/test/multibytecodec_support.py /^ codectests = None # must set. codec test tuple$/;" v class:TestBase +codectests Lib/test/multibytecodec_support.py /^ codectests = []$/;" v class:TestBase_Mapping +codectests Lib/test/test_codecencodings_cn.py /^ codectests = ($/;" v class:Test_GB18030 +codectests Lib/test/test_codecencodings_cn.py /^ codectests = ($/;" v class:Test_GB2312 +codectests Lib/test/test_codecencodings_cn.py /^ codectests = ($/;" v class:Test_GBK +codectests Lib/test/test_codecencodings_cn.py /^ codectests = ($/;" v class:Test_HZ +codectests Lib/test/test_codecencodings_hk.py /^ codectests = ($/;" v class:Test_Big5HKSCS +codectests Lib/test/test_codecencodings_iso2022.py /^ codectests = COMMON_CODEC_TESTS + ($/;" v class:Test_ISO2022_JP +codectests Lib/test/test_codecencodings_iso2022.py /^ codectests = COMMON_CODEC_TESTS + ($/;" v class:Test_ISO2022_JP2 +codectests Lib/test/test_codecencodings_iso2022.py /^ codectests = COMMON_CODEC_TESTS + ($/;" v class:Test_ISO2022_KR +codectests Lib/test/test_codecencodings_jp.py /^ codectests = ($/;" v class:Test_CP932 +codectests Lib/test/test_codecencodings_jp.py /^ codectests = euc_commontests + ($/;" v class:Test_EUC_JP_COMPAT +codectests Lib/test/test_codecencodings_jp.py /^ codectests = euc_commontests$/;" v class:Test_EUC_JISX0213 +codectests Lib/test/test_codecencodings_jp.py /^ codectests = euc_commontests$/;" v class:Test_EUC_JIS_2004 +codectests Lib/test/test_codecencodings_jp.py /^ codectests = shiftjis_commonenctests + ($/;" v class:Test_SJISX0213 +codectests Lib/test/test_codecencodings_jp.py /^ codectests = shiftjis_commonenctests + ($/;" v class:Test_SJIS_2004 +codectests Lib/test/test_codecencodings_jp.py /^ codectests = shiftjis_commonenctests + ($/;" v class:Test_SJIS_COMPAT +codectests Lib/test/test_codecencodings_kr.py /^ codectests = ($/;" v class:Test_CP949 +codectests Lib/test/test_codecencodings_kr.py /^ codectests = ($/;" v class:Test_EUCKR +codectests Lib/test/test_codecencodings_kr.py /^ codectests = ($/;" v class:Test_JOHAB +codectests Lib/test/test_codecencodings_tw.py /^ codectests = ($/;" v class:Test_Big5 +codectests Lib/test/test_codecmaps_tw.py /^ codectests = ($/;" v class:TestCP950Map +coded_value Lib/http/cookies.py /^ def coded_value(self):$/;" m class:Morsel +codefile Lib/test/test_trace.py /^ codefile = 'tmp.py'$/;" v class:TestCoverageCommandLineOutput +codegen Tools/unicode/gencodec.py /^def codegen(name, map, encodingname, comments=1):$/;" f +codegen_addop_i Python/compile.c /^codegen_addop_i(instr_sequence *seq, int opcode, Py_ssize_t oparg, location loc)$/;" f file: +codegen_addop_j Python/compile.c /^codegen_addop_j(instr_sequence *seq, location loc,$/;" f file: +codegen_addop_noarg Python/compile.c /^codegen_addop_noarg(instr_sequence *seq, int opcode, location loc)$/;" f file: +codegen_test Lib/test/test_compiler_codegen.py /^ def codegen_test(self, snippet, expected_insts):$/;" m class:IsolatedCodeGenTests +codelen Include/internal/pycore_code.h /^ int codelen;$/;" m struct:_PyShimCodeDef +codepoint2name Lib/html/entities.py /^codepoint2name = {}$/;" v +codes_values Lib/test/_test_multiprocessing.py /^ codes_values = [$/;" v class:_TestValue +codesize Modules/_sre/sre.h /^ Py_ssize_t codesize;$/;" m struct:__anon454 +codetable Lib/idlelib/debugger_r.py /^codetable = {}$/;" v +coding_checker Lib/test/test_codecs.py /^def coding_checker(self, coder):$/;" f +coding_default_utf8_test Lib/test/test_modulefinder.py /^coding_default_utf8_test = [$/;" v +coding_explicit_cp1252_test Lib/test/test_modulefinder.py /^coding_explicit_cp1252_test = [$/;" v +coding_explicit_utf8_test Lib/test/test_modulefinder.py /^coding_explicit_utf8_test = [$/;" v +coeff Modules/_decimal/tests/bignum.py /^coeff = int(x)$/;" v +coeff_to_string Modules/_decimal/libmpdec/io.c /^coeff_to_string(char *s, const mpd_t *dec)$/;" f file: +coeff_to_string_dot Modules/_decimal/libmpdec/io.c /^coeff_to_string_dot(char *s, char *dot, const mpd_t *dec)$/;" f file: +coerce_c_locale Include/cpython/initconfig.h /^ int coerce_c_locale;$/;" m struct:PyPreConfig +coerce_c_locale Lib/test/test_embed.py /^ coerce_c_locale=0,$/;" v class:InitConfigTests +coerce_c_locale Lib/test/test_embed.py /^ coerce_c_locale=GET_DEFAULT_CONFIG,$/;" v class:InitConfigTests +coerce_c_locale_warn Include/cpython/initconfig.h /^ int coerce_c_locale_warn;$/;" m struct:PyPreConfig +col_offset Include/cpython/compile.h /^ int col_offset;$/;" m struct:__anon206 +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_alias +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_arg +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_excepthandler +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_expr +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_keyword +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_pattern +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_stmt +col_offset Include/internal/pycore_ast.h /^ int col_offset;$/;" m struct:_type_param +col_offset Include/internal/pycore_ast_state.h /^ PyObject *col_offset;$/;" m struct:ast_state +col_offset Parser/pegen.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:__anon653 +col_offset Parser/tokenizer.h /^ int col_offset; \/* Current col offset *\/$/;" m struct:tok_state +col_offset Parser/tokenizer.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:token +collapse Lib/idlelib/tree.py /^ def collapse(self, event=None):$/;" m class:TreeNode +collapse_addresses Lib/ipaddress.py /^def collapse_addresses(addresses):$/;" f +collapse_rfc2231_value Lib/email/utils.py /^def collapse_rfc2231_value(value, errors='replace',$/;" f +collate_sections Tools/c-analyzer/table-file.py /^def collate_sections(lines):$/;" f +collation_callback Modules/_sqlite/connection.c /^collation_callback(void *context, int text1_length, const void *text1_data,$/;" f file: +collation_cb Lib/test/test_sqlite3/test_regression.py /^ def collation_cb(a, b):$/;" f function:RegressionTests.test_collation +collect Lib/test/test_weakref.py /^ def collect():$/;" f function:collect_in_thread +collectEnvironments PC/launcher2.c /^collectEnvironments(const SearchInfo *search, EnvironmentInfo **result)$/;" f +collect_builtins Lib/test/pythoninfo.py /^def collect_builtins(info_add):$/;" f +collect_cc Lib/test/pythoninfo.py /^def collect_cc(info_add):$/;" f +collect_children Lib/socketserver.py /^ def collect_children(self, *, blocking=False):$/;" m class:.ForkingMixIn +collect_curses Lib/test/pythoninfo.py /^def collect_curses(info_add):$/;" f +collect_datetime Lib/test/pythoninfo.py /^def collect_datetime(info_add):$/;" f +collect_decimal Lib/test/pythoninfo.py /^def collect_decimal(info_add):$/;" f +collect_exception_group_leaf_ids Objects/exceptions.c /^collect_exception_group_leaf_ids(PyObject *exc, PyObject *leaf_ids)$/;" f file: +collect_expat Lib/test/pythoninfo.py /^def collect_expat(info_add):$/;" f +collect_fips Lib/test/pythoninfo.py /^def collect_fips(info_add):$/;" f +collect_gdb Lib/test/pythoninfo.py /^def collect_gdb(info_add):$/;" f +collect_gdbm Lib/test/pythoninfo.py /^def collect_gdbm(info_add):$/;" f +collect_get_config Lib/test/pythoninfo.py /^def collect_get_config(info_add):$/;" f +collect_in_thread Lib/test/test_weakref.py /^def collect_in_thread(period=0.0001):$/;" f +collect_incoming_data Lib/test/smtpd.py /^ def collect_incoming_data(self, data):$/;" m class:SMTPChannel +collect_incoming_data Lib/test/support/asynchat.py /^ def collect_incoming_data(self, data):$/;" m class:async_chat +collect_incoming_data Lib/test/test_ftplib.py /^ def collect_incoming_data(self, data):$/;" m class:DummyFTPHandler +collect_incoming_data Lib/test/test_poplib.py /^ def collect_incoming_data(self, data):$/;" m class:DummyPOP3Handler +collect_info Lib/test/pythoninfo.py /^def collect_info(info):$/;" f +collect_locale Lib/test/pythoninfo.py /^def collect_locale(info_add):$/;" f +collect_os Lib/test/pythoninfo.py /^def collect_os(info_add):$/;" f +collect_platform Lib/test/pythoninfo.py /^def collect_platform(info_add):$/;" f +collect_pwd Lib/test/pythoninfo.py /^def collect_pwd(info_add):$/;" f +collect_readline Lib/test/pythoninfo.py /^def collect_readline(info_add):$/;" f +collect_resource Lib/test/pythoninfo.py /^def collect_resource(info_add):$/;" f +collect_rules Tools/peg_generator/pegen/parser_generator.py /^ def collect_rules(self) -> None:$/;" m class:ParserGenerator +collect_sections Tools/c-analyzer/table-file.py /^def collect_sections(lines):$/;" f +collect_socket Lib/test/pythoninfo.py /^def collect_socket(info_add):$/;" f +collect_sqlite Lib/test/pythoninfo.py /^def collect_sqlite(info_add):$/;" f +collect_ssl Lib/test/pythoninfo.py /^def collect_ssl(info_add):$/;" f +collect_subprocess Lib/test/pythoninfo.py /^def collect_subprocess(info_add):$/;" f +collect_sys Lib/test/pythoninfo.py /^def collect_sys(info_add):$/;" f +collect_sysconfig Lib/test/pythoninfo.py /^def collect_sysconfig(info_add):$/;" f +collect_test_socket Lib/test/pythoninfo.py /^def collect_test_socket(info_add):$/;" f +collect_test_support Lib/test/pythoninfo.py /^def collect_test_support(info_add):$/;" f +collect_testcapi Lib/test/pythoninfo.py /^def collect_testcapi(info_add):$/;" f +collect_time Lib/test/pythoninfo.py /^def collect_time(info_add):$/;" f +collect_tkinter Lib/test/pythoninfo.py /^def collect_tkinter(info_add):$/;" f +collect_urandom Lib/test/pythoninfo.py /^def collect_urandom(info_add):$/;" f +collect_vars Tools/peg_generator/pegen/c_generator.py /^ def collect_vars(self, node: Alt) -> Dict[Optional[str], Optional[str]]:$/;" m class:CParserGenerator +collect_windows Lib/test/pythoninfo.py /^def collect_windows(info_add):$/;" f +collect_zlib Lib/test/pythoninfo.py /^def collect_zlib(info_add):$/;" f +collected Include/internal/pycore_gc.h /^ Py_ssize_t collected;$/;" m struct:gc_generation_stats +collecting Include/internal/pycore_gc.h /^ int collecting;$/;" m struct:_gc_runtime_state +collecting_clear_unreachable_clear Modules/gcmodule.c /^enum flagstates {collecting_clear_unreachable_clear,$/;" e enum:flagstates file: +collecting_clear_unreachable_set Modules/gcmodule.c /^ collecting_clear_unreachable_set,$/;" e enum:flagstates file: +collecting_set_unreachable_clear Modules/gcmodule.c /^ collecting_set_unreachable_clear,$/;" e enum:flagstates file: +collecting_set_unreachable_set Modules/gcmodule.c /^ collecting_set_unreachable_set};$/;" e enum:flagstates file: +collections Include/internal/pycore_gc.h /^ Py_ssize_t collections;$/;" m struct:gc_generation_stats +collections_clear Modules/_collectionsmodule.c /^collections_clear(PyObject *mod)$/;" f file: +collections_exec Modules/_collectionsmodule.c /^collections_exec(PyObject *module) {$/;" f file: +collections_free Modules/_collectionsmodule.c /^collections_free(void *module)$/;" f file: +collections_methods Modules/_collectionsmodule.c /^static struct PyMethodDef collections_methods[] = {$/;" v typeref:struct:PyMethodDef file: +collections_slots Modules/_collectionsmodule.c /^static struct PyModuleDef_Slot collections_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +collections_state Modules/_collectionsmodule.c /^} collections_state;$/;" t typeref:struct:__anon529 file: +collections_traverse Modules/_collectionsmodule.c /^collections_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +collector Lib/test/test_pyexpat.py /^ def collector(name, *args):$/;" f function:InterningTest.test +collision_stats Lib/test/support/__init__.py /^def collision_stats(nbins, nballs):$/;" f +colon Lib/mailbox.py /^ colon = ':'$/;" v class:Maildir +color Lib/test/test_dynamicclassattribute.py /^ def color(self):$/;" m class:PropertyTests.test_abstract_virtual.Okay1 +color Lib/test/test_dynamicclassattribute.py /^ def color(self):$/;" m class:PropertyTests.test_abstract_virtual.Okay2 +color Lib/test/test_dynamicclassattribute.py /^ def color():$/;" m class:ClassWithAbstractVirtualProperty +color Lib/test/test_dynamicclassattribute.py /^ def color():$/;" m class:ClassWithPropertyAbstractVirtual +color Lib/turtle.py /^ def color(self, *args):$/;" m class:TPen +color_allow_default_converter Modules/_cursesmodule.c /^color_allow_default_converter(PyObject *arg, void *ptr)$/;" f file: +color_breakpoint_text Lib/idlelib/pyshell.py /^ def color_breakpoint_text(self, color=True):$/;" m class:PyShellEditorWindow +color_config Lib/idlelib/colorizer.py /^def color_config(text):$/;" f +color_converter Modules/_cursesmodule.c /^color_converter(PyObject *arg, void *ptr)$/;" f file: +color_point Modules/_decimal/libmpdec/bench.c /^color_point(mpd_t *x0, mpd_t *y0, long maxiter, mpd_context_t *ctx)$/;" f file: +color_point Modules/_decimal/libmpdec/bench_full.c /^color_point(const mpd_t *x0, const mpd_t *y0, const long maxiter, mpd_context_t *ctx)$/;" f file: +colorize_syntax_error Lib/idlelib/editor.py /^ def colorize_syntax_error(self, text, pos):$/;" m class:EditorWindow +colorkeys Lib/idlelib/idle_test/test_config.py /^ colorkeys = idleConf.current_colors_and_keys$/;" v class:CurrentColorKeysTest +colorlist Lib/test/test_tkinter/test_images.py /^ def colorlist(self, *args):$/;" m class:PhotoImageTest +colormapwindows Lib/tkinter/__init__.py /^ colormapwindows = wm_colormapwindows$/;" v class:Wm +colormode Lib/turtle.py /^ def colormode(self, cmode=None):$/;" m class:TurtleScreen +column Lib/lib2to3/pytree.py /^ column = 0 # Column where this token tarts in the input$/;" v class:Leaf +column Lib/tkinter/ttk.py /^ def column(self, column, option=None, **kw):$/;" m class:Treeview +column Tools/cases_generator/lexer.py /^ def column(self):$/;" m class:Token +columnNumber Modules/expat/xmltok.h /^ XML_Size columnNumber;$/;" m struct:position +column_width Lib/tkinter/tix.py /^ def column_width(self, col=0, width=None, chars=None):$/;" m class:HList +columnconfigure Lib/tkinter/__init__.py /^ columnconfigure = grid_columnconfigure$/;" v class:Misc +columnize Lib/cmd.py /^ def columnize(self, list, displaywidth=80):$/;" m class:Cmd +columns Modules/_cursesmodule.c 126;" d file: +combinations1 Lib/test/test_itertools.py /^ def combinations1(iterable, r):$/;" f function:TestBasicOps.test_combinations +combinations2 Lib/test/test_itertools.py /^ def combinations2(iterable, r):$/;" f function:TestBasicOps.test_combinations +combinations3 Lib/test/test_itertools.py /^ def combinations3(iterable, r):$/;" f function:TestBasicOps.test_combinations +combinations_dealloc Modules/itertoolsmodule.c /^combinations_dealloc(combinationsobject *co)$/;" f file: +combinations_methods Modules/itertoolsmodule.c /^static PyMethodDef combinations_methods[] = {$/;" v file: +combinations_next Modules/itertoolsmodule.c /^combinations_next(combinationsobject *co)$/;" f file: +combinations_reduce Modules/itertoolsmodule.c /^combinations_reduce(combinationsobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +combinations_setstate Modules/itertoolsmodule.c /^combinations_setstate(combinationsobject *lz, PyObject *state)$/;" f file: +combinations_sizeof Modules/itertoolsmodule.c /^combinations_sizeof(combinationsobject *co, void *unused)$/;" f file: +combinations_slots Modules/itertoolsmodule.c /^static PyType_Slot combinations_slots[] = {$/;" v file: +combinations_spec Modules/itertoolsmodule.c /^static PyType_Spec combinations_spec = {$/;" v file: +combinations_traverse Modules/itertoolsmodule.c /^combinations_traverse(combinationsobject *co, visitproc visit, void *arg)$/;" f file: +combinations_type Modules/itertoolsmodule.c /^ PyTypeObject *combinations_type;$/;" m struct:__anon400 file: +combinationsobject Modules/itertoolsmodule.c /^} combinationsobject;$/;" t typeref:struct:__anon414 file: +combine Lib/_pydatetime.py /^ def combine(cls, date, time, tzinfo=True):$/;" m class:datetime +combine Tools/scripts/combinerefs.py /^def combine(fname):$/;" f +combinefile Tools/scripts/combinerefs.py /^def combinefile(f):$/;" f +combining Modules/unicodedata.c /^ const unsigned char combining; \/* combining class value 0 - 255 *\/$/;" m struct:__anon642 file: +comerror_clear Modules/_ctypes/_ctypes.c /^comerror_clear(PyObject *self)$/;" f file: +comerror_dealloc Modules/_ctypes/_ctypes.c /^comerror_dealloc(PyObject *self)$/;" f file: +comerror_init Modules/_ctypes/_ctypes.c /^comerror_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f +comerror_slots Modules/_ctypes/_ctypes.c /^static PyType_Slot comerror_slots[] = {$/;" v file: +comerror_spec Modules/_ctypes/_ctypes.c /^static PyType_Spec comerror_spec = {$/;" v file: +comerror_traverse Modules/_ctypes/_ctypes.c /^comerror_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +command Lib/idlelib/editor.py /^ def command(text=text, eventname=eventname):$/;" f function:EditorWindow.fill_menus +command Lib/idlelib/editor.py /^ def command(text=self.text, eventname=eventname):$/;" f function:EditorWindow.make_rmenu +command Lib/test/test_tkinter/widget_tests.py /^ def command(*args):$/;" f function:AbstractWidgetTest.checkCommandParam +command Lib/tkinter/__init__.py /^ command = wm_command$/;" v class:Wm +command Lib/tkinter/colorchooser.py /^ command = "tk_chooseColor"$/;" v class:Chooser +command Lib/tkinter/commondialog.py /^ command = None$/;" v class:Dialog +command Lib/tkinter/filedialog.py /^ command = "tk_chooseDirectory"$/;" v class:Directory +command Lib/tkinter/filedialog.py /^ command = "tk_getOpenFile"$/;" v class:Open +command Lib/tkinter/filedialog.py /^ command = "tk_getSaveFile"$/;" v class:SaveAs +command Lib/tkinter/messagebox.py /^ command = "tk_messageBox"$/;" v class:Message +command_compile Tools/peg_generator/scripts/benchmark.py /^command_compile = subcommands.add_parser($/;" v +command_parse Tools/peg_generator/scripts/benchmark.py /^command_parse = subcommands.add_parser("parse", help="Benchmark parsing and generating an ast.AST")$/;" v +command_size_limit Lib/test/smtpd.py /^ command_size_limit = 512$/;" v class:SMTPChannel +command_size_limits Lib/test/smtpd.py /^ command_size_limits = collections.defaultdict(lambda x=command_size_limit: x)$/;" v class:SMTPChannel +commands PC/launcher.c /^static COMMAND commands[MAX_COMMANDS];$/;" v file: +commands_resuming Lib/pdb.py /^ commands_resuming = ['do_continue', 'do_step', 'do_next', 'do_return',$/;" v class:Pdb +comment Lib/idlelib/idle_test/test_calltip.py /^ def comment(self):$/;" f function:CalltipTest.test_comment_parens +comment Lib/test/test_sax.py /^ def comment(self, text):$/;" m class:LexicalHandlerTest.test_handlers.TestLexicalHandler +comment Lib/test/test_xml_etree.py /^ def comment(self, data):$/;" m class:ElementTreeTest.test_custom_builder.Builder +comment Lib/xml/dom/pulldom.py /^ def comment(self, s):$/;" m class:PullDOM +comment Lib/xml/etree/ElementTree.py /^ def comment(self, text):$/;" m class:C14NWriterTarget +comment Lib/xml/etree/ElementTree.py /^ def comment(self, text):$/;" m class:TreeBuilder +comment Lib/xml/sax/handler.py /^ def comment(self, content):$/;" m class:LexicalHandler +comment Lib/zipfile/__init__.py /^ def comment(self):$/;" m class:ZipFile +comment Lib/zipfile/__init__.py /^ def comment(self, comment):$/;" m class:ZipFile +comment Parser/pegen.h /^ char *comment; \/\/ The " " in "# type: ignore "$/;" m struct:__anon655::__anon656 +comment_event_obj Modules/_elementtree.c /^ PyObject *comment_event_obj;$/;" m struct:__anon385 file: +comment_factory Modules/_elementtree.c /^ PyObject *comment_factory;$/;" m struct:__anon381 file: +comment_factory Modules/_elementtree.c /^ PyObject *comment_factory;$/;" m struct:__anon385 file: +comment_handler Lib/xml/dom/expatbuilder.py /^ def comment_handler(self, data):$/;" m class:ExpatBuilder +comment_newline Parser/tokenizer.h /^ int comment_newline;$/;" m struct:tok_state +comment_prefixes Lib/test/test_configparser.py /^ comment_prefixes = '#;'$/;" v class:CompatibleTestCase +comment_prefixes Lib/test/test_configparser.py /^ comment_prefixes = ('#', ';', '----')$/;" v class:RawConfigParserTestSambaConf +comment_prefixes Lib/test/test_configparser.py /^ comment_prefixes = (';', '#')$/;" v class:CfgParserTestCaseClass +comment_prefixes Lib/test/test_configparser.py /^ comment_prefixes = ('\/\/', '"')$/;" v class:ConfigParserTestCaseNonStandardDelimiters +comment_prefixes Lib/test/test_configparser.py /^ comment_prefixes = ('\/\/', '"')$/;" v class:RawConfigParserTestCaseNonStandardDelimiters +comment_prefixes Lib/test/test_configparser.py /^ comment_prefixes = {'#'}$/;" v class:ConfigParserTestCaseTrickyFile +comment_re Tools/cases_generator/lexer.py /^comment_re = r'\/\/.*|\/\\*([^*]|\\*[^\/])*\\*\/'$/;" v +comment_region_event Lib/idlelib/format.py /^ def comment_region_event(self, event=None):$/;" m class:FormatRegion +commentclose Lib/html/parser.py /^commentclose = re.compile(r'--\\s*>')$/;" v +comments Lib/email/_header_value_parser.py /^ def comments(self):$/;" m class:Comment +comments Lib/email/_header_value_parser.py /^ def comments(self):$/;" m class:Terminal +comments Lib/email/_header_value_parser.py /^ def comments(self):$/;" m class:TokenList +comments Lib/email/_header_value_parser.py /^ def comments(self):$/;" m class:WhiteSpaceTokenList +comments Lib/xml/dom/xmlbuilder.py /^ comments = True$/;" v class:Options +commit Lib/msilib/__init__.py /^ def commit(self, db):$/;" m class:CAB +commit_frame Lib/pickle.py /^ def commit_frame(self, force=False):$/;" m class:_Framer +common Lib/test/_test_multiprocessing.py /^ def common(self, manager):$/;" m class:_TestMyManager +common Modules/expat/xmlrole.c /^common(PROLOG_STATE *state, int tok) {$/;" f file: +common_attributes Lib/test/test_genericpath.py /^ common_attributes = GenericTest.common_attributes + [$/;" v class:CommonTest +common_attributes Lib/test/test_genericpath.py /^ common_attributes = ['commonprefix', 'getsize', 'getatime', 'getctime',$/;" v class:GenericTest +common_logger_config Lib/logging/config.py /^ def common_logger_config(self, logger, config, incremental=False):$/;" m class:DictConfigurator +common_look_up_self Modules/_testsinglephase.c /^common_look_up_self(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +common_state_initialized Modules/_testsinglephase.c /^common_state_initialized(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +common_sum Modules/_testsinglephase.c /^common_sum(PyObject *self, PyObject *args)$/;" f file: +commonpath Lib/ntpath.py /^def commonpath(paths):$/;" f +commonpath Lib/posixpath.py /^def commonpath(paths):$/;" f +commonprefix Lib/genericpath.py /^def commonprefix(m):$/;" f +communicate Lib/asyncio/subprocess.py /^ async def communicate(self, input=None):$/;" m class:Process +communicate Lib/subprocess.py /^ def communicate(self, input=None, timeout=None):$/;" m class:Popen +comp Lib/test/test_bz2.py /^ def comp():$/;" f function:BZ2FileTest.testThreading +comp Lib/test/test_unittest/testmock/testmagicmethods.py /^ def comp(s, o):$/;" f function:TestMockingMagicMethods.test_comparison +comp_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class comp_ctx_st(Structure):$/;" c +comp_data Modules/unicodedata_db.h /^static const unsigned int comp_data[] = {$/;" v +comp_index Modules/unicodedata_db.h /^static const unsigned short comp_index[] = {$/;" v +comp_method_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class comp_method_st(Structure):$/;" c +comp_methods Modules/zlibmodule.c /^static PyMethodDef comp_methods[] =$/;" v file: +compact Include/cpython/unicodeobject.h /^ unsigned int compact:1;$/;" m struct:__anon231::__anon232 +compact_set Tools/unicode/mkstringprep.py /^def compact_set(l):$/;" f +compact_traceback Lib/test/support/asyncore.py /^def compact_traceback():$/;" f +company PC/launcher2.c /^ const wchar_t *company;$/;" m struct:EnvironmentInfo file: +company PC/launcher2.c /^ const wchar_t *company;$/;" m struct:__anon284 file: +companyLength PC/launcher2.c /^ int companyLength;$/;" m struct:__anon284 file: +company_id Lib/test/test_enum.py /^ company_id = 'An$(3,2)', 1$/;" v class:TestSpecial.test_missing_value_error.Combined +comparators Include/internal/pycore_ast.h /^ asdl_expr_seq *comparators;$/;" m struct:_expr::__anon77::__anon93 +comparators Include/internal/pycore_ast_state.h /^ PyObject *comparators;$/;" m struct:ast_state +compare Lib/_pydecimal.py /^ def compare(self, a, b):$/;" m class:Context +compare Lib/_pydecimal.py /^ def compare(self, other, context=None):$/;" m class:Decimal +compare Lib/difflib.py /^ def compare(self, a, b):$/;" m class:Differ +compare Lib/idlelib/idle_test/mock_tk.py /^ def compare(self, index1, op, index2):$/;" m class:Text +compare Lib/pstats.py /^ def compare (self, left, right):$/;" m class:TupleComp +compare Lib/test/test_pyclbr.py /^ def compare(parent1, children1, parent2, children2):$/;" f function:PyclbrTest.test_nested +compare Lib/tkinter/__init__.py /^ def compare(self, index1, op, index2):$/;" m class:Text +compareSockets Lib/test/test_socket.py /^ def compareSockets(self, org, other):$/;" m class:TestSocketSharing +compare_against_time Lib/test/test_strptime.py /^ def compare_against_time(self, testing, directive, tuple_position,$/;" m class:LocaleTime_Tests +compare_codecs Tools/unicode/comparecodecs.py /^def compare_codecs(encoding1, encoding2):$/;" f +compare_dialect_123 Lib/test/test_csv.py /^ def compare_dialect_123(self, expected, *writeargs, **kwwriteargs):$/;" m class:TestDialectRegistry +compare_dicts Tools/build/parse_html5_entities.py /^def compare_dicts(old, new):$/;" f +compare_digest Lib/hmac.py /^ compare_digest = _hashopenssl.compare_digest$/;" v +compare_events Lib/test/test_sys_settrace.py /^ def compare_events(self, line_offset, events, expected_events):$/;" m class:SkipLineEventsTraceTestCase +compare_events Lib/test/test_sys_settrace.py /^ def compare_events(self, line_offset, events, expected_events):$/;" m class:TraceOpcodesTestCase +compare_events Lib/test/test_sys_settrace.py /^ def compare_events(self, line_offset, events, expected_events):$/;" m class:TraceTestCase +compare_func Include/internal/pycore_hashtable.h /^ _Py_hashtable_compare_func compare_func;$/;" m struct:_Py_hashtable_t +compare_generators Lib/test/test_asyncgen.py /^ def compare_generators(self, sync_gen, async_gen):$/;" m class:AsyncGenTest +compare_generic_iter Lib/test/test_wsgiref.py /^def compare_generic_iter(make_it, match):$/;" f +compare_handler Modules/signalmodule.c /^compare_handler(PyObject *func, PyObject *dfl_ign_handler)$/;" f file: +compare_jump_output Lib/test/test_sys_settrace.py /^ def compare_jump_output(self, expected, received):$/;" m class:JumpTestCase +compare_masks Python/compile.c /^static const int compare_masks[] = {$/;" v file: +compare_networks Lib/ipaddress.py /^ def compare_networks(self, other):$/;" m class:_BaseNetwork +compare_op_bitwise_or_pair_rule Parser/parser.c /^compare_op_bitwise_or_pair_rule(Parser *p)$/;" f file: +compare_op_bitwise_or_pair_type Parser/parser.c 197;" d file: +compare_op_fail_kind Python/specialize.c /^compare_op_fail_kind(PyObject *lhs, PyObject *rhs)$/;" f file: +compare_pythons PC/launcher.c /^compare_pythons(const void * p1, const void * p2)$/;" f file: +compare_signal Lib/_pydecimal.py /^ def compare_signal(self, a, b):$/;" m class:Context +compare_signal Lib/_pydecimal.py /^ def compare_signal(self, other, context=None):$/;" m class:Decimal +compare_to Lib/tracemalloc.py /^ def compare_to(self, old_snapshot, key_type, cumulative=False):$/;" m class:Snapshot +compare_total Lib/_pydecimal.py /^ def compare_total(self, a, b):$/;" m class:Context +compare_total Lib/_pydecimal.py /^ def compare_total(self, other, context=None):$/;" m class:Decimal +compare_total_mag Lib/_pydecimal.py /^ def compare_total_mag(self, a, b):$/;" m class:Context +compare_total_mag Lib/_pydecimal.py /^ def compare_total_mag(self, other, context=None):$/;" m class:Decimal +compareitems Modules/arraymodule.c /^ int (*compareitems)(const void *, const void *, Py_ssize_t);$/;" m struct:arraydescr file: +comparison_rule Parser/parser.c /^comparison_rule(Parser *p)$/;" f file: +comparison_type Parser/parser.c 196;" d file: +comparisons Lib/test/test_copy.py /^comparisons = order_comparisons + equality_comparisons$/;" v +compat Lib/lib2to3/pgen2/tokenize.py /^ def compat(self, token, iterable):$/;" m class:Untokenizer +compat Lib/tokenize.py /^ def compat(self, token, iterable):$/;" m class:Untokenizer +compat32 Lib/email/_policybase.py /^compat32 = Compat32()$/;" v +compat32_defaults Lib/test/test_email/test_policy.py /^ compat32_defaults = {$/;" v class:PolicyAPITests +compatible_for_assignment Objects/typeobject.c /^compatible_for_assignment(PyTypeObject* oldto, PyTypeObject* newto, const char* attr)$/;" f file: +compatible_formats Lib/pickle.py /^compatible_formats = ["1.0", # Original protocol 0$/;" v +compatible_kind Objects/frameobject.c /^compatible_kind(Kind from, Kind to) {$/;" f file: +compatible_stack Objects/frameobject.c /^compatible_stack(int64_t from_stack, int64_t to_stack)$/;" f file: +compatible_with_tp_base Objects/typeobject.c /^compatible_with_tp_base(PyTypeObject *child)$/;" f file: +compile Lib/_strptime.py /^ def compile(self, format):$/;" m class:TimeRE +compile Lib/py_compile.py /^def compile(file, cfile=None, dfile=None, doraise=False, optimize=-1,$/;" f +compile Lib/re/__init__.py /^def compile(pattern, flags=0):$/;" f +compile Lib/re/_compiler.py /^def compile(p, flags=0):$/;" f +compile Tools/wasm/wasm_build.py /^ compile="run 'make all'",$/;" v +compile_and_marshal Programs/_freeze_module.c /^compile_and_marshal(const char *name, const char *text)$/;" f file: +compile_and_marshal Programs/_freeze_module.py /^def compile_and_marshal(name: str, text: bytes) -> bytes:$/;" f +compile_basic Lib/lib2to3/patcomp.py /^ def compile_basic(self, nodes, repeat=None):$/;" m class:PatternCompiler +compile_c_extension Tools/peg_generator/pegen/build.py /^def compile_c_extension($/;" f +compile_command Lib/codeop.py /^def compile_command(source, filename="", symbol="single"):$/;" f +compile_constant Lib/test/test_ast.py /^ def compile_constant(self, value):$/;" m class:ConstantTests +compile_dir Lib/compileall.py /^def compile_dir(dir, maxlevels=None, ddir=None, force=False,$/;" f +compile_dir Lib/test/test_compileall.py /^ def compile_dir(self, *, dedup=True, optimize=(0, 1, 2), force=False):$/;" m class:HardlinkDedupTestsBase +compile_file Lib/compileall.py /^def compile_file(fullname, ddir=None, force=False, rx=None, quiet=0,$/;" f +compile_node Lib/lib2to3/patcomp.py /^ def compile_node(self, node):$/;" m class:PatternCompiler +compile_path Lib/compileall.py /^def compile_path(skip_curdir=1, maxlevels=0, force=False, quiet=0,$/;" f +compile_pattern Lib/lib2to3/fixer_base.py /^ def compile_pattern(self):$/;" m class:BaseFix +compile_pattern Lib/lib2to3/fixes/fix_imports.py /^ def compile_pattern(self):$/;" m class:FixImports +compile_pattern Lib/lib2to3/patcomp.py /^ def compile_pattern(self, input, debug=False, with_tree=False):$/;" m class:PatternCompiler +compile_pattern Lib/lib2to3/patcomp.py /^def compile_pattern(pattern):$/;" f +compile_pattern_with_fast_locals Lib/test/test_peepholer.py /^def compile_pattern_with_fast_locals(pattern):$/;" f +compile_progs Lib/idlelib/outwin.py /^def compile_progs():$/;" f +compile_single Lib/test/test_compile.py /^ def compile_single(self, source):$/;" m class:TestSpecifics +compile_snippet Lib/test/test_compile.py /^ def compile_snippet(i):$/;" f function:TestStackSizeStability.check_stack_size +compile_template Modules/_sre/sre.c /^ PyObject *compile_template; \/\/ reference to re._compile_template$/;" m struct:__anon462 file: +compile_template Modules/_sre/sre.c /^compile_template(_sremodulestate *module_state,$/;" f file: +compile_trampoline Python/perf_trampoline.c /^compile_trampoline(void)$/;" f file: +compiled_name Lib/test/test_import/__init__.py /^ compiled_name = importlib.util.cache_from_source(file_name)$/;" v +compiled_patterns Modules/_xxtestfuzz/fuzzer.c /^PyObject** compiled_patterns = NULL;$/;" v +compiler Python/compile.c /^struct compiler {$/;" s file: +compiler Tools/c-analyzer/c_parser/preprocessor/common.py /^ compiler=compiler or tool,$/;" v +compiler Tools/c-analyzer/c_parser/preprocessor/common.py /^ compiler = distutils.ccompiler.new_compiler($/;" v +compilerCanOptimize Mac/BuildScript/build-installer.py /^def compilerCanOptimize():$/;" f +compiler_add_const Python/compile.c /^compiler_add_const(PyObject *const_cache, struct compiler_unit *u, PyObject *o)$/;" f file: +compiler_add_yield_from Python/compile.c /^compiler_add_yield_from(struct compiler *c, location loc, int await)$/;" f file: +compiler_addcompare Python/compile.c /^static int compiler_addcompare(struct compiler *c, location loc,$/;" f file: +compiler_addop_load_const Python/compile.c /^compiler_addop_load_const(PyObject *const_cache, struct compiler_unit *u, location loc, PyObject *o)$/;" f file: +compiler_addop_name Python/compile.c /^compiler_addop_name(struct compiler_unit *u, location loc,$/;" f file: +compiler_addop_o Python/compile.c /^compiler_addop_o(struct compiler_unit *u, location loc,$/;" f file: +compiler_annassign Python/compile.c /^compiler_annassign(struct compiler *c, stmt_ty s)$/;" f file: +compiler_apply_decorators Python/compile.c /^compiler_apply_decorators(struct compiler *c, asdl_expr_seq* decos)$/;" f file: +compiler_assert Python/compile.c /^compiler_assert(struct compiler *c, stmt_ty s)$/;" f file: +compiler_async_comprehension_generator Python/compile.c /^compiler_async_comprehension_generator(struct compiler *c, location loc,$/;" f file: +compiler_async_for Python/compile.c /^compiler_async_for(struct compiler *c, stmt_ty s)$/;" f file: +compiler_async_with Python/compile.c /^compiler_async_with(struct compiler *c, stmt_ty s, int pos)$/;" f file: +compiler_augassign Python/compile.c /^compiler_augassign(struct compiler *c, stmt_ty s)$/;" f file: +compiler_body Python/compile.c /^compiler_body(struct compiler *c, location loc, asdl_stmt_seq *stmts)$/;" f file: +compiler_boolop Python/compile.c /^compiler_boolop(struct compiler *c, expr_ty e)$/;" f file: +compiler_break Python/compile.c /^compiler_break(struct compiler *c, location loc)$/;" f file: +compiler_call Python/compile.c /^compiler_call(struct compiler *c, expr_ty e)$/;" f file: +compiler_call_exit_with_nones Python/compile.c /^compiler_call_exit_with_nones(struct compiler *c, location loc)$/;" f file: +compiler_call_helper Python/compile.c /^compiler_call_helper(struct compiler *c, location loc,$/;" f file: +compiler_call_simple_kw_helper Python/compile.c /^compiler_call_simple_kw_helper(struct compiler *c, location loc,$/;" f file: +compiler_check_debug_args Python/compile.c /^compiler_check_debug_args(struct compiler *c, arguments_ty args)$/;" f file: +compiler_check_debug_args_seq Python/compile.c /^compiler_check_debug_args_seq(struct compiler *c, asdl_arg_seq *args)$/;" f file: +compiler_check_debug_one_arg Python/compile.c /^compiler_check_debug_one_arg(struct compiler *c, arg_ty arg)$/;" f file: +compiler_class Python/compile.c /^compiler_class(struct compiler *c, stmt_ty s)$/;" f file: +compiler_class Tools/c-analyzer/distutils/ccompiler.py /^compiler_class = { 'unix': ('unixccompiler', 'UnixCCompiler',$/;" v +compiler_class_body Python/compile.c /^compiler_class_body(struct compiler *c, stmt_ty s, int firstlineno)$/;" f file: +compiler_codegen Python/compile.c /^compiler_codegen(struct compiler *c, mod_ty mod)$/;" f file: +compiler_compare Python/compile.c /^compiler_compare(struct compiler *c, expr_ty e)$/;" f file: +compiler_comprehension Python/compile.c /^compiler_comprehension(struct compiler *c, expr_ty e, int type,$/;" f file: +compiler_comprehension_generator Python/compile.c /^compiler_comprehension_generator(struct compiler *c, location loc,$/;" f file: +compiler_comprehension_iter Python/compile.c /^compiler_comprehension_iter(struct compiler *c, location loc,$/;" f file: +compiler_continue Python/compile.c /^compiler_continue(struct compiler *c, location loc)$/;" f file: +compiler_decorators Python/compile.c /^compiler_decorators(struct compiler *c, asdl_expr_seq* decos)$/;" f file: +compiler_default_arguments Python/compile.c /^compiler_default_arguments(struct compiler *c, location loc,$/;" f file: +compiler_dict Python/compile.c /^compiler_dict(struct compiler *c, expr_ty e)$/;" f file: +compiler_dictcomp Python/compile.c /^compiler_dictcomp(struct compiler *c, expr_ty e)$/;" f file: +compiler_enter_scope Python/compile.c /^compiler_enter_scope(struct compiler *c, identifier name,$/;" f file: +compiler_error Python/compile.c /^compiler_error(struct compiler *c, location loc,$/;" f file: +compiler_error_duplicate_store Python/compile.c /^compiler_error_duplicate_store(struct compiler *c, location loc, identifier n)$/;" f file: +compiler_exit_scope Python/compile.c /^compiler_exit_scope(struct compiler *c)$/;" f file: +compiler_fixup Lib/_osx_support.py /^def compiler_fixup(compiler_so, cc_args):$/;" f +compiler_for Python/compile.c /^compiler_for(struct compiler *c, stmt_ty s)$/;" f file: +compiler_formatted_value Python/compile.c /^compiler_formatted_value(struct compiler *c, expr_ty e)$/;" f file: +compiler_free Python/compile.c /^compiler_free(struct compiler *c)$/;" f file: +compiler_from_import Python/compile.c /^compiler_from_import(struct compiler *c, stmt_ty s)$/;" f file: +compiler_function Python/compile.c /^compiler_function(struct compiler *c, stmt_ty s, int is_async)$/;" f file: +compiler_function_body Python/compile.c /^compiler_function_body(struct compiler *c, stmt_ty s, int is_async, Py_ssize_t funcflags,$/;" f file: +compiler_genexp Python/compile.c /^compiler_genexp(struct compiler *c, expr_ty e)$/;" f file: +compiler_if Python/compile.c /^compiler_if(struct compiler *c, stmt_ty s)$/;" f file: +compiler_ifexp Python/compile.c /^compiler_ifexp(struct compiler *c, expr_ty e)$/;" f file: +compiler_import Python/compile.c /^compiler_import(struct compiler *c, stmt_ty s)$/;" f file: +compiler_import_as Python/compile.c /^compiler_import_as(struct compiler *c, location loc,$/;" f file: +compiler_joined_str Python/compile.c /^compiler_joined_str(struct compiler *c, expr_ty e)$/;" f file: +compiler_jump_if Python/compile.c /^compiler_jump_if(struct compiler *c, location loc,$/;" f file: +compiler_lambda Python/compile.c /^compiler_lambda(struct compiler *c, expr_ty e)$/;" f file: +compiler_list Python/compile.c /^compiler_list(struct compiler *c, expr_ty e)$/;" f file: +compiler_listcomp Python/compile.c /^compiler_listcomp(struct compiler *c, expr_ty e)$/;" f file: +compiler_lookup_arg Python/compile.c /^compiler_lookup_arg(PyObject *dict, PyObject *name)$/;" f file: +compiler_make_closure Python/compile.c /^compiler_make_closure(struct compiler *c, location loc,$/;" f file: +compiler_match Python/compile.c /^compiler_match(struct compiler *c, stmt_ty s)$/;" f file: +compiler_match_inner Python/compile.c /^compiler_match_inner(struct compiler *c, stmt_ty s, pattern_context *pc)$/;" f file: +compiler_mod Python/compile.c /^compiler_mod(struct compiler *c, mod_ty mod)$/;" f file: +compiler_nameop Python/compile.c /^compiler_nameop(struct compiler *c, location loc,$/;" f file: +compiler_pattern Python/compile.c /^compiler_pattern(struct compiler *c, pattern_ty p, pattern_context *pc)$/;" f file: +compiler_pattern_as Python/compile.c /^compiler_pattern_as(struct compiler *c, pattern_ty p, pattern_context *pc)$/;" f file: +compiler_pattern_class Python/compile.c /^compiler_pattern_class(struct compiler *c, pattern_ty p, pattern_context *pc)$/;" f file: +compiler_pattern_mapping Python/compile.c /^compiler_pattern_mapping(struct compiler *c, pattern_ty p,$/;" f file: +compiler_pattern_or Python/compile.c /^compiler_pattern_or(struct compiler *c, pattern_ty p, pattern_context *pc)$/;" f file: +compiler_pattern_sequence Python/compile.c /^compiler_pattern_sequence(struct compiler *c, pattern_ty p,$/;" f file: +compiler_pattern_singleton Python/compile.c /^compiler_pattern_singleton(struct compiler *c, pattern_ty p, pattern_context *pc)$/;" f file: +compiler_pattern_star Python/compile.c /^compiler_pattern_star(struct compiler *c, pattern_ty p, pattern_context *pc)$/;" f file: +compiler_pattern_subpattern Python/compile.c /^compiler_pattern_subpattern(struct compiler *c,$/;" f file: +compiler_pattern_value Python/compile.c /^compiler_pattern_value(struct compiler *c, pattern_ty p, pattern_context *pc)$/;" f file: +compiler_pop_except_and_reraise Python/compile.c /^compiler_pop_except_and_reraise(struct compiler *c, location loc)$/;" f file: +compiler_pop_fblock Python/compile.c /^compiler_pop_fblock(struct compiler *c, enum fblocktype t, jump_target_label block_label)$/;" f file: +compiler_push_fblock Python/compile.c /^compiler_push_fblock(struct compiler *c, location loc,$/;" f file: +compiler_return Python/compile.c /^compiler_return(struct compiler *c, stmt_ty s)$/;" f file: +compiler_set Python/compile.c /^compiler_set(struct compiler *c, expr_ty e)$/;" f file: +compiler_set_qualname Python/compile.c /^compiler_set_qualname(struct compiler *c)$/;" f file: +compiler_set_type_params_in_class Python/compile.c /^compiler_set_type_params_in_class(struct compiler *c, location loc)$/;" f file: +compiler_setcomp Python/compile.c /^compiler_setcomp(struct compiler *c, expr_ty e)$/;" f file: +compiler_setup Python/compile.c /^compiler_setup(struct compiler *c, mod_ty mod, PyObject *filename,$/;" f file: +compiler_slice Python/compile.c /^compiler_slice(struct compiler *c, expr_ty s)$/;" f file: +compiler_stmt_expr Python/compile.c /^compiler_stmt_expr(struct compiler *c, location loc, expr_ty value)$/;" f file: +compiler_subdict Python/compile.c /^compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end)$/;" f file: +compiler_subkwargs Python/compile.c /^compiler_subkwargs(struct compiler *c, location loc,$/;" f file: +compiler_subscript Python/compile.c /^compiler_subscript(struct compiler *c, expr_ty e)$/;" f file: +compiler_sync_comprehension_generator Python/compile.c /^compiler_sync_comprehension_generator(struct compiler *c, location loc,$/;" f file: +compiler_try Python/compile.c /^compiler_try(struct compiler *c, stmt_ty s) {$/;" f file: +compiler_try_except Python/compile.c /^compiler_try_except(struct compiler *c, stmt_ty s)$/;" f file: +compiler_try_finally Python/compile.c /^compiler_try_finally(struct compiler *c, stmt_ty s)$/;" f file: +compiler_try_star Python/compile.c /^compiler_try_star(struct compiler *c, stmt_ty s)$/;" f file: +compiler_try_star_except Python/compile.c /^compiler_try_star_except(struct compiler *c, stmt_ty s)$/;" f file: +compiler_try_star_finally Python/compile.c /^compiler_try_star_finally(struct compiler *c, stmt_ty s)$/;" f file: +compiler_tuple Python/compile.c /^compiler_tuple(struct compiler *c, expr_ty e)$/;" f file: +compiler_type Tools/c-analyzer/distutils/_msvccompiler.py /^ compiler_type = 'msvc'$/;" v class:MSVCCompiler +compiler_type Tools/c-analyzer/distutils/bcppcompiler.py /^ compiler_type = 'bcpp'$/;" v class:BCPPCompiler +compiler_type Tools/c-analyzer/distutils/ccompiler.py /^ compiler_type = None$/;" v class:CCompiler +compiler_type Tools/c-analyzer/distutils/cygwinccompiler.py /^ compiler_type = 'cygwin'$/;" v class:CygwinCCompiler +compiler_type Tools/c-analyzer/distutils/cygwinccompiler.py /^ compiler_type = 'mingw32'$/;" v class:Mingw32CCompiler +compiler_type Tools/c-analyzer/distutils/msvc9compiler.py /^ compiler_type = 'msvc'$/;" v class:MSVCCompiler +compiler_type Tools/c-analyzer/distutils/msvccompiler.py /^ compiler_type = 'msvc'$/;" v class:MSVCCompiler +compiler_type Tools/c-analyzer/distutils/unixccompiler.py /^ compiler_type = 'unix'$/;" v class:UnixCCompiler +compiler_type_params Python/compile.c /^compiler_type_params(struct compiler *c, asdl_type_param_seq *type_params)$/;" f file: +compiler_typealias Python/compile.c /^compiler_typealias(struct compiler *c, stmt_ty s)$/;" f file: +compiler_typealias_body Python/compile.c /^compiler_typealias_body(struct compiler *c, stmt_ty s)$/;" f file: +compiler_unit Python/compile.c /^struct compiler_unit {$/;" s file: +compiler_unit_free Python/compile.c /^compiler_unit_free(struct compiler_unit *u)$/;" f file: +compiler_unwind_fblock Python/compile.c /^compiler_unwind_fblock(struct compiler *c, location *ploc,$/;" f file: +compiler_unwind_fblock_stack Python/compile.c /^compiler_unwind_fblock_stack(struct compiler *c, location *ploc,$/;" f file: +compiler_visit_annexpr Python/compile.c /^compiler_visit_annexpr(struct compiler *c, expr_ty annotation)$/;" f file: +compiler_visit_annotations Python/compile.c /^compiler_visit_annotations(struct compiler *c, location loc,$/;" f file: +compiler_visit_argannotation Python/compile.c /^compiler_visit_argannotation(struct compiler *c, identifier id,$/;" f file: +compiler_visit_argannotations Python/compile.c /^compiler_visit_argannotations(struct compiler *c, asdl_arg_seq* args,$/;" f file: +compiler_visit_defaults Python/compile.c /^compiler_visit_defaults(struct compiler *c, arguments_ty args,$/;" f file: +compiler_visit_expr Python/compile.c /^compiler_visit_expr(struct compiler *c, expr_ty e)$/;" f file: +compiler_visit_expr1 Python/compile.c /^compiler_visit_expr1(struct compiler *c, expr_ty e)$/;" f file: +compiler_visit_keyword Python/compile.c /^compiler_visit_keyword(struct compiler *c, keyword_ty k)$/;" f file: +compiler_visit_kwonlydefaults Python/compile.c /^compiler_visit_kwonlydefaults(struct compiler *c, location loc,$/;" f file: +compiler_visit_stmt Python/compile.c /^compiler_visit_stmt(struct compiler *c, stmt_ty s)$/;" f file: +compiler_warn Python/compile.c /^compiler_warn(struct compiler *c, location loc,$/;" f file: +compiler_while Python/compile.c /^compiler_while(struct compiler *c, stmt_ty s)$/;" f file: +compiler_with Python/compile.c /^compiler_with(struct compiler *c, stmt_ty s, int pos)$/;" f file: +compiler_with_except_finish Python/compile.c /^compiler_with_except_finish(struct compiler *c, jump_target_label cleanup) {$/;" f file: +complete Lib/cmd.py /^ def complete(self, text, state):$/;" m class:Cmd +complete Lib/idlelib/autocomplete_w.py /^ def complete(self):$/;" m class:AutoCompleteWindow +complete Lib/rlcompleter.py /^ def complete(self, text, state):$/;" m class:Completer +complete_b Lib/pdb.py /^ complete_b = _complete_location$/;" v class:Pdb +complete_break Lib/pdb.py /^ complete_break = _complete_location$/;" v class:Pdb +complete_cl Lib/pdb.py /^ complete_cl = _complete_location$/;" v class:Pdb +complete_clear Lib/pdb.py /^ complete_clear = _complete_location$/;" v class:Pdb +complete_command Lib/test/test_cmd.py /^ def complete_command(self):$/;" m class:samplecmdclass +complete_commands Lib/pdb.py /^ complete_commands = _complete_bpnumber$/;" v class:Pdb +complete_condition Lib/pdb.py /^ complete_condition = _complete_bpnumber$/;" v class:Pdb +complete_debug Lib/pdb.py /^ complete_debug = _complete_expression$/;" v class:Pdb +complete_disable Lib/pdb.py /^ complete_disable = _complete_bpnumber$/;" v class:Pdb +complete_display Lib/pdb.py /^ complete_display = _complete_expression$/;" v class:Pdb +complete_enable Lib/pdb.py /^ complete_enable = _complete_bpnumber$/;" v class:Pdb +complete_help Lib/cmd.py /^ def complete_help(self, *args):$/;" m class:Cmd +complete_ignore Lib/pdb.py /^ complete_ignore = _complete_bpnumber$/;" v class:Pdb +complete_insts_info Lib/test/support/bytecode_helper.py /^ def complete_insts_info(self, insts):$/;" m class:CompilationStepTestCase +complete_metadata Lib/test/test_compiler_assemble.py /^ def complete_metadata(self, metadata, filename="myfile.py"):$/;" m class:IsolatedAssembleTests +complete_p Lib/pdb.py /^ complete_p = _complete_expression$/;" v class:Pdb +complete_pp Lib/pdb.py /^ complete_pp = _complete_expression$/;" v class:Pdb +complete_print Lib/pdb.py /^ complete_print = _complete_expression$/;" v class:Pdb +complete_sort Lib/pstats.py /^ def complete_sort(self, text, *args):$/;" m class:f8.ProfileBrowser +complete_source Lib/pdb.py /^ complete_source = _complete_expression$/;" v class:Pdb +complete_tbreak Lib/pdb.py /^ complete_tbreak = _complete_location$/;" v class:Pdb +complete_unalias Lib/pdb.py /^ def complete_unalias(self, text, line, begidx, endidx):$/;" m class:Pdb +complete_undisplay Lib/pdb.py /^ def complete_undisplay(self, text, line, begidx, endidx):$/;" m class:Pdb +complete_whatis Lib/pdb.py /^ complete_whatis = _complete_expression$/;" v class:Pdb +completed Modules/_winapi.c /^ int completed;$/;" m struct:__anon535 file: +completed_input_string Modules/readline.c /^static char *completed_input_string;$/;" v file: +completedefault Lib/cmd.py /^ def completedefault(self, *ignored):$/;" m class:Cmd +completedefault Lib/test/test_cmd.py /^ def completedefault(self, *ignored):$/;" m class:samplecmdclass +completenames Lib/cmd.py /^ def completenames(self, text, *ignored):$/;" m class:Cmd +completer Modules/readline.c /^ PyObject *completer; \/* Specify a word completer in Python *\/$/;" m struct:__anon339 file: +completer_word_break_characters Modules/readline.c /^static char *completer_word_break_characters;$/;" v file: +completion_display_matches_hook Modules/readline.c /^ PyObject *completion_display_matches_hook;$/;" m struct:__anon339 file: +completion_kwds Lib/idlelib/autocomplete.py /^completion_kwds = [s for s in keyword.kwlist$/;" v +completion_matches Modules/readline.c 44;" d file: +complex0 Lib/test/test_complex.py /^ class complex0(complex):$/;" c function:ComplexTest.test_constructor +complex1 Lib/test/test_complex.py /^ class complex1(complex):$/;" c function:ComplexTest.test_constructor +complex2 Lib/test/test_complex.py /^ class complex2(complex): pass$/;" c function:ComplexTest.test_constructor +complex2 Lib/test/test_complex.py /^ class complex2(complex):$/;" c function:ComplexTest.test_constructor +complex2 Lib/test/test_complex.py /^ class complex2(complex):$/;" c function:ComplexTest.test_constructor_special_numbers +complexSum Parser/asdl_c.py /^ def complexSum(self, sum, name):$/;" m class:Obj2ModVisitor +complex___complex__ Objects/clinic/complexobject.c.h /^complex___complex__(PyComplexObject *self, PyObject *Py_UNUSED(ignored))$/;" f +complex___complex___impl Objects/complexobject.c /^complex___complex___impl(PyComplexObject *self)$/;" f file: +complex___format__ Objects/clinic/complexobject.c.h /^complex___format__(PyComplexObject *self, PyObject *arg)$/;" f +complex___format___impl Objects/complexobject.c /^complex___format___impl(PyComplexObject *self, PyObject *format_spec)$/;" f file: +complex___getnewargs__ Objects/clinic/complexobject.c.h /^complex___getnewargs__(PyComplexObject *self, PyObject *Py_UNUSED(ignored))$/;" f +complex___getnewargs___impl Objects/complexobject.c /^complex___getnewargs___impl(PyComplexObject *self)$/;" f file: +complex_abs Objects/complexobject.c /^complex_abs(PyComplexObject *v)$/;" f file: +complex_add Objects/complexobject.c /^complex_add(PyObject *v, PyObject *w)$/;" f file: +complex_as_number Objects/complexobject.c /^static PyNumberMethods complex_as_number = {$/;" v file: +complex_bool Objects/complexobject.c /^complex_bool(PyComplexObject *v)$/;" f file: +complex_conjugate Objects/clinic/complexobject.c.h /^complex_conjugate(PyComplexObject *self, PyObject *Py_UNUSED(ignored))$/;" f +complex_conjugate_impl Objects/complexobject.c /^complex_conjugate_impl(PyComplexObject *self)$/;" f file: +complex_decorated Lib/test/inspect_fodder2.py /^def complex_decorated(foo=0, bar=lambda: 0):$/;" f +complex_div Objects/complexobject.c /^complex_div(PyObject *v, PyObject *w)$/;" f file: +complex_from_string_inner Objects/complexobject.c /^complex_from_string_inner(const char *s, Py_ssize_t len, void *type)$/;" f file: +complex_hash Objects/complexobject.c /^complex_hash(PyComplexObject *v)$/;" f file: +complex_infinities Lib/test/test_cmath.py /^complex_infinities = [complex(x, y) for x, y in [$/;" v +complex_members Objects/complexobject.c /^static PyMemberDef complex_members[] = {$/;" v file: +complex_methods Objects/complexobject.c /^static PyMethodDef complex_methods[] = {$/;" v file: +complex_mul Objects/complexobject.c /^complex_mul(PyObject *v, PyObject *w)$/;" f file: +complex_nans Lib/test/test_cmath.py /^complex_nans = [complex(x, y) for x, y in [$/;" v +complex_neg Objects/complexobject.c /^complex_neg(PyComplexObject *v)$/;" f file: +complex_new Objects/clinic/complexobject.c.h /^complex_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +complex_new_impl Objects/complexobject.c /^complex_new_impl(PyTypeObject *type, PyObject *r, PyObject *i)$/;" f file: +complex_num Lib/test/test_descr.py /^ def complex_num(self):$/;" f function:.test_special_method_lookup +complex_number_rule Parser/parser.c /^complex_number_rule(Parser *p)$/;" f file: +complex_number_type Parser/parser.c 154;" d file: +complex_pos Objects/complexobject.c /^complex_pos(PyComplexObject *v)$/;" f file: +complex_pow Objects/complexobject.c /^complex_pow(PyObject *v, PyObject *w, PyObject *z)$/;" f file: +complex_repr Objects/complexobject.c /^complex_repr(PyComplexObject *v)$/;" f file: +complex_richcompare Objects/complexobject.c /^complex_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +complex_sub Objects/complexobject.c /^complex_sub(PyObject *v, PyObject *w)$/;" f file: +complex_subclass Lib/test/test_complex.py /^ class complex_subclass(complex):$/;" c function:ComplexTest.test___complex__ +complex_subtype_from_c_complex Objects/complexobject.c /^complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval)$/;" f file: +complex_subtype_from_doubles Objects/complexobject.c /^complex_subtype_from_doubles(PyTypeObject *type, double real, double imag)$/;" f file: +complex_subtype_from_string Objects/complexobject.c /^complex_subtype_from_string(PyTypeObject *type, PyObject *v)$/;" f file: +complex_zeros Lib/test/test_cmath.py /^complex_zeros = [complex(x, y) for x in [0.0, -0.0] for y in [0.0, -0.0]]$/;" v +compname Lib/test/test_aifc.py /^ compname = b''$/;" v class:AifcALAWTest +compname Lib/test/test_aifc.py /^ compname = b''$/;" v class:AifcULAWTest +compname Lib/test/test_aifc.py /^ compname = b'not compressed'$/;" v class:AifcPCM16Test +compname Lib/test/test_aifc.py /^ compname = b'not compressed'$/;" v class:AifcPCM24Test +compname Lib/test/test_aifc.py /^ compname = b'not compressed'$/;" v class:AifcPCM32Test +compname Lib/test/test_aifc.py /^ compname = b'not compressed'$/;" v class:AifcPCM8Test +compname Lib/test/test_sunau.py /^ compname = 'CCITT G.711 u-law'$/;" v class:SunauULAWTest +compname Lib/test/test_sunau.py /^ compname = 'not compressed'$/;" v class:SunauPCM16Test +compname Lib/test/test_sunau.py /^ compname = 'not compressed'$/;" v class:SunauPCM24Test +compname Lib/test/test_sunau.py /^ compname = 'not compressed'$/;" v class:SunauPCM32Test +compname Lib/test/test_sunau.py /^ compname = 'not compressed'$/;" v class:SunauPCM8Test +compname Lib/test/test_wave.py /^ compname = 'not compressed'$/;" v class:WavePCM16Test +compname Lib/test/test_wave.py /^ compname = 'not compressed'$/;" v class:WavePCM24ExtTest +compname Lib/test/test_wave.py /^ compname = 'not compressed'$/;" v class:WavePCM24Test +compname Lib/test/test_wave.py /^ compname = 'not compressed'$/;" v class:WavePCM32Test +compname Lib/test/test_wave.py /^ compname = 'not compressed'$/;" v class:WavePCM8Test +compobject Modules/zlibmodule.c /^} compobject;$/;" t typeref:struct:__anon306 file: +component_converter Modules/_cursesmodule.c /^component_converter(PyObject *arg, void *ptr)$/;" f file: +compose Lib/test/test_zipfile/_path/_functools.py /^def compose(*funcs):$/;" f +compose Tools/ccbench/ccbench.py /^ def compose(a, b):$/;" f function:task_pidigits.calc_ndigits +compose_two Lib/test/test_zipfile/_path/_functools.py /^ def compose_two(f1, f2):$/;" f function:compose +composite Lib/test/support/_hypothesis_stubs/strategies.py /^def composite(f):$/;" f +compound_stmt_rule Parser/parser.c /^compound_stmt_rule(Parser *p)$/;" f file: +compound_stmt_type Parser/parser.c 91;" d file: +comprehension_fields Python/Python-ast.c /^static const char * const comprehension_fields[]={$/;" v file: +comprehension_ty Include/internal/pycore_ast.h /^typedef struct _comprehension *comprehension_ty;$/;" t typeref:struct:_comprehension +comprehension_type Include/internal/pycore_ast_state.h /^ PyObject *comprehension_type;$/;" m struct:ast_state +compress Lib/bz2.py /^def compress(data, compresslevel=9):$/;" f +compress Lib/gzip.py /^def compress(data, compresslevel=_COMPRESS_LEVEL_BEST, *, mtime=None):$/;" f +compress Lib/lzma.py /^def compress(data, format=FORMAT_XZ, check=-1, preset=None, filters=None):$/;" f +compress Lib/test/test_gzip.py /^ def compress(self, data):$/;" m class:TestGzip.test_flush_modes.FakeCompressor +compress Lib/zipfile/__init__.py /^ def compress(self, data):$/;" m class:LZMACompressor +compress Modules/_bz2module.c /^compress(BZ2Compressor *c, char *data, size_t len, int action)$/;" f file: +compress Modules/_lzmamodule.c /^compress(Compressor *c, uint8_t *data, size_t len, lzma_action action)$/;" f file: +compress Tools/ccbench/ccbench.py /^ def compress(s):$/;" f function:task_compress_bz2 +compress Tools/ccbench/ccbench.py /^ def compress(s):$/;" f function:task_compress_zlib +compress_dealloc Modules/itertoolsmodule.c /^compress_dealloc(compressobject *lz)$/;" f file: +compress_methods Modules/itertoolsmodule.c /^static PyMethodDef compress_methods[] = {$/;" v file: +compress_next Modules/itertoolsmodule.c /^compress_next(compressobject *lz)$/;" f file: +compress_reduce Modules/itertoolsmodule.c /^compress_reduce(compressobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +compress_slots Modules/itertoolsmodule.c /^static PyType_Slot compress_slots[] = {$/;" v file: +compress_spec Modules/itertoolsmodule.c /^static PyType_Spec compress_spec = {$/;" v file: +compress_traverse Modules/itertoolsmodule.c /^compress_traverse(compressobject *lz, visitproc visit, void *arg)$/;" f file: +compress_type Modules/itertoolsmodule.c /^ PyTypeObject *compress_type;$/;" m struct:__anon400 file: +compressed Lib/ipaddress.py /^ def compressed(self):$/;" m class:_IPAddressBase +compression Lib/ssl.py /^ def compression(self):$/;" m class:SSLObject +compression Lib/ssl.py /^ def compression(self):$/;" m class:SSLSocket +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_BZIP2$/;" v class:Bzip2BadCrcTests +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_BZIP2$/;" v class:Bzip2TestZip64InSmallFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_BZIP2$/;" v class:Bzip2TestsWithRandomBinaryFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_BZIP2$/;" v class:Bzip2TestsWithSourceFile +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_BZIP2$/;" v class:Bzip2WriterTests +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_DEFLATED$/;" v class:DeflateBadCrcTests +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_DEFLATED$/;" v class:DeflateTestZip64InSmallFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_DEFLATED$/;" v class:DeflateTestsWithRandomBinaryFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_DEFLATED$/;" v class:DeflateTestsWithSourceFile +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_DEFLATED$/;" v class:DeflateWriterTests +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_LZMA$/;" v class:LzmaBadCrcTests +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_LZMA$/;" v class:LzmaTestZip64InSmallFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_LZMA$/;" v class:LzmaTestsWithRandomBinaryFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_LZMA$/;" v class:LzmaTestsWithSourceFile +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_LZMA$/;" v class:LzmaWriterTests +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_STORED$/;" v class:StoredBadCrcTests +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_STORED$/;" v class:StoredTestZip64InSmallFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_STORED$/;" v class:StoredTestsWithRandomBinaryFiles +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_STORED$/;" v class:StoredTestsWithSourceFile +compression Lib/test/test_zipfile/test_core.py /^ compression = zipfile.ZIP_STORED$/;" v class:StoredWriterTests +compression Lib/test/test_zipimport.py /^ compression = ZIP_DEFLATED$/;" v class:CompressedZipImportTestCase +compression Lib/test/test_zipimport.py /^ compression = ZIP_STORED$/;" v class:UncompressedZipImportTestCase +compressobject Modules/itertoolsmodule.c /^} compressobject;$/;" t typeref:struct:__anon418 file: +compressor_names Lib/zipfile/__init__.py /^compressor_names = {$/;" v +comptype Lib/test/test_aifc.py /^ comptype = b'NONE'$/;" v class:AifcPCM16Test +comptype Lib/test/test_aifc.py /^ comptype = b'NONE'$/;" v class:AifcPCM24Test +comptype Lib/test/test_aifc.py /^ comptype = b'NONE'$/;" v class:AifcPCM32Test +comptype Lib/test/test_aifc.py /^ comptype = b'NONE'$/;" v class:AifcPCM8Test +comptype Lib/test/test_aifc.py /^ comptype = b'alaw'$/;" v class:AifcALAWTest +comptype Lib/test/test_aifc.py /^ comptype = b'ulaw'$/;" v class:AifcULAWTest +comptype Lib/test/test_sunau.py /^ comptype = 'NONE'$/;" v class:SunauPCM16Test +comptype Lib/test/test_sunau.py /^ comptype = 'NONE'$/;" v class:SunauPCM24Test +comptype Lib/test/test_sunau.py /^ comptype = 'NONE'$/;" v class:SunauPCM32Test +comptype Lib/test/test_sunau.py /^ comptype = 'NONE'$/;" v class:SunauPCM8Test +comptype Lib/test/test_sunau.py /^ comptype = 'ULAW'$/;" v class:SunauULAWTest +comptype Lib/test/test_wave.py /^ comptype = 'NONE'$/;" v class:WavePCM16Test +comptype Lib/test/test_wave.py /^ comptype = 'NONE'$/;" v class:WavePCM24ExtTest +comptype Lib/test/test_wave.py /^ comptype = 'NONE'$/;" v class:WavePCM24Test +comptype Lib/test/test_wave.py /^ comptype = 'NONE'$/;" v class:WavePCM32Test +comptype Lib/test/test_wave.py /^ comptype = 'NONE'$/;" v class:WavePCM8Test +compute Tools/ccbench/ccbench.py /^ def compute(s):$/;" f function:task_hashing +computeRollover Lib/logging/handlers.py /^ def computeRollover(self, currentTime):$/;" m class:TimedRotatingFileHandler +compute_abstract_methods Modules/_abc.c /^compute_abstract_methods(PyObject *self)$/;" f file: +compute_backslash_indent Lib/idlelib/pyparse.py /^ def compute_backslash_indent(self):$/;" m class:Parser +compute_bracket_indent Lib/idlelib/pyparse.py /^ def compute_bracket_indent(self):$/;" m class:Parser +compute_checksum Tools/clinic/clinic.py /^def compute_checksum($/;" f +compute_code_flags Python/compile.c /^compute_code_flags(struct compiler *c)$/;" f file: +compute_cr_origin Objects/genobject.c /^compute_cr_origin(int origin_depth, _PyInterpreterFrame *current_frame)$/;" f file: +compute_item Objects/rangeobject.c /^compute_item(rangeobject *r, PyObject *i)$/;" f file: +compute_left_recursives Tools/peg_generator/pegen/parser_generator.py /^def compute_left_recursives($/;" f +compute_line Python/instrumentation.c /^compute_line(PyCodeObject *code, int offset, int8_t line_delta)$/;" f file: +compute_line_delta Python/instrumentation.c /^compute_line_delta(PyCodeObject *code, int offset, int line)$/;" f file: +compute_localsplus_info Python/assemble.c /^compute_localsplus_info(_PyCompile_CodeUnitMetadata *umd, int nlocalsplus,$/;" f file: +compute_nullables Tools/peg_generator/pegen/parser_generator.py /^def compute_nullables(rules: Dict[str, Rule]) -> Set[Any]:$/;" f +compute_parser_flags Parser/pegen.c /^compute_parser_flags(PyCompilerFlags *flags)$/;" f file: +compute_range_item Objects/rangeobject.c /^compute_range_item(rangeobject *r, PyObject *arg)$/;" f file: +compute_range_length Objects/rangeobject.c /^compute_range_length(PyObject *start, PyObject *stop, PyObject *step)$/;" f file: +compute_range_length_long Objects/rangeobject.c /^static long compute_range_length_long(PyObject *start,$/;" f file: +compute_slice Objects/rangeobject.c /^compute_slice(rangeobject *r, PyObject *_slice)$/;" f file: +compute_value Objects/typevarobject.c /^ PyObject *compute_value;$/;" m struct:__anon716 file: +computed_attribute Lib/test/test_descr.py /^ class computed_attribute(object):$/;" c class:.test_compattr.C +computed_line Include/cpython/code.h /^ int computed_line;$/;" m struct:_opaque +computerzug Lib/turtledemo/nim.py /^def computerzug(state):$/;" f +concat Lib/operator.py /^def concat(a, b):$/;" f +concat_many_strings Tools/stringbench/stringbench.py /^def concat_many_strings(STR):$/;" f +concat_two_strings Tools/stringbench/stringbench.py /^def concat_two_strings(STR):$/;" f +concatenate_chunks Lib/test/pickletester.py /^ def concatenate_chunks(self):$/;" m class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +cond Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_cond_destroy(pthread_cond_t *cond);$/;" v +cond Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_cond_signal(pthread_cond_t *cond);$/;" v +cond Include/internal/pycore_gil.h /^ PyCOND_T cond;$/;" m struct:_gil_runtime_state +cond Modules/_tkinter.c /^ Tcl_Condition *cond;$/;" m struct:VarEvent file: +condSect0 Modules/expat/xmlrole.c /^ externalSubset0, externalSubset1, condSect0, condSect1, condSect2,$/;" v file: +condSect0 Modules/expat/xmlrole.c /^condSect0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +condSect1 Modules/expat/xmlrole.c /^ externalSubset0, externalSubset1, condSect0, condSect1, condSect2,$/;" v file: +condSect1 Modules/expat/xmlrole.c /^condSect1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +condSect2 Modules/expat/xmlrole.c /^ externalSubset0, externalSubset1, condSect0, condSect1, condSect2,$/;" v file: +condSect2 Modules/expat/xmlrole.c /^condSect2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +cond_map Modules/_decimal/_decimal.c /^static DecCondMap cond_map[] = {$/;" v file: +condattr_monotonic Python/thread_pthread.h 122;" d +condition Lib/msilib/__init__.py /^ def condition(self, action, condition):$/;" m class:Control +condition Tools/clinic/cpp.py /^ def condition(self) -> str:$/;" m class:Monitor +condtype Lib/test/test_threading.py /^ condtype = staticmethod(threading.Condition)$/;" v class:ConditionTests +conf PCbuild/build.bat /^ set conf=PGInstrument$/;" v +conf PCbuild/build.bat /^ set conf=PGUpdate$/;" v +conf PCbuild/build.bat /^if "%~1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts$/;" v +conf PCbuild/build.bat /^if "%~1"=="-d" (set conf=Debug) & shift & goto CheckOpts$/;" v +conf PCbuild/build.bat /^set conf=Release$/;" v +config Include/cpython/initconfig.h /^PyAPI_FUNC(PyStatus) PyConfig_Read(PyConfig *config);$/;" v +config Include/cpython/initconfig.h /^PyAPI_FUNC(void) PyConfig_InitIsolatedConfig(PyConfig *config);$/;" v +config Include/cpython/initconfig.h /^PyAPI_FUNC(void) PyConfig_InitPythonConfig(PyConfig *config);$/;" v +config Include/cpython/initconfig.h /^PyAPI_FUNC(void) PyPreConfig_InitIsolatedConfig(PyPreConfig *config);$/;" v +config Include/cpython/initconfig.h /^PyAPI_FUNC(void) PyPreConfig_InitPythonConfig(PyPreConfig *config);$/;" v +config Include/cpython/pylifecycle.h /^ const PyConfig *config);$/;" v +config Include/internal/pycore_initconfig.h /^PyAPI_FUNC(PyObject*) _PyConfig_AsDict(const PyConfig *config);$/;" v +config Include/internal/pycore_initconfig.h /^PyAPI_FUNC(void) _PyConfig_InitCompatConfig(PyConfig *config);$/;" v +config Include/internal/pycore_interp.h /^ PyConfig config;$/;" m struct:_is +config Include/internal/pycore_tracemalloc.h /^ struct _PyTraceMalloc_Config config;$/;" m struct:_tracemalloc_runtime_state typeref:struct:_tracemalloc_runtime_state::_PyTraceMalloc_Config +config Lib/tkinter/__init__.py /^ config = configure$/;" v class:Image +config Lib/tkinter/__init__.py /^ config = configure$/;" v class:Misc +config Lib/tkinter/font.py /^ def config(self, **options):$/;" m class:Font +config Lib/tkinter/tix.py /^ def config(self, cnf={}, **kw):$/;" m class:DisplayStyle +config Lib/tkinter/tix.py /^ def config(self, cnf={}, **kw):$/;" m class:Form +config Lib/turtle.py /^ def config(self, *args, **kwargs):$/;" m class:ScrolledCanvas +config Modules/cjkcodecs/_codecs_iso2022.c 703;" d file: +config Modules/cjkcodecs/_codecs_iso2022.c 737;" d file: +config Modules/cjkcodecs/multibytecodec.h /^ const void *config;$/;" m struct:_multibyte_codec +config Programs/test_frozenmain.py /^config = _testinternalcapi.get_configs()['config']$/;" v +config0 Lib/test/test_logging.py /^ config0 = {$/;" v class:ConfigDictTest +config1 Lib/test/test_logging.py /^ config1 = {$/;" v class:ConfigDictTest +config10 Lib/test/test_logging.py /^ config10 = {$/;" v class:ConfigDictTest +config11 Lib/test/test_logging.py /^ config11 = {$/;" v class:ConfigDictTest +config12 Lib/test/test_logging.py /^ config12 = {$/;" v class:ConfigDictTest +config13 Lib/test/test_logging.py /^ config13 = {$/;" v class:ConfigDictTest +config14 Lib/test/test_logging.py /^ config14 = {$/;" v class:ConfigDictTest +config16 Lib/test/test_logging.py /^ config16 = {$/;" v class:ConfigDictTest +config1a Lib/test/test_logging.py /^ config1a = {$/;" v class:ConfigDictTest +config2 Lib/test/test_logging.py /^ config2 = config1.replace("sys.stdout", "sys.stbout")$/;" v class:ConfigFileTest +config2 Lib/test/test_logging.py /^ config2 = {$/;" v class:ConfigDictTest +config2a Lib/test/test_logging.py /^ config2a = {$/;" v class:ConfigDictTest +config2b Lib/test/test_logging.py /^ config2b = {$/;" v class:ConfigDictTest +config3 Lib/test/test_logging.py /^ config3 = config1.replace("formatter=form1", "formatter=misspelled_name")$/;" v class:ConfigFileTest +config3 Lib/test/test_logging.py /^ config3 = {$/;" v class:ConfigDictTest +config4 Lib/test/test_logging.py /^ config4 = {$/;" v class:ConfigDictTest +config4a Lib/test/test_logging.py /^ config4a = {$/;" v class:ConfigDictTest +config5 Lib/test/test_logging.py /^ config5 = config1.replace('class=StreamHandler', 'class=logging.StreamHandler')$/;" v class:ConfigFileTest +config5 Lib/test/test_logging.py /^ config5 = {$/;" v class:ConfigDictTest +config6 Lib/test/test_logging.py /^ config6 = {$/;" v class:ConfigDictTest +config7 Lib/test/test_logging.py /^ config7 = {$/;" v class:ConfigDictTest +config8 Lib/test/test_logging.py /^ config8 = {$/;" v class:ConfigDictTest +config8a Lib/test/test_logging.py /^ config8a = {$/;" v class:ConfigDictTest +config9 Lib/test/test_logging.py /^ config9 = {$/;" v class:ConfigDictTest +config9a Lib/test/test_logging.py /^ config9a = {$/;" v class:ConfigDictTest +config9b Lib/test/test_logging.py /^ config9b = {$/;" v class:ConfigDictTest +configGUI Lib/turtledemo/__main__.py /^ def configGUI(self, start, stop, clear, txt="", color="blue"):$/;" m class:DemoWindow +config_all Lib/tkinter/tix.py /^ def config_all(self, option, value):$/;" m class:TixWidget +config_check_consistency Python/initconfig.c /^config_check_consistency(const PyConfig *config)$/;" f file: +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:ConfigParserTestCase +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:ConfigParserTestCaseExtendedInterpolation +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:ConfigParserTestCaseLegacyInterpolation +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:ConfigParserTestCaseNoInterpolation +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:ConfigParserTestCaseTrickyFile +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:ConvertersTestCase +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:CopyTestCase +config_class Lib/test/test_configparser.py /^ config_class = configparser.ConfigParser$/;" v class:MultilineValuesTestCase +config_class Lib/test/test_configparser.py /^ config_class = configparser.RawConfigParser$/;" v class:CompatibleTestCase +config_class Lib/test/test_configparser.py /^ config_class = configparser.RawConfigParser$/;" v class:RawConfigParserTestCase +config_class Lib/test/test_configparser.py /^ config_class = configparser.RawConfigParser$/;" v class:RawConfigParserTestSambaConf +config_class Lib/test/test_configparser.py /^ config_class = configparser.RawConfigParser$/;" v class:StrictTestCase +config_colors Lib/idlelib/colorizer.py /^ def config_colors(self):$/;" m class:ColorDelegator +config_complete_usage Python/initconfig.c /^config_complete_usage(const wchar_t* program)$/;" f file: +config_dialog Lib/idlelib/editor.py /^ def config_dialog(self, event=None):$/;" m class:EditorWindow +config_dialog Lib/idlelib/macosx.py /^ def config_dialog(event=None):$/;" f function:overrideRootMenu +config_dict Lib/turtle.py /^def config_dict(filename):$/;" f +config_dict_get Python/initconfig.c /^config_dict_get(PyObject *dict, const char *name)$/;" f file: +config_dict_get_int Python/initconfig.c /^config_dict_get_int(PyObject *dict, const char *name, int *result)$/;" f file: +config_dict_get_ulong Python/initconfig.c /^config_dict_get_ulong(PyObject *dict, const char *name, unsigned long *result)$/;" f file: +config_dict_get_wstr Python/initconfig.c /^config_dict_get_wstr(PyObject *dict, const char *name, PyConfig *config,$/;" f file: +config_dict_get_wstrlist Python/initconfig.c /^config_dict_get_wstrlist(PyObject *dict, const char *name, PyConfig *config,$/;" f file: +config_dict_invalid_type Python/initconfig.c /^config_dict_invalid_type(const char *name)$/;" f file: +config_dict_invalid_value Python/initconfig.c /^config_dict_invalid_value(const char *name)$/;" f file: +config_envvars_usage Python/initconfig.c /^config_envvars_usage(void)$/;" f file: +config_get_codec_name Objects/unicodeobject.c /^config_get_codec_name(wchar_t **config_encoding)$/;" f file: +config_get_env Python/initconfig.c /^config_get_env(const PyConfig *config, const char *name)$/;" f file: +config_get_env_dup Python/initconfig.c /^config_get_env_dup(PyConfig *config,$/;" f file: +config_get_fs_encoding Python/initconfig.c /^config_get_fs_encoding(PyConfig *config, const PyPreConfig *preconfig,$/;" f file: +config_get_global_vars Python/initconfig.c /^config_get_global_vars(PyConfig *config)$/;" f file: +config_get_locale_encoding Python/initconfig.c /^config_get_locale_encoding(PyConfig *config, const PyPreConfig *preconfig,$/;" f file: +config_get_stdio_errors Python/initconfig.c /^config_get_stdio_errors(const PyPreConfig *preconfig)$/;" f file: +config_get_xoption Python/initconfig.c /^config_get_xoption(const PyConfig *config, wchar_t *name)$/;" f file: +config_get_xoption_value Python/initconfig.c /^config_get_xoption_value(const PyConfig *config, wchar_t *name)$/;" f file: +config_init_defaults Python/initconfig.c /^config_init_defaults(PyConfig *config)$/;" f file: +config_init_env_warnoptions Python/initconfig.c /^config_init_env_warnoptions(PyConfig *config, PyWideStringList *warnoptions)$/;" f file: +config_init_fs_encoding Python/initconfig.c /^config_init_fs_encoding(PyConfig *config, const PyPreConfig *preconfig)$/;" f file: +config_init_hash_seed Python/initconfig.c /^config_init_hash_seed(PyConfig *config)$/;" f file: +config_init_import Python/initconfig.c /^config_init_import(PyConfig *config, int compute_path_config)$/;" f file: +config_init_int_max_str_digits Python/initconfig.c /^config_init_int_max_str_digits(PyConfig *config)$/;" f file: +config_init_perf_profiling Python/initconfig.c /^config_init_perf_profiling(PyConfig *config)$/;" f file: +config_init_pycache_prefix Python/initconfig.c /^config_init_pycache_prefix(PyConfig *config)$/;" f file: +config_init_stdio Python/initconfig.c /^config_init_stdio(const PyConfig *config)$/;" f file: +config_init_stdio_encoding Python/initconfig.c /^config_init_stdio_encoding(PyConfig *config,$/;" f file: +config_init_tracemalloc Python/initconfig.c /^config_init_tracemalloc(PyConfig *config)$/;" f file: +config_init_warnoptions Python/initconfig.c /^config_init_warnoptions(PyConfig *config,$/;" f file: +config_parse_cmdline Python/initconfig.c /^config_parse_cmdline(PyConfig *config, PyWideStringList *warnoptions,$/;" f file: +config_queue_handler Lib/test/test_logging.py /^ config_queue_handler = {$/;" v class:ConfigDictTest +config_read Python/initconfig.c /^config_read(PyConfig *config, int compute_path_config)$/;" f file: +config_read_cmdline Python/initconfig.c /^config_read_cmdline(PyConfig *config)$/;" f file: +config_read_complex_options Python/initconfig.c /^config_read_complex_options(PyConfig *config)$/;" f file: +config_read_env_vars Python/initconfig.c /^config_read_env_vars(PyConfig *config)$/;" f file: +config_run_code Modules/main.c /^static inline int config_run_code(const PyConfig *config)$/;" f file: +config_run_filename_abspath Python/initconfig.c /^config_run_filename_abspath(PyConfig *config)$/;" f file: +config_set_argv Programs/_testembed.c /^static void config_set_argv(PyConfig *config, Py_ssize_t argc, wchar_t * const *argv)$/;" f file: +config_set_bytes_string Python/initconfig.c /^config_set_bytes_string(PyConfig *config, wchar_t **config_str,$/;" f file: +config_set_global_vars Python/initconfig.c /^config_set_global_vars(const PyConfig *config)$/;" f file: +config_set_program_name Programs/_testembed.c /^static void config_set_program_name(PyConfig *config)$/;" f file: +config_set_string Programs/_testembed.c /^static void config_set_string(PyConfig *config, wchar_t **config_str, const wchar_t *str)$/;" f file: +config_set_wide_string_list Programs/_testembed.c /^config_set_wide_string_list(PyConfig *config, PyWideStringList *list,$/;" f file: +config_site Tools/wasm/wasm_build.py /^ config_site=WASMTOOLS \/ "config.site-wasm32-emscripten",$/;" v +config_site Tools/wasm/wasm_build.py /^ config_site=WASMTOOLS \/ "config.site-wasm32-wasi",$/;" v +config_update_argv Python/initconfig.c /^config_update_argv(PyConfig *config, Py_ssize_t opt_index)$/;" f file: +config_usage Python/initconfig.c /^config_usage(int error, const wchar_t* program)$/;" f file: +config_wstr_to_int Python/initconfig.c /^config_wstr_to_int(const wchar_t *wstr, int *result)$/;" f file: +config_xoptions_usage Python/initconfig.c /^config_xoptions_usage(void)$/;" f file: +configure Lib/logging/config.py /^ def configure(self):$/;" m class:DictConfigurator +configure Lib/tkinter/__init__.py /^ def configure(self, **kw):$/;" m class:Image +configure Lib/tkinter/__init__.py /^ def configure(self, cnf=None, **kw):$/;" m class:Misc +configure Lib/tkinter/font.py /^ configure = config$/;" v class:Font +configure Lib/tkinter/ttk.py /^ def configure(self, cnf=None, **kw):$/;" m class:Scale +configure Lib/tkinter/ttk.py /^ def configure(self, style, query_opt=None, **kw):$/;" m class:Style +configure Tools/wasm/wasm_build.py /^ configure="run .\/configure",$/;" v +configure_c_stdio Include/cpython/initconfig.h /^ int configure_c_stdio;$/;" m struct:PyConfig +configure_c_stdio Lib/test/test_embed.py /^ configure_c_stdio=1,$/;" v class:InitConfigTests +configure_cmd Tools/wasm/wasm_build.py /^ def configure_cmd(self) -> List[str]:$/;" m class:BuildProfile +configure_custom Lib/logging/config.py /^ def configure_custom(self, config):$/;" m class:BaseConfigurator +configure_filter Lib/logging/config.py /^ def configure_filter(self, config):$/;" m class:DictConfigurator +configure_formatter Lib/logging/config.py /^ def configure_formatter(self, config):$/;" m class:DictConfigurator +configure_func Lib/test/test_dynamic.py /^ def configure_func(self, func, *args):$/;" m class:RebindBuiltinsTests +configure_handler Lib/logging/config.py /^ def configure_handler(self, config):$/;" m class:DictConfigurator +configure_init_main Programs/_testembed.c /^static void configure_init_main(PyConfig *config)$/;" f file: +configure_locale Include/cpython/initconfig.h /^ int configure_locale;$/;" m struct:PyPreConfig +configure_locale Lib/test/test_embed.py /^ configure_locale=0,$/;" v class:InitConfigTests +configure_logger Lib/logging/config.py /^ def configure_logger(self, name, config, incremental=False):$/;" m class:DictConfigurator +configure_logger PC/layout/support/logging.py /^def configure_logger(ns):$/;" f +configure_logger Tools/c-analyzer/c_common/logging.py /^def configure_logger(logger, verbosity=VERBOSITY, *,$/;" f +configure_logger Tools/c-analyzer/c_common/scriptutil.py /^def configure_logger(verbosity, logger=None, **kwargs):$/;" f +configure_make Tools/ssl/multissltests.py /^def configure_make():$/;" f +configure_mock Lib/unittest/mock.py /^ def configure_mock(self, \/, **kwargs):$/;" m class:NonCallableMock +configure_root Lib/logging/config.py /^ def configure_root(self, config, incremental=False):$/;" m class:DictConfigurator +configure_wrapper Tools/wasm/wasm_build.py /^ configure_wrapper=EMSCRIPTEN_ROOT \/ "emconfigure",$/;" v +configure_wrapper Tools/wasm/wasm_build.py /^ configure_wrapper=WASMTOOLS \/ "wasi-env",$/;" v +confirm Lib/test/test_minidom.py /^ def confirm(self, test, testname = "Test"):$/;" m class:MinidomTest +confirm Lib/test/test_pulldom.py /^ def confirm(self, test, testname="Test"):$/;" m class:SAX2DOMTestCase +congruence-p1-aux Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd congruence-p1-aux$/;" f +congruence-p2-aux Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd congruence-p2-aux$/;" f +congruence-p3-aux Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd congruence-p3-aux$/;" f +conjoin Lib/test/test_generators.py /^def conjoin(gs):$/;" f +conjugate Lib/_pydecimal.py /^ def conjugate(self):$/;" m class:Decimal +conjugate Lib/numbers.py /^ def conjugate(self):$/;" m class:Complex +conjugate Lib/numbers.py /^ def conjugate(self):$/;" m class:Real +conjunction_rule Parser/parser.c /^conjunction_rule(Parser *p)$/;" f file: +conjunction_type Parser/parser.c 194;" d file: +conn Lib/test/test_httplib.py /^ conn = client.HTTPConnection('example.com')$/;" v class:HeaderTests.test_content_length_0.ContentLengthChecker +connect Lib/asyncio/windows_events.py /^ def connect(self, conn, address):$/;" m class:IocpProactor +connect Lib/ftplib.py /^ def connect(self, host='', port=0, timeout=-999, source_address=None):$/;" m class:FTP +connect Lib/http/client.py /^ def connect(self):$/;" m class:HTTPConnection.HTTPSConnection +connect Lib/http/client.py /^ def connect(self):$/;" m class:HTTPConnection +connect Lib/multiprocessing/managers.py /^ def connect(self):$/;" m class:BaseManager +connect Lib/smtplib.py /^ def connect(self, host='localhost', port=0, source_address=None):$/;" m class:LMTP +connect Lib/smtplib.py /^ def connect(self, host='localhost', port=0, source_address=None):$/;" m class:SMTP +connect Lib/ssl.py /^ def connect(self, addr):$/;" m class:SSLSocket +connect Lib/test/mock_socket.py /^ def connect(self, host):$/;" m class:MockSocket +connect Lib/test/support/asyncore.py /^ def connect(self, address):$/;" m class:dispatcher +connect Lib/test/test_asyncio/test_events.py /^ async def connect():$/;" f function:EventLoopTestsMixin.test_read_pipe +connect Lib/test/test_asyncio/test_events.py /^ async def connect():$/;" f function:EventLoopTestsMixin.test_read_pty_output +connect Lib/test/test_asyncio/test_events.py /^ async def connect():$/;" f function:EventLoopTestsMixin.test_unclosed_pipe_transport +connect Lib/test/test_asyncio/test_events.py /^ async def connect(**kwds):$/;" f function:SubprocessTestsMixin.test_subprocess_exec_invalid_args +connect Lib/test/test_asyncio/test_events.py /^ async def connect(cmd=None, **kwds):$/;" f function:SubprocessTestsMixin.test_subprocess_shell_invalid_args +connect Lib/test/test_httplib.py /^ def connect(self):$/;" m class:FakeSocketHTTPConnection +connect Lib/test/test_socket.py /^ def connect(self, *args):$/;" m class:NetworkConnectionNoServer.MockSocket +connect Lib/test/test_ssl.py /^ def connect(self):$/;" m class:TestPreHandshakeClose.test_https_client_non_tls_response_ignored.SynchronizedHTTPSConnection +connect Lib/test/test_urllib.py /^ def connect(self):$/;" m class:fakehttp.FakeHTTPConnection +connect_accepted_socket Lib/asyncio/base_events.py /^ async def connect_accepted_socket($/;" m class:BaseEventLoop +connect_accepted_socket Lib/asyncio/events.py /^ async def connect_accepted_socket($/;" m class:AbstractEventLoop +connect_ex Lib/ssl.py /^ def connect_ex(self, addr):$/;" m class:SSLSocket +connect_ftp Lib/test/test_urllib2.py /^ def connect_ftp(self, user, passwd, host, port, dirs,$/;" m class:HandlerTests.test_ftp.NullFTPHandler +connect_ftp Lib/urllib/request.py /^ def connect_ftp(self, user, passwd, host, port, dirs, timeout):$/;" m class:CacheFTPHandler +connect_ftp Lib/urllib/request.py /^ def connect_ftp(self, user, passwd, host, port, dirs, timeout):$/;" m class:FTPHandler +connect_pipe Lib/asyncio/windows_events.py /^ async def connect_pipe(self, address):$/;" m class:IocpProactor +connect_read_pipe Lib/asyncio/base_events.py /^ async def connect_read_pipe(self, protocol_factory, pipe):$/;" m class:BaseEventLoop +connect_read_pipe Lib/asyncio/events.py /^ async def connect_read_pipe(self, protocol_factory, pipe):$/;" m class:AbstractEventLoop +connect_read_pipe_mock Lib/test/test_asyncio/test_subprocess.py /^ async def connect_read_pipe_mock(*args, **kw):$/;" f function:SubprocessMixin.test_pause_reading.test_pause_reading +connect_to_new_process Lib/multiprocessing/forkserver.py /^ def connect_to_new_process(self, fds):$/;" m class:ForkServer +connect_to_new_process Lib/multiprocessing/forkserver.py /^connect_to_new_process = _forkserver.connect_to_new_process$/;" v +connect_write_pipe Lib/asyncio/base_events.py /^ async def connect_write_pipe(self, protocol_factory, pipe):$/;" m class:BaseEventLoop +connect_write_pipe Lib/asyncio/events.py /^ async def connect_write_pipe(self, protocol_factory, pipe):$/;" m class:AbstractEventLoop +connected Lib/test/support/asyncore.py /^ connected = False$/;" v class:dispatcher +connected Lib/test/test_asyncio/test_events.py /^ connected = None$/;" v class:MyBaseProto +connected Lib/test/test_asyncio/test_sock_lowlevel.py /^ connected = None$/;" v class:MyProto +connected Lib/test/test_asyncio/test_ssl.py /^ connected = None$/;" v class:MyBaseProto +connecting Lib/test/support/asyncore.py /^ connecting = False$/;" v class:dispatcher +connection Lib/test/_test_multiprocessing.py /^ connection = multiprocessing.connection$/;" v class:ProcessesMixin +connection Lib/test/_test_multiprocessing.py /^ connection = multiprocessing.dummy.connection$/;" v class:ThreadsMixin +connection Modules/_sqlite/blob.h /^ pysqlite_Connection *connection;$/;" m struct:__anon360 +connection Modules/_sqlite/cursor.h /^ pysqlite_Connection* connection;$/;" m struct:__anon358 +connection_clear Modules/_sqlite/connection.c /^connection_clear(pysqlite_Connection *self)$/;" f file: +connection_close Modules/_sqlite/connection.c /^connection_close(pysqlite_Connection *self)$/;" f file: +connection_dealloc Modules/_sqlite/connection.c /^connection_dealloc(PyObject *self)$/;" f file: +connection_doc Modules/_sqlite/connection.c /^static const char connection_doc[] =$/;" v file: +connection_exec_stmt Modules/_sqlite/connection.c /^connection_exec_stmt(pysqlite_Connection *self, const char *sql)$/;" f file: +connection_finalize Modules/_sqlite/connection.c /^connection_finalize(PyObject *self)$/;" f file: +connection_getset Modules/_sqlite/connection.c /^static PyGetSetDef connection_getset[] = {$/;" v file: +connection_lost Lib/asyncio/base_events.py /^ def connection_lost(self, exc):$/;" m class:_SendfileFallbackProtocol +connection_lost Lib/asyncio/base_subprocess.py /^ def connection_lost(self, exc):$/;" m class:WriteSubprocessPipeProto +connection_lost Lib/asyncio/protocols.py /^ def connection_lost(self, exc):$/;" m class:BaseProtocol +connection_lost Lib/asyncio/sslproto.py /^ def connection_lost(self, exc):$/;" m class:SSLProtocol +connection_lost Lib/asyncio/streams.py /^ def connection_lost(self, exc):$/;" m class:FlowControlMixin +connection_lost Lib/asyncio/streams.py /^ def connection_lost(self, exc):$/;" m class:StreamReaderProtocol +connection_lost Lib/test/test_asyncio/test_base_events.py /^ def connection_lost(self, exc):$/;" m class:BaseLoopSockSendfileTests.MyProto +connection_lost Lib/test/test_asyncio/test_base_events.py /^ def connection_lost(self, exc):$/;" m class:MyDatagramProto +connection_lost Lib/test/test_asyncio/test_base_events.py /^ def connection_lost(self, exc):$/;" m class:MyProto +connection_lost Lib/test/test_asyncio/test_buffered_proto.py /^ def connection_lost(self, exc):$/;" m class:ReceiveStuffProto +connection_lost Lib/test/test_asyncio/test_events.py /^ def connection_lost(self, exc):$/;" m class:EventLoopTestsMixin.test_connect_accepted_socket.MyProto +connection_lost Lib/test/test_asyncio/test_events.py /^ def connection_lost(self, exc):$/;" m class:MyBaseProto +connection_lost Lib/test/test_asyncio/test_events.py /^ def connection_lost(self, exc):$/;" m class:MyDatagramProto +connection_lost Lib/test/test_asyncio/test_events.py /^ def connection_lost(self, exc):$/;" m class:MyReadPipeProto +connection_lost Lib/test/test_asyncio/test_events.py /^ def connection_lost(self, exc):$/;" m class:MySubprocessProtocol +connection_lost Lib/test/test_asyncio/test_events.py /^ def connection_lost(self, exc):$/;" m class:MyWritePipeProto +connection_lost Lib/test/test_asyncio/test_proactor_events.py /^ def connection_lost(self, exc):$/;" m class:ProactorEventLoopUnixSockSendfileTests.MyProto +connection_lost Lib/test/test_asyncio/test_sendfile.py /^ def connection_lost(self, exc):$/;" m class:MyProto +connection_lost Lib/test/test_asyncio/test_sendfile.py /^ def connection_lost(self, exc):$/;" m class:MySendfileProto +connection_lost Lib/test/test_asyncio/test_sock_lowlevel.py /^ def connection_lost(self, exc):$/;" m class:MyProto +connection_lost Lib/test/test_asyncio/test_ssl.py /^ def connection_lost(self, exc):$/;" m class:TestSSL.test_connect_accepted_socket.MyProto +connection_lost Lib/test/test_asyncio/test_ssl.py /^ def connection_lost(self, exc):$/;" m class:TestSSL.test_shutdown_timeout_handler_leak.Protocol +connection_lost Lib/test/test_asyncio/test_ssl.py /^ def connection_lost(self, exc):$/;" m class:TestSSL.test_shutdown_timeout_handler_not_set.Protocol +connection_lost Lib/test/test_asyncio/test_ssl.py /^ def connection_lost(self, exc):$/;" m class:TestSSL.test_ssl_handshake_connection_lost.ClientProto +connection_lost Lib/test/test_asyncio/test_ssl.py /^ def connection_lost(self, exc):$/;" m class:TestSSL.test_start_tls_server_1.ServerProto +connection_lost Lib/test/test_asyncio/test_ssl.py /^ def connection_lost(self, exc):$/;" m class:MyBaseProto +connection_lost Lib/test/test_asyncio/test_sslproto.py /^ def connection_lost(self, exc):$/;" m class:BaseStartTLS.test_start_tls_server_1.ServerProto +connection_lost Lib/test/test_asyncio/test_unix_events.py /^ def connection_lost(self, exc):$/;" m class:SelectorEventLoopUnixSockSendfileTests.MyProto +connection_made Lib/asyncio/base_events.py /^ def connection_made(self, transport):$/;" m class:_SendfileFallbackProtocol +connection_made Lib/asyncio/base_subprocess.py /^ def connection_made(self, transport):$/;" m class:WriteSubprocessPipeProto +connection_made Lib/asyncio/protocols.py /^ def connection_made(self, transport):$/;" m class:BaseProtocol +connection_made Lib/asyncio/sslproto.py /^ def connection_made(self, transport):$/;" m class:SSLProtocol +connection_made Lib/asyncio/streams.py /^ def connection_made(self, transport):$/;" m class:StreamReaderProtocol +connection_made Lib/asyncio/subprocess.py /^ def connection_made(self, transport):$/;" m class:SubprocessStreamProtocol +connection_made Lib/test/test_asyncio/test_base_events.py /^ def connection_made(self, transport):$/;" m class:BaseLoopSockSendfileTests.MyProto +connection_made Lib/test/test_asyncio/test_base_events.py /^ def connection_made(self, transport):$/;" m class:MyDatagramProto +connection_made Lib/test/test_asyncio/test_base_events.py /^ def connection_made(self, transport):$/;" m class:MyProto +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:EventLoopTestsMixin.test_create_server_dual_stack.TestMyProto +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:EventLoopTestsMixin.test_create_server_sock.TestMyProto +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:MyBaseProto +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:MyDatagramProto +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:MyProto +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:MyReadPipeProto +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:MySubprocessProtocol +connection_made Lib/test/test_asyncio/test_events.py /^ def connection_made(self, transport):$/;" m class:MyWritePipeProto +connection_made Lib/test/test_asyncio/test_proactor_events.py /^ def connection_made(self, transport):$/;" m class:ProactorEventLoopUnixSockSendfileTests.MyProto +connection_made Lib/test/test_asyncio/test_sendfile.py /^ def connection_made(self, transport):$/;" m class:MyProto +connection_made Lib/test/test_asyncio/test_sendfile.py /^ def connection_made(self, transport):$/;" m class:MySendfileProto +connection_made Lib/test/test_asyncio/test_sock_lowlevel.py /^ def connection_made(self, transport):$/;" m class:MyProto +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(proto, tr):$/;" m class:TestSSL.test_create_connection_memory_leak.ClientProto +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(proto, tr):$/;" m class:TestSSL.test_start_tls_client_reg_proto_1.ClientProto +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(proto, tr):$/;" m class:TestSSL.test_start_tls_slow_client_cancel.ClientProto +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(self, tr):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoFirst +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(self, tr):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoSecond +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(self, tr):$/;" m class:TestSSL.test_start_tls_server_1.ServerProto +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(self, transport):$/;" m class:TestSSL.test_create_server_ssl_over_ssl.ServerProtocol +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(self, transport):$/;" m class:TestSSL.test_shutdown_timeout_handler_not_set.Protocol +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(self, transport):$/;" m class:TestSSL.test_ssl_handshake_connection_lost.ClientProto +connection_made Lib/test/test_asyncio/test_ssl.py /^ def connection_made(self, transport):$/;" m class:MyBaseProto +connection_made Lib/test/test_asyncio/test_sslproto.py /^ def connection_made(proto, tr):$/;" m class:BaseStartTLS.test_create_connection_memory_leak.ClientProto +connection_made Lib/test/test_asyncio/test_sslproto.py /^ def connection_made(proto, tr):$/;" m class:BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto +connection_made Lib/test/test_asyncio/test_sslproto.py /^ def connection_made(proto, tr):$/;" m class:BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto +connection_made Lib/test/test_asyncio/test_sslproto.py /^ def connection_made(self, tr):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoFirst +connection_made Lib/test/test_asyncio/test_sslproto.py /^ def connection_made(self, tr):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond +connection_made Lib/test/test_asyncio/test_sslproto.py /^ def connection_made(self, tr):$/;" m class:BaseStartTLS.test_start_tls_server_1.ServerProto +connection_made Lib/test/test_asyncio/test_sslproto.py /^ def connection_made(self, ssl_proto, *, do_handshake=None):$/;" m class:SslProtoHandshakeTests +connection_made Lib/test/test_asyncio/test_unix_events.py /^ def connection_made(self, transport):$/;" m class:SelectorEventLoopUnixSockSendfileTests.MyProto +connection_made Lib/test/test_asyncio/test_windows_events.py /^ def connection_made(self, trans):$/;" m class:UpperProto +connection_members Modules/_sqlite/connection.c /^static struct PyMemberDef connection_members[] =$/;" v typeref:struct:PyMemberDef file: +connection_methods Modules/_sqlite/connection.c /^static PyMethodDef connection_methods[] = {$/;" v file: +connection_slots Modules/_sqlite/connection.c /^static PyType_Slot connection_slots[] = {$/;" v file: +connection_spec Modules/_sqlite/connection.c /^static PyType_Spec connection_spec = {$/;" v file: +connection_traverse Modules/_sqlite/connection.c /^connection_traverse(pysqlite_Connection *self, visitproc visit, void *arg)$/;" f file: +connector Lib/test/test_ssl.py /^ def connector():$/;" f function:ThreadedTests.test_rude_shutdown +console Lib/asyncio/__main__.py /^ console = AsyncIOInteractiveConsole(repl_locals, loop)$/;" v class:REPLThread +const_DES_cblock Lib/test/test_lib2to3/data/infinite_recursion.py /^const_DES_cblock = c_ubyte * 8$/;" v +constant Include/internal/pycore_asdl.h /^typedef PyObject * constant;$/;" t +constant Modules/termios.c /^static struct constant {$/;" s file: +constant_1 Lib/test/test_ast.py /^ constant_1 = ast.Constant(1)$/;" v class:ASTValidatorTests +constant_true Lib/test/test_ast.py /^ constant_true = ast.Constant(True)$/;" v class:ASTValidatorTests +constant_x Lib/test/test_ast.py /^ constant_x = ast.Constant('x')$/;" v class:ASTValidatorTests +constdef Modules/posixmodule.c /^struct constdef {$/;" s file: +constraints Objects/typevarobject.c /^ PyObject *constraints;$/;" m struct:__anon713 file: +constructLocalFileUrl Lib/test/test_urllib.py /^ def constructLocalFileUrl(self, filePath):$/;" m class:urlretrieve_FileTests +construct_zone Lib/test/test_zoneinfo/test_zoneinfo.py /^ def construct_zone(self, transitions, after=None, version=3):$/;" m class:WeirdZoneTest +constructor Lib/copyreg.py /^def constructor(object):$/;" f +constructor1 Lib/test/test_set.py /^ constructor1 = None$/;" v class:TestOperationsMutating +constructor1 Lib/test/test_set.py /^ constructor1 = SetSubclass$/;" v class:TestBinaryOpsMutating_Subclass_Set +constructor1 Lib/test/test_set.py /^ constructor1 = SetSubclass$/;" v class:TestBinaryOpsMutating_Subclass_Subclass +constructor1 Lib/test/test_set.py /^ constructor1 = SetSubclass$/;" v class:TestMethodsMutating_Subclass_Set +constructor1 Lib/test/test_set.py /^ constructor1 = SetSubclass$/;" v class:TestMethodsMutating_Subclass_Subclass +constructor1 Lib/test/test_set.py /^ constructor1 = set$/;" v class:TestBinaryOpsMutating_Set_Set +constructor1 Lib/test/test_set.py /^ constructor1 = set$/;" v class:TestBinaryOpsMutating_Set_Subclass +constructor1 Lib/test/test_set.py /^ constructor1 = set$/;" v class:TestMethodsMutating_Set_Dict +constructor1 Lib/test/test_set.py /^ constructor1 = set$/;" v class:TestMethodsMutating_Set_List +constructor1 Lib/test/test_set.py /^ constructor1 = set$/;" v class:TestMethodsMutating_Set_Set +constructor1 Lib/test/test_set.py /^ constructor1 = set$/;" v class:TestMethodsMutating_Set_Subclass +constructor2 Lib/test/test_set.py /^ constructor2 = None$/;" v class:TestOperationsMutating +constructor2 Lib/test/test_set.py /^ constructor2 = SetSubclass$/;" v class:TestBinaryOpsMutating_Set_Subclass +constructor2 Lib/test/test_set.py /^ constructor2 = SetSubclass$/;" v class:TestBinaryOpsMutating_Subclass_Subclass +constructor2 Lib/test/test_set.py /^ constructor2 = SetSubclass$/;" v class:TestMethodsMutating_Set_Subclass +constructor2 Lib/test/test_set.py /^ constructor2 = SetSubclass$/;" v class:TestMethodsMutating_Subclass_Subclass +constructor2 Lib/test/test_set.py /^ constructor2 = dict.fromkeys$/;" v class:TestMethodsMutating_Set_Dict +constructor2 Lib/test/test_set.py /^ constructor2 = list$/;" v class:TestMethodsMutating_Set_List +constructor2 Lib/test/test_set.py /^ constructor2 = set$/;" v class:TestBinaryOpsMutating_Set_Set +constructor2 Lib/test/test_set.py /^ constructor2 = set$/;" v class:TestBinaryOpsMutating_Subclass_Set +constructor2 Lib/test/test_set.py /^ constructor2 = set$/;" v class:TestMethodsMutating_Set_Set +constructor2 Lib/test/test_set.py /^ constructor2 = set$/;" v class:TestMethodsMutating_Subclass_Set +constructs Modules/_hashopenssl.c /^ PyObject *constructs;$/;" m struct:__anon561 file: +consts Include/internal/pycore_code.h /^ PyObject *consts;$/;" m struct:_PyCodeConstructor +consts Lib/test/test_code.py /^def consts(t):$/;" f +consts_dict_keys_inorder Python/compile.c /^consts_dict_keys_inorder(PyObject *dict)$/;" f file: +consume Lib/test/test_asyncgen.py /^ async def consume():$/;" f function:AsyncGenAsyncioTest._check_async_iterator_anext +consume Lib/test/test_asyncgen.py /^ async def consume():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aiter +consume Lib/test/test_asyncgen.py /^ async def consume():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aiter_class +consume Lib/test/test_queue.py /^ def consume(self, q, results, sentinel):$/;" m class:BaseSimpleQueueTest +consume Lib/test/test_zipfile/_path/_itertools.py /^def consume(iterator, n=None):$/;" f +consume_iterator Modules/_collectionsmodule.c /^consume_iterator(PyObject *it)$/;" f file: +consume_nonblock Lib/test/test_queue.py /^ def consume_nonblock(self, q, results, sentinel):$/;" m class:BaseSimpleQueueTest +consume_optional Lib/argparse.py /^ def consume_optional(start_index):$/;" f function:ArgumentParser._parse_known_args +consume_positionals Lib/argparse.py /^ def consume_positionals(start_index):$/;" f function:ArgumentParser._parse_known_args +consume_timeout Lib/test/test_queue.py /^ def consume_timeout(self, q, results, sentinel):$/;" m class:BaseSimpleQueueTest +consumer Lib/test/test_asyncio/test_queues.py /^ async def consumer(queue, num_expected):$/;" f function:QueueGetTests.test_why_are_getters_waiting +consuming_calls Lib/lib2to3/fixer_util.py /^consuming_calls = {"sorted", "list", "set", "any", "all", "tuple", "sum",$/;" v +cont Lib/idlelib/debugger.py /^ def cont(self):$/;" m class:Debugger +cont_line Parser/tokenizer.h /^ int cont_line; \/* whether we are in a continuation line. *\/$/;" m struct:tok_state +container Lib/test/test_deque.py /^ container = deque([obj, 1])$/;" v class:TestBasic.test_container_iterator.C +container Lib/test/test_deque.py /^ container = reversed(deque([obj, 1]))$/;" v class:TestBasic.test_container_iterator.C +container Lib/test/test_descr.py /^ container = []$/;" v class:.test_subtype_resurrection.C +container Lib/test/test_dict.py /^ container = {obj: 1}$/;" v class:DictTest.test_container_iterator.C +container Python/bytecodes.c /^static PyObject *container, *start, *stop, *v, *lhs, *rhs, *res2;$/;" v file: +contains Lib/operator.py /^def contains(a, b):$/;" f +contains Objects/unionobject.c /^contains(PyObject **items, Py_ssize_t size, PyObject *obj)$/;" f file: +containsAny Tools/i18n/pygettext.py /^def containsAny(str, set):$/;" f +contains_bytes Lib/test/string_tests.py /^ contains_bytes = False$/;" v class:BaseTest +contains_null_bytes Parser/tokenizer.c /^contains_null_bytes(const char* str, size_t size) {$/;" f file: +contains_obj Objects/stringlib/find.h /^STRINGLIB(contains_obj)(PyObject* str, PyObject* sub)$/;" f +contains_typevartuple Objects/typevarobject.c /^contains_typevartuple(PyTupleObject *params)$/;" f file: +containtest Lib/test/test_peepholer.py /^ def containtest():$/;" f function:TestTranforms.test_in_literal_list +content Lib/email/_header_value_parser.py /^ def content(self):$/;" m class:Comment +content Lib/email/_header_value_parser.py /^ def content(self):$/;" m class:QuotedString +content Lib/lib2to3/pytree.py /^ content = None # Optional content matching pattern$/;" v class:BasePattern +content Tools/build/generate_sre_constants.py /^ content = [sre_constants_header]$/;" v +contentProcessor Modules/expat/xmlparse.c /^contentProcessor(XML_Parser parser, const char *start, const char *end,$/;" f file: +contentProcessor Modules/expat/xmlparse.c /^static Processor contentProcessor;$/;" v file: +contentStringLen Modules/expat/xmlparse.c /^ unsigned contentStringLen;$/;" m struct:__anon617 file: +contentTok Modules/expat/xmltok_impl.c /^PREFIX(contentTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +content_disp_as_value Lib/test/test_email/test_headerregistry.py /^ def content_disp_as_value(self,$/;" m class:TestContentDisposition +content_disp_params Lib/test/test_email/test_headerregistry.py /^ content_disp_params = {$/;" v class:TestContentDisposition +content_disposition Lib/email/_header_value_parser.py /^ content_disposition = None$/;" v class:ContentDisposition +content_disposition Lib/email/headerregistry.py /^ def content_disposition(self):$/;" m class:ContentDispositionHeader +content_manager Lib/email/policy.py /^ content_manager = raw_data_manager$/;" v class:EmailPolicy +content_manager Lib/test/test_email/test_contentmanager.py /^ content_manager=raw_data_manager)$/;" v class:TestRawDataManager +content_object_as_cid_receiver Lib/test/test_email/test_contentmanager.py /^ def content_object_as_cid_receiver(self, obj, mimetype):$/;" m class:TestRawDataManager +content_object_as_disposition_inline_receiver Lib/test/test_email/test_contentmanager.py /^ def content_object_as_disposition_inline_receiver(self, obj, mimetype):$/;" m class:TestRawDataManager +content_object_as_header_receiver Lib/test/test_email/test_contentmanager.py /^ def content_object_as_header_receiver(self, obj, mimetype):$/;" m class:TestRawDataManager +content_object_as_non_ascii_filename_receiver Lib/test/test_email/test_contentmanager.py /^ def content_object_as_non_ascii_filename_receiver(self, obj, mimetype):$/;" m class:TestRawDataManager +content_object_as_params_receiver Lib/test/test_email/test_contentmanager.py /^ def content_object_as_params_receiver(self, obj, mimetype):$/;" m class:TestRawDataManager +content_object_params Lib/test/test_email/test_contentmanager.py /^ content_object_params = {$/;" v class:TestRawDataManager +content_type Lib/email/headerregistry.py /^ def content_type(self):$/;" m class:ContentTypeHeader +content_type_as_value Lib/test/test_email/test_headerregistry.py /^ def content_type_as_value(self,$/;" m class:TestContentTypeHeader +content_type_params Lib/test/test_email/test_headerregistry.py /^ content_type_params = {$/;" v class:TestContentTypeHeader +contents Lib/importlib/resources/_legacy.py /^def contents(package: Package) -> Iterable[str]:$/;" f +contents Lib/importlib/resources/abc.py /^ def contents(self) -> Iterable[str]:$/;" m class:ResourceReader +contents Lib/importlib/resources/abc.py /^ def contents(self) -> Iterator[str]:$/;" m class:TraversableResources +contents Lib/test/test_importlib/resources/util.py /^ def contents(self):$/;" m class:Reader +contents Lib/test/test_importlib/test_abc.py /^ def contents(self, *args, **kwargs):$/;" m class:ResourceReader +context Include/cpython/pystate.h /^ PyObject *context;$/;" m struct:_ts +context Include/internal/pycore_interp.h /^ struct _Py_context_state context;$/;" m struct:_is typeref:struct:_is::_Py_context_state +context Lib/lib2to3/fixes/fix_input.py /^context = patcomp.compile_pattern("power< 'eval' trailer< '(' any ')' > >")$/;" v +context Lib/ssl.py /^ def context(self):$/;" m class:SSLObject +context Lib/ssl.py /^ def context(self):$/;" m class:SSLSocket +context Lib/ssl.py /^ def context(self, ctx):$/;" m class:SSLObject +context Lib/ssl.py /^ def context(self, ctx):$/;" m class:SSLSocket +context Lib/test/ssl_servers.py /^ context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)$/;" v +context Lib/test/test_contextlib_async.py /^ async def context():$/;" f function:AsyncContextManagerTestCase.test_decorating_method +context Lib/test/test_contextlib_async.py /^ async def context():$/;" f function:AsyncContextManagerTestCase.test_decorator +context Lib/test/test_contextlib_async.py /^ async def context():$/;" f function:AsyncContextManagerTestCase.test_decorator_with_exception +context Modules/_decimal/tests/deccheck.py /^context = Context()$/;" v +context Objects/capsule.c /^ void *context;$/;" m struct:__anon726 file: +context_check_key_type Python/context.c /^context_check_key_type(PyObject *key)$/;" f file: +context_clear Modules/_ssl.c /^context_clear(PySSLContext *self)$/;" f file: +context_clear_flags Modules/_decimal/_decimal.c /^context_clear_flags(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +context_clear_traps Modules/_decimal/_decimal.c /^context_clear_traps(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +context_copy Modules/_decimal/_decimal.c /^context_copy(PyObject *self, PyObject *args UNUSED)$/;" f file: +context_dealloc Modules/_decimal/_decimal.c /^context_dealloc(PyDecContextObject *self)$/;" f file: +context_dealloc Modules/_ssl.c /^context_dealloc(PySSLContext *self)$/;" f file: +context_diff Lib/difflib.py /^def context_diff(a, b, fromfile='', tofile='',$/;" f +context_expr Include/internal/pycore_ast.h /^ expr_ty context_expr;$/;" m struct:_withitem +context_expr Include/internal/pycore_ast_state.h /^ PyObject *context_expr;$/;" m struct:ast_state +context_get Python/context.c /^context_get(void)$/;" f file: +context_getallcr Modules/_decimal/_decimal.c /^context_getallcr(PyObject *self, void *closure UNUSED)$/;" f file: +context_getattr Modules/_decimal/_decimal.c /^context_getattr(PyObject *self, PyObject *name)$/;" f file: +context_getcapitals Modules/_decimal/_decimal.c /^context_getcapitals(PyObject *self, void *closure UNUSED)$/;" f file: +context_getetiny Modules/_decimal/_decimal.c /^context_getetiny(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +context_getetop Modules/_decimal/_decimal.c /^context_getetop(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +context_getround Modules/_decimal/_decimal.c /^context_getround(PyObject *self, void *closure UNUSED)$/;" f file: +context_getsetlist Modules/_ssl.c /^static PyGetSetDef context_getsetlist[] = {$/;" v file: +context_getsets Modules/_decimal/_decimal.c /^static PyGetSetDef context_getsets [] =$/;" v file: +context_init Modules/_decimal/_decimal.c /^context_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +context_kwname Modules/_asynciomodule.c /^ PyObject *context_kwname;$/;" m struct:__anon308 file: +context_menu_event Lib/idlelib/sidebar.py /^ def context_menu_event(self, event):$/;" m class:ShellSidebar +context_menu_event Lib/idlelib/squeezer.py /^ def context_menu_event(self, event):$/;" m class:ExpandingButton +context_message Lib/test/test_traceback.py /^context_message = ($/;" v +context_message Python/pythonrun.c /^static const char context_message[] =$/;" v file: +context_methods Modules/_decimal/_decimal.c /^static PyMethodDef context_methods [] =$/;" v file: +context_methods Modules/_ssl.c /^static struct PyMethodDef context_methods[] = {$/;" v typeref:struct:PyMethodDef file: +context_new Modules/_decimal/_decimal.c /^context_new(PyTypeObject *type, PyObject *args UNUSED, PyObject *kwds UNUSED)$/;" f file: +context_new_empty Python/context.c /^context_new_empty(void)$/;" f file: +context_new_from_vars Python/context.c /^context_new_from_vars(PyHamtObject *vars)$/;" f file: +context_reduce Modules/_decimal/_decimal.c /^context_reduce(PyObject *self, PyObject *args UNUSED)$/;" f file: +context_repr Modules/_decimal/_decimal.c /^context_repr(PyDecContextObject *self)$/;" f file: +context_run Python/context.c /^context_run(PyContext *self, PyObject *const *args,$/;" f file: +context_setallcr Modules/_decimal/_decimal.c /^context_setallcr(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setattr Modules/_decimal/_decimal.c /^context_setattr(PyObject *self, PyObject *name, PyObject *value)$/;" f file: +context_setattrs Modules/_decimal/_decimal.c /^context_setattrs(PyObject *self, PyObject *prec, PyObject *rounding,$/;" f file: +context_setcapitals Modules/_decimal/_decimal.c /^context_setcapitals(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setclamp Modules/_decimal/_decimal.c /^context_setclamp(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setemax Modules/_decimal/_decimal.c /^context_setemax(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setemin Modules/_decimal/_decimal.c /^context_setemin(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setprec Modules/_decimal/_decimal.c /^context_setprec(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setround Modules/_decimal/_decimal.c /^context_setround(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setstatus Modules/_decimal/_decimal.c /^context_setstatus(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_setstatus_dict Modules/_decimal/_decimal.c /^context_setstatus_dict(PyObject *self, PyObject *value)$/;" f file: +context_setstatus_list Modules/_decimal/_decimal.c /^context_setstatus_list(PyObject *self, PyObject *value)$/;" f file: +context_settraps Modules/_decimal/_decimal.c /^context_settraps(PyObject *self, PyObject *value, void *closure UNUSED)$/;" f file: +context_settraps_dict Modules/_decimal/_decimal.c /^context_settraps_dict(PyObject *self, PyObject *value)$/;" f file: +context_settraps_list Modules/_decimal/_decimal.c /^context_settraps_list(PyObject *self, PyObject *value)$/;" f file: +context_token_missing Include/internal/pycore_global_objects.h /^ _PyContextTokenMissing context_token_missing;$/;" m struct:_Py_static_objects::__anon147 +context_token_missing_tp_repr Python/context.c /^context_token_missing_tp_repr(PyObject *self)$/;" f file: +context_tp_clear Python/context.c /^context_tp_clear(PyContext *self)$/;" f file: +context_tp_contains Python/context.c /^context_tp_contains(PyContext *self, PyObject *key)$/;" f file: +context_tp_dealloc Python/context.c /^context_tp_dealloc(PyContext *self)$/;" f file: +context_tp_iter Python/context.c /^context_tp_iter(PyContext *self)$/;" f file: +context_tp_len Python/context.c /^context_tp_len(PyContext *self)$/;" f file: +context_tp_new Python/context.c /^context_tp_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +context_tp_richcompare Python/context.c /^context_tp_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +context_tp_subscript Python/context.c /^context_tp_subscript(PyContext *self, PyObject *key)$/;" f file: +context_tp_traverse Python/context.c /^context_tp_traverse(PyContext *self, visitproc visit, void *arg)$/;" f file: +context_traverse Modules/_ssl.c /^context_traverse(PySSLContext *self, visitproc visit, void *arg)$/;" f file: +context_unsafe_setemax Modules/_decimal/_decimal.c /^context_unsafe_setemax(PyObject *self, PyObject *value)$/;" f file: +context_unsafe_setemin Modules/_decimal/_decimal.c /^context_unsafe_setemin(PyObject *self, PyObject *value)$/;" f file: +context_unsafe_setprec Modules/_decimal/_decimal.c /^context_unsafe_setprec(PyObject *self, PyObject *value)$/;" f file: +context_ver Include/cpython/pystate.h /^ uint64_t context_ver;$/;" m struct:_ts +contextmanager Lib/contextlib.py /^def contextmanager(func):$/;" f +contextual Tools/cases_generator/parser.py /^def contextual(func: Callable[[P], N | None]) -> Callable[[P], N | None]:$/;" f +contextual_wrapper Tools/cases_generator/parser.py /^ def contextual_wrapper(self: P) -> N | None:$/;" f function:contextual +contextvar_del Python/context.c /^contextvar_del(PyContextVar *var)$/;" f file: +contextvar_generate_hash Python/context.c /^contextvar_generate_hash(void *addr, PyObject *name)$/;" f file: +contextvar_new Python/context.c /^contextvar_new(PyObject *name, PyObject *def)$/;" f file: +contextvar_set Python/context.c /^contextvar_set(PyContextVar *var, PyObject *val)$/;" f file: +contextvar_tp_clear Python/context.c /^contextvar_tp_clear(PyContextVar *self)$/;" f file: +contextvar_tp_dealloc Python/context.c /^contextvar_tp_dealloc(PyContextVar *self)$/;" f file: +contextvar_tp_hash Python/context.c /^contextvar_tp_hash(PyContextVar *self)$/;" f file: +contextvar_tp_new Python/context.c /^contextvar_tp_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +contextvar_tp_repr Python/context.c /^contextvar_tp_repr(PyContextVar *self)$/;" f file: +contextvar_tp_traverse Python/context.c /^contextvar_tp_traverse(PyContextVar *self, visitproc visit, void *arg)$/;" f file: +continuation Lib/test/test_imaplib.py /^ continuation = None$/;" v class:SimpleIMAPHandler +continue_in_while Lib/test/test_compile.py /^ def continue_in_while():$/;" f function:TestSpecifics.test_false_while_loop +contradiction Lib/test/inspect_fodder.py /^ def contradiction(self):$/;" f +contradiction Lib/test/inspect_fodder.py /^ def contradiction(self):$/;" m class:FesteringGob +contradiction Lib/test/inspect_fodder.py /^ def contradiction(self):$/;" m class:MalodorousPervert +contravariant Objects/typevarobject.c /^ bool contravariant;$/;" m struct:__anon713 file: +contravariant Objects/typevarobject.c /^ bool contravariant;$/;" m struct:__anon715 file: +control Lib/msilib/__init__.py /^ def control(self, name, type, x, y, w, h, attr, prop, text, next, help):$/;" m class:Dialog +control_labels Modules/ossaudiodev.c /^static char *control_labels[] = SOUND_DEVICE_LABELS;$/;" v file: +control_names Modules/ossaudiodev.c /^static char *control_names[] = SOUND_DEVICE_NAMES;$/;" v file: +controlnames Lib/curses/ascii.py /^controlnames = [$/;" v +conv Lib/test/test_calendar.py /^def conv(s):$/;" f +conv Lib/test/test_tarfile.py /^ def conv(b):$/;" f function:ListTest.test_list +conv_confname Modules/posixmodule.c /^conv_confname(PyObject *arg, int *valuep, struct constdef *table,$/;" f file: +conv_confstr_confname Modules/posixmodule.c /^conv_confstr_confname(PyObject *arg, int *valuep)$/;" f file: +conv_content_model Modules/pyexpat.c /^conv_content_model(XML_Content * const model,$/;" f file: +conv_path_confname Modules/posixmodule.c /^conv_path_confname(PyObject *arg, int *valuep)$/;" f file: +conv_string_len_to_unicode Modules/pyexpat.c /^conv_string_len_to_unicode(const XML_Char *str, int len)$/;" f file: +conv_string_to_unicode Modules/pyexpat.c /^conv_string_to_unicode(const XML_Char *str)$/;" f file: +conv_sysconf_confname Modules/posixmodule.c /^conv_sysconf_confname(PyObject *arg, int *valuep)$/;" f file: +conversion Include/internal/pycore_ast.h /^ int conversion;$/;" m struct:_expr::__anon77::__anon95 +conversion Include/internal/pycore_ast_state.h /^ PyObject *conversion;$/;" m struct:ast_state +conversion_fn Tools/clinic/clinic.py /^ conversion_fn = 'PyLong_FromLong'$/;" v class:long_return_converter +conversion_fn Tools/clinic/clinic.py /^ conversion_fn = 'PyLong_FromSize_t'$/;" v class:size_t_return_converter +conversion_fn Tools/clinic/clinic.py /^ conversion_fn = 'PyLong_FromSsize_t'$/;" v class:Py_ssize_t_return_converter +conversion_fn Tools/clinic/clinic.py /^ conversion_fn = 'PyLong_FromUnsignedLong'$/;" v class:unsigned_long_return_converter +convert Lib/inspect.py /^ def convert(name, locals=locals,$/;" f function:formatargvalues +convert Lib/lib2to3/pytree.py /^def convert(gr, raw_node):$/;" f +convert Lib/logging/config.py /^ def convert(self, value):$/;" m class:BaseConfigurator +convert Lib/logging/config.py /^ def convert(self, value):$/;" m class:ConvertingMixin +convert Lib/string.py /^ def convert(mo):$/;" f function:Template.safe_substitute +convert Lib/string.py /^ def convert(mo):$/;" f function:Template.substitute +convert Lib/test/test_lib2to3/support.py /^ convert=pytree.convert$/;" v +convert Lib/test/test_sqlite3/test_types.py /^ convert = staticmethod(convert)$/;" v class:BinaryConverterTests +convert Lib/test/test_sqlite3/test_types.py /^ def convert(s):$/;" m class:BinaryConverterTests +convert Lib/test/test_tomllib/burntsushi.py /^def convert(obj): # noqa: C901$/;" f +convert Modules/_decimal/tests/deccheck.py /^def convert(t, convstr=True):$/;" f +convert Modules/expat/expat.h /^ int(XMLCALL *convert)(void *data, const char *s);$/;" m struct:__anon598 +convert Modules/expat/xmltok.c /^ CONVERTER convert;$/;" m struct:unknown_encoding file: +convert_arg_line_to_args Lib/argparse.py /^ def convert_arg_line_to_args(self, arg_line):$/;" m class:ArgumentParser +convert_arg_line_to_args Lib/test/test_argparse.py /^ def convert_arg_line_to_args(self, arg_line):$/;" m class:TestArgumentsFromFileConverter.FromFileConverterArgumentParser +convert_between_tz_and_utc Lib/test/datetimetester.py /^ def convert_between_tz_and_utc(self, tz, utc):$/;" m class:TestTimezoneConversions +convert_class Lib/enum.py /^ def convert_class(cls):$/;" f function:_simple_enum +convert_date Lib/sqlite3/dbapi2.py /^ def convert_date(val):$/;" f function:register_adapters_and_converters +convert_error Tools/c-analyzer/c_parser/preprocessor/common.py /^def convert_error(tool, argv, filename, stderr, rc):$/;" f +convert_fds_to_keep_to_c Modules/_posixsubprocess.c /^convert_fds_to_keep_to_c(PyObject *py_fds_to_keep, int *c_fds_to_keep)$/;" f file: +convert_field Lib/string.py /^ def convert_field(self, value, conversion):$/;" m class:Formatter +convert_field Lib/test/test_string.py /^ def convert_field(self, value, conversion):$/;" m class:ModuleTest.test_override_convert_field.XFormatter +convert_mbcs Tools/c-analyzer/distutils/msvc9compiler.py /^ convert_mbcs = staticmethod(convert_mbcs)$/;" v class:Reg +convert_mbcs Tools/c-analyzer/distutils/msvc9compiler.py /^ def convert_mbcs(s):$/;" m class:Reg +convert_mbcs Tools/c-analyzer/distutils/msvccompiler.py /^def convert_mbcs(s):$/;" f +convert_op Modules/_decimal/_decimal.c /^convert_op(int type_err, PyObject **conv, PyObject *v, PyObject *context)$/;" f +convert_op_cmp Modules/_decimal/_decimal.c /^convert_op_cmp(PyObject **vcmp, PyObject **wcmp, PyObject *v, PyObject *w,$/;" f file: +convert_optional_bool Modules/_io/textio.c /^convert_optional_bool(PyObject *obj, int default_value)$/;" f file: +convert_sched_param Modules/posixmodule.c /^convert_sched_param(PyObject *module, PyObject *param, struct sched_param *res)$/;" f file: +convert_timestamp Lib/sqlite3/dbapi2.py /^ def convert_timestamp(val):$/;" f function:register_adapters_and_converters +convert_to_bin Lib/test/test_plistlib.py /^ def convert_to_bin(self):$/;" m class:TestPlutil +convert_to_double Objects/floatobject.c /^convert_to_double(PyObject **v, double *dbl)$/;" f file: +convert_to_error Lib/multiprocessing/managers.py /^def convert_to_error(kind, result):$/;" f +convert_to_json Lib/test/test_plistlib.py /^ def convert_to_json(self):$/;" m class:TestPlutil +convert_uc Objects/unicodeobject.c /^convert_uc(PyObject *obj, void *addr)$/;" f file: +convert_value Lib/optparse.py /^ def convert_value(self, opt, value):$/;" m class:Option +convert_values Lib/test/test_time.py /^ def convert_values(ns_timestamps):$/;" f function:CPyTimeTestCase._check_rounding +convert_with_key Lib/logging/config.py /^ def convert_with_key(self, key, value, replace=True):$/;" m class:ConvertingMixin +convertbuffer Python/getargs.c /^convertbuffer(PyObject *arg, const void **p, const char **errmsg)$/;" f file: +convertdir Tools/unicode/gencodec.py /^def convertdir(dir, dirprefix='', nameprefix='', comments=1):$/;" f +converted_error Tools/c-analyzer/c_parser/preprocessor/common.py /^def converted_error(tool, argv, filename):$/;" f +convertenviron Modules/posixmodule.c /^convertenviron(void)$/;" f file: +converter Lib/logging/__init__.py /^ converter = time.localtime$/;" v class:Formatter +converter Lib/test/test_time.py /^ def converter(secs):$/;" f function:TestOldPyTime.create_converter +converter Lib/test/test_time.py /^ def converter(value):$/;" f function:TestCPyTime.create_decimal_converter +converter Modules/_ctypes/callproc.c /^converter(PyObject *obj, void **address)$/;" f file: +converter Tools/clinic/clinic.py /^ converter = '_PyLong_FileDescriptor_Converter'$/;" v class:fildes_converter +converter Tools/clinic/clinic.py /^ converter = '_PyLong_Size_t_Converter'$/;" v class:size_t_converter +converter_init Tools/clinic/clinic.py /^ def converter_init($/;" m class:Py_UNICODE_converter +converter_init Tools/clinic/clinic.py /^ def converter_init($/;" m class:object_converter +converter_init Tools/clinic/clinic.py /^ def converter_init($/;" m class:str_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self) -> None:$/;" m class:char_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self):$/;" m class:CConverter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, accept: TypeSet = {buffer}) -> None:$/;" m class:Py_buffer_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, accept: TypeSet = {int, NoneType}) -> None:$/;" m class:slice_index_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, accept: TypeSet = {int}) -> None:$/;" m class:Py_ssize_t_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, accept: TypeSet = {int}, type=None) -> None:$/;" m class:int_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, accept: TypeSet = {object}) -> None:$/;" m class:bool_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, bitwise: bool = False) -> None:$/;" m class:unsigned_char_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, bitwise: bool = False) -> None:$/;" m class:unsigned_int_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, bitwise: bool = False) -> None:$/;" m class:unsigned_long_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, bitwise: bool = False) -> None:$/;" m class:unsigned_long_long_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, bitwise: bool = False) -> None:$/;" m class:unsigned_short_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, type=None) -> None:$/;" m class:defining_class_converter +converter_init Tools/clinic/clinic.py /^ def converter_init(self, *, type=None) -> None:$/;" m class:self_converter +converterr Python/getargs.c /^converterr(const char *expected, PyObject *arg, char *msgbuf, size_t bufsize)$/;" f file: +converters Lib/configparser.py /^ def converters(self):$/;" m class:RawConfigParser +converters Modules/_ctypes/ctypes.h /^ PyObject *converters; \/* tuple([t.from_param for t in argtypes]) *\/$/;" m struct:__anon495 +converters Modules/_ctypes/ctypes.h /^ PyObject *converters;$/;" m struct:__anon492 +converters Modules/_ctypes/ctypes.h /^ PyObject *converters;$/;" m struct:__anon493 +converters Modules/_sqlite/module.h /^ PyObject *converters;$/;" m struct:__anon355 +converters Tools/clinic/clinic.py /^ converters = []$/;" v +converters_from_argtypes Modules/_ctypes/_ctypes.c /^converters_from_argtypes(PyObject *ob)$/;" f file: +converters_init Modules/_sqlite/module.c /^static int converters_init(PyObject* module)$/;" f file: +convertitem Python/getargs.c /^convertitem(PyObject *arg, const char **p_format, va_list *p_va, int flags,$/;" f file: +convertsimple Python/getargs.c /^convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags,$/;" f file: +converttuple Python/getargs.c /^converttuple(PyObject *arg, const char **p_format, va_list *p_va, int flags,$/;" f file: +convlinesep Lib/test/test_xml_etree.py /^def convlinesep(data):$/;" f +cooked_values Lib/test/test_locale.py /^ cooked_values = {$/;" v class:CCookedTest +cooked_values Lib/test/test_locale.py /^ cooked_values = {$/;" v class:EnUSCookedTest +cooked_values Lib/test/test_locale.py /^ cooked_values = {$/;" v class:FrFRCookedTest +cookie Parser/tokenizer.c /^ void *cookie;$/;" m union:__anon668 file: +cookie_re Lib/lib2to3/pgen2/tokenize.py /^cookie_re = re.compile(r'^[ \\t\\f]*#.*?coding[:=][ \\t]*([-\\w.]+)', re.ASCII)$/;" v +cookie_re Lib/tokenize.py /^cookie_re = re.compile(r'^[ \\t\\f]*#.*?coding[:=][ \\t]*([-\\w.]+)', re.ASCII)$/;" v +cookie_type Modules/_io/textio.c /^} cookie_type;$/;" t typeref:struct:__anon438 file: +cookiejar_from_cookie_headers Lib/test/test_http_cookiejar.py /^ def cookiejar_from_cookie_headers(headers):$/;" f function:CookieTests.test_bad_cookie_header +coord_repr Lib/tomllib/_parser.py /^ def coord_repr(src: str, pos: Pos) -> str:$/;" f function:suffixed_err +coords Lib/tkinter/__init__.py /^ def coords(self, *args):$/;" m class:Canvas +coords Lib/tkinter/__init__.py /^ def coords(self, value=None):$/;" m class:Scale +coords Lib/turtledemo/nim.py /^ def coords(self, row, col):$/;" m class:Stick +coords2index Lib/test/test_generators.py /^ def coords2index(self, i, j):$/;" m class:Knights +coosys Lib/turtledemo/chaos.py /^def coosys():$/;" f +copy Lib/_pydecimal.py /^ def copy(self):$/;" m class:Context +copy Lib/_weakrefset.py /^ def copy(self):$/;" m class:WeakSet +copy Lib/collections/__init__.py /^ def copy(self):$/;" m class:ChainMap +copy Lib/collections/__init__.py /^ def copy(self):$/;" m class:Counter +copy Lib/collections/__init__.py /^ def copy(self):$/;" m class:OrderedDict +copy Lib/collections/__init__.py /^ def copy(self):$/;" m class:UserDict +copy Lib/collections/__init__.py /^ def copy(self):$/;" m class:UserList +copy Lib/copy.py /^def copy(x):$/;" f +copy Lib/hmac.py /^ def copy(self):$/;" m class:HMAC +copy Lib/http/cookies.py /^ def copy(self):$/;" m class:Morsel +copy Lib/idlelib/editor.py /^ def copy(self,event):$/;" m class:EditorWindow +copy Lib/idlelib/squeezer.py /^ def copy(self, event=None):$/;" m class:ExpandingButton +copy Lib/imaplib.py /^ def copy(self, message_set, new_mailbox):$/;" m class:IMAP4 +copy Lib/lib2to3/pgen2/grammar.py /^ def copy(self):$/;" m class:Grammar +copy Lib/multiprocessing/sharedctypes.py /^def copy(obj):$/;" f +copy Lib/os.py /^ def copy(self):$/;" m class:_Environ +copy Lib/pipes.py /^ def copy(self, infile, outfile):$/;" m class:Template +copy Lib/shutil.py /^def copy(src, dst, *, follow_symlinks=True):$/;" f +copy Lib/subprocess.py /^ def copy(self):$/;" m class:.STARTUPINFO +copy Lib/test/support/os_helper.py /^ def copy(self):$/;" m class:EnvironmentVarGuard +copy Lib/test/test_descr.py /^ def copy(self, obj):$/;" m class:PicklingTests._generate_pickle_copiers.PickleCopier +copy Lib/test/test_operator.py /^ def copy(self, obj, proto):$/;" m class:OperatorPickleTestCase +copy Lib/test/test_shelve.py /^ def copy(self):$/;" m class:byteskeydict +copy Lib/test/test_types.py /^ def copy(self):$/;" m class:MappingProxyTests.test_customdict.customdict +copy Lib/tkinter/__init__.py /^ def copy(self):$/;" m class:PhotoImage +copy Lib/tkinter/font.py /^ def copy(self):$/;" m class:Font +copy Lib/unittest/mock.py /^ def copy(self):$/;" m class:_patch +copy Lib/weakref.py /^ def copy(self):$/;" m class:WeakKeyDictionary +copy Lib/weakref.py /^ def copy(self):$/;" m class:WeakValueDictionary +copy Lib/xml/sax/xmlreader.py /^ def copy(self):$/;" m class:AttributesImpl +copy Lib/xml/sax/xmlreader.py /^ def copy(self):$/;" m class:AttributesNSImpl +copy Tools/clinic/clinic.py /^ def copy(self, **overrides) -> "Function":$/;" m class:Function +copy Tools/clinic/clinic.py /^ def copy(self, **overrides) -> "Parameter":$/;" m class:Parameter +copy2 Lib/shutil.py /^def copy2(src, dst, *, follow_symlinks=True):$/;" f +copyEntityTable Modules/expat/xmlparse.c /^copyEntityTable(XML_Parser oldParser, HASH_TABLE *newTable,$/;" f file: +copyString Modules/expat/xmlparse.c /^copyString(const XML_Char *s, const XML_Memory_Handling_Suite *memsuite) {$/;" f file: +copyWstr PC/launcher2.c /^copyWstr(const wchar_t **dest, const wchar_t *src)$/;" f +copy_abs Lib/_pydecimal.py /^ def copy_abs(self):$/;" m class:Decimal +copy_abs Lib/_pydecimal.py /^ def copy_abs(self, a):$/;" m class:Context +copy_attr Lib/test/pythoninfo.py /^def copy_attr(info_add, name, mod, attr_name):$/;" f +copy_attributes Lib/test/pythoninfo.py /^def copy_attributes(info_add, obj, name_fmt, attributes, *, formatter=None):$/;" f +copy_base Objects/memoryobject.c /^copy_base(const Py_ssize_t *shape, Py_ssize_t itemsize,$/;" f file: +copy_basicblock Python/flowgraph.c /^copy_basicblock(cfg_builder *g, basicblock *block)$/;" f file: +copy_buffer Modules/_testbuffer.c /^copy_buffer(Py_buffer *dest, Py_buffer *src)$/;" f file: +copy_buffer Objects/memoryobject.c /^copy_buffer(const Py_buffer *dest, const Py_buffer *src)$/;" f file: +copy_com_pointer Modules/_ctypes/callproc.c /^copy_com_pointer(PyObject *self, PyObject *args)$/;" f file: +copy_decimal Lib/_pydecimal.py /^ def copy_decimal(self, a):$/;" m class:Context +copy_except_stack Python/flowgraph.c /^copy_except_stack(ExceptStack *stack) {$/;" f file: +copy_files PC/layout/main.py /^def copy_files(files, ns):$/;" f +copy_grouping Modules/_localemodule.c /^copy_grouping(const char* s)$/;" f file: +copy_if_modified PC/layout/main.py /^def copy_if_modified(src, dest):$/;" f +copy_includes PCbuild/prepare_ssl.py /^def copy_includes(makefile, suffix):$/;" f +copy_location Lib/ast.py /^def copy_location(new_node, old_node):$/;" f +copy_negate Lib/_pydecimal.py /^ def copy_negate(self):$/;" m class:Decimal +copy_negate Lib/_pydecimal.py /^ def copy_negate(self, a):$/;" m class:Context +copy_paths_by_env Lib/test/test_embed.py /^ def copy_paths_by_env(self, config):$/;" m class:InitConfigTests +copy_rec Modules/_testbuffer.c /^copy_rec(const Py_ssize_t *shape, Py_ssize_t ndim, Py_ssize_t itemsize,$/;" f file: +copy_rec Objects/memoryobject.c /^copy_rec(const Py_ssize_t *shape, Py_ssize_t ndim, Py_ssize_t itemsize,$/;" f file: +copy_salt_to_sipkey Modules/expat/xmlparse.c /^copy_salt_to_sipkey(XML_Parser parser, struct sipkey *key) {$/;" f file: +copy_shape Objects/memoryobject.c /^copy_shape(Py_ssize_t *shape, const PyObject *seq, Py_ssize_t ndim,$/;" f file: +copy_sign Lib/_pydecimal.py /^ def copy_sign(self, a, b):$/;" m class:Context +copy_sign Lib/_pydecimal.py /^ def copy_sign(self, other, context=None):$/;" m class:Decimal +copy_single Objects/memoryobject.c /^copy_single(PyMemoryViewObject *self, const Py_buffer *dest, const Py_buffer *src)$/;" f file: +copy_source_tree Tools/freeze/test/freeze.py /^def copy_source_tree(newroot, oldroot):$/;" f +copy_strip Lib/idlelib/help.py /^def copy_strip():$/;" f +copy_structure Modules/_testbuffer.c /^copy_structure(Py_buffer *base)$/;" f file: +copy_with Lib/typing.py /^ def copy_with(self, args):$/;" m class:_GenericAlias +copy_with Lib/typing.py /^ def copy_with(self, params):$/;" m class:_AnnotatedAlias +copy_with Lib/typing.py /^ def copy_with(self, params):$/;" m class:_CallableType +copy_with Lib/typing.py /^ def copy_with(self, params):$/;" m class:_ConcatenateGenericAlias +copy_with Lib/typing.py /^ def copy_with(self, params):$/;" m class:_SpecialGenericAlias +copy_with Lib/typing.py /^ def copy_with(self, params):$/;" m class:_UnionGenericAlias +copy_with_prompts_callback Lib/idlelib/pyshell.py /^ def copy_with_prompts_callback(self, event=None):$/;" m class:PyShell +copycleandir Mac/Extras.install.py /^def copycleandir(src, dst):$/;" f +copyfile Lib/http/server.py /^ def copyfile(self, source, outputfile):$/;" m class:SimpleHTTPRequestHandler +copyfile Lib/shutil.py /^def copyfile(src, dst, *, follow_symlinks=True):$/;" f +copyfileobj Lib/shutil.py /^def copyfileobj(fsrc, fdst, length=0):$/;" f +copyfileobj Lib/tarfile.py /^def copyfileobj(src, dst, length=None, exception=OSError, bufsize=None):$/;" f +copymode Lib/shutil.py /^def copymode(src, dst, *, follow_symlinks=True):$/;" f +copyright Doc/conf.py /^copyright = '2001-%s, Python Software Foundation' % time.strftime('%Y')$/;" v +copyright Modules/_sre/sre.c /^static const char copyright[] =$/;" v file: +copystat Lib/shutil.py /^def copystat(src, dst, *, follow_symlinks=True):$/;" f +copytree Lib/shutil.py /^def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2,$/;" f +core_initialized Include/internal/pycore_runtime.h /^ int core_initialized;$/;" m struct:pyruntimestate +core_read_precmdline Python/initconfig.c /^core_read_precmdline(PyConfig *config, _PyPreCmdline *precmdline)$/;" f file: +coro Lib/test/test_asyncio/test_base_events.py /^ async def coro():$/;" f function:BaseEventLoopTests.test_set_task_factory +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro():$/;" f function:EagerTaskFactoryLoopTests.test_all_tasks_with_eager_completion +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro():$/;" f function:EagerTaskFactoryLoopTests.test_block_after_eager_step +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro():$/;" f function:EagerTaskFactoryLoopTests.test_cancellation_after_eager_completion +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro():$/;" f function:EagerTaskFactoryLoopTests.test_cancellation_after_eager_step_blocks +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro():$/;" f function:EagerTaskFactoryLoopTests.test_context_vars +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro():$/;" f function:EagerTaskFactoryLoopTests.test_current_task +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro():$/;" f function:EagerTaskFactoryLoopTests.test_eager_completion +coro Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro(fut1, fut2):$/;" f function:EagerTaskFactoryLoopTests.test_all_tasks_with_blocking +coro Lib/test/test_asyncio/test_futures.py /^ def coro():$/;" f function:BaseFutureTests.test_iter +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_abort_barrier_when_exception +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_abort_barrier_when_exception_then_resetting +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_abort_barrier_when_tasks_half_draining_half_blocking +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_blocking_tasks_while_draining +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_context_manager +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_draining_state +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_filling_tasks_cancel_one +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_filling_tasks_check_return_value +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_filling_tasks_wait_twice +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_reset_barrier_when_tasks_half_draining +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_reset_barrier_when_tasks_half_draining_half_blocking +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_reset_barrier_while_tasks_draining +coro Lib/test/test_asyncio/test_locks.py /^ async def coro():$/;" f function:BarrierTests.test_reset_barrier_while_tasks_waiting +coro Lib/test/test_asyncio/test_locks.py /^ async def coro(tag):$/;" f function:SemaphoreTests.test_acquire_fifo_order +coro Lib/test/test_asyncio/test_pep492.py /^ async def coro():$/;" f function:CoroutineTests.test_types_coroutine +coro Lib/test/test_asyncio/test_runners.py /^ async def coro():$/;" f function:RunnerTests.test_interrupt_call_soon +coro Lib/test/test_asyncio/test_runners.py /^ async def coro():$/;" f function:RunnerTests.test_interrupt_cancelled_task +coro Lib/test/test_asyncio/test_runners.py /^ async def coro():$/;" f function:RunnerTests.test_set_event_loop_called_once +coro Lib/test/test_asyncio/test_runners.py /^ async def coro():$/;" f function:RunnerTests.test_signal_install_not_supported_ok +coro Lib/test/test_asyncio/test_runners.py /^ async def coro(fut):$/;" f function:RunnerTests.test_interrupt_wait +coro Lib/test/test_asyncio/test_sendfile.py /^ async def coro():$/;" f function:SendfileMixin.test_sendfile_prevents_bare_write +coro Lib/test/test_asyncio/test_taskgroups.py /^ async def coro():$/;" f function:TestTaskGroup.test_taskgroup_task_name +coro Lib/test/test_asyncio/test_taskgroups.py /^ async def coro(val):$/;" f function:TestTaskGroup.test_taskgroup_task_context +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_cancel_with_message_then_future_exception +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_cancel_with_message_then_future_result +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(fut=fut):$/;" f function:CoroutineGatherTests.wrap_futures +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(s):$/;" f function:CoroutineGatherTests.test_issue46672 +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseCurrentLoopTests.test_current_task_with_implicit_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_as_completed_coroutine_use_running_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_as_completed_coroutine_without_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_bare_create_named_task +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_bare_create_task +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_cancel_awaited_task +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_cancel_traceback_for_future_exception +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_cancel_traceback_for_future_result +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_cancel_with_message_before_starting_task +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_cancellation_exception_context +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_coroutine_non_gen_function_return_future +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_create_task_with_async_function +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_ensure_future_awaitable +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_error_in_call_soon +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_log_traceback +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_shield_coroutine_use_global_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_shield_coroutine_use_running_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_shield_coroutine_without_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_task_cancel_message_getter +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_task_cancel_message_setter +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_task_cancel_waiter_future +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:BaseTaskTests.test_tb_logger_not_called_after_cancel +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:CTask_CFuture_Tests.test_del__log_destroy_pending_segfault +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:CTask_CFuture_Tests.test_refleaks_in_task___init__ +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:CTask_Future_Tests.test_foobar +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:CoroutineGatherTests._gather +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:CoroutineGatherTests.test_constructor_use_global_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:CoroutineGatherTests.test_constructor_use_running_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:CoroutineGatherTests.test_constructor_without_loop +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro():$/;" f function:SleepTests.test_sleep_zero +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(loop):$/;" f function:BaseTaskTests.test_current_task +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(s):$/;" f function:BaseTaskTests.test_as_completed_duplicate_coroutines +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(s):$/;" f function:BaseTaskTests.test_wait_duplicate_coroutines +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(s):$/;" f function:CoroutineGatherTests.test_duplicate_coroutines +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(val):$/;" f function:BaseTaskTests.test_context_4 +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(val):$/;" f function:BaseTaskTests.test_context_5 +coro Lib/test/test_asyncio/test_tasks.py /^ async def coro(val):$/;" f function:BaseTaskTests.test_context_6 +coro Lib/test/test_asyncio/test_waitfor.py /^ async def coro():$/;" f function:AsyncioWaitForTest.test_wait_for_blocking +coro Lib/test/test_asyncio/test_waitfor.py /^ async def coro():$/;" f function:WaitForShieldTests.test_none_timeout +coro Lib/test/test_asyncio/test_waitfor.py /^ async def coro():$/;" f function:WaitForShieldTests.test_shielded_timeout +coro Lib/test/test_asyncio/test_waitfor.py /^ async def coro():$/;" f function:WaitForShieldTests.test_zero_timeout +coro Lib/test/test_asyncio/test_windows_events.py /^ async def coro():$/;" f function:ProactorMultithreading.test_run_from_nonmain_thread +coro Lib/test/test_collections.py /^ def coro():$/;" f function:TestOneTrickPonyABCs.test_Awaitable +coro Lib/test/test_collections.py /^ def coro():$/;" f function:TestOneTrickPonyABCs.test_Coroutine +coro Lib/test/test_coroutines.py /^ async def coro():$/;" f function:CoroutineTest.test_await_12 +coro Lib/test/test_coroutines.py /^ async def coro():$/;" f function:CoroutineTest.test_func_14 +coro Lib/test/test_types.py /^ def coro():$/;" f function:CoroutineTests.test_wrapper_object +coro Lib/test/test_unittest/test_async_case.py /^ async def coro():$/;" f function:TestAsyncCase.test_cancellation_hanging_tasks.Test.test_leaking_task +coro Lib/test/test_unittest/test_async_case.py /^ async def coro():$/;" f function:TestAsyncCase.test_debug_cleanup_same_loop.Test.asyncSetUp +coro1 Lib/test/test_asyncio/test_events.py /^ async def coro1():$/;" f function:EventLoopTestsMixin.test_run_until_complete_nesting +coro1 Lib/test/test_asyncio/test_locks.py /^ async def coro1():$/;" f function:BarrierTests.test_reset_barrier_while_tasks_waiting_and_waiting_again +coro1 Lib/test/test_asyncio/test_taskgroups.py /^ async def coro1():$/;" f function:TestTaskGroup.test_taskgroup_no_create_task_after_failure +coro1 Lib/test/test_asyncio/test_taskgroups.py /^ async def coro1(delay):$/;" f function:TestTaskGroup.test_taskgroup_24 +coro1 Lib/test/test_asyncio/test_tasks.py /^ async def coro1():$/;" f function:BaseTaskTests.test_wait_really_done +coro1 Lib/test/test_asyncio/test_tasks.py /^ async def coro1(loop):$/;" f function:BaseTaskTests.test_current_task_with_interleaving_tasks +coro1 Lib/test/test_coroutines.py /^ async def coro1():$/;" f function:CoroutineTest.test_await_14 +coro2 Lib/test/test_asyncio/test_events.py /^ async def coro2():$/;" f function:EventLoopTestsMixin.test_run_until_complete_nesting +coro2 Lib/test/test_asyncio/test_locks.py /^ async def coro2():$/;" f function:BarrierTests.test_reset_barrier_while_tasks_waiting_and_waiting_again +coro2 Lib/test/test_asyncio/test_taskgroups.py /^ async def coro2(g):$/;" f function:TestTaskGroup.test_taskgroup_no_create_task_after_failure +coro2 Lib/test/test_asyncio/test_tasks.py /^ async def coro2():$/;" f function:BaseTaskTests.test_wait_really_done +coro2 Lib/test/test_asyncio/test_tasks.py /^ async def coro2(loop):$/;" f function:BaseTaskTests.test_current_task_with_interleaving_tasks +coro2 Lib/test/test_coroutines.py /^ async def coro2():$/;" f function:CoroutineTest.test_await_14 +coro_as_async Objects/genobject.c /^static PyAsyncMethods coro_as_async = {$/;" v file: +coro_await Objects/genobject.c /^coro_await(PyCoroObject *coro)$/;" f file: +coro_function Lib/test/test_pydoc.py /^ async def coro_function(ign) -> int:$/;" f function:TestDescriptions.test_async_annotation +coro_get_cr_await Objects/genobject.c /^coro_get_cr_await(PyCoroObject *coro, void *Py_UNUSED(ignored))$/;" f file: +coro_getsetlist Objects/genobject.c /^static PyGetSetDef coro_getsetlist[] = {$/;" v file: +coro_memberlist Objects/genobject.c /^static PyMemberDef coro_memberlist[] = {$/;" v file: +coro_methods Objects/genobject.c /^static PyMethodDef coro_methods[] = {$/;" v file: +coro_noop Lib/test/test_asyncio/test_tasks.py /^ async def coro_noop():$/;" f function:BaseTaskTests.test_bare_create_named_task +coro_repr Objects/genobject.c /^coro_repr(PyCoroObject *coro)$/;" f file: +coro_reset Lib/test/test_asyncio/test_locks.py /^ async def coro_reset():$/;" f function:BarrierTests.test_reset_barrier_while_tasks_waiting +coro_runner Lib/test/test_asyncio/test_eager_task_factory.py /^ async def coro_runner():$/;" f function:EagerTaskFactoryLoopTests.run_coro +coro_wrapper_close Objects/genobject.c /^coro_wrapper_close(PyCoroWrapper *cw, PyObject *args)$/;" f file: +coro_wrapper_dealloc Objects/genobject.c /^coro_wrapper_dealloc(PyCoroWrapper *cw)$/;" f file: +coro_wrapper_iternext Objects/genobject.c /^coro_wrapper_iternext(PyCoroWrapper *cw)$/;" f file: +coro_wrapper_methods Objects/genobject.c /^static PyMethodDef coro_wrapper_methods[] = {$/;" v file: +coro_wrapper_send Objects/genobject.c /^coro_wrapper_send(PyCoroWrapper *cw, PyObject *arg)$/;" f file: +coro_wrapper_throw Objects/genobject.c /^coro_wrapper_throw(PyCoroWrapper *cw, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +coro_wrapper_traverse Objects/genobject.c /^coro_wrapper_traverse(PyCoroWrapper *cw, visitproc visit, void *arg)$/;" f file: +corofn Lib/test/test_coroutines.py /^ async def corofn():$/;" f function:OriginTrackingTest.test_origin_tracking +corofn Lib/test/test_coroutines.py /^ async def corofn():$/;" f function:OriginTrackingTest.test_origin_tracking_warning +corofn Lib/test/test_coroutines.py /^ async def corofn():$/;" f function:OriginTrackingTest.test_unawaited_warning_when_module_broken +corofunc Lib/test/test_types.py /^ async def corofunc():$/;" f function:CoroutineTests.test_duck_functional_gen +coroutine Lib/_collections_abc.py /^coroutine = type(_coro)$/;" v +coroutine Lib/test/test_coroutines.py /^ async def coroutine():$/;" f function:CoroutineTest.test_await_15 +coroutine Lib/test/test_coroutines.py /^ async def coroutine():$/;" f function:CoroutineTest.test_func_17 +coroutine Lib/test/test_coroutines.py /^ async def coroutine():$/;" f function:CoroutineTest.test_func_18 +coroutine Lib/test/test_coroutines.py /^ async def coroutine():$/;" f function:CoroutineTest.test_func_19 +coroutine Lib/test/test_inspect.py /^ async def coroutine():$/;" f function:TestGetCoroutineState.setUp +coroutine Lib/test/test_type_params.py /^ async def coroutine[B]():$/;" f function:TypeParamsTypeVarTest.test_typevar_coroutine.get_coroutine +coroutine Lib/types.py /^def coroutine(func):$/;" f +coroutine_function Lib/test/test_asyncio/test_tasks.py /^async def coroutine_function():$/;" f +coroutine_function_example Lib/test/test_inspect.py /^async def coroutine_function_example(self):$/;" f +coroutine_origin_tracking_depth Include/cpython/pystate.h /^ int coroutine_origin_tracking_depth;$/;" m struct:_ts +correct Lib/test/test_typing.py /^ def correct(self) -> int:$/;" m class:OverrideDecoratorTests.test_property.Base +correct Lib/test/test_typing.py /^ def correct(self) -> int:$/;" m class:OverrideDecoratorTests.test_property.Child +correct_name_for_self Tools/clinic/clinic.py /^def correct_name_for_self(f) -> tuple[str, str]:$/;" f +correctly_ordered Lib/test/test_collections.py /^ def correctly_ordered(seq):$/;" f function:TestCounter.test_order_preservation +correlation Lib/statistics.py /^def correlation(x, y, \/, *, method='linear'):$/;" f +cosh_special_values Modules/cmathmodule.c /^static Py_complex cosh_special_values[7][7];$/;" v file: +cost Lib/test/test_functools.py /^ def cost(self):$/;" m class:CachedCostItem +cost Lib/test/test_functools.py /^ def cost(self):$/;" m class:CachedCostItemWithSlots +count Include/internal/pycore_gc.h /^ int count; \/* count of allocations or collections of younger$/;" m struct:gc_generation +count Include/internal/pycore_interp.h /^ long count;$/;" m struct:_is::pythreads +count Include/internal/pycore_obmalloc.h /^ uint count; } ref; \/* number of allocated blocks *\/$/;" m union:pool_header::__anon141 +count Lib/_collections_abc.py /^ def count(self, value):$/;" m class:Sequence +count Lib/collections/__init__.py /^ def count(self, item):$/;" m class:UserList +count Lib/collections/__init__.py /^ def count(self, sub, start=0, end=_sys.maxsize):$/;" m class:UserString +count Lib/lib2to3/btm_matcher.py /^ count = itertools.count()$/;" v class:BMNode +count Lib/multiprocessing/shared_memory.py /^ def count(self, value):$/;" m class:ShareableList +count Lib/statistics.py /^ def count(iterable):$/;" f function:fmean +count Lib/test/libregrtest/utils.py /^def count(n, word):$/;" f +count Lib/test/test_iter.py /^ count = 0$/;" v class:TestCase.test_ref_counting_behavior.C +count Lib/test/test_posix.py /^ count = 0$/;" v class:TestPosixDirFd +count Lib/test/test_scope.py /^ count = 0$/;" v class:ScopeTests.testLeaks.Foo +count Lib/test/test_zipfile/test_core.py /^ count = None$/;" v class:AbstractTestsWithSourceFile.test_writing_errors.BrokenFile +count Lib/tkinter/__init__.py /^ def count(self, index1, index2, *args): # new in Tk 8.5$/;" m class:Text +count Modules/_multiprocessing/semaphore.c /^ int count;$/;" m struct:__anon470 file: +count Modules/_sre/sre.h /^ Py_ssize_t count;$/;" m struct:SRE_REPEAT_T +count Modules/_sre/sre_lib.h /^ Py_ssize_t count;$/;" m struct:__anon460 +count Modules/_sre/sre_lib.h /^SRE(count)(SRE_STATE* state, const SRE_CODE* pattern, Py_ssize_t maxcount)$/;" f +count Modules/_testcapi/mem.c /^ Py_ssize_t count;$/;" m struct:__anon557 file: +count Modules/_xxinterpchannelsmodule.c /^ int64_t count;$/;" m struct:_channelqueue file: +count Modules/unicodedata_db.h /^struct reindex{int start;short count,index;};$/;" m struct:reindex +count Objects/stringlib/count.h /^STRINGLIB(count)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,$/;" f +count PCbuild/fix_encoding.py /^ count = 0$/;" v +count2 Objects/unicodeobject.c /^ int count2, count3;$/;" m struct:encoding_map file: +count3 Objects/unicodeobject.c /^ int count2, count3;$/;" m struct:encoding_map file: +countBytesDirect Modules/expat/xmlparse.c /^ XmlBigCount countBytesDirect;$/;" m struct:accounting file: +countBytesIndirect Modules/expat/xmlparse.c /^ XmlBigCount countBytesIndirect;$/;" m struct:accounting file: +countEverOpened Modules/expat/xmlparse.c /^ unsigned int countEverOpened;$/;" m struct:entity_stats file: +countOf Lib/operator.py /^def countOf(a, b):$/;" f +countStrings PC/winreg.c /^countStrings(wchar_t *data, int len)$/;" f file: +countTestCases Lib/unittest/case.py /^ def countTestCases(self):$/;" m class:TestCase +countTestCases Lib/unittest/suite.py /^ def countTestCases(self):$/;" m class:BaseTestSuite +countTestCases Lib/unittest/suite.py /^ def countTestCases(self):$/;" m class:_ErrorHolder +count_aact Tools/stringbench/stringbench.py /^def count_aact(STR):$/;" f +count_calls Lib/pstats.py /^def count_calls(callers):$/;" f +count_char Objects/stringlib/fastsearch.h /^STRINGLIB(count_char)(const STRINGLIB_CHAR *s, Py_ssize_t n,$/;" f +count_dealloc Modules/itertoolsmodule.c /^count_dealloc(countobject *lz)$/;" f file: +count_instr_recursively Lib/test/test_peepholer.py /^def count_instr_recursively(f, opname):$/;" f +count_lines Lib/idlelib/squeezer.py /^ def count_lines(self, s):$/;" m class:Squeezer +count_lines_with_wrapping Lib/idlelib/squeezer.py /^def count_lines_with_wrapping(s, linewidth=80):$/;" f +count_members Objects/structseq.c /^count_members(PyStructSequence_Desc *desc, Py_ssize_t *n_unnamed_members) {$/;" f file: +count_methods Modules/itertoolsmodule.c /^static PyMethodDef count_methods[] = {$/;" v file: +count_newlines Tools/stringbench/stringbench.py /^def count_newlines(STR):$/;" f +count_next Modules/itertoolsmodule.c /^count_next(countobject *lz)$/;" f file: +count_nextlong Modules/itertoolsmodule.c /^count_nextlong(countobject *lz)$/;" f file: +count_opcode Lib/test/pickletester.py /^def count_opcode(code, pickle):$/;" f +count_reduce Modules/itertoolsmodule.c /^count_reduce(countobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +count_repr Modules/itertoolsmodule.c /^count_repr(countobject *lz)$/;" f file: +count_run Objects/listobject.c /^count_run(MergeState *ms, PyObject **lo, PyObject **hi, int *descending)$/;" f file: +count_set_bits Lib/test/test_math.py /^def count_set_bits(n):$/;" f +count_set_bits Modules/mathmodule.c /^count_set_bits(unsigned long n)$/;" f file: +count_slots Modules/itertoolsmodule.c /^static PyType_Slot count_slots[] = {$/;" v file: +count_spec Modules/itertoolsmodule.c /^static PyType_Spec count_spec = {$/;" v file: +count_traces Lib/test/test_sys_settrace.py /^ def count_traces(self, func):$/;" m class:TestExtendedArgs +count_traverse Modules/itertoolsmodule.c /^count_traverse(countobject *lz, visitproc visit, void *arg)$/;" f file: +count_type Modules/itertoolsmodule.c /^ PyTypeObject *count_type;$/;" m struct:__anon400 file: +countcalls Lib/test/test_decorators.py /^def countcalls(counts):$/;" f +countchar Objects/stringlib/transmogrify.h /^countchar(const char *target, Py_ssize_t target_len, char c,$/;" f +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon18 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon19 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon20 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon21 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon22 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon23 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon24 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon25 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon26 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon27 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon28 +counter Include/internal/pycore_code.h /^ uint16_t counter;$/;" m struct:__anon29 +counter Lib/test/test_abc.py /^ counter = 0$/;" v class:test_factory.TestABC.test_all_new_methods_are_called.B +counter Lib/test/test_descr.py /^ counter = 0 # counts the number of instances alive$/;" v class:.test_slots.Counted +counter Lib/test/test_descr.py /^ counter = 0$/;" v class:.test_getattr_hooks.Descriptor +counter Lib/test/test_descr.py /^ counter = 0$/;" v class:ClassPropertiesAndMethods.test_metaclass.T +counter Lib/test/test_shelve.py /^ counter = 0$/;" v class:TestShelveFileBase +counter Lib/tkinter/font.py /^ counter = itertools.count(1)$/;" v class:Font +counter Modules/_collectionsmodule.c /^ Py_ssize_t counter; \/* number of items remaining for iteration *\/$/;" m struct:__anon531 file: +counter Modules/_testmultiphase.c /^ int counter;$/;" m struct:__anon423 file: +counter Python/bytecodes.c /^static uint16_t invert, counter, index, hint;$/;" v file: +countformat Python/modsupport.c /^countformat(const char *format, char endchar)$/;" f file: +counting_handler Lib/test/test_pyexpat.py /^ def counting_handler(self, text):$/;" m class:ChardataBufferTest +countobject Modules/itertoolsmodule.c /^} countobject;$/;" t typeref:struct:__anon420 file: +covariance Lib/statistics.py /^def covariance(x, y, \/):$/;" f +covariant Objects/typevarobject.c /^ bool covariant;$/;" m struct:__anon713 file: +covariant Objects/typevarobject.c /^ bool covariant;$/;" m struct:__anon715 file: +coverage_c_path Doc/conf.py /^coverage_c_path = [$/;" v +coverage_c_regexes Doc/conf.py /^coverage_c_regexes = {$/;" v +coverage_ignore_c_items Doc/conf.py /^coverage_ignore_c_items = {$/;" v +coverage_ignore_classes Doc/conf.py /^coverage_ignore_classes = [$/;" v +coverage_ignore_functions Doc/conf.py /^coverage_ignore_functions = [$/;" v +coverage_ignore_modules Doc/conf.py /^coverage_ignore_modules = [$/;" v +coverfile Lib/test/test_trace.py /^ coverfile = 'tmp.cover'$/;" v class:TestCoverageCommandLineOutput +cp Lib/test/test_functools.py /^ cp = _cp$/;" v class:TestCachedProperty.test_reuse_same_name.A +cp Lib/test/test_functools.py /^ cp = _cp$/;" v class:TestCachedProperty.test_reuse_same_name.B +cp437_table Lib/zipimport.py /^cp437_table = ($/;" v +cp932ext_decmap Modules/cjkcodecs/mappings_jp.h /^static const struct dbcs_index cp932ext_decmap[256] = {$/;" v typeref:struct:dbcs_index +cp932ext_encmap Modules/cjkcodecs/mappings_jp.h /^static const struct unim_index cp932ext_encmap[256] = {$/;" v typeref:struct:unim_index +cp949_encmap Modules/cjkcodecs/mappings_kr.h /^static const struct unim_index cp949_encmap[256] = {$/;" v typeref:struct:unim_index +cp949ext_decmap Modules/cjkcodecs/mappings_kr.h /^static const struct dbcs_index cp949ext_decmap[256] = {$/;" v typeref:struct:dbcs_index +cp950ext_decmap Modules/cjkcodecs/mappings_tw.h /^static const struct dbcs_index cp950ext_decmap[256] = {$/;" v typeref:struct:dbcs_index +cp950ext_encmap Modules/cjkcodecs/mappings_tw.h /^static const struct unim_index cp950ext_encmap[256] = {$/;" v typeref:struct:unim_index +cprt Python/getcopyright.c /^static const char cprt[] =$/;" v file: +cpu_count Lib/multiprocessing/context.py /^ def cpu_count(self):$/;" m class:BaseContext +cpython_only Lib/test/support/__init__.py /^def cpython_only(test):$/;" f +cr_await Lib/types.py /^ cr_await = gi_yieldfrom$/;" v class:_GeneratorWrapper +cr_code Lib/types.py /^ cr_code = gi_code$/;" v class:_GeneratorWrapper +cr_frame Lib/types.py /^ cr_frame = gi_frame$/;" v class:_GeneratorWrapper +cr_getcode Objects/genobject.c /^cr_getcode(PyCoroObject *coro, void *Py_UNUSED(ignored))$/;" f file: +cr_getframe Objects/genobject.c /^cr_getframe(PyCoroObject *coro, void *Py_UNUSED(ignored))$/;" f file: +cr_getrunning Objects/genobject.c /^cr_getrunning(PyCoroObject *coro, void *Py_UNUSED(ignored))$/;" f file: +cr_getsuspended Objects/genobject.c /^cr_getsuspended(PyCoroObject *coro, void *Py_UNUSED(ignored))$/;" f file: +cr_running Lib/types.py /^ cr_running = gi_running$/;" v class:_GeneratorWrapper +cram Lib/pydoc.py /^def cram(text, maxlen):$/;" f +crash Lib/test/test_asyncio/test_timeouts.py /^ async def crash():$/;" f function:TimeoutTests.test_foreign_exception_on_timeout +crash_after Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_after(t):$/;" f function:TestTaskGroup.test_taskgroup_13 +crash_after Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_after(t):$/;" f function:TestTaskGroup.test_taskgroup_14 +crash_no_current_thread Modules/_testcapimodule.c /^crash_no_current_thread(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +crash_soon Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_soon():$/;" f function:TestTaskGroup._test_taskgroup_21 +crash_soon Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_soon():$/;" f function:TestTaskGroup.test_taskgroup_15 +crash_soon Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_soon():$/;" f function:TestTaskGroup.test_taskgroup_16 +crash_soon Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_soon():$/;" f function:TestTaskGroup.test_taskgroup_19 +crash_soon Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_soon():$/;" f function:TestTaskGroup.test_taskgroup_20 +crash_soon Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_soon():$/;" f function:TestTaskGroup.test_taskgroup_20a +crash_soon Lib/test/test_asyncio/test_taskgroups.py /^ async def crash_soon():$/;" f function:TestTaskGroup.test_taskgroup_21a +crasher Lib/test/test_json/test_dump.py /^ def crasher(obj):$/;" f function:TestDump.test_encode_mutated +crasher Lib/test/test_unittest/testmock/testpatch.py /^ def crasher():$/;" f function:PatchTest.test_new_callable_failure +crasher Lib/test/test_unittest/testmock/testpatch.py /^ def crasher():$/;" f function:PatchTest.test_patch_multiple_new_callable_failure +crater Lib/test/test_peepholer.py /^ def crater():$/;" f function:TestTranforms.test_folding_of_tuples_of_constants +crawl_delay Lib/test/test_robotparser.py /^ crawl_delay = 1$/;" v class:DefaultEntryTest +crawl_delay Lib/test/test_robotparser.py /^ crawl_delay = 3$/;" v class:CrawlDelayAndRequestRateTest +crawl_delay Lib/test/test_robotparser.py /^ crawl_delay = 3$/;" v class:InvalidRequestRateTest +crawl_delay Lib/test/test_robotparser.py /^ crawl_delay = None$/;" v class:BaseRequestRateTest +crawl_delay Lib/urllib/robotparser.py /^ def crawl_delay(self, useragent):$/;" m class:RobotFileParser +crc32 Lib/zipfile/__init__.py /^ crc32 = binascii.crc32$/;" v +crc32 Lib/zipfile/__init__.py /^ crc32 = zlib.crc32$/;" v +crc32 Lib/zipfile/__init__.py /^ def crc32(ch, crc):$/;" f function:_ZipDecrypter +crc_32_tab Modules/binascii.c /^static const unsigned int crc_32_tab[256] = {$/;" v file: +crctab_hqx Modules/binascii.c /^static const unsigned short crctab_hqx[256] = {$/;" v file: +create Lib/imaplib.py /^ def create(self, mailbox):$/;" m class:IMAP4 +create Lib/msilib/__init__.py /^ def create(self, db):$/;" m class:Table +create Lib/multiprocessing/managers.py /^ def create(self, c, typeid, \/, *args, **kwargs):$/;" m class:SyncManager.SharedMemoryServer +create Lib/multiprocessing/managers.py /^ def create(self, c, typeid, \/, *args, **kwds):$/;" m class:Server +create Lib/test/support/interpreters.py /^def create(*, isolated=True):$/;" f +create Lib/test/test_asyncio/test_tasks.py /^ async def create():$/;" f function:BaseTaskTests.test_cancel_gather_1 +create Lib/test/test_importlib/_path.py /^def create(content: Union[str, bytes, FilesSpec], path):$/;" f +create Lib/test/test_importlib/resources/_path.py /^def create(content: Union[str, bytes, FilesSpec], path):$/;" f +create Lib/test/test_site.py /^ def create(self):$/;" m class:PthFile +create Lib/test/test_tkinter/test_images.py /^ def create(self):$/;" m class:PhotoImageTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ButtonTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:CanvasTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:CheckbuttonTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:EntryTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:FrameTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:LabelFrameTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:LabelTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ListboxTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:MenuTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:MenubuttonTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:MessageTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:PanedWindowTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:RadiobuttonTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ScaleTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ScrollbarTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:SpinboxTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:TextTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ToplevelTest +create Lib/test/test_tkinter/test_widgets.py /^ def create(self, default='b', values=('a', 'b', 'c'), **kwargs):$/;" m class:OptionMenuTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ButtonTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:CheckbuttonTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ComboboxTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:EntryTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:FrameTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:LabelFrameTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:LabelTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:MenubuttonTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:NotebookTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:PanedWindowTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ProgressbarTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:RadiobuttonTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ScaleTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:ScrollbarTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:SeparatorTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:SizegripTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:SpinboxTest +create Lib/test/test_ttk/test_widgets.py /^ def create(self, **kwargs):$/;" m class:TreeviewTest +create Lib/venv/__init__.py /^ def create(self, env_dir):$/;" m class:EnvBuilder +create Lib/venv/__init__.py /^def create(env_dir, system_site_packages=False, clear=False,$/;" f +create Modules/_tkinter.c /^ int create;$/;" m struct:CommandEvent file: +create2 Lib/test/test_tkinter/test_geometry_managers.py /^ def create2(self):$/;" m class:PackTest +create2 Lib/test/test_tkinter/test_geometry_managers.py /^ def create2(self):$/;" m class:PlaceTest +create2 Lib/test/test_tkinter/test_widgets.py /^ def create2(self):$/;" m class:PanedWindowTest +createAndSendFDs Lib/test/test_socket.py /^ def createAndSendFDs(self, n):$/;" m class:SCMRightsTest +createAttribute Lib/xml/dom/minidom.py /^ def createAttribute(self, qName):$/;" m class:Document +createAttributeNS Lib/xml/dom/minidom.py /^ def createAttributeNS(self, namespaceURI, qualifiedName):$/;" m class:Document +createCDATASection Lib/xml/dom/minidom.py /^ def createCDATASection(self, data):$/;" m class:Document +createComment Lib/xml/dom/minidom.py /^ def createComment(self, data):$/;" m class:Document +createDOMBuilder Lib/xml/dom/xmlbuilder.py /^ def createDOMBuilder(self, mode, schemaType):$/;" m class:DOMImplementationLS +createDOMInputSource Lib/xml/dom/xmlbuilder.py /^ def createDOMInputSource(self):$/;" m class:DOMImplementationLS +createDOMWriter Lib/xml/dom/xmlbuilder.py /^ def createDOMWriter(self):$/;" m class:DOMImplementationLS +createDocument Lib/xml/dom/minidom.py /^ def createDocument(self, namespaceURI, qualifiedName, doctype):$/;" m class:DOMImplementation +createDocumentFragment Lib/xml/dom/minidom.py /^ def createDocumentFragment(self):$/;" m class:Document +createDocumentType Lib/xml/dom/minidom.py /^ def createDocumentType(self, qualifiedName, publicId, systemId):$/;" m class:DOMImplementation +createElement Lib/xml/dom/minidom.py /^ def createElement(self, tagName):$/;" m class:Document +createElementNS Lib/xml/dom/minidom.py /^ def createElementNS(self, namespaceURI, qualifiedName):$/;" m class:Document +createLock Lib/logging/__init__.py /^ def createLock(self):$/;" m class:Handler +createLock Lib/logging/__init__.py /^ def createLock(self):$/;" m class:NullHandler +createMessage Lib/test/test_mailbox.py /^ def createMessage(self, dir, mbox=False):$/;" m class:MaildirTestCase +createNewTempFile Lib/test/test_urllib.py /^ def createNewTempFile(self, data=b""):$/;" m class:urlretrieve_FileTests +createParser Lib/xml/dom/expatbuilder.py /^ def createParser(self):$/;" m class:ExpatBuilder +createParser Lib/xml/dom/expatbuilder.py /^ def createParser(self):$/;" m class:Namespaces +createProcessingInstruction Lib/xml/dom/minidom.py /^ def createProcessingInstruction(self, target, data):$/;" m class:Document +createSocket Lib/logging/handlers.py /^ def createSocket(self):$/;" m class:SocketHandler +createSocket Lib/logging/handlers.py /^ def createSocket(self):$/;" m class:SysLogHandler +createTempFile Lib/test/test_bz2.py /^ def createTempFile(self, streams=1, suffix=b""):$/;" m class:BZ2FileTest +createTests Lib/unittest/main.py /^ def createTests(self, from_discovery=False, Loader=None):$/;" m class:TestProgram +createTextNode Lib/xml/dom/minidom.py /^ def createTextNode(self, data):$/;" m class:Document +createWidgets Tools/unittestgui/unittestgui.py /^ def createWidgets(self):$/;" m class:TkTestRunner +create_action_buttons Lib/idlelib/configdialog.py /^ def create_action_buttons(self):$/;" m class:ConfigDialog +create_alg Lib/test/test_socket.py /^ def create_alg(self, typ, name):$/;" m class:LinuxKernelCryptoAPI +create_and_remove_directory Lib/test/test_gzip.py /^def create_and_remove_directory(directory):$/;" f +create_arc Lib/tkinter/__init__.py /^ def create_arc(self, *args, **kw):$/;" m class:Canvas +create_archive Lib/zipapp.py /^def create_archive(source, target=None, interpreter=None, main=None,$/;" f +create_args Lib/test/test_os.py /^ def create_args(self, *, with_env=False, use_bytes=False):$/;" m class:SpawnTests +create_autospec Lib/unittest/mock.py /^def create_autospec(spec, spec_set=False, instance=False, _parent=None,$/;" f +create_backup Tools/c-analyzer/c_common/fsutil.py /^def create_backup(old, backup=None):$/;" f +create_bad_app Lib/test/test_wsgiref.py /^ def create_bad_app(status):$/;" f function:IntegrationTests.test_status_validation_errors +create_bitmap Lib/tkinter/__init__.py /^ def create_bitmap(self, *args, **kw):$/;" m class:Canvas +create_bound_method Lib/test/test_weakref.py /^def create_bound_method():$/;" f +create_builtin Python/import.c /^create_builtin(PyThreadState *tstate, PyObject *name, PyObject *spec)$/;" f file: +create_callback_context Modules/_sqlite/connection.c /^create_callback_context(PyTypeObject *cls, PyObject *callable)$/;" f file: +create_cancelled_error Modules/_asynciomodule.c /^create_cancelled_error(asyncio_state *state, FutureObj *fut)$/;" f file: +create_cfunction Modules/_testcapimodule.c /^create_cfunction(PyObject *self, PyObject *args)$/;" f file: +create_channel Lib/test/support/interpreters.py /^def create_channel():$/;" f +create_class Lib/test/test_ctypes/test_structures.py /^ def create_class(length):$/;" f function:StructureTestCase.test_huge_field_name +create_closure Lib/test/test_code.py /^ def create_closure(__class__):$/;" f function:CodeTest.test_closure_injection +create_code Lib/test/test_compileall.py /^ def create_code(self, docstring=False, assertion=False):$/;" m class:HardlinkDedupTestsBase +create_command_buttons Lib/idlelib/grep.py /^ def create_command_buttons(self):$/;" m class:GrepDialog +create_command_buttons Lib/idlelib/replace.py /^ def create_command_buttons(self):$/;" m class:ReplaceDialog +create_command_buttons Lib/idlelib/searchbase.py /^ def create_command_buttons(self):$/;" m class:SearchDialogBase +create_configuration Lib/venv/__init__.py /^ def create_configuration(self, context):$/;" m class:EnvBuilder +create_connection Lib/asyncio/base_events.py /^ async def create_connection($/;" m class:BaseEventLoop +create_connection Lib/asyncio/events.py /^ async def create_connection($/;" m class:AbstractEventLoop +create_connection Lib/socket.py /^def create_connection(address, timeout=_GLOBAL_DEFAULT_TIMEOUT,$/;" f +create_connection Lib/test/mock_socket.py /^def create_connection(address, timeout=socket_module._GLOBAL_DEFAULT_TIMEOUT,$/;" f +create_connection Lib/test/test_httplib.py /^ def create_connection(address, timeout=None, source_address=None):$/;" f function:TunnelTests._create_connection +create_connection Lib/test/test_httplib.py /^ def create_connection(self, *pos, **kw):$/;" m class:FakeSocketHTTPConnection +create_connection Lib/test/test_nntplib.py /^ def create_connection(address, timeout):$/;" m class:MockSocketTests.check_constructor_error_conditions.mock_socket_module +create_contents Lib/test/test_venv.py /^ def create_contents(self, paths, filename):$/;" m class:BasicTest +create_converter Lib/test/test_time.py /^ def create_converter(self, sec_to_unit):$/;" m class:TestOldPyTime +create_data Lib/test/pickletester.py /^def create_data():$/;" f +create_datagram_endpoint Lib/asyncio/base_events.py /^ async def create_datagram_endpoint(self, protocol_factory,$/;" m class:BaseEventLoop +create_datagram_endpoint Lib/asyncio/events.py /^ async def create_datagram_endpoint(self, protocol_factory,$/;" m class:AbstractEventLoop +create_decimal Lib/_pydecimal.py /^ def create_decimal(self, num='0'):$/;" m class:Context +create_decimal_converter Lib/test/test_time.py /^ def create_decimal_converter(self, denominator):$/;" m class:TestCPyTime +create_decimal_from_float Lib/_pydecimal.py /^ def create_decimal_from_float(self, f):$/;" m class:Context +create_default_context Lib/ssl.py /^def create_default_context(purpose=Purpose.SERVER_AUTH, *, cafile=None,$/;" f +create_dict Lib/_threading_local.py /^ def create_dict(self):$/;" m class:_localimpl +create_dict Tools/build/parse_html5_entities.py /^def create_dict(entities):$/;" f +create_dict_rule Lib/tomllib/_parser.py /^def create_dict_rule(src: str, pos: Pos, out: Output) -> tuple[Pos, Key]:$/;" f +create_doc_with_doctype Lib/test/test_minidom.py /^def create_doc_with_doctype():$/;" f +create_doc_without_doctype Lib/test/test_minidom.py /^def create_doc_without_doctype(doctype=None):$/;" f +create_dynamic_class Lib/test/pickletester.py /^def create_dynamic_class(name, bases):$/;" f +create_eager_task_factory Lib/asyncio/tasks.py /^def create_eager_task_factory(custom_task_constructor):$/;" f +create_elementiter Modules/_elementtree.c /^create_elementiter(elementtreestate *st, ElementObject *self, PyObject *tag,$/;" f file: +create_empty_file Lib/test/support/os_helper.py /^def create_empty_file(filename):$/;" f +create_entity_ref_nodes Lib/xml/dom/xmlbuilder.py /^ create_entity_ref_nodes = True$/;" v class:Options +create_entries Lib/idlelib/grep.py /^ def create_entries(self):$/;" m class:GrepDialog +create_entries Lib/idlelib/replace.py /^ def create_entries(self):$/;" m class:ReplaceDialog +create_entries Lib/idlelib/searchbase.py /^ def create_entries(self):$/;" m class:SearchDialogBase +create_event_loop Lib/test/test_asyncio/test_events.py /^ def create_event_loop(self):$/;" m class:SubprocessTestsMixin.UnixEventLoopTestsMixin.EPollEventLoopTests +create_event_loop Lib/test/test_asyncio/test_events.py /^ def create_event_loop(self):$/;" m class:SubprocessTestsMixin.UnixEventLoopTestsMixin.KqueueEventLoopTests +create_event_loop Lib/test/test_asyncio/test_events.py /^ def create_event_loop(self):$/;" m class:SubprocessTestsMixin.UnixEventLoopTestsMixin.PollEventLoopTests +create_event_loop Lib/test/test_asyncio/test_events.py /^ def create_event_loop(self):$/;" m class:SubprocessTestsMixin.ProactorEventLoopTests +create_event_loop Lib/test/test_asyncio/test_events.py /^ def create_event_loop(self):$/;" m class:SubprocessTestsMixin.SelectEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sendfile.py /^ def create_event_loop(self):$/;" m class:SendfileTestsBase.ProactorEventLoopTests.EPollEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sendfile.py /^ def create_event_loop(self):$/;" m class:SendfileTestsBase.ProactorEventLoopTests.KqueueEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sendfile.py /^ def create_event_loop(self):$/;" m class:SendfileTestsBase.ProactorEventLoopTests.PollEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sendfile.py /^ def create_event_loop(self):$/;" m class:SendfileTestsBase.ProactorEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sendfile.py /^ def create_event_loop(self):$/;" m class:SendfileTestsBase.SelectEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sendfile.py /^ def create_event_loop(self):$/;" m class:SendfileBase +create_event_loop Lib/test/test_asyncio/test_sock_lowlevel.py /^ def create_event_loop(self):$/;" m class:BaseSockTestsMixin.ProactorEventLoopTests.EPollEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sock_lowlevel.py /^ def create_event_loop(self):$/;" m class:BaseSockTestsMixin.ProactorEventLoopTests.KqueueEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sock_lowlevel.py /^ def create_event_loop(self):$/;" m class:BaseSockTestsMixin.ProactorEventLoopTests.PollEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sock_lowlevel.py /^ def create_event_loop(self):$/;" m class:BaseSockTestsMixin.ProactorEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sock_lowlevel.py /^ def create_event_loop(self):$/;" m class:BaseSockTestsMixin.SelectEventLoopTests +create_event_loop Lib/test/test_asyncio/test_sock_lowlevel.py /^ def create_event_loop(self):$/;" m class:BaseSockTestsMixin +create_exception_group_class Objects/exceptions.c /^create_exception_group_class(void) {$/;" f file: +create_executor_tests Lib/test/test_concurrent_futures/util.py /^def create_executor_tests(remote_globals, mixin, bases=(BaseTestCase,),$/;" f +create_extension_frame Lib/idlelib/configdialog.py /^ def create_extension_frame(self, ext_name):$/;" m class:ExtPage +create_extra Lib/idlelib/query.py /^ def create_extra(self): pass # Override to add widgets.$/;" m class:Query +create_extra Lib/idlelib/query.py /^ def create_extra(self):$/;" m class:CustomRun +create_extra Lib/idlelib/query.py /^ def create_extra(self):$/;" m class:HelpSource +create_extra Modules/_elementtree.c /^create_extra(ElementObject* self, PyObject* attrib)$/;" f +create_fake_proxy_handler Lib/test/test_urllib2_localnet.py /^ def create_fake_proxy_handler(*args, **kwargs):$/;" f function:ProxyAuthTests.setUp +create_file Lib/test/audiotests.py /^ def create_file(self, testfile):$/;" m class:AudioWriteTests +create_file Lib/test/test_genericpath.py /^def create_file(filename, data=b'foo'):$/;" f +create_file Lib/test/test_os.py /^ def create_file(self, name="file.txt"):$/;" m class:TestScandir +create_file Lib/test/test_os.py /^def create_file(filename, content=b'content'):$/;" f +create_file_entry Lib/test/test_os.py /^ def create_file_entry(self, name='file.txt'):$/;" m class:TestScandir +create_files Lib/test/test_clinic.py /^ def create_files(files, srcdir, code):$/;" f function:ClinicExternalTest.test_cli_make +create_filter Python/_warnings.c /^create_filter(PyObject *category, PyObject *action_str, const char *modname)$/;" f file: +create_frame_help Lib/idlelib/configdialog.py /^ def create_frame_help(self):$/;" m class:HelpFrame +create_function Lib/test/test_weakref.py /^def create_function():$/;" f +create_future Lib/asyncio/base_events.py /^ def create_future(self):$/;" m class:BaseEventLoop +create_future Lib/asyncio/events.py /^ def create_future(self):$/;" m class:AbstractEventLoop +create_future Lib/test/test_concurrent_futures/util.py /^def create_future(state=PENDING, exception=None, result=None):$/;" f +create_gil Python/ceval_gil.c /^static void create_gil(struct _gil_runtime_state *gil)$/;" f file: +create_gnu_header Lib/tarfile.py /^ def create_gnu_header(self, info, encoding, errors):$/;" m class:TarInfo +create_if_needed Lib/venv/__init__.py /^ def create_if_needed(d):$/;" f function:EnvBuilder.ensure_directories +create_image Lib/tkinter/__init__.py /^ def create_image(self, *args, **kw):$/;" m class:Canvas +create_init Lib/test/test_pkgutil.py /^ def create_init(self, pkgname):$/;" m class:ExtendPathTests +create_invalid Lib/test/test_csv.py /^ def create_invalid(field_name, value):$/;" f function:TestDialectValidity.test_invalid_chars +create_line Lib/tkinter/__init__.py /^ def create_line(self, *args, **kw):$/;" m class:Canvas +create_list_rule Lib/tomllib/_parser.py /^def create_list_rule(src: str, pos: Pos, out: Output) -> tuple[Pos, Key]:$/;" f +create_memoryview Lib/multiprocessing/heap.py /^ def create_memoryview(self):$/;" m class:BufferWrapper +create_mock Lib/test/test_importlib/import_/test_caching.py /^ def create_mock(self, *names, return_=None):$/;" m class:ImportlibUseCache +create_mock Lib/unittest/mock.py /^ def create_mock(self):$/;" m class:MagicProxy +create_model Lib/test/test_typing.py /^ def create_model(*, frozen: bool = False, kw_only: bool = True):$/;" f function:DataclassTransformTests.test_decorator +create_module Lib/importlib/_abc.py /^ def create_module(self, spec):$/;" m class:Loader +create_module Lib/importlib/_bootstrap.py /^ def create_module(spec):$/;" m class:BuiltinImporter +create_module Lib/importlib/_bootstrap.py /^ def create_module(spec):$/;" m class:FrozenImporter +create_module Lib/importlib/_bootstrap_external.py /^ def create_module(self, spec):$/;" m class:ExtensionFileLoader +create_module Lib/importlib/_bootstrap_external.py /^ def create_module(self, spec):$/;" m class:NamespaceLoader +create_module Lib/importlib/_bootstrap_external.py /^ def create_module(self, spec):$/;" m class:_LoaderBasics +create_module Lib/importlib/util.py /^ def create_module(self, spec):$/;" m class:LazyLoader +create_module Lib/test/test_import/__init__.py /^ def create_module(self, mod, contents, ext=".py"):$/;" m class:ImportTracebackTests +create_module Lib/test/test_importlib/import_/test___loader__.py /^ def create_module(self, spec):$/;" m class:SpecLoaderMock +create_module Lib/test/test_importlib/import_/test_api.py /^ def create_module(spec):$/;" m class:BadSpecFinderLoader +create_module Lib/test/test_importlib/test_spec.py /^ def create_module(self, spec):$/;" m class:TestLoader +create_module Lib/test/test_importlib/test_util.py /^ def create_module(self, spec):$/;" m class:ModuleFromSpecTests.test_create_module.Loader +create_module Lib/test/test_importlib/test_util.py /^ def create_module(self, spec):$/;" m class:ModuleFromSpecTests.test_create_module_returns_None.Loader +create_module Lib/test/test_importlib/util.py /^ def create_module(self, spec):$/;" m class:mock_spec +create_module Lib/test/test_pkgutil.py /^ def create_module(self, spec):$/;" m class:PkgutilPEP302Tests.MyTestLoader +create_module Lib/test/test_pkgutil.py /^ def create_module(self, name, contents):$/;" m class:NestedNamespacePackageTest +create_modules Lib/test/test_bdb.py /^def create_modules(modules):$/;" f +create_modules Lib/test/test_importlib/util.py /^def create_modules(*names):$/;" f +create_nested_eg Lib/test/test_exception_group.py /^def create_nested_eg():$/;" f +create_nested_fstring Lib/test/test_fstring.py /^ def create_nested_fstring(n):$/;" f function:.test_fstring_nested_too_deeply +create_new Lib/idlelib/configdialog.py /^ def create_new(self, new_theme_name):$/;" m class:HighPage +create_new_element Modules/_elementtree.c /^create_new_element(elementtreestate *st, PyObject *tag, PyObject *attrib)$/;" f +create_new_key_set Lib/idlelib/configdialog.py /^ def create_new_key_set(self, new_key_set_name):$/;" m class:KeysPage +create_nonempty_doctype Lib/test/test_minidom.py /^def create_nonempty_doctype():$/;" f +create_ns Lib/test/test_runpy.py /^ def create_ns(init_globals):$/;" f function:.test_run_name +create_ns Lib/test/test_runpy.py /^ def create_ns(init_globals):$/;" f function:ExecutionLayerTestCase.test_run_code +create_ns Lib/test/test_runpy.py /^ def create_ns(init_globals):$/;" f function:ExecutionLayerTestCase.test_run_module_code +create_ns Lib/test/test_runpy.py /^ def create_ns(init_globals):$/;" f function:RunModuleTestCase._check_module +create_ns Lib/test/test_runpy.py /^ def create_ns(init_globals):$/;" f function:RunModuleTestCase._check_package +create_ns Lib/test/test_runpy.py /^ def create_ns(init_globals):$/;" f function:RunPathTestCase._check_script +create_option_buttons Lib/idlelib/searchbase.py /^ def create_option_buttons(self):$/;" m class:SearchDialogBase +create_other_buttons Lib/idlelib/grep.py /^ def create_other_buttons(self):$/;" m class:GrepDialog +create_other_buttons Lib/idlelib/searchbase.py /^ def create_other_buttons(self):$/;" m class:SearchDialogBase +create_oval Lib/tkinter/__init__.py /^ def create_oval(self, *args, **kw):$/;" m class:Canvas +create_package Lib/test/test_importlib/resources/util.py /^def create_package(file=None, path=None, is_package=True, contents=()):$/;" f +create_package Lib/test/test_modulefinder.py /^def create_package(test_dir, source):$/;" f +create_package_from_loader Lib/test/test_importlib/resources/util.py /^def create_package_from_loader(loader, is_package=True):$/;" f +create_page_extensions Lib/idlelib/configdialog.py /^ def create_page_extensions(self):$/;" m class:ExtPage +create_page_font Lib/idlelib/configdialog.py /^ def create_page_font(self):$/;" m class:FontPage +create_page_highlight Lib/idlelib/configdialog.py /^ def create_page_highlight(self):$/;" m class:HighPage +create_page_keys Lib/idlelib/configdialog.py /^ def create_page_keys(self):$/;" m class:KeysPage +create_page_shed Lib/idlelib/configdialog.py /^ def create_page_shed(self):$/;" m class:ShedPage +create_page_windows Lib/idlelib/configdialog.py /^ def create_page_windows(self):$/;" m class:WinPage +create_parser Lib/xml/sax/expatreader.py /^def create_parser(*args, **kwargs):$/;" f +create_pax_global_header Lib/tarfile.py /^ def create_pax_global_header(cls, pax_headers):$/;" m class:TarInfo +create_pax_header Lib/tarfile.py /^ def create_pax_header(self, info, encoding):$/;" m class:TarInfo +create_pipe Lib/test/test_capi/test_misc.py /^ def create_pipe():$/;" f function:TestPendingCalls.test_isolated_subinterpreter +create_pipe_connection Lib/asyncio/windows_events.py /^ async def create_pipe_connection(self, protocol_factory, address):$/;" m class:ProactorEventLoop +create_policy Lib/test/test_asyncio/test_unix_events.py /^ def create_policy(self):$/;" m class:PolicyTests +create_polygon Lib/tkinter/__init__.py /^ def create_polygon(self, *args, **kw):$/;" m class:Canvas +create_printer Lib/test/test_embed.py /^ def create_printer(self, fd):$/;" m class:StdPrinterTests +create_readonly_file Lib/test/test_argparse.py /^ def create_readonly_file(self, filename):$/;" m class:TempDirMixin +create_rectangle Lib/tkinter/__init__.py /^ def create_rectangle(self, *args, **kw):$/;" m class:Canvas +create_regex Tools/clinic/clinic.py /^def create_regex(before, after, word=True, whole_line=True):$/;" f +create_registry_data Lib/test/test_launcher.py /^def create_registry_data(root, data):$/;" f +create_response Lib/test/_test_multiprocessing.py /^ def create_response(self, message):$/;" m class:ChallengeResponseTest +create_server Lib/asyncio/base_events.py /^ async def create_server($/;" m class:BaseEventLoop +create_server Lib/asyncio/events.py /^ async def create_server($/;" m class:AbstractEventLoop +create_server Lib/socket.py /^def create_server(address, *, family=AF_INET, backlog=None, reuse_port=False,$/;" f +create_server_multiple_hosts Lib/test/test_asyncio/test_events.py /^ def create_server_multiple_hosts(self, family, hosts, mock_sock):$/;" m class:EventLoopTestsMixin +create_simple_eg Lib/test/test_exception_group.py /^def create_simple_eg():$/;" f +create_snapshots Lib/test/test_tracemalloc.py /^def create_snapshots():$/;" f +create_socket Lib/test/support/asyncore.py /^ def create_socket(self, family=socket.AF_INET, type=socket.SOCK_STREAM):$/;" m class:dispatcher +create_sorted_instances Lib/test/test_compare.py /^ def create_sorted_instances(self, class_, values):$/;" m class:ComparisonFullTest +create_source Lib/test/test_importlib/source/test_source_encoding.py /^ def create_source(self, encoding):$/;" m class:EncodingTest +create_ssl_context Lib/test/test_imaplib.py /^ def create_ssl_context(self):$/;" m class:RemoteIMAP_SSLTest +create_stats Lib/cProfile.py /^ def create_stats(self):$/;" m class:Profile +create_stats Lib/profile.py /^ def create_stats(self):$/;" m class:Profile +create_stdio Python/pylifecycle.c /^create_stdio(const PyConfig *config, PyObject* io,$/;" f file: +create_stdlib_zip Tools/wasm/wasm_assets.py /^def create_stdlib_zip($/;" f +create_string_buffer Lib/ctypes/__init__.py /^def create_string_buffer(init, size=None):$/;" f +create_submodule Lib/test/test_pkgutil.py /^ def create_submodule(self, dirname, pkgname, submodule_name, value):$/;" m class:ExtendPathTests +create_subprocess_exec Lib/asyncio/subprocess.py /^async def create_subprocess_exec(program, *args, stdin=None, stdout=None,$/;" f +create_subprocess_shell Lib/asyncio/subprocess.py /^async def create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None,$/;" f +create_tag_expression Lib/idlelib/parenmatch.py /^ def create_tag_expression(self, indices):$/;" m class:ParenMatch +create_tag_opener Lib/idlelib/parenmatch.py /^ def create_tag_opener(self, indices):$/;" m class:ParenMatch +create_tag_parens Lib/idlelib/parenmatch.py /^ def create_tag_parens(self, indices):$/;" m class:ParenMatch +create_task Lib/asyncio/base_events.py /^ def create_task(self, coro, *, name=None, context=None):$/;" m class:BaseEventLoop +create_task Lib/asyncio/events.py /^ def create_task(self, coro, *, name=None, context=None):$/;" m class:AbstractEventLoop +create_task Lib/asyncio/taskgroups.py /^ def create_task(self, coro, *, name=None, context=None):$/;" m class:TaskGroup +create_task Lib/asyncio/tasks.py /^def create_task(coro, *, name=None, context=None):$/;" f +create_task Lib/test/test_asyncio/test_base_events.py /^ def create_task(self, coro):$/;" m class:BaseEventLoopTests.test_create_task.EventLoop +create_temp_dir Lib/test/libregrtest/main.py /^ def create_temp_dir(self):$/;" m class:Regrtest +create_test Lib/test/test_regrtest.py /^ def create_test(self, name=None, code=None):$/;" m class:BaseTestCase +create_text Lib/tkinter/__init__.py /^ def create_text(self, *args, **kw):$/;" m class:Canvas +create_thread Lib/test/test_capi/test_misc.py /^ def create_thread(self, worker_tids):$/;" m class:TestPendingCalls.PendingTask +create_timezone Modules/_datetimemodule.c /^create_timezone(PyObject *offset, PyObject *name)$/;" f file: +create_transport Lib/test/test_asyncio/test_selector_events.py /^ def create_transport(self):$/;" m class:SelectorTransportTests +create_transport Lib/test/test_asyncio/test_subprocess.py /^ def create_transport(self, waiter=None):$/;" m class:SubprocessTransportTests +create_type_from_repeated_slots Modules/_testcapi/heaptype.c /^create_type_from_repeated_slots(PyObject *self, PyObject *variant_obj)$/;" f file: +create_unicode_buffer Lib/ctypes/__init__.py /^def create_unicode_buffer(init, size=None):$/;" f +create_unix_connection Lib/asyncio/events.py /^ async def create_unix_connection($/;" m class:AbstractEventLoop +create_unix_connection Lib/asyncio/unix_events.py /^ async def create_unix_connection($/;" m class:_UnixSelectorEventLoop +create_unix_domain_name Lib/test/support/socket_helper.py /^def create_unix_domain_name():$/;" f +create_unix_server Lib/asyncio/events.py /^ async def create_unix_server($/;" m class:AbstractEventLoop +create_unix_server Lib/asyncio/unix_events.py /^ async def create_unix_server($/;" m class:_UnixSelectorEventLoop +create_ustar_header Lib/tarfile.py /^ def create_ustar_header(self, info, encoding, errors):$/;" m class:TarInfo +create_watcher Lib/test/test_asyncio/test_unix_events.py /^ def create_watcher(self):$/;" m class:FastChildWatcherTests +create_watcher Lib/test/test_asyncio/test_unix_events.py /^ def create_watcher(self):$/;" m class:SafeChildWatcherTests +create_widgets Lib/idlelib/config_key.py /^ def create_widgets(self):$/;" m class:GetKeysFrame +create_widgets Lib/idlelib/configdialog.py /^ def create_widgets(self):$/;" m class:ConfigDialog +create_widgets Lib/idlelib/help_about.py /^ def create_widgets(self):$/;" m class:AboutDialog +create_widgets Lib/idlelib/query.py /^ def create_widgets(self, ok_text='OK'): # Do not replace.$/;" m class:Query +create_widgets Lib/idlelib/search.py /^ def create_widgets(self):$/;" m class:SearchDialog +create_widgets Lib/idlelib/searchbase.py /^ def create_widgets(self):$/;" m class:SearchDialogBase +create_window Lib/tkinter/__init__.py /^ def create_window(self, *args, **kw):$/;" m class:Canvas +create_window_function Modules/_sqlite/clinic/connection.c.h /^create_window_function(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +create_window_function_impl Modules/_sqlite/connection.c /^create_window_function_impl(pysqlite_Connection *self, PyTypeObject *cls,$/;" f file: +create_writable_file Lib/test/test_argparse.py /^ def create_writable_file(self, filename):$/;" m class:TempDirMixin +created Modules/_io/fileio.c /^ unsigned int created : 1;$/;" m struct:__anon431 file: +created Modules/_io/winconsoleio.c /^ unsigned int created : 1;$/;" m struct:__anon432 file: +created_cursors Modules/_sqlite/connection.h /^ int created_cursors;$/;" m struct:__anon359 +createfunc_nonmodule Modules/_testmultiphase.c /^createfunc_nonmodule(PyObject *spec, PyModuleDef *def)$/;" f file: +createfunc_noop Modules/_testmultiphase.c /^createfunc_noop(PyObject *spec, PyModuleDef *def)$/;" f file: +createfunc_null Modules/_testmultiphase.c /^createfunc_null(PyObject *spec, PyModuleDef *def)$/;" f file: +createfunc_raise Modules/_testmultiphase.c /^createfunc_raise(PyObject *spec, PyModuleDef *def)$/;" f file: +createfunc_unreported_exception Modules/_testmultiphase.c /^createfunc_unreported_exception(PyObject *spec, PyModuleDef *def)$/;" f file: +createmenubar Lib/idlelib/editor.py /^ def createmenubar(self):$/;" m class:EditorWindow +creatorFunc Lib/test/time_hashlib.py /^ creatorFunc = getattr(hashlib, hName)$/;" v +creatorFunc Lib/test/time_hashlib.py /^def creatorFunc():$/;" f +credit_given Tools/patchcheck/patchcheck.py /^def credit_given(file_paths):$/;" f +creturn_callback Modules/_lsprof.c /^PyObject* creturn_callback(ProfilerObject* self, PyObject *const *args, Py_ssize_t size)$/;" f +crimson Lib/test/test_enum.py /^ crimson = red$/;" v class:TestInternals.test_auto_with_aliases.Color +critical Lib/logging/__init__.py /^ def critical(self, msg, *args, **kwargs):$/;" m class:Logger +critical Lib/logging/__init__.py /^ def critical(self, msg, *args, **kwargs):$/;" m class:LoggerAdapter +critical Lib/logging/__init__.py /^def critical(msg, *args, **kwargs):$/;" f +crossinterpdatafunc Include/cpython/pystate.h /^typedef int (*crossinterpdatafunc)(PyThreadState *tstate, PyObject *,$/;" t +crt3 Modules/_decimal/libmpdec/crt.c /^crt3(mpd_uint_t *x1, mpd_uint_t *x2, mpd_uint_t *x3, mpd_size_t rsize)$/;" f +crypt Lib/crypt.py /^def crypt(word, salt=None):$/;" f +crypt Lib/test/test_crypt.py /^ crypt = None$/;" v +crypt Lib/test/test_crypt.py /^ crypt = warnings_helper.import_deprecated("crypt")$/;" v +crypt_crypt Modules/clinic/_cryptmodule.c.h /^crypt_crypt(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +crypt_crypt_impl Modules/_cryptmodule.c /^crypt_crypt_impl(PyObject *module, const char *word, const char *salt)$/;" f file: +crypt_methods Modules/_cryptmodule.c /^static PyMethodDef crypt_methods[] = {$/;" v file: +cryptmodule Modules/_cryptmodule.c /^static struct PyModuleDef cryptmodule = {$/;" v typeref:struct:PyModuleDef file: +crypto_ex_data_func_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class crypto_ex_data_func_st(Structure):$/;" c +crypto_ex_data_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class crypto_ex_data_st(Structure):$/;" c +crypto_hash Modules/_blake2/impl/blake2b.c /^int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen )$/;" f +crypto_hash Modules/_blake2/impl/blake2s.c /^int crypto_hash( unsigned char *out, unsigned char *in, unsigned long long inlen )$/;" f +cs Python/thread_nt.h /^ PyMUTEX_T cs;$/;" m struct:_NRMUTEX +cssclass_month Lib/calendar.py /^ cssclass_month = "month"$/;" v class:HTMLCalendar +cssclass_month Lib/test/test_calendar.py /^ cssclass_month = "text-center month"$/;" v class:TestSubClassingCase.setUp.CustomHTMLCal +cssclass_month_head Lib/calendar.py /^ cssclass_month_head = "month"$/;" v class:HTMLCalendar +cssclass_month_head Lib/test/test_calendar.py /^ cssclass_month_head = "text-center month-head"$/;" v class:TestSubClassingCase.setUp.CustomHTMLCal +cssclass_noday Lib/calendar.py /^ cssclass_noday = "noday"$/;" v class:HTMLCalendar +cssclass_year Lib/calendar.py /^ cssclass_year = "year"$/;" v class:HTMLCalendar +cssclass_year Lib/test/test_calendar.py /^ cssclass_year = "text-italic "$/;" v class:TestSubClassingCase.setUp.CustomHTMLCal +cssclass_year_head Lib/calendar.py /^ cssclass_year_head = "year"$/;" v class:HTMLCalendar +cssclass_year_head Lib/test/test_calendar.py /^ cssclass_year_head = "lead "$/;" v class:TestSubClassingCase.setUp.CustomHTMLCal +cssclasses Lib/calendar.py /^ cssclasses = ["mon", "tue", "wed", "thu", "fri", "sat", "sun"]$/;" v class:HTMLCalendar +cssclasses Lib/test/test_calendar.py /^ cssclasses = [style + " text-nowrap" for style in$/;" v class:TestSubClassingCase.setUp.CustomHTMLCal +cssclasses_weekday_head Lib/calendar.py /^ cssclasses_weekday_head = cssclasses$/;" v class:HTMLCalendar +cssclasses_weekday_head Lib/test/test_calendar.py /^ cssclasses_weekday_head = ["red", "blue", "green", "lilac",$/;" v class:TestSubClassingCase.setUp.CustomHTMLCal +csv_error Modules/_xxtestfuzz/fuzzer.c /^PyObject* csv_error = NULL;$/;" v +csv_exec Modules/_csv.c /^csv_exec(PyObject *module) {$/;" f file: +csv_methods Modules/_csv.c /^static struct PyMethodDef csv_methods[] = {$/;" v typeref:struct:PyMethodDef file: +csv_module Modules/_xxtestfuzz/fuzzer.c /^PyObject* csv_module = NULL;$/;" v +csv_reader Modules/_csv.c /^csv_reader(PyObject *module, PyObject *args, PyObject *keyword_args)$/;" f file: +csv_register_dialect Modules/_csv.c /^csv_register_dialect(PyObject *module, PyObject *args, PyObject *kwargs)$/;" f file: +csv_slots Modules/_csv.c /^static PyModuleDef_Slot csv_slots[] = {$/;" v file: +csv_writer Modules/_csv.c /^csv_writer(PyObject *module, PyObject *args, PyObject *keyword_args)$/;" f file: +csv_writerow Modules/_csv.c /^csv_writerow(WriterObj *self, PyObject *seq)$/;" f file: +csv_writerows Modules/_csv.c /^csv_writerows(WriterObj *self, PyObject *seqseq)$/;" f file: +ct_rune_t Lib/test/test_lib2to3/data/infinite_recursion.py /^ct_rune_t = __darwin_ct_rune_t$/;" v +cte Lib/email/_header_value_parser.py /^ cte = '7bit'$/;" v class:ContentTransferEncoding +cte Lib/email/_header_value_parser.py /^ cte = None$/;" v class:EncodedWord +cte Lib/email/headerregistry.py /^ def cte(self):$/;" m class:ContentTransferEncodingHeader +cte_as_value Lib/test/test_email/test_headerregistry.py /^ def cte_as_value(self,$/;" m class:TestContentTransferEncoding +cte_params Lib/test/test_email/test_headerregistry.py /^ cte_params = {$/;" v class:TestContentTransferEncoding +cte_type Lib/email/_policybase.py /^ cte_type = '8bit'$/;" v class:Policy +cthunk_slots Modules/_ctypes/callbacks.c /^static PyType_Slot cthunk_slots[] = {$/;" v file: +cthunk_spec Modules/_ctypes/callbacks.c /^PyType_Spec cthunk_spec = {$/;" v +ctime Lib/_pydatetime.py /^ def ctime(self):$/;" m class:date +ctime Lib/_pydatetime.py /^ def ctime(self):$/;" m class:datetime +ctl Modules/socketmodule.h /^ struct sockaddr_ctl ctl;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_ctl +ctrl Lib/curses/ascii.py /^def ctrl(c):$/;" f +ctrl_c_handler PC/launcher.c /^ctrl_c_handler(DWORD code)$/;" f file: +ctrl_c_handler PC/launcher2.c /^ctrl_c_handler(DWORD code)$/;" f +ctrl_handler Lib/test/win_console_handler.py /^ctrl_handler = HandlerRoutine(_ctrl_handler)$/;" v +ctx Include/cpython/objimpl.h /^ void *ctx;$/;" m struct:__anon208 +ctx Include/cpython/pymem.h /^ void *ctx;$/;" m struct:__anon249 +ctx Include/internal/pycore_ast.h /^ expr_context_ty ctx;$/;" m struct:_expr::__anon77::__anon100 +ctx Include/internal/pycore_ast.h /^ expr_context_ty ctx;$/;" m struct:_expr::__anon77::__anon101 +ctx Include/internal/pycore_ast.h /^ expr_context_ty ctx;$/;" m struct:_expr::__anon77::__anon102 +ctx Include/internal/pycore_ast.h /^ expr_context_ty ctx;$/;" m struct:_expr::__anon77::__anon103 +ctx Include/internal/pycore_ast.h /^ expr_context_ty ctx;$/;" m struct:_expr::__anon77::__anon98 +ctx Include/internal/pycore_ast.h /^ expr_context_ty ctx;$/;" m struct:_expr::__anon77::__anon99 +ctx Include/internal/pycore_ast_state.h /^ PyObject *ctx;$/;" m struct:ast_state +ctx Lib/test/test_concurrent_futures/util.py /^ ctx = "fork"$/;" v class:ProcessPoolForkMixin +ctx Lib/test/test_concurrent_futures/util.py /^ ctx = "forkserver"$/;" v class:ProcessPoolForkserverMixin +ctx Lib/test/test_concurrent_futures/util.py /^ ctx = "spawn"$/;" v class:ProcessPoolSpawnMixin +ctx Lib/test/test_contextlib_async.py /^ async def ctx():$/;" f function:TestAbstractAsyncContextManager.test_async_gen_propagates_generator_exit +ctx Modules/_decimal/_decimal.c /^ mpd_context_t ctx;$/;" m struct:__anon351 file: +ctx Modules/_hashopenssl.c /^ EVP_MD_CTX *ctx; \/* OpenSSL message digest context *\/$/;" m struct:__anon562 file: +ctx Modules/_hashopenssl.c /^ HMAC_CTX *ctx; \/* OpenSSL hmac context *\/$/;" m struct:__anon563 file: +ctx Modules/_ssl.c /^ PySSLContext *ctx; \/* weakref to SSL context *\/$/;" m struct:__anon581 file: +ctx Modules/_ssl.c /^ PySSLContext *ctx;$/;" m struct:__anon583 file: +ctx Modules/_ssl.c /^ SSL_CTX *ctx;$/;" m struct:__anon579 file: +ctx Modules/_testcapi/mem.c /^ void *ctx;$/;" m struct:__anon555 file: +ctx1_fun Lib/test/test_context.py /^ def ctx1_fun():$/;" f function:ContextTest.test_context_copy_1 +ctx2_fun Lib/test/test_context.py /^ def ctx2_fun():$/;" f function:ContextTest.test_context_copy_1 +ctxEntry Modules/_lsprof.c /^ ProfilerEntry *ctxEntry;$/;" m struct:_ProfilerContext file: +ctx_canonical Modules/_decimal/_decimal.c /^ctx_canonical(PyObject *context UNUSED, PyObject *v)$/;" f file: +ctx_copy_decimal Modules/_decimal/_decimal.c /^ctx_copy_decimal(PyObject *context, PyObject *v)$/;" f file: +ctx_create_decimal Modules/_decimal/_decimal.c /^ctx_create_decimal(PyObject *context, PyObject *args)$/;" f file: +ctx_entered Include/internal/pycore_context.h /^ int ctx_entered;$/;" m struct:_pycontextobject +ctx_from_float Modules/_decimal/_decimal.c /^ctx_from_float(PyObject *context, PyObject *v)$/;" f file: +ctx_iscanonical Modules/_decimal/_decimal.c /^ctx_iscanonical(PyObject *context UNUSED, PyObject *v)$/;" f file: +ctx_mpd_class Modules/_decimal/_decimal.c /^ctx_mpd_class(PyObject *context, PyObject *v)$/;" f file: +ctx_mpd_qcopy_abs Modules/_decimal/_decimal.c /^ctx_mpd_qcopy_abs(PyObject *context, PyObject *v)$/;" f file: +ctx_mpd_qcopy_negate Modules/_decimal/_decimal.c /^ctx_mpd_qcopy_negate(PyObject *context, PyObject *v)$/;" f file: +ctx_mpd_qcopy_sign Modules/_decimal/_decimal.c /^ctx_mpd_qcopy_sign(PyObject *context, PyObject *args)$/;" f file: +ctx_mpd_qdivmod Modules/_decimal/_decimal.c /^ctx_mpd_qdivmod(PyObject *context, PyObject *args)$/;" f file: +ctx_mpd_qpow Modules/_decimal/_decimal.c /^ctx_mpd_qpow(PyObject *context, PyObject *args, PyObject *kwds)$/;" f file: +ctx_mpd_radix Modules/_decimal/_decimal.c /^ctx_mpd_radix(PyObject *context, PyObject *dummy)$/;" f file: +ctx_mpd_same_quantum Modules/_decimal/_decimal.c /^ctx_mpd_same_quantum(PyObject *context, PyObject *args)$/;" f file: +ctx_mpd_to_eng Modules/_decimal/_decimal.c /^ctx_mpd_to_eng(PyObject *context, PyObject *v)$/;" f file: +ctx_mpd_to_sci Modules/_decimal/_decimal.c /^ctx_mpd_to_sci(PyObject *context, PyObject *v)$/;" f file: +ctx_prev Include/internal/pycore_context.h /^ PyContext *ctx_prev;$/;" m struct:_pycontextobject +ctx_vars Include/internal/pycore_context.h /^ PyHamtObject *ctx_vars;$/;" m struct:_pycontextobject +ctx_weakreflist Include/internal/pycore_context.h /^ PyObject *ctx_weakreflist;$/;" m struct:_pycontextobject +ctxmanager_dealloc Modules/_decimal/_decimal.c /^ctxmanager_dealloc(PyDecContextManagerObject *self)$/;" f file: +ctxmanager_methods Modules/_decimal/_decimal.c /^static PyMethodDef ctxmanager_methods[] = {$/;" v file: +ctxmanager_new Modules/_decimal/_decimal.c /^ctxmanager_new(PyTypeObject *type UNUSED, PyObject *args, PyObject *kwds)$/;" f file: +ctxmanager_restore_global Modules/_decimal/_decimal.c /^ctxmanager_restore_global(PyDecContextManagerObject *self,$/;" f file: +ctxmanager_set_local Modules/_decimal/_decimal.c /^ctxmanager_set_local(PyDecContextManagerObject *self, PyObject *args UNUSED)$/;" f file: +ctype_types Lib/test/test_ctypes/test_pointers.py /^ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,$/;" v +ctypes Lib/test/test_buffer.py /^ ctypes = None$/;" v +ctypes Lib/test/test_code.py /^ ctypes = None$/;" v +ctypes Lib/test/test_codecs.py /^ ctypes = None$/;" v +ctypes Lib/test/test_ctypes/__init__.py /^ctypes = import_helper.import_module('ctypes')$/;" v +ctypes Lib/test/test_genericalias.py /^ ctypes = None$/;" v +ctypes Lib/test/test_ssl.py /^ ctypes = None$/;" v +ctypes Lib/test/test_venv.py /^ ctypes = None$/;" v +ctypes_state Modules/_ctypes/ctypes.h /^} ctypes_state;$/;" t typeref:struct:__anon491 +ctypes_symbols Lib/test/test_ctypes/__init__.py /^ctypes_symbols = dir(ctypes)$/;" v +ctypes_test Lib/test/test_stable_abi_ctypes.py /^ctypes_test = import_module('ctypes')$/;" v +cube Lib/test/test_set.py /^def cube(n):$/;" f +cur Lib/test/test_sqlite3/test_dbapi.py /^ cur = sqlite.Cursor(foo)$/;" v class:CursorTests.test_cursor_wrong_class.Foo +cur Lib/test/test_sqlite3/test_regression.py /^ cur = con.cursor()$/;" v class:RegressionTests.test_connection_constructor_call_check.Connection +cur Modules/_decimal/libmpdec/io.c /^ mpd_ssize_t cur; \/* current write index *\/$/;" m struct:__anon343 file: +cur Parser/tokenizer.h /^ char *cur; \/* Next character in buffer *\/$/;" m struct:tok_state +curdir Lib/ntpath.py /^curdir = '.'$/;" v +curdir Lib/posixpath.py /^curdir = '.'$/;" v +curly_bracket_depth Parser/tokenizer.h /^ int curly_bracket_depth;$/;" m struct:_tokenizer_mode +curly_bracket_expr_start_depth Parser/tokenizer.h /^ int curly_bracket_expr_start_depth;$/;" m struct:_tokenizer_mode +curname Tools/unicode/mkstringprep.py /^ curname = None$/;" v +curname Tools/unicode/mkstringprep.py /^ curname = m.group(2)$/;" v +curname Tools/unicode/mkstringprep.py /^curname = None$/;" v +currency Lib/locale.py /^def currency(val, symbol=True, grouping=False, international=False):$/;" f +current Lib/tkinter/ttk.py /^ def current(self, newindex=None):$/;" m class:Combobox +currentDepth Modules/expat/xmlparse.c /^ unsigned int currentDepth;$/;" m struct:entity_stats file: +currentProfilerContext Modules/_lsprof.c /^ ProfilerContext *currentProfilerContext;$/;" m struct:__anon362 file: +currentThread Lib/threading.py /^def currentThread():$/;" f +currentTime Lib/xmlrpc/server.py /^ class currentTime:$/;" c class:.ExampleService +current_addr Python/perf_trampoline.c /^ char *current_addr; \/\/ Address of the current trampoline within the arena$/;" m struct:code_arena_st file: +current_colors_and_keys Lib/idlelib/config.py /^ def current_colors_and_keys(self, section):$/;" m class:IdleConf +current_context Modules/_decimal/_decimal.c /^current_context(void)$/;" f file: +current_context_from_dict Modules/_decimal/_decimal.c /^current_context_from_dict(void)$/;" f file: +current_context_var Modules/_decimal/_decimal.c /^static PyObject *current_context_var = NULL;$/;" v file: +current_exception Include/cpython/pystate.h /^ PyObject *current_exception;$/;" m struct:_ts +current_frame Include/cpython/pystate.h /^ struct _PyInterpreterFrame *current_frame;$/;" m struct:_PyCFrame typeref:struct:_PyCFrame::_PyInterpreterFrame +current_line Tools/gdb/libpython.py /^ def current_line(self):$/;" m class:PyFrameObjectPtr +current_line Tools/gdb/libpython.py /^ def current_line(self):$/;" m class:PyFramePtr +current_line_num Tools/gdb/libpython.py /^ def current_line_num(self):$/;" m class:PyFrameObjectPtr +current_line_num Tools/gdb/libpython.py /^ def current_line_num(self):$/;" m class:PyFramePtr +current_process Lib/multiprocessing/context.py /^ current_process = staticmethod(process.current_process)$/;" v class:BaseContext +current_process Lib/multiprocessing/dummy/__init__.py /^current_process = threading.current_thread$/;" v +current_process Lib/multiprocessing/process.py /^def current_process():$/;" f +current_process Lib/test/_test_multiprocessing.py /^ current_process = staticmethod(multiprocessing.current_process)$/;" v class:ProcessesMixin +current_process Lib/test/_test_multiprocessing.py /^ current_process = staticmethod(multiprocessing.dummy.current_process)$/;" v class:ThreadsMixin +current_task Lib/asyncio/tasks.py /^def current_task(loop=None):$/;" f +current_task Lib/test/test_asyncio/test_tasks.py /^ current_task = None$/;" v class:CCurrentLoopTests +current_task Lib/test/test_asyncio/test_tasks.py /^ current_task = staticmethod(tasks._c_current_task)$/;" v class:CCurrentLoopTests +current_task Lib/test/test_asyncio/test_tasks.py /^ current_task = None$/;" v class:BaseCurrentLoopTests +current_task Lib/test/test_asyncio/test_tasks.py /^ current_task = staticmethod(tasks._py_current_task)$/;" v class:PyCurrentLoopTests +current_tasks Modules/_asynciomodule.c /^ PyObject *current_tasks;$/;" m struct:__anon308 file: +current_thread Lib/threading.py /^def current_thread():$/;" f +current_thread_holds_gil Python/ceval_gil.c /^current_thread_holds_gil(struct _gil_runtime_state *gil, PyThreadState *tstate)$/;" f file: +currentframe Lib/inspect.py /^def currentframe():$/;" f +currentframe Lib/logging/__init__.py /^ def currentframe():$/;" f +currentframe Lib/test/inspect_fodder.py /^currentframe = inspect.currentframe()$/;" v +currgrouper Modules/itertoolsmodule.c /^ const void *currgrouper; \/* borrowed reference *\/$/;" m struct:__anon403 file: +currkey Modules/itertoolsmodule.c /^ PyObject *currkey;$/;" m struct:__anon403 file: +currvalue Modules/itertoolsmodule.c /^ PyObject *currvalue;$/;" m struct:__anon403 file: +curry Lib/test/test_inspect.py /^ def curry(func, arg1):$/;" f function:TestGetClosureVars.test_nonlocal_vars +curselection Lib/tkinter/__init__.py /^ def curselection(self):$/;" m class:Listbox +curses Lib/test/test_curses.py /^curses = import_module('curses')$/;" v +curses_destructor Modules/_cursesmodule.c /^curses_destructor(PyObject *op)$/;" f file: +cursor_clear Modules/_sqlite/cursor.c /^cursor_clear(pysqlite_Cursor *self)$/;" f file: +cursor_dealloc Modules/_sqlite/cursor.c /^cursor_dealloc(pysqlite_Cursor *self)$/;" f file: +cursor_doc Modules/_sqlite/cursor.c /^static const char cursor_doc[] =$/;" v file: +cursor_members Modules/_sqlite/cursor.c /^static struct PyMemberDef cursor_members[] =$/;" v typeref:struct:PyMemberDef file: +cursor_methods Modules/_sqlite/cursor.c /^static PyMethodDef cursor_methods[] = {$/;" v file: +cursor_slots Modules/_sqlite/cursor.c /^static PyType_Slot cursor_slots[] = {$/;" v file: +cursor_spec Modules/_sqlite/cursor.c /^static PyType_Spec cursor_spec = {$/;" v file: +cursor_traverse Modules/_sqlite/cursor.c /^cursor_traverse(pysqlite_Cursor *self, visitproc visit, void *arg)$/;" f file: +cursors Modules/_sqlite/connection.h /^ PyObject *cursors;$/;" m struct:__anon359 +custom_converter Modules/_testclinic.c /^custom_converter(PyObject *obj, custom_t *val)$/;" f file: +custom_cpfun Lib/test/test_shutil.py /^ def custom_cpfun(a, b):$/;" f function:TestCopyTree.test_copytree_custom_copy_function +custom_filter Lib/test/test_tarfile.py /^ def custom_filter(tarinfo, path):$/;" f function:TestExtractionFilters.test_custom_filter +custom_formatter_class_validate Lib/test/test_logging.py /^ custom_formatter_class_validate = {$/;" v class:ConfigDictTest +custom_formatter_class_validate2 Lib/test/test_logging.py /^ custom_formatter_class_validate2 = {$/;" v class:ConfigDictTest +custom_formatter_class_validate3 Lib/test/test_logging.py /^ custom_formatter_class_validate3 = {$/;" v class:ConfigDictTest +custom_formatter_with_defaults Lib/test/test_logging.py /^ custom_formatter_with_defaults = {$/;" v class:ConfigDictTest +custom_formatter_with_function Lib/test/test_logging.py /^ custom_formatter_with_function = {$/;" v class:ConfigDictTest +custom_handler Lib/test/test_asyncio/test_base_events.py /^ def custom_handler(loop, context):$/;" f function:BaseEventLoopTests.test_default_exc_handler_broken +custom_handler Lib/test/test_signal.py /^ def custom_handler(signum, frame):$/;" f function:StressTest.test_stress_modifying_handlers +custom_load_dump Lib/test/pickletester.py /^ def custom_load_dump(obj):$/;" f function:AbstractDispatchTableTests._test_dispatch_table +custom_method Lib/test/inspect_fodder.py /^custom_method = Callable().as_method_of(42)$/;" v +custom_msg Include/cpython/modsupport.h /^ const char *custom_msg;$/;" m struct:_PyArg_Parser +custom_patch Lib/test/test_unittest/testmock/testpatch.py /^ class custom_patch(_patch):$/;" c function:PatchTest.test_patch_propagates_exc_on_exit +custom_t Modules/_testclinic.c /^} custom_t;$/;" t typeref:struct:__anon392 file: +custom_type Lib/test/test_argparse.py /^ def custom_type(string):$/;" m class:TestHelpMetavarTypeFormatter +customdict Lib/test/test_builtin.py /^ class customdict(dict): # this one should not do anything fancy$/;" c function:BuiltinTest.test_exec_globals_dict_subclass +customdict Lib/test/test_types.py /^ class customdict(dict):$/;" c function:MappingProxyTests.test_customdict +customize_compiler Lib/_osx_support.py /^def customize_compiler(_config_vars):$/;" f +customize_config_vars Lib/_osx_support.py /^def customize_config_vars(_config_vars):$/;" f +custommodule Doc/includes/newtypes/custom.c /^static PyModuleDef custommodule = {$/;" v file: +custommodule Doc/includes/newtypes/custom2.c /^static PyModuleDef custommodule = {$/;" v file: +custommodule Doc/includes/newtypes/custom3.c /^static PyModuleDef custommodule = {$/;" v file: +custommodule Doc/includes/newtypes/custom4.c /^static PyModuleDef custommodule = {$/;" v file: +cut Lib/idlelib/editor.py /^ def cut(self,event):$/;" m class:EditorWindow +cut Lib/nntplib.py /^ def cut(s, lim):$/;" m class:NNTP +cut_port_re Lib/http/cookiejar.py /^cut_port_re = re.compile(r":\\d+$", re.ASCII)$/;" v +cv Python/thread_nt.h /^ PyCOND_T cv;$/;" m struct:_NRMUTEX +cval Include/cpython/complexobject.h /^ Py_complex cval;$/;" m struct:__anon238 +cw_coroutine Objects/genobject.c /^ PyCoroObject *cw_coroutine;$/;" m struct:__anon730 file: +cwd Lib/ftplib.py /^ def cwd(self, dirname):$/;" m class:FTP +cwd Lib/pathlib.py /^ def cwd(cls):$/;" m class:Path +cwr1 Lib/test/test_itertools.py /^ def cwr1(iterable, r):$/;" f function:TestBasicOps.test_combinations_with_replacement +cwr2 Lib/test/test_itertools.py /^ def cwr2(iterable, r):$/;" f function:TestBasicOps.test_combinations_with_replacement +cwr_dealloc Modules/itertoolsmodule.c /^cwr_dealloc(cwrobject *co)$/;" f file: +cwr_methods Modules/itertoolsmodule.c /^static PyMethodDef cwr_methods[] = {$/;" v file: +cwr_next Modules/itertoolsmodule.c /^cwr_next(cwrobject *co)$/;" f file: +cwr_reduce Modules/itertoolsmodule.c /^cwr_reduce(cwrobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +cwr_setstate Modules/itertoolsmodule.c /^cwr_setstate(cwrobject *lz, PyObject *state)$/;" f file: +cwr_sizeof Modules/itertoolsmodule.c /^cwr_sizeof(cwrobject *co, void *unused)$/;" f file: +cwr_slots Modules/itertoolsmodule.c /^static PyType_Slot cwr_slots[] = {$/;" v file: +cwr_spec Modules/itertoolsmodule.c /^static PyType_Spec cwr_spec = {$/;" v file: +cwr_traverse Modules/itertoolsmodule.c /^cwr_traverse(cwrobject *co, visitproc visit, void *arg)$/;" f file: +cwr_type Modules/itertoolsmodule.c /^ PyTypeObject *cwr_type;$/;" m struct:__anon400 file: +cwrobject Modules/itertoolsmodule.c /^} cwrobject;$/;" t typeref:struct:__anon415 file: +cx_limit Lib/test/test_sqlite3/test_dbapi.py /^def cx_limit(cx, category=sqlite.SQLITE_LIMIT_SQL_LENGTH, limit=128):$/;" f +cyan Lib/test/test_enum.py /^ cyan = 4$/;" v class:TestSpecial.test_extending.Color.MoreColor +cyan Lib/test/test_enum.py /^ cyan = 4$/;" v class:TestSpecial.test_extending2.Color.MoreColor +cyan Lib/test/test_enum.py /^ cyan = 4$/;" v class:TestSpecial.test_extending3.MoreColor +cycle Lib/test/test_exceptions.py /^ def cycle():$/;" f function:ExceptionTests.test_no_hang_on_context_chain_cycle1 +cycle_dealloc Modules/itertoolsmodule.c /^cycle_dealloc(cycleobject *lz)$/;" f file: +cycle_enum Lib/test/test_enum.py /^ def cycle_enum():$/;" f function:OldTestFlag.test_unique_composite +cycle_enum Lib/test/test_enum.py /^ def cycle_enum():$/;" f function:OldTestIntFlag.test_unique_composite +cycle_handlers Lib/test/test_signal.py /^ def cycle_handlers():$/;" f function:StressTest.test_stress_modifying_handlers +cycle_methods Modules/itertoolsmodule.c /^static PyMethodDef cycle_methods[] = {$/;" v file: +cycle_next Modules/itertoolsmodule.c /^cycle_next(cycleobject *lz)$/;" f file: +cycle_reduce Modules/itertoolsmodule.c /^cycle_reduce(cycleobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +cycle_setstate Modules/itertoolsmodule.c /^cycle_setstate(cycleobject *lz, PyObject *state)$/;" f file: +cycle_slots Modules/itertoolsmodule.c /^static PyType_Slot cycle_slots[] = {$/;" v file: +cycle_spec Modules/itertoolsmodule.c /^static PyType_Spec cycle_spec = {$/;" v file: +cycle_traverse Modules/itertoolsmodule.c /^cycle_traverse(cycleobject *lz, visitproc visit, void *arg)$/;" f file: +cycle_type Modules/itertoolsmodule.c /^ PyTypeObject *cycle_type;$/;" m struct:__anon400 file: +cycleobject Modules/itertoolsmodule.c /^} cycleobject;$/;" t typeref:struct:__anon407 file: +cycles Modules/itertoolsmodule.c /^ Py_ssize_t *cycles; \/* one rollover counter per element in the result *\/$/;" m struct:__anon416 file: +d Lib/test/datetimetester.py /^ d = klass(*args)$/;" v class:CapiTest.test_PyDateTime_DATE_GET.DateTimeSubclass +d Lib/test/datetimetester.py /^ d = klass(*args)$/;" v class:CapiTest.test_PyDateTime_DELTA_GET.TimeDeltaSubclass +d Lib/test/datetimetester.py /^ d = klass(*args)$/;" v class:CapiTest.test_PyDateTime_GET.DateSubclass +d Lib/test/datetimetester.py /^ d = klass(*args)$/;" v class:CapiTest.test_PyDateTime_TIME_GET.TimeSubclass +d Lib/test/datetimetester.py /^ d = cls(1, 1, 1, 10, 20, 30, 40, tzinfo=DST(dstvalue))$/;" v class:TestDateTimeTZ.test_tzinfo_timetuple.DST +d Lib/test/datetimetester.py /^ d = cls(1, 2, 3, 10, 20, 30, 40, tzinfo=UOFS(-53, dstvalue))$/;" v class:TestDateTimeTZ.test_utctimetuple.UOFS +d Lib/test/pyclbr_input.py /^ d = 10$/;" v class:C +d Lib/test/test_class.py /^d = {}$/;" v +d Lib/test/test_ctypes/test_macholib.py /^def d(location=None, name=None, shortname=None, version=None, suffix=None):$/;" f +d Lib/test/test_dict.py /^ d = cls()$/;" v class:DictTest.test_views_mapping.Dict +d Lib/test/test_dict.py /^ d = d.copy()$/;" v class:DictTest.test_str_nonstr.Key3 +d Lib/test/test_dict.py /^ d = dict(make_pairs())$/;" v class:DictTest.test_str_nonstr.Key3 +d Lib/test/test_dict.py /^ d = {'key1': 42, 'key2': 43}$/;" v class:DictTest.test_str_nonstr.Key3 +d Lib/test/test_dict.py /^ d = {key: 42 + i for i,key in enumerate(['key1', 'key2', key3])}$/;" v class:DictTest.test_str_nonstr.Key3 +d Lib/test/test_enum.py /^ d = 6$/;" v class:TestVerify.test_composite.Bizarre.Bizarre +d Lib/test/test_enum.py /^ d = 6$/;" v class:OldTestFlag.test_boundary.Bizarre +d Lib/test/test_enum.py /^ d = 6$/;" v class:OldTestIntFlag.test_boundary.Bizarre +d Lib/test/test_enum.py /^ d = 6$/;" v class:TestVerify.test_composite.Bizarre +d Lib/test/test_exceptions.py /^ d = _d$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle3.E +d Lib/test/test_funcattrs.py /^ def d(): return num_two$/;" f function:FunctionPropertiesTest.test___code__ +d Lib/test/test_functools.py /^ d = {}$/;" v class:TestSingleDispatch.test_cache_invalidation.TracingDict +d Lib/test/test_httplib.py /^ d = data()$/;" v class:BasicTest.test_send_updating_file.UpdatingFile +d Lib/test/test_inspect.py /^ d = descriptor()$/;" v class:TestGetattrStatic.test_descriptor.Foo +d Lib/test/test_inspect.py /^ d = descriptor()$/;" v class:TestGetattrStatic.test_metaclass_with_descriptor.meta +d Lib/test/test_marshal.py /^ d = {'astring': 'foo@bar.baz.spam',$/;" v class:ContainerTestCase +d Lib/test/test_opcache.py /^ d = Descriptor()$/;" v class:TestLoadSuperAttrCache.test_descriptor_not_double_executed_on_spec_fail.C +d Lib/test/test_subclassinit.py /^ d = Descriptor()$/;" v class:Test.test_set_name.A +d Lib/test/test_subclassinit.py /^ d = Descriptor()$/;" v class:Test.test_set_name_init_subclass.B +d Lib/test/test_subclassinit.py /^ d = Descriptor()$/;" v class:Test.test_set_name_metaclass.A +d Lib/test/test_subclassinit.py /^ d = Descriptor()$/;" v class:Test.test_set_name_modifying_dict.A +d Lib/test/test_subclassinit.py /^ d = NonDescriptor()$/;" v class:Test.test_set_name_lookup.A +d Lib/test/test_typing.py /^ def d(*args: *tuple[int, bool, *Ts, float, str]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +d Lib/this.py /^d = {}$/;" v +d Lib/turtledemo/penrose.py /^d = 2 * cos(3*pi\/10)$/;" v +d Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +d Modules/_ctypes/callproc.c /^ double d;$/;" m union:result file: +d Modules/_ctypes/ctypes.h /^ double d;$/;" m union:value +d Modules/_ctypes/ctypes.h /^ double d;$/;" m union:tagPyCArgObject::__anon496 +d Modules/_decimal/tests/bignum.py /^d = Decimal('9' * 425000000 + 'e-849999999')$/;" v +d Python/dtoa.c /^typedef union { double d; ULong L[2]; } U;$/;" m union:__anon696 file: +d$ Modules/_decimal/libmpdec/vcdiv64.asm /^d$ = 40$/;" d +d0 Lib/test/datetimetester.py /^ d0 = base.replace(minute=3, tzinfo=OperandDependentOffset())$/;" v class:TZInfoBase.test_aware_compare.OperandDependentOffset +d0 Lib/test/test_userdict.py /^d0 = {}$/;" v +d01 Lib/test/test_grammar.py /^ def d01(a=1): pass$/;" f function:GrammarTests.test_funcdef +d01 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d01(a=1): pass$/;" f function:GrammarTests.testFuncdef +d01 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d01(a=1): pass$/;" f function:GrammarTests.testFuncdef +d01v Lib/test/test_grammar.py /^ def d01v(a=1, *rest): pass$/;" f function:GrammarTests.test_funcdef +d01v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d01v(a=1, *rest): pass$/;" f function:GrammarTests.testFuncdef +d01v Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d01v(a=1, *rest): pass$/;" f function:GrammarTests.testFuncdef +d02 Lib/test/test_grammar.py /^ def d02(a=1, b=2): pass$/;" f function:GrammarTests.test_funcdef +d02 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d02(a=1, b=2): pass$/;" f function:GrammarTests.testFuncdef +d02 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d02(a=1, b=2): pass$/;" f function:GrammarTests.testFuncdef +d02v Lib/test/test_grammar.py /^ def d02v(a=1, b=2, *rest): pass$/;" f function:GrammarTests.test_funcdef +d02v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d02v(a=1, b=2, *rest): pass$/;" f function:GrammarTests.testFuncdef +d02v Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d02v(a=1, b=2, *rest): pass$/;" f function:GrammarTests.testFuncdef +d1 Lib/test/datetimetester.py /^ d1 = base.replace(minute=9, tzinfo=OperandDependentOffset())$/;" v class:TZInfoBase.test_aware_compare.OperandDependentOffset +d1 Lib/test/test_userdict.py /^d1 = {"one": 1}$/;" v +d11 Lib/test/test_grammar.py /^ def d11(a, b=1): pass$/;" f function:GrammarTests.test_funcdef +d11 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d11(a, b=1): pass$/;" f function:GrammarTests.testFuncdef +d11 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d11(a, b=1): pass$/;" f function:GrammarTests.testFuncdef +d11v Lib/test/test_grammar.py /^ def d11v(a, b=1, *rest): pass$/;" f function:GrammarTests.test_funcdef +d11v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d11v(a, b=1, *rest): pass$/;" f function:GrammarTests.testFuncdef +d11v Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d11v(a, b=1, *rest): pass$/;" f function:GrammarTests.testFuncdef +d12 Lib/test/test_grammar.py /^ def d12(a, b=1, c=2): pass$/;" f function:GrammarTests.test_funcdef +d12 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d12(a, b=1, c=2): pass$/;" f function:GrammarTests.testFuncdef +d12 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d12(a, b=1, c=2): pass$/;" f function:GrammarTests.testFuncdef +d12v Lib/test/test_grammar.py /^ def d12v(a, b=1, c=2, *rest): pass$/;" f function:GrammarTests.test_funcdef +d12v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d12v(a, b=1, c=2, *rest): pass$/;" f function:GrammarTests.testFuncdef +d12v Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d12v(a, b=1, c=2, *rest): pass$/;" f function:GrammarTests.testFuncdef +d2 Lib/test/datetimetester.py /^ d2 = base.replace(minute=11, tzinfo=OperandDependentOffset())$/;" v class:TZInfoBase.test_aware_compare.OperandDependentOffset +d2 Lib/test/test_dict.py /^ d2 = d.copy()$/;" v class:DictTest.test_copy_maintains_tracking.A +d2 Lib/test/test_userdict.py /^d2 = {"one": 1, "two": 2}$/;" v +d21 Lib/test/test_grammar.py /^ def d21(a, b, c=1): pass$/;" f function:GrammarTests.test_funcdef +d21 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d21(a, b, c=1): pass$/;" f function:GrammarTests.testFuncdef +d21 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d21(a, b, c=1): pass$/;" f function:GrammarTests.testFuncdef +d21v Lib/test/test_grammar.py /^ def d21v(a, b, c=1, *rest): pass$/;" f function:GrammarTests.test_funcdef +d21v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d21v(a, b, c=1, *rest): pass$/;" f function:GrammarTests.testFuncdef +d21v Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d21v(a, b, c=1, *rest): pass$/;" f function:GrammarTests.testFuncdef +d22 Lib/test/test_grammar.py /^ def d22(a, b, c=1, d=2): pass$/;" f function:GrammarTests.test_funcdef +d22 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d22(a, b, c=1, d=2): pass$/;" f function:GrammarTests.testFuncdef +d22 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d22(a, b, c=1, d=2): pass$/;" f function:GrammarTests.testFuncdef +d22v Lib/test/test_grammar.py /^ def d22v(a, b, c=1, d=2, *rest): pass$/;" f function:GrammarTests.test_funcdef +d22v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d22v(a, b, c=1, d=2, *rest): pass$/;" f function:GrammarTests.testFuncdef +d22v Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def d22v(a, b, c=1, d=2, *rest): pass$/;" f function:GrammarTests.testFuncdef +d2b Python/dtoa.c /^d2b(U *d, int *e, int *bits)$/;" f file: +d3 Lib/test/test_userdict.py /^d3 = {"one": 1, "two": 3, "three": 5}$/;" v +d31v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d31v((x)): pass$/;" f function:GrammarTests.testFuncdef +d32v Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def d32v((x,)): pass$/;" f function:GrammarTests.testFuncdef +d4 Lib/test/test_userdict.py /^d4 = {"one": None, "two": None}$/;" v +d5 Lib/test/test_userdict.py /^d5 = {"one": 1, "two": 1}$/;" v +d_base Include/cpython/descrobject.h /^ struct wrapperbase *d_base;$/;" m struct:__anon218 typeref:struct:__anon218::wrapperbase +d_get Modules/_ctypes/cfield.c /^d_get(void *ptr, Py_ssize_t size)$/;" f file: +d_get_sw Modules/_ctypes/cfield.c /^d_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +d_getitem Modules/arraymodule.c /^d_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +d_getset Include/cpython/descrobject.h /^ PyGetSetDef *d_getset;$/;" m struct:__anon217 +d_ino Modules/_posixsubprocess.c /^ unsigned long long d_ino;$/;" m struct:linux_dirent64 file: +d_ino Modules/posixmodule.c /^ ino_t d_ino;$/;" m struct:__anon480 file: +d_member Include/cpython/descrobject.h /^ PyMemberDef *d_member;$/;" m struct:__anon216 +d_method Include/cpython/descrobject.h /^ PyMethodDef *d_method;$/;" m struct:__anon215 +d_name Include/cpython/descrobject.h /^ PyObject *d_name;$/;" m struct:__anon214 +d_name Modules/_posixsubprocess.c /^ char d_name[256]; \/* Filename (null-terminated) *\/$/;" m struct:linux_dirent64 file: +d_off Modules/_posixsubprocess.c /^ long long d_off;$/;" m struct:linux_dirent64 file: +d_qualname Include/cpython/descrobject.h /^ PyObject *d_qualname;$/;" m struct:__anon214 +d_reclen Modules/_posixsubprocess.c /^ unsigned short d_reclen; \/* Length of this linux_dirent *\/$/;" m struct:linux_dirent64 file: +d_set Modules/_ctypes/cfield.c /^d_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +d_set_sw Modules/_ctypes/cfield.c /^d_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +d_setitem Modules/arraymodule.c /^d_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +d_type Include/cpython/descrobject.h /^ PyTypeObject *d_type;$/;" m struct:__anon214 +d_type Modules/_posixsubprocess.c /^ unsigned char d_type;$/;" m struct:linux_dirent64 file: +d_type Modules/posixmodule.c /^ unsigned char d_type;$/;" m struct:__anon480 file: +d_wrapped Include/cpython/descrobject.h /^ void *d_wrapped; \/* This can be any function pointer *\/$/;" m struct:__anon218 +daddr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^daddr_t = int32_t$/;" v +daemon Lib/multiprocessing/process.py /^ def daemon(self):$/;" m class:BaseProcess +daemon Lib/multiprocessing/process.py /^ def daemon(self, daemonic):$/;" m class:BaseProcess +daemon Lib/threading.py /^ def daemon(self):$/;" m class:Thread +daemon Lib/threading.py /^ def daemon(self, daemonic):$/;" m class:Thread +daemon_threads Lib/http/server.py /^ daemon_threads = True$/;" v class:ThreadingHTTPServer +daemon_threads Lib/socketserver.py /^ daemon_threads = False$/;" v class:ThreadingMixIn +dart Lib/turtledemo/penrose.py /^def dart(l):$/;" f +darwin_malloc_err_warning Lib/test/support/__init__.py /^def darwin_malloc_err_warning(test_name):$/;" f +dashO PCbuild/rt.bat /^if "%1"=="-O" (set dashO=-O) & shift & goto CheckOpts$/;" v +dashO PCbuild/rt.bat /^set dashO=$/;" v +dashU Tools/buildbot/test.bat /^set dashU=-unetwork -udecimal -usubprocess -uurlfetch -utzdata$/;" v +dash_R Lib/test/libregrtest/refleak.py /^def dash_R(ns, test_name, test_func):$/;" f +dash_R_cleanup Lib/test/libregrtest/refleak.py /^def dash_R_cleanup(fs, ps, pic, zdc, abcs):$/;" f +data Include/cpython/pystate.h /^ PyObject * data[1]; \/* Variable sized *\/$/;" m struct:_stack_chunk +data Include/cpython/pystate.h /^ void *data;$/;" m struct:_xid +data Include/cpython/unicodeobject.h /^ void *data;$/;" m struct:__anon236 +data Include/cpython/unicodeobject.h /^ } data; \/* Canonical, smallest-form Unicode buffer *\/$/;" m struct:__anon234 typeref:union:__anon234::__anon235 +data Include/datetime.h /^ unsigned char data[_PyDateTime_DATE_DATASIZE];$/;" m struct:__anon267 +data Include/internal/pycore_atexit.h /^ void *data;$/;" m struct:atexit_callback +data Lib/aifc.py /^ data = f.readframes(1024)$/;" v +data Lib/idlelib/idle_test/test_run.py /^ data = (('1\/0', ZeroDivisionError, "division by zero\\n"),$/;" v class:ExceptionTest +data Lib/smtplib.py /^ def data(self, msg):$/;" m class:SMTP +data Lib/test/memory_watchdog.py /^ data = int(statm.split()[5])$/;" v +data Lib/test/test_bisect.py /^ data = []$/;" v class:TestInsort.test_listDerived.List +data Lib/test/test_gzip.py /^ data = b'This is a simple test with gzip'$/;" v class:TestCommandLine +data Lib/test/test_httplib.py /^ def data():$/;" f function:BasicTest.test_send_updating_file +data Lib/test/test_importlib/resources/test_path.py /^ data = data01$/;" v class:PathDiskTests +data Lib/test/test_importlib/resources/test_read.py /^ data = data01$/;" v class:ReadDiskTests +data Lib/test/test_io.py /^ data = "3"$/;" v class:IOTest.test_optional_abilities.text_writer.UnseekableWriter +data Lib/test/test_io.py /^ data = b"3"$/;" v class:IOTest.test_optional_abilities.text_writer.UnseekableWriter +data Lib/test/test_statistics.py /^ data = [kind(x) for x in raw]$/;" v class:UnivariateCommonMixin.test_type_of_data_element.MyFloat +data Lib/test/test_xml_etree.py /^ data = f.read()$/;" v class:ElementTreeTest.test_custom_builder.Builder +data Lib/test/test_xml_etree.py /^ def data(self, text):$/;" m class:ElementTreeTest.test_custom_builder.Builder +data Lib/test/test_zipfile/test_core.py /^ data = ($/;" v class:DecryptionTests +data Lib/urllib/request.py /^ def data(self):$/;" m class:Request +data Lib/urllib/request.py /^ def data(self, data):$/;" m class:Request +data Lib/xml/etree/ElementTree.py /^ def data(self, data):$/;" m class:C14NWriterTarget +data Lib/xml/etree/ElementTree.py /^ def data(self, data):$/;" m class:TreeBuilder +data Lib/xmlrpc/client.py /^ def data(self, text):$/;" m class:Unmarshaller +data Modules/_collectionsmodule.c /^ PyObject *data[BLOCKLEN];$/;" m struct:BLOCK file: +data Modules/_ctypes/_ctypes_test.c /^ double data[2];$/;" m struct:__anon502 file: +data Modules/_ctypes/_ctypes_test.c /^ float data[2];$/;" m struct:__anon503 file: +data Modules/_ctypes/_ctypes_test.c /^ unsigned char data[16];$/;" m struct:__anon501 file: +data Modules/_decimal/_decimal.c /^ mpd_uint_t data[_Py_DEC_MINALLOC];$/;" m struct:__anon349 file: +data Modules/_decimal/libmpdec/io.c /^ char *data;$/;" m struct:__anon343 file: +data Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_uint_t *data;$/;" m struct:mpd_t +data Modules/_elementtree.c /^ PyObject *data; \/* data collector (string or list), or NULL *\/$/;" m struct:__anon385 file: +data Modules/_pickle.c /^ PyObject **data;$/;" m struct:__anon449 file: +data Modules/_sqlite/row.h /^ PyObject* data;$/;" m struct:_Row +data Modules/_testbuffer.c /^ char *data; \/* raw data *\/$/;" m struct:ndbuf file: +data Modules/_testcapi/heaptype.c /^ int data;$/;" m struct:__anon545 file: +data Modules/_tkinter.c /^ ClientData *data;$/;" m struct:CommandEvent file: +data Modules/_xxinterpchannelsmodule.c /^ _PyCrossInterpreterData *data;$/;" m struct:_channelitem file: +data Modules/_xxsubinterpretersmodule.c /^ _PyCrossInterpreterData data;$/;" m struct:_sharednsitem file: +data Modules/expat/expat.h /^ void *data;$/;" m struct:__anon598 +data Modules/itertoolsmodule.c /^ PyObject *data;$/;" m struct:__anon418 file: +data Modules/mmapmodule.c /^ char * data;$/;" m struct:__anon490 file: +data Python/import.c /^ const char *data;$/;" m struct:frozen_info file: +data Tools/i18n/makelocalealias.py /^ data = optimize(data)$/;" v +data Tools/i18n/makelocalealias.py /^ data = locale.locale_alias.copy()$/;" v +data Tools/unicode/mkstringprep.py /^ data = f.readlines()$/;" v +data2 Lib/test/test_zipfile/test_core.py /^ data2 = ($/;" v class:DecryptionTests +data_as_row Tools/c-analyzer/c_parser/info.py /^ def data_as_row(data, ext, cols):$/;" f function:HighlevelParsedItem.render_rowdata +data_encoding Lib/codecs.py /^ data_encoding = 'unknown'$/;" v class:StreamRecoder +data_file Lib/test/test_asyncio/utils.py /^def data_file(filename):$/;" f +data_file Lib/test/test_ssl.py /^def data_file(*name):$/;" f +data_filter Lib/tarfile.py /^def data_filter(member, dest_path):$/;" f +data_one Modules/_decimal/libmpdec/mpdecimal.c /^static mpd_uint_t data_one[1] = {1};$/;" v file: +data_open Lib/urllib/request.py /^ def data_open(self, req):$/;" m class:DataHandler +data_received Lib/asyncio/base_events.py /^ def data_received(self, data):$/;" m class:_SendfileFallbackProtocol +data_received Lib/asyncio/base_subprocess.py /^ def data_received(self, data):$/;" m class:ReadSubprocessPipeProto +data_received Lib/asyncio/protocols.py /^ def data_received(self, data):$/;" m class:Protocol +data_received Lib/asyncio/streams.py /^ def data_received(self, data):$/;" m class:StreamReaderProtocol +data_received Lib/test/test_asyncio/test_base_events.py /^ def data_received(self, data):$/;" m class:BaseLoopSockSendfileTests.MyProto +data_received Lib/test/test_asyncio/test_base_events.py /^ def data_received(self, data):$/;" m class:MyProto +data_received Lib/test/test_asyncio/test_events.py /^ def data_received(self, data):$/;" m class:EventLoopTestsMixin.test_connect_accepted_socket.MyProto +data_received Lib/test/test_asyncio/test_events.py /^ def data_received(self, data):$/;" m class:MyBaseProto +data_received Lib/test/test_asyncio/test_events.py /^ def data_received(self, data):$/;" m class:MyReadPipeProto +data_received Lib/test/test_asyncio/test_proactor_events.py /^ def data_received(self, data):$/;" m class:ProactorEventLoopUnixSockSendfileTests.MyProto +data_received Lib/test/test_asyncio/test_sendfile.py /^ def data_received(self, data):$/;" m class:MyProto +data_received Lib/test/test_asyncio/test_sendfile.py /^ def data_received(self, data):$/;" m class:MySendfileProto +data_received Lib/test/test_asyncio/test_sock_lowlevel.py /^ def data_received(self, data):$/;" m class:MyProto +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:TestSSL.test_connect_accepted_socket.MyProto +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:TestSSL.test_create_connection_memory_leak.ClientProto +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:TestSSL.test_shutdown_timeout_handler_not_set.Protocol +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoSecond +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:TestSSL.test_start_tls_client_reg_proto_1.ClientProto +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:TestSSL.test_start_tls_server_1.ServerProto +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:TestSSL.test_start_tls_slow_client_cancel.ClientProto +data_received Lib/test/test_asyncio/test_ssl.py /^ def data_received(self, data):$/;" m class:MyBaseProto +data_received Lib/test/test_asyncio/test_sslproto.py /^ def data_received(self, data):$/;" m class:BaseStartTLS.test_create_connection_memory_leak.ClientProto +data_received Lib/test/test_asyncio/test_sslproto.py /^ def data_received(self, data):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond +data_received Lib/test/test_asyncio/test_sslproto.py /^ def data_received(self, data):$/;" m class:BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto +data_received Lib/test/test_asyncio/test_sslproto.py /^ def data_received(self, data):$/;" m class:BaseStartTLS.test_start_tls_server_1.ServerProto +data_received Lib/test/test_asyncio/test_sslproto.py /^ def data_received(self, data):$/;" m class:BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto +data_received Lib/test/test_asyncio/test_unix_events.py /^ def data_received(self, data):$/;" m class:SelectorEventLoopUnixSockSendfileTests.MyProto +data_received Lib/test/test_asyncio/test_windows_events.py /^ def data_received(self, data):$/;" m class:UpperProto +data_response Lib/test/test_smtplib.py /^ data_response = None$/;" v class:SimSMTPChannel +data_stack Modules/_sre/sre.h /^ char* data_stack;$/;" m struct:__anon458 +data_stack_base Modules/_sre/sre.h /^ size_t data_stack_base;$/;" m struct:__anon458 +data_stack_dealloc Modules/_sre/sre.c /^data_stack_dealloc(SRE_STATE* state)$/;" f file: +data_stack_grow Modules/_sre/sre.c /^data_stack_grow(SRE_STATE* state, Py_ssize_t size)$/;" f file: +data_stack_size Modules/_sre/sre.h /^ size_t data_stack_size;$/;" m struct:__anon458 +data_too_large Lib/test/support/_hypothesis_stubs/__init__.py /^ data_too_large = 1$/;" v class:HealthCheck +data_zero Modules/_decimal/libmpdec/mpdecimal.c /^static mpd_uint_t data_zero[1] = {0};$/;" v file: +database Lib/test/support/hypothesis_helper.py /^ database=MultiplexedDatabase($/;" v +database Lib/test/test_asyncio/test_taskgroups.py /^ async def database():$/;" f function:TestTaskGroup.test_taskgroup_context_manager_exit_raises +datablob Lib/test/test_inspect.py /^ datablob = '1'$/;" v class:TestClassesAndFunctions.test_classify_newstyle.A +dataclass Lib/dataclasses.py /^def dataclass(cls=None, \/, *, init=True, repr=True, eq=True, order=False,$/;" f +dataclass1 Lib/test/test_pprint.py /^class dataclass1:$/;" c +dataclass2 Lib/test/test_pprint.py /^class dataclass2:$/;" c +dataclass3 Lib/test/test_pprint.py /^class dataclass3:$/;" c +dataclass4 Lib/test/test_pprint.py /^class dataclass4:$/;" c +dataclass5 Lib/test/test_pprint.py /^class dataclass5:$/;" c +dataclass6 Lib/test/test_pprint.py /^class dataclass6:$/;" c +dataclass_transform Lib/typing.py /^def dataclass_transform($/;" f +datagram_received Lib/asyncio/protocols.py /^ def datagram_received(self, data, addr):$/;" m class:DatagramProtocol +datagram_received Lib/test/test_asyncio/test_base_events.py /^ def datagram_received(self, data, addr):$/;" m class:MyDatagramProto +datagram_received Lib/test/test_asyncio/test_events.py /^ def datagram_received(self, data, addr):$/;" m class:EventLoopTestsMixin._test_create_datagram_endpoint.TestMyDatagramProto +datagram_received Lib/test/test_asyncio/test_events.py /^ def datagram_received(self, data, addr):$/;" m class:MyDatagramProto +datagram_transport Lib/test/test_asyncio/test_proactor_events.py /^ def datagram_transport(self):$/;" m class:BaseProactorEventLoopTests +datagram_transport Lib/test/test_asyncio/test_proactor_events.py /^ def datagram_transport(self, address=None):$/;" m class:ProactorDatagramTransportTests +datagram_transport Lib/test/test_asyncio/test_selector_events.py /^ def datagram_transport(self, address=None):$/;" m class:SelectorDatagramTransportTests +dataobj Modules/itertoolsmodule.c /^ teedataobject *dataobj;$/;" m struct:__anon406 file: +datas Lib/test/test_audioop.py /^datas = {$/;" v +datasizemask Lib/msilib/__init__.py /^datasizemask= 0x00ff$/;" v +datastack_chunk Include/cpython/pystate.h /^ _PyStackChunk *datastack_chunk;$/;" m struct:_ts +datastack_limit Include/cpython/pystate.h /^ PyObject **datastack_limit;$/;" m struct:_ts +datastack_top Include/cpython/pystate.h /^ PyObject **datastack_top;$/;" m struct:_ts +datatype_normalization Lib/xml/dom/xmlbuilder.py /^ datatype_normalization = False$/;" v class:Options +date Lib/_pydatetime.py /^ def date(self):$/;" m class:datetime +date Lib/_pydatetime.py /^class date:$/;" c +date Lib/nntplib.py /^ def date(self):$/;" m class:NNTP +date_add Modules/_datetimemodule.c /^date_add(PyObject *left, PyObject *right)$/;" f file: +date_as_number Modules/_datetimemodule.c /^static PyNumberMethods date_as_number = {$/;" v file: +date_ctime Modules/_datetimemodule.c /^date_ctime(PyDateTime_Date *self, PyObject *Py_UNUSED(ignored))$/;" f file: +date_day Modules/_datetimemodule.c /^date_day(PyDateTime_Date *self, void *unused)$/;" f file: +date_doc Modules/_datetimemodule.c /^static const char date_doc[] =$/;" v file: +date_format Modules/_datetimemodule.c /^date_format(PyDateTime_Date *self, PyObject *args)$/;" f file: +date_from_pickle Modules/_datetimemodule.c /^date_from_pickle(PyTypeObject *type, PyObject *state)$/;" f file: +date_fromisocalendar Modules/_datetimemodule.c /^date_fromisocalendar(PyObject *cls, PyObject *args, PyObject *kw)$/;" f file: +date_fromisoformat Modules/_datetimemodule.c /^date_fromisoformat(PyObject *cls, PyObject *dtstr)$/;" f file: +date_fromordinal Modules/_datetimemodule.c /^date_fromordinal(PyObject *cls, PyObject *args)$/;" f file: +date_fromtimestamp Modules/_datetimemodule.c /^date_fromtimestamp(PyObject *cls, PyObject *obj)$/;" f file: +date_getset Modules/_datetimemodule.c /^static PyGetSetDef date_getset[] = {$/;" v file: +date_getstate Modules/_datetimemodule.c /^date_getstate(PyDateTime_Date *self)$/;" f file: +date_hash Modules/_datetimemodule.c /^date_hash(PyDateTime_Date *self)$/;" f file: +date_isocalendar Modules/_datetimemodule.c /^date_isocalendar(PyDateTime_Date *self, PyObject *Py_UNUSED(ignored))$/;" f file: +date_isoformat Modules/_datetimemodule.c /^date_isoformat(PyDateTime_Date *self, PyObject *Py_UNUSED(ignored))$/;" f file: +date_isoweekday Modules/_datetimemodule.c /^date_isoweekday(PyDateTime_Date *self, PyObject *Py_UNUSED(ignored))$/;" f file: +date_kws Modules/_datetimemodule.c /^static char *date_kws[] = {"year", "month", "day", NULL};$/;" v file: +date_methods Modules/_datetimemodule.c /^static PyMethodDef date_methods[] = {$/;" v file: +date_month Modules/_datetimemodule.c /^date_month(PyDateTime_Date *self, void *unused)$/;" f file: +date_new Modules/_datetimemodule.c /^date_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +date_reduce Modules/_datetimemodule.c /^date_reduce(PyDateTime_Date *self, PyObject *arg)$/;" f file: +date_replace Modules/_datetimemodule.c /^date_replace(PyDateTime_Date *self, PyObject *args, PyObject *kw)$/;" f file: +date_repr Modules/_datetimemodule.c /^date_repr(PyDateTime_Date *self)$/;" f file: +date_richcompare Modules/_datetimemodule.c /^date_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +date_str Modules/_datetimemodule.c /^date_str(PyDateTime_Date *self)$/;" f file: +date_strftime Modules/_datetimemodule.c /^date_strftime(PyDateTime_Date *self, PyObject *args, PyObject *kw)$/;" f file: +date_subtract Modules/_datetimemodule.c /^date_subtract(PyObject *left, PyObject *right)$/;" f file: +date_time_string Lib/http/server.py /^ def date_time_string(self, timestamp=None):$/;" m class:BaseHTTPRequestHandler +date_timetuple Modules/_datetimemodule.c /^date_timetuple(PyDateTime_Date *self, PyObject *Py_UNUSED(ignored))$/;" f file: +date_today Modules/_datetimemodule.c /^date_today(PyObject *cls, PyObject *dummy)$/;" f file: +date_toordinal Modules/_datetimemodule.c /^date_toordinal(PyDateTime_Date *self, PyObject *Py_UNUSED(ignored))$/;" f file: +date_weekday Modules/_datetimemodule.c /^date_weekday(PyDateTime_Date *self, PyObject *Py_UNUSED(ignored))$/;" f file: +date_year Modules/_datetimemodule.c /^date_year(PyDateTime_Date *self, void *unused)$/;" f file: +dateargs Lib/test/test_email/test_utils.py /^ dateargs = (2001, 9, 23, 20, 10, 55)$/;" v class:DateTimeTests +datestring Lib/test/test_email/test_headerregistry.py /^ datestring = 'Sun, 23 Sep 2001 20:10:55 -0700'$/;" v class:TestDateHeader +datestring Lib/test/test_email/test_utils.py /^ datestring = 'Sun, 23 Sep 2001 20:10:55'$/;" v class:DateTimeTests +datetime Lib/_pydatetime.py /^class datetime(date):$/;" c +datetime Lib/email/headerregistry.py /^ def datetime(self):$/;" m class:DateHeader +datetime_add Modules/_datetimemodule.c /^datetime_add(PyObject *left, PyObject *right)$/;" f file: +datetime_alloc Modules/_datetimemodule.c /^datetime_alloc(PyTypeObject *type, Py_ssize_t aware)$/;" f file: +datetime_as_number Modules/_datetimemodule.c /^static PyNumberMethods datetime_as_number = {$/;" v file: +datetime_astimezone Modules/_datetimemodule.c /^datetime_astimezone(PyDateTime_DateTime *self, PyObject *args, PyObject *kw)$/;" f file: +datetime_best_possible Modules/_datetimemodule.c /^datetime_best_possible(PyObject *cls, TM_FUNC f, PyObject *tzinfo)$/;" f file: +datetime_check_date Modules/_testcapi/datetime.c /^datetime_check_date(PyObject *self, PyObject *args)$/;" f file: +datetime_check_datetime Modules/_testcapi/datetime.c /^datetime_check_datetime(PyObject *self, PyObject *args)$/;" f file: +datetime_check_delta Modules/_testcapi/datetime.c /^datetime_check_delta(PyObject *self, PyObject *args)$/;" f file: +datetime_check_time Modules/_testcapi/datetime.c /^datetime_check_time(PyObject *self, PyObject *args)$/;" f file: +datetime_check_tzinfo Modules/_testcapi/datetime.c /^datetime_check_tzinfo(PyObject *self, PyObject *args)$/;" f file: +datetime_combine Modules/_datetimemodule.c /^datetime_combine(PyObject *cls, PyObject *args, PyObject *kw)$/;" f file: +datetime_ctime Modules/_datetimemodule.c /^datetime_ctime(PyDateTime_DateTime *self, PyObject *Py_UNUSED(ignored))$/;" f file: +datetime_date_fromtimestamp Modules/_datetimemodule.c /^datetime_date_fromtimestamp(PyTypeObject *type, PyObject *timestamp)$/;" f file: +datetime_date_fromtimestamp_capi Modules/_datetimemodule.c /^datetime_date_fromtimestamp_capi(PyObject *cls, PyObject *args)$/;" f file: +datetime_datetime_now Modules/clinic/_datetimemodule.c.h /^datetime_datetime_now(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +datetime_datetime_now_impl Modules/_datetimemodule.c /^datetime_datetime_now_impl(PyTypeObject *type, PyObject *tz)$/;" f file: +datetime_dealloc Modules/_datetimemodule.c /^datetime_dealloc(PyDateTime_DateTime *self)$/;" f file: +datetime_destructor Modules/_datetimemodule.c /^datetime_destructor(PyObject *op)$/;" f file: +datetime_doc Modules/_datetimemodule.c /^static const char datetime_doc[] =$/;" v file: +datetime_dst Modules/_datetimemodule.c /^datetime_dst(PyObject *self, PyObject *unused) {$/;" f file: +datetime_fold Modules/_datetimemodule.c /^datetime_fold(PyDateTime_DateTime *self, void *unused)$/;" f file: +datetime_from_pickle Modules/_datetimemodule.c /^datetime_from_pickle(PyTypeObject *type, PyObject *state, PyObject *tzinfo)$/;" f file: +datetime_from_timestamp Modules/_datetimemodule.c /^datetime_from_timestamp(PyObject *cls, TM_FUNC f, PyObject *timestamp,$/;" f file: +datetime_from_timet_and_us Modules/_datetimemodule.c /^datetime_from_timet_and_us(PyObject *cls, TM_FUNC f, time_t timet, int us,$/;" f file: +datetime_fromisoformat Modules/_datetimemodule.c /^datetime_fromisoformat(PyObject *cls, PyObject *dtstr)$/;" f file: +datetime_fromtimestamp Modules/_datetimemodule.c /^datetime_fromtimestamp(PyObject *cls, PyObject *args, PyObject *kw)$/;" f file: +datetime_getdate Modules/_datetimemodule.c /^datetime_getdate(PyDateTime_DateTime *self, PyObject *Py_UNUSED(ignored))$/;" f file: +datetime_getset Modules/_datetimemodule.c /^static PyGetSetDef datetime_getset[] = {$/;" v file: +datetime_getstate Modules/_datetimemodule.c /^datetime_getstate(PyDateTime_DateTime *self, int proto)$/;" f file: +datetime_gettime Modules/_datetimemodule.c /^datetime_gettime(PyDateTime_DateTime *self, PyObject *Py_UNUSED(ignored))$/;" f file: +datetime_gettimetz Modules/_datetimemodule.c /^datetime_gettimetz(PyDateTime_DateTime *self, PyObject *Py_UNUSED(ignored))$/;" f file: +datetime_hash Modules/_datetimemodule.c /^datetime_hash(PyDateTime_DateTime *self)$/;" f file: +datetime_hour Modules/_datetimemodule.c /^datetime_hour(PyDateTime_DateTime *self, void *unused)$/;" f file: +datetime_isoformat Modules/_datetimemodule.c /^datetime_isoformat(PyDateTime_DateTime *self, PyObject *args, PyObject *kw)$/;" f file: +datetime_kws Modules/_datetimemodule.c /^static char *datetime_kws[] = {$/;" v file: +datetime_methods Modules/_datetimemodule.c /^static PyMethodDef datetime_methods[] = {$/;" v file: +datetime_microsecond Modules/_datetimemodule.c /^datetime_microsecond(PyDateTime_DateTime *self, void *unused)$/;" f file: +datetime_minute Modules/_datetimemodule.c /^datetime_minute(PyDateTime_DateTime *self, void *unused)$/;" f file: +datetime_new Modules/_datetimemodule.c /^datetime_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +datetime_reduce Modules/_datetimemodule.c /^datetime_reduce(PyDateTime_DateTime *self, PyObject *arg)$/;" f file: +datetime_reduce_ex Modules/_datetimemodule.c /^datetime_reduce_ex(PyDateTime_DateTime *self, PyObject *args)$/;" f file: +datetime_replace Modules/_datetimemodule.c /^datetime_replace(PyDateTime_DateTime *self, PyObject *args, PyObject *kw)$/;" f file: +datetime_repr Modules/_datetimemodule.c /^datetime_repr(PyDateTime_DateTime *self)$/;" f file: +datetime_richcompare Modules/_datetimemodule.c /^datetime_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +datetime_second Modules/_datetimemodule.c /^datetime_second(PyDateTime_DateTime *self, void *unused)$/;" f file: +datetime_str Modules/_datetimemodule.c /^datetime_str(PyDateTime_DateTime *self)$/;" f file: +datetime_strptime Modules/_datetimemodule.c /^datetime_strptime(PyObject *cls, PyObject *args)$/;" f file: +datetime_subtract Modules/_datetimemodule.c /^datetime_subtract(PyObject *left, PyObject *right)$/;" f file: +datetime_timestamp Modules/_datetimemodule.c /^datetime_timestamp(PyDateTime_DateTime *self, PyObject *Py_UNUSED(ignored))$/;" f file: +datetime_timetuple Modules/_datetimemodule.c /^datetime_timetuple(PyDateTime_DateTime *self, PyObject *Py_UNUSED(ignored))$/;" f file: +datetime_tzinfo Modules/_datetimemodule.c /^datetime_tzinfo(PyDateTime_DateTime *self, void *unused)$/;" f file: +datetime_tzname Modules/_datetimemodule.c /^datetime_tzname(PyObject *self, PyObject *unused) {$/;" f file: +datetime_utcfromtimestamp Modules/_datetimemodule.c /^datetime_utcfromtimestamp(PyObject *cls, PyObject *args)$/;" f file: +datetime_utcnow Modules/_datetimemodule.c /^datetime_utcnow(PyObject *cls, PyObject *dummy)$/;" f file: +datetime_utcoffset Modules/_datetimemodule.c /^datetime_utcoffset(PyObject *self, PyObject *unused) {$/;" f file: +datetime_utctimetuple Modules/_datetimemodule.c /^datetime_utctimetuple(PyDateTime_DateTime *self, PyObject *Py_UNUSED(ignored))$/;" f file: +datetimemodule Modules/_datetimemodule.c /^static struct PyModuleDef datetimemodule = {$/;" v typeref:struct:PyModuleDef file: +datum Lib/turtledemo/clock.py /^def datum(z):$/;" f +day Lib/_pydatetime.py /^ def day(self):$/;" m class:date +day Modules/_zoneinfo.c /^ uint8_t day;$/;" m struct:__anon639 file: +day Modules/_zoneinfo.c /^ unsigned int day;$/;" m struct:__anon640 file: +day_abbr Lib/calendar.py /^day_abbr = _localized_day('%a')$/;" v +day_name Lib/calendar.py /^day_name = _localized_day('%A')$/;" v +dayrule_new Modules/_zoneinfo.c /^dayrule_new(uint8_t julian, unsigned int day, int8_t hour, int8_t minute,$/;" f file: +dayrule_year_to_timestamp Modules/_zoneinfo.c /^dayrule_year_to_timestamp(TransitionRuleType *base_self, int year)$/;" f +days Include/datetime.h /^ int days; \/* -MAX_DELTA_DAYS <= days <= MAX_DELTA_DAYS *\/$/;" m struct:__anon262 +days Lib/_pydatetime.py /^ def days(self):$/;" m class:timedelta +days_before_month Modules/_datetimemodule.c /^days_before_month(int year, int month)$/;" f file: +days_before_year Modules/_datetimemodule.c /^days_before_year(int year)$/;" f file: +days_in_month Modules/_datetimemodule.c /^days_in_month(int year, int month)$/;" f file: +db Lib/test/test_unicodedata.py /^ db = unicodedata$/;" v class:UnicodeDatabaseTest +db Modules/_sqlite/connection.h /^ sqlite3 *db;$/;" m struct:__anon359 +db_methods PC/_msi.c /^static PyMethodDef db_methods[] = {$/;" v file: +dbcheck Lib/test/test_decorators.py /^def dbcheck(exprstr, globals=None, locals=None):$/;" f +dbcs_index Modules/cjkcodecs/cjkcodecs.h /^struct dbcs_index {$/;" s +dbcs_map Modules/cjkcodecs/cjkcodecs.h /^struct dbcs_map {$/;" s +dbm Lib/_pydatetime.py /^dbm = 0$/;" v +dbm__enter__ Modules/_dbmmodule.c /^dbm__enter__(PyObject *self, PyObject *args)$/;" f file: +dbm__exit__ Modules/_dbmmodule.c /^dbm__exit__(PyObject *self, PyObject *args)$/;" f file: +dbm_ass_sub Modules/_dbmmodule.c /^dbm_ass_sub(dbmobject *dp, PyObject *v, PyObject *w)$/;" f file: +dbm_bool Modules/_dbmmodule.c /^dbm_bool(dbmobject *dp)$/;" f file: +dbm_contains Modules/_dbmmodule.c /^dbm_contains(PyObject *self, PyObject *arg)$/;" f file: +dbm_dealloc Modules/_dbmmodule.c /^dbm_dealloc(dbmobject *dp)$/;" f file: +dbm_error Modules/_dbmmodule.c /^ PyObject *dbm_error;$/;" m struct:__anon314 file: +dbm_iterator Lib/test/test_dbm.py /^def dbm_iterator():$/;" f +dbm_length Modules/_dbmmodule.c /^dbm_length(dbmobject *dp)$/;" f file: +dbm_methods Modules/_dbmmodule.c /^static PyMethodDef dbm_methods[] = {$/;" v file: +dbm_subscript Modules/_dbmmodule.c /^dbm_subscript(dbmobject *dp, PyObject *key)$/;" f file: +dbm_traverse Modules/_dbmmodule.c /^dbm_traverse(dbmobject *dp, visitproc visit, void *arg)$/;" f file: +dbm_type Modules/_dbmmodule.c /^ PyTypeObject *dbm_type;$/;" m struct:__anon314 file: +dbmmodule_methods Modules/_dbmmodule.c /^static PyMethodDef dbmmodule_methods[] = {$/;" v file: +dbmobject Modules/_dbmmodule.c /^} dbmobject;$/;" t typeref:struct:__anon315 file: +dbmopen Modules/clinic/_dbmmodule.c.h /^dbmopen(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +dbmopen Modules/clinic/_gdbmmodule.c.h /^dbmopen(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +dbmopen_impl Modules/_dbmmodule.c /^dbmopen_impl(PyObject *module, PyObject *filename, const char *flags,$/;" f file: +dbmopen_impl Modules/_gdbmmodule.c /^dbmopen_impl(PyObject *module, PyObject *filename, const char *flags,$/;" f file: +dbmtype_spec Modules/_dbmmodule.c /^static PyType_Spec dbmtype_spec = {$/;" v file: +dbmtype_spec_slots Modules/_dbmmodule.c /^static PyType_Slot dbmtype_spec_slots[] = {$/;" v file: +dchars Lib/tkinter/__init__.py /^ def dchars(self, *args):$/;" m class:Canvas +dct Lib/test/crashers/underlying_dict.py /^ dct = r[0]$/;" v +dct Lib/test/crashers/underlying_dict.py /^ dct = r[1]$/;" v +dd Lib/test/test_inspect.py /^ dd = NoBool()$/;" v class:TestClassesAndFunctions.test_classify_overrides_bool.HasNB +dd Lib/test/test_inspect.py /^ dd = _BrokenDataDescriptor()$/;" v class:TestClassesAndFunctions.test_classify_newstyle.A +dd Lib/test/test_inspect.py /^ dd = _BrokenDataDescriptor()$/;" v class:TestClassesAndFunctions.test_getmembers_descriptors.A +de_instrument Python/instrumentation.c /^de_instrument(PyCodeObject *code, int i, int event)$/;" f file: +de_instrument_line Python/instrumentation.c /^de_instrument_line(PyCodeObject *code, int i)$/;" f file: +de_instrument_per_instruction Python/instrumentation.c /^de_instrument_per_instruction(PyCodeObject *code, int i)$/;" f file: +deactivate_current_config Lib/idlelib/configdialog.py /^ def deactivate_current_config(self):$/;" m class:ConfigDialog +deactivate_restore Lib/idlelib/parenmatch.py /^ def deactivate_restore(self):$/;" m class:ParenMatch +deadline Include/cpython/pytime.h /^PyAPI_FUNC(_PyTime_t) _PyDeadline_Get(_PyTime_t deadline);$/;" v +deadline Lib/test/support/hypothesis_helper.py /^ deadline=None,$/;" v +dealloc Lib/test/test_cppext/extension.cpp /^ static void dealloc(PyObject* o) {$/;" f class:VirtualPyObject +dealloc_extra Modules/_elementtree.c /^dealloc_extra(ElementObjectExtra *extra)$/;" f +deallocated Modules/_testcapimodule.c /^ int deallocated;$/;" m struct:__anon593 file: +debug Include/internal/pycore_gc.h /^ int debug;$/;" m struct:_gc_runtime_state +debug Include/internal/pycore_pymem.h /^ } debug;$/;" m struct:_pymem_allocators typeref:struct:_pymem_allocators::__anon17 +debug Lib/doctest.py /^ def debug(self):$/;" m class:DocTestCase +debug Lib/doctest.py /^def debug(module, name, pm=False):$/;" f +debug Lib/ftplib.py /^ debug = set_debuglevel$/;" v class:FTP +debug Lib/http/cookiejar.py /^debug = False # set to True to enable debugging via the logging module$/;" v +debug Lib/idlelib/rpc.py /^ def debug(self, *args):$/;" m class:SocketIO +debug Lib/logging/__init__.py /^ def debug(self, msg, *args, **kwargs):$/;" m class:Logger +debug Lib/logging/__init__.py /^ def debug(self, msg, *args, **kwargs):$/;" m class:LoggerAdapter +debug Lib/logging/__init__.py /^def debug(msg, *args, **kwargs):$/;" f +debug Lib/multiprocessing/util.py /^def debug(msg, *args):$/;" f +debug Lib/nntplib.py /^ debug = set_debuglevel$/;" v class:NNTP +debug Lib/pipes.py /^ def debug(self, flag):$/;" m class:Template +debug Lib/tarfile.py /^ debug = 0 # May be set from 0 (no msgs) to 3 (all msgs)$/;" v class:TarFile +debug Lib/test/support/_hypothesis_stubs/__init__.py /^ debug = 3$/;" v class:Verbosity +debug Lib/test/support/asyncore.py /^ debug = False$/;" v class:dispatcher +debug Lib/test/test_pty.py /^ def debug(msg):$/;" f +debug Lib/tkinter/__init__.py /^ def debug(self, boolean=None):$/;" m class:Text +debug Lib/unittest/async_case.py /^ def debug(self):$/;" m class:IsolatedAsyncioTestCase +debug Lib/unittest/case.py /^ def debug(self):$/;" m class:TestCase +debug Lib/unittest/suite.py /^ def debug(self):$/;" m class:BaseTestSuite +debug Lib/unittest/suite.py /^ def debug(self):$/;" m class:TestSuite +debug Mac/Extras.install.py /^debug = 0$/;" v +debug PC/launcher.c /^debug(wchar_t * format, ...)$/;" f file: +debug PC/launcher2.c /^debug(wchar_t * format, ...)$/;" f +debug Parser/pegen.h /^ int debug;$/;" m struct:__anon657 +debug Parser/tokenizer.h /^ int debug;$/;" m struct:tok_state +debug Tools/c-analyzer/distutils/log.py /^ def debug(self, msg, *args):$/;" m class:Log +debug Tools/c-analyzer/distutils/log.py /^debug = _global_log.debug$/;" v +debugLevel Modules/expat/xmlparse.c /^ int debugLevel;$/;" m struct:accounting file: +debugLevel Modules/expat/xmlparse.c /^ int debugLevel;$/;" m struct:entity_stats file: +debug_alloc_api_t Include/internal/pycore_pymem.h /^} debug_alloc_api_t;$/;" t typeref:struct:__anon15 +debug_build Lib/test/test_embed.py /^def debug_build(program):$/;" f +debug_cycle Modules/gcmodule.c /^debug_cycle(const char *msg, PyObject *op)$/;" f file: +debug_info Lib/multiprocessing/managers.py /^ def debug_info(self, c):$/;" m class:Server +debug_menu_postcommand Lib/idlelib/pyshell.py /^ def debug_menu_postcommand(self):$/;" m class:PyShell +debug_script Lib/doctest.py /^def debug_script(src, pm=False, globs=None):$/;" f +debug_src Lib/doctest.py /^def debug_src(src, pm=False, globs=None):$/;" f +debugger Lib/idlelib/pyshell.py /^ debugger = None$/;" v class:ModifiedInterpreter +debugging Lib/ftplib.py /^ debugging = 0$/;" v class:FTP +debugging Lib/idlelib/debugger_r.py /^debugging = 0$/;" v +debugging Lib/idlelib/rpc.py /^ debugging = False$/;" v class:RPCClient +debugging Lib/idlelib/rpc.py /^ debugging = False$/;" v class:RPCHandler +debugging_server Lib/test/test_smtplib.py /^def debugging_server(serv, serv_evt, client_evt):$/;" f +debuglevel Lib/http/client.py /^ debuglevel = 0$/;" v class:HTTPConnection +debuglevel Lib/smtplib.py /^ debuglevel = 0$/;" v class:SMTP +dec Lib/lib2to3/fixes/fix_operator.py /^ def dec(f):$/;" f function:invocation +dec Lib/test/_test_atexit.py /^ def dec():$/;" f function:GeneralTest.test_unregister +dec Lib/test/ann_module.py /^def dec(func):$/;" f +dec Lib/test/support/__init__.py /^ def dec(*args, **kwargs):$/;" f function:system_must_validate_cert +dec Lib/test/test_scope.py /^ def dec(self):$/;" m class:ScopeTests.testNonLocalMethod.f.c +dec Lib/test/test_scope.py /^ def dec():$/;" f function:ScopeTests.testNonLocalFunction.f +dec Lib/test/test_threading.py /^ def dec(self):$/;" m class:Counter +dec Modules/_decimal/_decimal.c /^ mpd_t dec;$/;" m struct:__anon349 file: +dec_addstatus Modules/_decimal/_decimal.c /^dec_addstatus(PyObject *context, uint32_t status)$/;" f file: +dec_alloc Modules/_decimal/_decimal.c 1921;" d file: +dec_apply Modules/_decimal/_decimal.c /^dec_apply(PyObject *v, PyObject *context)$/;" f file: +dec_as_integer_ratio Modules/_decimal/_decimal.c /^dec_as_integer_ratio(PyObject *self, PyObject *args UNUSED)$/;" f file: +dec_as_long Modules/_decimal/_decimal.c /^dec_as_long(PyObject *dec, PyObject *context, int round)$/;" f file: +dec_canonical Modules/_decimal/_decimal.c /^dec_canonical(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_ceil Modules/_decimal/_decimal.c /^dec_ceil(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_complex Modules/_decimal/_decimal.c /^dec_complex(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_conjugate Modules/_decimal/_decimal.c /^dec_conjugate(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_copy Modules/_decimal/_decimal.c /^dec_copy(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_dealloc Modules/_decimal/_decimal.c /^dec_dealloc(PyObject *dec)$/;" f file: +dec_error Lib/test/test_traceback.py /^ def dec_error(func):$/;" f function:TracebackErrorLocationCaretTestBase.test_decorator_application_lineno_correct +dec_fine Lib/test/test_traceback.py /^ def dec_fine(func):$/;" f function:TracebackErrorLocationCaretTestBase.test_decorator_application_lineno_correct +dec_flags Modules/_io/textio.c /^ int dec_flags;$/;" m struct:__anon438 file: +dec_floor Modules/_decimal/_decimal.c /^dec_floor(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_format Modules/_decimal/_decimal.c /^dec_format(PyObject *dec, PyObject *args)$/;" f file: +dec_from_float Modules/_decimal/_decimal.c /^dec_from_float(PyObject *type, PyObject *pyfloat)$/;" f file: +dec_from_long Modules/_decimal/_decimal.c /^dec_from_long(PyTypeObject *type, PyObject *v,$/;" f file: +dec_getsets Modules/_decimal/_decimal.c /^static PyGetSetDef dec_getsets [] =$/;" v file: +dec_hash Modules/_decimal/_decimal.c /^dec_hash(PyDecObject *self)$/;" f file: +dec_imag Modules/_decimal/_decimal.c /^dec_imag(PyObject *self UNUSED, void *closure UNUSED)$/;" f file: +dec_methods Modules/_decimal/_decimal.c /^static PyMethodDef dec_methods [] =$/;" v file: +dec_mpd_adjexp Modules/_decimal/_decimal.c /^dec_mpd_adjexp(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_mpd_class Modules/_decimal/_decimal.c /^dec_mpd_class(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +dec_mpd_qcopy_abs Modules/_decimal/_decimal.c /^dec_mpd_qcopy_abs(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_mpd_qcopy_negate Modules/_decimal/_decimal.c /^dec_mpd_qcopy_negate(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_mpd_qcopy_sign Modules/_decimal/_decimal.c /^dec_mpd_qcopy_sign(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +dec_mpd_qquantize Modules/_decimal/_decimal.c /^dec_mpd_qquantize(PyObject *v, PyObject *args, PyObject *kwds)$/;" f file: +dec_mpd_radix Modules/_decimal/_decimal.c /^dec_mpd_radix(PyObject *self UNUSED, PyObject *dummy UNUSED)$/;" f file: +dec_mpd_same_quantum Modules/_decimal/_decimal.c /^dec_mpd_same_quantum(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +dec_mpd_to_eng Modules/_decimal/_decimal.c /^dec_mpd_to_eng(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +dec_new Modules/_decimal/_decimal.c /^dec_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +dec_number_methods Modules/_decimal/_decimal.c /^static PyNumberMethods dec_number_methods =$/;" v file: +dec_real Modules/_decimal/_decimal.c /^dec_real(PyObject *self, void *closure UNUSED)$/;" f file: +dec_reduce Modules/_decimal/_decimal.c /^dec_reduce(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +dec_replace_fillchar Modules/_decimal/_decimal.c /^dec_replace_fillchar(char *dest)$/;" f file: +dec_repr Modules/_decimal/_decimal.c /^dec_repr(PyObject *dec)$/;" f file: +dec_richcompare Modules/_decimal/_decimal.c /^dec_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +dec_signal_string Modules/_decimal/_decimal.c /^static const char *dec_signal_string[MPD_NUM_FLAGS] = {$/;" v file: +dec_sizeof Modules/_decimal/_decimal.c /^dec_sizeof(PyObject *v, PyObject *dummy UNUSED)$/;" f file: +dec_str Modules/_decimal/_decimal.c /^dec_str(PyObject *dec)$/;" f file: +dec_strdup Modules/_decimal/_decimal.c /^dec_strdup(const char *src, Py_ssize_t size)$/;" f file: +dec_traphandler Modules/_decimal/_decimal.c /^dec_traphandler(mpd_context_t *ctx UNUSED) \/* GCOV_NOT_REACHED *\/$/;" f file: +dec_trunc Modules/_decimal/_decimal.c /^dec_trunc(PyObject *self, PyObject *dummy UNUSED)$/;" f file: +decide_itimer_count Lib/test/test_signal.py /^ def decide_itimer_count(self):$/;" m class:StressTest +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CArithmeticOperatorsTest +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CContextAPItests +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CContextFlags +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CContextInputValidation +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CContextSubclassing +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CContextWithStatement +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CCoverage +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CExplicitConstructionTest +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CFormatTest +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CImplicitConstructionTest +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CPythonAPItests +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CSpecialContexts +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CThreadingTest +decimal Lib/test/test_decimal.py /^ decimal = C$/;" v class:CUsabilityTest +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyArithmeticOperatorsTest +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyContextAPItests +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyContextFlags +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyContextInputValidation +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyContextSubclassing +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyContextWithStatement +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyCoverage +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyExplicitConstructionTest +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyFormatTest +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyImplicitConstructionTest +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyPythonAPItests +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PySpecialContexts +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyThreadingTest +decimal Lib/test/test_decimal.py /^ decimal = P$/;" v class:PyUsabilityTest +decimal Lib/test/test_functools.py /^decimal = import_helper.import_fresh_module('decimal', fresh=['_decimal'])$/;" v +decimal Objects/unicodectype.c /^ const unsigned char decimal;$/;" m struct:__anon701 file: +decimal Tools/cases_generator/lexer.py /^decimal = decimal_digits + suffix$/;" v +decimal_changed Modules/unicodedata.c /^ const unsigned char decimal_changed;$/;" m struct:change_record file: +decimal_digits Tools/cases_generator/lexer.py /^decimal_digits = r'(0|[1-9][0-9]*)'$/;" v +decimal_part Modules/_decimal/tests/randdec.py /^def decimal_part(maxprec):$/;" f +decimal_point Python/formatter_unicode.c /^ PyObject *decimal_point;$/;" m struct:__anon675 file: +decimal_round Lib/test/test_time.py /^ def decimal_round(self, x):$/;" m class:CPyTimeTestCase +decimal_using_bytecode Tools/importbench/importbench.py /^decimal_using_bytecode = _using_bytecode(decimal)$/;" v +decimal_wo_bytecode Tools/importbench/importbench.py /^decimal_wo_bytecode = _wo_bytecode(decimal)$/;" v +decimal_writing_bytecode Tools/importbench/importbench.py /^decimal_writing_bytecode = _writing_bytecode(decimal)$/;" v +decimalnl_long Lib/pickletools.py /^decimalnl_long = ArgumentDescriptor($/;" v +decimalnl_short Lib/pickletools.py /^decimalnl_short = ArgumentDescriptor($/;" v +decinit Modules/cjkcodecs/multibytecodec.h /^ mbdecodeinit_func decinit;$/;" m struct:_multibyte_codec +decl Tools/c-analyzer/c_analyzer/info.py /^ def decl(self):$/;" m class:Analyzed +declClose Modules/expat/xmlrole.c /^ declClose, error;$/;" v file: +declClose Modules/expat/xmlrole.c /^declClose(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +declaration Tools/clinic/clinic.py /^ def declaration(self, *, in_parser=False):$/;" m class:CConverter +declare Tools/cases_generator/generate_cases.py /^ def declare(self, dst: StackEffect, src: StackEffect | None):$/;" m class:Formatter +declare Tools/clinic/clinic.py /^ def declare(self, data: CRenderData) -> None:$/;" m class:CReturnConverter +declare_parser Tools/clinic/clinic.py /^def declare_parser(f, *, hasformat=False):$/;" f +declare_with_name Lib/test/test_ctypes/test_structures.py /^ def declare_with_name(name):$/;" f function:StructureTestCase.test_invalid_name +decmap Modules/cjkcodecs/cjkcodecs.h /^ const struct dbcs_index *decmap;$/;" m struct:dbcs_map typeref:struct:dbcs_map::dbcs_index +deco Lib/test/inspect_fodder2.py /^ def deco(f):$/;" f function:deco_factory +deco Lib/test/test_curses.py /^ def deco(test):$/;" f function:requires_curses_window_meth +deco Lib/test/test_decorators.py /^ def deco(func):$/;" f function:TestDecorators.test_order.callnum +deco Lib/test/test_import/__init__.py /^ def deco(func):$/;" f function:no_rerun +deco Lib/test/test_tkinter/support.py /^ def deco(test):$/;" f function:requires_tk +deco_factory Lib/test/inspect_fodder2.py /^def deco_factory(**kwargs):$/;" f +decode Lib/_pyio.py /^ def decode(self, input, final=False):$/;" m class:IncrementalNewlineDecoder +decode Lib/base64.py /^def decode(input, output):$/;" f +decode Lib/codecs.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/codecs.py /^ def decode(self, input, errors='strict'):$/;" m class:StreamReader +decode Lib/codecs.py /^ def decode(self, input, final=False):$/;" m class:BufferedIncrementalDecoder +decode Lib/codecs.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/difflib.py /^ def decode(s):$/;" f function:diff_bytes +decode Lib/email/_encoded_words.py /^def decode(ew):$/;" f +decode Lib/email/base64mime.py /^def decode(string):$/;" f +decode Lib/email/quoprimime.py /^def decode(encoded, eol=NL):$/;" f +decode Lib/encodings/ascii.py /^ decode = codecs.ascii_decode$/;" v class:Codec +decode Lib/encodings/ascii.py /^ decode = codecs.ascii_encode$/;" v class:StreamConverter +decode Lib/encodings/ascii.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/base64_codec.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/base64_codec.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/big5.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/big5hkscs.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/bz2_codec.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/bz2_codec.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/charmap.py /^ decode = codecs.charmap_decode$/;" v class:Codec +decode Lib/encodings/charmap.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/charmap.py /^ def decode(self,input,errors='strict'):$/;" m class:StreamReader +decode Lib/encodings/cp037.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp037.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1006.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1006.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1026.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1026.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1125.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1125.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1140.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1140.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1250.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1250.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1251.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1251.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1252.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1252.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1253.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1253.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1254.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1254.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1255.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1255.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1256.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1256.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1257.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1257.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp1258.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp1258.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp273.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp273.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp424.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp424.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp437.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp437.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp500.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp500.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp720.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp720.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp737.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp737.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp775.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp775.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp850.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp850.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp852.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp852.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp855.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp855.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp856.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp856.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp857.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp857.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp858.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp858.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp860.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp860.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp861.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp861.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp862.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp862.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp863.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp863.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp864.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp864.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp865.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp865.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp866.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp866.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp869.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp869.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp874.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp874.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp875.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/cp875.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/cp932.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/cp949.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/cp950.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/euc_jis_2004.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/euc_jisx0213.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/euc_jp.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/euc_kr.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/gb18030.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/gb2312.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/gbk.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/hex_codec.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/hex_codec.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/hp_roman8.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/hp_roman8.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/hz.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/idna.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso2022_jp.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/iso2022_jp_1.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/iso2022_jp_2.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/iso2022_jp_2004.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/iso2022_jp_3.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/iso2022_jp_ext.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/iso2022_kr.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/iso8859_1.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_1.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_10.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_10.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_11.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_11.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_13.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_13.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_14.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_14.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_15.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_15.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_16.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_16.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_2.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_2.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_3.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_3.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_4.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_4.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_5.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_5.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_6.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_6.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_7.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_7.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_8.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_8.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/iso8859_9.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/iso8859_9.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/johab.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/koi8_r.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/koi8_r.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/koi8_t.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/koi8_t.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/koi8_u.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/koi8_u.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/kz1048.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/kz1048.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/latin_1.py /^ decode = codecs.latin_1_decode$/;" v class:Codec +decode Lib/encodings/latin_1.py /^ decode = codecs.latin_1_encode$/;" v class:StreamConverter +decode Lib/encodings/latin_1.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_arabic.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_arabic.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_croatian.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_croatian.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_cyrillic.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_cyrillic.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_farsi.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_farsi.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_greek.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_greek.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_iceland.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_iceland.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_latin2.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_latin2.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_roman.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_roman.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_romanian.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_romanian.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mac_turkish.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/mac_turkish.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/mbcs.py /^ decode = mbcs_decode$/;" v class:StreamReader +decode Lib/encodings/mbcs.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/oem.py /^ decode = oem_decode$/;" v class:StreamReader +decode Lib/encodings/oem.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/palmos.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/palmos.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/ptcp154.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/ptcp154.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/punycode.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/punycode.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/quopri_codec.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/quopri_codec.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/raw_unicode_escape.py /^ decode = codecs.raw_unicode_escape_decode$/;" v class:Codec +decode Lib/encodings/raw_unicode_escape.py /^ def decode(self, input, errors='strict'):$/;" m class:StreamReader +decode Lib/encodings/rot_13.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/rot_13.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/shift_jis.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/shift_jis_2004.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/shift_jisx0213.py /^ decode = codec.decode$/;" v class:Codec +decode Lib/encodings/tis_620.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/tis_620.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/undefined.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/undefined.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/encodings/unicode_escape.py /^ decode = codecs.unicode_escape_decode$/;" v class:Codec +decode Lib/encodings/unicode_escape.py /^ def decode(self, input, errors='strict'):$/;" m class:StreamReader +decode Lib/encodings/utf_16.py /^ def decode(self, input, errors='strict'):$/;" m class:StreamReader +decode Lib/encodings/utf_16.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_16_be.py /^ decode = codecs.utf_16_be_decode$/;" v class:StreamReader +decode Lib/encodings/utf_16_be.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_16_le.py /^ decode = codecs.utf_16_le_decode$/;" v class:StreamReader +decode Lib/encodings/utf_16_le.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_32.py /^ def decode(self, input, errors='strict'):$/;" m class:StreamReader +decode Lib/encodings/utf_32.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_32_be.py /^ decode = codecs.utf_32_be_decode$/;" v class:StreamReader +decode Lib/encodings/utf_32_be.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_32_le.py /^ decode = codecs.utf_32_le_decode$/;" v class:StreamReader +decode Lib/encodings/utf_32_le.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_7.py /^ decode = codecs.utf_7_decode$/;" v class:StreamReader +decode Lib/encodings/utf_7.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_8.py /^ decode = codecs.utf_8_decode$/;" v class:StreamReader +decode Lib/encodings/utf_8.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/utf_8_sig.py /^ def decode(self, input, errors='strict'):$/;" m class:StreamReader +decode Lib/encodings/utf_8_sig.py /^def decode(input, errors='strict'):$/;" f +decode Lib/encodings/uu_codec.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/uu_codec.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/encodings/zlib_codec.py /^ def decode(self, input, errors='strict'):$/;" m class:Codec +decode Lib/encodings/zlib_codec.py /^ def decode(self, input, final=False):$/;" m class:IncrementalDecoder +decode Lib/imaplib.py /^ def decode(self, inp):$/;" m class:_Authenticator +decode Lib/json/decoder.py /^ def decode(self, s, _w=WHITESPACE.match):$/;" m class:JSONDecoder +decode Lib/os.py /^ def decode(value):$/;" f function:_createenviron +decode Lib/quopri.py /^def decode(input, output, header=False):$/;" f +decode Lib/test/test_codecs.py /^ def decode(self, encoded, errors="strict"):$/;" m class:LocaleCodecTest +decode Lib/test/test_io.py /^ def decode(self, input, final=False):$/;" m class:StatefulIncrementalDecoder +decode Lib/test/test_plistlib.py /^ def decode(*objects, offset_size=1, ref_size=1):$/;" m class:TestBinaryPlistlib +decode Lib/test/testcodec.py /^ def decode(self,input,errors='strict'):$/;" m class:Codec +decode Lib/urllib/parse.py /^ def decode(self, encoding='ascii', errors='strict'):$/;" m class:_ResultMixinBytes +decode Lib/uu.py /^def decode(in_file, out_file=None, mode=None, quiet=False):$/;" f +decode Lib/xmlrpc/client.py /^ def decode(self, data):$/;" m class:Binary +decode Lib/xmlrpc/client.py /^ def decode(self, data):$/;" m class:DateTime +decode Modules/cjkcodecs/multibytecodec.h /^ mbdecode_func decode;$/;" m struct:_multibyte_codec +decode Modules/readline.c /^decode(const char *s)$/;" f file: +decode1 Lib/test/test_unicode.py /^ def decode1(input, errors="strict"):$/;" f function:search_function +decode2 Lib/test/test_unicode.py /^ def decode2(input, errors="strict"):$/;" f function:search_function +decode_ascii Python/fileutils.c /^decode_ascii(const char *arg, wchar_t **wstr, size_t *wlen,$/;" f file: +decode_b Lib/email/_encoded_words.py /^def decode_b(encoded):$/;" f +decode_bytes_with_escapes Parser/string_parser.c /^decode_bytes_with_escapes(Parser *p, const char *s, Py_ssize_t len, Token *t)$/;" f file: +decode_code_page_errors Objects/unicodeobject.c /^decode_code_page_errors(UINT code_page,$/;" f file: +decode_code_page_flags Objects/unicodeobject.c /^decode_code_page_flags(UINT code_page)$/;" f file: +decode_code_page_stateful Objects/unicodeobject.c /^decode_code_page_stateful(int code_page,$/;" f file: +decode_code_page_strict Objects/unicodeobject.c /^decode_code_page_strict(UINT code_page,$/;" f file: +decode_current_locale Python/fileutils.c /^decode_current_locale(const char* arg, wchar_t **wstr, size_t *wlen,$/;" f file: +decode_frozen_data Tools/build/deepfreeze.py /^def decode_frozen_data(source: str) -> types.CodeType:$/;" f +decode_generalized_number Lib/encodings/punycode.py /^def decode_generalized_number(extended, extpos, bias, errors):$/;" f +decode_header Lib/email/header.py /^def decode_header(header):$/;" f +decode_header Lib/nntplib.py /^def decode_header(header_str):$/;" f +decode_interrupthook Lib/idlelib/rpc.py /^ def decode_interrupthook(self):$/;" m class:SocketIO +decode_interrupthook Lib/idlelib/run.py /^ def decode_interrupthook(self):$/;" m class:MyHandler +decode_linetable Objects/codeobject.c /^decode_linetable(PyCodeObject *code)$/;" f file: +decode_locale_ex Modules/_testinternalcapi.c /^decode_locale_ex(PyObject *self, PyObject *args)$/;" f file: +decode_long Lib/pickle.py /^def decode_long(data):$/;" f +decode_map Modules/cjkcodecs/cjkcodecs.h /^typedef struct dbcs_index decode_map;$/;" t typeref:struct:dbcs_index +decode_params Lib/email/utils.py /^def decode_params(params):$/;" f +decode_q Lib/email/_encoded_words.py /^def decode_q(encoded):$/;" f +decode_request_content Lib/xmlrpc/server.py /^ def decode_request_content(self, data):$/;" m class:SimpleXMLRPCRequestHandler +decode_rfc2231 Lib/email/utils.py /^def decode_rfc2231(s):$/;" f +decode_source Lib/importlib/_bootstrap_external.py /^def decode_source(source_bytes):$/;" f +decode_stderr Lib/test/test_capi/test_misc.py /^def decode_stderr(err):$/;" f +decode_str Parser/tokenizer.c /^decode_str(const char *input, int single, struct tok_state *tok, int preserve_crlf)$/;" f file: +decode_test_result Lib/test/libregrtest/runtest_mp.py /^def decode_test_result(d: dict[str, Any]) -> TestResult | dict[str, Any]:$/;" f +decode_to_bytes Lib/test/test_codecs.py /^ def decode_to_bytes(*args, **kwds):$/;" f function:ExceptionNotesTest.test_unflagged_non_text_codec_handling +decode_to_dict Modules/getpath.c /^decode_to_dict(PyObject *dict, const char *key, const char *s)$/;" f file: +decode_unicode_with_escapes Parser/string_parser.c /^decode_unicode_with_escapes(Parser *parser, const char *s, size_t len, Token *t)$/;" f file: +decode_utf8 Parser/string_parser.c /^decode_utf8(const char **sPtr, const char *end)$/;" f file: +decodebytes Lib/base64.py /^def decodebytes(s):$/;" f +decoded Lib/test/test_os.py /^ decoded = os_helper.TESTFN$/;" v class:OSErrorTests.setUp.Str +decoded Lib/test/test_os.py /^ decoded = os_helper.TESTFN_UNENCODABLE$/;" v class:OSErrorTests.setUp.Str +decoded_chars Modules/_io/textio.c /^ PyObject *decoded_chars; \/* buffer for text returned from decoder *\/$/;" m struct:textio file: +decoded_chars_used Modules/_io/textio.c /^ Py_ssize_t decoded_chars_used; \/* offset into _decoded_chars for read() *\/$/;" m struct:textio file: +decoder Modules/_io/stringio.c /^ PyObject *decoder;$/;" m struct:__anon433 file: +decoder Modules/_io/textio.c /^ PyObject *decoder;$/;" m struct:nldecoder_object file: +decoder Modules/_io/textio.c /^ PyObject *decoder;$/;" m struct:textio file: +decoder Modules/cjkcodecs/_codecs_iso2022.c /^ iso2022_decode_func decoder;$/;" m struct:iso2022_designation file: +decoder_append_pending Modules/cjkcodecs/multibytecodec.c /^decoder_append_pending(MultibyteStatefulDecoderContext *ctx,$/;" f file: +decoder_feed_buffer Modules/cjkcodecs/multibytecodec.c /^decoder_feed_buffer(MultibyteStatefulDecoderContext *ctx,$/;" f file: +decoder_prepare_buffer Modules/cjkcodecs/multibytecodec.c /^decoder_prepare_buffer(MultibyteDecodeBuffer *buf, const char *data,$/;" f file: +decoder_slots Modules/cjkcodecs/multibytecodec.c /^static PyType_Slot decoder_slots[] = {$/;" v file: +decoder_spec Modules/cjkcodecs/multibytecodec.c /^static PyType_Spec decoder_spec = {$/;" v file: +decoder_type Modules/cjkcodecs/multibytecodec.c /^ PyTypeObject *decoder_type;$/;" m struct:__anon321 file: +decoderesponse Lib/idlelib/rpc.py /^ def decoderesponse(self, response):$/;" m class:SocketIO +decodestring Lib/email/base64mime.py /^decodestring = decode$/;" v +decodestring Lib/email/quoprimime.py /^decodestring = decode$/;" v +decodestring Lib/quopri.py /^def decodestring(s, header=False):$/;" f +decoding_buffer Parser/tokenizer.h /^ PyObject *decoding_buffer;$/;" m struct:tok_state +decoding_erred Parser/tokenizer.h /^ int decoding_erred; \/* whether erred in decoding *\/$/;" m struct:tok_state +decoding_map Lib/encodings/cp1125.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp437.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp737.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp775.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp850.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp852.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp855.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp857.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp858.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp860.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp861.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp862.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp863.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp864.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp865.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp866.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/cp869.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/encodings/mac_arabic.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_map Lib/test/testcodec.py /^decoding_map = codecs.make_identity_dict(range(256))$/;" v +decoding_readline Parser/tokenizer.h /^ PyObject *decoding_readline; \/* open(...).readline *\/$/;" m struct:tok_state +decoding_state Parser/tokenizer.h /^ enum decoding_state decoding_state;$/;" m struct:tok_state typeref:enum:tok_state::decoding_state +decoding_state Parser/tokenizer.h /^enum decoding_state {$/;" g +decoding_table Lib/encodings/cp037.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1006.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1026.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1125.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1140.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1250.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1251.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1252.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1253.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1254.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1255.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1256.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1257.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp1258.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp273.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp424.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp437.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp500.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp720.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp737.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp775.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp850.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp852.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp855.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp856.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp857.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp858.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp860.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp861.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp862.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp863.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp864.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp865.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp866.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp869.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp874.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/cp875.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/hp_roman8.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_1.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_10.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_11.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_13.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_14.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_15.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_16.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_2.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_3.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_4.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_5.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_6.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_7.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_8.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/iso8859_9.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/koi8_r.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/koi8_t.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/koi8_u.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/kz1048.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_arabic.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_croatian.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_cyrillic.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_farsi.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_greek.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_iceland.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_latin2.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_roman.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_romanian.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/mac_turkish.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/palmos.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/ptcp154.py /^decoding_table = ($/;" v +decoding_table Lib/encodings/tis_620.py /^decoding_table = ($/;" v +decomp_data Modules/unicodedata_db.h /^static const unsigned int decomp_data[] = {$/;" v +decomp_index1 Modules/unicodedata_db.h /^static const unsigned char decomp_index1[] = {$/;" v +decomp_index2 Modules/unicodedata_db.h /^static const unsigned short decomp_index2[] = {$/;" v +decomp_prefix Modules/unicodedata_db.h /^static const char *decomp_prefix[] = {$/;" v +decompress Lib/bz2.py /^def decompress(data):$/;" f +decompress Lib/gzip.py /^def decompress(data):$/;" f +decompress Lib/lzma.py /^def decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None):$/;" f +decompress Lib/zipfile/__init__.py /^ def decompress(self, data):$/;" m class:LZMADecompressor +decompress Modules/_bz2module.c /^decompress(BZ2Decompressor *d, char *data, size_t len, Py_ssize_t max_length)$/;" f file: +decompress Modules/_lzmamodule.c /^decompress(Decompressor *d, uint8_t *data, size_t len, Py_ssize_t max_length)$/;" f file: +decompress Modules/zlibmodule.c /^decompress(ZlibDecompressor *self, uint8_t *data,$/;" f file: +decompress_buf Modules/_bz2module.c /^decompress_buf(BZ2Decompressor *d, Py_ssize_t max_length)$/;" f file: +decompress_buf Modules/_lzmamodule.c /^decompress_buf(Decompressor *d, Py_ssize_t max_length)$/;" f file: +decompress_buf Modules/zlibmodule.c /^decompress_buf(ZlibDecompressor *self, Py_ssize_t max_length)$/;" f file: +decompressor Lib/test/test_tarfile.py /^ decompressor = None$/;" v class:StreamWriteTest +decompressor Lib/test/test_tarfile.py /^ decompressor = bz2.BZ2Decompressor if bz2 else None$/;" v class:Bz2StreamWriteTest +decompressor Lib/test/test_tarfile.py /^ decompressor = lzma.LZMADecompressor if lzma else None$/;" v class:LzmaStreamWriteTest +decorate Lib/test/test_contextlib.py /^ def decorate(func):$/;" f function:._create_contextmanager_attribs.attribs +decorate Lib/test/test_contextlib_async.py /^ def decorate(func):$/;" f function:AsyncContextManagerTestCase._create_contextmanager_attribs.attribs +decorate Lib/test/test_decorators.py /^ def decorate(func):$/;" f function:TestDecorators.test_argforms.noteargs +decorate Lib/test/test_decorators.py /^ def decorate(func):$/;" f function:TestDecorators.test_eval_order.make_decorator +decorate Lib/test/test_decorators.py /^ def decorate(func):$/;" f function:MiscDecorators.author +decorate Lib/test/test_decorators.py /^ def decorate(func):$/;" f function:countcalls +decorate Lib/test/test_decorators.py /^ def decorate(func):$/;" f function:dbcheck +decorate Lib/test/test_decorators.py /^ def decorate(func):$/;" f function:funcattrs +decorate Tools/iobench/iobench.py /^ def decorate(f):$/;" f function:with_open_mode +decorate Tools/iobench/iobench.py /^ def decorate(f):$/;" f function:with_sizes +decorate_async_callable Lib/unittest/mock.py /^ def decorate_async_callable(self, f):$/;" m class:_patch_dict +decorate_async_callable Lib/unittest/mock.py /^ def decorate_async_callable(self, func):$/;" m class:_patch +decorate_callable Lib/unittest/mock.py /^ def decorate_callable(self, f):$/;" m class:_patch_dict +decorate_callable Lib/unittest/mock.py /^ def decorate_callable(self, func):$/;" m class:_patch +decorate_class Lib/unittest/mock.py /^ def decorate_class(self, klass):$/;" m class:_patch +decorate_class Lib/unittest/mock.py /^ def decorate_class(self, klass):$/;" m class:_patch_dict +decorated_classmethod Lib/test/test_functools.py /^ def decorated_classmethod(cls, arg: int) -> str:$/;" m class:TestSingleDispatch.test_double_wrapped_methods.WithSingleDispatch +decorated_classmethod Lib/test/test_functools.py /^ def decorated_classmethod(cls, arg: int) -> str:$/;" m class:TestSingleDispatch.test_double_wrapped_methods.WithoutSingleDispatch +decorated_fxn Tools/patchcheck/patchcheck.py /^ def decorated_fxn(fxn):$/;" f function:status +decorating_function Lib/functools.py /^ def decorating_function(user_function):$/;" f function:lru_cache +decorating_function Lib/reprlib.py /^ def decorating_function(user_function):$/;" f function:recursive_repr +decoration_helper Lib/unittest/mock.py /^ def decoration_helper(self, patched, args, keywargs):$/;" m class:_patch +decorator Lib/idlelib/idle_test/tkinter_testing_utils.py /^ def decorator(test_method):$/;" f function:run_in_tk_mainloop +decorator Lib/signal.py /^ def decorator(wrapper):$/;" f function:_wraps +decorator Lib/test/_test_multiprocessing.py /^ def decorator(test_item):$/;" f function:only_run_in_spawn_testsuite +decorator Lib/test/inspect_fodder2.py /^def decorator(func):$/;" f +decorator Lib/test/support/__init__.py /^ def decorator(f):$/;" f function:bigmemtest +decorator Lib/test/support/__init__.py /^ def decorator(func):$/;" f function:requires_mac_ver +decorator Lib/test/support/__init__.py /^ def decorator(func):$/;" f function:run_with_tz +decorator Lib/test/support/_hypothesis_stubs/__init__.py /^ def decorator(f):$/;" f function:example +decorator Lib/test/support/_hypothesis_stubs/__init__.py /^ def decorator(f):$/;" f function:given +decorator Lib/test/support/hashlib_helper.py /^ def decorator(func_or_class):$/;" f function:requires_hashdigest +decorator Lib/test/support/threading_helper.py /^ def decorator(*args):$/;" f function:reap_threads +decorator Lib/test/support/warnings_helper.py /^ def decorator(test):$/;" f function:ignore_warnings +decorator Lib/test/test_decorators.py /^ def decorator(wrapped):$/;" f function:TestDecorators.test_wrapped_descriptor_inside_classmethod +decorator Lib/test/test_docxmlrpc.py /^ def decorator(func):$/;" f function:make_request_and_skipIf +decorator Lib/test/test_grammar.py /^ def decorator(func):$/;" f function:GrammarTests.test_async_await +decorator Lib/test/test_gzip.py /^ def decorator(function):$/;" f function:create_and_remove_directory +decorator Lib/test/test_inspect.py /^ def decorator(func):$/;" f function:TestSignatureObject.test_signature_on_decorated +decorator Lib/test/test_inspect.py /^ def decorator(func):$/;" f function:TestSignatureObject.test_signature_on_decorated_builtins +decorator Lib/test/test_largefile.py /^ def decorator(fun):$/;" f function:skip_no_disk_space +decorator Lib/test/test_sqlite3/test_userfunctions.py /^ def decorator(func):$/;" f function:with_tracebacks +decorator Lib/test/test_ssl.py /^ def decorator(func):$/;" f function:requires_tls_version +decorator Lib/test/test_sys_settrace.py /^ def decorator(arg):$/;" f function:TraceTestCase.test_class_creation_with_decorator.func +decorator Lib/test/test_sys_settrace.py /^ def decorator(func):$/;" f function:JumpTestCase.async_jump_test +decorator Lib/test/test_sys_settrace.py /^ def decorator(func):$/;" f function:JumpTestCase.jump_test +decorator Lib/test/test_tkinter/widget_tests.py /^ def decorator(cls):$/;" f function:add_standard_options +decorator Lib/test/test_unittest/test_skipping.py /^ def decorator(func):$/;" f function:Test_TestSkipping.test_decorated_skip +decorator Lib/test/test_xml_etree.py /^ def decorator(test):$/;" f function:checkwarnings +decorator Lib/test/test_xmlrpc.py /^ def decorator(func):$/;" f function:make_request_and_skipIf +decorator Lib/test/test_zipfile/_path/_test_params.py /^ def decorator(func):$/;" f function:parameterize +decorator Lib/typing.py /^ def decorator(cls_or_fn):$/;" f function:dataclass_transform +decorator Lib/typing.py /^ def decorator(func):$/;" f function:_tp_cache +decorator Lib/unittest/case.py /^ def decorator(test_item):$/;" f function:skip +decorator Tools/build/stable_abi.py /^ def decorator(cls):$/;" f function:itemclass +decorator Tools/c-analyzer/c_common/scriptutil.py /^ def decorator(func):$/;" f function:set_command +decorator1 Lib/test/test_trace.py /^ def decorator1(f):$/;" f function:traced_decorated_function +decorator2 Lib/test/test_trace.py /^ def decorator2(f):$/;" f function:traced_decorated_function.decorator_fabric +decorator_fabric Lib/test/test_trace.py /^ def decorator_fabric():$/;" f function:traced_decorated_function +decorator_list Include/internal/pycore_ast.h /^ asdl_expr_seq *decorator_list;$/;" m struct:_stmt::__anon51::__anon52 +decorator_list Include/internal/pycore_ast.h /^ asdl_expr_seq *decorator_list;$/;" m struct:_stmt::__anon51::__anon53 +decorator_list Include/internal/pycore_ast.h /^ asdl_expr_seq *decorator_list;$/;" m struct:_stmt::__anon51::__anon54 +decorator_list Include/internal/pycore_ast_state.h /^ PyObject *decorator_list;$/;" m struct:ast_state +decorators_rule Parser/parser.c /^decorators_rule(Parser *p)$/;" f file: +decorators_type Parser/parser.c 112;" d file: +decr Lib/test/test__xxinterpchannels.py /^ def decr(self):$/;" m class:ChannelState +decrease_size Lib/turtledemo/__main__.py /^ def decrease_size(self, dummy=None):$/;" m class:DemoWindow +decref Lib/multiprocessing/managers.py /^ def decref(self, c, ident):$/;" m class:Server +decref_freed_object Modules/_testcapimodule.c /^decref_freed_object(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +decrefs Include/pystats.h /^ uint64_t decrefs;$/;" m struct:_object_stats +decrement Lib/tkinter/tix.py /^ def decrement(self):$/;" m class:Control +decreset Modules/cjkcodecs/multibytecodec.h /^ mbdecodereset_func decreset;$/;" m struct:_multibyte_codec +decrypter Lib/zipfile/__init__.py /^ def decrypter(data):$/;" f function:_ZipDecrypter +dectuple_as_str Modules/_decimal/_decimal.c /^dectuple_as_str(PyObject *dectuple)$/;" f file: +dedent Lib/optparse.py /^ def dedent(self):$/;" m class:HelpFormatter +dedent Lib/test/test_email/test_inversion.py /^def dedent(bstr):$/;" f +dedent Lib/textwrap.py /^def dedent(text):$/;" f +dedent Tools/clinic/clinic.py /^ def dedent(self, line):$/;" m class:IndentStack +dedent_region_event Lib/idlelib/format.py /^ def dedent_region_event(self, event=None):$/;" m class:FormatRegion +deduce_unreachable Modules/gcmodule.c /^deduce_unreachable(PyGC_Head *base, PyGC_Head *unreachable) {$/;" f file: +dedup Lib/test/test_code.py /^def dedup(lst, prev=object()):$/;" f +dedupe Tools/peg_generator/pegen/parser_generator.py /^ def dedupe(self, name: str) -> str:$/;" m class:ParserGenerator +deep_eg Lib/test/test_traceback.py /^ def deep_eg(self):$/;" m class:TracebackFormatTests +deepcopy Lib/copy.py /^def deepcopy(x, memo=None, _nil=[]):$/;" f +deepcopy Modules/_elementtree.c /^deepcopy(elementtreestate *st, PyObject *object, PyObject *memo)$/;" f +deepcopy_obj Modules/_elementtree.c /^ PyObject *deepcopy_obj;$/;" m struct:__anon381 file: +deeper Lib/test/test_traceback.py /^ def deeper():$/;" f function:TestStack.test_walk_stack +deepvalues Lib/http/cookiejar.py /^def deepvalues(mapping):$/;" f +def_bad_large Modules/_testmultiphase.c /^static PyModuleDef def_bad_large = TEST_MODULE_DEF($/;" v file: +def_bad_negative Modules/_testmultiphase.c /^static PyModuleDef def_bad_negative = TEST_MODULE_DEF($/;" v file: +def_create_int_with_state Modules/_testmultiphase.c /^static PyModuleDef def_create_int_with_state = { \\$/;" v file: +def_create_null Modules/_testmultiphase.c /^static PyModuleDef def_create_null = TEST_MODULE_DEF($/;" v file: +def_create_raise Modules/_testmultiphase.c /^static PyModuleDef def_create_raise = TEST_MODULE_DEF($/;" v file: +def_create_unreported_exception Modules/_testmultiphase.c /^static PyModuleDef def_create_unreported_exception = TEST_MODULE_DEF($/;" v file: +def_exec_err Modules/_testmultiphase.c /^static PyModuleDef def_exec_err = TEST_MODULE_DEF($/;" v file: +def_exec_raise Modules/_testmultiphase.c /^static PyModuleDef def_exec_raise = TEST_MODULE_DEF($/;" v file: +def_exec_unreported_exception Modules/_testmultiphase.c /^static PyModuleDef def_exec_unreported_exception = TEST_MODULE_DEF($/;" v file: +def_meth_state_access Modules/_testmultiphase.c /^static PyModuleDef def_meth_state_access = {$/;" v file: +def_meth_state_access Modules/_testmultiphase.c /^static PyModuleDef def_meth_state_access;$/;" v file: +def_module_state_shared Modules/_testmultiphase.c /^static PyModuleDef def_module_state_shared = {$/;" v file: +def_multiple_create_slots Modules/_testmultiphase.c /^static PyModuleDef def_multiple_create_slots = TEST_MODULE_DEF($/;" v file: +def_multiple_multiple_interpreters_slots Modules/_testmultiphase.c /^static PyModuleDef def_multiple_multiple_interpreters_slots = TEST_MODULE_DEF($/;" v file: +def_negative_size Modules/_testmultiphase.c /^static PyModuleDef def_negative_size = { \\$/;" v file: +def_nonascii_kana Modules/_testmultiphase.c /^static PyModuleDef def_nonascii_kana = { \\$/;" v file: +def_nonascii_latin Modules/_testmultiphase.c /^static PyModuleDef def_nonascii_latin = { \\$/;" v file: +def_nonmodule Modules/_testmultiphase.c /^static PyModuleDef def_nonmodule = TEST_MODULE_DEF($/;" v file: +def_nonmodule Modules/_testmultiphase.c /^static PyModuleDef def_nonmodule;$/;" v file: +def_nonmodule_with_exec_slots Modules/_testmultiphase.c /^static PyModuleDef def_nonmodule_with_exec_slots = TEST_MODULE_DEF($/;" v file: +def_nonmodule_with_methods Modules/_testmultiphase.c /^static PyModuleDef def_nonmodule_with_methods = TEST_MODULE_DEF($/;" v file: +def_nonmodule_with_methods Modules/_testmultiphase.c /^static PyModuleDef def_nonmodule_with_methods;$/;" v file: +def_op Lib/opcode.py /^def def_op(name, op):$/;" f +default Lib/cmd.py /^ def default(self, line):$/;" m class:Cmd +default Lib/email/policy.py /^default = EmailPolicy()$/;" v +default Lib/http/server.py /^ default='HTTP\/1.0',$/;" v +default Lib/idlelib/scrolledlist.py /^ default = "(None)"$/;" v class:ScrolledList +default Lib/inspect.py /^ def default(self):$/;" m class:Parameter +default Lib/json/__init__.py /^ default=None,$/;" v +default Lib/json/encoder.py /^ def default(self, o):$/;" m class:JSONEncoder +default Lib/pdb.py /^ def default(self, line):$/;" m class:Pdb +default Lib/test/libregrtest/runtest_mp.py /^ def default(self, o: Any) -> dict[str, Any]:$/;" m class:EncodeTestResult +default Lib/test/libregrtest/runtest_mp.py /^ def default(self, o: Any) -> dict[str, Any]:$/;" m class:_EncodeWorkerJob +default Lib/test/test_genericalias.py /^ def default():$/;" f function:BaseTest.test_instantiate +default Lib/test/test_json/test_recursion.py /^ def default(self, o):$/;" m class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder +default Lib/test/test_json/test_recursion.py /^ def default(self, o):$/;" m class:TestRecursion.test_endless_recursion.EndlessJSONEncoder +default Modules/_decimal/tests/deccheck.py /^ def default(self, t):$/;" m class:SkipHandler +default Tools/build/check_extension_modules.py /^ default="_PYTHON_HOST_PLATFORM" in os.environ,$/;" v +default Tools/build/check_extension_modules.py /^ default=bool(os.environ.get("PYTHONSTRICTEXTENSIONBUILD")),$/;" v +default Tools/peg_generator/pegen/__main__.py /^ default="parse.py",$/;" v +default Tools/peg_generator/pegen/__main__.py /^ default=0,$/;" v +default Tools/peg_generator/scripts/benchmark.py /^ default="xxl",$/;" v +default Tools/peg_generator/scripts/grammar_grapher.py /^ default="exec",$/;" v +default Tools/ssl/multissltests.py /^ default='',$/;" v +default Tools/ssl/multissltests.py /^ default='tests',$/;" v +default Tools/ssl/multissltests.py /^ default=(),$/;" v +default Tools/ssl/multissltests.py /^ default=MULTISSL_DIR,$/;" v +default Tools/wasm/wasm_assets.py /^ default=pathlib.Path("\/usr\/local"),$/;" v +default Tools/wasm/wasm_build.py /^ default="build",$/;" v +default Tools/wasm/wasm_build.py /^ default=None,$/;" v +defaultAtts Modules/expat/xmlparse.c /^ DEFAULT_ATTRIBUTE *defaultAtts;$/;" m struct:__anon616 file: +defaultFile Lib/pdb.py /^ def defaultFile(self):$/;" m class:Pdb +defaultPrefix Modules/expat/xmlparse.c /^ PREFIX defaultPrefix;$/;" m struct:__anon617 file: +defaultTest Lib/test/test_unittest/test_program.py /^ defaultTest=['test.test_unittest', 'test.test_unittest2'],$/;" v class:Test_TestProgram.test_defaultTest_with_iterable.FakeRunner +defaultTest Lib/test/test_unittest/test_program.py /^ defaultTest = None$/;" v class:InitialisableProgram +defaultTestLoader Lib/unittest/loader.py /^defaultTestLoader = TestLoader()$/;" v +defaultTestResult Lib/test/test_unittest/test_case.py /^ def defaultTestResult(self):$/;" m class:Test_TestCase.test_run__uses_defaultTestResult.Foo +defaultTestResult Lib/test/test_unittest/test_case.py /^ def defaultTestResult(self):$/;" m class:Test_TestCase.test_run_call_order__error_in_setUp_default_result.Foo +defaultTestResult Lib/test/test_unittest/test_case.py /^ def defaultTestResult(self):$/;" m class:Test_TestCase.test_run_call_order__error_in_tearDown_default_result.Foo +defaultTestResult Lib/test/test_unittest/test_case.py /^ def defaultTestResult(self):$/;" m class:Test_TestCase.test_run_call_order__error_in_test_default_result.Foo +defaultTestResult Lib/test/test_unittest/test_case.py /^ def defaultTestResult(self):$/;" m class:Test_TestCase.test_run_call_order__failure_in_test_default_result.Foo +defaultTestResult Lib/test/test_unittest/test_case.py /^ def defaultTestResult(self):$/;" m class:Test_TestCase.test_run_call_order_default_result.Foo +defaultTestResult Lib/test/test_unittest/test_skipping.py /^ def defaultTestResult(self):$/;" m class:Test_TestSkipping.test_skipping_decorators.Foo +defaultTestResult Lib/test/test_unittest/test_skipping.py /^ def defaultTestResult(self):$/;" m class:Test_TestSkipping.test_skip_class.Foo +defaultTestResult Lib/test/test_unittest/test_skipping.py /^ def defaultTestResult(self):$/;" m class:Test_TestSkipping.test_skipping.Foo +defaultTestResult Lib/test/test_unittest/test_skipping.py /^ def defaultTestResult(self):$/;" m class:Test_TestSkipping.test_skipping_subtests.Foo +defaultTestResult Lib/unittest/case.py /^ def defaultTestResult(self):$/;" m class:TestCase +defaultTimeout Lib/test/_test_multiprocessing.py /^ defaultTimeout = 30.0 # XXX Slow Windows buildbots need generous timeout$/;" v class:_TestBarrier +defaultTimeout Lib/test/lock_tests.py /^ defaultTimeout = 2.0$/;" v class:BarrierTests +default_action Include/internal/pycore_warnings.h /^ PyObject *default_action; \/* String *\/$/;" m struct:_warnings_runtime_state +default_bufsize Lib/xml/dom/pulldom.py /^default_bufsize = (2 ** 14) - 20$/;" v +default_builtin_hashes Lib/test/test_hashlib.py /^default_builtin_hashes = {'md5', 'sha1', 'sha256', 'sha512', 'sha3', 'blake2'}$/;" v +default_callback Lib/idlelib/configdialog.py /^ def default_callback(*params):$/;" f function:VarTrace.make_callback +default_command Lib/idlelib/grep.py /^ def default_command(self, event=None):$/;" m class:GrepDialog +default_command Lib/idlelib/replace.py /^ def default_command(self, event=None):$/;" m class:ReplaceDialog +default_command Lib/idlelib/search.py /^ def default_command(self, event=None):$/;" m class:SearchDialog +default_command Lib/idlelib/searchbase.py /^ def default_command(self, dummy): pass$/;" m class:_searchbase +default_context_template Modules/_decimal/_decimal.c /^static PyObject *default_context_template = NULL;$/;" v file: +default_error_handler Lib/test/test_ftplib.py /^def default_error_handler():$/;" f +default_exception_handler Lib/asyncio/base_events.py /^ def default_exception_handler(self, context):$/;" m class:BaseEventLoop +default_exception_handler Lib/asyncio/events.py /^ def default_exception_handler(self, context):$/;" m class:AbstractEventLoop +default_exception_handler Lib/test/test_asyncio/test_base_events.py /^ def default_exception_handler(self, context):$/;" m class:BaseEventLoopTests.test_default_exc_handler_broken.Loop +default_expected Lib/test/test_hash.py /^ default_expected = [object(),$/;" v class:HashInheritanceTestCase +default_factory Modules/_collectionsmodule.c /^ PyObject *default_factory;$/;" m struct:__anon532 file: +default_family Lib/multiprocessing/connection.py /^ default_family = 'AF_PIPE'$/;" v +default_family Lib/multiprocessing/connection.py /^ default_family = 'AF_UNIX'$/;" v +default_family Lib/multiprocessing/connection.py /^default_family = 'AF_INET'$/;" v +default_find Objects/stringlib/fastsearch.h /^STRINGLIB(default_find)(const STRINGLIB_CHAR* s, Py_ssize_t n,$/;" f +default_format Lib/logging/__init__.py /^ default_format = '${message}'$/;" v class:StringTemplateStyle +default_format Lib/logging/__init__.py /^ default_format = '%(message)s'$/;" v class:PercentStyle +default_format Lib/logging/__init__.py /^ default_format = '{message}'$/;" v class:StrFormatStyle +default_format Lib/test/test_calendar.py /^default_format = dict(year="year", month="month", encoding="ascii")$/;" v +default_handler Include/internal/pycore_signal.h /^ PyObject *default_handler;$/;" m struct:_signals_runtime_state +default_handler Lib/unittest/signals.py /^ def default_handler(unused_signum, unused_frame):$/;" f function:_InterruptHandler.__init__ +default_handler Modules/signalmodule.c /^ PyObject *default_handler; \/\/ borrowed ref (signal_global_state)$/;" m struct:__anon300 file: +default_keydefs Lib/idlelib/mainmenu.py /^default_keydefs = idleConf.GetCurrentKeySet()$/;" v +default_keys Lib/idlelib/config.py /^ def default_keys():$/;" m class:IdleConf +default_keys Lib/idlelib/idle_test/test_config.py /^ default_keys = idleConf.default_keys()$/;" v class:CurrentColorKeysTest +default_keywords Tools/i18n/pygettext.py /^ default_keywords = []$/;" v class:main.Options +default_keywords Tools/i18n/pygettext.py /^default_keywords = ['_']$/;" v +default_load_dump Lib/test/pickletester.py /^ def default_load_dump(obj):$/;" f function:AbstractDispatchTableTests._test_dispatch_table +default_loader Lib/xml/etree/ElementInclude.py /^def default_loader(href, parse, encoding=None):$/;" f +default_msec_format Lib/logging/__init__.py /^ default_msec_format = '%s,%03d'$/;" v class:Formatter +default_msec_format Lib/test/test_logging.py /^ default_msec_format = None$/;" v class:FormatterTest.test_default_msec_format_none.NoMsecFormatter +default_number Lib/timeit.py /^default_number = 1000000$/;" v +default_orient Lib/test/test_tkinter/test_widgets.py /^ default_orient = 'horizontal'$/;" v class:PanedWindowTest +default_orient Lib/test/test_tkinter/test_widgets.py /^ default_orient = 'vertical'$/;" v class:ScaleTest +default_orient Lib/test/test_tkinter/test_widgets.py /^ default_orient = 'vertical'$/;" v class:ScrollbarTest +default_orient Lib/test/test_ttk/test_widgets.py /^ default_orient = 'horizontal'$/;" v class:ProgressbarTest +default_orient Lib/test/test_ttk/test_widgets.py /^ default_orient = 'horizontal'$/;" v class:ScaleTest +default_orient Lib/test/test_ttk/test_widgets.py /^ default_orient = 'horizontal'$/;" v class:SeparatorTest +default_orient Lib/test/test_ttk/test_widgets.py /^ default_orient = 'vertical'$/;" v class:ScrollbarTest +default_parser_list Lib/xml/sax/__init__.py /^ default_parser_list = os.environ["PY_SAX_PARSER"].split(",")$/;" v +default_parser_list Lib/xml/sax/__init__.py /^default_parser_list = ["xml.sax.expatreader"]$/;" v +default_port Lib/http/client.py /^ default_port = HTTPS_PORT$/;" v class:HTTPConnection.HTTPSConnection +default_port Lib/http/client.py /^ default_port = HTTP_PORT$/;" v class:HTTPConnection +default_port Lib/smtplib.py /^ default_port = SMTP_SSL_PORT$/;" v class:SMTP.SMTP_SSL +default_port Lib/smtplib.py /^ default_port = SMTP_PORT$/;" v class:SMTP +default_program_name Lib/test/test_embed.py /^ def default_program_name(self, config):$/;" m class:InitConfigTests +default_repeat Lib/timeit.py /^default_repeat = 5$/;" v +default_repeats Lib/test/test_unittest/test_break.py /^ default_repeats = 15$/;" v class:TestBreak +default_request_version Lib/http/server.py /^ default_request_version = "HTTP\/0.9"$/;" v class:BaseHTTPRequestHandler +default_request_version Lib/test/test_httpservers.py /^ default_request_version = 'HTTP\/1.1'$/;" v class:BaseHTTPServerTestCase.request_handler +default_request_version Lib/test/test_httpservers.py /^ default_request_version = 'HTTP\/1.1'$/;" v class:RequestHandlerLoggingTestCase.request_handler +default_rfind Objects/stringlib/fastsearch.h /^STRINGLIB(default_rfind)(const STRINGLIB_CHAR* s, Py_ssize_t n,$/;" f +default_rule Parser/parser.c /^default_rule(Parser *p)$/;" f file: +default_section Lib/test/test_configparser.py /^ default_section = 'common'$/;" v class:ConfigParserTestCaseExtendedInterpolation +default_section Lib/test/test_configparser.py /^ default_section = 'general'$/;" v class:ConfigParserTestCaseNonStandardDefaultSection +default_section Lib/test/test_configparser.py /^ default_section = configparser.DEFAULTSECT$/;" v class:CfgParserTestCaseClass +default_target_map Mac/BuildScript/build-installer.py /^default_target_map = {$/;" v +default_theme Lib/idlelib/idle_test/test_config.py /^ default_theme = 'IDLE Classic'$/;" v class:CurrentColorKeysTest +default_time_format Lib/logging/__init__.py /^ default_time_format = '%Y-%m-%d %H:%M:%S'$/;" v class:Formatter +default_time_format Lib/test/test_logging.py /^ default_time_format = '%d\/%m\/%Y %H:%M:%S'$/;" v class:FormatterTest.test_default_msec_format_none.NoMsecFormatter +default_timer Lib/timeit.py /^default_timer = time.perf_counter$/;" v +default_tip Lib/idlelib/idle_test/test_calltip.py /^default_tip = calltip._default_callable_argspec$/;" v +default_translator_class Doc/tools/extensions/pyspecific.py /^ default_translator_class = TextTranslator$/;" v class:PydocTopicsBuilder +default_type Parser/parser.c 131;" d file: +default_type Tools/clinic/clinic.py /^ default_type = (bytes, bytearray)$/;" v class:char_converter +default_type Tools/clinic/clinic.py /^ default_type = (str, Null, NoneType)$/;" v class:Py_UNICODE_converter +default_type Tools/clinic/clinic.py /^ default_type = (str, Null, NoneType)$/;" v class:str_converter +default_type Tools/clinic/clinic.py /^ default_type = (str, Null, NoneType)$/;" v class:unicode_converter +default_type Tools/clinic/clinic.py /^ default_type = bool$/;" v class:bool_converter +default_type Tools/clinic/clinic.py /^ default_type = complex$/;" v class:Py_complex_converter +default_type Tools/clinic/clinic.py /^ default_type = float$/;" v class:double_converter +default_type Tools/clinic/clinic.py /^ default_type = float$/;" v class:float_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:int_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:long_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:long_long_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:short_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:unsigned_char_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:unsigned_int_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:unsigned_long_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:unsigned_long_long_converter +default_type Tools/clinic/clinic.py /^ default_type = int$/;" v class:unsigned_short_converter +default_value Objects/iterobject.c /^ PyObject *default_value;$/;" m struct:__anon742 file: +defaultaction Lib/warnings.py /^ defaultaction = "default"$/;" v +defaultaction Lib/warnings.py /^ defaultaction = _defaultaction$/;" v +defaultdict Lib/test/test_descrtut.py /^class defaultdict(dict):$/;" c +defaultdict2 Lib/test/test_descrtut.py /^class defaultdict2(dict):$/;" c +defaultfilename Lib/idlelib/iomenu.py /^ def defaultfilename(self, mode="open"):$/;" m class:IOBinding +defaultfn Modules/_json.c /^ PyObject *defaultfn;$/;" m struct:_PyEncoderObject file: +defaults Include/internal/pycore_ast.h /^ asdl_expr_seq *defaults;$/;" m struct:_arguments +defaults Include/internal/pycore_ast_state.h /^ PyObject *defaults;$/;" m struct:ast_state +defaults Lib/configparser.py /^ def defaults(self):$/;" m class:RawConfigParser +defaults Lib/dis.py /^ defaults=[None]$/;" v +defaults Lib/traceback.py /^ defaults=["~", "^"]$/;" v +defaulttimeout Modules/socketmodule.c /^ _PyTime_t defaulttimeout;$/;" m struct:_socket_state file: +defdict_copy Modules/_collectionsmodule.c /^defdict_copy(defdictobject *dd, PyObject *Py_UNUSED(ignored))$/;" f file: +defdict_dealloc Modules/_collectionsmodule.c /^defdict_dealloc(defdictobject *dd)$/;" f file: +defdict_init Modules/_collectionsmodule.c /^defdict_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +defdict_members Modules/_collectionsmodule.c /^static PyMemberDef defdict_members[] = {$/;" v file: +defdict_methods Modules/_collectionsmodule.c /^static PyMethodDef defdict_methods[] = {$/;" v file: +defdict_missing Modules/_collectionsmodule.c /^defdict_missing(defdictobject *dd, PyObject *key)$/;" f file: +defdict_or Modules/_collectionsmodule.c /^defdict_or(PyObject* left, PyObject* right)$/;" f file: +defdict_reduce Modules/_collectionsmodule.c /^defdict_reduce(defdictobject *dd, PyObject *Py_UNUSED(ignored))$/;" f file: +defdict_repr Modules/_collectionsmodule.c /^defdict_repr(defdictobject *dd)$/;" f file: +defdict_slots Modules/_collectionsmodule.c /^static PyType_Slot defdict_slots[] = {$/;" v file: +defdict_spec Modules/_collectionsmodule.c /^static PyType_Spec defdict_spec = {$/;" v file: +defdict_tp_clear Modules/_collectionsmodule.c /^defdict_tp_clear(defdictobject *dd)$/;" f file: +defdict_traverse Modules/_collectionsmodule.c /^defdict_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +defdict_type Modules/_collectionsmodule.c /^ PyTypeObject *defdict_type;$/;" m struct:__anon529 file: +defdictobject Modules/_collectionsmodule.c /^} defdictobject;$/;" t typeref:struct:__anon532 file: +defects Lib/email/headerregistry.py /^ def defects(self):$/;" m class:BaseHeader +defects Lib/test/test_email/test_policy.py /^ defects = None$/;" v class:PolicyAPITests.MyPolicy +deferred Include/pystats.h /^ uint64_t deferred;$/;" m struct:_specialization_stats +defineAttribute Modules/expat/xmlparse.c /^defineAttribute(ELEMENT_TYPE *type, ATTRIBUTE_ID *attId, XML_Bool isCdata,$/;" f file: +define_macro Tools/c-analyzer/distutils/ccompiler.py /^ def define_macro(self, name, value=None):$/;" m class:CCompiler +defined_in Lib/test/test_pyclbr.py /^ def defined_in(item, module):$/;" f function:PyclbrTest.checkModule +defining_class_converter Tools/clinic/clinic.py /^class defining_class_converter(CConverter):$/;" c +definition Tools/cases_generator/parser.py /^ def definition(self) -> InstDef | Super | Macro | Family | None:$/;" m class:Parser +definition packaging/macros.python3.py /^ definition = "\\\\\\n".join(definition.split("\\n"))$/;" v +defpath Lib/ntpath.py /^defpath = '.;C:\\\\bin'$/;" v +defpath Lib/posixpath.py /^defpath = '\/bin:\/usr\/bin'$/;" v +defproperty Lib/xml/dom/minicompat.py /^def defproperty(klass, name, doc):$/;" f +degToRad Modules/mathmodule.c /^static const double degToRad = Py_MATH_PI \/ 180.0;$/;" v file: +degrees Lib/turtle.py /^ def degrees(self, fullcircle=360.0):$/;" m class:TNavigator +deiconify Lib/tkinter/__init__.py /^ deiconify = wm_deiconify$/;" v class:Wm +del_as_mapping Lib/test/test_bytes.py /^ def del_as_mapping(b, i):$/;" f function:ByteArrayTest.test_delitem +del_as_sequence Lib/test/test_bytes.py /^ def del_as_sequence(b, i):$/;" f function:ByteArrayTest.test_delitem +del_calls Lib/test/test_finalization.py /^ del_calls = []$/;" v class:NonGCSimpleBase +del_channel Lib/test/support/asyncore.py /^ def del_channel(self, map=None):$/;" m class:dispatcher +del_desc Lib/test/pydocfodder.py /^ class del_desc:$/;" c class:FunkyProperties +del_param Lib/email/message.py /^ def del_param(self, param, header='content-type', requote=True):$/;" m class:Message +del_stmt_rule Parser/parser.c /^del_stmt_rule(Parser *p)$/;" f file: +del_stmt_type Parser/parser.c 99;" d file: +del_t_atom_rule Parser/parser.c /^del_t_atom_rule(Parser *p)$/;" f file: +del_t_atom_type Parser/parser.c 271;" d file: +del_target_rule Parser/parser.c /^del_target_rule(Parser *p)$/;" f file: +del_target_type Parser/parser.c 270;" d file: +del_targets_rule Parser/parser.c /^del_targets_rule(Parser *p)$/;" f file: +del_targets_type Parser/parser.c 269;" d file: +del_word_left Lib/idlelib/editor.py /^ def del_word_left(self, event):$/;" m class:EditorWindow +del_word_right Lib/idlelib/editor.py /^ def del_word_right(self, event):$/;" m class:EditorWindow +delay Lib/turtle.py /^ def delay(self, delay=None):$/;" m class:TurtleScreen +delay_has_deadlock Lib/test/test_import/__init__.py /^ def delay_has_deadlock(frame, event, arg):$/;" f function:ImportTests.test_concurrency +delayed_raise Lib/test/test_itertools.py /^ def delayed_raise(n=0):$/;" f function:TestBasicOps.test_groupby +dele Lib/poplib.py /^ def dele(self, which):$/;" m class:POP3 +delete Lib/ftplib.py /^ def delete(self, filename):$/;" m class:FTP +delete Lib/idlelib/colorizer.py /^ def delete(self, index1, index2=None):$/;" m class:ColorDelegator +delete Lib/idlelib/idle_test/mock_tk.py /^ def delete(self, index1, index2=None):$/;" m class:Text +delete Lib/idlelib/idle_test/test_percolator.py /^ def delete(self, *args):$/;" m class:MyFilter +delete Lib/idlelib/percolator.py /^ def delete(self, *args):$/;" m class:_percolator.Tracer +delete Lib/idlelib/percolator.py /^ def delete(self, index1, index2=None):$/;" m class:Percolator +delete Lib/idlelib/pyshell.py /^ def delete(self, index1, index2=None):$/;" m class:ModifiedUndoDelegator +delete Lib/idlelib/sidebar.py /^ def delete(self, index1, index2=None):$/;" m class:EndLineDelegator +delete Lib/idlelib/sidebar.py /^ def delete(self, index1, index2=None):$/;" m class:WrappedLineHeightChangeDelegator +delete Lib/idlelib/undo.py /^ def delete(self, index1, index2=None):$/;" m class:UndoDelegator +delete Lib/idlelib/window.py /^ def delete(self, window):$/;" m class:WindowList +delete Lib/imaplib.py /^ def delete(self, mailbox):$/;" m class:IMAP4 +delete Lib/tkinter/__init__.py /^ def delete(self, *args):$/;" m class:Canvas +delete Lib/tkinter/__init__.py /^ def delete(self, first, last=None):$/;" m class:Entry +delete Lib/tkinter/__init__.py /^ def delete(self, first, last=None):$/;" m class:Listbox +delete Lib/tkinter/__init__.py /^ def delete(self, first, last=None):$/;" m class:Spinbox +delete Lib/tkinter/__init__.py /^ def delete(self, index1, index2=None):$/;" m class:Menu +delete Lib/tkinter/__init__.py /^ def delete(self, index1, index2=None):$/;" m class:Text +delete Lib/tkinter/tix.py /^ def delete(self):$/;" m class:DisplayStyle +delete Lib/tkinter/tix.py /^ def delete(self, from_, to=None):$/;" m class:TList +delete Lib/tkinter/tix.py /^ def delete(self, name):$/;" m class:NoteBook +delete Lib/tkinter/tix.py /^ def delete(self, name):$/;" m class:OptionMenu +delete Lib/tkinter/tix.py /^ def delete(self, name):$/;" m class:PanedWindow +delete Lib/tkinter/ttk.py /^ def delete(self, *items):$/;" m class:Treeview +deleteData Lib/xml/dom/minidom.py /^ def deleteData(self, offset, count):$/;" m class:CharacterData +deleteMe Lib/bdb.py /^ def deleteMe(self):$/;" m class:Breakpoint +delete_all Lib/tkinter/tix.py /^ def delete_all(self):$/;" m class:HList +delete_column Lib/tkinter/tix.py /^ def delete_column(self, from_, to=None):$/;" m class:Grid +delete_custom Lib/idlelib/configdialog.py /^ def delete_custom(self):$/;" m class:HighPage +delete_custom_keys Lib/idlelib/configdialog.py /^ def delete_custom_keys(self):$/;" m class:KeysPage +delete_entry Lib/tkinter/tix.py /^ def delete_entry(self, entry):$/;" m class:HList +delete_garbage Modules/gcmodule.c /^delete_garbage(PyThreadState *tstate, GCState *gcstate,$/;" f file: +delete_index_from_values Objects/dictobject.c /^delete_index_from_values(PyDictValues *values, Py_ssize_t ix)$/;" f file: +delete_later Include/cpython/pystate.h /^ PyObject *delete_later;$/;" m struct:_py_trashcan +delete_nesting Include/cpython/pystate.h /^ int delete_nesting;$/;" m struct:_py_trashcan +delete_offsprings Lib/tkinter/tix.py /^ def delete_offsprings(self, entry):$/;" m class:HList +delete_registry_data Lib/test/test_launcher.py /^def delete_registry_data(root, keys):$/;" f +delete_registry_tree Lib/test/test_importlib/test_windows.py /^def delete_registry_tree(root, subkey):$/;" f +delete_row Lib/tkinter/tix.py /^ def delete_row(self, from_, to=None):$/;" m class:Grid +delete_section Lib/idlelib/config.py /^ def delete_section(self, config_type, section):$/;" m class:ConfigChanges +delete_siblings Lib/tkinter/tix.py /^ def delete_siblings(self, entry):$/;" m class:HList +delete_temporaries Lib/test/test_bdb.py /^ def delete_temporaries(self):$/;" m class:Tracer +delete_tree Lib/test/test_winreg.py /^ def delete_tree(self, root, subkey):$/;" m class:BaseWinregTests +deleteacl Lib/imaplib.py /^ def deleteacl(self, mailbox, who):$/;" m class:IMAP4 +deletecommand Lib/tkinter/__init__.py /^ def deletecommand(self, name):$/;" m class:Misc +deleter Lib/types.py /^ def deleter(self, fdel):$/;" m class:DynamicClassAttribute +delimit Lib/ast.py /^ def delimit(self, start, end):$/;" m class:_Unparser +delimit_if Lib/ast.py /^ def delimit_if(self, start, end, condition):$/;" m class:_Unparser +delimiter Lib/csv.py /^ delimiter = ','$/;" v class:excel +delimiter Lib/csv.py /^ delimiter = ','$/;" v class:unix_dialect +delimiter Lib/csv.py /^ delimiter = '\\t'$/;" v class:excel_tab +delimiter Lib/csv.py /^ delimiter = None$/;" v class:Dialect +delimiter Lib/string.py /^ delimiter = '$'$/;" v class:Template +delimiter Lib/test/test_csv.py /^ delimiter=';')$/;" v class:TestDialectRegistry.test_dialect_apply.unspecified +delimiter Lib/test/test_csv.py /^ delimiter=';',$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +delimiter Lib/test/test_csv.py /^ delimiter = " "$/;" v class:TestDialectRegistry.test_space_dialect.space +delimiter Lib/test/test_csv.py /^ delimiter = ":"$/;" v class:TestDialectRegistry.test_dialect_apply.testB +delimiter Lib/test/test_csv.py /^ delimiter = ";"$/;" v class:TestDialectValidity.test_delimiter.mydialect +delimiter Lib/test/test_csv.py /^ delimiter = ";"$/;" v class:TestDialectValidity.test_escapechar.mydialect +delimiter Lib/test/test_csv.py /^ delimiter = ";"$/;" v class:TestDialectValidity.test_lineterminator.mydialect +delimiter Lib/test/test_csv.py /^ delimiter = ";"$/;" v class:TestDialectValidity.test_quoting.mydialect +delimiter Lib/test/test_csv.py /^ delimiter = "\\t"$/;" v class:TestDialectRegistry.test_dialect_apply.testA +delimiter Lib/test/test_csv.py /^ delimiter = "\\t"$/;" v class:TestDialectRegistry.test_incomplete_dialect.myexceltsv +delimiter Lib/test/test_csv.py /^ delimiter = "\\t"$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +delimiter Lib/test/test_csv.py /^ delimiter = "\\t"$/;" v class:TestDialectRegistry.test_registry.myexceltsv +delimiter Lib/test/test_csv.py /^ delimiter = "\\u039B"$/;" v class:TestDialectRegistry.test_dialect_apply.testUni +delimiter Lib/test/test_csv.py /^ delimiter = "|"$/;" v class:TestDialectRegistry.test_dialect_apply.testC +delimiter Lib/test/test_csv.py /^ delimiter='-'$/;" v class:Test_Csv._test_dialect_attrs.dialect +delimiter Lib/test/test_string.py /^ delimiter = '&'$/;" v class:TestTemplate.test_delimiter_override.AmpersandTemplate +delimiter Lib/test/test_string.py /^ delimiter = '@'$/;" v class:TestTemplate.test_delimiter_override.PieDelims +delimiter Modules/_csv.c /^ Py_UCS4 delimiter; \/* field separator *\/$/;" m struct:__anon624 file: +delimiters Lib/test/test_configparser.py /^ delimiters = (':=', '$')$/;" v class:ConfigParserTestCaseNonStandardDelimiters +delimiters Lib/test/test_configparser.py /^ delimiters = (':=', '$')$/;" v class:RawConfigParserTestCaseNonStandardDelimiters +delimiters Lib/test/test_configparser.py /^ delimiters = ('=', ':')$/;" v class:CfgParserTestCaseClass +delitem Lib/operator.py /^def delitem(a, b):$/;" f +delitem Lib/test/test_bytes.py /^ def delitem():$/;" f function:ByteArrayTest.test_resize_forbidden +delitem Lib/test/test_unittest/testmock/testmagicmethods.py /^ def delitem(s, name):$/;" f function:TestMockingMagicMethods.test_dict_methods +delitem_common Objects/dictobject.c /^delitem_common(PyDictObject *mp, Py_hash_t hash, Py_ssize_t ix,$/;" f file: +deliver_challenge Lib/multiprocessing/connection.py /^def deliver_challenge(connection, authkey: bytes, digest_name='sha256'):$/;" f +delocalize Lib/locale.py /^def delocalize(string):$/;" f +dels Lib/test/test_gc.py /^ dels = []$/;" v class:GCTests.test_trashcan_threads.C +delslice Lib/test/test_bytes.py /^ def delslice():$/;" f function:ByteArrayTest.test_resize_forbidden +delta Lib/test/test_zoneinfo/test_zoneinfo.py /^ def delta(self):$/;" m class:ZoneTransition +delta Lib/tkinter/__init__.py /^ def delta(self, deltax, deltay):$/;" m class:Scrollbar +delta_abs Modules/_datetimemodule.c /^delta_abs(PyDateTime_Delta *self)$/;" f file: +delta_add Modules/_datetimemodule.c /^delta_add(PyObject *left, PyObject *right)$/;" f file: +delta_as_number Modules/_datetimemodule.c /^static PyNumberMethods delta_as_number = {$/;" v file: +delta_bool Modules/_datetimemodule.c /^delta_bool(PyDateTime_Delta *self)$/;" f file: +delta_cmp Modules/_datetimemodule.c /^delta_cmp(PyObject *self, PyObject *other)$/;" f file: +delta_divide Modules/_datetimemodule.c /^delta_divide(PyObject *left, PyObject *right)$/;" f file: +delta_divmod Modules/_datetimemodule.c /^delta_divmod(PyObject *left, PyObject *right)$/;" f file: +delta_doc Modules/_datetimemodule.c /^static const char delta_doc[] =$/;" v file: +delta_getstate Modules/_datetimemodule.c /^delta_getstate(PyDateTime_Delta *self)$/;" f file: +delta_hash Modules/_datetimemodule.c /^delta_hash(PyDateTime_Delta *self)$/;" f file: +delta_members Modules/_datetimemodule.c /^static PyMemberDef delta_members[] = {$/;" v file: +delta_methods Modules/_datetimemodule.c /^static PyMethodDef delta_methods[] = {$/;" v file: +delta_multiply Modules/_datetimemodule.c /^delta_multiply(PyObject *left, PyObject *right)$/;" f file: +delta_negative Modules/_datetimemodule.c /^delta_negative(PyDateTime_Delta *self)$/;" f file: +delta_new Modules/_datetimemodule.c /^delta_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +delta_positive Modules/_datetimemodule.c /^delta_positive(PyDateTime_Delta *self)$/;" f file: +delta_reduce Modules/_datetimemodule.c /^delta_reduce(PyDateTime_Delta* self, PyObject *Py_UNUSED(ignored))$/;" f file: +delta_remainder Modules/_datetimemodule.c /^delta_remainder(PyObject *left, PyObject *right)$/;" f file: +delta_repr Modules/_datetimemodule.c /^delta_repr(PyDateTime_Delta *self)$/;" f file: +delta_richcompare Modules/_datetimemodule.c /^delta_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +delta_str Modules/_datetimemodule.c /^delta_str(PyDateTime_Delta *self)$/;" f file: +delta_subtract Modules/_datetimemodule.c /^delta_subtract(PyObject *left, PyObject *right)$/;" f file: +delta_to_microseconds Modules/_datetimemodule.c /^delta_to_microseconds(PyDateTime_Delta *self)$/;" f file: +delta_total_seconds Modules/_datetimemodule.c /^delta_total_seconds(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +delta_truedivide Modules/_datetimemodule.c /^delta_truedivide(PyObject *left, PyObject *right)$/;" f file: +deltree PCbuild/rmpyc.py /^def deltree(root):$/;" f +delx Lib/test/test_descr.py /^ def delx(self):$/;" m class:.test_properties.C +delx Lib/test/test_sys.py /^ def delx(self): del self.__x$/;" m class:SizeofTest.test_objecttypes.C +demo Lib/filecmp.py /^def demo():$/;" f +demo Lib/turtledemo/penrose.py /^def demo(fun=sun):$/;" f +demo1 Lib/turtle.py /^ def demo1():$/;" f +demo2 Lib/turtle.py /^ def demo2():$/;" f +demo_app Lib/wsgiref/simple_server.py /^def demo_app(environ,start_response):$/;" f +demo_dir Lib/turtledemo/__main__.py /^demo_dir = os.path.dirname(os.path.abspath(__file__))$/;" v +den Lib/test/test_binop.py /^ den = property(_get_den, None)$/;" v class:Rat +denominator Lib/fractions.py /^ def denominator(a):$/;" m class:Fraction +denominator Lib/numbers.py /^ def denominator(self):$/;" m class:Integral +denominator Lib/numbers.py /^ def denominator(self):$/;" m class:Rational +denominator Lib/test/test_fractions.py /^ def denominator(self):$/;" m class:FractionTest.testIntGuaranteesIntReturn.CustomInt +denominator Lib/test/test_fractions.py /^ def denominator(self):$/;" m class:FractionTest.test_int_subclass.myint +denominator Lib/test/test_fractions.py /^ denominator = 1$/;" v class:FractionTest.testBoolGuarateesBoolReturn.CustomValue +denominator Lib/test/test_numeric_tower.py /^ def denominator(self):$/;" m class:DummyIntegral +deopt Include/pystats.h /^ uint64_t deopt;$/;" m struct:_specialization_stats +deopt_code Objects/codeobject.c /^deopt_code(PyCodeObject *code, _Py_CODEUNIT *instructions)$/;" f file: +deoptmap Lib/dis.py /^deoptmap = {$/;" v +depend_target Tools/ssl/multissltests.py /^ depend_target = 'depend'$/;" v class:BuildOpenSSL +depend_target Tools/ssl/multissltests.py /^ depend_target = None$/;" v class:AbstractBuilder +deprecated Lib/importlib/resources/_legacy.py /^def deprecated(func):$/;" f +deprecated Lib/test/test_importlib/frozen/test_loader.py /^def deprecated():$/;" f +deprecated Lib/test/test_xml_etree_c.py /^ deprecated=True)$/;" v +depth Include/internal/pycore_flowgraph.h /^ int depth;$/;" m struct:__anon169 +depth Lib/lib2to3/pytree.py /^ def depth(self):$/;" m class:Base +depth Modules/_blake2/impl/blake2.h /^ uint8_t depth; \/\/ 4$/;" m struct:__blake2b_param +depth Modules/_blake2/impl/blake2.h /^ uint8_t depth; \/\/ 4$/;" m struct:__blake2s_param +depth Python/marshal.c /^ int depth;$/;" m struct:__anon699 file: +depth Python/marshal.c /^ int depth;$/;" m struct:__anon700 file: +depth Tools/clinic/clinic.py /^ def depth(self):$/;" m class:IndentStack +deque Modules/_collectionsmodule.c /^ dequeobject *deque;$/;" m struct:__anon531 file: +deque_append Modules/_collectionsmodule.c /^deque_append(dequeobject *deque, PyObject *item)$/;" f file: +deque_append_internal Modules/_collectionsmodule.c /^deque_append_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)$/;" f file: +deque_append_pop Tools/scripts/var_access_benchmark.py /^def deque_append_pop(trials=trials, a=deque([1])):$/;" f +deque_append_popleft Tools/scripts/var_access_benchmark.py /^def deque_append_popleft(trials=trials, a=deque([1])):$/;" f +deque_appendleft Modules/_collectionsmodule.c /^deque_appendleft(dequeobject *deque, PyObject *item)$/;" f file: +deque_appendleft_internal Modules/_collectionsmodule.c /^deque_appendleft_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)$/;" f file: +deque_ass_item Modules/_collectionsmodule.c /^deque_ass_item(dequeobject *deque, Py_ssize_t i, PyObject *v)$/;" f file: +deque_clear Modules/_collectionsmodule.c /^deque_clear(dequeobject *deque)$/;" f file: +deque_clearmethod Modules/_collectionsmodule.c /^deque_clearmethod(dequeobject *deque, PyObject *Py_UNUSED(ignored))$/;" f file: +deque_concat Modules/_collectionsmodule.c /^deque_concat(dequeobject *deque, PyObject *other)$/;" f file: +deque_contains Modules/_collectionsmodule.c /^deque_contains(dequeobject *deque, PyObject *v)$/;" f file: +deque_copy Modules/_collectionsmodule.c /^deque_copy(PyObject *deque, PyObject *Py_UNUSED(ignored))$/;" f file: +deque_count Modules/_collectionsmodule.c /^deque_count(dequeobject *deque, PyObject *v)$/;" f file: +deque_dealloc Modules/_collectionsmodule.c /^deque_dealloc(dequeobject *deque)$/;" f file: +deque_del_item Modules/_collectionsmodule.c /^deque_del_item(dequeobject *deque, Py_ssize_t i)$/;" f file: +deque_extend Modules/_collectionsmodule.c /^deque_extend(dequeobject *deque, PyObject *iterable)$/;" f file: +deque_extendleft Modules/_collectionsmodule.c /^deque_extendleft(dequeobject *deque, PyObject *iterable)$/;" f file: +deque_get_maxlen Modules/_collectionsmodule.c /^deque_get_maxlen(dequeobject *deque, void *Py_UNUSED(ignored))$/;" f file: +deque_getset Modules/_collectionsmodule.c /^static PyGetSetDef deque_getset[] = {$/;" v file: +deque_index Modules/_collectionsmodule.c /^deque_index(dequeobject *deque, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +deque_init Modules/_collectionsmodule.c /^deque_init(dequeobject *deque, PyObject *args, PyObject *kwdargs)$/;" f file: +deque_inplace_concat Modules/_collectionsmodule.c /^deque_inplace_concat(dequeobject *deque, PyObject *other)$/;" f file: +deque_inplace_repeat Modules/_collectionsmodule.c /^deque_inplace_repeat(dequeobject *deque, Py_ssize_t n)$/;" f file: +deque_insert Modules/_collectionsmodule.c /^deque_insert(dequeobject *deque, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +deque_item Modules/_collectionsmodule.c /^deque_item(dequeobject *deque, Py_ssize_t i)$/;" f file: +deque_iter Modules/_collectionsmodule.c /^deque_iter(dequeobject *deque)$/;" f file: +deque_len Modules/_collectionsmodule.c /^deque_len(dequeobject *deque)$/;" f file: +deque_members Modules/_collectionsmodule.c /^static PyMemberDef deque_members[] = {$/;" v file: +deque_methods Modules/_collectionsmodule.c /^static PyMethodDef deque_methods[] = {$/;" v file: +deque_new Modules/_collectionsmodule.c /^deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +deque_pop Modules/_collectionsmodule.c /^deque_pop(dequeobject *deque, PyObject *unused)$/;" f file: +deque_popleft Modules/_collectionsmodule.c /^deque_popleft(dequeobject *deque, PyObject *unused)$/;" f file: +deque_reduce Modules/_collectionsmodule.c /^deque_reduce(dequeobject *deque, PyObject *Py_UNUSED(ignored))$/;" f file: +deque_remove Modules/_collectionsmodule.c /^deque_remove(dequeobject *deque, PyObject *value)$/;" f file: +deque_repeat Modules/_collectionsmodule.c /^deque_repeat(dequeobject *deque, Py_ssize_t n)$/;" f file: +deque_repr Modules/_collectionsmodule.c /^deque_repr(PyObject *deque)$/;" f file: +deque_reverse Modules/_collectionsmodule.c /^deque_reverse(dequeobject *deque, PyObject *unused)$/;" f file: +deque_reviter Modules/_collectionsmodule.c /^deque_reviter(dequeobject *deque, PyObject *Py_UNUSED(ignored))$/;" f file: +deque_richcompare Modules/_collectionsmodule.c /^deque_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +deque_rotate Modules/_collectionsmodule.c /^deque_rotate(dequeobject *deque, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +deque_sizeof Modules/_collectionsmodule.c /^deque_sizeof(dequeobject *deque, void *unused)$/;" f file: +deque_slots Modules/_collectionsmodule.c /^static PyType_Slot deque_slots[] = {$/;" v file: +deque_spec Modules/_collectionsmodule.c /^static PyType_Spec deque_spec = {$/;" v file: +deque_traverse Modules/_collectionsmodule.c /^deque_traverse(dequeobject *deque, visitproc visit, void *arg)$/;" f file: +deque_type Modules/_collectionsmodule.c /^ PyTypeObject *deque_type;$/;" m struct:__anon529 file: +dequeiter_clear Modules/_collectionsmodule.c /^dequeiter_clear(dequeiterobject *dio)$/;" f file: +dequeiter_dealloc Modules/_collectionsmodule.c /^dequeiter_dealloc(dequeiterobject *dio)$/;" f file: +dequeiter_len Modules/_collectionsmodule.c /^dequeiter_len(dequeiterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +dequeiter_methods Modules/_collectionsmodule.c /^static PyMethodDef dequeiter_methods[] = {$/;" v file: +dequeiter_new Modules/_collectionsmodule.c /^dequeiter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +dequeiter_next Modules/_collectionsmodule.c /^dequeiter_next(dequeiterobject *it)$/;" f file: +dequeiter_reduce Modules/_collectionsmodule.c /^dequeiter_reduce(dequeiterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +dequeiter_slots Modules/_collectionsmodule.c /^static PyType_Slot dequeiter_slots[] = {$/;" v file: +dequeiter_spec Modules/_collectionsmodule.c /^static PyType_Spec dequeiter_spec = {$/;" v file: +dequeiter_traverse Modules/_collectionsmodule.c /^dequeiter_traverse(dequeiterobject *dio, visitproc visit, void *arg)$/;" f file: +dequeiter_type Modules/_collectionsmodule.c /^ PyTypeObject *dequeiter_type;$/;" m struct:__anon529 file: +dequeiterobject Modules/_collectionsmodule.c /^} dequeiterobject;$/;" t typeref:struct:__anon531 file: +dequeobject Modules/_collectionsmodule.c /^} dequeobject;$/;" t typeref:struct:__anon530 file: +dequereviter_new Modules/_collectionsmodule.c /^dequereviter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +dequereviter_next Modules/_collectionsmodule.c /^dequereviter_next(dequeiterobject *it)$/;" f file: +dequereviter_slots Modules/_collectionsmodule.c /^static PyType_Slot dequereviter_slots[] = {$/;" v file: +dequereviter_spec Modules/_collectionsmodule.c /^static PyType_Spec dequereviter_spec = {$/;" v file: +dequereviter_type Modules/_collectionsmodule.c /^ PyTypeObject *dequereviter_type;$/;" m struct:__anon529 file: +dequeue Lib/logging/handlers.py /^ def dequeue(self, block):$/;" m class:QueueListener +dereference Lib/tarfile.py /^ dereference = False # If true, add content of linked file to the$/;" v class:TarFile +derive Lib/test/test_except_star.py /^ def derive(self, excs):$/;" m class:TestExceptStarExceptionGroupSubclass.test_except_star_EG_subclass.EG +derive Lib/test/test_except_star.py /^ def derive(self, excs):$/;" m class:TestExceptStarExceptionGroupSubclass.test_falsy_exception_group_subclass.FalsyEG +derive Lib/test/test_except_star.py /^ def derive(self, excs):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass.AlwaysEqualEG +derive Lib/test/test_except_star.py /^ def derive(self, excs):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass.BrokenEqualEG +derive Lib/test/test_except_star.py /^ def derive(self, excs):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass.NeverEqualEG +derive Lib/test/test_except_star.py /^ def derive(self, excs):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass.UnhashableEG +derive Lib/test/test_exception_group.py /^ def derive(self, excs):$/;" m class:NestedExceptionGroupSplitTest.test_drive_invalid_return_value.MyEg +derive Lib/test/test_exception_group.py /^ def derive(self, excs):$/;" m class:NestedExceptionGroupSubclassSplitTest.test_split_ExceptionGroup_subclass_derive_and_new_overrides.EG +desc Include/structseq.h /^PyAPI_FUNC(PyTypeObject*) PyStructSequence_NewType(PyStructSequence_Desc *desc);$/;" v +desc Lib/test/test_unittest/testmock/testhelpers.py /^ desc = Descriptor(42)$/;" v class:SpecSignatureTest.test_autospec_data_descriptor.Foo +descr Include/internal/pycore_code.h /^ uint16_t descr[4];$/;" m struct:__anon25 +descr Lib/test/test_descr.py /^ descr = Descr()$/;" v class:.test_bpo25750.X +descr Objects/descrobject.c /^ PyWrapperDescrObject *descr;$/;" m struct:__anon747 file: +descr_check Objects/descrobject.c /^descr_check(PyDescrObject *descr, PyObject *obj)$/;" f file: +descr_dealloc Objects/descrobject.c /^descr_dealloc(PyDescrObject *descr)$/;" f file: +descr_get_qualname Objects/descrobject.c /^descr_get_qualname(PyDescrObject *descr, void *Py_UNUSED(ignored))$/;" f file: +descr_get_trampoline_call Objects/descrobject.c 31;" d file: +descr_members Objects/descrobject.c /^static PyMemberDef descr_members[] = {$/;" v file: +descr_methods Objects/descrobject.c /^static PyMethodDef descr_methods[] = {$/;" v file: +descr_name Objects/descrobject.c /^descr_name(PyDescrObject *descr)$/;" f file: +descr_new Objects/descrobject.c /^descr_new(PyTypeObject *descrtype, PyTypeObject *type, const char *name)$/;" f file: +descr_reduce Objects/descrobject.c /^descr_reduce(PyDescrObject *descr, PyObject *Py_UNUSED(ignored))$/;" f file: +descr_repr Objects/descrobject.c /^descr_repr(PyDescrObject *descr, const char *format)$/;" f file: +descr_set_trampoline_call Objects/descrobject.c 28;" d file: +descr_setcheck Objects/descrobject.c /^descr_setcheck(PyDescrObject *descr, PyObject *obj, PyObject *value)$/;" f file: +descr_traverse Objects/descrobject.c /^descr_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +descrgetfunc Include/object.h /^typedef PyObject *(*descrgetfunc) (PyObject *, PyObject *, PyObject *);$/;" t +describe Lib/pydoc.py /^def describe(thing):$/;" f +description Lib/nntplib.py /^ def description(self, group):$/;" m class:NNTP +description Lib/test/test_argparse.py /^ description='display some subcommands')$/;" v class:TestHelpSubparsersOrdering +description Lib/test/test_argparse.py /^ description='display some subcommands')$/;" v class:TestHelpSubparsersWithHelpOrdering +description Lib/test/test_argparse.py /^ description=' oddly formatted\\n'$/;" v class:TestHelpReformatting +description Lib/test/test_argparse.py /^ description='Keep the formatting\\n'$/;" v class:TestHelpRawDescription +description Lib/test/test_argparse.py /^ description='Keep the formatting\\n'$/;" v class:TestHelpRawText +description Lib/test/test_argparse.py /^ description='description')$/;" v class:TestHelpArgumentDefaults +description Lib/test/test_enum.py /^ description = 'Bn$', 3$/;" v class:TestSpecial.test_missing_value_error.Combined +description Modules/_sqlite/cursor.h /^ PyObject* description;$/;" m struct:__anon358 +description Modules/_sqlite/row.h /^ PyObject* description;$/;" m struct:_Row +description Modules/pyexpat.c /^ const char * description; \/* Error description as returned by XML_ErrorString() *\/$/;" m struct:ErrorInfo file: +description Tools/build/check_extension_modules.py /^ description=__doc__,$/;" v +description Tools/cases_generator/generate_cases.py /^ description="Generate the code for the interpreter switch.",$/;" v +description Tools/peg_generator/pegen/first_sets.py /^ description="Calculate the first sets of a grammar",$/;" v +description Tools/peg_generator/scripts/download_pypi_packages.py /^ description="Helper program to download PyPI packages",$/;" v +description Tools/peg_generator/scripts/grammar_grapher.py /^ description="Graph a grammar tree",$/;" v +description Tools/peg_generator/scripts/test_parse_directory.py /^ description="Helper program to test directories or files for pegen",$/;" v +description Tools/peg_generator/scripts/test_pypi_packages.py /^ description="Helper program to test parsing PyPI packages",$/;" v +description Tools/ssl/make_ssl_data.py /^ description="Generate ssl_data.h from OpenSSL sources"$/;" v +description Tools/ssl/multissltests.py /^ description=($/;" v +description Tools/wasm/wasm_build.py /^ description=__doc__,$/;" v +description Tools/wasm/wasm_webserver.py /^ description="Start a local webserver with a Python terminal."$/;" v +descriptions Lib/nntplib.py /^ def descriptions(self, group_pattern):$/;" m class:NNTP +descriptor Lib/test/test_inspect.py /^ class descriptor(object):$/;" c function:TestGetattrStatic.test_descriptor +descriptor Lib/test/test_inspect.py /^ class descriptor(object):$/;" c function:TestGetattrStatic.test_descriptor_raises_AttributeError +descriptor Lib/test/test_inspect.py /^ class descriptor(object):$/;" c function:TestGetattrStatic.test_metaclass_with_descriptor +descriptors Modules/arraymodule.c /^static const struct arraydescr descriptors[] = {$/;" v typeref:struct:arraydescr file: +descrsetfunc Include/object.h /^typedef int (*descrsetfunc) (PyObject *, PyObject *, PyObject *);$/;" t +deselect Lib/idlelib/tree.py /^ def deselect(self, event=None):$/;" m class:TreeNode +deselect Lib/tkinter/__init__.py /^ def deselect(self):$/;" m class:Checkbutton +deselect Lib/tkinter/__init__.py /^ def deselect(self):$/;" m class:Radiobutton +deselectall Lib/idlelib/tree.py /^ def deselectall(self):$/;" m class:TreeNode +deselecttree Lib/idlelib/tree.py /^ def deselecttree(self):$/;" m class:TreeNode +deserialize Modules/_sqlite/clinic/connection.c.h /^deserialize(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +deserialize_impl Modules/_sqlite/connection.c /^deserialize_impl(pysqlite_Connection *self, Py_buffer *data,$/;" f file: +design Lib/turtledemo/bytedesign.py /^ def design(self, homePos, scale):$/;" m class:Designer +designations Modules/cjkcodecs/_codecs_iso2022.c /^ const struct iso2022_designation *designations; \/* non-ascii desigs *\/$/;" m struct:iso2022_config typeref:struct:iso2022_config::iso2022_designation file: +dest Tools/ssl/multissltests.py /^ dest='force',$/;" v +dest Tools/ssl/multissltests.py /^ dest='keep_sources',$/;" v +dest Tools/ssl/multissltests.py /^ dest='network',$/;" v +destdir Lib/test/test_tarfile.py /^ destdir = outerdir \/ 'dest'$/;" v class:TestExtractionFilters +destr_t Python/getargs.c /^typedef int (*destr_t)(PyObject *, void *);$/;" t file: +destroy Lib/idlelib/configdialog.py /^ def destroy(self):$/;" m class:ConfigDialog +destroy Lib/idlelib/idle_test/test_query.py /^ def destroy(self):$/;" m class:QueryTest.Dummy_Query +destroy Lib/idlelib/query.py /^ def destroy(self):$/;" m class:Query +destroy Lib/idlelib/tree.py /^ def destroy(self):$/;" m class:TreeNode +destroy Lib/idlelib/window.py /^ def destroy(self):$/;" m class:ListedToplevel +destroy Lib/optparse.py /^ def destroy(self):$/;" m class:OptionContainer +destroy Lib/optparse.py /^ def destroy(self):$/;" m class:OptionGroup +destroy Lib/optparse.py /^ def destroy(self):$/;" m class:OptionParser +destroy Lib/tkinter/__init__.py /^ def destroy(self):$/;" m class:BaseWidget +destroy Lib/tkinter/__init__.py /^ def destroy(self):$/;" m class:Misc +destroy Lib/tkinter/__init__.py /^ def destroy(self):$/;" m class:OptionMenu +destroy Lib/tkinter/__init__.py /^ def destroy(self):$/;" m class:Tk +destroy Lib/tkinter/dialog.py /^ def destroy(self): pass$/;" m class:Dialog +destroy Lib/tkinter/simpledialog.py /^ def destroy(self):$/;" m class:Dialog +destroy Lib/tkinter/simpledialog.py /^ def destroy(self):$/;" m class:_QueryDialog +destroy Lib/tkinter/tix.py /^ def destroy(self):$/;" m class:TixSubWidget +destroy Lib/tkinter/tix.py /^ def destroy(self):$/;" m class:Tk +destroy Lib/tkinter/ttk.py /^ def destroy(self):$/;" m class:LabeledScale +destroy Lib/tkinter/ttk.py /^ def destroy(self):$/;" m class:OptionMenu +destroyBindings Modules/expat/xmlparse.c /^destroyBindings(BINDING *bindings, XML_Parser parser) {$/;" f file: +destroy_codec_capsule Modules/cjkcodecs/cjkcodecs.h /^destroy_codec_capsule(PyObject *capsule)$/;" f +destroy_default_root Lib/test/test_tkinter/support.py /^def destroy_default_root():$/;" f +destroy_gil Python/ceval_gil.c /^static void destroy_gil(struct _gil_runtime_state *gil)$/;" f file: +destroy_segment Lib/multiprocessing/managers.py /^ def destroy_segment(self, segment_name):$/;" m class:SyncManager._SharedMemoryTracker +destructor Include/object.h /^typedef void (*destructor)(PyObject *);$/;" t +destructor Objects/capsule.c /^ PyCapsule_Destructor destructor;$/;" m struct:__anon726 file: +destructor Python/getargs.c /^ destr_t destructor;$/;" m struct:__anon694 file: +destructor Python/thread_pthread.h 14;" d +destructor Python/thread_pthread.h 8;" d +destructor_callback Modules/_sqlite/connection.c /^destructor_callback(void *ctx)$/;" f file: +detach Lib/_pyio.py /^ def detach(self):$/;" m class:BufferedIOBase +detach Lib/_pyio.py /^ def detach(self):$/;" m class:StringIO +detach Lib/_pyio.py /^ def detach(self):$/;" m class:TextIOBase +detach Lib/_pyio.py /^ def detach(self):$/;" m class:TextIOWrapper +detach Lib/_pyio.py /^ def detach(self):$/;" m class:_BufferedIOMixin +detach Lib/idlelib/configdialog.py /^ def detach(self):$/;" m class:VarTrace +detach Lib/multiprocessing/popen_forkserver.py /^ def detach(self):$/;" m class:_DupFd +detach Lib/multiprocessing/popen_spawn_posix.py /^ def detach(self):$/;" m class:_DupFd +detach Lib/multiprocessing/reduction.py /^ def detach(self):$/;" m class:dump.DupHandle +detach Lib/multiprocessing/resource_sharer.py /^ def detach(self):$/;" m class:DupFd +detach Lib/multiprocessing/resource_sharer.py /^ def detach(self):$/;" m class:DupSocket +detach Lib/socket.py /^ def detach(self):$/;" m class:socket +detach Lib/tempfile.py /^ def detach(self):$/;" m class:SpooledTemporaryFile +detach Lib/tkinter/dnd.py /^ def detach(self):$/;" m class:Icon +detach Lib/tkinter/ttk.py /^ def detach(self, *items):$/;" m class:Treeview +detach Lib/weakref.py /^ def detach(self):$/;" m class:finalize +detach_widget Lib/tkinter/tix.py /^ def detach_widget(self, widget):$/;" m class:ResizeHandle +detached Modules/_io/bufferedio.c /^ int detached;$/;" m struct:__anon435 file: +detached Modules/_io/textio.c /^ int detached;$/;" m struct:textio file: +detect_api_mismatch Lib/test/support/__init__.py /^def detect_api_mismatch(ref_api, other_api, *, ignore=()):$/;" f +detect_encoding Lib/json/__init__.py /^def detect_encoding(b):$/;" f +detect_encoding Lib/lib2to3/pgen2/tokenize.py /^def detect_encoding(readline):$/;" f +detect_encoding Lib/tokenize.py /^def detect_encoding(readline):$/;" f +detect_extension_modules Tools/wasm/wasm_assets.py /^def detect_extension_modules(args: argparse.Namespace):$/;" f +detect_types Modules/_sqlite/connection.h /^ int detect_types;$/;" m struct:__anon359 +determine_parent Lib/modulefinder.py /^ def determine_parent(self, caller, level=-1):$/;" m class:ModuleFinder +dev_mode Include/cpython/initconfig.h /^ int dev_mode;$/;" m struct:PyConfig +dev_mode Include/cpython/initconfig.h /^ int dev_mode;$/;" m struct:PyPreConfig +dev_mode Include/internal/pycore_initconfig.h /^ int dev_mode; \/* -X dev and PYTHONDEVMODE *\/$/;" m struct:__anon163 +dev_mode Lib/test/test_embed.py /^ dev_mode=0,$/;" v class:InitConfigTests +dev_t Lib/test/test_lib2to3/data/infinite_recursion.py /^dev_t = __darwin_dev_t$/;" v +dev_urandom Python/bootstrap_hash.c /^dev_urandom(char *buffer, Py_ssize_t size, int raise)$/;" f file: +dev_urandom_close Python/bootstrap_hash.c /^dev_urandom_close(void)$/;" f file: +devicename Modules/ossaudiodev.c /^ const char *devicename; \/* name of the device file *\/$/;" m struct:__anon471 file: +devmajor Lib/tarfile.py /^ devmajor = 'Device major number.',$/;" v class:TarInfo +devminor Lib/tarfile.py /^ devminor = 'Device minor number.',$/;" v class:TarInfo +devnull Lib/ntpath.py /^devnull = 'nul'$/;" v +devnull Lib/posixpath.py /^devnull = '\/dev\/null'$/;" v +devpollObject Modules/selectmodule.c /^} devpollObject;$/;" t typeref:struct:__anon575 file: +devpoll_Type Modules/selectmodule.c /^ PyTypeObject *devpoll_Type;$/;" m struct:__anon572 file: +devpoll_Type_slots Modules/selectmodule.c /^static PyType_Slot devpoll_Type_slots[] = {$/;" v file: +devpoll_Type_spec Modules/selectmodule.c /^static PyType_Spec devpoll_Type_spec = {$/;" v file: +devpoll_dealloc Modules/selectmodule.c /^devpoll_dealloc(devpollObject *self)$/;" f file: +devpoll_err_closed Modules/selectmodule.c /^devpoll_err_closed(void)$/;" f file: +devpoll_flush Modules/selectmodule.c /^static int devpoll_flush(devpollObject *self)$/;" f file: +devpoll_get_closed Modules/selectmodule.c /^devpoll_get_closed(devpollObject *self, void *Py_UNUSED(ignored))$/;" f file: +devpoll_getsetlist Modules/selectmodule.c /^static PyGetSetDef devpoll_getsetlist[] = {$/;" v file: +devpoll_internal_close Modules/selectmodule.c /^devpoll_internal_close(devpollObject *self)$/;" f file: +devpoll_methods Modules/selectmodule.c /^static PyMethodDef devpoll_methods[] = {$/;" v file: +devpoll_methods Modules/selectmodule.c /^static PyMethodDef devpoll_methods[];$/;" v file: +devstdin_input Lib/test/test_asyncio/test_subprocess.py /^ async def devstdin_input(message):$/;" f function:SubprocessMixin.test_devstdin_input +dflt_ctx Modules/_decimal/_decimal.c /^static mpd_context_t dflt_ctx = {$/;" v file: +dfs Tools/peg_generator/pegen/sccutils.py /^ def dfs(node: str, path: List[str]) -> Iterator[List[str]]:$/;" f function:find_cycles_in_scc +dfs Tools/peg_generator/pegen/sccutils.py /^ def dfs(v: str) -> Iterator[Set[str]]:$/;" f function:strongly_connected_components +dgettext Lib/gettext.py /^def dgettext(domain, message):$/;" f +dgram_examine Lib/test/test_socketserver.py /^ def dgram_examine(self, proto, addr):$/;" m class:SocketServerTest +dh_method Lib/test/test_lib2to3/data/infinite_recursion.py /^class dh_method(Structure):$/;" c +dh_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class dh_st(Structure):$/;" c +di_current Objects/odictobject.c /^ PyObject *di_current;$/;" m struct:__anon736 file: +di_dbm Modules/_dbmmodule.c /^ DBM *di_dbm;$/;" m struct:__anon315 file: +di_dbm Modules/_gdbmmodule.c /^ GDBM_FILE di_dbm;$/;" m struct:__anon630 file: +di_dict Objects/dictobject.c /^ PyDictObject *di_dict; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon750 file: +di_odict Objects/odictobject.c /^ PyODictObject *di_odict;$/;" m struct:__anon736 file: +di_pos Objects/dictobject.c /^ Py_ssize_t di_pos;$/;" m struct:__anon750 file: +di_result Objects/dictobject.c /^ PyObject* di_result; \/* reusable result tuple for iteritems *\/$/;" m struct:__anon750 file: +di_result Objects/odictobject.c /^ PyObject *di_result; \/* reusable result tuple for iteritems *\/$/;" m struct:__anon736 file: +di_size Modules/_dbmmodule.c /^ int di_size; \/* -1 means recompute *\/$/;" m struct:__anon315 file: +di_size Modules/_gdbmmodule.c /^ Py_ssize_t di_size; \/* -1 means recompute *\/$/;" m struct:__anon630 file: +di_size Objects/odictobject.c /^ Py_ssize_t di_size;$/;" m struct:__anon736 file: +di_state Objects/odictobject.c /^ size_t di_state;$/;" m struct:__anon736 file: +di_used Objects/dictobject.c /^ Py_ssize_t di_used;$/;" m struct:__anon750 file: +diagnose Tools/peg_generator/pegen/tokenizer.py /^ def diagnose(self) -> tokenize.TokenInfo:$/;" m class:Tokenizer +dialect Lib/csv.py /^ class dialect(Dialect):$/;" c function:Sniffer.sniff +dialect Lib/test/test_csv.py /^ dialect=testUni)$/;" v class:TestDialectRegistry.test_dialect_apply.unspecified +dialect Lib/test/test_csv.py /^ class dialect:$/;" c function:Test_Csv._test_dialect_attrs +dialect Lib/test/test_csv.py /^ dialect = 'excel'$/;" v class:TestDialectExcel +dialect Lib/test/test_csv.py /^ dialect = 'unix'$/;" v class:TestDialectUnix +dialect Lib/test/test_csv.py /^ dialect = EscapedExcel()$/;" v class:TestEscapedExcel +dialect Lib/test/test_csv.py /^ dialect = QuotedEscapedExcel()$/;" v class:TestQuotedEscapedExcel +dialect Modules/_csv.c /^ DialectObj *dialect; \/* parsing dialect *\/$/;" m struct:__anon625 file: +dialect Modules/_csv.c /^ DialectObj *dialect; \/* parsing dialect *\/$/;" m struct:__anon626 file: +dialect_check_quoting Modules/_csv.c /^dialect_check_quoting(int quoting)$/;" f file: +dialect_kws Modules/_csv.c /^static char *dialect_kws[] = {$/;" v file: +dialect_methods Modules/_csv.c /^static struct PyMethodDef dialect_methods[] = {$/;" v typeref:struct:PyMethodDef file: +dialect_new Modules/_csv.c /^dialect_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f file: +dialect_type Modules/_csv.c /^ PyTypeObject *dialect_type;$/;" m struct:__anon620 file: +dialects Modules/_csv.c /^ PyObject *dialects; \/* Dialect registry *\/$/;" m struct:__anon620 file: +dialog Lib/idlelib/idle_test/test_configdialog.py /^dialog = None$/;" v +dialog Lib/idlelib/idle_test/test_help_about.py /^ dialog = Dummy_about_dialog()$/;" v class:DisplayFileTest +dialogstates Lib/tkinter/filedialog.py /^dialogstates = {}$/;" v +dict Include/cpython/pystate.h /^ PyObject *dict; \/* Stores per-thread state *\/$/;" m struct:_ts +dict Include/internal/pycore_interp.h /^ PyObject *dict; \/* Stores per-interpreter state *\/$/;" m struct:_is +dict Include/internal/pycore_object.h /^ PyObject *dict;$/;" m union:__anon123 +dict Lib/idlelib/debugger.py /^ dict = -1$/;" v class:NamespaceViewer +dict Lib/multiprocessing/dummy/__init__.py /^dict = dict$/;" v +dict Lib/test/_test_multiprocessing.py /^ dict = property(operator.attrgetter('manager.dict'))$/;" v class:ManagerMixin +dict Lib/test/test_descr.py /^ dict = {1:2, 3:4, 'a':1j}$/;" v class:.test_dict_constructors.Mapping +dict Modules/_collectionsmodule.c /^ PyDictObject dict;$/;" m struct:__anon532 file: +dict Modules/_ctypes/_ctypes.c /^ PyObject *dict;$/;" m struct:__anon497 file: +dict Modules/_ctypes/ctypes.h /^ PyDictObject dict; \/* first part identical to PyDictObject *\/$/;" m struct:__anon495 +dict Modules/_functoolsmodule.c /^ PyObject *dict; \/* __dict__ *\/$/;" m struct:__anon393 file: +dict Modules/_functoolsmodule.c /^ PyObject *dict;$/;" m struct:lru_cache_object file: +dict Modules/_io/bufferedio.c /^ PyObject *dict;$/;" m struct:__anon435 file: +dict Modules/_io/bufferedio.c /^ PyObject *dict;$/;" m struct:__anon436 file: +dict Modules/_io/bytesio.c /^ PyObject *dict;$/;" m struct:__anon439 file: +dict Modules/_io/fileio.c /^ PyObject *dict;$/;" m struct:__anon431 file: +dict Modules/_io/iobase.c /^ PyObject *dict;$/;" m struct:__anon434 file: +dict Modules/_io/stringio.c /^ PyObject *dict;$/;" m struct:__anon433 file: +dict Modules/_io/textio.c /^ PyObject *dict;$/;" m struct:textio file: +dict Modules/_io/winconsoleio.c /^ PyObject *dict;$/;" m struct:__anon432 file: +dict Modules/_testcapi/heaptype.c /^ PyObject *dict;$/;" m struct:__anon551 file: +dict Modules/nismodule.c /^ PyObject *dict;$/;" m struct:ypcallback_data file: +dict Modules/selectmodule.c /^ PyObject *dict;$/;" m struct:__anon574 file: +dict Modules/xxsubtype.c /^ PyDictObject dict;$/;" m struct:__anon635 file: +dict Objects/unicodeobject.c /^ PyObject *dict;$/;" m struct:unicode_formatter_t file: +dict Python/Python-ast.c /^ PyObject *dict;$/;" m struct:__anon690 file: +dict Python/bytecodes.c /^static PyObject *list, *tuple, *dict, *owner, *set, *str, *tup, *map, *keys;$/;" v file: +dict2 Lib/test/test_pprint.py /^class dict2(dict):$/;" c +dict3 Lib/test/test_pprint.py /^class dict3(dict):$/;" c +dictConfig Lib/logging/config.py /^def dictConfig(config):$/;" f +dictConfigClass Lib/logging/config.py /^dictConfigClass = DictConfigurator$/;" v +dict___contains__ Objects/dictobject.c /^dict___contains__(PyDictObject *self, PyObject *key)$/;" f file: +dict___reversed__ Objects/clinic/dictobject.c.h /^dict___reversed__(PyDictObject *self, PyObject *Py_UNUSED(ignored))$/;" f +dict___reversed___impl Objects/dictobject.c /^dict___reversed___impl(PyDictObject *self)$/;" f file: +dict_add_o Python/compile.c /^dict_add_o(PyObject *dict, PyObject *o)$/;" f file: +dict_as_flags Modules/_decimal/_decimal.c /^dict_as_flags(PyObject *val)$/;" f file: +dict_as_mapping Objects/dictobject.c /^static PyMappingMethods dict_as_mapping = {$/;" v file: +dict_as_number Objects/dictobject.c /^static PyNumberMethods dict_as_number = {$/;" v file: +dict_as_sequence Objects/dictobject.c /^static PySequenceMethods dict_as_sequence = {$/;" v file: +dict_ass_sub Objects/dictobject.c /^dict_ass_sub(PyDictObject *mp, PyObject *v, PyObject *w)$/;" f file: +dict_check Modules/_testcapi/dict.c /^dict_check(PyObject *self, PyObject *obj)$/;" f file: +dict_checkexact Modules/_testcapi/dict.c /^dict_checkexact(PyObject *self, PyObject *obj)$/;" f file: +dict_clear Modules/_testcapi/dict.c /^dict_clear(PyObject *self, PyObject *obj)$/;" f file: +dict_clear Objects/dictobject.c /^dict_clear(PyDictObject *mp, PyObject *Py_UNUSED(ignored))$/;" f file: +dict_contains Modules/_testcapi/dict.c /^dict_contains(PyObject *self, PyObject *args)$/;" f file: +dict_copy Lib/test/test_weakref.py /^ def dict_copy(d, exc):$/;" f function:MappingTestCase.check_threaded_weak_dict_copy +dict_copy Modules/_testcapi/dict.c /^dict_copy(PyObject *self, PyObject *obj)$/;" f file: +dict_copy Objects/dictobject.c /^dict_copy(PyDictObject *mp, PyObject *Py_UNUSED(ignored))$/;" f file: +dict_custom_repr Lib/test/test_pprint.py /^class dict_custom_repr(dict):$/;" c +dict_dealloc Objects/dictobject.c /^dict_dealloc(PyDictObject *mp)$/;" f file: +dict_delitem Modules/_testcapi/dict.c /^dict_delitem(PyObject *self, PyObject *args)$/;" f file: +dict_delitemstring Modules/_testcapi/dict.c /^dict_delitemstring(PyObject *self, PyObject *args)$/;" f file: +dict_equal Objects/dictobject.c /^dict_equal(PyDictObject *a, PyDictObject *b)$/;" f file: +dict_event_name Objects/dictobject.c /^dict_event_name(PyDict_WatchEvent event) {$/;" f file: +dict_factory Lib/test/test_sqlite3/test_factory.py /^def dict_factory(cursor, row):$/;" f +dict_fromkeys Objects/clinic/dictobject.c.h /^dict_fromkeys(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs)$/;" f +dict_fromkeys_impl Objects/dictobject.c /^dict_fromkeys_impl(PyTypeObject *type, PyObject *iterable, PyObject *value)$/;" f file: +dict_get Objects/clinic/dictobject.c.h /^dict_get(PyDictObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +dict_get_impl Objects/dictobject.c /^dict_get_impl(PyDictObject *self, PyObject *key, PyObject *default_value)$/;" f file: +dict_get_item_string Modules/_decimal/_decimal.c /^dict_get_item_string(PyObject *dict, const char *key, PyObject **valueobj, const char **valuestr)$/;" f file: +dict_get_version Modules/_testcapimodule.c /^dict_get_version(PyObject *self, PyObject *args)$/;" f file: +dict_getitem Modules/_testcapi/dict.c /^dict_getitem(PyObject *self, PyObject *args)$/;" f file: +dict_getitem_knownhash Modules/_testcapimodule.c /^dict_getitem_knownhash(PyObject *self, PyObject *args)$/;" f file: +dict_getitemstring Modules/_testcapi/dict.c /^dict_getitemstring(PyObject *self, PyObject *args)$/;" f file: +dict_getitemwitherror Modules/_testcapi/dict.c /^dict_getitemwitherror(PyObject *self, PyObject *args)$/;" f file: +dict_init Objects/dictobject.c /^dict_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +dict_ior Objects/dictobject.c /^dict_ior(PyObject *self, PyObject *other)$/;" f file: +dict_item Lib/idlelib/debugger_r.py /^ def dict_item(self, did, key):$/;" m class:IdbAdapter +dict_itemiterator Lib/_collections_abc.py /^dict_itemiterator = type(iter({}.items()))$/;" v +dict_items Lib/_collections_abc.py /^dict_items = type({}.items())$/;" v +dict_items Modules/_testcapi/dict.c /^dict_items(PyObject *self, PyObject *obj)$/;" f file: +dict_items Objects/dictobject.c /^dict_items(PyDictObject *mp)$/;" f file: +dict_iter Objects/dictobject.c /^dict_iter(PyDictObject *dict)$/;" f file: +dict_keyiterator Lib/_collections_abc.py /^dict_keyiterator = type(iter({}.keys()))$/;" v +dict_keys Lib/_collections_abc.py /^dict_keys = type({}.keys())$/;" v +dict_keys Lib/idlelib/debugger_r.py /^ def dict_keys(self, did):$/;" m class:IdbAdapter +dict_keys Modules/_testcapi/dict.c /^dict_keys(PyObject *self, PyObject *obj)$/;" f file: +dict_keys Objects/dictobject.c /^dict_keys(PyDictObject *mp)$/;" f file: +dict_keys_inorder Python/assemble.c /^dict_keys_inorder(PyObject *dict, Py_ssize_t offset)$/;" f file: +dict_keys_list Lib/idlelib/debugger_r.py /^ def dict_keys_list(self, did):$/;" m class:IdbAdapter +dict_length Objects/dictobject.c /^dict_length(PyDictObject *mp)$/;" f file: +dict_materialized_new_key Include/pystats.h /^ uint64_t dict_materialized_new_key;$/;" m struct:_object_stats +dict_materialized_on_request Include/pystats.h /^ uint64_t dict_materialized_on_request;$/;" m struct:_object_stats +dict_materialized_str_subclass Include/pystats.h /^ uint64_t dict_materialized_str_subclass;$/;" m struct:_object_stats +dict_materialized_too_big Include/pystats.h /^ uint64_t dict_materialized_too_big;$/;" m struct:_object_stats +dict_merge Modules/_testcapi/dict.c /^dict_merge(PyObject *self, PyObject *args)$/;" f file: +dict_merge Objects/dictobject.c /^dict_merge(PyInterpreterState *interp, PyObject *a, PyObject *b, int override)$/;" f file: +dict_mergefromseq2 Modules/_testcapi/dict.c /^dict_mergefromseq2(PyObject *self, PyObject *args)$/;" f file: +dict_new Modules/_testcapi/dict.c /^dict_new(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +dict_new Objects/dictobject.c /^dict_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +dict_new_presized Objects/dictobject.c /^dict_new_presized(PyInterpreterState *interp, Py_ssize_t minused, bool unicode)$/;" f file: +dict_next Modules/_testcapi/dict.c /^dict_next(PyObject *self, PyObject *args)$/;" f file: +dict_or Objects/dictobject.c /^dict_or(PyObject *self, PyObject *other)$/;" f file: +dict_pop Objects/clinic/dictobject.c.h /^dict_pop(PyDictObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +dict_pop_impl Objects/dictobject.c /^dict_pop_impl(PyDictObject *self, PyObject *key, PyObject *default_value)$/;" f file: +dict_popitem Objects/clinic/dictobject.c.h /^dict_popitem(PyDictObject *self, PyObject *Py_UNUSED(ignored))$/;" f +dict_popitem_impl Objects/dictobject.c /^dict_popitem_impl(PyDictObject *self)$/;" f file: +dict_repr Objects/dictobject.c /^dict_repr(PyDictObject *mp)$/;" f file: +dict_returner Lib/test/test_tomllib/test_error.py /^ def dict_returner(s: str) -> dict:$/;" f function:TestError.test_invalid_parse_float +dict_richcompare Objects/dictobject.c /^dict_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +dict_rule Parser/parser.c /^dict_rule(Parser *p)$/;" f file: +dict_setdefault Modules/_testcapi/dict.c /^dict_setdefault(PyObject *self, PyObject *args)$/;" f file: +dict_setdefault Objects/clinic/dictobject.c.h /^dict_setdefault(PyDictObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +dict_setdefault_impl Objects/dictobject.c /^dict_setdefault_impl(PyDictObject *self, PyObject *key,$/;" f file: +dict_setitem Modules/_testcapi/dict.c /^dict_setitem(PyObject *self, PyObject *args)$/;" f file: +dict_setitemstring Modules/_testcapi/dict.c /^dict_setitemstring(PyObject *self, PyObject *args)$/;" f file: +dict_size Modules/_testcapi/dict.c /^dict_size(PyObject *self, PyObject *obj)$/;" f file: +dict_sizeof Objects/dictobject.c /^dict_sizeof(PyDictObject *mp, PyObject *Py_UNUSED(ignored))$/;" f file: +dict_state Include/internal/pycore_interp.h /^ struct _Py_dict_state dict_state;$/;" m struct:_is typeref:struct:_is::_Py_dict_state +dict_subscript Objects/dictobject.c /^dict_subscript(PyDictObject *mp, PyObject *key)$/;" f file: +dict_tp_clear Objects/dictobject.c /^dict_tp_clear(PyObject *op)$/;" f file: +dict_traverse Objects/dictobject.c /^dict_traverse(PyObject *op, visitproc visit, void *arg)$/;" f file: +dict_type Lib/test/test_configparser.py /^ dict_type = SortedDict$/;" v class:SortedTestCase +dict_type Lib/test/test_configparser.py /^ dict_type = configparser._default_dict$/;" v class:CfgParserTestCaseClass +dict_type Parser/parser.c 243;" d file: +dict_update Modules/_testcapi/dict.c /^dict_update(PyObject *self, PyObject *args)$/;" f file: +dict_update Objects/dictobject.c /^dict_update(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +dict_update_arg Objects/dictobject.c /^dict_update_arg(PyObject *self, PyObject *arg)$/;" f file: +dict_update_common Objects/dictobject.c /^dict_update_common(PyObject *self, PyObject *args, PyObject *kwds,$/;" f file: +dict_valueiterator Lib/_collections_abc.py /^dict_valueiterator = type(iter({}.values()))$/;" v +dict_values Lib/_collections_abc.py /^dict_values = type({}.values())$/;" v +dict_values Modules/_testcapi/dict.c /^dict_values(PyObject *self, PyObject *obj)$/;" f file: +dict_values Objects/dictobject.c /^dict_values(PyDictObject *mp)$/;" f file: +dict_vectorcall Objects/dictobject.c /^dict_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +dict_watch_callback Modules/_testcapi/watchers.c /^dict_watch_callback(PyDict_WatchEvent event,$/;" f file: +dict_watch_callback_error Modules/_testcapi/watchers.c /^dict_watch_callback_error(PyDict_WatchEvent event,$/;" f file: +dict_watch_callback_second Modules/_testcapi/watchers.c /^dict_watch_callback_second(PyDict_WatchEvent event,$/;" f file: +dictbytype Python/compile.c /^dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset)$/;" f file: +dictcomp Lib/test/test_peepholer.py /^ def dictcomp():$/;" f function:TestTranforms.test_assignment_idiom_in_comprehensions +dictcomp_rule Parser/parser.c /^dictcomp_rule(Parser *p)$/;" f file: +dictcomp_type Parser/parser.c 252;" d file: +dictitems_as_sequence Objects/dictobject.c /^static PySequenceMethods dictitems_as_sequence = {$/;" v file: +dictitems_contains Objects/dictobject.c /^dictitems_contains(_PyDictViewObject *dv, PyObject *obj)$/;" f file: +dictitems_iter Objects/dictobject.c /^dictitems_iter(_PyDictViewObject *dv)$/;" f file: +dictitems_methods Objects/dictobject.c /^static PyMethodDef dictitems_methods[] = {$/;" v file: +dictitems_new Objects/dictobject.c /^dictitems_new(PyObject *dict, PyObject *Py_UNUSED(ignored))$/;" f file: +dictitems_reversed Objects/dictobject.c /^dictitems_reversed(_PyDictViewObject *dv, PyObject *Py_UNUSED(ignored))$/;" f file: +dictitems_xor Objects/dictobject.c /^dictitems_xor(PyObject *self, PyObject *other)$/;" f file: +dictiter_dealloc Objects/dictobject.c /^dictiter_dealloc(dictiterobject *di)$/;" f file: +dictiter_iternextitem Objects/dictobject.c /^dictiter_iternextitem(dictiterobject *di)$/;" f file: +dictiter_iternextkey Objects/dictobject.c /^dictiter_iternextkey(dictiterobject *di)$/;" f file: +dictiter_iternextvalue Objects/dictobject.c /^dictiter_iternextvalue(dictiterobject *di)$/;" f file: +dictiter_len Objects/dictobject.c /^dictiter_len(dictiterobject *di, PyObject *Py_UNUSED(ignored))$/;" f file: +dictiter_methods Objects/dictobject.c /^static PyMethodDef dictiter_methods[] = {$/;" v file: +dictiter_new Objects/dictobject.c /^dictiter_new(PyDictObject *dict, PyTypeObject *itertype)$/;" f file: +dictiter_reduce Objects/dictobject.c /^dictiter_reduce(dictiterobject *di, PyObject *Py_UNUSED(ignored))$/;" f file: +dictiter_traverse Objects/dictobject.c /^dictiter_traverse(dictiterobject *di, visitproc visit, void *arg)$/;" f file: +dictiterobject Objects/dictobject.c /^} dictiterobject;$/;" t typeref:struct:__anon750 file: +dictkeys_as_sequence Objects/dictobject.c /^static PySequenceMethods dictkeys_as_sequence = {$/;" v file: +dictkeys_contains Objects/dictobject.c /^dictkeys_contains(_PyDictViewObject *dv, PyObject *obj)$/;" f file: +dictkeys_decref Objects/dictobject.c /^dictkeys_decref(PyInterpreterState *interp, PyDictKeysObject *dk)$/;" f file: +dictkeys_generic_lookup Objects/dictobject.c /^dictkeys_generic_lookup(PyDictObject *mp, PyDictKeysObject* dk, PyObject *key, Py_hash_t hash)$/;" f file: +dictkeys_get_index Objects/dictobject.c /^dictkeys_get_index(const PyDictKeysObject *keys, Py_ssize_t i)$/;" f file: +dictkeys_incref Objects/dictobject.c /^dictkeys_incref(PyDictKeysObject *dk)$/;" f file: +dictkeys_iter Objects/dictobject.c /^dictkeys_iter(_PyDictViewObject *dv)$/;" f file: +dictkeys_methods Objects/dictobject.c /^static PyMethodDef dictkeys_methods[] = {$/;" v file: +dictkeys_new Objects/dictobject.c /^dictkeys_new(PyObject *dict, PyObject *Py_UNUSED(ignored))$/;" f file: +dictkeys_reversed Objects/dictobject.c /^dictkeys_reversed(_PyDictViewObject *dv, PyObject *Py_UNUSED(ignored))$/;" f file: +dictkeys_set_index Objects/dictobject.c /^dictkeys_set_index(PyDictKeysObject *keys, Py_ssize_t i, Py_ssize_t ix)$/;" f file: +dictlike Lib/test/mapping_tests.py /^ class dictlike(self.type2test): pass$/;" c function:TestMappingProtocol.test_fromkeys +dictlike Lib/test/test_dict.py /^ class dictlike(dict): pass$/;" c function:DictTest.test_fromkeys +dictmissing Lib/test/test_types.py /^ class dictmissing(dict):$/;" c function:MappingProxyTests.test_missing +dictproxy_new Modules/_testcapi/dict.c /^dictproxy_new(PyObject *self, PyObject *obj)$/;" f file: +dictremover_slots Modules/_ctypes/_ctypes.c /^static PyType_Slot dictremover_slots[] = {$/;" v file: +dictremover_spec Modules/_ctypes/_ctypes.c /^static PyType_Spec dictremover_spec = {$/;" v file: +dictresize Objects/dictobject.c /^dictresize(PyInterpreterState *interp, PyDictObject *mp,$/;" f file: +dictreviter_iternext Objects/dictobject.c /^dictreviter_iternext(dictiterobject *di)$/;" f file: +dictsub Lib/test/test_capi/test_misc.py /^ class dictsub(dict): ... # dict subclasses must work$/;" c function:CAPITest.test_function_set_kw_defaults +dicttable Lib/idlelib/debugger_r.py /^dicttable = {}$/;" v +dictvalues_as_sequence Objects/dictobject.c /^static PySequenceMethods dictvalues_as_sequence = {$/;" v file: +dictvalues_iter Objects/dictobject.c /^dictvalues_iter(_PyDictViewObject *dv)$/;" f file: +dictvalues_methods Objects/dictobject.c /^static PyMethodDef dictvalues_methods[] = {$/;" v file: +dictvalues_new Objects/dictobject.c /^dictvalues_new(PyObject *dict, PyObject *Py_UNUSED(ignored))$/;" f file: +dictvalues_reversed Objects/dictobject.c /^dictvalues_reversed(_PyDictViewObject *dv, PyObject *Py_UNUSED(ignored))$/;" f file: +dictview_dealloc Objects/dictobject.c /^dictview_dealloc(_PyDictViewObject *dv)$/;" f file: +dictview_getset Objects/dictobject.c /^static PyGetSetDef dictview_getset[] = {$/;" v file: +dictview_len Objects/dictobject.c /^dictview_len(_PyDictViewObject *dv)$/;" f file: +dictview_mapping Objects/dictobject.c /^dictview_mapping(PyObject *view, void *Py_UNUSED(ignored)) {$/;" f file: +dictview_repr Objects/dictobject.c /^dictview_repr(_PyDictViewObject *dv)$/;" f file: +dictview_richcompare Objects/dictobject.c /^dictview_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +dictview_traverse Objects/dictobject.c /^dictview_traverse(_PyDictViewObject *dv, visitproc visit, void *arg)$/;" f file: +dictviews_as_number Objects/dictobject.c /^static PyNumberMethods dictviews_as_number = {$/;" v file: +dictviews_isdisjoint Objects/dictobject.c /^dictviews_isdisjoint(PyObject *self, PyObject *other)$/;" f file: +dictviews_or Objects/dictobject.c /^dictviews_or(PyObject* self, PyObject *other)$/;" f file: +dictviews_sub Objects/dictobject.c /^dictviews_sub(PyObject *self, PyObject *other)$/;" f file: +dictviews_to_set Objects/dictobject.c /^dictviews_to_set(PyObject *self)$/;" f file: +dictviews_xor Objects/dictobject.c /^dictviews_xor(PyObject* self, PyObject *other)$/;" f file: +diff Lib/test/test_lib2to3/pytree_idempotency.py /^def diff(fn, tree):$/;" f +diff Python/dtoa.c /^diff(Bigint *a, Bigint *b)$/;" f file: +diff_bytes Lib/difflib.py /^def diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'',$/;" f +diff_dict Lib/test/test_getpath.py /^def diff_dict(before, after, prefix="global"):$/;" f +diff_texts Lib/lib2to3/main.py /^def diff_texts(a, b, filename):$/;" f +diff_texts Lib/test/test_lib2to3/test_parser.py /^def diff_texts(a, b, filename):$/;" f +diff_to_bool Modules/_datetimemodule.c /^diff_to_bool(int diff, int op)$/;" f file: +difference Lib/_weakrefset.py /^ def difference(self, other):$/;" m class:WeakSet +difference_update Lib/_weakrefset.py /^ def difference_update(self, other):$/;" m class:WeakSet +different_locale Lib/calendar.py /^class different_locale:$/;" c +diffs Lib/test/test_math.py /^ diffs = [px - qx for px, qx in zip(p, q)]$/;" v class:MathTests.testDist.T +dig Lib/test/test_scope.py /^ def dig(self):$/;" m class:ScopeTests.testCellLeak.Tester +digest Lib/hmac.py /^ def digest(self):$/;" m class:HMAC +digest Lib/hmac.py /^def digest(key, msg, digest):$/;" f +digest Lib/test/test_hmac.py /^ def digest(self):$/;" m class:TestVectorsTestCase.test_legacy_block_size_warnings.MockCrazyHash +digest_length Modules/_blake2/impl/blake2.h /^ uint8_t digest_length; \/\/ 1$/;" m struct:__blake2b_param +digest_length Modules/_blake2/impl/blake2.h /^ uint8_t digest_length; \/\/ 1$/;" m struct:__blake2s_param +digest_size Lib/hmac.py /^digest_size = None$/;" v +digestsize Modules/sha2module.c /^ int digestsize;$/;" m struct:__anon631 file: +digestsize Modules/sha2module.c /^ int digestsize;$/;" m struct:__anon632 file: +digit Include/cpython/longintrepr.h /^typedef uint32_t digit;$/;" t +digit Include/cpython/longintrepr.h /^typedef unsigned short digit;$/;" t +digit Objects/unicodectype.c /^ const unsigned char digit;$/;" m struct:__anon701 file: +digitlimit Python/mystrtoul.c /^static const int digitlimit[] = {$/;" v file: +digits Lib/encodings/punycode.py /^digits = b"abcdefghijklmnopqrstuvwxyz0123456789"$/;" v +digits Lib/string.py /^digits = '0123456789'$/;" v +digits Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t digits;$/;" m struct:mpd_t +digits Modules/_decimal/tests/randdec.py /^def digits(maxprec):$/;" f +dir Lib/ftplib.py /^ def dir(self, *args):$/;" m class:FTP +dir PCbuild/build.bat /^set dir=%~dp0$/;" v +dir_fd Lib/test/test_glob.py /^ dir_fd = None$/;" v class:GlobTests +dir_fd Modules/posixmodule.c /^ int dir_fd;$/;" m struct:__anon480 file: +dir_fd_and_fd_invalid Modules/posixmodule.c /^dir_fd_and_fd_invalid(const char *function_name, int dir_fd, int fd)$/;" f file: +dir_fd_and_follow_symlinks_invalid Modules/posixmodule.c /^dir_fd_and_follow_symlinks_invalid(const char *function_name, int dir_fd,$/;" f file: +dir_fd_converter Modules/posixmodule.c /^dir_fd_converter(PyObject *o, void *p)$/;" f file: +dir_fd_unavailable Modules/posixmodule.c /^dir_fd_unavailable(PyObject *o, void *p)$/;" f file: +dir_name Lib/test/test_import/__init__.py /^ dir_name = os.path.abspath(TESTFN)$/;" v +dircmp Lib/filecmp.py /^class dircmp:$/;" c +directive Lib/test/test_clinic.py /^ def directive(self, name, args):$/;" m class:FakeClinic +directive_class Tools/clinic/clinic.py /^ def directive_class($/;" m class:DSLParser +directive_destination Tools/clinic/clinic.py /^ def directive_destination($/;" m class:DSLParser +directive_dump Tools/clinic/clinic.py /^ def directive_dump(self, name: str) -> None:$/;" m class:DSLParser +directive_module Tools/clinic/clinic.py /^ def directive_module(self, name: str) -> None:$/;" m class:DSLParser +directive_output Tools/clinic/clinic.py /^ def directive_output($/;" m class:DSLParser +directive_preserve Tools/clinic/clinic.py /^ def directive_preserve(self) -> None:$/;" m class:DSLParser +directive_printout Tools/clinic/clinic.py /^ def directive_printout(self, *args: str) -> None:$/;" m class:DSLParser +directive_set Tools/clinic/clinic.py /^ def directive_set(self, name: str, value: str) -> None:$/;" m class:DSLParser +directive_version Tools/clinic/clinic.py /^ def directive_version(self, required: str) -> None:$/;" m class:DSLParser +directory Lib/test/test_decimal.py /^directory = testdir + os.sep + TESTDATADIR + os.sep$/;" v +dirent Modules/_posixsubprocess.c 55;" d file: +dirent Modules/posixmodule.c 427;" d file: +dirfd Modules/_posixsubprocess.c 58;" d file: +dirlink Lib/test/test_os.py /^ dirlink = 'dirlinktest'$/;" v class:Win32SymlinkTests +dirlink Lib/test/test_pathlib.py /^ def dirlink(self, src, dest):$/;" f function:_BasePathTest.setUp +dirlink_target Lib/test/test_os.py /^ dirlink_target = os.path.dirname(filelink_target)$/;" v class:Win32SymlinkTests +dirname Lib/idlelib/iomenu.py /^ dirname = None$/;" v class:IOBinding +dirname Lib/ntpath.py /^def dirname(p):$/;" f +dirname Lib/posixpath.py /^def dirname(p):$/;" f +dirname Lib/test/test_dbm.py /^dirname = os_helper.TESTFN$/;" v +dirname Lib/test/test_getpath.py /^ def dirname(self, path):$/;" m class:MockNTNamespace +dirname Lib/test/test_getpath.py /^ def dirname(self, path):$/;" m class:MockPosixNamespace +dirname Lib/test/test_shelve.py /^ dirname = os_helper.TESTFN$/;" v class:TestCase +dirp Modules/posixmodule.c /^ DIR *dirp;$/;" m struct:__anon481 file: +dirs_double_event Lib/tkinter/filedialog.py /^ def dirs_double_event(self, event):$/;" m class:FileDialog +dirs_select_event Lib/tkinter/filedialog.py /^ def dirs_select_event(self, event):$/;" m class:FileDialog +dis Lib/dis.py /^ def dis(self):$/;" m class:Bytecode +dis Lib/dis.py /^def dis(x=None, *, file=None, depth=None, show_caches=False, adaptive=False):$/;" f +dis Lib/pickletools.py /^def dis(pickle, out=None, memo=None, indentlevel=4, annotate=0):$/;" f +dis Lib/re/_compiler.py /^def dis(code):$/;" f +dis_ Lib/re/_compiler.py /^ def dis_(start, end):$/;" f function:dis +disable Lib/bdb.py /^ def disable(self):$/;" m class:Breakpoint +disable Lib/logging/__init__.py /^ def disable(self):$/;" m class:Manager +disable Lib/logging/__init__.py /^ def disable(self, value):$/;" m class:Manager +disable Lib/logging/__init__.py /^def disable(level=CRITICAL):$/;" f +disable Lib/tkinter/tix.py /^ def disable(self, name):$/;" m class:OptionMenu +disable_bracketed_paste Modules/readline.c /^disable_bracketed_paste(void)$/;" f file: +disable_faulthandler Lib/test/support/__init__.py /^def disable_faulthandler():$/;" f +disable_gc Lib/test/support/__init__.py /^def disable_gc():$/;" f +disable_interspersed_args Lib/optparse.py /^ def disable_interspersed_args(self):$/;" m class:OptionParser +disable_keys Lib/turtledemo/sorting_animate.py /^def disable_keys():$/;" f +disable_logger Lib/test/test_asyncio/utils.py /^def disable_logger():$/;" f +disable_nagle_algorithm Lib/socketserver.py /^ disable_nagle_algorithm = False$/;" v class:StreamRequestHandler +disable_nagle_algorithm Lib/xmlrpc/server.py /^ disable_nagle_algorithm = True$/;" v class:SimpleXMLRPCRequestHandler +disable_registry_virtualization PC/layout/support/appxmanifest.py /^def disable_registry_virtualization(xml):$/;" f +disabled_test_converter_arguments Lib/test/test_clinic.py /^ def disabled_test_converter_arguments(self):$/;" m class:ClinicParserTest +disassemble Lib/dis.py /^def disassemble(co, lasti=-1, *, file=None, show_caches=False, adaptive=False):$/;" f +discard Lib/_collections_abc.py /^ def discard(self, value):$/;" m class:MutableSet +discard Lib/_weakrefset.py /^ def discard(self, item):$/;" m class:WeakSet +discard Lib/mailbox.py /^ def discard(self, key):$/;" m class:Mailbox +discard Lib/mailbox.py /^ def discard(self, key):$/;" m class:Maildir +discard Lib/test/test_collections.py /^ def discard(self, value):$/;" m class:TestCollectionABCs.test_Set_from_iterable.SetUsingInstanceFromIterable +discard Lib/test/test_collections.py /^ def discard(self,v):$/;" m class:TestCollectionABCs.test_issue_4920.MySet +discard Lib/test/test_collections.py /^ def discard(self, item):$/;" m class:WithSet +discard_buffers Lib/test/support/asynchat.py /^ def discard_buffers(self):$/;" m class:async_chat +disco Lib/dis.py /^disco = disassemble # XXX For backwards compatibility$/;" v +disconnect Lib/test/test_smtplib.py /^ disconnect = 0$/;" v class:SimSMTPChannel +discover Lib/importlib/metadata/__init__.py /^ def discover(cls, **kwargs):$/;" m class:Distribution +discover Lib/test/test_unittest/test_discovery.py /^ def discover(self, start_dir, pattern, top_level_dir):$/;" m class:TestDiscovery.test_command_line_handling_do_discovery_calls_loader.Loader +discover Lib/test/test_unittest/test_discovery.py /^ def discover(self, start_dir, pattern, top_level_dir):$/;" m class:TestDiscovery.test_command_line_handling_do_discovery_uses_default_loader.Loader +discover Lib/unittest/loader.py /^ def discover(self, start_dir, pattern='test*.py', top_level_dir=None):$/;" m class:TestLoader +discoverClicked Tools/unittestgui/unittestgui.py /^ def discoverClicked(self):$/;" m class:BaseGUITestRunner +disjunction_rule Parser/parser.c /^disjunction_rule(Parser *p)$/;" f file: +disjunction_type Parser/parser.c 193;" d file: +disk_usage Lib/shutil.py /^ def disk_usage(path):$/;" f +dispatch Lib/functools.py /^ def dispatch(cls):$/;" f function:singledispatch +dispatch Lib/idlelib/debugobj.py /^dispatch = {$/;" v +dispatch Lib/idlelib/redirector.py /^ def dispatch(self, operation, *args):$/;" m class:WidgetRedirector +dispatch Lib/multiprocessing/managers.py /^def dispatch(c, id, methodname, args=(), kwds={}):$/;" f +dispatch Lib/pickle.py /^ dispatch = {}$/;" v class:_Pickler +dispatch Lib/pickle.py /^ dispatch = {}$/;" v class:_Unpickler +dispatch Lib/profile.py /^ dispatch = {$/;" v class:Profile +dispatch Lib/test/test_print.py /^dispatch = {$/;" v +dispatch Lib/test/test_sys_setprofile.py /^ dispatch = {$/;" v class:ProfileSimulator +dispatch Lib/xmlrpc/client.py /^ dispatch = {}$/;" v class:Marshaller +dispatch Lib/xmlrpc/client.py /^ dispatch = {}$/;" v class:Unmarshaller +dispatch_call Lib/bdb.py /^ def dispatch_call(self, frame, arg):$/;" m class:Bdb +dispatch_exception Lib/bdb.py /^ def dispatch_exception(self, frame, arg):$/;" m class:Bdb +dispatch_line Lib/bdb.py /^ def dispatch_line(self, frame):$/;" m class:Bdb +dispatch_return Lib/bdb.py /^ def dispatch_return(self, frame, arg):$/;" m class:Bdb +dispatch_table Lib/copyreg.py /^dispatch_table = {}$/;" v +dispatch_table Lib/idlelib/rpc.py /^ dispatch_table = {types.CodeType: pickle_code, **copyreg.dispatch_table}$/;" v class:CodePickler +dispatch_table Lib/test/pickletester.py /^ dispatch_table = dt$/;" v class:AbstractDispatchTableTests.test_class_dispatch_table.MyPickler +dispatch_table Modules/_pickle.c /^ PyObject *dispatch_table; \/* private dispatch_table, can be NULL *\/$/;" m struct:PicklerObject file: +dispatch_table Modules/_pickle.c /^ PyObject *dispatch_table;$/;" m struct:__anon448 file: +dispatched_func Lib/test/test_xmlrpc.py /^ def dispatched_func(self, *params):$/;" m class:SimpleXMLRPCDispatcherTestCase.test_call_instance_func.DispatchedClass +dispatched_func Lib/test/test_xmlrpc.py /^ def dispatched_func(*params):$/;" f function:SimpleXMLRPCDispatcherTestCase.test_call_registered_func +dispatcher Lib/test/support/asyncore.py /^class dispatcher:$/;" c +dispatcher_with_send Lib/test/support/asyncore.py /^class dispatcher_with_send(dispatcher):$/;" c +dispatching Modules/_tkinter.c /^ int dispatching;$/;" m struct:__anon334 file: +display Lib/test/test_userdict.py /^ def display(self): print(self)$/;" m class:UserDictTest.test_all.MyUserDict +display Lib/turtledemo/nim.py /^ def display(self, msg1, msg2=None):$/;" m class:NimView +displayName PC/launcher2.c /^ const wchar_t *displayName;$/;" m struct:EnvironmentInfo file: +display_executing_dialog Lib/idlelib/pyshell.py /^ def display_executing_dialog(self):$/;" m class:ModifiedInterpreter +display_extra_help Lib/idlelib/editor.py /^ def display_extra_help(helpfile=resource):$/;" f function:EditorWindow._extra_help_callback +display_file_text Lib/idlelib/help_about.py /^ def display_file_text(self, title, filename, encoding=None):$/;" m class:AboutDialog +display_file_text Lib/idlelib/idle_test/test_help_about.py /^ display_file_text = About.display_file_text$/;" v class:Dummy_about_dialog +display_header Lib/test/libregrtest/main.py /^ def display_header(self):$/;" m class:Regrtest +display_name Lib/email/_header_value_parser.py /^ def display_name(self):$/;" m class:Address +display_name Lib/email/_header_value_parser.py /^ def display_name(self):$/;" m class:DisplayName +display_name Lib/email/_header_value_parser.py /^ def display_name(self):$/;" m class:Group +display_name Lib/email/_header_value_parser.py /^ def display_name(self):$/;" m class:InvalidMailbox +display_name Lib/email/_header_value_parser.py /^ def display_name(self):$/;" m class:Mailbox +display_name Lib/email/_header_value_parser.py /^ def display_name(self):$/;" m class:NameAddr +display_name Lib/email/headerregistry.py /^ def display_name(self):$/;" m class:Address +display_name Lib/email/headerregistry.py /^ def display_name(self):$/;" m class:Group +display_no_subprocess_error Lib/idlelib/pyshell.py /^ def display_no_subprocess_error(self):$/;" m class:ModifiedInterpreter +display_port_binding_error Lib/idlelib/pyshell.py /^ def display_port_binding_error(self):$/;" m class:ModifiedInterpreter +display_printer_text Lib/idlelib/help_about.py /^ def display_printer_text(self, title, printer):$/;" m class:AboutDialog +display_progress Lib/test/libregrtest/main.py /^ def display_progress(self, test_index, text):$/;" m class:Regrtest +display_result Lib/test/libregrtest/main.py /^ def display_result(self):$/;" m class:Regrtest +display_result Lib/test/libregrtest/runtest_mp.py /^ def display_result(self, mp_result: MultiprocessResult) -> None:$/;" m class:MultiprocessTestRunner +display_sanitizers Lib/test/libregrtest/main.py /^ def display_sanitizers(self):$/;" m class:Regrtest +display_source_line_with_margin Python/traceback.c /^display_source_line_with_margin(PyObject *f, PyObject *filename, int lineno, int indent,$/;" f file: +display_summary Lib/test/libregrtest/main.py /^ def display_summary(self):$/;" m class:Regrtest +displayhook Lib/idlelib/rpc.py /^def displayhook(value):$/;" f +displayhook Lib/pdb.py /^ def displayhook(self, obj):$/;" m class:Pdb +disposition Lib/cgi.py /^ disposition = None$/;" v class:MiniFieldStorage +disposition_options Lib/cgi.py /^ disposition_options = {}$/;" v class:MiniFieldStorage +dissect_can_frame Lib/test/test_socket.py /^ def dissect_can_frame(cls, frame):$/;" m class:CANTest +distance Lib/turtle.py /^ def distance(self, x, y=None):$/;" m class:TNavigator +distb Lib/dis.py /^def distb(tb=None, *, file=None, show_caches=False, adaptive=False):$/;" f +distribution Lib/importlib/metadata/__init__.py /^def distribution(distribution_name):$/;" f +distributions Lib/importlib/metadata/__init__.py /^def distributions(**kwargs):$/;" f +div Lib/test/test_xmlrpc.py /^ def div(self, x, y):$/;" m class:http_multi_server.TestInstanceClass +div Lib/test/test_xmlrpc.py /^ def div(self, x, y):$/;" m class:http_server.TestInstanceClass +div_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class div_t(Structure):$/;" c +div_zero Lib/test/_test_atexit.py /^ def div_zero():$/;" f function:GeneralTest.test_raise_unnormalized +divide Lib/_pydecimal.py /^ def divide(self, a, b):$/;" m class:Context +divide_int Lib/_pydecimal.py /^ def divide_int(self, a, b):$/;" m class:Context +divide_nearest Modules/_datetimemodule.c /^divide_nearest(PyObject *m, PyObject *n)$/;" f file: +divide_timedelta_int Modules/_datetimemodule.c /^divide_timedelta_int(PyDateTime_Delta *delta, PyObject *intobj)$/;" f file: +divide_timedelta_timedelta Modules/_datetimemodule.c /^divide_timedelta_timedelta(PyDateTime_Delta *left, PyDateTime_Delta *right)$/;" f file: +division Lib/__future__.py /^division = _Feature((2, 2, 0, "alpha", 2),$/;" v +divisor Lib/test/test_enum.py /^ divisor = 1$/;" v class:TestIntEnumClass.test_shadowed_attr.Number +divmod Lib/_pydecimal.py /^ def divmod(self, a, b):$/;" m class:Context +divmod Modules/_datetimemodule.c /^divmod(int x, int y, int *r)$/;" f file: +divmod_shift Objects/longobject.c /^divmod_shift(PyObject *shiftby, Py_ssize_t *wordshift, digit *remshift)$/;" f file: +divrem1 Objects/longobject.c /^divrem1(PyLongObject *a, digit n, digit *prem)$/;" f file: +djbx33a Include/pyhash.h /^ } djbx33a;$/;" m union:__anon256 typeref:struct:__anon256::__anon259 +dk_indices Include/internal/pycore_dict.h /^ char dk_indices[]; \/* char is required to avoid strict aliasing. *\/$/;" m struct:_dictkeysobject +dk_kind Include/internal/pycore_dict.h /^ uint8_t dk_kind;$/;" m struct:_dictkeysobject +dk_log2_index_bytes Include/internal/pycore_dict.h /^ uint8_t dk_log2_index_bytes;$/;" m struct:_dictkeysobject +dk_log2_size Include/internal/pycore_dict.h /^ uint8_t dk_log2_size;$/;" m struct:_dictkeysobject +dk_nentries Include/internal/pycore_dict.h /^ Py_ssize_t dk_nentries;$/;" m struct:_dictkeysobject +dk_refcnt Include/internal/pycore_dict.h /^ Py_ssize_t dk_refcnt;$/;" m struct:_dictkeysobject +dk_usable Include/internal/pycore_dict.h /^ Py_ssize_t dk_usable;$/;" m struct:_dictkeysobject +dk_version Include/internal/pycore_dict.h /^ uint32_t dk_version;$/;" m struct:_dictkeysobject +dl_fast_sum Modules/mathmodule.c /^dl_fast_sum(double a, double b)$/;" f file: +dl_funcptr Python/importdl.h /^typedef FARPROC dl_funcptr;$/;" t +dl_funcptr Python/importdl.h /^typedef void (*dl_funcptr)(void);$/;" t +dl_mul Modules/mathmodule.c /^dl_mul(double x, double y)$/;" f file: +dl_split Modules/mathmodule.c /^dl_split(double x) {$/;" f file: +dl_sum Modules/mathmodule.c /^dl_sum(double a, double b)$/;" f file: +dlerror Python/dynload_shlib.c 17;" d file: +dlineinfo Lib/tkinter/__init__.py /^ def dlineinfo(self, index):$/;" m class:Text +dll Lib/test/test_ctypes/test_as_parameter.py /^dll = CDLL(_ctypes_test.__file__)$/;" v +dll Lib/test/test_ctypes/test_functions.py /^dll = CDLL(_ctypes_test.__file__)$/;" v +dll Lib/test/test_ctypes/test_pickling.py /^dll = CDLL(_ctypes_test.__file__)$/;" v +dll Lib/test/test_ctypes/test_refcounts.py /^dll = ctypes.CDLL(_ctypes_test.__file__)$/;" v +dlopenflags Include/internal/pycore_import.h /^ int dlopenflags;$/;" m struct:_import_state +dnd_accept Lib/tkinter/dnd.py /^ def dnd_accept(self, source, event):$/;" m class:Tester +dnd_commit Lib/tkinter/dnd.py /^ def dnd_commit(self, source, event):$/;" m class:Tester +dnd_end Lib/tkinter/dnd.py /^ def dnd_end(self, target, event):$/;" m class:Icon +dnd_enter Lib/tkinter/dnd.py /^ def dnd_enter(self, source, event):$/;" m class:Tester +dnd_leave Lib/tkinter/dnd.py /^ def dnd_leave(self, source, event):$/;" m class:Tester +dnd_motion Lib/tkinter/dnd.py /^ def dnd_motion(self, source, event):$/;" m class:Tester +dnd_start Lib/tkinter/dnd.py /^def dnd_start(source, event):$/;" f +dngettext Lib/gettext.py /^def dngettext(domain, msgid1, msgid2, n):$/;" f +dnpgettext Lib/gettext.py /^def dnpgettext(domain, context, msgid1, msgid2, n):$/;" f +do Lib/idlelib/undo.py /^ def do(self, text):$/;" m class:Command +do Lib/idlelib/undo.py /^ def do(self, text):$/;" m class:DeleteCommand +do Lib/idlelib/undo.py /^ def do(self, text):$/;" m class:InsertCommand +do Lib/test/test_asyncio/test_ssl.py /^ def do(func, *args):$/;" f function:TestSSL.test_create_server_ssl_over_ssl.test_client.prog +do Lib/test/test_richcmp.py /^ def do(bad):$/;" f function:MiscTest.test_not +doCdataSection Modules/expat/xmlparse.c /^doCdataSection(XML_Parser parser, const ENCODING *enc, const char **startPtr,$/;" f file: +doClassCleanups Lib/unittest/case.py /^ def doClassCleanups(cls):$/;" m class:TestCase +doCleanups Lib/test/test_socket.py /^ def doCleanups(self, *args, **kwargs):$/;" m class:ThreadSafeCleanupTestCase +doCleanups Lib/unittest/case.py /^ def doCleanups(self):$/;" m class:TestCase +doConnect Lib/test/test_socket.py /^ def doConnect(self):$/;" m class:InterruptedSendTimeoutTest +doContent Modules/expat/xmlparse.c /^doContent(XML_Parser parser, int startTagLevel, const ENCODING *enc,$/;" f file: +doDoctestFile Lib/test/test_zipimport.py /^ def doDoctestFile(self, module):$/;" m class:UncompressedZipImportTestCase +doDoctestSuite Lib/test/test_zipimport.py /^ def doDoctestSuite(self, module):$/;" m class:UncompressedZipImportTestCase +doIgnoreSection Modules/expat/xmlparse.c /^doIgnoreSection(XML_Parser parser, const ENCODING *enc, const char **startPtr,$/;" f file: +doModuleCleanups Lib/unittest/case.py /^def doModuleCleanups():$/;" f +doOpenFile Lib/idlelib/macosx.py /^ def doOpenFile(*args):$/;" f function:addOpenEventSupport +doProlog Modules/expat/xmlparse.c /^doProlog(XML_Parser parser, const ENCODING *enc, const char *s, const char *end,$/;" f file: +doRecvmsg Lib/test/test_socket.py /^ def doRecvmsg(self, sock, bufsize, *args):$/;" m class:RecvmsgIntoMixin +doRecvmsg Lib/test/test_socket.py /^ def doRecvmsg(self, sock, bufsize, *args):$/;" m class:SendrecvmsgBase +doRollover Lib/logging/handlers.py /^ def doRollover(self):$/;" m class:RotatingFileHandler +doRollover Lib/logging/handlers.py /^ def doRollover(self):$/;" m class:TimedRotatingFileHandler +doSplitTest Lib/test/test_except_star.py /^ def doSplitTest(self, exc, T, match_template, rest_template):$/;" m class:TestExceptStarSplitSemantics +doSplitTestInExceptHandler Lib/test/test_except_star.py /^ def doSplitTestInExceptHandler(self, exc, T, match_template, rest_template):$/;" m class:TestExceptStarSplitSemantics +doSplitTestInExceptStarHandler Lib/test/test_except_star.py /^ def doSplitTestInExceptStarHandler(self, exc, T, match_template, rest_template):$/;" m class:TestExceptStarSplitSemantics +doSplitTestNamed Lib/test/test_except_star.py /^ def doSplitTestNamed(self, exc, T, match_template, rest_template):$/;" m class:TestExceptStarSplitSemantics +doSplitTestUnnamed Lib/test/test_except_star.py /^ def doSplitTestUnnamed(self, exc, T, match_template, rest_template):$/;" m class:TestExceptStarSplitSemantics +doTest Lib/test/test_zipimport.py /^ def doTest(self, expected_ext, files, *modules, **kw):$/;" m class:UncompressedZipImportTestCase +doTraceback Lib/test/test_zipimport.py /^ def doTraceback(self, module):$/;" m class:UncompressedZipImportTestCase +do_AUTHHEAD Lib/test/test_urllib2_localnet.py /^ def do_AUTHHEAD(self):$/;" m class:BasicAuthHandler +do_CUSTOM Lib/test/test_httpservers.py /^ def do_CUSTOM(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_EOF Lib/pdb.py /^ def do_EOF(self, arg):$/;" m class:Pdb +do_EOF Lib/pstats.py /^ def do_EOF(self, line):$/;" m class:f8.ProfileBrowser +do_EOF Lib/test/test_cmd.py /^ def do_EOF(self, args):$/;" m class:TestAlternateInput.simplecmd +do_EOF Lib/test/test_cmd.py /^ def do_EOF(self, args):$/;" m class:TestAlternateInput.simplecmd2 +do_ERROR Lib/test/test_httpservers.py /^ def do_ERROR(self):$/;" m class:RequestHandlerLoggingTestCase.request_handler +do_EXPLAINERROR Lib/test/test_httpservers.py /^ def do_EXPLAINERROR(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_GET Lib/http/server.py /^ def do_GET(self):$/;" m class:SimpleHTTPRequestHandler +do_GET Lib/pydoc.py /^ def do_GET(self):$/;" m class:_start_server.DocHandler +do_GET Lib/test/ssl_servers.py /^ def do_GET(self, send_body=True):$/;" m class:StatsRequestHandler +do_GET Lib/test/test_httpservers.py /^ def do_GET(self):$/;" m class:RequestHandlerLoggingTestCase.request_handler +do_GET Lib/test/test_httpservers.py /^ def do_GET(self):$/;" m class:SocketlessRequestHandler +do_GET Lib/test/test_robotparser.py /^ def do_GET(self):$/;" m class:RobotHandler +do_GET Lib/test/test_urllib2_localnet.py /^ def do_GET(self):$/;" m class:GetRequestHandler.FakeHTTPRequestHandler +do_GET Lib/test/test_urllib2_localnet.py /^ def do_GET(self):$/;" m class:BasicAuthHandler +do_GET Lib/test/test_urllib2_localnet.py /^ def do_GET(self):$/;" m class:FakeProxyHandler +do_GET Lib/xmlrpc/server.py /^ def do_GET(self):$/;" m class:DocXMLRPCRequestHandler +do_HEAD Lib/http/server.py /^ def do_HEAD(self):$/;" m class:SimpleHTTPRequestHandler +do_HEAD Lib/test/ssl_servers.py /^ def do_HEAD(self):$/;" m class:StatsRequestHandler +do_HEAD Lib/test/test_httpservers.py /^ def do_HEAD(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_HEAD Lib/test/test_urllib2_localnet.py /^ def do_HEAD(self):$/;" m class:BasicAuthHandler +do_KEEP Lib/test/test_httpservers.py /^ def do_KEEP(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_KEYERROR Lib/test/test_httpservers.py /^ def do_KEYERROR(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_LATINONEHEADER Lib/test/test_httpservers.py /^ def do_LATINONEHEADER(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_NOTFOUND Lib/test/test_httpservers.py /^ def do_NOTFOUND(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_POST Lib/http/server.py /^ def do_POST(self):$/;" m class:CGIHTTPRequestHandler +do_POST Lib/test/test_urllib2_localnet.py /^ def do_POST(self):$/;" m class:GetRequestHandler.FakeHTTPRequestHandler +do_POST Lib/test/test_xmlrpc.py /^ def do_POST(self):$/;" m class:XMLRPCTestCase.test_keepalive_disconnect.RequestHandler +do_POST Lib/test/test_xmlrpc.py /^ def do_POST(self):$/;" m class:GzipServerTestCase.RequestHandler +do_POST Lib/test/test_xmlrpc.py /^ def do_POST(self):$/;" m class:HeadersServerTestCase.RequestHandler +do_POST Lib/xmlrpc/server.py /^ def do_POST(self):$/;" m class:SimpleXMLRPCRequestHandler +do_ReadFile Modules/overlapped.c /^do_ReadFile(OverlappedObject *self, HANDLE handle,$/;" f file: +do_SEND_ERROR Lib/test/test_httpservers.py /^ def do_SEND_ERROR(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_TEST Lib/test/test_httpservers.py /^ def do_TEST(self):$/;" m class:BaseHTTPServerTestCase.request_handler +do_WSARecv Modules/overlapped.c /^do_WSARecv(OverlappedObject *self, HANDLE handle,$/;" f file: +do_a Lib/pdb.py /^ do_a = do_args$/;" v class:Pdb +do_add Lib/pstats.py /^ def do_add(self, line):$/;" m class:f8.ProfileBrowser +do_add Lib/test/test_cmd.py /^ def do_add(self, s):$/;" m class:samplecmdclass +do_alias Lib/pdb.py /^ def do_alias(self, arg):$/;" m class:Pdb +do_append Modules/_pickle.c /^do_append(PickleState *state, UnpicklerObject *self, Py_ssize_t x)$/;" f file: +do_approx_equal_abs_test Lib/test/test_statistics.py /^ def do_approx_equal_abs_test(self, x, delta):$/;" m class:ApproxEqualInexactTest +do_approx_equal_rel_test Lib/test/test_statistics.py /^ def do_approx_equal_rel_test(self, x, delta):$/;" m class:ApproxEqualInexactTest +do_args Lib/pdb.py /^ def do_args(self, arg):$/;" m class:Pdb +do_argstrip Objects/bytesobject.c /^do_argstrip(PyBytesObject *self, int striptype, PyObject *bytes)$/;" f +do_argstrip Objects/unicodeobject.c /^do_argstrip(PyObject *self, int striptype, PyObject *sep)$/;" f file: +do_b Lib/pdb.py /^ do_b = do_break$/;" v class:Pdb +do_blocking_test Lib/test/test_queue.py /^ def do_blocking_test(self, block_func, block_args, trigger_func, trigger_args):$/;" m class:BlockingTestMixin +do_break Lib/pdb.py /^ def do_break(self, arg, temporary = 0):$/;" m class:Pdb +do_bt Lib/pdb.py /^ do_bt = do_where$/;" v class:Pdb +do_callees Lib/pstats.py /^ def do_callees(self, line):$/;" m class:f8.ProfileBrowser +do_callers Lib/pstats.py /^ def do_callers(self, line):$/;" m class:f8.ProfileBrowser +do_capitalize Objects/unicodeobject.c /^do_capitalize(int kind, const void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)$/;" f file: +do_casefold Objects/unicodeobject.c /^do_casefold(int kind, const void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)$/;" f file: +do_check_both Lib/test/test_statistics.py /^ def do_check_both(self, a, b, tol, rel, tol_flag, rel_flag):$/;" m class:ApproxEqualInexactTest +do_cl Lib/pdb.py /^ do_cl = do_clear # 'c' is already an abbreviation for 'continue'$/;" v class:Pdb +do_clear Lib/bdb.py /^ def do_clear(self, arg):$/;" m class:Bdb +do_clear Lib/pdb.py /^ def do_clear(self, arg):$/;" m class:Pdb +do_clear Lib/test/test_bdb.py /^ def do_clear(self, arg):$/;" m class:Tracer +do_close Lib/test/test_exceptions.py /^ def do_close(g):$/;" f function:ExceptionTests.test_generator_close_cleanup_exc_state +do_command Lib/curses/textpad.py /^ def do_command(self, ch):$/;" m class:Textbox +do_commands Lib/pdb.py /^ def do_commands(self, arg):$/;" m class:Pdb +do_condition Lib/pdb.py /^ def do_condition(self, arg):$/;" m class:Pdb +do_continue Lib/pdb.py /^ def do_continue(self, arg):$/;" m class:Pdb +do_conversion Objects/stringlib/unicode_format.h /^do_conversion(PyObject *obj, Py_UCS4 conversion)$/;" f +do_create Lib/test/test_tempfile.py /^ def do_create(self, dir=None, pre="", suf="", delete=True):$/;" m class:TestNamedTemporaryFile +do_create Lib/test/test_tempfile.py /^ def do_create(self, dir=None, pre="", suf="", recurse=1, dirs=1, files=1,$/;" m class:TestTemporaryDirectory +do_create Lib/test/test_tempfile.py /^ def do_create(self, dir=None, pre=None, suf=None):$/;" m class:TestMkdtemp +do_create Lib/test/test_tempfile.py /^ def do_create(self, dir=None, pre=None, suf=None):$/;" m class:TestMkstemp +do_create Lib/test/test_tempfile.py /^ def do_create(self, dir=None, pre=None, suf=None, bin=1):$/;" m class:TestMkstempInner +do_create Lib/test/test_tempfile.py /^ def do_create(self, max_size=0, dir=None, pre="", suf=""):$/;" m class:TestSpooledTemporaryFile +do_create Lib/test/test_tempfile.py /^ def do_create(self, pre="", suf=""):$/;" m class:TestMktemp +do_create2 Lib/test/test_tempfile.py /^ def do_create2(self, path, recurse=1, dirs=1, files=1):$/;" m class:TestTemporaryDirectory +do_d Lib/pdb.py /^ do_d = do_down$/;" v class:Pdb +do_debug Lib/pdb.py /^ def do_debug(self, arg):$/;" m class:Pdb +do_del Lib/test/test_exceptions.py /^ def do_del(g):$/;" f function:ExceptionTests.test_generator_del_cleanup_exc_state +do_dict_missing Lib/test/test_descr.py /^ def do_dict_missing(checker):$/;" f function:.test_special_method_lookup +do_disable Lib/pdb.py /^ def do_disable(self, arg):$/;" m class:Pdb +do_disassembly_compare Lib/test/test_dis.py /^ def do_disassembly_compare(self, got, expected, with_offsets=False):$/;" m class:DisTestBase +do_disassembly_test Lib/test/test_dis.py /^ def do_disassembly_test(self, func, expected, with_offsets=False):$/;" m class:DisTests +do_display Lib/pdb.py /^ def do_display(self, arg):$/;" m class:Pdb +do_down Lib/pdb.py /^ def do_down(self, arg):$/;" m class:Pdb +do_enable Lib/pdb.py /^ def do_enable(self, arg):$/;" m class:Pdb +do_event Lib/test/test_asyncio/test_base_events.py /^ def do_event():$/;" f function:BaseEventLoopTests.test_single_selecter_event_callback_after_stopping +do_exactly_equal_test Lib/test/test_statistics.py /^ def do_exactly_equal_test(self, x, tol, rel):$/;" m class:ApproxEqualExactTest +do_exactly_unequal_test Lib/test/test_statistics.py /^ def do_exactly_unequal_test(self, x):$/;" m class:ApproxEqualUnequalTest +do_exceptional_blocking_test Lib/test/test_queue.py /^ def do_exceptional_blocking_test(self,block_func, block_args, trigger_func,$/;" m class:BlockingTestMixin +do_exit Lib/pdb.py /^ do_exit = do_quit$/;" v class:Pdb +do_exit Lib/test/test_cmd.py /^ def do_exit(self, arg):$/;" m class:samplecmdclass +do_find Lib/idlelib/replace.py /^ def do_find(self, ok=False):$/;" m class:ReplaceDialog +do_finish Lib/test/_test_multiprocessing.py /^ def do_finish(self):$/;" m class:Bunch +do_finish Lib/test/lock_tests.py /^ def do_finish(self):$/;" m class:Bunch +do_fork_and_wait Lib/test/test_threading.py /^ def do_fork_and_wait():$/;" f function:ThreadJoinOnShutdown.test_reinit_tls_after_fork +do_fork_exec Modules/_posixsubprocess.c /^do_fork_exec(char *const exec_array[],$/;" f file: +do_h Lib/pdb.py /^ do_h = do_help$/;" v class:Pdb +do_handshake Lib/ssl.py /^ def do_handshake(self):$/;" m class:SSLObject +do_handshake Lib/ssl.py /^ def do_handshake(self, block=False):$/;" m class:SSLSocket +do_help Lib/cmd.py /^ def do_help(self, arg):$/;" m class:Cmd +do_help Lib/pdb.py /^ def do_help(self, arg):$/;" m class:Pdb +do_ignore Lib/pdb.py /^ def do_ignore(self, arg):$/;" m class:Pdb +do_ignore Python/modsupport.c /^do_ignore(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags)$/;" f file: +do_input Lib/idlelib/idle_test/test_sidebar.py /^ def do_input(self, input):$/;" m class:ShellSidebarTest +do_interact Lib/pdb.py /^ def do_interact(self, arg):$/;" m class:Pdb +do_isinstance Lib/test/test_descr.py /^ def do_isinstance(obj):$/;" f function:.test_special_method_lookup +do_issubclass Lib/test/test_descr.py /^ def do_issubclass(obj):$/;" f function:.test_special_method_lookup +do_j Lib/pdb.py /^ do_j = do_jump$/;" v class:Pdb +do_job Lib/test/test_asyncio/test_taskgroups.py /^ async def do_job(delay):$/;" f function:TestTaskGroup.test_taskgroup_23 +do_jump Lib/pdb.py /^ def do_jump(self, arg):$/;" m class:Pdb +do_l Lib/pdb.py /^ do_l = do_list$/;" v class:Pdb +do_list Lib/pdb.py /^ def do_list(self, arg):$/;" m class:Pdb +do_ll Lib/pdb.py /^ do_ll = do_longlist$/;" v class:Pdb +do_longlist Lib/pdb.py /^ def do_longlist(self, arg):$/;" m class:Pdb +do_longs Lib/getopt.py /^def do_longs(opts, opt, longopts, args):$/;" f +do_lower Objects/unicodeobject.c /^do_lower(int kind, const void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)$/;" f file: +do_markup Objects/stringlib/unicode_format.h /^do_markup(SubString *input, PyObject *args, PyObject *kwargs,$/;" f +do_mkdict Python/modsupport.c /^do_mkdict(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags)$/;" f file: +do_mklist Python/modsupport.c /^do_mklist(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags)$/;" f file: +do_mkstack Python/modsupport.c /^do_mkstack(PyObject **stack, const char **p_format, va_list *p_va,$/;" f file: +do_mktuple Python/modsupport.c /^do_mktuple(const char **p_format, va_list *p_va, char endchar, Py_ssize_t n, int flags)$/;" f file: +do_mkvalue Python/modsupport.c /^do_mkvalue(const char **p_format, va_list *p_va, int flags)$/;" f file: +do_monitor_exc Python/ceval.c /^do_monitor_exc(PyThreadState *tstate, _PyInterpreterFrame *frame,$/;" f file: +do_n Lib/pdb.py /^ do_n = do_next$/;" v class:Pdb +do_nego Lib/test/test_telnetlib.py /^ def do_nego(self, sock, cmd, opt):$/;" m class:nego_collector +do_next Lib/pdb.py /^ def do_next(self, arg):$/;" m class:Pdb +do_next Lib/test/test_exceptions.py /^ def do_next(g):$/;" f function:ExceptionTests.test_generator_next_cleanup_exc_state +do_nothing Lib/test/test_pdb.py /^def do_nothing():$/;" f +do_open Lib/urllib/request.py /^ def do_open(self, http_class, req, **http_conn_args):$/;" m class:AbstractHTTPHandler +do_p Lib/pdb.py /^ def do_p(self, arg):$/;" m class:Pdb +do_pgo PCbuild/build.bat /^if "%~1"=="--pgo" (set do_pgo=true) & shift & goto CheckOpts$/;" v +do_pgo PCbuild/build.bat /^if "%~1"=="--pgo-job" (set do_pgo=true) & (set pgo_job=%~2) & shift & shift & goto CheckOpts$/;" v +do_pgo PCbuild/build.bat /^set do_pgo=$/;" v +do_pp Lib/pdb.py /^ def do_pp(self, arg):$/;" m class:Pdb +do_print Lib/test/test_cmd.py /^ def do_print(self, args):$/;" m class:TestAlternateInput.simplecmd +do_profiling Lib/test/test_profile.py /^ def do_profiling(cls):$/;" m class:ProfileTest +do_protocol_selection Modules/_ssl.c /^do_protocol_selection(int alpn, unsigned char **out, unsigned char *outlen,$/;" f file: +do_q Lib/pdb.py /^ do_q = do_quit$/;" v class:Pdb +do_queuehandler_configuration Lib/test/test_logging.py /^ def do_queuehandler_configuration(self, qspec, lspec):$/;" m class:ConfigDictTest +do_quit Lib/pdb.py /^ def do_quit(self, arg):$/;" m class:Pdb +do_quit Lib/pstats.py /^ def do_quit(self, line):$/;" m class:f8.ProfileBrowser +do_r Lib/pdb.py /^ do_r = do_return$/;" v class:Pdb +do_raise Python/ceval.c /^do_raise(PyThreadState *tstate, PyObject *exc, PyObject *cause)$/;" f file: +do_read Lib/pstats.py /^ def do_read(self, line):$/;" m class:f8.ProfileBrowser +do_relative_symmetry Lib/test/test_statistics.py /^ def do_relative_symmetry(self, a, b):$/;" m class:ApproxEqualSymmetryTest +do_replace Lib/idlelib/replace.py /^ def do_replace(self):$/;" m class:ReplaceDialog +do_request_ Lib/urllib/request.py /^ def do_request_(self, request):$/;" m class:AbstractHTTPHandler +do_restart Lib/pdb.py /^ do_restart = do_run$/;" v class:Pdb +do_return Lib/pdb.py /^ def do_return(self, arg):$/;" m class:Pdb +do_retval Lib/pdb.py /^ def do_retval(self, arg):$/;" m class:Pdb +do_reverse Lib/pstats.py /^ def do_reverse(self, line):$/;" m class:f8.ProfileBrowser +do_richcompare Objects/object.c /^do_richcompare(PyThreadState *tstate, PyObject *v, PyObject *w, int op)$/;" f file: +do_rstrip Lib/idlelib/format.py /^ def do_rstrip(self, event=None):$/;" m class:Rstrip +do_run Lib/pdb.py /^ def do_run(self, arg):$/;" m class:Pdb +do_rv Lib/pdb.py /^ do_rv = do_retval$/;" v class:Pdb +do_s Lib/pdb.py /^ do_s = do_step$/;" v class:Pdb +do_send Lib/test/test_exceptions.py /^ def do_send(g):$/;" f function:ExceptionTests.test_generator_send_cleanup_exc_state +do_setitems Modules/_pickle.c /^do_setitems(PickleState *st, UnpicklerObject *self, Py_ssize_t x)$/;" f file: +do_shell Lib/test/test_cmd.py /^ def do_shell(self, s):$/;" m class:samplecmdclass +do_shorts Lib/getopt.py /^def do_shorts(opts, optstring, shortopts, args):$/;" f +do_single Modules/_decimal/tests/deccheck.py /^ def do_single(method, f):$/;" f +do_something Lib/test/test_pdb.py /^def do_something():$/;" f +do_something_classy Lib/test/test_inspect.py /^ def do_something_classy(cls):$/;" m class:TestPredicates.test_iscoroutine.Cl3 +do_something_static Lib/test/test_inspect.py /^ def do_something_static():$/;" m class:TestPredicates.test_iscoroutine.Cl3 +do_sort Lib/pstats.py /^ def do_sort(self, line):$/;" m class:f8.ProfileBrowser +do_source Lib/pdb.py /^ def do_source(self, arg):$/;" m class:Pdb +do_stats Lib/pstats.py /^ def do_stats(self, line):$/;" m class:f8.ProfileBrowser +do_step Lib/pdb.py /^ def do_step(self, arg):$/;" m class:Pdb +do_string_format Objects/stringlib/unicode_format.h /^do_string_format(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +do_string_format_map Objects/stringlib/unicode_format.h /^do_string_format_map(PyObject *self, PyObject *obj)$/;" f +do_strip Lib/pstats.py /^ def do_strip(self, line):$/;" m class:f8.ProfileBrowser +do_strip Objects/bytesobject.c /^do_strip(PyBytesObject *self, int striptype)$/;" f +do_strip Objects/unicodeobject.c /^do_strip(PyObject *self, int striptype)$/;" f file: +do_super_lookup Objects/typeobject.c /^do_super_lookup(superobject *su, PyTypeObject *su_type, PyObject *su_obj,$/;" f file: +do_swapcase Objects/unicodeobject.c /^do_swapcase(int kind, const void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) {$/;" f file: +do_symmetry_test Lib/test/test_statistics.py /^ def do_symmetry_test(self, a, b, tol, rel):$/;" m class:ApproxEqualSymmetryTest +do_tbreak Lib/pdb.py /^ def do_tbreak(self, arg):$/;" m class:Pdb +do_test Lib/test/test_asyncgen.py /^ async def do_test():$/;" f function:AsyncGenAsyncioTest.test_anext_await_raises +do_test Lib/test/test_audit.py /^ def do_test(self, *args):$/;" m class:AuditTest +do_test Lib/test/test_capi/test_misc.py /^ def do_test(self, func, names):$/;" m class:Test_Pep523API +do_test Lib/test/test_cgi.py /^def do_test(buf, method):$/;" f +do_test Lib/test/test_statistics.py /^ def do_test(self, args):$/;" m class:TestNumericTestCase +do_test Lib/test/test_traceback.py /^ def do_test(firstlines, message, charset, lineno):$/;" f function:TracebackCases.test_encoded_file +do_test_call_input Lib/test/test_fileinput.py /^ def do_test_call_input(self):$/;" m class:Test_fileinput_input +do_test_exception Lib/test/test_argparse.py /^ def do_test_exception(self, nargs, metavar):$/;" m class:TestAddArgumentMetavar +do_test_inf Lib/test/test_statistics.py /^ def do_test_inf(self, inf):$/;" m class:SumSpecialValues +do_test_invalid_exception Lib/test/test_argparse.py /^ def do_test_invalid_exception(self, nargs):$/;" m class:TestInvalidNargs +do_test_no_exception Lib/test/test_argparse.py /^ def do_test_no_exception(self, nargs, metavar):$/;" m class:TestAddArgumentMetavar +do_test_range_exception Lib/test/test_argparse.py /^ def do_test_range_exception(self, nargs):$/;" m class:TestInvalidNargs +do_test_trashcan_python_class Lib/test/test_capi/test_misc.py /^ def do_test_trashcan_python_class(self, base):$/;" m class:CAPITest +do_test_use_builtin_open_binary Lib/test/test_fileinput.py /^ def do_test_use_builtin_open_binary(self, filename, mode):$/;" m class:Test_hook_compressed +do_test_use_builtin_open_text Lib/test/test_fileinput.py /^ def do_test_use_builtin_open_text(self, filename, mode):$/;" m class:Test_hook_compressed +do_test_with_pip Lib/test/test_venv.py /^ def do_test_with_pip(self, system_site_packages):$/;" m class:EnsurePipTest +do_tests Lib/test/test_bytes.py /^ def do_tests(delete):$/;" f function:ByteArrayTest.test_delitem +do_tests Lib/test/test_bytes.py /^ def do_tests(setitem):$/;" f function:ByteArrayTest.test_setitem +do_the_work Lib/test/test_capi/test_misc.py /^ def do_the_work():$/;" f function:TestPendingCalls.test_subthreads_can_handle_pending_calls +do_throw Lib/test/test_exceptions.py /^ def do_throw(g):$/;" f function:ExceptionTests.test_generator_throw_cleanup_exc_state +do_title Objects/unicodeobject.c /^do_title(int kind, const void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)$/;" f file: +do_u Lib/pdb.py /^ do_u = do_up$/;" v class:Pdb +do_unalias Lib/pdb.py /^ def do_unalias(self, arg):$/;" m class:Pdb +do_undisplay Lib/pdb.py /^ def do_undisplay(self, arg):$/;" m class:Pdb +do_unixy_check Tools/build/stable_abi.py /^def do_unixy_check(manifest, args):$/;" f +do_unt Lib/pdb.py /^ do_unt = do_until$/;" v class:Pdb +do_until Lib/pdb.py /^ def do_until(self, arg):$/;" m class:Pdb +do_up Lib/pdb.py /^ def do_up(self, arg):$/;" m class:Pdb +do_upper Objects/unicodeobject.c /^do_upper(int kind, const void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)$/;" f file: +do_upper_or_lower Objects/unicodeobject.c /^do_upper_or_lower(int kind, const void *data, Py_ssize_t length, Py_UCS4 *res,$/;" f file: +do_visit_try Lib/ast.py /^ def do_visit_try(self, node):$/;" m class:_Unparser +do_w Lib/pdb.py /^ do_w = do_where$/;" v class:Pdb +do_warn Python/_warnings.c /^do_warn(PyObject *message, PyObject *category, Py_ssize_t stack_level,$/;" f file: +do_whatis Lib/pdb.py /^ def do_whatis(self, arg):$/;" m class:Pdb +do_where Lib/pdb.py /^ def do_where(self, arg):$/;" m class:Pdb +do_work Lib/test/test_capi/test_misc.py /^ def do_work():$/;" f function:TestPendingCalls.test_isolated_subinterpreter.create_pipe +do_work Lib/test/test_gc.py /^ def do_work():$/;" f function:GCTests.test_bug21435 +do_xstrip Objects/bytesobject.c /^do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj)$/;" f +doc Include/cpython/descrobject.h /^ const char *doc;$/;" m struct:wrapperbase +doc Include/descrobject.h /^ const char *doc;$/;" m struct:PyGetSetDef +doc Include/descrobject.h /^ const char *doc;$/;" m struct:PyMemberDef +doc Include/structseq.h /^ const char *doc;$/;" m struct:PyStructSequence_Desc +doc Include/structseq.h /^ const char *doc;$/;" m struct:PyStructSequence_Field +doc Lib/pickletools.py /^ doc="Eight-byte unsigned integer, little-endian.")$/;" v +doc Lib/pickletools.py /^ doc="Four-byte unsigned integer, little-endian.")$/;" v +doc Lib/pickletools.py /^ doc="One-byte unsigned integer.")$/;" v +doc Lib/pickletools.py /^ doc="Two-byte unsigned integer, little-endian.")$/;" v +doc Lib/pickletools.py /^ doc="Four-byte signed integer, little-endian, 2's complement.")$/;" v +doc Lib/pickletools.py /^ doc="A Python (Unicode) string object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python boolean object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python buffer-like object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python bytearray object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python bytes object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python bytes or (Unicode) string object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python dict object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python float object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python frozenset object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python integer object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python integer or boolean object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python list object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python set object.")$/;" v +doc Lib/pickletools.py /^ doc="A Python tuple object.")$/;" v +doc Lib/pickletools.py /^ doc="Any kind of object whatsoever.")$/;" v +doc Lib/pickletools.py /^ doc="The Python None object.")$/;" v +doc Lib/pydoc.py /^def doc(thing, title='Python Library Documentation: %s', forceload=0,$/;" f +doc Modules/_collectionsmodule.c /^ PyObject* doc;$/;" m struct:__anon533 file: +doc_func Lib/test/pydoc_mod.py /^def doc_func():$/;" f +doc_header Lib/cmd.py /^ doc_header = "Documented commands (type help ):"$/;" v class:Cmd +doc_leader Lib/cmd.py /^ doc_leader = ""$/;" v class:Cmd +docclass Lib/pydoc.py /^ def docclass(self, object, name=None, mod=None, *ignored):$/;" m class:TextDoc +docclass Lib/pydoc.py /^ def docclass(self, object, name=None, mod=None, funcs={}, classes={},$/;" f +docdata Lib/pydoc.py /^ def docdata(self, object, name=None, mod=None, cl=None):$/;" f +docdata Lib/pydoc.py /^ def docdata(self, object, name=None, mod=None, cl=None):$/;" m class:TextDoc +docmd Lib/smtplib.py /^ def docmd(self, cmd, args=""):$/;" m class:SMTP +docmodule Lib/pydoc.py /^ def docmodule(self, object, name=None, mod=None):$/;" m class:TextDoc +docmodule Lib/pydoc.py /^ def docmodule(self, object, name=None, mod=None, *ignored):$/;" f +docother Lib/pydoc.py /^ def docother(self, object, name=None, mod=None, *ignored):$/;" f +docother Lib/pydoc.py /^ def docother(self, object, name=None, mod=None, parent=None, maxlen=None, doc=None):$/;" m class:TextDoc +docproperty Lib/pydoc.py /^ docproperty = docdata$/;" v +docproperty Lib/pydoc.py /^ docproperty = docdata$/;" v class:TextDoc +docroutine Lib/pydoc.py /^ def docroutine(self, object, name=None, mod=None, cl=None):$/;" m class:TextDoc +docroutine Lib/pydoc.py /^ def docroutine(self, object, name=None, mod=None,$/;" f +docroutine Lib/xmlrpc/server.py /^ def docroutine(self, object, name, mod=None,$/;" m class:ServerHTMLDoc +docs_modified Tools/patchcheck/patchcheck.py /^def docs_modified(file_paths):$/;" f +docserver Lib/xmlrpc/server.py /^ def docserver(self, server_name, package_documentation, methods):$/;" m class:ServerHTMLDoc +docstring_for_c_string Tools/clinic/clinic.py /^ def docstring_for_c_string(self, f):$/;" m class:CLanguage +docstring_prefixes Lib/test/test_unparse.py /^docstring_prefixes = ($/;" v +docstrings Tools/i18n/pygettext.py /^ docstrings = 0$/;" v class:main.Options +doctype Lib/test/test_xml_etree.py /^ def doctype(self, name, pubid, system):$/;" m class:XMLParserTest.test_subclass_doctype.MyParserWithDoctype.DoctypeParser +doctype Lib/test/test_xml_etree.py /^ def doctype(self, *args, **kwargs):$/;" m class:XMLParserTest.test_subclass_doctype.MyParserWithDoctype +doctype Lib/test/test_xml_etree.py /^ def doctype(self, name, pubid, system):$/;" m class:TreeBuilderTest.test_doctype.DoctypeParser +doctype0 Modules/expat/xmlrole.c /^doctype0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +doctype0 Modules/expat/xmlrole.c /^static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,$/;" v file: +doctype1 Modules/expat/xmlrole.c /^doctype1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +doctype1 Modules/expat/xmlrole.c /^static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,$/;" v file: +doctype2 Modules/expat/xmlrole.c /^doctype2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +doctype2 Modules/expat/xmlrole.c /^static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,$/;" v file: +doctype3 Modules/expat/xmlrole.c /^ doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,$/;" v file: +doctype3 Modules/expat/xmlrole.c /^doctype3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +doctype4 Modules/expat/xmlrole.c /^ doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,$/;" v file: +doctype4 Modules/expat/xmlrole.c /^doctype4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +doctype5 Modules/expat/xmlrole.c /^ doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,$/;" v file: +doctype5 Modules/expat/xmlrole.c /^doctype5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +document Lib/pydoc.py /^ def document(self, object, name=None, *args):$/;" m class:Doc +document Lib/xml/dom/pulldom.py /^ document = None$/;" v class:PullDOM +documentEntity Modules/expat/xmlrole.h /^ int documentEntity;$/;" m struct:prolog_state +documentURI Lib/xml/dom/minidom.py /^ documentURI = None$/;" v class:Document +documented_getter Lib/test/test_property.py /^ def documented_getter():$/;" f function:PropertySubclassTests.test_property_with_slots_and_doc_slot_docstring_present +documented_getter Lib/test/test_property.py /^ def documented_getter():$/;" f function:PropertySubclassTests.test_property_with_slots_docstring_silently_dropped +does_esmtp Lib/smtplib.py /^ does_esmtp = False$/;" v class:SMTP +does_tree_import Lib/lib2to3/fixer_util.py /^def does_tree_import(package, name, node):$/;" f +does_tree_import Lib/test/test_lib2to3/test_util.py /^ def does_tree_import(self, package, name, string):$/;" m class:Test_does_tree_import +dog Lib/test/test_pprint.py /^ dog=8,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +doit Lib/test/sortperf.py /^def doit(L):$/;" f +doit Lib/test/test_asyncio/test_events.py /^ async def doit():$/;" f function:_test_get_event_loop_new_process__sub_proc +doit Lib/test/test_asyncio/test_tasks.py /^ async def doit():$/;" f function:BaseTaskTests.test_task_cancel_sleeping_task +doit Lib/test/test_decimal.py /^ def doit(c, signal=None):$/;" f function:ContextFlags.test_float_comparison +doit Lib/test/test_decimal.py /^ def doit(ty):$/;" f function:SignatureTest.test_inspect_types +doit Lib/tkinter/simpledialog.py /^ def doit(root=root):$/;" f function:.test +doit1 Lib/turtledemo/forest.py /^def doit1(level, pen):$/;" f +doit2 Lib/turtledemo/forest.py /^def doit2(level, pen):$/;" f +doit3 Lib/turtledemo/forest.py /^def doit3(level, pen):$/;" f +doit_async Lib/test/test_sys_settrace.py /^ async def doit_async():$/;" f function:TraceTestCase.test_20_async_for_loop +dolog Lib/cgi.py /^def dolog(fmt, *args):$/;" f +dom Doc/includes/minidom-example.py /^dom = xml.dom.minidom.parseString(document)$/;" v +domain Lib/email/_header_value_parser.py /^ def domain(self):$/;" m class:AddrSpec +domain Lib/email/_header_value_parser.py /^ def domain(self):$/;" m class:AngleAddr +domain Lib/email/_header_value_parser.py /^ def domain(self):$/;" m class:Domain +domain Lib/email/_header_value_parser.py /^ def domain(self):$/;" m class:DomainLiteral +domain Lib/email/_header_value_parser.py /^ def domain(self):$/;" m class:Mailbox +domain Lib/email/_header_value_parser.py /^ def domain(self):$/;" m class:NameAddr +domain Lib/email/headerregistry.py /^ def domain(self):$/;" m class:Address +domain Lib/tracemalloc.py /^ def domain(self):$/;" m class:DomainFilter +domain Lib/tracemalloc.py /^ def domain(self):$/;" m class:Trace +domain Python/tracemalloc.c /^ unsigned int domain;$/;" m struct:__anon689 file: +domain_match Lib/http/cookiejar.py /^def domain_match(A, B):$/;" f +domain_re Lib/http/cookiejar.py /^ domain_re = re.compile(r"[^.]*")$/;" v class:CookieJar +domain_return_ok Lib/http/cookiejar.py /^ def domain_return_ok(self, domain, request):$/;" m class:CookiePolicy +domain_return_ok Lib/http/cookiejar.py /^ def domain_return_ok(self, domain, request):$/;" m class:DefaultCookiePolicy +domainname Modules/nismodule.c /^typedef char *domainname;$/;" t file: +domains Include/internal/pycore_tracemalloc.h /^ _Py_hashtable_t *domains;$/;" m struct:_tracemalloc_runtime_state +domains Lib/email/_header_value_parser.py /^ def domains(self):$/;" m class:ObsRoute +domains Python/tracemalloc.c /^ _Py_hashtable_t *domains;$/;" m struct:__anon689 file: +done Lib/asyncio/futures.py /^ def done(self):$/;" m class:Future +done Lib/concurrent/futures/_base.py /^ def done(self):$/;" m class:Future +done Lib/graphlib.py /^ def done(self, *nodes):$/;" m class:TopologicalSorter +done Lib/test/test_asyncio/test_base_events.py /^ done = None$/;" v class:MyDatagramProto +done Lib/test/test_asyncio/test_base_events.py /^ done = None$/;" v class:MyProto +done Lib/test/test_asyncio/test_events.py /^ done = None$/;" v class:MyBaseProto +done Lib/test/test_asyncio/test_events.py /^ done = None$/;" v class:MyDatagramProto +done Lib/test/test_asyncio/test_events.py /^ done = None$/;" v class:MyReadPipeProto +done Lib/test/test_asyncio/test_events.py /^ done = None$/;" v class:MyWritePipeProto +done Lib/test/test_asyncio/test_futures.py /^ def done(self):$/;" m class:DuckFuture +done Lib/test/test_asyncio/test_runners.py /^ def done(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +done Lib/test/test_asyncio/test_sock_lowlevel.py /^ done = None$/;" v class:MyProto +done Lib/test/test_asyncio/test_ssl.py /^ done = None$/;" v class:MyBaseProto +done Lib/test/test_asyncio/test_tasks.py /^ def done(self):$/;" m class:BaseTaskIntrospectionTests.test__register_task_1.TaskLike +done Lib/test/test_asyncio/test_tasks.py /^ def done(self):$/;" m class:BaseTaskIntrospectionTests.test__register_task_2.TaskLike +done Lib/test/test_asyncio/test_tasks.py /^ def done(self):$/;" m class:BaseTaskIntrospectionTests.test__register_task_3.TaskLike +done Lib/test/test_winreg.py /^ done = True$/;" v class:LocalWinregTests.test_changing_value.VeryActiveThread +done Lib/tkinter/simpledialog.py /^ def done(self, num):$/;" m class:SimpleDialog +done Lib/turtle.py /^done = mainloop$/;" v +done Lib/xdrlib.py /^ def done(self):$/;" m class:Unpacker +done Modules/_tkinter.c /^ Tcl_Condition *done;$/;" m struct:CommandEvent file: +done Modules/_tkinter.c /^ Tcl_Condition *done;$/;" m struct:Tkapp_CallEvent file: +done Parser/tokenizer.h /^ int done; \/* E_OK normally, E_EOF at EOF, otherwise error code *\/$/;" m struct:tok_state +done Python/Python-tokenize.c /^ int done;$/;" m struct:__anon698 file: +done Tools/c-analyzer/c_parser/parser/_info.py /^ def done(self):$/;" m class:SourceInfo +dont_insert Lib/idlelib/idle_test/test_percolator.py /^ def dont_insert(self, index, chars, tags=None):$/;" m class:MyFilter +dont_test_disassembly Lib/test/pickletester.py /^ def dont_test_disassembly(self):$/;" m class:AbstractPickleTests +dos Lib/test/test_enum.py /^ dos = 2$/;" v class:TestSpecial.test_intenum_transitivity.numero +dot Lib/turtle.py /^ def dot(self, size=None, *color):$/;" m class:RawTurtle +dot Modules/_decimal/libmpdec/mpdecimal.h /^ const char *dot; \/* decimal point *\/$/;" m struct:mpd_spec_t +dot Modules/_decimal/tests/randdec.py /^def dot():$/;" f +dotjoinattr Modules/_operator.c /^dotjoinattr(PyObject *attr, PyObject **attrsep)$/;" f file: +dotlessname Lib/test/test_tarfile.py /^dotlessname = os.path.join(TEMPDIR, "testtar")$/;" v +dots Lib/encodings/idna.py /^dots = re.compile("[\\u002E\\u3002\\uFF0E\\uFF61]")$/;" v +dots_re Lib/http/cookiejar.py /^ dots_re = re.compile(r"^\\.+")$/;" v class:CookieJar +dotsep_as_utf8 Modules/_decimal/_decimal.c /^dotsep_as_utf8(const char *s)$/;" f file: +dotted_as_name_rule Parser/parser.c /^dotted_as_name_rule(Parser *p)$/;" f file: +dotted_as_name_type Parser/parser.c 109;" d file: +dotted_as_names_rule Parser/parser.c /^dotted_as_names_rule(Parser *p)$/;" f file: +dotted_as_names_type Parser/parser.c 108;" d file: +dotted_getattr Modules/_operator.c /^dotted_getattr(PyObject *obj, PyObject *attr)$/;" f file: +dotted_name_raw Parser/parser.c /^dotted_name_raw(Parser *p)$/;" f file: +dotted_name_rule Parser/parser.c /^dotted_name_rule(Parser *p)$/;" f file: +dotted_name_type Parser/parser.c 110;" d file: +double Lib/test/test_decorators.py /^ def double(x):$/;" f function:TestDecorators.test_memoize +double Lib/test/test_doctest.py /^ def double(self):$/;" m class:SampleClass +double Lib/test/test_doctest.py /^ def double(self):$/;" m class:SampleNewStyleClass +double Lib/test/test_enum.py /^ double = 1$/;" v class:TestUnique.test_unique_dirty.Dirtier +double Lib/test/test_enum.py /^ double = 1$/;" v class:TestVerify.test_unique_dirty.Dirtier +double Lib/test/test_enum.py /^ double = 2$/;" v class:TestUnique.test_unique_clean.Cleaner +double Lib/test/test_enum.py /^ double = 2$/;" v class:TestVerify.test_unique_clean.Cleaner +double Lib/test/test_typing.py /^ def double(self):$/;" m class:XMeth +double_click_event Lib/idlelib/scrolledlist.py /^ def double_click_event(self, event):$/;" m class:ScrolledList +double_converter Modules/clinic/_testclinic.c.h /^double_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +double_converter Tools/clinic/clinic.py /^class double_converter(CConverter):$/;" c +double_converter_impl Modules/_testclinic.c /^double_converter_impl(PyObject *module, double a)$/;" f file: +double_format Include/internal/pycore_floatobject.h /^ enum _py_float_format_type double_format;$/;" m struct:_Py_float_runtime_state typeref:enum:_Py_float_runtime_state::_py_float_format_type +double_format Objects/floatobject.c 1727;" d file: +double_from_timeval Modules/signalmodule.c /^double_from_timeval(struct timeval *tv)$/;" f +double_member Modules/_testcapi/structmember.c /^ double double_member;$/;" m struct:__anon543 file: +double_return_converter Tools/clinic/clinic.py /^class double_return_converter(CReturnConverter):$/;" c +double_round Objects/floatobject.c /^double_round(double x, int ndigits) {$/;" f file: +double_star_pattern_rule Parser/parser.c /^double_star_pattern_rule(Parser *p)$/;" f file: +double_star_pattern_type Parser/parser.c 174;" d file: +double_starred_kvpair_rule Parser/parser.c /^double_starred_kvpair_rule(Parser *p)$/;" f file: +double_starred_kvpair_type Parser/parser.c 245;" d file: +double_starred_kvpairs_rule Parser/parser.c /^double_starred_kvpairs_rule(Parser *p)$/;" f file: +double_starred_kvpairs_type Parser/parser.c 244;" d file: +doubleclick_event Lib/idlelib/autocomplete_w.py /^ def doubleclick_event(self, event):$/;" m class:AutoCompleteWindow +doublequote Lib/csv.py /^ doublequote = None$/;" v class:Dialect +doublequote Lib/csv.py /^ doublequote = True$/;" v class:excel +doublequote Lib/csv.py /^ doublequote = True$/;" v class:unix_dialect +doublequote Lib/test/test_csv.py /^ doublequote=False,$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +doublequote Lib/test/test_csv.py /^ doublequote = False$/;" v class:TestDialectValidity.test_delimiter.mydialect +doublequote Lib/test/test_csv.py /^ doublequote = False$/;" v class:TestDialectValidity.test_escapechar.mydialect +doublequote Lib/test/test_csv.py /^ doublequote = False$/;" v class:TestDialectValidity.test_lineterminator.mydialect +doublequote Lib/test/test_csv.py /^ doublequote = False$/;" v class:TestDialectValidity.test_quoting.mydialect +doublequote Lib/test/test_csv.py /^ doublequote = True$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +doublequote Lib/test/test_csv.py /^ doublequote=False$/;" v class:Test_Csv._test_dialect_attrs.dialect +doublequote Modules/_csv.c /^ char doublequote; \/* is " represented by ""? *\/$/;" m struct:__anon624 file: +doubletime Modules/posixmodule.c 9221;" d file: +doubletime Modules/resource.c 19;" d file: +down Lib/test/test_monitoring.py /^ def down(*args):$/;" f function:SimulateProfileTest.test_frame_stack +down Lib/turtle.py /^ down = pendown$/;" v class:TPen +down_event Lib/idlelib/scrolledlist.py /^ def down_event(self, event):$/;" m class:ScrolledList +downloadURL Mac/BuildScript/build-installer.py /^def downloadURL(url, fname):$/;" f +download_package_code Tools/peg_generator/scripts/download_pypi_packages.py /^def download_package_code(name: str, package_json: Dict[Any, Any]) -> None:$/;" f +download_package_json Tools/peg_generator/scripts/download_pypi_packages.py /^def download_package_json(package_name: str) -> None:$/;" f +dpgettext Lib/gettext.py /^def dpgettext(domain, context, message):$/;" f +drag_update_selection_and_insert_mark Lib/idlelib/sidebar.py /^ def drag_update_selection_and_insert_mark(y_coord):$/;" f function:BaseSideBar.bind_events +dragsite_clear Lib/tkinter/tix.py /^ def dragsite_clear(self):$/;" m class:HList +dragsite_clear Lib/tkinter/tix.py /^ def dragsite_clear(self):$/;" m class:TList +dragsite_set Lib/tkinter/tix.py /^ def dragsite_set(self, index):$/;" m class:HList +dragsite_set Lib/tkinter/tix.py /^ def dragsite_set(self, index):$/;" m class:TList +drain Lib/asyncio/base_events.py /^ async def drain(self):$/;" m class:_SendfileFallbackProtocol +drain Lib/asyncio/streams.py /^ async def drain(self):$/;" m class:StreamWriter +drain_queue Lib/test/_test_venv_multiprocessing.py /^def drain_queue(queue, code):$/;" f +drainer Lib/test/test_asyncio/test_streams.py /^ async def drainer(stream):$/;" f function:.test_multiple_drain +draw Lib/idlelib/tree.py /^ def draw(self, x, y):$/;" m class:TreeNode +draw Lib/turtledemo/lindenmayer.py /^def draw( commands, rules ):$/;" f +draw Lib/turtledemo/penrose.py /^def draw(l, n, th=2):$/;" f +drawicon Lib/idlelib/tree.py /^ def drawicon(self):$/;" m class:TreeNode +drawtext Lib/idlelib/tree.py /^ def drawtext(self):$/;" m class:TreeNode +drive Lib/pathlib.py /^ def drive(self):$/;" m class:PurePath +drive_one Lib/test/test_bufio.py /^ def drive_one(self, pattern):$/;" m class:BufferSizeTest +driver Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def driver():$/;" f function:GrammarTests.testPrintStmt +driver Lib/test/test_lib2to3/support.py /^driver = pgen2_driver.Driver(grammar, convert=pytree.convert)$/;" v +driver_no_print_statement Lib/test/test_lib2to3/support.py /^driver_no_print_statement = pgen2_driver.Driver($/;" v +drop_class_free Python/symtable.c /^drop_class_free(PySTEntryObject *ste, PyObject *free)$/;" f file: +drop_gil Python/ceval_gil.c /^drop_gil(struct _ceval_state *ceval, PyThreadState *tstate)$/;" f file: +dropsite_clear Lib/tkinter/tix.py /^ def dropsite_clear(self):$/;" m class:HList +dropsite_clear Lib/tkinter/tix.py /^ def dropsite_clear(self):$/;" m class:TList +dropsite_set Lib/tkinter/tix.py /^ def dropsite_set(self, index):$/;" m class:HList +dropsite_set Lib/tkinter/tix.py /^ def dropsite_set(self, index):$/;" m class:TList +dropwhile_dealloc Modules/itertoolsmodule.c /^dropwhile_dealloc(dropwhileobject *lz)$/;" f file: +dropwhile_methods Modules/itertoolsmodule.c /^static PyMethodDef dropwhile_methods[] = {$/;" v file: +dropwhile_next Modules/itertoolsmodule.c /^dropwhile_next(dropwhileobject *lz)$/;" f file: +dropwhile_reduce Modules/itertoolsmodule.c /^dropwhile_reduce(dropwhileobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +dropwhile_setstate Modules/itertoolsmodule.c /^dropwhile_setstate(dropwhileobject *lz, PyObject *state)$/;" f file: +dropwhile_slots Modules/itertoolsmodule.c /^static PyType_Slot dropwhile_slots[] = {$/;" v file: +dropwhile_spec Modules/itertoolsmodule.c /^static PyType_Spec dropwhile_spec = {$/;" v file: +dropwhile_traverse Modules/itertoolsmodule.c /^dropwhile_traverse(dropwhileobject *lz, visitproc visit, void *arg)$/;" f file: +dropwhile_type Modules/itertoolsmodule.c /^ PyTypeObject *dropwhile_type;$/;" m struct:__anon400 file: +dropwhileobject Modules/itertoolsmodule.c /^} dropwhileobject;$/;" t typeref:struct:__anon408 file: +dry_run Lib/test/test_bdb.py /^ dry_run = dry_run$/;" v class:BaseTestCase +dry_run Lib/test/test_bdb.py /^dry_run = 0$/;" v +dryrun Tools/patchcheck/reindent.py /^dryrun = False$/;" v +dsa_method Lib/test/test_lib2to3/data/infinite_recursion.py /^class dsa_method(Structure):$/;" c +dsa_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class dsa_st(Structure):$/;" c +dshift Python/dtoa.c /^dshift(Bigint *b, int p2)$/;" f file: +dst Doc/includes/tzinfo_examples.py /^ def dst(self, dt):$/;" m class:LocalTimezone +dst Doc/includes/tzinfo_examples.py /^ def dst(self, dt):$/;" m class:USTimeZone +dst Lib/_pydatetime.py /^ def dst(self):$/;" m class:datetime +dst Lib/_pydatetime.py /^ def dst(self):$/;" m class:time +dst Lib/_pydatetime.py /^ def dst(self, dt):$/;" m class:timezone +dst Lib/_pydatetime.py /^ def dst(self, dt):$/;" m class:tzinfo +dst Lib/test/datetimetester.py /^ def dst(self, dt): return 1$/;" m class:TestDateTime.test_astimezone.Broken +dst Lib/test/datetimetester.py /^ def dst(self, dt): return 7$/;" m class:TZInfoBase.test_tzinfo_classes.C4 +dst Lib/test/datetimetester.py /^ def dst(self, dt): return HOUR$/;" m class:TestTimezoneConversions.test_bogus_dst.ok +dst Lib/test/datetimetester.py /^ def dst(self, dt): return None$/;" m class:TZInfoBase.test_tzinfo_classes.C1 +dst Lib/test/datetimetester.py /^ def dst(self, dt): return None$/;" m class:TestDateTime.test_astimezone.AlsoBogus +dst Lib/test/datetimetester.py /^ def dst(self, dt): return None$/;" m class:TestTimezoneConversions.test_bogus_dst.notok +dst Lib/test/datetimetester.py /^ def dst(self, dt): return timedelta(0)$/;" m class:TestDateTime.test_astimezone.Bogus +dst Lib/test/datetimetester.py /^ def dst(self, dt): return timedelta(hours=24)$/;" m class:TZInfoBase.test_tzinfo_classes.C6 +dst Lib/test/datetimetester.py /^ def dst(self, dt): return timedelta(microseconds=-81)$/;" m class:TZInfoBase.test_tzinfo_classes.C7 +dst Lib/test/datetimetester.py /^ def dst(self, dt): return timedelta(minutes=1439)$/;" m class:TZInfoBase.test_tzinfo_classes.C3 +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:TestDateTimeTZ.test_tzinfo_timetuple.DST +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:TestDateTimeTZ.test_utctimetuple.DST +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:TestTZInfo.test_issue23600.UKSummerTime +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:TestTimezoneConversions.test_bogus_dst.tricky_notok +dst Lib/test/datetimetester.py /^ dst = utcoffset$/;" v class:TZInfoBase.test_argument_passing.introspective +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:Europe_Vilnius_1941 +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:FixedOffset +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:USTimeZone +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:USTimeZone2 +dst Lib/test/datetimetester.py /^ def dst(self, dt):$/;" m class:ZoneInfo +dst Lib/test/test_logging.py /^ dst = utcoffset$/;" v class:UTC +dst Lib/test/test_minidom.py /^ dst = clone.doctype.entities['smile']$/;" v class:MinidomTest.check_clone_node_entity.Handler +dst Lib/test/test_minidom.py /^ dst = clone.entities['smile']$/;" v class:MinidomTest.check_clone_node_entity.Handler +dst Lib/zoneinfo/_zoneinfo.py /^ def dst(self, dt):$/;" m class:ZoneInfo +dst Modules/_zoneinfo.c /^ _ttinfo dst;$/;" m struct:__anon637 file: +dst_diff Modules/_zoneinfo.c /^ int dst_diff;$/;" m struct:__anon637 file: +dstoff Lib/test/datetimetester.py /^ dstoff = datetime(2002, 10, 27, 1)$/;" v class:TestTimezoneConversions +dstoff Modules/_zoneinfo.c /^ PyObject *dstoff;$/;" m struct:__anon636 file: +dston Lib/test/datetimetester.py /^ dston = datetime(2002, 4, 7, 2)$/;" v class:TestTimezoneConversions +dt Lib/test/test_email/test_headerregistry.py /^ dt = datetime.datetime(2001, 9, 23, 20, 10, 55, tzinfo=tz)$/;" v class:TestDateHeader +dt Lib/test/test_zoneinfo/test_zoneinfo.py /^ dt = example$/;" v class:CZoneInfoTest.test_fold_mutate.to_subclass.SameAddSubclass +dt Lib/test/test_zoneinfo/test_zoneinfo.py /^ dt = to_subclass(example)$/;" v class:CZoneInfoTest.test_fold_mutate.to_subclass.SameAddSubclass +dt_fromutc Lib/test/test_zoneinfo/test_zoneinfo.py /^ dt_fromutc = zi.fromutc(dt)$/;" v class:CZoneInfoTest.test_fold_mutate.to_subclass.SameAddSubclass +dtag Lib/tkinter/__init__.py /^ def dtag(self, *args):$/;" m class:Canvas +dtdCopy Modules/expat/xmlparse.c /^dtdCopy(XML_Parser oldParser, DTD *newDtd, const DTD *oldDtd,$/;" f file: +dtdCreate Modules/expat/xmlparse.c /^dtdCreate(const XML_Memory_Handling_Suite *ms) {$/;" f file: +dtdDestroy Modules/expat/xmlparse.c /^dtdDestroy(DTD *p, XML_Bool isDocEntity, const XML_Memory_Handling_Suite *ms) {$/;" f file: +dtdReset Modules/expat/xmlparse.c /^dtdReset(DTD *p, const XML_Memory_Handling_Suite *ms) {$/;" f file: +dtoa Include/internal/pycore_interp.h /^ struct _dtoa_state dtoa;$/;" m struct:_is typeref:struct:_is::_dtoa_state +dtp_conn_closed Lib/test/test_ftplib.py /^ dtp_conn_closed = False$/;" v class:DummyDTPHandler +dtp_handler Lib/test/test_ftplib.py /^ dtp_handler = DummyTLS_DTPHandler$/;" v class:.DummyTLS_FTPHandler +dtp_handler Lib/test/test_ftplib.py /^ dtp_handler = DummyDTPHandler$/;" v class:DummyFTPHandler +dtz Lib/test/datetimetester.py /^ dtz = d.replace(tzinfo=tz)$/;" v class:TestDateTimeTZ.test_utctimetuple.BOFS +dummies Modules/_threadmodule.c /^ PyObject *dummies;$/;" m struct:__anon445 file: +dummy Lib/multiprocessing/managers.py /^ def dummy(self, c):$/;" m class:Server +dummy Lib/test/test_frame.py /^ def dummy():$/;" f function:TestCAPI.test_frame_fback_api +dummy Lib/test/test_optparse.py /^ def dummy(self):$/;" m class:TestOptionChecks +dummy Lib/test/test_xml_etree.py /^ class dummy:$/;" c class:IOTest +dummy Objects/setobject.c 41;" d file: +dummy_acw Lib/idlelib/idle_test/test_autocomplete.py /^ class dummy_acw:$/;" c class:AutoCompleteTest +dummy_dealloc Objects/setobject.c /^dummy_dealloc(PyObject* ignore)$/;" f file: +dummy_decoder Modules/cjkcodecs/_codecs_iso2022.c /^dummy_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +dummy_encoder Modules/cjkcodecs/_codecs_iso2022.c /^dummy_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +dummy_factory Lib/test/test_mailbox.py /^ def dummy_factory (s):$/;" f function:TestMH.test_get_folder +dummy_factory Lib/test/test_mailbox.py /^ def dummy_factory (s):$/;" f function:TestMaildir.test_folder +dummy_func Python/bytecodes.c /^dummy_func($/;" f file: +dummy_handle_error Lib/test/test_logging.py /^ def dummy_handle_error(record):$/;" f function:BasicConfigTest.test_encoding_errors_none +dummy_name Include/internal/pycore_parser.h /^ struct _expr dummy_name;$/;" m struct:_parser_runtime_state typeref:struct:_parser_runtime_state::_expr +dummy_name Lib/test/imp_dummy.py /^dummy_name = True$/;" v +dummy_repr Objects/setobject.c /^dummy_repr(PyObject *op)$/;" f file: +dummy_src_name Lib/timeit.py /^dummy_src_name = ""$/;" v +dummy_ssl_context Lib/test/test_asyncio/utils.py /^def dummy_ssl_context():$/;" f +dummy_write Lib/test/test_xmlrpc.py /^ def dummy_write(s):$/;" f function:XMLRPCTestCase.test_dump_big_int +dummy_write Lib/test/test_xmlrpc.py /^ def dummy_write(s):$/;" f function:XMLRPCTestCase.test_dump_double +dummycallback Lib/test/test_ssl.py /^ def dummycallback(sock, servername, ctx):$/;" f function:ContextTests.test_sni_callback +dummycallback Lib/test/test_ssl.py /^ def dummycallback(sock, servername, ctx, cycle=ctx):$/;" f function:ContextTests.test_sni_callback_refcycle +dump Lib/ast.py /^def dump(node, annotate_fields=True, include_attributes=False, *, indent=None):$/;" f +dump Lib/json/__init__.py /^def dump(obj, fp, *, skipkeys=False, ensure_ascii=True, check_circular=True,$/;" f +dump Lib/lib2to3/pgen2/grammar.py /^ def dump(self, filename):$/;" m class:Grammar +dump Lib/multiprocessing/reduction.py /^ dump = dump$/;" v class:AbstractReducer +dump Lib/multiprocessing/reduction.py /^def dump(obj, file, protocol=None):$/;" f +dump Lib/pickle.py /^ def dump(self, obj):$/;" m class:_Pickler +dump Lib/plistlib.py /^def dump(value, fp, *, fmt=FMT_XML, sort_keys=True, skipkeys=False):$/;" f +dump Lib/re/_parser.py /^ def dump(self, level=0):$/;" m class:SubPattern +dump Lib/test/test_code.py /^def dump(co):$/;" f +dump Lib/test/test_ctypes/test_array_in_pointer.py /^def dump(obj):$/;" f +dump Lib/test/test_pickle.py /^ dump = staticmethod(pickle._dump)$/;" v class:PyPickleTests +dump Lib/tkinter/__init__.py /^ def dump(self, index1, index2=None, command=None, **kw):$/;" m class:Text +dump Lib/tracemalloc.py /^ def dump(self, filename):$/;" m class:Snapshot +dump Lib/xml/etree/ElementTree.py /^def dump(elem):$/;" f +dump Modules/_pickle.c /^dump(PickleState *state, PicklerObject *self, PyObject *obj)$/;" f file: +dump Programs/freeze_test_frozenmain.py /^def dump(fp, filename, name):$/;" f +dump Tools/build/generate_sre_constants.py /^ def dump(d, prefix):$/;" f +dump Tools/build/stable_abi.py /^ def dump(self):$/;" m class:Manifest +dump Tools/clinic/clinic.py /^ def dump(self):$/;" m class:BufferSeries +dump Tools/clinic/clinic.py /^ def dump(self):$/;" m class:Destination +dump Tools/tz/zdump.py /^ def dump(self, stream, start=None, end=None):$/;" m class:TZInfo +dump Tools/unicode/makeunicodedata.py /^ def dump(t1, t2, shift, bytes):$/;" f function:splitbins +dump Tools/unicode/makeunicodedata.py /^ def dump(self, file, trace):$/;" m class:Hash +dump Tools/unicode/makeunicodedata.py /^ def dump(self, file, trace=0):$/;" m class:Array +dump2 Tools/build/generate_sre_constants.py /^ def dump2(d, prefix):$/;" f +dumpCfg Lib/idlelib/config.py /^ def dumpCfg(cfg):$/;" f function:_dump +dumpSearchInfo PC/launcher2.c /^dumpSearchInfo(SearchInfo *search)$/;" f +dump_array Lib/xmlrpc/client.py /^ def dump_array(self, value, write):$/;" m class:Marshaller +dump_bool Lib/xmlrpc/client.py /^ def dump_bool(self, value, write):$/;" m class:Marshaller +dump_bytes Lib/xmlrpc/client.py /^ def dump_bytes(self, value, write):$/;" m class:Marshaller +dump_config Programs/_testembed.c /^dump_config(void)$/;" f file: +dump_datetime Lib/xmlrpc/client.py /^ def dump_datetime(self, value, write):$/;" m class:Marshaller +dump_debug_stats Include/internal/pycore_obmalloc.h /^ int dump_debug_stats;$/;" m struct:_obmalloc_global_state +dump_dfa Lib/lib2to3/pgen2/pgen.py /^ def dump_dfa(self, name, dfa):$/;" m class:ParserGenerator +dump_dict Lib/test/test_getpath.py /^def dump_dict(before, after, prefix="global"):$/;" f +dump_double Lib/xmlrpc/client.py /^ def dump_double(self, value, write):$/;" m class:Marshaller +dump_entries Objects/dictobject.c /^dump_entries(PyDictKeysObject *dk)$/;" f file: +dump_event Lib/idlelib/undo.py /^ def dump_event(self, event):$/;" m class:UndoDelegator +dump_frame Python/traceback.c /^dump_frame(int fd, _PyInterpreterFrame *frame)$/;" f file: +dump_global_monitors Python/instrumentation.c /^dump_global_monitors(const char *prefix, _Py_GlobalMonitors monitors, FILE*out)$/;" f file: +dump_gotos Tools/build/generate_sre_constants.py /^ def dump_gotos(d, prefix):$/;" f +dump_info Lib/test/pythoninfo.py /^def dump_info(info, file=None):$/;" f +dump_instance Lib/xmlrpc/client.py /^ def dump_instance(self, value, write):$/;" m class:Marshaller +dump_instrumentation_data Python/instrumentation.c /^dump_instrumentation_data(PyCodeObject *code, int star, FILE*out)$/;" f file: +dump_instrumentation_data_line_tools Python/instrumentation.c /^dump_instrumentation_data_line_tools(PyCodeObject *code, uint8_t *line_tools, int i, FILE*out)$/;" f file: +dump_instrumentation_data_lines Python/instrumentation.c /^dump_instrumentation_data_lines(PyCodeObject *code, _PyCoLineInstrumentationData *lines, int i, FILE*out)$/;" f file: +dump_instrumentation_data_per_instruction Python/instrumentation.c /^dump_instrumentation_data_per_instruction(PyCodeObject *code, _PyCoMonitoringData *data, int i, FILE*out)$/;" f file: +dump_instrumentation_data_tools Python/instrumentation.c /^dump_instrumentation_data_tools(PyCodeObject *code, uint8_t *tools, int i, FILE*out)$/;" f file: +dump_int Lib/xmlrpc/client.py /^ dump_int = dump_long$/;" v class:Marshaller +dump_local_monitors Python/instrumentation.c /^dump_local_monitors(const char *prefix, _Py_LocalMonitors monitors, FILE*out)$/;" f file: +dump_long Lib/xmlrpc/client.py /^ def dump_long(self, value, write):$/;" m class:Marshaller +dump_nfa Lib/lib2to3/pgen2/pgen.py /^ def dump_nfa(self, name, start, finish):$/;" m class:ParserGenerator +dump_nil Lib/xmlrpc/client.py /^ def dump_nil (self, value, write):$/;" m class:Marshaller +dump_refs Include/cpython/initconfig.h /^ int dump_refs;$/;" m struct:PyConfig +dump_refs_file Include/cpython/initconfig.h /^ wchar_t *dump_refs_file;$/;" m struct:PyConfig +dump_stack Python/ceval.c /^dump_stack(_PyInterpreterFrame *frame, PyObject **stack_pointer)$/;" f file: +dump_stats Lib/cProfile.py /^ def dump_stats(self, file):$/;" m class:Profile +dump_stats Lib/profile.py /^ def dump_stats(self, file):$/;" m class:Profile +dump_stats Lib/pstats.py /^ def dump_stats(self, filename):$/;" m class:Stats +dump_struct Lib/xmlrpc/client.py /^ def dump_struct(self, value, write, escape=escape):$/;" m class:Marshaller +dump_traceback Python/traceback.c /^dump_traceback(int fd, PyThreadState *tstate, int write_header)$/;" f file: +dump_unicode Lib/xmlrpc/client.py /^ def dump_unicode(self, value, write, escape=escape):$/;" m class:Marshaller +dumps Lib/idlelib/rpc.py /^def dumps(obj, protocol=None):$/;" f +dumps Lib/json/__init__.py /^def dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,$/;" f +dumps Lib/multiprocessing/reduction.py /^ def dumps(cls, obj, protocol=None):$/;" m class:ForkingPickler +dumps Lib/plistlib.py /^def dumps(value, *, fmt=FMT_XML, skipkeys=False, sort_keys=True):$/;" f +dumps Lib/test/pickletester.py /^ def dumps(obj, **kwargs):$/;" f function:AbstractPickleModuleTests.test_dump_load_oob_buffers +dumps Lib/test/pickletester.py /^ def dumps(obj, protocol=None):$/;" f function:AbstractDispatchTableTests.test_class_dispatch_table +dumps Lib/test/pickletester.py /^ def dumps(obj, protocol=None):$/;" f function:AbstractDispatchTableTests.test_instance_dispatch_table +dumps Lib/test/test_ctypes/test_pickling.py /^ def dumps(self, item):$/;" m class:PickleTest +dumps Lib/test/test_json/__init__.py /^ dumps = staticmethod(cjson.dumps)$/;" v class:CTest +dumps Lib/test/test_json/__init__.py /^ dumps = staticmethod(pyjson.dumps)$/;" v class:PyTest +dumps Lib/test/test_pickle.py /^ def dumps(self, arg, proto=None):$/;" m class:PersistentPicklerUnpicklerMixin +dumps Lib/test/test_pickle.py /^ def dumps(self, arg, proto=None, **kwargs):$/;" m class:PyPicklerTests +dumps Lib/test/test_pickle.py /^ def dumps(self, arg, protocol=None, **kwargs):$/;" m class:InMemoryPickleTests +dumps Lib/test/test_pickle.py /^ dumps = staticmethod(pickle._dumps)$/;" v class:PyPickleTests +dumps Lib/test/test_pickletools.py /^ def dumps(self, arg, proto=None, **kwargs):$/;" m class:OptimizedPickleTests +dumps Lib/xmlrpc/client.py /^ def dumps(self, values):$/;" m class:Marshaller +dumps Lib/xmlrpc/client.py /^def dumps(params, methodname=None, methodresponse=None, encoding=None,$/;" f +dunder_names Lib/test/test_enum.py /^ dunder_names = '__mal__', '__bien__', '__que_que__'$/;" v class:TestHelpers +dunder_names Lib/test/test_enum.py /^ dunder_names = '__mal__', '__bien__', '__que_que__'$/;" v class:TestInternals +dup Lib/asyncio/trsock.py /^ def dup(self):$/;" m class:TransportSocket +dup Lib/socket.py /^ def dup(self):$/;" m class:socket +dup Lib/ssl.py /^ def dup(self):$/;" m class:SSLSocket +dup Lib/test/test_sqlite3/test_regression.py /^ def dup(v):$/;" f function:RegressionTests.test_table_lock_cursor_non_readonly_select +dup2 Python/dup2.c /^dup2(int fd1, int fd2)$/;" f +dupe Lib/test/test_enum.py /^ dupe = 3$/;" v class:_EnumTests.setUp.MainEnum +dupe Lib/test/test_enum.py /^ dupe = third$/;" v class:_EnumTests.setUp.MainEnum +duplicate Lib/multiprocessing/reduction.py /^ duplicate = duplicate$/;" v class:AbstractReducer +duplicate Lib/multiprocessing/reduction.py /^ def duplicate(handle, target_process=None, inheritable=False,$/;" f function:dump +duplicate Lib/test/test_funcattrs.py /^ def duplicate():$/;" f function:FunctionPropertiesTest.test_duplicate_function_equality +duplicate_exits_without_lineno Python/flowgraph.c /^duplicate_exits_without_lineno(cfg_builder *g)$/;" f file: +duplicate_for_child Lib/multiprocessing/popen_fork.py /^ def duplicate_for_child(self, fd):$/;" m class:Popen +duplicate_for_child Lib/multiprocessing/popen_forkserver.py /^ def duplicate_for_child(self, fd):$/;" m class:Popen +duplicate_for_child Lib/multiprocessing/popen_spawn_posix.py /^ def duplicate_for_child(self, fd):$/;" m class:Popen +duplicate_for_child Lib/multiprocessing/popen_spawn_win32.py /^ def duplicate_for_child(self, handle):$/;" m class:Popen +duplicate_string Lib/test/test_unicode.py /^def duplicate_string(text):$/;" f +dups Tools/stringbench/stringbench.py /^dups = {}$/;" v +dv_dict Include/cpython/dictobject.h /^ PyDictObject *dv_dict;$/;" m struct:__anon196 +dval Python/dtoa.c 188;" d file: +dw-reduce Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun dw-reduce (hi lo m base)$/;" f +dw-reduce-aux1 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd dw-reduce-aux1$/;" f +dw-reduce-aux2 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm dw-reduce-aux2$/;" f +dw-reduce-correct Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd dw-reduce-correct$/;" f +dw-reduce-second-quotient-fits-in-single-word Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd dw-reduce-second-quotient-fits-in-single-word$/;" f +dw-submod Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun dw-submod (a hi lo m base)$/;" f +dw-submod-aux1 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd dw-submod-aux1$/;" f +dw-submod-correct Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd dw-submod-correct$/;" f +dw_reduce Modules/_decimal/libmpdec/umodarith.h /^dw_reduce(mpd_uint_t hi, mpd_uint_t lo, mpd_uint_t m)$/;" f +dw_submod Modules/_decimal/libmpdec/umodarith.h /^dw_submod(mpd_uint_t a, mpd_uint_t hi, mpd_uint_t lo, mpd_uint_t m)$/;" f +dyld_default_search Lib/ctypes/macholib/dyld.py /^def dyld_default_search(name, env=None):$/;" f +dyld_env Lib/ctypes/macholib/dyld.py /^def dyld_env(env, var):$/;" f +dyld_executable_path_search Lib/ctypes/macholib/dyld.py /^def dyld_executable_path_search(name, executable_path=None):$/;" f +dyld_fallback_framework_path Lib/ctypes/macholib/dyld.py /^def dyld_fallback_framework_path(env=None):$/;" f +dyld_fallback_library_path Lib/ctypes/macholib/dyld.py /^def dyld_fallback_library_path(env=None):$/;" f +dyld_find Lib/ctypes/macholib/dyld.py /^def dyld_find(name, executable_path=None, env=None):$/;" f +dyld_framework_path Lib/ctypes/macholib/dyld.py /^def dyld_framework_path(env=None):$/;" f +dyld_image_suffix Lib/ctypes/macholib/dyld.py /^def dyld_image_suffix(env=None):$/;" f +dyld_image_suffix_search Lib/ctypes/macholib/dyld.py /^def dyld_image_suffix_search(iterator, env=None):$/;" f +dyld_library_path Lib/ctypes/macholib/dyld.py /^def dyld_library_path(env=None):$/;" f +dyld_override_search Lib/ctypes/macholib/dyld.py /^def dyld_override_search(name, env=None):$/;" f +dylib_info Lib/ctypes/macholib/dylib.py /^def dylib_info(filename):$/;" f +dylib_lib_extension Tools/c-analyzer/distutils/unixccompiler.py /^ dylib_lib_extension = ".dylib"$/;" v class:UnixCCompiler +dynamicmetaclass Lib/test/test_descr.py /^ class dynamicmetaclass(type):$/;" c function:.test_dynamics +e Lib/test/test_descr.py /^ e = ExceptionType()$/;" v class:.test_set_dict.Exception2 +e Lib/test/test_exceptions.py /^ e = E()$/;" v class:ExceptionTests.test_no_hang_on_context_chain_cycle3.E +e Lib/test/test_funcattrs.py /^ def e(): return num_one, num_two$/;" f function:FunctionPropertiesTest.test___code__ +e Lib/test/test_json/test_enum.py /^ e = E$/;" v class:FloatNum +e Lib/test/test_subclassinit.py /^ e = Descriptor()$/;" v class:Test.test_set_name_modifying_dict.A +e Lib/test/test_traceback.py /^ def e():$/;" f function:BaseExceptionReportingTests.test_syntax_error_offset_at_eol +e Lib/test/test_typing.py /^ def e(*args: Unpack[Tuple[int, Unpack[Ts]]]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +e Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +e Modules/selectmodule.c /^ struct kevent e;$/;" m struct:__anon577 typeref:struct:__anon577::kevent file: +e0 Python/dtoa.c /^ int e0, nd, nd0, scale;$/;" m struct:BCinfo file: +each Lib/test/test_inspect.py /^ async def each(lst, a=None):$/;" f function:TestGetAsyncGenState.test_getasyncgenlocals +each Lib/test/test_inspect.py /^ def each(lst, a=None):$/;" f function:TestGetGeneratorState.test_getgeneratorlocals +eager Lib/test/test_asyncio/test_eager_task_factory.py /^ eager = False$/;" v class:BaseNonEagerTaskFactoryTests +eager Lib/test/test_asyncio/test_eager_task_factory.py /^ eager = None$/;" v class:BaseTaskCountingTests +eager Lib/test/test_asyncio/test_eager_task_factory.py /^ eager = True$/;" v class:BaseEagerTaskFactoryTests +eager_task_factory Lib/asyncio/tasks.py /^eager_task_factory = create_eager_task_factory(Task)$/;" v +eager_tasks Modules/_asynciomodule.c /^ PyObject *eager_tasks;$/;" m struct:__anon308 file: +east_asian_width Modules/unicodedata.c /^ const unsigned char east_asian_width; \/* index into$/;" m struct:__anon642 file: +east_asian_width_changed Modules/unicodedata.c /^ const unsigned char east_asian_width_changed;$/;" m struct:change_record file: +echo_client Lib/test/test_socket.py /^ def echo_client(self, addr, family):$/;" m class:CreateServerFunctionalTest +echo_datagrams Lib/test/test_asyncio/utils.py /^def echo_datagrams(sock):$/;" f +echo_server Lib/test/test_socket.py /^ def echo_server(self, sock):$/;" m class:CreateServerFunctionalTest +edit Lib/curses/textpad.py /^ def edit(self, validate=None):$/;" m class:Textbox +edit Lib/idlelib/tree.py /^ def edit(self, event=None):$/;" m class:TreeNode +edit Lib/tkinter/__init__.py /^ def edit(self, *args):$/;" m class:Text +edit_apply Lib/tkinter/tix.py /^ def edit_apply(self):$/;" m class:Grid +edit_cancel Lib/idlelib/tree.py /^ def edit_cancel(self, event=None):$/;" m class:TreeNode +edit_finish Lib/idlelib/tree.py /^ def edit_finish(self, event=None):$/;" m class:TreeNode +edit_modified Lib/tkinter/__init__.py /^ def edit_modified(self, arg=None):$/;" m class:Text +edit_redo Lib/tkinter/__init__.py /^ def edit_redo(self):$/;" m class:Text +edit_reset Lib/tkinter/__init__.py /^ def edit_reset(self):$/;" m class:Text +edit_separator Lib/tkinter/__init__.py /^ def edit_separator(self):$/;" m class:Text +edit_set Lib/tkinter/tix.py /^ def edit_set(self, x, y):$/;" m class:Grid +edit_undo Lib/tkinter/__init__.py /^ def edit_undo(self):$/;" m class:Text +eff_request_host Lib/http/cookiejar.py /^def eff_request_host(request):$/;" f +effect Lib/test/test_unittest/testmock/testmock.py /^ def effect():$/;" f function:MockTest.test_autospec_side_effect +effect Lib/test/test_unittest/testmock/testmock.py /^ def effect():$/;" f function:MockTest.test_side_effect +effect Lib/test/test_unittest/testmock/testmock.py /^ def effect(*args, **kwargs):$/;" f function:MockTest.test_side_effect +effect_counts Tools/cases_generator/generate_cases.py /^ def effect_counts(self, name: str) -> tuple[int, int, int]:$/;" m class:Analyzer +effect_size Tools/cases_generator/generate_cases.py /^def effect_size(effect: StackEffect) -> tuple[int, str]:$/;" f +effect_str Tools/cases_generator/generate_cases.py /^ def effect_str(effects: list[StackEffect]) -> str:$/;" f function:Analyzer.get_stack_effect_info +effective Lib/bdb.py /^def effective(file, line, frame):$/;" f +eg Lib/test/test_exception_group.py /^ eg = e$/;" v class:NestedExceptionGroupSubclassSplitTest.test_split_BaseExceptionGroup_subclass_no_derive_new_override.EG +eg Lib/test/test_exception_group.py /^ eg = e$/;" v class:NestedExceptionGroupSubclassSplitTest.test_split_ExceptionGroup_subclass_derive_and_new_overrides.EG +eg Lib/test/test_exception_group.py /^ eg = e$/;" v class:NestedExceptionGroupSubclassSplitTest.test_split_ExceptionGroup_subclass_no_derive_no_new_override.EG +eggs Lib/test/inspect_fodder.py /^def eggs(x, y):$/;" f +eggs Lib/test/test_inspect.py /^ def eggs(self):$/;" m class:TestClassesAndFunctions.test_getmembers_VirtualAttribute.A +eggs Lib/test/test_inspect.py /^ def eggs(self):$/;" m class:TestClassesAndFunctions.test_getmembers_static.A +eggs Lib/test/test_named_expressions.py /^ def eggs(b):$/;" f function:.test_named_expression_scope_08 +eggs Lib/test/test_named_expressions.py /^ def eggs(b):$/;" f function:.test_named_expression_scope_09 +eggs Lib/test/test_patma.py /^ eggs = 1$/;" v class:TestTypeErrors.test_match_args_must_be_a_tuple_2.Class +eggs Lib/test/test_scope.py /^ def eggs():$/;" f function:ScopeTests.testCellIsArgAndEscapes.spam +eggs Lib/test/test_scope.py /^ def eggs():$/;" f function:ScopeTests.testCellIsLocalAndEscapes.spam +eggs Lib/test/test_yield_from.py /^ def eggs(g):$/;" f function:TestPEP380Operation.test_delegator_is_visible_to_debugger +ehlo Lib/smtplib.py /^ def ehlo(self, name=''):$/;" m class:SMTP +ehlo_msg Lib/smtplib.py /^ ehlo_msg = "ehlo"$/;" v class:SMTP +ehlo_msg Lib/smtplib.py /^ ehlo_msg = "lhlo"$/;" v class:LMTP +ehlo_or_helo_if_needed Lib/smtplib.py /^ def ehlo_or_helo_if_needed(self):$/;" m class:SMTP +ehlo_resp Lib/smtplib.py /^ ehlo_resp = None$/;" v class:SMTP +eight Lib/test/test_enum.py /^ eight = '8'$/;" v class:TestSpecial.test_custom_strenum.HelloEnum +eight Lib/test/test_enum.py /^ eight = '8'$/;" v class:TestSpecial.test_strenum.HelloEnum +eight Lib/test/test_enum.py /^ eight = auto()$/;" v class:OldTestFlag.test_unique_composite.TestFlag +eight Lib/test/test_enum.py /^ eight = auto()$/;" v class:OldTestIntFlag.test_unique_composite.TestFlag +eject_from_strong_cache Modules/_zoneinfo.c /^eject_from_strong_cache(zoneinfo_state *state, const PyTypeObject *const type,$/;" f file: +element Modules/itertoolsmodule.c /^ PyObject *element;$/;" m struct:__anon421 file: +element Parser/pegen.h /^ void *element;$/;" m struct:__anon665 +element0 Modules/expat/xmlrole.c /^ attlist9, element0, element1, element2, element3, element4, element5,$/;" v file: +element0 Modules/expat/xmlrole.c /^element0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +element1 Modules/expat/xmlrole.c /^ attlist9, element0, element1, element2, element3, element4, element5,$/;" v file: +element1 Modules/expat/xmlrole.c /^element1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +element2 Modules/expat/xmlrole.c /^ attlist9, element0, element1, element2, element3, element4, element5,$/;" v file: +element2 Modules/expat/xmlrole.c /^element2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +element3 Modules/expat/xmlrole.c /^ attlist9, element0, element1, element2, element3, element4, element5,$/;" v file: +element3 Modules/expat/xmlrole.c /^element3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +element4 Modules/expat/xmlrole.c /^ attlist9, element0, element1, element2, element3, element4, element5,$/;" v file: +element4 Modules/expat/xmlrole.c /^element4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +element5 Modules/expat/xmlrole.c /^ attlist9, element0, element1, element2, element3, element4, element5,$/;" v file: +element5 Modules/expat/xmlrole.c /^element5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +element6 Modules/expat/xmlrole.c /^ element6, element7,$/;" v file: +element6 Modules/expat/xmlrole.c /^element6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +element7 Modules/expat/xmlrole.c /^ element6, element7,$/;" v file: +element7 Modules/expat/xmlrole.c /^element7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +elementTypes Modules/expat/xmlparse.c /^ HASH_TABLE elementTypes;$/;" m struct:__anon617 file: +element_add_subelement Modules/_elementtree.c /^element_add_subelement(elementtreestate *st, ElementObject *self,$/;" f +element_ass_subscr Modules/_elementtree.c /^element_ass_subscr(PyObject* self_, PyObject* item, PyObject* value)$/;" f file: +element_attrib_getter Modules/_elementtree.c /^element_attrib_getter(ElementObject *self, void *closure)$/;" f file: +element_attrib_setter Modules/_elementtree.c /^element_attrib_setter(ElementObject *self, PyObject *value, void *closure)$/;" f file: +element_bool Modules/_elementtree.c /^element_bool(PyObject* self_)$/;" f file: +element_create Lib/tkinter/ttk.py /^ def element_create(self, elementname, etype, *args, **kw):$/;" m class:Style +element_dealloc Modules/_elementtree.c /^element_dealloc(ElementObject* self)$/;" f file: +element_decl_handler Lib/xml/dom/expatbuilder.py /^ def element_decl_handler(self, name, model):$/;" m class:ExpatBuilder +element_factory Lib/test/test_xml_etree.py /^ def element_factory(x, y):$/;" f function:BadElementTest.test_treebuilder_end +element_factory Lib/test/test_xml_etree.py /^ def element_factory(x, y):$/;" f function:BadElementTest.test_treebuilder_start +element_factory Modules/_elementtree.c /^ PyObject *element_factory;$/;" m struct:__anon385 file: +element_gc_clear Modules/_elementtree.c /^element_gc_clear(ElementObject *self)$/;" f file: +element_gc_traverse Modules/_elementtree.c /^element_gc_traverse(ElementObject *self, visitproc visit, void *arg)$/;" f file: +element_get_attrib Modules/_elementtree.c /^element_get_attrib(ElementObject* self)$/;" f +element_get_tail Modules/_elementtree.c /^element_get_tail(ElementObject* self)$/;" f +element_get_text Modules/_elementtree.c /^element_get_text(ElementObject* self)$/;" f +element_getitem Modules/_elementtree.c /^element_getitem(PyObject* self_, Py_ssize_t index)$/;" f file: +element_getsetlist Modules/_elementtree.c /^static PyGetSetDef element_getsetlist[] = {$/;" v file: +element_init Modules/_elementtree.c /^element_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +element_length Modules/_elementtree.c /^element_length(ElementObject* self)$/;" f file: +element_lower Lib/test/test_htmlparser.py /^ element_lower = element.lower().strip()$/;" v class:.test_cdata_with_closing_tags.Collector +element_members Modules/_elementtree.c /^static struct PyMemberDef element_members[] = {$/;" v typeref:struct:PyMemberDef file: +element_methods Modules/_elementtree.c /^static PyMethodDef element_methods[] = {$/;" v file: +element_names Lib/tkinter/ttk.py /^ def element_names(self):$/;" m class:Style +element_new Modules/_elementtree.c /^element_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +element_options Lib/tkinter/ttk.py /^ def element_options(self, elementname):$/;" m class:Style +element_repr Modules/_elementtree.c /^element_repr(ElementObject* self)$/;" f file: +element_resize Modules/_elementtree.c /^element_resize(ElementObject* self, Py_ssize_t extra)$/;" f +element_setitem Modules/_elementtree.c /^element_setitem(PyObject* self_, Py_ssize_t index, PyObject* item)$/;" f file: +element_setstate_from_Python Modules/_elementtree.c /^element_setstate_from_Python(elementtreestate *st, ElementObject *self,$/;" f file: +element_setstate_from_attributes Modules/_elementtree.c /^element_setstate_from_attributes(elementtreestate *st,$/;" f file: +element_slots Modules/_elementtree.c /^static PyType_Slot element_slots[] = {$/;" v file: +element_spec Modules/_elementtree.c /^static PyType_Spec element_spec = {$/;" v file: +element_subscr Modules/_elementtree.c /^element_subscr(PyObject* self_, PyObject* item)$/;" f file: +element_tag_getter Modules/_elementtree.c /^element_tag_getter(ElementObject *self, void *closure)$/;" f file: +element_tag_setter Modules/_elementtree.c /^element_tag_setter(ElementObject *self, PyObject *value, void *closure)$/;" f file: +element_tail_getter Modules/_elementtree.c /^element_tail_getter(ElementObject *self, void *closure)$/;" f file: +element_tail_setter Modules/_elementtree.c /^element_tail_setter(ElementObject *self, PyObject *value, void *closure)$/;" f file: +element_text_getter Modules/_elementtree.c /^element_text_getter(ElementObject *self, void *closure)$/;" f file: +element_text_setter Modules/_elementtree.c /^element_text_setter(ElementObject *self, PyObject *value, void *closure)$/;" f file: +elementiter_dealloc Modules/_elementtree.c /^elementiter_dealloc(ElementIterObject *it)$/;" f file: +elementiter_next Modules/_elementtree.c /^elementiter_next(ElementIterObject *it)$/;" f file: +elementiter_slots Modules/_elementtree.c /^static PyType_Slot elementiter_slots[] = {$/;" v file: +elementiter_spec Modules/_elementtree.c /^static PyType_Spec elementiter_spec = {$/;" v file: +elementiter_traverse Modules/_elementtree.c /^elementiter_traverse(ElementIterObject *it, visitproc visit, void *arg)$/;" f file: +elementpath_obj Modules/_elementtree.c /^ PyObject *elementpath_obj;$/;" m struct:__anon381 file: +elements Lib/collections/__init__.py /^ def elements(self):$/;" m class:Counter +elementtree_clear Modules/_elementtree.c /^elementtree_clear(PyObject *m)$/;" f file: +elementtree_free Modules/_elementtree.c /^elementtree_free(void *m)$/;" f file: +elementtree_slots Modules/_elementtree.c /^static struct PyModuleDef_Slot elementtree_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +elementtree_traverse Modules/_elementtree.c /^elementtree_traverse(PyObject *m, visitproc visit, void *arg)$/;" f file: +elementtreemodule Modules/_elementtree.c /^static struct PyModuleDef elementtreemodule = {$/;" v typeref:struct:PyModuleDef file: +elementtreemodule Modules/_elementtree.c /^static struct PyModuleDef elementtreemodule;$/;" v typeref:struct:PyModuleDef file: +elementtreestate Modules/_elementtree.c /^} elementtreestate;$/;" t typeref:struct:__anon381 file: +elemtype Tools/unicode/genmap_support.py /^ elemtype = 'DBCHAR'$/;" v class:EncodeMapWriter +elif_stmt_rule Parser/parser.c /^elif_stmt_rule(Parser *p)$/;" f file: +elif_stmt_type Parser/parser.c 133;" d file: +elim-mod-m List[str]:$/;" m class:Host +emin Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t emin; \/* min negative exp *\/$/;" m struct:mpd_context_t +emit Lib/logging/__init__.py /^ def emit(self, record):$/;" m class:FileHandler +emit Lib/logging/__init__.py /^ def emit(self, record):$/;" m class:Handler +emit Lib/logging/__init__.py /^ def emit(self, record):$/;" m class:NullHandler +emit Lib/logging/__init__.py /^ def emit(self, record):$/;" m class:StreamHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:BaseRotatingHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:BufferingHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:HTTPHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:NTEventLogHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:QueueHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:SMTPHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:SocketHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:SysLogHandler +emit Lib/logging/handlers.py /^ def emit(self, record):$/;" m class:WatchedFileHandler +emit Lib/test/support/logging_helper.py /^ def emit(self, record):$/;" m class:TestHandler +emit Lib/test/test_logging.py /^ def emit(self, record):$/;" m class:ConfigDictTest.test_namedtuple.MyHandler +emit Lib/test/test_logging.py /^ def emit(self, record):$/;" m class:HandlerTest.test_post_fork_child_no_deadlock._OurHandler +emit Lib/traceback.py /^ def emit(self, text_gen, margin_char=None):$/;" m class:_ExceptionPrintContext +emit Lib/unittest/_log.py /^ def emit(self, record):$/;" m class:_CapturingHandler +emit Parser/asdl_c.py /^ def emit(s, d):$/;" f function:ObjVisitor.visitField +emit Parser/asdl_c.py /^ def emit(s, depth=0, reflow=True):$/;" f function:FunctionVisitor.emit_body_struct +emit Parser/asdl_c.py /^ def emit(s, depth=0, reflow=True):$/;" f function:FunctionVisitor.emit_body_union +emit Parser/asdl_c.py /^ def emit(s, depth=0, reflow=True):$/;" f function:FunctionVisitor.emit_function +emit Parser/asdl_c.py /^ def emit(s, depth=depth):$/;" f function:StructVisitor.sum_with_constructors +emit Parser/asdl_c.py /^ def emit(self, s, depth, reflow=True):$/;" m class:EmitVisitor +emit Tools/cases_generator/generate_cases.py /^ def emit(self, arg: str) -> None:$/;" m class:Formatter +emit_action Tools/peg_generator/pegen/c_generator.py /^ def emit_action(self, node: Alt, cleanup_code: Optional[str] = None) -> None:$/;" m class:CParserGenerator +emit_and_reset_fail_pop Python/compile.c /^emit_and_reset_fail_pop(struct compiler *c, location loc,$/;" f file: +emit_body_struct Parser/asdl_c.py /^ def emit_body_struct(self, name, args, attrs):$/;" m class:FunctionVisitor +emit_body_union Parser/asdl_c.py /^ def emit_body_union(self, name, args, attrs):$/;" m class:FunctionVisitor +emit_call_stats Tools/scripts/summarize_stats.py /^def emit_call_stats(stats):$/;" f +emit_comparative_call_stats Tools/scripts/summarize_stats.py /^def emit_comparative_call_stats(base_stats, head_stats):$/;" f +emit_comparative_execution_counts Tools/scripts/summarize_stats.py /^def emit_comparative_execution_counts($/;" f +emit_comparative_object_stats Tools/scripts/summarize_stats.py /^def emit_comparative_object_stats(base_stats, head_stats):$/;" f +emit_comparative_specialization_overview Tools/scripts/summarize_stats.py /^def emit_comparative_specialization_overview(base_opcode_stats, base_total, head_opcode_stats, head_total):$/;" f +emit_comparative_specialization_stats Tools/scripts/summarize_stats.py /^def emit_comparative_specialization_stats(base_opcode_stats, head_opcode_stats):$/;" f +emit_default_action Tools/peg_generator/pegen/c_generator.py /^ def emit_default_action(self, is_gather: bool, node: Alt) -> None:$/;" m class:CParserGenerator +emit_defaults Parser/asdl_c.py /^ def emit_defaults(self, name, fields, depth):$/;" f +emit_delta Objects/codeobject.c /^emit_delta(PyObject **bytes, int bdelta, int ldelta, int *offset)$/;" f file: +emit_dummy_action Tools/peg_generator/pegen/c_generator.py /^ def emit_dummy_action(self) -> None:$/;" m class:CParserGenerator +emit_execution_counts Tools/scripts/summarize_stats.py /^def emit_execution_counts(opcode_stats, total):$/;" f +emit_function Parser/asdl_c.py /^ def emit_function(self, name, ctype, args, attrs, union=True):$/;" m class:FunctionVisitor +emit_function Parser/asdl_c.py /^ def emit_function(self, name, ctype, args, attrs, union=True):$/;" m class:PrototypeVisitor +emit_object_stats Tools/scripts/summarize_stats.py /^def emit_object_stats(stats):$/;" f +emit_pair Objects/codeobject.c /^emit_pair(PyObject **bytes, int *offset, int a, int b)$/;" f file: +emit_pair_counts Tools/scripts/summarize_stats.py /^def emit_pair_counts(opcode_stats, total):$/;" f +emit_sequence_constructor Parser/asdl_c.py /^ def emit_sequence_constructor(self, name, type):$/;" m class:SequenceConstructorVisitor +emit_sequence_constructor Parser/asdl_c.py /^ def emit_sequence_constructor(self, name,depth):$/;" m class:SequenceDefVisitor +emit_specialization_overview Tools/scripts/summarize_stats.py /^def emit_specialization_overview(opcode_stats, total):$/;" f +emit_specialization_stats Tools/scripts/summarize_stats.py /^def emit_specialization_stats(opcode_stats):$/;" f +emit_stderr_warning_for_legacy_locale Python/pylifecycle.c /^emit_stderr_warning_for_legacy_locale(_PyRuntimeState *runtime)$/;" f file: +emit_table Tools/scripts/summarize_stats.py /^def emit_table(header, rows):$/;" f +emport_args Tools/wasm/wasm_build.py /^ def emport_args(self) -> List[str]:$/;" m class:EmscriptenTarget +emport_args Tools/wasm/wasm_build.py /^ def emport_args(self) -> List[str]:$/;" m class:Host +emports Tools/wasm/wasm_build.py /^ emports="build Emscripten port with embuilder (only Emscripten)",$/;" v +empty Lib/asyncio/queues.py /^ def empty(self):$/;" m class:Queue +empty Lib/idlelib/idle_test/test_config.py /^ empty = {'main':{}, 'highlight':{}, 'keys':{}, 'extensions':{}}$/;" v class:ChangesTest +empty Lib/inspect.py /^ empty = _empty$/;" v class:Parameter +empty Lib/inspect.py /^ empty = _empty$/;" v class:Signature +empty Lib/multiprocessing/queues.py /^ def empty(self):$/;" m class:Queue +empty Lib/multiprocessing/queues.py /^ def empty(self):$/;" m class:SimpleQueue +empty Lib/queue.py /^ def empty(self):$/;" m class:Queue +empty Lib/queue.py /^ def empty(self):$/;" m class:_PySimpleQueue +empty Lib/sched.py /^ def empty(self):$/;" m class:scheduler +empty_cell Lib/test/test_funcattrs.py /^def empty_cell(empty=True):$/;" f +empty_error Lib/test/test_asyncio/test_subprocess.py /^ async def empty_error():$/;" f function:SubprocessMixin.test_devnull_error +empty_format_spec Lib/test/test_builtin.py /^ def empty_format_spec(value):$/;" f function:BuiltinTest.test_format +empty_input Lib/test/test_asyncio/test_subprocess.py /^ async def empty_input():$/;" f function:SubprocessMixin.test_devnull_input +empty_input Lib/test/test_asyncio/test_subprocess.py /^ async def empty_input():$/;" f function:SubprocessMixin.test_empty_input +empty_keys_struct Objects/dictobject.c /^static PyDictKeysObject empty_keys_struct = {$/;" v file: +empty_lines_in_values Lib/test/test_configparser.py /^ empty_lines_in_values = False$/;" v class:RawConfigParserTestSambaConf +empty_lines_in_values Lib/test/test_configparser.py /^ empty_lines_in_values = True$/;" v class:CfgParserTestCaseClass +empty_output Lib/test/test_asyncio/test_subprocess.py /^ async def empty_output():$/;" f function:SubprocessMixin.test_devnull_output +empty_seq Lib/test/test_descr.py /^ def empty_seq(self):$/;" f function:.test_special_method_lookup +empty_set Lib/test/test_set.py /^empty_set = set()$/;" v +empty_slots Modules/_testcapi/heaptype_relative.c /^static PyType_Slot empty_slots[] = {$/;" v file: +empty_traceback Include/internal/pycore_tracemalloc.h /^ struct tracemalloc_traceback empty_traceback;$/;" m struct:_tracemalloc_runtime_state typeref:struct:_tracemalloc_runtime_state::tracemalloc_traceback +empty_tuple Modules/_lzmamodule.c /^ PyObject *empty_tuple;$/;" m struct:__anon293 file: +empty_type_slots Modules/_testcapi/heaptype.c /^static PyType_Slot empty_type_slots[] = {$/;" v file: +emptybuf Modules/arraymodule.c /^static const void *emptybuf = "";$/;" v file: +emptyline Lib/cmd.py /^ def emptyline(self):$/;" m class:Cmd +emptystring Objects/codeobject.c 788;" d file: +emscripten_info_desc Python/sysmodule.c /^static PyStructSequence_Desc emscripten_info_desc = {$/;" v file: +emscripten_info_fields Python/sysmodule.c /^static PyStructSequence_Field emscripten_info_fields[] = {$/;" v file: +emscripten_signal_clock Python/emscripten_signal.c /^static int emscripten_signal_clock = PY_EMSCRIPTEN_SIGNAL_INTERVAL;$/;" v file: +en_index Objects/enumobject.c /^ Py_ssize_t en_index; \/* current index of enumeration *\/$/;" m struct:__anon727 file: +en_longindex Objects/enumobject.c /^ PyObject* en_longindex; \/* index for sequences >= PY_SSIZE_T_MAX *\/$/;" m struct:__anon727 file: +en_result Objects/enumobject.c /^ PyObject* en_result; \/* result tuple *\/$/;" m struct:__anon727 file: +en_sit Objects/enumobject.c /^ PyObject* en_sit; \/* secondary iterator of enumeration *\/$/;" m struct:__anon727 file: +enable Lib/bdb.py /^ def enable(self):$/;" m class:Breakpoint +enable Lib/cgitb.py /^def enable(display=1, logdir=None, context=5, format="html"):$/;" f +enable Lib/imaplib.py /^ def enable(self, capability):$/;" m class:IMAP4 +enable Lib/tkinter/tix.py /^ def enable(self, name):$/;" m class:OptionMenu +enable_SMTPUTF8 Lib/test/smtpd.py /^ enable_SMTPUTF8 = False$/;" v class:Options +enable_UTF8 Lib/test/test_poplib.py /^ enable_UTF8 = False$/;" v class:DummyPOP3Handler +enable_callback_tracebacks Modules/_sqlite/module.h /^ int enable_callback_tracebacks;$/;" m struct:__anon355 +enable_interspersed_args Lib/optparse.py /^ def enable_interspersed_args(self):$/;" m class:OptionParser +enable_keys Lib/turtledemo/sorting_animate.py /^def enable_keys():$/;" f +enable_traversal Lib/tkinter/ttk.py /^ def enable_traversal(self):$/;" m class:Notebook +enabled Include/internal/pycore_faulthandler.h /^ int enabled;$/;" m struct:_faulthandler_runtime_state::__anon126 +enabled Include/internal/pycore_faulthandler.h /^ int enabled;$/;" m struct:faulthandler_user_signal +enabled Include/internal/pycore_gc.h /^ int enabled;$/;" m struct:_gc_runtime_state +enabled Modules/faulthandler.c /^ int enabled;$/;" m struct:__anon559 file: +enablerlcompleter Lib/site.py /^def enablerlcompleter():$/;" f +enc Modules/expat/xmltok.c /^ int isGeneralTextEntity, const ENCODING *enc, const char *ptr,$/;" v file: +enc Modules/expat/xmltok.c /^ ENCODING enc;$/;" m struct:normal_encoding file: +enc Parser/tokenizer.h /^ const char* enc; \/* Encoding for the current str. *\/$/;" m struct:tok_state +encPtr Modules/expat/xmltok.h /^ const ENCODING **encPtr;$/;" m struct:__anon619 +enc_EXCEPTION Objects/unicodeobject.c /^ enc_SUCCESS, enc_FAILED, enc_EXCEPTION$/;" e enum:charmapencode_result file: +enc_FAILED Objects/unicodeobject.c /^ enc_SUCCESS, enc_FAILED, enc_EXCEPTION$/;" e enum:charmapencode_result file: +enc_SUCCESS Objects/unicodeobject.c /^ enc_SUCCESS, enc_FAILED, enc_EXCEPTION$/;" e enum:charmapencode_result file: +encapsulate Lib/test/test_weakref.py /^ def encapsulate():$/;" f function:ReferencesTestCase.test_callbacks_protected +encinit Modules/cjkcodecs/multibytecodec.h /^ mbencodeinit_func encinit;$/;" m struct:_multibyte_codec +encmap Modules/cjkcodecs/cjkcodecs.h /^ const struct unim_index *encmap;$/;" m struct:dbcs_map typeref:struct:dbcs_map::unim_index +encode Lib/base64.py /^def encode(input, output):$/;" f +encode Lib/codecs.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/codecs.py /^ def encode(self, input, final=False):$/;" m class:BufferedIncrementalEncoder +encode Lib/codecs.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/collections/__init__.py /^ def encode(self, encoding='utf-8', errors='strict'):$/;" m class:UserString +encode Lib/email/_encoded_words.py /^def encode(string, charset='utf-8', encoding=None, lang=''):$/;" f +encode Lib/email/header.py /^ def encode(self, splitchars=';, \\t', maxlinelen=None, linesep='\\n'):$/;" m class:Header +encode Lib/encodings/ascii.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/ascii.py /^ encode = codecs.ascii_decode$/;" v class:StreamConverter +encode Lib/encodings/ascii.py /^ encode = codecs.ascii_encode$/;" v class:Codec +encode Lib/encodings/base64_codec.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/base64_codec.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/big5.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/big5hkscs.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/bz2_codec.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/bz2_codec.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/charmap.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/charmap.py /^ def encode(self,input,errors='strict'):$/;" m class:StreamWriter +encode Lib/encodings/charmap.py /^ encode = codecs.charmap_encode$/;" v class:Codec +encode Lib/encodings/cp037.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp037.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1006.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1006.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1026.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1026.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1125.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1125.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1140.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1140.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1250.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1250.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1251.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1251.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1252.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1252.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1253.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1253.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1254.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1254.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1255.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1255.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1256.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1256.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1257.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1257.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp1258.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp1258.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp273.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp273.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp424.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp424.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp437.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp437.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp500.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp500.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp720.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp720.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp737.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp737.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp775.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp775.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp850.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp850.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp852.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp852.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp855.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp855.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp856.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp856.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp857.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp857.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp858.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp858.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp860.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp860.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp861.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp861.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp862.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp862.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp863.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp863.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp864.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp864.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp865.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp865.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp866.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp866.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp869.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp869.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp874.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp874.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp875.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/cp875.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/cp932.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/cp949.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/cp950.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/euc_jis_2004.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/euc_jisx0213.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/euc_jp.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/euc_kr.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/gb18030.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/gb2312.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/gbk.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/hex_codec.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/hex_codec.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/hp_roman8.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/hp_roman8.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/hz.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/idna.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso2022_jp.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/iso2022_jp_1.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/iso2022_jp_2.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/iso2022_jp_2004.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/iso2022_jp_3.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/iso2022_jp_ext.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/iso2022_kr.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/iso8859_1.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_1.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_10.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_10.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_11.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_11.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_13.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_13.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_14.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_14.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_15.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_15.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_16.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_16.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_2.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_2.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_3.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_3.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_4.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_4.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_5.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_5.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_6.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_6.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_7.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_7.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_8.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_8.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/iso8859_9.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/iso8859_9.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/johab.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/koi8_r.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/koi8_r.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/koi8_t.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/koi8_t.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/koi8_u.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/koi8_u.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/kz1048.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/kz1048.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/latin_1.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/latin_1.py /^ encode = codecs.latin_1_decode$/;" v class:StreamConverter +encode Lib/encodings/latin_1.py /^ encode = codecs.latin_1_encode$/;" v class:Codec +encode Lib/encodings/mac_arabic.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_arabic.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_croatian.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_croatian.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_cyrillic.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_cyrillic.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_farsi.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_farsi.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_greek.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_greek.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_iceland.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_iceland.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_latin2.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_latin2.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_roman.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_roman.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_romanian.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_romanian.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mac_turkish.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mac_turkish.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/mbcs.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/mbcs.py /^ encode = mbcs_encode$/;" v class:StreamWriter +encode Lib/encodings/mbcs.py /^encode = mbcs_encode$/;" v +encode Lib/encodings/oem.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/oem.py /^ encode = oem_encode$/;" v class:StreamWriter +encode Lib/encodings/oem.py /^encode = oem_encode$/;" v +encode Lib/encodings/palmos.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/palmos.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/ptcp154.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/ptcp154.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/punycode.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/punycode.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/quopri_codec.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/quopri_codec.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/raw_unicode_escape.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/raw_unicode_escape.py /^ encode = codecs.raw_unicode_escape_encode$/;" v class:Codec +encode Lib/encodings/rot_13.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/rot_13.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/shift_jis.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/shift_jis_2004.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/shift_jisx0213.py /^ encode = codec.encode$/;" v class:Codec +encode Lib/encodings/tis_620.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/tis_620.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/undefined.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/undefined.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/encodings/unicode_escape.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/unicode_escape.py /^ encode = codecs.unicode_escape_encode$/;" v class:Codec +encode Lib/encodings/utf_16.py /^ def encode(self, input, errors='strict'):$/;" m class:StreamWriter +encode Lib/encodings/utf_16.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_16.py /^encode = codecs.utf_16_encode$/;" v +encode Lib/encodings/utf_16_be.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_16_be.py /^ encode = codecs.utf_16_be_encode$/;" v class:StreamWriter +encode Lib/encodings/utf_16_be.py /^encode = codecs.utf_16_be_encode$/;" v +encode Lib/encodings/utf_16_le.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_16_le.py /^ encode = codecs.utf_16_le_encode$/;" v class:StreamWriter +encode Lib/encodings/utf_16_le.py /^encode = codecs.utf_16_le_encode$/;" v +encode Lib/encodings/utf_32.py /^ def encode(self, input, errors='strict'):$/;" m class:StreamWriter +encode Lib/encodings/utf_32.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_32.py /^encode = codecs.utf_32_encode$/;" v +encode Lib/encodings/utf_32_be.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_32_be.py /^ encode = codecs.utf_32_be_encode$/;" v class:StreamWriter +encode Lib/encodings/utf_32_be.py /^encode = codecs.utf_32_be_encode$/;" v +encode Lib/encodings/utf_32_le.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_32_le.py /^ encode = codecs.utf_32_le_encode$/;" v class:StreamWriter +encode Lib/encodings/utf_32_le.py /^encode = codecs.utf_32_le_encode$/;" v +encode Lib/encodings/utf_7.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_7.py /^ encode = codecs.utf_7_encode$/;" v class:StreamWriter +encode Lib/encodings/utf_7.py /^encode = codecs.utf_7_encode$/;" v +encode Lib/encodings/utf_8.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_8.py /^ encode = codecs.utf_8_encode$/;" v class:StreamWriter +encode Lib/encodings/utf_8.py /^encode = codecs.utf_8_encode$/;" v +encode Lib/encodings/utf_8_sig.py /^ def encode(self, input, errors='strict'):$/;" m class:StreamWriter +encode Lib/encodings/utf_8_sig.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/utf_8_sig.py /^def encode(input, errors='strict'):$/;" f +encode Lib/encodings/uu_codec.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/uu_codec.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/encodings/zlib_codec.py /^ def encode(self, input, errors='strict'):$/;" m class:Codec +encode Lib/encodings/zlib_codec.py /^ def encode(self, input, final=False):$/;" m class:IncrementalEncoder +encode Lib/idlelib/iomenu.py /^ def encode(self, chars):$/;" m class:IOBinding +encode Lib/imaplib.py /^ def encode(self, inp):$/;" m class:_Authenticator +encode Lib/json/encoder.py /^ def encode(self, o):$/;" m class:JSONEncoder +encode Lib/os.py /^ def encode(value):$/;" f function:_createenviron +encode Lib/quopri.py /^def encode(input, output, quotetabs, header=False):$/;" f +encode Lib/test/test_codecs.py /^ def encode(self, text, errors="strict"):$/;" m class:LocaleCodecTest +encode Lib/test/testcodec.py /^ def encode(self,input,errors='strict'):$/;" m class:Codec +encode Lib/urllib/parse.py /^ def encode(self, encoding='ascii', errors='strict'):$/;" m class:_ResultMixinStr +encode Lib/uu.py /^def encode(in_file, out_file, name=None, mode=None, *, backtick=False):$/;" f +encode Lib/xmlrpc/client.py /^ def encode(self, out):$/;" m class:Binary +encode Lib/xmlrpc/client.py /^ def encode(self, out):$/;" m class:DateTime +encode Modules/cjkcodecs/multibytecodec.h /^ mbencode_func encode;$/;" m struct:_multibyte_codec +encode Modules/readline.c /^encode(PyObject *b)$/;" f file: +encode1 Lib/test/test_unicode.py /^ def encode1(input, errors="strict"):$/;" f function:search_function +encode2 Lib/test/test_unicode.py /^ def encode2(input, errors="strict"):$/;" f function:search_function +encodePriority Lib/logging/handlers.py /^ def encodePriority(self, facility, priority):$/;" m class:SysLogHandler +encode_7or8bit Lib/email/encoders.py /^def encode_7or8bit(msg):$/;" f +encode_as_ew Lib/email/_header_value_parser.py /^ encode_as_ew = False$/;" v class:Token +encode_ascii Python/fileutils.c /^encode_ascii(const wchar_t *text, char **str,$/;" f file: +encode_b Lib/email/_encoded_words.py /^def encode_b(bstring):$/;" f +encode_base64 Lib/email/encoders.py /^def encode_base64(msg):$/;" f +encode_basestring Lib/json/encoder.py /^encode_basestring = (c_encode_basestring or py_encode_basestring)$/;" v +encode_basestring_ascii Lib/json/encoder.py /^encode_basestring_ascii = ($/;" v +encode_code_page Objects/unicodeobject.c /^encode_code_page(int code_page,$/;" f file: +encode_code_page_errors Objects/unicodeobject.c /^encode_code_page_errors(UINT code_page, PyObject **outbytes,$/;" f file: +encode_code_page_flags Objects/unicodeobject.c /^encode_code_page_flags(UINT code_page, const char *errors)$/;" f file: +encode_code_page_strict Objects/unicodeobject.c /^encode_code_page_strict(UINT code_page, PyObject **outbytes,$/;" f file: +encode_compressed Lib/test/test_zoneinfo/data/update_test_data.py /^def encode_compressed(data: bytes) -> typing.List[str]:$/;" f +encode_current_locale Python/fileutils.c /^encode_current_locale(const wchar_t *text, char **str,$/;" f file: +encode_locale Python/fileutils.c /^encode_locale(const wchar_t *text, size_t *error_pos,$/;" f file: +encode_locale_ex Modules/_testinternalcapi.c /^encode_locale_ex(PyObject *self, PyObject *args)$/;" f file: +encode_locale_ex Python/fileutils.c /^encode_locale_ex(const wchar_t *text, char **str, size_t *error_pos,$/;" f file: +encode_long Lib/pickle.py /^def encode_long(x):$/;" f +encode_map Modules/cjkcodecs/cjkcodecs.h /^typedef struct unim_index encode_map;$/;" t typeref:struct:unim_index +encode_noop Lib/email/encoders.py /^def encode_noop(msg):$/;" f +encode_q Lib/email/_encoded_words.py /^def encode_q(bstring):$/;" f +encode_quopri Lib/email/encoders.py /^def encode_quopri(msg):$/;" f +encode_rfc2231 Lib/email/utils.py /^def encode_rfc2231(s, charset=None, language=None):$/;" f +encode_threshold Lib/xmlrpc/client.py /^ encode_threshold = None #None = don't encode$/;" v class:Transport +encode_threshold Lib/xmlrpc/server.py /^ encode_threshold = 1400 #a common MTU$/;" v class:SimpleXMLRPCRequestHandler +encode_to_str Lib/test/test_codecs.py /^ def encode_to_str(*args, **kwds):$/;" f function:ExceptionNotesTest.test_unflagged_non_text_codec_handling +encode_wstr_utf8 Objects/unicodeobject.c /^encode_wstr_utf8(wchar_t *wstr, char **str, const char *name)$/;" f file: +encodebytes Lib/base64.py /^def encodebytes(s):$/;" f +encoded Lib/test/test_os.py /^ encoded = os.fsencode(os_helper.TESTFN)$/;" v class:OSErrorTests.setUp.Str +encoded Lib/test/test_os.py /^ encoded = os_helper.TESTFN_UNDECODABLE$/;" v class:OSErrorTests.setUp.Str +encoded Lib/test/test_socket.py /^ def encoded(self, path):$/;" m class:TestUnixDomain +encodedtextwrapped Lib/test/test_uu.py /^def encodedtextwrapped(mode, filename, backtick=False):$/;" f +encodefunc Modules/_io/textio.c /^ encodefunc_t encodefunc;$/;" m struct:__anon437 file: +encodefunc Modules/_io/textio.c /^ encodefunc_t encodefunc;$/;" m struct:textio file: +encodefunc_t Modules/_io/textio.c /^ (*encodefunc_t)(PyObject *, PyObject *);$/;" t file: +encodefuncentry Modules/_io/textio.c /^} encodefuncentry;$/;" t typeref:struct:__anon437 file: +encodefuncs Modules/_io/textio.c /^static const encodefuncentry encodefuncs[] = {$/;" v file: +encodekey Lib/os.py /^ def encodekey(key):$/;" f function:_createenviron +encoder Modules/_io/textio.c /^ PyObject *encoder;$/;" m struct:textio file: +encoder Modules/_json.c /^ PyObject *encoder;$/;" m struct:_PyEncoderObject file: +encoder Modules/cjkcodecs/_codecs_iso2022.c /^ iso2022_encode_func encoder;$/;" m struct:iso2022_designation file: +encoder_call Modules/_json.c /^encoder_call(PyEncoderObject *self, PyObject *args, PyObject *kwds)$/;" f file: +encoder_clear Modules/_json.c /^encoder_clear(PyEncoderObject *self)$/;" f file: +encoder_dealloc Modules/_json.c /^encoder_dealloc(PyObject *self)$/;" f file: +encoder_encode_float Modules/_json.c /^encoder_encode_float(PyEncoderObject *s, PyObject *obj)$/;" f file: +encoder_encode_key_value Modules/_json.c /^encoder_encode_key_value(PyEncoderObject *s, _PyUnicodeWriter *writer, bool *first,$/;" f file: +encoder_encode_stateful Modules/cjkcodecs/multibytecodec.c /^encoder_encode_stateful(MultibyteStatefulEncoderContext *ctx,$/;" f file: +encoder_encode_string Modules/_json.c /^encoder_encode_string(PyEncoderObject *s, PyObject *obj)$/;" f file: +encoder_listencode_dict Modules/_json.c /^encoder_listencode_dict(PyEncoderObject *s, _PyUnicodeWriter *writer,$/;" f file: +encoder_listencode_list Modules/_json.c /^encoder_listencode_list(PyEncoderObject *s, _PyUnicodeWriter *writer,$/;" f file: +encoder_listencode_obj Modules/_json.c /^encoder_listencode_obj(PyEncoderObject *s, _PyUnicodeWriter *writer,$/;" f file: +encoder_members Modules/_json.c /^static PyMemberDef encoder_members[] = {$/;" v file: +encoder_new Modules/_json.c /^encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +encoder_slots Modules/cjkcodecs/multibytecodec.c /^static PyType_Slot encoder_slots[] = {$/;" v file: +encoder_spec Modules/cjkcodecs/multibytecodec.c /^static PyType_Spec encoder_spec = {$/;" v file: +encoder_traverse Modules/_json.c /^encoder_traverse(PyEncoderObject *self, visitproc visit, void *arg)$/;" f file: +encoder_type Modules/cjkcodecs/multibytecodec.c /^ PyTypeObject *encoder_type;$/;" m struct:__anon321 file: +encodestring Lib/quopri.py /^def encodestring(s, quotetabs=False, header=False):$/;" f +encoding Include/cpython/pyerrors.h /^ PyObject *encoding;$/;" m struct:__anon184 +encoding Include/internal/pycore_unicodeobject.h /^ char *encoding; \/\/ Filesystem encoding (encoded to UTF-8)$/;" m struct:_Py_unicode_fs_codec +encoding Include/py_curses.h /^ char *encoding;$/;" m struct:__anon271 +encoding Lib/_pyio.py /^ def encoding(self):$/;" m class:StringIO +encoding Lib/_pyio.py /^ def encoding(self):$/;" m class:TextIOBase +encoding Lib/_pyio.py /^ def encoding(self):$/;" m class:TextIOWrapper +encoding Lib/codecs.py /^ encoding = 'unknown'$/;" v class:StreamReaderWriter +encoding Lib/idlelib/iomenu.py /^encoding = 'utf-8'$/;" v +encoding Lib/idlelib/run.py /^ def encoding(self):$/;" m class:StdioFile +encoding Lib/nntplib.py /^ encoding = 'utf-8'$/;" v class:NNTP +encoding Lib/poplib.py /^ encoding = 'UTF-8'$/;" v class:POP3 +encoding Lib/tarfile.py /^ encoding = ENCODING # Encoding for 8-bit character strings.$/;" v class:TarFile +encoding Lib/tempfile.py /^ def encoding(self):$/;" m class:SpooledTemporaryFile +encoding Lib/test/multibytecodec_support.py /^ encoding = '' # codec name$/;" v class:TestBase +encoding Lib/test/support/asynchat.py /^ encoding = 'latin-1'$/;" v class:async_chat +encoding Lib/test/test_codecencodings_cn.py /^ encoding = 'gb18030'$/;" v class:Test_GB18030 +encoding Lib/test/test_codecencodings_cn.py /^ encoding = 'gb2312'$/;" v class:Test_GB2312 +encoding Lib/test/test_codecencodings_cn.py /^ encoding = 'gbk'$/;" v class:Test_GBK +encoding Lib/test/test_codecencodings_cn.py /^ encoding = 'hz'$/;" v class:Test_HZ +encoding Lib/test/test_codecencodings_hk.py /^ encoding = 'big5hkscs'$/;" v class:Test_Big5HKSCS +encoding Lib/test/test_codecencodings_iso2022.py /^ encoding = 'iso2022_jp'$/;" v class:Test_ISO2022_JP +encoding Lib/test/test_codecencodings_iso2022.py /^ encoding = 'iso2022_jp_2'$/;" v class:Test_ISO2022_JP2 +encoding Lib/test/test_codecencodings_iso2022.py /^ encoding = 'iso2022_kr'$/;" v class:Test_ISO2022_KR +encoding Lib/test/test_codecencodings_jp.py /^ encoding = 'cp932'$/;" v class:Test_CP932 +encoding Lib/test/test_codecencodings_jp.py /^ encoding = 'euc_jis_2004'$/;" v class:Test_EUC_JIS_2004 +encoding Lib/test/test_codecencodings_jp.py /^ encoding = 'euc_jisx0213'$/;" v class:Test_EUC_JISX0213 +encoding Lib/test/test_codecencodings_jp.py /^ encoding = 'euc_jp'$/;" v class:Test_EUC_JP_COMPAT +encoding Lib/test/test_codecencodings_jp.py /^ encoding = 'shift_jis'$/;" v class:Test_SJIS_COMPAT +encoding Lib/test/test_codecencodings_jp.py /^ encoding = 'shift_jis_2004'$/;" v class:Test_SJIS_2004 +encoding Lib/test/test_codecencodings_jp.py /^ encoding = 'shift_jisx0213'$/;" v class:Test_SJISX0213 +encoding Lib/test/test_codecencodings_kr.py /^ encoding = 'cp949'$/;" v class:Test_CP949 +encoding Lib/test/test_codecencodings_kr.py /^ encoding = 'euc_kr'$/;" v class:Test_EUCKR +encoding Lib/test/test_codecencodings_kr.py /^ encoding = 'johab'$/;" v class:Test_JOHAB +encoding Lib/test/test_codecencodings_tw.py /^ encoding = 'big5'$/;" v class:Test_Big5 +encoding Lib/test/test_codecmaps_cn.py /^ encoding = 'gb18030'$/;" v class:TestGB18030Map +encoding Lib/test/test_codecmaps_cn.py /^ encoding = 'gb2312'$/;" v class:TestGB2312Map +encoding Lib/test/test_codecmaps_cn.py /^ encoding = 'gbk'$/;" v class:TestGBKMap +encoding Lib/test/test_codecmaps_hk.py /^ encoding = 'big5hkscs'$/;" v class:TestBig5HKSCSMap +encoding Lib/test/test_codecmaps_jp.py /^ encoding = 'cp932'$/;" v class:TestCP932Map +encoding Lib/test/test_codecmaps_jp.py /^ encoding = 'euc_jisx0213'$/;" v class:TestEUCJISX0213Map +encoding Lib/test/test_codecmaps_jp.py /^ encoding = 'euc_jp'$/;" v class:TestEUCJPCOMPATMap +encoding Lib/test/test_codecmaps_jp.py /^ encoding = 'shift_jis'$/;" v class:TestSJISCOMPATMap +encoding Lib/test/test_codecmaps_jp.py /^ encoding = 'shift_jisx0213'$/;" v class:TestSJISX0213Map +encoding Lib/test/test_codecmaps_kr.py /^ encoding = 'cp949'$/;" v class:TestCP949Map +encoding Lib/test/test_codecmaps_kr.py /^ encoding = 'euc_kr'$/;" v class:TestEUCKRMap +encoding Lib/test/test_codecmaps_kr.py /^ encoding = 'johab'$/;" v class:TestJOHABMap +encoding Lib/test/test_codecmaps_tw.py /^ encoding = 'big5'$/;" v class:TestBIG5Map +encoding Lib/test/test_codecmaps_tw.py /^ encoding = 'cp950'$/;" v class:TestCP950Map +encoding Lib/test/test_codecs.py /^ encoding = "raw-unicode-escape"$/;" v class:RawUnicodeEscapeTest +encoding Lib/test/test_codecs.py /^ encoding = "unicode-escape"$/;" v class:UnicodeEscapeTest +encoding Lib/test/test_codecs.py /^ encoding = "utf-16"$/;" v class:UTF16Test +encoding Lib/test/test_codecs.py /^ encoding = "utf-16-be"$/;" v class:UTF16BETest +encoding Lib/test/test_codecs.py /^ encoding = "utf-16-le"$/;" v class:UTF16LETest +encoding Lib/test/test_codecs.py /^ encoding = "utf-32"$/;" v class:UTF32Test +encoding Lib/test/test_codecs.py /^ encoding = "utf-32-be"$/;" v class:UTF32BETest +encoding Lib/test/test_codecs.py /^ encoding = "utf-32-le"$/;" v class:UTF32LETest +encoding Lib/test/test_codecs.py /^ encoding = "utf-7"$/;" v class:UTF7Test +encoding Lib/test/test_codecs.py /^ encoding = "utf-8"$/;" v class:UTF8Test +encoding Lib/test/test_codecs.py /^ encoding = "utf-8-sig"$/;" v class:UTF8SigTest +encoding Lib/test/test_multibytecodec.py /^ encoding = 'hz'$/;" v class:TestHZStateful +encoding Lib/test/test_multibytecodec.py /^ encoding = 'iso-2022-jp'$/;" v class:TestStateful +encoding Lib/test/test_socket.py /^ encoding = 'utf-8'$/;" v class:FileObjectClassTestCase +encoding Lib/typing.py /^ def encoding(self) -> str:$/;" m class:TextIO +encoding Lib/xml/dom/minidom.py /^ encoding = None$/;" v class:Document +encoding Lib/xml/dom/minidom.py /^ encoding = None$/;" v class:Entity +encoding Modules/_io/textio.c /^ PyObject *encoding;$/;" m struct:textio file: +encoding Modules/_pickle.c /^ char *encoding; \/* Name of the encoding to be used for$/;" m struct:UnpicklerObject file: +encoding Modules/cjkcodecs/multibytecodec.h /^ const char *encoding;$/;" m struct:_multibyte_codec +encoding Modules/expat/expat.h /^XML_ParserCreate(const XML_Char *encoding);$/;" v +encoding Modules/expat/xmltok.c /^ const ENCODING **encoding, int *standalone) {$/;" v file: +encoding Modules/expat/xmltok.h /^struct encoding {$/;" s +encoding Parser/tokenizer.h /^ char *encoding; \/* Source encoding. *\/$/;" m struct:tok_state +encodingName Modules/expat/xmltok.c /^ const char **versionEndPtr, const char **encodingName,$/;" v file: +encoding_map Lib/encodings/cp1125.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp437.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp737.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp775.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp850.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp852.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp855.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp857.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp858.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp860.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp861.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp862.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp863.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp864.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp865.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp866.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/cp869.py /^encoding_map = {$/;" v +encoding_map Lib/encodings/mac_arabic.py /^encoding_map = {$/;" v +encoding_map Lib/test/testcodec.py /^encoding_map = {}$/;" v +encoding_map Objects/unicodeobject.c /^struct encoding_map {$/;" s file: +encoding_map_lookup Objects/unicodeobject.c /^encoding_map_lookup(Py_UCS4 c, PyObject *mapping)$/;" f file: +encoding_map_methods Objects/unicodeobject.c /^static PyMethodDef encoding_map_methods[] = {$/;" v file: +encoding_start_of_stream Modules/_io/textio.c /^ char encoding_start_of_stream;$/;" m struct:textio file: +encoding_table Lib/encodings/cp037.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1006.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1026.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1140.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1250.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1251.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1252.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1253.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1254.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1255.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1256.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1257.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp1258.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp273.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp424.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp500.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp720.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp856.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp874.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/cp875.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/hp_roman8.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_1.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_10.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_11.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_13.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_14.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_15.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_16.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_2.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_3.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_4.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_5.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_6.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_7.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_8.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/iso8859_9.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/koi8_r.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/koi8_t.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/koi8_u.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/kz1048.py /^encoding_table = codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_croatian.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_cyrillic.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_farsi.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_greek.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_iceland.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_latin2.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_roman.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_romanian.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/mac_turkish.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/palmos.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/ptcp154.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encoding_table Lib/encodings/tis_620.py /^encoding_table=codecs.charmap_build(decoding_table)$/;" v +encreset Modules/cjkcodecs/multibytecodec.h /^ mbencodereset_func encreset;$/;" m struct:_multibyte_codec +end Doc/make.bat /^:end$/;" l +end Include/cpython/pyerrors.h /^ Py_ssize_t end;$/;" m struct:__anon184 +end Lib/test/test_xml_etree.py /^ def end(self, tag):$/;" m class:ElementTreeTest.test_custom_builder.Builder +end Lib/xml/etree/ElementTree.py /^ def end(self, tag):$/;" m class:C14NWriterTarget +end Lib/xml/etree/ElementTree.py /^ def end(self, tag):$/;" m class:TreeBuilder +end Lib/xmlrpc/client.py /^ def end(self, tag):$/;" m class:Unmarshaller +end Modules/_sre/sre.h /^ const void* end; \/* end of original string *\/$/;" m struct:__anon458 +end Modules/_xxinterpchannelsmodule.c /^ int end;$/;" m struct:_channelid_xid file: +end Modules/_xxinterpchannelsmodule.c /^ int end;$/;" m struct:channelid file: +end Modules/_zoneinfo.c /^ TransitionRuleType *end;$/;" m struct:__anon637 file: +end Modules/expat/xmlparse.c /^ NAMED **end;$/;" m struct:__anon609 file: +end Modules/expat/xmlparse.c /^ const XML_Char *end;$/;" m struct:__anon613 file: +end Modules/expat/xmltok.c /^ const char *end, const char **badPtr, const char **versionPtr,$/;" v file: +end Objects/stringlib/unicode_format.h /^ Py_ssize_t start, end;$/;" m struct:__anon703 +end PCbuild/get_externals.bat /^:end$/;" l +end Parser/tokenizer.h /^ const char *end; \/* End of input buffer if buf != NULL *\/$/;" m struct:tok_state +end Parser/tokenizer.h /^ const char *start, *end;$/;" m struct:token +end Python/compile.c /^ jump_target_label end;$/;" m struct:__anon673 file: +end Python/marshal.c /^ const char *end;$/;" m struct:__anon699 file: +end Python/marshal.c /^ const char *end;$/;" m struct:__anon700 file: +end Tools/c-analyzer/c_parser/parser/_info.py /^ def end(self):$/;" m class:SourceInfo +end Tools/msi/get_externals.bat /^:end$/;" l +end Tools/unicode/mkstringprep.py /^ end = int(end, 16)$/;" v +endCDATA Lib/test/test_sax.py /^ def endCDATA(self):$/;" m class:CDATAHandlerTest.test_handlers.TestLexicalHandler +endCDATA Lib/xml/sax/handler.py /^ def endCDATA(self):$/;" m class:LexicalHandler +endDTD Lib/test/test_sax.py /^ def endDTD(self):$/;" m class:LexicalHandlerTest.test_handlers.TestLexicalHandler +endDTD Lib/xml/sax/handler.py /^ def endDTD(self):$/;" m class:LexicalHandler +endDocument Lib/xml/dom/pulldom.py /^ def endDocument(self):$/;" m class:PullDOM +endDocument Lib/xml/sax/handler.py /^ def endDocument(self):$/;" m class:ContentHandler +endDocument Lib/xml/sax/saxutils.py /^ def endDocument(self):$/;" m class:XMLFilterBase +endDocument Lib/xml/sax/saxutils.py /^ def endDocument(self):$/;" m class:XMLGenerator +endElement Lib/xml/dom/pulldom.py /^ def endElement(self, name):$/;" m class:PullDOM +endElement Lib/xml/sax/handler.py /^ def endElement(self, name):$/;" m class:ContentHandler +endElement Lib/xml/sax/saxutils.py /^ def endElement(self, name):$/;" m class:XMLFilterBase +endElement Lib/xml/sax/saxutils.py /^ def endElement(self, name):$/;" m class:XMLGenerator +endElementNS Lib/xml/dom/pulldom.py /^ def endElementNS(self, name, tagName):$/;" m class:PullDOM +endElementNS Lib/xml/sax/handler.py /^ def endElementNS(self, name, qname):$/;" m class:ContentHandler +endElementNS Lib/xml/sax/saxutils.py /^ def endElementNS(self, name, qname):$/;" m class:XMLFilterBase +endElementNS Lib/xml/sax/saxutils.py /^ def endElementNS(self, name, qname):$/;" m class:XMLGenerator +endPrefixMapping Lib/xml/dom/pulldom.py /^ def endPrefixMapping(self, prefix):$/;" m class:PullDOM +endPrefixMapping Lib/xml/sax/handler.py /^ def endPrefixMapping(self, prefix):$/;" m class:ContentHandler +endPrefixMapping Lib/xml/sax/saxutils.py /^ def endPrefixMapping(self, prefix):$/;" m class:XMLFilterBase +endPrefixMapping Lib/xml/sax/saxutils.py /^ def endPrefixMapping(self, prefix):$/;" m class:XMLGenerator +end_array Lib/plistlib.py /^ def end_array(self):$/;" m class:_PlistParser +end_array Lib/xmlrpc/client.py /^ def end_array(self, data):$/;" m class:Unmarshaller +end_base64 Lib/xmlrpc/client.py /^ def end_base64(self, data):$/;" m class:Unmarshaller +end_bigdecimal Lib/xmlrpc/client.py /^ def end_bigdecimal(self, data):$/;" m class:Unmarshaller +end_boolean Lib/xmlrpc/client.py /^ def end_boolean(self, data):$/;" m class:Unmarshaller +end_calc Modules/_decimal/tests/bench.py /^ end_calc = time.time()$/;" v +end_calc Modules/_decimal/tests/bench.py /^ end_calc = time.time()$/;" v +end_cdata_section_handler Lib/xml/dom/expatbuilder.py /^ def end_cdata_section_handler(self):$/;" m class:ExpatBuilder +end_col_offset Include/cpython/compile.h /^ int end_col_offset;$/;" m struct:__anon206 +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_alias +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_arg +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_excepthandler +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_expr +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_keyword +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_pattern +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_stmt +end_col_offset Include/internal/pycore_ast.h /^ int end_col_offset;$/;" m struct:_type_param +end_col_offset Include/internal/pycore_ast_state.h /^ PyObject *end_col_offset;$/;" m struct:ast_state +end_col_offset Parser/pegen.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:__anon653 +end_col_offset Parser/tokenizer.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:token +end_column Tools/cases_generator/lexer.py /^ def end_column(self):$/;" m class:Token +end_conv Modules/_decimal/tests/bench.py /^ end_conv = time.time()$/;" v +end_conv Modules/_decimal/tests/bench.py /^ end_conv = time.time()$/;" v +end_data Lib/plistlib.py /^ def end_data(self):$/;" m class:_PlistParser +end_date Lib/plistlib.py /^ def end_date(self):$/;" m class:_PlistParser +end_dateTime Lib/xmlrpc/client.py /^ def end_dateTime(self, data):$/;" m class:Unmarshaller +end_dict Lib/plistlib.py /^ def end_dict(self):$/;" m class:_PlistParser +end_dispatch Lib/xmlrpc/client.py /^ def end_dispatch(self, tag, data):$/;" m class:Unmarshaller +end_doctype_decl_handler Lib/xml/dom/expatbuilder.py /^ def end_doctype_decl_handler(self):$/;" m class:ExpatBuilder +end_doctype_decl_handler Lib/xml/dom/expatbuilder.py /^ def end_doctype_decl_handler(self):$/;" m class:InternalSubsetExtractor +end_double Lib/xmlrpc/client.py /^ def end_double(self, data):$/;" m class:Unmarshaller +end_element Lib/plistlib.py /^ def end_element(self, element):$/;" m class:_DumbXMLWriter +end_element Lib/xml/sax/expatreader.py /^ def end_element(self, name):$/;" m class:ExpatParser +end_element_handler Lib/xml/dom/expatbuilder.py /^ def end_element_handler(self, name):$/;" f function:Namespaces.start_element_handler +end_element_handler Lib/xml/dom/expatbuilder.py /^ def end_element_handler(self, *args):$/;" m class:Rejecter +end_element_handler Lib/xml/dom/expatbuilder.py /^ def end_element_handler(self, *args):$/;" m class:Skipper +end_element_handler Lib/xml/dom/expatbuilder.py /^ def end_element_handler(self, name):$/;" m class:ExpatBuilder +end_element_ns Lib/xml/sax/expatreader.py /^ def end_element_ns(self, name):$/;" m class:ExpatParser +end_event_obj Modules/_elementtree.c /^ PyObject *end_event_obj;$/;" m struct:__anon385 file: +end_false Lib/plistlib.py /^ def end_false(self):$/;" m class:_PlistParser +end_fault Lib/xmlrpc/client.py /^ def end_fault(self, data):$/;" m class:Unmarshaller +end_fill Lib/turtle.py /^ def end_fill(self):$/;" m class:RawTurtle +end_framing Lib/pickle.py /^ def end_framing(self):$/;" m class:_Framer +end_headers Lib/http/server.py /^ def end_headers(self):$/;" m class:BaseHTTPRequestHandler +end_headers Tools/wasm/wasm_webserver.py /^ def end_headers(self):$/;" m class:MyHTTPRequestHandler +end_int Lib/xmlrpc/client.py /^ def end_int(self, data):$/;" m class:Unmarshaller +end_integer Lib/plistlib.py /^ def end_integer(self):$/;" m class:_PlistParser +end_key Lib/plistlib.py /^ def end_key(self):$/;" m class:_PlistParser +end_line Tools/cases_generator/lexer.py /^ def end_line(self):$/;" m class:Token +end_lineno Include/cpython/compile.h /^ int end_lineno;$/;" m struct:__anon206 +end_lineno Include/cpython/pyerrors.h /^ PyObject *end_lineno;$/;" m struct:__anon182 +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_alias +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_arg +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_excepthandler +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_expr +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_keyword +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_pattern +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_stmt +end_lineno Include/internal/pycore_ast.h /^ int end_lineno;$/;" m struct:_type_param +end_lineno Include/internal/pycore_ast_state.h /^ PyObject *end_lineno;$/;" m struct:ast_state +end_lineno Parser/pegen.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:__anon653 +end_lineno Parser/tokenizer.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:token +end_methodName Lib/xmlrpc/client.py /^ def end_methodName(self, data):$/;" m class:Unmarshaller +end_namespace_decl Lib/xml/sax/expatreader.py /^ def end_namespace_decl(self, prefix):$/;" m class:ExpatParser +end_nil Lib/xmlrpc/client.py /^ def end_nil (self, data):$/;" m class:Unmarshaller +end_ns Lib/test/test_xml_etree.py /^ def end_ns(self, prefix):$/;" m class:ElementTreeTest.test_custom_builder.Builder +end_ns Lib/test/test_xml_etree.py /^ def end_ns(self, prefix):$/;" m class:ElementTreeTest.test_custom_builder_only_end_ns.Builder +end_ns_event_obj Modules/_elementtree.c /^ PyObject *end_ns_event_obj;$/;" m struct:__anon385 file: +end_offset Include/cpython/pyerrors.h /^ PyObject *end_offset;$/;" m struct:__anon182 +end_params Lib/xmlrpc/client.py /^ def end_params(self, data):$/;" m class:Unmarshaller +end_poly Lib/turtle.py /^ def end_poly(self):$/;" m class:RawTurtle +end_real Lib/plistlib.py /^ def end_real(self):$/;" m class:_PlistParser +end_section Lib/argparse.py /^ def end_section(self):$/;" m class:HelpFormatter +end_spawned_pthread Modules/_testcapimodule.c /^end_spawned_pthread(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +end_string Lib/plistlib.py /^ def end_string(self):$/;" m class:_PlistParser +end_string Lib/xmlrpc/client.py /^ def end_string(self, data):$/;" m class:Unmarshaller +end_struct Lib/xmlrpc/client.py /^ def end_struct(self, data):$/;" m class:Unmarshaller +end_true Lib/plistlib.py /^ def end_true(self):$/;" m class:_PlistParser +end_value Lib/xmlrpc/client.py /^ def end_value(self, data):$/;" m class:Unmarshaller +enddate Lib/test/make_ssl_certs.py /^enddate = "20371028142316Z"$/;" v +endendtag Lib/html/parser.py /^endendtag = re.compile('>')$/;" v +endexecuting Lib/idlelib/pyshell.py /^ def endexecuting(self):$/;" m class:PyShell +endheaders Lib/http/client.py /^ def endheaders(self, message_body=None, *, encode_chunked=False):$/;" m class:HTTPConnection +endian_types Lib/test/test_ctypes/test_pep3118.py /^endian_types = [$/;" v +endidx Modules/readline.c /^ PyObject *endidx;$/;" m struct:__anon339 file: +endoffile Lib/idlelib/pyshell.py /^ endoffile = False$/;" v class:PyShell +endpats Lib/tokenize.py /^endpats = {}$/;" v +endpos Modules/_sre/sre.h /^ Py_ssize_t pos, endpos; \/* current target slice *\/$/;" m struct:__anon455 +endpos Modules/_sre/sre.h /^ Py_ssize_t pos, endpos;$/;" m struct:__anon458 +endprogs Lib/lib2to3/pgen2/tokenize.py /^endprogs = {"'": re.compile(Single), '"': re.compile(Double),$/;" v +ends Modules/_xxinterpchannelsmodule.c /^ _channelends *ends;$/;" m struct:_channel file: +endswith Lib/collections/__init__.py /^ def endswith(self, suffix, start=0, end=_sys.maxsize):$/;" m class:UserString +endswith_multiple Tools/stringbench/stringbench.py /^def endswith_multiple(STR):$/;" f +endswith_multiple_not Tools/stringbench/stringbench.py /^def endswith_multiple_not(STR):$/;" f +endswith_single Tools/stringbench/stringbench.py /^def endswith_single(STR):$/;" f +endtagfind Lib/html/parser.py /^endtagfind = re.compile(r'<\/\\s*([a-zA-Z][-.a-zA-Z0-9:_]*)\\s*>')$/;" v +endtransfer Lib/urllib/request.py /^ def endtransfer(self):$/;" m class:ftpwrapper +engine Lib/idlelib/idle_test/test_grep.py /^ engine = searchengine$/;" v class:Dummy_grep +engine_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class engine_st(Structure):$/;" c +enqueue Lib/logging/handlers.py /^ def enqueue(self, record):$/;" m class:QueueHandler +enqueue_sentinel Lib/logging/handlers.py /^ def enqueue_sentinel(self):$/;" m class:QueueListener +ensure_ascii Lib/json/__init__.py /^ ensure_ascii=True,$/;" v +ensure_bytecode_path Lib/test/test_importlib/util.py /^def ensure_bytecode_path(bytecode_path):$/;" f +ensure_decimal_point Python/pystrtod.c /^ensure_decimal_point(char* buffer, size_t buf_size, int precision)$/;" f +ensure_directories Lib/venv/__init__.py /^ def ensure_directories(self, env_dir):$/;" m class:EnvBuilder +ensure_fail_pop Python/compile.c /^ensure_fail_pop(struct compiler *c, pattern_context *pc, Py_ssize_t n)$/;" f file: +ensure_fromlist Lib/modulefinder.py /^ def ensure_fromlist(self, m, fromlist, recursive=0):$/;" m class:ModuleFinder +ensure_future Lib/asyncio/tasks.py /^def ensure_future(coro_or_future, *, loop=None):$/;" f +ensure_legal_c_identifier Tools/clinic/clinic.py /^def ensure_legal_c_identifier(s: str) -> str:$/;" f +ensure_literal_complex Python/ast.c /^ensure_literal_complex(expr_ty exp)$/;" f file: +ensure_literal_negative Python/ast.c /^ensure_literal_negative(expr_ty exp, bool allow_real, bool allow_imaginary)$/;" f file: +ensure_literal_number Python/ast.c /^ensure_literal_number(expr_ty exp, bool allow_real, bool allow_imaginary)$/;" f file: +ensure_minimum_exponent_length Python/pystrtod.c /^ensure_minimum_exponent_length(char* buffer, size_t buf_size)$/;" f +ensure_opt Tools/freeze/test/freeze.py /^def ensure_opt(args, name, value):$/;" f +ensure_running Lib/multiprocessing/forkserver.py /^ def ensure_running(self):$/;" m class:ForkServer +ensure_running Lib/multiprocessing/forkserver.py /^ensure_running = _forkserver.ensure_running$/;" v +ensure_running Lib/multiprocessing/resource_tracker.py /^ def ensure_running(self):$/;" m class:ResourceTracker +ensure_running Lib/multiprocessing/resource_tracker.py /^ensure_running = _resource_tracker.ensure_running$/;" v +ensure_ticks_per_second Modules/timemodule.c /^ensure_ticks_per_second(void)$/;" f file: +ensure_unicode Objects/unicodeobject.c /^ensure_unicode(PyObject *obj)$/;" f file: +ensure_utf8 Parser/tokenizer.c /^ensure_utf8(char *line, struct tok_state *tok)$/;" f file: +ensure_value Lib/optparse.py /^ def ensure_value(self, attr, value):$/;" m class:Values +enter Lib/sched.py /^ def enter(self, delay, priority, action, argument=(), kwargs=_sentinel):$/;" m class:scheduler +enter Lib/test/test_thread.py /^ def enter(self):$/;" m class:Barrier +enterAsyncContext Lib/unittest/async_case.py /^ async def enterAsyncContext(self, cm):$/;" m class:IsolatedAsyncioTestCase +enterClassContext Lib/unittest/case.py /^ def enterClassContext(cls, cm):$/;" m class:TestCase +enterContext Lib/unittest/case.py /^ def enterContext(self, cm):$/;" m class:TestCase +enterModuleContext Lib/unittest/case.py /^def enterModuleContext(cm):$/;" f +enter_async_context Lib/contextlib.py /^ async def enter_async_context(self, cm):$/;" m class:AsyncExitStack +enter_callback Lib/idlelib/pyshell.py /^ def enter_callback(self, event):$/;" m class:PyShell +enter_context Lib/contextlib.py /^ def enter_context(self, cm):$/;" m class:_BaseExitStack +enter_coroutine Lib/test/test_unittest/testmock/testasync.py /^ async def enter_coroutine(*args):$/;" f function:AsyncContextManagerTest.test_mock_customize_async_context_manager_with_coroutine +enter_task Modules/_asynciomodule.c /^enter_task(asyncio_state *state, PyObject *loop, PyObject *task)$/;" f file: +enterabs Lib/sched.py /^ def enterabs(self, time, priority, action, argument=(), kwargs=_sentinel):$/;" m class:scheduler +entities Lib/xml/dom/xmlbuilder.py /^ entities = True$/;" v class:Options +entity Modules/_elementtree.c /^ PyObject *entity;$/;" m struct:__anon386 file: +entity Modules/expat/xmlparse.c /^ ENTITY *entity;$/;" m struct:open_internal_entity file: +entity0 Modules/expat/xmlrole.c /^ doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,$/;" v file: +entity0 Modules/expat/xmlrole.c /^entity0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity1 Modules/expat/xmlrole.c /^ doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,$/;" v file: +entity1 Modules/expat/xmlrole.c /^entity1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity10 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity10 Modules/expat/xmlrole.c /^entity10(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity2 Modules/expat/xmlrole.c /^ doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,$/;" v file: +entity2 Modules/expat/xmlrole.c /^entity2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity3 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity3 Modules/expat/xmlrole.c /^entity3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity4 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity4 Modules/expat/xmlrole.c /^entity4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity5 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity5 Modules/expat/xmlrole.c /^entity5(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity6 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity6 Modules/expat/xmlrole.c /^entity6(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity7 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity7 Modules/expat/xmlrole.c /^entity7(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity8 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity8 Modules/expat/xmlrole.c /^entity8(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entity9 Modules/expat/xmlrole.c /^ entity3, entity4, entity5, entity6, entity7, entity8, entity9, entity10,$/;" v file: +entity9 Modules/expat/xmlrole.c /^entity9(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +entityResolver Lib/xml/dom/xmlbuilder.py /^ entityResolver = None$/;" v class:DOMBuilder +entityTrackingOnClose Modules/expat/xmlparse.c /^entityTrackingOnClose(XML_Parser originParser, ENTITY *entity, int sourceLine) {$/;" f file: +entityTrackingOnOpen Modules/expat/xmlparse.c /^entityTrackingOnOpen(XML_Parser originParser, ENTITY *entity, int sourceLine) {$/;" f file: +entityTrackingReportStats Modules/expat/xmlparse.c /^entityTrackingReportStats(XML_Parser rootParser, ENTITY *entity,$/;" f file: +entityValueInitProcessor Modules/expat/xmlparse.c /^entityValueInitProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +entityValueInitProcessor Modules/expat/xmlparse.c /^static Processor entityValueInitProcessor;$/;" v file: +entityValuePool Modules/expat/xmlparse.c /^ STRING_POOL entityValuePool;$/;" m struct:__anon617 file: +entityValueProcessor Modules/expat/xmlparse.c /^entityValueProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +entityValueProcessor Modules/expat/xmlparse.c /^static Processor entityValueProcessor;$/;" v file: +entityValueTok Modules/expat/xmltok_impl.c /^PREFIX(entityValueTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +entity_decl_handler Lib/xml/dom/expatbuilder.py /^ def entity_decl_handler(self, entityName, is_parameter_entity, value,$/;" m class:ExpatBuilder +entity_stats Modules/expat/xmlparse.c /^typedef struct entity_stats {$/;" s file: +entitydefs Lib/html/entities.py /^entitydefs = {}$/;" v +entityref Lib/html/parser.py /^entityref = re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]')$/;" v +entries Python/getargs.c /^ freelistentry_t *entries;$/;" m struct:__anon695 file: +entries_malloced Python/getargs.c /^ int entries_malloced;$/;" m struct:__anon695 file: +entry_error Lib/idlelib/idle_test/test_query.py /^ entry_error = {}$/;" v class:CustomRunEntryokTest.Dummy_CustomRun +entry_error Lib/idlelib/idle_test/test_query.py /^ entry_error = {}$/;" v class:HelpsourceEntryokTest.Dummy_HelpSource +entry_ok Lib/idlelib/idle_test/test_query.py /^ entry_ok = query.CustomRun.entry_ok$/;" v class:CustomRunEntryokTest.Dummy_CustomRun +entry_ok Lib/idlelib/idle_test/test_query.py /^ entry_ok = query.Goto.entry_ok # Function being tested.$/;" v class:GotoTest.Dummy_ModuleName +entry_ok Lib/idlelib/idle_test/test_query.py /^ entry_ok = query.HelpSource.entry_ok$/;" v class:HelpsourceEntryokTest.Dummy_HelpSource +entry_ok Lib/idlelib/idle_test/test_query.py /^ entry_ok = query.ModuleName.entry_ok # Function being tested.$/;" v class:ModuleNameTest.Dummy_ModuleName +entry_ok Lib/idlelib/idle_test/test_query.py /^ entry_ok = query.Query.entry_ok$/;" v class:QueryTest.Dummy_Query +entry_ok Lib/idlelib/idle_test/test_query.py /^ entry_ok = query.SectionName.entry_ok # Function being tested.$/;" v class:SectionNameTest.Dummy_SectionName +entry_ok Lib/idlelib/query.py /^ def entry_ok(self): # Example: usually replace.$/;" m class:Query +entry_ok Lib/idlelib/query.py /^ def entry_ok(self):$/;" m class:CustomRun +entry_ok Lib/idlelib/query.py /^ def entry_ok(self):$/;" m class:Goto +entry_ok Lib/idlelib/query.py /^ def entry_ok(self):$/;" m class:HelpSource +entry_ok Lib/idlelib/query.py /^ def entry_ok(self):$/;" m class:ModuleName +entry_ok Lib/idlelib/query.py /^ def entry_ok(self):$/;" m class:SectionName +entry_points Lib/importlib/metadata/__init__.py /^ def entry_points(self):$/;" m class:Distribution +entry_points Lib/importlib/metadata/__init__.py /^def entry_points(**params) -> EntryPoints:$/;" f +entrycget Lib/tkinter/__init__.py /^ def entrycget(self, index, option):$/;" m class:Menu +entrycget Lib/tkinter/tix.py /^ def entrycget(self, entry, opt):$/;" m class:HList +entrycget Lib/tkinter/tix.py /^ def entrycget(self, x, y, option):$/;" m class:Grid +entryconfig Lib/tkinter/__init__.py /^ entryconfig = entryconfigure$/;" v class:Menu +entryconfigure Lib/tkinter/__init__.py /^ def entryconfigure(self, index, cnf=None, **kw):$/;" m class:Menu +entryconfigure Lib/tkinter/tix.py /^ def entryconfigure(self, entry, cnf={}, **kw):$/;" m class:HList +entryconfigure Lib/tkinter/tix.py /^ def entryconfigure(self, x, y, cnf=None, **kw):$/;" m class:Grid +enum Lib/test/test_enumerate.py /^ def enum(self, iterable, start=11):$/;" m class:TestStart +enum Lib/test/test_enumerate.py /^ def enum(self, iterable, start=sys.maxsize + 1):$/;" m class:TestLongStart +enum Lib/test/test_enumerate.py /^ enum = MyEnum$/;" v class:SubclassTestCase +enum Lib/test/test_enumerate.py /^ enum = enumerate$/;" v class:EnumerateTestCase +enum_dealloc Objects/enumobject.c /^enum_dealloc(enumobject *en)$/;" f file: +enum_dir Lib/test/test_enum.py /^def enum_dir(cls):$/;" f +enum_keys Lib/test/test_launcher.py /^def enum_keys(root):$/;" f +enum_methods Objects/enumobject.c /^static PyMethodDef enum_methods[] = {$/;" v file: +enum_new Objects/clinic/enumobject.c.h /^enum_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +enum_new_impl Objects/enumobject.c /^enum_new_impl(PyTypeObject *type, PyObject *iterable, PyObject *start)$/;" f file: +enum_next Objects/enumobject.c /^enum_next(enumobject *en)$/;" f file: +enum_next_long Objects/enumobject.c /^enum_next_long(enumobject *en, PyObject* next_item)$/;" f file: +enum_reduce Objects/enumobject.c /^enum_reduce(enumobject *en, PyObject *Py_UNUSED(ignored))$/;" f file: +enum_traverse Objects/enumobject.c /^enum_traverse(enumobject *en, visitproc visit, void *arg)$/;" f file: +enum_type Lib/test/test_enum.py /^ class enum_type(date, Enum):$/;" c class:TestMixedDateClass +enum_type Lib/test/test_enum.py /^ class enum_type(date, ReprEnum):$/;" c class:TestMinimalDateClass +enum_type Lib/test/test_enum.py /^ class enum_type(float, Enum):$/;" c class:TestMixedFloatClass +enum_type Lib/test/test_enum.py /^ class enum_type(float, ReprEnum):$/;" c class:TestMinimalFloatClass +enum_type Lib/test/test_enum.py /^ class enum_type(int, Enum): pass$/;" c class:TestMixedIntClass +enum_type Lib/test/test_enum.py /^ class enum_type(int, Flag): pass$/;" c class:TestMixedIntFlagClass +enum_type Lib/test/test_enum.py /^ class enum_type(str, Enum): pass$/;" c class:TestMixedStrClass +enum_type Lib/test/test_enum.py /^ enum_type = Enum$/;" v class:TestPlainEnumClass +enum_type Lib/test/test_enum.py /^ enum_type = Enum$/;" v class:TestPlainEnumFunction +enum_type Lib/test/test_enum.py /^ enum_type = Enum('enum_type', type=int)$/;" v class:TestMixedIntFunction +enum_type Lib/test/test_enum.py /^ enum_type = Enum('enum_type', type=str)$/;" v class:TestMixedStrFunction +enum_type Lib/test/test_enum.py /^ enum_type = Enum('enum_type', {'_generate_next_value_':_generate_next_value_}, type=date)$/;" v class:TestMixedDateFunction +enum_type Lib/test/test_enum.py /^ enum_type = Enum('enum_type', {'_generate_next_value_':_generate_next_value_}, type=float)$/;" v class:TestMixedFloatFunction +enum_type Lib/test/test_enum.py /^ enum_type = Flag$/;" v class:TestPlainFlagClass +enum_type Lib/test/test_enum.py /^ enum_type = Flag$/;" v class:TestPlainFlagFunction +enum_type Lib/test/test_enum.py /^ enum_type = Flag('enum_type', type=int)$/;" v class:TestMixedIntFlagFunction +enum_type Lib/test/test_enum.py /^ enum_type = IntEnum$/;" v class:TestIntEnumClass +enum_type Lib/test/test_enum.py /^ enum_type = IntEnum$/;" v class:TestIntEnumFunction +enum_type Lib/test/test_enum.py /^ enum_type = IntFlag$/;" v class:TestIntFlagClass +enum_type Lib/test/test_enum.py /^ enum_type = IntFlag$/;" v class:TestIntFlagFunction +enum_type Lib/test/test_enum.py /^ enum_type = ReprEnum('enum_type', {'_generate_next_value_':_generate_next_value_}, type=date)$/;" v class:TestMinimalDateFunction +enum_type Lib/test/test_enum.py /^ enum_type = ReprEnum('enum_type', {'_generate_next_value_':_generate_next_value_}, type=float)$/;" v class:TestMinimalFloatFunction +enum_type Lib/test/test_enum.py /^ enum_type = StrEnum$/;" v class:TestStrEnumClass +enum_type Lib/test/test_enum.py /^ enum_type = StrEnum$/;" v class:TestStrEnumFunction +enum_types Lib/mimetypes.py /^ def enum_types(mimedb):$/;" f function:MimeTypes._read_windows_registry +enumerate Lib/threading.py /^def enumerate():$/;" f +enumerate_vectorcall Objects/enumobject.c /^enumerate_vectorcall(PyObject *type, PyObject *const *args,$/;" f file: +enumerators Tools/c-analyzer/c_parser/info.py /^ def enumerators(self):$/;" m class:Enum +enumobject Objects/enumobject.c /^} enumobject;$/;" t typeref:struct:__anon727 file: +env_md_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class env_md_ctx_st(Structure):$/;" c +env_md_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class env_md_st(Structure):$/;" c +env_to_dict Modules/getpath.c /^env_to_dict(PyObject *dict, const char *key, int and_clear)$/;" f file: +environ Lib/os.py /^environ = _createenviron()$/;" v +environ Tools/wasm/wasm_build.py /^ environ={$/;" v +environment_altered Lib/test/support/__init__.py /^environment_altered = False$/;" v +eof Lib/idlelib/pyshell.py /^ eof = 'Ctrl-D (end-of-file)'$/;" v +eof Lib/idlelib/run.py /^ eof = 'Ctrl-D (end-of-file)'$/;" v +eof Modules/_bz2module.c /^ char eof; \/* T_BOOL expects a char *\/$/;" m struct:__anon466 file: +eof Modules/_lzmamodule.c /^ char eof;$/;" m struct:__anon296 file: +eof Modules/zlibmodule.c /^ char eof; \/* T_BOOL expects a char *\/$/;" m struct:__anon307 file: +eof Modules/zlibmodule.c /^ char eof;$/;" m struct:__anon306 file: +eof Tools/cases_generator/plexer.py /^ def eof(self) -> bool:$/;" m class:PLexer +eof_callback Lib/idlelib/pyshell.py /^ def eof_callback(self, event):$/;" m class:PyShell +eof_received Lib/asyncio/base_events.py /^ def eof_received(self):$/;" m class:_SendfileFallbackProtocol +eof_received Lib/asyncio/protocols.py /^ def eof_received(self):$/;" m class:BufferedProtocol +eof_received Lib/asyncio/protocols.py /^ def eof_received(self):$/;" m class:Protocol +eof_received Lib/asyncio/sslproto.py /^ def eof_received(self):$/;" m class:SSLProtocol +eof_received Lib/asyncio/streams.py /^ def eof_received(self):$/;" m class:StreamReaderProtocol +eof_received Lib/test/test_asyncio/test_base_events.py /^ def eof_received(self):$/;" m class:MyProto +eof_received Lib/test/test_asyncio/test_events.py /^ def eof_received(self):$/;" m class:MyBaseProto +eof_received Lib/test/test_asyncio/test_events.py /^ def eof_received(self):$/;" m class:MyReadPipeProto +eof_received Lib/test/test_asyncio/test_sendfile.py /^ def eof_received(self):$/;" m class:MySendfileProto +eof_received Lib/test/test_asyncio/test_sock_lowlevel.py /^ def eof_received(self):$/;" m class:MyProto +eof_received Lib/test/test_asyncio/test_ssl.py /^ def eof_received(self):$/;" m class:TestSSL.test_create_connection_memory_leak.ClientProto +eof_received Lib/test/test_asyncio/test_ssl.py /^ def eof_received(self):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoFirst +eof_received Lib/test/test_asyncio/test_ssl.py /^ def eof_received(self):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoSecond +eof_received Lib/test/test_asyncio/test_ssl.py /^ def eof_received(self):$/;" m class:TestSSL.test_start_tls_client_reg_proto_1.ClientProto +eof_received Lib/test/test_asyncio/test_ssl.py /^ def eof_received(self):$/;" m class:TestSSL.test_start_tls_server_1.ServerProto +eof_received Lib/test/test_asyncio/test_ssl.py /^ def eof_received(self):$/;" m class:TestSSL.test_start_tls_slow_client_cancel.ClientProto +eof_received Lib/test/test_asyncio/test_ssl.py /^ def eof_received(self):$/;" m class:MyBaseProto +eof_received Lib/test/test_asyncio/test_sslproto.py /^ def eof_received(self):$/;" m class:BaseStartTLS.test_create_connection_memory_leak.ClientProto +eof_received Lib/test/test_asyncio/test_sslproto.py /^ def eof_received(self):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond +eof_received Lib/test/test_asyncio/test_sslproto.py /^ def eof_received(self):$/;" m class:BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto +eof_received Lib/test/test_asyncio/test_sslproto.py /^ def eof_received(self):$/;" m class:BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto +eof_server Lib/test/test_asyncio/test_ssl.py /^ def eof_server(sock):$/;" f function:TestSSL.test_remote_shutdown_receives_trailing_data +eof_written Modules/_ssl.c /^ int eof_written;$/;" m struct:__anon582 file: +eol_convention Lib/idlelib/iomenu.py /^ eol_convention = os.linesep # default$/;" v class:IOBinding +eos Include/internal/pycore_global_objects.h /^ char eos;$/;" m struct:_Py_static_objects::__anon147::__anon148 +epfd Modules/selectmodule.c /^ SOCKET epfd; \/* epoll control file descriptor *\/$/;" m struct:__anon576 file: +epilog Lib/test/test_argparse.py /^ epilog='EPILOG')$/;" v class:TestHelpBiggerOptionalGroups +epilog Lib/test/test_argparse.py /^ epilog='EPILOG')$/;" v class:TestHelpBiggerOptionals +epilogProcessor Modules/expat/xmlparse.c /^epilogProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +epilogProcessor Modules/expat/xmlparse.c /^static Processor epilogProcessor;$/;" v file: +epoch Modules/_datetimemodule.c /^static long long epoch = 719163LL * 24 * 60 * 60;$/;" v file: +eps Lib/test/test_math.py /^eps = 1E-05$/;" v +epub_author Doc/conf.py /^epub_author = 'Python Documentation Authors'$/;" v +epub_publisher Doc/conf.py /^epub_publisher = 'Python Software Foundation'$/;" v +eq Lib/operator.py /^def eq(a, b):$/;" f +eq Lib/test/test_functools.py /^ def eq(n):$/;" f function:TestLRU.test_lru_with_maxsize_negative +eq Lib/test/test_types.py /^ def eq(actual, expected, typed=True):$/;" f function:UnionTests.test_union_parameter_substitution +eq Lib/test/test_unittest/testmock/testmagicmethods.py /^ def eq(self, other):$/;" f function:TestMockingMagicMethods.test_equality +eq_bitwise_or_rule Parser/parser.c /^eq_bitwise_or_rule(Parser *p)$/;" f file: +eq_bitwise_or_type Parser/parser.c 198;" d file: +eq_bstderr Lib/test/test_argparse.py /^eq_bstderr = StdStreamComparer('stderr.buffer')$/;" v +eq_bstdin Lib/test/test_argparse.py /^eq_bstdin = StdStreamComparer('stdin.buffer')$/;" v +eq_bstdout Lib/test/test_argparse.py /^eq_bstdout = StdStreamComparer('stdout.buffer')$/;" v +eq_default Lib/test/test_typing.py /^ eq_default=True,$/;" v class:DataclassTransformTests.test_base_class.ModelBase +eq_pairs Lib/test/test_unittest/test_case.py /^ eq_pairs = [(Test.Foo('test1'), Test.Foo('test1'))]$/;" v class:Test_TestCase +eq_pairs Lib/test/test_unittest/test_suite.py /^ eq_pairs = [(unittest.TestSuite(), unittest.TestSuite())$/;" v class:Test_TestSuite +eq_stderr Lib/test/test_argparse.py /^eq_stderr = StdStreamComparer('stderr')$/;" v +eq_stdin Lib/test/test_argparse.py /^eq_stdin = StdStreamComparer('stdin')$/;" v +eq_stdout Lib/test/test_argparse.py /^eq_stdout = StdStreamComparer('stdout')$/;" v +equal Lib/tabnanny.py /^ def equal(self, other):$/;" m class:Whitespace +equal_ignore_case Modules/_sqlite/row.c /^equal_ignore_case(PyObject *left, PyObject *right)$/;" f file: +equality_comparisons Lib/test/test_copy.py /^equality_comparisons = eq, ne$/;" v +equiv_format Objects/memoryobject.c /^equiv_format(const Py_buffer *dest, const Py_buffer *src)$/;" f file: +equiv_shape Objects/memoryobject.c /^equiv_shape(const Py_buffer *dest, const Py_buffer *src)$/;" f file: +equiv_structure Objects/memoryobject.c /^equiv_structure(const Py_buffer *dest, const Py_buffer *src)$/;" f file: +equivalences Lib/test/test_pathlib.py /^ equivalences = _BasePurePathTest.equivalences.copy()$/;" v class:PureWindowsPathTest +equivalences Lib/test/test_pathlib.py /^ equivalences = {$/;" v class:_BasePurePathTest +equivalent_python Lib/test/test_long.py /^ def equivalent_python(byte_array, byteorder, signed=False):$/;" f function:LongTest.test_from_bytes.check +equivalent_python Lib/test/test_long.py /^ def equivalent_python(n, length, byteorder, signed=False):$/;" f function:LongTest.test_to_bytes.check +err Include/cpython/initconfig.h /^PyAPI_FUNC(int) PyStatus_Exception(PyStatus err);$/;" v +err Include/cpython/initconfig.h /^PyAPI_FUNC(int) PyStatus_IsError(PyStatus err);$/;" v +err Include/cpython/initconfig.h /^PyAPI_FUNC(int) PyStatus_IsExit(PyStatus err);$/;" v +err Modules/_ssl.c /^ _PySSLError err; \/* last seen error from various sources *\/$/;" m struct:__anon581 file: +errNotAHandle PC/winreg.c /^static char errNotAHandle[] = "Object is not a handle";$/;" v file: +err_closed Modules/_io/fileio.c /^err_closed(void)$/;" f file: +err_closed Modules/_io/winconsoleio.c /^err_closed(void)$/;" f file: +err_codes_to_names Modules/_ssl.h /^ PyObject *err_codes_to_names;$/;" m struct:__anon485 +err_exit Modules/_decimal/libmpdec/bench.c /^err_exit(const char *msg)$/;" f file: +err_exit Modules/_decimal/libmpdec/bench_full.c /^err_exit(const char *msg)$/;" f file: +err_info Include/internal/pycore_pyerrors.h /^ _PyErr_StackItem *err_info);$/;" v +err_mode Modules/_io/fileio.c /^err_mode(_PyIO_State *state, const char *action)$/;" f file: +err_mode Modules/_io/winconsoleio.c /^err_mode(_PyIO_State *state, const char *action)$/;" f file: +err_msg Include/cpython/initconfig.h /^ const char *err_msg;$/;" m struct:__anon198 +err_occurred_if Tools/clinic/clinic.py /^ def err_occurred_if($/;" m class:CReturnConverter +err_occurred_if_null_pointer Tools/clinic/clinic.py /^ def err_occurred_if_null_pointer($/;" m class:CReturnConverter +err_programtext Python/errors.c /^err_programtext(PyThreadState *tstate, FILE *fp, int lineno, const char* encoding)$/;" f file: +err_restore Modules/_testcapi/exceptions.c /^err_restore(PyObject *self, PyObject *args) {$/;" f file: +err_string Lib/test/support/__init__.py /^ err_string = err_string[:50] + ' [...]'$/;" v class:_is_gui_available.USEROBJECTFLAGS.ProcessSerialNumber +err_string Lib/test/support/__init__.py /^ err_string = str(e)$/;" v class:_is_gui_available.USEROBJECTFLAGS +errback Lib/test/_test_multiprocessing.py /^ def errback(exc):$/;" f function:_TestPoolWorkerErrors.test_unpickleable_result +errback Lib/test/_test_multiprocessing.py /^ def errback(exc):$/;" f function:_TestPoolWorkerErrors.test_async_error_callback +errcheck Lib/test/test_ctypes/test_slicing.py /^ def errcheck(result, func, args):$/;" f function:SlicesTestCase.test_char_ptr_with_free +errcheck Modules/_ctypes/ctypes.h /^ PyObject *errcheck;$/;" m struct:__anon493 +errcode Parser/pegen.h /^ int *errcode;$/;" m struct:__anon657 +errfunc Lib/test/test_itertools.py /^def errfunc(*args):$/;" f +errno Lib/socket.py /^ errno = None$/;" v +errno Lib/test/test_asyncio/test_unix_events.py /^ errno = errno.EFAULT$/;" v class:SelectorEventLoopSignalTests.test_add_signal_handler_install_error.Err +errno Lib/test/test_asyncio/test_unix_events.py /^ errno = errno.EINVAL$/;" v class:SelectorEventLoopSignalTests.test_add_signal_handler_install_error2.Err +errno Lib/test/test_asyncio/test_unix_events.py /^ errno = errno.EINVAL$/;" v class:SelectorEventLoopSignalTests.test_add_signal_handler_install_error3.Err +errno Lib/test/test_asyncio/test_unix_events.py /^ errno = errno.EINVAL$/;" v class:SelectorEventLoopSignalTests.test_remove_signal_handler_error2.Err +errno_exec Modules/errnomodule.c /^errno_exec(PyObject *module)$/;" f file: +errno_methods Modules/errnomodule.c /^static PyMethodDef errno_methods[] = {$/;" v file: +errno_slots Modules/errnomodule.c /^static PyModuleDef_Slot errno_slots[] = {$/;" v file: +errnomap Include/internal/pycore_exceptions.h /^ PyObject *errnomap;$/;" m struct:_Py_exc_state +errnomodule Modules/errnomodule.c /^static struct PyModuleDef errnomodule = {$/;" v typeref:struct:PyModuleDef file: +error Lib/argparse.py /^ def error(self, message):$/;" m class:ArgumentParser +error Lib/calendar.py /^error = ValueError$/;" v +error Lib/copy.py /^error = Error # backward compatibility$/;" v +error Lib/dbm/__init__.py /^class error(Exception):$/;" c +error Lib/dbm/__init__.py /^error = (error, OSError)$/;" v +error Lib/dbm/dumb.py /^error = OSError$/;" v +error Lib/getopt.py /^error = GetoptError # backward compatibility$/;" v +error Lib/http/client.py /^error = HTTPException$/;" v +error Lib/imaplib.py /^ class error(Exception): pass # Logical errors - debug required$/;" c class:IMAP4 +error Lib/logging/__init__.py /^ def error(self, msg, *args, **kwargs):$/;" m class:Logger +error Lib/logging/__init__.py /^ def error(self, msg, *args, **kwargs):$/;" m class:LoggerAdapter +error Lib/logging/__init__.py /^def error(msg, *args, **kwargs):$/;" f +error Lib/optparse.py /^ def error(self, msg):$/;" m class:OptionParser +error Lib/pdb.py /^ def error(self, msg):$/;" m class:Pdb +error Lib/re/__init__.py /^error = _compiler.error$/;" v +error Lib/re/_constants.py /^class error(Exception):$/;" c +error Lib/re/_parser.py /^ def error(self, msg, offset=0):$/;" m class:Tokenizer +error Lib/test/libregrtest/cmdline.py /^ def error(self, message):$/;" m class:_ArgParser +error Lib/test/mock_socket.py /^error = socket_module.error$/;" v +error Lib/test/test_argparse.py /^ def error(self, *args, **kwargs):$/;" m class:ErrorRaisingArgumentParser +error Lib/test/test_optparse.py /^ def error(self, msg):$/;" m class:InterceptingOptionParser +error Lib/test/test_urllib2.py /^ def error(self, proto, *args):$/;" m class:MockOpener +error Lib/test/test_weakref.py /^ def error():$/;" f function:FinalizeTestCase.run_in_child +error Lib/tokenize.py /^ def error(message, filename=None, location=None):$/;" f function:main +error Lib/urllib/request.py /^ def error(self, proto, *args):$/;" m class:OpenerDirector +error Lib/xml/dom/pulldom.py /^ def error(self, exception):$/;" m class:ErrorHandler +error Lib/xml/sax/handler.py /^ def error(self, exception):$/;" m class:ErrorHandler +error Lib/xml/sax/saxutils.py /^ def error(self, exception):$/;" m class:XMLFilterBase +error Modules/_hashopenssl.c /^ int error;$/;" m struct:_internal_name_mapper_state file: +error Modules/_lzmamodule.c /^ PyObject *error;$/;" m struct:__anon293 file: +error Modules/_ssl.c /^ int error;$/;" m struct:__anon585 file: +error Modules/_testcapi/testcapi_long.h /^TESTNAME(PyObject *error(const char*))$/;" f +error Modules/_testsinglephase.c /^ PyObject *error;$/;" m struct:__anon387 file: +error Modules/expat/xmlrole.c /^ declClose, error;$/;" v file: +error Modules/expat/xmlrole.c /^error(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +error Modules/overlapped.c /^ DWORD error;$/;" m struct:__anon567 file: +error Modules/pyexpat.c /^ PyObject *error;$/;" m struct:__anon482 file: +error Modules/socketmodule.h /^ PyObject *error;$/;" m struct:__anon399 +error PC/launcher.c /^error(int rc, wchar_t * format, ... )$/;" f file: +error PC/launcher2.c /^error(wchar_t * format, ... )$/;" f +error Programs/_testembed.c /^static void error(const char *msg)$/;" f file: +error Python/marshal.c /^ int error; \/* see WFERR_* values *\/$/;" m struct:__anon699 file: +error Tools/c-analyzer/distutils/log.py /^ def error(self, msg, *args):$/;" m class:Log +error Tools/c-analyzer/distutils/log.py /^error = _global_log.error$/;" v +error Tools/cases_generator/generate_cases.py /^ def error(self, msg: str, node: parser.Node) -> None:$/;" m class:Analyzer +errorDialog Tools/unittestgui/unittestgui.py /^ def errorDialog(self, title, message):$/;" m class:BaseGUITestRunner +errorDialog Tools/unittestgui/unittestgui.py /^ def errorDialog(self, title, message):$/;" m class:TkTestRunner +errorHandler Lib/xml/dom/minidom.py /^ errorHandler = None$/;" v class:Document +errorHandler Lib/xml/dom/xmlbuilder.py /^ errorHandler = None$/;" v class:DOMBuilder +errorHandler Lib/xml/dom/xmlbuilder.py /^ errorHandler = None$/;" v class:Options +errorInCmd Modules/_tkinter.c /^static int errorInCmd = 0;$/;" v file: +errorInInner Lib/test/test_scope.py /^ def errorInInner():$/;" f function:ScopeTests.testUnboundLocal +errorInInner Lib/test/test_scope.py /^ def errorInInner():$/;" f function:ScopeTests.testUnboundLocal_AfterDel +errorInOuter Lib/test/test_scope.py /^ def errorInOuter():$/;" f function:ScopeTests.testUnboundLocal +errorInOuter Lib/test/test_scope.py /^ def errorInOuter():$/;" f function:ScopeTests.testUnboundLocal_AfterDel +errorProcessor Modules/expat/xmlparse.c /^errorProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +errorProcessor Modules/expat/xmlparse.c /^static Processor errorProcessor;$/;" v file: +error_app Lib/test/test_wsgiref.py /^ def error_app(e,s):$/;" f function:HandlerTests.testBasicErrorOutput +error_app Lib/test/test_wsgiref.py /^ def error_app(e,s):$/;" f function:HandlerTests.testCloseOnError +error_app Lib/test/test_wsgiref.py /^ def error_app(e,s):$/;" f function:HandlerTests.testErrorAfterOutput +error_at_directive Python/symtable.c /^error_at_directive(PySTEntryObject *ste, PyObject *name)$/;" f file: +error_body Lib/wsgiref/handlers.py /^ error_body = b"A server error occurred. Please contact the administrator."$/;" v class:BaseHandler +error_code_event_handler Modules/_testcapi/watchers.c /^error_code_event_handler(PyCodeEvent event, PyCodeObject *co)$/;" f file: +error_codes Modules/_sqlite/module.c /^} error_codes[] = {$/;" v typeref:struct:__anon354 file: +error_codes Modules/_ssl_data.h /^static struct py_ssl_error_code error_codes[] = {$/;" v typeref:struct:py_ssl_error_code +error_codes Modules/_ssl_data_111.h /^static struct py_ssl_error_code error_codes[] = {$/;" v typeref:struct:py_ssl_error_code +error_codes Modules/_ssl_data_300.h /^static struct py_ssl_error_code error_codes[] = {$/;" v typeref:struct:py_ssl_error_code +error_codes Modules/_ssl_data_31.h /^static struct py_ssl_error_code error_codes[] = {$/;" v typeref:struct:py_ssl_error_code +error_content_type Lib/http/server.py /^ error_content_type = DEFAULT_ERROR_CONTENT_TYPE$/;" v class:BaseHTTPRequestHandler +error_count Lib/test/test_threadedtempfile.py /^ error_count = 0$/;" v class:TempFileGreedy +error_expected Lib/test/test_hash.py /^ error_expected = [NoHash(),$/;" v class:HashInheritanceTestCase +error_external_entity_ref_handler Modules/pyexpat.c /^error_external_entity_ref_handler(XML_Parser parser,$/;" f file: +error_func Modules/_testcapimodule.c /^error_func(PyObject *obj, PyFrameObject *f, int what, PyObject *arg)$/;" f file: +error_gen Lib/test/test_memoryio.py /^ def error_gen():$/;" f function:MemoryTestMixin.test_writelines_error +error_handler Include/internal/pycore_unicodeobject.h /^ _Py_error_handler error_handler;$/;" m struct:_Py_unicode_fs_codec +error_headers Lib/wsgiref/handlers.py /^ error_headers = [('Content-Type','text\/plain')]$/;" v class:BaseHandler +error_indicator Parser/pegen.h /^ int error_indicator;$/;" m struct:__anon657 +error_info_of Modules/pyexpat.c /^struct ErrorInfo error_info_of[] = {$/;" v typeref:struct:ErrorInfo file: +error_leader Lib/shlex.py /^ def error_leader(self, infile=None, lineno=None):$/;" m class:shlex +error_message_format Lib/http/server.py /^ error_message_format = DEFAULT_ERROR_MESSAGE$/;" v class:BaseHTTPRequestHandler +error_obj Modules/_csv.c /^ PyObject *error_obj; \/* cached error object *\/$/;" m struct:__anon626 file: +error_obj Modules/_csv.c /^ PyObject *error_obj; \/* CSV exception *\/$/;" m struct:__anon620 file: +error_once Lib/test/test_sys_settrace.py /^ def error_once(frame, event, arg):$/;" f function:TraceTestCase.test_settrace_error +error_output Lib/wsgiref/handlers.py /^ def error_output(self, environ, start_response):$/;" m class:BaseHandler +error_perm Lib/ftplib.py /^class error_perm(Error): pass # 5xx errors$/;" c +error_proto Lib/ftplib.py /^class error_proto(Error): pass # response does not begin with [1-5]$/;" c +error_proto Lib/poplib.py /^class error_proto(Exception): pass$/;" c +error_received Lib/asyncio/protocols.py /^ def error_received(self, exc):$/;" m class:DatagramProtocol +error_received Lib/test/test_asyncio/test_base_events.py /^ def error_received(self, exc):$/;" m class:MyDatagramProto +error_received Lib/test/test_asyncio/test_events.py /^ def error_received(self, exc):$/;" m class:MyDatagramProto +error_reply Lib/ftplib.py /^class error_reply(Error): pass # unexpected [123]xx reply$/;" c +error_ret Parser/tokenizer.c /^error_ret(struct tok_state *tok) \/* XXX *\/$/;" f file: +error_slots Modules/_csv.c /^static PyType_Slot error_slots[] = {$/;" v file: +error_spec Modules/_csv.c /^PyType_Spec error_spec = {$/;" v +error_status Lib/wsgiref/handlers.py /^ error_status = "500 Internal Server Error"$/;" v class:BaseHandler +error_temp Lib/ftplib.py /^class error_temp(Error): pass # 4xx errors$/;" c +error_unexpected_keyword_arg Python/getargs.c /^error_unexpected_keyword_arg(PyObject *kwargs, PyObject *kwnames, PyObject *kwtuple, const char *fname)$/;" f file: +error_was_logged PC/layout/support/logging.py /^def error_was_logged():$/;" f +errorbox Lib/idlelib/runscript.py /^ def errorbox(self, title, message):$/;" m class:ScriptBinding +errorhandler Modules/socketmodule.h /^ PyObject *(*errorhandler)(void); \/* Error handler; checks$/;" m struct:__anon398 +errorlevel Lib/tarfile.py /^ errorlevel = 1 # If 0, fatal errors only appear in debug$/;" v class:TarFile +errormessage Lib/tkinter/simpledialog.py /^ errormessage = "Not a floating point value."$/;" v class:_QueryFloat +errormessage Lib/tkinter/simpledialog.py /^ errormessage = "Not an integer."$/;" v class:_QueryInteger +errors Include/internal/pycore_unicodeobject.h /^ char *errors; \/\/ Filesystem errors (encoded to UTF-8)$/;" m struct:_Py_unicode_fs_codec +errors Lib/_pyio.py /^ def errors(self):$/;" m class:StringIO +errors Lib/_pyio.py /^ def errors(self):$/;" m class:TextIOBase +errors Lib/_pyio.py /^ def errors(self):$/;" m class:TextIOWrapper +errors Lib/idlelib/run.py /^ def errors(self):$/;" m class:StdioFile +errors Lib/nntplib.py /^ errors = 'surrogateescape'$/;" v class:NNTP +errors Lib/tarfile.py /^ errors = None # Error handler for unicode conversion.$/;" v class:TarFile +errors Lib/tempfile.py /^ def errors(self):$/;" m class:SpooledTemporaryFile +errors Lib/test/test_finalization.py /^ errors = []$/;" v class:NonGCSimpleBase +errors Lib/test/test_importlib/threaded_import_hangers.py /^errors = []$/;" v +errors Lib/test/test_socket.py /^ errors = 'strict'$/;" v class:FileObjectClassTestCase +errors Lib/typing.py /^ def errors(self) -> Optional[str]:$/;" m class:TextIO +errors Modules/_io/textio.c /^ PyObject *errors;$/;" m struct:nldecoder_object file: +errors Modules/_io/textio.c /^ PyObject *errors;$/;" m struct:textio file: +errors Modules/_pickle.c /^ char *errors; \/* Name of errors handling scheme to used when$/;" m struct:UnpicklerObject file: +errprint Lib/tabnanny.py /^def errprint(*args):$/;" f +errprint Tools/patchcheck/reindent.py /^def errprint(*args):$/;" f +escape Doc/tools/extensions/escape4chm.py /^ def escape(matchobj):$/;" f function:_process +escape Lib/glob.py /^def escape(pathname):$/;" f +escape Lib/html/__init__.py /^def escape(s, quote=True):$/;" f +escape Lib/lib2to3/pgen2/literals.py /^def escape(m):$/;" f +escape Lib/pydoc.py /^ def escape(self, text):$/;" m class:HTMLRepr +escape Lib/pydoc.py /^ escape = _repr_instance.escape$/;" v class:HTMLDoc +escape Lib/re/__init__.py /^def escape(pattern):$/;" f +escape Lib/xml/sax/saxutils.py /^def escape(data, entities={}):$/;" f +escape Lib/xmlrpc/client.py /^def escape(s):$/;" f +escape Tools/i18n/pygettext.py /^ escape = 0$/;" v class:main.Options +escape_ascii Tools/i18n/pygettext.py /^def escape_ascii(s, encoding):$/;" f +escape_braces Python/ast_unparse.c /^escape_braces(PyObject *orig)$/;" f file: +escape_char Lib/ast.py /^ def escape_char(c):$/;" f function:_Unparser._str_literal_helper +escape_for_chm Doc/tools/extensions/escape4chm.py /^def escape_for_chm(app, pagename, templatename, context, doctree):$/;" f +escape_nonascii Tools/i18n/pygettext.py /^def escape_nonascii(s, encoding):$/;" f +escape_path Lib/http/cookiejar.py /^def escape_path(path):$/;" f +escape_unicode Modules/_json.c /^escape_unicode(PyObject *pystr)$/;" f file: +escapechar Lib/csv.py /^ escapechar = None$/;" v class:Dialect +escapechar Lib/test/test_csv.py /^ escapechar = "\\\\"$/;" v class:TestDialectRegistry.test_space_dialect.space +escapechar Lib/test/test_csv.py /^ escapechar = '\\\\'$/;" v class:TestDialectValidity.test_delimiter.mydialect +escapechar Lib/test/test_csv.py /^ escapechar = '\\\\'$/;" v class:TestDialectValidity.test_escapechar.mydialect +escapechar Lib/test/test_csv.py /^ escapechar = '\\\\'$/;" v class:TestDialectValidity.test_lineterminator.mydialect +escapechar Lib/test/test_csv.py /^ escapechar = '\\\\'$/;" v class:TestDialectValidity.test_quoting.mydialect +escapechar Lib/test/test_csv.py /^ escapechar='^'$/;" v class:Test_Csv._test_dialect_attrs.dialect +escapechar Lib/test/test_csv.py /^ escapechar = '\\\\'$/;" v class:EscapedExcel +escapechar Lib/test/test_csv.py /^ escapechar = '\\\\'$/;" v class:QuotedEscapedExcel +escapechar Modules/_csv.c /^ Py_UCS4 escapechar; \/* escape character *\/$/;" m struct:__anon624 file: +escapesre Lib/email/utils.py /^escapesre = re.compile(r'[\\\\"]')$/;" v +escapestr Lib/test/test_strftime.py /^def escapestr(text, ampm):$/;" f +estimate_log2_keysize Objects/dictobject.c /^estimate_log2_keysize(Py_ssize_t n)$/;" f file: +euc_commontests Lib/test/test_codecencodings_jp.py /^euc_commontests = ($/;" v +ev Modules/_tkinter.c /^ Tcl_Event ev; \/* Must be first *\/$/;" m struct:Tkapp_CallEvent file: +ev Modules/_tkinter.c /^ Tcl_Event ev; \/* must be first *\/$/;" m struct:VarEvent file: +ev Modules/_tkinter.c /^ Tcl_Event ev;$/;" m struct:CommandEvent file: +eval Lib/test/test_zipfile/_path/_test_params.py /^ def eval(cls, cand):$/;" m class:Invoked +evalString Lib/lib2to3/pgen2/literals.py /^def evalString(s):$/;" f +eval_ast_expr Tools/clinic/clinic.py /^def eval_ast_expr(node, globals, *, filename='-'):$/;" f +eval_breaker Include/internal/pycore_ceval_state.h /^ _Py_atomic_int eval_breaker;$/;" m struct:_ceval_state +eval_calls Include/pystats.h /^ uint64_t eval_calls[EVAL_CALL_KINDS];$/;" m struct:_call_stats +eval_directive Lib/test/test_decimal.py /^ def eval_directive(self, s):$/;" m class:IBMTestCases +eval_equation Lib/test/test_decimal.py /^ def eval_equation(self, s):$/;" m class:IBMTestCases +eval_eval_code_ex Modules/_testcapimodule.c /^eval_eval_code_ex(PyObject *mod, PyObject *pos_args)$/;" f file: +eval_file Lib/test/test_decimal.py /^ def eval_file(self, file):$/;" m class:IBMTestCases +eval_frame Include/internal/pycore_interp.h /^ _PyFrameEvalFunction eval_frame;$/;" m struct:_is +eval_get_func_desc Modules/_testcapimodule.c /^eval_get_func_desc(PyObject *self, PyObject *func)$/;" f file: +eval_get_func_name Modules/_testcapimodule.c /^eval_get_func_name(PyObject *self, PyObject *func)$/;" f file: +eval_line Lib/test/test_decimal.py /^ def eval_line(self, s):$/;" m class:IBMTestCases +eval_print_amount Lib/pstats.py /^ def eval_print_amount(self, sel, list, msg):$/;" m class:Stats +eval_results Lib/test/test_ast.py /^eval_results = [$/;" v +eval_rule Parser/parser.c /^eval_rule(Parser *p)$/;" f file: +eval_tests Lib/test/test_ast.py /^eval_tests = [$/;" v +eval_type Parser/parser.c 83;" d file: +evaluate_bound Objects/typevarobject.c /^ PyObject *evaluate_bound;$/;" m struct:__anon713 file: +evaluate_constraints Objects/typevarobject.c /^ PyObject *evaluate_constraints;$/;" m struct:__anon713 file: +evaluate_slice_index Lib/test/test_slice.py /^def evaluate_slice_index(arg):$/;" f +evaluate_slice_index Objects/sliceobject.c /^evaluate_slice_index(PyObject *v)$/;" f file: +evening Lib/test/test_enum.py /^ evening = 3$/;" v class:TestSpecial.test_getattr_getitem.Period +event Lib/msilib/__init__.py /^ def event(self, event, argument, condition = "1", ordering = None):$/;" m class:Control +event Modules/_lsprof.c /^ int event;$/;" m struct:__anon365 file: +event Python/legacy_tracing.c /^ int event;$/;" m struct:_PyLegacyEventHandler file: +event_add Lib/idlelib/multicall.py /^ def event_add(self, virtual, *sequences):$/;" m class:MultiCallCreator.MultiCall +event_add Lib/tkinter/__init__.py /^ def event_add(self, virtual, *sequences):$/;" m class:Misc +event_delete Lib/idlelib/multicall.py /^ def event_delete(self, virtual, *sequences):$/;" m class:MultiCallCreator.MultiCall +event_delete Lib/tkinter/__init__.py /^ def event_delete(self, virtual, *sequences):$/;" m class:Misc +event_generate Lib/tkinter/__init__.py /^ def event_generate(self, sequence, **kw):$/;" m class:Misc +event_info Lib/idlelib/multicall.py /^ def event_info(self, virtual=None):$/;" m class:MultiCallCreator.MultiCall +event_info Lib/tkinter/__init__.py /^ def event_info(self, virtual=None):$/;" m class:Misc +event_name Lib/test/test_monitoring.py /^ event_name = "C raise"$/;" v class:CRaiseRecorder +event_name Lib/test/test_monitoring.py /^ event_name = "C return"$/;" v class:CReturnRecorder +event_names Python/instrumentation.c /^static const char *const event_names [] = {$/;" v file: +event_tstate Modules/_tkinter.c /^static PyThreadState *event_tstate = NULL;$/;" v file: +event_type Lib/test/test_monitoring.py /^ event_type = E.BRANCH$/;" v class:BranchRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.CALL$/;" v class:CallRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.C_RAISE$/;" v class:CRaiseRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.C_RETURN$/;" v class:CReturnRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.EXCEPTION_HANDLED$/;" v class:ExceptionHandledRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.INSTRUCTION$/;" v class:InstructionRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.JUMP$/;" v class:JumpRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.LINE$/;" v class:LineRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.PY_RETURN$/;" v class:ReturnRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.PY_THROW$/;" v class:ThrowRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.PY_UNWIND$/;" v class:UnwindRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.RAISE$/;" v class:ExceptionRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.RERAISE$/;" v class:ReraiseRecorder +event_type Lib/test/test_monitoring.py /^ event_type = E.STOP_ITERATION$/;" v class:StopiterationRecorder +eventfun Lib/turtle.py /^ def eventfun(event):$/;" f function:TurtleScreenBase._onclick +eventfun Lib/turtle.py /^ def eventfun(event):$/;" f function:TurtleScreenBase._ondrag +eventfun Lib/turtle.py /^ def eventfun(event):$/;" f function:TurtleScreenBase._onkeypress +eventfun Lib/turtle.py /^ def eventfun(event):$/;" f function:TurtleScreenBase._onkeyrelease +eventfun Lib/turtle.py /^ def eventfun(event):$/;" f function:TurtleScreenBase._onrelease +eventfun Lib/turtle.py /^ def eventfun(event):$/;" f function:TurtleScreenBase._onscreenclick +events_append Modules/_elementtree.c /^ PyObject *events_append; \/* the append method of the list of events, or NULL *\/$/;" m struct:__anon385 file: +eventtype Lib/test/test_threading.py /^ eventtype = staticmethod(threading.Event)$/;" v class:EventTests +evil Lib/test/test_asyncio/test_futures.py /^ class evil:$/;" c function:BaseFutureDoneCallbackTests.test_remove_done_callbacks_list_clear +evil Lib/test/test_asyncio/test_futures.py /^ class evil:$/;" c function:BaseFutureDoneCallbackTests.test_remove_done_callbacks_list_mutation +evil Lib/test/test_asyncio/test_futures.py /^ class evil:$/;" c function:BaseFutureDoneCallbackTests.test_schedule_callbacks_list_mutation_2 +evil Lib/test/test_capi/test_abstract.py /^ def evil(self):$/;" m class:TestObject +evil Lib/test/test_capi/test_abstract.py /^ def evil(self, value):$/;" m class:TestObject +evilcomplex Lib/test/test_complex.py /^ class evilcomplex:$/;" c function:ComplexTest.test_constructor +evp Modules/_hashopenssl.c /^ PY_EVP_MD *evp;$/;" m struct:__anon560 file: +evp_Encode_Ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class evp_Encode_Ctx_st(Structure):$/;" c +evp_cipher_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class evp_cipher_ctx_st(Structure):$/;" c +evp_cipher_info_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class evp_cipher_info_st(Structure):$/;" c +evp_cipher_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class evp_cipher_st(Structure):$/;" c +evp_nosecurity Modules/_hashopenssl.c /^ PY_EVP_MD *evp_nosecurity;$/;" m struct:__anon560 file: +evp_pkey_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class evp_pkey_st(Structure):$/;" c +ew_combine_allowed Lib/email/_header_value_parser.py /^ ew_combine_allowed = False$/;" v class:DisplayName +ew_combine_allowed Lib/email/_header_value_parser.py /^ ew_combine_allowed = True$/;" v class:Terminal +ew_combine_allowed Lib/email/_header_value_parser.py /^ ew_combine_allowed = True$/;" v class:TokenList +ex Modules/_decimal/_decimal.c /^ PyObject *ex; \/* corresponding exception *\/$/;" m struct:__anon353 file: +exact_token_types Tools/peg_generator/pegen/tokenizer.py /^exact_token_types = token.EXACT_TOKEN_TYPES$/;" v +exact_type Lib/tokenize.py /^ def exact_type(self):$/;" m class:TokenInfo +example Lib/test/support/_hypothesis_stubs/__init__.py /^def example(*args, **kwargs):$/;" f +example Lib/test/test_array.py /^ def example(self, size):$/;" m class:LargeArrayTest +example Lib/test/test_array.py /^ example = '\\x01\\u263a\\x00\\ufeff'$/;" v class:UnicodeTest +example Lib/test/test_array.py /^ example = [-1, 0, 1, 42, 0x7f]$/;" v class:SignedNumberTest +example Lib/test/test_array.py /^ example = [-42.0, 0, 42, 1e5, -1e10]$/;" v class:FPTest +example Lib/test/test_array.py /^ example = [0, 1, 17, 23, 42, 0xff]$/;" v class:UnsignedNumberTest +example Lib/test/test_lltrace.py /^def example():$/;" f +example Lib/test/test_zoneinfo/test_zoneinfo.py /^ example = zt.transition_utc.replace(tzinfo=zi)$/;" v class:CZoneInfoTest.test_fold_mutate.to_subclass.SameAddSubclass +example Lib/tkinter/scrolledtext.py /^def example():$/;" f +example_args Lib/test/test_cmd_line_script.py /^example_args = ['test1', 'test2', 'test3']$/;" v +example_as_address Lib/test/test_email/test_headerregistry.py /^ def example_as_address(self, source, defects, decoded, display_name,$/;" m class:TestAddressHeader +example_as_group Lib/test/test_email/test_headerregistry.py /^ def example_as_group(self, source, defects, decoded, display_name,$/;" m class:TestAddressHeader +example_namespace Lib/test/test_runpy.py /^example_namespace = {$/;" v +example_params Lib/test/test_email/test_headerregistry.py /^ example_params = {$/;" v class:TestAddressHeader +exc Include/codecs.h /^PyAPI_FUNC(PyObject *) PyCodec_BackslashReplaceErrors(PyObject *exc);$/;" v +exc Include/codecs.h /^PyAPI_FUNC(PyObject *) PyCodec_IgnoreErrors(PyObject *exc);$/;" v +exc Include/codecs.h /^PyAPI_FUNC(PyObject *) PyCodec_NameReplaceErrors(PyObject *exc);$/;" v +exc Include/codecs.h /^PyAPI_FUNC(PyObject *) PyCodec_ReplaceErrors(PyObject *exc);$/;" v +exc Include/codecs.h /^PyAPI_FUNC(PyObject *) PyCodec_StrictErrors(PyObject *exc);$/;" v +exc Include/codecs.h /^PyAPI_FUNC(PyObject *) PyCodec_XMLCharRefReplaceErrors(PyObject *exc);$/;" v +exc Include/internal/pycore_ast.h /^ expr_ty exc;$/;" m struct:_stmt::__anon51::__anon68 +exc Include/internal/pycore_ast_state.h /^ PyObject *exc;$/;" m struct:ast_state +exc Lib/test/test_asyncio/test_tasks.py /^ async def exc():$/;" f function:BaseTaskTests.test_wait_first_exception +exc Lib/test/test_asyncio/test_tasks.py /^ async def exc():$/;" f function:BaseTaskTests.test_wait_first_exception_in_wait +exc Lib/test/test_contextlib.py /^ exc = None$/;" v class:TestContextDecorator.test_contextdecorator_as_mixin.somecontext +exc Lib/test/test_contextlib.py /^ exc = None$/;" v class:mycontext +exc Lib/test/test_except_star.py /^ exc = e$/;" v class:TestExceptStarExceptionGroupSubclass.test_falsy_exception_group_subclass.FalsyEG +exc Lib/test/test_exception_group.py /^ def exc(ex):$/;" f function:NestedExceptionGroupSplitTest.test_split_BaseExceptionGroup +exc Lib/test/test_exceptions.py /^ exc = e$/;" v class:ExceptionTests.test_raise_does_not_create_context_chain_cycle.C +exc Lib/test/test_threading.py /^ exc = None$/;" v class:ThreadingExceptionTests.test_bare_raise_in_brand_new_thread.Issue27558 +exc Lib/test/test_traceback.py /^ def exc():$/;" f function:BaseExceptionReportingTests.test_exception_group_basic +exc Lib/test/test_traceback.py /^ def exc():$/;" f function:BaseExceptionReportingTests.test_exception_group_cause +exc Lib/test/test_traceback.py /^ def exc():$/;" f function:BaseExceptionReportingTests.test_exception_group_context_with_context +exc Lib/test/test_traceback.py /^ def exc():$/;" f function:BaseExceptionReportingTests.test_exception_group_nested +exc Lib/test/test_traceback.py /^ def exc():$/;" f function:BaseExceptionReportingTests.test_exception_group_with_multiple_notes +exc Lib/test/test_traceback.py /^ def exc():$/;" f function:BaseExceptionReportingTests.test_exception_group_with_notes +exc Lib/test/test_traceback.py /^ def exc():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_exception_group +exc Modules/_ssl.c /^ PyObject *exc;$/;" m struct:__anon581 file: +exc Modules/_tkinter.c /^ PyObject **exc;$/;" m struct:Tkapp_CallEvent file: +exc Modules/_tkinter.c /^ PyObject **exc;$/;" m struct:VarEvent file: +exc Objects/exceptions.c /^ PyTypeObject *exc;$/;" m struct:static_exception file: +excInCmd Modules/_tkinter.c /^static PyObject *excInCmd;$/;" v file: +exc_handler Include/internal/pycore_faulthandler.h /^ void *exc_handler;$/;" m struct:_faulthandler_runtime_state::__anon126 +exc_handler Lib/test/test_asyncio/test_futures2.py /^ def exc_handler(*args):$/;" f function:FutureTests.test_handle_exc_handler_correct_context +exc_handler Lib/test/test_asyncio/test_futures2.py /^ def exc_handler(*args):$/;" f function:FutureTests.test_task_exc_handler_correct_context +exc_info Include/cpython/pystate.h /^ _PyErr_StackItem *exc_info;$/;" m struct:_ts +exc_info Include/internal/pycore_pyerrors.h /^ _PyErr_StackItem *exc_info);$/;" v +exc_info Lib/lib2to3/fixes/fix_sys_exc.py /^ exc_info = ["exc_type", "exc_value", "exc_traceback"]$/;" v class:FixSysExc +exc_info Lib/test/test_asyncio/test_selector_events.py /^ exc_info=(MyError, MOCK_ANY, MOCK_ANY))$/;" v class:SelectorTransportTests.test_fatal_error_custom_exception.MyError +exc_info Lib/test/test_asyncio/test_selector_events.py /^ exc_info=(MyException, MOCK_ANY, MOCK_ANY))$/;" v class:SelectorDatagramTransportTests.test_fatal_error_connected_custom_error.MyException +exc_info Lib/test/test_unittest/testmock/testpatch.py /^ exc_info = None, None, None$/;" v class:PatchTest.test_patch_propagates_exc_on_exit.holder +exc_info_tuple Lib/test/test_unittest/test_result.py /^ exc_info_tuple = sys.exc_info()$/;" v class:Test_TestResult.test_addError.Foo +exc_info_tuple Lib/test/test_unittest/test_result.py /^ exc_info_tuple = sys.exc_info()$/;" v class:Test_TestResult.test_addFailure.Foo +exc_state Include/cpython/pystate.h /^ _PyErr_StackItem exc_state;$/;" m struct:_ts +exc_state Include/internal/pycore_interp.h /^ struct _Py_exc_state exc_state;$/;" m struct:_is typeref:struct:_is::_Py_exc_state +exc_state_traverse Objects/genobject.c /^exc_state_traverse(_PyErr_StackItem *exc_state, visitproc visit, void *arg)$/;" f file: +exc_value Include/cpython/pystate.h /^ PyObject *exc_value;$/;" m struct:_err_stackitem +exc_value Python/bytecodes.c /^static PyObject *aiter, *awaitable, *iterable, *w, *exc_value, *bc, *locals;$/;" v file: +excel Lib/csv.py /^class excel(Dialect):$/;" c +excel_tab Lib/csv.py /^class excel_tab(excel):$/;" c +except_block_rule Parser/parser.c /^except_block_rule(Parser *p)$/;" f file: +except_block_type Parser/parser.c 140;" d file: +except_stack_top Python/flowgraph.c /^except_stack_top(ExceptStack *stack) {$/;" f file: +except_star_block_rule Parser/parser.c /^except_star_block_rule(Parser *p)$/;" f file: +except_star_block_type Parser/parser.c 141;" d file: +except_type Lib/test/test_except_star.py /^ def except_type(self, eg, type):$/;" m class:TestExceptStar_WeirdExceptionGroupSubclass +except_type Lib/test/test_except_star.py /^ def except_type(self, eg, type):$/;" m class:TestExceptStar_WeirdLeafExceptions +excepthandler_attributes Python/Python-ast.c /^static const char * const excepthandler_attributes[] = {$/;" v file: +excepthandler_ty Include/internal/pycore_ast.h /^typedef struct _excepthandler *excepthandler_ty;$/;" t typeref:struct:_excepthandler +excepthandler_type Include/internal/pycore_ast_state.h /^ PyObject *excepthandler_type;$/;" m struct:ast_state +excepthook Lib/test/audit-tests.py /^ def excepthook(exc_type, exc_value, exc_tb):$/;" f function:test_excepthook +excepthook Lib/threading.py /^ def excepthook(args, \/):$/;" f +excepthook_type Modules/_threadmodule.c /^ PyTypeObject *excepthook_type;$/;" m struct:__anon441 file: +exception Lib/asyncio/futures.py /^ def exception(self):$/;" m class:Future +exception Lib/asyncio/streams.py /^ def exception(self):$/;" m class:StreamReader +exception Lib/cgitb.py /^ exception = ['%s: %s' % (str(etype), str(evalue))]$/;" v +exception Lib/cgitb.py /^ exception = ['

%s: %s' % (strong(pydoc.html.escape(str(etype))),$/;" v +exception Lib/concurrent/futures/_base.py /^ def exception(self, timeout=None):$/;" m class:Future +exception Lib/logging/__init__.py /^ def exception(self, msg, *args, exc_info=True, **kwargs):$/;" m class:Logger +exception Lib/logging/__init__.py /^ def exception(self, msg, *args, exc_info=True, **kwargs):$/;" m class:LoggerAdapter +exception Lib/logging/__init__.py /^def exception(msg, *args, exc_info=True, **kwargs):$/;" f +exception Lib/test/test_asyncio/test_futures.py /^ def exception(self):$/;" m class:DuckFuture +exception Lib/test/test_asyncio/test_runners.py /^ def exception(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +exception_group_depth Python/pythonrun.c /^ int exception_group_depth; \/\/ nesting level of current exception group$/;" m struct:exception_print_context file: +exception_group_match Python/ceval.c /^exception_group_match(PyObject* exc_value, PyObject *match_type,$/;" f file: +exception_group_projection Objects/exceptions.c /^exception_group_projection(PyObject *eg, PyObject *keep)$/;" f file: +exception_handler Lib/test/test_asyncgen.py /^ def exception_handler(loop, context):$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_02 +exception_handler Lib/test/test_asyncgen.py /^ def exception_handler(loop, context):$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_exception_01 +exception_handler Lib/test/test_asyncgen.py /^ def exception_handler(loop, context):$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_exception_02 +exception_handler Lib/test/test_asyncgen.py /^ def exception_handler(loop, context):$/;" f function:AsyncGenAsyncioTest.test_asyncgen_nonstarted_hooks_are_cancellable +exception_pickle Lib/test/pickletester.py /^exception_pickle = b'\\x80\\x02cexceptions\\n?\\nq\\x00)Rq\\x01.'$/;" v +exception_print_context Python/pythonrun.c /^struct exception_print_context$/;" s file: +exception_recorders Lib/test/test_monitoring.py /^ exception_recorders = ($/;" v class:ExceptionMonitoringTest +exception_throwing_generator Lib/test/_test_multiprocessing.py /^def exception_throwing_generator(total, when):$/;" f +exceptiongroup_split_check_match Objects/exceptions.c /^exceptiongroup_split_check_match(PyObject *exc,$/;" f file: +exceptiongroup_split_recursive Objects/exceptions.c /^exceptiongroup_split_recursive(PyObject *exc,$/;" f file: +exceptiongroup_subset Objects/exceptions.c /^exceptiongroup_subset($/;" f file: +exceptions_init Modules/_xxinterpchannelsmodule.c /^exceptions_init(PyObject *mod)$/;" f file: +exceptions_init Modules/_xxsubinterpretersmodule.c /^exceptions_init(PyObject *mod)$/;" f file: +exceptiontable Include/internal/pycore_code.h /^ PyObject *exceptiontable;$/;" m struct:_PyCodeConstructor +excess_args Objects/typeobject.c /^excess_args(PyObject *args, PyObject *kwds)$/;" f file: +exclude_patterns Doc/conf.py /^exclude_patterns = ['includes\/*.rst', 'venv\/*', 'README.rst']$/;" v +excluded packaging/skipped_tests.py /^excluded = find_tests_in_spec(BASE)$/;" v +excludefilename Tools/i18n/pygettext.py /^ excludefilename = ''$/;" v class:main.Options +excobj Modules/cjkcodecs/multibytecodec.c /^ PyObject *excobj, *outobj;$/;" m struct:__anon322 file: +excobj Modules/cjkcodecs/multibytecodec.c /^ PyObject *excobj;$/;" m struct:__anon323 file: +excs Include/cpython/pyerrors.h /^ PyObject *excs;$/;" m struct:__anon181 +excs Python/bytecodes.c /^static PyObject *orig, *excs, *update, *b, *fromlist, *level, *from;$/;" v file: +exe PCbuild/idle.bat /^if "%1"=="-d" (set exe=%exe%_d) & shift & goto :CheckOpts$/;" v +exe PCbuild/idle.bat /^set exe=python$/;" v +exe PCbuild/rt.bat /^set exe=$/;" v +exe PCbuild/rt.bat /^set exe=%prefix%\\python%suffix%.exe$/;" v +exe_display PC/launcher.c /^ wchar_t exe_display[MAX_PATH];$/;" m struct:__anon286 file: +exe_extension Tools/c-analyzer/distutils/_msvccompiler.py /^ exe_extension = '.exe'$/;" v class:MSVCCompiler +exe_extension Tools/c-analyzer/distutils/bcppcompiler.py /^ exe_extension = '.exe'$/;" v class:BCPPCompiler +exe_extension Tools/c-analyzer/distutils/ccompiler.py /^ exe_extension = None # string$/;" v class:CCompiler +exe_extension Tools/c-analyzer/distutils/cygwinccompiler.py /^ exe_extension = ".exe"$/;" v class:CygwinCCompiler +exe_extension Tools/c-analyzer/distutils/msvc9compiler.py /^ exe_extension = '.exe'$/;" v class:MSVCCompiler +exe_extension Tools/c-analyzer/distutils/msvccompiler.py /^ exe_extension = '.exe'$/;" v class:MSVCCompiler +exe_extension Tools/c-analyzer/distutils/unixccompiler.py /^ exe_extension = ".exe"$/;" v class:UnixCCompiler +execRcLines Lib/pdb.py /^ def execRcLines(self):$/;" m class:Pdb +exec_body_callback Lib/dataclasses.py /^ def exec_body_callback(ns):$/;" f function:make_dataclass +exec_builtin_or_dynamic Python/import.c /^exec_builtin_or_dynamic(PyObject *mod) {$/;" f file: +exec_code_in_module Python/import.c /^exec_code_in_module(PyThreadState *tstate, PyObject *name,$/;" f file: +exec_module Lib/importlib/_bootstrap.py /^ def exec_module(module):$/;" m class:BuiltinImporter +exec_module Lib/importlib/_bootstrap.py /^ def exec_module(module):$/;" m class:FrozenImporter +exec_module Lib/importlib/_bootstrap_external.py /^ def exec_module(self, module):$/;" m class:ExtensionFileLoader +exec_module Lib/importlib/_bootstrap_external.py /^ def exec_module(self, module):$/;" m class:NamespaceLoader +exec_module Lib/importlib/_bootstrap_external.py /^ def exec_module(self, module):$/;" m class:_LoaderBasics +exec_module Lib/importlib/abc.py /^ exec_module = _bootstrap_external._LoaderBasics.exec_module$/;" v class:InspectLoader +exec_module Lib/importlib/util.py /^ def exec_module(self, module):$/;" m class:LazyLoader +exec_module Lib/test/test_import/__init__.py /^ def exec_module(*args):$/;" f function:ImportTracebackTests.test_import_bug +exec_module Lib/test/test_importlib/frozen/test_loader.py /^ def exec_module(self, name, origname=None):$/;" m class:ExecModuleTests +exec_module Lib/test/test_importlib/import_/test___loader__.py /^ def exec_module(self, module):$/;" m class:SpecLoaderMock +exec_module Lib/test/test_importlib/import_/test_api.py /^ def exec_module(module):$/;" m class:BadSpecFinderLoader +exec_module Lib/test/test_importlib/test_abc.py /^ def exec_module(self, module):$/;" m class:LoaderLoadModuleTests.loader.SpecLoader +exec_module Lib/test/test_importlib/test_lazy.py /^ def exec_module(self, module):$/;" m class:CollectInit +exec_module Lib/test/test_importlib/test_lazy.py /^ def exec_module(self, module):$/;" m class:TestingImporter +exec_module Lib/test/test_importlib/test_spec.py /^ def exec_module(self, module):$/;" m class:ModuleSpecMethodsTests.test_load_failed.FailedLoader +exec_module Lib/test/test_importlib/test_spec.py /^ def exec_module(self, module):$/;" m class:ModuleSpecMethodsTests.test_load_failed_removed.FailedLoader +exec_module Lib/test/test_importlib/test_spec.py /^ def exec_module(self, module):$/;" m class:ModuleSpecMethodsTests.test_load_replaced.ReplacingLoader +exec_module Lib/test/test_importlib/test_spec.py /^ def exec_module(self, module):$/;" m class:NewLoader +exec_module Lib/test/test_importlib/test_util.py /^ def exec_module(self, module):$/;" m class:ModuleFromSpecTests.test_no_create_module.Loader +exec_module Lib/test/test_importlib/util.py /^ def exec_module(self, module):$/;" m class:mock_spec +exec_module Lib/test/test_pkgutil.py /^ def exec_module(self, mod):$/;" m class:PkgutilPEP302Tests.MyTestLoader +exec_module PC/msvcrtmodule.c /^exec_module(PyObject* m)$/;" f file: +exec_module PC/winreg.c /^exec_module(PyObject *m)$/;" f file: +exec_module PC/winsound.c /^exec_module(PyObject *module)$/;" f file: +exec_prefix Include/cpython/initconfig.h /^ wchar_t *exec_prefix;$/;" m struct:PyConfig +exec_prefix Lib/test/test_getpath.py /^ exec_prefix=None,$/;" v +exec_prefix Modules/getpath.py /^ exec_prefix = EXEC_PREFIX$/;" v +exec_prefix Modules/getpath.py /^ exec_prefix = build_prefix$/;" v +exec_prefix Modules/getpath.py /^ exec_prefix = prefix$/;" v +exec_prefix Modules/getpath.py /^ exec_prefix = search_up(executable_dir, PLATSTDLIB_LANDMARK, test=isdir)$/;" v +exec_prefix Modules/getpath.py /^ exec_prefix = prefix$/;" v +exec_prefix Modules/getpath.py /^ exec_prefix = config.get('exec_prefix') or EXEC_PREFIX or prefix$/;" v +exec_prefix Modules/getpath.py /^exec_prefix = config.get('exec_prefix')$/;" v +exec_prefix Python/pathconfig.c /^ wchar_t *exec_prefix;$/;" m struct:_PyPathConfig file: +exec_results Lib/test/test_ast.py /^exec_results = [$/;" v +exec_tests Lib/test/test_ast.py /^exec_tests = [$/;" v +execfile Lib/idlelib/pyshell.py /^ def execfile(self, filename, source=None):$/;" m class:ModifiedInterpreter +execfunc Modules/_testmultiphase.c /^static int execfunc(PyObject *m)$/;" f file: +execfunc PC/_testconsole.c /^static int execfunc(PyObject *m)$/;" f file: +execfunc_err Modules/_testmultiphase.c /^execfunc_err(PyObject *mod)$/;" f file: +execfunc_raise Modules/_testmultiphase.c /^execfunc_raise(PyObject *spec)$/;" f file: +execfunc_unreported_exception Modules/_testmultiphase.c /^execfunc_unreported_exception(PyObject *mod)$/;" f file: +execl Lib/os.py /^def execl(file, *args):$/;" f +execle Lib/os.py /^def execle(file, *args):$/;" f +execlp Lib/os.py /^def execlp(file, *args):$/;" f +execlpe Lib/os.py /^def execlpe(file, *args):$/;" f +execsitecustomize Lib/site.py /^def execsitecustomize():$/;" f +execsource Lib/idlelib/pyshell.py /^ def execsource(self, source):$/;" m class:ModifiedInterpreter +execusercustomize Lib/site.py /^def execusercustomize():$/;" f +executable Include/cpython/initconfig.h /^ wchar_t *executable;$/;" m struct:PyConfig +executable Lib/http/server.py /^def executable(path):$/;" f +executable Lib/test/test_getpath.py /^ executable=None,$/;" v +executable Lib/unittest/__main__.py /^ executable = os.path.basename(sys.executable)$/;" v +executable Modules/getpath.py /^ executable = p$/;" v +executable Modules/getpath.py /^ executable = real_executable$/;" v +executable Modules/getpath.py /^ executable = ''$/;" v +executable Modules/getpath.py /^ executable = ENV_PYTHONEXECUTABLE or ENV___PYVENV_LAUNCHER__$/;" v +executable Modules/getpath.py /^ executable = abspath(program_name)$/;" v +executable Modules/getpath.py /^ executable = real_executable$/;" v +executable Modules/getpath.py /^executable = config.get('executable')$/;" v +executable PC/launcher.c /^ wchar_t executable[MAX_PATH];$/;" m struct:__anon286 file: +executable PC/launcher2.c /^ const wchar_t *executable;$/;" m struct:__anon284 file: +executableArgs PC/launcher2.c /^ const wchar_t *executableArgs;$/;" m struct:EnvironmentInfo file: +executableArgs PC/launcher2.c /^ const wchar_t *executableArgs;$/;" m struct:__anon284 file: +executableArgsLength PC/launcher2.c /^ int executableArgsLength;$/;" m struct:__anon284 file: +executableLength PC/launcher2.c /^ int executableLength;$/;" m struct:__anon284 file: +executablePath PC/launcher2.c /^ const wchar_t *executablePath;$/;" m struct:EnvironmentInfo file: +executablePath PC/launcher2.c /^ const wchar_t *executablePath;$/;" m struct:__anon284 file: +executable_dir Lib/test/test_getpath.py /^ executable_dir="",$/;" v class:MockGetPathTests +executable_dir Modules/getpath.py /^ executable_dir = realpath(library_dir)$/;" v +executable_dir Modules/getpath.py /^ executable_dir = abspath('.')$/;" v +executable_dir Modules/getpath.py /^ executable_dir = dirname(executable)$/;" v +executables Tools/c-analyzer/distutils/_msvccompiler.py /^ executables = {}$/;" v class:MSVCCompiler +executables Tools/c-analyzer/distutils/bcppcompiler.py /^ executables = {}$/;" v class:BCPPCompiler +executables Tools/c-analyzer/distutils/msvc9compiler.py /^ executables = {}$/;" v class:MSVCCompiler +executables Tools/c-analyzer/distutils/msvccompiler.py /^ executables = {}$/;" v class:MSVCCompiler +executables Tools/c-analyzer/distutils/unixccompiler.py /^ executables = {'preprocessor' : None,$/;" v class:UnixCCompiler +execute Lib/sqlite3/__main__.py /^def execute(c, sql, suppress_errors=True):$/;" f +execute Lib/test/test_asyncio/test_subprocess.py /^ async def execute():$/;" f function:SubprocessMixin.GenericWatcherTests.test_create_subprocess_fails_with_inactive_watcher +execute Lib/test/test_asyncio/test_subprocess.py /^ async def execute():$/;" f function:SubprocessMixin.test_create_subprocess_exec_text_mode_fails +execute Lib/test/test_asyncio/test_subprocess.py /^ async def execute():$/;" f function:SubprocessMixin.test_create_subprocess_exec_with_path +execute Lib/test/test_asyncio/test_subprocess.py /^ async def execute():$/;" f function:SubprocessMixin.test_create_subprocess_shell_text_mode_fails +execute Lib/test/test_asyncio/test_subprocess.py /^ async def execute():$/;" f function:SubprocessMixin.test_read_stdout_after_process_exit +execute Lib/test/test_importlib/resources/test_open.py /^ def execute(self, package, path):$/;" m class:CommonBinaryTests +execute Lib/test/test_importlib/resources/test_open.py /^ def execute(self, package, path):$/;" m class:CommonTextTests +execute Lib/test/test_importlib/resources/test_path.py /^ def execute(self, package, path):$/;" m class:CommonTests +execute Lib/test/test_importlib/resources/test_read.py /^ def execute(self, package, path):$/;" m class:CommonBinaryTests +execute Lib/test/test_importlib/resources/test_read.py /^ def execute(self, package, path):$/;" m class:CommonTextTests +execute Lib/test/test_importlib/resources/util.py /^ def execute(self, package, path):$/;" m class:CommonTests +executed Lib/test/test_inspect.py /^ executed = False$/;" v class:TestGetattrStatic.test_class_as_property.Something +executed Lib/test/test_inspect.py /^ executed = False$/;" v class:TestGetattrStatic.test_metaclass_dict_as_property.Thing +executed Lib/test/test_inspect.py /^ executed = False$/;" v class:TestGetattrStatic.test_metaclass_with_metaclass_with_dict_as_property.Meta +executing Lib/idlelib/pyshell.py /^ executing = False$/;" v class:PyShell +executing Modules/_sre/sre.h /^ int executing;$/;" m struct:__anon459 +execution_count Include/pystats.h /^ uint64_t execution_count;$/;" m struct:_opcode_stats +executor_kwargs Lib/test/test_concurrent_futures/util.py /^ executor_kwargs = {}$/;" v class:ExecutorMixin +executor_type Lib/test/test_concurrent_futures/util.py /^ executor_type = futures.ProcessPoolExecutor$/;" v class:ProcessPoolForkMixin +executor_type Lib/test/test_concurrent_futures/util.py /^ executor_type = futures.ProcessPoolExecutor$/;" v class:ProcessPoolForkserverMixin +executor_type Lib/test/test_concurrent_futures/util.py /^ executor_type = futures.ProcessPoolExecutor$/;" v class:ProcessPoolSpawnMixin +executor_type Lib/test/test_concurrent_futures/util.py /^ executor_type = futures.ThreadPoolExecutor$/;" v class:ThreadPoolMixin +execvp Lib/os.py /^def execvp(file, args):$/;" f +execvpe Lib/os.py /^def execvpe(file, args, env):$/;" f +exedir PCbuild/idle.bat /^if \/I %1 EQU ARM (set exedir=%PCBUILD%\\arm32)$/;" v +exedir PCbuild/idle.bat /^if \/I %1 EQU ARM64 (set exedir=%PCBUILD%\\arm64)$/;" v +exedir PCbuild/idle.bat /^if \/I %1 EQU Win32 (set exedir=%PCBUILD%\\win32)$/;" v +exedir PCbuild/idle.bat /^if \/I %1 EQU x64 (set exedir=%PCBUILD%\\amd64)$/;" v +exedir PCbuild/idle.bat /^set exedir=%PCBUILD%\\amd64$/;" v +exhaust Lib/test/test_iter.py /^ def exhaust(iterator):$/;" f function:TestCase.test_iter_function_concealing_reentrant_exhaustion +existing Lib/test/test_unittest/testmock/testhelpers.py /^ def existing(a, b):$/;" m class:SpecSignatureTest.test_skip_attributeerrors.RaiserClass +exists Lib/genericpath.py /^def exists(path):$/;" f +exists Lib/pathlib.py /^ def exists(self, *, follow_symlinks=True):$/;" m class:Path +exists Lib/site.py /^ def exists(path):$/;" f function:_script +exists Lib/tkinter/ttk.py /^ def exists(self, item):$/;" m class:Treeview +exists Lib/zipfile/_path/__init__.py /^ def exists(self):$/;" m class:Path +exit Include/internal/pycore_faulthandler.h /^ int exit;$/;" m struct:_faulthandler_runtime_state::__anon127 +exit Lib/argparse.py /^ def exit(self, status=0, message=None):$/;" m class:ArgumentParser +exit Lib/idlelib/run.py /^def exit():$/;" f +exit Lib/optparse.py /^ def exit(self, status=0, msg=None):$/;" m class:OptionParser +exit Lib/test/test_argparse.py /^ def exit(self, *args, **kwargs):$/;" m class:ErrorRaisingArgumentParser +exit Lib/test/test_optparse.py /^ def exit(self, status=0, msg=None):$/;" m class:InterceptingOptionParser +exit Lib/test/test_unittest/test_discovery.py /^ exit = True$/;" v class:TestableTestProgram +exit Lib/test/test_unittest/test_program.py /^ exit = False$/;" v class:InitialisableProgram +exit Programs/_testembed.c /^ int exit;$/;" m struct:__anon752 file: +exitGracefully Lib/turtle.py /^ def exitGracefully(x, y):$/;" f function:_Screen.exitonclick +exit_coroutine Lib/test/test_unittest/testmock/testasync.py /^ async def exit_coroutine(*args):$/;" f function:AsyncContextManagerTest.test_mock_customize_async_context_manager_with_coroutine +exit_event Modules/_testcapimodule.c /^ PyThread_type_lock exit_event;$/;" m struct:__anon589 file: +exit_func Python/bytecodes.c /^static PyObject *exit_func, *lasti, *val, *retval, *obj, *iter;$/;" v file: +exit_now Lib/idlelib/run.py /^exit_now = False$/;" v +exit_sigint Modules/main.c /^exit_sigint(void)$/;" f file: +exit_stack Lib/test/test_contextlib.py /^ exit_stack = ExitStack$/;" v class:TestExitStack +exit_stack Lib/test/test_contextlib.py /^ exit_stack = None$/;" v class:TestBaseExitStack +exit_stack Lib/test/test_contextlib_async.py /^ exit_stack = SyncAsyncExitStack$/;" v class:TestAsyncExitStack +exit_status Lib/compileall.py /^ exit_status = int(not main())$/;" v +exit_status Tools/build/verify_ensurepip_wheels.py /^ exit_status = 1$/;" v +exit_status Tools/build/verify_ensurepip_wheels.py /^ exit_status = 0$/;" v +exitcode Include/cpython/initconfig.h /^ int exitcode;$/;" m struct:__anon198 +exitcode Lib/multiprocessing/dummy/__init__.py /^ def exitcode(self):$/;" m class:DummyProcess +exitcode Lib/multiprocessing/process.py /^ def exitcode(self):$/;" m class:BaseProcess +exithook Lib/idlelib/rpc.py /^ def exithook(self):$/;" m class:SocketIO +exithook Lib/idlelib/run.py /^ def exithook(self):$/;" m class:MyHandler +exitonclick Lib/turtle.py /^ def exitonclick(self):$/;" m class:_Screen +exp Lib/_pydecimal.py /^ def exp(self, a):$/;" m class:Context +exp Lib/_pydecimal.py /^ def exp(self, context=None):$/;" m class:Decimal +exp Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t exp;$/;" m struct:mpd_t +exp Modules/_decimal/libmpdec/mpdecimal.h /^ int64_t exp;$/;" m struct:__anon342 +exp Modules/_decimal/tests/deccheck.py /^ def exp(self, t):$/;" m class:SkipHandler +exp_special_values Modules/cmathmodule.c /^static Py_complex exp_special_values[7][7];$/;" v file: +exp_to_string Modules/_decimal/libmpdec/io.c /^exp_to_string(char *s, mpd_ssize_t x)$/;" f file: +expand Lib/idlelib/squeezer.py /^ def expand(self, event=None):$/;" m class:ExpandingButton +expand Lib/idlelib/tree.py /^ def expand(self, event=None):$/;" m class:TreeNode +expand Lib/test/test_itertools.py /^ def expand(it, i=0):$/;" f function:TestBasicOps.pickletest +expandNode Lib/xml/dom/pulldom.py /^ def expandNode(self, node):$/;" m class:DOMEventStream +expand_default Lib/optparse.py /^ def expand_default(self, option):$/;" m class:HelpFormatter +expand_encodebuffer Modules/cjkcodecs/multibytecodec.c /^expand_encodebuffer(MultibyteEncodeBuffer *buf, Py_ssize_t esize)$/;" f file: +expand_filenames Tools/c-analyzer/c_common/fsutil.py /^def expand_filenames(filenames):$/;" f +expand_makefile_vars Lib/sysconfig.py /^def expand_makefile_vars(s, vars):$/;" f +expand_prog_name Lib/optparse.py /^ def expand_prog_name(self, s):$/;" m class:OptionParser +expand_range Tools/unicode/makeunicodedata.py /^def expand_range(char_range: str) -> Iterator[int]:$/;" f +expand_substates Lib/idlelib/multicall.py /^def expand_substates(states):$/;" f +expand_tabs Lib/difflib.py /^ def expand_tabs(line):$/;" f function:HtmlDiff._tab_newline_replace +expand_template Modules/_sre/sre.c /^expand_template(TemplateObject *self, MatchObject *match)$/;" f file: +expand_word_event Lib/idlelib/autoexpand.py /^ def expand_word_event(self, event):$/;" m class:AutoExpand +expandable Lib/idlelib/tree.py /^ expandable = None$/;" v class:TreeItem +expanded Tools/unicode/makeunicodedata.py /^ def expanded(self) -> Iterator[Tuple[int, List[str]]]:$/;" m class:UcdFile +expandtabs Lib/collections/__init__.py /^ def expandtabs(self, tabsize=8):$/;" m class:UserString +expanduser Lib/ntpath.py /^def expanduser(path):$/;" f +expanduser Lib/pathlib.py /^ def expanduser(self):$/;" m class:Path +expanduser Lib/posixpath.py /^def expanduser(path):$/;" f +expandvars Lib/ntpath.py /^def expandvars(path):$/;" f +expandvars Lib/posixpath.py /^def expandvars(path):$/;" f +expandvars Tools/freeze/checkextensions.py /^def expandvars(str, vars):$/;" f +expat Include/pyhash.h /^ } expat;$/;" m union:__anon256 typeref:struct:__anon256::__anon260 +expat_capi Modules/_elementtree.c /^ struct PyExpat_CAPI *expat_capi;$/;" m struct:__anon381 typeref:struct:__anon381::PyExpat_CAPI file: +expat_comment_handler Modules/_elementtree.c /^expat_comment_handler(XMLParserObject* self, const XML_Char* comment_in)$/;" f file: +expat_data_handler Modules/_elementtree.c /^expat_data_handler(XMLParserObject* self, const XML_Char* data_in,$/;" f file: +expat_default_handler Modules/_elementtree.c /^expat_default_handler(XMLParserObject* self, const XML_Char* data_in,$/;" f file: +expat_end_handler Modules/_elementtree.c /^expat_end_handler(XMLParserObject* self, const XML_Char* tag_in)$/;" f file: +expat_end_ns_handler Modules/_elementtree.c /^expat_end_ns_handler(XMLParserObject* self, const XML_Char* prefix_in)$/;" f file: +expat_parse Modules/_elementtree.c /^expat_parse(elementtreestate *st, XMLParserObject *self, const char *data,$/;" f +expat_pi_handler Modules/_elementtree.c /^expat_pi_handler(XMLParserObject* self, const XML_Char* target_in,$/;" f file: +expat_set_error Modules/_elementtree.c /^expat_set_error(elementtreestate *st, enum XML_Error error_code,$/;" f file: +expat_start_doctype_handler Modules/_elementtree.c /^expat_start_doctype_handler(XMLParserObject *self,$/;" f file: +expat_start_handler Modules/_elementtree.c /^expat_start_handler(XMLParserObject* self, const XML_Char* tag_in,$/;" f file: +expat_start_ns_handler Modules/_elementtree.c /^expat_start_ns_handler(XMLParserObject* self, const XML_Char* prefix_in,$/;" f file: +expdigits Modules/_decimal/tests/randdec.py /^def expdigits(maxexp):$/;" f +expect Lib/lib2to3/pgen2/pgen.py /^ def expect(self, type, value=None):$/;" m class:ParserGenerator +expect Lib/telnetlib.py /^ def expect(self, list, timeout=None):$/;" m class:Telnet +expect Tools/cases_generator/plexer.py /^ def expect(self, kind: str) -> Token | None:$/;" m class:PLexer +expect Tools/peg_generator/pegen/parser.py /^ def expect(self, type: str) -> Optional[tokenize.TokenInfo]:$/;" m class:Parser +expect_body Lib/test/test_nntplib.py /^ def expect_body(self):$/;" m class:NNTPv1Handler +expect_channel_closed Lib/test/test__xxinterpchannels.py /^def expect_channel_closed():$/;" f +expect_closed_error Lib/test/test__xxinterpchannels.py /^ def expect_closed_error(self, end=None):$/;" m class:ChannelCloseFixture +expect_exception Lib/test/test_tarfile.py /^ def expect_exception(self, exc_type, message_re='.'):$/;" m class:TestExtractionFilters +expect_failure Lib/test/test_clinic.py /^ def expect_failure(self, *args):$/;" m class:ClinicExternalTest +expect_failure Lib/test/test_clinic.py /^ def expect_failure(self, raw):$/;" m class:ClinicWholeFileTest +expect_failure Lib/test/test_sqlite3/test_cli.py /^ def expect_failure(self, *args):$/;" m class:CommandLineInterface +expect_file Lib/test/test_tarfile.py /^ def expect_file(self, name, type=None, symlink_to=None, mode=None,$/;" m class:TestExtractionFilters +expect_forced Tools/peg_generator/pegen/parser.py /^ def expect_forced(self, res: Any, expectation: str) -> Optional[tokenize.TokenInfo]:$/;" m class:Parser +expect_import_error Lib/test/test_runpy.py /^ def expect_import_error(self, mod_name):$/;" m class:RunModuleTestCase +expect_parser_failure Lib/test/test_clinic.py /^ def expect_parser_failure(self, parser, _input):$/;" m class:_ParserBase +expect_success Lib/test/test_clinic.py /^ def expect_success(self, *args):$/;" m class:ClinicExternalTest +expect_success Lib/test/test_sqlite3/test_cli.py /^ def expect_success(self, *args):$/;" m class:CommandLineInterface +expect_unraisable Lib/test/test_ctypes/test_random_things.py /^ def expect_unraisable(self, exc_type, exc_msg=None):$/;" m class:CallbackTracbackTestCase +expected Lib/test/datetimetester.py /^ expected = fstart + FEastern.stdoffset$/;" v class:TestTimezoneConversions.test_fromutc.FauxUSTimeZone +expected Lib/test/datetimetester.py /^ expected = start.replace(hour=wall)$/;" v class:TestTimezoneConversions.test_fromutc.FauxUSTimeZone +expected Lib/test/pickletester.py /^ expected = "changed size during iteration"$/;" v class:AbstractPickleTests.test_evil_pickler_mutating_collection.check.EvilPickler +expected Lib/test/test_ctypes/test_values.py /^ expected = _imp._frozen_module_names()$/;" v class:PythonValuesTestCase.test_frozentable.struct_frozen +expected Lib/test/test_ctypes/test_win32.py /^ expected = bytes([ord('a') + i])$/;" v class:ReturnStructSizesTestCase.test_sizes.S +expected Lib/test/test_dis.py /^ def expected(count, w):$/;" f function:DisTests.test_big_offsets +expected Lib/test/test_hmac.py /^ expected = ($/;" v class:ConstructorTestCase +expected Lib/test/test_importlib/resources/test_contents.py /^ expected = {$/;" v class:ContentsNamespaceTests +expected Lib/test/test_importlib/resources/test_contents.py /^ expected = {$/;" v class:ContentsTests +expected Lib/test/test_multibytecodec.py /^ expected = b'\\x1b$B@$@$'$/;" v class:TestStateful +expected Lib/test/test_multibytecodec.py /^ expected = b'~{ADAD'$/;" v class:TestHZStateful +expected Lib/test/test_sys.py /^ expected = self.write_unraisable_exc($/;" v class:UnraisableHookTest.test_original_unraisablehook_exception_qualname.A.B.X +expected Lib/test/test_unittest/testmock/testhelpers.py /^ expected = [$/;" v class:AnyTest.test_any_mock_calls_comparison_order.Foo +expected Programs/_testembed.c /^ const char* expected;$/;" m struct:__anon752 file: +expectedFailure Lib/unittest/case.py /^def expectedFailure(test_item):$/;" f +expectedFailureIfStdinIsTTY Lib/test/test_pty.py /^def expectedFailureIfStdinIsTTY(fun):$/;" f +expected_body Lib/test/test_httplib.py /^ expected_body = b"It's just a flesh wound"$/;" v class:TransferEncodingTest +expected_data_docstrings Lib/test/test_pydoc.py /^ expected_data_docstrings = ($/;" v class:nonascii +expected_data_docstrings Lib/test/test_pydoc.py /^ expected_data_docstrings = ('', '', '', '')$/;" v +expected_f_line Lib/test/test_dis.py /^expected_f_line = code_object_f.co_firstlineno - _line_offset$/;" v +expected_html_data_docstrings Lib/test/test_pydoc.py /^expected_html_data_docstrings = tuple(s.replace(' ', ' ')$/;" v +expected_inner_line Lib/test/test_dis.py /^expected_inner_line = code_object_inner.co_firstlineno - _line_offset$/;" v +expected_jumpy_line Lib/test/test_dis.py /^expected_jumpy_line = 1$/;" v +expected_log_pat Lib/test/test_logging.py /^ expected_log_pat = r"^([\\w.]+) -> (\\w+): (\\d+)$"$/;" v class:BaseTest +expected_log_pat Lib/test/test_logging.py /^ expected_log_pat = r"^(\\w+) \\+\\+ (\\w+)$"$/;" v class:ConfigDictTest +expected_log_pat Lib/test/test_logging.py /^ expected_log_pat = r"^(\\w+) \\+\\+ (\\w+)$"$/;" v class:ConfigFileTest +expected_log_pat Lib/test/test_logging.py /^ expected_log_pat = r"^[\\w.]+ -> (\\w+): (\\d+)$"$/;" v class:CustomLevelsAndFiltersTest +expected_log_pat Lib/test/test_logging.py /^ expected_log_pat = r"^[\\w.]+ -> (\\w+): (\\d+)$"$/;" v class:MemoryHandlerTest +expected_log_pat Lib/test/test_logging.py /^ expected_log_pat = r"^[\\w.]+ -> (\\w+): (\\d+)$"$/;" v class:QueueHandlerTest +expected_max_output Lib/test/test_cprofile.py /^ expected_max_output = "{built-in method builtins.max}"$/;" v class:CProfileTest +expected_max_output Lib/test/test_profile.py /^ expected_max_output = ':0(max)'$/;" v class:ProfileTest +expected_metadata Lib/test/test_statistics.py /^ expected_metadata = ["__doc__", "__all__"]$/;" v class:GlobalsTest +expected_opinfo_f Lib/test/test_dis.py /^expected_opinfo_f = [$/;" v +expected_opinfo_inner Lib/test/test_dis.py /^expected_opinfo_inner = [$/;" v +expected_opinfo_jumpy Lib/test/test_dis.py /^expected_opinfo_jumpy = [$/;" v +expected_opinfo_outer Lib/test/test_dis.py /^expected_opinfo_outer = [$/;" v +expected_opinfo_simple Lib/test/test_dis.py /^expected_opinfo_simple = [$/;" v +expected_outer_line Lib/test/test_dis.py /^expected_outer_line = 1$/;" v +expected_reset Lib/test/test_multibytecodec.py /^ expected_reset = expected + reset$/;" v class:TestHZStateful +expected_reset Lib/test/test_multibytecodec.py /^ expected_reset = expected + reset$/;" v class:TestStateful +expected_task_count Lib/test/test_asyncio/test_eager_task_factory.py /^ expected_task_count = 0$/;" v class:BaseEagerTaskFactoryTests +expected_task_count Lib/test/test_asyncio/test_eager_task_factory.py /^ expected_task_count = 781 # 1 + 5 + 5^2 + 5^3 + 5^4$/;" v class:BaseNonEagerTaskFactoryTests +expected_task_count Lib/test/test_asyncio/test_eager_task_factory.py /^ expected_task_count = None$/;" v class:BaseTaskCountingTests +expected_text_data_docstrings Lib/test/test_pydoc.py /^expected_text_data_docstrings = tuple('\\n | ' + s if s else ''$/;" v +expected_traceback Lib/test/test_faulthandler.py /^def expected_traceback(lineno1, lineno2, header, min_count=1):$/;" f +expected_tryorder Lib/test/test_webbrowser.py /^ expected_tryorder = ['Example1', 'example2']$/;" v class:BrowserRegistrationTest._check_registration.ExampleBrowser +expected_tryorder Lib/test/test_webbrowser.py /^ expected_tryorder = ['example2', 'Example1']$/;" v class:BrowserRegistrationTest._check_registration.ExampleBrowser +expectedchecksum Lib/test/test_unicodedata.py /^ expectedchecksum = '26ff0d31c14194b4606a5b3a81ac36df3a14e331'$/;" v class:UnicodeFunctionsTest +expectedchecksum Lib/test/test_unicodedata.py /^ expectedchecksum = 'e708c31c0d51f758adf475cb7201cf80917362be'$/;" v class:UnicodeMethodsTest +experimental Tools/wasm/wasm_build.py /^ experimental = "experimental, may be broken"$/;" v class:SupportLevel +expired Lib/asyncio/timeouts.py /^ def expired(self) -> bool:$/;" m class:Timeout +explain Lib/test/support/_hypothesis_stubs/__init__.py /^ explain = 5$/;" v class:Phase +explain_incompatible_stack Objects/frameobject.c /^explain_incompatible_stack(int64_t to_stack)$/;" f file: +explicit Lib/lib2to3/fixer_base.py /^ explicit = False # Is this ignored by refactor.py -f all?$/;" v class:BaseFix +explicit Lib/lib2to3/fixes/fix_buffer.py /^ explicit = True # The user must ask for this fixer$/;" v class:FixBuffer +explicit Lib/lib2to3/fixes/fix_idioms.py /^ explicit = True # The user must ask for this fixer$/;" v class:FixIdioms +explicit Lib/lib2to3/fixes/fix_set_literal.py /^ explicit = True$/;" v class:FixSetLiteral +explicit Lib/lib2to3/fixes/fix_ws_comma.py /^ explicit = True # The user must ask for this fixers$/;" v class:FixWsComma +explicit Lib/test/support/_hypothesis_stubs/__init__.py /^ explicit = 0$/;" v class:Phase +explicit Lib/test/test_lib2to3/data/fixers/myfixes/fix_explicit.py /^ explicit = True$/;" v class:FixExplicit +explicitOverrideSearch PC/launcher2.c /^explicitOverrideSearch(const SearchInfo *search, EnvironmentInfo **result)$/;" f +exploded Lib/ipaddress.py /^ def exploded(self):$/;" m class:_IPAddressBase +explodingTruncation Lib/test/test_unittest/test_case.py /^ def explodingTruncation(message, diff):$/;" f function:Test_TestCase.testAssertEqual_diffThreshold +expn Lib/smtplib.py /^ def expn(self, address):$/;" m class:SMTP +exponent_part Modules/_decimal/tests/randdec.py /^def exponent_part(maxexp):$/;" f +exported Tools/c-analyzer/cpython/_builtin_types.py /^ def exported(self):$/;" m class:BuiltinTypeInfo +exports Include/cpython/memoryobject.h /^ Py_ssize_t exports; \/* number of buffer re-exports *\/$/;" m struct:__anon191 +exports Include/cpython/memoryobject.h /^ Py_ssize_t exports; \/* number of direct memoryview exports *\/$/;" m struct:__anon190 +exports Modules/_io/bytesio.c /^ Py_ssize_t exports;$/;" m struct:__anon439 file: +exports Modules/_testbuffer.c /^ Py_ssize_t exports; \/* number of exports *\/$/;" m struct:ndbuf file: +exports Modules/mmapmodule.c /^ Py_ssize_t exports;$/;" m struct:__anon490 file: +expovariate Lib/random.py /^ def expovariate(self, lambd=1.0):$/;" m class:Random +expovariate Lib/random.py /^expovariate = _inst.expovariate$/;" v +expr Lib/test/test_ast.py /^ def expr(self, node, msg=None, *, exc=ValueError):$/;" m class:ASTValidatorTests +expr Parser/pegen.h /^ expr_ty expr;$/;" m struct:__anon658 +expr_as_unicode Python/ast_unparse.c /^expr_as_unicode(expr_ty e, int level)$/;" f file: +expr_attributes Python/Python-ast.c /^static const char * const expr_attributes[] = {$/;" v file: +expr_context_name Python/ast.c /^expr_context_name(expr_context_ty ctx)$/;" f file: +expr_context_ty Include/internal/pycore_ast.h /^typedef enum _expr_context { Load=1, Store=2, Del=3 } expr_context_ty;$/;" t typeref:enum:_expr_context +expr_context_type Include/internal/pycore_ast_state.h /^ PyObject *expr_context_type;$/;" m struct:ast_state +expr_str Lib/test/test_dis.py /^expr_str = "x + 1"$/;" v +expr_ty Include/internal/pycore_ast.h /^typedef struct _expr *expr_ty;$/;" t typeref:struct:_expr +expr_type Include/internal/pycore_ast_state.h /^ PyObject *expr_type;$/;" m struct:ast_state +expression Tools/cases_generator/parser.py /^ def expression(self) -> Expression | None:$/;" m class:Parser +expression_rule Parser/parser.c /^expression_rule(Parser *p)$/;" f file: +expression_type Parser/parser.c 185;" d file: +expression_without_invalid_rule Parser/parser.c /^expression_without_invalid_rule(Parser *p)$/;" f file: +expression_without_invalid_type Parser/parser.c 276;" d file: +expressions_rule Parser/parser.c /^expressions_rule(Parser *p)$/;" f file: +expressions_type Parser/parser.c 184;" d file: +exptected_properties Lib/test/test_plistlib.py /^ exptected_properties = {$/;" v class:TestPlutil +expunge Lib/imaplib.py /^ def expunge(self):$/;" m class:IMAP4 +ext-submod Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun ext-submod (a b m base)$/;" f +ext-submod-2 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun ext-submod-2 (a b m base)$/;" f +ext-submod-2-correct Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd ext-submod-2-correct$/;" f +ext-submod-ext-submod-2-equal Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd ext-submod-ext-submod-2-equal$/;" f +ext_convert Lib/logging/config.py /^ def ext_convert(self, value):$/;" m class:BaseConfigurator +ext_decompress Lib/test/test_bz2.py /^def ext_decompress(data):$/;" f +ext_submod Modules/_decimal/libmpdec/umodarith.h /^ext_submod(mpd_uint_t a, mpd_uint_t b, mpd_uint_t m)$/;" f +extend Lib/_collections_abc.py /^ def extend(self, values):$/;" m class:MutableSequence +extend Lib/collections/__init__.py /^ def extend(self, other):$/;" m class:UserList +extend Lib/test/test_argparse.py /^ def extend(str_to_convert):$/;" f function:TestTypeFunctionCalledOnDefault.test_no_double_type_conversion_of_default +extend Lib/xml/etree/ElementTree.py /^ def extend(self, elements):$/;" m class:Element +extend_path Lib/pkgutil.py /^def extend_path(path, name):$/;" f +extended Lib/email/_header_value_parser.py /^ extended = False$/;" v class:Parameter +extended_arg_quick Lib/test/test_dis.py /^def extended_arg_quick():$/;" f +extended_context_template Modules/_decimal/_decimal.c /^static PyObject *extended_context_template = NULL;$/;" v file: +extended_frame_gen Lib/traceback.py /^ def extended_frame_gen():$/;" f function:StackSummary.extract +extended_linecache_checkcache Lib/idlelib/pyshell.py /^def extended_linecache_checkcache(filename=None,$/;" f +extension Doc/includes/email-read-alternative.py /^ extension = mimetypes.guess_extension(part.get_content_type())$/;" v +extension Doc/includes/email-read-alternative.py /^ extension = os.path.splitext(part.get_filename())[1]$/;" v +extension_cache Modules/_pickle.c /^ PyObject *extension_cache;$/;" m struct:__anon448 file: +extension_registry Modules/_pickle.c /^ PyObject *extension_registry;$/;" m struct:__anon448 file: +extension_selected Lib/idlelib/configdialog.py /^ def extension_selected(self, event):$/;" m class:ExtPage +extensions Doc/conf.py /^extensions = [$/;" v +extensions Include/internal/pycore_import.h /^ } extensions;$/;" m struct:_import_runtime_state typeref:struct:_import_runtime_state::__anon136 +extensions_lock_acquire Python/import.c /^extensions_lock_acquire(void)$/;" f file: +extensions_lock_release Python/import.c /^extensions_lock_release(void)$/;" f file: +extensions_map Tools/wasm/wasm_webserver.py /^ extensions_map = server.SimpleHTTPRequestHandler.extensions_map.copy()$/;" v class:MyHTTPRequestHandler +external Lib/test/test_scope.py /^ def external():$/;" f function:ScopeTests.testCellIsArgAndEscapes +external Lib/test/test_scope.py /^ def external():$/;" f function:ScopeTests.testCellIsLocalAndEscapes +externalEntityContentProcessor Modules/expat/xmlparse.c /^externalEntityContentProcessor(XML_Parser parser, const char *start,$/;" f file: +externalEntityContentProcessor Modules/expat/xmlparse.c /^static Processor externalEntityContentProcessor;$/;" v file: +externalEntityInitProcessor Modules/expat/xmlparse.c /^externalEntityInitProcessor(XML_Parser parser, const char *start,$/;" f file: +externalEntityInitProcessor Modules/expat/xmlparse.c /^static Processor externalEntityInitProcessor;$/;" v file: +externalEntityInitProcessor2 Modules/expat/xmlparse.c /^externalEntityInitProcessor2(XML_Parser parser, const char *start,$/;" f file: +externalEntityInitProcessor2 Modules/expat/xmlparse.c /^static Processor externalEntityInitProcessor2;$/;" v file: +externalEntityInitProcessor3 Modules/expat/xmlparse.c /^externalEntityInitProcessor3(XML_Parser parser, const char *start,$/;" f file: +externalEntityInitProcessor3 Modules/expat/xmlparse.c /^static Processor externalEntityInitProcessor3;$/;" v file: +externalParEntInitProcessor Modules/expat/xmlparse.c /^externalParEntInitProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +externalParEntInitProcessor Modules/expat/xmlparse.c /^static Processor externalParEntInitProcessor;$/;" v file: +externalParEntProcessor Modules/expat/xmlparse.c /^externalParEntProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +externalParEntProcessor Modules/expat/xmlparse.c /^static Processor externalParEntProcessor;$/;" v file: +externalSubset0 Modules/expat/xmlrole.c /^ externalSubset0, externalSubset1, condSect0, condSect1, condSect2,$/;" v file: +externalSubset0 Modules/expat/xmlrole.c /^externalSubset0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +externalSubset1 Modules/expat/xmlrole.c /^ externalSubset0, externalSubset1, condSect0, condSect1, condSect2,$/;" v file: +externalSubset1 Modules/expat/xmlrole.c /^externalSubset1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +externalTimer Modules/_lsprof.c /^ PyObject *externalTimer;$/;" m struct:__anon362 file: +externalTimerUnit Modules/_lsprof.c /^ double externalTimerUnit;$/;" m struct:__anon362 file: +external_dtd_subset Lib/xml/dom/xmlbuilder.py /^ external_dtd_subset = True$/;" v class:Options +external_entity_ref Lib/xml/sax/expatreader.py /^ def external_entity_ref(self, context, base, sysid, pubid):$/;" m class:ExpatParser +external_entity_ref_handler Lib/xml/dom/expatbuilder.py /^ def external_entity_ref_handler(self, context, base, systemId, publicId):$/;" m class:ExpatBuilder +external_entity_ref_handler Lib/xml/dom/expatbuilder.py /^ def external_entity_ref_handler(self, context, base, systemId, publicId):$/;" m class:FragmentBuilder +external_general_entities Lib/xml/dom/xmlbuilder.py /^ external_general_entities = True$/;" v class:Options +external_getitem Lib/test/test_code.py /^def external_getitem(self, i):$/;" f +external_parameter_entities Lib/xml/dom/xmlbuilder.py /^ external_parameter_entities = True$/;" v class:Options +extfiles Lib/idlelib/editor.py /^ extfiles = { # Map built-in config-extension section names to file names.$/;" v class:EditorWindow +extpage Lib/idlelib/idle_test/test_configdialog.py /^extpage = changes['extensions']$/;" v +extra Lib/test/test_scope.py /^ def extra(): # check freevars passing through non-use scopes$/;" f function:ScopeTests.testExtraNesting.make_adder2 +extra Lib/test/test_unittest/testmock/testpatch.py /^ extra = []$/;" v class:PatchTest.test_autospec_with_object.Bar +extra Modules/_elementtree.c /^ ElementObjectExtra* extra;$/;" m struct:__anon383 file: +extra74 Lib/test/inspect_fodder2.py /^extra74 = 74$/;" v +extra79 Lib/test/inspect_fodder2.py /^extra79 = 'stop'$/;" v +extra85 Lib/test/inspect_fodder2.py /^extra85 = 'stop'$/;" v +extra_code_index Include/internal/pycore_ceval_state.h /^ Py_ssize_t extra_code_index;$/;" m struct:_ceval_runtime_state::__anon166 +extra_code_index Python/perf_trampoline.c 191;" d file: +extract Lib/tarfile.py /^ def extract(self, member, path="", set_attrs=True, *, numeric_owner=False,$/;" m class:TarFile +extract Lib/test/test_traceback.py /^ def extract():$/;" f function:MiscTracebackCases.test_extract_stack +extract Lib/test/test_traceback.py /^ def extract(**kwargs):$/;" f function:LimitTests.test_extract_stack +extract Lib/test/test_traceback.py /^ def extract(**kwargs):$/;" f function:LimitTests.test_extract_tb +extract Lib/test/test_traceback.py /^ def extract(**kwargs):$/;" f function:LimitTests.test_format_exception +extract Lib/traceback.py /^ def extract(klass, frame_gen, *, limit=None, lookup_lines=True,$/;" m class:StackSummary +extract Lib/warnings.py /^ def extract():$/;" f function:_warn_unawaited_coroutine +extract Lib/zipfile/__init__.py /^ def extract(self, member, path=None, pwd=None):$/;" m class:ZipFile +extract Tools/ccbench/ccbench.py /^ def extract(z, j):$/;" f function:task_pidigits.calc_ndigits +extractArchive Mac/BuildScript/build-installer.py /^def extractArchive(builddir, archiveName):$/;" f +extract_anchors_from_expr Python/traceback.c /^extract_anchors_from_expr(const char *segment_str, expr_ty expr, Py_ssize_t *left_anchor, Py_ssize_t *right_anchor,$/;" f file: +extract_anchors_from_line Python/traceback.c /^extract_anchors_from_line(PyObject *filename, PyObject *line,$/;" f file: +extract_anchors_from_stmt Python/traceback.c /^extract_anchors_from_stmt(const char *segment_str, stmt_ty statement, Py_ssize_t *left_anchor, Py_ssize_t *right_anchor,$/;" f file: +extract_block_text Tools/cases_generator/generate_cases.py /^def extract_block_text(block: parser.Block) -> tuple[list[str], bool, list[str], int]:$/;" f +extract_cookies Lib/http/cookiejar.py /^ def extract_cookies(self, response, request):$/;" m class:CookieJar +extract_cookies Lib/test/test_urllib2.py /^ def extract_cookies(self, response, request):$/;" m class:MockCookieJar +extract_docstrings_from_str Lib/test/test_tools/test_i18n.py /^ def extract_docstrings_from_str(self, module_content):$/;" m class:Test_pygettext +extract_files Tools/peg_generator/scripts/test_pypi_packages.py /^def extract_files(filename: str) -> None:$/;" f +extract_line Tools/cases_generator/plexer.py /^ def extract_line(self, lineno: int) -> str:$/;" m class:PLexer +extract_opcode_stats Tools/scripts/summarize_stats.py /^def extract_opcode_stats(stats):$/;" f +extract_pip_files PC/layout/support/pip.py /^def extract_pip_files(ns):$/;" f +extract_stack Lib/asyncio/format_helpers.py /^def extract_stack(f=None, limit=None):$/;" f +extract_stack Lib/traceback.py /^def extract_stack(f=None, limit=None):$/;" f +extract_tb Lib/traceback.py /^def extract_tb(tb, limit=None):$/;" f +extract_with_none Lib/test/test_tarfile.py /^ def extract_with_none(self, *attr_names):$/;" m class:NoneInfoExtractTests +extract_zip PCbuild/get_external.py /^def extract_zip(externals_dir, zip_path):$/;" f +extractall Lib/tarfile.py /^ def extractall(self, path=".", members=None, *, numeric_owner=False,$/;" m class:TarFile +extractall Lib/zipfile/__init__.py /^ def extractall(self, path=None, members=None, pwd=None):$/;" m class:ZipFile +extractall Tools/i18n/pygettext.py /^ extractall = 0 # FIXME: currently this option has no effect at all.$/;" v class:main.Options +extracterror_filter Lib/test/test_tarfile.py /^ def extracterror_filter(tarinfo, path):$/;" f function:TestExtractionFilters.test_errorlevel +extractfile Lib/tarfile.py /^ def extractfile(self, member):$/;" m class:TarFile +extraction_filter Lib/tarfile.py /^ extraction_filter = None # The default filter for extraction.$/;" v class:TarFile +extraction_filter Lib/test/test_tarfile.py /^ def extraction_filter(self, tarinfo, path):$/;" m class:TestExtractionFilters.test_change_default_filter_on_subclass.TarSubclass +extraction_filter Lib/test/test_tarfile.py /^ extraction_filter = 'data'$/;" v class:NoneInfoExtractTests_Data +extraction_filter Lib/test/test_tarfile.py /^ extraction_filter = 'fully_trusted'$/;" v class:NoneInfoExtractTests_FullyTrusted +extraction_filter Lib/test/test_tarfile.py /^ extraction_filter = 'tar'$/;" v class:NoneInfoExtractTests_Tar +extraction_filter Lib/test/test_tarfile.py /^ extraction_filter = None$/;" v class:NoneInfoExtractTests +extraction_filter Lib/test/test_tarfile.py /^ extraction_filter = None$/;" v class:NoneInfoExtractTests_Default +extras Lib/importlib/metadata/__init__.py /^ def extras(self):$/;" m class:EntryPoint +extsep Lib/ntpath.py /^extsep = '.'$/;" v +extsep Lib/posixpath.py /^extsep = '.'$/;" v +f Doc/includes/mp_newtype.py /^ def f(self):$/;" m class:Foo +f Doc/includes/mp_pool.py /^def f(x):$/;" f +f Include/cpython/frameobject.h /^PyAPI_FUNC(int) PyFrame_FastToLocalsWithError(PyFrameObject *f);$/;" v +f Lib/cgi.py /^ def f():$/;" f function:test +f Lib/idlelib/idle_test/test_calltip.py /^ def f(): pass$/;" f function:.test_docline_truncation +f Lib/idlelib/idle_test/test_calltip.py /^ def f(): pass$/;" f function:.test_multiline_docstring +f Lib/idlelib/idle_test/test_rpc.py /^ def f(): pass$/;" f function:CodePicklerTest.test_dumps +f Lib/idlelib/idle_test/test_rpc.py /^ def f(): return a + b + c$/;" f function:CodePicklerTest.test_pickle_unpickle +f Lib/multiprocessing/reduction.py /^ def f(self):$/;" m class:_C +f Lib/profile.py /^ def f(m, f1=f1):$/;" f function:Profile._calibrate_inner +f Lib/test/_test_multiprocessing.py /^ def f(cls, cond, sleeping, woken, timeout=None):$/;" m class:_TestCondition +f Lib/test/_test_multiprocessing.py /^ def f(cls, seq):$/;" m class:_TestArray +f Lib/test/_test_multiprocessing.py /^ def f(self):$/;" m class:FooBar +f Lib/test/ann_module2.py /^def f():$/;" f +f Lib/test/badsyntax_future3.py /^def f(x):$/;" f +f Lib/test/badsyntax_future4.py /^def f(x):$/;" f +f Lib/test/badsyntax_future5.py /^def f(x):$/;" f +f Lib/test/badsyntax_future6.py /^def f(x):$/;" f +f Lib/test/badsyntax_future7.py /^def f(x):$/;" f +f Lib/test/badsyntax_future8.py /^def f(x):$/;" f +f Lib/test/badsyntax_future9.py /^def f(x):$/;" f +f Lib/test/crashers/recursive_call.py /^f = lambda f:f(f)$/;" v +f Lib/test/crashers/trace_at_recursion_limit.py /^def f():$/;" f +f Lib/test/crashers/underlying_dict.py /^ def f(self):$/;" m class:A +f Lib/test/dis_module.py /^def f(): pass$/;" f +f Lib/test/doctest_aliases.py /^ def f(self):$/;" m class:TwoNames +f Lib/test/fork_wait.py /^ def f(self, id):$/;" m class:ForkWait +f Lib/test/future_test1.py /^def f(x):$/;" f +f Lib/test/future_test2.py /^def f(x):$/;" f +f Lib/test/inspect_fodder.py /^ def f(self):$/;" m class:WhichComments +f Lib/test/inspect_fodder2.py /^def f():$/;" f +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_abort +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_abort_and_reset +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_action +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_barrier +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_default_timeout +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_repr +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_reset +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_timeout +f Lib/test/lock_tests.py /^ def f():$/;" f function:BarrierTests.test_wait_return +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseLockTests.test_acquire_contended +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseLockTests.test_thread_leak +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseLockTests.test_timeout +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseLockTests.test_try_acquire_contended +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseLockTests.test_with +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseSemaphoreTests.test_acquire_contended +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseSemaphoreTests.test_default_value +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseSemaphoreTests.test_multirelease +f Lib/test/lock_tests.py /^ def f():$/;" f function:BaseSemaphoreTests.test_try_acquire_contended +f Lib/test/lock_tests.py /^ def f():$/;" f function:ConditionTests._check_notify +f Lib/test/lock_tests.py /^ def f():$/;" f function:ConditionTests.test_timeout +f Lib/test/lock_tests.py /^ def f():$/;" f function:ConditionTests.test_waitfor +f Lib/test/lock_tests.py /^ def f():$/;" f function:ConditionTests.test_waitfor_timeout +f Lib/test/lock_tests.py /^ def f():$/;" f function:EventTests._check_notify +f Lib/test/lock_tests.py /^ def f():$/;" f function:EventTests.test_set_and_clear +f Lib/test/lock_tests.py /^ def f():$/;" f function:EventTests.test_timeout +f Lib/test/lock_tests.py /^ def f():$/;" f function:LockTests.test_different_thread +f Lib/test/lock_tests.py /^ def f():$/;" f function:LockTests.test_reacquire +f Lib/test/lock_tests.py /^ def f():$/;" f function:RLockTests.test__is_owned +f Lib/test/lock_tests.py /^ def f():$/;" f function:RLockTests.test_different_thread +f Lib/test/mp_preload.py /^def f():$/;" f +f Lib/test/pickletester.py /^ def f():$/;" f function:AbstractHookTests.test_reducer_override_no_reference_cycle +f Lib/test/pickletester.py /^ def f():$/;" f function:AbstractHookTests.test_pickler_hook +f Lib/test/pickletester.py /^ def f():$/;" f function:AbstractPickleTests.test_local_lookup_error +f Lib/test/pyclbr_input.py /^def f(): pass$/;" f +f Lib/test/string_tests.py /^ def f():$/;" f function:MixinStrUnicodeUserStringTest.test_join +f Lib/test/test__xxinterpchannels.py /^ def f():$/;" f function:ChannelTests.test_send_recv_different_interpreters_and_threads +f Lib/test/test__xxinterpchannels.py /^ def f():$/;" f function:ChannelTests.test_send_recv_different_threads +f Lib/test/test__xxsubinterpreters.py /^ def f():$/;" f function:RunStringTests.test_in_thread +f Lib/test/test__xxsubinterpreters.py /^ def f():$/;" f function:CreateTests.test_in_thread +f Lib/test/test__xxsubinterpreters.py /^ def f():$/;" f function:CreateTests.test_in_threaded_subinterpreter +f Lib/test/test__xxsubinterpreters.py /^ def f():$/;" f function:DestroyTests.test_from_other_thread +f Lib/test/test__xxsubinterpreters.py /^ def f():$/;" f function:DestroyTests.test_main +f Lib/test/test_asyncio/test_events.py /^ def f():$/;" f function:PolicyTests.test_get_event_loop_thread +f Lib/test/test_asyncio/test_locks.py /^ async def f():$/;" f function:BarrierTests.test_filling_one_task +f Lib/test/test_asyncio/test_locks.py /^ async def f(lock=None, cond=None):$/;" f function:ConditionTests.test_explicit_lock +f Lib/test/test_asyncio/test_runners.py /^ async def f():$/;" f function:RunnerTests.test_recursive_run +f Lib/test/test_asyncio/test_runners.py /^ async def f():$/;" f function:RunnerTests.test_run +f Lib/test/test_asyncio/test_runners.py /^ async def f(arg):$/;" f function:RunnerTests.test_second_with_block_raises +f Lib/test/test_asyncio/test_runners.py /^ async def f(val):$/;" f function:RunnerTests.test_run_keeps_context +f Lib/test/test_asyncio/test_timeouts.py /^ async def f():$/;" f function:TimeoutTests.test_reschedule +f Lib/test/test_asyncio/test_unix_events.py /^ def f():$/;" f function:PolicyTests.test_get_child_watcher_thread +f Lib/test/test_bool.py /^ def f(x):$/;" f function:BoolTest.test_bool_called_at_least_once +f Lib/test/test_buffer.py /^ def f(): return 7$/;" f function:TestBufferProtocol.test_memoryview_struct_module +f Lib/test/test_builtin.py /^ def f(): pass$/;" f function:BuiltinTest.test_callable +f Lib/test/test_builtin.py /^ def f(): pass$/;" f function:BuiltinTest.test_hash +f Lib/test/test_call.py /^ def f(self, *args, **kwargs):$/;" m class:TestPEP590.test_vectorcall_limited_outgoing_method.TestInstance +f Lib/test/test_call.py /^ def f():$/;" f function:FunctionCalls.test_frames_are_popped_after_failed_calls +f Lib/test/test_call.py /^ def f(*args, **kwargs):$/;" f function:TestPEP590.test_vectorcall_limited_outgoing +f Lib/test/test_call.py /^ def f(num): return num + 1$/;" f function:TestPEP590.test_setvectorcall +f Lib/test/test_capi/test_eval_code_ex.py /^ def f():$/;" f function:PyEval_EvalCodeExTests.test_simple +f Lib/test/test_capi/test_eval_code_ex.py /^ def f():$/;" f function:PyEval_EvalCodeExTests.test_with_closure +f Lib/test/test_capi/test_eval_code_ex.py /^ def f(*, a):$/;" f function:PyEval_EvalCodeExTests.test_with_kwarg_default +f Lib/test/test_capi/test_eval_code_ex.py /^ def f(a):$/;" f function:PyEval_EvalCodeExTests.test_with_default +f Lib/test/test_capi/test_eval_code_ex.py /^ def f(a, b, c):$/;" f function:PyEval_EvalCodeExTests.test_with_args +f Lib/test/test_capi/test_eval_code_ex.py /^ def f(a, b, c):$/;" f function:PyEval_EvalCodeExTests.test_with_kwargs +f Lib/test/test_class.py /^ def f(self):$/;" m class:ClassTests.testHashComparisonOfMethods.A +f Lib/test/test_code.py /^ def f():$/;" f function:CodeLocationTest.test_code_new_empty +f Lib/test/test_code.py /^ def f():$/;" f function:CodeTest.test_code_equality +f Lib/test/test_code.py /^ def f(a='str_value'):$/;" f function:CodeConstsTest.test_interned_string_default +f Lib/test/test_compile.py /^ def f():$/;" m class:TestSpecifics.test_mangling.A +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSourcePositions.test_weird_attribute_position_regressions +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSpecifics.test_cold_block_moved_to_end +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSpecifics.test_dict_evaluation_order +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSpecifics.test_duplicated_small_exit_block +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSpecifics.test_for_distinct_code_objects +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSpecifics.test_lineno_of_backward_jump +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSpecifics.test_remove_unused_consts +f Lib/test/test_compile.py /^ def f():$/;" f function:TestSpecifics.test_remove_unused_consts_no_docstring +f Lib/test/test_compile.py /^ def f(x):$/;" f function:TestSpecifics.test_remove_empty_basic_block_with_jump_target_label +f Lib/test/test_compile.py /^ def f(x, y):$/;" f function:TestSpecifics.test_apply_static_swaps +f Lib/test/test_compile.py /^ def f(x, y, z):$/;" f function:TestSpecifics.test_apply_static_swaps_2 +f Lib/test/test_compile.py /^ def f(x, y, z):$/;" f function:TestSpecifics.test_apply_static_swaps_3 +f Lib/test/test_compileall.py /^ def f(self, ext=ext, switch=switch):$/;" f function:CommandLineTestsBase.test_no_args_respects_quiet_flag +f Lib/test/test_contextlib.py /^ def f():$/;" f function:ContextManagerTestCase.test_contextmanager_traceback +f Lib/test/test_contextlib_async.py /^ async def f():$/;" f function:AsyncContextManagerTestCase.test_contextmanager_traceback +f Lib/test/test_copy.py /^ def f():$/;" f function:TestCopy.test_copy_atomic +f Lib/test/test_copy.py /^ def f():$/;" f function:TestCopy.test_deepcopy_atomic +f Lib/test/test_coroutines.py /^ async def f(): pass$/;" f function:CoroutineTest.test_corotype_1 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroAsyncIOCompatTest.test_asyncio_1 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroutineTest.test_await_16 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroutineTest.test_bpo_45813_1 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroutineTest.test_bpo_45813_2 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroutineTest.test_comp_10 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroutineTest.test_comp_7 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroutineTest.test_comp_8 +f Lib/test/test_coroutines.py /^ async def f():$/;" f function:CoroutineTest.test_comp_9 +f Lib/test/test_coroutines.py /^ async def f(i):$/;" f function:CoroutineTest.test_comp_1 +f Lib/test/test_coroutines.py /^ async def f(i):$/;" f function:CoroutineTest.test_comp_2 +f Lib/test/test_coroutines.py /^ async def f(it):$/;" f function:CoroutineTest.test_comp_3 +f Lib/test/test_coroutines.py /^ async def f(it):$/;" f function:CoroutineTest.test_comp_4 +f Lib/test/test_coroutines.py /^ async def f(it):$/;" f function:CoroutineTest.test_comp_4_2 +f Lib/test/test_coroutines.py /^ async def f(it):$/;" f function:CoroutineTest.test_comp_5 +f Lib/test/test_coroutines.py /^ async def f(it):$/;" f function:CoroutineTest.test_comp_6 +f Lib/test/test_dataclasses.py /^ f = field()$/;" v class:TestFieldNoAnnotation.test_field_without_annotation.C +f Lib/test/test_dataclasses.py /^ f = field()$/;" v class:TestFieldNoAnnotation.test_field_without_annotation_but_annotation_in_base.B.C +f Lib/test/test_dataclasses.py /^ f = field()$/;" v class:TestFieldNoAnnotation.test_field_without_annotation_but_annotation_in_base_not_dataclass.B.C +f Lib/test/test_decorators.py /^ def f(cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2 +f Lib/test/test_decorators.py /^ def f(a, b):$/;" f function:TestDecorators.test_dbcheck +f Lib/test/test_descr.py /^ def f(self): return "A"$/;" m class:.test_altmro.A +f Lib/test/test_descr.py /^ def f(self): return "C"$/;" m class:.test_altmro.C +f Lib/test/test_descr.py /^ def f(self):$/;" m class:.test_proxy_super.B +f Lib/test/test_descr.py /^ def f(self):$/;" m class:.test_proxy_super.C +f Lib/test/test_descr.py /^ def f(a): return a$/;" f function:.test_keyword_arguments +f Lib/test/test_descr.py /^ def f(cls, arg):$/;" f function:.test_classmethods +f Lib/test/test_dis.py /^ def f():$/;" f function:.get_cached_values +f Lib/test/test_dis.py /^ def f():$/;" f function:.test_show_currinstr_with_cache +f Lib/test/test_dis.py /^ def f(c=3, d=4):$/;" f function:outer +f Lib/test/test_dis.py /^ def f(c=c):$/;" f function:tricky +f Lib/test/test_dynamic.py /^ def f():$/;" f function:TestTracing.test_after_specialization +f Lib/test/test_enum.py /^ f = float$/;" v class:TestSpecial.test_enum_of_types.MyTypes +f Lib/test/test_enum.py /^ f = nonmember(float)$/;" v class:TestSpecial.test_enum_of_types_with_nonmember.MyTypes +f Lib/test/test_enumerate.py /^ def f():$/;" f function:TestReversed.test_bug1229429 +f Lib/test/test_except_star.py /^ def f(x):$/;" f function:TestBreakContinueReturnInExceptStarBlock.test_return_in_except_star_block_valid +f Lib/test/test_exceptions.py /^ def f():$/;" f function:ExceptionTests.testInfiniteRecursion +f Lib/test/test_exceptions.py /^ def f():$/;" f function:NameErrorTests.test_issue45826 +f Lib/test/test_exceptions.py /^ def f():$/;" f function:NameErrorTests.test_issue45826_focused +f Lib/test/test_exceptions.py /^ def f():$/;" f function:PEP626Tests.test_missing_lineno_shows_as_none +f Lib/test/test_frame.py /^ def f():$/;" f function:TestIncompleteFrameAreInvisible.test_entry_frames_are_invisible_during_teardown +f Lib/test/test_frame.py /^ def f():$/;" f function:TestIncompleteFrameAreInvisible.test_sneaky_frame_object +f Lib/test/test_fstring.py /^ def f():$/;" f function:.test_docstring +f Lib/test/test_fstring.py /^ def f(a):$/;" f function:.test_debug_conversion +f Lib/test/test_fstring.py /^ def f(x, width):$/;" f function:.test_arguments +f Lib/test/test_funcattrs.py /^ def f(): print(a)$/;" f function:FunctionPropertiesTest.test___closure__ +f Lib/test/test_funcattrs.py /^ def f(): print(a)$/;" f function:FunctionPropertiesTest.test_empty_cell +f Lib/test/test_funcattrs.py /^ def f(): return a$/;" f function:FunctionPropertiesTest.test_set_cell +f Lib/test/test_funcattrs.py /^ def f():$/;" f function:StaticMethodAttrsTest.test_func_attribute +f Lib/test/test_funcattrs.py /^ def f():$/;" f function:cell +f Lib/test/test_funcattrs.py /^ def f():$/;" f function:empty_cell +f Lib/test/test_functools.py /^ def f(self, x):$/;" m class:TestLRU.test_lru_method.X +f Lib/test/test_functools.py /^ def f():$/;" f function:TestLRU.test_lru +f Lib/test/test_functools.py /^ def f():$/;" f function:TestLRU.test_lru_cache_parameters +f Lib/test/test_functools.py /^ def f():$/;" f function:TestUpdateWrapper.test_missing_attributes +f Lib/test/test_functools.py /^ def f():$/;" f function:TestUpdateWrapper.test_no_update +f Lib/test/test_functools.py /^ def f():$/;" f function:TestUpdateWrapper.test_selective_update +f Lib/test/test_functools.py /^ def f():$/;" f function:TestWraps._default_update +f Lib/test/test_functools.py /^ def f():$/;" f function:TestWraps.test_no_update +f Lib/test/test_functools.py /^ def f():$/;" f function:TestWraps.test_selective_update +f Lib/test/test_functools.py /^ def f(**kwargs):$/;" f function:TestLRU.test_kwargs_order +f Lib/test/test_functools.py /^ def f(*args):$/;" f function:TestLRU.test_lru_star_arg_handling +f Lib/test/test_functools.py /^ def f(*args):$/;" f function:TestSingleDispatch.test_invalid_positional_argument +f Lib/test/test_functools.py /^ def f(a, b, \/):$/;" f function:TestPartialMethod.test_positional_only +f Lib/test/test_functools.py /^ def f(arg):$/;" f function:TestSingleDispatch.test_register_genericalias +f Lib/test/test_functools.py /^ def f(arg):$/;" f function:TestSingleDispatch.test_register_genericalias_annotation +f Lib/test/test_functools.py /^ def f(arg):$/;" f function:TestSingleDispatch.test_register_genericalias_decorator +f Lib/test/test_functools.py /^ def f(arg):$/;" f function:TestSingleDispatch.test_union +f Lib/test/test_functools.py /^ def f(arg):$/;" f function:TestSingleDispatch.test_union_conflict +f Lib/test/test_functools.py /^ def f(x):$/;" f function:TestLRU.test_lru +f Lib/test/test_functools.py /^ def f(x):$/;" f function:TestLRU.test_lru_bug_35780 +f Lib/test/test_functools.py /^ def f(x):$/;" f function:TestLRU.test_lru_bug_36650 +f Lib/test/test_functools.py /^ def f(x):$/;" f function:TestLRU.test_lru_cache_threaded2 +f Lib/test/test_functools.py /^ def f(x):$/;" f function:TestLRU.test_lru_cache_threaded3 +f Lib/test/test_functools.py /^ def f(x, y):$/;" f function:TestLRU.test_lru_hash_only_once +f Lib/test/test_functools.py /^ def f(x, y):$/;" f function:TestPartial.test_error_propagation +f Lib/test/test_functools.py /^ def f(zomg: 'zomg_annotation'):$/;" f function:TestLRU.test_lru_cache_decoration +f Lib/test/test_functools.py /^ def f[T](a:'This is a new annotation'):$/;" f function:TestUpdateWrapper._default_update +f Lib/test/test_gc.py /^ def f():$/;" f function:GCTests.test_frame +f Lib/test/test_generator_stop.py /^ def f():$/;" f function:TestPEP479.test_stopiteration_wrapping +f Lib/test/test_generator_stop.py /^ def f():$/;" f function:TestPEP479.test_stopiteration_wrapping_context +f Lib/test/test_generators.py /^ async def f():$/;" f function:GeneratorTest.test_ag_frame_f_back +f Lib/test/test_generators.py /^ async def f():$/;" f function:GeneratorTest.test_cr_frame_f_back +f Lib/test/test_generators.py /^ def f():$/;" f function:ExceptionTest.test_tutorial_stopiteration +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorStackTraceTest.check_yield_from_example +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorTest.test_copy +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorTest.test_gi_frame_f_back +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorTest.test_pickle +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorTest.test_send_non_none_to_new_gen +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorThrowTest.test_exception_context_with_yield +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorThrowTest.test_exception_context_with_yield_from +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorThrowTest.test_exception_context_with_yield_from_with_context_cycle +f Lib/test/test_generators.py /^ def f():$/;" f function:GeneratorThrowTest.test_exception_context_with_yield_inside_generator +f Lib/test/test_grammar.py /^ def f(self, *, __kw: 1):$/;" m class:GrammarTests.test_funcdef.Spam +f Lib/test/test_grammar.py /^ def f() -> int: return closure$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(): return closure$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f():$/;" f function:GrammarTests.test_nonlocal +f Lib/test/test_grammar.py /^ def f():$/;" f function:GrammarTests.test_var_annot_basic_semantics +f Lib/test/test_grammar.py /^ def f(**kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(**x: float): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*, b, **kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*, b,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*, k=1): return closure$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*args, **kwargs):$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*args, **kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*args, b, **kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*args, b,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*args,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(*x: str): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, **kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, *, b, **kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, *, b,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, *args, **kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, *args, b, **kwds,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, *args, b,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, *args,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, b: 1, \/, c: 2, d): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, b: 1, c: 2, d): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, b: 1, c: 2, d, e: 3 = 4, f: int = 5, \/, *g: 6, h: 7, i=8, j: 9 = 10,$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, b: 1, c: 2, d, e: 3 = 4, f=5, *g: 6): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a, b: 1, c: 2, d, e: 3 = 4, f=5, *g: 6, h: 7, i=8, j: 9 = 10,$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(a,): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x) -> list: pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x, y: 1+2): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x, y: 1+2, \/): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x: int = 34, \/): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x: int): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x: int, \/): pass$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_grammar.py /^ def f(x=1): return closure$/;" f function:GrammarTests.test_funcdef +f Lib/test/test_importlib/test_locks.py /^ def f():$/;" f function:DeadlockAvoidanceTests.run_deadlock_avoidance_test +f Lib/test/test_inspect.py /^ def f(self):$/;" m class:TestClassesAndFunctions.test_getmembers_method.B +f Lib/test/test_inspect.py /^ def f(self, nonlocal_ref):$/;" m class:TestGetClosureVars.test_method_closure.C +f Lib/test/test_inspect.py /^ def f(nonlocal_ref):$/;" f function:TestGetClosureVars.test_generator_closure +f Lib/test/test_inspect.py /^ def f(nonlocal_ref):$/;" f function:TestGetClosureVars.test_name_resolution +f Lib/test/test_interpreters.py /^ def f():$/;" f function:TestInterpreterRun.test_in_thread +f Lib/test/test_interpreters.py /^ def f():$/;" f function:CreateTests.test_in_thread +f Lib/test/test_interpreters.py /^ def f():$/;" f function:TestInterpreterClose.test_from_other_thread +f Lib/test/test_interpreters.py /^ def f():$/;" f function:TestInterpreterClose.test_main +f Lib/test/test_interpreters.py /^ def f():$/;" f function:TestSendRecv.test_send_recv_different_threads +f Lib/test/test_io.py /^ def f():$/;" f function:BufferedReaderTest.test_threads +f Lib/test/test_io.py /^ def f():$/;" f function:BufferedWriterTest.test_threads +f Lib/test/test_io.py /^ f = MyFileIO(os_helper.TESTFN, "wb")$/;" v class:IOTest.test_destructor.MyFileIO +f Lib/test/test_itertools.py /^ def f(n):$/;" f function:RegressionTests.test_issue30347_1 +f Lib/test/test_itertools.py /^ def f(t):$/;" f function:RegressionTests.test_sf_793826 +f Lib/test/test_keywordonlyarg.py /^ def f(self, *, __a=42):$/;" m class:KeywordOnlyArgTestCase.test_mangling.X +f Lib/test/test_keywordonlyarg.py /^ def f(self, *, k1=1, k2=2):$/;" m class:KeywordOnlyArgTestCase.test_kwonly_methods.Example +f Lib/test/test_keywordonlyarg.py /^ def f(v=a, x=b, *, y=c, z=d):$/;" f function:KeywordOnlyArgTestCase.test_default_evaluation_order +f Lib/test/test_keywordonlyarg.py /^ def f(a, b=None, *, c=None):$/;" f function:KeywordOnlyArgTestCase.testTooManyPositionalErrorMessage +f Lib/test/test_lib2to3/data/different_encoding.py /^def f(x):$/;" f +f Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def f(*args, **kwargs):$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f() -> int: return closure$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(): return closure$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f():$/;" f function:GrammarTests.testNonlocal +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(**x:float): pass$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(*, k=1): return closure$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(*args, **kwargs):$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(*x:str): pass$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(a, b:1, c:2, d): pass$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(a, b:1, c:2, d, e:3=4, f=5, *g:6): pass$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(a, b:1, c:2, d, e:3=4, f=5, *g:6, h:7, i=8, j:9=10,$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(x) -> list: pass$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(x, y:1+2): pass$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(x:int): pass$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f(x=1): return closure$/;" f function:GrammarTests.testFuncdef +f Lib/test/test_listcomps.py /^ def f():$/;" f function:ListComprehensionTest.test_unbound_local_after_comprehension +f Lib/test/test_listcomps.py /^ def f():$/;" f function:ListComprehensionTest.test_unbound_local_inside_comprehension +f Lib/test/test_module/__init__.py /^ def f():$/;" f function:ModuleTests.test_dont_clear_dict +f Lib/test/test_monitoring.py /^ def f():$/;" f function:MultipleMonitorsTest.test_with_instruction_event +f Lib/test/test_monitoring.py /^ def f():$/;" m class:TestUninitialized +f Lib/test/test_named_expressions.py /^ def f():$/;" f function:.test_named_expression_global_scope +f Lib/test/test_named_expressions.py /^ def f():$/;" f function:.test_named_expression_global_scope_no_global_keyword +f Lib/test/test_named_expressions.py /^ def f():$/;" f function:.test_named_expression_nonlocal_scope +f Lib/test/test_named_expressions.py /^ def f():$/;" f function:.test_named_expression_nonlocal_scope_no_nonlocal_keyword +f Lib/test/test_opcache.py /^ def f(self):$/;" m class:TestLoadSuperAttrCache.test_descriptor_not_double_executed_on_spec_fail.D +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestCallCache.test_too_many_defaults_0 +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_metaclass_del_descriptor_after_optimization +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_metaclass_descriptor_added_after_optimization +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_metaclass_descriptor_shadows_class_attribute +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_metaclass_getattribute +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_metaclass_set_descriptor_after_optimization +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_metaclass_swap +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_type_descriptor_shadows_attribute_getset +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_type_descriptor_shadows_attribute_member +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadAttrCache.test_type_descriptor_shadows_attribute_method +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_descriptor_added_after_optimization +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_metaclass_del_descriptor_after_optimization +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_metaclass_descriptor_added_after_optimization +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_metaclass_descriptor_shadows_class_attribute +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_metaclass_getattribute +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_metaclass_set_descriptor_after_optimization +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_metaclass_swap +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_type_descriptor_shadows_attribute_member +f Lib/test/test_opcache.py /^ def f():$/;" f function:TestLoadMethodCache.test_type_descriptor_shadows_attribute_method +f Lib/test/test_opcache.py /^ def f(o):$/;" f function:TestLoadAttrCache.test_descriptor_added_after_optimization +f Lib/test/test_opcache.py /^ def f(o):$/;" f function:TestLoadAttrCache.test_load_borrowed_slot_should_not_crash +f Lib/test/test_opcache.py /^ def f(o):$/;" f function:TestLoadAttrCache.test_load_shadowing_slot_should_raise_type_error +f Lib/test/test_opcache.py /^ def f(o):$/;" f function:TestLoadAttrCache.test_store_borrowed_slot_should_not_crash +f Lib/test/test_opcache.py /^ def f(o):$/;" f function:TestLoadAttrCache.test_store_shadowing_slot_should_raise_type_error +f Lib/test/test_opcache.py /^ def f(x):$/;" f function:TestCallCache.test_too_many_defaults_1 +f Lib/test/test_opcache.py /^ def f(x, y):$/;" f function:TestCallCache.test_too_many_defaults_2 +f Lib/test/test_operator.py /^ f = attrgetter('t.u.v')$/;" v class:OperatorPickleTestCase.test_attrgetter.A +f Lib/test/test_operator.py /^ f = attrgetter('x')$/;" v class:OperatorPickleTestCase.test_attrgetter.A +f Lib/test/test_operator.py /^ f = attrgetter('x', 'y', 'z')$/;" v class:OperatorPickleTestCase.test_attrgetter.A +f Lib/test/test_patma.py /^ def f(self, x):$/;" m class:TestPatma.test_patma_249.Outer +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_214 +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_215 +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_216 +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_217 +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_218 +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_219 +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_220 +f Lib/test/test_patma.py /^ def f():$/;" f function:TestPatma.test_patma_221 +f Lib/test/test_patma.py /^ def f(color):$/;" f function:TestPatma.test_patma_198 +f Lib/test/test_patma.py /^ def f(color):$/;" f function:TestPatma.test_patma_199 +f Lib/test/test_patma.py /^ def f(command): # 0$/;" f function:TestTracing.test_default_capture +f Lib/test/test_patma.py /^ def f(command): # 0$/;" f function:TestTracing.test_default_wildcard +f Lib/test/test_patma.py /^ def f(command): # 0$/;" f function:TestTracing.test_no_default +f Lib/test/test_patma.py /^ def f(command): # 0$/;" f function:TestTracing.test_only_default_wildcard +f Lib/test/test_patma.py /^ def f(command): # 0$/;" f function:TestTracing.test_unreachable_code +f Lib/test/test_patma.py /^ def f(command): # 0$/;" f function:TestTracing.test_only_default_capture +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_204 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_205 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_206 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_207 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_208 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_209 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_210 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_211 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_212 +f Lib/test/test_patma.py /^ def f(w):$/;" f function:TestPatma.test_patma_213 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_222 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_223 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_224 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_225 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_226 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_227 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_246 +f Lib/test/test_patma.py /^ def f(x):$/;" f function:TestPatma.test_patma_247 +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestBuglets.test_bug_11510 +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_because_already_loaded +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_multiple_branches +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_simple +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_too_many_locals +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_unknown_after_error +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_unknown_after_error_2 +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_unknown_because_del +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_unknown_simple +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestTranforms.test_condition_with_binop_with_bools +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestTranforms.test_elim_jump_to_uncond_jump +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestTranforms.test_elim_jump_to_uncond_jump2 +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestTranforms.test_elim_jump_to_uncond_jump4 +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestTranforms.test_global_as_constant +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestTranforms.test_make_function_doesnt_bail +f Lib/test/test_peepholer.py /^ def f():$/;" f function:TestTranforms.test_while_one +f Lib/test/test_peepholer.py /^ def f(a):$/;" f function:TestTranforms.test_folding_of_sets_of_constants +f Lib/test/test_peepholer.py /^ def f(a, b):$/;" f function:TestTranforms.test_static_swaps_unpack_two +f Lib/test/test_peepholer.py /^ def f(a, b, c):$/;" f function:TestTranforms.test_elim_jump_to_uncond_jump3 +f Lib/test/test_peepholer.py /^ def f(a, b, c):$/;" f function:TestTranforms.test_static_swaps_unpack_three +f Lib/test/test_peepholer.py /^ def f(cond, true_value, false_value):$/;" f function:TestTranforms.test_elim_jump_to_return +f Lib/test/test_peepholer.py /^ def f(cond1, cond2):$/;" f function:TestTranforms.test_elim_jump_after_return1 +f Lib/test/test_peepholer.py /^ def f(x):$/;" f function:TestTranforms.test_elim_extra_return +f Lib/test/test_peepholer.py /^ def f(x):$/;" f function:TestTranforms.test_if_with_if_expression +f Lib/test/test_peepholer.py /^ def f(x):$/;" f function:TestTranforms.test_trailing_nops +f Lib/test/test_positional_only_arg.py /^ def f(x: int, \/): ...$/;" f function:PositionalOnlyTestCase.test_annotations_in_closures.Something.method +f Lib/test/test_positional_only_arg.py /^ def f(x: int, \/): ...$/;" f function:PositionalOnlyTestCase.test_annotations_in_closures.multiple_levels.inner_has_pos_only +f Lib/test/test_positional_only_arg.py /^ def f(self, __a=42, \/):$/;" m class:PositionalOnlyTestCase.test_mangling.X +f Lib/test/test_positional_only_arg.py /^ def f(self, a, b, \/):$/;" m class:PositionalOnlyTestCase.test_posonly_methods.Example +f Lib/test/test_positional_only_arg.py /^ def f(x: int, \/): ...$/;" f function:PositionalOnlyTestCase.test_annotations_in_closures.inner_has_pos_only +f Lib/test/test_positional_only_arg.py /^ def f(x: not (int is int), \/): ...$/;" f function:PositionalOnlyTestCase.test_annotations_constant_fold.g +f Lib/test/test_positional_only_arg.py /^ async def f(a=1, \/, b=2):$/;" f function:PositionalOnlyTestCase.test_async +f Lib/test/test_positional_only_arg.py /^ def f(a, \/):$/;" f function:PositionalOnlyTestCase.test_use_positional_as_keyword +f Lib/test/test_positional_only_arg.py /^ def f(a, \/, b):$/;" f function:PositionalOnlyTestCase.test_use_positional_as_keyword +f Lib/test/test_positional_only_arg.py /^ def f(a, b, \/):$/;" f function:PositionalOnlyTestCase.test_pos_only_call_via_unpacking +f Lib/test/test_positional_only_arg.py /^ def f(a, b, \/):$/;" f function:PositionalOnlyTestCase.test_positional_only_invalid_calls +f Lib/test/test_positional_only_arg.py /^ def f(a, b, \/):$/;" f function:PositionalOnlyTestCase.test_use_positional_as_keyword +f Lib/test/test_positional_only_arg.py /^ def f(a, b, \/, *, c):$/;" f function:PositionalOnlyTestCase.test_no_standard_args_usage +f Lib/test/test_positional_only_arg.py /^ def f(a, b, \/, c):$/;" f function:PositionalOnlyTestCase.test_positional_only_and_arg_invalid_calls +f Lib/test/test_positional_only_arg.py /^ def f(a, b, \/, c, *, d, e):$/;" f function:PositionalOnlyTestCase.test_positional_only_and_kwonlyargs_invalid_calls +f Lib/test/test_positional_only_arg.py /^ def f(a, b, \/, c=3):$/;" f function:PositionalOnlyTestCase.test_positional_only_and_optional_arg_invalid_calls +f Lib/test/test_positional_only_arg.py /^ def f(a, b, c, \/, d, e=1, *, f, g=2):$/;" f function:PositionalOnlyTestCase.test_pos_only_definition +f Lib/test/test_positional_only_arg.py /^ def f(a, b, c=1, \/, d=2, e=3, *, f, g=4):$/;" f function:PositionalOnlyTestCase.test_pos_only_definition +f Lib/test/test_positional_only_arg.py /^ def f(a, b=10, \/, c=100):$/;" f function:PositionalOnlyTestCase.test_optional_positional_only_args +f Lib/test/test_positional_only_arg.py /^ def f(a, b=2, \/):$/;" f function:PositionalOnlyTestCase.test_positional_only_with_optional_invalid_calls +f Lib/test/test_positional_only_arg.py /^ def f(a, b=2, \/, c=3):$/;" f function:PositionalOnlyTestCase.test_change_default_pos_only +f Lib/test/test_positional_only_arg.py /^ def f(a=1, \/, b=2):$/;" f function:PositionalOnlyTestCase.test_generator +f Lib/test/test_positional_only_arg.py /^ def f(a=1, b=10, \/, c=100):$/;" f function:PositionalOnlyTestCase.test_optional_positional_only_args +f Lib/test/test_positional_only_arg.py /^ def f(something,\/,**kwargs):$/;" f function:PositionalOnlyTestCase.test_same_keyword_as_positional_with_kwargs +f Lib/test/test_positional_only_arg.py /^ def f(x,\/,y):$/;" f function:PositionalOnlyTestCase.test_closures +f Lib/test/test_positional_only_arg.py /^ def f(x,y):$/;" f function:PositionalOnlyTestCase.test_closures +f Lib/test/test_raise.py /^ def f():$/;" f function:TestContext.test_3118 +f Lib/test/test_raise.py /^ def f():$/;" f function:TestContext.test_3611 +f Lib/test/test_scope.py /^ def f(self):$/;" m class:ScopeTests.testLocalsClass_WithTrace.C +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testBoundAndFree +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testEvalExecFreeVars +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testEvalFreeVars +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testLocalsClass +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testLocalsFunction +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testNearestEnclosingScope +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testNestedNonLocal +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testNonLocalClass +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testNonLocalFunction +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testNonLocalGenerator +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testNonLocalMethod +f Lib/test/test_scope.py /^ def f(x):$/;" f function:ScopeTests.testRecursion +f Lib/test/test_scope.py /^ def f(x, y, z):$/;" f function:ScopeTests.testMixedFreevarsAndCellvars +f Lib/test/test_set.py /^ def f(a, b):$/;" f function:TestBinaryOpsMutating.test_iadd_with_mutation +f Lib/test/test_set.py /^ def f(a, b):$/;" f function:TestBinaryOpsMutating.test_ior_with_mutation +f Lib/test/test_set.py /^ def f(a, b):$/;" f function:TestBinaryOpsMutating.test_isub_with_mutation +f Lib/test/test_set.py /^ def f(a, b):$/;" f function:TestBinaryOpsMutating.test_ixor_with_mutation +f Lib/test/test_set.py /^ def f(s1, s2):$/;" f function:TestJointOps.test_isdisjoint +f Lib/test/test_sqlite3/test_dbapi.py /^ def f(): pass$/;" f function:CursorTests.test_wrong_cursor_callable +f Lib/test/test_sqlite3/test_dbapi.py /^ def f(x): return 17$/;" f function:ClosedConTests.test_closed_create_function +f Lib/test/test_sqlite3/test_userfunctions.py /^ def f():$/;" f function:FunctionTests.test_func_ref_count.getfunc +f Lib/test/test_statistics.py /^ def f(x):$/;" f function:TestQuantiles.test_specific_cases +f Lib/test/test_statistics.py /^ def f(x):$/;" f function:TestQuantiles.test_specific_cases_inclusive +f Lib/test/test_super.py /^ def f(self):$/;" m class:TestSuper.test___classcell___missing.WithoutClassRef.WithClassRef +f Lib/test/test_super.py /^ def f(self):$/;" m class:TestSuper.test___classcell___wrong_cell.Meta.A +f Lib/test/test_super.py /^ def f():$/;" m class:TestSuper.test___class___delayed.A +f Lib/test/test_super.py /^ def f():$/;" m class:TestSuper.test___class___mro.A +f Lib/test/test_super.py /^ def f():$/;" m class:TestSuper.test___class___new.A +f Lib/test/test_super.py /^ def f():$/;" m class:TestSuper.test___class___staticmethod.X +f Lib/test/test_super.py /^ def f():$/;" m class:TestSuper.test_obscure_super_errors.C +f Lib/test/test_super.py /^ def f():$/;" m class:TestSuper.test_various___class___pathologies.X +f Lib/test/test_super.py /^ def f(cls):$/;" m class:TestSuper.test___class___classmethod.X +f Lib/test/test_super.py /^ def f(self):$/;" m class:TestSuper.test___class___instancemethod.X +f Lib/test/test_super.py /^ def f(self):$/;" m class:TestSuper.test___classcell___expected_behaviour.WithClassRef +f Lib/test/test_super.py /^ def f(self):$/;" m class:TestSuper.test_super_with_closure.E +f Lib/test/test_super.py /^ def f(self):$/;" m class:TestSuper.test_various___class___pathologies.X +f Lib/test/test_super.py /^ def f(x):$/;" m class:TestSuper.test_obscure_super_errors.X +f Lib/test/test_super.py /^ def f():$/;" f function:TestSuper.test_cell_as_self +f Lib/test/test_super.py /^ def f():$/;" f function:TestSuper.test_obscure_super_errors +f Lib/test/test_super.py /^ def f(x):$/;" f function:TestSuper.test_obscure_super_errors +f Lib/test/test_super.py /^ def f(self):$/;" m class:A +f Lib/test/test_super.py /^ def f(self):$/;" m class:B +f Lib/test/test_super.py /^ def f(self):$/;" m class:C +f Lib/test/test_super.py /^ def f(self):$/;" m class:D +f Lib/test/test_super.py /^ f = E.f$/;" v class:F +f Lib/test/test_sys.py /^ def f():$/;" f function:ActiveExceptionTests.test_exc_info_with_exception_instance +f Lib/test/test_sys.py /^ def f():$/;" f function:ActiveExceptionTests.test_exc_info_with_exception_type +f Lib/test/test_sys.py /^ def f():$/;" f function:ActiveExceptionTests.test_sys_exception_with_exception_instance +f Lib/test/test_sys.py /^ def f():$/;" f function:ActiveExceptionTests.test_sys_exception_with_exception_type +f Lib/test/test_sys.py /^ def f():$/;" f function:SysModuleTest.test_recursionlimit_recovery +f Lib/test/test_sys_setprofile.py /^ def f():$/;" f function:ProfileHookTestCase.test_distant_exception +f Lib/test/test_sys_setprofile.py /^ def f():$/;" f function:ProfileHookTestCase.test_generator +f Lib/test/test_sys_setprofile.py /^ def f():$/;" f function:ProfileHookTestCase.test_stop_iteration +f Lib/test/test_sys_setprofile.py /^ def f():$/;" f function:ProfileSimulatorTestCase.test_distant_exception +f Lib/test/test_sys_setprofile.py /^ def f():$/;" f function:TestEdgeCases.test_profile_after_trace_opcodes +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_caught_exception +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_caught_nested_exception +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_exception +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_exception_in_except_clause +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_exception_propagation +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_nested_exception +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_raise +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_raise_reraise +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_raise_twice +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileHookTestCase.test_simple +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_basic_exception +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_caught_exception +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_simple +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_unbound_method +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_unbound_method_invalid_args +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_unbound_method_invalid_keyword_args +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_unbound_method_no_args +f Lib/test/test_sys_setprofile.py /^ def f(p):$/;" f function:ProfileSimulatorTestCase.test_unbound_method_no_keyword_args +f Lib/test/test_sys_settrace.py /^ async def f():$/;" f function:TraceTestCase.test_async_for_backwards_jump_has_no_line +f Lib/test/test_sys_settrace.py /^ def f():$/;" f function:RaisingTraceFuncTestCase.test_exception_arguments +f Lib/test/test_sys_settrace.py /^ def f():$/;" f function:RaisingTraceFuncTestCase.test_line_event_raises_before_opcode_event +f Lib/test/test_sys_settrace.py /^ def f():$/;" f function:RaisingTraceFuncTestCase.test_trash_stack +f Lib/test/test_sys_settrace.py /^ def f(self):$/;" m class:RaisingTraceFuncTestCase +f Lib/test/test_threading.py /^ def f():$/;" f function:ThreadTests.test_ident_of_no_threading_threads +f Lib/test/test_threading.py /^ def f():$/;" f function:ThreadTests.test_main_thread +f Lib/test/test_threading.py /^ def f():$/;" f function:ThreadTests.test_repr_stopped +f Lib/test/test_threading.py /^ def f():$/;" f function:ThreadTests.test_tstate_lock +f Lib/test/test_threading.py /^ def f(mutex):$/;" f function:ThreadTests.test_foreign_thread +f Lib/test/test_threading_local.py /^ def f():$/;" f function:BaseLocalTest.test_derived_cycle_dealloc +f Lib/test/test_threading_local.py /^ def f(i):$/;" f function:BaseLocalTest.test_derived +f Lib/test/test_traceback.py /^ def f():$/;" f function:BaseExceptionReportingTests.test_KeyboardInterrupt_at_first_line_of_frame +f Lib/test/test_traceback.py /^ def f():$/;" f function:TestStack.test_dropping_frames +f Lib/test/test_traceback.py /^ def f():$/;" f function:TestTracebackException.test_long_context_chain +f Lib/test/test_traceback.py /^ def f():$/;" f function:TestTracebackException.test_print +f Lib/test/test_traceback.py /^ def f():$/;" f function:TestTracebackException_ExceptionGroups._get_exception_group +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackErrorLocationCaretTestBase.test_basic_caret +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackErrorLocationCaretTestBase.test_byte_offset_multiline +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackErrorLocationCaretTestBase.test_byte_offset_with_wide_characters_middle +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackErrorLocationCaretTestBase.test_multiline_method_call_a +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackErrorLocationCaretTestBase.test_multiline_method_call_b +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackErrorLocationCaretTestBase.test_multiline_method_call_c +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackErrorLocationCaretTestBase.test_wide_characters_unicode_with_problematic_byte_offset +f Lib/test/test_traceback.py /^ def f():$/;" f function:TracebackFormatTests._check_recursive_traceback_display +f Lib/test/test_tracemalloc.py /^ def f(x):$/;" f function:TestTracemallocEnabled.test_no_incomplete_frames +f Lib/test/test_tuple.py /^ def f():$/;" f function:TupleTest.test_tupleresizebug +f Lib/test/test_types.py /^ def f(): pass$/;" f function:TypesTests.test_truth_values +f Lib/test/test_typing.py /^ def f():$/;" f function:BaseCallableTests.test_callable_instance_type_error +f Lib/test/test_typing.py /^ def f():$/;" f function:BaseCallableTests.test_callable_instance_works +f Lib/test/test_typing.py /^ def f():$/;" f function:ProtocolTests.test_basic_protocol +f Lib/test/test_typing.py /^ def f():$/;" f function:ProtocolTests.test_everything_implements_empty_protocol +f Lib/test/test_typing.py /^ def f():$/;" f function:ProtocolTests.test_function_implements_protocol +f Lib/test/test_typing.py /^ def f(*args: Unpack[Ts]): pass$/;" f function:TypeVarTupleTests.test_variadic_args_annotations_are_correct +f Lib/test/test_typing.py /^ def f(*args: Unpack[Tuple[Unpack[Ts], int]]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +f Lib/test/test_typing.py /^ def f(x: X): ...$/;" f function:GenericTests.test_generic_pep585_forward_ref +f Lib/test/test_typing.py /^ def f(x: collections.abc.Callable[[int], int]): ...$/;" f function:GetTypeHintTests.test_get_type_hints_collections_abc_callable +f Lib/test/test_typing.py /^ def f(x: u): ...$/;" f function:UnionTests.test_no_eval_union +f Lib/test/test_unittest/test_suite.py /^ def f(_):$/;" f function:Test_TestSuite.test_function_in_suite +f Lib/test/test_unittest/testmock/testasync.py /^ async def f(x=None): pass$/;" f function:AsyncMockAssert.test_assert_has_awaits_not_matching_spec_error +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(self, y): pass$/;" m class:SpecSignatureTest.test_spec_inheritance_for_classes.Foo.Bar +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(a, self): pass$/;" m class:SpecSignatureTest.test_autospec_functions_with_self_in_odd_place.Foo +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(cls, a, b): pass$/;" m class:SpecSignatureTest.test_descriptors.Foo +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(): pass$/;" f function:SpecSignatureTest.test_create_autospec_return_value +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(a): pass$/;" f function:SpecSignatureTest.test_function_as_instance_attribute +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(a): pass$/;" f function:SpecSignatureTest.test_spec_function_assert_any_call +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(a): pass$/;" f function:SpecSignatureTest.test_spec_function_assert_has_calls +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(a): pass$/;" f function:SpecSignatureTest.test_spec_function_reset_mock +f Lib/test/test_unittest/testmock/testhelpers.py /^ def f(a, b): pass$/;" f function:SpecSignatureTest.test_function +f Lib/test/test_unittest/testmock/testmagicmethods.py /^ def f(self, name):$/;" f function:TestMockingMagicMethods.test_magic_method_wrapping +f Lib/test/test_unittest/testmock/testmock.py /^ def f(): pass$/;" f function:MockTest.test_autospec_side_effect +f Lib/test/test_unittest/testmock/testmock.py /^ def f(): pass$/;" f function:MockTest.test_autospec_side_effect_exception +f Lib/test/test_unittest/testmock/testmock.py /^ def f(): pass$/;" f function:MockTest.test_change_return_value_via_delegate +f Lib/test/test_unittest/testmock/testmock.py /^ def f(): pass$/;" f function:MockTest.test_change_side_effect_via_delegate +f Lib/test/test_unittest/testmock/testmock.py /^ def f(a, b): pass$/;" f function:MockTest.test_mock_calls_create_autospec +f Lib/test/test_unittest/testmock/testmock.py /^ def f(a, b, c, d=None): pass$/;" f function:MockTest.test_assert_any_call_with_function_spec +f Lib/test/test_unittest/testmock/testmock.py /^ def f(a, b, c, d=None): pass$/;" f function:MockTest.test_assert_called_once_with_function_spec +f Lib/test/test_unittest/testmock/testmock.py /^ def f(a, b, c, d=None): pass$/;" f function:MockTest.test_assert_called_with_function_spec +f Lib/test/test_unittest/testmock/testmock.py /^ def f(a, b, c, d=None): pass$/;" f function:MockTest.test_assert_has_calls_with_function_spec +f Lib/test/test_unittest/testmock/testmock.py /^ def f(x=None): pass$/;" f function:MockTest.test_assert_has_calls_not_matching_spec_error +f Lib/test/test_unittest/testmock/testpatch.py /^ def f(self, a): pass$/;" m class:PatchTest.test_autospec.Boo +f Lib/test/test_unittest/testmock/testpatch.py /^ def f(self, a): pass$/;" m class:Foo +f Lib/test/test_unittest/testmock/testwith.py /^ def f(self): pass$/;" m class:WithTest.test_double_patch_instance_method.C +f Lib/test/test_urllib_response.py /^ def f():$/;" f function:TestResponse.test_with +f Lib/test/test_warnings/__init__.py /^ def f():$/;" f function:FilterTests.test_always +f Lib/test/test_warnings/__init__.py /^ def f():$/;" f function:FilterTests.test_always_after_default +f Lib/test/test_warnings/__init__.py /^ def f():$/;" f function:FilterTests.test_error_after_default +f Lib/test/test_warnings/__init__.py /^ def f():$/;" f function:FilterTests.test_ignore_after_default +f Lib/test/test_weakref.py /^ def f(): pass$/;" f function:create_function +f Lib/test/test_yield_from.py /^ def f():$/;" f function:TestPEP380Operation.test_throwing_GeneratorExit_into_subgen_that_raises +f Lib/test/test_yield_from.py /^ def f():$/;" f function:TestPEP380Operation.test_throwing_GeneratorExit_into_subgen_that_returns +f Lib/test/test_yield_from.py /^ def f():$/;" f function:TestPEP380Operation.test_throwing_GeneratorExit_into_subgenerator_that_yields +f Lib/test/test_yield_from.py /^ def f(r):$/;" f function:TestPEP380Operation.test_next_and_return_with_value +f Lib/test/test_yield_from.py /^ def f(r):$/;" f function:TestPEP380Operation.test_send_and_return_with_value +f Lib/tkinter/font.py /^ f = Font(family="times", size=30, weight=NORMAL)$/;" v +f Lib/tkinter/font.py /^ f = Font(font=("Courier", 20, "bold"))$/;" v +f Lib/turtledemo/chaos.py /^def f(x):$/;" f +f Lib/turtledemo/lindenmayer.py /^ def f():$/;" f function:main +f Lib/turtledemo/penrose.py /^f = (5**0.5-1)\/2.0 # (sqrt(5)-1)\/2 -- golden ratio$/;" v +f Lib/types.py /^ def f():$/;" f function:_cell_factory +f Modules/_blake2/impl/blake2.h /^ uint32_t f[2];$/;" m struct:__blake2s_state +f Modules/_blake2/impl/blake2.h /^ uint64_t f[2];$/;" m struct:__blake2b_state +f Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +f Modules/_ctypes/callproc.c /^ float f;$/;" m union:result file: +f Modules/_ctypes/ctypes.h /^ float f;$/;" m union:value +f Modules/_ctypes/ctypes.h /^ float f;$/;" m union:tagPyCArgObject::__anon496 +f0 Lib/idlelib/idle_test/test_browser.py /^f0 = mb.Function(module, 'f0', fname, 11, end_lineno=15)$/;" v +f1 Lib/idlelib/idle_test/test_browser.py /^f1 = mb._nest_function(f0, 'f1', 12, 14)$/;" v +f1 Lib/profile.py /^ def f1(n):$/;" f function:Profile._calibrate_inner +f1 Lib/test/test_compile.py /^ def f1():$/;" f function:TestSpecifics.test_strip_unused_None +f1 Lib/test/test_decorators.py /^ def f1(cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2.A +f1 Lib/test/test_decorators.py /^ def f1(): return 42$/;" f function:TestDecorators.test_argforms +f1 Lib/test/test_grammar.py /^ def f1(): pass$/;" f function:GrammarTests.test_funcdef +f1 Lib/test/test_inspect.py /^ f1 = functools.partialmethod((test_classmethod), 1)$/;" v class:TestSignatureObject.test_signature_without_self.A +f1 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def f1(): pass$/;" f function:GrammarTests.testFuncdef +f1 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f1(): pass$/;" f function:GrammarTests.testFuncdef +f1 Lib/test/test_monitoring.py /^def f1():$/;" f +f1 Lib/test/test_peepholer.py /^ def f1(x):$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_because_parameter +f1 Lib/test/test_scope.py /^ def f1():$/;" f function:ScopeTests.testLeaks +f1 Lib/test/test_set.py /^ def f1(a, b):$/;" f function:TestBinaryOpsMutating.test_iteration_with_mutation +f1 Lib/test/test_threading_local.py /^ def f1():$/;" f function:BaseLocalTest._test_one_class +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon519 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon520 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon521 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon522 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon523 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon524 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon525 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon526 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon527 file: +f1 Modules/_ctypes/_ctypes_test.c /^ char f1;$/;" m struct:__anon528 file: +f10 Modules/_ctypes/_ctypes_test.c /^ char f10;$/;" m struct:__anon528 file: +f123 Lib/test/test_sys.py /^ def f123():$/;" f function:SysModuleTest.test_current_exceptions +f123 Lib/test/test_sys.py /^ def f123():$/;" f function:SysModuleTest.test_current_frames +f2 Lib/idlelib/idle_test/test_browser.py /^f2 = mb._nest_function(f1, 'f2', 13, 13)$/;" v +f2 Lib/test/test_decorators.py /^ def f2(cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2.A +f2 Lib/test/test_decorators.py /^ def f2(): return 84$/;" f function:TestDecorators.test_argforms +f2 Lib/test/test_grammar.py /^ def f2(one_argument): pass$/;" f function:GrammarTests.test_funcdef +f2 Lib/test/test_inspect.py /^ f2 = functools.partialmethod((test_args_only), 1)$/;" v class:TestSignatureObject.test_signature_without_self.A +f2 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def f2(one_argument): pass$/;" f function:GrammarTests.testFuncdef +f2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f2(one_argument): pass$/;" f function:GrammarTests.testFuncdef +f2 Lib/test/test_monitoring.py /^def f2():$/;" f +f2 Lib/test/test_operator.py /^ f2 = self.copy(f, proto)$/;" v class:OperatorPickleTestCase.test_attrgetter.A +f2 Lib/test/test_peepholer.py /^ def f2(*, x):$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_because_parameter +f2 Lib/test/test_positional_only_arg.py /^ def f2(self, __a=42, \/, __b=43):$/;" m class:PositionalOnlyTestCase.test_mangling.X +f2 Lib/test/test_scope.py /^ def f2():$/;" f function:ScopeTests.testLeaks.f1 +f2 Lib/test/test_set.py /^ def f2(a, b):$/;" f function:TestBinaryOpsMutating.test_iteration_with_mutation +f2 Lib/test/test_threading_local.py /^ def f2():$/;" f function:BaseLocalTest._test_one_class +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon520 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon521 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon522 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon523 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon524 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon525 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon526 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon527 file: +f2 Modules/_ctypes/_ctypes_test.c /^ char f2;$/;" m struct:__anon528 file: +f2bad Lib/test/test_grammar.py /^ def f2bad():$/;" f function:GrammarTests.test_var_annot_basic_semantics +f3 Lib/test/test_decorators.py /^ def f3(cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2.A +f3 Lib/test/test_decorators.py /^ def f3(): pass$/;" f function:TestDecorators.test_argforms +f3 Lib/test/test_grammar.py /^ def f3(two, arguments): pass$/;" f function:GrammarTests.test_funcdef +f3 Lib/test/test_inspect.py /^ f3 = functools.partialmethod((test_staticmethod), 1)$/;" v class:TestSignatureObject.test_signature_without_self.A +f3 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def f3(two, arguments): pass$/;" f function:GrammarTests.testFuncdef +f3 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def f3(two, arguments): pass$/;" f function:GrammarTests.testFuncdef +f3 Lib/test/test_peepholer.py /^ def f3(*args):$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_because_parameter +f3 Lib/test/test_positional_only_arg.py /^ def f3(self, __a=42, \/, __b=43, *, __c=44):$/;" m class:PositionalOnlyTestCase.test_mangling.X +f3 Lib/test/test_set.py /^ def f3(a, b):$/;" f function:TestBinaryOpsMutating.test_iteration_with_mutation +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon521 file: +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon522 file: +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon523 file: +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon524 file: +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon525 file: +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon526 file: +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon527 file: +f3 Modules/_ctypes/_ctypes_test.c /^ char f3;$/;" m struct:__anon528 file: +f4 Lib/test/test_decorators.py /^ def f4(cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2.A +f4 Lib/test/test_inspect.py /^ f4 = functools.partialmethod((test_args_kwargs_only),1)$/;" v class:TestSignatureObject.test_signature_without_self.A +f4 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def f4(two, (compound, (argument, list))): pass$/;" f function:GrammarTests.testFuncdef +f4 Lib/test/test_peepholer.py /^ def f4(**kwargs):$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_because_parameter +f4 Modules/_ctypes/_ctypes_test.c /^ char f4;$/;" m struct:__anon522 file: +f4 Modules/_ctypes/_ctypes_test.c /^ char f4;$/;" m struct:__anon523 file: +f4 Modules/_ctypes/_ctypes_test.c /^ char f4;$/;" m struct:__anon524 file: +f4 Modules/_ctypes/_ctypes_test.c /^ char f4;$/;" m struct:__anon525 file: +f4 Modules/_ctypes/_ctypes_test.c /^ char f4;$/;" m struct:__anon526 file: +f4 Modules/_ctypes/_ctypes_test.c /^ char f4;$/;" m struct:__anon527 file: +f4 Modules/_ctypes/_ctypes_test.c /^ char f4;$/;" m struct:__anon528 file: +f5 Lib/test/test_decorators.py /^ def f5(cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2.A +f5 Lib/test/test_inspect.py /^ def f5(*, a): pass$/;" f function:TestGetcallargsFunctions.test_errors +f5 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def f5((compound, first), two): pass$/;" f function:GrammarTests.testFuncdef +f5 Lib/test/test_peepholer.py /^ def f5(x=0):$/;" f function:TestMarkingVariablesAsUnKnown.test_load_fast_known_because_parameter +f5 Modules/_ctypes/_ctypes_test.c /^ char f5;$/;" m struct:__anon523 file: +f5 Modules/_ctypes/_ctypes_test.c /^ char f5;$/;" m struct:__anon524 file: +f5 Modules/_ctypes/_ctypes_test.c /^ char f5;$/;" m struct:__anon525 file: +f5 Modules/_ctypes/_ctypes_test.c /^ char f5;$/;" m struct:__anon526 file: +f5 Modules/_ctypes/_ctypes_test.c /^ char f5;$/;" m struct:__anon527 file: +f5 Modules/_ctypes/_ctypes_test.c /^ char f5;$/;" m struct:__anon528 file: +f6 Lib/test/test_decorators.py /^ def f6(cls):$/;" m class:TestDecorators.test_wrapped_classmethod_inside_classmethod.MyClassMethod2.A +f6 Lib/test/test_inspect.py /^ def f6(a, b, c):$/;" f function:TestGetcallargsFunctions.test_errors +f6 Modules/_ctypes/_ctypes_test.c /^ char f6;$/;" m struct:__anon524 file: +f6 Modules/_ctypes/_ctypes_test.c /^ char f6;$/;" m struct:__anon525 file: +f6 Modules/_ctypes/_ctypes_test.c /^ char f6;$/;" m struct:__anon526 file: +f6 Modules/_ctypes/_ctypes_test.c /^ char f6;$/;" m struct:__anon527 file: +f6 Modules/_ctypes/_ctypes_test.c /^ char f6;$/;" m struct:__anon528 file: +f7 Modules/_ctypes/_ctypes_test.c /^ char f7;$/;" m struct:__anon525 file: +f7 Modules/_ctypes/_ctypes_test.c /^ char f7;$/;" m struct:__anon526 file: +f7 Modules/_ctypes/_ctypes_test.c /^ char f7;$/;" m struct:__anon527 file: +f7 Modules/_ctypes/_ctypes_test.c /^ char f7;$/;" m struct:__anon528 file: +f8 Lib/pstats.py /^def f8(x):$/;" f +f8 Modules/_ctypes/_ctypes_test.c /^ char f8;$/;" m struct:__anon526 file: +f8 Modules/_ctypes/_ctypes_test.c /^ char f8;$/;" m struct:__anon527 file: +f8 Modules/_ctypes/_ctypes_test.c /^ char f8;$/;" m struct:__anon528 file: +f9 Modules/_ctypes/_ctypes_test.c /^ char f9;$/;" m struct:__anon527 file: +f9 Modules/_ctypes/_ctypes_test.c /^ char f9;$/;" m struct:__anon528 file: +f_OK Lib/test/test_grammar.py /^ def f_OK():$/;" f function:GrammarTests.test_var_annot_basic_semantics +f_b Lib/test/test_traceback.py /^ def f_b():$/;" f function:SuggestionFormattingTestBase.test_name_error_bad_suggestions_do_not_trigger_for_small_names +f_back Include/internal/pycore_frame.h /^ PyFrameObject *f_back; \/* previous frame, or NULL *\/$/;" m struct:_frame +f_bad_ann Lib/test/ann_module3.py /^def f_bad_ann():$/;" f +f_builtins Include/internal/pycore_frame.h /^ PyObject *f_builtins; \/* Borrowed reference. Only valid if not on C stack *\/$/;" m struct:_PyInterpreterFrame +f_cnt Lib/test/test_functools.py /^ f_cnt = 0$/;" v class:TestLRU.test_lru_method.X +f_code Include/internal/pycore_frame.h /^ PyCodeObject *f_code; \/* Strong reference *\/$/;" m struct:_PyInterpreterFrame +f_contiguous Lib/test/pickletester.py /^ def f_contiguous(self):$/;" m class:ZeroCopyBytearray.PicklableNDArray +f_contiguous Lib/test/pickletester.py /^ f_contiguous = True$/;" v class:ZeroCopyBytearray +f_contiguous Lib/test/pickletester.py /^ f_contiguous = True$/;" v class:ZeroCopyBytes +f_fast_as_locals Include/internal/pycore_frame.h /^ char f_fast_as_locals; \/* Have the fast locals of this frame been converted to a dict? *\/$/;" m struct:_frame +f_frame Include/internal/pycore_frame.h /^ struct _PyInterpreterFrame *f_frame; \/* points to the frame data *\/$/;" m struct:_frame typeref:struct:_frame::_PyInterpreterFrame +f_funcobj Include/internal/pycore_frame.h /^ PyObject *f_funcobj; \/* Strong reference. Only valid if not on C stack *\/$/;" m struct:_PyInterpreterFrame +f_get Modules/_ctypes/cfield.c /^f_get(void *ptr, Py_ssize_t size)$/;" f file: +f_get_sw Modules/_ctypes/cfield.c /^f_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +f_getitem Modules/arraymodule.c /^f_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +f_globals Include/internal/pycore_frame.h /^ PyObject *f_globals; \/* Borrowed reference. Only valid if not on C stack *\/$/;" m struct:_PyInterpreterFrame +f_globals Lib/test/test_unittest/test_result.py /^ f_globals = {}$/;" v class:Test_TestResult.testStackFrameTrimming.Frame.tb_frame +f_lineno Include/internal/pycore_frame.h /^ int f_lineno; \/* Current line number. Only valid if non-zero *\/$/;" m struct:_frame +f_locals Include/internal/pycore_frame.h /^ PyObject *f_locals; \/* Strong reference, may be NULL. Only valid if not on C stack *\/$/;" m struct:_PyInterpreterFrame +f_m Lib/test/test_traceback.py /^ def f_m():$/;" f function:SuggestionFormattingTestBase.test_name_error_bad_suggestions_do_not_trigger_for_small_names +f_opcode_trace_set Include/internal/pycore_interp.h /^ bool f_opcode_trace_set;$/;" m struct:_is +f_py Lib/test/test_traceback.py /^ def f_py():$/;" f function:SuggestionFormattingTestBase.test_name_error_bad_suggestions_do_not_trigger_for_small_names +f_set Modules/_ctypes/cfield.c /^f_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +f_set_sw Modules/_ctypes/cfield.c /^f_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +f_setitem Modules/arraymodule.c /^f_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +f_string_debug Parser/tokenizer.h /^ int f_string_debug;$/;" m struct:_tokenizer_mode +f_string_line_start Parser/tokenizer.h /^ int f_string_line_start;$/;" m struct:_tokenizer_mode +f_string_multi_line_start Parser/tokenizer.h /^ const char* f_string_multi_line_start;$/;" m struct:_tokenizer_mode +f_string_multi_line_start_offset Parser/tokenizer.h /^ Py_ssize_t f_string_multi_line_start_offset;$/;" m struct:_tokenizer_mode +f_string_quote Parser/tokenizer.h /^ char f_string_quote;$/;" m struct:_tokenizer_mode +f_string_quote_size Parser/tokenizer.h /^ int f_string_quote_size;$/;" m struct:_tokenizer_mode +f_string_raw Parser/tokenizer.h /^ int f_string_raw;$/;" m struct:_tokenizer_mode +f_string_start Parser/tokenizer.h /^ const char* f_string_start;$/;" m struct:_tokenizer_mode +f_string_start_offset Parser/tokenizer.h /^ Py_ssize_t f_string_start_offset;$/;" m struct:_tokenizer_mode +f_trace Include/internal/pycore_frame.h /^ PyObject *f_trace; \/* Trace function *\/$/;" m struct:_frame +f_trace_lines Include/internal/pycore_frame.h /^ char f_trace_lines; \/* Emit per-line trace events? *\/$/;" m struct:_frame +f_trace_opcodes Include/internal/pycore_frame.h /^ char f_trace_opcodes; \/* Emit per-opcode trace events? *\/$/;" m struct:_frame +f_v Lib/test/test_traceback.py /^ def f_v():$/;" f function:SuggestionFormattingTestBase.test_name_error_bad_suggestions_do_not_trigger_for_small_names +f_with_binary_operator Lib/test/test_traceback.py /^ def f_with_binary_operator():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_for_binary_operators +f_with_binary_operator Lib/test/test_traceback.py /^ def f_with_binary_operator():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_for_binary_operators_two_char +f_with_binary_operator Lib/test/test_traceback.py /^ def f_with_binary_operator():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_for_binary_operators_with_spaces_and_parenthesis +f_with_binary_operator Lib/test/test_traceback.py /^ def f_with_binary_operator():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_for_binary_operators_with_unicode +f_with_binary_operator Lib/test/test_traceback.py /^ def f_with_binary_operator():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_for_subscript_with_spaces_and_parenthesis +f_with_multiline Lib/test/test_traceback.py /^ def f_with_multiline():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_multiline_expression +f_with_multiline Lib/test/test_traceback.py /^ def f_with_multiline():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_multiline_expression_bin_op +f_with_multiline Lib/test/test_traceback.py /^ def f_with_multiline():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_multiline_expression_syntax_error +f_with_subscript Lib/test/test_traceback.py /^ def f_with_subscript():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_for_subscript +f_with_subscript Lib/test/test_traceback.py /^ def f_with_subscript():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_for_subscript_unicode +f_with_subscript Lib/test/test_traceback.py /^ def f_with_subscript():$/;" f function:TracebackErrorLocationCaretTestBase.test_secondary_caret_not_elided +f_with_type Lib/test/test_traceback.py /^ def f_with_type():$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_in_type_annotation +f_with_unicode Lib/test/test_traceback.py /^ def f_with_unicode():$/;" f function:TracebackErrorLocationCaretTestBase.test_line_with_unicode +fac Lib/test/test_ast.py /^ def fac(args):$/;" f function:ASTValidatorTests.test_funcdef +fac Lib/test/test_ast.py /^ def fac(args):$/;" f function:ASTValidatorTests.test_lambda +faces Lib/test/test_set.py /^def faces(G):$/;" f +facility_names Lib/logging/handlers.py /^ facility_names = {$/;" v class:SysLogHandler +fact Lib/test/test_itertools.py /^def fact(n):$/;" f +fact Lib/test/test_scope.py /^ def fact(n):$/;" f function:ScopeTests.testRecursion.f +factor Modules/_lsprof.c /^ double factor;$/;" m struct:__anon364 file: +factor_rule Parser/parser.c /^factor_rule(Parser *p)$/;" f file: +factor_type Parser/parser.c 214;" d file: +factorial Lib/test/profilee.py /^def factorial(n):$/;" f +factorial Modules/_decimal/tests/bench.py /^def factorial(n, m):$/;" f +factorial_odd_part Modules/mathmodule.c /^factorial_odd_part(unsigned long n)$/;" f file: +factorial_partial_product Modules/mathmodule.c /^factorial_partial_product(unsigned long start, unsigned long stop,$/;" f file: +factorial_trailing_zeros Modules/mathmodule.c /^static const uint8_t factorial_trailing_zeros[] = {$/;" v file: +factory Lib/asyncio/streams.py /^ def factory():$/;" f function:start_server.start_unix_server +factory Lib/asyncio/streams.py /^ def factory():$/;" f function:start_server +factory Lib/asyncio/tasks.py /^ def factory(loop, coro, *, name=None, context=None):$/;" f function:create_eager_task_factory +factory Lib/importlib/util.py /^ def factory(cls, loader):$/;" m class:LazyLoader +factory Lib/test/test_ast.py /^ def factory(comps):$/;" f function:ASTValidatorTests.test_dictcomp +factory Lib/test/test_asyncio/test_eager_task_factory.py /^ def factory(loop, coro, **kwargs):$/;" f function:AsyncTaskCounter.__init__.CountingTask +factory Lib/test/test_email/test_headerregistry.py /^ factory = headerregistry.HeaderRegistry()$/;" v class:TestHeaderBase +factory Lib/test/test_ipaddress.py /^ def factory(self):$/;" m class:BaseTestCase +factory Lib/test/test_ipaddress.py /^ factory = ipaddress.IPv4Address$/;" v class:AddressTestCase_v4 +factory Lib/test/test_ipaddress.py /^ factory = ipaddress.IPv4Interface$/;" v class:InterfaceTestCase_v4 +factory Lib/test/test_ipaddress.py /^ factory = ipaddress.IPv4Network$/;" v class:NetworkTestCase_v4 +factory Lib/test/test_ipaddress.py /^ factory = ipaddress.IPv6Address$/;" v class:AddressTestCase_v6 +factory Lib/test/test_ipaddress.py /^ factory = ipaddress.IPv6Interface$/;" v class:InterfaceTestCase_v6 +factory Lib/test/test_ipaddress.py /^ factory = ipaddress.IPv6Network$/;" v class:NetworkTestCase_v6 +factory Lib/test/test_sqlite3/test_dbapi.py /^ def factory(database, *args, **kwargs):$/;" f function:OpenTests.test_factory_database_arg +fail Doc/includes/ndiff.py /^def fail(msg):$/;" f +fail Lib/pydoc.py /^ def fail(self, object, name=None, *args):$/;" m class:Doc +fail Lib/test/mapping_tests.py /^ fail = False$/;" v class:TestHashMappingProtocol.test_getitem.BadHash +fail Lib/test/mapping_tests.py /^ fail = False$/;" v class:TestHashMappingProtocol.test_pop.BadHash +fail Lib/test/mapping_tests.py /^ fail = False$/;" v class:TestHashMappingProtocol.test_setdefault.BadHash +fail Lib/test/support/script_helper.py /^ def fail(self, cmd_line):$/;" m class:_PythonRunResult +fail Lib/test/test_bdb.py /^ def fail(self, msg=None):$/;" m class:BaseTestCase +fail Lib/test/test_deque.py /^def fail():$/;" f +fail Lib/test/test_dict.py /^ fail = False$/;" v class:DictTest.test_getitem.BadHash +fail Lib/test/test_dict.py /^ fail = False$/;" v class:DictTest.test_pop.BadHash +fail Lib/test/test_dict.py /^ fail = False$/;" v class:DictTest.test_setdefault.BadHash +fail Lib/unittest/case.py /^ def fail(self, msg=None):$/;" m class:TestCase +fail Tools/clinic/clinic.py /^def fail($/;" f +fail Tools/clinic/cpp.py /^ def fail(self, *a: object) -> NoReturn:$/;" m class:Monitor +failAsBool Lib/test/test_with.py /^ def failAsBool():$/;" f function:ExceptionalTestCase.testErrorsInBool +failIf Lib/lib2to3/fixes/fix_asserts.py /^ failIf="assertFalse",$/;" v +failIfAlmostEqual Lib/lib2to3/fixes/fix_asserts.py /^ failIfAlmostEqual="assertNotAlmostEqual",$/;" v +failIfEqual Lib/lib2to3/fixes/fix_asserts.py /^ failIfEqual="assertNotEqual",$/;" v +failMsg PC/winreg.c /^static char *failMsg = "bad operand type";$/;" v file: +failUnless Lib/lib2to3/fixes/fix_asserts.py /^ failUnless="assertTrue",$/;" v +failUnlessAlmostEqual Lib/lib2to3/fixes/fix_asserts.py /^ failUnlessAlmostEqual="assertAlmostEqual",$/;" v +failUnlessEqual Lib/lib2to3/fixes/fix_asserts.py /^ failUnlessEqual="assertEqual",$/;" v +failUnlessRaises Lib/lib2to3/fixes/fix_asserts.py /^ failUnlessRaises="assertRaises",$/;" v +fail_fields Lib/test/test_ctypes/test_bitfields.py /^ def fail_fields(self, *fields):$/;" m class:BitFieldTest +fail_if_improved Doc/tools/check-warnings.py /^def fail_if_improved($/;" f +fail_if_regression Doc/tools/check-warnings.py /^def fail_if_regression($/;" f +fail_new_thread Lib/test/test_threading.py /^ def fail_new_thread(*args):$/;" f function:ThreadTests.test_limbo_cleanup +fail_pop Python/compile.c /^ jump_target_label *fail_pop;$/;" m struct:__anon672 file: +fail_pop_size Python/compile.c /^ Py_ssize_t fail_pop_size;$/;" m struct:__anon672 file: +fail_timeout Lib/test/test_socket.py /^ fail_timeout = support.LOOPBACK_TIMEOUT$/;" v class:SendrecvmsgBase +fail_with_process_info Lib/test/test_file_eintr.py /^ def fail_with_process_info(self, why, stdout=b'', stderr=b'',$/;" m class:TestFileIOSignalInterrupt +failed Lib/test/test_enum.py /^ failed = 1$/;" v class:_EnumTests.test_bad_new_super.BadSuper +failed Tools/msi/uploadrelease.bat /^:failed$/;" l +failed_map_path packaging/import_failed.py /^failed_map_path = os.path.join(get_path('stdlib'), '_import_failed', 'import_failed.map')$/;" v +failed_name packaging/import_failed.py /^ failed_name = __name__$/;" v +failed_name packaging/import_failed.py /^ failed_name = __spec__.name$/;" v +failfast Lib/test/support/__init__.py /^failfast = False$/;" v +failfast Lib/unittest/result.py /^def failfast(method):$/;" f +failing_converter Modules/_testcapimodule.c /^failing_converter(PyObject *obj, void *arg)$/;" f file: +failing_queue_test Lib/test/test_queue.py /^ def failing_queue_test(self, q):$/;" m class:FailingQueueTest +failure Include/pystats.h /^ uint64_t failure;$/;" m struct:_specialization_stats +failureException Lib/test/test_unittest/test_assertions.py /^ failureException = self.failureException$/;" v class:TestLongMessage.setUp.TestableTestFalse +failureException Lib/test/test_unittest/test_assertions.py /^ failureException = self.failureException$/;" v class:TestLongMessage.setUp.TestableTestTrue +failureException Lib/test/test_unittest/test_case.py /^ failureException = RuntimeError$/;" v class:Test_TestCase.test_failureException__subclassing__explicit_raise.Foo +failureException Lib/test/test_unittest/test_case.py /^ failureException = RuntimeError$/;" v class:Test_TestCase.test_failureException__subclassing__implicit_raise.Foo +failureException Lib/unittest/case.py /^ failureException = AssertionError$/;" v class:TestCase +failureException Lib/unittest/suite.py /^ failureException = None$/;" v class:_ErrorHolder +failure_kinds Include/pystats.h /^ uint64_t failure_kinds[SPECIALIZATION_FAILURE_KINDS];$/;" m struct:_specialization_stats +failures Lib/test/test_argparse.py /^ failures = ()$/;" v class:TestActionExtend +failures Lib/test/test_argparse.py /^ failures = [$/;" v class:TestMutuallyExclusiveManySuppressed +failures Lib/test/test_argparse.py /^ failures = [$/;" v class:TestMutuallyExclusiveOptionalAndPositional +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a b c']$/;" v class:TestPositionalsNargsNoneOptional +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a b c']$/;" v class:TestPositionalsNargsOptional1 +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a b c']$/;" v class:TestPositionalsNargsOptionalNone +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a', 'a b c d']$/;" v class:TestPositionalsNargs2Optional +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a', 'a b c']$/;" v class:TestPositionalsNargsNone1 +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a', 'a b', 'a b c d']$/;" v class:TestPositionalsActionAppend +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a', 'a b', 'a b c d']$/;" v class:TestPositionalsNargs2None +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a', 'a b']$/;" v class:TestPositionalsNargs2OneOrMore +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a', 'b']$/;" v class:TestPositionalsNargsNoneOneOrMore1 +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a']$/;" v class:TestPositionalsNargs2ZeroOrMore +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a']$/;" v class:TestPositionalsNargsNoneOneOrMore +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a']$/;" v class:TestPositionalsNargsNoneOptional1 +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a']$/;" v class:TestPositionalsNargsNoneZeroOrMore1 +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a']$/;" v class:TestPositionalsNargsOneOrMore1 +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'a']$/;" v class:TestPositionalsNargsOneOrMoreNone +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'h', '42', 'ef']$/;" v class:TestPositionalsChoicesInt +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', 'h', '42', 'ef']$/;" v class:TestPositionalsChoicesString +failures Lib/test/test_argparse.py /^ failures = ['', '--foo', ]$/;" v class:TestPositionalsNargsZeroOrMore1 +failures Lib/test/test_argparse.py /^ failures = ['', '--foo']$/;" v class:TestPositionalsNargsNoneZeroOrMore +failures Lib/test/test_argparse.py /^ failures = ['', '--foo']$/;" v class:TestPositionalsNargsOptionalOneOrMore +failures Lib/test/test_argparse.py /^ failures = ['', '--foo']$/;" v class:TestPositionalsNargsZeroOrMoreNone +failures Lib/test/test_argparse.py /^ failures = ['', '-b', 'X', '@invalid', '@missing']$/;" v class:TestArgumentsFromFile +failures Lib/test/test_argparse.py /^ failures = ['', '-x', 'a b']$/;" v class:TestPositionalsNargs1 +failures Lib/test/test_argparse.py /^ failures = ['', '-x', 'a b']$/;" v class:TestPositionalsNargsNone +failures Lib/test/test_argparse.py /^ failures = ['', '-x', 'a', 'a b c']$/;" v class:TestPositionalsNargsNoneNone +failures Lib/test/test_argparse.py /^ failures = ['', '-x']$/;" v class:TestPositionalsNargsOneOrMore +failures Lib/test/test_argparse.py /^ failures = ['', '-z', '-z Z']$/;" v class:TestNargsRemainder +failures Lib/test/test_argparse.py /^ failures = ['', 'a', '-x', 'a b c']$/;" v class:TestPositionalsNargs2 +failures Lib/test/test_argparse.py /^ failures = ['']$/;" v class:TestBooleanOptionalActionRequired +failures Lib/test/test_argparse.py /^ failures = ['']$/;" v class:TestFileTypeDefaults +failures Lib/test/test_argparse.py /^ failures = ['+foon 3', '++foon 3', '++food', '++food ++foo 2']$/;" v class:TestOptionalsDisallowLongAbbreviationPrefixChars +failures Lib/test/test_argparse.py /^ failures = ['+r', '+c +r']$/;" v class:TestDisallowLongAbbreviationAllowsShortGroupingPrefix +failures Lib/test/test_argparse.py /^ failures = ['--bar X --baz Y', '--bar X --baz']$/;" v class:TestMutuallyExclusiveSimple +failures Lib/test/test_argparse.py /^ failures = ['--bar X --baz Y', '--baz X --bar Y']$/;" v class:TestMutuallyExclusiveInGroup +failures Lib/test/test_argparse.py /^ failures = ['--bar', '-fbar', '-b B', 'B', '-f', '--bar B', '-baz', '-h', '--help', '+h', '::help', '\/help']$/;" v class:TestOptionalsAlternatePrefixChars +failures Lib/test/test_argparse.py /^ failures = ['--bar', '-fbar', '-b B', 'B', '-f', '--bar B', '-baz']$/;" v class:TestOptionalsAlternatePrefixCharsAddedHelp +failures Lib/test/test_argparse.py /^ failures = ['--bar', '-fbar', '-fbaz', '-bazf', '-b B', 'B']$/;" v class:TestOptionalsSingleDoubleDash +failures Lib/test/test_argparse.py /^ failures = ['--foo', '-f', '-f a', 'a', '--foo -x', '--foo --bar']$/;" v class:TestOptionalsDoubleDash +failures Lib/test/test_argparse.py /^ failures = ['--foo', 'a b c']$/;" v class:TestPositionalsNargsOptionalOptional +failures Lib/test/test_argparse.py /^ failures = ['--foo']$/;" v class:TestPositionalsNargsOptionalZeroOrMore +failures Lib/test/test_argparse.py /^ failures = ['--foob 5', '--foob']$/;" v class:TestOptionalsAllowLongAbbreviation +failures Lib/test/test_argparse.py /^ failures = ['--klmno X --pqrst Y']$/;" v class:TestMutuallyExclusiveLong +failures Lib/test/test_argparse.py /^ failures = ['--x --verbose', '-N', 'a', '-v x']$/;" v class:TestOptionalsShortLong +failures Lib/test/test_argparse.py /^ failures = ['-1', 'a', '-1 --foo', '-1 -y', '-1 -1', '-1 -2']$/;" v class:TestOptionalsNumeric +failures Lib/test/test_argparse.py /^ failures = ['-2', '-315']$/;" v class:TestOptionalsNumericAndPositionals +failures Lib/test/test_argparse.py /^ failures = ['-a -b', '-b -c', '-a -c', '-a -b -c']$/;" v class:TestMutuallyExclusiveOptionalsMixed +failures Lib/test/test_argparse.py /^ failures = ['-f', '-f a', '-fa', '-foa', '-foo', '-fo', '-foo b']$/;" v class:TestOptionalsSingleDashAmbiguous +failures Lib/test/test_argparse.py /^ failures = ['-f', '-foo', '-fo', '-foo b', '-foob', '-fooba', '-foora']$/;" v class:TestOptionalsSingleDashSubsetAmbiguous +failures Lib/test/test_argparse.py /^ failures = ['-foo', 'a', '--foo', '-foo --foo', '-foo -y', '-fooa']$/;" v class:TestOptionalsSingleDashLong +failures Lib/test/test_argparse.py /^ failures = ['-foon 3', '--foon 3', '--food', '--food --foo 2']$/;" v class:TestOptionalsDisallowLongAbbreviation +failures Lib/test/test_argparse.py /^ failures = ['-k3']$/;" v class:TestOptionalsAlmostNumericAndPositionals +failures Lib/test/test_argparse.py /^ failures = ['-r', '-c -r']$/;" v class:TestDisallowLongAbbreviationAllowsShortGrouping +failures Lib/test/test_argparse.py /^ failures = ['-w',$/;" v class:TestOptionalsAlternatePrefixCharsMultipleShortArgs +failures Lib/test/test_argparse.py /^ failures = ['-x X -y']$/;" v class:TestMutuallyExclusiveFirstSuppressed +failures Lib/test/test_argparse.py /^ failures = ['-x', '', 'non-existent-file.txt']$/;" v class:TestFileTypeR +failures Lib/test/test_argparse.py /^ failures = ['-x', '', 'readonly', 'writable']$/;" v class:TestFileTypeX +failures Lib/test/test_argparse.py /^ failures = ['-x', '', 'readonly']$/;" v class:TestFileTypeW +failures Lib/test/test_argparse.py /^ failures = ['-x', '']$/;" v class:TestFileTypeRB +failures Lib/test/test_argparse.py /^ failures = ['-x', '']$/;" v class:TestFileTypeWB +failures Lib/test/test_argparse.py /^ failures = ['-x', '-y2.5', '-xa', '-x -a',$/;" v class:TestOptionLike +failures Lib/test/test_argparse.py /^ failures = ['-x', 'a b', '1 2']$/;" v class:TestPositionalsNargsOptionalConvertedDefault +failures Lib/test/test_argparse.py /^ failures = ['-x', 'a b']$/;" v class:TestPositionalsNargsOptional +failures Lib/test/test_argparse.py /^ failures = ['-x', 'a b']$/;" v class:TestPositionalsNargsOptionalDefault +failures Lib/test/test_argparse.py /^ failures = ['-x', 'a', '--foo', '-x --foo', '-x -y']$/;" v class:TestOptionalsSingleDash +failures Lib/test/test_argparse.py /^ failures = ['-x']$/;" v class:TestDefaultSuppress +failures Lib/test/test_argparse.py /^ failures = ['-x']$/;" v class:TestParserDefault42 +failures Lib/test/test_argparse.py /^ failures = ['-x']$/;" v class:TestParserDefaultSuppress +failures Lib/test/test_argparse.py /^ failures = ['-x']$/;" v class:TestPositionalsNargsZeroOrMore +failures Lib/test/test_argparse.py /^ failures = ['-x']$/;" v class:TestPositionalsNargsZeroOrMoreDefault +failures Lib/test/test_argparse.py /^ failures = ['-y', '+ -']$/;" v class:TestPrefixCharacterOnlyArguments +failures Lib/test/test_argparse.py /^ failures = ['-y']$/;" v class:TestEmptyAndSpaceContainingArguments +failures Lib/test/test_argparse.py /^ failures = ['2']$/;" v class:TestOptionalsNargsOptional +failures Lib/test/test_argparse.py /^ failures = ['X A -b', '-b -c', '-c X A']$/;" v class:TestMutuallyExclusiveOptionalsAndPositionalsMixed +failures Lib/test/test_argparse.py /^ failures = ['a', '']$/;" v class:TestOptionalsRequired +failures Lib/test/test_argparse.py /^ failures = ['a', '--baz', 'a --baz', '--baz a b']$/;" v class:TestOptionalsActionAppend +failures Lib/test/test_argparse.py /^ failures = ['a', '--baz', 'a --baz', '--baz a b']$/;" v class:TestOptionalsActionAppendWithDefault +failures Lib/test/test_argparse.py /^ failures = ['a', '--foo', '-xa', '-x --foo', '-x -z', '-z -x',$/;" v class:TestOptionalsSingleDashCombined +failures Lib/test/test_argparse.py /^ failures = ['a', '-c', 'a -c', '-bx', '-b x']$/;" v class:TestOptionalsActionAppendConst +failures Lib/test/test_argparse.py /^ failures = ['a', '-c', 'a -c', '-bx', '-b x']$/;" v class:TestOptionalsActionAppendConstWithDefault +failures Lib/test/test_argparse.py /^ failures = ['a', '-f d', '-fad', '-ga', '-g 6']$/;" v class:TestOptionalsChoices +failures Lib/test/test_argparse.py /^ failures = ['a', '-x a', '-x b', '-x a -x b']$/;" v class:TestOptionalsActionCount +failures Lib/test/test_argparse.py /^ failures = ['a', '-x', '-x a', '-x a b', 'a -x', 'a -x b']$/;" v class:TestOptionalsNargs3 +failures Lib/test/test_argparse.py /^ failures = ['a', '-x', '-y', 'a -x', 'a -y b']$/;" v class:TestOptionalsNargsOneOrMore +failures Lib/test/test_argparse.py /^ failures = ['a', '-x']$/;" v class:TestOptionalsNargs1 +failures Lib/test/test_argparse.py /^ failures = ['a', '-x']$/;" v class:TestOptionalsNargsDefault +failures Lib/test/test_argparse.py /^ failures = ['a', '-za', '-z a']$/;" v class:TestOptionalsActionStoreFalse +failures Lib/test/test_argparse.py /^ failures = ['a', '42j', '--eggs a', '--eggs 2i']$/;" v class:TestTypeCallable +failures Lib/test/test_argparse.py /^ failures = ['a', 'a -x']$/;" v class:TestOptionalsActionStore +failures Lib/test/test_argparse.py /^ failures = ['a']$/;" v class:TestOptionalsActionStoreConst +failures Lib/test/test_argparse.py /^ failures = ['a']$/;" v class:TestOptionalsDefault +failures Lib/test/test_argparse.py /^ failures = ['a']$/;" v class:TestOptionalsDest +failures Lib/test/test_argparse.py /^ failures = ['a']$/;" v class:TestOptionalsNargsZeroOrMore +failures Lib/test/test_argparse.py /^ failures = []$/;" v class:TestActionUserDefined +failures Lib/test/test_argparse.py /^ failures = []$/;" v class:TestArgumentsFromFileConverter +failures Lib/test/test_argparse.py /^ failures = []$/;" v class:TestNargsZeroOrMore +failures Lib/test/test_argparse.py /^ failures = []$/;" v class:TestTypeClassicClass +failures Lib/test/test_argparse.py /^ failures = []$/;" v class:TestTypeUserDefined +faith_prefix Modules/getaddrinfo.c /^static struct in6_addr faith_prefix = IN6ADDR_GAI_ANY_INIT;$/;" v typeref:struct:in6_addr file: +fake Lib/test/inspect_fodder2.py /^ def fake():$/;" f function:decorator +fakeInstallHandler Lib/test/test_unittest/test_program.py /^ def fakeInstallHandler():$/;" f function:TestCommandLineArgs.testCatchBreakInstallsHandler +fakeRegisterResult Lib/test/test_unittest/test_runner.py /^ def fakeRegisterResult(thisResult):$/;" f function:Test_TextTestRunner.testRunnerRegistersResult +fake_callable_setup Lib/test/test_timeit.py /^ def fake_callable_setup(self):$/;" m class:TestTimeit +fake_callable_stmt Lib/test/test_timeit.py /^ def fake_callable_stmt(self):$/;" m class:TestTimeit +fake_code Lib/profile.py /^ class fake_code:$/;" c class:Profile +fake_exists Lib/test/test_lib2to3/test_fixers.py /^ def fake_exists(name):$/;" f function:Test_import.setUp +fake_filesystem_unittest Lib/test/test_importlib/stubs.py /^class fake_filesystem_unittest:$/;" c +fake_frame Lib/profile.py /^ class fake_frame:$/;" c class:Profile +fake_function Lib/test/test_sys_settrace.py /^ class fake_function:$/;" c function:.test_jump_to_firstlineno +fake_gzip Lib/test/test_xmlrpc.py /^ fake_gzip = False$/;" v class:GzipServerTestCase.Transport +fake_lstat Lib/test/test_posixpath.py /^ def fake_lstat(path):$/;" f function:PosixPathTest.test_ismount_different_device +fake_lstat Lib/test/test_posixpath.py /^ def fake_lstat(path):$/;" f function:PosixPathTest.test_ismount_directory_not_readable +fake_mtime Lib/test/test_importlib/source/test_file_loader.py /^ def fake_mtime(self, fxn):$/;" m class:SimpleTest +fake_pip Lib/test/test_ensurepip.py /^def fake_pip(version=ensurepip.version()):$/;" f +fake_setup Lib/test/test_timeit.py /^ fake_setup = "import timeit\\ntimeit._fake_timer.setup()"$/;" v class:TestTimeit +fake_stmt Lib/test/test_timeit.py /^ fake_stmt = "import timeit\\ntimeit._fake_timer.inc()"$/;" v class:TestTimeit +fake_venv Lib/test/test_launcher.py /^ def fake_venv(self):$/;" m class:RunPyMixin +fakeftp Lib/test/test_urllib.py /^ def fakeftp(self):$/;" m class:FakeFTPMixin +fakehttp Lib/test/test_urllib.py /^ def fakehttp(self, fakedata, mock_close=False):$/;" m class:FakeHTTPMixin +fakehttp Lib/test/test_urllib.py /^def fakehttp(fakedata, mock_close=False):$/;" f +fallbackArch PC/launcher2.c /^ const wchar_t *fallbackArch;$/;" m struct:RegistrySearchInfo file: +fallback_getpass Lib/getpass.py /^def fallback_getpass(prompt='Password: ', stream=None):$/;" f +fallback_getvalue Lib/multiprocessing/managers.py /^ def fallback_getvalue(self, conn, ident, obj):$/;" m class:Server +fallback_mapping Lib/multiprocessing/managers.py /^ fallback_mapping = {$/;" v class:Server +fallback_repr Lib/multiprocessing/managers.py /^ def fallback_repr(self, conn, ident, obj):$/;" m class:Server +fallback_str Lib/multiprocessing/managers.py /^ def fallback_str(self, conn, ident, obj):$/;" m class:Server +false Lib/test/test_enum.py /^ false = 0$/;" v class:TestSpecial.test_bool.IntLogic +false Lib/test/test_enum.py /^ false = False$/;" v class:TestSpecial.test_bool.Logic +false Lib/test/test_enum.py /^ false = False$/;" v class:TestSpecial.test_bool.RealLogic +false Lib/test/test_struct.py /^ false = (), [], [], '', 0$/;" v class:StructTest.test_bool.ExplodingBool +falseAsBool Lib/test/test_with.py /^ def falseAsBool():$/;" f function:ExceptionalTestCase.testErrorsInBool +falseFormat Lib/test/test_struct.py /^ falseFormat = prefix + '?' * len(false)$/;" v class:StructTest.test_bool.ExplodingBool +families Lib/multiprocessing/connection.py /^families = ['AF_INET']$/;" v +families Lib/multiprocessing/dummy/connection.py /^families = [None]$/;" v +families Lib/tkinter/font.py /^def families(root=None, displayof=None):$/;" f +family Lib/asyncio/trsock.py /^ def family(self):$/;" m class:TransportSocket +family Lib/socket.py /^ def family(self):$/;" m class:socket +family Modules/socketmodule.h /^ USHORT family;$/;" m union:SOCKADDR_BTH_REDEF::__anon395 +family Python/bytecodes.c 52;" d file: +familyName PC/launcher2.c /^ const wchar_t *familyName;$/;" m struct:AppxSearchInfo file: +family_def Tools/cases_generator/parser.py /^ def family_def(self) -> Family | None:$/;" m class:Parser +fanout Modules/_blake2/impl/blake2.h /^ uint8_t fanout; \/\/ 3$/;" m struct:__blake2b_param +fanout Modules/_blake2/impl/blake2.h /^ uint8_t fanout; \/\/ 3$/;" m struct:__blake2s_param +farray Lib/test/test_buffer.py /^def farray(items, shape):$/;" f +fast Modules/_pickle.c /^ int fast; \/* Enable fast mode if set to a true value.$/;" m struct:PicklerObject file: +fast_closed_checks Modules/_io/bufferedio.c /^ int fast_closed_checks;$/;" m struct:__anon435 file: +fast_encode Modules/_json.c /^ PyCFunction fast_encode;$/;" m struct:_PyEncoderObject file: +fast_floor_div Objects/longobject.c /^fast_floor_div(PyLongObject *a, PyLongObject *b)$/;" f file: +fast_hidden Python/compile.c /^ PyObject *fast_hidden;$/;" m struct:__anon673 file: +fast_memo Modules/_pickle.c /^ PyObject *fast_memo;$/;" m struct:PicklerObject file: +fast_mod Objects/longobject.c /^fast_mod(PyLongObject *a, PyLongObject *b)$/;" f file: +fast_nesting Modules/_pickle.c /^ int fast_nesting;$/;" m struct:PicklerObject file: +fast_range_iter Objects/rangeobject.c /^fast_range_iter(long start, long stop, long step, long len)$/;" f file: +fast_save_enter Modules/_pickle.c /^fast_save_enter(PicklerObject *self, PyObject *obj)$/;" f file: +fast_save_leave Modules/_pickle.c /^fast_save_leave(PicklerObject *self, PyObject *obj)$/;" f file: +fast_scan_many_locals Python/flowgraph.c /^fast_scan_many_locals(basicblock *entryblock, int nlocals)$/;" f file: +fastcall_args Modules/_testcapi/vectorcall.c /^fastcall_args(PyObject *args, PyObject ***stack, Py_ssize_t *nargs)$/;" f file: +fatal Lib/logging/__init__.py /^ def fatal(self, msg, *args, **kwargs):$/;" m class:Logger +fatal Lib/logging/__init__.py /^def fatal(msg, *args, **kwargs):$/;" f +fatal Mac/BuildScript/build-installer.py /^def fatal(msg):$/;" f +fatal Tools/c-analyzer/distutils/log.py /^ def fatal(self, msg, *args):$/;" m class:Log +fatal Tools/c-analyzer/distutils/log.py /^fatal = _global_log.fatal$/;" v +fatalError Lib/xml/dom/pulldom.py /^ def fatalError(self, exception):$/;" m class:ErrorHandler +fatalError Lib/xml/sax/handler.py /^ def fatalError(self, exception):$/;" m class:ErrorHandler +fatalError Lib/xml/sax/saxutils.py /^ def fatalError(self, exception):$/;" m class:XMLFilterBase +fatal_error Include/internal/pycore_faulthandler.h /^ } fatal_error;$/;" m struct:_faulthandler_runtime_state typeref:struct:_faulthandler_runtime_state::__anon126 +fatal_error Modules/faulthandler.c 56;" d file: +fatal_error Python/pylifecycle.c /^fatal_error(int fd, int header, const char *prefix, const char *msg,$/;" f file: +fatal_error_dump_runtime Python/pylifecycle.c /^fatal_error_dump_runtime(int fd, _PyRuntimeState *runtime)$/;" f file: +fatal_error_exit Python/pylifecycle.c /^fatal_error_exit(int status)$/;" f file: +fatal_output_debug Python/pylifecycle.c /^fatal_output_debug(const char *msg)$/;" f file: +fault_handler_t Modules/faulthandler.c /^} fault_handler_t;$/;" t typeref:struct:__anon559 file: +faulthandler Include/cpython/initconfig.h /^ int faulthandler;$/;" m struct:PyConfig +faulthandler Include/internal/pycore_runtime.h /^ struct _faulthandler_runtime_state faulthandler;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_faulthandler_runtime_state +faulthandler Lib/test/test_embed.py /^ faulthandler=0,$/;" v class:InitConfigTests +faulthandler_allocate_stack Modules/faulthandler.c /^faulthandler_allocate_stack(void)$/;" f file: +faulthandler_cancel_dump_traceback_later_py Modules/faulthandler.c /^faulthandler_cancel_dump_traceback_later_py(PyObject *self,$/;" f file: +faulthandler_disable Modules/faulthandler.c /^faulthandler_disable(void)$/;" f file: +faulthandler_disable_fatal_handler Modules/faulthandler.c /^faulthandler_disable_fatal_handler(fault_handler_t *handler)$/;" f file: +faulthandler_disable_py Modules/faulthandler.c /^faulthandler_disable_py(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +faulthandler_dump_traceback Modules/faulthandler.c /^faulthandler_dump_traceback(int fd, int all_threads,$/;" f file: +faulthandler_dump_traceback_later Modules/faulthandler.c /^faulthandler_dump_traceback_later(PyObject *self,$/;" f file: +faulthandler_dump_traceback_py Modules/faulthandler.c /^faulthandler_dump_traceback_py(PyObject *self,$/;" f file: +faulthandler_enable Modules/faulthandler.c /^faulthandler_enable(void)$/;" f file: +faulthandler_exc_handler Modules/faulthandler.c /^faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info)$/;" f file: +faulthandler_fatal_error Modules/faulthandler.c /^faulthandler_fatal_error(int signum)$/;" f file: +faulthandler_fatal_error_c_thread Modules/faulthandler.c /^faulthandler_fatal_error_c_thread(PyObject *self, PyObject *args)$/;" f file: +faulthandler_fatal_error_thread Modules/faulthandler.c /^faulthandler_fatal_error_thread(void *plock)$/;" f file: +faulthandler_get_fileno Modules/faulthandler.c /^faulthandler_get_fileno(PyObject **file_ptr)$/;" f file: +faulthandler_handlers Modules/faulthandler.c /^static fault_handler_t faulthandler_handlers[] = {$/;" v file: +faulthandler_ignore_exception Modules/faulthandler.c /^faulthandler_ignore_exception(DWORD code)$/;" f file: +faulthandler_init_enable Modules/faulthandler.c /^faulthandler_init_enable(void)$/;" f file: +faulthandler_is_enabled Modules/faulthandler.c /^faulthandler_is_enabled(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +faulthandler_nsignals Modules/faulthandler.c /^static const size_t faulthandler_nsignals = \\$/;" v file: +faulthandler_py_enable Modules/faulthandler.c /^faulthandler_py_enable(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +faulthandler_raise_exception Modules/faulthandler.c /^faulthandler_raise_exception(PyObject *self, PyObject *args)$/;" f file: +faulthandler_raise_sigsegv Modules/faulthandler.c /^faulthandler_raise_sigsegv(void)$/;" f file: +faulthandler_read_null Modules/faulthandler.c /^faulthandler_read_null(PyObject *self, PyObject *args)$/;" f file: +faulthandler_register Modules/faulthandler.c /^faulthandler_register(int signum, int chain, _Py_sighandler_t *previous_p)$/;" f file: +faulthandler_register_py Modules/faulthandler.c /^faulthandler_register_py(PyObject *self,$/;" f file: +faulthandler_sigabrt Modules/faulthandler.c /^faulthandler_sigabrt(PyObject *self, PyObject *args)$/;" f file: +faulthandler_sigfpe Modules/faulthandler.c /^faulthandler_sigfpe(PyObject *self, PyObject *args)$/;" f file: +faulthandler_sigsegv Modules/faulthandler.c /^faulthandler_sigsegv(PyObject *self, PyObject *args)$/;" f file: +faulthandler_slots Modules/faulthandler.c /^static PyModuleDef_Slot faulthandler_slots[] = {$/;" v file: +faulthandler_stack_overflow Modules/faulthandler.c /^faulthandler_stack_overflow(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +faulthandler_suppress_crash_report Modules/faulthandler.c /^faulthandler_suppress_crash_report(void)$/;" f file: +faulthandler_thread Modules/faulthandler.c /^faulthandler_thread(void *unused)$/;" f file: +faulthandler_traverse Modules/faulthandler.c /^faulthandler_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +faulthandler_unregister Modules/faulthandler.c /^faulthandler_unregister(user_signal_t *user, int signum)$/;" f file: +faulthandler_unregister_py Modules/faulthandler.c /^faulthandler_unregister_py(PyObject *self, PyObject *args)$/;" f file: +faulthandler_user Modules/faulthandler.c /^faulthandler_user(int signum)$/;" f file: +faulthandler_user_signal Include/internal/pycore_faulthandler.h /^struct faulthandler_user_signal {$/;" s +fb Lib/tkinter/font.py /^ fb = Font(font=w["font"]).copy()$/;" v +fb_block Python/compile.c /^ jump_target_label fb_block;$/;" m struct:fblockinfo file: +fb_datum Python/compile.c /^ void *fb_datum;$/;" m struct:fblockinfo file: +fb_exit Python/compile.c /^ jump_target_label fb_exit;$/;" m struct:fblockinfo file: +fb_type Python/compile.c /^ enum fblocktype fb_type;$/;" m struct:fblockinfo typeref:enum:fblockinfo::fblocktype file: +fbad Lib/test/test_grammar.py /^ def fbad():$/;" f function:GrammarTests.test_var_annot_basic_semantics +fblockinfo Python/compile.c /^struct fblockinfo {$/;" s file: +fblocktype Python/compile.c /^enum fblocktype { WHILE_LOOP, FOR_LOOP, TRY_EXCEPT, FINALLY_TRY, FINALLY_END,$/;" g file: +fbound Modules/audioop.c /^fbound(double val, double minval, double maxval)$/;" f file: +fcntl Lib/mailbox.py /^ fcntl = None$/;" v +fcntl Lib/subprocess.py /^ fcntl = None$/;" v +fcntl Lib/test/test_fcntl.py /^fcntl = import_module('fcntl')$/;" v +fcntl Lib/test/test_ioctl.py /^fcntl = import_module('fcntl')$/;" v +fcntl Lib/test/test_os.py /^ fcntl = None$/;" v +fcntl Lib/test/test_socket.py /^ fcntl = None$/;" v +fcntl Lib/test/test_subprocess.py /^ fcntl = None$/;" v +fcntl Lib/xmlrpc/server.py /^ fcntl = None$/;" v +fcntl_exec Modules/fcntlmodule.c /^fcntl_exec(PyObject *module)$/;" f file: +fcntl_fcntl Modules/clinic/fcntlmodule.c.h /^fcntl_fcntl(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +fcntl_fcntl_impl Modules/fcntlmodule.c /^fcntl_fcntl_impl(PyObject *module, int fd, int code, PyObject *arg)$/;" f file: +fcntl_flock Modules/clinic/fcntlmodule.c.h /^fcntl_flock(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +fcntl_flock_impl Modules/fcntlmodule.c /^fcntl_flock_impl(PyObject *module, int fd, int code)$/;" f file: +fcntl_ioctl Modules/clinic/fcntlmodule.c.h /^fcntl_ioctl(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +fcntl_ioctl_impl Modules/fcntlmodule.c /^fcntl_ioctl_impl(PyObject *module, int fd, unsigned int code,$/;" f file: +fcntl_lockf Modules/clinic/fcntlmodule.c.h /^fcntl_lockf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +fcntl_lockf_impl Modules/fcntlmodule.c /^fcntl_lockf_impl(PyObject *module, int fd, int code, PyObject *lenobj,$/;" f file: +fcntl_methods Modules/fcntlmodule.c /^static PyMethodDef fcntl_methods[] = {$/;" v file: +fcntl_slots Modules/fcntlmodule.c /^static PyModuleDef_Slot fcntl_slots[] = {$/;" v file: +fcntlmodule Modules/fcntlmodule.c /^static struct PyModuleDef fcntlmodule = {$/;" v typeref:struct:PyModuleDef file: +fcompare Doc/includes/ndiff.py /^def fcompare(f1name, f2name):$/;" f +fcre Lib/email/generator.py /^fcre = re.compile(r'^From ', re.MULTILINE)$/;" v +fcre Lib/email/header.py /^fcre = re.compile(r'[\\041-\\176]+:$')$/;" v +fd Include/internal/pycore_faulthandler.h /^ int fd;$/;" m struct:_faulthandler_runtime_state::__anon126 +fd Include/internal/pycore_faulthandler.h /^ int fd;$/;" m struct:_faulthandler_runtime_state::__anon127 +fd Include/internal/pycore_faulthandler.h /^ int fd;$/;" m struct:faulthandler_user_signal +fd Include/internal/pycore_pyhash.h /^ int fd;$/;" m struct:pyhash_runtime_state::__anon155 +fd Include/internal/pycore_signal.h /^ volatile int fd;$/;" m struct:_signals_runtime_state::__anon161 +fd Lib/test/test_socket.py /^ fd = os.open(os.curdir, os.O_RDONLY)$/;" v class:GeneralModuleTests.test__sendfile_use_sendfile.File +fd Lib/test/tf_inherit_check.py /^ fd = int(sys.argv[2])$/;" v +fd Lib/turtle.py /^ fd = forward$/;" v class:TNavigator +fd Modules/_io/fileio.c /^ int fd;$/;" m struct:__anon431 file: +fd Modules/_io/winconsoleio.c /^ int fd;$/;" m struct:__anon432 file: +fd Modules/mmapmodule.c /^ int fd;$/;" m struct:__anon490 file: +fd Modules/ossaudiodev.c /^ int fd; \/* The open mixer device *\/$/;" m struct:__anon472 file: +fd Modules/ossaudiodev.c /^ int fd; \/* file descriptor *\/$/;" m struct:__anon471 file: +fd Modules/posixmodule.c /^ int fd;$/;" m struct:__anon478 file: +fd Modules/posixmodule.c /^ int fd;$/;" m struct:__anon481 file: +fd Modules/selectmodule.c /^ SOCKET fd;$/;" m struct:__anon573 file: +fd Objects/fileobject.c /^ int fd;$/;" m struct:__anon710 file: +fd PC/_testconsole.c /^ int fd;$/;" m struct:__anon285 file: +fd Parser/tokenizer.c /^ int fd;$/;" m union:__anon668 file: +fd_and_follow_symlinks_invalid Modules/posixmodule.c /^fd_and_follow_symlinks_invalid(const char *function_name, int fd,$/;" f file: +fd_count Lib/test/support/os_helper.py /^def fd_count():$/;" f +fd_devpoll Modules/selectmodule.c /^ int fd_devpoll;$/;" m struct:__anon575 file: +fd_mask Lib/test/test_lib2to3/data/infinite_recursion.py /^fd_mask = __int32_t$/;" v +fd_set Lib/test/test_lib2to3/data/infinite_recursion.py /^class fd_set(Structure):$/;" c +fd_specified Modules/posixmodule.c /^fd_specified(const char *function_name, int fd)$/;" f file: +fdopen Lib/os.py /^def fdopen(fd, mode="r", buffering=-1, encoding=None, *args, **kwargs):$/;" f +fdopen_borrow Parser/tokenizer.c /^fdopen_borrow(int fd) {$/;" f file: +fdopen_helper Lib/test/test_os.py /^ def fdopen_helper(self, *args):$/;" m class:FileTests +fdopendir Misc/coverity_model.c /^DIR *fdopendir(int fd)$/;" f +fds Lib/test/subprocessdata/fd_status.py /^ fds = []$/;" v +fds Modules/selectmodule.c /^ struct pollfd *fds;$/;" m struct:__anon575 typeref:struct:__anon575::pollfd file: +feature Modules/expat/expat.h /^ enum XML_FeatureEnum feature;$/;" m struct:__anon602 typeref:enum:__anon602::XML_FeatureEnum +feature_external_ges Lib/xml/sax/handler.py /^feature_external_ges = "http:\/\/xml.org\/sax\/features\/external-general-entities"$/;" v +feature_external_pes Lib/xml/sax/handler.py /^feature_external_pes = "http:\/\/xml.org\/sax\/features\/external-parameter-entities"$/;" v +feature_flags Include/internal/pycore_interp.h /^ unsigned long feature_flags;$/;" m struct:_is +feature_macros Lib/test/test_stable_abi_ctypes.py /^feature_macros = get_feature_macros()$/;" v +feature_namespace_prefixes Lib/xml/sax/handler.py /^feature_namespace_prefixes = "http:\/\/xml.org\/sax\/features\/namespace-prefixes"$/;" v +feature_namespaces Lib/xml/sax/handler.py /^feature_namespaces = "http:\/\/xml.org\/sax\/features\/namespaces"$/;" v +feature_string_interning Lib/xml/sax/handler.py /^feature_string_interning = "http:\/\/xml.org\/sax\/features\/string-interning"$/;" v +feature_validation Lib/xml/sax/handler.py /^feature_validation = "http:\/\/xml.org\/sax\/features\/validation"$/;" v +feature_version Parser/pegen.h /^ int feature_version;$/;" m struct:__anon657 +features Lib/test/test___future__.py /^features = __future__.all_feature_names$/;" v +feed Lib/email/feedparser.py /^ def feed(self, data):$/;" m class:BytesFeedParser +feed Lib/email/feedparser.py /^ def feed(self, data):$/;" m class:FeedParser +feed Lib/email/header.py /^ def feed(self, fws, string, charset):$/;" m class:_ValueFormatter +feed Lib/html/parser.py /^ def feed(self, data):$/;" m class:HTMLParser +feed Lib/test/test_queue.py /^ def feed(self, q, seq, rnd, sentinel):$/;" m class:BaseSimpleQueueTest +feed Lib/xml/etree/ElementTree.py /^ def feed(self, data):$/;" m class:XMLParser +feed Lib/xml/etree/ElementTree.py /^ def feed(self, data):$/;" m class:XMLPullParser +feed Lib/xml/sax/expatreader.py /^ def feed(self, data, isFinal=False):$/;" m class:ExpatParser +feed Lib/xml/sax/xmlreader.py /^ def feed(self, data):$/;" m class:IncrementalParser +feed Lib/xmlrpc/client.py /^ def feed(self, data):$/;" m class:ExpatParser +feed_data Lib/asyncio/streams.py /^ def feed_data(self, data):$/;" m class:StreamReader +feed_eof Lib/asyncio/streams.py /^ def feed_eof(self):$/;" m class:StreamReader +female Lib/test/test_enum.py /^ female = 1$/;" v class:TestSpecial.test_mixed_enum_in_call_1.Gender +female Lib/test/test_enum.py /^ female = 1$/;" v class:TestSpecial.test_mixed_enum_in_call_2.Gender +female Lib/test/test_enum.py /^ female = 1$/;" v class:TestSpecial.test_wrong_enum_in_call.Gender +female Lib/test/test_enum.py /^ female = 1$/;" v class:TestSpecial.test_wrong_enum_in_mixed_call.Gender +fence Modules/_pickle.c /^ Py_ssize_t fence; \/* position of top MARK or 0 *\/$/;" m struct:__anon449 file: +fetch Lib/idlelib/history.py /^ def fetch(self, reverse):$/;" m class:History +fetch Lib/imaplib.py /^ def fetch(self, message_set, message_parts):$/;" m class:IMAP4 +fetch PCbuild/get_externals.bat /^:fetch$/;" l +fetch Tools/msi/get_externals.bat /^:fetch$/;" l +fetch_completions Lib/idlelib/autocomplete.py /^ def fetch_completions(self, what, mode):$/;" m class:AutoComplete +fetch_test Lib/idlelib/idle_test/test_history.py /^ def fetch_test(self, reverse, line, prefix, index, *, bell=False):$/;" m class:FetchTest +fetch_tip Lib/idlelib/calltip.py /^ def fetch_tip(self, expression):$/;" m class:Calltip +fetch_tip Lib/idlelib/idle_test/test_calltip.py /^ def fetch_tip(self, expression):$/;" m class:WrappedCalltip +fetch_zip PCbuild/get_external.py /^def fetch_zip(commit_hash, zip_dir, *, org='python', binary=False, verbose):$/;" f +ff_features Include/cpython/compile.h /^ int ff_features; \/* flags set by future statements *\/$/;" m struct:__anon207 +ff_features Include/internal/pycore_compile.h /^ int ff_features;$/;" m struct:__anon150 +ff_location Include/cpython/compile.h /^ _PyCompilerSrcLocation ff_location; \/* location of last future statement *\/$/;" m struct:__anon207 +ffi_restype Modules/_ctypes/ctypes.h /^ ffi_type *ffi_restype;$/;" m struct:__anon492 +ffi_type Modules/_ctypes/callproc.c /^ ffi_type *ffi_type;$/;" m struct:argument file: +ffi_type_pointer Modules/_ctypes/ctypes.h /^ ffi_type ffi_type_pointer;$/;" m struct:__anon495 +fi_freelist Modules/_asynciomodule.c /^ futureiterobject *fi_freelist;$/;" m struct:__anon308 file: +fi_freelist_len Modules/_asynciomodule.c /^ Py_ssize_t fi_freelist_len;$/;" m struct:__anon308 file: +fib Lib/test/test_functools.py /^ def fib(n):$/;" f function:TestCache.test_cache +fib Lib/test/test_functools.py /^ def fib(n):$/;" f function:TestLRU.test_lru_with_keyword_args +fib Lib/test/test_functools.py /^ def fib(n):$/;" f function:TestLRU.test_lru_with_keyword_args_maxsize_none +fib Lib/test/test_functools.py /^ def fib(n):$/;" f function:TestLRU.test_lru_with_maxsize_none +fib Lib/test/test_tokenize.py /^ def fib(n):$/;" f function:.test_string +fidget Lib/test/test_asyncio/test_runners.py /^ async def fidget():$/;" f function:RunTests.test_asyncio_run_closes_gens_after_hanging_tasks_errors +field Lib/dataclasses.py /^def field(*, default=MISSING, default_factory=MISSING, init=True, repr=True,$/;" f +field Modules/_csv.c /^ Py_UCS4 *field; \/* temporary buffer *\/$/;" m struct:__anon625 file: +field Tools/build/deepfreeze.py /^ def field(self, obj: object, name: str) -> None:$/;" m class:Printer +field Tools/gdb/libpython.py /^ def field(self, name):$/;" m class:PyObjectPtr +field3 PCbuild/field3.py /^field3 = micro * 1000 + levelnum * 10 + serial$/;" v +field_len Modules/_csv.c /^ Py_ssize_t field_len; \/* length of current field *\/$/;" m struct:__anon625 file: +field_limit Modules/_csv.c /^ long field_limit; \/* max parsed field size *\/$/;" m struct:__anon620 file: +field_name_split Objects/stringlib/unicode_format.h /^field_name_split(PyObject *str, Py_ssize_t start, Py_ssize_t end, SubString *first,$/;" f +field_size Modules/_csv.c /^ Py_ssize_t field_size; \/* size of allocated buffer *\/$/;" m struct:__anon625 file: +field_spec Lib/logging/__init__.py /^ field_spec = re.compile(r'^(\\d+|\\w+)(\\.\\w+|\\[[^]]+\\])*$')$/;" v class:StrFormatStyle +fielddesc Modules/_ctypes/ctypes.h /^struct fielddesc {$/;" s +fieldnameiter_dealloc Objects/stringlib/unicode_format.h /^fieldnameiter_dealloc(fieldnameiterobject *it)$/;" f +fieldnameiter_methods Objects/stringlib/unicode_format.h /^static PyMethodDef fieldnameiter_methods[] = {$/;" v +fieldnameiter_next Objects/stringlib/unicode_format.h /^fieldnameiter_next(fieldnameiterobject *it)$/;" f +fieldnameiterobject Objects/stringlib/unicode_format.h /^} fieldnameiterobject;$/;" t typeref:struct:__anon709 +fieldnames Lib/csv.py /^ def fieldnames(self):$/;" m class:DictReader +fieldnames Lib/csv.py /^ def fieldnames(self, value):$/;" m class:DictReader +fields Include/structseq.h /^ PyStructSequence_Field *fields;$/;" m struct:PyStructSequence_Desc +fields Lib/dataclasses.py /^def fields(class_or_instance):$/;" f +fields Lib/uuid.py /^ def fields(self):$/;" m class:UUID +fields Modules/_csv.c /^ PyObject *fields; \/* field list for current record *\/$/;" m struct:__anon625 file: +fields Tools/unicode/mkstringprep.py /^ fields = fields[0].split("-")$/;" v +fields Tools/unicode/mkstringprep.py /^ fields = fields[:-1]$/;" v +fields Tools/unicode/mkstringprep.py /^ fields = l.split(";")$/;" v +fildes_converter Tools/clinic/clinic.py /^class fildes_converter(CConverter):$/;" c +file Include/internal/pycore_faulthandler.h /^ PyObject *file;$/;" m struct:_faulthandler_runtime_state::__anon126 +file Include/internal/pycore_faulthandler.h /^ PyObject *file;$/;" m struct:_faulthandler_runtime_state::__anon127 +file Include/internal/pycore_faulthandler.h /^ PyObject *file;$/;" m struct:faulthandler_user_signal +file Lib/cgi.py /^ file = None$/;" v class:MiniFieldStorage +file Lib/cgitb.py /^ file = os.path.abspath(file)$/;" v +file Lib/cgitb.py /^ file = file and os.path.abspath(file) or '?'$/;" v +file Lib/ftplib.py /^ file = None$/;" v class:FTP +file Lib/smtplib.py /^ file = None$/;" v class:SMTP +file Lib/test/test_decimal.py /^ file = __file__$/;" v +file Lib/test/test_decimal.py /^ file = sys.argv[0]$/;" v +file Lib/test/test_math.py /^ file = __file__$/;" v +file Lib/test/test_math.py /^ file = sys.argv[0]$/;" v +file Modules/_tkinter.c /^ PyObject *file;$/;" m struct:_fhcdata file: +file Python/pythonrun.c /^ PyObject *file;$/;" m struct:exception_print_context file: +file Tools/i18n/pygettext.py /^ file=sys.stderr)$/;" v class:main.Options +fileConfig Lib/logging/config.py /^def fileConfig(fname, defaults=None, disable_existing_loggers=True, encoding=None):$/;" f +fileContents Mac/BuildScript/build-installer.py /^def fileContents(fn):$/;" f +file_attributes Lib/test/test_stat.py /^ file_attributes = {$/;" v class:TestFilemode +file_backup Lib/test/test_fileinput.py /^ file_backup = fi._file$/;" v class:FileInputTests.test_fileno_when_ValueError_raised.FilenoRaisesValueError +file_byte_string Lib/test/test_linecache.py /^ file_byte_string = b'# coding=utf-8\\n\\x80abc'$/;" v class:BadUnicode_WithDeclaration +file_byte_string Lib/test/test_linecache.py /^ file_byte_string = b'\\n\\x80abc'$/;" v class:BadUnicode_NoDeclaration +file_close Lib/test/test_httplib.py /^ def file_close(self):$/;" m class:FakeSocket +file_close Lib/urllib/request.py /^ def file_close(self):$/;" m class:ftpwrapper +file_content Lib/test/test_zipfile/test_core.py /^ file_content = [$/;" v class:EncodedMetadataTests +file_data Modules/posixmodule.c /^ WIN32_FIND_DATAW file_data;$/;" m struct:__anon481 file: +file_dialog Lib/tkinter/tix.py /^ def file_dialog(self):$/;" m class:FileEntry +file_digest Lib/hashlib.py /^def file_digest(fileobj, digest, \/, *, _bufsize=2**18):$/;" f +file_dispatcher Lib/test/support/asyncore.py /^ class file_dispatcher(dispatcher):$/;" c +file_encoding Lib/codecs.py /^ file_encoding = 'unknown'$/;" v class:StreamRecoder +file_flags Lib/test/test_stat.py /^ file_flags = {'SF_APPEND', 'SF_ARCHIVED', 'SF_IMMUTABLE', 'SF_NOUNLINK',$/;" v class:TestFilemode +file_handle Modules/mmapmodule.c /^ HANDLE file_handle;$/;" m struct:__anon490 file: +file_is_closed Python/pylifecycle.c /^file_is_closed(PyObject *fobj)$/;" f file: +file_line_helper Lib/idlelib/outwin.py /^def file_line_helper(line):$/;" f +file_line_pats Lib/idlelib/outwin.py /^file_line_pats = [$/;" v +file_line_progs Lib/idlelib/outwin.py /^file_line_progs = None$/;" v +file_list Lib/test/test_linecache.py /^ file_list = ['\\n']$/;" v class:SingleEmptyLine +file_list Lib/test/test_linecache.py /^ file_list = ['á\\n', 'b\\n', 'abcdef\\n', 'ááááá\\n']$/;" v class:GoodUnicode +file_list Lib/test/test_linecache.py /^ file_list = []$/;" v class:EmptyFile +file_module_function_of Lib/trace.py /^ def file_module_function_of(self, frame):$/;" m class:Trace +file_mtime Doc/includes/diff.py /^def file_mtime(path):$/;" f +file_name Lib/test/test_import/__init__.py /^ file_name = os.path.join(dir_name, module_name) + os.extsep + "py"$/;" v +file_name Lib/test/test_plistlib.py /^ file_name = "plutil_test.plist"$/;" v class:TestPlutil +file_names Lib/test/test_zipfile/test_core.py /^ file_names = ['\\u4e00', '\\u4e8c', '\\u4e09'] # Han 'one', 'two', 'three'$/;" v class:EncodedMetadataTests +file_open Lib/idlelib/browser.py /^file_open = None # Method...Item and Class...Item use this.$/;" v +file_open Lib/urllib/request.py /^ def file_open(self, req):$/;" m class:FileHandler +file_path Lib/test/test_tarfile.py /^ file_path = os.path.join(TEMPDIR, "spameggs42")$/;" v class:CreateTest +file_repr Modules/_zoneinfo.c /^ PyObject *file_repr;$/;" m struct:__anon638 file: +file_rule Parser/parser.c /^file_rule(Parser *p)$/;" f file: +file_spec Lib/unittest/mock.py /^file_spec = None$/;" v +file_type Parser/parser.c 81;" d file: +file_wrapper Lib/test/support/asyncore.py /^ class file_wrapper:$/;" c +fileio Modules/_io/fileio.c /^} fileio;$/;" t typeref:struct:__anon431 file: +fileio_clear Modules/_io/fileio.c /^fileio_clear(fileio *self)$/;" f file: +fileio_dealloc Modules/_io/fileio.c /^fileio_dealloc(fileio *self)$/;" f file: +fileio_dealloc_warn Modules/_io/fileio.c /^fileio_dealloc_warn(fileio *self, PyObject *source)$/;" f file: +fileio_getsetlist Modules/_io/fileio.c /^static PyGetSetDef fileio_getsetlist[] = {$/;" v file: +fileio_members Modules/_io/fileio.c /^static PyMemberDef fileio_members[] = {$/;" v file: +fileio_methods Modules/_io/fileio.c /^static PyMethodDef fileio_methods[] = {$/;" v file: +fileio_new Modules/_io/fileio.c /^fileio_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +fileio_repr Modules/_io/fileio.c /^fileio_repr(fileio *self)$/;" f file: +fileio_slots Modules/_io/fileio.c /^static PyType_Slot fileio_slots[] = {$/;" v file: +fileio_spec Modules/_io/fileio.c /^PyType_Spec fileio_spec = {$/;" v +fileio_traverse Modules/_io/fileio.c /^fileio_traverse(fileio *self, visitproc visit, void *arg)$/;" f file: +filelike Lib/test/test_print.py /^ class filelike:$/;" c function:TestPrint.test_print_flush +filelineno Lib/fileinput.py /^ def filelineno(self):$/;" m class:FileInput +filelineno Lib/fileinput.py /^def filelineno():$/;" f +filelineno Lib/test/test_fileinput.py /^ def filelineno(self):$/;" m class:MockFileInput +filelink Lib/pydoc.py /^ def filelink(self, url, path):$/;" f +filelink Lib/test/test_os.py /^ filelink = 'filelinktest'$/;" v class:Win32SymlinkTests +filelink Lib/test/test_os.py /^ filelink = 'readlinktest'$/;" v class:ReadlinkTests +filelink_target Lib/test/test_os.py /^ filelink_target = os.path.abspath(__file__)$/;" v class:ReadlinkTests +filelink_target Lib/test/test_os.py /^ filelink_target = os.path.abspath(__file__)$/;" v class:Win32SymlinkTests +filelinkb Lib/test/test_os.py /^ filelinkb = os.fsencode(filelink)$/;" v class:ReadlinkTests +filelinkb_target Lib/test/test_os.py /^ filelinkb_target = os.fsencode(filelink_target)$/;" v class:ReadlinkTests +filemode Lib/stat.py /^def filemode(mode):$/;" f +filename Include/cpython/pyerrors.h /^ PyObject *filename;$/;" m struct:__anon182 +filename Include/cpython/pyerrors.h /^ PyObject *filename;$/;" m struct:__anon186 +filename Include/internal/pycore_code.h /^ PyObject *filename;$/;" m struct:_PyCodeConstructor +filename Include/internal/pycore_tracemalloc.h /^ PyObject *filename;$/;" m struct:tracemalloc_frame +filename Lib/cgi.py /^ filename = None$/;" v class:MiniFieldStorage +filename Lib/fileinput.py /^ def filename(self):$/;" m class:FileInput +filename Lib/fileinput.py /^def filename():$/;" f +filename Lib/idlelib/iomenu.py /^ filename = None$/;" v class:IOBinding +filename Lib/lib2to3/fixer_base.py /^ filename = None # The filename (set by set_filename)$/;" v class:BaseFix +filename Lib/pdb.py /^ def filename(self):$/;" m class:_ModuleTarget +filename Lib/pdb.py /^ def filename(self):$/;" m class:_ScriptTarget +filename Lib/test/test_dbm_gnu.py /^filename = TESTFN$/;" v +filename Lib/test/test_fileinput.py /^ def filename(self):$/;" m class:MockFileInput +filename Lib/test/test_gzip.py /^ filename = os_helper.TESTFN$/;" v class:BaseTest +filename Lib/tracemalloc.py /^ def filename(self):$/;" m class:Frame +filename Lib/zipfile/_path/__init__.py /^ def filename(self):$/;" m class:Path +filename Parser/tokenizer.h /^ PyObject *filename;$/;" m struct:tok_state +filename Tools/c-analyzer/c_parser/info.py /^ def filename(self):$/;" m class:HighlevelParsedItem +filename Tools/c-analyzer/c_parser/info.py /^ def filename(self):$/;" m class:ParsedItem +filename Tools/c-analyzer/c_parser/info.py /^ def filename(self):$/;" m class:SourceLine +filename Tools/cases_generator/lexer.py /^ filename = sys.argv[1]$/;" v +filename Tools/gdb/libpython.py /^ def filename(self):$/;" m class:PyFrameObjectPtr +filename Tools/gdb/libpython.py /^ def filename(self):$/;" m class:PyFramePtr +filename2 Include/cpython/pyerrors.h /^ PyObject *filename2;$/;" m struct:__anon186 +filename_change_hook Lib/idlelib/editor.py /^ def filename_change_hook(self):$/;" m class:EditorWindow +filename_change_hook Lib/idlelib/iomenu.py /^ filename_change_hook = None$/;" v class:IOBinding +filename_changed_edit Lib/idlelib/filelist.py /^ def filename_changed_edit(self, edit):$/;" m class:FileList +filename_changed_hook Lib/idlelib/pyshell.py /^ def filename_changed_hook(old_hook=self.io.filename_change_hook,$/;" f function:PyShellEditorWindow.__init__ +filename_only Lib/tabnanny.py /^filename_only = 0$/;" v +filename_pattern Lib/tracemalloc.py /^ def filename_pattern(self):$/;" m class:Filter +filenames Doc/tools/extensions/asdl_highlight.py /^ filenames = ["*.asdl"]$/;" v class:ASDLLexer +filenames Doc/tools/extensions/peg_highlight.py /^ filenames = ["*.gram"]$/;" v class:PEGLexer +filenames Include/internal/pycore_tracemalloc.h /^ _Py_hashtable_t *filenames;$/;" m struct:_tracemalloc_runtime_state +filenames Lib/test/test_unicode_file_functions.py /^filenames = [$/;" v +fileno Lib/_pyio.py /^ def fileno(self):$/;" m class:FileIO +fileno Lib/_pyio.py /^ def fileno(self):$/;" m class:IOBase +fileno Lib/_pyio.py /^ def fileno(self):$/;" m class:TextIOWrapper +fileno Lib/_pyio.py /^ def fileno(self):$/;" m class:_BufferedIOMixin +fileno Lib/asyncio/trsock.py /^ def fileno(self):$/;" m class:TransportSocket +fileno Lib/asyncio/windows_utils.py /^ def fileno(self):$/;" m class:PipeHandle +fileno Lib/bz2.py /^ def fileno(self):$/;" m class:BZ2File +fileno Lib/fileinput.py /^ def fileno(self):$/;" m class:FileInput +fileno Lib/fileinput.py /^def fileno():$/;" f +fileno Lib/gzip.py /^ def fileno(self):$/;" m class:GzipFile +fileno Lib/http/client.py /^ def fileno(self):$/;" m class:HTTPResponse +fileno Lib/lzma.py /^ def fileno(self):$/;" m class:LZMAFile +fileno Lib/multiprocessing/connection.py /^ def fileno(self):$/;" m class:_ConnectionBase +fileno Lib/selectors.py /^ def fileno(self):$/;" m class:_PollLikeSelector.DevpollSelector +fileno Lib/selectors.py /^ def fileno(self):$/;" m class:_PollLikeSelector.EpollSelector +fileno Lib/selectors.py /^ def fileno(self):$/;" m class:_PollLikeSelector.KqueueSelector +fileno Lib/socket.py /^ def fileno(self):$/;" m class:SocketIO +fileno Lib/socketserver.py /^ def fileno(self):$/;" m class:TCPServer +fileno Lib/socketserver.py /^ def fileno(self):$/;" m class:_SocketWriter +fileno Lib/telnetlib.py /^ def fileno(self):$/;" m class:Telnet +fileno Lib/tempfile.py /^ def fileno(self):$/;" m class:SpooledTemporaryFile +fileno Lib/test/mock_socket.py /^ def fileno(self):$/;" m class:MockSocket +fileno Lib/test/support/asyncore.py /^ def fileno(self):$/;" m class:.file_wrapper +fileno Lib/test/test_fcntl.py /^ def fileno(self):$/;" m class:BadFile +fileno Lib/test/test_fileinput.py /^ def fileno(self):$/;" m class:FileInputTests.test_fileno_when_ValueError_raised.FilenoRaisesValueError +fileno Lib/test/test_fileinput.py /^ def fileno(self):$/;" m class:MockFileInput +fileno Lib/test/test_io.py /^ def fileno(self):$/;" m class:MockRawIOWithoutRead +fileno Lib/test/test_poll.py /^ def fileno(self):$/;" m class:PollTests.test_poll_unit_tests.Almost +fileno Lib/test/test_select.py /^ def fileno(self):$/;" m class:SelectTestCase.test_select_mutated.F +fileno Lib/test/test_select.py /^ def fileno(self):$/;" m class:SelectTestCase.Almost +fileno Lib/test/test_socket.py /^ def fileno(self):$/;" m class:GeneralModuleTests.test__sendfile_use_sendfile.File +fileno Lib/test/test_telnetlib.py /^ def fileno(self):$/;" m class:TelnetAlike +fileno Lib/typing.py /^ def fileno(self) -> int:$/;" m class:IO +fileobject Lib/tarfile.py /^ fileobject = ExFileObject # The file-object for extractfile().$/;" v class:TarFile +filepath Tools/tz/zdump.py /^ filepath = sys.argv[1]$/;" v class:TZInfo +fileperm Modules/_stat.c /^fileperm(mode_t mode, char *buf)$/;" f file: +files Lib/importlib/metadata/__init__.py /^ def files(self):$/;" m class:Distribution +files Lib/importlib/metadata/__init__.py /^def files(distribution_name):$/;" f +files Lib/importlib/resources/_adapters.py /^ def files(self):$/;" m class:CompatibilityFiles +files Lib/importlib/resources/_common.py /^def files(anchor: Optional[Anchor] = None) -> Traversable:$/;" f +files Lib/importlib/resources/abc.py /^ def files(self) -> "Traversable":$/;" m class:TraversableResources +files Lib/importlib/resources/readers.py /^ def files(self):$/;" m class:FileReader +files Lib/importlib/resources/readers.py /^ def files(self):$/;" m class:NamespaceReader +files Lib/importlib/resources/readers.py /^ def files(self):$/;" m class:ZipReader +files Lib/importlib/resources/simple.py /^ def files(self):$/;" m class:TraversableReader +files Lib/test/test_importlib/resources/test_compatibilty_files.py /^ def files(self):$/;" m class:CompatibilityFilesNoReaderTests +files Lib/test/test_importlib/resources/test_compatibilty_files.py /^ def files(self):$/;" m class:CompatibilityFilesTests +files Lib/test/test_importlib/resources/test_custom.py /^ def files(self):$/;" m class:MagicResources +files Lib/test/test_unicode_file_functions.py /^ files = set(filenames)$/;" v class:UnicodeFileTests +files PC/layout/main.py /^ files = list(get_layout(ns))$/;" v +files_double_event Lib/tkinter/filedialog.py /^ def files_double_event(self, event):$/;" m class:FileDialog +files_select_event Lib/tkinter/filedialog.py /^ def files_select_event(self, event):$/;" m class:FileDialog +files_to_test Lib/test/test_unparse.py /^ def files_to_test(cls):$/;" m class:DirectoryTestCase +filesystem_encoding Include/cpython/initconfig.h /^ wchar_t *filesystem_encoding;$/;" m struct:PyConfig +filesystem_errors Include/cpython/initconfig.h /^ wchar_t *filesystem_errors;$/;" m struct:PyConfig +filesystemencoding Lib/idlelib/editor.py /^ filesystemencoding = sys.getfilesystemencoding() # for file names$/;" v class:EditorWindow +filetype Modules/_stat.c /^filetype(mode_t mode)$/;" f file: +filetypes Lib/idlelib/iomenu.py /^ filetypes = ($/;" v class:IOBinding +fileutils Include/internal/pycore_runtime.h /^ struct _fileutils_state fileutils;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_fileutils_state +fill Include/cpython/setobject.h /^ Py_ssize_t fill; \/* Number active and dummy entries*\/$/;" m struct:__anon224 +fill Lib/ast.py /^ def fill(self, text=""):$/;" m class:_Unparser +fill Lib/textwrap.py /^ def fill(self, text):$/;" m class:TextWrapper +fill Lib/textwrap.py /^def fill(text, width=70, **kwargs):$/;" f +fill Modules/_decimal/libmpdec/mpdecimal.h /^ char fill[5]; \/* fill character *\/$/;" m struct:mpd_spec_t +fill Parser/pegen.h /^ int fill, size;$/;" m struct:__anon657 +fill_and_set_sslerror Modules/_ssl.c /^fill_and_set_sslerror(_sslmodulestate *state,$/;" f file: +fill_buffer Lib/test/test_ssl.py /^ def fill_buffer():$/;" f function:ThreadedTests.test_nonblocking_send +fill_char Python/formatter_unicode.c /^ Py_UCS4 fill_char;$/;" m struct:__anon674 file: +fill_menu Lib/idlelib/debugger.py /^ def fill_menu(self):$/;" m class:StackViewer +fill_menu Lib/idlelib/scrolledlist.py /^ def fill_menu(self): self.menu.add_command(label="right click")$/;" m class:_scrolled_list.MyScrolledList +fill_menu Lib/idlelib/scrolledlist.py /^ def fill_menu(self):$/;" m class:ScrolledList +fill_menus Lib/idlelib/editor.py /^ def fill_menus(self, menudefs=None, keydefs=None):$/;" m class:EditorWindow +fill_number Python/formatter_unicode.c /^fill_number(_PyUnicodeWriter *writer, const NumberFieldWidths *spec,$/;" f file: +fill_padding Python/formatter_unicode.c /^fill_padding(_PyUnicodeWriter *writer,$/;" f file: +fill_queue Lib/test/_test_venv_multiprocessing.py /^def fill_queue(queue, code):$/;" f +fill_rawq Lib/telnetlib.py /^ def fill_rawq(self):$/;" m class:Telnet +fill_siginfo Modules/signalmodule.c /^fill_siginfo(_signal_module_state *state, siginfo_t *si)$/;" f file: +fill_time Modules/posixmodule.c /^fill_time(PyObject *module, PyObject *v, int s_index, int f_index, int ns_index, time_t sec, unsigned long nsec)$/;" f file: +fillcolor Lib/turtle.py /^ def fillcolor(self, *args):$/;" m class:TPen +filler Tools/unicode/genmap_japanese.py /^ filler = BufferedFiller()$/;" v +filler Tools/unicode/genmap_schinese.py /^ filler = BufferedFiller()$/;" v +filler_class Tools/unicode/genmap_support.py /^ filler_class = BufferedFiller$/;" v class:DecodeMapWriter +filler_class Tools/unicode/genmap_support.py /^ filler_class = BufferedFiller$/;" v class:EncodeMapWriter +filler_class Tools/unicode/genmap_tchinese.py /^ filler_class = BufferedFiller$/;" v class:HintsWriter +fillhints Tools/unicode/genmap_tchinese.py /^ def fillhints(self, hintfrom, hintto):$/;" m class:HintsWriter +filling Lib/turtle.py /^ def filling(self):$/;" m class:RawTurtle +fillvalue Modules/itertoolsmodule.c /^ PyObject *fillvalue;$/;" m struct:__anon422 file: +filter Lib/fnmatch.py /^def filter(names, pat):$/;" f +filter Lib/logging/__init__.py /^ def filter(self, record):$/;" m class:Filter +filter Lib/logging/__init__.py /^ def filter(self, record):$/;" m class:Filterer +filter Lib/test/support/_hypothesis_stubs/strategies.py /^ def filter(self, condition):$/;" m class:StubStrategy +filter Lib/test/test_asyncio/test_ssl.py /^ def filter(self, record):$/;" m class:MessageOutFilter +filter Lib/test/test_logging.py /^ def filter(self, _):$/;" m class:ConfigDictTest.test_config_filter_method_works.FakeFilter +filter Lib/test/test_logging.py /^ def filter(self, record):$/;" m class:LogRecordFactoryTest.setUp.CheckingFilter +filter Lib/test/test_logging.py /^ def filter(self, record: logging.LogRecord):$/;" m class:CustomLevelsAndFiltersTest.test_logging_filter_replaces_record.RecordingFilter +filter Lib/test/test_logging.py /^ def filter(self, record):$/;" m class:GarrulousFilter +filter Lib/test/test_logging.py /^ def filter(self, record):$/;" m class:VerySpecificFilter +filter Lib/test/test_tarfile.py /^ def filter(tarinfo):$/;" f function:WriteTest.test_filter +filter Lib/test/test_tarfile.py /^ def filter(tarinfo):$/;" f function:UstarReadTest.add_dir_and_getmember +filter Lib/test/test_zipfile/test_core.py /^ def filter(path):$/;" f function:PyZipFileTests.test_write_filtered_python_package +filter Lib/tkinter/tix.py /^ def filter(self):$/;" m class:ExFileSelectBox +filter Lib/xml/dom/xmlbuilder.py /^ filter = None$/;" v class:DOMBuilder +filter Lib/xml/dom/xmlbuilder.py /^ filter = None$/;" v class:Options +filter Tools/c-analyzer/cpython/_capi.py /^ def filter(item, *, log=None):$/;" f function:resolve_filter +filter_ Lib/test/test_logging.py /^ def filter_(_):$/;" f function:ConfigDictTest.test_config_callable_filter_works +filter_and_parse_warnings Doc/tools/check-warnings.py /^def filter_and_parse_warnings($/;" f +filter_by_kind Tools/c-analyzer/c_parser/match.py /^def filter_by_kind(items, kind):$/;" f +filter_char Lib/test/test_builtin.py /^def filter_char(arg):$/;" f +filter_command Lib/tkinter/filedialog.py /^ def filter_command(self, event=None):$/;" m class:FileDialog +filter_dealloc Python/bltinmodule.c /^filter_dealloc(filterobject *lz)$/;" f file: +filter_error Lib/test/support/socket_helper.py /^ def filter_error(err):$/;" f function:transient_internet +filter_filenames Tools/c-analyzer/c_common/scriptutil.py /^def filter_filenames(filenames, process_filenames=None, relroot=fsutil.USE_CWD):$/;" f +filter_forward Tools/c-analyzer/c_analyzer/match.py /^def filter_forward(items, *, markpublic=False):$/;" f +filter_methods Python/bltinmodule.c /^static PyMethodDef filter_methods[] = {$/;" v file: +filter_new Python/bltinmodule.c /^filter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +filter_next Python/bltinmodule.c /^filter_next(filterobject *lz)$/;" f file: +filter_reduce Python/bltinmodule.c /^filter_reduce(filterobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +filter_too_much Lib/test/support/_hypothesis_stubs/__init__.py /^ filter_too_much = 2$/;" v class:HealthCheck +filter_traces Lib/tracemalloc.py /^ def filter_traces(self, filters):$/;" m class:Snapshot +filter_traverse Python/bltinmodule.c /^filter_traverse(filterobject *lz, visitproc visit, void *arg)$/;" f file: +filter_vectorcall Python/bltinmodule.c /^filter_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +filter_warnings_by_diff Doc/tools/check-warnings.py /^def filter_warnings_by_diff($/;" f +filtererror_filter Lib/test/test_tarfile.py /^ def filtererror_filter(tarinfo, path):$/;" f function:TestExtractionFilters.test_errorlevel +filterfalse_dealloc Modules/itertoolsmodule.c /^filterfalse_dealloc(filterfalseobject *lz)$/;" f file: +filterfalse_methods Modules/itertoolsmodule.c /^static PyMethodDef filterfalse_methods[] = {$/;" v file: +filterfalse_next Modules/itertoolsmodule.c /^filterfalse_next(filterfalseobject *lz)$/;" f file: +filterfalse_reduce Modules/itertoolsmodule.c /^filterfalse_reduce(filterfalseobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +filterfalse_slots Modules/itertoolsmodule.c /^static PyType_Slot filterfalse_slots[] = {$/;" v file: +filterfalse_spec Modules/itertoolsmodule.c /^static PyType_Spec filterfalse_spec = {$/;" v file: +filterfalse_traverse Modules/itertoolsmodule.c /^filterfalse_traverse(filterfalseobject *lz, visitproc visit, void *arg)$/;" f file: +filterfalse_type Modules/itertoolsmodule.c /^ PyTypeObject *filterfalse_type;$/;" m struct:__anon400 file: +filterfalseobject Modules/itertoolsmodule.c /^} filterfalseobject;$/;" t typeref:struct:__anon419 file: +filterfunc Lib/test/test_logging.py /^ def filterfunc(record):$/;" f function:BasicFilterTest.test_callable_filter +filterfunc Tools/wasm/wasm_assets.py /^ def filterfunc(filename: str) -> bool:$/;" f function:create_stdlib_zip +filterobject Python/bltinmodule.c /^} filterobject;$/;" t typeref:struct:__anon682 file: +filters Include/internal/pycore_warnings.h /^ PyObject *filters; \/* List *\/$/;" m struct:_warnings_runtime_state +filters Lib/warnings.py /^ filters = []$/;" v +filters_version Include/internal/pycore_warnings.h /^ long filters_version;$/;" m struct:_warnings_runtime_state +filterwarnings Lib/warnings.py /^def filterwarnings(action, message="", category=Warning, module="", lineno=0,$/;" f +fin Lib/test/test_weakref.py /^ def fin(*args, **kwargs):$/;" f function:FinalizeTestCase.test_arg_errors +final Lib/typing.py /^def final(f):$/;" f +finalBuffer Modules/expat/expat.h /^ XML_Bool finalBuffer;$/;" m struct:__anon600 +final_argument_whitespace Doc/tools/extensions/c_annotations.py /^ final_argument_whitespace = True$/;" v class:init_annotations.LimitedAPIList +final_argument_whitespace Doc/tools/extensions/pyspecific.py /^ final_argument_whitespace = False$/;" v class:MiscNews +final_argument_whitespace Doc/tools/extensions/pyspecific.py /^ final_argument_whitespace = True$/;" v class:AuditEvent +final_argument_whitespace Doc/tools/extensions/pyspecific.py /^ final_argument_whitespace = True$/;" v class:Availability +final_argument_whitespace Doc/tools/extensions/pyspecific.py /^ final_argument_whitespace = True$/;" v class:DeprecatedRemoved +final_argument_whitespace Doc/tools/extensions/pyspecific.py /^ final_argument_whitespace = True$/;" v class:ImplementationDetail +final_callback Modules/_sqlite/connection.c /^final_callback(sqlite3_context *context)$/;" f file: +final_key_selected Lib/idlelib/config_key.py /^ def final_key_selected(self, event=None):$/;" m class:GetKeysFrame +finalbody Include/internal/pycore_ast.h /^ asdl_stmt_seq *finalbody;$/;" m struct:_stmt::__anon51::__anon69 +finalbody Include/internal/pycore_ast.h /^ asdl_stmt_seq *finalbody;$/;" m struct:_stmt::__anon51::__anon70 +finalbody Include/internal/pycore_ast_state.h /^ PyObject *finalbody;$/;" m struct:ast_state +finalize Lib/test/_test_multiprocessing.py /^ def finalize(threads):$/;" f function:Bunch.__init__ +finalize Lib/test/libregrtest/main.py /^ def finalize(self):$/;" m class:Regrtest +finalize Lib/test/test_sqlite3/test_dbapi.py /^ def finalize(self):$/;" m class:ClosedConTests.test_closed_create_aggregate.Agg +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self): return 42$/;" m class:WindowFunctionTests.test_win_missing_method.MissingInverse +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self): return 42$/;" m class:WindowFunctionTests.test_win_missing_method.MissingStep +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self): return 42$/;" m class:WindowFunctionTests.test_win_missing_method.MissingValue +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrCheckType +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrCheckTypes +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrExceptionInFinalize +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrExceptionInInit +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrExceptionInStep +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrNoStep +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrSum +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:AggrText +finalize Lib/test/test_sqlite3/test_userfunctions.py /^ def finalize(self):$/;" m class:WindowSumInt +finalize Lib/weakref.py /^class finalize:$/;" c +finalize_clear_modules_dict Python/pylifecycle.c /^finalize_clear_modules_dict(PyObject *modules)$/;" f file: +finalize_clear_sys_builtins_dict Python/pylifecycle.c /^finalize_clear_sys_builtins_dict(PyInterpreterState *interp, int verbose)$/;" f file: +finalize_garbage Modules/gcmodule.c /^finalize_garbage(PyThreadState *tstate, PyGC_Head *collectable)$/;" f file: +finalize_interp_clear Python/pylifecycle.c /^finalize_interp_clear(PyThreadState *tstate)$/;" f file: +finalize_interp_delete Python/pylifecycle.c /^finalize_interp_delete(PyInterpreterState *interp)$/;" f file: +finalize_interp_types Python/pylifecycle.c /^finalize_interp_types(PyInterpreterState *interp)$/;" f file: +finalize_iterator Modules/_collectionsmodule.c /^finalize_iterator(PyObject *it)$/;" f file: +finalize_modules Python/pylifecycle.c /^finalize_modules(PyThreadState *tstate)$/;" f file: +finalize_modules_clear_weaklist Python/pylifecycle.c /^finalize_modules_clear_weaklist(PyInterpreterState *interp,$/;" f file: +finalize_modules_delete_special Python/pylifecycle.c /^finalize_modules_delete_special(PyThreadState *tstate, int verbose)$/;" f file: +finalize_pending Lib/tomllib/_parser.py /^ def finalize_pending(self) -> None:$/;" m class:Flags +finalize_remove_modules Python/pylifecycle.c /^finalize_remove_modules(PyObject *modules, int verbose)$/;" f file: +finalize_restore_builtins Python/pylifecycle.c /^finalize_restore_builtins(PyThreadState *tstate)$/;" f file: +finalized Include/cpython/pystate.h /^ unsigned int finalized:1;$/;" m struct:_ts::__anon219 +finalizing Include/cpython/pystate.h /^ unsigned int finalizing:1;$/;" m struct:_ts::__anon219 +finalizing Include/internal/pycore_interp.h /^ int finalizing;$/;" m struct:_is +finalizing Modules/_io/bufferedio.c /^ char finalizing;$/;" m struct:__anon435 file: +finalizing Modules/_io/fileio.c /^ char finalizing;$/;" m struct:__anon431 file: +finalizing Modules/_io/textio.c /^ char finalizing;$/;" m struct:textio file: +finalizing Modules/_io/winconsoleio.c /^ char finalizing;$/;" m struct:__anon432 file: +finally_block_rule Parser/parser.c /^finally_block_rule(Parser *p)$/;" f file: +finally_block_type Parser/parser.c 142;" d file: +find Lib/collections/__init__.py /^ def find(self, sub, start=0, end=_sys.maxsize):$/;" m class:UserString +find Lib/doctest.py /^ def find(self, obj, name=None, module=None, globs=None, extraglobs=None):$/;" m class:DocTestFinder +find Lib/gettext.py /^def find(domain, localedir=None, languages=None, all=False):$/;" f +find Lib/idlelib/search.py /^def find(text):$/;" f +find Lib/test/test_heapq.py /^ def find(self, *args, **kwargs):$/;" m class:load_tests.HeapqMergeDocTestFinder +find Lib/test/test_importlib/frozen/test_finder.py /^ def find(self, name, **kwargs):$/;" m class:FindSpecTests +find Lib/test/test_importlib/import_/test_path.py /^ def find(self, *args, **kwargs):$/;" m class:FindModuleTests +find Lib/test/test_importlib/import_/test_path.py /^ def find(self, *args, **kwargs):$/;" m class:FindSpecTests +find Lib/test/test_importlib/import_/test_path.py /^ find = None$/;" v class:FinderTests +find Lib/test/test_importlib/source/test_case_sensitivity.py /^ def find(self, finder):$/;" m class:CaseSensitivityTestPEP451 +find Lib/tkinter/__init__.py /^ def find(self, *args):$/;" m class:Canvas +find Lib/xml/etree/ElementPath.py /^def find(elem, path, namespaces=None):$/;" f +find Lib/xml/etree/ElementTree.py /^ def find(self, path, namespaces=None):$/;" m class:Element +find Lib/xml/etree/ElementTree.py /^ def find(self, path, namespaces=None):$/;" m class:ElementTree +find Objects/stringlib/find.h /^STRINGLIB(find)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,$/;" f +find Tools/c-analyzer/c_parser/info.py /^ def find(self, *key, **explicit):$/;" m class:Declarations +findArgv0End PC/launcher2.c /^findArgv0End(const wchar_t *buffer, int bufferLength)$/;" f +findArgv0Length PC/launcher2.c /^findArgv0Length(const wchar_t *buffer, int bufferLength)$/;" f +findCaller Lib/logging/__init__.py /^ def findCaller(self, stack_info=False, stacklevel=1):$/;" m class:Logger +findEncoding Modules/expat/xmltok_ns.c /^NS(findEncoding)(const ENCODING *enc, const char *ptr, const char *end) {$/;" f file: +findTestCases Lib/unittest/loader.py /^def findTestCases(module, prefix='test', sortUsing=util.three_way_cmp,$/;" f +find_BOM PC/launcher.c /^find_BOM(char * buffer)$/;" f file: +find_above Lib/tkinter/__init__.py /^ def find_above(self, tagOrId):$/;" m class:Canvas +find_again Lib/idlelib/search.py /^ def find_again(self, text):$/;" m class:SearchDialog +find_again Lib/idlelib/search.py /^def find_again(text):$/;" f +find_again_event Lib/idlelib/editor.py /^ def find_again_event(self, event):$/;" m class:EditorWindow +find_all Lib/tkinter/__init__.py /^ def find_all(self):$/;" m class:Canvas +find_all_on_path PCbuild/prepare_ssl.py /^def find_all_on_path(filename, extras=None):$/;" f +find_all_submodules Lib/modulefinder.py /^ def find_all_submodules(self, m):$/;" m class:ModuleFinder +find_and_load Include/internal/pycore_import.h /^ } find_and_load;$/;" m struct:_import_state typeref:struct:_import_state::__anon138 +find_ann Python/compile.c /^find_ann(asdl_stmt_seq *stmts)$/;" f file: +find_array_state_by_type Modules/arraymodule.c 74;" d file: +find_assign Lib/lib2to3/fixes/fix_next.py /^def find_assign(node):$/;" f +find_below Lib/tkinter/__init__.py /^ def find_below(self, tagOrId):$/;" m class:Canvas +find_binding Lib/lib2to3/fixer_util.py /^def find_binding(name, node, package=None):$/;" f +find_binding Lib/test/test_lib2to3/test_util.py /^ def find_binding(self, name, string, package=None):$/;" m class:Test_find_binding +find_block Lib/test/test_symtable.py /^def find_block(block, name):$/;" f +find_by_magic PC/launcher.c /^find_by_magic(unsigned short magic)$/;" f file: +find_char Objects/stringlib/fastsearch.h /^STRINGLIB(find_char)(const STRINGLIB_CHAR* s, Py_ssize_t n, STRINGLIB_CHAR ch)$/;" f +find_class Lib/pickle.py /^ def find_class(self, module, name):$/;" m class:_Unpickler +find_class Modules/_pickle.c /^find_class(UnpicklerObject *self, PyObject *module_name, PyObject *global_name)$/;" f file: +find_closest Lib/tkinter/__init__.py /^ def find_closest(self, x, y, halo=None, start=None):$/;" m class:Canvas +find_command PC/launcher.c /^static COMMAND * find_command(wchar_t * name)$/;" f file: +find_const Lib/test/test_code.py /^ def find_const(self, consts, value):$/;" m class:CodeConstsTest +find_control_char Modules/_io/textio.c /^find_control_char(int kind, const char *s, const char *end, Py_UCS4 ch)$/;" f file: +find_cookie Lib/lib2to3/pgen2/tokenize.py /^ def find_cookie(line):$/;" f function:detect_encoding +find_cookie Lib/tokenize.py /^ def find_cookie(line):$/;" f function:detect_encoding +find_cycles_in_scc Tools/peg_generator/pegen/sccutils.py /^def find_cycles_in_scc($/;" f +find_data_to_file_info Modules/posixmodule.c /^find_data_to_file_info(WIN32_FIND_DATAW *pFileData,$/;" f file: +find_dirname Tools/peg_generator/scripts/test_pypi_packages.py /^def find_dirname(package_name: str) -> str:$/;" f +find_distributions Lib/importlib/_bootstrap_external.py /^ def find_distributions(*args, **kwargs):$/;" m class:PathFinder +find_distributions Lib/importlib/metadata/__init__.py /^ def find_distributions(cls, context=DistributionFinder.Context()):$/;" m class:MetadataPathFinder +find_distributions Lib/importlib/metadata/__init__.py /^ def find_distributions(self, context=Context()):$/;" m class:DistributionFinder +find_empty_slot Objects/dictobject.c /^find_empty_slot(PyDictKeysObject *keys, Py_hash_t hash)$/;" f file: +find_enclosed Lib/tkinter/__init__.py /^ def find_enclosed(self, x1, y1, x2, y2):$/;" m class:Canvas +find_event Lib/idlelib/editor.py /^ def find_event(self, event):$/;" m class:EditorWindow +find_excepts Lib/lib2to3/fixes/fix_except.py /^def find_excepts(nodes):$/;" f +find_exe Tools/c-analyzer/distutils/msvc9compiler.py /^ def find_exe(self, exe):$/;" m class:MSVCCompiler +find_exe Tools/c-analyzer/distutils/msvccompiler.py /^ def find_exe(self, exe):$/;" m class:MSVCCompiler +find_executable Tools/c-analyzer/distutils/spawn.py /^def find_executable(executable, path=None):$/;" f +find_existing_python PC/launcher.c /^find_existing_python(const wchar_t * path)$/;" f file: +find_existing_python2 PC/launcher.c /^find_existing_python2(int bits, const wchar_t * version)$/;" f file: +find_frozen Python/import.c /^find_frozen(PyObject *nameobj, struct frozen_info *info)$/;" f file: +find_function Lib/pdb.py /^def find_function(funcname, filename):$/;" f +find_good_parse_start Lib/idlelib/pyparse.py /^ def find_good_parse_start(self, is_char_in_string):$/;" m class:Parser +find_head_package Lib/modulefinder.py /^ def find_head_package(self, parent, name):$/;" m class:ModuleFinder +find_home_value PC/launcher.c /^find_home_value(const char *buffer, const char **start, DWORD *length)$/;" f file: +find_in_files_event Lib/idlelib/editor.py /^ def find_in_files_event(self, event):$/;" m class:EditorWindow +find_in_strong_cache Modules/_zoneinfo.c /^find_in_strong_cache(const StrongCacheNode *const root, PyObject *const key)$/;" f file: +find_indentation Lib/lib2to3/fixer_util.py /^def find_indentation(node):$/;" f +find_io_state_by_def Modules/_io/_iomodule.h /^find_io_state_by_def(PyTypeObject *type)$/;" f +find_it Lib/idlelib/replace.py /^ def find_it(self, event=None):$/;" m class:ReplaceDialog +find_keyword Python/getargs.c /^find_keyword(PyObject *kwnames, PyObject *const *kwstack, PyObject *key)$/;" f file: +find_lib Lib/test/test_ctypes/test_macholib.py /^def find_lib(name):$/;" f +find_library Lib/ctypes/_aix.py /^def find_library(name):$/;" f +find_library Lib/ctypes/util.py /^ def find_library(name):$/;" f +find_library Lib/ctypes/util.py /^ def find_library(name, is64 = False):$/;" f +find_library Lib/ctypes/util.py /^ def find_library(name):$/;" f +find_loader Lib/pkgutil.py /^def find_loader(fullname):$/;" f +find_longest_match Lib/difflib.py /^ def find_longest_match(self, alo=0, ahi=None, blo=0, bhi=None):$/;" m class:SequenceMatcher +find_marker Tools/build/freeze_modules.py /^def find_marker(lines, marker, file):$/;" f +find_max_char Objects/stringlib/find_max_char.h /^STRINGLIB(find_max_char)(const STRINGLIB_CHAR *begin, const STRINGLIB_CHAR *end)$/;" f +find_maxchar_surrogates Objects/unicodeobject.c /^find_maxchar_surrogates(const wchar_t *begin, const wchar_t *end,$/;" f file: +find_metas Lib/lib2to3/fixes/fix_metaclass.py /^def find_metas(cls_node):$/;" f +find_module Lib/modulefinder.py /^ def find_module(self, name, path, parent=None):$/;" m class:ModuleFinder +find_module Python/makeopcodetargets.py /^def find_module(modname):$/;" f +find_module_state_by_def Modules/_bz2module.c /^find_module_state_by_def(PyTypeObject *type)$/;" f file: +find_module_state_by_def Modules/_collectionsmodule.c /^find_module_state_by_def(PyTypeObject *type)$/;" f file: +find_module_state_by_def Modules/socketmodule.c /^find_module_state_by_def(PyTypeObject *type)$/;" f file: +find_msvcrt Lib/ctypes/util.py /^ def find_msvcrt():$/;" f +find_name_in_mro Objects/typeobject.c /^find_name_in_mro(PyTypeObject *type, PyObject *name, int *error)$/;" f file: +find_nfc_index Modules/unicodedata.c /^find_nfc_index(const struct reindex* nfc, Py_UCS4 code)$/;" f file: +find_offset_column Lib/test/test_dis.py /^ def find_offset_column(self, lines):$/;" m class:DisTestBase +find_on_path PC/launcher.c /^static COMMAND * find_on_path(wchar_t * name)$/;" f file: +find_opt Tools/freeze/test/freeze.py /^def find_opt(args, name):$/;" f +find_or_add PC/layout/support/appxmanifest.py /^def find_or_add(xml, element, attr=None, always_add=False):$/;" f +find_overlapping Lib/tkinter/__init__.py /^ def find_overlapping(self, x1, y1, x2, y2):$/;" m class:Canvas +find_pairencmap Modules/cjkcodecs/cjkcodecs.h /^find_pairencmap(ucs2_t body, ucs2_t modifier,$/;" f +find_paragraph Lib/idlelib/format.py /^def find_paragraph(text, mark):$/;" f +find_params Lib/lib2to3/fixes/fix_tuple_params.py /^def find_params(node):$/;" f +find_po Modules/_curses_panel.c /^find_po(PANEL *pan)$/;" f file: +find_predictions Tools/cases_generator/generate_cases.py /^ def find_predictions(self) -> None:$/;" m class:Analyzer +find_prefix_at_end Lib/test/support/asynchat.py /^def find_prefix_at_end(haystack, needle):$/;" f +find_public Modules/_blake2/blake2b2s.py /^def find_public():$/;" f +find_py Lib/test/test_launcher.py /^ def find_py(cls):$/;" m class:RunPyMixin +find_python_by_version PC/launcher.c /^find_python_by_version(wchar_t const * wanted_ver)$/;" f file: +find_ready_matching Lib/test/test_devpoll.py /^def find_ready_matching(ready, flag):$/;" f +find_ready_matching Lib/test/test_poll.py /^def find_ready_matching(ready, flag):$/;" f +find_ready_matching Lib/test/test_selectors.py /^def find_ready_matching(ready, flag):$/;" f +find_root Lib/lib2to3/fixer_util.py /^def find_root(node):$/;" f +find_selection Lib/idlelib/search.py /^ def find_selection(self, text):$/;" m class:SearchDialog +find_selection Lib/idlelib/search.py /^def find_selection(text):$/;" f +find_selection_event Lib/idlelib/editor.py /^ def find_selection_event(self, event):$/;" m class:EditorWindow +find_shared Lib/ctypes/_aix.py /^def find_shared(paths, name):$/;" f +find_signature Objects/typeobject.c /^find_signature(const char *name, const char *doc)$/;" f file: +find_slice Objects/stringlib/find.h /^STRINGLIB(find_slice)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,$/;" f +find_spec Lib/importlib/_bootstrap.py /^ def find_spec(cls, fullname, path=None, target=None):$/;" m class:BuiltinImporter +find_spec Lib/importlib/_bootstrap.py /^ def find_spec(cls, fullname, path=None, target=None):$/;" m class:FrozenImporter +find_spec Lib/importlib/_bootstrap_external.py /^ def find_spec(cls, fullname, path=None, target=None):$/;" m class:PathFinder +find_spec Lib/importlib/_bootstrap_external.py /^ def find_spec(cls, fullname, path=None, target=None):$/;" m class:WindowsRegistryFinder +find_spec Lib/importlib/_bootstrap_external.py /^ def find_spec(self, fullname, target=None):$/;" m class:FileFinder +find_spec Lib/importlib/util.py /^def find_spec(name, package=None):$/;" f +find_spec Lib/test/test_doctest.py /^ def find_spec(self, fullname, path, target=None):$/;" m class:TestImporter +find_spec Lib/test/test_importlib/extension/test_case_sensitivity.py /^ def find_spec(self):$/;" m class:ExtensionModuleCaseSensitivityTest +find_spec Lib/test/test_importlib/extension/test_finder.py /^ def find_spec(self, fullname):$/;" m class:FinderTests +find_spec Lib/test/test_importlib/import_/test___loader__.py /^ def find_spec(self, fullname, path=None, target=None):$/;" m class:SpecLoaderMock +find_spec Lib/test/test_importlib/import_/test_api.py /^ def find_spec(cls, fullname, path=None, target=None):$/;" m class:BadSpecFinderLoader +find_spec Lib/test/test_importlib/import_/test_caching.py /^ def find_spec(self, fullname, path, target=None):$/;" f function:ImportlibUseCache.create_mock +find_spec Lib/test/test_importlib/import_/test_path.py /^ def find_spec(fullname, target=None):$/;" m class:PathEntryFinderTests.test_finder_with_failing_find_spec.Finder +find_spec Lib/test/test_importlib/import_/test_path.py /^ def find_spec(self, fullname, target=None):$/;" m class:FinderTests.test_finder_with_find_spec.TestFinder +find_spec Lib/test/test_importlib/test_abc.py /^ def find_spec(self, fullname, path, target=None):$/;" m class:MetaPathFinderFindModuleTests.finder.MetaPathSpecFinder +find_spec Lib/test/test_importlib/test_api.py /^ def find_spec(name, path=None, target=None):$/;" m class:FindLoaderPEP451Tests.FakeMetaFinder +find_spec Lib/test/test_importlib/test_lazy.py /^ def find_spec(self, name, path, target=None):$/;" m class:TestingImporter +find_spec Lib/test/test_importlib/test_threaded_import.py /^ def find_spec(self, name, path=None, target=None):$/;" m class:Finder +find_spec Lib/test/test_importlib/test_threaded_import.py /^ def find_spec(self, name, path=None, target=None):$/;" m class:FlushingFinder +find_spec Lib/test/test_importlib/test_util.py /^ def find_spec(name, path=None, target=None): return name, path, target$/;" m class:FindSpecTests.FakeMetaFinder +find_spec Lib/test/test_importlib/util.py /^ def find_spec(self, fullname, path=None, parent=None):$/;" m class:mock_spec +find_spec Lib/test/test_pkgutil.py /^ def find_spec(self, fullname, path=None, target=None):$/;" m class:PkgutilPEP302Tests.MyTestImporter +find_spec Lib/zipimport.py /^ def find_spec(self, fullname, target=None):$/;" m class:zipimporter +find_state_by_def Modules/cjkcodecs/multibytecodec.c /^find_state_by_def(PyTypeObject *type)$/;" f file: +find_state_by_type Modules/itertoolsmodule.c /^find_state_by_type(PyTypeObject *tp)$/;" f file: +find_syllable Modules/unicodedata.c /^find_syllable(const char *str, int *len, int *pos, int count, int column)$/;" f file: +find_terminator PC/launcher.c /^find_terminator(char * buffer, int len, BOM *bom)$/;" f file: +find_test_no_match_single_character Tools/stringbench/stringbench.py /^def find_test_no_match_single_character(STR):$/;" f +find_test_no_match_two_character Tools/stringbench/stringbench.py /^def find_test_no_match_two_character(STR):$/;" f +find_test_no_match_two_character_bis Tools/stringbench/stringbench.py /^def find_test_no_match_two_character_bis(STR):$/;" f +find_test_quick_match_single_character Tools/stringbench/stringbench.py /^def find_test_quick_match_single_character(STR):$/;" f +find_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def find_test_quick_match_two_characters(STR):$/;" f +find_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def find_test_slow_match_100_characters(STR):$/;" f +find_test_slow_match_100_characters_bis Tools/stringbench/stringbench.py /^def find_test_slow_match_100_characters_bis(STR):$/;" f +find_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def find_test_slow_match_two_characters(STR):$/;" f +find_test_slow_match_two_characters_bis Tools/stringbench/stringbench.py /^def find_test_slow_match_two_characters_bis(STR):$/;" f +find_tests Lib/test/libregrtest/main.py /^ def find_tests(self, tests):$/;" m class:Regrtest +find_tests_in_spec packaging/skipped_tests.py /^def find_tests_in_spec(specname):$/;" f +find_trace Lib/test/test_tracemalloc.py /^ def find_trace(self, traces, traceback):$/;" m class:TestTracemallocEnabled +find_ttinfo Modules/_zoneinfo.c /^find_ttinfo(zoneinfo_state *state, PyZoneInfo_ZoneInfo *self, PyObject *dt)$/;" f file: +find_typedecl Tools/c-analyzer/c_analyzer/analyze.py /^def find_typedecl(decl, typespec, typespecs):$/;" f +find_tzfile Lib/zoneinfo/_tzpath.py /^def find_tzfile(key):$/;" f +find_tzrule_ttinfo Modules/_zoneinfo.c /^find_tzrule_ttinfo(_tzrule *rule, int64_t ts, unsigned char fold, int year)$/;" f file: +find_tzrule_ttinfo_fromutc Modules/_zoneinfo.c /^find_tzrule_ttinfo_fromutc(_tzrule *rule, int64_t ts, int year,$/;" f file: +find_unused_port Lib/test/support/socket_helper.py /^def find_unused_port(family=socket.AF_INET, socktype=socket.SOCK_STREAM):$/;" f +find_user_password Lib/test/test_urllib2.py /^ def find_user_password(self, realm, authuri):$/;" m class:MockPasswordManager +find_user_password Lib/urllib/request.py /^ def find_user_password(self, realm, authuri):$/;" m class:HTTPPasswordMgr +find_user_password Lib/urllib/request.py /^ def find_user_password(self, realm, authuri):$/;" m class:HTTPPasswordMgrWithDefaultRealm +find_vcvarsall Tools/c-analyzer/distutils/msvc9compiler.py /^def find_vcvarsall(version):$/;" f +find_withtag Lib/tkinter/__init__.py /^ def find_withtag(self, tagOrId):$/;" m class:Canvas +find_working_perl PCbuild/prepare_ssl.py /^def find_working_perl(perls):$/;" f +findall Doc/tools/extensions/c_annotations.py /^ def findall(self, *args, **kwargs):$/;" f +findall Lib/re/__init__.py /^def findall(pattern, string, flags=0):$/;" f +findall Lib/xml/etree/ElementPath.py /^def findall(elem, path, namespaces=None):$/;" f +findall Lib/xml/etree/ElementTree.py /^ def findall(self, path, namespaces=None):$/;" m class:Element +findall Lib/xml/etree/ElementTree.py /^ def findall(self, path, namespaces=None):$/;" m class:ElementTree +findchar Objects/stringlib/transmogrify.h 252;" d +findchar Objects/stringlib/transmogrify.h 739;" d +findchar Objects/unicodeobject.c /^findchar(const void *s, int kind,$/;" f file: +finder Lib/test/test_importlib/source/test_case_sensitivity.py /^ def finder(self, path):$/;" m class:CaseSensitivityTest +finder Lib/test/test_importlib/test_abc.py /^ def finder(cls, spec):$/;" m class:MetaPathFinderFindModuleTests +finder_name Lib/test/test_importlib/import_/test_meta_path.py /^ finder_name = 'find_spec'$/;" v class:CallSignaturePEP451 +findfile Lib/test/support/__init__.py /^def findfile(filename, subdir=None):$/;" f +findfiles Lib/idlelib/grep.py /^def findfiles(folder, pattern, recursive):$/;" f +findfont Lib/idlelib/help.py /^ def findfont(self, names):$/;" m class:HelpText +finditer Lib/re/__init__.py /^def finditer(pattern, string, flags=0):$/;" f +findlabels Lib/dis.py /^def findlabels(code):$/;" f +findlinestarts Lib/dis.py /^def findlinestarts(code):$/;" f +findmatch Lib/mailcap.py /^def findmatch(caps, MIMEtype, key='view', filename="\/dev\/null", plist=[]):$/;" f +findparam Lib/mailcap.py /^def findparam(name, plist):$/;" f +findsource Lib/inspect.py /^def findsource(object):$/;" f +findtestdir Lib/test/libregrtest/runtest.py /^def findtestdir(path=None):$/;" f +findtests Lib/test/libregrtest/runtest.py /^def findtests(*, testdir=None, exclude=(),$/;" f +findtext Lib/xml/etree/ElementPath.py /^def findtext(elem, path, default=None, namespaces=None):$/;" f +findtext Lib/xml/etree/ElementTree.py /^ def findtext(self, path, default=None, namespaces=None):$/;" m class:Element +findtext Lib/xml/etree/ElementTree.py /^ def findtext(self, path, default=None, namespaces=None):$/;" m class:ElementTree +finger Include/cpython/setobject.h /^ Py_ssize_t finger; \/* Search finger for pop() *\/$/;" m struct:__anon224 +fini_builtin_modules_table Python/import.c /^fini_builtin_modules_table(void)$/;" f file: +finish Doc/tools/extensions/pyspecific.py /^ def finish(self):$/;" m class:PydocTopicsBuilder +finish Lib/socketserver.py /^ def finish(self):$/;" m class:BaseRequestHandler +finish Lib/socketserver.py /^ def finish(self):$/;" m class:DatagramRequestHandler +finish Lib/socketserver.py /^ def finish(self):$/;" m class:StreamRequestHandler +finish Lib/test/test_logging.py /^ def finish(self):$/;" m class:TestUDPServer.__init__.DelegatingUDPRequestHandler +finish Lib/test/test_wsgiref.py /^ def finish(self):$/;" m class:MockHandler +finish Lib/tkinter/dnd.py /^ def finish(self, event, commit=0):$/;" m class:DndHandler +finish_ Modules/_hacl/Hacl_Hash_SHA3.c /^finish_($/;" f file: +finish_accept Lib/asyncio/windows_events.py /^ def finish_accept(trans, key, ov):$/;" f function:IocpProactor.accept +finish_accept_pipe Lib/asyncio/windows_events.py /^ def finish_accept_pipe(trans, key, ov):$/;" f function:IocpProactor.accept_pipe +finish_connect Lib/asyncio/windows_events.py /^ def finish_connect(trans, key, ov):$/;" f function:IocpProactor.connect +finish_content Lib/wsgiref/handlers.py /^ def finish_content(self):$/;" m class:BaseHandler +finish_off Lib/lib2to3/pgen2/conv.py /^ def finish_off(self):$/;" m class:Converter +finish_paren_event Lib/idlelib/parenmatch.py /^ def finish_paren_event(self, indices):$/;" m class:ParenMatch +finish_recv Lib/asyncio/windows_events.py /^ def finish_recv(trans, key, ov):$/;" f function:IocpProactor.recvfrom_into +finish_request Lib/http/server.py /^ def finish_request(self, request, client_address):$/;" m class:.DualStackServer +finish_request Lib/socketserver.py /^ def finish_request(self, request, client_address):$/;" m class:BaseServer +finish_request Lib/test/test_asyncio/utils.py /^ def finish_request(self, request, client_address):$/;" m class:SSLWSGIServerMixin +finish_response Lib/wsgiref/handlers.py /^ def finish_response(self):$/;" m class:BaseHandler +finish_socket_func Lib/asyncio/windows_events.py /^ def finish_socket_func(trans, key, ov):$/;" m class:IocpProactor +finish_tree Lib/lib2to3/fixer_base.py /^ def finish_tree(self, tree, filename):$/;" m class:BaseFix +finish_tree Lib/lib2to3/fixes/fix_xrange.py /^ def finish_tree(self, tree, filename):$/;" m class:FixXrange +finish_wait_for_handle Lib/asyncio/windows_events.py /^ def finish_wait_for_handle(trans, key, ov):$/;" f function:IocpProactor._wait_for_handle +first Doc/includes/newtypes/custom2.c /^ PyObject *first; \/* first name *\/$/;" m struct:__anon273 file: +first Doc/includes/newtypes/custom3.c /^ PyObject *first; \/* first name *\/$/;" m struct:__anon276 file: +first Doc/includes/newtypes/custom4.c /^ PyObject *first; \/* first name *\/$/;" m struct:__anon274 file: +first Include/internal/pycore_ceval_state.h /^ int first;$/;" m struct:_pending_calls +first Lib/nntplib.py /^ first = str(int(last) - args.nb_articles + 1)$/;" v class:NNTP +first Lib/shelve.py /^ def first(self):$/;" m class:BsdDbShelf +first Lib/test/test_contextlib.py /^ def first():$/;" f function:TestBaseExitStack.test_dont_reraise_RuntimeError +first Lib/test/test_email/test_message.py /^def first(iterable):$/;" f +first Lib/test/test_enum.py /^ def first(self):$/;" m class:_EnumTests.setUp.BaseEnum +first Lib/test/test_enum.py /^ first = auto()$/;" v class:_EnumTests.setUp.MainEnum +first Lib/test/test_enum.py /^ first = auto()$/;" v class:_EnumTests.setUp.NewFormatEnum +first Lib/test/test_enum.py /^ first = auto()$/;" v class:_EnumTests.setUp.NewStrEnum +first Lib/test/test_enum.py /^ first = auto()$/;" v class:_EnumTests.setUp.NewStrFormatEnum +first Lib/test/test_enum.py /^ first = auto()$/;" v class:_EnumTests.setUp.NewSubEnum +first Lib/test/test_enum.py /^ def first(self):$/;" f function:_EnumTests.setUp +first Lib/test/test_enum.py /^ first = "brand"$/;" v class:_EnumTests.test_contains_same_name_diff_enum_diff_values.OtherEnum +first Lib/test/test_enum.py /^ first = ()$/;" v class:TestSpecial.test_duplicate_values_give_unique_enum_items.AutoNumber +first Lib/test/test_enum.py /^ first = (1, 'for the money')$/;" v class:TestSpecial.test_tuple_subclass.SomeTuple +first Lib/test/test_enum.py /^ first = auto()$/;" v class:_EnumTests.test_repr_override.Generic +first Lib/test/test_generators.py /^ def first():$/;" f function:Knights.__init__ +first Lib/test/test_itertools.py /^ first = True$/;" v class:TestBasicOps.test_tee_reenter.I +first Lib/test/test_subprocess.py /^ first = True$/;" v class:POSIXProcessTestCase.test_fork_exec_sorted_fd_sanity_check.BadInt +first Lib/test/test_tarfile.py /^ first = True$/;" v class:WriteTest.test_open_nonwritable_fileobj.BadFile +first Modules/_ctypes/_ctypes_test.c /^ unsigned int first;$/;" m struct:__anon500 file: +first Modules/_ctypes/_ctypes_test.c /^ unsigned long first;$/;" m struct:__anon499 file: +first Modules/_xxinterpchannelsmodule.c /^ _channelitem *first;$/;" m struct:_channelqueue file: +first Modules/cjkcodecs/mappings_cn.h /^ Py_UCS4 first, last;$/;" m struct:_gb18030_to_unibmp_ranges +firstChild Lib/xml/dom/minidom.py /^ firstChild = None$/;" v class:Childless +first_available Python/getargs.c /^ int first_available;$/;" m struct:__anon695 file: +first_cb Lib/test/test_asyncio/test_futures.py /^def first_cb():$/;" f +first_code_object_callback Modules/_testcapi/watchers.c /^first_code_object_callback(PyCodeEvent event, PyCodeObject *co)$/;" f file: +first_element_handler Lib/xml/dom/expatbuilder.py /^ def first_element_handler(self, name, attributes):$/;" m class:ExpatBuilder +first_elts Lib/test/test_cgi.py /^def first_elts(list):$/;" f +first_func Lib/test/test_funcattrs.py /^ def first_func(a, b):$/;" f function:FunctionPropertiesTest.test_func_default_args +first_func_watcher_callback Modules/_testcapi/watchers.c /^first_func_watcher_callback(PyFunction_WatchEvent event, PyFunctionObject *func,$/;" f file: +first_handler Lib/test/test_signal.py /^ def first_handler(signum, frame):$/;" f function:StressTest.test_stress_delivery_dependent +first_line_not_before Objects/frameobject.c /^first_line_not_before(int *lines, int len, int line)$/;" f file: +first_lineno Parser/tokenizer.h /^ int first_lineno; \/* First line of a single line or multi line string$/;" m struct:tok_state +first_second_elts Lib/test/test_cgi.py /^def first_second_elts(list):$/;" f +first_sunday_on_or_after Doc/includes/tzinfo_examples.py /^def first_sunday_on_or_after(dt):$/;" f +first_sunday_on_or_after Lib/test/datetimetester.py /^def first_sunday_on_or_after(dt):$/;" f +first_time Modules/posixmodule.c /^ int first_time;$/;" m struct:__anon481 file: +first_watcher Lib/test/test_capi/test_watchers.py /^ def first_watcher(*args):$/;" f function:TestFuncWatchers.test_multiple_watchers +firstchild Modules/expat/xmlparse.c /^ int firstchild;$/;" m struct:__anon612 file: +firstlineno Include/internal/pycore_code.h /^ int firstlineno;$/;" m struct:_PyCodeConstructor +firstpass Modules/itertoolsmodule.c /^ int firstpass;$/;" m struct:__anon407 file: +firstweekday Lib/calendar.py /^ firstweekday = property(getfirstweekday, setfirstweekday)$/;" v class:Calendar +firstweekday Lib/calendar.py /^firstweekday = c.getfirstweekday$/;" v +firstweekday Lib/test/test_calendar.py /^ firstweekday = calendar.MONDAY$/;" v class:MondayTestCase +firstweekday Lib/test/test_calendar.py /^ firstweekday = calendar.SUNDAY$/;" v class:SundayTestCase +fish Lib/test/test_inspect.py /^ fish = 'slap'$/;" v class:TestClassesAndFunctions.test_classify_metaclass_class_attribute.Meta +five Lib/test/test_enum.py /^ five = '5'$/;" v class:TestSpecial.test_custom_strenum.DumbStrEnum +five Lib/test/test_enum.py /^ five = '5'$/;" v class:TestSpecial.test_strenum.DumbStrEnum +five Lib/test/test_enum.py /^ five = auto()$/;" v class:OldTestFlag.test_unique_composite.TestFlag +five Lib/test/test_enum.py /^ five = auto()$/;" v class:OldTestIntFlag.test_unique_composite.TestFlag +fix Modules/nismodule.c /^ int fix;$/;" m struct:ypcallback_data file: +fix Modules/nismodule.c /^ int fix;$/;" m struct:nis_map file: +fix PCbuild/fix_encoding.py /^def fix(p):$/;" f +fix_cell_offsets Python/compile.c /^fix_cell_offsets(_PyCompile_CodeUnitMetadata *umd, basicblock *entryblock, int *fixedmap)$/;" f file: +fix_error_int Objects/memoryobject.c /^fix_error_int(const char *fmt)$/;" f file: +fix_ext_py Lib/test/test_trace.py /^def fix_ext_py(filename):$/;" f +fix_filename Tools/c-analyzer/c_analyzer/info.py /^ def fix_filename(self, relroot=fsutil.USE_CWD, **kwargs):$/;" m class:Analyzed +fix_filename Tools/c-analyzer/c_common/fsutil.py /^def fix_filename(filename, relroot=USE_CWD, *,$/;" f +fix_filename Tools/c-analyzer/c_parser/info.py /^ def fix_filename(self, relroot=fsutil.USE_CWD, **kwargs):$/;" m class:DeclID +fix_filename Tools/c-analyzer/c_parser/info.py /^ def fix_filename(self, relroot=fsutil.USE_CWD, **kwargs):$/;" m class:FileInfo +fix_filename Tools/c-analyzer/c_parser/info.py /^ def fix_filename(self, relroot=fsutil.USE_CWD, **kwargs):$/;" m class:HighlevelParsedItem +fix_filename Tools/c-analyzer/c_parser/info.py /^ def fix_filename(self, relroot=fsutil.USE_CWD, **kwargs):$/;" m class:ParsedItem +fix_filenames Tools/c-analyzer/c_analyzer/info.py /^ def fix_filenames(self, relroot=fsutil.USE_CWD, **kwargs):$/;" m class:Analysis +fix_filenames Tools/c-analyzer/c_common/fsutil.py /^def fix_filenames(filenames, relroot=USE_CWD):$/;" f +fix_flags Lib/re/_parser.py /^def fix_flags(src, flags):$/;" f +fix_imports Modules/_pickle.c /^ int fix_imports; \/* Indicate whether Pickler should fix$/;" m struct:PicklerObject file: +fix_imports Modules/_pickle.c /^ int fix_imports; \/* Indicate whether Unpickler should fix$/;" m struct:UnpicklerObject file: +fix_imports Modules/_pickle.c /^fix_imports(PickleState *st, PyObject **module_name, PyObject **global_name)$/;" f file: +fix_missing_locations Lib/ast.py /^def fix_missing_locations(node):$/;" f +fix_right_bracket_count Tools/clinic/clinic.py /^ def fix_right_bracket_count(desired):$/;" f function:DSLParser.format_docstring +fix_row Tools/c-analyzer/c_common/tables.py /^ def fix_row(row):$/;" f function:_normalize_fix_read +fix_row Tools/c-analyzer/c_common/tables.py /^ def fix_row(row):$/;" f function:_normalize_fix_write +fix_row Tools/c-analyzer/c_common/tables.py /^def fix_row(row, **markers):$/;" f +fix_scaling Lib/idlelib/run.py /^def fix_scaling(root):$/;" f +fix_status Python/thread_pthread.h /^fix_status(int status)$/;" f +fix_struct_error_int Objects/memoryobject.c /^fix_struct_error_int(void)$/;" f file: +fix_umask Lib/test/libregrtest/main.py /^ def fix_umask(self):$/;" m class:Regrtest +fix_up_extension Python/import.c /^fix_up_extension(PyObject *mod, PyObject *name, PyObject *filename)$/;" f file: +fix_uplink PCbuild/prepare_ssl.py /^def fix_uplink():$/;" f +fix_x11_paste Lib/idlelib/pyshell.py /^def fix_x11_paste(root):$/;" f +fixasctime Lib/test/test_strftime.py /^def fixasctime(s):$/;" f +fixb2context Lib/idlelib/macosx.py /^def fixb2context(root):$/;" f +fixdir Lib/test/test_pkg.py /^def fixdir(lst):$/;" f +fixdoc Lib/idlelib/run.py /^def fixdoc(fun, text):$/;" f +fixed_expected Lib/test/test_hash.py /^ fixed_expected = [FixedHash(),$/;" v class:HashInheritanceTestCase +fixed_offset Modules/_zoneinfo.c /^ unsigned char fixed_offset;$/;" m struct:__anon638 file: +fixed_offset_zones Lib/test/test_zoneinfo/test_zoneinfo.py /^ def fixed_offset_zones(cls):$/;" m class:ZoneDumpData +fixed_offset_zones Lib/test/test_zoneinfo/test_zoneinfo.py /^ def fixed_offset_zones(self):$/;" m class:ZoneInfoTest +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "apply"$/;" v class:Test_apply +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "asserts"$/;" v class:Test_asserts +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "basestring"$/;" v class:Test_basestring +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "buffer"$/;" v class:Test_buffer +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "dict"$/;" v class:Test_dict +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "except"$/;" v class:Test_except +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "exec"$/;" v class:Test_exec +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "execfile"$/;" v class:Test_execfile +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "exitfunc"$/;" v class:Test_exitfunc +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "filter"$/;" v class:Test_filter +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "funcattrs"$/;" v class:Test_funcattrs +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "future"$/;" v class:Test_future +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "has_key"$/;" v class:Test_has_key +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "idioms"$/;" v class:Test_idioms +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "import"$/;" v class:Test_import +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "imports"$/;" v class:Test_imports +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "imports2"$/;" v class:Test_imports2 +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "input"$/;" v class:Test_input +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "intern"$/;" v class:Test_intern +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "isinstance"$/;" v class:Test_isinstance +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "itertools"$/;" v class:Test_itertools +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "long"$/;" v class:Test_long +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "map"$/;" v class:Test_map +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "methodattrs"$/;" v class:Test_methodattrs +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "ne"$/;" v class:Test_ne +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "next"$/;" v class:Test_next +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "nonzero"$/;" v class:Test_nonzero +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "numliterals"$/;" v class:Test_numliterals +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "operator"$/;" v class:Test_operator +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "paren"$/;" v class:Test_paren +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "print"$/;" v class:Test_print +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "raise"$/;" v class:Test_raise +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "raw_input"$/;" v class:Test_raw_input +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "reduce"$/;" v class:Test_reduce +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "reload"$/;" v class:Test_reload +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "renames"$/;" v class:Test_renames +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "repr"$/;" v class:Test_repr +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "set_literal"$/;" v class:Test_set_literal +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "standarderror"$/;" v class:Test_standarderror +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "sys_exc"$/;" v class:Test_sys_exc +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "throw"$/;" v class:Test_throw +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "tuple_params"$/;" v class:Test_tuple_params +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "types"$/;" v class:Test_types +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "unicode"$/;" v class:Test_unicode +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "urllib"$/;" v class:Test_urllib +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "xrange"$/;" v class:Test_xrange +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "xreadlines"$/;" v class:Test_xreadlines +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = "zip"$/;" v class:Test_zip +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = 'getcwdu'$/;" v class:Test_getcwdu +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = 'itertools_imports'$/;" v class:Test_itertools_imports +fixer Lib/test/test_lib2to3/test_fixers.py /^ fixer = 'metaclass'$/;" v class:Test_metaclass +fixnewlines Lib/idlelib/iomenu.py /^ def fixnewlines(self):$/;" m class:IOBinding +fixpt_t Lib/test/test_lib2to3/data/infinite_recursion.py /^fixpt_t = u_int32_t$/;" v +fixture Lib/test/test_asyncio/test_futures.py /^ def fixture():$/;" f function:BaseFutureTests.test_yield_from_twice +fixtype Lib/test/string_tests.py /^ def fixtype(self, obj):$/;" m class:BaseTest +fixupMultiSZ PC/winreg.c /^fixupMultiSZ(wchar_t **str, wchar_t *data, int len)$/;" f file: +fixup_build_ext Tools/peg_generator/pegen/build.py /^def fixup_build_ext(cmd):$/;" f +fixup_indent Lib/lib2to3/fixes/fix_metaclass.py /^def fixup_indent(suite):$/;" f +fixup_keywords Doc/tools/extensions/escape4chm.py /^def fixup_keywords(app, exception):$/;" f +fixup_parse_tree Lib/lib2to3/fixes/fix_metaclass.py /^def fixup_parse_tree(cls_node):$/;" f +fixup_simple_stmt Lib/lib2to3/fixes/fix_metaclass.py /^def fixup_simple_stmt(parent, i, stmt_node):$/;" f +fixup_slot_dispatchers Objects/typeobject.c /^fixup_slot_dispatchers(PyTypeObject *type)$/;" f file: +fixwordbreaks Lib/idlelib/editor.py /^def fixwordbreaks(root):$/;" f +flag Lib/test/test_dataclasses.py /^ flag = False$/;" v class:TestCase.test_post_init_classmethod.C +flag Modules/_decimal/_decimal.c /^ uint32_t flag; \/* libmpdec flag *\/$/;" m struct:__anon353 file: +flag_error Modules/pyexpat.c /^flag_error(xmlparseobject *self)$/;" f file: +flag_executor_shutting_down Lib/concurrent/futures/process.py /^ def flag_executor_shutting_down(self):$/;" m class:_ExecutorManagerThread +flag_name Modules/socketmodule.c /^ const char flag_name[20];$/;" m struct:__anon389 file: +flags Doc/tools/check-warnings.py /^ flags=re.MULTILINE,$/;" v +flags Include/cpython/descrobject.h /^ int flags;$/;" m struct:wrapperbase +flags Include/cpython/memoryobject.h /^ int flags; \/* state flags *\/$/;" m struct:__anon191 +flags Include/cpython/memoryobject.h /^ int flags; \/* state flags *\/$/;" m struct:__anon190 +flags Include/descrobject.h /^ int flags;$/;" m struct:PyMemberDef +flags Include/internal/pycore_code.h /^ int flags;$/;" m struct:_PyCodeConstructor +flags Include/object.h /^ unsigned int flags;$/;" m struct:__anon253 +flags Lib/_pydecimal.py /^ flags=[],$/;" v +flags Lib/string.py /^ flags = _re.IGNORECASE$/;" v class:Template +flags Lib/test/test_string.py /^ flags = 0$/;" v class:TestTemplate.test_flags_override.MyPattern +flags Lib/test/test_string.py /^ flags = 0$/;" v class:TestTemplate.test_idpattern_override_inside_outside.MyPattern +flags Lib/test/test_string.py /^ flags = 0$/;" v class:TestTemplate.test_idpattern_override_inside_outside_invalid_unbraced.MyPattern +flags Lib/tomllib/_re.py /^ flags=re.VERBOSE,$/;" v +flags Modules/_ctypes/ctypes.h /^ int flags; \/* calling convention and such *\/$/;" m struct:__anon495 +flags Modules/_ctypes/ctypes.h /^ int flags;$/;" m struct:__anon492 +flags Modules/_dbmmodule.c /^ int flags;$/;" m struct:__anon315 file: +flags Modules/_decimal/_decimal.c /^ PyObject *flags;$/;" m struct:__anon351 file: +flags Modules/_decimal/_decimal.c /^ uint32_t *flags;$/;" m struct:__anon350 file: +flags Modules/_decimal/libmpdec/mpdecimal.h /^ uint8_t flags;$/;" m struct:mpd_t +flags Modules/_lsprof.c /^ int flags;$/;" m struct:__anon362 file: +flags Modules/_sre/sre.h /^ int flags; \/* flags used when compiling pattern source *\/$/;" m struct:__anon454 +flags Modules/_testbuffer.c /^ int flags; \/* capabilities of the base buffer *\/$/;" m struct:ndbuf file: +flags Modules/_testbuffer.c /^ int flags; \/* ndarray flags *\/$/;" m struct:__anon645 file: +flags Modules/_tkinter.c /^ int flags;$/;" m struct:Tkapp_CallEvent file: +flags Modules/_tkinter.c /^ int flags;$/;" m struct:VarEvent file: +flags Modules/cjkcodecs/_codecs_iso2022.c /^ int flags;$/;" m struct:iso2022_config file: +flags Modules/socketmodule.c /^ int flags;$/;" m struct:sock_recv file: +flags Modules/socketmodule.c /^ int flags;$/;" m struct:sock_recvfrom file: +flags Modules/socketmodule.c /^ int flags;$/;" m struct:sock_recvmsg file: +flags Modules/socketmodule.c /^ int flags;$/;" m struct:sock_send file: +flags Modules/socketmodule.c /^ int flags;$/;" m struct:sock_sendmsg file: +flags Modules/socketmodule.c /^ int flags;$/;" m struct:sock_sendto file: +flags Objects/unicodectype.c /^ const unsigned short flags;$/;" m struct:__anon701 file: +flags Objects/unicodeobject.c /^ int flags;$/;" m struct:unicode_format_arg_t file: +flags PC/launcher2.c /^ DWORD flags;$/;" m struct:RegistrySearchInfo file: +flags Parser/pegen.h /^ int flags;$/;" m struct:__anon657 +flags_as_dict Modules/_decimal/_decimal.c /^flags_as_dict(uint32_t flags)$/;" f file: +flags_as_exception Modules/_decimal/_decimal.c /^flags_as_exception(uint32_t flags)$/;" f file: +flags_as_list Modules/_decimal/_decimal.c /^flags_as_list(uint32_t flags)$/;" f file: +flags_desc Python/sysmodule.c /^static PyStructSequence_Desc flags_desc = {$/;" v file: +flags_fields Python/sysmodule.c /^static PyStructSequence_Field flags_fields[] = {$/;" v file: +flagstates Modules/gcmodule.c /^enum flagstates {collecting_clear_unreachable_clear,$/;" g file: +flash Lib/test/test_enum.py /^ def flash(self):$/;" m class:TestSpecial.test_subclass_duplicate_name_dynamic.Base2 +flash Lib/test/test_enum.py /^ flash = 1$/;" v class:TestSpecial.test_subclass_duplicate_name_dynamic.Test +flash Lib/tkinter/__init__.py /^ def flash(self):$/;" m class:Button +flash Lib/tkinter/__init__.py /^ def flash(self):$/;" m class:Checkbutton +flash Lib/tkinter/__init__.py /^ def flash(self):$/;" m class:Radiobutton +flash_paren_event Lib/idlelib/parenmatch.py /^ def flash_paren_event(self, event):$/;" m class:ParenMatch +flat_conjoin Lib/test/test_generators.py /^def flat_conjoin(gs): # rename to conjoin to run tests with this instead$/;" f +flatmap Lib/test/support/_hypothesis_stubs/strategies.py /^ def flatmap(self, expand):$/;" m class:StubStrategy +flatten Lib/email/generator.py /^ def flatten(self, msg, unixfrom=False, linesep=None):$/;" m class:Generator +flatten Lib/test/test_buffer.py /^def flatten(lst):$/;" f +flatten Tools/peg_generator/pegen/grammar.py /^ def flatten(self) -> Rhs:$/;" m class:Rule +flex_complete Modules/readline.c /^flex_complete(const char *text, int start, int end)$/;" f file: +flip Lib/idlelib/tree.py /^ def flip(self, event=None):$/;" m class:TreeNode +flip_fold Modules/_datetimemodule.c /^flip_fold(PyObject *dt)$/;" f file: +float Tools/cases_generator/lexer.py /^float = '(((('+fraction+')'+exponent+'?)|([0-9]+'+exponent+'))[FfLl]?)'$/;" v +float2 Lib/test/test_complex.py /^ class float2:$/;" c function:ComplexTest.test_constructor +float8 Lib/pickletools.py /^float8 = ArgumentDescriptor($/;" v +float___ceil__ Objects/clinic/floatobject.c.h /^float___ceil__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float___ceil___impl Objects/floatobject.c /^float___ceil___impl(PyObject *self)$/;" f file: +float___floor__ Objects/clinic/floatobject.c.h /^float___floor__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float___floor___impl Objects/floatobject.c /^float___floor___impl(PyObject *self)$/;" f file: +float___format__ Objects/clinic/floatobject.c.h /^float___format__(PyObject *self, PyObject *arg)$/;" f +float___format___impl Objects/floatobject.c /^float___format___impl(PyObject *self, PyObject *format_spec)$/;" f file: +float___getformat__ Objects/clinic/floatobject.c.h /^float___getformat__(PyTypeObject *type, PyObject *arg)$/;" f +float___getformat___impl Objects/floatobject.c /^float___getformat___impl(PyTypeObject *type, const char *typestr)$/;" f file: +float___getnewargs__ Objects/clinic/floatobject.c.h /^float___getnewargs__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float___getnewargs___impl Objects/floatobject.c /^float___getnewargs___impl(PyObject *self)$/;" f file: +float___round__ Objects/clinic/floatobject.c.h /^float___round__(PyObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +float___round___impl Objects/floatobject.c /^float___round___impl(PyObject *self, PyObject *o_ndigits)$/;" f file: +float___trunc__ Objects/clinic/floatobject.c.h /^float___trunc__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float___trunc___impl Objects/floatobject.c /^float___trunc___impl(PyObject *self)$/;" f file: +float_abs Objects/floatobject.c /^float_abs(PyFloatObject *v)$/;" f file: +float_add Objects/floatobject.c /^float_add(PyObject *v, PyObject *w)$/;" f file: +float_as_integer_ratio Objects/clinic/floatobject.c.h /^float_as_integer_ratio(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float_as_integer_ratio_impl Objects/floatobject.c /^float_as_integer_ratio_impl(PyObject *self)$/;" f file: +float_as_number Objects/floatobject.c /^static PyNumberMethods float_as_number = {$/;" v file: +float_bool Objects/floatobject.c /^float_bool(PyFloatObject *v)$/;" f file: +float_conjugate Objects/clinic/floatobject.c.h /^float_conjugate(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float_conjugate_impl Objects/floatobject.c /^float_conjugate_impl(PyObject *self)$/;" f file: +float_converter Lib/test/test_time.py /^ def float_converter(ns):$/;" f function:TestCPyTime.test_AsSecondsDouble +float_converter Modules/clinic/_testclinic.c.h /^float_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +float_converter Tools/clinic/clinic.py /^class float_converter(CConverter):$/;" c +float_converter_impl Modules/_testclinic.c /^float_converter_impl(PyObject *module, float a)$/;" f file: +float_dealloc Objects/floatobject.c /^float_dealloc(PyObject *op)$/;" f file: +float_div Objects/floatobject.c /^float_div(PyObject *v, PyObject *w)$/;" f file: +float_divmod Objects/floatobject.c /^float_divmod(PyObject *v, PyObject *w)$/;" f file: +float_eq Lib/test/test_tcl.py /^ def float_eq(actual, expected):$/;" f function:TclTest.test_user_command +float_float Objects/floatobject.c /^float_float(PyObject *v)$/;" f file: +float_floor_div Objects/floatobject.c /^float_floor_div(PyObject *v, PyObject *w)$/;" f file: +float_format Include/internal/pycore_floatobject.h /^ enum _py_float_format_type float_format;$/;" m struct:_Py_float_runtime_state typeref:enum:_Py_float_runtime_state::_py_float_format_type +float_format Objects/floatobject.c 1726;" d file: +float_format_type Objects/floatobject.c /^typedef enum _py_float_format_type float_format_type;$/;" t typeref:enum:_py_float_format_type file: +float_from_string_inner Objects/floatobject.c /^float_from_string_inner(const char *s, Py_ssize_t len, void *obj)$/;" f file: +float_fromhex Objects/floatobject.c /^float_fromhex(PyTypeObject *type, PyObject *string)$/;" f file: +float_getimag Objects/floatobject.c /^float_getimag(PyObject *v, void *closure)$/;" f file: +float_getreal Objects/floatobject.c /^float_getreal(PyObject *v, void *closure)$/;" f file: +float_getset Objects/floatobject.c /^static PyGetSetDef float_getset[] = {$/;" v file: +float_hash Objects/floatobject.c /^float_hash(PyFloatObject *v)$/;" f file: +float_hex Objects/clinic/floatobject.c.h /^float_hex(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float_hex_impl Objects/floatobject.c /^float_hex_impl(PyObject *self)$/;" f file: +float_is_integer Objects/clinic/floatobject.c.h /^float_is_integer(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +float_is_integer_impl Objects/floatobject.c /^float_is_integer_impl(PyObject *self)$/;" f file: +float_member Modules/_testcapi/structmember.c /^ float float_member;$/;" m struct:__anon543 file: +float_methods Objects/floatobject.c /^static PyMethodDef float_methods[] = {$/;" v file: +float_mul Objects/floatobject.c /^float_mul(PyObject *v, PyObject *w)$/;" f file: +float_neg Objects/floatobject.c /^float_neg(PyFloatObject *v)$/;" f file: +float_new Objects/clinic/floatobject.c.h /^float_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +float_new_impl Objects/floatobject.c /^float_new_impl(PyTypeObject *type, PyObject *x)$/;" f file: +float_pow Objects/floatobject.c /^float_pow(PyObject *v, PyObject *w, PyObject *z)$/;" f file: +float_rem Objects/floatobject.c /^float_rem(PyObject *v, PyObject *w)$/;" f file: +float_repr Objects/floatobject.c /^float_repr(PyFloatObject *v)$/;" f file: +float_return_converter Tools/clinic/clinic.py /^class float_return_converter(double_return_converter):$/;" c +float_richcompare Objects/floatobject.c /^float_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +float_round Lib/test/test_tkinter/test_widgets.py /^def float_round(x):$/;" f +float_state Include/internal/pycore_interp.h /^ struct _Py_float_state float_state;$/;" m struct:_is typeref:struct:_is::_Py_float_state +float_state Include/internal/pycore_runtime.h /^ struct _Py_float_runtime_state float_state;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_Py_float_runtime_state +float_sub Objects/floatobject.c /^float_sub(PyObject *v, PyObject *w)$/;" f file: +float_subtype_new Objects/floatobject.c /^float_subtype_new(PyTypeObject *type, PyObject *x)$/;" f file: +float_types Lib/test/test_ctypes/test_numbers.py /^float_types = [c_double, c_float]$/;" v +float_vectorcall Objects/floatobject.c /^float_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +floatinfo_desc Objects/floatobject.c /^static PyStructSequence_Desc floatinfo_desc = {$/;" v file: +floatinfo_fields Objects/floatobject.c /^static PyStructSequence_Field floatinfo_fields[] = {$/;" v file: +floatnl Lib/pickletools.py /^floatnl = ArgumentDescriptor($/;" v +floats Lib/test/test_math_property.py /^floats = hypothesis.strategies.floats$/;" v +floatstr Lib/json/encoder.py /^ def floatstr(o, allow_nan=self.allow_nan,$/;" f function:JSONEncoder.iterencode +floop Lib/test/test_monitoring.py /^def floop():$/;" f +floordiv Lib/operator.py /^def floordiv(a, b):$/;" f +fluch Lib/test/test_traceback.py /^ fluch = None$/;" v class:SuggestionFormattingTestBase.test_getattr_suggestions.CaseChangeOverSubstitution +flush Lib/_pyio.py /^ def flush(self):$/;" m class:BufferedRWPair +flush Lib/_pyio.py /^ def flush(self):$/;" m class:BufferedWriter +flush Lib/_pyio.py /^ def flush(self):$/;" m class:IOBase +flush Lib/_pyio.py /^ def flush(self):$/;" m class:TextIOWrapper +flush Lib/_pyio.py /^ def flush(self):$/;" m class:_BufferedIOMixin +flush Lib/gzip.py /^ def flush(self,zlib_mode=zlib.Z_SYNC_FLUSH):$/;" m class:GzipFile +flush Lib/http/client.py /^ def flush(self):$/;" m class:HTTPResponse +flush Lib/idlelib/outwin.py /^ def flush(self):$/;" m class:OutputWindow +flush Lib/logging/__init__.py /^ def flush(self):$/;" m class:Handler +flush Lib/logging/__init__.py /^ def flush(self):$/;" m class:StreamHandler +flush Lib/logging/handlers.py /^ def flush(self):$/;" m class:BufferingHandler +flush Lib/logging/handlers.py /^ def flush(self):$/;" m class:MemoryHandler +flush Lib/mailbox.py /^ def flush(self):$/;" m class:MH +flush Lib/mailbox.py /^ def flush(self):$/;" m class:Mailbox +flush Lib/mailbox.py /^ def flush(self):$/;" m class:Maildir +flush Lib/mailbox.py /^ def flush(self):$/;" m class:_ProxyFile +flush Lib/mailbox.py /^ def flush(self):$/;" m class:_singlefileMailbox +flush Lib/tarfile.py /^ def flush(self):$/;" m class:_FileInFile +flush Lib/tempfile.py /^ def flush(self):$/;" m class:SpooledTemporaryFile +flush Lib/test/_test_multiprocessing.py /^ def flush(self):$/;" m class:_file_like +flush Lib/test/smtpd.py /^ def flush(self): pass$/;" m class:Devnull +flush Lib/test/sortperf.py /^def flush():$/;" f +flush Lib/test/test_gzip.py /^ def flush(self, mode=-1):$/;" m class:TestGzip.test_flush_modes.FakeCompressor +flush Lib/test/test_io.py /^ def flush(self):$/;" m class:CommonBufferedTests.test_override_destructor.MyBufferedIO +flush Lib/test/test_io.py /^ def flush(self):$/;" m class:IOTest._check_base_destructor.MyIO +flush Lib/test/test_io.py /^ def flush(self):$/;" m class:IOTest.test_close_assert.R +flush Lib/test/test_io.py /^ def flush(self):$/;" m class:IOTest.test_destructor.MyFileIO +flush Lib/test/test_io.py /^ def flush(self):$/;" m class:TextIOWrapperTest.test_override_destructor.MyTextIO +flush Lib/test/test_io.py /^ def flush(self, *args, **kwargs):$/;" m class:TextIOWrapperTest.test_bufio_write_through.BufferedWriter +flush Lib/test/test_io.py /^ def flush(self):$/;" m class:SlowFlushRawIO +flush Lib/test/test_print.py /^ def flush(self):$/;" m class:TestPrint.test_print_flush.filelike +flush Lib/test/test_print.py /^ def flush(self):$/;" m class:TestPrint.test_print_flush.noflush +flush Lib/test/test_unittest/support.py /^ def flush(self):$/;" m class:BufferedWriter +flush Lib/test/test_wsgiref.py /^ def flush(self):$/;" m class:HandlerTests.testPartialWrite.PartialWriter +flush Lib/test/test_zipfile/test_core.py /^ def flush(self):$/;" m class:Tellable +flush Lib/test/test_zipfile/test_core.py /^ def flush(self):$/;" m class:Unseekable +flush Lib/typing.py /^ def flush(self) -> None:$/;" m class:IO +flush Lib/unittest/_log.py /^ def flush(self):$/;" m class:_CapturingHandler +flush Lib/wsgiref/types.py /^ def flush(self) -> object: ...$/;" m class:ErrorStream +flush Lib/wsgiref/validate.py /^ def flush(self):$/;" m class:ErrorWrapper +flush Lib/zipfile/__init__.py /^ def flush(self):$/;" m class:LZMACompressor +flush Lib/zipfile/__init__.py /^ def flush(self):$/;" m class:_Tellable +flush Tools/clinic/clinic.py /^ def flush() -> None:$/;" f function:version_splitter +flush Tools/unicode/genmap_support.py /^ def flush(self):$/;" m class:BufferedFiller +flush_character_buffer Modules/pyexpat.c /^flush_character_buffer(xmlparseobject *self)$/;" f file: +flush_headers Lib/http/server.py /^ def flush_headers(self):$/;" m class:BaseHTTPRequestHandler +flush_io Python/pythonrun.c /^flush_io(void)$/;" f file: +flush_io_stream Python/pythonrun.c /^flush_io_stream(PyThreadState *tstate, PyObject *name)$/;" f file: +flush_std_files Python/pylifecycle.c /^flush_std_files(void)$/;" f file: +flush_std_streams Lib/test/support/__init__.py /^def flush_std_streams():$/;" f +flush_stdout Lib/idlelib/run.py /^def flush_stdout():$/;" f +flush_unmatched Modules/_lsprof.c /^flush_unmatched(ProfilerObject *pObj)$/;" f file: +flushed Modules/_bz2module.c /^ int flushed;$/;" m struct:__anon465 file: +flushed Modules/_lzmamodule.c /^ int flushed;$/;" m struct:__anon295 file: +fm_nomemory Modules/_testcapi/mem.c /^fm_nomemory(void)$/;" f file: +fm_remove_hooks Modules/_testcapi/mem.c /^fm_remove_hooks(void)$/;" f file: +fm_setup_hooks Modules/_testcapi/mem.c /^fm_setup_hooks(void)$/;" f file: +fma Lib/_pydecimal.py /^ def fma(self, a, b, c):$/;" m class:Context +fma Lib/_pydecimal.py /^ def fma(self, other, third, context=None):$/;" m class:Decimal +fmean Lib/statistics.py /^def fmean(data, weights=None):$/;" f +fmt Lib/test/test_traceback.py /^ def fmt():$/;" f function:TracebackFormatTests.test_format_stack +fmt_brief Tools/c-analyzer/c_analyzer/__main__.py /^def fmt_brief(analysis):$/;" f +fmt_full Tools/c-analyzer/c_analyzer/__main__.py /^def fmt_full(analysis):$/;" f +fmt_full Tools/c-analyzer/c_parser/__main__.py /^def fmt_full(filename, item, *, showfwd=None):$/;" f +fmt_raw Tools/c-analyzer/c_analyzer/__main__.py /^def fmt_raw(analysis):$/;" f +fmt_raw Tools/c-analyzer/c_parser/__main__.py /^def fmt_raw(filename, item, *, showfwd=None):$/;" f +fmt_spec Lib/logging/__init__.py /^ fmt_spec = re.compile(r'^(.?[<>=^])?[+ -]?#?0?(\\d+|{\\w+})?[,_]?(\\.(\\d+|{\\w+}))?[bcdefgnosx%]?$', re.I)$/;" v class:StrFormatStyle +fmt_summary Tools/c-analyzer/c_analyzer/__main__.py /^def fmt_summary(analysis):$/;" f +fmt_summary Tools/c-analyzer/c_parser/__main__.py /^def fmt_summary(filename, item, *, showfwd=None):$/;" f +fmt_summary Tools/c-analyzer/cpython/__main__.py /^def fmt_summary(analysis):$/;" f +fmtcmp Modules/_testbuffer.c /^fmtcmp(const char *fmt1, const char *fmt2)$/;" f file: +fmtcnt Objects/unicodeobject.c /^ Py_ssize_t fmtcnt, fmtpos;$/;" m struct:unicode_formatter_t file: +fmtdata Objects/unicodeobject.c /^ const void *fmtdata;$/;" m struct:unicode_formatter_t file: +fmtdef Modules/_struct.c /^ const struct _formatdef *fmtdef;$/;" m struct:_formatcode typeref:struct:_formatcode::_formatdef file: +fmtdict Lib/test/test_buffer.py /^fmtdict = {$/;" v +fmtkind Objects/unicodeobject.c /^ int fmtkind;$/;" m struct:unicode_formatter_t file: +fmtpos Objects/unicodeobject.c /^ Py_ssize_t fmtcnt, fmtpos;$/;" m struct:unicode_formatter_t file: +fmtstr Objects/unicodeobject.c /^ PyObject *fmtstr;$/;" m struct:unicode_formatter_t file: +fn Doc/includes/email-read-alternative.py /^ fn = part.get_filename()$/;" v +fn Lib/aifc.py /^ fn = sys.argv[1]$/;" v +fn Lib/test/test_asyncio/test_tasks.py /^ def fn():$/;" f function:BaseTaskTests.test_iscoroutinefunction +fn Lib/test/test_call.py /^ def fn(**kw):$/;" f function:FunctionCalls.test_kwargs_order +fn Lib/test/test_clinic.py /^ def fn():$/;" f function:ClinicGroupPermuterTest.test_have_left_options_but_required_is_empty +fn Lib/test/test_concurrent_futures/test_future.py /^ def fn(callback_future):$/;" f function:FutureTests.test_done_callback_raises +fn Lib/test/test_concurrent_futures/test_future.py /^ def fn(callback_future):$/;" f function:FutureTests.test_done_callback_already_cancelled +fn Lib/test/test_concurrent_futures/test_future.py /^ def fn(callback_future):$/;" f function:FutureTests.test_done_callback_already_failed +fn Lib/test/test_concurrent_futures/test_future.py /^ def fn(callback_future):$/;" f function:FutureTests.test_done_callback_already_successful +fn Lib/test/test_concurrent_futures/test_future.py /^ def fn(callback_future):$/;" f function:FutureTests.test_done_callback_with_cancel +fn Lib/test/test_concurrent_futures/test_future.py /^ def fn(callback_future):$/;" f function:FutureTests.test_done_callback_with_exception +fn Lib/test/test_concurrent_futures/test_future.py /^ def fn(callback_future):$/;" f function:FutureTests.test_done_callback_with_result +fn Lib/test/test_fstring.py /^ def fn(x):$/;" f function:.test_yield_send +fn Lib/test/test_fstring.py /^ def fn(y):$/;" f function:.test_yield +fn Lib/test/test_shelve.py /^ fn = os.path.join(os_helper.TESTFN, "shelftemp.db")$/;" v class:TestCase +fn Lib/test/test_sys_setprofile.py /^ def fn(*args):$/;" f function:TestGetProfile.test_setget +fn Lib/test/test_sys_settrace.py /^ def fn(*args):$/;" f function:TraceTestCase.test_set_and_retrieve_func +fn Lib/test/test_threading.py /^ def fn(*args): pass$/;" f function:ThreadTests.test_getprofile +fn Lib/test/test_threading.py /^ def fn(*args): pass$/;" f function:ThreadTests.test_getprofile_all_threads +fn Lib/test/test_threading.py /^ def fn(*args): pass$/;" f function:ThreadTests.test_gettrace_all_threads +fn Modules/_functoolsmodule.c /^ PyObject *fn;$/;" m struct:__anon393 file: +fn1 Lib/test/test_asyncio/test_tasks.py /^ def fn1():$/;" f function:BaseTaskTests.test_iscoroutinefunction +fn2 Lib/test/test_asyncio/test_tasks.py /^ async def fn2():$/;" f function:BaseTaskTests.test_iscoroutinefunction +fn3 Lib/test/test_inspect.py /^ def fn3():$/;" f function:TestPredicates.test_iscoroutine +fname Include/cpython/modsupport.h /^ const char *fname;$/;" m struct:_PyArg_Parser +fname Lib/test/test_sax.py /^ fname = os_helper.TESTFN + '-codecs'$/;" v class:StreamReaderWriterXmlgenTest +fname Tools/build/parse_html5_entities.py /^ fname = 'Lib\/html\/entities.py'$/;" v +fnmatch Lib/fnmatch.py /^def fnmatch(name, pat):$/;" f +fnmatch Lib/test/test_tracemalloc.py /^ def fnmatch(filename, pattern):$/;" f function:TestFilters.test_filter_match_filename_joker +fnmatch Lib/test/test_tracemalloc.py /^ def fnmatch(inclusive, filename, pattern):$/;" f function:TestFilters.test_filter_match_filename +fnmatchcase Lib/fnmatch.py /^def fnmatchcase(name, pat):$/;" f +fnt_autoconvolute Modules/_decimal/libmpdec/convolute.c /^fnt_autoconvolute(mpd_uint_t *c1, mpd_size_t n, int modnum)$/;" f +fnt_convolute Modules/_decimal/libmpdec/convolute.c /^fnt_convolute(mpd_uint_t *c1, mpd_uint_t *c2, mpd_size_t n, int modnum)$/;" f +fnt_dif2 Modules/_decimal/libmpdec/difradix2.c /^fnt_dif2(mpd_uint_t a[], mpd_size_t n, struct fnt_params *tparams)$/;" f +fnt_params Modules/_decimal/libmpdec/numbertheory.h /^struct fnt_params {$/;" s +fnv Include/pyhash.h /^ } fnv;$/;" m union:__anon256 typeref:struct:__anon256::__anon257 +fnv Python/pyhash.c /^fnv(const void *src, Py_ssize_t len)$/;" f file: +focus Lib/tkinter/__init__.py /^ def focus(self, *args):$/;" m class:Canvas +focus Lib/tkinter/__init__.py /^ focus = focus_set # XXX b\/w compat?$/;" v class:Misc +focus Lib/tkinter/ttk.py /^ def focus(self, item=None):$/;" m class:Treeview +focus_displayof Lib/tkinter/__init__.py /^ def focus_displayof(self):$/;" m class:Misc +focus_force Lib/tkinter/__init__.py /^ def focus_force(self):$/;" m class:Misc +focus_force Lib/turtle.py /^ def focus_force(self):$/;" m class:ScrolledCanvas +focus_get Lib/tkinter/__init__.py /^ def focus_get(self):$/;" m class:Misc +focus_lastfor Lib/tkinter/__init__.py /^ def focus_lastfor(self):$/;" m class:Misc +focus_set Lib/idlelib/idle_test/mock_tk.py /^ def focus_set(self):$/;" m class:Entry +focus_set Lib/tkinter/__init__.py /^ def focus_set(self):$/;" m class:Misc +focusmodel Lib/tkinter/__init__.py /^ focusmodel = wm_focusmodel$/;" v class:Wm +fodderModule Lib/test/test_inspect.py /^ fodderModule = None$/;" v class:GetSourceBase +fodderModule Lib/test/test_inspect.py /^ fodderModule = mod$/;" v class:TestBlockComments +fodderModule Lib/test/test_inspect.py /^ fodderModule = mod$/;" v class:TestGettingSourceOfToplevelFrames +fodderModule Lib/test/test_inspect.py /^ fodderModule = mod$/;" v class:TestRetrievingSourceCode +fodderModule Lib/test/test_inspect.py /^ fodderModule = mod2$/;" v class:TestBuggyCases +fodderModule Lib/test/test_inspect.py /^ fodderModule = mod2$/;" v class:TestComplexDecorator +fodderModule Lib/test/test_inspect.py /^ fodderModule = mod2$/;" v class:TestDecorators +fodderModule Lib/test/test_inspect.py /^ fodderModule = mod2$/;" v class:TestOneliners +fold Include/datetime.h /^ unsigned char fold;$/;" m struct:__anon266 +fold Include/datetime.h /^ unsigned char fold;$/;" m struct:__anon269 +fold Lib/_pydatetime.py /^ def fold(self):$/;" m class:datetime +fold Lib/_pydatetime.py /^ def fold(self):$/;" m class:time +fold Lib/email/_header_value_parser.py /^ def fold(self, *, policy):$/;" m class:TokenList +fold Lib/email/_header_value_parser.py /^ def fold(self, policy):$/;" m class:MsgID +fold Lib/email/_policybase.py /^ def fold(self, name, value):$/;" m class:Compat32 +fold Lib/email/_policybase.py /^ def fold(self, name, value):$/;" m class:Policy +fold Lib/email/headerregistry.py /^ def fold(self, *, policy):$/;" m class:BaseHeader +fold Lib/email/policy.py /^ def fold(self, name, value):$/;" m class:EmailPolicy +fold Lib/test/test_zoneinfo/test_zoneinfo.py /^ fold=dt.fold,$/;" v class:CZoneInfoTest.test_fold_mutate.to_subclass.SameAddSubclass +fold Lib/test/test_zoneinfo/test_zoneinfo.py /^ def fold(self):$/;" m class:ZoneTransition +fold_binary Lib/email/_policybase.py /^ def fold_binary(self, name, value):$/;" m class:Compat32 +fold_binary Lib/email/_policybase.py /^ def fold_binary(self, name, value):$/;" m class:Policy +fold_binary Lib/email/policy.py /^ def fold_binary(self, name, value):$/;" m class:EmailPolicy +fold_binop Python/ast_opt.c /^fold_binop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)$/;" f file: +fold_compare Python/ast_opt.c /^fold_compare(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)$/;" f file: +fold_iter Python/ast_opt.c /^fold_iter(expr_ty arg, PyArena *arena, _PyASTOptimizeState *state)$/;" f file: +fold_subscr Python/ast_opt.c /^fold_subscr(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)$/;" f file: +fold_tuple Python/ast_opt.c /^fold_tuple(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)$/;" f file: +fold_tuple_on_constants Python/flowgraph.c /^fold_tuple_on_constants(PyObject *const_cache,$/;" f file: +fold_unaryop Python/ast_opt.c /^fold_unaryop(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)$/;" f file: +folds Lib/test/datetimetester.py /^ def folds(self):$/;" m class:ZoneInfo +follow_symlinks_specified Modules/posixmodule.c /^follow_symlinks_specified(const char *function_name, int follow_symlinks)$/;" f file: +font_sample_text Lib/idlelib/configdialog.py /^font_sample_text = ($/;" v +font_sizes Lib/turtledemo/__main__.py /^font_sizes = [8, 9, 10, 11, 12, 14, 18, 20, 22, 24, 30]$/;" v +fontname Lib/test/test_tkinter/test_font.py /^fontname = "TkDefaultFont"$/;" v +foo Lib/bdb.py /^def foo(n):$/;" f +foo Lib/idlelib/idle_test/test_calltip.py /^ def foo(s='a'*100):$/;" f function:.test_properly_formatted +foo Lib/test/ann_module.py /^def foo(x: int = 10):$/;" f +foo Lib/test/gdb_sample.py /^def foo(a, b, c):$/;" f +foo Lib/test/inspect_stringized_annotations_2.py /^def foo(a, b, c): pass$/;" f +foo Lib/test/mp_fork_bomb.py /^def foo():$/;" f +foo Lib/test/pyclbr_input.py /^ def foo(c): pass$/;" m class:Other +foo Lib/test/pyclbr_input.py /^ foo = Other().foo$/;" v class:C +foo Lib/test/sample_doctest.py /^def foo():$/;" f +foo Lib/test/test_abc.py /^ def foo(self): pass # abstract$/;" m class:test_factory.TestABC.test_abstractmethod_integration.C +foo Lib/test/test_abc.py /^ def foo(self): pass$/;" m class:test_factory.TestABC.test_abstractmethod_integration.E +foo Lib/test/test_abc.py /^ foo = property(bar)$/;" v class:test_factory.TestABC.test_descriptors_with_abstractmethod.NotBool.F +foo Lib/test/test_abc.py /^ def foo(): return 3$/;" m class:test_factory.TestABC.test_abstractstaticmethod_basics.C +foo Lib/test/test_abc.py /^ def foo(): return 3$/;" m class:test_factory.TestLegacyAPI.test_abstractstaticmethod_basics.C +foo Lib/test/test_abc.py /^ def foo(): return 4$/;" m class:test_factory.TestABC.test_abstractstaticmethod_basics.D +foo Lib/test/test_abc.py /^ def foo(): return 4$/;" m class:test_factory.TestLegacyAPI.test_abstractstaticmethod_basics.D +foo Lib/test/test_abc.py /^ def foo(cls): return cls.__name__$/;" m class:test_factory.TestABC.test_ABC_helper.C +foo Lib/test/test_abc.py /^ def foo(cls): return cls.__name__$/;" m class:test_factory.TestABC.test_abstractclassmethod_basics.C +foo Lib/test/test_abc.py /^ def foo(cls): return cls.__name__$/;" m class:test_factory.TestLegacyAPI.test_abstractclassmethod_basics.C +foo Lib/test/test_abc.py /^ def foo(cls): return super().foo()$/;" m class:test_factory.TestABC.test_ABC_helper.D +foo Lib/test/test_abc.py /^ def foo(cls): return super().foo()$/;" m class:test_factory.TestABC.test_abstractclassmethod_basics.D +foo Lib/test/test_abc.py /^ def foo(cls): return super().foo()$/;" m class:test_factory.TestLegacyAPI.test_abstractclassmethod_basics.D +foo Lib/test/test_abc.py /^ def foo(self): return 3$/;" m class:test_factory.TestABC.test_abstractproperty_basics.C +foo Lib/test/test_abc.py /^ def foo(self): return 3$/;" m class:test_factory.TestABC.test_customdescriptors_with_abstractmethod.C +foo Lib/test/test_abc.py /^ def foo(self): return 3$/;" m class:test_factory.TestABC.test_descriptors_with_abstractmethod.C +foo Lib/test/test_abc.py /^ def foo(self): return 3$/;" m class:test_factory.TestLegacyAPI.test_abstractproperty_basics.C +foo Lib/test/test_abc.py /^ def foo(self): return super().foo$/;" m class:test_factory.TestABC.test_abstractproperty_basics.D +foo Lib/test/test_abc.py /^ def foo(self): return super().foo$/;" m class:test_factory.TestABC.test_customdescriptors_with_abstractmethod.D +foo Lib/test/test_abc.py /^ def foo(self): return super().foo$/;" m class:test_factory.TestABC.test_descriptors_with_abstractmethod.D +foo Lib/test/test_abc.py /^ def foo(self): return super().foo$/;" m class:test_factory.TestLegacyAPI.test_abstractproperty_basics.D +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_as_decorator.A +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_del.A +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_del_implementation.A +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_del_implementation.B +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_implementation.A +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_layered_implementation.A +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_layered_implementation.C +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_multi_inheritance.A +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_multi_inheritance.B +foo Lib/test/test_abc.py /^ def foo(self):$/;" m class:test_factory.TestABC.test_update_multi_inheritance.C +foo Lib/test/test_abc.py /^ def foo(self, val): pass$/;" m class:test_factory.TestABC.test_customdescriptors_with_abstractmethod.C +foo Lib/test/test_abc.py /^ def foo(self, val): pass$/;" m class:test_factory.TestABC.test_customdescriptors_with_abstractmethod.E +foo Lib/test/test_abc.py /^ def foo(self, val): pass$/;" m class:test_factory.TestABC.test_descriptors_with_abstractmethod.C +foo Lib/test/test_abc.py /^ def foo(self, val): pass$/;" m class:test_factory.TestABC.test_descriptors_with_abstractmethod.E +foo Lib/test/test_abc.py /^ foo = 42$/;" v class:test_factory.TestABC.test_subclasshook.B +foo Lib/test/test_abc.py /^ def foo(): pass$/;" f function:test_factory.TestABC.test_abstractstaticmethod_basics +foo Lib/test/test_abc.py /^ def foo(): pass$/;" f function:test_factory.TestLegacyAPI.test_abstractstaticmethod_basics +foo Lib/test/test_abc.py /^ def foo(cls): pass$/;" f function:test_factory.TestABC.test_abstractclassmethod_basics +foo Lib/test/test_abc.py /^ def foo(cls): pass$/;" f function:test_factory.TestLegacyAPI.test_abstractclassmethod_basics +foo Lib/test/test_abc.py /^ def foo(self): pass$/;" f function:test_factory.TestABC.test_abstractmethod_basics +foo Lib/test/test_abc.py /^ def foo(self): pass$/;" f function:test_factory.TestABC.test_abstractproperty_basics +foo Lib/test/test_abc.py /^ def foo(self): pass$/;" f function:test_factory.TestLegacyAPI.test_abstractproperty_basics +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_06 +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_07 +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_08 +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_12 +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_04 +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_05 +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_stopiteration +foo Lib/test/test_asyncgen.py /^ async def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_tuple +foo Lib/test/test_asyncgen.py /^ def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_10 +foo Lib/test/test_asyncgen.py /^ def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_11 +foo Lib/test/test_asyncgen.py /^ def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_06 +foo Lib/test/test_asyncgen.py /^ def foo():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_03 +foo Lib/test/test_asyncio/test_base_events.py /^ async def foo(delay):$/;" f function:BaseEventLoopTests.test_run_until_complete_loop_orphan_future_close_loop +foo Lib/test/test_asyncio/test_pep492.py /^ async def foo(): pass$/;" f function:CoroutineTests.test_iscoroutine +foo Lib/test/test_asyncio/test_pep492.py /^ async def foo(): pass$/;" f function:CoroutineTests.test_iscoroutinefunction +foo Lib/test/test_asyncio/test_pep492.py /^ async def foo():$/;" f function:CoroutineTests.test_async_def_coroutines +foo Lib/test/test_asyncio/test_pep492.py /^ async def foo():$/;" f function:CoroutineTests.test_task_print_stack +foo Lib/test/test_asyncio/test_pep492.py /^ def foo(): yield$/;" f function:CoroutineTests.test_iscoroutine_generator +foo Lib/test/test_asyncio/test_taskgroups.py /^ async def foo():$/;" f function:TestTaskGroup.test_cancellation +foo Lib/test/test_asyncio/test_taskgroups.py /^ async def foo():$/;" f function:TestTaskGroup.test_taskgroup_07 +foo Lib/test/test_asyncio/test_taskgroups.py /^ async def foo():$/;" f function:TestTaskGroup.test_taskgroup_08 +foo Lib/test/test_asyncio/test_taskgroups.py /^ async def foo():$/;" f function:TestTaskGroup.test_taskgroup_11 +foo Lib/test/test_asyncio/test_taskgroups.py /^ async def foo():$/;" f function:TestTaskGroup.test_taskgroup_12 +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_as_completed +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_as_completed_with_timeout +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_as_completed_with_unused_timeout +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_exception_traceback +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_get_stack +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_wait +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_wait_with_exception +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_wait_with_iterator_of_tasks +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:BaseTaskTests.test_wait_with_timeout +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:SetMethodsTest.test_set_exception_causes_invalid_state +foo Lib/test/test_asyncio/test_tasks.py /^ async def foo():$/;" f function:SetMethodsTest.test_set_result_causes_invalid_state +foo Lib/test/test_asyncio/test_waitfor.py /^ async def foo():$/;" f function:AsyncioWaitForTest.test_wait_for_timeout_less_then_0_or_0 +foo Lib/test/test_asyncio/test_waitfor.py /^ async def foo():$/;" f function:AsyncioWaitForTest.test_wait_for +foo Lib/test/test_asyncio/test_waitfor.py /^ async def foo():$/;" f function:AsyncioWaitForTest.test_wait_for_reraises_exception_during_cancellation +foo Lib/test/test_asyncio/test_waitfor.py /^ async def foo():$/;" f function:AsyncioWaitForTest.test_wait_for_timeout_less_then_0_or_0_coroutine_do_not_started +foo Lib/test/test_asyncio/test_waitfor.py /^ async def foo():$/;" f function:AsyncioWaitForTest.test_wait_for_waits_for_task_cancellation_w_timeout_0 +foo Lib/test/test_capi/test_misc.py /^ class foo(object):pass$/;" c function:TestPendingCalls.test_pendingcalls_threaded +foo Lib/test/test_code.py /^ def foo():$/;" f function:CodeTest.test_invalid_bytecode +foo Lib/test/test_copy.py /^ def foo(x, y): return x+y$/;" f function:TestCopy.test_copy_function +foo Lib/test/test_copy.py /^ def foo(x, y): return x+y$/;" f function:TestCopy.test_deepcopy_function +foo Lib/test/test_coroutines.py /^ async def foo(): return await Awaitable()$/;" f function:CoroutineTest.test_await_8 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CAPITest.test_tp_await_1 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CAPITest.test_tp_await_3 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_1 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_10 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_11 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_12 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_13 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_2 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_3 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_4 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_5 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_6 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_7 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_await_9 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_coro_wrapper_send_stop_iterator +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_coro_wrapper_send_tuple +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_for_2 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_for_3 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_for_4 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_for_7 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_for_8 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_for_stop_iteration +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_for_tuple +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_1 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_10 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_2 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_3 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_4 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_5 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_6 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_8 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_func_9 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_1 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_10 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_11 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_12 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_13 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_2 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_3 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_4 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_6 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_7 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_8 +foo Lib/test/test_coroutines.py /^ async def foo():$/;" f function:CoroutineTest.test_with_9 +foo Lib/test/test_coroutines.py /^ def foo():$/;" f function:CoroutineTest.test_func_19 +foo Lib/test/test_coroutines.py /^ def foo():$/;" f function:CoroutineTest.test_func_7 +foo Lib/test/test_dataclasses.py /^ def foo(self) -> int:$/;" m class:TestCase.test_dont_include_other_annotations.C +foo Lib/test/test_dataclasses.py /^ def foo(self):$/;" m class:TestAbstract.test_maintain_abc.A +foo Lib/test/test_decorators.py /^ def foo(): return 42$/;" m class:TestDecorators.test_single.C +foo Lib/test/test_decorators.py /^ def foo(self): return 42$/;" m class:TestDecorators.test_double.C +foo Lib/test/test_decorators.py /^ def foo(self, cls):$/;" m class:TestDecorators.test_bound_function_inside_classmethod.A +foo Lib/test/test_decorators.py /^ def foo(): return 42$/;" f function:TestDecorators.test_dotted +foo Lib/test/test_decorators.py /^ def foo(): return 42$/;" f function:TestDecorators.test_eval_order +foo Lib/test/test_decorators.py /^ def foo(): return 42$/;" f function:TestDecorators.test_order +foo Lib/test/test_defaultdict.py /^ def foo(): return 43$/;" f function:TestDefaultDict.test_repr +foo Lib/test/test_descr.py /^ foo = None$/;" v class:.test_slot_shadows_class_variable.X +foo Lib/test/test_descr.py /^ def foo(*a): return a$/;" m class:.test_classic.C +foo Lib/test/test_descr.py /^ def foo(*a): return a$/;" m class:.test_classmethods.C +foo Lib/test/test_descr.py /^ def foo(*a): return a$/;" m class:.test_staticmethods.C +foo Lib/test/test_descr.py /^ def foo(self): return 1$/;" m class:OperatorsTest.test_spam_dicts.C +foo Lib/test/test_descr.py /^ def foo(self): return 1$/;" m class:OperatorsTest.test_spam_lists.C +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:.test_attr_raise_through_property.A +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:.test_attr_raise_through_property.B +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:.test_methods.C +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:.test_properties_plus.C +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:.test_properties_plus.D +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:.test_properties_plus.E +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:.test_properties_plus.F +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:ClassPropertiesAndMethods.test_multiple_inheritance.Frag +foo Lib/test/test_descr.py /^ def foo(self):$/;" m class:ClassPropertiesAndMethods.test_multiple_inheritance.Node +foo Lib/test/test_descr.py /^ def foo(self, value):$/;" m class:.test_properties_plus.C +foo Lib/test/test_descr.py /^ def foo(self, value):$/;" m class:.test_properties_plus.E +foo Lib/test/test_descr.py /^ def foo(self, value):$/;" m class:.test_properties_plus.F +foo Lib/test/test_descr.py /^ def foo(self, value=None):$/;" m class:.test_properties_plus.E +foo Lib/test/test_descr.py /^ foo = C.foo$/;" v class:.test_classic.E +foo Lib/test/test_descr.py /^ foo = C.foo$/;" v class:.test_methods.E +foo Lib/test/test_descr.py /^ foo = property(doc="hello")$/;" v class:.test_properties_plus.C +foo Lib/test/test_dis.py /^ def foo(x):$/;" f function:_h +foo Lib/test/test_dynamic.py /^ def foo(modifier):$/;" f function:RebindBuiltinsTests.test_modify_builtins_from_leaf_function +foo Lib/test/test_dynamic.py /^ def foo():$/;" f function:RebindBuiltinsTests.test_cannot_change_globals_or_builtins_with_eval +foo Lib/test/test_dynamic.py /^ def foo():$/;" f function:RebindBuiltinsTests.test_cannot_change_globals_or_builtins_with_exec +foo Lib/test/test_dynamic.py /^ def foo():$/;" f function:RebindBuiltinsTests.test_cannot_replace_builtins_dict_between_calls +foo Lib/test/test_dynamic.py /^ def foo():$/;" f function:RebindBuiltinsTests.test_cannot_replace_builtins_dict_while_active +foo Lib/test/test_dynamic.py /^ def foo():$/;" f function:RebindBuiltinsTests.test_globals_shadow_builtins +foo Lib/test/test_dynamic.py /^ def foo():$/;" f function:RebindBuiltinsTests.test_modify_builtins +foo Lib/test/test_dynamic.py /^ def foo():$/;" f function:RebindBuiltinsTests.test_modify_builtins_while_generator_active +foo Lib/test/test_dynamicclassattribute.py /^ def foo(self):$/;" m class:PropertyTests.test_property___isabstractmethod__descriptor.C +foo Lib/test/test_dynamicclassattribute.py /^ def foo(self):$/;" m class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool.C +foo Lib/test/test_dynamicclassattribute.py /^ foo = DynamicClassAttribute(foo)$/;" v class:PropertyTests.test_property___isabstractmethod__descriptor.C +foo Lib/test/test_dynamicclassattribute.py /^ foo = DynamicClassAttribute(foo)$/;" v class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool.C +foo Lib/test/test_enum.py /^ foo = 10$/;" v class:TestSpecial.test_nested_classes_in_enum_are_members.Outer.Inner +foo Lib/test/test_enum.py /^ foo = 10$/;" v class:TestSpecial.test_nested_classes_in_enum_are_not_members.Outer.Inner +foo Lib/test/test_enum.py /^ foo = 10$/;" v class:TestSpecial.test_nested_classes_in_enum_with_member.Outer.Inner +foo Lib/test/test_enum.py /^ foo = 10$/;" v class:TestSpecial.test_nested_classes_in_enum_with_nonmember.Outer.Inner +foo Lib/test/test_enum.py /^ class foo:$/;" c function:TestHelpers.test_is_descriptor +foo Lib/test/test_exceptions.py /^ def foo():$/;" f function:ExceptionTests.test_trashcan_recursion +foo Lib/test/test_fstring.py /^ def foo(x):$/;" f function:.test_call +foo Lib/test/test_functools.py /^ def foo(bar):$/;" f function:TestPartial.test_nested_partial_with_attribute +foo Lib/test/test_gettext.py /^ def foo(self):$/;" m class:DummyGNUTranslations +foo Lib/test/test_grammar.py /^ async def foo():$/;" f function:GrammarTests.test_async_for +foo Lib/test/test_grammar.py /^ async def foo():$/;" f function:GrammarTests.test_async_with +foo Lib/test/test_grammar.py /^ def foo():$/;" f function:GrammarTests.test_simple_stmt +foo Lib/test/test_import/__init__.py /^ def foo():$/;" f function:OverridingImportBuiltinTests.test_override_builtin +foo Lib/test/test_inspect.py /^ def foo(cls, *, arg):$/;" m class:TestSignatureObject.test_signature_on_staticmethod.Test +foo Lib/test/test_inspect.py /^ def foo(cls, arg1, *, arg2=1):$/;" m class:TestSignatureObject.test_signature_on_classmethod.Test +foo Lib/test/test_inspect.py /^ def foo(self):$/;" m class:TestPredicates.test_isabstract.AbstractClassExample +foo Lib/test/test_inspect.py /^ def foo(self):$/;" m class:TestPredicates.test_isabstract.ClassExample +foo Lib/test/test_inspect.py /^ def foo(self):$/;" m class:TestPredicates.test_isabstract_during_init_subclass.AbstractClassExample +foo Lib/test/test_inspect.py /^ def foo(self):$/;" m class:TestPredicates.test_isabstract_during_init_subclass.ClassExample +foo Lib/test/test_inspect.py /^ def foo(self, __p1:1=2, *, __p2:2=3):$/;" m class:TestSignatureObject.test_signature_on_mangled_parameters.Spam +foo Lib/test/test_inspect.py /^ foo = 3$/;" v class:TestGetattrStatic.test_class_as_property.Base +foo Lib/test/test_inspect.py /^ foo = 3$/;" v class:TestGetattrStatic.test_mro_as_property.Base +foo Lib/test/test_inspect.py /^ class foo: pass$/;" c function:TestSignatureObject.test_signature_from_callable_class +foo Lib/test/test_inspect.py /^ def foo(): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_apply_defaults +foo Lib/test/test_inspect.py /^ def foo(): pass$/;" f function:TestGetClosureVars.test_getclosurevars_empty +foo Lib/test/test_inspect.py /^ def foo(): pass$/;" f function:TestSignatureObject.test_signature_none_annotation +foo Lib/test/test_inspect.py /^ def foo():$/;" f function:TestMain.test_custom_getattr +foo Lib/test/test_inspect.py /^ def foo():$/;" f function:TestSignatureObject.test_signature_str +foo Lib/test/test_inspect.py /^ def foo(*, a, b): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_equality +foo Lib/test/test_inspect.py /^ def foo(*, a, b, c): pass$/;" f function:TestSignatureObject.test_signature_equality +foo Lib/test/test_inspect.py /^ def foo(*, a=1, b, c): pass$/;" f function:TestSignatureObject.test_signature_equality +foo Lib/test/test_inspect.py /^ def foo(a) -> {}: pass$/;" f function:TestSignatureObject.test_signature_hashable +foo Lib/test/test_inspect.py /^ def foo(a): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_arguments_type +foo Lib/test/test_inspect.py /^ def foo(a): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_equality +foo Lib/test/test_inspect.py /^ def foo(a): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_unhashable +foo Lib/test/test_inspect.py /^ def foo(a): pass$/;" f function:TestSignatureObject.test_signature_hashable +foo Lib/test/test_inspect.py /^ def foo(a): pass$/;" f function:TestSignatureObject.test_signature_on_fake_partialmethod +foo Lib/test/test_inspect.py /^ def foo(a):$/;" f function:TestSignatureObject.test_signature_on_partial +foo Lib/test/test_inspect.py /^ def foo(a, *, b:1): pass$/;" f function:TestSignatureObject.test_signature_from_callable_python_obj +foo Lib/test/test_inspect.py /^ def foo(a, *, b:int) -> float: pass$/;" f function:TestSignatureObject.test_signature_equality +foo Lib/test/test_inspect.py /^ def foo(a, b): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_apply_defaults +foo Lib/test/test_inspect.py /^ def foo(a, b, *, c:1={}, **kw) -> {42:'ham'}: pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_pickle +foo Lib/test/test_inspect.py /^ def foo(a, b, *, c:1={}, **kw) -> {42:'ham'}: pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_repr +foo Lib/test/test_inspect.py /^ def foo(a, b, *, c:1={}, **kw) -> {42:'ham'}: pass$/;" f function:TestSignatureObject.test_signature_object_pickle +foo Lib/test/test_inspect.py /^ def foo(a, b, \/, c, d, **kwargs):$/;" f function:TestSignatureObject.test_signature_on_partial +foo Lib/test/test_inspect.py /^ def foo(a, b, c):$/;" f function:TestSignatureObject.test_signature_on_partial +foo Lib/test/test_inspect.py /^ def foo(a, b, c, *, d):$/;" f function:TestSignatureObject.test_signature_on_partial +foo Lib/test/test_inspect.py /^ def foo(a, b=1, *args, c:1={}, **kw): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_apply_defaults +foo Lib/test/test_inspect.py /^ def foo(a: list[str]) -> Tuple[str, float]:$/;" f function:TestSignatureObject.test_signature_str +foo Lib/test/test_inspect.py /^ def foo(a: list[str]) -> tuple[str, float]:$/;" f function:TestSignatureObject.test_signature_str +foo Lib/test/test_inspect.py /^ def foo(a:int, b:str): pass$/;" f function:TestClassesAndFunctions.test_get_annotations_with_stock_annotations +foo Lib/test/test_inspect.py /^ def foo(a:int=1, *, b, c=None, **kwargs) -> 42:$/;" f function:TestSignatureObject.test_signature_str +foo Lib/test/test_inspect.py /^ def foo(a:int=1, *args, b, c=None, **kwargs) -> 42:$/;" f function:TestSignatureObject.test_signature_str +foo Lib/test/test_inspect.py /^ def foo(a='spam'): pass$/;" f function:TestBoundArguments.test_signature_bound_arguments_apply_defaults +foo Lib/test/test_inspect.py /^ def foo(a=1, b=2, c=3):$/;" f function:TestSignatureObject.test_signature_on_partial +foo Lib/test/test_inspect.py /^ def foo(a={}): pass$/;" f function:TestSignatureObject.test_signature_hashable +foo Lib/test/test_inspect.py /^ def foo(bar, \/, **kwargs):$/;" f function:TestSignatureBind.test_signature_bind_posonly_kwargs +foo Lib/test/test_inspect.py /^ def foo(pos, *, a, b, c): pass$/;" f function:TestSignatureObject.test_signature_equality +foo Lib/test/test_inspect.py /^ def foo(pos, *, a=1, b, c): pass$/;" f function:TestSignatureObject.test_signature_equality +foo Lib/test/test_inspect.py /^ def foo(pos, *args, a=42, b, c, **kwargs:int): pass$/;" f function:TestSignatureObject.test_signature_equality +foo Lib/test/test_keywordonlyarg.py /^ def foo(p1,p2=0, *, k1, k2=0):$/;" f function:KeywordOnlyArgTestCase.testKwDefaults +foo Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def foo():$/;" f function:GrammarTests.testSimpleStmt +foo Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def foo():$/;" f function:GrammarTests.testSimpleStmt +foo Lib/test/test_operator.py /^ def foo(self, *args, **kwds):$/;" m class:OperatorPickleTestCase.test_methodcaller.A +foo Lib/test/test_operator.py /^ def foo(self, *args, **kwds):$/;" m class:OperatorTestCase.test_methodcaller.A +foo Lib/test/test_property.py /^ def foo(self):$/;" m class:PropertyTests.test_property___isabstractmethod__descriptor.C +foo Lib/test/test_property.py /^ def foo(self):$/;" m class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool.C +foo Lib/test/test_property.py /^ foo = property(foo)$/;" v class:PropertyTests.test_property___isabstractmethod__descriptor.C +foo Lib/test/test_property.py /^ foo = property(foo)$/;" v class:PropertyTests.test_property___isabstractmethod__descriptor.NotBool.C +foo Lib/test/test_property.py /^ foo = property()$/;" v class:PropertyUnreachableAttributeWithName.cls +foo Lib/test/test_pydoc.py /^ def foo(data: typing.List[typing.Any],$/;" f function:TestDescriptions.test_typing_pydoc +foo Lib/test/test_reprlib.py /^ def foo(cls): pass$/;" m class:ReprTests.test_descriptors.C +foo Lib/test/test_scope.py /^ def foo(*, a=17):$/;" f function:ScopeTests.testCellIsKwonlyArg +foo Lib/test/test_sqlite3/test_regression.py /^ def foo():$/;" f function:RegressionTests.test_recursive_cursor_use +foo Lib/test/test_symtable.py /^ foo = find_block(top, "foo")$/;" v class:SymtableTest +foo Lib/test/test_sys.py /^ def foo():$/;" m class:SizeofTest.test_objecttypes.c +foo Lib/test/test_sys_setprofile.py /^ def foo(*args):$/;" f function:TestEdgeCases.test_reentrancy +foo Lib/test/test_sys_setprofile.py /^ def foo(*args):$/;" f function:TestEdgeCases.test_same_object +foo Lib/test/test_sys_settrace.py /^ def foo(*args):$/;" f function:TestEdgeCases.test_reentrancy +foo Lib/test/test_sys_settrace.py /^ def foo(*args):$/;" f function:TestEdgeCases.test_same_object +foo Lib/test/test_sys_settrace.py /^ def foo(x):$/;" f function:TraceTestCase.test_flow_converges_on_same_line +foo Lib/test/test_traceback.py /^ def foo(a: THIS_DOES_NOT_EXIST ) -> int:$/;" f function:TracebackErrorLocationCaretTestBase.test_caret_in_type_annotation.f_with_type +foo Lib/test/test_traceback.py /^ def foo(self):$/;" m class:SuggestionFormattingTestBase.test_name_error_with_instance.A +foo Lib/test/test_traceback.py /^ def foo(self):$/;" m class:SuggestionFormattingTestBase.test_unbound_local_error_with_instance.A +foo Lib/test/test_traceback.py /^ def foo():$/;" f function:TestTracebackException.test_from_exception +foo Lib/test/test_type_params.py /^ def foo[U: T](self): ...$/;" m class:TypeParamsClassScopeTest.test_bound.X +foo Lib/test/test_type_params.py /^ def foo[U: T](self): ...$/;" m class:TypeParamsClassScopeTest.test_modified_later.X +foo Lib/test/test_types.py /^ async def foo(): pass$/;" f function:CoroutineTests.test_async_def +foo Lib/test/test_types.py /^ def foo(): return Generator('spam')$/;" f function:CoroutineTests.test_duck_functional_gen +foo Lib/test/test_types.py /^ def foo(): return gen$/;" f function:CoroutineTests.test_duck_gen +foo Lib/test/test_types.py /^ def foo(): return gen$/;" f function:CoroutineTests.test_gen +foo Lib/test/test_types.py /^ def foo():$/;" f function:CoroutineTests.test_duck_coro +foo Lib/test/test_types.py /^ def foo():$/;" f function:CoroutineTests.test_duck_corogen +foo Lib/test/test_types.py /^ def foo():$/;" f function:CoroutineTests.test_non_gen_values +foo Lib/test/test_types.py /^ def foo():$/;" f function:CoroutineTests.test_returning_itercoro +foo Lib/test/test_typing.py /^ def foo(a: 'whatevers') -> {}:$/;" m class:ForwardRefTests.test_meta_no_type_check.C +foo Lib/test/test_typing.py /^ def foo(a: 'whatevers') -> {}:$/;" m class:ForwardRefTests.test_no_type_check_class.C +foo Lib/test/test_typing.py /^ def foo(self, *args: "P.args", **kwargs: "P.kwargs"):$/;" m class:ParamSpecTests.test_stringized.C +foo Lib/test/test_typing.py /^ def foo(self, x: int): ...$/;" m class:ForwardRefTests.test_no_type_check_no_bases.Child +foo Lib/test/test_typing.py /^ def foo():$/;" f function:CollectionsAbcTests.test_generator +foo Lib/test/test_typing.py /^ def foo(**kwargs: Unpack[Movie]): ...$/;" f function:UnpackTests.test_usage_with_kwargs +foo Lib/test/test_typing.py /^ def foo(a: 'Callable[..., T]'):$/;" f function:ForwardRefTests.test_callable_with_ellipsis_forward +foo Lib/test/test_typing.py /^ def foo(a: 'List[\\'int\\']'):$/;" f function:ForwardRefTests.test_double_forward +foo Lib/test/test_typing.py /^ def foo(a: 'Node[T'):$/;" f function:ForwardRefTests.test_delayed_syntax_error +foo Lib/test/test_typing.py /^ def foo(a: 'Noode[T]'):$/;" f function:ForwardRefTests.test_name_error +foo Lib/test/test_typing.py /^ def foo(a: 'whatevers') -> {}:$/;" f function:ForwardRefTests.test_meta_no_type_check +foo Lib/test/test_typing.py /^ def foo(a: 'whatevers') -> {}:$/;" f function:ForwardRefTests.test_no_type_check +foo Lib/test/test_typing.py /^ def foo(a: A) -> Optional[BaseException]:$/;" f function:TypeTests.test_type_optional +foo Lib/test/test_typing.py /^ def foo(a: Callable[..., T]):$/;" f function:BaseCallableTests.test_callable_with_ellipsis +foo Lib/test/test_typing.py /^ def foo(a: Callable[['T'], 'T']):$/;" f function:ForwardRefTests.test_callable_forward +foo Lib/test/test_typing.py /^ def foo(a: Tuple['T']):$/;" f function:ForwardRefTests.test_tuple_forward +foo Lib/test/test_typing.py /^ def foo(a: Union['T']):$/;" f function:ForwardRefTests.test_union_forward +foo Lib/test/test_typing.py /^ def foo(a: c1_gth, b: c2_gth):$/;" f function:ForwardRefTests.test_forward_equality_gth +foo Lib/test/test_typing.py /^ def foo(a: c1_gth, b: c2_gth):$/;" f function:ForwardRefTests.test_forward_equality_hash +foo Lib/test/test_typing.py /^ def foo(a: tuple[ForwardRef('T')] | int):$/;" f function:ForwardRefTests.test_union_forward +foo Lib/test/test_typing.py /^ def foo(a: tuple[ForwardRef('T')]):$/;" f function:ForwardRefTests.test_tuple_forward +foo Lib/test/test_typing.py /^ def foo(arg) -> TypeGuard[int]: ...$/;" f function:TypeGuardTests.test_basics +foo Lib/test/test_typing.py /^ def foo(x: C['C']): ...$/;" f function:GenericTests.test_parameterized_slots +foo Lib/test/test_typing.py /^ def foo(x: T):$/;" f function:GenericTests.test_type_erasure +foo Lib/test/test_unittest/test_assertions.py /^ def foo(self):$/;" m class:Test_Assertions.test_assertRaises_frames_survival.Foo +foo Lib/test/test_unittest/test_loader.py /^ def foo():$/;" m class:Test_TestLoader.test_loadTestsFromNames__callable__call_staticmethod.Foo +foo Lib/test/test_unittest/testmock/testasync.py /^ async def foo(): pass$/;" f function:AsyncMockTest.test_iscoroutinefunction_function +foo Lib/test/test_unittest/testmock/testasync.py /^ def foo(): pass$/;" f function:AsyncMockTest.test_iscoroutinefunction_normal_function +foo Lib/test/test_unittest/testmock/testhelpers.py /^ def foo(self, foo): pass$/;" m class:SpecSignatureTest.test_mocking_unbound_methods.Foo +foo Lib/test/test_unittest/testmock/testhelpers.py /^ foo = 'foo bar baz'$/;" v class:SpecSignatureTest.test_recursive.A +foo Lib/test/test_unittest/testmock/testhelpers.py /^ foo = []$/;" v class:SpecSignatureTest.test_spec_as_list.Foo +foo Lib/test/test_unittest/testmock/testhelpers.py /^ def foo(a, *, b=None): pass$/;" f function:SpecSignatureTest.test_create_autospec_keyword_only_arguments +foo Lib/test/test_unittest/testmock/testhelpers.py /^ def foo(a: int, b: int=10, *, c:int) -> int:$/;" f function:SpecSignatureTest.test_spec_inspect_signature_annotations +foo Lib/test/test_unittest/testmock/testmock.py /^ def foo(a, b): pass$/;" f function:MockTest.test_parent_propagation_with_autospec_attach_mock +foo Lib/test/test_unittest/testmock/testmock.py /^ def foo(a, b): pass$/;" f function:MockTest.test_parent_propagation_with_create_autospec +foo Lib/test/test_unittest/testmock/testpatch.py /^ foo = 'bar'$/;" v class:PatchTest.test_autospec.Boo +foo Lib/test/test_unittest/testmock/testpatch.py /^ foo = 'foo'$/;" v class:PatchTest.test_get_only_proxy.Something +foo Lib/test/test_unittest/testmock/testpatch.py /^ foo = 'foo'$/;" v class:PatchTest.test_get_only_proxy.SomethingElse +foo Lib/test/test_unittest/testmock/testpatch.py /^ foo = 'foo'$/;" v class:PatchTest.test_get_set_delete_proxy.Something +foo Lib/test/test_unittest/testmock/testpatch.py /^ foo = 'foo'$/;" v class:PatchTest.test_get_set_delete_proxy.SomethingElse +foo Lib/test/test_unittest/testmock/testpatch.py /^ def foo(*a, x=0):$/;" f function:PatchTest.test_special_attrs +foo Lib/test/test_unittest/testmock/testpatch.py /^ def foo(x=0):$/;" f function:PatchTest.test_special_attrs +foo Lib/test/test_unittest/testmock/testpatch.py /^ foo = 'bar'$/;" v class:Foo +foo Lib/test/test_unittest/testmock/testsealable.py /^ foo = mock.create_autospec(Foo, spec_set=spec_set)$/;" v class:TestSealable.test_seal_with_autospec.Foo.Baz +foo Lib/test/test_unittest/testmock/testsealable.py /^ foo = 0$/;" v class:TestSealable.test_seal_with_autospec.Foo +foo Lib/test/test_with.py /^ def foo():$/;" f function:NonLocalFlowControlTestCase.testWithReturn +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_cancel_children_on_child_error +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_taskgroup_01 +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_taskgroup_02 +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_taskgroup_03 +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_taskgroup_04 +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_taskgroup_09 +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_taskgroup_10 +foo1 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo1():$/;" f function:TestTaskGroup.test_taskgroup_22 +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_cancel_children_on_child_error +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_taskgroup_01 +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_taskgroup_02 +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_taskgroup_03 +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_taskgroup_04 +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_taskgroup_09 +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_taskgroup_10 +foo2 Lib/test/test_asyncio/test_taskgroups.py /^ async def foo2():$/;" f function:TestTaskGroup.test_taskgroup_22 +foo2 Lib/test/test_coroutines.py /^ async def foo2():$/;" f function:CoroutineTest.test_await_11 +foo2 Lib/test/test_coroutines.py /^ async def foo2():$/;" f function:CoroutineTest.test_await_9 +fooLacksEnter Lib/test/test_with.py /^ def fooLacksEnter():$/;" f function:FailureTestCase.testEnterAttributeError1 +fooLacksEnterAndExit Lib/test/test_with.py /^ def fooLacksEnterAndExit():$/;" f function:FailureTestCase.testEnterAttributeError2 +fooLacksExit Lib/test/test_with.py /^ def fooLacksExit():$/;" f function:FailureTestCase.testExitAttributeError +fooNotDeclared Lib/test/test_with.py /^ def fooNotDeclared():$/;" f function:FailureTestCase.testNameError +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_loadTestsFromTestCase.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_loadTestsFromTestCase__no_matches.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_suiteClass__loadTestsFromModule.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_suiteClass__loadTestsFromName.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_suiteClass__loadTestsFromNames.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_suiteClass__loadTestsFromTestCase.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_testMethodPrefix__loadTestsFromModule.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_testMethodPrefix__loadTestsFromName.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_testMethodPrefix__loadTestsFromNames.Foo +foo_bar Lib/test/test_unittest/test_loader.py /^ def foo_bar(self): pass$/;" m class:Test_TestLoader.test_testMethodPrefix__loadTestsFromTestCase.Foo +foo_getter Lib/test/test_email/test_contentmanager.py /^ def foo_getter(msg):$/;" f function:TestContentManager.get_key_as_get_content_key_order +foo_getter Lib/test/test_email/test_contentmanager.py /^ def foo_getter(msg, foo=None):$/;" f function:TestContentManager.get_key_as_get_content_key +foo_name Lib/test/test_unittest/testmock/testpatch.py /^foo_name = '%s.Foo' % __name__$/;" v +foo_one Lib/test/test_unittest/testmock/testpatch.py /^ def foo_one(self):$/;" m class:PatchTest.test_patch_test_prefix.Foo +foo_open Lib/test/test_urllib2.py /^ def foo_open(self):$/;" m class:MiscTests.test_build_opener.FooHandler +foo_setter Lib/test/test_email/test_contentmanager.py /^ def foo_setter(msg, obj):$/;" f function:TestContentManager.set_key_as_set_content_key_order +foo_setter Lib/test/test_email/test_contentmanager.py /^ def foo_setter(msg, obj, foo=None):$/;" f function:TestContentManager.set_key_as_set_content_key +foo_two Lib/test/test_unittest/testmock/testpatch.py /^ def foo_two(self):$/;" m class:PatchTest.test_patch_test_prefix.Foo +foobar Lib/test/test_defaultdict.py /^def foobar():$/;" f +foobar Lib/test/test_typing.py /^ def foobar(x: List['X']): ...$/;" f function:GetTypeHintTests.test_get_type_hints_annotated +foobar Lib/test/test_typing.py /^ def foobar(x: List[List['CC']]): ...$/;" f function:GenericTests.test_generic_forward_ref +foobar Lib/test/test_typing.py /^ def foobar(x: list[ForwardRef('X')]): ...$/;" f function:GetTypeHintTests.test_get_type_hints_annotated +foobar Lib/test/test_unittest/test_loader.py /^ def foobar(self): pass$/;" m class:Test_TestLoader.test_getTestCaseNames.Test +foobar Lib/test/test_unittest/test_loader.py /^ def foobar(self): pass$/;" m class:Test_TestLoader.test_getTestCaseNames__inheritance.TestP +foobar Lib/test/test_unittest/test_loader.py /^ def foobar(self): pass$/;" m class:Test_TestLoader.test_getTestCaseNames__no_tests.Test +foobar Lib/test/test_unittest/test_loader.py /^ def foobar(self): pass$/;" m class:Test_TestLoader.test_getTestCaseNames__testNamePatterns.MyTest +foobar Lib/test/test_unittest/test_loader.py /^ foobar = Trap()$/;" v class:Test_TestLoader.test_getTestCaseNames__testNamePatterns__attribute_access_regression.MyTest +foobar Lib/test/test_xml_etree.py /^ def foobar(self, x):$/;" m class:TreeBuilderTest.test_subclass.MyTreeBuilder +foobar Lib/test/test_xml_etree.py /^ def foobar(self, x):$/;" m class:TreeBuilderTest.test_subclass_comment_pi.MyTreeBuilder +foobar Lib/test/test_xmlrpc.py /^ def foobar(*args):$/;" f function:UseBuiltinTypesTestCase.test_use_builtin_types +foobar2 Lib/test/test_typing.py /^ def foobar2(x: list[list[ForwardRef('CC')]]): ...$/;" f function:GenericTests.test_generic_forward_ref +foobar3 Lib/test/test_typing.py /^ def foobar3(x: list[ForwardRef('CC | int')] | int): ...$/;" f function:GenericTests.test_generic_forward_ref +fopen Doc/includes/ndiff.py /^def fopen(fname):$/;" f +for_example Lib/test/test_sys_settrace.py /^ def for_example():$/;" f function:TraceTestCase.test_15_loops +for_if_clause_rule Parser/parser.c /^for_if_clause_rule(Parser *p)$/;" f file: +for_if_clause_type Parser/parser.c 248;" d file: +for_if_clauses_rule Parser/parser.c /^for_if_clauses_rule(Parser *p)$/;" f file: +for_if_clauses_type Parser/parser.c 247;" d file: +for_stmt_rule Parser/parser.c /^for_stmt_rule(Parser *p)$/;" f file: +for_stmt_type Parser/parser.c 136;" d file: +forbidden_name Python/compile.c /^forbidden_name(struct compiler *c, location loc, identifier name,$/;" f file: +force Lib/idlelib/idle_test/test_calltip.py /^ def force(self):$/;" f function:CalltipTest.test_repeated_force +force_ascii Include/internal/pycore_fileutils.h /^ int force_ascii;$/;" m struct:_fileutils_state +force_ascii Python/fileutils.c 204;" d file: +force_decode Lib/test/test_memoryio.py /^ def force_decode():$/;" f function:TextIOTestMixin.test_newlines_property +force_open_calltip_event Lib/idlelib/calltip.py /^ def force_open_calltip_event(self, event):$/;" m class:Calltip +force_open_completions_event Lib/idlelib/autocomplete.py /^ def force_open_completions_event(self, event):$/;" m class:AutoComplete +forced_atom Tools/peg_generator/pegen/grammar_parser.py /^ def forced_atom(self) -> Optional[Forced]:$/;" m class:GeneratedParser +foreachfunc Modules/nismodule.c /^typedef int (*foreachfunc)(int, char *, int, char *, int, char *);$/;" t file: +foreachfunc Modules/nismodule.c /^typedef int (*foreachfunc)(unsigned long, char *, int, char *, int, void *);$/;" t file: +forget Lib/pdb.py /^ def forget(self):$/;" m class:Pdb +forget Lib/test/support/import_helper.py /^def forget(modname):$/;" f +forget Lib/tkinter/__init__.py /^ forget = grid_forget$/;" v class:Grid +forget Lib/tkinter/__init__.py /^ forget = pack_forget$/;" v class:Pack +forget Lib/tkinter/__init__.py /^ forget = place_forget$/;" v class:Place +forget Lib/tkinter/__init__.py /^ forget = remove$/;" v class:PanedWindow +forget Lib/tkinter/__init__.py /^ forget = wm_forget$/;" v class:Wm +forget Lib/tkinter/tix.py /^ def forget(self):$/;" m class:Form +forget Lib/tkinter/tix.py /^ def forget(self, name):$/;" m class:PanedWindow +forget Lib/tkinter/ttk.py /^ def forget(self, tab_id):$/;" m class:Notebook +forget Lib/tkinter/ttk.py /^ forget = tkinter.PanedWindow.forget # overrides Pack.forget$/;" v class:Panedwindow +fork Lib/pty.py /^def fork():$/;" f +fork_child Lib/test/test_tracemalloc.py /^ def fork_child(self):$/;" m class:TestTracemallocEnabled +fork_thread Lib/test/test_thread.py /^ def fork_thread(read_fd, write_fd):$/;" f function:TestForkInThread.test_forkinthread +fork_with_import_lock Lib/test/test_fork1.py /^ def fork_with_import_lock(level):$/;" f function:ForkTest.test_nested_import_lock_fork +forloop Lib/test/test_peepholer.py /^ def forloop():$/;" f function:TestTranforms.test_iterate_literal_list +form Lib/tkinter/tix.py /^ form = config$/;" v class:Form +format Include/cpython/modsupport.h /^ const char *format;$/;" m struct:_PyArg_Parser +format Include/pybuffer.h /^ char *format;$/;" m struct:__anon1 +format Lib/argparse.py /^ def format(tuple_size):$/;" f function:HelpFormatter._metavar_formatter +format Lib/calendar.py /^def format(cols, colwidth=_colwidth, spacing=_spacing):$/;" f +format Lib/collections/__init__.py /^ def format(self, \/, *args, **kwds):$/;" m class:UserString +format Lib/logging/__init__.py /^ def format(self, record):$/;" m class:Formatter +format Lib/logging/__init__.py /^ def format(self, record):$/;" m class:Handler +format Lib/logging/__init__.py /^ def format(self, record):$/;" m class:PercentStyle +format Lib/logging/__init__.py /^ def format(self, records):$/;" m class:BufferingFormatter +format Lib/multiprocessing/shared_memory.py /^ def format(self):$/;" m class:ShareableList +format Lib/pprint.py /^ def format(self, object, context, maxlevels, level):$/;" m class:PrettyPrinter +format Lib/string.py /^ def format(self, format_string, \/, *args, **kwargs):$/;" m class:Formatter +format Lib/tarfile.py /^ format = DEFAULT_FORMAT # The format to use when creating an archive.$/;" v class:TarFile +format Lib/test/test_memoryview.py /^ format = 'B'$/;" v class:BaseBytesMemoryTests +format Lib/test/test_memoryview.py /^ format = 'i'$/;" v class:BaseArrayMemoryTests +format Lib/test/test_peepholer.py /^ def format(fmt, *values):$/;" f function:TestTranforms.test_format_misc +format Lib/test/test_pprint.py /^ def format(self, object, context, maxlevels, level):$/;" m class:DottedPrettyPrinter +format Lib/test/test_struct.py /^ format = byteorder+code$/;" v class:StructTest.test_integers.IntTester +format Lib/test/test_tarfile.py /^ format = tarfile.GNU_FORMAT$/;" v class:GNUReadTest +format Lib/test/test_tarfile.py /^ format = tarfile.GNU_FORMAT$/;" v class:GNUUnicodeTest +format Lib/test/test_tarfile.py /^ format = tarfile.PAX_FORMAT$/;" v class:PAXUnicodeTest +format Lib/test/test_tarfile.py /^ format = tarfile.PAX_FORMAT$/;" v class:PaxReadTest +format Lib/test/test_tarfile.py /^ format = tarfile.USTAR_FORMAT$/;" v class:UstarUnicodeTest +format Lib/test/test_unittest/test_result.py /^ def format(self):$/;" m class:MockTraceback.TracebackException +format Lib/traceback.py /^ def format(self):$/;" m class:StackSummary +format Lib/traceback.py /^ def format(self, *, chain=True, _ctx=None):$/;" m class:TracebackException +format Lib/tracemalloc.py /^ def format(self, limit=None, most_recent_first=False):$/;" m class:Traceback +format Modules/_ctypes/ctypes.h /^ char *format;$/;" m struct:__anon495 +format Modules/_struct.c /^ char format;$/;" m struct:_formatdef file: +formatException Lib/logging/__init__.py /^ def formatException(self, ei):$/;" m class:Formatter +formatException Lib/test/test_logging.py /^ def formatException(self, ei):$/;" m class:ExceptionFormatter +formatFooter Lib/logging/__init__.py /^ def formatFooter(self, records):$/;" m class:BufferingFormatter +formatFooter Lib/test/test_logging.py /^ def formatFooter(self, records):$/;" m class:TestBufferingFormatter +formatFunc Lib/test/test_logging.py /^def formatFunc(format, datefmt=None):$/;" f +formatHeader Lib/logging/__init__.py /^ def formatHeader(self, records):$/;" m class:BufferingFormatter +formatHeader Lib/test/test_logging.py /^ def formatHeader(self, records):$/;" m class:TestBufferingFormatter +formatMessage Lib/logging/__init__.py /^ def formatMessage(self, record):$/;" m class:Formatter +formatStack Lib/logging/__init__.py /^ def formatStack(self, stack_info):$/;" m class:Formatter +formatTime Lib/logging/__init__.py /^ def formatTime(self, record, datefmt=None):$/;" m class:Formatter +formatWinerror PC/launcher2.c /^formatWinerror(int rc, wchar_t * message, int size)$/;" f +format_attr Lib/test/pythoninfo.py /^ def format_attr(attr, value):$/;" f function:collect_os +format_attr Lib/test/pythoninfo.py /^ def format_attr(attr, value):$/;" f function:collect_readline +format_attr Lib/test/pythoninfo.py /^ def format_attr(attr, value):$/;" f function:collect_ssl +format_awaitable_error Python/ceval.c /^format_awaitable_error(PyThreadState *tstate, PyTypeObject *type, int oparg)$/;" f file: +format_cb Lib/asyncio/base_futures.py /^ def format_cb(callback):$/;" f function:_format_callbacks +format_complex_internal Python/formatter_unicode.c /^format_complex_internal(PyObject *value,$/;" f file: +format_coroutine Lib/test/test_asyncio/test_tasks.py /^def format_coroutine(qualname, state, src, source_traceback, generator=False):$/;" f +format_ctime Modules/_datetimemodule.c /^format_ctime(PyDateTime_Date *date, int hours, int minutes, int seconds)$/;" f file: +format_date_time Lib/wsgiref/handlers.py /^def format_date_time(timestamp):$/;" f +format_datetime Lib/email/utils.py /^def format_datetime(dt, usegmt=False):$/;" f +format_description Lib/optparse.py /^ def format_description(self, description):$/;" m class:HelpFormatter +format_description Lib/optparse.py /^ def format_description(self, formatter):$/;" m class:OptionContainer +format_docstring Tools/clinic/clinic.py /^ def format_docstring(self):$/;" m class:DSLParser +format_duration Lib/test/libregrtest/utils.py /^def format_duration(seconds):$/;" f +format_epilog Lib/optparse.py /^ def format_epilog(self, epilog):$/;" m class:HelpFormatter +format_epilog Lib/optparse.py /^ def format_epilog(self, formatter):$/;" m class:OptionParser +format_error Modules/_ctypes/callproc.c /^static PyObject *format_error(PyObject *self, PyObject *args)$/;" f file: +format_escape Tools/clinic/clinic.py /^def format_escape(s: str) -> str:$/;" f +format_exc Lib/traceback.py /^def format_exc(limit=None, chain=True):$/;" f +format_exc_check_arg Python/ceval.c /^format_exc_check_arg(PyThreadState *tstate, PyObject *exc,$/;" f file: +format_exc_unbound Python/ceval.c /^format_exc_unbound(PyThreadState *tstate, PyCodeObject *co, int oparg)$/;" f file: +format_exception Lib/traceback.py /^ chain=True):$/;" f +format_exception_only Lib/traceback.py /^ def format_exception_only(self):$/;" m class:TracebackException +format_exception_only Lib/traceback.py /^def format_exception_only(exc, \/, value=_sentinel):$/;" f +format_failure Lib/doctest.py /^ def format_failure(self, err):$/;" m class:DocFileCase +format_failure Lib/doctest.py /^ def format_failure(self, err):$/;" m class:DocTestCase +format_field Lib/string.py /^ def format_field(self, value, format_spec):$/;" m class:Formatter +format_field Lib/test/test_string.py /^ def format_field(self, value, format_spec):$/;" m class:ModuleTest.test_override_format_field.CallFormatter +format_filename Tools/c-analyzer/c_common/fsutil.py /^def format_filename(filename, relroot=USE_CWD, *,$/;" f +format_float_internal Python/formatter_unicode.c /^format_float_internal(PyObject *value,$/;" f file: +format_float_short Python/pystrtod.c /^format_float_short(double d, char format_code,$/;" f file: +format_frame_summary Lib/test/test_traceback.py /^ def format_frame_summary(self, frame_summary):$/;" m class:TestStack.test_custom_format_frame.CustomStackSummary +format_frame_summary Lib/test/test_traceback.py /^ def format_frame_summary(self, frame_summary):$/;" m class:TestStack.test_dropping_frames.Skip_G +format_frame_summary Lib/traceback.py /^ def format_frame_summary(self, frame_summary):$/;" m class:StackSummary +format_funcs Lib/test/test_stat.py /^ format_funcs = {'S_ISBLK', 'S_ISCHR', 'S_ISDIR', 'S_ISFIFO', 'S_ISLNK',$/;" v class:TestFilemode +format_groups Lib/test/pythoninfo.py /^ def format_groups(groups):$/;" f function:collect_os +format_heading Lib/optparse.py /^ def format_heading(self, heading):$/;" m class:HelpFormatter +format_heading Lib/optparse.py /^ def format_heading(self, heading):$/;" m class:IndentedHelpFormatter +format_heading Lib/optparse.py /^ def format_heading(self, heading):$/;" m class:TitledHelpFormatter +format_help Lib/argparse.py /^ def format_help(self):$/;" m class:HelpFormatter._Section +format_help Lib/argparse.py /^ def format_help(self):$/;" m class:ArgumentParser +format_help Lib/argparse.py /^ def format_help(self):$/;" m class:HelpFormatter +format_help Lib/optparse.py /^ def format_help(self, formatter):$/;" m class:OptionContainer +format_help Lib/optparse.py /^ def format_help(self, formatter):$/;" m class:OptionGroup +format_help Lib/optparse.py /^ def format_help(self, formatter=None):$/;" m class:OptionParser +format_impl Lib/test/test_descr.py /^ def format_impl(self, spec):$/;" f function:.test_special_method_lookup +format_kwargs_error Python/ceval.c /^format_kwargs_error(PyThreadState *tstate, PyObject *func, PyObject *kwargs)$/;" f file: +format_list Lib/traceback.py /^def format_list(extracted_list):$/;" f +format_long_internal Python/formatter_unicode.c /^format_long_internal(PyObject *value, const InternalFormatSpec *format,$/;" f file: +format_map Lib/collections/__init__.py /^ def format_map(self, mapping):$/;" m class:UserString +format_missing Python/ceval.c /^format_missing(PyThreadState *tstate, const char *kind,$/;" f file: +format_mtime Lib/test/test_tarfile.py /^ def format_mtime(mtime):$/;" f function:MiscReadTestBase.test_extractall +format_obj Objects/bytesobject.c /^format_obj(PyObject *v, const char **pbuf, Py_ssize_t *plen)$/;" f file: +format_obj Python/formatter_unicode.c /^format_obj(PyObject *obj, _PyUnicodeWriter *writer)$/;" f file: +format_option Lib/optparse.py /^ def format_option(self, option):$/;" m class:HelpFormatter +format_option_help Lib/optparse.py /^ def format_option_help(self, formatter):$/;" m class:OptionContainer +format_option_help Lib/optparse.py /^ def format_option_help(self, formatter=None):$/;" m class:OptionParser +format_option_strings Lib/optparse.py /^ def format_option_strings(self, option):$/;" m class:HelpFormatter +format_paragraph_event Lib/idlelib/format.py /^ def format_paragraph_event(self, event, limit=None):$/;" m class:FormatParagraph +format_ratio Tools/scripts/summarize_stats.py /^def format_ratio(num, den):$/;" f +format_selection Lib/idlelib/zzdummy.py /^def format_selection(format_line):$/;" f +format_shell_args Lib/test/bisect_cmd.py /^def format_shell_args(args):$/;" f +format_spec Include/internal/pycore_ast.h /^ expr_ty format_spec;$/;" m struct:_expr::__anon77::__anon95 +format_spec Include/internal/pycore_ast_state.h /^ PyObject *format_spec;$/;" m struct:ast_state +format_spec_z_search Modules/_decimal/_decimal.c /^format_spec_z_search(char const *fmt, Py_ssize_t size) {$/;" f file: +format_stack Lib/traceback.py /^def format_stack(f=None, limit=None):$/;" f +format_stack_entry Lib/bdb.py /^ def format_stack_entry(self, frame_lineno, lprefix=': '):$/;" m class:Bdb +format_string Lib/locale.py /^def format_string(f, val, grouping=False, monetary=False):$/;" f +format_string_internal Python/formatter_unicode.c /^format_string_internal(PyObject *value, const InternalFormatSpec *format,$/;" f file: +format_tb Lib/traceback.py /^def format_tb(tb, limit=None):$/;" f +format_testfile Lib/test/test_float.py /^format_testfile = os.path.join(test_dir, 'formatfloat_testcases.txt')$/;" v +format_time Lib/timeit.py /^ def format_time(dt):$/;" f function:main +format_time Modules/timemodule.c 782;" d file: +format_time Modules/timemodule.c 786;" d file: +format_time Modules/timemodule.c 942;" d file: +format_timeout Modules/faulthandler.c /^format_timeout(_PyTime_t us)$/;" f file: +format_unit Tools/clinic/clinic.py /^ format_unit = ''$/;" v class:defining_class_converter +format_unit Tools/clinic/clinic.py /^ format_unit = ''$/;" v class:self_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'D'$/;" v class:Py_complex_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'L'$/;" v class:long_long_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'O&'$/;" v class:CConverter +format_unit Tools/clinic/clinic.py /^ format_unit = 'O'$/;" v class:object_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'S'$/;" v class:PyBytesObject_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'U'$/;" v class:unicode_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'Y'$/;" v class:PyByteArrayObject_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'b'$/;" v class:unsigned_char_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'c'$/;" v class:char_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'd'$/;" v class:double_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'f'$/;" v class:float_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'h'$/;" v class:short_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'i'$/;" v class:int_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'l'$/;" v class:long_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'p'$/;" v class:bool_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 's'$/;" v class:str_converter +format_unit Tools/clinic/clinic.py /^ format_unit = 'y*'$/;" v class:Py_buffer_converter +format_usage Lib/argparse.py /^ def format_usage(self):$/;" m class:Action +format_usage Lib/argparse.py /^ def format_usage(self):$/;" m class:ArgumentParser +format_usage Lib/argparse.py /^ def format_usage(self):$/;" m class:BooleanOptionalAction +format_usage Lib/optparse.py /^ def format_usage(self, usage):$/;" m class:HelpFormatter +format_usage Lib/optparse.py /^ def format_usage(self, usage):$/;" m class:IndentedHelpFormatter +format_usage Lib/optparse.py /^ def format_usage(self, usage):$/;" m class:TitledHelpFormatter +format_utcoffset Modules/_datetimemodule.c /^format_utcoffset(char *buf, size_t buflen, const char *sep,$/;" f file: +format_version Lib/pickle.py /^format_version = "4.0" # File format version we write$/;" v +format_with_dict Tools/stringbench/stringbench.py /^def format_with_dict(STR):$/;" f +format_witnesses Lib/tabnanny.py /^def format_witnesses(w):$/;" f +formataddr Lib/email/utils.py /^def formataddr(pair, charset='utf-8'):$/;" f +formatannotation Lib/inspect.py /^def formatannotation(annotation, base_module=None):$/;" f +formatannotationrelativeto Lib/inspect.py /^def formatannotationrelativeto(object):$/;" f +formatargvalues Lib/inspect.py /^def formatargvalues(args, varargs, varkw, locals,$/;" f +formatchar Objects/unicodeobject.c /^formatchar(PyObject *v)$/;" f file: +formatcode Modules/_struct.c /^} formatcode;$/;" t typeref:struct:_formatcode file: +formatdate Lib/email/utils.py /^def formatdate(timeval=None, localtime=False, usegmt=False):$/;" f +formatday Lib/calendar.py /^ def formatday(self, day, weekday):$/;" m class:HTMLCalendar +formatday Lib/calendar.py /^ def formatday(self, day, weekday, width):$/;" m class:TextCalendar +formatdef Modules/_struct.c /^} formatdef;$/;" t typeref:struct:_formatdef file: +formatfloat Objects/bytesobject.c /^formatfloat(PyObject *v, int flags, int prec, int type,$/;" f file: +formatfloat Objects/unicodeobject.c /^formatfloat(PyObject *v, struct unicode_format_arg_t *arg,$/;" f file: +formatlong Objects/bytesobject.c /^formatlong(PyObject *v, int flags, int prec, int type)$/;" f file: +formatmonth Lib/calendar.py /^ def formatmonth(self, theyear, themonth, w=0, l=0):$/;" m class:TextCalendar +formatmonth Lib/calendar.py /^ def formatmonth(self, theyear, themonth, withyear=True):$/;" m class:HTMLCalendar +formatmonthname Lib/calendar.py /^ def formatmonthname(self, theyear, themonth, width, withyear=True):$/;" m class:LocaleTextCalendar +formatmonthname Lib/calendar.py /^ def formatmonthname(self, theyear, themonth, width, withyear=True):$/;" m class:TextCalendar +formatmonthname Lib/calendar.py /^ def formatmonthname(self, theyear, themonth, withyear=True):$/;" m class:HTMLCalendar +formatmonthname Lib/calendar.py /^ def formatmonthname(self, theyear, themonth, withyear=True):$/;" m class:LocaleHTMLCalendar +formats Lib/test/test_ctypes/test_arrays.py /^ c_long, c_ulonglong, c_float, c_double, c_longdouble$/;" v +formats Lib/test/test_ctypes/test_arrays.py /^formats = "bBhHiIlLqQfd"$/;" v +formats Lib/test/test_ctypes/test_structures.py /^ formats = {"c": c_char,$/;" v class:StructureTestCase +formats Lib/test/test_stat.py /^ formats = {'S_IFBLK', 'S_IFCHR', 'S_IFDIR', 'S_IFIFO', 'S_IFLNK',$/;" v class:TestFilemode +formats Modules/arraymodule.c /^ const char *formats;$/;" m struct:arraydescr file: +formats Objects/unicodeobject.c /^static const char * const formats[] = {"%d", "%ld", "%lld", "%zd", "%td", "%jd"};$/;" v file: +formats_X Objects/unicodeobject.c /^static const char * const formats_X[] = {"%X", "%lX", "%llX", "%zX", "%tX", "%jX"};$/;" v file: +formats_o Objects/unicodeobject.c /^static const char * const formats_o[] = {"%o", "%lo", "%llo", "%zo", "%to", "%jo"};$/;" v file: +formats_u Objects/unicodeobject.c /^static const char * const formats_u[] = {"%u", "%lu", "%llu", "%zu", "%tu", "%ju"};$/;" v file: +formats_x Objects/unicodeobject.c /^static const char * const formats_x[] = {"%x", "%lx", "%llx", "%zx", "%tx", "%jx"};$/;" v file: +formatstring Lib/calendar.py /^def formatstring(cols, colwidth=_colwidth, spacing=_spacing):$/;" f +formattable Modules/_ctypes/cfield.c /^static struct fielddesc formattable[] = {$/;" v typeref:struct:fielddesc file: +formatter_class Tools/build/check_extension_modules.py /^ formatter_class=argparse.RawDescriptionHelpFormatter,$/;" v +formatter_class Tools/cases_generator/generate_cases.py /^ formatter_class=argparse.ArgumentDefaultsHelpFormatter,$/;" v +formatter_class Tools/wasm/wasm_build.py /^ formatter_class=argparse.RawTextHelpFormatter,$/;" v +formatter_field_name_split Objects/stringlib/unicode_format.h /^formatter_field_name_split(PyObject *ignored, PyObject *self)$/;" f +formatter_parser Objects/stringlib/unicode_format.h /^formatter_parser(PyObject *ignored, PyObject *self)$/;" f +formatteriter_dealloc Objects/stringlib/unicode_format.h /^formatteriter_dealloc(formatteriterobject *it)$/;" f +formatteriter_methods Objects/stringlib/unicode_format.h /^static PyMethodDef formatteriter_methods[] = {$/;" v +formatteriter_next Objects/stringlib/unicode_format.h /^formatteriter_next(formatteriterobject *it)$/;" f +formatteriterobject Objects/stringlib/unicode_format.h /^} formatteriterobject;$/;" t typeref:struct:__anon708 +formattree Lib/pydoc.py /^ def formattree(self, tree, modname, parent=None):$/;" f +formattree Lib/pydoc.py /^ def formattree(self, tree, modname, parent=None, prefix=''):$/;" m class:TextDoc +formatvalue Lib/pydoc.py /^ def formatvalue(self, object):$/;" f +formatvalue Lib/pydoc.py /^ def formatvalue(self, object):$/;" m class:TextDoc +formatwarning Lib/warnings.py /^def formatwarning(message, category, filename, lineno, line=None):$/;" f +formatweek Lib/calendar.py /^ def formatweek(self, theweek):$/;" m class:HTMLCalendar +formatweek Lib/calendar.py /^ def formatweek(self, theweek, width):$/;" m class:TextCalendar +formatweekday Lib/calendar.py /^ def formatweekday(self, day):$/;" m class:HTMLCalendar +formatweekday Lib/calendar.py /^ def formatweekday(self, day):$/;" m class:LocaleHTMLCalendar +formatweekday Lib/calendar.py /^ def formatweekday(self, day, width):$/;" m class:LocaleTextCalendar +formatweekday Lib/calendar.py /^ def formatweekday(self, day, width):$/;" m class:TextCalendar +formatweekheader Lib/calendar.py /^ def formatweekheader(self):$/;" m class:HTMLCalendar +formatweekheader Lib/calendar.py /^ def formatweekheader(self, width):$/;" m class:TextCalendar +formatyear Lib/calendar.py /^ def formatyear(self, theyear, w=2, l=1, c=6, m=3):$/;" m class:TextCalendar +formatyear Lib/calendar.py /^ def formatyear(self, theyear, width=3):$/;" m class:HTMLCalendar +formatyearpage Lib/calendar.py /^ def formatyearpage(self, theyear, width=3, css='calendar.css', encoding=None):$/;" m class:HTMLCalendar +former_extension_events Lib/idlelib/config.py /^ former_extension_events = { # Those with user-configurable keys.$/;" v class:IdleConf +forward Lib/fractions.py /^ def forward(a, b):$/;" f function:Fraction._operator_fallbacks +forward Lib/turtle.py /^ def forward(self, distance):$/;" m class:TNavigator +forward_after Lib/test/test_types.py /^ def forward_after(x: ForwardAfter[int]) -> None: ...$/;" f function:UnionTests.test_or_type_operator_with_forward +forward_before Lib/test/test_types.py /^ def forward_before(x: ForwardBefore[int]) -> None: ...$/;" f function:UnionTests.test_or_type_operator_with_forward +forward_shorter_than_end Lib/test/test_codeccallbacks.py /^ def forward_shorter_than_end(exc):$/;" f function:CodecCallbackTest.test_crashing_decode_handler +found Lib/test/test_importlib/test_abc.py /^ found = None$/;" v class:LoaderLoadModuleTests.loader.SpecLoader +found Modules/_testcapi/gc.c /^ int found;$/;" m struct:gc_visit_state_basic file: +found PCbuild/find_msbuild.bat /^:found$/;" l +found PCbuild/find_python.bat /^:found$/;" l +found_new_run Objects/listobject.c /^found_new_run(MergeState *ms, Py_ssize_t n2)$/;" f file: +found_terminator Lib/test/smtpd.py /^ def found_terminator(self):$/;" m class:SMTPChannel +found_terminator Lib/test/support/asynchat.py /^ def found_terminator(self):$/;" m class:async_chat +found_terminator Lib/test/test_ftplib.py /^ def found_terminator(self):$/;" m class:DummyFTPHandler +found_terminator Lib/test/test_poplib.py /^ def found_terminator(self):$/;" m class:DummyPOP3Handler +found_terminator Lib/test/test_smtplib.py /^ def found_terminator(self):$/;" m class:SMTPSimTests.test_421_from_data_cmd.MySimSMTPChannel +found_terminator Lib/test/test_smtplib.py /^ def found_terminator(self):$/;" m class:SimSMTPChannel +four Lib/test/test_enum.py /^ four = auto()$/;" v class:OldTestFlag.test_unique_composite.TestFlag +four Lib/test/test_enum.py /^ four = auto()$/;" v class:OldTestIntFlag.test_unique_composite.TestFlag +four Lib/test/test_enum.py /^ four = b'4', 'latin1', 'strict'$/;" v class:TestSpecial.test_custom_strenum.OkayEnum +four Lib/test/test_enum.py /^ four = b'4', 'latin1', 'strict'$/;" v class:TestSpecial.test_strenum.GoodStrEnum +four_freevars Lib/test/test_builtin.py /^ def four_freevars():$/;" f function:BuiltinTest.test_exec_closure.make_closure_functions +four_step_fnt Modules/_decimal/libmpdec/fourstep.c /^four_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum)$/;" f +fox Lib/test/test_pprint.py /^ fox=3,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +fp Lib/zipfile/__init__.py /^ fp = None # Set here since __del__ checks it$/;" v class:ZipFile +fp Parser/tokenizer.h /^ FILE *fp; \/* Rest of input; NULL if tokenizing a string *\/$/;" m struct:tok_state +fp Python/marshal.c /^ FILE *fp;$/;" m struct:__anon699 file: +fp Python/marshal.c /^ FILE *fp;$/;" m struct:__anon700 file: +fp Tools/i18n/pygettext.py /^ fp = open(arg)$/;" v class:main.Options +fp Tools/i18n/pygettext.py /^ fp = open(filename, 'rb')$/;" v class:main.Options +fp Tools/i18n/pygettext.py /^ fp = sys.stdin.buffer$/;" v class:main.Options +fp Tools/i18n/pygettext.py /^ fp = open(options.outfile, 'w')$/;" v class:main.Options +fp Tools/i18n/pygettext.py /^ fp = sys.stdout$/;" v class:main.Options +fp_getc Parser/tokenizer.c /^static int fp_getc(struct tok_state *tok) {$/;" f file: +fp_interactive Parser/tokenizer.h /^ int fp_interactive; \/* If the file descriptor is interactive *\/$/;" m struct:tok_state +fp_setreadl Parser/tokenizer.c /^fp_setreadl(struct tok_state *tok, const char* enc)$/;" f file: +fp_ungetc Parser/tokenizer.c /^static void fp_ungetc(int c, struct tok_state *tok) {$/;" f file: +fpos_t Lib/test/test_lib2to3/data/infinite_recursion.py /^fpos_t = __darwin_off_t$/;" v +fqname Modules/_decimal/_decimal.c /^ const char *fqname; \/* fully qualified name *\/$/;" m struct:__anon353 file: +fractal Lib/turtledemo/fractalcurves.py /^ def fractal(self, dist, depth, dir):$/;" m class:CurvesTurtle +fractalgon Lib/turtledemo/fractalcurves.py /^ def fractalgon(self, n, rad, lev, dir):$/;" m class:CurvesTurtle +fraction Lib/tkinter/__init__.py /^ def fraction(self, x, y):$/;" m class:Scrollbar +fractions Lib/test/test_asyncio/test_context.py /^ async def fractions(t, precision, x, y):$/;" f function:DecimalContextTest.test_asyncio_task_decimal_context +fractions Lib/test/test_decimal.py /^fractions = {C:cfractions, P:pfractions}$/;" v +frame Include/cpython/frameobject.h /^PyAPI_FUNC(int) _PyFrame_IsEntryFrame(PyFrameObject *frame);$/;" v +frame Include/cpython/pyframe.h /^PyAPI_FUNC(PyFrameObject *) PyFrame_GetBack(PyFrameObject *frame);$/;" v +frame Include/cpython/pyframe.h /^PyAPI_FUNC(PyObject *) PyFrame_GetBuiltins(PyFrameObject *frame);$/;" v +frame Include/cpython/pyframe.h /^PyAPI_FUNC(PyObject *) PyFrame_GetGenerator(PyFrameObject *frame);$/;" v +frame Include/cpython/pyframe.h /^PyAPI_FUNC(PyObject *) PyFrame_GetGlobals(PyFrameObject *frame);$/;" v +frame Include/cpython/pyframe.h /^PyAPI_FUNC(PyObject *) PyFrame_GetLocals(PyFrameObject *frame);$/;" v +frame Include/cpython/pyframe.h /^PyAPI_FUNC(int) PyFrame_GetLasti(PyFrameObject *frame);$/;" v +frame Include/pyframe.h /^PyAPI_FUNC(PyCodeObject *) PyFrame_GetCode(PyFrameObject *frame);$/;" v +frame Lib/test/test_tracemalloc.py /^def frame(filename, lineno):$/;" f +frame Lib/tkinter/__init__.py /^ frame = wm_frame$/;" v class:Wm +frame_attr Lib/idlelib/debugger_r.py /^ def frame_attr(self, fid, name):$/;" m class:IdbAdapter +frame_clear Objects/frameobject.c /^frame_clear(PyFrameObject *f, PyObject *Py_UNUSED(ignored))$/;" f file: +frame_code Lib/idlelib/debugger_r.py /^ def frame_code(self, fid):$/;" m class:IdbAdapter +frame_dealloc Objects/frameobject.c /^frame_dealloc(PyFrameObject *f)$/;" f file: +frame_get_var Objects/frameobject.c /^frame_get_var(_PyInterpreterFrame *frame, PyCodeObject *co, int i,$/;" f file: +frame_getback Objects/frameobject.c /^frame_getback(PyFrameObject *f, void *closure)$/;" f file: +frame_getbuiltins Modules/_testcapimodule.c /^frame_getbuiltins(PyObject *self, PyObject *frame)$/;" f file: +frame_getbuiltins Objects/frameobject.c /^frame_getbuiltins(PyFrameObject *f, void *closure)$/;" f file: +frame_getcode Objects/frameobject.c /^frame_getcode(PyFrameObject *f, void *closure)$/;" f file: +frame_getgenerator Modules/_testcapimodule.c /^frame_getgenerator(PyObject *self, PyObject *frame)$/;" f file: +frame_getglobals Modules/_testcapimodule.c /^frame_getglobals(PyObject *self, PyObject *frame)$/;" f file: +frame_getglobals Objects/frameobject.c /^frame_getglobals(PyFrameObject *f, void *closure)$/;" f file: +frame_getlasti Modules/_testcapimodule.c /^frame_getlasti(PyObject *self, PyObject *frame)$/;" f file: +frame_getlasti Objects/frameobject.c /^frame_getlasti(PyFrameObject *f, void *closure)$/;" f file: +frame_getlineno Objects/frameobject.c /^frame_getlineno(PyFrameObject *f, void *closure)$/;" f file: +frame_getlocals Modules/_testcapimodule.c /^frame_getlocals(PyObject *self, PyObject *frame)$/;" f file: +frame_getlocals Objects/frameobject.c /^frame_getlocals(PyFrameObject *f, void *closure)$/;" f file: +frame_getsetlist Objects/frameobject.c /^static PyGetSetDef frame_getsetlist[] = {$/;" v file: +frame_gettrace Objects/frameobject.c /^frame_gettrace(PyFrameObject *f, void *closure)$/;" f file: +frame_gettrace_opcodes Objects/frameobject.c /^frame_gettrace_opcodes(PyFrameObject *f, void *closure)$/;" f file: +frame_globals Lib/idlelib/debugger_r.py /^ def frame_globals(self, fid):$/;" m class:IdbAdapter +frame_init_get_vars Objects/frameobject.c /^frame_init_get_vars(_PyInterpreterFrame *frame)$/;" f file: +frame_locals Lib/idlelib/debugger_r.py /^ def frame_locals(self, fid):$/;" m class:IdbAdapter +frame_memberlist Objects/frameobject.c /^static PyMemberDef frame_memberlist[] = {$/;" v file: +frame_methods Objects/frameobject.c /^static PyMethodDef frame_methods[] = {$/;" v file: +frame_new Modules/_testcapimodule.c /^frame_new(PyObject *self, PyObject *args)$/;" f file: +frame_obj Include/internal/pycore_frame.h /^ PyFrameObject *frame_obj; \/* Strong reference, may be NULL. Only valid if not on C stack *\/$/;" m struct:_PyInterpreterFrame +frame_objects_created Include/pystats.h /^ uint64_t frame_objects_created;$/;" m struct:_call_stats +frame_repr Objects/frameobject.c /^frame_repr(PyFrameObject *f)$/;" f file: +frame_setlineno Objects/frameobject.c /^frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno, void *Py_UNUSED(ignored))$/;" f file: +frame_settrace Objects/frameobject.c /^frame_settrace(PyFrameObject *f, PyObject* v, void *closure)$/;" f file: +frame_settrace_opcodes Objects/frameobject.c /^frame_settrace_opcodes(PyFrameObject *f, PyObject* value, void *Py_UNUSED(ignored))$/;" f file: +frame_sizeof Objects/frameobject.c /^frame_sizeof(PyFrameObject *f, PyObject *Py_UNUSED(ignored))$/;" f file: +frame_start Modules/_pickle.c /^ Py_ssize_t frame_start; \/* Position in output_buffer where the$/;" m struct:PicklerObject file: +frame_t Python/tracemalloc.c /^typedef struct tracemalloc_frame frame_t;$/;" t typeref:struct:tracemalloc_frame file: +frame_to_pyobject Python/tracemalloc.c /^frame_to_pyobject(frame_t *frame)$/;" f file: +frame_tp_clear Objects/frameobject.c /^frame_tp_clear(PyFrameObject *f)$/;" f file: +frame_traverse Objects/frameobject.c /^frame_traverse(PyFrameObject *f, visitproc visit, void *arg)$/;" f file: +framerate Lib/test/test_aifc.py /^ framerate = 11025$/;" v class:AifcALAWTest +framerate Lib/test/test_aifc.py /^ framerate = 11025$/;" v class:AifcPCM16Test +framerate Lib/test/test_aifc.py /^ framerate = 11025$/;" v class:AifcPCM24Test +framerate Lib/test/test_aifc.py /^ framerate = 11025$/;" v class:AifcPCM32Test +framerate Lib/test/test_aifc.py /^ framerate = 11025$/;" v class:AifcPCM8Test +framerate Lib/test/test_aifc.py /^ framerate = 11025$/;" v class:AifcULAWTest +framerate Lib/test/test_sunau.py /^ framerate = 11025$/;" v class:SunauPCM16Test +framerate Lib/test/test_sunau.py /^ framerate = 11025$/;" v class:SunauPCM24Test +framerate Lib/test/test_sunau.py /^ framerate = 11025$/;" v class:SunauPCM32Test +framerate Lib/test/test_sunau.py /^ framerate = 11025$/;" v class:SunauPCM8Test +framerate Lib/test/test_sunau.py /^ framerate = 11025$/;" v class:SunauULAWTest +framerate Lib/test/test_wave.py /^ framerate = 11025$/;" v class:WavePCM16Test +framerate Lib/test/test_wave.py /^ framerate = 11025$/;" v class:WavePCM24ExtTest +framerate Lib/test/test_wave.py /^ framerate = 11025$/;" v class:WavePCM24Test +framerate Lib/test/test_wave.py /^ framerate = 11025$/;" v class:WavePCM32Test +framerate Lib/test/test_wave.py /^ framerate = 11025$/;" v class:WavePCM8Test +frames Include/internal/pycore_tracemalloc.h /^ struct tracemalloc_frame frames[1];$/;" m struct:tracemalloc_traceback typeref:struct:tracemalloc_traceback::tracemalloc_frame +frames Lib/cgitb.py /^ frames = []$/;" v +frames Lib/test/test_aifc.py /^ frames = audioop.byteswap(frames, 2)$/;" v class:AifcALAWTest +frames Lib/test/test_aifc.py /^ frames = audioop.byteswap(frames, 2)$/;" v class:AifcULAWTest +frames Lib/test/test_contextlib.py /^ frames = traceback.extract_tb(e.__traceback__)$/;" v class:ContextManagerTestCase.test_contextmanager_traceback.StopIterationSubclass +frames Lib/test/test_contextlib.py /^ frames = traceback.extract_tb(e.__traceback__)$/;" v class:ContextManagerTestCase.test_contextmanager_traceback.RuntimeErrorSubclass +frames Lib/test/test_contextlib_async.py /^ frames = traceback.extract_tb(e.__traceback__)$/;" v class:AsyncContextManagerTestCase.test_contextmanager_traceback.StopAsyncIterationSubclass +frames Lib/test/test_contextlib_async.py /^ frames = traceback.extract_tb(e.__traceback__)$/;" v class:AsyncContextManagerTestCase.test_contextmanager_traceback.RuntimeErrorSubclass +frames Lib/test/test_sunau.py /^ frames = audioop.byteswap(frames, 2)$/;" v class:SunauULAWTest +frames Lib/test/test_wave.py /^ frames = wave._byteswap(frames, 2)$/;" v class:WavePCM16Test +frames Lib/test/test_wave.py /^ frames = wave._byteswap(frames, 3)$/;" v class:WavePCM24ExtTest +frames Lib/test/test_wave.py /^ frames = wave._byteswap(frames, 3)$/;" v class:WavePCM24Test +frames Lib/test/test_wave.py /^ frames = wave._byteswap(frames, 4)$/;" v class:WavePCM32Test +frames_pushed Include/pystats.h /^ uint64_t frames_pushed;$/;" m struct:_call_stats +frametable Lib/idlelib/debugger_r.py /^frametable = {}$/;" v +framework_find Lib/ctypes/macholib/dyld.py /^def framework_find(fn, executable_path=None, env=None):$/;" f +framework_info Lib/ctypes/macholib/framework.py /^def framework_info(filename):$/;" f +framing Modules/_pickle.c /^ int framing; \/* True when framing is enabled, proto >= 4 *\/$/;" m struct:PicklerObject file: +frange Lib/test/test_colorsys.py /^def frange(start, stop, step):$/;" f +free Include/cpython/objimpl.h /^ void (*free) (void *ctx, void *ptr, size_t size);$/;" m struct:__anon208 +free Include/cpython/pymem.h /^ void (*free) (void *ctx, void *ptr);$/;" m struct:__anon249 +free Include/cpython/pystate.h /^ xid_freefunc free;$/;" m struct:_xid +free Include/internal/pycore_hashtable.h /^ void (*free) (void *ptr);$/;" m struct:__anon131 +free Lib/multiprocessing/heap.py /^ def free(self, block):$/;" m class:Heap +freeBindings Modules/expat/xmlparse.c /^freeBindings(XML_Parser parser, BINDING *bindings) {$/;" f file: +freeBlocks Modules/expat/xmlparse.c /^ BLOCK *freeBlocks;$/;" m struct:__anon613 file: +freeEntry Modules/_lsprof.c /^static int freeEntry(rotating_node_t *header, void *arg)$/;" f file: +freeEnvironmentInfo PC/launcher2.c /^freeEnvironmentInfo(EnvironmentInfo *env)$/;" f +freeSearchInfo PC/launcher2.c /^freeSearchInfo(SearchInfo *search)$/;" f +freeSubEntry Modules/_lsprof.c /^static int freeSubEntry(rotating_node_t *header, void *arg)$/;" f file: +free_callback_context Modules/_sqlite/connection.c /^free_callback_context(callback_context *ctx)$/;" f file: +free_callback_contexts Modules/_sqlite/connection.c /^free_callback_contexts(pysqlite_Connection *self)$/;" f file: +free_code_arenas Python/perf_trampoline.c /^free_code_arenas(void)$/;" f file: +free_fcn Modules/expat/expat.h /^ void (*free_fcn)(void *ptr);$/;" m struct:__anon597 +free_filter_chain Modules/_lzmamodule.c /^free_filter_chain(lzma_filter filters[])$/;" f file: +free_fstring_expressions Parser/tokenizer.c /^free_fstring_expressions(struct tok_state *tok)$/;" f file: +free_interpreter Python/pystate.c /^free_interpreter(PyInterpreterState *interp)$/;" f file: +free_keys_object Objects/dictobject.c /^free_keys_object(PyInterpreterState *interp, PyDictKeysObject *keys)$/;" f file: +free_library Modules/_ctypes/callproc.c /^static PyObject *free_library(PyObject *self, PyObject *args)$/;" f file: +free_list Include/internal/pycore_dict_state.h /^ PyDictObject *free_list[PyDict_MAXFREELIST];$/;" m struct:_Py_dict_state +free_list Include/internal/pycore_floatobject.h /^ PyFloatObject *free_list;$/;" m struct:_Py_float_state +free_list Include/internal/pycore_list.h /^ PyListObject *free_list[PyList_MAXFREELIST];$/;" m struct:_Py_list_state +free_list Include/internal/pycore_tuple.h /^ PyTupleObject *free_list[PyTuple_NFREELISTS];$/;" m struct:_Py_tuple_state +free_list Modules/_ctypes/malloc_closure.c /^static ITEM *free_list;$/;" v file: +free_locale_info Python/formatter_unicode.c /^free_locale_info(LocaleInfo *locale_info)$/;" f file: +free_monitoring_data Objects/codeobject.c /^free_monitoring_data(_PyCoMonitoringData *data)$/;" f file: +free_preallocated_memerrors Objects/exceptions.c /^free_preallocated_memerrors(struct _Py_exc_state *state)$/;" f file: +free_ptr Modules/_testcapi/mem.c /^ void *free_ptr;$/;" m struct:__anon555 file: +free_state Include/internal/pycore_ceval.h /^ int (*free_state)(void* state);$/;" m struct:__anon4 +free_state Include/internal/pycore_ceval_state.h /^ int (*free_state)(void* state);$/;" m struct:trampoline_api_st +free_string_array Modules/posixmodule.c /^free_string_array(EXECV_CHAR **array, Py_ssize_t count)$/;" f file: +free_threadstate Python/pystate.c /^free_threadstate(PyThreadState *tstate)$/;" f file: +free_tzrule Modules/_zoneinfo.c /^free_tzrule(_tzrule *tzrule)$/;" f file: +free_values Objects/dictobject.c /^free_values(PyDictValues *values)$/;" f file: +free_wrapper Programs/_testembed.c /^free_wrapper(void *ctx, void *ptr)$/;" f file: +freeaddrinfo Modules/getaddrinfo.c /^freeaddrinfo(struct addrinfo *ai)$/;" f +freeaddrinfo Modules/socketmodule.c 460;" d file: +freeattributelist Modules/_winapi.c /^freeattributelist(AttributeList *attribute_list)$/;" f file: +freeblock Include/internal/pycore_obmalloc.h /^ pymem_block *freeblock; \/* pool's free list head *\/$/;" m struct:pool_header +freeblock Modules/_collectionsmodule.c /^freeblock(dequeobject *deque, block *b)$/;" f file: +freeblocks Modules/_collectionsmodule.c /^ block *freeblocks[MAXFREEBLOCKS];$/;" m struct:__anon530 file: +freedesktop_os_release Lib/platform.py /^def freedesktop_os_release():$/;" f +freefunc Include/cpython/ceval.h /^PyAPI_FUNC(Py_ssize_t) PyUnstable_Eval_RequestCodeExtraIndex(freefunc);$/;" v +freefunc Include/object.h /^typedef void (*freefunc)(void *);$/;" t +freefunc Lib/test/test_code.py /^ freefunc = ctypes.CFUNCTYPE(None,ctypes.c_voidp)$/;" v class:CodeLocationTest +freelist Include/internal/pycore_context.h /^ PyContext *freelist;$/;" m struct:_Py_context_state +freelist Include/internal/pycore_dtoa.h /^ struct Bigint *freelist[Bigint_Kmax+1];$/;" m struct:_dtoa_state typeref:struct:_dtoa_state::Bigint +freelist Python/dtoa.c 337;" d file: +freelist Python/dtoa.c 393;" d file: +freelistProfilerContext Modules/_lsprof.c /^ ProfilerContext *freelistProfilerContext;$/;" m struct:__anon362 file: +freelist_t Python/getargs.c /^} freelist_t;$/;" t typeref:struct:__anon695 file: +freelistentry_t Python/getargs.c /^} freelistentry_t;$/;" t typeref:struct:__anon694 file: +freepools Include/internal/pycore_obmalloc.h /^ struct pool_header* freepools;$/;" m struct:arena_object typeref:struct:arena_object::pool_header +frees Include/pystats.h /^ uint64_t frees;$/;" m struct:_object_stats +freeze Lib/importlib/metadata/_collections.py /^ def freeze(self):$/;" m class:FreezableDefaultDict +freeze Tools/freeze/test/freeze.py /^def freeze(python, scriptfile, outdir):$/;" f +freeze_support Lib/multiprocessing/context.py /^ def freeze_support(self):$/;" m class:BaseContext +freeze_support Lib/multiprocessing/dummy/__init__.py /^def freeze_support():$/;" f +freeze_support Lib/multiprocessing/spawn.py /^def freeze_support():$/;" f +fresh Lib/test/test_functools.py /^ fresh=['_functools'])$/;" v +fresh Lib/test/test_importlib/frozen/test_loader.py /^def fresh(name, *, oldapi=False):$/;" f +fresh Lib/test/test_operator.py /^ fresh=['_operator'])$/;" v +fresh Lib/test/test_ordered_dict.py /^ fresh=['_collections'])$/;" v +fresh Lib/test/test_statistics.py /^ fresh=['_statistics'])$/;" v +fresh Lib/test/test_warnings/__init__.py /^ fresh=['_warnings'])$/;" v +fresh Lib/test/test_xml_etree_c.py /^ fresh=['_elementtree', 'xml.etree'],$/;" v +fresh Lib/test/test_xml_etree_c.py /^ fresh=['_elementtree'])$/;" v +from Python/bytecodes.c /^static PyObject *orig, *excs, *update, *b, *fromlist, *level, *from;$/;" v file: +fromBignumObj Modules/_tkinter.c /^fromBignumObj(TkappObject *tkapp, Tcl_Obj *value)$/;" f file: +fromBoolean Modules/_tkinter.c /^fromBoolean(TkappObject *tkapp, Tcl_Obj *value)$/;" f file: +fromHex Lib/test/test_float.py /^fromHex = float.fromhex$/;" v +fromWideIntObj Modules/_tkinter.c /^fromWideIntObj(TkappObject *tkapp, Tcl_Obj *value)$/;" f file: +from_cache Tools/importbench/importbench.py /^def from_cache(seconds, repeat):$/;" f +from_callable Lib/inspect.py /^ def from_callable(cls, obj, *,$/;" m class:Signature +from_data Tools/c-analyzer/c_parser/info.py /^ def from_data(cls, raw, index):$/;" m class:Member +from_datetime Lib/test/test_zoneinfo/test_zoneinfo.py /^ def from_datetime(cls, dt):$/;" m class:DatetimeSubclassMixin.DatetimeSubclass +from_decimal Lib/fractions.py /^ def from_decimal(cls, dec):$/;" m class:Fraction +from_decls Tools/c-analyzer/c_parser/info.py /^ def from_decls(cls, decls):$/;" m class:Declarations +from_doctest Lib/test/support/__init__.py /^ def from_doctest(results):$/;" m class:TestStats +from_exception Lib/traceback.py /^ def from_exception(cls, exc, *args, **kwargs):$/;" m class:TracebackException +from_file Lib/test/test_dataclasses.py /^ def from_file(cls, filename):$/;" m class:TestCase.test_alternate_classmethod_constructor.C +from_file Lib/zipfile/__init__.py /^ def from_file(cls, filename, arcname=None, *, strict_timestamps=True):$/;" m class:ZipInfo +from_file Lib/zoneinfo/_common.py /^ def from_file(cls, stream):$/;" m class:_TZifHeader +from_file Lib/zoneinfo/_zoneinfo.py /^ def from_file(cls, fobj, \/, key=None):$/;" m class:ZoneInfo +from_file_nokey Lib/test/test_zoneinfo/test_zoneinfo.py /^ def from_file_nokey(key):$/;" f function:ZoneInfoTest.test_key_attribute +from_float Lib/_pydecimal.py /^ def from_float(cls, f):$/;" m class:Decimal +from_float Lib/fractions.py /^ def from_float(cls, f):$/;" m class:Fraction +from_freelist Include/pystats.h /^ uint64_t from_freelist;$/;" m struct:_object_stats +from_id Tools/build/freeze_modules.py /^ def from_id(cls, frozenid, pyfile=None):$/;" m class:FrozenSource +from_latin1 Lib/test/test_bigmem.py /^ def from_latin1(self, s):$/;" m class:BytearrayTest +from_latin1 Lib/test/test_bigmem.py /^ def from_latin1(self, s):$/;" m class:BytesTest +from_latin1 Lib/test/test_bigmem.py /^ def from_latin1(self, s):$/;" m class:StrTest +from_line Tools/c-analyzer/cpython/_builtin_types.py /^ def from_line(cls, line, filename, lno):$/;" m class:BuiltinTypeDecl +from_line Tools/c-analyzer/cpython/_builtin_types.py /^ def from_line(cls, line, filename, lno, *, decls=None):$/;" m class:BuiltinTypeInfo +from_line Tools/c-analyzer/cpython/_capi.py /^ def from_line(cls, line, filename, lno, prev=None):$/;" m class:CAPIItem +from_list Lib/traceback.py /^ def from_list(klass, a_list):$/;" m class:StackSummary +from_module Lib/test/test_import/__init__.py /^ def from_module(cls, mod):$/;" m class:ModuleSnapshot +from_module Lib/test/test_import/__init__.py /^ def from_module(cls, mod):$/;" m class:TestSinglePhaseSnapshot +from_name Lib/importlib/metadata/__init__.py /^ def from_name(cls, name: str):$/;" m class:Distribution +from_package Lib/importlib/resources/_common.py /^def from_package(package: types.ModuleType):$/;" f +from_param Lib/test/test_ctypes/test_parameters.py /^ def from_param(cls, obj):$/;" m class:SimpleTypesTestCase.test_noctypes_argtype.Adapter +from_param Lib/test/test_ctypes/test_parameters.py /^ def from_param(cls, value):$/;" m class:SimpleTypesTestCase.test_from_param_result_refcount.X +from_param Lib/test/test_ctypes/test_parameters.py /^ def from_param(cls, value):$/;" m class:SimpleTypesTestCase.test_from_param_result_refcount.Y +from_param Lib/test/test_ctypes/test_parameters.py /^ def from_param(cls, value):$/;" m class:SimpleTypesTestCase.test_subclasses.CCHARP +from_param Lib/test/test_ctypes/test_parameters.py /^ def from_param(cls, value):$/;" m class:SimpleTypesTestCase.test_subclasses.CVOIDP +from_param Lib/test/test_ctypes/test_parameters.py /^ def from_param(cls, value):$/;" m class:SimpleTypesTestCase.test_subclasses_c_wchar_p.CWCHARP +from_param Lib/test/test_ctypes/test_parameters.py /^ from_param = classmethod(from_param)$/;" v class:SimpleTypesTestCase.test_subclasses.CCHARP +from_param Lib/test/test_ctypes/test_parameters.py /^ from_param = classmethod(from_param)$/;" v class:SimpleTypesTestCase.test_subclasses.CVOIDP +from_param Lib/test/test_ctypes/test_parameters.py /^ from_param = classmethod(from_param)$/;" v class:SimpleTypesTestCase.test_subclasses_c_wchar_p.CWCHARP +from_parsed Tools/c-analyzer/c_parser/info.py /^ def from_parsed(cls, items):$/;" m class:Declarations +from_parsed Tools/c-analyzer/c_parser/info.py /^ def from_parsed(cls, parsed):$/;" m class:HighlevelParsedItem +from_parsed Tools/c-analyzer/cpython/_builtin_types.py /^ def from_parsed(cls, name, kind, filename, lno):$/;" m class:BuiltinTypeDecl +from_parsed Tools/c-analyzer/cpython/_builtin_types.py /^ def from_parsed(cls, name, kind, filename, lno, *, decls=None):$/;" m class:BuiltinTypeInfo +from_pyobject_ptr Tools/gdb/libpython.py /^ def from_pyobject_ptr(cls, gdbval):$/;" m class:PyObjectPtr +from_raw Lib/test/test__xxinterpchannels.py /^ def from_raw(cls, raw):$/;" m class:Interpreter +from_raw Tools/c-analyzer/c_analyzer/info.py /^ def from_raw(cls, raw, **extra):$/;" m class:Analyzed +from_raw Tools/c-analyzer/c_common/tables.py /^ def from_raw(cls, raw):$/;" m class:ColumnSpec +from_raw Tools/c-analyzer/c_parser/info.py /^ def from_raw(cls, raw):$/;" m class:FileInfo +from_raw Tools/c-analyzer/c_parser/info.py /^ def from_raw(cls, raw):$/;" m class:ParsedItem +from_resolved Tools/c-analyzer/c_analyzer/info.py /^ def from_resolved(cls, item, resolved, **extra):$/;" m class:Analyzed +from_results Tools/c-analyzer/c_analyzer/info.py /^ def from_results(cls, results):$/;" m class:Analysis +from_row Tools/c-analyzer/c_parser/info.py /^ def from_row(cls, row, **markers):$/;" m class:DeclID +from_row Tools/c-analyzer/c_parser/info.py /^ def from_row(cls, row, **markers):$/;" m class:Declaration +from_row Tools/c-analyzer/c_parser/info.py /^ def from_row(cls, row, columns=None):$/;" m class:ParsedItem +from_row Tools/unicode/makeunicodedata.py /^def from_row(row: List[str]) -> UcdRecord:$/;" f +from_samples Lib/statistics.py /^ def from_samples(cls, data):$/;" m class:NormalDist +from_source_files Tools/cases_generator/generate_cases.py /^ def from_source_files(self) -> str:$/;" m class:Analyzer +from_str Tools/c-analyzer/c_parser/info.py /^ def from_str(cls, text):$/;" m class:Member +from_str Tools/c-analyzer/c_parser/info.py /^ def from_str(cls, text):$/;" m class:Signature +from_str Tools/c-analyzer/c_parser/info.py /^ def from_str(cls, text):$/;" m class:VarType +from_subinterp Lib/test/test_import/__init__.py /^ def from_subinterp(cls, name, interpid=None, *, pipe=None, **script_kwds):$/;" m class:ModuleSnapshot +from_subprocess Lib/platform.py /^ def from_subprocess():$/;" m class:_Processor +from_td Lib/test/datetimetester.py /^ def from_td(td):$/;" m class:TestTimeDelta.test_subclass_timedelta.T +from_traceback Lib/dis.py /^ def from_traceback(cls, tb, *, show_caches=False, adaptive=False):$/;" m class:Bytecode +from_triple Modules/_decimal/tests/randdec.py /^def from_triple(sign, coeff, exp):$/;" f +from_unittest Lib/test/support/__init__.py /^ def from_unittest(result):$/;" m class:TestStats +from_values Tools/c-analyzer/cpython/_builtin_types.py /^ def from_values(cls, filename, lno, name, kind):$/;" m class:BuiltinTypeDecl +fromaddr Lib/smtplib.py /^ fromaddr = prompt("From")$/;" v +frombuf Lib/tarfile.py /^ def frombuf(cls, buf, encoding, errors):$/;" m class:TarInfo +frombytes Modules/arraymodule.c /^frombytes(arrayobject *self, Py_buffer *buffer)$/;" f file: +fromfd Lib/socket.py /^def fromfd(fd, family, type, proto=0):$/;" f +fromfile Lib/test/datetimetester.py /^ def fromfile(cls, fileobj):$/;" m class:ZoneInfo +fromfile Tools/tz/zdump.py /^ def fromfile(cls, fileobj):$/;" m class:TZInfo +fromisocalendar Lib/_pydatetime.py /^ def fromisocalendar(cls, year, week, day):$/;" m class:date +fromisoformat Lib/_pydatetime.py /^ def fromisoformat(cls, date_string):$/;" m class:date +fromisoformat Lib/_pydatetime.py /^ def fromisoformat(cls, date_string):$/;" m class:datetime +fromisoformat Lib/_pydatetime.py /^ def fromisoformat(cls, time_string):$/;" m class:time +fromkeys Lib/collections/__init__.py /^ def fromkeys(cls, iterable, *args):$/;" m class:ChainMap +fromkeys Lib/collections/__init__.py /^ def fromkeys(cls, iterable, v=None):$/;" m class:Counter +fromkeys Lib/collections/__init__.py /^ def fromkeys(cls, iterable, value=None):$/;" m class:OrderedDict +fromkeys Lib/collections/__init__.py /^ def fromkeys(cls, iterable, value=None):$/;" m class:UserDict +fromlist Python/bytecodes.c /^static PyObject *orig, *excs, *update, *b, *fromlist, *level, *from;$/;" v file: +fromname Lib/ssl.py /^ def fromname(cls, name):$/;" m class:_ASN1Object +fromname Lib/test/datetimetester.py /^ def fromname(cls, name):$/;" m class:ZoneInfo +fromnid Lib/ssl.py /^ def fromnid(cls, nid):$/;" m class:_ASN1Object +fromordinal Lib/_pydatetime.py /^ def fromordinal(cls, n):$/;" m class:date +fromshare Lib/socket.py /^ def fromshare(info):$/;" f +fromstring Lib/test/test_configparser.py /^ def fromstring(self, string, defaults=None):$/;" m class:CfgParserTestCaseClass +fromstring Lib/test/test_configparser.py /^ def fromstring(self, string, defaults=None):$/;" m class:CopyTestCase +fromstring Lib/test/test_configparser.py /^ def fromstring(self, string, defaults=None, optionxform=None):$/;" m class:ConfigParserTestCaseExtendedInterpolation +fromstring Lib/xml/etree/ElementTree.py /^fromstring = XML$/;" v +fromstringlist Lib/xml/etree/ElementTree.py /^def fromstringlist(sequence, parser=None):$/;" f +fromtarfile Lib/tarfile.py /^ def fromtarfile(cls, tarfile):$/;" m class:TarInfo +fromtimestamp Lib/_pydatetime.py /^ def fromtimestamp(cls, t):$/;" m class:date +fromtimestamp Lib/_pydatetime.py /^ def fromtimestamp(cls, timestamp, tz=None):$/;" m class:datetime +fromutc Doc/includes/tzinfo_examples.py /^ def fromutc(self, dt):$/;" m class:LocalTimezone +fromutc Doc/includes/tzinfo_examples.py /^ def fromutc(self, dt):$/;" m class:USTimeZone +fromutc Lib/_pydatetime.py /^ def fromutc(self, dt):$/;" m class:timezone +fromutc Lib/_pydatetime.py /^ def fromutc(self, dt):$/;" m class:tzinfo +fromutc Lib/test/datetimetester.py /^ def fromutc(self, dt):$/;" m class:TestTimezoneConversions.test_fromutc.FauxUSTimeZone +fromutc Lib/test/datetimetester.py /^ def fromutc(self, dt):$/;" m class:Europe_Vilnius_1941 +fromutc Lib/test/datetimetester.py /^ def fromutc(self, dt):$/;" m class:ZoneInfo +fromutc Lib/test/datetimetester.py /^ def fromutc(self, dt):$/;" m class:tzinfo2 +fromutc Lib/zoneinfo/_zoneinfo.py /^ def fromutc(self, dt):$/;" m class:ZoneInfo +frozen_builtins Lib/test/test_builtin.py /^ frozen_builtins = frozendict(__builtins__)$/;" v class:BuiltinTest.test_exec_globals_frozen.frozendict +frozen_builtins Lib/test/test_builtin.py /^ frozen_builtins = frozendict(__builtins__.__dict__)$/;" v class:BuiltinTest.test_exec_globals_frozen.frozendict +frozen_info Python/import.c /^struct frozen_info {$/;" s file: +frozen_modules Lib/test/support/import_helper.py /^def frozen_modules(enabled=True):$/;" f +frozen_status Python/import.c /^} frozen_status;$/;" t typeref:enum:__anon685 file: +frozendict Lib/test/test_builtin.py /^ class frozendict(dict):$/;" c function:BuiltinTest.test_exec_globals_frozen +frozendict_error Lib/test/test_builtin.py /^ class frozendict_error(Exception):$/;" c function:BuiltinTest.test_exec_globals_frozen +frozenid Tools/build/freeze_modules.py /^ def frozenid(self):$/;" m class:FrozenSource +frozenset2 Lib/test/test_pprint.py /^class frozenset2(frozenset):$/;" c +frozenset3 Lib/test/test_pprint.py /^class frozenset3(frozenset):$/;" c +frozenset_as_number Objects/setobject.c /^static PyNumberMethods frozenset_as_number = {$/;" v file: +frozenset_copy Objects/setobject.c /^frozenset_copy(PySetObject *so, PyObject *Py_UNUSED(ignored))$/;" f file: +frozenset_custom_repr Lib/test/test_pprint.py /^class frozenset_custom_repr(frozenset):$/;" c +frozenset_hash Objects/setobject.c /^frozenset_hash(PyObject *self)$/;" f file: +frozenset_methods Objects/setobject.c /^static PyMethodDef frozenset_methods[] = {$/;" v file: +frozenset_new Objects/setobject.c /^frozenset_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +frozenset_vectorcall Objects/setobject.c /^frozenset_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +fs_codec Include/internal/pycore_unicodeobject.h /^ struct _Py_unicode_fs_codec fs_codec;$/;" m struct:_Py_unicode_state typeref:struct:_Py_unicode_state::_Py_unicode_fs_codec +fs_is_case_insensitive Lib/test/support/os_helper.py /^def fs_is_case_insensitive(directory):$/;" f +fsblkcnt_t Lib/test/test_lib2to3/data/infinite_recursion.py /^fsblkcnt_t = __darwin_fsblkcnt_t$/;" v +fsconvert_strdup Modules/posixmodule.c /^fsconvert_strdup(PyObject *o, EXECV_CHAR **out)$/;" f file: +fsdecode Lib/os.py /^ def fsdecode(filename):$/;" f function:_fscodec +fsencode Lib/os.py /^ def fsencode(filename):$/;" f function:_fscodec +fsencoding Lib/test/test_unicode_file_functions.py /^ fsencoding = sys.getfilesystemencoding()$/;" v +fsfilcnt_t Lib/test/test_lib2to3/data/infinite_recursion.py /^fsfilcnt_t = __darwin_fsfilcnt_t$/;" v +fspath Lib/os.py /^ fspath = _fspath$/;" v +fspath Lib/test/test_os.py /^ fspath = staticmethod(os._fspath)$/;" v class:.TestPEP519PurePython +fspath Lib/test/test_os.py /^ fspath = staticmethod(os.fspath)$/;" v class:TestPEP519 +fst Modules/_hacl/Hacl_Hash_SHA3.c /^ Hacl_Streaming_Keccak_hash_buf fst;$/;" m struct:hash_buf2_s file: +fst Modules/_hacl/Hacl_Hash_SHA3.h /^ Spec_Hash_Definitions_hash_alg fst;$/;" m struct:Hacl_Streaming_Keccak_hash_buf_s +fstring_conversion_rule Parser/parser.c /^fstring_conversion_rule(Parser *p)$/;" f file: +fstring_conversion_type Parser/parser.c 235;" d file: +fstring_format_spec_rule Parser/parser.c /^fstring_format_spec_rule(Parser *p)$/;" f file: +fstring_format_spec_type Parser/parser.c 237;" d file: +fstring_full_format_spec_rule Parser/parser.c /^fstring_full_format_spec_rule(Parser *p)$/;" f file: +fstring_full_format_spec_type Parser/parser.c 236;" d file: +fstring_middle_rule Parser/parser.c /^fstring_middle_rule(Parser *p)$/;" f file: +fstring_middle_type Parser/parser.c 233;" d file: +fstring_replacement_field_rule Parser/parser.c /^fstring_replacement_field_rule(Parser *p)$/;" f file: +fstring_replacement_field_type Parser/parser.c 234;" d file: +fstring_rule Parser/parser.c /^fstring_rule(Parser *p)$/;" f file: +fstring_type Parser/parser.c 85;" d file: +fsync Modules/posixmodule.c 363;" d file: +ft Lib/test/test_ctypes/test_values.py /^ ft = FrozenTable.in_dll(pythonapi, f"_PyImport_Frozen{group}")$/;" v class:PythonValuesTestCase.test_frozentable.struct_frozen +ftest Lib/test/test_math.py /^ def ftest(self, name, got, expected, ulp_tol=5, abs_tol=0.0):$/;" m class:MathTests +ftp_open Lib/urllib/request.py /^ def ftp_open(self, req):$/;" m class:FTPHandler +ftpcache Lib/urllib/request.py /^ftpcache = {}$/;" v +ftpcp Lib/ftplib.py /^def ftpcp(source, sourcename, target, targetname = '', type = 'I'):$/;" f +ftperrors Lib/urllib/request.py /^def ftperrors():$/;" f +ftpwrapper Lib/urllib/request.py /^class ftpwrapper:$/;" c +full Lib/asyncio/queues.py /^ def full(self):$/;" m class:Queue +full Lib/multiprocessing/queues.py /^ def full(self):$/;" m class:Queue +full Lib/queue.py /^ def full(self):$/;" m class:Queue +full Lib/test/test_functools.py /^ def full(k):$/;" f function:TestLRU.test_lru_cache_threaded +full_url Lib/urllib/request.py /^ def full_url(self):$/;" m class:Request +full_url Lib/urllib/request.py /^ def full_url(self, url):$/;" m class:Request +fullmatch Lib/re/__init__.py /^def fullmatch(pattern, string, flags=0):$/;" f +fully_trusted_filter Lib/tarfile.py /^def fully_trusted_filter(member, dest_path):$/;" f +fun Lib/test/test_context.py /^ def fun():$/;" f function:ContextTest.test_context_getset_3 +fun Lib/test/test_context.py /^ def fun():$/;" f function:ContextTest.test_context_getset_5 +fun Lib/test/test_context.py /^ def fun():$/;" f function:ContextTest.test_context_run_6 +fun Lib/test/test_context.py /^ def fun():$/;" f function:ContextTest.test_context_run_7 +fun Lib/test/test_functools.py /^ def fun(a):$/;" f function:TestSingleDispatch.test_false_meta +fun Lib/test/test_sched.py /^ def fun(*a, **b):$/;" f function:TestCase.test_args_kwargs +fun Lib/test/test_typing.py /^ def fun(x: a): pass$/;" f function:ForwardRefTests.test_forward_recursion_actually.namespace1 +fun Lib/test/test_typing.py /^ def fun(x: a): pass$/;" f function:ForwardRefTests.test_forward_recursion_actually.namespace2 +fun Lib/test/test_typing.py /^ def fun(x: a):$/;" f function:ForwardRefTests.test_forward_equality_namespace.namespace1 +fun Lib/test/test_typing.py /^ def fun(x: a):$/;" f function:ForwardRefTests.test_forward_equality_namespace.namespace2 +fun Lib/test/test_typing.py /^ def fun() -> int: ...$/;" f function:UnionTests.test_function_repr_union +func Include/abstract.h /^PyAPI_FUNC(PyObject *) PyObject_CallNoArgs(PyObject *func);$/;" v +func Include/cpython/classobject.h /^ PyObject *func;$/;" m struct:__anon193 +func Include/cpython/initconfig.h /^ const char *func;$/;" m struct:__anon198 +func Include/cpython/methodobject.h /^ PyCFunctionObject func;$/;" m struct:__anon203 +func Include/internal/pycore_ast.h /^ expr_ty func;$/;" m struct:_expr::__anon77::__anon94 +func Include/internal/pycore_ast_state.h /^ PyObject *func;$/;" m struct:ast_state +func Include/internal/pycore_atexit.h /^ PyObject *func;$/;" m struct:__anon122 +func Include/internal/pycore_atexit.h /^ atexit_datacallbackfunc func;$/;" m struct:atexit_callback +func Include/internal/pycore_ceval_state.h /^ int (*func)(void *);$/;" m struct:_pending_calls::_pending_call +func Include/internal/pycore_signal.h /^ _Py_atomic_address func;$/;" m struct:_signals_runtime_state::__anon160 +func Lib/idlelib/idle_test/test_run.py /^ def func(): "docstring"$/;" f function:RecursionLimitTest.test_fixdoc +func Lib/operator.py /^ def func(obj):$/;" f function:attrgetter.__init__ +func Lib/operator.py /^ def func(obj):$/;" f function:itemgetter.__init__ +func Lib/test/_test_atexit.py /^ def func():$/;" f function:GeneralTest.test_atexit_with_unregistered_function +func Lib/test/_test_atexit.py /^ def func():$/;" f function:GeneralTest.test_badargs +func Lib/test/test_asyncio/test_base_events.py /^ def func():$/;" f function:BaseEventLoopTests.test_run_until_complete_baseexception +func Lib/test/test_asyncio/test_events.py /^ async def func():$/;" f function:GetEventLoopTestsMixin.test_get_event_loop_returns_running_loop2 +func Lib/test/test_asyncio/test_events.py /^ async def func():$/;" m class:GetEventLoopTestsMixin.test_get_event_loop_returns_running_loop.Policy +func Lib/test/test_asyncio/test_futures2.py /^ async def func():$/;" f function:FutureReprTests.test_recursive_repr_for_pending_tasks +func Lib/test/test_asyncio/test_pep492.py /^ def func():$/;" f function:CoroutineTests.test_types_coroutine +func Lib/test/test_asyncio/test_tasks.py /^ async def func():$/;" f function:BaseTaskTests.test_coroutine_non_gen_function +func Lib/test/test_asyncio/test_tasks.py /^ async def func():$/;" f function:BaseTaskTests.test_coroutine_non_gen_function_return_future +func Lib/test/test_asyncio/test_tasks.py /^ async def func():$/;" f function:add_subclass_tests.test_subclasses_ctask_cfuture +func Lib/test/test_asyncio/test_tasks.py /^ async def func(a):$/;" f function:BaseTaskTests.test_wait_generator +func Lib/test/test_asyncio/test_unix_events.py /^ async def func():$/;" f function:TestFork.test_fork_signal_handling.main +func Lib/test/test_asyncio/test_windows_events.py /^ def func():$/;" f function:ProactorMultithreading.test_run_from_nonmain_thread +func Lib/test/test_capi/test_misc.py /^ def func():$/;" f function:Test_Pep523API.test_inlined_binary_subscr +func Lib/test/test_capi/test_misc.py /^ def func():$/;" f function:Test_Pep523API.test_inlined_call +func Lib/test/test_capi/test_misc.py /^ def func():$/;" f function:Test_Pep523API.test_inlined_call_function_ex +func Lib/test/test_capi/test_misc.py /^ def func():$/;" f function:Test_Pep523API.test_inlined_for_iter +func Lib/test/test_capi/test_misc.py /^ def func():$/;" f function:Test_Pep523API.test_inlined_load_attr +func Lib/test/test_capi/test_misc.py /^ def func():$/;" f function:Test_Pep523API.test_inlined_send +func Lib/test/test_capi/test_misc.py /^ def func():$/;" m class:TestInternalFrameApi +func Lib/test/test_code.py /^ def func(): pass$/;" f function:CodeTest.test_constructor +func Lib/test/test_code.py /^ def func():$/;" f function:CodeTest.test_co_lnotab_is_deprecated +func Lib/test/test_code.py /^ def func():$/;" f function:CodeTest.test_co_positions_empty_linetable +func Lib/test/test_code.py /^ def func():$/;" f function:CodeTest.test_empty_linetable +func Lib/test/test_code.py /^ def func():$/;" f function:CodeTest.test_nlocals_mismatch +func Lib/test/test_code.py /^ def func():$/;" f function:CodeTest.test_replace +func Lib/test/test_code.py /^ def func(arg):$/;" f function:CodeTest.test_shrinking_localsplus +func Lib/test/test_context.py /^ def func():$/;" f function:ContextTest.test_context_run_5 +func Lib/test/test_context.py /^ def func(*args, **kwargs):$/;" f function:ContextTest.test_context_run_2 +func Lib/test/test_context.py /^ def func(*args, **kwargs):$/;" f function:ContextTest.test_context_run_3 +func Lib/test/test_coroutines.py /^ async def func(): pass$/;" f function:CoroutineTest.test_copy +func Lib/test/test_coroutines.py /^ async def func(): pass$/;" f function:CoroutineTest.test_fatal_coro_warning +func Lib/test/test_coroutines.py /^ async def func(): pass$/;" f function:CoroutineTest.test_func_11 +func Lib/test/test_coroutines.py /^ async def func(): pass$/;" f function:CoroutineTest.test_pickle +func Lib/test/test_coroutines.py /^ async def func():$/;" f function:CoroutineTest.test_with_5 +func Lib/test/test_ctypes/test_bitfields.py /^func = CDLL(_ctypes_test.__file__).unpack_bitfields$/;" v +func Lib/test/test_ctypes/test_callbacks.py /^ def func(self): pass$/;" m class:Callbacks.test_issue_7959.X +func Lib/test/test_ctypes/test_callbacks.py /^ def func():$/;" f function:SampleCallbacksTestCase.test_convert_result_error +func Lib/test/test_ctypes/test_callbacks.py /^ def func(*args):$/;" f function:SampleCallbacksTestCase.test_callback_too_many_args +func Lib/test/test_ctypes/test_callbacks.py /^ def func(x):$/;" f function:SampleCallbacksTestCase.test_integrate +func Lib/test/test_ctypes/test_funcptr.py /^ def func(*args):$/;" f function:CFuncPtrTestCase.test_basic +func Lib/test/test_ctypes/test_funcptr.py /^ def func(a, b):$/;" f function:CFuncPtrTestCase.test_first +func Lib/test/test_ctypes/test_pointers.py /^ def func(arg):$/;" f function:PointersTestCase.test_callbacks_with_pointers +func Lib/test/test_ctypes/test_prototypes.py /^ def func(): pass$/;" f function:ArrayTest.test +func Lib/test/test_ctypes/test_refcounts.py /^ def func():$/;" f function:AnotherLeak.test_callback_py_object_none_return +func Lib/test/test_ctypes/test_refcounts.py /^ def func(*args):$/;" f function:RefcountTestCase.test_refcount +func Lib/test/test_ctypes/test_refcounts.py /^ def func(a, b):$/;" f function:AnotherLeak.test_callback +func Lib/test/test_ctypes/test_simplesubclasses.py /^ def func():$/;" f function:Test.test_ignore_retval +func Lib/test/test_ctypes/test_simplesubclasses.py /^ def func(arg):$/;" f function:Test.test_int_callback +func Lib/test/test_ctypes/test_structures.py /^ func = dll._testfunc_bitfield_by_value1$/;" v class:StructureTestCase.test_bitfield_by_value.Test6 +func Lib/test/test_ctypes/test_structures.py /^ func = dll._testfunc_bitfield_by_value2$/;" v class:StructureTestCase.test_bitfield_by_value.Test8 +func Lib/test/test_ctypes/test_structures.py /^ func = dll._testfunc_union_by_value1$/;" v class:StructureTestCase.test_union_by_value.Test5 +func Lib/test/test_ctypes/test_structures.py /^ func = dll._testfunc_union_by_value2$/;" v class:StructureTestCase.test_union_by_value.Test5 +func Lib/test/test_ctypes/test_unicode.py /^func = ctypes.CDLL(_ctypes_test.__file__)._testfunc_p_p$/;" v +func Lib/test/test_decorators.py /^ def func(x):$/;" f function:TestDecorators.check_wrapper_attrs +func Lib/test/test_descr.py /^ def func(*args, **kwargs):$/;" f function:ClassPropertiesAndMethods.test_metaclass +func Lib/test/test_dis.py /^ def func():$/;" f function:TestFinderMethods.test_findlinestarts +func Lib/test/test_dis.py /^ def func(count):$/;" f function:DisTests.test_big_linenos +func Lib/test/test_dis.py /^ def func(count):$/;" f function:DisTests.test_big_offsets +func Lib/test/test_funcattrs.py /^ def func(s): return len(s)$/;" f function:FunctionPropertiesTest.test___builtins__ +func Lib/test/test_functools.py /^ def func(i):$/;" f function:TestLRU.test_lru_with_exceptions +func Lib/test/test_functools.py /^ def func(self, arg: int) -> str:$/;" m class:TestSingleDispatch.test_method_wrapping_attributes.A +func Lib/test/test_functools.py /^ def func(a=10, b=20):$/;" f function:TestPartial.test_protection_of_callers_dict_argument +func Lib/test/test_generators.py /^ def func():$/;" f function:GeneratorTest.test_name +func Lib/test/test_inspect.py /^ async def func(a=None):$/;" f function:TestGetCoroutineState.test_getcoroutinelocals +func Lib/test/test_inspect.py /^ def func(): pass$/;" f function:TestUnwrap.test_unhashable +func Lib/test/test_inspect.py /^ def func(*args, **kwargs):$/;" f function:TestSignatureDefinitions.test_python_function_override_signature +func Lib/test/test_inspect.py /^ def func(a, b):$/;" f function:TestUnwrap.test_unwrap_one +func Lib/test/test_inspect.py /^ def func(a, b):$/;" f function:TestUnwrap.test_unwrap_several +func Lib/test/test_inspect.py /^ def func(a,b, *args, kwonly=True, kwonlyreq, **kwargs):$/;" f function:TestSignatureObject.test_signature_from_functionlike_object +func Lib/test/test_inspect.py /^ def func(a,b, *args, kwonly=True, kwonlyreq, **kwargs):$/;" f function:TestSignatureObject.test_signature_functionlike_class +func Lib/test/test_inspect.py /^ def func(foo: Foo) -> int: pass$/;" f function:TestSignatureObject.test_signature_annotations_with_local_namespaces +func Lib/test/test_logging.py /^ def func(queue, *handlers, **kwargs):$/;" f function:listenerMaker +func Lib/test/test_monitoring.py /^ def func():$/;" f function:ExceptionMonitoringTest.test_async_for +func Lib/test/test_monitoring.py /^ def func():$/;" f function:ExceptionMonitoringTest.test_explicit_reraise +func Lib/test/test_monitoring.py /^ def func():$/;" f function:ExceptionMonitoringTest.test_explicit_reraise_named +func Lib/test/test_monitoring.py /^ def func():$/;" f function:ExceptionMonitoringTest.test_implicit_reraise +func Lib/test/test_monitoring.py /^ def func():$/;" f function:ExceptionMonitoringTest.test_implicit_reraise_named +func Lib/test/test_monitoring.py /^ def func():$/;" f function:ExceptionMonitoringTest.test_throw +func Lib/test/test_monitoring.py /^ def func():$/;" f function:ExceptionMonitoringTest.test_try_finally +func Lib/test/test_monitoring.py /^ def func():$/;" f function:LineMonitoringTest.test_branch +func Lib/test/test_monitoring.py /^ def func():$/;" f function:LineMonitoringTest.test_linear +func Lib/test/test_monitoring.py /^ def func():$/;" f function:TestBranchAndJumpEvents.test_except_star +func Lib/test/test_monitoring.py /^ def func():$/;" f function:TestBranchAndJumpEvents.test_loop +func Lib/test/test_operator.py /^ def func(*args, **kwargs): return args, kwargs$/;" f function:OperatorTestCase.test_call +func Lib/test/test_sax.py /^ def func(out):$/;" f function:XmlgenTest.test_no_close_file +func Lib/test/test_sys.py /^ def func(): pass$/;" f function:SizeofTest.test_objecttypes +func Lib/test/test_sys.py /^ def func():$/;" f function:SizeofTest.test_objecttypes +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_17_none_f_trace +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_18_except_with_name +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_19_except_with_finally +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_21_repeated_pass +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_break_through_finally +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_break_to_break +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_break_to_continue1 +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_break_to_continue2 +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_class_creation_with_decorator +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_class_creation_with_docstrings +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_continue_through_finally +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_finally_with_conditional +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_flow_converges_on_same_line +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_if_break +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_if_false_in_try_except +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_if_false_in_with +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_implicit_return_in_class +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_loop_in_try_except +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_nested_ifs +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_nested_ifs_with_and +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_nested_loops +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_nested_try_if +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_no_line_event_after_creating_generator +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_no_tracing_of_named_except_cleanup +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_notrace_lambda +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_return_through_finally +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_tracing_exception_raised_in_with +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_no_exception +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_star_exception_caught +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_star_exception_not_caught +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_star_named_exception_caught +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_star_named_exception_not_caught +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_star_named_no_exception +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_star_nested +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_star_no_exception +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_except_with_wrong_type +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_exception_in_else +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_in_try +func Lib/test/test_sys_settrace.py /^ def func():$/;" f function:TraceTestCase.test_try_in_try_with_exception +func Lib/test/test_sys_settrace.py /^ def func(a=0, p=1, z=1):$/;" f function:TraceTestCase.test_if_in_if_in_if +func Lib/test/test_sys_settrace.py /^ def func(arg = 1):$/;" f function:TestSetLocalTrace.test_with_branches +func Lib/test/test_threading.py /^ def func(): pass$/;" f function:ThreadTests.test_name +func Lib/test/test_trace.py /^ def func():$/;" f function:traced_decorated_function +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_for_private_stdlib_modules +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_for_stdlib_modules +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions_do_not_trigger_for_long_names +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions_do_not_trigger_for_too_many_locals +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions_from_builtins +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions_from_builtins_when_builtins_is_module +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_suggestions_from_globals +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_name_error_with_custom_exceptions +func Lib/test/test_traceback.py /^ def func():$/;" f function:SuggestionFormattingTestBase.test_unbound_local_error_does_not_match +func Lib/test/test_ttk_textonly.py /^ def func(res, opt=None, val=None):$/;" f function:InternalFunctionsTest.test_val_or_dict +func Lib/test/test_type_params.py /^ def func[S, T: Sequence[S]]():$/;" f function:TypeParamsAccessTest.test_reference_previous_typevar +func Lib/test/test_type_params.py /^ def func[T]():$/;" f function:TypeParamsLazyEvaluationTest.test_qualname +func Lib/test/test_type_params.py /^ def func[T](a: T = "a", *, b: T = "b"):$/;" f function:TypeParamsComplexCallsTest.test_defaults +func Lib/test/test_type_params.py /^ def func[T](a: T, b: S) -> T | S:$/;" f function:TypeParamsTraditionalTypeVarsTest.test_traditional_03 +func Lib/test/test_types.py /^ def func(*args, **kwargs):$/;" f function:ClassCreationTests.test_metaclass_override_function +func Lib/test/test_types.py /^ def func(ns):$/;" f function:ClassCreationTests.test_new_class_exec_body +func Lib/test/test_types.py /^ def func(ns):$/;" f function:ClassCreationTests.test_new_class_meta_with_base +func Lib/test/test_typing.py /^ def func(): ...$/;" f function:FinalDecoratorTests.test_dunder_final +func Lib/test/test_typing.py /^ def func(x): ...$/;" f function:FinalDecoratorTests.test_final_unmodified +func Lib/test/test_typing.py /^ def func(self: 'ForRefExample'):$/;" m class:ForRefExample +func Lib/test/test_unittest/test_case.py /^ def func() :$/;" f function:.testAssertRaisesRefcount +func Lib/test/test_unittest/testmock/testpatch.py /^ def func(): pass$/;" f function:PatchTest.test_patch_multiple_failure +func Lib/test/test_unittest/testmock/testpatch.py /^ def func(): pass$/;" f function:PatchTest.test_patch_multiple_new_callable_failure.crasher +func Lib/test/tracedmodules/testmod.py /^def func(x):$/;" f +func Modules/_functoolsmodule.c /^ PyObject *func;$/;" m struct:lru_cache_object file: +func Modules/_threadmodule.c /^ PyObject *func;$/;" m struct:bootstate file: +func Modules/_tkinter.c /^ EventFunc func;$/;" m struct:VarEvent file: +func Modules/_tkinter.c /^ PyObject *func;$/;" m struct:__anon336 file: +func Modules/_tkinter.c /^ PyObject *func;$/;" m struct:__anon337 file: +func Modules/_tkinter.c /^ PyObject *func;$/;" m struct:_fhcdata file: +func Modules/itertoolsmodule.c /^ PyObject *func;$/;" m struct:__anon408 file: +func Modules/itertoolsmodule.c /^ PyObject *func;$/;" m struct:__anon409 file: +func Modules/itertoolsmodule.c /^ PyObject *func;$/;" m struct:__anon411 file: +func Modules/itertoolsmodule.c /^ PyObject *func;$/;" m struct:__anon419 file: +func Objects/funcobject.c /^_Py_set_function_type_params(PyThreadState *Py_UNUSED(ignored), PyObject *func,$/;" v +func Programs/_testembed.c /^ int (*func)(void);$/;" m struct:TestCase file: +func Python/bltinmodule.c /^ PyObject *func;$/;" m struct:__anon682 file: +func Python/bltinmodule.c /^ PyObject *func;$/;" m struct:__anon683 file: +func Python/thread_nt.h /^ void (*func)(void*);$/;" m struct:__anon691 +func Python/thread_pthread.h /^ void (*func) (void *);$/;" m struct:__anon693 +func1 Lib/test/_test_atexit.py /^ def func1(*args, **kwargs):$/;" f function:GeneralTest.test_order +func1 Lib/test/_test_multiprocessing.py /^ def func1():$/;" f function:_TestProcess._test_wait_for_threads +func1 Lib/test/test_context.py /^ def func1():$/;" f function:ContextTest.test_context_run_4 +func1 Lib/test/test_inspect.py /^ def func1(): pass$/;" f function:TestUnwrap.test_cycle +func1 Lib/test/test_inspect.py /^ def func1(a, b):$/;" f function:TestUnwrap.test_stop +func1 Lib/test/test_monitoring.py /^ def func1():$/;" f function:ExceptionMonitoringTest.test_simple_try_except +func1 Lib/test/test_monitoring.py /^ def func1():$/;" f function:LineMonitoringTest.test_try_except +func1 Lib/test/test_monitoring.py /^ def func1():$/;" f function:TestLineAndInstructionEvents.test_simple +func1 Lib/test/test_monitoring.py /^ def func1():$/;" f function:TestLineAndInstructionEvents.test_with_restart +func1 Lib/test/test_monitoring.py /^ def func1():$/;" f function:TestLocalEvents.test_simple +func1 Lib/test/test_monitoring.py /^ def func1():$/;" f function:TestManyEvents.test_simple +func1 Lib/test/test_monitoring.py /^ def func1():$/;" m class:TestInstallIncrementallly +func1 Lib/test/test_type_params.py /^ def func1():$/;" f function:TypeParamsTypeParamsDunder.test_typeparams_dunder_function_02 +func1 Lib/test/test_type_params.py /^ def func1[**A]():$/;" f function:TypeParamsTypeVarParamSpecTest.test_paramspec_02 +func1 Lib/test/test_type_params.py /^ def func1[*A]():$/;" f function:TypeParamsTypeVarTupleTest.test_typevartuple_02 +func1 Lib/test/test_type_params.py /^ def func1[A: str, B: str | int, C: (int, str)]():$/;" f function:TypeParamsTypeVarTest.test_typevar_01 +func1 Lib/test/test_type_params.py /^def func1[X](x: X) -> X: ...$/;" f +func1 Lib/test/test_typing.py /^ def func1(*args: '*Ts'): pass$/;" f function:TypeVarTupleTests.test_get_type_hints_on_unpack_args_string +func1 Lib/test/test_typing.py /^ def func1(*args: *Ts): pass$/;" f function:TypeVarTupleTests.test_get_type_hints_on_unpack_args +func114 Lib/test/inspect_fodder2.py /^def func114():$/;" f +func136 Lib/test/inspect_fodder2.py /^ def func136():$/;" m class:cls135 +func137 Lib/test/inspect_fodder2.py /^ def func137():$/;" f function:cls135.func136 +func151 Lib/test/inspect_fodder2.py /^ def func151(self):$/;" m class:cls149 +func162 Lib/test/inspect_fodder2.py /^ def func162(self):$/;" m class:cls160 +func186 Lib/test/inspect_fodder2.py /^ def func186(self):$/;" m class:cls183.cls185 +func2 Lib/test/_test_atexit.py /^ def func2(*args, **kwargs):$/;" f function:GeneralTest.test_order +func2 Lib/test/_test_multiprocessing.py /^ def func2():$/;" f function:_TestProcess._test_wait_for_threads +func2 Lib/test/test_code.py /^ def func2():$/;" f function:CodeTest.test_replace +func2 Lib/test/test_context.py /^ def func2():$/;" f function:ContextTest.test_context_run_4 +func2 Lib/test/test_inspect.py /^ def func2(): pass$/;" f function:TestUnwrap.test_cycle +func2 Lib/test/test_inspect.py /^ def func2():$/;" f function:TestUnwrap.test_stop +func2 Lib/test/test_inspect.py /^ def func2(foo: Foo, bar: 'Bar') -> int: pass$/;" f function:TestSignatureObject.test_signature_annotations_with_local_namespaces +func2 Lib/test/test_monitoring.py /^ def func2():$/;" f function:LineMonitoringTest.test_try_except +func2 Lib/test/test_monitoring.py /^ def func2():$/;" f function:TestLineAndInstructionEvents.test_c_call +func2 Lib/test/test_monitoring.py /^ def func2():$/;" f function:TestLocalEvents.test_c_call +func2 Lib/test/test_monitoring.py /^ def func2():$/;" f function:TestManyEvents.test_c_call +func2 Lib/test/test_monitoring.py /^ def func2():$/;" m class:TestInstallIncrementallly +func2 Lib/test/test_type_params.py /^def func2[X, Y](x: X | Y) -> X | Y: ...$/;" f +func2 Lib/test/test_typing.py /^ def func2(*args: '*tuple[int, str]'): pass$/;" f function:TypeVarTupleTests.test_get_type_hints_on_unpack_args_string +func2 Lib/test/test_typing.py /^ def func2(*args: *tuple[int, str]): pass$/;" f function:TypeVarTupleTests.test_get_type_hints_on_unpack_args +func2 Lib/test/tracedmodules/testmod.py /^def func2():$/;" f +func212 Lib/test/inspect_fodder2.py /^def func212():$/;" f +func219 Lib/test/inspect_fodder2.py /^ def func219(self):$/;" m class:cls213 +func225 Lib/test/inspect_fodder2.py /^async def func225():$/;" f +func232 Lib/test/inspect_fodder2.py /^ async def func232(self):$/;" m class:cls226 +func3 Lib/test/test_monitoring.py /^ def func3():$/;" f function:TestLineAndInstructionEvents.test_try_except +func3 Lib/test/test_monitoring.py /^ def func3():$/;" f function:TestLocalEvents.test_try_except +func3 Lib/test/test_monitoring.py /^ def func3():$/;" f function:TestManyEvents.test_try_except +func3 Lib/test/test_type_params.py /^def func3[X, *Y, **Z](x: X, y: tuple[*Y], z: Z) -> X: ...$/;" f +func3 Lib/test/test_typing.py /^ def func3(*args: '*CustomVariadic[int, str]'): pass$/;" f function:TypeVarTupleTests.test_get_type_hints_on_unpack_args_string +func3 Lib/test/test_typing.py /^ def func3(*args: *CustomVariadic[int, str]): pass$/;" f function:TypeVarTupleTests.test_get_type_hints_on_unpack_args +func4 Lib/test/test_type_params.py /^def func4[X: int, Y: (bytes, str)](x: X, y: Y) -> X | Y: ...$/;" f +func69 Lib/test/inspect_fodder2.py /^def func69():$/;" f +func71 Lib/test/inspect_fodder2.py /^ def func71():$/;" m class:func69.cls70 +func77 Lib/test/inspect_fodder2.py /^def func77(): pass$/;" f +func83 Lib/test/inspect_fodder2.py /^ def func83(): pass$/;" m class:cls82 +func88 Lib/test/inspect_fodder2.py /^def func88():$/;" f +funcHeader Parser/asdl_c.py /^ def funcHeader(self, name):$/;" m class:Obj2ModVisitor +func_PyCursesInitialised Modules/_cursesmodule.c /^static int func_PyCursesInitialised(void)$/;" f file: +func_PyCursesInitialisedColor Modules/_cursesmodule.c /^static int func_PyCursesInitialisedColor(void)$/;" f file: +func_PyCursesSetupTermCalled Modules/_cursesmodule.c /^static int func_PyCursesSetupTermCalled(void)$/;" f file: +func_annotations Include/cpython/funcobject.h /^ PyObject *func_annotations; \/* Annotations, a dict or NULL *\/$/;" m struct:__anon221 +func_begin Parser/asdl_c.py /^ def func_begin(self, name):$/;" m class:ObjVisitor +func_break Lib/test/test_sys_settrace.py /^ def func_break():$/;" f function:TraceTestCase.test_early_exit_with +func_callback Modules/_sqlite/connection.c /^func_callback(sqlite3_context *context, int argc, sqlite3_value **argv)$/;" f file: +func_clear Objects/funcobject.c /^func_clear(PyFunctionObject *op)$/;" f file: +func_dealloc Objects/funcobject.c /^func_dealloc(PyFunctionObject *op)$/;" f file: +func_descr_get Modules/_testcapi/vectorcall.c /^func_descr_get(PyObject *func, PyObject *obj, PyObject *type)$/;" f file: +func_descr_get Objects/funcobject.c /^func_descr_get(PyObject *func, PyObject *obj, PyObject *type)$/;" f file: +func_dict Include/cpython/funcobject.h /^ PyObject *func_dict; \/* The __dict__ attribute, a dict or NULL *\/$/;" m struct:__anon221 +func_doc Include/cpython/funcobject.h /^ PyObject *func_doc; \/* The __doc__ attribute, can be anything *\/$/;" m struct:__anon221 +func_end Parser/asdl_c.py /^ def func_end(self):$/;" m class:ObjVisitor +func_event_name Objects/funcobject.c /^func_event_name(PyFunction_WatchEvent event) {$/;" f file: +func_get_annotation_dict Objects/funcobject.c /^func_get_annotation_dict(PyFunctionObject *op)$/;" f file: +func_get_annotations Objects/funcobject.c /^func_get_annotations(PyFunctionObject *op, void *Py_UNUSED(ignored))$/;" f file: +func_get_code Objects/funcobject.c /^func_get_code(PyFunctionObject *op, void *Py_UNUSED(ignored))$/;" f file: +func_get_defaults Objects/funcobject.c /^func_get_defaults(PyFunctionObject *op, void *Py_UNUSED(ignored))$/;" f file: +func_get_function_name Lib/pstats.py /^def func_get_function_name(func):$/;" f +func_get_kwdefaults Objects/funcobject.c /^func_get_kwdefaults(PyFunctionObject *op, void *Py_UNUSED(ignored))$/;" f file: +func_get_name Objects/funcobject.c /^func_get_name(PyFunctionObject *op, void *Py_UNUSED(ignored))$/;" f file: +func_get_qualname Objects/funcobject.c /^func_get_qualname(PyFunctionObject *op, void *Py_UNUSED(ignored))$/;" f file: +func_get_type_params Objects/funcobject.c /^func_get_type_params(PyFunctionObject *op, void *Py_UNUSED(ignored))$/;" f file: +func_getsetlist Objects/funcobject.c /^static PyGetSetDef func_getsetlist[] = {$/;" v file: +func_memberlist Objects/funcobject.c /^static PyMemberDef func_memberlist[] = {$/;" v file: +func_memoryerror Lib/test/test_sqlite3/test_userfunctions.py /^def func_memoryerror():$/;" f +func_module Include/cpython/funcobject.h /^ PyObject *func_module; \/* The __module__ attribute, can be anything *\/$/;" m struct:__anon221 +func_names Lib/test/test_heapq.py /^func_names = ['heapify', 'heappop', 'heappush', 'heappushpop', 'heapreplace',$/;" v +func_names Lib/test/test_statistics.py /^ func_names = ['_normal_dist_inv_cdf']$/;" v class:TestModules +func_names Lib/test/test_typing.py /^ func_names = ['_idfunc']$/;" v class:TestModules +func_new Objects/clinic/funcobject.c.h /^func_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +func_new_impl Objects/funcobject.c /^func_new_impl(PyTypeObject *type, PyCodeObject *code, PyObject *globals,$/;" f file: +func_overflowerror Lib/test/test_sqlite3/test_userfunctions.py /^def func_overflowerror():$/;" f +func_raiseexception Lib/test/test_sqlite3/test_userfunctions.py /^def func_raiseexception():$/;" f +func_repr Lib/test/test_asyncio/test_futures.py /^ def func_repr(func):$/;" f function:BaseFutureTests.test_future_repr +func_repr Objects/funcobject.c /^func_repr(PyFunctionObject *op)$/;" f file: +func_return Lib/test/test_sys_settrace.py /^ def func_return():$/;" f function:TraceTestCase.test_early_exit_with +func_returnblob Lib/test/test_sqlite3/test_userfunctions.py /^def func_returnblob():$/;" f +func_returnfloat Lib/test/test_sqlite3/test_userfunctions.py /^def func_returnfloat():$/;" f +func_returnint Lib/test/test_sqlite3/test_userfunctions.py /^def func_returnint():$/;" f +func_returnlonglong Lib/test/test_sqlite3/test_userfunctions.py /^def func_returnlonglong():$/;" f +func_returnnull Lib/test/test_sqlite3/test_userfunctions.py /^def func_returnnull():$/;" f +func_returntext Lib/test/test_sqlite3/test_userfunctions.py /^def func_returntext():$/;" f +func_returntextwithnull Lib/test/test_sqlite3/test_userfunctions.py /^def func_returntextwithnull():$/;" f +func_returnunicode Lib/test/test_sqlite3/test_userfunctions.py /^def func_returnunicode():$/;" f +func_set_annotations Objects/funcobject.c /^func_set_annotations(PyFunctionObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +func_set_code Objects/funcobject.c /^func_set_code(PyFunctionObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +func_set_defaults Objects/funcobject.c /^func_set_defaults(PyFunctionObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +func_set_kwdefaults Objects/funcobject.c /^func_set_kwdefaults(PyFunctionObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +func_set_name Objects/funcobject.c /^func_set_name(PyFunctionObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +func_set_qualname Objects/funcobject.c /^func_set_qualname(PyFunctionObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +func_set_type_params Objects/funcobject.c /^func_set_type_params(PyFunctionObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +func_state Include/internal/pycore_interp.h /^ struct _py_func_state func_state;$/;" m struct:_is typeref:struct:_is::_py_func_state +func_std_string Lib/pstats.py /^def func_std_string(func_name): # match what old profile produced$/;" f +func_strip_path Lib/pstats.py /^def func_strip_path(func_name):$/;" f +func_traverse Objects/funcobject.c /^func_traverse(PyFunctionObject *f, visitproc visit, void *arg)$/;" f file: +func_type_comment_rule Parser/parser.c /^func_type_comment_rule(Parser *p)$/;" f file: +func_type_comment_type Parser/parser.c 273;" d file: +func_type_rule Parser/parser.c /^func_type_rule(Parser *p)$/;" f file: +func_type_type Parser/parser.c 84;" d file: +func_typeparams Include/cpython/funcobject.h /^ PyObject *func_typeparams; \/* Tuple of active type variables or NULL *\/$/;" m struct:__anon221 +func_version Include/cpython/funcobject.h /^ uint32_t func_version;$/;" m struct:__anon221 +func_version Include/internal/pycore_code.h /^ uint16_t func_version[2];$/;" m struct:__anon26 +func_w_kwargs Lib/test/test_dis.py /^def func_w_kwargs(a, b, **c):$/;" f +func_watcher_callbacks Modules/_testcapi/watchers.c /^static PyFunction_WatchCallback func_watcher_callbacks[NUM_TEST_FUNC_WATCHERS] = {$/;" v file: +func_watcher_ids Modules/_testcapi/watchers.c /^static int func_watcher_ids[NUM_TEST_FUNC_WATCHERS] = {-1, -1};$/;" v file: +func_watchers Include/internal/pycore_interp.h /^ PyFunction_WatchCallback func_watchers[FUNC_MAX_WATCHERS];$/;" m struct:_is +func_weakreflist Include/cpython/funcobject.h /^ PyObject *func_weakreflist; \/* List of weak references *\/$/;" m struct:__anon221 +func_with_docstring Lib/test/doctest_lineno.py /^def func_with_docstring():$/;" f +func_with_doctest Lib/test/doctest_lineno.py /^def func_with_doctest():$/;" f +func_without_docstring Lib/test/doctest_lineno.py /^def func_without_docstring():$/;" f +func_wrapper Lib/tempfile.py /^ def func_wrapper(*args, **kwargs):$/;" f function:_TemporaryFileWrapper.__getattr__ +funcattrs Lib/test/test_decorators.py /^def funcattrs(**kwds):$/;" f +funclike Lib/test/test_inspect.py /^ class funclike:$/;" c function:TestSignatureObject.test_signature_from_functionlike_object +funclike Lib/test/test_inspect.py /^ class funclike:$/;" c function:TestSignatureObject.test_signature_functionlike_class +funclike Lib/test/test_inspect.py /^ class funclike:$/;" c function:TestSignatureObject.test_signature_none_annotation +funcname Tools/c-analyzer/c_parser/info.py /^ def funcname(self):$/;" m class:ParsedItem +funcptr Objects/descrobject.c /^typedef void (*funcptr)(void);$/;" t file: +funcptr Objects/methodobject.c /^typedef void (*funcptr)(void);$/;" t file: +funcs_to_dict Modules/getpath.c /^funcs_to_dict(PyObject *dict, int warnings)$/;" f file: +function Include/cpython/descrobject.h /^ void *function;$/;" m struct:wrapperbase +function Lib/test/inspect_stock_annotations.py /^def function(a:int, b:str) -> MyClass:$/;" f +function Lib/test/inspect_stringized_annotations.py /^def function(a:int, b:str) -> MyClass:$/;" f +function Lib/test/test_inspect.py /^ def function():$/;" f function:TestIsDataDescriptor.test_functions +function Lib/test/test_unittest/testmock/testpatch.py /^ def function(mock):$/;" f function:PatchTest.test_autospec +function Lib/test/test_unittest/testmock/testpatch.py /^def function(a, b=Foo): pass$/;" f +function2 Lib/test/inspect_stock_annotations.py /^def function2(a:int, b:"str", c:MyClass) -> MyClass:$/;" f +function2 Lib/test/inspect_stringized_annotations.py /^def function2(a:int, b:"str", c:MyClass) -> MyClass:$/;" f +function3 Lib/test/inspect_stock_annotations.py /^def function3(a:"int", b:"str", c:"MyClass"):$/;" f +function3 Lib/test/inspect_stringized_annotations.py /^def function3(a:"int", b:"str", c:"MyClass"):$/;" f +function_1 Lib/test/dtracedata/call_stack.py /^def function_1():$/;" f +function_2 Lib/test/dtracedata/call_stack.py /^def function_2():$/;" f +function_3 Lib/test/dtracedata/call_stack.py /^def function_3(dummy, dummy2):$/;" f +function_4 Lib/test/dtracedata/call_stack.py /^def function_4(**dummy):$/;" f +function_5 Lib/test/dtracedata/call_stack.py /^def function_5(dummy, dummy2, **dummy3):$/;" f +function_as_string Modules/_decimal/tests/deccheck.py /^def function_as_string(t):$/;" f +function_check_args Python/specialize.c /^function_check_args(PyObject *o, int expected_argcount, int opcode)$/;" f file: +function_def_raw_rule Parser/parser.c /^function_def_raw_rule(Parser *p)$/;" f file: +function_def_raw_type Parser/parser.c 116;" d file: +function_def_rule Parser/parser.c /^function_def_rule(Parser *p)$/;" f file: +function_def_type Parser/parser.c 115;" d file: +function_example Lib/test/test_capi/test_misc.py /^ def function_example(): ...$/;" f function:CAPITest.test_eval_get_func_desc +function_example Lib/test/test_capi/test_misc.py /^ def function_example(): ...$/;" f function:CAPITest.test_eval_get_func_name +function_get_code Modules/_testcapimodule.c /^function_get_code(PyObject *self, PyObject *func)$/;" f file: +function_get_defaults Modules/_testcapimodule.c /^function_get_defaults(PyObject *self, PyObject *func)$/;" f file: +function_get_globals Modules/_testcapimodule.c /^function_get_globals(PyObject *self, PyObject *func)$/;" f file: +function_get_kw_defaults Modules/_testcapimodule.c /^function_get_kw_defaults(PyObject *self, PyObject *func)$/;" f file: +function_get_module Modules/_testcapimodule.c /^function_get_module(PyObject *self, PyObject *func)$/;" f file: +function_get_version Python/specialize.c /^function_get_version(PyObject *o, int opcode)$/;" f file: +function_kind Python/specialize.c /^function_kind(PyCodeObject *code) {$/;" f file: +function_name Modules/posixmodule.c /^ const char *function_name;$/;" m struct:__anon478 file: +function_set_defaults Modules/_testcapimodule.c /^function_set_defaults(PyObject *self, PyObject *args)$/;" f file: +function_set_kw_defaults Modules/_testcapimodule.c /^function_set_kw_defaults(PyObject *self, PyObject *args)$/;" f file: +function_setvectorcall Modules/_testcapi/vectorcall.c /^function_setvectorcall(PyObject *self, PyObject *func)$/;" f file: +function_without_closures Lib/test/test_builtin.py /^ def function_without_closures():$/;" f function:BuiltinTest.test_exec_closure +functions Lib/test/test_os.py /^ functions = [$/;" v class:PathTConverterTests +functions Tools/c-analyzer/c_parser/info.py /^ def functions(self):$/;" m class:Declarations +functools_copy_attr Objects/funcobject.c /^functools_copy_attr(PyObject *wrapper, PyObject *wrapped, PyObject *name)$/;" f file: +functools_reduce Modules/_functoolsmodule.c /^functools_reduce(PyObject *self, PyObject *args)$/;" f file: +functools_wraps Objects/funcobject.c /^functools_wraps(PyObject *wrapper, PyObject *wrapped)$/;" f file: +functype Lib/test/test_ctypes/test_callbacks.py /^ functype = WINFUNCTYPE$/;" v class:StdcallCallbacks +functype Lib/test/test_ctypes/test_callbacks.py /^ functype = CFUNCTYPE$/;" v class:Callbacks +fut Lib/test/test_asyncio/test_futures.py /^ fut = self._new_future(loop=self.loop)$/;" v class:BaseFutureTests.test_future_del_collect.Evil +fut_on_done Lib/test/test_asyncio/test_tasks.py /^ def fut_on_done(fut):$/;" f function:BaseTaskTests.test_context_2.main +fut_state Modules/_asynciomodule.c /^} fut_state;$/;" t typeref:enum:__anon309 file: +future Modules/_asynciomodule.c /^ FutureObj *future;$/;" m struct:futureiterobject file: +future_add_done_callback Modules/_asynciomodule.c /^future_add_done_callback(asyncio_state *state, FutureObj *fut, PyObject *arg,$/;" f file: +future_cancel Modules/_asynciomodule.c /^future_cancel(asyncio_state *state, FutureObj *fut, PyObject *msg)$/;" f file: +future_check_features Python/future.c /^future_check_features(PyFutureFeatures *ff, stmt_ty s, PyObject *filename)$/;" f file: +future_ensure_alive Modules/_asynciomodule.c /^future_ensure_alive(FutureObj *fut)$/;" f file: +future_func Lib/test/test_concurrent_futures/test_wait.py /^ def future_func():$/;" f function:ThreadPoolWaitTests.test_pending_calls_race +future_get_result Modules/_asynciomodule.c /^future_get_result(asyncio_state *state, FutureObj *fut, PyObject **result)$/;" f file: +future_init Modules/_asynciomodule.c /^future_init(FutureObj *fut, PyObject *loop)$/;" f file: +future_is_alive Modules/_asynciomodule.c /^future_is_alive(FutureObj *fut)$/;" f file: +future_new_iter Modules/_asynciomodule.c /^future_new_iter(PyObject *fut)$/;" f file: +future_parse Python/future.c /^future_parse(PyFutureFeatures *ff, mod_ty mod, PyObject *filename)$/;" f file: +future_schedule_callbacks Modules/_asynciomodule.c /^future_schedule_callbacks(asyncio_state *state, FutureObj *fut)$/;" f file: +future_set_cancelled_error Modules/_asynciomodule.c /^future_set_cancelled_error(asyncio_state *state, FutureObj *fut)$/;" f file: +future_set_exception Modules/_asynciomodule.c /^future_set_exception(asyncio_state *state, FutureObj *fut, PyObject *exc)$/;" f file: +future_set_result Modules/_asynciomodule.c /^future_set_result(asyncio_state *state, FutureObj *fut, PyObject *res)$/;" f file: +futureiterobject Modules/_asynciomodule.c /^typedef struct futureiterobject futureiterobject;$/;" t typeref:struct:futureiterobject file: +futureiterobject Modules/_asynciomodule.c /^typedef struct futureiterobject {$/;" s file: +futureiterobject Modules/_asynciomodule.c /^} futureiterobject;$/;" t typeref:struct:futureiterobject file: +fuzz Lib/test/test_timeout.py /^ fuzz = 2.0$/;" v class:TimeoutTestCase +fuzz_ast_literal_eval Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_ast_literal_eval(const char* data, size_t size) {$/;" f file: +fuzz_builtin_float Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_builtin_float(const char* data, size_t size) {$/;" f file: +fuzz_builtin_int Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_builtin_int(const char* data, size_t size) {$/;" f file: +fuzz_builtin_unicode Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_builtin_unicode(const char* data, size_t size) {$/;" f file: +fuzz_csv_reader Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_csv_reader(const char* data, size_t size) {$/;" f file: +fuzz_json_loads Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_json_loads(const char* data, size_t size) {$/;" f file: +fuzz_sre_compile Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_sre_compile(const char* data, size_t size) {$/;" f file: +fuzz_sre_match Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_sre_match(const char* data, size_t size) {$/;" f file: +fuzz_struct_unpack Modules/_xxtestfuzz/fuzzer.c /^static int fuzz_struct_unpack(const char* data, size_t size) {$/;" f file: +fwalk Lib/os.py /^ def fwalk(top=".", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None):$/;" f +fwalk Lib/test/test_os.py /^ def fwalk(self, *args, **kwargs):$/;" m class:FwalkTests +fwalk Lib/test/test_os.py /^ def fwalk(self, top='.', *args, **kwargs):$/;" m class:BytesFwalkTests +g Doc/includes/mp_newtype.py /^ def g(self):$/;" m class:Foo +g Lib/cgi.py /^ def g(f=f):$/;" f function:test +g Lib/test/_test_multiprocessing.py /^ def g(self):$/;" m class:FooBar +g Lib/test/badsyntax_future3.py /^ def g(y):$/;" f function:f +g Lib/test/badsyntax_future4.py /^ def g(y):$/;" f function:f +g Lib/test/badsyntax_future5.py /^ def g(y):$/;" f function:f +g Lib/test/badsyntax_future6.py /^ def g(y):$/;" f function:f +g Lib/test/badsyntax_future7.py /^ def g(y):$/;" f function:f +g Lib/test/badsyntax_future8.py /^ def g(y):$/;" f function:f +g Lib/test/badsyntax_future9.py /^ def g(y):$/;" f function:f +g Lib/test/crashers/gc_inspection.py /^def g():$/;" f +g Lib/test/crashers/trace_at_recursion_limit.py /^def g(*args):$/;" f +g Lib/test/dis_module.py /^def g(): pass$/;" f +g Lib/test/doctest_aliases.py /^ g = f # define an alias for f$/;" v class:TwoNames +g Lib/test/future_test1.py /^ def g(y):$/;" f function:f +g Lib/test/future_test2.py /^ def g(y):$/;" f function:f +g Lib/test/inspect_fodder2.py /^ def g():$/;" m class:f.X +g Lib/test/mapping_tests.py /^ def g():$/;" f function:TestMappingProtocol.test_fromkeys +g Lib/test/pickletester.py /^ def g():$/;" f function:AbstractHookTests.test_pickler_hook +g Lib/test/test_asyncio/test_runners.py /^ async def g():$/;" f function:RunnerTests.test_recursive_run +g Lib/test/test_bytes.py /^ def g():$/;" f function:ByteArrayTest.test_init_alloc +g Lib/test/test_class.py /^ def g(self):$/;" m class:ClassTests.testHashComparisonOfMethods.A +g Lib/test/test_coroutines.py /^ async def g():$/;" f function:CoroutineTest.test_await_16 +g Lib/test/test_coroutines.py /^ async def g():$/;" f function:CoroutineTest.test_func_12 +g Lib/test/test_coroutines.py /^ async def g():$/;" f function:CoroutineTest.test_func_13 +g Lib/test/test_descr.py /^ g = G()$/;" v class:.test_slots.F +g Lib/test/test_dict.py /^ def g():$/;" f function:DictTest.test_fromkeys +g Lib/test/test_dictcomps.py /^g = "Global variable"$/;" v +g Lib/test/test_dynamic.py /^ def g():$/;" f function:TestTracing.test_after_specialization +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.testInfiniteRecursion +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.test_badisinstance +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.test_generator_doesnt_retain_old_exc +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.test_generator_doesnt_retain_old_exc2 +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.test_generator_leaking2 +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.test_generator_leaking3 +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.test_generator_leaking4 +g Lib/test/test_exceptions.py /^ def g():$/;" f function:ExceptionTests.test_raise_in_generator +g Lib/test/test_frame.py /^ def g():$/;" f function:ClearTest.test_clear_executing_generator +g Lib/test/test_frame.py /^ def g():$/;" f function:ClearTest.test_clear_generator +g Lib/test/test_fstring.py /^ def g():$/;" f function:.test_docstring +g Lib/test/test_functools.py /^ def g(arg):$/;" m class:TestSingleDispatch.test_cache_invalidation.TracingDict +g Lib/test/test_functools.py /^ def g(arg):$/;" f function:TestSingleDispatch.test_mro_conflicts +g Lib/test/test_functools.py /^ def g(obj):$/;" f function:TestSingleDispatch.test_c_classes +g Lib/test/test_functools.py /^ def g(obj):$/;" f function:TestSingleDispatch.test_mro +g Lib/test/test_functools.py /^ def g(obj):$/;" f function:TestSingleDispatch.test_register_abc +g Lib/test/test_functools.py /^ def g(obj):$/;" f function:TestSingleDispatch.test_register_decorator +g Lib/test/test_functools.py /^ def g(obj):$/;" f function:TestSingleDispatch.test_simple_overloads +g Lib/test/test_functools.py /^ def g(obj):$/;" f function:TestSingleDispatch.test_wrapping_attributes +g Lib/test/test_generator_stop.py /^ def g():$/;" f function:TestPEP479.test_stopiteration_wrapping +g Lib/test/test_generator_stop.py /^ def g():$/;" f function:TestPEP479.test_stopiteration_wrapping_context +g Lib/test/test_generators.py /^ def g(): return (yield 1)$/;" f function:FinalizationTest.test_lambda_generator +g Lib/test/test_generators.py /^ def g():$/;" f function:ExceptionTest.test_gen_3_arg_deprecation_warning +g Lib/test/test_generators.py /^ def g():$/;" f function:ExceptionTest.test_return_stopiteration +g Lib/test/test_generators.py /^ def g():$/;" f function:ExceptionTest.test_return_tuple +g Lib/test/test_generators.py /^ def g():$/;" f function:GeneratorStackTraceTest.check_yield_from_example +g Lib/test/test_generators.py /^ def g():$/;" f function:GeneratorThrowTest.test_exception_context_with_yield_from +g Lib/test/test_generators.py /^ def g():$/;" f function:GeneratorThrowTest.test_throw_after_none_exc_type +g Lib/test/test_generators.py /^ def g(exc):$/;" f function:GeneratorThrowTest.test_exception_context_with_yield_from_with_context_cycle +g Lib/test/test_grammar.py /^ def g(): 1, (yield 1)$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): 1, (yield from ())$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): [x for x in [(yield 1)]]$/;" f function:GrammarTests.test_yield_in_comprehensions +g Lib/test/test_grammar.py /^ def g(): [x for x in [(yield from ())]]$/;" f function:GrammarTests.test_yield_in_comprehensions +g Lib/test/test_grammar.py /^ def g(): f((yield 1))$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): f((yield 1), 1)$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): f((yield from ()))$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): f((yield from ()), 1)$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): rest = 4, 5, 6; yield 1, 2, 3, *rest$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): x = yield 1$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): x = yield 1, 1$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): x = yield from ()$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): yield 1$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): yield 1, 1$/;" f function:GrammarTests.test_yield +g Lib/test/test_grammar.py /^ def g(): yield from ()$/;" f function:GrammarTests.test_yield +g Lib/test/test_heapq.py /^ class g(int):$/;" c function:TestErrorHandling.test_comparison_operator_modifiying_heap_two_heaps +g Lib/test/test_inspect.py /^ def g(local_ref):$/;" f function:TestGetClosureVars.test_method_closure.C.f +g Lib/test/test_inspect.py /^ def g(f):$/;" f function:TestGetClosureVars.test_nonlocal_vars.Y +g Lib/test/test_inspect.py /^ def g(local_ref):$/;" f function:TestGetClosureVars.test_generator_closure.f +g Lib/test/test_inspect.py /^ def g(local_ref):$/;" f function:TestGetClosureVars.test_name_resolution.f +g Lib/test/test_inspect.py /^ g = partialmethod(test, 1)$/;" v class:TestSignatureObject.test_signature_on_partialmethod.Spam +g Lib/test/test_itertools.py /^ def g(value, first=[1]):$/;" f function:RegressionTests.test_sf_793826.mutatingtuple +g Lib/test/test_named_expressions.py /^ def g():$/;" f function:.test_named_expression_nonlocal_scope.f +g Lib/test/test_named_expressions.py /^ def g():$/;" f function:.test_named_expression_nonlocal_scope_no_nonlocal_keyword.f +g Lib/test/test_peepholer.py /^ def g()->1+1:$/;" f function:TestTranforms.test_make_function_doesnt_bail.f +g Lib/test/test_peepholer.py /^ def g():$/;" f function:TestTranforms.test_global_as_constant +g Lib/test/test_peepholer.py /^ def g(a):$/;" f function:TestTranforms.test_folding_of_sets_of_constants +g Lib/test/test_positional_only_arg.py /^ def g(x2,\/,y2):$/;" f function:PositionalOnlyTestCase.test_closures.f +g Lib/test/test_positional_only_arg.py /^ def g(x2,y2):$/;" f function:PositionalOnlyTestCase.test_closures.f +g Lib/test/test_positional_only_arg.py /^ def g():$/;" f function:PositionalOnlyTestCase.test_annotations_constant_fold +g Lib/test/test_scope.py /^ def g():$/;" f function:ScopeTests.testEvalFreeVars.f +g Lib/test/test_scope.py /^ def g():$/;" f function:ScopeTests.testNestedNonLocal.f +g Lib/test/test_scope.py /^ def g(a, b, c):$/;" f function:ScopeTests.testMixedFreevarsAndCellvars.f +g Lib/test/test_scope.py /^ def g(y):$/;" f function:ScopeTests.testLocalsFunction.f +g Lib/test/test_scope.py /^ def g(y):$/;" f function:ScopeTests.testNearestEnclosingScope.f +g Lib/test/test_scope.py /^ def g(y):$/;" f function:ScopeTests.testNonLocalGenerator.f +g Lib/test/test_super.py /^ def g():$/;" f function:TestSuper.test_cell_as_self.f +g Lib/test/test_sys_setprofile.py /^ def g():$/;" f function:ProfileHookTestCase.test_distant_exception +g Lib/test/test_sys_setprofile.py /^ def g():$/;" f function:ProfileSimulatorTestCase.test_distant_exception +g Lib/test/test_sys_setprofile.py /^ def g(p):$/;" f function:ProfileHookTestCase.test_exception_in_except_clause +g Lib/test/test_sys_setprofile.py /^ def g(p):$/;" f function:ProfileHookTestCase.test_exception_propagation +g Lib/test/test_sys_setprofile.py /^ def g(p):$/;" f function:ProfileHookTestCase.test_generator +g Lib/test/test_sys_setprofile.py /^ def g(p):$/;" f function:ProfileHookTestCase.test_stop_iteration +g Lib/test/test_sys_settrace.py /^ def g(frame, event, arg):$/;" f function:RaisingTraceFuncTestCase.test_exception_arguments +g Lib/test/test_sys_settrace.py /^ def g(frame, why, extra):$/;" f function:RaisingTraceFuncTestCase.test_trash_stack +g Lib/test/test_traceback.py /^ def g(): pass$/;" f function:TracebackErrorLocationCaretTestBase.test_decorator_application_lineno_correct.applydecs +g Lib/test/test_traceback.py /^ def g():$/;" f function:TestStack.test_dropping_frames +g Lib/test/test_traceback.py /^ def g(count=10):$/;" f function:TracebackFormatTests._check_recursive_traceback_display +g Lib/test/test_traceback.py /^ def g(v):$/;" f function:TestTracebackException_ExceptionGroups._get_exception_group +g Lib/test/test_tracemalloc.py /^ def g():$/;" f function:TestTracemallocEnabled.test_no_incomplete_frames.f +g Lib/test/test_typing.py /^ def g(): yield 0$/;" f function:CollectionsAbcTests.test_subclassing +g Lib/test/test_typing.py /^ def g(*args: *Ts): pass$/;" f function:TypeVarTupleTests.test_variadic_args_annotations_are_correct +g Lib/test/test_typing.py /^ def g(*args: Unpack[Tuple[str, Unpack[Ts], int]]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +g Lib/test/test_typing.py /^ def g(x: collections.abc.Callable[..., int]): ...$/;" f function:GetTypeHintTests.test_get_type_hints_collections_abc_callable +g Lib/test/test_unittest/testmock/testhelpers.py /^ def g(a, b): pass$/;" m class:SpecSignatureTest.test_descriptors.Foo +g Lib/test/test_unittest/testmock/testpatch.py /^ def g(self): pass$/;" m class:PatchTest.test_autospec.Boo +g Lib/test/test_unittest/testmock/testpatch.py /^ def g(self): pass$/;" m class:Foo +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_attempting_to_send_to_non_generator +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_broken_getattr_handling +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_conversion_of_sendNone_to_next +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_delegating_throw_to_non_generator +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_delegation_of_close_to_non_generator +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_delegation_of_next_to_non_generator +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_throwing_GeneratorExit_into_subgen_that_raises +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_throwing_GeneratorExit_into_subgen_that_returns +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_throwing_GeneratorExit_into_subgenerator_that_yields +g Lib/test/test_yield_from.py /^ def g():$/;" f function:TestPEP380Operation.test_yield_from_empty +g Lib/test/test_yield_from.py /^ def g(r):$/;" f function:TestPEP380Operation.test_next_and_return_with_value +g Lib/test/test_yield_from.py /^ def g(r):$/;" f function:TestPEP380Operation.test_send_and_return_with_value +g Lib/turtledemo/chaos.py /^def g(x):$/;" f +g Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +g1 Lib/test/test_grammar.py /^ def g1(): return$/;" f function:GrammarTests.test_return +g1 Lib/test/test_grammar.py /^ def g1():$/;" f function:GrammarTests.test_return_in_finally +g1 Lib/test/test_grammar.py /^ def g1(x):$/;" f function:GrammarTests.test_break_in_finally_after_return +g1 Lib/test/test_grammar.py /^ def g1(x):$/;" f function:GrammarTests.test_continue_in_finally_after_return +g1 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def g1(): return$/;" f function:GrammarTests.testReturn +g1 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def g1(): return$/;" f function:GrammarTests.testReturn +g1 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def g1(): yield 1$/;" f function:GrammarTests.testYield +g1 Lib/test/test_monitoring.py /^def g1():$/;" f +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_attempted_yield_from_loop +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_delegating_close +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_delegating_throw +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_delegation_of_initial_next_to_subgenerator +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_delegation_of_next_call_to_subgenerator +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_delegation_of_send +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_exception_in_initial_next_call +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_exception_value_crash +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_generator_return_value +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_handing_exception_while_delegating_close +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_handling_exception_while_delegating_send +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_raising_exception_in_delegated_next_call +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_raising_exception_in_initial_next_call +g1 Lib/test/test_yield_from.py /^ def g1():$/;" f function:TestPEP380Operation.test_returning_value_from_delegated_throw +g2 Lib/test/test_generators.py /^ def g2(): return (yield from g())$/;" f function:FinalizationTest.test_lambda_generator +g2 Lib/test/test_grammar.py /^ def g2(): return 1$/;" f function:GrammarTests.test_return +g2 Lib/test/test_grammar.py /^ def g2():$/;" f function:GrammarTests.test_return_in_finally +g2 Lib/test/test_grammar.py /^ def g2(x):$/;" f function:GrammarTests.test_break_in_finally_after_return +g2 Lib/test/test_grammar.py /^ def g2(x):$/;" f function:GrammarTests.test_continue_in_finally_after_return +g2 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def g2(): return 1$/;" f function:GrammarTests.testReturn +g2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def g2(): return 1$/;" f function:GrammarTests.testReturn +g2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def g2(): yield 1, *yield_list$/;" f function:GrammarTests.testYield +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_attempted_yield_from_loop +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_delegating_close +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_delegating_throw +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_delegation_of_initial_next_to_subgenerator +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_delegation_of_next_call_to_subgenerator +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_delegation_of_send +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_exception_in_initial_next_call +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_exception_value_crash +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_handing_exception_while_delegating_close +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_handling_exception_while_delegating_send +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_raising_exception_in_delegated_next_call +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_raising_exception_in_initial_next_call +g2 Lib/test/test_yield_from.py /^ def g2():$/;" f function:TestPEP380Operation.test_returning_value_from_delegated_throw +g2 Lib/test/test_yield_from.py /^ def g2(v = None):$/;" f function:TestPEP380Operation.test_generator_return_value +g3 Lib/test/test_generators.py /^ def g3(): return (yield from f())$/;" f function:FinalizationTest.test_lambda_generator +g3 Lib/test/test_grammar.py /^ def g3():$/;" f function:GrammarTests.test_return +g3 Lib/test/test_grammar.py /^ def g3():$/;" f function:GrammarTests.test_return_in_finally +g3 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def g3(): return 1, *return_list$/;" f function:GrammarTests.testReturn +g3 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def g3(): yield from iter(yield_list)$/;" f function:GrammarTests.testYield +g456 Lib/test/test_sys.py /^ def g456():$/;" f function:SysModuleTest.test_current_exceptions +g456 Lib/test/test_sys.py /^ def g456():$/;" f function:SysModuleTest.test_current_frames +g_A Lib/test/test_functools.py /^ def g_A(a):$/;" f function:TestSingleDispatch.test_mro +g_B Lib/test/test_functools.py /^ def g_B(b):$/;" f function:TestSingleDispatch.test_mro +g_bad_ann Lib/test/ann_module3.py /^def g_bad_ann():$/;" f +g_block_list Include/internal/pycore_flowgraph.h /^ _PyCfgBasicblock *g_block_list;$/;" m struct:cfg_builder_ +g_curblock Include/internal/pycore_flowgraph.h /^ _PyCfgBasicblock *g_curblock;$/;" m struct:cfg_builder_ +g_current_label Include/internal/pycore_flowgraph.h /^ _PyCfgJumpTargetLabel g_current_label;$/;" m struct:cfg_builder_ +g_dict_watch_events Modules/_testcapi/watchers.c /^static PyObject *g_dict_watch_events;$/;" v file: +g_dict_watchers_installed Modules/_testcapi/watchers.c /^static int g_dict_watchers_installed;$/;" v file: +g_entryblock Include/internal/pycore_flowgraph.h /^ _PyCfgBasicblock *g_entryblock;$/;" m struct:cfg_builder_ +g_get Modules/_ctypes/cfield.c /^g_get(void *ptr, Py_ssize_t size)$/;" f file: +g_int Lib/test/test_functools.py /^ def g_int(i):$/;" f function:TestSingleDispatch.test_register_decorator +g_int Lib/test/test_functools.py /^ def g_int(i):$/;" f function:TestSingleDispatch.test_simple_overloads +g_set Modules/_ctypes/cfield.c /^g_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +g_type_modified_events Modules/_testcapi/watchers.c /^static PyObject *g_type_modified_events;$/;" v file: +g_type_watchers_installed Modules/_testcapi/watchers.c /^static int g_type_watchers_installed;$/;" v file: +g_with Lib/test/test_typing.py /^async def g_with(am: typing.AsyncContextManager[int]):$/;" f +ga_as_mapping Objects/genericaliasobject.c /^static PyMappingMethods ga_as_mapping = {$/;" v file: +ga_as_number Objects/genericaliasobject.c /^static PyNumberMethods ga_as_number = {$/;" v file: +ga_call Objects/genericaliasobject.c /^ga_call(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +ga_dealloc Objects/genericaliasobject.c /^ga_dealloc(PyObject *self)$/;" f file: +ga_dir Objects/genericaliasobject.c /^ga_dir(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +ga_getattro Objects/genericaliasobject.c /^ga_getattro(PyObject *self, PyObject *name)$/;" f file: +ga_getitem Objects/genericaliasobject.c /^ga_getitem(PyObject *self, PyObject *item)$/;" f file: +ga_hash Objects/genericaliasobject.c /^ga_hash(PyObject *self)$/;" f file: +ga_instancecheck Objects/genericaliasobject.c /^ga_instancecheck(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +ga_iter Objects/genericaliasobject.c /^ga_iter(PyObject *self) {$/;" f file: +ga_iter_clear Objects/genericaliasobject.c /^ga_iter_clear(PyObject *self) {$/;" f file: +ga_iter_dealloc Objects/genericaliasobject.c /^ga_iter_dealloc(gaiterobject *gi) {$/;" f file: +ga_iter_methods Objects/genericaliasobject.c /^static PyMethodDef ga_iter_methods[] = {$/;" v file: +ga_iter_reduce Objects/genericaliasobject.c /^ga_iter_reduce(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +ga_iter_traverse Objects/genericaliasobject.c /^ga_iter_traverse(gaiterobject *gi, visitproc visit, void *arg)$/;" f file: +ga_iternext Objects/genericaliasobject.c /^ga_iternext(gaiterobject *gi) {$/;" f file: +ga_members Objects/genericaliasobject.c /^static PyMemberDef ga_members[] = {$/;" v file: +ga_methods Objects/genericaliasobject.c /^static PyMethodDef ga_methods[] = {$/;" v file: +ga_mro_entries Objects/genericaliasobject.c /^ga_mro_entries(PyObject *self, PyObject *args)$/;" f file: +ga_new Objects/genericaliasobject.c /^ga_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +ga_parameters Objects/genericaliasobject.c /^ga_parameters(PyObject *self, void *unused)$/;" f file: +ga_properties Objects/genericaliasobject.c /^static PyGetSetDef ga_properties[] = {$/;" v file: +ga_reduce Objects/genericaliasobject.c /^ga_reduce(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +ga_repr Objects/genericaliasobject.c /^ga_repr(PyObject *self)$/;" f file: +ga_repr_item Objects/genericaliasobject.c /^ga_repr_item(_PyUnicodeWriter *writer, PyObject *p)$/;" f file: +ga_repr_items_list Objects/genericaliasobject.c /^ga_repr_items_list(_PyUnicodeWriter *writer, PyObject *p)$/;" f file: +ga_richcompare Objects/genericaliasobject.c /^ga_richcompare(PyObject *a, PyObject *b, int op)$/;" f file: +ga_subclasscheck Objects/genericaliasobject.c /^ga_subclasscheck(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +ga_traverse Objects/genericaliasobject.c /^ga_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +ga_unpacked_tuple_args Objects/genericaliasobject.c /^ga_unpacked_tuple_args(PyObject *self, void *unused)$/;" f file: +ga_vectorcall Objects/genericaliasobject.c /^ga_vectorcall(PyObject *self, PyObject *const *args,$/;" f file: +gai_afd Modules/getaddrinfo.c /^static struct gai_afd {$/;" s file: +gai_afdl Modules/getaddrinfo.c /^} gai_afdl [] = {$/;" v typeref:struct:gai_afd file: +gai_strerror Modules/getaddrinfo.c /^gai_strerror(int ecode)$/;" f +gai_strerror Modules/socketmodule.c 459;" d file: +gaierror Lib/test/mock_socket.py /^gaierror = socket_module.gaierror$/;" v +gaiterobject Objects/genericaliasobject.c /^} gaiterobject;$/;" t typeref:struct:__anon712 file: +gallop_left Objects/listobject.c /^gallop_left(MergeState *ms, PyObject *key, PyObject **a, Py_ssize_t n, Py_ssize_t hint)$/;" f file: +gallop_right Objects/listobject.c /^gallop_right(MergeState *ms, PyObject *key, PyObject **a, Py_ssize_t n, Py_ssize_t hint)$/;" f file: +game_over Lib/turtledemo/nim.py /^ def game_over(self):$/;" m class:NimModel +gamma Lib/test/test_random.py /^def gamma(z, sqrt2pi=(2.0*pi)**0.5):$/;" f +gamma_integral Modules/mathmodule.c /^static const double gamma_integral[NGAMMA_INTEGRAL] = {$/;" v file: +gammavariate Lib/random.py /^ def gammavariate(self, alpha, beta):$/;" m class:Random +gammavariate Lib/random.py /^gammavariate = _inst.gammavariate$/;" v +gaobject Objects/genericaliasobject.c /^} gaobject;$/;" t typeref:struct:__anon711 file: +gap Lib/test/test_zoneinfo/test_zoneinfo.py /^ def gap(self):$/;" m class:ZoneTransition +gaps Lib/test/datetimetester.py /^ def gaps(self):$/;" m class:ZoneInfo +garbage Include/internal/pycore_gc.h /^ PyObject *garbage;$/;" m struct:_gc_runtime_state +gather Lib/asyncio/tasks.py /^def gather(*coros_or_futures, return_exceptions=False):$/;" f +gather Lib/curses/textpad.py /^ def gather(self):$/;" m class:Textbox +gather Lib/test/test_asyncio/test_tasks.py /^ async def gather():$/;" f function:CoroutineGatherTests.test_constructor_use_running_loop +gather Lib/test/test_asyncio/test_tasks.py /^ async def gather():$/;" f function:FutureGatherTests.test_constructor_empty_sequence_use_running_loop +gather_events Lib/test/test_monitoring.py /^ def gather_events(self, func):$/;" m class:MonitoringEventsBase +gather_stats Tools/scripts/summarize_stats.py /^def gather_stats(input):$/;" f +gather_tasks Lib/test/test_asyncio/test_locks.py /^ async def gather_tasks(self, n, coro):$/;" m class:BarrierTests +gather_time_entropy Modules/expat/xmlparse.c /^gather_time_entropy(void) {$/;" f file: +gauss Lib/random.py /^ def gauss(self, mu=0.0, sigma=1.0):$/;" m class:Random +gauss Lib/random.py /^gauss = _inst.gauss$/;" v +gb18030_to_unibmp_ranges Modules/cjkcodecs/mappings_cn.h /^} gb18030_to_unibmp_ranges[] = {$/;" v typeref:struct:_gb18030_to_unibmp_ranges +gb18030ext_decmap Modules/cjkcodecs/mappings_cn.h /^static const struct dbcs_index gb18030ext_decmap[256] = {$/;" v typeref:struct:dbcs_index +gb18030ext_encmap Modules/cjkcodecs/mappings_cn.h /^static const struct unim_index gb18030ext_encmap[256] = {$/;" v typeref:struct:unim_index +gb2312_decmap Modules/cjkcodecs/mappings_cn.h /^static const struct dbcs_index gb2312_decmap[256] = {$/;" v typeref:struct:dbcs_index +gb2312_decoder Modules/cjkcodecs/_codecs_iso2022.c /^gb2312_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +gb2312_encoder Modules/cjkcodecs/_codecs_iso2022.c /^gb2312_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +gb2312_init Modules/cjkcodecs/_codecs_iso2022.c /^gb2312_init(const MultibyteCodec *codec)$/;" f file: +gbcommon_encmap Modules/cjkcodecs/mappings_cn.h /^static const struct unim_index gbcommon_encmap[256] = {$/;" v typeref:struct:unim_index +gbkext_decmap Modules/cjkcodecs/mappings_cn.h /^static const struct dbcs_index gbkext_decmap[256] = {$/;" v typeref:struct:dbcs_index +gc Include/internal/pycore_interp.h /^ struct _gc_runtime_state gc;$/;" m struct:_is typeref:struct:_is::_gc_runtime_state +gc Lib/test/libregrtest/setup.py /^ gc = None$/;" v +gc_alloc Modules/gcmodule.c /^gc_alloc(size_t basicsize, size_t presize)$/;" f file: +gc_clear Objects/weakrefobject.c /^gc_clear(PyWeakReference *self)$/;" f file: +gc_clear_collecting Modules/gcmodule.c /^gc_clear_collecting(PyGC_Head *g)$/;" f file: +gc_collect Lib/test/support/__init__.py /^def gc_collect():$/;" f +gc_collect Modules/clinic/gcmodule.c.h /^gc_collect(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +gc_collect_generations Modules/gcmodule.c /^gc_collect_generations(PyThreadState *tstate)$/;" f file: +gc_collect_impl Modules/gcmodule.c /^gc_collect_impl(PyObject *module, int generation)$/;" f file: +gc_collect_main Modules/gcmodule.c /^gc_collect_main(PyThreadState *tstate, int generation,$/;" f file: +gc_collect_with_callback Modules/gcmodule.c /^gc_collect_with_callback(PyThreadState *tstate, int generation)$/;" f file: +gc_decref Modules/gcmodule.c /^gc_decref(PyGC_Head *g)$/;" f file: +gc_disable Modules/clinic/gcmodule.c.h /^gc_disable(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_disable_impl Modules/gcmodule.c /^gc_disable_impl(PyObject *module)$/;" f file: +gc_enable Modules/clinic/gcmodule.c.h /^gc_enable(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_enable_impl Modules/gcmodule.c /^gc_enable_impl(PyObject *module)$/;" f file: +gc_freeze Modules/clinic/gcmodule.c.h /^gc_freeze(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_freeze_impl Modules/gcmodule.c /^gc_freeze_impl(PyObject *module)$/;" f file: +gc_generation Include/internal/pycore_gc.h /^struct gc_generation {$/;" s +gc_generation_stats Include/internal/pycore_gc.h /^struct gc_generation_stats {$/;" s +gc_get_count Modules/clinic/gcmodule.c.h /^gc_get_count(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_get_count_impl Modules/gcmodule.c /^gc_get_count_impl(PyObject *module)$/;" f file: +gc_get_debug Modules/clinic/gcmodule.c.h /^gc_get_debug(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_get_debug_impl Modules/gcmodule.c /^gc_get_debug_impl(PyObject *module)$/;" f file: +gc_get_freeze_count Modules/clinic/gcmodule.c.h /^gc_get_freeze_count(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_get_freeze_count_impl Modules/gcmodule.c /^gc_get_freeze_count_impl(PyObject *module)$/;" f file: +gc_get_objects Modules/clinic/gcmodule.c.h /^gc_get_objects(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +gc_get_objects_impl Modules/gcmodule.c /^gc_get_objects_impl(PyObject *module, Py_ssize_t generation)$/;" f file: +gc_get_referents Modules/gcmodule.c /^gc_get_referents(PyObject *self, PyObject *args)$/;" f file: +gc_get_referrers Modules/gcmodule.c /^gc_get_referrers(PyObject *self, PyObject *args)$/;" f file: +gc_get_refs Modules/gcmodule.c /^gc_get_refs(PyGC_Head *g)$/;" f file: +gc_get_stats Modules/clinic/gcmodule.c.h /^gc_get_stats(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_get_stats_impl Modules/gcmodule.c /^gc_get_stats_impl(PyObject *module)$/;" f file: +gc_get_threshold Modules/clinic/gcmodule.c.h /^gc_get_threshold(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_get_threshold_impl Modules/gcmodule.c /^gc_get_threshold_impl(PyObject *module)$/;" f file: +gc_is_collecting Modules/gcmodule.c /^gc_is_collecting(PyGC_Head *g)$/;" f file: +gc_is_finalized Modules/gcmodule.c /^gc_is_finalized(PyObject *module, PyObject *obj)$/;" f file: +gc_is_tracked Modules/gcmodule.c /^gc_is_tracked(PyObject *module, PyObject *obj)$/;" f file: +gc_isenabled Modules/clinic/gcmodule.c.h /^gc_isenabled(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_isenabled_impl Modules/gcmodule.c /^gc_isenabled_impl(PyObject *module)$/;" f file: +gc_list_append Modules/gcmodule.c /^gc_list_append(PyGC_Head *node, PyGC_Head *list)$/;" f file: +gc_list_clear_collecting Modules/gcmodule.c /^gc_list_clear_collecting(PyGC_Head *collectable)$/;" f file: +gc_list_init Modules/gcmodule.c /^gc_list_init(PyGC_Head *list)$/;" f file: +gc_list_is_empty Modules/gcmodule.c /^gc_list_is_empty(PyGC_Head *list)$/;" f file: +gc_list_merge Modules/gcmodule.c /^gc_list_merge(PyGC_Head *from, PyGC_Head *to)$/;" f file: +gc_list_move Modules/gcmodule.c /^gc_list_move(PyGC_Head *node, PyGC_Head *list)$/;" f file: +gc_list_remove Modules/gcmodule.c /^gc_list_remove(PyGC_Head *node)$/;" f file: +gc_list_size Modules/gcmodule.c /^gc_list_size(PyGC_Head *list)$/;" f file: +gc_referrers_for Modules/gcmodule.c /^gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)$/;" f file: +gc_reset_refs Modules/gcmodule.c /^gc_reset_refs(PyGC_Head *g, Py_ssize_t refs)$/;" f file: +gc_scheduled Include/internal/pycore_ceval_state.h /^ _Py_atomic_int gc_scheduled;$/;" m struct:_ceval_state +gc_set_debug Modules/clinic/gcmodule.c.h /^gc_set_debug(PyObject *module, PyObject *arg)$/;" f +gc_set_debug_impl Modules/gcmodule.c /^gc_set_debug_impl(PyObject *module, int flags)$/;" f file: +gc_set_refs Modules/gcmodule.c /^gc_set_refs(PyGC_Head *g, Py_ssize_t refs)$/;" f file: +gc_set_threshold Modules/gcmodule.c /^gc_set_threshold(PyObject *self, PyObject *args)$/;" f file: +gc_traverse Objects/weakrefobject.c /^gc_traverse(PyWeakReference *self, visitproc visit, void *arg)$/;" f file: +gc_unfreeze Modules/clinic/gcmodule.c.h /^gc_unfreeze(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +gc_unfreeze_impl Modules/gcmodule.c /^gc_unfreeze_impl(PyObject *module)$/;" f file: +gc_visit_callback_basic Modules/_testcapi/gc.c /^gc_visit_callback_basic(PyObject *obj, void *arg)$/;" f file: +gc_visit_callback_exit_early Modules/_testcapi/gc.c /^gc_visit_callback_exit_early(PyObject *obj, void *arg)$/;" f file: +gc_visit_state_basic Modules/_testcapi/gc.c /^struct gc_visit_state_basic {$/;" s file: +gcc_get_limited_api_definitions Tools/build/stable_abi.py /^def gcc_get_limited_api_definitions(headers):$/;" f +gcc_get_limited_api_macros Tools/build/stable_abi.py /^def gcc_get_limited_api_macros(headers):$/;" f +gcd Lib/test/test_binop.py /^def gcd(a, b):$/;" f +gcd Modules/audioop.c /^gcd(int a, int b)$/;" f file: +gcmodule Modules/gcmodule.c /^static struct PyModuleDef gcmodule = {$/;" v typeref:struct:PyModuleDef file: +gcmodule_exec Modules/gcmodule.c /^gcmodule_exec(PyObject *module)$/;" f file: +gcmodule_slots Modules/gcmodule.c /^static PyModuleDef_Slot gcmodule_slots[] = {$/;" v file: +gcvisitobjects_t Include/objimpl.h /^typedef int (*gcvisitobjects_t)(PyObject*, void*);$/;" t +gdb_has_frame_select Lib/test/test_gdb.py /^def gdb_has_frame_select():$/;" f +gdbm Lib/test/test_dbm_gnu.py /^gdbm = import_helper.import_module("dbm.gnu") #skip if not supported$/;" v +gdbm__enter__ Modules/_gdbmmodule.c /^gdbm__enter__(PyObject *self, PyObject *args)$/;" f file: +gdbm__exit__ Modules/_gdbmmodule.c /^gdbm__exit__(PyObject *self, PyObject *args)$/;" f file: +gdbm_ass_sub Modules/_gdbmmodule.c /^gdbm_ass_sub(gdbmobject *dp, PyObject *v, PyObject *w)$/;" f file: +gdbm_bool Modules/_gdbmmodule.c /^gdbm_bool(gdbmobject *dp)$/;" f file: +gdbm_contains Modules/_gdbmmodule.c /^gdbm_contains(PyObject *self, PyObject *arg)$/;" f file: +gdbm_dealloc Modules/_gdbmmodule.c /^gdbm_dealloc(gdbmobject *dp)$/;" f file: +gdbm_error Modules/_gdbmmodule.c /^ PyObject *gdbm_error;$/;" m struct:__anon629 file: +gdbm_length Modules/_gdbmmodule.c /^gdbm_length(gdbmobject *dp)$/;" f file: +gdbm_methods Modules/_gdbmmodule.c /^static PyMethodDef gdbm_methods[] = {$/;" v file: +gdbm_subscript Modules/_gdbmmodule.c /^gdbm_subscript(gdbmobject *dp, PyObject *key)$/;" f file: +gdbm_traverse Modules/_gdbmmodule.c /^gdbm_traverse(gdbmobject *dp, visitproc visit, void *arg)$/;" f file: +gdbm_type Modules/_gdbmmodule.c /^ PyTypeObject *gdbm_type;$/;" m struct:__anon629 file: +gdbmmodule_open_flags Modules/_gdbmmodule.c /^static const char gdbmmodule_open_flags[] = "rwcn"$/;" v file: +gdbmobject Modules/_gdbmmodule.c /^} gdbmobject;$/;" t typeref:struct:__anon630 file: +gdbmtype_spec Modules/_gdbmmodule.c /^static PyType_Spec gdbmtype_spec = {$/;" v file: +gdbmtype_spec_slots Modules/_gdbmmodule.c /^static PyType_Slot gdbmtype_spec_slots[] = {$/;" v file: +ge Lib/operator.py /^def ge(a, b):$/;" f +gen Include/cpython/genobject.h /^PyAPI_FUNC(PyCodeObject *) PyGen_GetCode(PyGenObject *gen);$/;" v +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_aiter_bad_args +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_aiter_idempotent +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_anext_bad_args +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aiter +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_01 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_02 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_10 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_11 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_06 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_asend_01 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_asend_02 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_asend_03 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_01 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_02 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_03 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_stopiteration +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_tuple +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_gc_aclose_09 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_3_arg_deprecation_warning +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_api_01 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_exception_03 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_exception_04 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_exception_05 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_exception_06 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_exception_10 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_exception_12 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_iteration_01 +gen Lib/test/test_asyncgen.py /^ async def gen():$/;" f function:AsyncGenTest.test_async_gen_iteration_02 +gen Lib/test/test_asyncio/test_pep492.py /^ def gen():$/;" f function:CoroutineTests.test_types_coroutine +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_as_completed +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_as_completed_concurrent +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_as_completed_reverse_wait +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_as_completed_with_timeout +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_as_completed_with_unused_timeout +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_baseexception_during_cancel +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_cancel +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_sleep +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_sleep_cancel +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_stop_while_run_in_complete +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_task_cancel_sleeping_task +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait_concurrent_complete +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait_first_completed +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait_first_exception +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait_first_exception_in_wait +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait_with_exception +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait_with_iterator_of_tasks +gen Lib/test/test_asyncio/test_tasks.py /^ def gen():$/;" f function:BaseTaskTests.test_wait_with_timeout +gen Lib/test/test_asyncio/utils.py /^ def gen():$/;" f function:TestLoop.__init__ +gen Lib/test/test_bdb.py /^ def gen(a, b):$/;" f function:run_test +gen Lib/test/test_builtin.py /^ def gen():$/;" f function:BuiltinTest.test_next +gen Lib/test/test_capi/test_abstract.py /^def gen():$/;" f +gen Lib/test/test_capi/test_dict.py /^def gen():$/;" f +gen Lib/test/test_capi/test_misc.py /^ def gen():$/;" f function:Test_Pep523API.test_inlined_for_iter +gen Lib/test/test_collections.py /^ async def gen():$/;" f function:TestOneTrickPonyABCs.test_AsyncGenerator +gen Lib/test/test_collections.py /^ def gen():$/;" f function:TestOneTrickPonyABCs.test_Awaitable +gen Lib/test/test_collections.py /^ def gen():$/;" f function:TestOneTrickPonyABCs.test_Coroutine +gen Lib/test/test_collections.py /^ def gen():$/;" f function:TestOneTrickPonyABCs.test_Generator +gen Lib/test/test_contextlib_async.py /^ async def gen():$/;" f function:TestAbstractAsyncContextManager.test_async_gen_propagates_generator_exit +gen Lib/test/test_coroutines.py /^ async def gen():$/;" f function:CoroutineTest.test_comp_9 +gen Lib/test/test_coroutines.py /^ def gen(): yield$/;" f function:CoroutineTest.test_gen_1 +gen Lib/test/test_coroutines.py /^ def gen():$/;" f function:CoroutineTest.test_func_10 +gen Lib/test/test_coroutines.py /^ def gen():$/;" f function:CoroutineTest.test_func_14 +gen Lib/test/test_generators.py /^ def gen():$/;" f function:ExceptionTest.test_except_gen_except +gen Lib/test/test_generators.py /^ def gen():$/;" f function:ExceptionTest.test_except_next +gen Lib/test/test_generators.py /^ def gen():$/;" f function:ExceptionTest.test_except_throw_exception_context +gen Lib/test/test_generators.py /^ def gen():$/;" f function:ExceptionTest.test_nested_gen_except_loop +gen Lib/test/test_generators.py /^ def gen():$/;" f function:ExceptionTest.test_stopiteration_error +gen Lib/test/test_generators.py /^ def gen():$/;" f function:FinalizationTest.test_frame_resurrect +gen Lib/test/test_generators.py /^ def gen():$/;" f function:FinalizationTest.test_refcycle +gen Lib/test/test_generators.py /^ def gen():$/;" f function:GeneratorTest.test_handle_frame_object_in_creation +gen Lib/test/test_generators.py /^ def gen(i):$/;" f function:conjoin +gen Lib/test/test_generators.py /^ def gen(i):$/;" f function:simple_conjoin +gen Lib/test/test_inspect.py /^ def gen(): yield$/;" f function:TestPredicates.test_isawaitable +gen Lib/test/test_iter.py /^ def gen():$/;" f function:TestCase.test_extending_list_with_iterator_does_not_segfault +gen Lib/test/test_iter.py /^ def gen():$/;" f function:TestCase.test_sinkstate_yield +gen Lib/test/test_monitoring.py /^ def gen():$/;" f function:ExceptionMonitoringTest.test_implicit_stop_iteration +gen Lib/test/test_monitoring.py /^ def gen():$/;" f function:ExceptionMonitoringTest.test_throw +gen Lib/test/test_monitoring.py /^ def gen(self, cond):$/;" m class:TestDisable +gen Lib/test/test_monitoring.py /^def gen():$/;" f +gen Lib/test/test_raise.py /^ def gen():$/;" f function:TestContext.test_3118 +gen Lib/test/test_random.py /^ gen = random.Random()$/;" v class:MersenneTwister_TestBasicOps +gen Lib/test/test_random.py /^ gen = random.SystemRandom()$/;" v class:SystemRandom_TestBasicOps +gen Lib/test/test_set.py /^ def gen():$/;" f function:TestOnlySetsGenerator.setUp +gen Lib/test/test_sys_settrace.py /^ def gen():$/;" f function:.test_jump_from_yield +gen Lib/test/test_sys_settrace.py /^ def gen():$/;" f function:TraceTestCase.test_no_line_event_after_creating_generator +gen Lib/test/test_tokenize.py /^ def gen():$/;" f function:TokenizeTest.test_invalid_readline +gen Lib/test/test_types.py /^ def gen(): yield$/;" f function:CoroutineTests.test_genfunc +gen Lib/test/test_types.py /^ def gen():$/;" f function:CoroutineTests.test_returning_itercoro +gen Lib/test/test_types.py /^ def gen():$/;" f function:CoroutineTests.test_wrapper_object +gen Lib/test/test_unittest/test_suite.py /^ def gen():$/;" f function:Test_TestSuite.test_addTests +gen Lib/test/test_with.py /^ def gen():$/;" f function:NonLocalFlowControlTestCase.testWithYield +gen Lib/test/test_yield_from.py /^ def gen():$/;" f function:TestPEP380Operation.test_custom_iterator_return +gen Lib/test/test_yield_from.py /^ def gen():$/;" f function:TestPEP380Operation.test_delegator_is_visible_to_debugger +gen1 Lib/test/test_itertools.py /^ def gen1():$/;" f function:RegressionTests.test_sf_950057 +gen2 Lib/test/test_itertools.py /^ def gen2(x):$/;" f function:RegressionTests.test_sf_950057 +gen3 Lib/test/test_itertools.py /^def gen3():$/;" f +gen_as_async Objects/genobject.c /^static PyAsyncMethods gen_as_async = {$/;" v file: +gen_bidirectional Tools/unicode/mkstringprep.py /^def gen_bidirectional(cats):$/;" f +gen_c_code Tools/freeze/regen_frozen.py /^def gen_c_code(fp, co_bytes):$/;" f +gen_category Tools/unicode/mkstringprep.py /^def gen_category(cats):$/;" f +gen_close Objects/genobject.c /^gen_close(PyGenObject *gen, PyObject *args)$/;" f file: +gen_close_iter Objects/genobject.c /^gen_close_iter(PyObject *yf)$/;" f file: +gen_coroutine_function_example Lib/test/test_inspect.py /^def gen_coroutine_function_example(self):$/;" f +gen_ctypes_test Tools/build/stable_abi.py /^def gen_ctypes_test(manifest, args, outfile):$/;" f +gen_dealloc Objects/genobject.c /^gen_dealloc(PyGenObject *gen)$/;" f file: +gen_doc_annotations Tools/build/stable_abi.py /^def gen_doc_annotations(manifest, args, outfile):$/;" f +gen_error_codes Tools/ssl/make_ssl_data.py /^def gen_error_codes(args):$/;" f +gen_func Lib/test/test_types.py /^ def gen_func():$/;" f function:CoroutineTests.test_gen +gen_get_code Modules/_testcapimodule.c /^gen_get_code(PyObject *self, PyObject *gen)$/;" f file: +gen_get_name Objects/genobject.c /^gen_get_name(PyGenObject *op, void *Py_UNUSED(ignored))$/;" f file: +gen_get_qualname Objects/genobject.c /^gen_get_qualname(PyGenObject *op, void *Py_UNUSED(ignored))$/;" f file: +gen_getcode Objects/genobject.c /^gen_getcode(PyGenObject *gen, void *Py_UNUSED(ignored))$/;" f file: +gen_getframe Objects/genobject.c /^gen_getframe(PyGenObject *gen, void *Py_UNUSED(ignored))$/;" f file: +gen_getrunning Objects/genobject.c /^gen_getrunning(PyGenObject *gen, void *Py_UNUSED(ignored))$/;" f file: +gen_getsetlist Objects/genobject.c /^static PyGetSetDef gen_getsetlist[] = {$/;" v file: +gen_getsuspended Objects/genobject.c /^gen_getsuspended(PyGenObject *gen, void *Py_UNUSED(ignored))$/;" f file: +gen_getyieldfrom Objects/genobject.c /^gen_getyieldfrom(PyGenObject *gen, void *Py_UNUSED(ignored))$/;" f file: +gen_id Lib/msilib/__init__.py /^ def gen_id(self, file):$/;" m class:CAB +gen_is_coroutine Objects/genobject.c /^gen_is_coroutine(PyObject *o)$/;" f file: +gen_item Lib/test/test_buffer.py /^def gen_item(fmt, obj):$/;" f +gen_items Lib/test/test_buffer.py /^def gen_items(n, fmt, obj):$/;" f +gen_iternext Objects/genobject.c /^gen_iternext(PyGenObject *gen)$/;" f file: +gen_library_codes Tools/ssl/make_ssl_data.py /^def gen_library_codes(args):$/;" f +gen_lines Lib/lib2to3/refactor.py /^ def gen_lines(self, block, indent):$/;" m class:RefactoringTool +gen_memberlist Objects/genobject.c /^static PyMemberDef gen_memberlist[] = {$/;" v file: +gen_methods Objects/genobject.c /^static PyMethodDef gen_methods[] = {$/;" v file: +gen_new_with_qualname Objects/genobject.c /^gen_new_with_qualname(PyTypeObject *type, PyFrameObject *f,$/;" f file: +gen_preprocess_options Tools/c-analyzer/distutils/ccompiler.py /^def gen_preprocess_options(macros, include_dirs):$/;" f +gen_python3dll Tools/build/stable_abi.py /^def gen_python3dll(manifest, args, outfile):$/;" f +gen_raises Lib/test/test_generators.py /^ def gen_raises():$/;" f function:GeneratorTest.test_issue103488 +gen_repr Objects/genobject.c /^gen_repr(PyGenObject *gen)$/;" f file: +gen_result Lib/test/test_cgi.py /^def gen_result(data, environ):$/;" f +gen_send Objects/genobject.c /^gen_send(PyGenObject *gen, PyObject *arg)$/;" f file: +gen_send_ex Objects/genobject.c /^gen_send_ex(PyGenObject *gen, PyObject *arg, int exc, int closing)$/;" f file: +gen_send_ex2 Objects/genobject.c /^gen_send_ex2(PyGenObject *gen, PyObject *arg, PyObject **presult,$/;" f file: +gen_set_name Objects/genobject.c /^gen_set_name(PyGenObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +gen_set_qualname Objects/genobject.c /^gen_set_qualname(PyGenObject *op, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +gen_sizeof Objects/genobject.c /^gen_sizeof(PyGenObject *gen, PyObject *Py_UNUSED(ignored))$/;" f file: +gen_sizes Lib/test/test_io.py /^ def gen_sizes():$/;" f function:BufferedWriterTest.check_writes +gen_status_from_result Modules/_asynciomodule.c /^gen_status_from_result(PyObject **result)$/;" f file: +gen_testcapi_feature_macros Tools/build/stable_abi.py /^def gen_testcapi_feature_macros(manifest, args, outfile):$/;" f +gen_throw Objects/genobject.c /^gen_throw(PyGenObject *gen, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +gen_traverse Objects/genobject.c /^gen_traverse(PyGenObject *gen, visitproc visit, void *arg)$/;" f file: +gen_unix_socket_path Lib/test/test_asyncio/utils.py /^ def gen_unix_socket_path():$/;" f function:_run_test_server +gen_uuid Lib/msilib/__init__.py /^def gen_uuid():$/;" f +gen_x Tools/ccbench/ccbench.py /^ def gen_x():$/;" f function:task_pidigits.calc_ndigits +gencastshapes Lib/test/test_buffer.py /^def gencastshapes():$/;" f +genclass Lib/test/test_email/test_generator.py /^ genclass = BytesGenerator$/;" v class:TestBytesGenerator +genclass Lib/test/test_email/test_generator.py /^ genclass = Generator$/;" v class:TestGenerator +gencodecs Tools/unicode/gencjkcodecs.py /^def gencodecs(prefix):$/;" f +gencoro Lib/test/test_inspect.py /^ def gencoro():$/;" f function:TestGetCoroutineState.test_getcoroutinelocals +generalEntities Modules/expat/xmlparse.c /^ HASH_TABLE generalEntities;$/;" m struct:__anon617 file: +generate Lib/test/support/_hypothesis_stubs/__init__.py /^ generate = 2$/;" v class:Phase +generate Lib/test/test_importlib/resources/update-zips.py /^def generate(suffix):$/;" f +generate Tools/build/deepfreeze.py /^ def generate(self, name: str, obj: object) -> str:$/;" m class:Printer +generate Tools/build/deepfreeze.py /^def generate(args: list[str], output: TextIO) -> None:$/;" f +generate Tools/i18n/msgfmt.py /^def generate():$/;" f +generate Tools/peg_generator/pegen/c_generator.py /^ def generate(self, filename: str) -> None:$/;" m class:CParserGenerator +generate Tools/peg_generator/pegen/parser_generator.py /^ def generate(self, filename: str) -> None:$/;" m class:ParserGenerator +generate Tools/peg_generator/pegen/python_generator.py /^ def generate(self, filename: str) -> None:$/;" m class:PythonParserGenerator +generate Tools/unicode/genmap_support.py /^ def generate(self):$/;" m class:EncodeMapWriter +generate Tools/unicode/genmap_support.py /^ def generate(self, wide=False):$/;" m class:DecodeMapWriter +generate_ast_fini Parser/asdl_c.py /^def generate_ast_fini(module_state, f):$/;" f +generate_ast_state Parser/asdl_c.py /^def generate_ast_state(module_state, f):$/;" f +generate_bytes Tools/build/deepfreeze.py /^ def generate_bytes(self, name: str, b: bytes) -> str:$/;" m class:Printer +generate_c_code Tools/peg_generator/pegen/__main__.py /^def generate_c_code($/;" f +generate_c_parser_source Tools/peg_generator/pegen/testutil.py /^def generate_c_parser_source(grammar: Grammar) -> str:$/;" f +generate_call Tools/peg_generator/pegen/c_generator.py /^ def generate_call(self, node: Any) -> FunctionCall:$/;" m class:CCallMakerVisitor +generate_chars_to_token Tools/build/generate_token.py /^def generate_chars_to_token(mapping, n=1):$/;" f +generate_code Lib/test/support/bytecode_helper.py /^ def generate_code(self, ast):$/;" m class:CodegenTestCase +generate_code Tools/build/deepfreeze.py /^ def generate_code(self, name: str, code: types.CodeType) -> str:$/;" m class:Printer +generate_complex Tools/build/deepfreeze.py /^ def generate_complex(self, name: str, z: complex) -> str:$/;" m class:Printer +generate_file Tools/build/deepfreeze.py /^ def generate_file(self, module: str, code: object)-> None:$/;" m class:Printer +generate_float Tools/build/deepfreeze.py /^ def generate_float(self, name: str, x: float) -> str:$/;" m class:Printer +generate_frozenset Tools/build/deepfreeze.py /^ def generate_frozenset(self, name: str, fs: FrozenSet[object]) -> str:$/;" m class:Printer +generate_generalized_integer Lib/encodings/punycode.py /^def generate_generalized_integer(N, bias):$/;" f +generate_global_object_finalizers Tools/build/generate_global_objects.py /^def generate_global_object_finalizers(generated_immortal_objects):$/;" f +generate_global_strings Tools/build/generate_global_objects.py /^def generate_global_strings(identifiers, strings):$/;" f +generate_grammar Lib/lib2to3/pgen2/pgen.py /^def generate_grammar(filename="Grammar.txt"):$/;" f +generate_hash_secret_salt Modules/expat/xmlparse.c /^generate_hash_secret_salt(XML_Parser parser) {$/;" f file: +generate_html_documentation Lib/xmlrpc/server.py /^ def generate_html_documentation(self):$/;" m class:XMLRPCDocGenerator +generate_int Tools/build/deepfreeze.py /^ def generate_int(self, name: str, i: int) -> str:$/;" m class:Printer +generate_integers Lib/encodings/punycode.py /^def generate_integers(baselen, deltas):$/;" f +generate_matches Lib/lib2to3/pytree.py /^ def generate_matches(self, nodes):$/;" m class:BasePattern +generate_matches Lib/lib2to3/pytree.py /^ def generate_matches(self, nodes):$/;" m class:NegatedPattern +generate_matches Lib/lib2to3/pytree.py /^ def generate_matches(self, nodes):$/;" m class:WildcardPattern +generate_matches Lib/lib2to3/pytree.py /^def generate_matches(patterns, nodes):$/;" f +generate_module_def Parser/asdl_c.py /^def generate_module_def(mod, metadata, f, internal_h):$/;" f +generate_or_check Tools/build/stable_abi.py /^def generate_or_check(manifest, args, path, func):$/;" f +generate_parser Tools/peg_generator/pegen/testutil.py /^def generate_parser(grammar: Grammar) -> Type[Parser]:$/;" f +generate_parser_c_extension Tools/peg_generator/pegen/testutil.py /^def generate_parser_c_extension($/;" f +generate_python_code Tools/peg_generator/pegen/__main__.py /^def generate_python_code($/;" f +generate_runtime_init Tools/build/generate_global_objects.py /^def generate_runtime_init(identifiers, strings):$/;" f +generate_source_files PC/layout/main.py /^def generate_source_files(ns):$/;" f +generate_static_strings_initializer Tools/build/generate_global_objects.py /^def generate_static_strings_initializer(identifiers, strings):$/;" f +generate_substrings Lib/test/test_statistics.py /^ def generate_substrings(self, first, second, tol, rel, idx):$/;" m class:TestNumericTestCase +generate_time_stats Tools/peg_generator/scripts/test_parse_directory.py /^def generate_time_stats(files, total_seconds) -> None:$/;" f +generate_token_definitions Tools/peg_generator/pegen/build.py /^def generate_token_definitions(tokens: IO[str]) -> TokenDefinitions:$/;" f +generate_tokens Lib/lib2to3/pgen2/tokenize.py /^def generate_tokens(readline):$/;" f +generate_tokens Lib/tokenize.py /^def generate_tokens(readline):$/;" f +generate_trace_command Lib/test/test_dtrace.py /^ def generate_trace_command(self, script_file, subcommand=None):$/;" m class:TraceBackend +generate_tuple Tools/build/deepfreeze.py /^ def generate_tuple(self, name: str, t: Tuple[object, ...]) -> str:$/;" m class:Printer +generate_typeslots Objects/typeslots.py /^def generate_typeslots(out=sys.stdout):$/;" f +generate_unicode Tools/build/deepfreeze.py /^ def generate_unicode(self, name: str, s: str) -> str:$/;" m class:Printer +generation0 Include/internal/pycore_gc.h /^ PyGC_Head *generation0;$/;" m struct:_gc_runtime_state +generation_stats Include/internal/pycore_gc.h /^ struct gc_generation_stats generation_stats[NUM_GENERATIONS];$/;" m struct:_gc_runtime_state typeref:struct:_gc_runtime_state::gc_generation_stats +generations Include/internal/pycore_gc.h /^ struct gc_generation generations[NUM_GENERATIONS];$/;" m struct:_gc_runtime_state typeref:struct:_gc_runtime_state::gc_generation +generator Lib/_collections_abc.py /^generator = type((lambda: (yield))())$/;" v +generator Lib/test/test_generators.py /^ def generator():$/;" f function:ExceptionTest.test_except_throw_bad_exception +generator Lib/test/test_statistics.py /^ def generator(data):$/;" f function:UnivariateCommonMixin.test_type_of_data_collection +generator Lib/test/test_threading.py /^ def generator():$/;" f function:ThreadTests.test_frame_tstate_tracing +generator Tools/build/stable_abi.py /^def generator(var_name, default_path):$/;" f +generator1 Lib/test/test_generators.py /^ def generator1(self):$/;" m class:SignalAndYieldFromTest +generator1 Lib/test/test_type_params.py /^ def generator1[C]():$/;" f function:TypeParamsTypeVarTest.test_typevar_generator.get_generator +generator2 Lib/test/test_generators.py /^ def generator2(self):$/;" m class:SignalAndYieldFromTest +generator2 Lib/test/test_type_params.py /^ def generator2[B]():$/;" f function:TypeParamsTypeVarTest.test_typevar_generator.get_generator +generator_example Lib/test/test_sys_settrace.py /^def generator_example():$/;" f +generator_function Lib/test/test_sys_settrace.py /^def generator_function():$/;" f +generator_function_example Lib/test/test_inspect.py /^def generator_function_example(self):$/;" f +generator_stop Lib/__future__.py /^generator_stop = _Feature((3, 5, 0, "beta", 1),$/;" v +generators Include/internal/pycore_ast.h /^ asdl_comprehension_seq *generators;$/;" m struct:_expr::__anon77::__anon86 +generators Include/internal/pycore_ast.h /^ asdl_comprehension_seq *generators;$/;" m struct:_expr::__anon77::__anon87 +generators Include/internal/pycore_ast.h /^ asdl_comprehension_seq *generators;$/;" m struct:_expr::__anon77::__anon88 +generators Include/internal/pycore_ast.h /^ asdl_comprehension_seq *generators;$/;" m struct:_expr::__anon77::__anon89 +generators Include/internal/pycore_ast_state.h /^ PyObject *generators;$/;" m struct:ast_state +generators Lib/__future__.py /^generators = _Feature((2, 2, 0, "alpha", 1),$/;" v +generators Tools/build/stable_abi.py /^generators = []$/;" v +generic Lib/pstats.py /^ def generic(self, fn, line):$/;" m class:f8.ProfileBrowser +generic Lib/test/test_funcattrs.py /^ def generic[T](): pass$/;" f function:FunctionPropertiesTest.test___type_params__ +generic_alias_dealloc Modules/_testcapimodule.c /^generic_alias_dealloc(PyGenericAliasObject *self)$/;" f file: +generic_alias_methods Modules/_testcapimodule.c /^static PyMethodDef generic_alias_methods[] = {$/;" v file: +generic_alias_mro_entries Modules/_testcapimodule.c /^generic_alias_mro_entries(PyGenericAliasObject *self, PyObject *bases)$/;" f file: +generic_alias_new Modules/_testcapimodule.c /^generic_alias_new(PyObject *item)$/;" f file: +generic_class_getitem Modules/_testcapimodule.c /^generic_class_getitem(PyObject *type, PyObject *item)$/;" f file: +generic_class_getitem Objects/typevarobject.c /^generic_class_getitem(PyTypeObject *cls, PyObject *args, PyObject *kwargs)$/;" f file: +generic_dealloc Objects/typevarobject.c /^generic_dealloc(PyObject *self)$/;" f file: +generic_hash Modules/_datetimemodule.c /^generic_hash(unsigned char *data, int len)$/;" f file: +generic_help Lib/pstats.py /^ def generic_help(self):$/;" m class:f8.ProfileBrowser +generic_init_subclass Objects/typevarobject.c /^generic_init_subclass(PyTypeObject *cls, PyObject *args, PyObject *kwargs)$/;" f file: +generic_methods Modules/_testcapimodule.c /^static PyMethodDef generic_methods[] = {$/;" v file: +generic_methods Objects/typevarobject.c /^static PyMethodDef generic_methods[] = {$/;" v file: +generic_slots Objects/typevarobject.c /^static PyType_Slot generic_slots[] = {$/;" v file: +generic_spam Lib/test/test_symtable.py /^ generic_spam = find_block(top, "generic_spam")$/;" v class:SymtableTest +generic_spam_inner Lib/test/test_symtable.py /^ generic_spam_inner = find_block(generic_spam, "generic_spam")$/;" v class:SymtableTest +generic_spec Objects/typevarobject.c /^PyType_Spec generic_spec = {$/;" v +generic_traverse Objects/typevarobject.c /^generic_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +generic_type Include/internal/pycore_global_objects.h /^ PyTypeObject *generic_type;$/;" m struct:_Py_interp_cached_objects +generic_types Lib/test/test_genericalias.py /^ generic_types = [type, tuple, list, dict, set, frozenset, enumerate,$/;" v class:BaseTest +generic_visit Lib/ast.py /^ def generic_visit(self, node):$/;" m class:NodeTransformer +generic_visit Lib/ast.py /^ def generic_visit(self, node):$/;" m class:NodeVisitor +generic_visit Lib/test/test_compile.py /^ def generic_visit(self, node):$/;" m class:TestSourcePositions.check_positions_against_ast.SourceOffsetVisitor +generic_visit Tools/peg_generator/pegen/grammar.py /^ def generic_visit(self, node: Iterable[Any], *args: Any, **kwargs: Any) -> Any:$/;" m class:GrammarVisitor +generic_visit Tools/peg_generator/pegen/parser_generator.py /^ def generic_visit(self, node: Iterable[Any], *args: Any, **kwargs: Any) -> Set[Any]:$/;" m class:InitialNamesVisitor +genexp_rule Parser/parser.c /^genexp_rule(Parser *p)$/;" f file: +genexp_type Parser/parser.c 251;" d file: +genexpr Lib/test/test_peepholer.py /^ def genexpr():$/;" f function:TestTranforms.test_assignment_idiom_in_comprehensions +genf Lib/test/test_capi/test_misc.py /^ def genf(): yield$/;" f function:TestPendingCalls.test_gen_get_code +genops Lib/pickletools.py /^def genops(pickle):$/;" f +genrand_uint32 Modules/_randommodule.c /^genrand_uint32(RandomObject *self)$/;" f file: +genslices Lib/test/test_buffer.py /^ genslices = rslices$/;" v +genslices Lib/test/test_buffer.py /^def genslices(n):$/;" f +genslices_ndim Lib/test/test_buffer.py /^ genslices_ndim = rslices_ndim$/;" v +genslices_ndim Lib/test/test_buffer.py /^def genslices_ndim(ndim, shape):$/;" f +genwincodec Tools/unicode/genwincodec.py /^def genwincodec(codepage):$/;" f +genwinmap Tools/unicode/genwincodec.py /^def genwinmap(codepage):$/;" f +geohash Lib/antigravity.py /^def geohash(latitude, longitude, datedow):$/;" f +geometric_mean Lib/statistics.py /^def geometric_mean(data):$/;" f +geometry Lib/tkinter/__init__.py /^ geometry = wm_geometry$/;" v class:Wm +get Include/descrobject.h /^ getter get;$/;" m struct:PyGetSetDef +get Lib/_collections_abc.py /^ def get(self, key, default=None):$/;" m class:Mapping +get Lib/asyncio/queues.py /^ async def get(self):$/;" m class:Queue +get Lib/collections/__init__.py /^ def get(self, key, default=None):$/;" m class:ChainMap +get Lib/collections/__init__.py /^ def get(self, key, default=None):$/;" m class:UserDict +get Lib/configparser.py /^ def get(self, option, fallback=None, *, raw=False, vars=None,$/;" m class:SectionProxy +get Lib/configparser.py /^ def get(self, section, option, *, raw=False, vars=None, fallback=_UNSET):$/;" m class:RawConfigParser +get Lib/doctest.py /^ def get(self):$/;" m class:_TestClass +get Lib/email/message.py /^ def get(self, name, failobj=None):$/;" m class:Message +get Lib/idlelib/idle_test/mock_tk.py /^ def get(self):$/;" m class:Var +get Lib/idlelib/idle_test/mock_tk.py /^ def get(self, index1, index2=None):$/;" m class:Text +get Lib/idlelib/idle_test/test_config_key.py /^ get = Func()$/;" v class:KeySelectionTest.Basic.__init__.list_keys_final +get Lib/idlelib/idle_test/test_config_key.py /^ get = Func()$/;" v class:ValidationTest.Validator.__init__.list_keys_final +get Lib/idlelib/scrolledlist.py /^ def get(self, index):$/;" m class:ScrolledList +get Lib/idlelib/searchengine.py /^def get(root):$/;" f +get Lib/importlib/_bootstrap.py /^ def get(self, key, default=None):$/;" m class:_WeakValueDictionary +get Lib/importlib/metadata/_meta.py /^ def get(self, name: str, failobj: None = None) -> Optional[str]:$/;" m class:PackageMetadata +get Lib/importlib/metadata/_meta.py /^ def get(self, name: str, failobj: _T) -> Union[str, _T]:$/;" m class:PackageMetadata +get Lib/logging/config.py /^ def get(self, key, default=None):$/;" m class:ConvertingDict +get Lib/mailbox.py /^ def get(self, key, default=None):$/;" m class:Mailbox +get Lib/multiprocessing/managers.py /^ def get(self):$/;" m class:Value +get Lib/multiprocessing/managers.py /^ def get(self):$/;" m class:ValueProxy +get Lib/multiprocessing/pool.py /^ def get(self, timeout=None):$/;" m class:ApplyResult +get Lib/multiprocessing/queues.py /^ def get(self):$/;" m class:SimpleQueue +get Lib/multiprocessing/queues.py /^ def get(self, block=True, timeout=None):$/;" m class:Queue +get Lib/pickle.py /^ def get(self, i):$/;" m class:_Pickler +get Lib/platform.py /^ def get(cls):$/;" m class:_Processor +get Lib/queue.py /^ def get(self, block=True, timeout=None):$/;" m class:Queue +get Lib/queue.py /^ def get(self, block=True, timeout=None):$/;" m class:_PySimpleQueue +get Lib/re/_parser.py /^ def get(self):$/;" m class:Tokenizer +get Lib/shelve.py /^ def get(self, key, default=None):$/;" m class:Shelf +get Lib/test/test_asyncio/test_eager_task_factory.py /^ def get(self):$/;" m class:AsyncTaskCounter +get Lib/test/test_clinic.py /^ def get(self, name, default):$/;" m class:FakeConvertersDict +get Lib/test/test_collections.py /^ def get(self, key, default):$/;" m class:CounterSubclassWithGet +get Lib/test/test_descr.py /^ def get(self):$/;" m class:.test_slots.C4 +get Lib/test/test_descrtut.py /^ def get(self, key, *args):$/;" m class:defaultdict +get Lib/test/test_descrtut.py /^ def get(self, key, *args):$/;" m class:defaultdict2 +get Lib/test/test_doctest.py /^ def get(self):$/;" m class:SampleClass.NestedClass +get Lib/test/test_doctest.py /^ def get(self):$/;" m class:SampleClass +get Lib/test/test_doctest.py /^ def get(self):$/;" m class:SampleNewStyleClass +get Lib/test/test_inspect.py /^ def get(self, key, default=None):$/;" m class:TestGetattrStatic.test_custom_object_dict.Custom +get Lib/test/test_patma.py /^ def get(key, default=None):$/;" m class:TestPatma.test_patma_248.C +get Lib/test/test_scope.py /^ def get(self):$/;" m class:ScopeTests.testNonLocalClass.f.c +get Lib/test/test_threading.py /^ def get(self):$/;" m class:Counter +get Lib/test/test_types.py /^ def get(self, key, default=None):$/;" m class:MappingProxyTests.test_customdict.customdict +get Lib/test/test_typing.py /^ def get(self):$/;" m class:GenericTests.test_nested.Visitor +get Lib/test/test_typing.py /^ def get(self, key: XK, default: XV = None) -> XV:$/;" m class:SimpleMapping +get Lib/test/test_typing.py /^ def get(self, key: str, default=None):$/;" m class:MySimpleMapping +get Lib/test/test_xmlrpc.py /^ def get(self, key, failobj=None):$/;" m class:FailingMessageClass +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:BooleanVar +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:DoubleVar +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:Entry +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:IntVar +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:Scale +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:Scrollbar +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:Spinbox +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:StringVar +get Lib/tkinter/__init__.py /^ def get(self):$/;" m class:Variable +get Lib/tkinter/__init__.py /^ def get(self, first, last=None):$/;" m class:Listbox +get Lib/tkinter/__init__.py /^ def get(self, index1, index2=None):$/;" m class:Text +get Lib/tkinter/__init__.py /^ def get(self, x, y):$/;" m class:PhotoImage +get Lib/tkinter/ttk.py /^ def get(self, x=None, y=None):$/;" m class:Scale +get Lib/weakref.py /^ def get(self, key, default=None):$/;" m class:WeakKeyDictionary +get Lib/weakref.py /^ def get(self, key, default=None):$/;" m class:WeakValueDictionary +get Lib/webbrowser.py /^def get(using=None):$/;" f +get Lib/wsgiref/headers.py /^ def get(self,name,default=None):$/;" m class:Headers +get Lib/xml/dom/minidom.py /^ def get(self, name, value=None):$/;" m class:NamedNodeMap +get Lib/xml/etree/ElementTree.py /^ def get(self, key, default=None):$/;" m class:Element +get Lib/xml/sax/xmlreader.py /^ def get(self, name, alternative=None):$/;" m class:AttributesImpl +get Tools/c-analyzer/c_parser/info.py /^ def get(self, key, default=None):$/;" m class:Declarations +getActual Lib/test/test_future.py /^ def getActual(self, annotation):$/;" m class:AnnotationsFutureTestCase +getAttribute Lib/xml/dom/minidom.py /^ def getAttribute(self, attname):$/;" m class:Element +getAttributeId Modules/expat/xmlparse.c /^getAttributeId(XML_Parser parser, const ENCODING *enc, const char *start,$/;" f file: +getAttributeNS Lib/xml/dom/minidom.py /^ def getAttributeNS(self, namespaceURI, localName):$/;" m class:Element +getAttributeNode Lib/xml/dom/minidom.py /^ def getAttributeNode(self, attrname):$/;" m class:Element +getAttributeNodeNS Lib/xml/dom/minidom.py /^ def getAttributeNodeNS(self, namespaceURI, localName):$/;" m class:Element +getAttributeType Lib/xml/dom/expatbuilder.py /^ def getAttributeType(self, aname):$/;" m class:ElementInfo +getAttributeType Lib/xml/dom/minidom.py /^ def getAttributeType(self, aname):$/;" m class:ElementInfo +getAttributeTypeNS Lib/xml/dom/expatbuilder.py /^ def getAttributeTypeNS(self, namespaceURI, localName):$/;" m class:ElementInfo +getAttributeTypeNS Lib/xml/dom/minidom.py /^ def getAttributeTypeNS(self, namespaceURI, localName):$/;" m class:ElementInfo +getAtts Modules/expat/xmltok.h /^ int(PTRCALL *getAtts)(const ENCODING *enc, const char *ptr, int attsMax,$/;" m struct:encoding +getAtts Modules/expat/xmltok_impl.c /^PREFIX(getAtts)(const ENCODING *enc, const char *ptr, int attsMax,$/;" f file: +getBuildTuple Mac/BuildScript/build-installer.py /^def getBuildTuple():$/;" f +getByteStream Lib/xml/sax/xmlreader.py /^ def getByteStream(self):$/;" m class:InputSource +getCharacterStream Lib/xml/sax/xmlreader.py /^ def getCharacterStream(self):$/;" m class:InputSource +getChild Lib/logging/__init__.py /^ def getChild(self, suffix):$/;" m class:Logger +getChildren Lib/logging/__init__.py /^ def getChildren(self):$/;" m class:Logger +getColumnNumber Lib/test/test_sax.py /^ def getColumnNumber(self):$/;" m class:ErrorReportingTest.DummyLocator +getColumnNumber Lib/xml/sax/_exceptions.py /^ def getColumnNumber(self):$/;" m class:SAXParseException +getColumnNumber Lib/xml/sax/expatreader.py /^ def getColumnNumber(self):$/;" m class:ExpatLocator +getColumnNumber Lib/xml/sax/expatreader.py /^ def getColumnNumber(self):$/;" m class:ExpatParser +getColumnNumber Lib/xml/sax/xmlreader.py /^ def getColumnNumber(self):$/;" m class:Locator +getConnection Lib/logging/handlers.py /^ def getConnection(self, host, secure):$/;" m class:HTTPHandler +getContentHandler Lib/xml/sax/xmlreader.py /^ def getContentHandler(self):$/;" m class:XMLReader +getContext Modules/expat/xmlparse.c /^getContext(XML_Parser parser) {$/;" f file: +getCurrentTime Lib/xmlrpc/server.py /^ def getCurrentTime():$/;" m class:.ExampleService.currentTime +getDOMImplementation Lib/xml/dom/domreg.py /^def getDOMImplementation(name=None, features=()):$/;" f +getDOMImplementation Lib/xml/dom/minidom.py /^def getDOMImplementation(features=None):$/;" f +getDTDHandler Lib/xml/sax/xmlreader.py /^ def getDTDHandler(self):$/;" m class:XMLReader +getData Lib/test/test_httpservers.py /^ def getData(self):$/;" m class:AuditableBytesIO +getData Lib/test/test_xmlrpc.py /^ def getData():$/;" m class:http_server.TestInstanceClass.Fixture +getData Lib/xmlrpc/server.py /^ def getData(self):$/;" m class:.ExampleService +getDebugLevel Modules/expat/xmlparse.c /^getDebugLevel(const char *variableName, unsigned long defaultDebugLevel) {$/;" f file: +getDeptargetTuple Mac/BuildScript/build-installer.py /^def getDeptargetTuple():$/;" f +getDescription Lib/unittest/runner.py /^ def getDescription(self, test):$/;" m class:TextTestResult +getDict Lib/test/test_builtin.py /^ def getDict(self):$/;" m class:BuiltinTest.C_get_vars +getDirectoryToDiscover Tools/unittestgui/unittestgui.py /^ def getDirectoryToDiscover(self):$/;" m class:BaseGUITestRunner +getDirectoryToDiscover Tools/unittestgui/unittestgui.py /^ def getDirectoryToDiscover(self):$/;" m class:TkTestRunner +getEffectiveLevel Lib/logging/__init__.py /^ def getEffectiveLevel(self):$/;" m class:Logger +getEffectiveLevel Lib/logging/__init__.py /^ def getEffectiveLevel(self):$/;" m class:LoggerAdapter +getElementById Lib/xml/dom/minidom.py /^ def getElementById(self, id):$/;" m class:Document +getElementType Modules/expat/xmlparse.c /^getElementType(XML_Parser parser, const ENCODING *enc, const char *ptr,$/;" f file: +getElementsByTagName Lib/xml/dom/minidom.py /^ def getElementsByTagName(self, name):$/;" m class:Document +getElementsByTagName Lib/xml/dom/minidom.py /^ def getElementsByTagName(self, name):$/;" m class:Element +getElementsByTagNameNS Lib/xml/dom/minidom.py /^ def getElementsByTagNameNS(self, namespaceURI, localName):$/;" m class:Document +getElementsByTagNameNS Lib/xml/dom/minidom.py /^ def getElementsByTagNameNS(self, namespaceURI, localName):$/;" m class:Element +getEncoding Lib/xml/sax/xmlreader.py /^ def getEncoding(self):$/;" m class:InputSource +getEncodingIndex Modules/expat/xmltok.c /^getEncodingIndex(const char *name) {$/;" f file: +getEntityResolver Lib/xml/sax/xmlreader.py /^ def getEntityResolver(self):$/;" m class:XMLReader +getEntry Modules/_lsprof.c /^getEntry(ProfilerObject *pObj, void *key)$/;" f file: +getErrorHandler Lib/xml/sax/xmlreader.py /^ def getErrorHandler(self):$/;" m class:XMLReader +getEvent Lib/xml/dom/pulldom.py /^ def getEvent(self):$/;" m class:DOMEventStream +getEventCategory Lib/logging/handlers.py /^ def getEventCategory(self, record):$/;" m class:NTEventLogHandler +getEventType Lib/logging/handlers.py /^ def getEventType(self, record):$/;" m class:NTEventLogHandler +getExampleEntries Lib/turtledemo/__main__.py /^def getExampleEntries():$/;" f +getException Lib/xml/sax/_exceptions.py /^ def getException(self):$/;" m class:SAXException +getFeature Lib/xml/dom/xmlbuilder.py /^ def getFeature(self, name):$/;" m class:DOMBuilder +getFeature Lib/xml/sax/expatreader.py /^ def getFeature(self, name):$/;" m class:ExpatParser +getFeature Lib/xml/sax/saxutils.py /^ def getFeature(self, name):$/;" m class:XMLFilterBase +getFeature Lib/xml/sax/xmlreader.py /^ def getFeature(self, name):$/;" m class:XMLReader +getFilesForName Tools/i18n/pygettext.py /^def getFilesForName(name):$/;" f +getFilesToDelete Lib/logging/handlers.py /^ def getFilesToDelete(self):$/;" m class:TimedRotatingFileHandler +getFullVersion Mac/BuildScript/build-installer.py /^def getFullVersion():$/;" f +getHandlerByName Lib/logging/__init__.py /^def getHandlerByName(name):$/;" f +getHandlerNames Lib/logging/__init__.py /^def getHandlerNames():$/;" f +getInterface Lib/xml/dom/minidom.py /^ def getInterface(self, feature):$/;" m class:DOMImplementation +getInterface Lib/xml/dom/minidom.py /^ def getInterface(self, feature):$/;" m class:Node +getLength Lib/xml/sax/xmlreader.py /^ def getLength(self):$/;" m class:AttributesImpl +getLevelName Lib/logging/__init__.py /^def getLevelName(level):$/;" f +getLevelNamesMapping Lib/logging/__init__.py /^def getLevelNamesMapping():$/;" f +getLineNumber Lib/test/test_sax.py /^ def getLineNumber(self):$/;" m class:ErrorReportingTest.DummyLocator +getLineNumber Lib/xml/sax/_exceptions.py /^ def getLineNumber(self):$/;" m class:SAXParseException +getLineNumber Lib/xml/sax/expatreader.py /^ def getLineNumber(self):$/;" m class:ExpatLocator +getLineNumber Lib/xml/sax/expatreader.py /^ def getLineNumber(self):$/;" m class:ExpatParser +getLineNumber Lib/xml/sax/xmlreader.py /^ def getLineNumber(self):$/;" m class:Locator +getLogRecordFactory Lib/logging/__init__.py /^def getLogRecordFactory():$/;" f +getLogger Lib/logging/__init__.py /^ def getLogger(self, name):$/;" m class:Manager +getLogger Lib/logging/__init__.py /^def getLogger(name=None):$/;" f +getLoggerClass Lib/logging/__init__.py /^def getLoggerClass():$/;" f +getMandatoryRelease Lib/__future__.py /^ def getMandatoryRelease(self):$/;" m class:_Feature +getMessage Lib/logging/__init__.py /^ def getMessage(self):$/;" m class:LogRecord +getMessage Lib/xml/sax/_exceptions.py /^ def getMessage(self):$/;" m class:SAXException +getMessageID Lib/logging/handlers.py /^ def getMessageID(self, record):$/;" m class:NTEventLogHandler +getMethod Lib/test/test_unittest/test_assertions.py /^ def getMethod(i):$/;" f function:TestLongMessage.assertMessages +getName Lib/threading.py /^ def getName(self):$/;" m class:Thread +getNameByQName Lib/xml/sax/xmlreader.py /^ def getNameByQName(self, name):$/;" m class:AttributesImpl +getNameByQName Lib/xml/sax/xmlreader.py /^ def getNameByQName(self, name):$/;" m class:AttributesNSImpl +getNamedItem Lib/xml/dom/minidom.py /^ def getNamedItem(self, name):$/;" m class:NamedNodeMap +getNamedItem Lib/xml/dom/minidom.py /^ def getNamedItem(self, name):$/;" m class:ReadOnlySequentialNamedNodeMap +getNamedItemNS Lib/xml/dom/minidom.py /^ def getNamedItemNS(self, namespaceURI, localName):$/;" m class:NamedNodeMap +getNamedItemNS Lib/xml/dom/minidom.py /^ def getNamedItemNS(self, namespaceURI, localName):$/;" m class:ReadOnlySequentialNamedNodeMap +getNames Lib/xml/sax/xmlreader.py /^ def getNames(self):$/;" m class:AttributesImpl +getOptionalRelease Lib/__future__.py /^ def getOptionalRelease(self):$/;" m class:_Feature +getParameter Lib/test/test_ctypes/test_as_parameter.py /^ def getParameter(self):$/;" m class:AsParamPropertyWrapper +getParent Lib/xml/sax/saxutils.py /^ def getParent(self):$/;" m class:XMLFilterBase +getParser Lib/xml/dom/expatbuilder.py /^ def getParser(self):$/;" m class:ExpatBuilder +getProperty Lib/xml/sax/expatreader.py /^ def getProperty(self, name):$/;" m class:ExpatParser +getProperty Lib/xml/sax/saxutils.py /^ def getProperty(self, name):$/;" m class:XMLFilterBase +getProperty Lib/xml/sax/xmlreader.py /^ def getProperty(self, name):$/;" m class:XMLReader +getPublicId Lib/test/test_sax.py /^ def getPublicId(self):$/;" m class:ErrorReportingTest.DummyLocator +getPublicId Lib/xml/sax/_exceptions.py /^ def getPublicId(self):$/;" m class:SAXParseException +getPublicId Lib/xml/sax/expatreader.py /^ def getPublicId(self):$/;" m class:ExpatLocator +getPublicId Lib/xml/sax/expatreader.py /^ def getPublicId(self):$/;" m class:ExpatParser +getPublicId Lib/xml/sax/xmlreader.py /^ def getPublicId(self):$/;" m class:InputSource +getPublicId Lib/xml/sax/xmlreader.py /^ def getPublicId(self):$/;" m class:Locator +getQNameByName Lib/xml/sax/xmlreader.py /^ def getQNameByName(self, name):$/;" m class:AttributesImpl +getQNameByName Lib/xml/sax/xmlreader.py /^ def getQNameByName(self, name):$/;" m class:AttributesNSImpl +getQNames Lib/xml/sax/xmlreader.py /^ def getQNames(self):$/;" m class:AttributesImpl +getQNames Lib/xml/sax/xmlreader.py /^ def getQNames(self):$/;" m class:AttributesNSImpl +getRootParserOf Modules/expat/xmlparse.c /^getRootParserOf(XML_Parser parser, unsigned int *outLevelDiff) {$/;" f file: +getRunner Lib/test/test_unittest/test_runner.py /^def getRunner():$/;" f +getRunner Lib/test/test_unittest/test_setups.py /^ def getRunner(self):$/;" m class:TestSetups +getSPAMANDEGGS Modules/_ctypes/_ctypes_test.c /^EXPORT(int) getSPAMANDEGGS(EGG **eggs)$/;" f +getStartedResult Lib/test/test_unittest/test_result.py /^ def getStartedResult(self):$/;" m class:TestOutputBuffering +getSubEntry Modules/_lsprof.c /^getSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)$/;" f file: +getSubject Lib/logging/handlers.py /^ def getSubject(self, record):$/;" m class:SMTPHandler +getSubset Lib/xml/dom/expatbuilder.py /^ def getSubset(self):$/;" m class:InternalSubsetExtractor +getSystemId Lib/test/test_sax.py /^ def getSystemId(self):$/;" m class:ErrorReportingTest.DummyLocator +getSystemId Lib/xml/sax/_exceptions.py /^ def getSystemId(self):$/;" m class:SAXParseException +getSystemId Lib/xml/sax/expatreader.py /^ def getSystemId(self):$/;" m class:ExpatLocator +getSystemId Lib/xml/sax/expatreader.py /^ def getSystemId(self):$/;" m class:ExpatParser +getSystemId Lib/xml/sax/xmlreader.py /^ def getSystemId(self):$/;" m class:InputSource +getSystemId Lib/xml/sax/xmlreader.py /^ def getSystemId(self):$/;" m class:Locator +getTargetCompilers Mac/BuildScript/build-installer.py /^def getTargetCompilers():$/;" f +getTclTkVersion Mac/BuildScript/build-installer.py /^def getTclTkVersion(configfile, versionline):$/;" f +getTestCaseNames Lib/unittest/loader.py /^ def getTestCaseNames(self, testCaseClass):$/;" m class:TestLoader +getTestCaseNames Lib/unittest/loader.py /^def getTestCaseNames(testCaseClass, prefix, sortUsing=util.three_way_cmp, testNamePatterns=None):$/;" f +getText Doc/includes/minidom-example.py /^def getText(nodelist):$/;" f +getType Lib/xml/sax/xmlreader.py /^ def getType(self, name):$/;" m class:AttributesImpl +getUserData Lib/xml/dom/minidom.py /^ def getUserData(self, key):$/;" m class:Node +getValue Lib/xml/sax/xmlreader.py /^ def getValue(self, name):$/;" m class:AttributesImpl +getValueByQName Lib/xml/sax/xmlreader.py /^ def getValueByQName(self, name):$/;" m class:AttributesImpl +getValueByQName Lib/xml/sax/xmlreader.py /^ def getValueByQName(self, name):$/;" m class:AttributesNSImpl +getVersion Mac/BuildScript/build-installer.py /^def getVersion():$/;" f +getVersionMajorMinor Mac/BuildScript/build-installer.py /^def getVersionMajorMinor():$/;" f +get_CMSG_LEN Modules/socketmodule.c /^get_CMSG_LEN(size_t length, size_t *result)$/;" f file: +get_CMSG_SPACE Modules/socketmodule.c /^get_CMSG_SPACE(size_t length, size_t *result)$/;" f file: +get_OpenVMS Lib/platform.py /^ def get_OpenVMS():$/;" m class:_Processor +get___import__ Lib/test/libregrtest/save_env.py /^ def get___import__(self):$/;" m class:saved_test_environment +get_a Lib/test/test_call.py /^ def get_a(x):$/;" f function:TestPEP590.test_setvectorcall_load_attr_specialization_deopt +get_abbr Lib/zoneinfo/_common.py /^ def get_abbr(idx):$/;" f function:load_data +get_abc_state Modules/_abc.c /^get_abc_state(PyObject *module)$/;" f file: +get_accelerator Lib/idlelib/editor.py /^def get_accelerator(keydefs, eventname):$/;" f +get_addr Modules/getaddrinfo.c /^get_addr(hostname, af, res, pai, port0)$/;" f file: +get_addr_spec Lib/email/_header_value_parser.py /^def get_addr_spec(value):$/;" f +get_address Lib/email/_header_value_parser.py /^def get_address(value):$/;" f +get_address_list Lib/email/_header_value_parser.py /^def get_address_list(value):$/;" f +get_agent_and_url Lib/test/test_robotparser.py /^ def get_agent_and_url(self, url):$/;" m class:BaseRobotTest +get_algorithm_impls Lib/urllib/request.py /^ def get_algorithm_impls(self, algorithm):$/;" m class:AbstractDigestAuthHandler +get_all Lib/email/message.py /^ def get_all(self, name, failobj=None):$/;" m class:Message +get_all Lib/importlib/metadata/_meta.py /^ def get_all(self, name: str, failobj: None = None) -> Optional[List[Any]]:$/;" m class:PackageMetadata +get_all Lib/importlib/metadata/_meta.py /^ def get_all(self, name: str, failobj: _T) -> Union[List[Any], _T]:$/;" m class:PackageMetadata +get_all Lib/wsgiref/headers.py /^ def get_all(self, name):$/;" m class:Headers +get_all_breaks Lib/bdb.py /^ def get_all_breaks(self):$/;" m class:Bdb +get_all_fix_names Lib/lib2to3/refactor.py /^def get_all_fix_names(fixer_pkg, remove_prefix=True):$/;" f +get_all_from_queue Lib/test/test_logging.py /^ def get_all_from_queue(log_queue):$/;" m class:QueueHandlerTest.QueueListenerTest +get_all_start_methods Lib/multiprocessing/context.py /^ def get_all_start_methods(self):$/;" m class:DefaultContext +get_allocator_unlocked Objects/obmalloc.c /^get_allocator_unlocked(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator)$/;" f file: +get_an_integer Modules/_ctypes/_ctypes_test.c /^EXPORT(int) get_an_integer(void)$/;" f +get_and_fixup_unknown_message_content Lib/email/contentmanager.py /^def get_and_fixup_unknown_message_content(msg):$/;" f +get_angle_addr Lib/email/_header_value_parser.py /^def get_angle_addr(value):$/;" f +get_annotations Lib/inspect.py /^def get_annotations(obj, *, globals=None, locals=None, eval_str=False):$/;" f +get_answer Lib/test/pydoc_mod.py /^ def get_answer(self):$/;" m class:C +get_app Lib/wsgiref/simple_server.py /^ def get_app(self):$/;" m class:WSGIServer +get_appx_layout PC/layout/support/appxmanifest.py /^def get_appx_layout(ns):$/;" f +get_appxmanifest PC/layout/support/appxmanifest.py /^def get_appxmanifest(ns):$/;" f +get_archive_formats Lib/shutil.py /^def get_archive_formats():$/;" f +get_argparse_options PC/layout/support/options.py /^def get_argparse_options():$/;" f +get_args Lib/typing.py /^def get_args(tp):$/;" f +get_args Modules/_testcapi/getargs.c /^get_args(PyObject *self, PyObject *args)$/;" f file: +get_args Parser/asdl_c.py /^ def get_args(self, fields):$/;" m class:PrototypeVisitor +get_argspec Lib/idlelib/calltip.py /^def get_argspec(ob):$/;" f +get_array_state Modules/arraymodule.c /^get_array_state(PyObject *module)$/;" f file: +get_array_state_by_class Modules/arraymodule.c 76;" d file: +get_ascii_order Modules/_testbuffer.c /^get_ascii_order(PyObject *order)$/;" f file: +get_ast_state Python/Python-ast.c /^get_ast_state(void)$/;" f file: +get_async_gen_state Objects/genobject.c /^get_async_gen_state(void)$/;" f file: +get_asyncio_events__event_loop_policy Lib/test/libregrtest/save_env.py /^ def get_asyncio_events__event_loop_policy(self):$/;" m class:saved_test_environment +get_asyncio_state Modules/_asynciomodule.c /^get_asyncio_state(PyObject *mod)$/;" f file: +get_asyncio_state_by_cls Modules/_asynciomodule.c /^get_asyncio_state_by_cls(PyTypeObject *cls)$/;" f file: +get_asyncio_state_by_def Modules/_asynciomodule.c /^get_asyncio_state_by_def(PyObject *self)$/;" f file: +get_asyncore_socket_map Lib/test/libregrtest/save_env.py /^ def get_asyncore_socket_map(self):$/;" m class:saved_test_environment +get_atexit_state Modules/atexitmodule.c /^get_atexit_state(void)$/;" f file: +get_atext Lib/email/_header_value_parser.py /^def get_atext(value):$/;" f +get_atom Lib/email/_header_value_parser.py /^def get_atom(value):$/;" f +get_attr_dict Tools/gdb/libpython.py /^ def get_attr_dict(self):$/;" m class:HeapTypeObjectPtr +get_attrib_from_keywords Modules/_elementtree.c /^get_attrib_from_keywords(PyObject *kwds)$/;" f file: +get_attribute Lib/email/_header_value_parser.py /^def get_attribute(value):$/;" f +get_attribute Lib/test/support/__init__.py /^def get_attribute(obj, name):$/;" f +get_attrtext Lib/email/_header_value_parser.py /^def get_attrtext(value):$/;" f +get_audioop_state Modules/audioop.c /^get_audioop_state(PyObject *module)$/;" f file: +get_authorization Lib/urllib/request.py /^ def get_authorization(self, req, chal):$/;" m class:AbstractDigestAuthHandler +get_autocommit Modules/_sqlite/connection.c /^get_autocommit(pysqlite_Connection *self, void *Py_UNUSED(ctx))$/;" f file: +get_bad_float Lib/test/datetimetester.py /^ def get_bad_float(bad_ratio):$/;" f function:TestTimeDelta.test_issue31293 +get_bad_int Lib/test/test_os.py /^ def get_bad_int(divmod_ret_val):$/;" f function:UtimeTests.test_issue31577 +get_bad_loader Lib/test/test_warnings/__init__.py /^ def get_bad_loader(splitlines_ret_val):$/;" f function:_WarningsTests.test_issue31285 +get_bare_quoted_string Lib/email/_header_value_parser.py /^def get_bare_quoted_string(value):$/;" f +get_base_branch Tools/patchcheck/patchcheck.py /^def get_base_branch():$/;" f +get_base_indent_string Lib/idlelib/pyparse.py /^ def get_base_indent_string(self):$/;" m class:Parser +get_bases_tuple Objects/typeobject.c /^get_bases_tuple(PyObject *bases_in, PyType_Spec *spec)$/;" f file: +get_basic_refs Objects/weakrefobject.c /^get_basic_refs(PyWeakReference *head,$/;" f file: +get_basic_static_type Modules/_testcapimodule.c /^get_basic_static_type(PyObject *self, PyObject *args)$/;" f file: +get_binary_files Tools/iobench/iobench.py /^def get_binary_files():$/;" f +get_binascii_state Modules/binascii.c /^get_binascii_state(PyObject *module)$/;" f file: +get_bisect_state Modules/_bisectmodule.c /^get_bisect_state(PyObject *module)$/;" f file: +get_body Lib/email/message.py /^ def get_body(self, preferencelist=('related', 'html', 'plain')):$/;" m class:MIMEPart +get_body_encoding Lib/email/charset.py /^ def get_body_encoding(self):$/;" m class:Charset +get_boundary Lib/email/message.py /^ def get_boundary(self, failobj=None):$/;" m class:Message +get_bpbynumber Lib/bdb.py /^ def get_bpbynumber(self, arg):$/;" m class:Bdb +get_break Lib/bdb.py /^ def get_break(self, filename, lineno):$/;" m class:Bdb +get_breaks Lib/bdb.py /^ def get_breaks(self, filename, lineno):$/;" m class:Bdb +get_buf Lib/xdrlib.py /^ get_buf = get_buffer$/;" v class:Packer +get_buffer Lib/asyncio/protocols.py /^ def get_buffer(self, sizehint):$/;" m class:BufferedProtocol +get_buffer Lib/asyncio/sslproto.py /^ def get_buffer(self, n):$/;" m class:SSLProtocol +get_buffer Lib/test/test_asyncio/test_buffered_proto.py /^ def get_buffer(self, sizehint):$/;" m class:ReceiveStuffProto +get_buffer Lib/test/test_asyncio/test_ssl.py /^ def get_buffer(self, sizehint):$/;" m class:TestSSL.test_start_tls_client_buf_proto_1.ClientProtoFirst +get_buffer Lib/test/test_asyncio/test_sslproto.py /^ def get_buffer(self, sizehint):$/;" m class:BaseStartTLS.test_buf_feed_data.Proto +get_buffer Lib/test/test_asyncio/test_sslproto.py /^ def get_buffer(self, sizehint):$/;" m class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoFirst +get_buffer Lib/xdrlib.py /^ def get_buffer(self):$/;" m class:Packer +get_buffer Lib/xdrlib.py /^ def get_buffer(self):$/;" m class:Unpacker +get_build_architecture Tools/c-analyzer/distutils/msvccompiler.py /^def get_build_architecture():$/;" f +get_build_info Lib/test/libregrtest/utils.py /^def get_build_info():$/;" f +get_build_version Tools/c-analyzer/distutils/msvc9compiler.py /^def get_build_version():$/;" f +get_build_version Tools/c-analyzer/distutils/msvccompiler.py /^def get_build_version():$/;" f +get_builddir Tools/build/check_extension_modules.py /^ def get_builddir(self) -> pathlib.Path:$/;" m class:ModuleChecker +get_builddir Tools/wasm/wasm_assets.py /^def get_builddir(args: argparse.Namespace) -> pathlib.Path:$/;" f +get_builtin_base_with_dict Objects/typeobject.c /^get_builtin_base_with_dict(PyTypeObject *type)$/;" f file: +get_bytes Lib/mailbox.py /^ def get_bytes(self, key):$/;" m class:Babyl +get_bytes Lib/mailbox.py /^ def get_bytes(self, key):$/;" m class:MH +get_bytes Lib/mailbox.py /^ def get_bytes(self, key):$/;" m class:Mailbox +get_bytes Lib/mailbox.py /^ def get_bytes(self, key):$/;" m class:Maildir +get_bytes Lib/mailbox.py /^ def get_bytes(self, key, from_=False):$/;" m class:_mboxMMDF +get_bytes_yielding_seq Tools/stringbench/stringbench.py /^def get_bytes_yielding_seq(STR, arg):$/;" f +get_c_type Parser/asdl_c.py /^def get_c_type(name):$/;" f +get_cache_token Lib/_py_abc.py /^def get_cache_token():$/;" f +get_cached_keys Tools/gdb/libpython.py /^ def get_cached_keys(self):$/;" m class:HeapTypeObjectPtr +get_cached_locals Objects/codeobject.c /^get_cached_locals(PyCodeObject *co, PyObject **cached_field,$/;" f file: +get_cached_values Lib/test/test_dis.py /^ def get_cached_values(self, quickened, adaptive):$/;" f +get_category Python/_warnings.c /^get_category(PyObject *message, PyObject *category)$/;" f file: +get_cell Lib/test/test_reprlib.py /^ def get_cell():$/;" f function:ReprTests.test_cell +get_cell Lib/test/test_sys.py /^ def get_cell():$/;" f function:SizeofTest.test_objecttypes +get_cell2 Lib/test/test_sys.py /^ def get_cell2(x):$/;" f function:SizeofTest.test_objecttypes +get_cfg_file Lib/test/test_turtle.py /^ def get_cfg_file(self, cfg_str):$/;" m class:TurtleConfigTest +get_cfunc_from_callable Modules/_lsprof.c /^PyObject* get_cfunc_from_callable(PyObject* callable, PyObject* self_arg, PyObject* missing)$/;" f +get_cfws Lib/email/_header_value_parser.py /^def get_cfws(value):$/;" f +get_change_3_2_0 Modules/unicodedata_db.h /^static const change_record* get_change_3_2_0(Py_UCS4 n)$/;" f +get_channel_binding Lib/ssl.py /^ def get_channel_binding(self, cb_type="tls-unique"):$/;" m class:SSLObject +get_channel_binding Lib/ssl.py /^ def get_channel_binding(self, cb_type="tls-unique"):$/;" m class:SSLSocket +get_char_or_None Modules/_csv.c /^get_char_or_None(Py_UCS4 c)$/;" f file: +get_characteristic_subpattern Lib/lib2to3/btm_utils.py /^def get_characteristic_subpattern(subpatterns):$/;" f +get_charset Lib/email/message.py /^ def get_charset(self):$/;" m class:Message +get_charsets Lib/email/message.py /^ def get_charsets(self, failobj=None):$/;" m class:Message +get_check_hostname Modules/_ssl.c /^get_check_hostname(PySSLContext *self, void *c)$/;" f file: +get_child_details Lib/test/test_c_locale_coercion.py /^ def get_child_details(cls, env_vars):$/;" m class:EncodingDetails +get_child_watcher Lib/asyncio/events.py /^ def get_child_watcher(self):$/;" m class:AbstractEventLoopPolicy +get_child_watcher Lib/asyncio/events.py /^def get_child_watcher():$/;" f +get_child_watcher Lib/asyncio/unix_events.py /^ def get_child_watcher(self):$/;" m class:_UnixDefaultEventLoopPolicy +get_children Lib/symtable.py /^ def get_children(self):$/;" m class:SymbolTable +get_children Lib/tkinter/ttk.py /^ def get_children(self, item=None):$/;" m class:Treeview +get_cid Lib/test/test_socket.py /^def get_cid():$/;" f +get_class Modules/_pickle.c /^get_class(PyObject *obj)$/;" f file: +get_class_members Lib/rlcompleter.py /^def get_class_members(klass):$/;" f +get_close_matches Lib/difflib.py /^def get_close_matches(word, possibilities, n=3, cutoff=0.6):$/;" f +get_closed Modules/_io/fileio.c /^get_closed(fileio *self, void *closure)$/;" f file: +get_closed Modules/_io/winconsoleio.c /^get_closed(winconsoleio *self, void *closure)$/;" f file: +get_closed Objects/fileobject.c /^get_closed(PyStdPrinter_Object *self, void *closure)$/;" f file: +get_closefd Modules/_io/fileio.c /^get_closefd(fileio *self, void *closure)$/;" f file: +get_closefd Modules/_io/winconsoleio.c /^get_closefd(winconsoleio *self, void *closure)$/;" f file: +get_cmsg_data_len Modules/socketmodule.c /^get_cmsg_data_len(struct msghdr *msg, struct cmsghdr *cmsgh, size_t *data_len)$/;" f file: +get_cmsg_data_space Modules/socketmodule.c /^get_cmsg_data_space(struct msghdr *msg, struct cmsghdr *cmsgh, size_t *space)$/;" f file: +get_cnonce Lib/urllib/request.py /^ def get_cnonce(self, nonce):$/;" m class:AbstractDigestAuthHandler +get_code Include/cpython/import.h /^ PyObject *(*get_code)(void);$/;" m struct:_frozen +get_code Lib/importlib/_bootstrap.py /^ def get_code(cls, fullname):$/;" m class:BuiltinImporter +get_code Lib/importlib/_bootstrap.py /^ def get_code(cls, fullname):$/;" m class:FrozenImporter +get_code Lib/importlib/_bootstrap_external.py /^ def get_code(self, fullname):$/;" m class:ExtensionFileLoader +get_code Lib/importlib/_bootstrap_external.py /^ def get_code(self, fullname):$/;" m class:NamespaceLoader +get_code Lib/importlib/_bootstrap_external.py /^ def get_code(self, fullname):$/;" m class:SourceLoader +get_code Lib/importlib/_bootstrap_external.py /^ def get_code(self, fullname):$/;" m class:SourcelessFileLoader +get_code Lib/importlib/abc.py /^ def get_code(self, fullname):$/;" m class:ExecutionLoader +get_code Lib/importlib/abc.py /^ def get_code(self, fullname):$/;" m class:InspectLoader +get_code Lib/test/test_importlib/source/test_file_loader.py /^ def get_code(self, _): pass$/;" m class:SimpleTest.test_get_filename_API.Tester +get_code Lib/zipimport.py /^ def get_code(self, fullname):$/;" m class:zipimporter +get_code Python/import.c /^ PyObject *(*get_code)(void);$/;" m struct:frozen_info file: +get_code_extra_index Modules/_testcapi/code.c /^get_code_extra_index(PyInterpreterState* interp) {$/;" f file: +get_code_from_pyc Lib/test/test_importlib/util.py /^def get_code_from_pyc(pyc_path):$/;" f +get_code_lines Lib/test/test_compile.py /^ def get_code_lines(self, code):$/;" m class:TestSpecifics +get_code_object Lib/test/support/bytecode_helper.py /^ def get_code_object(self, filename, insts, metadata):$/;" m class:AssemblerTestCase +get_code_watcher_num_created_events Modules/_testcapi/watchers.c /^get_code_watcher_num_created_events(PyObject *self, PyObject *watcher_id)$/;" f file: +get_code_watcher_num_destroyed_events Modules/_testcapi/watchers.c /^get_code_watcher_num_destroyed_events(PyObject *self, PyObject *watcher_id)$/;" f file: +get_coding_spec Parser/tokenizer.c /^get_coding_spec(const char *s, char **spec, Py_ssize_t size, struct tok_state *tok)$/;" f file: +get_collector Lib/test/test_htmlparser.py /^ def get_collector(self):$/;" m class:TestCaseBase +get_color Lib/idlelib/configdialog.py /^ def get_color(self):$/;" m class:HighPage +get_command_line Lib/multiprocessing/spawn.py /^def get_command_line(**kwds):$/;" f +get_command_stdout Lib/test/test_asyncio/test_subprocess.py /^ async def get_command_stdout(cmd, *args):$/;" f function:SubprocessMixin.test_subprocess_communicate_stdout +get_command_stdout Lib/test/test_uuid.py /^ def get_command_stdout(command, args):$/;" f function:mock_get_command_stdout +get_comment Lib/email/_header_value_parser.py /^def get_comment(value):$/;" f +get_comment_header Lib/idlelib/format.py /^def get_comment_header(line):$/;" f +get_config_h_filename Lib/sysconfig.py /^def get_config_h_filename():$/;" f +get_config_var Lib/sysconfig.py /^def get_config_var(name):$/;" f +get_config_var Tools/freeze/test/freeze.py /^def get_config_var(builddir, name):$/;" f +get_config_vars Lib/sysconfig.py /^def get_config_vars(*args):$/;" f +get_configs Modules/_testinternalcapi.c /^get_configs(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +get_configured_value PC/launcher.c /^get_configured_value(wchar_t * key)$/;" f file: +get_connection Lib/multiprocessing/resource_sharer.py /^ def get_connection(ident):$/;" m class:_ResourceSharer +get_const_value Python/flowgraph.c /^get_const_value(int opcode, int oparg, PyObject *co_consts)$/;" f file: +get_content Lib/email/contentmanager.py /^ def get_content(self, msg, *args, **kw):$/;" m class:ContentManager +get_content Lib/email/message.py /^ def get_content(self, *args, content_manager=None, **kw):$/;" m class:MIMEPart +get_content Lib/test/test_email/test_message.py /^ def get_content(self, msg, *args, **kw):$/;" m class:TestEmailMessageBase._TestContentManager +get_content_charset Lib/email/message.py /^ def get_content_charset(self, failobj=None):$/;" m class:Message +get_content_disposition Lib/email/message.py /^ def get_content_disposition(self):$/;" m class:Message +get_content_maintype Lib/email/message.py /^ def get_content_maintype(self):$/;" m class:Message +get_content_subtype Lib/email/message.py /^ def get_content_subtype(self):$/;" m class:Message +get_content_type Lib/email/message.py /^ def get_content_type(self):$/;" m class:Message +get_context Lib/asyncio/events.py /^ def get_context(self):$/;" m class:Handle +get_context Lib/asyncio/tasks.py /^ def get_context(self):$/;" m class:Task +get_context Lib/idlelib/codecontext.py /^ def get_context(self, new_topvisible, stopline=1, stopindent=0):$/;" m class:CodeContext +get_context Lib/multiprocessing/context.py /^ def get_context(self, method=None):$/;" m class:BaseContext +get_context Lib/multiprocessing/context.py /^ def get_context(self, method=None):$/;" m class:DefaultContext +get_context Lib/test/test_asyncio/test_runners.py /^ async def get_context():$/;" f function:RunnerTests.test_run_keeps_context +get_context Lib/test/test_concurrent_futures/util.py /^ def get_context(self):$/;" m class:ExecutorMixin +get_context Lib/test/test_concurrent_futures/util.py /^ def get_context(self):$/;" m class:ProcessPoolForkMixin +get_context Lib/test/test_concurrent_futures/util.py /^ def get_context(self):$/;" m class:ProcessPoolForkserverMixin +get_context Lib/test/test_concurrent_futures/util.py /^ def get_context(self):$/;" m class:ProcessPoolSpawnMixin +get_context_state Python/context.c /^get_context_state(void)$/;" f file: +get_contiguous Modules/_testbuffer.c /^get_contiguous(PyObject *self, PyObject *args)$/;" f file: +get_continuation_type Lib/idlelib/pyparse.py /^ def get_continuation_type(self):$/;" m class:Parser +get_core_module_dict Python/import.c /^get_core_module_dict(PyInterpreterState *interp,$/;" f file: +get_core_modules Tools/build/check_extension_modules.py /^ def get_core_modules(self) -> Iterable[ModuleInfo]:$/;" m class:ModuleChecker +get_coro Lib/asyncio/tasks.py /^ def get_coro(self):$/;" m class:Task +get_coroutine Lib/test/test_type_params.py /^ def get_coroutine[A]():$/;" f function:TypeParamsTypeVarTest.test_typevar_coroutine +get_cost Lib/test/test_functools.py /^ def get_cost(self):$/;" m class:OptionallyCachedCostItem +get_crossinterp_data Modules/_testcapimodule.c /^get_crossinterp_data(PyObject *self, PyObject *args)$/;" f file: +get_csv_state Modules/_csv.c /^get_csv_state(PyObject *module)$/;" f file: +get_ctx Lib/test/test_asyncio/test_threads.py /^ def get_ctx():$/;" f function:ToThreadTests.test_to_thread_contextvars +get_current Lib/test/support/interpreters.py /^def get_current():$/;" f +get_current_allocator_name_unlocked Objects/obmalloc.c /^get_current_allocator_name_unlocked(void)$/;" f file: +get_current_interp Python/_warnings.c /^get_current_interp(void)$/;" f file: +get_current_tstate Python/_warnings.c /^get_current_tstate(void)$/;" f file: +get_curses_panel_state Modules/_curses_panel.c /^get_curses_panel_state(PyObject *module)$/;" f file: +get_custom_entry_point Tools/freeze/winmakemakefile.py /^def get_custom_entry_point(subsystem):$/;" f +get_cwd Lib/test/libregrtest/save_env.py /^ def get_cwd(self):$/;" m class:saved_test_environment +get_data Lib/importlib/_bootstrap_external.py /^ def get_data(self, path):$/;" m class:FileLoader +get_data Lib/importlib/abc.py /^ def get_data(self, path):$/;" m class:ResourceLoader +get_data Lib/pkgutil.py /^def get_data(package, resource):$/;" f +get_data Lib/plistlib.py /^ def get_data(self):$/;" m class:_PlistParser +get_data Lib/test/test_doctest.py /^ def get_data(self, path):$/;" m class:TestImporter +get_data Lib/test/test_importlib/test_abc.py /^ def get_data(self, path):$/;" m class:ResourceLoader +get_data Lib/test/test_importlib/test_abc.py /^ def get_data(self, path):$/;" m class:SourceLoader +get_data Lib/test/test_importlib/test_abc.py /^ def get_data(self, path):$/;" m class:SourceOnlyLoader +get_data Lib/test/test_lib2to3/test_parser.py /^ def get_data(self, where):$/;" m class:TestPgen2Caching.test_load_packaged_grammar.MyLoader +get_data Lib/test/test_pkgutil.py /^ def get_data(self, path):$/;" m class:PkgutilPEP302Tests.MyTestLoader +get_data Lib/zipimport.py /^ def get_data(self, pathname):$/;" m class:zipimporter +get_date Lib/mailbox.py /^ def get_date(self):$/;" m class:MaildirMessage +get_date_fromdate Modules/_testcapi/datetime.c /^get_date_fromdate(PyObject *self, PyObject *args)$/;" f file: +get_date_fromtimestamp Modules/_testcapi/datetime.c /^get_date_fromtimestamp(PyObject *self, PyObject *args)$/;" f file: +get_datetime_capi Modules/_datetimemodule.c /^get_datetime_capi(void)$/;" f file: +get_datetime_fromdateandtime Modules/_testcapi/datetime.c /^get_datetime_fromdateandtime(PyObject *self, PyObject *args)$/;" f file: +get_datetime_fromdateandtimeandfold Modules/_testcapi/datetime.c /^get_datetime_fromdateandtimeandfold(PyObject *self, PyObject *args)$/;" f file: +get_datetime_fromtimestamp Modules/_testcapi/datetime.c /^get_datetime_fromtimestamp(PyObject *self, PyObject *args)$/;" f file: +get_dbm_state Modules/_dbmmodule.c /^get_dbm_state(PyObject *module)$/;" f file: +get_debug Lib/asyncio/base_events.py /^ def get_debug(self):$/;" m class:BaseEventLoop +get_debug Lib/asyncio/events.py /^ def get_debug(self):$/;" m class:AbstractEventLoop +get_debug_out Lib/test/test_re.py /^def get_debug_out(pat):$/;" f +get_decomp_record Modules/unicodedata.c /^get_decomp_record(PyObject *self, Py_UCS4 code,$/;" f file: +get_deep_attribute Modules/_pickle.c /^get_deep_attribute(PyObject *obj, PyObject *names, PyObject **pparent)$/;" f file: +get_default Lib/argparse.py /^ def get_default(self, dest):$/;" m class:_ActionsContainer +get_default_action Python/_warnings.c /^get_default_action(PyInterpreterState *interp)$/;" f file: +get_default_compiler Tools/c-analyzer/distutils/ccompiler.py /^def get_default_compiler(osname=None, platform=None):$/;" f +get_default_scheme Lib/sysconfig.py /^def get_default_scheme():$/;" f +get_default_storage Tools/c-analyzer/c_parser/info.py /^def get_default_storage(decl):$/;" f +get_default_type Lib/email/message.py /^ def get_default_type(self):$/;" m class:Message +get_default_values Lib/optparse.py /^ def get_default_values(self):$/;" m class:OptionParser +get_default_verify_paths Lib/ssl.py /^def get_default_verify_paths():$/;" f +get_defects Lib/test/test_email/test_defect_handling.py /^ def get_defects(self, obj):$/;" m class:TestDefectCapture +get_defects Lib/test/test_email/test_defect_handling.py /^ def get_defects(self, obj):$/;" m class:TestDefectDetection +get_defines Tools/scripts/summarize_stats.py /^def get_defines():$/;" f +get_defining_module Lib/test/test_capi/test_misc.py /^ def get_defining_module(self):$/;" m class:Test_ModuleStateAccess.test_subclass_get_module_with_super.StateAccessType_Subclass +get_delta_fromdsu Modules/_testcapi/datetime.c /^get_delta_fromdsu(PyObject *self, PyObject *args)$/;" f file: +get_desc Lib/test/pydocfodder.py /^ class get_desc:$/;" c class:FunkyProperties +get_description Lib/optparse.py /^ def get_description(self):$/;" m class:OptionContainer +get_description Lib/optparse.py /^ def get_description(self):$/;" m class:OptionParser +get_destination Lib/test/test_clinic.py /^ def get_destination(self, name):$/;" m class:FakeClinic +get_destination Tools/clinic/clinic.py /^ def get_destination(self, name: str) -> Destination:$/;" m class:Clinic +get_destination_buffer Tools/clinic/clinic.py /^ def get_destination_buffer($/;" m class:Clinic +get_dialect_from_registry Modules/_csv.c /^get_dialect_from_registry(PyObject *name_obj, _csvstate *module_state)$/;" f file: +get_dict Lib/_threading_local.py /^ def get_dict(self):$/;" m class:_localimpl +get_dict_descriptor Objects/typeobject.c /^get_dict_descriptor(PyTypeObject *type)$/;" f file: +get_dict_state Objects/dictobject.c /^get_dict_state(PyInterpreterState *interp)$/;" f file: +get_dict_watcher_events Modules/_testcapi/watchers.c /^get_dict_watcher_events(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +get_diff_files Doc/tools/check-warnings.py /^def get_diff_files(ref_a: str, ref_b: str, filter_mode: str = "") -> set[Path]:$/;" f +get_diff_lines Doc/tools/check-warnings.py /^def get_diff_lines(ref_a: str, ref_b: str, file: Path) -> list[int]:$/;" f +get_disassemble_as_string Lib/test/test_dis.py /^ def get_disassemble_as_string(self, func, lasti=-1):$/;" m class:DisTests +get_disassembly Lib/test/test_dis.py /^ def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs):$/;" m class:DisTests +get_disassembly Lib/test/test_dis.py /^ def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs):$/;" m class:DisWithFileTests +get_disassembly Lib/test/test_dis.py /^ def get_disassembly(self, tb):$/;" m class:TestDisTraceback +get_disassembly Lib/test/test_dis.py /^ def get_disassembly(self, tb):$/;" m class:TestDisTracebackWithFile +get_disassembly_as_string Lib/test/support/bytecode_helper.py /^ def get_disassembly_as_string(self, co):$/;" m class:BytecodeTestCase +get_dispatch_table Lib/test/test_pickle.py /^ def get_dispatch_table(self):$/;" m class:.CChainDispatchTableTests +get_dispatch_table Lib/test/test_pickle.py /^ def get_dispatch_table(self):$/;" m class:.CDispatchTableTests +get_dispatch_table Lib/test/test_pickle.py /^ def get_dispatch_table(self):$/;" m class:PyChainDispatchTableTests +get_dispatch_table Lib/test/test_pickle.py /^ def get_dispatch_table(self):$/;" m class:PyDispatchTableTests +get_dispatcher Lib/xmlrpc/server.py /^ def get_dispatcher(self, path):$/;" m class:MultiPathXMLRPCServer +get_display_name Lib/email/_header_value_parser.py /^def get_display_name(value):$/;" f +get_displaylines Lib/idlelib/sidebar.py /^def get_displaylines(text, index):$/;" f +get_displayname Tools/clinic/clinic.py /^ def get_displayname(self, i: int) -> str:$/;" m class:Parameter +get_docstring Lib/ast.py /^def get_docstring(node, clean=True):$/;" f +get_doctest Lib/doctest.py /^ def get_doctest(self, string, globs, name, filename, lineno):$/;" m class:DocTestParser +get_domain Lib/email/_header_value_parser.py /^def get_domain(value):$/;" f +get_domain_literal Lib/email/_header_value_parser.py /^def get_domain_literal(value):$/;" f +get_dot_atom Lib/email/_header_value_parser.py /^def get_dot_atom(value):$/;" f +get_dot_atom_text Lib/email/_header_value_parser.py /^def get_dot_atom_text(value):$/;" f +get_dotted_path Modules/_pickle.c /^get_dotted_path(PyObject *obj, PyObject *name)$/;" f file: +get_dtext Lib/email/_header_value_parser.py /^def get_dtext(value):$/;" f +get_effective_storage Tools/c-analyzer/c_parser/info.py /^def get_effective_storage(decl, *, default=None):$/;" f +get_elementtree_state Modules/_elementtree.c /^get_elementtree_state(PyObject *module)$/;" f file: +get_elementtree_state_by_cls Modules/_elementtree.c /^get_elementtree_state_by_cls(PyTypeObject *cls)$/;" f file: +get_elementtree_state_by_type Modules/_elementtree.c /^get_elementtree_state_by_type(PyTypeObject *tp)$/;" f file: +get_empty_nodelist_from_elements_by_tagName_ns_helper Lib/test/test_minidom.py /^ def get_empty_nodelist_from_elements_by_tagName_ns_helper(self, doc, nsuri,$/;" m class:MinidomTest +get_encoded_name Python/importdl.c /^get_encoded_name(PyObject *name, const char **hook_prefix) {$/;" f file: +get_encoded_word Lib/email/_header_value_parser.py /^def get_encoded_word(value):$/;" f +get_encoding Objects/fileobject.c /^get_encoding(PyStdPrinter_Object *self, void *closure)$/;" f file: +get_end_linenumber Lib/idlelib/sidebar.py /^def get_end_linenumber(text):$/;" f +get_entity Lib/idlelib/autocomplete.py /^ def get_entity(self, name):$/;" m class:AutoComplete +get_entity Lib/idlelib/calltip.py /^def get_entity(expression):$/;" f +get_entity_digest Lib/urllib/request.py /^ def get_entity_digest(self, data, chal):$/;" m class:AbstractDigestAuthHandler +get_entries Lib/test/test_os.py /^ def get_entries(self, names):$/;" m class:TestScandir +get_entry Lib/test/test_os.py /^ def get_entry(self, name):$/;" m class:TestScandir +get_entry_func Include/internal/pycore_hashtable.h /^ _Py_hashtable_get_entry_func get_entry_func;$/;" m struct:_Py_hashtable_t +get_env PC/launcher.c /^static wchar_t * get_env(wchar_t * key)$/;" f file: +get_env_file Lib/test/test_venv.py /^ def get_env_file(self, *args):$/;" m class:BaseTest +get_environ Lib/wsgiref/simple_server.py /^ def get_environ(self):$/;" m class:WSGIRequestHandler +get_errno Modules/_ctypes/callproc.c /^get_errno(PyObject *self, PyObject *args)$/;" f file: +get_error Lib/test/test_configparser.py /^ def get_error(self, cf, exc, section, option):$/;" f +get_error_handler_wide Objects/unicodeobject.c /^get_error_handler_wide(const wchar_t *errors)$/;" f file: +get_error_internal Modules/_ctypes/callproc.c /^get_error_internal(PyObject *self, PyObject *args, int index)$/;" f file: +get_error_line_from_tokenizer_buffers Parser/pegen_errors.c /^get_error_line_from_tokenizer_buffers(Parser *p, Py_ssize_t lineno)$/;" f file: +get_error_location Lib/test/test_future.py /^def get_error_location(msg):$/;" f +get_error_types Lib/test/test_asyncio/test_taskgroups.py /^def get_error_types(eg):$/;" f +get_event_loop Lib/asyncio/events.py /^ def get_event_loop(self):$/;" m class:AbstractEventLoopPolicy +get_event_loop Lib/asyncio/events.py /^ def get_event_loop(self):$/;" m class:BaseDefaultEventLoopPolicy +get_event_loop Lib/asyncio/events.py /^def get_event_loop():$/;" f +get_event_loop Lib/test/test_asyncio/test_events.py /^ def get_event_loop(self):$/;" m class:GetEventLoopTestsMixin.test_get_event_loop_returns_running_loop.Policy +get_event_loop Lib/test/test_asyncio/test_runners.py /^ def get_event_loop(self):$/;" m class:TestPolicy +get_event_loop Modules/_asynciomodule.c /^get_event_loop(asyncio_state *state)$/;" f file: +get_event_loop_impl Lib/test/test_asyncio/test_events.py /^ get_event_loop_impl = events._c_get_event_loop$/;" v class:.TestCGetEventLoop +get_event_loop_impl Lib/test/test_asyncio/test_events.py /^ get_event_loop_impl = None$/;" v class:GetEventLoopTestsMixin +get_event_loop_impl Lib/test/test_asyncio/test_events.py /^ get_event_loop_impl = events._py_get_event_loop$/;" v class:TestPyGetEventLoop +get_event_loop_policy Lib/asyncio/events.py /^def get_event_loop_policy():$/;" f +get_events Lib/test/test_htmlparser.py /^ def get_events(self):$/;" m class:.test_cdata_with_closing_tags.Collector +get_events Lib/test/test_htmlparser.py /^ def get_events(self):$/;" m class:EventCollector +get_events Lib/test/test_monitoring.py /^ def get_events(self, func, tool, recorders):$/;" m class:CheckEvents +get_events Lib/test/test_sys_setprofile.py /^ def get_events(self):$/;" m class:HookWatcher +get_events Python/instrumentation.c /^get_events(_Py_GlobalMonitors *m, int tool_id)$/;" f file: +get_examples Lib/doctest.py /^ def get_examples(self, string, name=''):$/;" m class:DocTestParser +get_exc_info Lib/test/test_unittest/test_result.py /^ def get_exc_info():$/;" f function:Test_TestResult.test_addFailure_filter_traceback_frames +get_exc_info Lib/test/test_unittest/test_result.py /^ def get_exc_info():$/;" f function:Test_TestResult.test_addFailure_filter_traceback_frames_chained_exception_cycle +get_exc_info Lib/test/test_unittest/test_result.py /^ def get_exc_info():$/;" f function:Test_TestResult.test_addFailure_filter_traceback_frames_chained_exception_self_loop +get_exc_info Lib/test/test_unittest/test_result.py /^ def get_exc_info():$/;" f function:Test_TestResult.test_addFailure_filter_traceback_frames_context +get_exc_state Objects/exceptions.c /^get_exc_state(void)$/;" f file: +get_exc_traceback Python/errors.c /^get_exc_traceback(PyObject *exc_value) \/* returns a borrowed ref *\/$/;" f file: +get_exc_type Python/errors.c /^get_exc_type(PyObject *exc_value) \/* returns a borrowed ref *\/$/;" f file: +get_except Lib/test/test_ctypes/test_bitfields.py /^ def get_except(self, func, *args, **kw):$/;" m class:BitFieldTest +get_except Lib/test/test_ctypes/test_structures.py /^ def get_except(self, func, *args):$/;" m class:StructureTestCase +get_exception Lib/test/test_traceback.py /^ def get_exception(self, callable, slice_start=0, slice_end=-1):$/;" m class:CAPIExceptionFormattingMixin +get_exception Lib/test/test_traceback.py /^ def get_exception(self, callable, slice_start=0, slice_end=-1):$/;" m class:PurePythonExceptionFormattingMixin +get_exception Lib/test/test_traceback.py /^ def get_exception(self, exception_or_callable):$/;" m class:BaseExceptionReportingTests +get_exception_class Modules/_sqlite/util.c /^get_exception_class(pysqlite_state *state, int errorcode)$/;" f file: +get_exception_format Lib/test/test_traceback.py /^ def get_exception_format(self, func, exc):$/;" m class:TracebackCases +get_exception_handler Lib/asyncio/base_events.py /^ def get_exception_handler(self):$/;" m class:BaseEventLoop +get_exception_handler Lib/asyncio/events.py /^ def get_exception_handler(self):$/;" m class:AbstractEventLoop +get_exception_handler Python/ceval.c /^get_exception_handler(PyCodeObject *code, int index, int *level, int *handler, int *lasti)$/;" f file: +get_exceptions Lib/test/test_pickle.py /^def get_exceptions(mod):$/;" f +get_exec_path Lib/os.py /^def get_exec_path(env=None):$/;" f +get_executable Lib/multiprocessing/spawn.py /^def get_executable():$/;" f +get_executed Lib/test/libregrtest/main.py /^ def get_executed(self):$/;" m class:Regrtest +get_exitcode Lib/test/libregrtest/main.py /^ def get_exitcode(self):$/;" m class:Regrtest +get_expected Lib/test/test_monitoring.py /^ def get_expected(name, call_method, ns):$/;" f function:TestLoadSuperAttr.test_vs_other_type_call +get_expected_config Lib/test/test_embed.py /^ def get_expected_config(self, expected_preconfig, expected,$/;" m class:InitConfigTests +get_expected_details Lib/test/test_c_locale_coercion.py /^ def get_expected_details(cls, coercion_expected, fs_encoding, stream_encoding, env_vars):$/;" m class:EncodingDetails +get_expected_hash Lib/test/test_hash.py /^ def get_expected_hash(self, position, length):$/;" m class:StringlikeHashRandomizationTests +get_expected_output Lib/test/test_cprofile.py /^ def get_expected_output(self):$/;" m class:CProfileTest +get_expected_output Lib/test/test_profile.py /^ def get_expected_output(self):$/;" m class:ProfileTest +get_exported_symbols Tools/build/smelly.py /^def get_exported_symbols(library, dynamic=False):$/;" f +get_expression Lib/idlelib/hyperparser.py /^ def get_expression(self):$/;" m class:HyperParser +get_extended_attribute Lib/email/_header_value_parser.py /^def get_extended_attribute(value):$/;" f +get_extended_attrtext Lib/email/_header_value_parser.py /^def get_extended_attrtext(value):$/;" f +get_extension Lib/pickle.py /^ def get_extension(self, code):$/;" m class:_Unpickler +get_extension_defn Tools/freeze/checkextensions_win32.py /^def get_extension_defn(moduleName, mapFileName, prefix):$/;" f +get_extra Tools/c-analyzer/cpython/_capi.py /^ def get_extra(item):$/;" f function:render_table.get_extra +get_extra Tools/c-analyzer/cpython/_capi.py /^ def get_extra(item):$/;" f function:render_table +get_extra_flags Tools/peg_generator/pegen/build.py /^def get_extra_flags(compiler_flags: str, compiler_py_flags_nodist: str) -> List[str]:$/;" f +get_extra_info Lib/asyncio/sslproto.py /^ def get_extra_info(self, name, default=None):$/;" m class:_SSLProtocolTransport +get_extra_info Lib/asyncio/streams.py /^ def get_extra_info(self, name, default=None):$/;" m class:StreamWriter +get_extra_info Lib/asyncio/transports.py /^ def get_extra_info(self, name, default=None):$/;" m class:BaseTransport +get_extra_info Lib/test/test_asyncio/test_base_events.py /^ def get_extra_info(self, key):$/;" m class:BaseEventLoopWithSelectorTests.test_create_connection_ssl_server_hostname_default._SelectorTransportMock +get_extra_paths Tools/wasm/wasm_build.py /^ def get_extra_paths(self) -> Iterable[pathlib.PurePath]:$/;" m class:Host +get_feature_macros Modules/_testcapimodule.c /^get_feature_macros(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +get_field Lib/string.py /^ def get_field(self, field_name, args, kwargs):$/;" m class:Formatter +get_field_object Objects/stringlib/unicode_format.h /^get_field_object(SubString *input, PyObject *args, PyObject *kwargs,$/;" f +get_file Lib/mailbox.py /^ def get_file(self, key):$/;" m class:Babyl +get_file Lib/mailbox.py /^ def get_file(self, key):$/;" m class:MH +get_file Lib/mailbox.py /^ def get_file(self, key):$/;" m class:Mailbox +get_file Lib/mailbox.py /^ def get_file(self, key):$/;" m class:Maildir +get_file Lib/mailbox.py /^ def get_file(self, key, from_=False):$/;" m class:_mboxMMDF +get_file Lib/test/test_mailbox.py /^ def get_file(self, key):$/;" m class:FakeMailBox +get_file_breaks Lib/bdb.py /^ def get_file_breaks(self, filename):$/;" m class:Bdb +get_file_preprocessor Tools/c-analyzer/c_parser/preprocessor/__init__.py /^ def get_file_preprocessor(filename):$/;" f function:get_preprocessor +get_file_sizes Tools/iobench/iobench.py /^def get_file_sizes():$/;" f +get_file_system Lib/test/test_os.py /^ def get_file_system(self, path):$/;" m class:UtimeTests +get_filename Lib/email/message.py /^ def get_filename(self, failobj=None):$/;" m class:Message +get_filename Lib/importlib/_bootstrap_external.py /^ def get_filename(self, fullname):$/;" m class:ExtensionFileLoader +get_filename Lib/importlib/_bootstrap_external.py /^ def get_filename(self, fullname):$/;" m class:FileLoader +get_filename Lib/importlib/abc.py /^ def get_filename(self, fullname):$/;" m class:ExecutionLoader +get_filename Lib/test/test_importlib/test_abc.py /^ def get_filename(self, fullname):$/;" m class:ExecutionLoader +get_filename Lib/test/test_importlib/test_abc.py /^ def get_filename(self, fullname):$/;" m class:SourceOnlyLoader +get_filename Lib/test/test_importlib/test_spec.py /^ def get_filename(self, name):$/;" m class:FactoryTests.test_spec_from_file_location_loader_no_location_bad_get_filename.Loader +get_filename Lib/zipimport.py /^ def get_filename(self, fullname):$/;" m class:zipimporter +get_files Lib/test/libregrtest/save_env.py /^ def get_files(self):$/;" m class:saved_test_environment +get_files Lib/test/test_shutil.py /^ def get_files(self):$/;" m class:TestCopyFileObj +get_files Lib/test/test_shutil.py /^ def get_files(self):$/;" m class:_ZeroCopyFileTest +get_files Lib/test/test_zipfile/test_core.py /^def get_files(test):$/;" f +get_filter Lib/tkinter/filedialog.py /^ def get_filter(self):$/;" m class:FileDialog +get_filter Python/_warnings.c /^get_filter(PyInterpreterState *interp, PyObject *category,$/;" f file: +get_finder Lib/test/test_importlib/source/test_finder.py /^ def get_finder(self, root):$/;" m class:FinderTests +get_fips_mode Lib/test/test_hashlib.py /^ def get_fips_mode():$/;" f +get_firstlineno Lib/test/test_trace.py /^def get_firstlineno(func):$/;" f +get_fixers Lib/lib2to3/refactor.py /^ def get_fixers(self):$/;" m class:RefactoringTool +get_fixers_from_package Lib/lib2to3/refactor.py /^def get_fixers_from_package(pkg_name):$/;" f +get_flags Lib/mailbox.py /^ def get_flags(self):$/;" m class:MaildirMessage +get_flags Lib/mailbox.py /^ def get_flags(self):$/;" m class:_mboxMMDFMessage +get_flip_fold_offset Modules/_datetimemodule.c /^get_flip_fold_offset(PyObject *dt)$/;" f file: +get_float_as_integer_ratio Modules/_datetimemodule.c /^get_float_as_integer_ratio(PyObject *floatobj)$/;" f file: +get_float_state Objects/floatobject.c /^get_float_state(void)$/;" f file: +get_fmt Lib/test/test_decimal.py /^ def get_fmt(x, override=None, fmt='n'):$/;" f function:CWhitebox.test_invalid_override +get_fmt Lib/test/test_decimal.py /^ def get_fmt(x, override=None, fmt='n'):$/;" f function:FormatTest.test_n_format +get_folder Lib/mailbox.py /^ def get_folder(self, folder):$/;" m class:MH +get_folder Lib/mailbox.py /^ def get_folder(self, folder):$/;" m class:Maildir +get_format Modules/_testbuffer.c /^get_format(PyObject *format)$/;" f file: +get_frame_filename Python/_warnings.c /^get_frame_filename(PyFrameObject *frame)$/;" f file: +get_frames Lib/test/test_tracemalloc.py /^def get_frames(nframe, lineno_delta):$/;" f +get_frees Lib/symtable.py /^ def get_frees(self):$/;" m class:Function +get_from Lib/mailbox.py /^ def get_from(self):$/;" m class:_mboxMMDFMessage +get_full_url Lib/urllib/request.py /^ def get_full_url(self):$/;" m class:Request +get_func Lib/test/test_code.py /^ def get_func(self):$/;" m class:CodeLocationTest.CoExtra +get_func Lib/test/test_embed.py /^ def get_func(name):$/;" f function:InitConfigTests.test_global_pathconfig +get_function_instructions Lib/test/test_dtrace.py /^ def get_function_instructions(funcname):$/;" f function:TraceTests.test_verify_call_opcodes +get_function_source Lib/test/test_asyncio/utils.py /^def get_function_source(func):$/;" f +get_functools_state Modules/_functoolsmodule.c /^get_functools_state(PyObject *module)$/;" f file: +get_functools_state_by_type Modules/_functoolsmodule.c /^get_functools_state_by_type(PyTypeObject *type)$/;" f file: +get_future_loop Modules/_asynciomodule.c /^get_future_loop(asyncio_state *state, PyObject *fut)$/;" f file: +get_fws Lib/email/_header_value_parser.py /^def get_fws(value):$/;" f +get_gc_state Modules/gcmodule.c /^get_gc_state(void)$/;" f file: +get_gdb_repr Lib/test/test_gdb.py /^ def get_gdb_repr(self, source,$/;" m class:DebuggerTests +get_gdb_type Tools/gdb/libpython.py /^ def get_gdb_type(cls):$/;" m class:PyObjectPtr +get_gdb_version Lib/test/test_gdb.py /^def get_gdb_version():$/;" f +get_gdbm_state Modules/_gdbmmodule.c /^get_gdbm_state(PyObject *module)$/;" f file: +get_gen Lib/test/test_sys.py /^ def get_gen(): yield 1$/;" f function:SizeofTest.test_objecttypes +get_generator Lib/test/test_type_params.py /^ def get_generator[A]():$/;" f function:TypeParamsTypeVarTest.test_typevar_generator +get_geometry Lib/idlelib/editor.py /^ def get_geometry(self):$/;" m class:EditorWindow +get_getpath_codeobject Modules/_testinternalcapi.c /^get_getpath_codeobject(PyObject *self, PyObject *Py_UNUSED(args)) {$/;" f file: +get_git_branch Tools/patchcheck/patchcheck.py /^def get_git_branch():$/;" f +get_git_remote_default_branch Tools/patchcheck/patchcheck.py /^def get_git_remote_default_branch(remote_name):$/;" f +get_git_upstream_remote Tools/patchcheck/patchcheck.py /^def get_git_upstream_remote():$/;" f +get_global_reftotal Objects/object.c /^get_global_reftotal(_PyRuntimeState *runtime)$/;" f file: +get_globals Lib/symtable.py /^ def get_globals(self):$/;" m class:Function +get_gmtoff Modules/timemodule.c /^get_gmtoff(time_t t, struct tm *p)$/;" f file: +get_group Lib/email/_header_value_parser.py /^def get_group(value):$/;" f +get_group Tools/c-analyzer/c_parser/info.py /^ def get_group(cls, kind, *, groups=None):$/;" m class:KIND +get_group_list Lib/email/_header_value_parser.py /^def get_group_list(value):$/;" f +get_grouped_opcodes Lib/difflib.py /^ def get_grouped_opcodes(self, n=3):$/;" m class:SequenceMatcher +get_groups Lib/test/test_graphlib.py /^ def get_groups(ts):$/;" f function:TestTopologicalSort.test_order_of_insertion_does_not_matter_between_groups +get_grp_state Modules/grpmodule.c /^get_grp_state(PyObject *module)$/;" f file: +get_handler Modules/signalmodule.c /^get_handler(int i)$/;" f +get_hash Lib/test/test_hash.py /^ def get_hash(self, repr_, seed=None):$/;" m class:HashRandomizationTests +get_hash_command Lib/test/test_hash.py /^ def get_hash_command(self, repr_):$/;" m class:DatetimeTests +get_hash_command Lib/test/test_hash.py /^ def get_hash_command(self, repr_):$/;" m class:HashRandomizationTests +get_hash_info Python/sysmodule.c /^get_hash_info(PyThreadState *tstate)$/;" f file: +get_hash_secret_salt Modules/expat/xmlparse.c /^get_hash_secret_salt(XML_Parser parser) {$/;" f file: +get_hashlib_state Modules/_hashopenssl.c /^get_hashlib_state(PyObject *module)$/;" f file: +get_header Lib/test/test_tools/test_i18n.py /^ def get_header(self, data):$/;" m class:Test_pygettext +get_header Lib/urllib/request.py /^ def get_header(self, header_name, default=None):$/;" m class:Request +get_header_version_info Doc/tools/extensions/patchlevel.py /^def get_header_version_info(srcdir):$/;" f +get_headers_and_fp Lib/test/test_httplib.py /^ def get_headers_and_fp(self):$/;" m class:RequestBodyTest +get_high_socket_fd Lib/test/_test_multiprocessing.py /^ def get_high_socket_fd(self):$/;" m class:TestCloseFds +get_host_flags Modules/_ssl.c /^get_host_flags(PySSLContext *self, void *c)$/;" f file: +get_host_info Lib/xmlrpc/client.py /^ def get_host_info(self, host):$/;" m class:Transport +get_host_platform Tools/c-analyzer/distutils/util.py /^def get_host_platform():$/;" f +get_html_page Lib/pydoc.py /^ def get_html_page(url):$/;" f function:_url_handler +get_html_title Lib/test/test_pydoc.py /^def get_html_title(text):$/;" f +get_id Lib/symtable.py /^ def get_id(self):$/;" m class:SymbolTable +get_id Modules/_testcapi/watchers.c /^get_id(PyObject *obj)$/;" f file: +get_ident Lib/threading.py /^get_ident = _thread.get_ident$/;" v +get_identifiers Lib/string.py /^ def get_identifiers(self):$/;" m class:Template +get_identifiers Lib/symtable.py /^ def get_identifiers(self):$/;" m class:SymbolTable +get_identifiers_and_strings Tools/build/generate_global_objects.py /^def get_identifiers_and_strings() -> 'tuple[set[str], dict[str, str]]':$/;" f +get_import_from_suggestion Lib/test/test_traceback.py /^ def get_import_from_suggestion(self, mod_dict, name):$/;" m class:SuggestionFormattingTestBase +get_importer Lib/pkgutil.py /^def get_importer(path_item):$/;" f +get_indent Lib/idlelib/format.py /^def get_indent(line):$/;" f +get_index Tools/gdb/libpython.py /^ def get_index(self):$/;" m class:Frame +get_index_from_order Objects/dictobject.c /^get_index_from_order(PyDictObject *mp, Py_ssize_t i)$/;" f file: +get_info Lib/mailbox.py /^ def get_info(self):$/;" m class:MaildirMessage +get_info Lib/tarfile.py /^ def get_info(self):$/;" m class:TarInfo +get_infos Lib/test/pythoninfo.py /^ def get_infos(self):$/;" m class:PythonInfo +get_inheritable Lib/asyncio/trsock.py /^ def get_inheritable(self):$/;" m class:TransportSocket +get_inheritable Lib/socket.py /^ def get_inheritable(self):$/;" f function:socket.type +get_inheritable Python/fileutils.c /^get_inheritable(int fd, int raise)$/;" f file: +get_inherited_fds Lib/multiprocessing/forkserver.py /^ def get_inherited_fds(self):$/;" m class:ForkServer +get_inherited_fds Lib/multiprocessing/forkserver.py /^get_inherited_fds = _forkserver.get_inherited_fds$/;" v +get_init_status Lib/test/test_concurrent_futures/test_init.py /^def get_init_status():$/;" f +get_innermost_context Lib/test/test_asyncio/test_tasks.py /^def get_innermost_context(exc):$/;" f +get_instructions Lib/dis.py /^def get_instructions(x, *, first_line=None, show_caches=False, adaptive=False):$/;" f +get_int Lib/lib2to3/patcomp.py /^ def get_int(self, node):$/;" m class:PatternCompiler +get_integer Objects/stringlib/unicode_format.h /^get_integer(const SubString *str)$/;" f +get_integer Python/formatter_unicode.c /^get_integer(PyObject *str, Py_ssize_t *ppos, Py_ssize_t end,$/;" f file: +get_integers Lib/test/test_tcl.py /^ def get_integers(self):$/;" m class:TclTest +get_interned_dict Objects/unicodeobject.c /^static inline PyObject *get_interned_dict(PyInterpreterState *interp)$/;" f file: +get_interp_settings Modules/_testinternalcapi.c /^get_interp_settings(PyObject *self, PyObject *args)$/;" f file: +get_interpolation_config Lib/test/test_configparser.py /^ def get_interpolation_config(self):$/;" f +get_interpreter Lib/test/test__xxinterpchannels.py /^ def get_interpreter(self, interp):$/;" m class:ChannelCloseFixture +get_interpreter Lib/zipapp.py /^def get_interpreter(archive):$/;" f +get_invalid_mailbox Lib/email/_header_value_parser.py /^def get_invalid_mailbox(value, endchars):$/;" f +get_invalid_parameter Lib/email/_header_value_parser.py /^def get_invalid_parameter(value):$/;" f +get_io_state Modules/_io/_iomodule.h /^get_io_state(PyObject *module)$/;" f +get_io_state_by_cls Modules/_io/_iomodule.h /^get_io_state_by_cls(PyTypeObject *cls)$/;" f +get_isolation_level Modules/_sqlite/connection.c /^get_isolation_level(const char *level)$/;" f file: +get_item Lib/test/test_buffer.py /^def get_item(lst, indices):$/;" f +get_itemsize Modules/_testbuffer.c /^get_itemsize(PyObject *format)$/;" f file: +get_json Tools/build/parse_html5_entities.py /^def get_json(url):$/;" f +get_key Lib/selectors.py /^ def get_key(self, fileobj):$/;" m class:BaseSelector +get_key_as_get_content_key Lib/test/test_email/test_contentmanager.py /^ def get_key_as_get_content_key(self, order, key):$/;" m class:TestContentManager +get_key_as_get_content_key_order Lib/test/test_email/test_contentmanager.py /^ def get_key_as_get_content_key_order(self, order, key):$/;" m class:TestContentManager +get_key_params Lib/test/test_email/test_contentmanager.py /^ get_key_params = {$/;" v class:TestContentManager +get_keys_values Tools/gdb/libpython.py /^ def get_keys_values(self):$/;" m class:HeapTypeObjectPtr +get_kind_group Tools/c-analyzer/c_parser/info.py /^def get_kind_group(item):$/;" f +get_known Tools/c-analyzer/c_analyzer/datafiles.py /^def get_known(known, extracolumns=None, *,$/;" f +get_kwargs Modules/_testcapi/getargs.c /^get_kwargs(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +get_labels Lib/mailbox.py /^ def get_labels(self):$/;" m class:Babyl +get_labels Lib/mailbox.py /^ def get_labels(self):$/;" m class:BabylMessage +get_last_error Modules/_ctypes/callproc.c /^get_last_error(PyObject *self, PyObject *args)$/;" f file: +get_last_non_whitespace_token Tools/peg_generator/pegen/tokenizer.py /^ def get_last_non_whitespace_token(self) -> tokenize.TokenInfo:$/;" m class:Tokenizer +get_last_stmt_bracketing Lib/idlelib/pyparse.py /^ def get_last_stmt_bracketing(self):$/;" m class:Parser +get_latin1_char Objects/unicodeobject.c /^get_latin1_char(Py_UCS1 ch)$/;" f file: +get_layout PC/layout/main.py /^def get_layout(ns):$/;" f +get_ld_header Lib/ctypes/_aix.py /^def get_ld_header(p):$/;" f +get_ld_header_info Lib/ctypes/_aix.py /^def get_ld_header_info(p):$/;" f +get_ld_headers Lib/ctypes/_aix.py /^def get_ld_headers(file):$/;" f +get_legacy Lib/ctypes/_aix.py /^def get_legacy(members):$/;" f +get_legacy_reftotal Objects/object.c /^get_legacy_reftotal(void)$/;" f file: +get_len_of_range Objects/rangeobject.c /^get_len_of_range(long lo, long hi, long step)$/;" f file: +get_lib_layout PC/layout/main.py /^def get_lib_layout(ns):$/;" f +get_libpaths Lib/ctypes/_aix.py /^def get_libpaths():$/;" f +get_line Lib/tabnanny.py /^ def get_line(self):$/;" m class:NannyNag +get_line_col Lib/idlelib/searchengine.py /^def get_line_col(index):$/;" f +get_line_delta Objects/codeobject.c /^get_line_delta(const uint8_t *ptr)$/;" f file: +get_line_indent Lib/idlelib/editor.py /^def get_line_indent(line, tabwidth):$/;" f +get_line_indent Lib/idlelib/format.py /^def get_line_indent(line, tabwidth):$/;" f +get_line_info Lib/idlelib/codecontext.py /^def get_line_info(codeline):$/;" f +get_line_screen_position Lib/idlelib/idle_test/test_sidebar.py /^ def get_line_screen_position(self, line):$/;" m class:LineNumbersTest +get_linear_subpattern Lib/lib2to3/btm_utils.py /^ def get_linear_subpattern(self):$/;" m class:MinNode +get_lineno Lib/idlelib/sidebar.py /^def get_lineno(text, index):$/;" f +get_lineno Lib/lib2to3/pytree.py /^ def get_lineno(self):$/;" m class:Base +get_lineno Lib/symtable.py /^ def get_lineno(self):$/;" m class:SymbolTable +get_lineno Lib/tabnanny.py /^ def get_lineno(self):$/;" m class:NannyNag +get_lines Lib/argparse.py /^ def get_lines(parts, indent, prefix=None):$/;" f function:HelpFormatter._format_usage +get_lines Tools/peg_generator/pegen/tokenizer.py /^ def get_lines(self, line_numbers: List[int]) -> List[str]:$/;" m class:Tokenizer +get_lint_status Lib/test/test_plistlib.py /^ def get_lint_status(self):$/;" m class:TestPlutil +get_list_state Objects/listobject.c /^get_list_state(void)$/;" f file: +get_load_const Lib/test/test_ast.py /^ def get_load_const(self, tree):$/;" m class:ConstantTests +get_loader Lib/pkgutil.py /^def get_loader(module_or_name):$/;" f +get_local_events Python/instrumentation.c /^get_local_events(_Py_LocalMonitors *m, int tool_id)$/;" f file: +get_local_part Lib/email/_header_value_parser.py /^def get_local_part(value):$/;" f +get_local_timestamp Modules/_zoneinfo.c /^get_local_timestamp(PyObject *dt, int64_t *local_ts)$/;" f file: +get_locale Lib/test/libregrtest/save_env.py /^ def get_locale(self):$/;" m class:saved_test_environment +get_locale_info Python/formatter_unicode.c /^get_locale_info(enum LocaleType type, LocaleInfo *locale_info)$/;" f file: +get_locale_state Modules/_localemodule.c /^get_locale_state(PyObject *m)$/;" f file: +get_locals Lib/symtable.py /^ def get_locals(self):$/;" m class:Function +get_localsplus Tools/build/deepfreeze.py /^def get_localsplus(code: types.CodeType):$/;" f +get_localsplus_counts Objects/codeobject.c /^get_localsplus_counts(PyObject *names, PyObject *kinds,$/;" f file: +get_localsplus_counts Tools/build/deepfreeze.py /^def get_localsplus_counts(code: types.CodeType,$/;" f +get_localsplus_names Objects/codeobject.c /^get_localsplus_names(PyCodeObject *co, _PyLocals_Kind kind, int num)$/;" f file: +get_localsplus_names Tools/build/umarshal.py /^ def get_localsplus_names(self, select_kind: int) -> Tuple[str, ...]:$/;" m class:Code +get_location Tools/build/check_extension_modules.py /^ def get_location(self, modinfo: ModuleInfo) -> pathlib.Path:$/;" m class:ModuleChecker +get_lock Lib/multiprocessing/sharedctypes.py /^ def get_lock(self):$/;" m class:SynchronizedBase +get_lockdata Lib/test/test_fcntl.py /^ def get_lockdata():$/;" m class:TestFcntl +get_logger Lib/multiprocessing/context.py /^ def get_logger(self):$/;" m class:BaseContext +get_logger Lib/multiprocessing/util.py /^def get_logger():$/;" f +get_logging__handlerList Lib/test/libregrtest/save_env.py /^ def get_logging__handlerList(self):$/;" m class:saved_test_environment +get_logging__handlers Lib/test/libregrtest/save_env.py /^ def get_logging__handlers(self):$/;" m class:saved_test_environment +get_long Modules/_ctypes/cfield.c /^get_long(PyObject *v, long *p)$/;" f file: +get_long Modules/_struct.c /^get_long(_structmodulestate *state, PyObject *v, long *p)$/;" f file: +get_long_be Lib/sndhdr.py /^def get_long_be(b):$/;" f +get_long_le Lib/sndhdr.py /^def get_long_le(b):$/;" f +get_longlong Modules/_ctypes/cfield.c /^get_longlong(PyObject *v, long long *p)$/;" f file: +get_longlong Modules/_struct.c /^get_longlong(_structmodulestate *state, PyObject *v, long long *p)$/;" f file: +get_loop Lib/asyncio/base_events.py /^ def get_loop(self):$/;" m class:Server +get_loop Lib/asyncio/events.py /^ def get_loop(self):$/;" m class:AbstractServer +get_loop Lib/asyncio/futures.py /^ def get_loop(self):$/;" m class:Future +get_loop Lib/asyncio/runners.py /^ def get_loop(self):$/;" m class:Runner +get_loop Lib/test/test_asyncio/test_runners.py /^ def get_loop(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +get_loop Lib/test/test_asyncio/test_tasks.py /^ def get_loop(self):$/;" m class:BaseTaskIntrospectionTests.test__register_task_2.TaskLike +get_loop Lib/test/test_asyncio/test_tasks.py /^ def get_loop(self):$/;" m class:BaseTaskIntrospectionTests.test__register_task_3.TaskLike +get_loop Lib/test/test_asyncio/test_tasks.py /^ def get_loop(self):$/;" m class:CTask_Future_Tests.test_foobar.Fut +get_lzma_state Modules/_lzmamodule.c /^get_lzma_state(PyObject *module)$/;" f file: +get_mailbox Lib/email/_header_value_parser.py /^def get_mailbox(value):$/;" f +get_mailbox_list Lib/email/_header_value_parser.py /^def get_mailbox_list(value):$/;" f +get_main Lib/test/support/interpreters.py /^def get_main():$/;" f +get_makefile_filename Lib/sysconfig.py /^def get_makefile_filename():$/;" f +get_makefile_var Tools/freeze/test/freeze.py /^def get_makefile_var(builddir, name):$/;" f +get_map Lib/selectors.py /^ def get_map(self):$/;" m class:BaseSelector +get_map Lib/selectors.py /^ def get_map(self):$/;" m class:_BaseSelectorImpl +get_map Lib/test/test_asyncio/utils.py /^ def get_map(self):$/;" m class:TestSelector +get_map Lib/test/test_telnetlib.py /^ def get_map(self):$/;" m class:MockSelector +get_match_tests Lib/test/libregrtest/runtest.py /^ def get_match_tests(self, test_name) -> MatchTests | None:$/;" m class:RunTests +get_matcher_type Objects/exceptions.c /^get_matcher_type(PyObject *value,$/;" f file: +get_matching_blocks Lib/difflib.py /^ def get_matching_blocks(self):$/;" m class:SequenceMatcher +get_matching_oses Tools/c-analyzer/c_parser/preprocessor/common.py /^def get_matching_oses(missing, filename):$/;" f +get_math_module_state Modules/mathmodule.c /^get_math_module_state(PyObject *module)$/;" f file: +get_max_height_and_y_coord Lib/idlelib/zoomheight.py /^ def get_max_height_and_y_coord(self):$/;" m class:ZoomHeight +get_max_label Python/flowgraph.c /^get_max_label(basicblock *entryblock)$/;" f file: +get_maximum_version Modules/_ssl.c /^get_maximum_version(PySSLContext *self, void *c)$/;" f file: +get_memb_offset Modules/_testcapi/heaptype_relative.c /^get_memb_offset(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +get_member Lib/ctypes/_aix.py /^def get_member(name, members):$/;" f +get_memory_error Objects/exceptions.c /^get_memory_error(int allow_allocation, PyObject *args, PyObject *kwds)$/;" f file: +get_message Lib/mailbox.py /^ def get_message(self, key):$/;" m class:Babyl +get_message Lib/mailbox.py /^ def get_message(self, key):$/;" m class:MH +get_message Lib/mailbox.py /^ def get_message(self, key):$/;" m class:Mailbox +get_message Lib/mailbox.py /^ def get_message(self, key):$/;" m class:Maildir +get_message Lib/mailbox.py /^ def get_message(self, key):$/;" m class:_mboxMMDF +get_message_content Lib/email/contentmanager.py /^def get_message_content(msg):$/;" f +get_message_lines Lib/idlelib/run.py /^def get_message_lines(typ, exc, tb):$/;" f +get_method Lib/urllib/request.py /^ def get_method(self):$/;" m class:Request +get_methods Lib/multiprocessing/managers.py /^ def get_methods(self, c, token):$/;" m class:Server +get_methods Lib/symtable.py /^ def get_methods(self):$/;" m class:Class +get_minimum_version Modules/_ssl.c /^get_minimum_version(PySSLContext *self, void *c)$/;" f file: +get_mixed_type_key Lib/ipaddress.py /^def get_mixed_type_key(obj):$/;" f +get_mode Lib/test/test_stat.py /^ def get_mode(self, fname=TESTFN, lstat=True):$/;" m class:TestFilemode +get_mode Modules/_io/fileio.c /^get_mode(fileio *self, void *closure)$/;" f file: +get_mode Modules/_io/winconsoleio.c /^get_mode(winconsoleio *self, void *closure)$/;" f file: +get_mode Objects/fileobject.c /^get_mode(PyStdPrinter_Object *self, void *closure)$/;" f file: +get_modifiers Lib/idlelib/config_key.py /^ def get_modifiers(self):$/;" m class:GetKeysFrame +get_modifiers Lib/idlelib/idle_test/test_config_key.py /^ get_modifiers = Func()$/;" v class:ValidationTest.Validator +get_module Lib/test/libregrtest/save_env.py /^ def get_module(self, name):$/;" m class:saved_test_environment +get_module_code Tools/freeze/regen_frozen.py /^def get_module_code(filename):$/;" f +get_module_from_owned_type Modules/_xxinterpchannelsmodule.c /^get_module_from_owned_type(PyTypeObject *cls)$/;" f file: +get_module_from_type Modules/_xxinterpchannelsmodule.c /^get_module_from_type(PyTypeObject *cls)$/;" f file: +get_module_names Lib/test/_test_multiprocessing.py /^ def get_module_names(self):$/;" m class:_TestImportStar +get_module_state Modules/_bz2module.c /^get_module_state(PyObject *module)$/;" f file: +get_module_state Modules/_collectionsmodule.c /^get_module_state(PyObject *mod)$/;" f file: +get_module_state Modules/_testinternalcapi.c /^get_module_state(PyObject *mod)$/;" f file: +get_module_state Modules/_testsinglephase.c /^get_module_state(PyObject *module)$/;" f file: +get_module_state Modules/_xxinterpchannelsmodule.c /^get_module_state(PyObject *mod)$/;" f file: +get_module_state Modules/_xxsubinterpretersmodule.c /^get_module_state(PyObject *mod)$/;" f file: +get_module_state Modules/cjkcodecs/cjkcodecs.h /^get_module_state(PyObject *mod)$/;" f +get_module_state Modules/cjkcodecs/multibytecodec.c /^get_module_state(PyObject *module)$/;" f file: +get_module_state Modules/itertoolsmodule.c /^get_module_state(PyObject *mod)$/;" f file: +get_module_state Modules/socketmodule.c /^get_module_state(PyObject *mod)$/;" f file: +get_module_state_by_cls Modules/_collectionsmodule.c /^get_module_state_by_cls(PyTypeObject *cls)$/;" f file: +get_module_state_by_cls Modules/itertoolsmodule.c /^get_module_state_by_cls(PyTypeObject *cls)$/;" f file: +get_modules Lib/test/test_zoneinfo/_support.py /^def get_modules():$/;" f +get_modules Tools/build/check_extension_modules.py /^ def get_modules(self) -> list[ModuleInfo]:$/;" m class:ModuleChecker +get_monotonic Modules/timemodule.c /^get_monotonic(_PyTime_t *t)$/;" f file: +get_msg Lib/tabnanny.py /^ def get_msg(self):$/;" m class:NannyNag +get_msg_id Lib/email/_header_value_parser.py /^def get_msg_id(value):$/;" f +get_msgids Lib/test/test_tools/test_i18n.py /^ def get_msgids(self, data):$/;" m class:Test_pygettext +get_msvc_paths Tools/c-analyzer/distutils/msvccompiler.py /^ def get_msvc_paths(self, path, platform='x86'):$/;" m class:MSVCCompiler +get_msvcr Tools/c-analyzer/distutils/cygwinccompiler.py /^def get_msvcr():$/;" f +get_multiprocessing_process__dangling Lib/test/libregrtest/save_env.py /^ def get_multiprocessing_process__dangling(self):$/;" m class:saved_test_environment +get_my_type Lib/test/test_argparse.py /^ def get_my_type(string):$/;" f function:TestTypeRegistration.test +get_n_children_alive Lib/concurrent/futures/process.py /^ def get_n_children_alive(self):$/;" m class:_ExecutorManagerThread +get_name Lib/asyncio/coroutines.py /^ def get_name(coro):$/;" f function:_format_coroutine +get_name Lib/asyncio/tasks.py /^ def get_name(self):$/;" m class:Task +get_name Lib/logging/__init__.py /^ def get_name(self):$/;" m class:Handler +get_name Lib/symtable.py /^ def get_name(self):$/;" m class:Symbol +get_name Lib/symtable.py /^ def get_name(self):$/;" m class:SymbolTable +get_name Modules/getaddrinfo.c /^get_name(addr, gai_afd, res, numaddr, pai, port0)$/;" f file: +get_name_addr Lib/email/_header_value_parser.py /^def get_name_addr(value):$/;" f +get_names Lib/cmd.py /^ def get_names(self):$/;" m class:Cmd +get_names Lib/urllib/request.py /^ def get_names(self):$/;" m class:FileHandler +get_namespace Lib/symtable.py /^ def get_namespace(self):$/;" m class:Symbol +get_namespaces Lib/symtable.py /^ def get_namespaces(self):$/;" m class:Symbol +get_native_fmtchar Objects/memoryobject.c /^get_native_fmtchar(char *result, const char *fmt)$/;" f file: +get_native_fmtstr Objects/memoryobject.c /^get_native_fmtstr(const char *fmt)$/;" f file: +get_native_id Lib/threading.py /^ get_native_id = _thread.get_native_id$/;" v +get_new_keys Lib/idlelib/configdialog.py /^ def get_new_keys(self):$/;" m class:KeysPage +get_new_keys_name Lib/idlelib/configdialog.py /^ def get_new_keys_name(self, message):$/;" m class:KeysPage +get_new_theme_name Lib/idlelib/configdialog.py /^ def get_new_theme_name(self, message):$/;" m class:HighPage +get_nis_state Modules/nismodule.c /^get_nis_state(PyObject *module)$/;" f file: +get_nmemb Modules/_testbuffer.c /^get_nmemb(PyObject *s)$/;" f file: +get_no_fold_literal Lib/email/_header_value_parser.py /^def get_no_fold_literal(value):$/;" f +get_non_text_content Lib/email/contentmanager.py /^def get_non_text_content(msg):$/;" f +get_nonlocals Lib/symtable.py /^ def get_nonlocals(self):$/;" m class:Function +get_nonnegative_int_from_dict Modules/_testinternalcapi.c /^get_nonnegative_int_from_dict(PyObject *dict, const char *key) {$/;" f file: +get_nonstandard_attr Lib/http/cookiejar.py /^ def get_nonstandard_attr(self, name, default=None):$/;" m class:Cookie +get_normal_name Parser/tokenizer.c /^get_normal_name(const char *s) \/* for utf-8 and latin-1 *\/$/;" f file: +get_normalization_failure_note Python/errors.c /^get_normalization_failure_note(PyThreadState *tstate, PyObject *exception, PyObject *value)$/;" f file: +get_nowait Lib/asyncio/queues.py /^ def get_nowait(self):$/;" m class:Queue +get_nowait Lib/multiprocessing/queues.py /^ def get_nowait(self):$/;" m class:Queue +get_nowait Lib/queue.py /^ def get_nowait(self):$/;" m class:Queue +get_nowait Lib/queue.py /^ def get_nowait(self):$/;" m class:_PySimpleQueue +get_num_global_allocated_blocks Objects/obmalloc.c /^get_num_global_allocated_blocks(_PyRuntimeState *runtime)$/;" f file: +get_num_lines_in_stmt Lib/idlelib/pyparse.py /^ def get_num_lines_in_stmt(self):$/;" m class:Parser +get_num_tickets Modules/_ssl.c /^get_num_tickets(PySSLContext *self, void *c)$/;" f file: +get_nuspec_layout PC/layout/support/nuspec.py /^def get_nuspec_layout(ns):$/;" f +get_obj Lib/multiprocessing/sharedctypes.py /^ def get_obj(self):$/;" m class:SynchronizedBase +get_object_traceback Lib/tracemalloc.py /^def get_object_traceback(obj):$/;" f +get_obs_local_part Lib/email/_header_value_parser.py /^def get_obs_local_part(value):$/;" f +get_obs_route Lib/email/_header_value_parser.py /^def get_obs_route(value):$/;" f +get_old_record Modules/unicodedata.c 84;" d file: +get_once_registry Python/_warnings.c /^get_once_registry(PyInterpreterState *interp)$/;" f file: +get_one_match Lib/ctypes/_aix.py /^def get_one_match(expr, lines):$/;" f +get_opcodes Lib/difflib.py /^ def get_opcodes(self):$/;" m class:SequenceMatcher +get_operator_module Doc/includes/mp_newtype.py /^def get_operator_module():$/;" f +get_operator_state Modules/_operator.c /^get_operator_state(PyObject *module)$/;" f file: +get_opt_string Lib/optparse.py /^ def get_opt_string(self):$/;" m class:Option +get_optimized Lib/test/support/bytecode_helper.py /^ def get_optimized(self, insts, consts, nlocals=0):$/;" m class:CfgOptimizationTestCase +get_option Lib/optparse.py /^ def get_option(self, opt_str):$/;" m class:OptionContainer +get_option Lib/test/test_xml_etree.py /^ def get_option(config, option_name, default=None):$/;" f function:C14NTest.test_xml_c14n2 +get_option_group Lib/optparse.py /^ def get_option_group(self, opt_str):$/;" m class:OptionParser +get_options Modules/_ssl.c /^get_options(PySSLContext *self, void *c)$/;" f file: +get_or_create_nest Lib/tomllib/_parser.py /^ def get_or_create_nest($/;" m class:NestedDict +get_origin Lib/typing.py /^def get_origin(tp):$/;" f +get_original Lib/unittest/mock.py /^ def get_original(self):$/;" m class:_patch +get_original_bases Lib/types.py /^def get_original_bases(cls, \/):$/;" f +get_original_stdout Lib/test/support/__init__.py /^def get_original_stdout():$/;" f +get_os_environ Lib/test/libregrtest/save_env.py /^ def get_os_environ(self):$/;" m class:saved_test_environment +get_outdated_docs Doc/tools/extensions/pyspecific.py /^ def get_outdated_docs(self):$/;" m class:PydocTopicsBuilder +get_output Lib/test/test_base64.py /^ def get_output(self, *args):$/;" m class:TestMain +get_output Lib/test/test_faulthandler.py /^ def get_output(self, code, filename=None, fd=None):$/;" m class:FaultHandlerTests +get_output Lib/test/test_listcomps.py /^ def get_output(moddict, name):$/;" f function:ListComprehensionTest._check_in_scopes +get_output Lib/test/test_utf8_mode.py /^ def get_output(self, *args, failure=False, **kw):$/;" m class:UTF8ModeTests +get_output_charset Lib/email/charset.py /^ def get_output_charset(self):$/;" m class:Charset +get_output_without_xpeer Lib/test/test_smtplib.py /^ def get_output_without_xpeer(self):$/;" m class:DebuggingServerTests +get_overloads Lib/typing.py /^def get_overloads(func):$/;" f +get_package_family PC/python_uwp.cpp /^get_package_family()$/;" f file: +get_package_home PC/python_uwp.cpp /^get_package_home()$/;" f file: +get_packagefamilyname PC/layout/support/appxmanifest.py /^def get_packagefamilyname(name, publisher_id):$/;" f +get_packages Tools/peg_generator/scripts/test_pypi_packages.py /^def get_packages() -> Generator[str, None, None]:$/;" f +get_pagesize Lib/test/support/__init__.py /^def get_pagesize():$/;" f +get_pair_limit Lib/test/test_curses.py /^ def get_pair_limit(self):$/;" m class:TestCurses +get_para_line_numbers Doc/tools/check-warnings.py /^def get_para_line_numbers(file_obj: TextIO) -> list[list[int]]:$/;" f +get_param Lib/email/message.py /^ def get_param(self, param, failobj=None, header='content-type',$/;" m class:Message +get_parameter Lib/email/_header_value_parser.py /^def get_parameter(value):$/;" f +get_parameters Lib/symtable.py /^ def get_parameters(self):$/;" m class:Function +get_params Lib/email/message.py /^ def get_params(self, failobj=None, header='content-type', unquote=True):$/;" m class:Message +get_parenmatch Lib/idlelib/idle_test/test_parenmatch.py /^ def get_parenmatch(self):$/;" m class:ParenMatchTest +get_parent_map Lib/xml/etree/ElementPath.py /^def get_parent_map(context):$/;" f +get_parse_out_err Lib/test/test_unittest/test_runner.py /^ def get_parse_out_err(p):$/;" f function:Test_TextTestRunner.test_warnings +get_parse_result Modules/pyexpat.c /^get_parse_result(pyexpat_state *state, xmlparseobject *self, int rv)$/;" f file: +get_parsed_vartype Tools/c-analyzer/c_parser/info.py /^def get_parsed_vartype(decl):$/;" f +get_parser Lib/idlelib/idle_test/test_hyperparser.py /^ def get_parser(self, index):$/;" m class:HyperParserTest +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required):$/;" m class:TestMutuallyExclusiveFirstSuppressed +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required):$/;" m class:TestMutuallyExclusiveManySuppressed +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required):$/;" m class:TestMutuallyExclusiveNested +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required):$/;" m class:TestMutuallyExclusiveOptionalAndPositional +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required):$/;" m class:TestMutuallyExclusiveOptionalsAndPositionalsMixed +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required):$/;" m class:TestMutuallyExclusiveOptionalsMixed +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required=None):$/;" m class:MEPBase +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required=None):$/;" m class:TestMutuallyExclusiveInGroup +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required=None):$/;" m class:TestMutuallyExclusiveLong +get_parser Lib/test/test_argparse.py /^ def get_parser(self, required=None):$/;" m class:TestMutuallyExclusiveSimple +get_patch Lib/test/test_unittest/testmock/testpatch.py /^ def get_patch(attribute):$/;" f function:PatchTest.test_stopall_lifo +get_path Lib/sysconfig.py /^def get_path(name, scheme=get_default_scheme(), vars=None, expand=True):$/;" f +get_path_importer Python/import.c /^get_path_importer(PyThreadState *tstate, PyObject *path_importer_cache,$/;" f file: +get_path_names Lib/sysconfig.py /^def get_path_names():$/;" f +get_paths Lib/sysconfig.py /^def get_paths(scheme=get_default_scheme(), vars=None, expand=True):$/;" f +get_payload Lib/email/message.py /^ def get_payload(self, i=None, decode=False):$/;" m class:Message +get_perf_counter Modules/timemodule.c /^get_perf_counter(_PyTime_t *t)$/;" f file: +get_phrase Lib/email/_header_value_parser.py /^def get_phrase(value):$/;" f +get_phrase_cfws_only_raises Lib/test/test_email/test__header_value_parser.py /^ def get_phrase_cfws_only_raises(self):$/;" m class:TestParser +get_pid Lib/asyncio/base_subprocess.py /^ def get_pid(self):$/;" m class:BaseSubprocessTransport +get_pid Lib/asyncio/transports.py /^ def get_pid(self):$/;" m class:SubprocessTransport +get_pip_dir PC/layout/support/pip.py /^def get_pip_dir(ns):$/;" f +get_pip_layout PC/layout/support/pip.py /^def get_pip_layout(ns):$/;" f +get_pipe_transport Lib/asyncio/base_subprocess.py /^ def get_pipe_transport(self, fd):$/;" m class:BaseSubprocessTransport +get_pipe_transport Lib/asyncio/transports.py /^ def get_pipe_transport(self, fd):$/;" m class:SubprocessTransport +get_platform Lib/sysconfig.py /^def get_platform():$/;" f +get_platform Lib/test/test_importlib/test_windows.py /^def get_platform():$/;" f +get_platform Tools/c-analyzer/distutils/util.py /^def get_platform():$/;" f +get_platform_osx Lib/_osx_support.py /^def get_platform_osx(_config_vars, osname, release, machine):$/;" f +get_pointer Modules/_testbuffer.c /^get_pointer(PyObject *self, PyObject *args)$/;" f file: +get_poly Lib/turtle.py /^ def get_poly(self):$/;" m class:RawTurtle +get_pooled_int Lib/test/libregrtest/refleak.py /^ def get_pooled_int(value):$/;" f function:dash_R +get_position Lib/idlelib/calltip_w.py /^ def get_position(self):$/;" m class:CalltipWindow +get_position Lib/idlelib/tooltip.py /^ def get_position(self):$/;" m class:TooltipBase +get_position Lib/xdrlib.py /^ def get_position(self):$/;" m class:Unpacker +get_posix_state Modules/posixmodule.c /^get_posix_state(PyObject *module)$/;" f file: +get_post_handshake_auth Modules/_ssl.c /^get_post_handshake_auth(PySSLContext *self, void *c) {$/;" f file: +get_precedence Lib/ast.py /^ def get_precedence(self, node):$/;" m class:_Unparser +get_preferred_encoding Modules/_decimal/tests/formathelper.py /^def get_preferred_encoding():$/;" f +get_preferred_scheme Lib/sysconfig.py /^def get_preferred_scheme(key):$/;" f +get_preparation_data Lib/multiprocessing/spawn.py /^def get_preparation_data(name):$/;" f +get_preprocessor Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def get_preprocessor(*,$/;" f +get_preprocessor Tools/c-analyzer/cpython/_parser.py /^def get_preprocessor(*,$/;" f +get_print_list Lib/pstats.py /^ def get_print_list(self, sel_list):$/;" m class:Stats +get_process_name PC/launcher.c /^get_process_name(void)$/;" f file: +get_prog Tools/c-analyzer/c_common/scriptutil.py /^def get_prog(spec=None, *, absolute=False, allowsuffix=True):$/;" f +get_prog_name Lib/optparse.py /^ def get_prog_name(self):$/;" m class:OptionParser +get_prompt_text Lib/idlelib/pyshell.py /^ def get_prompt_text(self, first, last):$/;" m class:PyShell +get_props_layout PC/layout/support/props.py /^def get_props_layout(ns):$/;" f +get_protocol Lib/asyncio/base_subprocess.py /^ def get_protocol(self):$/;" m class:BaseSubprocessTransport +get_protocol Lib/asyncio/proactor_events.py /^ def get_protocol(self):$/;" m class:_ProactorBasePipeTransport +get_protocol Lib/asyncio/selector_events.py /^ def get_protocol(self):$/;" m class:_SelectorTransport +get_protocol Lib/asyncio/sslproto.py /^ def get_protocol(self):$/;" m class:_SSLProtocolTransport +get_protocol Lib/asyncio/transports.py /^ def get_protocol(self):$/;" m class:BaseTransport +get_protocol Lib/asyncio/unix_events.py /^ def get_protocol(self):$/;" m class:_UnixReadPipeTransport +get_protocol Lib/asyncio/unix_events.py /^ def get_protocol(self):$/;" m class:_UnixWritePipeTransport +get_protocol Modules/_ssl.c /^get_protocol(PySSLContext *self, void *c) {$/;" f file: +get_protocol_name Lib/ssl.py /^def get_protocol_name(protocol_code):$/;" f +get_proxy_response_headers Lib/http/client.py /^ def get_proxy_response_headers(self):$/;" m class:HTTPConnection +get_pwd_state Modules/pwdmodule.c /^get_pwd_state(PyObject *module)$/;" f file: +get_py_exe Lib/test/test_launcher.py /^ def get_py_exe(self):$/;" m class:RunPyMixin +get_pyc Lib/test/test_compileall.py /^def get_pyc(script, opt):$/;" f +get_pycs Lib/test/test_compileall.py /^def get_pycs(script):$/;" f +get_pydoc_html Lib/test/test_pydoc.py /^def get_pydoc_html(module):$/;" f +get_pydoc_link Lib/test/test_pydoc.py /^def get_pydoc_link(module):$/;" f +get_pydoc_text Lib/test/test_pydoc.py /^def get_pydoc_text(module):$/;" f +get_pylong Modules/_struct.c /^get_pylong(_structmodulestate *state, PyObject *v)$/;" f file: +get_pyop Tools/gdb/libpython.py /^ def get_pyop(self):$/;" m class:Frame +get_python_path Mac/Tools/pythonw.c /^static char* get_python_path(void)$/;" f file: +get_python_version Lib/sysconfig.py /^def get_python_version():$/;" f +get_qcontent Lib/email/_header_value_parser.py /^def get_qcontent(value):$/;" f +get_qp_ctext Lib/email/_header_value_parser.py /^def get_qp_ctext(value):$/;" f +get_queue Lib/test/_test_multiprocessing.py /^def get_queue():$/;" f +get_quoted_string Lib/email/_header_value_parser.py /^def get_quoted_string(value):$/;" f +get_random_state Modules/_randommodule.c /^get_random_state(PyObject *module)$/;" f file: +get_raw_docstring Lib/ast.py /^ def get_raw_docstring(self, node):$/;" m class:_Unparser +get_read_buffer_limits Lib/asyncio/sslproto.py /^ def get_read_buffer_limits(self):$/;" m class:_SSLProtocolTransport +get_read_buffer_size Lib/asyncio/sslproto.py /^ def get_read_buffer_size(self):$/;" m class:_SSLProtocolTransport +get_readelf_output Lib/test/test_dtrace.py /^ def get_readelf_output(self):$/;" m class:CheckDtraceProbes +get_readelf_version Lib/test/test_dtrace.py /^ def get_readelf_version():$/;" m class:CheckDtraceProbes +get_readline_state Modules/readline.c /^get_readline_state(PyObject *module)$/;" f file: +get_ready Lib/graphlib.py /^ def get_ready(self):$/;" m class:TopologicalSorter +get_record Lib/test/test_logging.py /^ def get_record(self, name=None):$/;" m class:FormatterTest +get_recursion_available Lib/test/support/__init__.py /^def get_recursion_available():$/;" f +get_recursion_depth Lib/test/support/__init__.py /^def get_recursion_depth():$/;" f +get_recursion_depth Modules/_testinternalcapi.c /^get_recursion_depth(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +get_reentrant Python/tracemalloc.c /^get_reentrant(void)$/;" f file: +get_ref_type Python/compile.c /^get_ref_type(struct compiler *c, PyObject *name)$/;" f file: +get_refactorer Lib/test/test_lib2to3/support.py /^def get_refactorer(fixer_pkg="lib2to3", fixers=None, options=None):$/;" f +get_reftotal Objects/object.c /^get_reftotal(PyInterpreterState *interp)$/;" f file: +get_region Lib/idlelib/format.py /^ def get_region(self):$/;" m class:FormatRegion +get_remote_proxy Lib/idlelib/rpc.py /^ def get_remote_proxy(self, oid):$/;" m class:RPCClient +get_remote_proxy Lib/idlelib/rpc.py /^ def get_remote_proxy(self, oid):$/;" m class:RPCHandler +get_renderer Tools/c-analyzer/cpython/_builtin_types.py /^def get_renderer(fmt):$/;" f +get_renderer Tools/c-analyzer/cpython/_capi.py /^def get_renderer(format):$/;" f +get_report Lib/test/test_traceback.py /^ def get_report(self, e):$/;" m class:CExcReportingTests +get_report Lib/test/test_traceback.py /^ def get_report(self, e):$/;" m class:PyExcReportingTests +get_repr Lib/test/test_tracemalloc.py /^ def get_repr(*args) -> str:$/;" f function:TestTraceback.test_repr +get_request Lib/idlelib/rpc.py /^ def get_request(self):$/;" m class:RPCServer +get_request Lib/socketserver.py /^ def get_request(self):$/;" m class:TCPServer +get_request Lib/socketserver.py /^ def get_request(self):$/;" m class:UDPServer +get_request Lib/test/ssl_servers.py /^ def get_request(self):$/;" m class:HTTPSServer +get_request Lib/test/test_asyncio/utils.py /^ def get_request(self):$/;" m class:_run_test_server.UnixWSGIServer +get_request Lib/test/test_asyncio/utils.py /^ def get_request(self):$/;" m class:SilentWSGIServer +get_request Lib/test/test_imaplib.py /^ def get_request(self):$/;" m class:TestImaplib.SecureTCPServer +get_request Lib/test/test_logging.py /^ def get_request(self):$/;" m class:TestHTTPServer +get_request Lib/test/test_urllib2_localnet.py /^ def get_request(self):$/;" m class:LoopbackHttpServer +get_request Lib/test/test_xmlrpc.py /^ def get_request(self):$/;" m class:http_multi_server.MyXMLRPCServer +get_request Lib/test/test_xmlrpc.py /^ def get_request(self):$/;" m class:http_server.MyXMLRPCServer +get_rerun_match Lib/test/libregrtest/main.py /^ def get_rerun_match(self, rerun_list) -> MatchTestsDict:$/;" m class:Regrtest +get_rerun_match_tests Lib/test/libregrtest/runtest.py /^ def get_rerun_match_tests(self):$/;" m class:TestResult +get_resource_reader Lib/importlib/_bootstrap_external.py /^ def get_resource_reader(self, module):$/;" m class:FileLoader +get_resource_reader Lib/importlib/_bootstrap_external.py /^ def get_resource_reader(self, module):$/;" m class:NamespaceLoader +get_resource_reader Lib/importlib/resources/_adapters.py /^ def get_resource_reader(self, name):$/;" m class:TraversableResourcesLoader +get_resource_reader Lib/importlib/resources/_common.py /^def get_resource_reader(package: types.ModuleType) -> Optional[ResourceReader]:$/;" f +get_resource_reader Lib/test/test_importlib/resources/test_custom.py /^ def get_resource_reader(self, package):$/;" m class:SimpleLoader +get_resource_reader Lib/test/test_importlib/resources/util.py /^ def get_resource_reader(self, package):$/;" m class:Reader +get_resource_reader Lib/zipimport.py /^ def get_resource_reader(self, fullname):$/;" m class:zipimporter +get_resource_state Modules/resource.c /^get_resource_state(PyObject *module)$/;" f file: +get_resources_xml PC/layout/support/appxmanifest.py /^def get_resources_xml(ns):$/;" f +get_returncode Lib/asyncio/base_subprocess.py /^ def get_returncode(self):$/;" m class:BaseSubprocessTransport +get_returncode Lib/asyncio/transports.py /^ def get_returncode(self):$/;" m class:SubprocessTransport +get_running Lib/test/libregrtest/runtest_mp.py /^def get_running(workers: list[TestWorkerProcess]) -> list[TestWorkerProcess]:$/;" f +get_running_loop Lib/asyncio/events.py /^def get_running_loop():$/;" f +get_running_loop Modules/_asynciomodule.c /^get_running_loop(asyncio_state *state, PyObject **loop)$/;" f file: +get_running_loop_impl Lib/test/test_asyncio/test_events.py /^ get_running_loop_impl = events._c_get_running_loop$/;" v class:.TestCGetEventLoop +get_running_loop_impl Lib/test/test_asyncio/test_events.py /^ get_running_loop_impl = None$/;" v class:GetEventLoopTestsMixin +get_running_loop_impl Lib/test/test_asyncio/test_events.py /^ get_running_loop_impl = events._py_get_running_loop$/;" v class:TestPyGetEventLoop +get_sample_script Lib/test/test_gdb.py /^ def get_sample_script(self):$/;" m class:DebuggerTests +get_saved Lib/idlelib/editor.py /^ def get_saved(self):$/;" m class:EditorWindow +get_saved Lib/idlelib/iomenu.py /^ def get_saved(self): return 0$/;" m class:_io_binding.MyEditWin +get_saved Lib/idlelib/iomenu.py /^ def get_saved(self):$/;" m class:IOBinding +get_saved Lib/idlelib/undo.py /^ def get_saved(self):$/;" m class:UndoDelegator +get_scheme Lib/wsgiref/handlers.py /^ def get_scheme(self):$/;" m class:BaseHandler +get_scheme_names Lib/sysconfig.py /^def get_scheme_names():$/;" f +get_section Lib/email/_header_value_parser.py /^def get_section(value):$/;" f +get_security_level Modules/_ssl.c /^get_security_level(PySSLContext *self, void *c)$/;" f file: +get_select_state Modules/selectmodule.c /^get_select_state(PyObject *module)$/;" f file: +get_selected_bytecode_frame Tools/gdb/libpython.py /^ def get_selected_bytecode_frame(cls):$/;" m class:Frame +get_selected_frame Tools/gdb/libpython.py /^ def get_selected_frame(cls):$/;" m class:Frame +get_selected_python_frame Tools/gdb/libpython.py /^ def get_selected_python_frame(cls):$/;" m class:Frame +get_selection Lib/idlelib/idle_test/test_sidebar.py /^ def get_selection(self):$/;" m class:LineNumbersTest +get_selection Lib/idlelib/searchengine.py /^def get_selection(text):$/;" f +get_selection Lib/tkinter/filedialog.py /^ def get_selection(self):$/;" m class:FileDialog +get_selection_indices Lib/idlelib/editor.py /^ def get_selection_indices(self):$/;" m class:EditorWindow +get_selection_indices Lib/idlelib/idle_test/mock_idle.py /^ def get_selection_indices(self):$/;" m class:Editor +get_selection_indices Lib/idlelib/idle_test/test_format.py /^ get_selection_indices = EditorWindow. get_selection_indices$/;" v class:Editor +get_selection_indices Lib/idlelib/idle_test/test_format.py /^ get_selection_indices = EditorWindow.get_selection_indices$/;" v class:DummyEditwin +get_selection_indices Lib/idlelib/idle_test/test_zzdummy.py /^ get_selection_indices = editor.EditorWindow.get_selection_indices$/;" v class:DummyEditwin +get_sequences Lib/mailbox.py /^ def get_sequences(self):$/;" m class:MH +get_sequences Lib/mailbox.py /^ def get_sequences(self):$/;" m class:MHMessage +get_server Lib/multiprocessing/managers.py /^ def get_server(self):$/;" m class:SyncManager.SharedMemoryManager +get_server Lib/multiprocessing/managers.py /^ def get_server(self):$/;" m class:BaseManager +get_server_certificate Lib/ssl.py /^def get_server_certificate(addr, ssl_version=PROTOCOL_TLS_CLIENT,$/;" f +get_shapepoly Lib/turtle.py /^ def get_shapepoly(self):$/;" m class:RawTurtle +get_shared Lib/ctypes/_aix.py /^def get_shared(ld_headers):$/;" f +get_shell_line_y_coords Lib/idlelib/idle_test/test_sidebar.py /^ def get_shell_line_y_coords(self):$/;" m class:ShellSidebarTest +get_short_be Lib/sndhdr.py /^def get_short_be(b):$/;" f +get_short_le Lib/sndhdr.py /^def get_short_le(b):$/;" f +get_shutil_archive_formats Lib/test/libregrtest/save_env.py /^ def get_shutil_archive_formats(self):$/;" m class:saved_test_environment +get_shutil_unpack_formats Lib/test/libregrtest/save_env.py /^ def get_shutil_unpack_formats(self):$/;" m class:saved_test_environment +get_sidebar_colors Lib/idlelib/idle_test/test_sidebar.py /^ def get_sidebar_colors():$/;" f function:ShellSidebarTest.test_highlight_colors +get_sidebar_font Lib/idlelib/idle_test/test_sidebar.py /^ def get_sidebar_font():$/;" f function:ShellSidebarTest.test_font +get_sidebar_line_y_coords Lib/idlelib/idle_test/test_sidebar.py /^ def get_sidebar_line_y_coords(self):$/;" m class:ShellSidebarTest +get_sidebar_lines Lib/idlelib/idle_test/test_sidebar.py /^ def get_sidebar_lines(self):$/;" m class:ShellSidebarTest +get_sidebar_text_contents Lib/idlelib/idle_test/test_sidebar.py /^ def get_sidebar_text_contents(self):$/;" m class:LineNumbersTest +get_signal_state Modules/signalmodule.c /^get_signal_state(PyObject *module)$/;" f file: +get_single Lib/test/test_os.py /^ def get_single(f):$/;" m class:TestInvalidFD +get_size_t Modules/_struct.c /^get_size_t(_structmodulestate *state, PyObject *v, size_t *p)$/;" f file: +get_sizeof_void_p Modules/_testbuffer.c /^get_sizeof_void_p(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +get_slice_info Modules/_sqlite/blob.c /^get_slice_info(pysqlite_Blob *self, PyObject *item, Py_ssize_t *start,$/;" f file: +get_small_int Misc/coverity_model.c /^static PyObject *get_small_int(sdigit ival)$/;" f file: +get_small_int Objects/longobject.c /^get_small_int(sdigit ival)$/;" f file: +get_smelly_symbols Tools/build/smelly.py /^def get_smelly_symbols(stdout):$/;" f +get_sni_callback Modules/_ssl.c /^get_sni_callback(PySSLContext *self, void *c)$/;" f file: +get_socket Lib/telnetlib.py /^ def get_socket(self):$/;" m class:Telnet +get_socket_conn_refused_errs Lib/test/support/socket_helper.py /^def get_socket_conn_refused_errs():$/;" f +get_sort_arg_defs Lib/pstats.py /^ def get_sort_arg_defs(self):$/;" m class:Stats +get_source Lib/importlib/_bootstrap.py /^ def get_source(cls, fullname):$/;" m class:BuiltinImporter +get_source Lib/importlib/_bootstrap.py /^ def get_source(cls, fullname):$/;" m class:FrozenImporter +get_source Lib/importlib/_bootstrap_external.py /^ def get_source(self, fullname):$/;" m class:ExtensionFileLoader +get_source Lib/importlib/_bootstrap_external.py /^ def get_source(self, fullname):$/;" m class:NamespaceLoader +get_source Lib/importlib/_bootstrap_external.py /^ def get_source(self, fullname):$/;" m class:SourceLoader +get_source Lib/importlib/_bootstrap_external.py /^ def get_source(self, fullname):$/;" m class:SourcelessFileLoader +get_source Lib/importlib/abc.py /^ def get_source(self, fullname):$/;" m class:InspectLoader +get_source Lib/test/test_importlib/source/test_file_loader.py /^ def get_source(self, _): pass$/;" m class:SimpleTest.test_get_filename_API.Tester +get_source Lib/test/test_importlib/source/test_file_loader.py /^ def get_source(self, _): return 'attr = 42'$/;" m class:SimpleTest.test_load_module_API.Tester +get_source Lib/test/test_importlib/test_abc.py /^ def get_source(self, fullname):$/;" m class:InspectLoader +get_source Lib/test/test_unparse.py /^ def get_source(self, code1, code2=None):$/;" m class:ASTTestCase +get_source Lib/test/test_warnings/__init__.py /^ def get_source(self, fullname):$/;" m class:_WarningsTests.test_issue31285.get_bad_loader.BadLoader +get_source Lib/zipimport.py /^ def get_source(self, fullname):$/;" m class:zipimporter +get_source_line Python/_warnings.c /^get_source_line(PyInterpreterState *interp, PyObject *module_globals, int lineno)$/;" f file: +get_source_segment Lib/ast.py /^def get_source_segment(source, node, *, padded=False):$/;" f +get_spaces_firstword Lib/idlelib/codecontext.py /^def get_spaces_firstword(codeline, c=re.compile(r"^(\\s*)(\\w*)")):$/;" f +get_spawning_popen Lib/multiprocessing/context.py /^def get_spawning_popen():$/;" f +get_spec Lib/idlelib/idle_test/test_calltip.py /^get_spec = calltip.get_argspec$/;" v +get_spec Tools/build/check_extension_modules.py /^ def get_spec(self, modinfo: ModuleInfo) -> ModuleSpec:$/;" m class:ModuleChecker +get_spwd_state Modules/spwdmodule.c /^get_spwd_state(PyObject *module)$/;" f file: +get_sq_item Modules/_bisectmodule.c /^get_sq_item(PyObject *s)$/;" f file: +get_sre_module_state Modules/_sre/sre.c /^get_sre_module_state(PyObject *m)$/;" f file: +get_sre_module_state_by_class Modules/_sre/sre.c 263;" d file: +get_ssize_t Modules/_struct.c /^get_ssize_t(_structmodulestate *state, PyObject *v, Py_ssize_t *p)$/;" f file: +get_ssl_state Modules/_ssl.h /^get_ssl_state(PyObject *module)$/;" f +get_stack Lib/asyncio/tasks.py /^ def get_stack(self, *, limit=None):$/;" m class:Task +get_stack Lib/bdb.py /^ def get_stack(self, f, t):$/;" m class:Bdb +get_stack Lib/idlelib/debugger_r.py /^ def get_stack(self, fid, tbid):$/;" m class:IdbAdapter +get_stack Lib/idlelib/debugger_r.py /^ def get_stack(self, frame, tbid):$/;" m class:IdbProxy +get_stack Lib/idlelib/stackviewer.py /^ def get_stack(self, tb):$/;" m class:StackTreeItem +get_stack Lib/test/test_bdb.py /^ def get_stack(self, f, t):$/;" m class:Bdb +get_stack_effect_info Tools/cases_generator/generate_cases.py /^ def get_stack_effect_info($/;" m class:Analyzer +get_stack_trace Lib/test/test_gdb.py /^ def get_stack_trace(self, source=None, script=None,$/;" m class:DebuggerTests +get_standard_encoding Python/codecs.c /^get_standard_encoding(const char *encoding, int *bytelength)$/;" f file: +get_standard_extension_names Lib/idlelib/editor.py /^ def get_standard_extension_names(self):$/;" m class:EditorWindow +get_standard_extension_names Lib/idlelib/pyshell.py /^ def get_standard_extension_names(self):$/;" m class:PyShell +get_start_method Lib/multiprocessing/context.py /^ def get_start_method(self, allow_none=False):$/;" m class:BaseContext +get_start_method Lib/multiprocessing/context.py /^ def get_start_method(self, allow_none=False):$/;" m class:DefaultContext +get_starttag_text Lib/html/parser.py /^ def get_starttag_text(self):$/;" m class:HTMLParser +get_state Lib/test/test_bdb.py /^ def get_state(self):$/;" m class:Tracer +get_state Objects/obmalloc.c /^get_state(void)$/;" f file: +get_state_cert Modules/_ssl.h 56;" d +get_state_ctx Modules/_ssl.h 52;" d +get_state_mbio Modules/_ssl.h 55;" d +get_state_obj Modules/_ssl.h 54;" d +get_state_sock Modules/_ssl.h 53;" d +get_state_type Modules/_ssl.h 50;" d +get_statement_from_cache Modules/_sqlite/cursor.c /^get_statement_from_cache(pysqlite_Cursor *self, PyObject *operation)$/;" f file: +get_stats_defines Tools/scripts/summarize_stats.py /^def get_stats_defines():$/;" f +get_stats_profile Lib/pstats.py /^ def get_stats_profile(self):$/;" m class:Stats +get_stderr Lib/test/test_asyncio/utils.py /^ def get_stderr(self):$/;" m class:SilentWSGIRequestHandler +get_stderr Lib/wsgiref/handlers.py /^ def get_stderr(self):$/;" m class:BaseHandler +get_stderr Lib/wsgiref/handlers.py /^ def get_stderr(self):$/;" m class:SimpleHandler +get_stderr Lib/wsgiref/simple_server.py /^ def get_stderr(self):$/;" m class:WSGIRequestHandler +get_stdin Lib/wsgiref/handlers.py /^ def get_stdin(self):$/;" m class:BaseHandler +get_stdin Lib/wsgiref/handlers.py /^ def get_stdin(self):$/;" m class:SimpleHandler +get_strchr Modules/_ctypes/_ctypes_test.c /^EXPORT(void *) get_strchr(void)$/;" f +get_string Lib/mailbox.py /^ def get_string(self, key):$/;" m class:Mailbox +get_string Lib/mailbox.py /^ def get_string(self, key, from_=False):$/;" m class:_mboxMMDF +get_string Objects/exceptions.c /^get_string(PyObject *attr, const char *name)$/;" f file: +get_struct_state Modules/_struct.c /^get_struct_state(PyObject *module)$/;" f file: +get_struct_state_iterinst Modules/_struct.c 41;" d file: +get_struct_state_structinst Modules/_struct.c 39;" d file: +get_subclasses_key Objects/typeobject.c /^get_subclasses_key(PyTypeObject *type, PyTypeObject *base)$/;" f file: +get_subdir Lib/mailbox.py /^ def get_subdir(self):$/;" m class:MaildirMessage +get_subscript_index Modules/_sqlite/blob.c /^get_subscript_index(pysqlite_Blob *self, PyObject *item)$/;" f file: +get_suffix Lib/lib2to3/pytree.py /^ def get_suffix(self):$/;" m class:Base +get_suggestion Lib/test/test_traceback.py /^ def get_suggestion(self, obj, attr_name=None):$/;" m class:SuggestionFormattingTestBase +get_suggestions_for_attribute_error Python/suggestions.c /^get_suggestions_for_attribute_error(PyAttributeErrorObject *exc)$/;" f file: +get_suggestions_for_name_error Python/suggestions.c /^get_suggestions_for_name_error(PyObject* name, PyFrameObject* frame)$/;" f file: +get_surrogateescape Python/fileutils.c /^get_surrogateescape(_Py_error_handler errors, int *surrogateescape)$/;" f file: +get_surrounding_brackets Lib/idlelib/hyperparser.py /^ def get_surrounding_brackets(self, openers='([{', mustclose=False):$/;" m class:HyperParser +get_symbols Lib/symtable.py /^ def get_symbols(self):$/;" m class:SymbolTable +get_sys_argv Lib/test/libregrtest/save_env.py /^ def get_sys_argv(self):$/;" m class:saved_test_environment +get_sys_gettrace Lib/test/libregrtest/save_env.py /^ def get_sys_gettrace(self):$/;" m class:saved_test_environment +get_sys_path Lib/test/libregrtest/save_env.py /^ def get_sys_path(self):$/;" m class:saved_test_environment +get_sys_path_hooks Lib/test/libregrtest/save_env.py /^ def get_sys_path_hooks(self):$/;" m class:saved_test_environment +get_sys_stderr Lib/test/libregrtest/save_env.py /^ def get_sys_stderr(self):$/;" m class:saved_test_environment +get_sys_stdin Lib/test/libregrtest/save_env.py /^ def get_sys_stdin(self):$/;" m class:saved_test_environment +get_sys_stdout Lib/test/libregrtest/save_env.py /^ def get_sys_stdout(self):$/;" m class:saved_test_environment +get_sys_version_info Doc/tools/extensions/patchlevel.py /^def get_sys_version_info():$/;" f +get_sys_warnoptions Lib/test/libregrtest/save_env.py /^ def get_sys_warnoptions(self):$/;" m class:saved_test_environment +get_sysconfig__CONFIG_VARS Lib/test/libregrtest/save_env.py /^ def get_sysconfig__CONFIG_VARS(self):$/;" m class:saved_test_environment +get_sysconfig__INSTALL_SCHEMES Lib/test/libregrtest/save_env.py /^ def get_sysconfig__INSTALL_SCHEMES(self):$/;" m class:saved_test_environment +get_sysconfig_modules Tools/build/check_extension_modules.py /^ def get_sysconfig_modules(self) -> Iterable[ModuleInfo]:$/;" m class:ModuleChecker +get_sysconfigdata Tools/wasm/wasm_assets.py /^def get_sysconfigdata(args: argparse.Namespace) -> pathlib.Path:$/;" f +get_system_time Modules/timemodule.c /^get_system_time(_PyTime_t *t)$/;" f file: +get_target_uri Doc/tools/extensions/pyspecific.py /^ def get_target_uri(self, docname, typ=None):$/;" m class:PydocTopicsBuilder +get_task_factory Lib/asyncio/base_events.py /^ def get_task_factory(self):$/;" m class:BaseEventLoop +get_task_factory Lib/asyncio/events.py /^ def get_task_factory(self):$/;" m class:AbstractEventLoop +get_tb Lib/test/test_dis.py /^def get_tb():$/;" f +get_tb Lib/test/test_raise.py /^def get_tb():$/;" f +get_tcltk_lib PC/layout/main.py /^def get_tcltk_lib(ns):$/;" f +get_temp_dir Lib/multiprocessing/util.py /^def get_temp_dir():$/;" f +get_terminal_size Lib/shutil.py /^def get_terminal_size(fallback=(80, 24)):$/;" f +get_terminator Lib/test/support/asynchat.py /^ def get_terminator(self):$/;" m class:async_chat +get_termios_state Modules/termios.c /^get_termios_state(PyObject *module)$/;" f file: +get_test_runner Lib/test/support/testresult.py /^def get_test_runner(stream, verbosity, capture_output=False):$/;" f +get_test_runner_class Lib/test/support/testresult.py /^def get_test_runner_class(verbosity, buffer=False):$/;" f +get_test_tk_root Lib/idlelib/idle_test/test_squeezer.py /^def get_test_tk_root(test_instance):$/;" f +get_tests_state Lib/test/libregrtest/main.py /^ def get_tests_state(self):$/;" m class:Regrtest +get_text_content Lib/email/contentmanager.py /^def get_text_content(msg, errors='replace'):$/;" f +get_text_file_contents Lib/test/test_venv.py /^ def get_text_file_contents(self, *args, encoding='utf-8'):$/;" m class:BaseTest +get_text_files Tools/iobench/iobench.py /^def get_text_files():$/;" f +get_the_calltip Lib/idlelib/run.py /^ def get_the_calltip(self, name):$/;" m class:Executive +get_the_completion_list Lib/idlelib/run.py /^ def get_the_completion_list(self, what, mode):$/;" m class:Executive +get_thread_state Modules/_threadmodule.c /^get_thread_state(PyObject *module)$/;" f file: +get_thread_state Modules/faulthandler.c /^get_thread_state(void)$/;" f file: +get_threading__dangling Lib/test/libregrtest/save_env.py /^ def get_threading__dangling(self):$/;" m class:saved_test_environment +get_threadsafety Modules/_sqlite/module.c /^get_threadsafety(pysqlite_state *state)$/;" f file: +get_time_fromtime Modules/_testcapi/datetime.c /^get_time_fromtime(PyObject *self, PyObject *args)$/;" f file: +get_time_fromtimeandfold Modules/_testcapi/datetime.c /^get_time_fromtimeandfold(PyObject *self, PyObject *args)$/;" f file: +get_time_state Modules/timemodule.c /^get_time_state(PyObject *module)$/;" f file: +get_time_timer Lib/profile.py /^ def get_time_timer(timer=timer, sum=sum):$/;" f function:Profile.__init__ +get_timezone_utc_capi Modules/_testcapi/datetime.c /^get_timezone_utc_capi(PyObject *self, PyObject *args)$/;" f file: +get_timezones_offset_zero Modules/_testcapi/datetime.c /^get_timezones_offset_zero(PyObject *self, PyObject *args)$/;" f file: +get_title Lib/idlelib/window.py /^ def get_title(self):$/;" m class:ListedToplevel +get_tk_patchlevel Lib/test/test_tkinter/support.py /^def get_tk_patchlevel(root):$/;" f +get_tk_tabwidth Lib/idlelib/editor.py /^ def get_tk_tabwidth(self):$/;" m class:EditorWindow +get_token Lib/email/_header_value_parser.py /^def get_token(value):$/;" f +get_token Lib/netrc.py /^ def get_token(self):$/;" m class:_netrclex +get_token Lib/shlex.py /^ def get_token(self):$/;" m class:shlex +get_token_missing Python/context.c /^get_token_missing(void)$/;" f file: +get_tokenize_state Python/Python-tokenize.c /^get_tokenize_state(PyObject *module) {$/;" f file: +get_tools_for_instruction Python/instrumentation.c /^get_tools_for_instruction(PyCodeObject *code, PyInterpreterState *interp, int i, int event)$/;" f file: +get_top_level_stats Lib/pstats.py /^ def get_top_level_stats(self):$/;" m class:Stats +get_total Tools/scripts/summarize_stats.py /^def get_total(opcode_stats):$/;" f +get_traceback Lib/test/test_tracemalloc.py /^ def get_traceback(self):$/;" m class:TestCAPI +get_traced_memory Lib/test/test_tracemalloc.py /^ def get_traced_memory(self):$/;" m class:TestCAPI +get_traces_t Python/tracemalloc.c /^} get_traces_t;$/;" t typeref:struct:__anon689 file: +get_truncated_repr Tools/gdb/libpython.py /^ def get_truncated_repr(self, maxlen):$/;" m class:PyFramePtr +get_truncated_repr Tools/gdb/libpython.py /^ def get_truncated_repr(self, maxlen):$/;" m class:PyObjectPtr +get_ttext Lib/email/_header_value_parser.py /^def get_ttext(value):$/;" f +get_type Lib/symtable.py /^ def get_type(self):$/;" m class:SymbolTable +get_type_attr_as_size Objects/structseq.c /^get_type_attr_as_size(PyTypeObject *tp, PyObject *name)$/;" f file: +get_type_cache Objects/typeobject.c /^get_type_cache(void)$/;" f file: +get_type_comment Lib/ast.py /^ def get_type_comment(self, node):$/;" m class:_Unparser +get_type_hints Lib/typing.py /^def get_type_hints(obj, globalns=None, localns=None, include_extras=False):$/;" f +get_type_modified_events Modules/_testcapi/watchers.c /^get_type_modified_events(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +get_typename Modules/_tkinter.c /^get_typename(PyTclObject* obj, void* ignored)$/;" f file: +get_typeparams Lib/test/test_type_params.py /^ def get_typeparams():$/;" m class:TypeParamsTypeParamsDunder.test_typeparams_dunder_class_01.Outer.Inner +get_types Objects/unionobject.c /^get_types(PyObject **obj, Py_ssize_t *size)$/;" f file: +get_typespecs Tools/c-analyzer/c_analyzer/analyze.py /^def get_typespecs(typedecls):$/;" f +get_tzinfo_member Modules/_datetimemodule.c /^get_tzinfo_member(PyObject *self)$/;" f file: +get_ulong Modules/_ctypes/cfield.c /^get_ulong(PyObject *v, unsigned long *p)$/;" f file: +get_ulong Modules/_struct.c /^get_ulong(_structmodulestate *state, PyObject *v, unsigned long *p)$/;" f file: +get_ulonglong Modules/_ctypes/cfield.c /^get_ulonglong(PyObject *v, unsigned long long *p)$/;" f file: +get_ulonglong Modules/_struct.c /^get_ulonglong(_structmodulestate *state, PyObject *v, unsigned long long *p)$/;" f file: +get_unicode Objects/exceptions.c /^get_unicode(PyObject *attr, const char *name)$/;" f file: +get_unixfrom Lib/email/message.py /^ def get_unixfrom(self):$/;" m class:Message +get_unpack_formats Lib/shutil.py /^def get_unpack_formats():$/;" f +get_unstructured Lib/email/_header_value_parser.py /^def get_unstructured(value):$/;" f +get_urandom_subprocess Lib/test/test_os.py /^ def get_urandom_subprocess(self, count):$/;" m class:URandomTests +get_urllib_requests__opener Lib/test/libregrtest/save_env.py /^ def get_urllib_requests__opener(self):$/;" m class:saved_test_environment +get_urllib_requests__url_tempfiles Lib/test/libregrtest/save_env.py /^ def get_urllib_requests__url_tempfiles(self):$/;" m class:saved_test_environment +get_usage Lib/optparse.py /^ def get_usage(self):$/;" m class:OptionParser +get_user_base PC/python_uwp.cpp /^get_user_base()$/;" f file: +get_user_passwd Lib/urllib/request.py /^ def get_user_passwd(self, host, realm, clear_cache=0):$/;" m class:FancyURLopener +get_value Lib/email/_header_value_parser.py /^def get_value(value):$/;" f +get_value Lib/multiprocessing/synchronize.py /^ def get_value(self):$/;" m class:Semaphore +get_value Lib/string.py /^ def get_value(self, key, args, kwargs):$/;" m class:Formatter +get_value Lib/test/_test_multiprocessing.py /^def get_value(self):$/;" f +get_value Lib/test/test_string.py /^ def get_value(self, key, args, kwds):$/;" m class:ModuleTest.test_override_get_value.NamespaceFormatter +get_value Tools/c-analyzer/distutils/msvc9compiler.py /^ def get_value(cls, path, key):$/;" m class:Reg +get_value Tools/c-analyzer/distutils/msvc9compiler.py /^ get_value = classmethod(get_value)$/;" v class:Reg +get_value Tools/clinic/clinic.py /^ def get_value(self, key, args, kwargs):$/;" m class:FormatCounterFormatter +get_var_by_name Tools/gdb/libpython.py /^ def get_var_by_name(self, name):$/;" m class:PyFrameObjectPtr +get_var_by_name Tools/gdb/libpython.py /^ def get_var_by_name(self, name):$/;" m class:PyFramePtr +get_var_obj Lib/idlelib/editor.py /^ def get_var_obj(self, eventname, vartype=None):$/;" m class:EditorWindow +get_varname Programs/_freeze_module.c /^get_varname(const char *name, const char *prefix)$/;" f file: +get_varname Programs/_freeze_module.py /^def get_varname(name: str, prefix: str) -> str:$/;" f +get_vars_f0 Lib/test/test_builtin.py /^ def get_vars_f0():$/;" m class:BuiltinTest +get_vars_f2 Lib/test/test_builtin.py /^ def get_vars_f2():$/;" m class:BuiltinTest +get_verify_flags Modules/_ssl.c /^get_verify_flags(PySSLContext *self, void *c)$/;" f file: +get_verify_mode Modules/_ssl.c /^get_verify_mode(PySSLContext *self, void *c)$/;" f file: +get_version Lib/ctypes/_aix.py /^def get_version(name, members):$/;" f +get_version Lib/optparse.py /^ def get_version(self):$/;" m class:OptionParser +get_version_info Doc/tools/extensions/patchlevel.py /^def get_version_info():$/;" f +get_version_info PC/launcher.c /^get_version_info(wchar_t * version_text, size_t size)$/;" f file: +get_versions Tools/c-analyzer/distutils/cygwinccompiler.py /^def get_versions():$/;" f +get_visible Lib/mailbox.py /^ def get_visible(self):$/;" m class:BabylMessage +get_warning_stream Lib/idlelib/pyshell.py /^ def get_warning_stream(self):$/;" m class:PyShell +get_warnings_attr Python/_warnings.c /^get_warnings_attr(PyInterpreterState *interp, PyObject *attr, int try_import)$/;" f file: +get_warnings_filters Lib/test/libregrtest/save_env.py /^ def get_warnings_filters(self):$/;" m class:saved_test_environment +get_warnings_showwarning Lib/test/libregrtest/save_env.py /^ def get_warnings_showwarning(self):$/;" m class:saved_test_environment +get_warnoptions Python/sysmodule.c /^get_warnoptions(PyThreadState *tstate)$/;" f file: +get_weak_cache Modules/_zoneinfo.c /^get_weak_cache(zoneinfo_state *state, PyTypeObject *type)$/;" f file: +get_widget_padding Lib/idlelib/sidebar.py /^def get_widget_padding(widget):$/;" f +get_width Lib/idlelib/idle_test/test_sidebar.py /^ def get_width():$/;" f function:LineNumbersTest.test_sidebar_text_width +get_win32 Lib/platform.py /^ def get_win32():$/;" m class:_Processor +get_window_geometry Lib/idlelib/zoomheight.py /^def get_window_geometry(top):$/;" f +get_word Lib/email/_header_value_parser.py /^def get_word(value):$/;" f +get_write_buffer_limits Lib/asyncio/sslproto.py /^ def get_write_buffer_limits(self):$/;" m class:_SSLProtocolTransport +get_write_buffer_limits Lib/asyncio/transports.py /^ def get_write_buffer_limits(self):$/;" m class:WriteTransport +get_write_buffer_limits Lib/asyncio/transports.py /^ def get_write_buffer_limits(self):$/;" m class:_FlowControlMixin +get_write_buffer_size Lib/asyncio/proactor_events.py /^ def get_write_buffer_size(self):$/;" m class:_ProactorBasePipeTransport +get_write_buffer_size Lib/asyncio/proactor_events.py /^ def get_write_buffer_size(self):$/;" m class:_ProactorDatagramTransport +get_write_buffer_size Lib/asyncio/selector_events.py /^ def get_write_buffer_size(self):$/;" m class:_SelectorDatagramTransport +get_write_buffer_size Lib/asyncio/selector_events.py /^ def get_write_buffer_size(self):$/;" m class:_SelectorTransport +get_write_buffer_size Lib/asyncio/sslproto.py /^ def get_write_buffer_size(self):$/;" m class:_SSLProtocolTransport +get_write_buffer_size Lib/asyncio/transports.py /^ def get_write_buffer_size(self):$/;" m class:WriteTransport +get_write_buffer_size Lib/asyncio/transports.py /^ def get_write_buffer_size(self):$/;" m class:_FlowControlMixin +get_write_buffer_size Lib/asyncio/unix_events.py /^ def get_write_buffer_size(self):$/;" m class:_UnixWritePipeTransport +get_write_buffer_size Lib/test/test_asyncio/test_transports.py /^ def get_write_buffer_size(self):$/;" m class:TransportTests.test_flowcontrol_mixin_set_write_limits.MyTransport +get_xml_element Lib/test/support/testresult.py /^ def get_xml_element(self):$/;" m class:RegressionTestResult +get_xoptions Lib/test/test_cmd_line.py /^ def get_xoptions(*args):$/;" f function:CmdLineTest.test_xoptions +get_xoptions Python/sysmodule.c /^get_xoptions(PyThreadState *tstate)$/;" f file: +get_zlib_state Modules/zlibmodule.c /^get_zlib_state(PyObject *module)$/;" f file: +get_zone Modules/timemodule.c /^get_zone(char *zone, int n, struct tm *p)$/;" f file: +get_zoneinfo Lib/test/test_zoneinfo/data/update_test_data.py /^def get_zoneinfo(key: str) -> bytes:$/;" f +get_zoneinfo_metadata Lib/test/test_zoneinfo/data/update_test_data.py /^def get_zoneinfo_metadata() -> typing.Dict[str, str]:$/;" f +get_zoneinfo_path Lib/test/test_zoneinfo/data/update_test_data.py /^def get_zoneinfo_path() -> pathlib.Path:$/;" f +getabsfile Lib/inspect.py /^def getabsfile(object, _filename=None):$/;" f +getacl Lib/imaplib.py /^ def getacl(self, mailbox):$/;" m class:IMAP4 +getaddress Lib/email/_parseaddr.py /^ def getaddress(self):$/;" m class:AddrlistClass +getaddresses Lib/email/utils.py /^def getaddresses(fieldvalues):$/;" f +getaddrinfo Lib/asyncio/base_events.py /^ async def getaddrinfo(self, host, port, *,$/;" m class:BaseEventLoop +getaddrinfo Lib/asyncio/events.py /^ async def getaddrinfo(self, host, port, *,$/;" m class:AbstractEventLoop +getaddrinfo Lib/socket.py /^def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0):$/;" f +getaddrinfo Lib/test/mock_socket.py /^def getaddrinfo(*args, **kw):$/;" f +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ async def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_connect_err +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ async def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ async def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ async def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors_local_addr +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ async def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_no_getaddrinfo +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ async def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_server_empty_host +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ async def getaddrinfo(host, *args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_no_local_addr +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_timeout +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo(*args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_datagram_endpoint_ip_addr +getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo(host, port, *args, **kw):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_bluetooth +getaddrinfo Lib/test/test_asyncio/test_events.py /^ async def getaddrinfo(host, port, *args, **kw):$/;" f function:EventLoopTestsMixin.create_server_multiple_hosts +getaddrinfo Lib/test/test_asyncio/test_events.py /^ async def getaddrinfo(host, port, *args, **kwargs):$/;" f function:EventLoopTestsMixin.test_create_connection_local_addr_nomatch_family +getaddrinfo Lib/test/test_asyncio/test_events.py /^ async def getaddrinfo(host, port, *args, **kwargs):$/;" f function:EventLoopTestsMixin.test_create_connection_local_addr_skip_different_family +getaddrinfo Modules/addrinfo.h 54;" d +getaddrinfo Modules/addrinfo.h 55;" d +getaddrinfo Modules/getaddrinfo.c /^getaddrinfo(const char*hostname, const char*servname,$/;" f +getaddrinfo Modules/socketmodule.c 458;" d file: +getaddrinfo_task Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_connect_err +getaddrinfo_task Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple +getaddrinfo_task Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors +getaddrinfo_task Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_multiple_errors_local_addr +getaddrinfo_task Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_no_getaddrinfo +getaddrinfo_task Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_no_local_addr +getaddrinfo_task Lib/test/test_asyncio/test_base_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_server_empty_host +getaddrinfo_task Lib/test/test_asyncio/test_events.py /^ def getaddrinfo_task(*args, **kwds):$/;" f function:EventLoopTestsMixin.create_server_multiple_hosts +getaddrlist Lib/email/_parseaddr.py /^ def getaddrlist(self):$/;" m class:AddrlistClass +getaddrspec Lib/email/_parseaddr.py /^ def getaddrspec(self):$/;" m class:AddrlistClass +getallmatchingheaders Lib/http/client.py /^ def getallmatchingheaders(self, name):$/;" m class:HTTPMessage +getannotation Lib/imaplib.py /^ def getannotation(self, mailbox, entry, attribute):$/;" m class:IMAP4 +getargs Include/internal/pycore_runtime.h /^ struct _getargs_runtime_state getargs;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_getargs_runtime_state +getargs Lib/inspect.py /^def getargs(co):$/;" f +getargs_B Modules/_testcapi/getargs.c /^getargs_B(PyObject *self, PyObject *args)$/;" f file: +getargs_C Modules/_testcapi/getargs.c /^getargs_C(PyObject *self, PyObject *args)$/;" f file: +getargs_D Modules/_testcapi/getargs.c /^getargs_D(PyObject *self, PyObject *args)$/;" f file: +getargs_H Modules/_testcapi/getargs.c /^getargs_H(PyObject *self, PyObject *args)$/;" f file: +getargs_I Modules/_testcapi/getargs.c /^getargs_I(PyObject *self, PyObject *args)$/;" f file: +getargs_K Modules/_testcapi/getargs.c /^getargs_K(PyObject *self, PyObject *args)$/;" f file: +getargs_L Modules/_testcapi/getargs.c /^getargs_L(PyObject *self, PyObject *args)$/;" f file: +getargs_S Modules/_testcapi/getargs.c /^getargs_S(PyObject *self, PyObject *args)$/;" f file: +getargs_U Modules/_testcapi/getargs.c /^getargs_U(PyObject *self, PyObject *args)$/;" f file: +getargs_Y Modules/_testcapi/getargs.c /^getargs_Y(PyObject *self, PyObject *args)$/;" f file: +getargs_Z Modules/_testcapi/getargs.c /^getargs_Z(PyObject *self, PyObject *args)$/;" f file: +getargs_Z_hash Modules/_testcapi/getargs.c /^getargs_Z_hash(PyObject *self, PyObject *args)$/;" f file: +getargs_b Modules/_testcapi/getargs.c /^getargs_b(PyObject *self, PyObject *args)$/;" f file: +getargs_c Modules/_testcapi/getargs.c /^getargs_c(PyObject *self, PyObject *args)$/;" f file: +getargs_d Modules/_testcapi/getargs.c /^getargs_d(PyObject *self, PyObject *args)$/;" f file: +getargs_es Modules/_testcapi/getargs.c /^getargs_es(PyObject *self, PyObject *args)$/;" f file: +getargs_es_hash Modules/_testcapi/getargs.c /^getargs_es_hash(PyObject *self, PyObject *args)$/;" f file: +getargs_et Modules/_testcapi/getargs.c /^getargs_et(PyObject *self, PyObject *args)$/;" f file: +getargs_et_hash Modules/_testcapi/getargs.c /^getargs_et_hash(PyObject *self, PyObject *args)$/;" f file: +getargs_f Modules/_testcapi/getargs.c /^getargs_f(PyObject *self, PyObject *args)$/;" f file: +getargs_h Modules/_testcapi/getargs.c /^getargs_h(PyObject *self, PyObject *args)$/;" f file: +getargs_i Modules/_testcapi/getargs.c /^getargs_i(PyObject *self, PyObject *args)$/;" f file: +getargs_k Modules/_testcapi/getargs.c /^getargs_k(PyObject *self, PyObject *args)$/;" f file: +getargs_keyword_only Modules/_testcapi/getargs.c /^getargs_keyword_only(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +getargs_keywords Modules/_testcapi/getargs.c /^getargs_keywords(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +getargs_l Modules/_testcapi/getargs.c /^getargs_l(PyObject *self, PyObject *args)$/;" f file: +getargs_n Modules/_testcapi/getargs.c /^getargs_n(PyObject *self, PyObject *args)$/;" f file: +getargs_p Modules/_testcapi/getargs.c /^getargs_p(PyObject *self, PyObject *args)$/;" f file: +getargs_positional_only_and_keywords Modules/_testcapi/getargs.c /^getargs_positional_only_and_keywords(PyObject *self, PyObject *args,$/;" f file: +getargs_s Modules/_testcapi/getargs.c /^getargs_s(PyObject *self, PyObject *args)$/;" f file: +getargs_s_hash Modules/_testcapi/getargs.c /^getargs_s_hash(PyObject *self, PyObject *args)$/;" f file: +getargs_s_hash_int Modules/_testcapi/getargs.c /^getargs_s_hash_int(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +getargs_s_hash_int2 Modules/_testcapi/getargs.c /^getargs_s_hash_int2(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +getargs_s_star Modules/_testcapi/getargs.c /^getargs_s_star(PyObject *self, PyObject *args)$/;" f file: +getargs_tuple Modules/_testcapi/getargs.c /^getargs_tuple(PyObject *self, PyObject *args)$/;" f file: +getargs_u Modules/_testcapi/getargs.c /^getargs_u(PyObject *self, PyObject *args)$/;" f file: +getargs_u_hash Modules/_testcapi/getargs.c /^getargs_u_hash(PyObject *self, PyObject *args)$/;" f file: +getargs_w_star Modules/_testcapi/getargs.c /^getargs_w_star(PyObject *self, PyObject *args)$/;" f file: +getargs_y Modules/_testcapi/getargs.c /^getargs_y(PyObject *self, PyObject *args)$/;" f file: +getargs_y_hash Modules/_testcapi/getargs.c /^getargs_y_hash(PyObject *self, PyObject *args)$/;" f file: +getargs_y_star Modules/_testcapi/getargs.c /^getargs_y_star(PyObject *self, PyObject *args)$/;" f file: +getargs_z Modules/_testcapi/getargs.c /^getargs_z(PyObject *self, PyObject *args)$/;" f file: +getargs_z_hash Modules/_testcapi/getargs.c /^getargs_z_hash(PyObject *self, PyObject *args)$/;" f file: +getargs_z_star Modules/_testcapi/getargs.c /^getargs_z_star(PyObject *self, PyObject *args)$/;" f file: +getargvalues Lib/inspect.py /^def getargvalues(frame):$/;" f +getarrayitem Modules/arraymodule.c /^getarrayitem(PyObject *op, Py_ssize_t i)$/;" f file: +getasyncgenlocals Lib/inspect.py /^def getasyncgenlocals(agen):$/;" f +getasyncgenstate Lib/inspect.py /^def getasyncgenstate(agen):$/;" f +getatime Lib/genericpath.py /^def getatime(filename):$/;" f +getatom Lib/email/_parseaddr.py /^ def getatom(self, atomends=None):$/;" m class:AddrlistClass +getattr Modules/_pickle.c /^ PyObject *getattr;$/;" m struct:__anon448 file: +getattr Objects/stringlib/unicode_format.h /^getattr(PyObject *obj, SubString *name)$/;" f +getattr_static Lib/inspect.py /^def getattr_static(obj, attr, default=_sentinel):$/;" f +getattrfunc Include/object.h /^typedef PyObject *(*getattrfunc)(PyObject *, char *);$/;" t +getattribute Lib/test/test_pickle.py /^def getattribute(module, name):$/;" f +getattribute Modules/_pickle.c /^getattribute(PyObject *obj, PyObject *name, int allow_qualname)$/;" f file: +getattributelist Modules/_winapi.c /^getattributelist(PyObject *obj, const char *name, AttributeList *attribute_list)$/;" f file: +getattrofunc Include/object.h /^typedef PyObject *(*getattrofunc)(PyObject *, PyObject *);$/;" t +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.E +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsInstanceExceptions.test_class_has_no_bases.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsInstanceExceptions.test_dont_mask_non_attribute_error.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsInstanceExceptions.test_mask_attribute_error.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsSubclassExceptions.test_dont_mask_non_attribute_error.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsSubclassExceptions.test_dont_mask_non_attribute_error_in_cls_arg.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsSubclassExceptions.test_mask_attribute_error.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:TestIsSubclassExceptions.test_mask_attribute_error_in_cls_arg.C +getbases Lib/test/test_isinstance.py /^ def getbases(self):$/;" m class:AbstractClass +getblock Lib/inspect.py /^def getblock(lines):$/;" f +getboolean Lib/configparser.py /^ def getboolean(self, section, option, *, raw=False, vars=None,$/;" m class:RawConfigParser +getboolean Lib/test/test_configparser.py /^ def getboolean(self, section, option, *, raw=False, vars=None,$/;" m class:BlatantOverrideConvertersTestCase.test_inheritance.StrangeConfigParser +getboolean Lib/tkinter/__init__.py /^ def getboolean(self, s):$/;" m class:Misc +getboolean Lib/tkinter/__init__.py /^def getboolean(s):$/;" f +getbuffer Lib/_pyio.py /^ def getbuffer(self):$/;" m class:BytesIO +getbuffer Python/getargs.c /^getbuffer(PyObject *arg, Py_buffer *view, const char **errmsg)$/;" f file: +getbuffer_with_null_view Modules/_testcapimodule.c /^getbuffer_with_null_view(PyObject* self, PyObject *obj)$/;" f file: +getbufferproc Include/pybuffer.h /^typedef int (*getbufferproc)(PyObject *, Py_buffer *, int);$/;" t +getcallargs Lib/inspect.py /^def getcallargs(func, \/, *positional, **named):$/;" f +getcanvas Lib/turtle.py /^ def getcanvas(self):$/;" m class:TurtleScreen +getcapabilities Lib/nntplib.py /^ def getcapabilities(self):$/;" m class:NNTP +getcapitals Modules/_decimal/tests/deccheck.py /^ def getcapitals(self):$/;" m class:Context +getcaps Lib/mailcap.py /^def getcaps():$/;" f +getclamp Modules/_decimal/tests/deccheck.py /^ def getclamp(self):$/;" m class:Context +getclass Lib/test/test_isinstance.py /^ def getclass(self):$/;" m class:TestIsInstanceExceptions.test_bases_raises_other_than_attribute_error.I +getclass Lib/test/test_isinstance.py /^ def getclass(self):$/;" m class:TestIsInstanceExceptions.test_class_has_no_bases.I +getclass Lib/test/test_isinstance.py /^ def getclass(self):$/;" m class:TestIsInstanceExceptions.test_isinstance_dont_mask_non_attribute_error.C +getclass Lib/test/test_isinstance.py /^ def getclass(self):$/;" m class:AbstractInstance +getclasstree Lib/inspect.py /^def getclasstree(classes, unique=False):$/;" f +getclosurevars Lib/inspect.py /^def getclosurevars(func):$/;" f +getcmd Lib/idlelib/undo.py /^ def getcmd(self, i):$/;" m class:CommandSequence +getcode Include/internal/pycore_ucnhash.h /^ int (*getcode)(const char* name, int namelen, Py_UCS4* code,$/;" m struct:__anon9 +getcode Lib/http/client.py /^ def getcode(self):$/;" m class:HTTPResponse +getcode Lib/urllib/response.py /^ def getcode(self):$/;" m class:addinfourl +getcodec Modules/cjkcodecs/cjkcodecs.h /^getcodec(PyObject *self, PyObject *encoding)$/;" f +getcomment Lib/email/_parseaddr.py /^ def getcomment(self):$/;" m class:AddrlistClass +getcomments Lib/inspect.py /^def getcomments(object):$/;" f +getcompname Lib/aifc.py /^ def getcompname(self):$/;" m class:Aifc_read +getcompname Lib/aifc.py /^ def getcompname(self):$/;" m class:Aifc_write +getcompname Lib/sunau.py /^ def getcompname(self):$/;" m class:Au_read +getcompname Lib/sunau.py /^ def getcompname(self):$/;" m class:Au_write +getcompname Lib/wave.py /^ def getcompname(self):$/;" m class:Wave_read +getcompname Lib/wave.py /^ def getcompname(self):$/;" m class:Wave_write +getcomptype Lib/aifc.py /^ def getcomptype(self):$/;" m class:Aifc_read +getcomptype Lib/aifc.py /^ def getcomptype(self):$/;" m class:Aifc_write +getcomptype Lib/sunau.py /^ def getcomptype(self):$/;" m class:Au_read +getcomptype Lib/sunau.py /^ def getcomptype(self):$/;" m class:Au_write +getcomptype Lib/tarfile.py /^ def getcomptype(self):$/;" m class:_StreamProxy +getcomptype Lib/wave.py /^ def getcomptype(self):$/;" m class:Wave_read +getcomptype Lib/wave.py /^ def getcomptype(self):$/;" m class:Wave_write +getconfig Modules/_sqlite/clinic/connection.c.h /^getconfig(pysqlite_Connection *self, PyObject *arg)$/;" f +getconfig_impl Modules/_sqlite/connection.c /^getconfig_impl(pysqlite_Connection *self, int op)$/;" f file: +getcontext Lib/_pydecimal.py /^def getcontext():$/;" f +getcookedpat Lib/idlelib/searchengine.py /^ def getcookedpat(self):$/;" m class:SearchEngine +getcoroutinelocals Lib/inspect.py /^def getcoroutinelocals(coroutine):$/;" f +getcoroutinestate Lib/inspect.py /^def getcoroutinestate(coroutine):$/;" f +getctime Lib/genericpath.py /^def getctime(filename):$/;" f +getdata Include/internal/pycore_interp.h /^ crossinterpdatafunc getdata;$/;" m struct:_xidregitem +getdebugger Lib/idlelib/pyshell.py /^ def getdebugger(self):$/;" m class:ModifiedInterpreter +getdecoder Lib/codecs.py /^def getdecoder(encoding):$/;" f +getdefaultlocale Lib/locale.py /^def getdefaultlocale(envvars=('LC_ALL', 'LC_CTYPE', 'LANG', 'LANGUAGE')):$/;" f +getdefaulttimeout Lib/test/mock_socket.py /^def getdefaulttimeout():$/;" f +getdelimited Lib/email/_parseaddr.py /^ def getdelimited(self, beginchar, endchars, allowcomments=True):$/;" m class:AddrlistClass +getdict Lib/test/test_descr.py /^ def getdict(self):$/;" m class:.test_dir.M2 +getdigits Lib/_pydecimal.py /^ def getdigits(self, p):$/;" m class:_Log10Memoize +getdoc Lib/inspect.py /^def getdoc(object):$/;" f +getdoc Lib/pydoc.py /^def getdoc(object):$/;" f +getdocloc Lib/pydoc.py /^ def getdocloc(self, object, basedir=sysconfig.get_path('stdlib')):$/;" m class:Doc +getdomain Lib/email/_parseaddr.py /^ def getdomain(self):$/;" m class:AddrlistClass +getdomainliteral Lib/email/_parseaddr.py /^ def getdomainliteral(self):$/;" m class:AddrlistClass +getdouble Lib/tkinter/__init__.py /^ def getdouble(self, s):$/;" m class:Misc +getdouble Lib/tkinter/__init__.py /^getdouble = float$/;" v +getemax Modules/_decimal/tests/deccheck.py /^ def getemax(self):$/;" m class:Context +getemin Modules/_decimal/tests/deccheck.py /^ def getemin(self):$/;" m class:Context +getencoder Lib/codecs.py /^def getencoder(encoding):$/;" f +getencoding Lib/locale.py /^ def getencoding():$/;" f +getentry Modules/_struct.c /^getentry(_structmodulestate *state, int c, const formatdef *f)$/;" f file: +getenv Lib/os.py /^def getenv(key, default=None):$/;" f +getenv Tools/wasm/wasm_build.py /^ def getenv(self) -> dict:$/;" m class:BuildProfile +getenv Tools/wasm/wasm_build.py /^ def getenv(self, profile: "BuildProfile") -> dict:$/;" m class:Platform +getenvb Lib/os.py /^ def getenvb(key, default=None):$/;" f function:getenv +getenvironment Modules/_winapi.c /^getenvironment(PyObject* environment)$/;" f file: +getexceptions Lib/test/test_decimal.py /^ def getexceptions(self):$/;" m class:IBMTestCases +getfd Lib/multiprocessing/resource_tracker.py /^ def getfd(self):$/;" m class:ResourceTracker +getfd Lib/multiprocessing/resource_tracker.py /^getfd = _resource_tracker.getfd$/;" v +getfile Lib/inspect.py /^def getfile(object):$/;" f +getfilename Lib/idlelib/runscript.py /^ def getfilename(self):$/;" m class:ScriptBinding +getfiles Modules/_blake2/blake2b2s.py /^def getfiles():$/;" f +getfilesize Python/marshal.c /^getfilesize(FILE *fp)$/;" f file: +getfirst Lib/cgi.py /^ def getfirst(self, key, default=None):$/;" m class:FieldStorage +getfirstweekday Lib/calendar.py /^ def getfirstweekday(self):$/;" m class:Calendar +getfloat Lib/configparser.py /^ def getfloat(self, section, option, *, raw=False, vars=None,$/;" m class:RawConfigParser +getfoo Lib/test/test_descr.py /^ def getfoo(self):$/;" m class:.test_copy_setstate.C +getfp Lib/aifc.py /^ def getfp(self):$/;" m class:Aifc_read +getfp Lib/sunau.py /^ def getfp(self):$/;" m class:Au_read +getfp Lib/wave.py /^ def getfp(self):$/;" m class:Wave_read +getfqdn Lib/socket.py /^def getfqdn(name=''):$/;" f +getfqdn Lib/test/mock_socket.py /^def getfqdn():$/;" f +getframe Lib/test/test_frame.py /^ def getframe(self):$/;" m class:TestCAPI +getframeinfo Lib/inspect.py /^def getframeinfo(frame, context=1):$/;" f +getframerate Lib/aifc.py /^ def getframerate(self):$/;" m class:Aifc_read +getframerate Lib/aifc.py /^ def getframerate(self):$/;" m class:Aifc_write +getframerate Lib/sunau.py /^ def getframerate(self):$/;" m class:Au_read +getframerate Lib/sunau.py /^ def getframerate(self):$/;" m class:Au_write +getframerate Lib/wave.py /^ def getframerate(self):$/;" m class:Wave_read +getframerate Lib/wave.py /^ def getframerate(self):$/;" m class:Wave_write +getfullargspec Lib/inspect.py /^def getfullargspec(func):$/;" f +getfunc Lib/test/test_sqlite3/test_userfunctions.py /^ def getfunc():$/;" f function:FunctionTests.test_func_ref_count +getfunc Modules/_ctypes/ctypes.h /^ GETFUNC getfunc; \/* getter function if proto is NULL *\/$/;" m struct:__anon494 +getfunc Modules/_ctypes/ctypes.h /^ GETFUNC getfunc; \/* Only for simple objects *\/$/;" m struct:__anon495 +getfunc Modules/_ctypes/ctypes.h /^ GETFUNC getfunc;$/;" m struct:fielddesc +getfunc_swapped Modules/_ctypes/ctypes.h /^ GETFUNC getfunc_swapped;$/;" m struct:fielddesc +getgeneratorlocals Lib/inspect.py /^def getgeneratorlocals(generator):$/;" f +getgeneratorstate Lib/inspect.py /^def getgeneratorstate(generator):$/;" f +getgenframe Lib/test/test_frame.py /^ def getgenframe(self):$/;" m class:TestCAPI +gethandle Modules/_winapi.c /^gethandle(PyObject* obj, const char* name)$/;" f file: +gethandlelist Modules/_winapi.c /^gethandlelist(PyObject *mapping, const char *name, Py_ssize_t *size)$/;" f file: +getheader Lib/http/client.py /^ def getheader(self, name, default=None):$/;" m class:HTTPResponse +getheaders Lib/http/client.py /^ def getheaders(self):$/;" m class:HTTPResponse +getheaders Lib/test/test_urllib2.py /^ def getheaders(self, name):$/;" m class:MockHeaders +gethost_common Modules/socketmodule.c /^gethost_common(socket_state *state, struct hostent *h, struct sockaddr *addr,$/;" f file: +gethostbyname Lib/test/mock_socket.py /^def gethostbyname(name):$/;" f +gethostname Lib/test/mock_socket.py /^def gethostname():$/;" f +geticonimage Lib/idlelib/tree.py /^ def geticonimage(self, name):$/;" m class:TreeNode +getincrementaldecoder Lib/codecs.py /^def getincrementaldecoder(encoding):$/;" f +getincrementalencoder Lib/codecs.py /^def getincrementalencoder(encoding):$/;" f +getindex Lib/test/test_buffer.py /^def getindex(ndim, ind, strides):$/;" f +getindex Objects/typeobject.c /^getindex(PyObject *self, PyObject *arg)$/;" f file: +getinfo Lib/zipfile/__init__.py /^ def getinfo(self, name):$/;" m class:ZipFile +getinfo Lib/zipfile/_path/__init__.py /^ def getinfo(self, name):$/;" m class:CompleteDirs +getinnerframes Lib/inspect.py /^def getinnerframes(tb, context=1):$/;" f +getint Lib/configparser.py /^ def getint(self, section, option, *, raw=False, vars=None,$/;" m class:RawConfigParser +getint Lib/tkinter/__init__.py /^ def getint(self, s):$/;" m class:Misc +getint Lib/tkinter/__init__.py /^getint = int$/;" v +getint_event Lib/tkinter/__init__.py /^ def getint_event(s):$/;" f function:Misc._substitute +getitem Include/cpython/object.h /^ PyObject *getitem;$/;" m struct:_specialization_cache +getitem Lib/operator.py /^def getitem(a, b):$/;" f +getitem Lib/test/test_unittest/testmock/testmagicmethods.py /^ def getitem(s, name):$/;" f function:TestMockingMagicMethods.test_dict_methods +getitem Modules/arraymodule.c /^ PyObject * (*getitem)(struct arrayobject *, Py_ssize_t);$/;" m struct:arraydescr file: +getitem Modules/arraymodule.c /^ PyObject* (*getitem)(struct arrayobject *, Py_ssize_t);$/;" m struct:__anon648 file: +getitem_idx Objects/stringlib/unicode_format.h /^getitem_idx(PyObject *obj, Py_ssize_t idx)$/;" f +getitem_sequence Objects/stringlib/unicode_format.h /^getitem_sequence(PyObject *obj, Py_ssize_t idx)$/;" f +getitem_str Objects/stringlib/unicode_format.h /^getitem_str(PyObject *obj, SubString *name)$/;" f +getitem_type Lib/test/test_memoryview.py /^ getitem_type = bytes$/;" v class:BaseBytesMemoryTests +getitem_type Lib/test/test_memoryview.py /^ getitem_type = lambda self, b: array.array('i', list(b)).tobytes()$/;" v class:BaseArrayMemoryTests +getitem_version Include/cpython/object.h /^ uint32_t getitem_version;$/;" m struct:_specialization_cache +getitem_with_error Modules/_testcapimodule.c /^getitem_with_error(PyObject *self, PyObject *args)$/;" f file: +getiterfunc Include/object.h /^typedef PyObject *(*getiterfunc) (PyObject *);$/;" t +getlang_Tests Lib/test/test_strptime.py /^class getlang_Tests(unittest.TestCase):$/;" c +getlen Lib/test/test_configparser.py /^ def getlen(self, section, option, *, raw=False, vars=None,$/;" m class:BlatantOverrideConvertersTestCase.test_inheritance.StrangeConfigParser +getlimit Modules/_sqlite/clinic/connection.c.h /^getlimit(pysqlite_Connection *self, PyObject *arg)$/;" f +getlimit_impl Modules/_sqlite/connection.c /^getlimit_impl(pysqlite_Connection *self, int category)$/;" f file: +getline Lib/ftplib.py /^ def getline(self):$/;" m class:FTP +getline Lib/linecache.py /^def getline(filename, lineno, module_globals=None):$/;" f +getline Lib/pydoc.py /^ def getline(self, prompt):$/;" f +getline Lib/test/test_tracemalloc.py /^ def getline(filename, lineno):$/;" f function:TestSnapshot.test_format_traceback +getline Tools/patchcheck/reindent.py /^ def getline(self):$/;" m class:Reindenter +getlineno Lib/idlelib/editor.py /^ def getlineno(self, mark="insert"):$/;" m class:EditorWindow +getlineno Lib/idlelib/idle_test/test_codecontext.py /^ def getlineno(self, index):$/;" m class:DummyEditwin +getlineno Lib/idlelib/idle_test/test_sidebar.py /^ def getlineno(self, index):$/;" m class:Dummy_editwin +getlineno Lib/inspect.py /^def getlineno(frame):$/;" f +getlines Lib/linecache.py /^def getlines(filename, module_globals=None):$/;" f +getlist Lib/cgi.py /^ def getlist(self, key):$/;" m class:FieldStorage +getloadavg Lib/test/libregrtest/main.py /^ def getloadavg(self):$/;" m class:Regrtest +getloadavg Lib/test/libregrtest/win_utils.py /^ def getloadavg(self):$/;" m class:WindowsLoadTracker +getlocale Lib/locale.py /^def getlocale(category=LC_CTYPE):$/;" f +getlspace Tools/patchcheck/reindent.py /^def getlspace(line):$/;" f +getmakevars Tools/freeze/parsesetup.py /^def getmakevars(filename):$/;" f +getmark Lib/aifc.py /^ def getmark(self, id):$/;" m class:Aifc_read +getmark Lib/aifc.py /^ def getmark(self, id):$/;" m class:Aifc_write +getmark Lib/sunau.py /^ def getmark(self, id):$/;" m class:Au_read +getmark Lib/wave.py /^ def getmark(self, id):$/;" m class:Wave_read +getmark Lib/wave.py /^ def getmark(self, id):$/;" m class:Wave_write +getmarkers Lib/aifc.py /^ def getmarkers(self):$/;" m class:Aifc_read +getmarkers Lib/aifc.py /^ def getmarkers(self):$/;" m class:Aifc_write +getmarkers Lib/sunau.py /^ def getmarkers(self):$/;" m class:Au_read +getmarkers Lib/wave.py /^ def getmarkers(self):$/;" m class:Wave_read +getmarkers Lib/wave.py /^ def getmarkers(self):$/;" m class:Wave_write +getmember Lib/tarfile.py /^ def getmember(self, name):$/;" m class:TarFile +getmembers Lib/inspect.py /^def getmembers(object, predicate=None):$/;" f +getmembers Lib/tarfile.py /^ def getmembers(self):$/;" m class:TarFile +getmembers_static Lib/inspect.py /^def getmembers_static(object, predicate=None):$/;" f +getmethodname Lib/xmlrpc/client.py /^ def getmethodname(self):$/;" m class:Unmarshaller +getmethparlist Lib/turtle.py /^def getmethparlist(ob):$/;" f +getmode Lib/tkinter/tix.py /^ def getmode(self, entrypath):$/;" m class:CheckList +getmode Lib/tkinter/tix.py /^ def getmode(self, entrypath):$/;" m class:Tree +getmodule Lib/inspect.py /^def getmodule(object, _filename=None):$/;" f +getmodule Lib/test/test_pickle.py /^def getmodule(module):$/;" f +getmodulename Lib/inspect.py /^def getmodulename(path):$/;" f +getmro Lib/inspect.py /^def getmro(cls):$/;" f +getmtime Lib/genericpath.py /^def getmtime(filename):$/;" f +getmultibytecodec Modules/cjkcodecs/cjkcodecs.h /^getmultibytecodec(void)$/;" f +getmultiline Lib/ftplib.py /^ def getmultiline(self):$/;" m class:FTP +getname Include/internal/pycore_ucnhash.h /^ int (*getname)(Py_UCS4 code, char* buffer, int buflen,$/;" m struct:__anon9 +getname Lib/chunk.py /^ def getname(self):$/;" m class:Chunk +getname Lib/wave.py /^ def getname(self):$/;" m class:_Chunk +getnameinfo Lib/asyncio/base_events.py /^ async def getnameinfo(self, sockaddr, flags=0):$/;" m class:BaseEventLoop +getnameinfo Lib/asyncio/events.py /^ async def getnameinfo(self, sockaddr, flags=0):$/;" m class:AbstractEventLoop +getnameinfo Modules/getnameinfo.c /^getnameinfo(sa, salen, host, hostlen, serv, servlen, flags)$/;" f +getnameinfo Modules/socketmodule.c 465;" d file: +getnames Lib/tarfile.py /^ def getnames(self):$/;" m class:TarFile +getnchannels Lib/aifc.py /^ def getnchannels(self):$/;" m class:Aifc_read +getnchannels Lib/aifc.py /^ def getnchannels(self):$/;" m class:Aifc_write +getnchannels Lib/sunau.py /^ def getnchannels(self):$/;" m class:Au_read +getnchannels Lib/sunau.py /^ def getnchannels(self):$/;" m class:Au_write +getnchannels Lib/wave.py /^ def getnchannels(self):$/;" m class:Wave_read +getnchannels Lib/wave.py /^ def getnchannels(self):$/;" m class:Wave_write +getnext Tools/peg_generator/pegen/tokenizer.py /^ def getnext(self) -> tokenize.TokenInfo:$/;" m class:Tokenizer +getnextarg Objects/bytesobject.c /^getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx)$/;" f +getnframes Lib/aifc.py /^ def getnframes(self):$/;" m class:Aifc_read +getnframes Lib/aifc.py /^ def getnframes(self):$/;" m class:Aifc_write +getnframes Lib/sunau.py /^ def getnframes(self):$/;" m class:Au_read +getnframes Lib/sunau.py /^ def getnframes(self):$/;" m class:Au_write +getnframes Lib/wave.py /^ def getnframes(self):$/;" m class:Wave_read +getnframes Lib/wave.py /^ def getnframes(self):$/;" m class:Wave_write +getnode Lib/uuid.py /^def getnode():$/;" f +getopt Lib/getopt.py /^def getopt(args, shortopts, longopts = []):$/;" f +getouterframes Lib/inspect.py /^def getouterframes(frame, context=1):$/;" f +getoutput Lib/subprocess.py /^def getoutput(cmd, *, encoding=None, errors=None):$/;" f +getp Lib/test/test_inspect.py /^ def getp(self): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.A +getpager Lib/pydoc.py /^def getpager():$/;" f +getparams Lib/aifc.py /^ def getparams(self):$/;" m class:Aifc_read +getparams Lib/aifc.py /^ def getparams(self):$/;" m class:Aifc_write +getparams Lib/sunau.py /^ def getparams(self):$/;" m class:Au_read +getparams Lib/sunau.py /^ def getparams(self):$/;" m class:Au_write +getparams Lib/wave.py /^ def getparams(self):$/;" m class:Wave_read +getparams Lib/wave.py /^ def getparams(self):$/;" m class:Wave_write +getparser Lib/xmlrpc/client.py /^ def getparser(self):$/;" m class:Transport +getparser Lib/xmlrpc/client.py /^def getparser(use_datetime=False, use_builtin_types=False):$/;" f +getpass Lib/getpass.py /^ getpass = fallback_getpass$/;" v +getpass Lib/getpass.py /^ getpass = win_getpass$/;" v +getpass Lib/getpass.py /^ getpass = unix_getpass$/;" v +getpass Lib/test/test_ssl.py /^ def getpass(self):$/;" m class:ContextTests.test_load_cert_chain.GetPassCallable +getpass_bad_type Lib/test/test_ssl.py /^ def getpass_bad_type():$/;" f function:ContextTests.test_load_cert_chain +getpass_badpass Lib/test/test_ssl.py /^ def getpass_badpass():$/;" f function:ContextTests.test_load_cert_chain +getpass_bytearray Lib/test/test_ssl.py /^ def getpass_bytearray():$/;" f function:ContextTests.test_load_cert_chain +getpass_bytes Lib/test/test_ssl.py /^ def getpass_bytes():$/;" f function:ContextTests.test_load_cert_chain +getpass_exception Lib/test/test_ssl.py /^ def getpass_exception():$/;" f function:ContextTests.test_load_cert_chain +getpass_huge Lib/test/test_ssl.py /^ def getpass_huge():$/;" f function:ContextTests.test_load_cert_chain +getpass_unicode Lib/test/test_ssl.py /^ def getpass_unicode():$/;" f function:ContextTests.test_load_cert_chain +getpat Lib/idlelib/idle_test/test_grep.py /^ def getpat(self):$/;" m class:Dummy_searchengine +getpat Lib/idlelib/searchengine.py /^ def getpat(self):$/;" m class:SearchEngine +getpath Lib/test/test_getpath.py /^def getpath(ns, keys):$/;" f +getpath_methods Modules/getpath.c /^static PyMethodDef getpath_methods[] = {$/;" v file: +getpath_nowarn_method Modules/getpath.c /^static PyMethodDef getpath_nowarn_method = {"warn", getpath_nowarn, METH_VARARGS, NULL};$/;" v file: +getpath_warn_method Modules/getpath.c /^static PyMethodDef getpath_warn_method = {"warn", getpath_warn, METH_VARARGS, NULL};$/;" v file: +getpeercert Lib/ssl.py /^ def getpeercert(self, binary_form=False):$/;" m class:SSLObject +getpeercert Lib/ssl.py /^ def getpeercert(self, binary_form=False):$/;" m class:SSLSocket +getpeername Lib/asyncio/trsock.py /^ def getpeername(self):$/;" m class:TransportSocket +getpeername Lib/test/mock_socket.py /^ def getpeername(self):$/;" m class:MockSocket +getpen Lib/turtle.py /^ getpen = getturtle$/;" v class:RawTurtle +getphraselist Lib/email/_parseaddr.py /^ def getphraselist(self):$/;" m class:AddrlistClass +getpid Modules/expat/xmlparse.c 86;" d file: +getpos Lib/_markupbase.py /^ def getpos(self):$/;" m class:ParserBase +getpos Tools/cases_generator/plexer.py /^ def getpos(self) -> int:$/;" m class:PLexer +getprec Modules/_decimal/tests/deccheck.py /^ def getprec(self):$/;" m class:Context +getpreferredencoding Lib/locale.py /^ def getpreferredencoding(do_setlocale=True):$/;" f +getprevword Lib/idlelib/autoexpand.py /^ def getprevword(self):$/;" m class:AutoExpand +getprofile Lib/threading.py /^def getprofile():$/;" f +getprog Lib/idlelib/searchengine.py /^ def getprog(self):$/;" m class:SearchEngine +getproxies Lib/urllib/request.py /^ def getproxies():$/;" f +getproxies Lib/urllib/request.py /^ def getproxies():$/;" f function:_proxy_bypass_macosx_sysconf +getproxies Lib/urllib/request.py /^ getproxies = getproxies_environment$/;" v +getproxies_environment Lib/urllib/request.py /^def getproxies_environment():$/;" f +getproxies_macosx_sysconf Lib/urllib/request.py /^ def getproxies_macosx_sysconf():$/;" f function:_proxy_bypass_macosx_sysconf +getproxies_registry Lib/urllib/request.py /^ def getproxies_registry():$/;" f +getquota Lib/imaplib.py /^ def getquota(self, root):$/;" m class:IMAP4 +getquotaroot Lib/imaplib.py /^ def getquotaroot(self, mailbox):$/;" m class:IMAP4 +getquote Lib/email/_parseaddr.py /^ def getquote(self):$/;" m class:AddrlistClass +getran Lib/test/test_long.py /^ def getran(self, ndigits):$/;" m class:LongTest +getran2 Lib/test/test_long.py /^ def getran2(ndigits):$/;" m class:LongTest +getrandbits Lib/random.py /^ def getrandbits(self, k):$/;" m class:SystemRandom +getrandbits Lib/random.py /^getrandbits = _inst.getrandbits$/;" v +getrandbits Lib/test/test_random.py /^ def getrandbits(self, n):$/;" m class:TestRandomSubclassing.test_subclasses_overriding_methods.Mixin2 +getrandbits Lib/test/test_random.py /^ def getrandbits(self, n):$/;" m class:TestRandomSubclassing.test_subclasses_overriding_methods.SubClass1 +getrandbits Lib/test/test_random.py /^ def getrandbits(self, n):$/;" m class:TestRandomSubclassing.test_subclasses_overriding_methods.SubClass3 +getreader Lib/codecs.py /^def getreader(encoding):$/;" f +getreader Lib/test/test_codecs.py /^ def getreader():$/;" f function:ReadTest.test_mixed_readline_and_read +getreader Lib/test/test_codecs.py /^ def getreader(input):$/;" f function:ReadTest.test_readline +getrecord Modules/unicodedata.c /^ const change_record* (*getrecord)(Py_UCS4);$/;" m struct:previous_version file: +getrecursionlimit Lib/idlelib/run.py /^ def getrecursionlimit():$/;" f function:install_recursionlimit_wrappers +getregentry Lib/encodings/ascii.py /^def getregentry():$/;" f +getregentry Lib/encodings/base64_codec.py /^def getregentry():$/;" f +getregentry Lib/encodings/big5.py /^def getregentry():$/;" f +getregentry Lib/encodings/big5hkscs.py /^def getregentry():$/;" f +getregentry Lib/encodings/bz2_codec.py /^def getregentry():$/;" f +getregentry Lib/encodings/charmap.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp037.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1006.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1026.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1125.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1140.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1250.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1251.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1252.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1253.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1254.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1255.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1256.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1257.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp1258.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp273.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp424.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp437.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp500.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp720.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp737.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp775.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp850.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp852.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp855.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp856.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp857.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp858.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp860.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp861.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp862.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp863.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp864.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp865.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp866.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp869.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp874.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp875.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp932.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp949.py /^def getregentry():$/;" f +getregentry Lib/encodings/cp950.py /^def getregentry():$/;" f +getregentry Lib/encodings/euc_jis_2004.py /^def getregentry():$/;" f +getregentry Lib/encodings/euc_jisx0213.py /^def getregentry():$/;" f +getregentry Lib/encodings/euc_jp.py /^def getregentry():$/;" f +getregentry Lib/encodings/euc_kr.py /^def getregentry():$/;" f +getregentry Lib/encodings/gb18030.py /^def getregentry():$/;" f +getregentry Lib/encodings/gb2312.py /^def getregentry():$/;" f +getregentry Lib/encodings/gbk.py /^def getregentry():$/;" f +getregentry Lib/encodings/hex_codec.py /^def getregentry():$/;" f +getregentry Lib/encodings/hp_roman8.py /^def getregentry():$/;" f +getregentry Lib/encodings/hz.py /^def getregentry():$/;" f +getregentry Lib/encodings/idna.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso2022_jp.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso2022_jp_1.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso2022_jp_2.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso2022_jp_2004.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso2022_jp_3.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso2022_jp_ext.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso2022_kr.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_1.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_10.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_11.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_13.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_14.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_15.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_16.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_2.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_3.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_4.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_5.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_6.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_7.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_8.py /^def getregentry():$/;" f +getregentry Lib/encodings/iso8859_9.py /^def getregentry():$/;" f +getregentry Lib/encodings/johab.py /^def getregentry():$/;" f +getregentry Lib/encodings/koi8_r.py /^def getregentry():$/;" f +getregentry Lib/encodings/koi8_t.py /^def getregentry():$/;" f +getregentry Lib/encodings/koi8_u.py /^def getregentry():$/;" f +getregentry Lib/encodings/kz1048.py /^def getregentry():$/;" f +getregentry Lib/encodings/latin_1.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_arabic.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_croatian.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_cyrillic.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_farsi.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_greek.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_iceland.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_latin2.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_roman.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_romanian.py /^def getregentry():$/;" f +getregentry Lib/encodings/mac_turkish.py /^def getregentry():$/;" f +getregentry Lib/encodings/mbcs.py /^def getregentry():$/;" f +getregentry Lib/encodings/oem.py /^def getregentry():$/;" f +getregentry Lib/encodings/palmos.py /^def getregentry():$/;" f +getregentry Lib/encodings/ptcp154.py /^def getregentry():$/;" f +getregentry Lib/encodings/punycode.py /^def getregentry():$/;" f +getregentry Lib/encodings/quopri_codec.py /^def getregentry():$/;" f +getregentry Lib/encodings/raw_unicode_escape.py /^def getregentry():$/;" f +getregentry Lib/encodings/rot_13.py /^def getregentry():$/;" f +getregentry Lib/encodings/shift_jis.py /^def getregentry():$/;" f +getregentry Lib/encodings/shift_jis_2004.py /^def getregentry():$/;" f +getregentry Lib/encodings/shift_jisx0213.py /^def getregentry():$/;" f +getregentry Lib/encodings/tis_620.py /^def getregentry():$/;" f +getregentry Lib/encodings/undefined.py /^def getregentry():$/;" f +getregentry Lib/encodings/unicode_escape.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_16.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_16_be.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_16_le.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_32.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_32_be.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_32_le.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_7.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_8.py /^def getregentry():$/;" f +getregentry Lib/encodings/utf_8_sig.py /^def getregentry():$/;" f +getregentry Lib/encodings/uu_codec.py /^def getregentry():$/;" f +getregentry Lib/encodings/zlib_codec.py /^def getregentry():$/;" f +getregentry Lib/test/testcodec.py /^def getregentry():$/;" f +getreply Lib/smtplib.py /^ def getreply(self):$/;" m class:SMTP +getresp Lib/ftplib.py /^ def getresp(self):$/;" m class:FTP +getresponse Lib/http/client.py /^ def getresponse(self):$/;" m class:HTTPConnection +getresponse Lib/idlelib/rpc.py /^ def getresponse(self, myseq, wait):$/;" m class:SocketIO +getresponse Lib/test/test_urllib2.py /^ def getresponse(self):$/;" m class:MockHTTPClass +getresult Lib/tkinter/simpledialog.py /^ def getresult(self):$/;" m class:_QueryFloat +getresult Lib/tkinter/simpledialog.py /^ def getresult(self):$/;" m class:_QueryInteger +getresult Lib/tkinter/simpledialog.py /^ def getresult(self):$/;" m class:_QueryString +getroot Lib/xml/etree/ElementTree.py /^ def getroot(self):$/;" m class:ElementTree +getround Modules/_decimal/_decimal.c /^getround(PyObject *v)$/;" f file: +getround Modules/_decimal/tests/deccheck.py /^ def getround(self):$/;" m class:Context +getrouteaddr Lib/email/_parseaddr.py /^ def getrouteaddr(self):$/;" m class:AddrlistClass +gets_the_context_right Lib/test/test_contextlib.py /^ def gets_the_context_right(exc):$/;" f function:TestBaseExitStack.test_exit_exception_with_correct_context +getsampwidth Lib/aifc.py /^ def getsampwidth(self):$/;" m class:Aifc_read +getsampwidth Lib/aifc.py /^ def getsampwidth(self):$/;" m class:Aifc_write +getsampwidth Lib/sunau.py /^ def getsampwidth(self):$/;" m class:Au_read +getsampwidth Lib/sunau.py /^ def getsampwidth(self):$/;" m class:Au_write +getsampwidth Lib/wave.py /^ def getsampwidth(self):$/;" m class:Wave_read +getsampwidth Lib/wave.py /^ def getsampwidth(self):$/;" m class:Wave_write +getscreen Lib/turtle.py /^ def getscreen(self):$/;" m class:RawTurtle +getselection Lib/tkinter/tix.py /^ def getselection(self, mode='on'):$/;" m class:CheckList +getset Modules/pyexpat.c /^ PyGetSetDef getset;$/;" m struct:HandlerInfo file: +getset_get Objects/descrobject.c /^getset_get(PyGetSetDescrObject *descr, PyObject *obj, PyObject *type)$/;" f file: +getset_get_doc Objects/descrobject.c /^getset_get_doc(PyGetSetDescrObject *descr, void *closure)$/;" f file: +getset_getset Objects/descrobject.c /^static PyGetSetDef getset_getset[] = {$/;" v file: +getset_repr Objects/descrobject.c /^getset_repr(PyGetSetDescrObject *descr)$/;" f file: +getset_set Objects/descrobject.c /^getset_set(PyGetSetDescrObject *descr, PyObject *obj, PyObject *value)$/;" f file: +getsetupinfo Tools/freeze/parsesetup.py /^def getsetupinfo(filename):$/;" f +getshapes Lib/turtle.py /^ def getshapes(self):$/;" m class:TurtleScreen +getsignal Lib/signal.py /^def getsignal(signalnum):$/;" f +getsitepackages Lib/site.py /^def getsitepackages(prefixes=None):$/;" f +getsize Lib/chunk.py /^ def getsize(self):$/;" m class:Chunk +getsize Lib/genericpath.py /^def getsize(filename):$/;" f +getsize Tools/unicode/makeunicodedata.py /^def getsize(data):$/;" f +getslice Modules/_sre/sre.c /^getslice(int isbytes, const void *ptr,$/;" f +getsockaddrarg Modules/socketmodule.c /^getsockaddrarg(PySocketSockObject *s, PyObject *args,$/;" f file: +getsockaddrlen Modules/socketmodule.c /^getsockaddrlen(PySocketSockObject *s, socklen_t *len_ret)$/;" f file: +getsockbyname Lib/asyncio/trsock.py /^ def getsockbyname(self):$/;" m class:TransportSocket +getsockname Lib/asyncio/trsock.py /^ def getsockname(self):$/;" m class:TransportSocket +getsockname Lib/test/mock_socket.py /^ def getsockname(self):$/;" m class:MockSocket +getsockopt Lib/asyncio/trsock.py /^ def getsockopt(self, *args, **kwargs):$/;" m class:TransportSocket +getsockopt Lib/test/mock_socket.py /^ def getsockopt(self, level, optname, buflen=None):$/;" m class:MockSocket +getsockopt Lib/test/support/asyncore.py /^ def getsockopt(self, level, optname, buflen=None):$/;" m class:.file_wrapper +getsource Lib/inspect.py /^def getsource(object):$/;" f +getsourcefile Lib/inspect.py /^def getsourcefile(object):$/;" f +getsourcelines Lib/inspect.py /^def getsourcelines(object):$/;" f +getstate Lib/_pyio.py /^ def getstate(self):$/;" m class:IncrementalNewlineDecoder +getstate Lib/codecs.py /^ def getstate(self):$/;" m class:BufferedIncrementalDecoder +getstate Lib/codecs.py /^ def getstate(self):$/;" m class:BufferedIncrementalEncoder +getstate Lib/codecs.py /^ def getstate(self):$/;" m class:IncrementalDecoder +getstate Lib/codecs.py /^ def getstate(self):$/;" m class:IncrementalEncoder +getstate Lib/encodings/utf_16.py /^ def getstate(self):$/;" m class:IncrementalDecoder +getstate Lib/encodings/utf_16.py /^ def getstate(self):$/;" m class:IncrementalEncoder +getstate Lib/encodings/utf_32.py /^ def getstate(self):$/;" m class:IncrementalDecoder +getstate Lib/encodings/utf_32.py /^ def getstate(self):$/;" m class:IncrementalEncoder +getstate Lib/encodings/utf_8_sig.py /^ def getstate(self):$/;" m class:IncrementalDecoder +getstate Lib/encodings/utf_8_sig.py /^ def getstate(self):$/;" m class:IncrementalEncoder +getstate Lib/random.py /^ def getstate(self):$/;" m class:Random +getstate Lib/random.py /^getstate = _inst.getstate$/;" v +getstate Lib/test/test_descr.py /^ def getstate(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.C +getstate Lib/test/test_descr.py /^ def getstate(self):$/;" m class:ClassPropertiesAndMethods.test_multiple_inheritance.C +getstate Lib/test/test_descr.py /^ def getstate(self):$/;" m class:ClassPropertiesAndMethods.test_python_dicts.C +getstate Lib/test/test_io.py /^ def getstate(self):$/;" m class:TextIOWrapperTest.test_illegal_decoder._make_very_illegal_wrapper.BadDecoder +getstate Lib/test/test_io.py /^ def getstate(self):$/;" m class:StatefulIncrementalDecoder +getstats Lib/test/test_gc.py /^ def getstats():$/;" f function:GCTests.test_resurrection_does_not_block_cleanup_of_other_objects +getstatus Lib/tkinter/tix.py /^ def getstatus(self, entrypath):$/;" m class:CheckList +getstatusoutput Lib/subprocess.py /^def getstatusoutput(cmd, *, encoding=None, errors=None):$/;" f +getstring Modules/_sre/sre.c /^getstring(PyObject* string, Py_ssize_t* p_length,$/;" f file: +gettags Lib/tkinter/__init__.py /^ def gettags(self, *args):$/;" m class:Canvas +gettarinfo Lib/tarfile.py /^ def gettarinfo(self, name=None, arcname=None, fileobj=None):$/;" m class:TarFile +gettempdir Lib/tempfile.py /^def gettempdir():$/;" f +gettempdirb Lib/tempfile.py /^def gettempdirb():$/;" f +gettempprefix Lib/tempfile.py /^def gettempprefix():$/;" f +gettempprefixb Lib/tempfile.py /^def gettempprefixb():$/;" f +getter Include/descrobject.h /^typedef PyObject *(*getter)(PyObject *, void *);$/;" t +getter Lib/test/test_abc.py /^ def getter(self, callable):$/;" m class:test_factory.TestABC.test_customdescriptors_with_abstractmethod.Descriptor +getter Lib/test/test_asyncio/test_queues.py /^ async def getter():$/;" f function:QueuePutTests.test_why_are_putters_waiting +getter Lib/test/test_descr.py /^ def getter(name):$/;" f function:.test_getattr_hooks.Descriptor.__get__ +getter Lib/test/test_descr.py /^ def getter(self):$/;" m class:.test_properties_doc_attrib.E +getter Lib/test/test_property.py /^ def getter(x):$/;" f function:PropertySubclassTests.test_issue41287 +getter Lib/types.py /^ def getter(self, fget):$/;" m class:DynamicClassAttribute +getter1 Lib/test/test_property.py /^ def getter1(self):$/;" f function:PropertySubclassTests.test_docstring_copy2 +getter2 Lib/test/test_property.py /^ def getter2(self):$/;" f function:PropertySubclassTests.test_docstring_copy2 +getter3 Lib/test/test_property.py /^ def getter3(self):$/;" f function:PropertySubclassTests.test_docstring_copy2 +getter_doc Include/internal/pycore_descrobject.h /^ int getter_doc;$/;" m struct:__anon170 +getter_wo_doc Lib/test/test_property.py /^ def getter_wo_doc(x):$/;" f function:PropertySubclassTests.test_issue41287 +gettext Lib/gettext.py /^ def gettext(self, message):$/;" m class:GNUTranslations +gettext Lib/gettext.py /^ def gettext(self, message):$/;" m class:NullTranslations +gettext Lib/gettext.py /^def gettext(message):$/;" f +gettext Lib/optparse.py /^ def gettext(message):$/;" f function:_repr +gettext Modules/_elementtree.c /^ int gettext;$/;" m struct:__anon384 file: +gettext_additional_targets Doc/conf.py /^gettext_additional_targets = [$/;" v +gettimeout Lib/asyncio/trsock.py /^ def gettimeout(self):$/;" m class:TransportSocket +gettimeout Lib/test/mock_socket.py /^ def gettimeout(self):$/;" m class:MockSocket +gettmarg Modules/timemodule.c /^gettmarg(time_module_state *state, PyObject *args,$/;" f file: +gettoken Lib/lib2to3/pgen2/pgen.py /^ def gettoken(self):$/;" m class:ParserGenerator +gettrace Lib/threading.py /^def gettrace():$/;" f +getturtle Lib/turtle.py /^ def getturtle(self):$/;" m class:RawTurtle +gettyperecord Objects/unicodectype.c /^gettyperecord(Py_UCS4 code)$/;" f file: +gettysburg Lib/test/test_configparser.py /^ gettysburg = 'a historic borough in south central Pennsylvania'$/;" v class:BlatantOverrideConvertersTestCase.test_inheritance.StrangeConfigParser +getulong Modules/_winapi.c /^getulong(PyObject* obj, const char* name)$/;" f file: +getuntil Lib/re/_parser.py /^ def getuntil(self, terminator, name):$/;" m class:Tokenizer +geturl Lib/http/client.py /^ def geturl(self):$/;" m class:HTTPResponse +geturl Lib/test/test_urllib2.py /^ def geturl(self):$/;" m class:MockHTTPResponse +geturl Lib/test/test_urllib2.py /^ def geturl(self):$/;" m class:MockResponse +geturl Lib/urllib/parse.py /^ def geturl(self):$/;" m class:DefragResult +geturl Lib/urllib/parse.py /^ def geturl(self):$/;" m class:DefragResultBytes +geturl Lib/urllib/parse.py /^ def geturl(self):$/;" m class:ParseResult +geturl Lib/urllib/parse.py /^ def geturl(self):$/;" m class:ParseResultBytes +geturl Lib/urllib/parse.py /^ def geturl(self):$/;" m class:SplitResult +geturl Lib/urllib/parse.py /^ def geturl(self):$/;" m class:SplitResultBytes +geturl Lib/urllib/response.py /^ def geturl(self):$/;" m class:addinfourl +getuser Lib/getpass.py /^def getuser():$/;" f +getuserbase Lib/site.py /^def getuserbase():$/;" f +getusersitepackages Lib/site.py /^def getusersitepackages():$/;" f +getvalue Lib/_pyio.py /^ def getvalue(self):$/;" m class:BytesIO +getvalue Lib/_pyio.py /^ def getvalue(self):$/;" m class:StringIO +getvalue Lib/cgi.py /^ def getvalue(self, key, default=None):$/;" m class:FieldStorage +getvalue Lib/doctest.py /^ def getvalue(self):$/;" m class:_SpoofOut +getvalue Lib/test/test_argparse.py /^ def getvalue(self):$/;" m class:StdIOBuffer +getvalue Lib/test/test_sax.py /^ def getvalue():$/;" f function:StreamReaderWriterXmlgenTest.ioclass +getvalue Lib/test/test_sax.py /^ def getvalue(self):$/;" m class:WriterXmlgenTest.ioclass +getvalue Lib/test/test_unittest/support.py /^ def getvalue(self):$/;" m class:BufferedWriter +getvalue Lib/test/test_uu.py /^ def getvalue(self):$/;" m class:FakeIO +getvalue Tools/gdb/libpython.py /^ def getvalue(self):$/;" m class:TruncatedStringIO +getvar Lib/idlelib/editor.py /^ def getvar(self, name):$/;" m class:EditorWindow +getvar Lib/tkinter/__init__.py /^ def getvar(self, name='PY_VAR'):$/;" m class:Misc +getwelcome Lib/ftplib.py /^ def getwelcome(self):$/;" m class:FTP +getwelcome Lib/nntplib.py /^ def getwelcome(self):$/;" m class:NNTP +getwelcome Lib/poplib.py /^ def getwelcome(self):$/;" m class:POP3 +getwhile Lib/re/_parser.py /^ def getwhile(self, n, charset):$/;" m class:Tokenizer +getwidth Lib/re/_parser.py /^ def getwidth(self):$/;" m class:SubPattern +getwindowlines Lib/idlelib/editor.py /^ def getwindowlines(self):$/;" m class:EditorWindow +getwords Lib/idlelib/autoexpand.py /^ def getwords(self):$/;" m class:AutoExpand +getwriter Lib/codecs.py /^def getwriter(encoding):$/;" f +getx Lib/test/test_descr.py /^ def getx(self): return "hello"$/;" m class:.test_supers.DDsub +getx Lib/test/test_descr.py /^ def getx(self): return 42$/;" m class:.test_supers.DDbase +getx Lib/test/test_descr.py /^ def getx(self):$/;" m class:.test_properties.C +getx Lib/test/test_doctest2.py /^ def getx(self):$/;" m class:C +getx Lib/test/test_sys.py /^ def getx(self): return self.__x$/;" m class:SizeofTest.test_objecttypes.C +getxattr Lib/test/test_os.py /^ def getxattr(path, *args):$/;" f function:ExtendedAttributeTests.test_fds +gh_32092_kw_pass Modules/clinic/_testclinic.c.h /^gh_32092_kw_pass(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +gh_32092_kw_pass_impl Modules/_testclinic.c /^gh_32092_kw_pass_impl(PyObject *module, PyObject *pos, PyObject *args,$/;" f file: +gh_32092_oob Modules/clinic/_testclinic.c.h /^gh_32092_oob(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +gh_32092_oob_impl Modules/_testclinic.c /^gh_32092_oob_impl(PyObject *module, PyObject *pos1, PyObject *pos2,$/;" f file: +gh_99233_refcount Modules/clinic/_testclinic.c.h /^gh_99233_refcount(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +gh_99233_refcount_impl Modules/_testclinic.c /^gh_99233_refcount_impl(PyObject *module, PyObject *args)$/;" f file: +gh_99240_clear_args Modules/_testcapi/getargs.c /^gh_99240_clear_args(PyObject *self, PyObject *args)$/;" f file: +gh_99240_double_free Modules/clinic/_testclinic.c.h /^gh_99240_double_free(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +gh_99240_double_free_impl Modules/_testclinic.c /^gh_99240_double_free_impl(PyObject *module, char *a, char *b)$/;" f file: +gh_issue_re Doc/tools/extensions/pyspecific.py /^gh_issue_re = re.compile('(?:gh-issue-|gh-)([0-9]+)', re.I)$/;" v +gh_issue_role Doc/tools/extensions/pyspecific.py /^def gh_issue_role(typ, rawtext, text, lineno, inliner, options={}, content=[]):$/;" f +gi_code Lib/types.py /^ def gi_code(self):$/;" m class:_GeneratorWrapper +gi_frame Lib/types.py /^ def gi_frame(self):$/;" m class:_GeneratorWrapper +gi_running Lib/types.py /^ def gi_running(self):$/;" m class:_GeneratorWrapper +gi_yieldfrom Lib/types.py /^ def gi_yieldfrom(self):$/;" m class:_GeneratorWrapper +gid Lib/idlelib/pyshell.py /^ gid = 0$/;" v class:ModifiedInterpreter +gid Lib/tarfile.py /^ gid = 'Group ID of the user who originally stored this member.',$/;" v class:TarInfo +gid_t Lib/test/test_lib2to3/data/infinite_recursion.py /^gid_t = __darwin_gid_t$/;" v +gid_t Modules/posixmodule.h /^PyAPI_FUNC(PyObject *) _PyLong_FromGid(gid_t);$/;" v +gil Include/cpython/pylifecycle.h /^ int gil;$/;" m struct:__anon194 +gil Include/internal/pycore_ceval_state.h /^ struct _gil_runtime_state *gil;$/;" m struct:_ceval_state typeref:struct:_ceval_state::_gil_runtime_state +gil Lib/test/test_import/__init__.py /^ gil=2,$/;" v class:SubinterpImportTests +gil_created Python/ceval_gil.c /^static int gil_created(struct _gil_runtime_state *gil)$/;" f file: +gil_drop_request Include/internal/pycore_ceval_state.h /^ _Py_atomic_int gil_drop_request;$/;" m struct:_ceval_state +gilstate Include/internal/pycore_runtime.h /^ struct _gilstate_runtime_state gilstate;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_gilstate_runtime_state +gilstate_counter Include/cpython/pystate.h /^ int gilstate_counter;$/;" m struct:_ts +gilstate_tss_clear Python/pystate.c /^gilstate_tss_clear(_PyRuntimeState *runtime)$/;" f file: +gilstate_tss_fini Python/pystate.c 198;" d file: +gilstate_tss_get Python/pystate.c 200;" d file: +gilstate_tss_init Python/pystate.c 196;" d file: +gilstate_tss_initialized Python/pystate.c 194;" d file: +gilstate_tss_reinit Python/pystate.c 206;" d file: +gilstate_tss_set Python/pystate.c /^gilstate_tss_set(_PyRuntimeState *runtime, PyThreadState *tstate)$/;" f file: +git Lib/test/test_inspect.py /^git = mod.StupidGit()$/;" v +given Lib/test/support/_hypothesis_stubs/__init__.py /^def given(*_args, **_kwargs):$/;" f +gives Lib/test/test_nntplib.py /^ def gives(a, b):$/;" f function:MiscTests.test_decode_header +gives Lib/test/test_nntplib.py /^ def gives(a, b, *c):$/;" f function:MiscTests.test_parse_datetime +gives Lib/test/test_nntplib.py /^ def gives(y, M, d, date_str, time_str):$/;" f function:MiscTests.test_unparse_datetime +gives Lib/test/test_nntplib.py /^ def gives(y, M, d, date_str, time_str):$/;" f function:MiscTests.test_unparse_datetime_legacy +gives Lib/test/test_nntplib.py /^ def gives(y, M, d, h, m, s, date_str, time_str):$/;" f function:MiscTests.test_unparse_datetime +gives Lib/test/test_nntplib.py /^ def gives(y, M, d, h, m, s, date_str, time_str):$/;" f function:MiscTests.test_unparse_datetime_legacy +glob Lib/glob.py /^def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False,$/;" f +glob Lib/msilib/__init__.py /^ def glob(self, pattern, exclude = None):$/;" m class:Directory +glob Lib/pathlib.py /^ def glob(self, pattern, *, case_sensitive=None):$/;" m class:Path +glob Lib/test/test_glob.py /^ def glob(self, *parts, **kwargs):$/;" m class:GlobTests +glob Lib/zipfile/_path/__init__.py /^ def glob(self, pattern):$/;" m class:Path +glob0 Lib/glob.py /^def glob0(dirname, pattern):$/;" f +glob1 Lib/glob.py /^def glob1(dirname, pattern):$/;" f +glob_tree Tools/c-analyzer/c_common/fsutil.py /^def glob_tree(root, *,$/;" f +global Modules/_decimal/_decimal.c /^ PyObject *global;$/;" m struct:__anon352 file: +global_enum Lib/enum.py /^def global_enum(cls, update_str=False):$/;" f +global_enum_repr Lib/enum.py /^def global_enum_repr(self):$/;" f +global_flag_repr Lib/enum.py /^def global_flag_repr(self):$/;" f +global_foo Lib/test/test_copy.py /^def global_foo(x, y): return x+y$/;" f +global_for_suggestions Lib/test/test_traceback.py /^global_for_suggestions = None$/;" v +global_function Lib/test/test_funcattrs.py /^def global_function():$/;" f +global_generic_func Lib/test/test_type_params.py /^def global_generic_func[T]():$/;" f +global_matches Lib/rlcompleter.py /^ def global_matches(self, text):$/;" m class:Completer +global_pos_only_and_normal Lib/test/test_positional_only_arg.py /^def global_pos_only_and_normal(a, \/, b):$/;" f +global_pos_only_defaults Lib/test/test_positional_only_arg.py /^def global_pos_only_defaults(a=1, \/, b=2):$/;" f +global_pos_only_f Lib/test/test_positional_only_arg.py /^def global_pos_only_f(a, b, \/):$/;" f +global_state Modules/_ctypes/_ctypes.c /^ctypes_state global_state;$/;" v +global_state Modules/_testsinglephase.c /^} global_state = {$/;" v typeref:struct:__anon388 file: +global_stmt_rule Parser/parser.c /^global_stmt_rule(Parser *p)$/;" f file: +global_stmt_type Parser/parser.c 97;" d file: +global_str Lib/enum.py /^def global_str(self):$/;" f +global_version Include/internal/pycore_dict_state.h /^ uint64_t global_version;$/;" m struct:_Py_dict_state +globals Modules/_xxinterpchannelsmodule.c /^static struct globals {$/;" s file: +globalsviewer Lib/idlelib/debugger.py /^ globalsviewer = None$/;" v class:Debugger +globaltrace_countfuncs Lib/trace.py /^ def globaltrace_countfuncs(self, frame, why, arg):$/;" m class:Trace +globaltrace_lt Lib/trace.py /^ def globaltrace_lt(self, frame, why, arg):$/;" m class:Trace +globaltrace_trackcallers Lib/trace.py /^ def globaltrace_trackcallers(self, frame, why, arg):$/;" m class:Trace +glow Lib/turtledemo/sorting_animate.py /^ def glow(self):$/;" m class:Block +gn Lib/aifc.py /^ gn = sys.argv[2]$/;" v +gname Lib/tarfile.py /^ gname = 'Group name.',$/;" v class:TarInfo +gni_afd Modules/getnameinfo.c /^static struct gni_afd {$/;" s file: +gni_afdl Modules/getnameinfo.c /^} gni_afdl [] = {$/;" v typeref:struct:gni_afd file: +gni_sockinet Modules/getnameinfo.c /^struct gni_sockinet {$/;" s file: +gnu_getopt Lib/getopt.py /^def gnu_getopt(args, shortopts, longopts = []):$/;" f +go Lib/tkinter/filedialog.py /^ def go(self, dir_or_file=os.curdir, pattern="*", default="", key=None):$/;" m class:FileDialog +go Lib/tkinter/simpledialog.py /^ def go(self):$/;" m class:SimpleDialog +goahead Lib/html/parser.py /^ def goahead(self, end):$/;" m class:HTMLParser +gone Lib/test/inspect_fodder2.py /^def gone():$/;" f +goo Lib/test/test_descr.py /^ goo = c1.foo$/;" v class:.test_methods.D +goo Lib/test/test_descr.py /^ goo = classmethod(foo)$/;" v class:.test_classic.C +goo Lib/test/test_descr.py /^ goo = classmethod(foo)$/;" v class:.test_classmethods.C +goo Lib/test/test_descr.py /^ goo = staticmethod(foo)$/;" v class:.test_staticmethods.C +good Lib/test/test_robotparser.py /^ good = ['\/', '\/test.html', ('cybermapper', '\/cyberworld\/map\/index.html')]$/;" v class:CrawlDelayAndCustomAgentTest +good Lib/test/test_robotparser.py /^ good = ['\/', '\/test.html']$/;" v class:DefaultEntryTest +good Lib/test/test_robotparser.py /^ good = ['\/', '\/test.html']$/;" v class:SitemapTest +good Lib/test/test_robotparser.py /^ good = ['\/', '\/test.html']$/;" v class:UserAgentWildcardTest +good Lib/test/test_robotparser.py /^ good = ['\/another\/path']$/;" v class:UseFirstUserAgentWildcardTest +good Lib/test/test_robotparser.py /^ good = ['\/folder1\/myfile.html']$/;" v class:AnotherInvalidRequestRateTest +good Lib/test/test_robotparser.py /^ good = ['\/folder1\/myfile.html']$/;" v class:GoogleURLOrderingTest +good Lib/test/test_robotparser.py /^ good = ['\/foo']$/;" v class:EmptyFileTest +good Lib/test/test_robotparser.py /^ good = ['\/foo.html']$/;" v class:InvalidCrawlDelayTest +good Lib/test/test_robotparser.py /^ good = ['\/some\/path']$/;" v class:DisallowQueryStringTest +good Lib/test/test_robotparser.py /^ good = ['\/some\/path?']$/;" v class:EmptyQueryStringTest +good Lib/test/test_robotparser.py /^ good = ['\/tmp']$/;" v class:InvalidRequestRateTest +good Lib/test/test_robotparser.py /^ good = [('figtree', '\/foo.html')]$/;" v class:CrawlDelayAndRequestRateTest +good Lib/test/test_robotparser.py /^ good = []$/;" v class:BaseRobotTest +good Lib/test/test_robotparser.py /^ good = []$/;" v class:RejectAllRobotsTest +good_file Tools/c-analyzer/c_parser/source.py /^def good_file(filename, alt=None):$/;" f +goodbye Lib/test/test_enum.py /^ def goodbye(self):$/;" m class:TestSpecial.test_custom_strenum.GoodbyeMixin +goodbye Lib/test/test_enum.py /^ def goodbye(self):$/;" m class:TestSpecial.test_strenum.GoodbyeMixin +gooditer Lib/test/test_set.py /^def gooditer():$/;" f +got Lib/test/datetimetester.py /^ got = Eastern.fromutc(start)$/;" v class:TestTimezoneConversions.test_fromutc.FauxUSTimeZone +got Lib/test/datetimetester.py /^ got = FEastern.fromutc(fstart)$/;" v class:TestTimezoneConversions.test_fromutc.FauxUSTimeZone +got Lib/test/datetimetester.py /^ got = fstart.replace(tzinfo=utc_real).astimezone(FEastern)$/;" v class:TestTimezoneConversions.test_fromutc.FauxUSTimeZone +got Lib/test/test_importlib/import_/test_path.py /^ got = self.machinery.PathFinder.find_spec('whatever', [path])$/;" v class:FinderTests.test_finder_with_find_spec.TestFinder +got Lib/test/test_iter.py /^ got = " - ".join(OhPhooey(f))$/;" v class:TestCase.test_unicode_join_endcase.OhPhooey +got_file_index Modules/posixmodule.c /^ int got_file_index;$/;" m struct:__anon480 file: +goto Lib/turtle.py /^ def goto(self, x, y=None):$/;" m class:TNavigator +goto_file_line Lib/idlelib/outwin.py /^ def goto_file_line(self, event=None):$/;" m class:OutputWindow +goto_line_event Lib/idlelib/editor.py /^ def goto_line_event(self, event):$/;" m class:EditorWindow +goto_source_line Lib/idlelib/debugger.py /^ def goto_source_line(self):$/;" m class:StackViewer +gotofileline Lib/idlelib/filelist.py /^ def gotofileline(self, filename, lineno=None):$/;" m class:FileList +gotoline Lib/idlelib/editor.py /^ def gotoline(self, lineno):$/;" m class:EditorWindow +gotonext Lib/email/_parseaddr.py /^ def gotonext(self):$/;" m class:AddrlistClass +grab_current Lib/tkinter/__init__.py /^ def grab_current(self):$/;" m class:Misc +grab_release Lib/tkinter/__init__.py /^ def grab_release(self):$/;" m class:Misc +grab_set Lib/idlelib/idle_test/test_textview.py /^ grab_set = Func()$/;" v class:VW +grab_set Lib/tkinter/__init__.py /^ def grab_set(self):$/;" m class:Misc +grab_set_global Lib/tkinter/__init__.py /^ def grab_set_global(self):$/;" m class:Misc +grab_status Lib/tkinter/__init__.py /^ def grab_status(self):$/;" m class:Misc +grade Lib/test/test_bisect.py /^ def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'):$/;" f function:TestDocExample.test_grades +grammar Lib/test/test_lib2to3/support.py /^grammar = pgen2_driver.load_grammar(grammar_path)$/;" v +grammar Misc/coverity_model.c /^typedef struct {} grammar;$/;" t typeref:struct:__anon279 file: +grammar Tools/peg_generator/pegen/grammar_parser.py /^ def grammar(self) -> Optional[Grammar]:$/;" m class:GeneratedParser +grammar_no_print_statement Lib/test/test_lib2to3/support.py /^grammar_no_print_statement = pgen2_driver.load_grammar(grammar_path)$/;" v +grammar_path Lib/test/test_lib2to3/support.py /^grammar_path = os.path.join(lib2to3_dir, "Grammar.txt")$/;" v +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestOrder.test_enum_has_extra_members.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestOrder.test_enum_has_extra_members_with_aliases.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestOrder.test_order_has_extra_members.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestOrder.test_order_has_extra_members_with_aliases.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestOrder.test_same_members_wrong_order.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestSpecial.test_duplicate_name_error.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestSpecial.test_no_duplicates.Color.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:TestInternals.test_auto_garbage_corrected_fail.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:TestInternals.test_auto_garbage_corrected_ok.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:TestInternals.test_auto_order.Color +green Lib/test/test_enum.py /^ green = ()$/;" v class:TestSpecial.test_inherited_new_from_enhanced_enum.Color +green Lib/test/test_enum.py /^ green = ()$/;" v class:TestSpecial.test_inherited_new_from_mixed_enum.Color +green Lib/test/test_enum.py /^ green = ()$/;" v class:TestSpecial.test_nonhash_value.ColorInAList +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestOrder.test_same_members.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestOrder.test_same_members_with_aliases.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestSpecial.test_extending.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestSpecial.test_extending2.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestSpecial.test_missing_override.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestSpecial.test_no_duplicates.Color +green Lib/test/test_enum.py /^ green = 2$/;" v class:TestSpecial.test_no_such_enum_member.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:OldTestFlag.test_auto_number.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:TestInternals.test_auto_name.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:TestInternals.test_auto_name_inherit.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:TestInternals.test_auto_number.Color +green Lib/test/test_enum.py /^ green = auto()$/;" v class:TestInternals.test_auto_with_aliases.Color +grene Lib/test/test_enum.py /^ grene = 2$/;" v class:TestSpecial.test_no_duplicates.Color.Color +grep Lib/idlelib/grep.py /^def grep(text, io=None, flist=None):$/;" f +grepValue Mac/BuildScript/build-installer.py /^def grepValue(fn, variable):$/;" f +grep_it Lib/idlelib/grep.py /^ def grep_it(self, prog, path):$/;" m class:GrepDialog +grep_it Lib/idlelib/idle_test/test_grep.py /^ grep_it = grep.GrepDialog.grep_it$/;" v class:Dummy_grep +grey Lib/cgitb.py /^def grey(text):$/;" f +grey Lib/pydoc.py /^ def grey(self, text): return '%s<\/span>' % text$/;" f +grid Lib/idlelib/sidebar.py /^ def grid(self):$/;" m class:BaseSideBar +grid Lib/idlelib/sidebar.py /^ def grid(self):$/;" m class:LineNumbers +grid Lib/idlelib/sidebar.py /^ def grid(self):$/;" m class:ShellSidebar +grid Lib/tkinter/__init__.py /^ grid = wm_grid$/;" v class:Wm +grid Lib/tkinter/tix.py /^ def grid(self, xsize=0, ysize=0):$/;" m class:Form +grid_anchor Lib/tkinter/__init__.py /^ def grid_anchor(self, anchor=None): # new in Tk 8.5$/;" m class:Misc +grid_bbox Lib/tkinter/__init__.py /^ def grid_bbox(self, column=None, row=None, col2=None, row2=None):$/;" m class:Misc +grid_columnconfigure Lib/tkinter/__init__.py /^ def grid_columnconfigure(self, index, cnf={}, **kw):$/;" m class:Misc +grid_configure Lib/tkinter/__init__.py /^ def grid_configure(self, cnf={}, **kw):$/;" m class:Grid +grid_forget Lib/tkinter/__init__.py /^ def grid_forget(self):$/;" m class:Grid +grid_info Lib/tkinter/__init__.py /^ def grid_info(self):$/;" m class:Grid +grid_location Lib/tkinter/__init__.py /^ def grid_location(self, x, y):$/;" m class:Misc +grid_propagate Lib/tkinter/__init__.py /^ def grid_propagate(self, flag=_noarg_):$/;" m class:Misc +grid_remove Lib/tkinter/__init__.py /^ def grid_remove(self):$/;" m class:Grid +grid_rowconfigure Lib/tkinter/__init__.py /^ def grid_rowconfigure(self, index, cnf={}, **kw):$/;" m class:Misc +grid_size Lib/tkinter/__init__.py /^ def grid_size(self):$/;" m class:Misc +grid_slaves Lib/tkinter/__init__.py /^ def grid_slaves(self, row=None, column=None):$/;" m class:Misc +group Lib/lib2to3/pgen2/tokenize.py /^def group(*choices): return '(' + '|'.join(choices) + ')'$/;" f +group Lib/nntplib.py /^ def group(self, name):$/;" m class:NNTP +group Lib/pathlib.py /^ def group(self):$/;" m class:Path +group Lib/tkinter/__init__.py /^ group = wm_group$/;" v class:Wm +group Lib/tokenize.py /^def group(*choices): return '(' + '|'.join(choices) + ')'$/;" f +group Modules/_decimal/tests/deccheck.py /^ group = parser.add_mutually_exclusive_group()$/;" v +group_by_category Tools/c-analyzer/c_parser/match.py /^def group_by_category(decls, categories, *, ignore_non_match=True):$/;" f +group_by_kind Tools/c-analyzer/c_parser/match.py /^def group_by_kind(items):$/;" f +group_by_kinds Tools/c-analyzer/c_parser/match.py /^def group_by_kinds(items):$/;" f +group_by_storage Tools/c-analyzer/c_analyzer/match.py /^def group_by_storage(decls, **kwargs):$/;" f +group_pattern_rule Parser/parser.c /^group_pattern_rule(Parser *p)$/;" f file: +group_pattern_type Parser/parser.c 165;" d file: +group_rule Parser/parser.c /^group_rule(Parser *p)$/;" f file: +group_to_variable_name Tools/clinic/clinic.py /^ def group_to_variable_name(group):$/;" m class:CLanguage +group_type Parser/parser.c 221;" d file: +groupby_dealloc Modules/itertoolsmodule.c /^groupby_dealloc(groupbyobject *gbo)$/;" f file: +groupby_methods Modules/itertoolsmodule.c /^static PyMethodDef groupby_methods[] = {$/;" v file: +groupby_next Modules/itertoolsmodule.c /^groupby_next(groupbyobject *gbo)$/;" f file: +groupby_reduce Modules/itertoolsmodule.c /^groupby_reduce(groupbyobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +groupby_setstate Modules/itertoolsmodule.c /^groupby_setstate(groupbyobject *lz, PyObject *state)$/;" f file: +groupby_slots Modules/itertoolsmodule.c /^static PyType_Slot groupby_slots[] = {$/;" v file: +groupby_spec Modules/itertoolsmodule.c /^static PyType_Spec groupby_spec = {$/;" v file: +groupby_step Modules/itertoolsmodule.c /^groupby_step(groupbyobject *gbo)$/;" f +groupby_traverse Modules/itertoolsmodule.c /^groupby_traverse(groupbyobject *gbo, visitproc visit, void *arg)$/;" f file: +groupby_type Modules/itertoolsmodule.c /^ PyTypeObject *groupby_type;$/;" m struct:__anon400 file: +groupbyobject Modules/itertoolsmodule.c /^} groupbyobject;$/;" t typeref:struct:__anon403 file: +groupindex Modules/_sre/sre.h /^ PyObject* groupindex; \/* dict *\/$/;" m struct:__anon454 +grouping Modules/_decimal/libmpdec/mpdecimal.h /^ const char *grouping; \/* grouping of digits *\/$/;" m struct:mpd_spec_t +grouping Objects/stringlib/localeutil.h /^ const char *grouping;$/;" m struct:__anon702 +grouping Python/formatter_unicode.c /^ const char *grouping;$/;" m struct:__anon675 file: +grouping_buffer Python/formatter_unicode.c /^ char *grouping_buffer;$/;" m struct:__anon675 file: +groups Lib/email/headerregistry.py /^ def groups(self):$/;" m class:AddressHeader +groups Lib/importlib/metadata/__init__.py /^ def groups(self):$/;" m class:EntryPoints +groups Lib/re/_parser.py /^ def groups(self):$/;" m class:State +groups Modules/_sre/sre.h /^ Py_ssize_t groups; \/* must be first! *\/$/;" m struct:__anon454 +groups Modules/_sre/sre.h /^ Py_ssize_t groups; \/* number of groups (start\/end marks) *\/$/;" m struct:__anon455 +growable_comment_array Parser/pegen.h /^} growable_comment_array;$/;" t typeref:struct:__anon655 +growable_comment_array_add Parser/pegen.c /^growable_comment_array_add(growable_comment_array *arr, int lineno, char *comment) {$/;" f file: +growable_comment_array_deallocate Parser/pegen.c /^growable_comment_array_deallocate(growable_comment_array *arr) {$/;" f file: +growable_comment_array_init Parser/pegen.c /^growable_comment_array_init(growable_comment_array *arr, size_t initial_size) {$/;" f file: +grp Lib/tarfile.py /^ grp = None$/;" v +grp Lib/test/test_grp.py /^grp = import_helper.import_module('grp')$/;" v +grp Lib/test/test_subprocess.py /^ grp = None$/;" v +grp_getgrall Modules/clinic/grpmodule.c.h /^grp_getgrall(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +grp_getgrall_impl Modules/grpmodule.c /^grp_getgrall_impl(PyObject *module)$/;" f file: +grp_getgrgid Modules/clinic/grpmodule.c.h /^grp_getgrgid(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +grp_getgrgid_impl Modules/grpmodule.c /^grp_getgrgid_impl(PyObject *module, PyObject *id)$/;" f file: +grp_getgrnam Modules/clinic/grpmodule.c.h /^grp_getgrnam(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +grp_getgrnam_impl Modules/grpmodule.c /^grp_getgrnam_impl(PyObject *module, PyObject *name)$/;" f file: +grp_methods Modules/grpmodule.c /^static PyMethodDef grp_methods[] = {$/;" v file: +grpmodule Modules/grpmodule.c /^static struct PyModuleDef grpmodule = {$/;" v typeref:struct:PyModuleDef file: +grpmodule Modules/grpmodule.c /^static struct PyModuleDef grpmodule;$/;" v typeref:struct:PyModuleDef file: +grpmodule_clear Modules/grpmodule.c /^static int grpmodule_clear(PyObject *m) {$/;" f file: +grpmodule_exec Modules/grpmodule.c /^grpmodule_exec(PyObject *module)$/;" f file: +grpmodule_free Modules/grpmodule.c /^static void grpmodule_free(void *m) {$/;" f file: +grpmodule_slots Modules/grpmodule.c /^static PyModuleDef_Slot grpmodule_slots[] = {$/;" v file: +grpmodule_traverse Modules/grpmodule.c /^static int grpmodule_traverse(PyObject *m, visitproc visit, void *arg) {$/;" f file: +grpmodulestate Modules/grpmodule.c /^} grpmodulestate;$/;" t typeref:struct:__anon484 file: +gt Lib/operator.py /^def gt(a, b):$/;" f +gt_bitwise_or_rule Parser/parser.c /^gt_bitwise_or_rule(Parser *p)$/;" f file: +gt_bitwise_or_type Parser/parser.c 203;" d file: +gte_bitwise_or_rule Parser/parser.c /^gte_bitwise_or_rule(Parser *p)$/;" f file: +gte_bitwise_or_type Parser/parser.c 202;" d file: +gth Lib/test/test_typing.py /^gth = get_type_hints$/;" v +guarantee_lineno_for_exits Python/flowgraph.c /^guarantee_lineno_for_exits(basicblock *entryblock, int firstlineno) {$/;" f file: +guard Include/internal/pycore_ast.h /^ expr_ty guard;$/;" m struct:_match_case +guard Include/internal/pycore_ast_state.h /^ PyObject *guard;$/;" m struct:ast_state +guard_rule Parser/parser.c /^guard_rule(Parser *p)$/;" f file: +guard_type Parser/parser.c 146;" d file: +guess_all_extensions Lib/mimetypes.py /^ def guess_all_extensions(self, type, strict=True):$/;" m class:MimeTypes +guess_all_extensions Lib/mimetypes.py /^def guess_all_extensions(type, strict=True):$/;" f +guess_extension Lib/mimetypes.py /^ def guess_extension(self, type, strict=True):$/;" m class:MimeTypes +guess_extension Lib/mimetypes.py /^def guess_extension(type, strict=True):$/;" f +guess_indent Lib/idlelib/editor.py /^ def guess_indent(self):$/;" m class:EditorWindow +guess_scheme Lib/wsgiref/util.py /^def guess_scheme(environ):$/;" f +guess_type Lib/http/server.py /^ def guess_type(self, path):$/;" m class:SimpleHTTPRequestHandler +guess_type Lib/mimetypes.py /^ def guess_type(self, url, strict=True):$/;" m class:MimeTypes +guess_type Lib/mimetypes.py /^def guess_type(url, strict=True):$/;" f +gui_adap_oid Lib/idlelib/debugger_r.py /^gui_adap_oid = "gui_adapter"$/;" v +gulp Lib/test/test_itertools.py /^ def gulp(iterable, keyp=None, func=list):$/;" f function:TestBasicOps.test_groupby +gzip Lib/test/test_fileinput.py /^ gzip = None$/;" v +gzip Lib/test/test_gzip.py /^gzip = import_helper.import_module('gzip')$/;" v +gzip Lib/test/test_tarfile.py /^ gzip = None$/;" v +gzip Lib/test/test_xmlrpc.py /^ gzip = None$/;" v +gzip Lib/xmlrpc/client.py /^ gzip = None #python can be built without zlib\/gzip support$/;" v +gzip_decode Lib/xmlrpc/client.py /^def gzip_decode(data, max_decode=20971520):$/;" f +gzip_encode Lib/xmlrpc/client.py /^def gzip_encode(data):$/;" f +gzipname Lib/test/test_tarfile.py /^gzipname = os.path.join(TEMPDIR, "testtar.tar.gz")$/;" v +gzopen Lib/tarfile.py /^ def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs):$/;" m class:TarFile +h Lib/test/pickletester.py /^ def h():$/;" f function:AbstractHookTests.test_pickler_hook +h Lib/test/test_descr.py /^ h = H()$/;" v class:.test_slots.H +h Lib/test/test_dynamic.py /^ def h():$/;" f function:TestTracing.test_after_specialization +h Lib/test/test_functools.py /^ def h(arg):$/;" f function:TestSingleDispatch.test_mro_conflicts +h Lib/test/test_heapq.py /^ class h(int):$/;" c function:TestErrorHandling.test_comparison_operator_modifiying_heap_two_heaps +h Lib/test/test_peepholer.py /^ def h():$/;" f function:TestTranforms.test_global_as_constant +h Lib/test/test_scope.py /^ def h():$/;" f function:ScopeTests.testMixedFreevarsAndCellvars.f.g +h Lib/test/test_scope.py /^ def h():$/;" f function:ScopeTests.testNestedNonLocal.f.g +h Lib/test/test_scope.py /^ def h(z):$/;" f function:ScopeTests.testLocalsFunction.f.g +h Lib/test/test_scope.py /^ def h(z):$/;" f function:ScopeTests.testNearestEnclosingScope.f.g +h Lib/test/test_sys_setprofile.py /^ def h():$/;" f function:ProfileHookTestCase.test_distant_exception +h Lib/test/test_sys_setprofile.py /^ def h():$/;" f function:ProfileSimulatorTestCase.test_distant_exception +h Lib/test/test_traceback.py /^ def h(count=10):$/;" f function:TracebackFormatTests._check_recursive_traceback_display +h Lib/test/test_typing.py /^ def h(*args: Unpack[Tuple[int, bool, Unpack[Ts], float, str]]): pass$/;" f function:TypeVarTupleTests.test_concatenation_in_variadic_args_annotations_are_correct +h Lib/test/test_typing.py /^ def h(x: collections.abc.Callable[P, int]): ...$/;" f function:GetTypeHintTests.test_get_type_hints_collections_abc_callable +h Lib/turtledemo/chaos.py /^def h(x):$/;" f +h Modules/_blake2/impl/blake2.h /^ uint32_t h[8];$/;" m struct:__blake2s_state +h Modules/_blake2/impl/blake2.h /^ uint64_t h[8];$/;" m struct:__blake2b_state +h Modules/_ctypes/_ctypes_test.c /^ int a, b, c, d, e, f, g, h;$/;" m struct:__anon518 file: +h Modules/_ctypes/callproc.c /^ short h;$/;" m union:result file: +h Modules/_ctypes/ctypes.h /^ short h;$/;" m union:tagPyCArgObject::__anon496 +h PC/_msi.c /^ MSIHANDLE h;$/;" m struct:msiobj file: +h1 Modules/_decimal/tests/bignum.py /^h1 = xhash(coeff, -849999999)$/;" v +h2 Modules/_decimal/tests/bignum.py /^h2 = hash(d)$/;" v +hModule PC/pyshellext.cpp /^static HINSTANCE hModule;$/;" v file: +hName Lib/test/time_hashlib.py /^hName = sys.argv[1]$/;" v +h_class Lib/test/ann_module.py /^h_class = new_class('H', (C,))$/;" v +h_count Include/internal/pycore_hamt.h /^ Py_ssize_t h_count;$/;" m struct:__anon11 +h_get Modules/_ctypes/cfield.c /^h_get(void *ptr, Py_ssize_t size)$/;" f file: +h_get_sw Modules/_ctypes/cfield.c /^h_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +h_getitem Modules/arraymodule.c /^h_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +h_offset Include/internal/pycore_compile.h /^ int h_offset;$/;" m struct:__anon151 +h_preserve_lasti Include/internal/pycore_compile.h /^ int h_preserve_lasti;$/;" m struct:__anon151 +h_root Include/internal/pycore_hamt.h /^ PyHamtNode *h_root;$/;" m struct:__anon11 +h_set Modules/_ctypes/cfield.c /^h_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +h_set_sw Modules/_ctypes/cfield.c /^h_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +h_setitem Modules/arraymodule.c /^h_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +h_startdepth Include/internal/pycore_compile.h /^ int h_startdepth;$/;" m struct:__anon151 +h_weakreflist Include/internal/pycore_hamt.h /^ PyObject *h_weakreflist;$/;" m struct:__anon11 +hackcheck Objects/typeobject.c /^hackcheck(PyObject *self, setattrofunc func, const char *what)$/;" f file: +haha Lib/test/sgml_input.html /^function haha(z1) {$/;" f +ham Lib/test/test_builtin.py /^ def ham(self):$/;" m class:TestType.test_new_type.B +ham Lib/test/test_inspect.py /^ def ham(self):$/;" m class:TestClassesAndFunctions.test_classify_DynamicClassAttribute.VA +ham Lib/test/test_inspect.py /^ ham = partialmethod(test)$/;" v class:TestSignatureObject.test_signature_on_partialmethod.Spam +ham Lib/test/test_inspect.py /^ ham = partialmethod(test, c=1)$/;" v class:TestSignatureObject.test_signature_on_partialmethod.Spam +ham Lib/test/test_inspect.py /^ def ham(x, y):$/;" f function:TestClassesAndFunctions.test_argspec_api_ignores_wrapped +ham Lib/test/test_pydoc.py /^ def ham(self):$/;" m class:PydocWithMetaClasses.test_DynamicClassAttribute.DA +hamt Lib/test/test_context.py /^ hamt = None$/;" v +hamt_alloc Python/hamt.c /^hamt_alloc(void)$/;" f file: +hamt_baseiter_new Python/hamt.c /^hamt_baseiter_new(PyTypeObject *type, binaryfunc yield, PyHamtObject *o)$/;" f file: +hamt_baseiter_tp_clear Python/hamt.c /^hamt_baseiter_tp_clear(PyHamtIterator *it)$/;" f file: +hamt_baseiter_tp_dealloc Python/hamt.c /^hamt_baseiter_tp_dealloc(PyHamtIterator *it)$/;" f file: +hamt_baseiter_tp_iternext Python/hamt.c /^hamt_baseiter_tp_iternext(PyHamtIterator *it)$/;" f file: +hamt_baseiter_tp_len Python/hamt.c /^hamt_baseiter_tp_len(PyHamtIterator *it)$/;" f file: +hamt_baseiter_tp_traverse Python/hamt.c /^hamt_baseiter_tp_traverse(PyHamtIterator *it, visitproc visit, void *arg)$/;" f file: +hamt_bitindex Python/hamt.c /^hamt_bitindex(uint32_t bitmap, uint32_t bit)$/;" f file: +hamt_bitmap_node_empty Include/internal/pycore_global_objects.h /^ PyHamtNode_Bitmap hamt_bitmap_node_empty;$/;" m struct:_Py_static_objects::__anon147 +hamt_bitpos Python/hamt.c /^hamt_bitpos(int32_t hash, uint32_t shift)$/;" f file: +hamt_dump Python/hamt.c /^hamt_dump(PyHamtObject *self)$/;" f file: +hamt_empty Include/internal/pycore_global_objects.h /^ PyHamtObject hamt_empty;$/;" m struct:_Py_interp_static_objects::__anon149 +hamt_find Python/hamt.c /^hamt_find(PyHamtObject *o, PyObject *key, PyObject **val)$/;" f file: +hamt_find_t Python/hamt.c /^typedef enum {F_ERROR, F_NOT_FOUND, F_FOUND} hamt_find_t;$/;" t typeref:enum:__anon677 file: +hamt_hash Python/hamt.c /^hamt_hash(PyObject *o)$/;" f file: +hamt_iter_t Python/hamt.c /^typedef enum {I_ITEM, I_END} hamt_iter_t;$/;" t typeref:enum:__anon679 file: +hamt_iter_yield_items Python/hamt.c /^hamt_iter_yield_items(PyObject *key, PyObject *val)$/;" f file: +hamt_iter_yield_keys Python/hamt.c /^hamt_iter_yield_keys(PyObject *key, PyObject *val)$/;" f file: +hamt_iter_yield_values Python/hamt.c /^hamt_iter_yield_values(PyObject *key, PyObject *val)$/;" f file: +hamt_iterator_array_next Python/hamt.c /^hamt_iterator_array_next(PyHamtIteratorState *iter,$/;" f file: +hamt_iterator_bitmap_next Python/hamt.c /^hamt_iterator_bitmap_next(PyHamtIteratorState *iter,$/;" f file: +hamt_iterator_collision_next Python/hamt.c /^hamt_iterator_collision_next(PyHamtIteratorState *iter,$/;" f file: +hamt_iterator_init Python/hamt.c /^hamt_iterator_init(PyHamtIteratorState *iter, PyHamtNode *root)$/;" f file: +hamt_iterator_next Python/hamt.c /^hamt_iterator_next(PyHamtIteratorState *iter, PyObject **key, PyObject **val)$/;" f file: +hamt_mask Python/hamt.c /^hamt_mask(int32_t hash, uint32_t shift)$/;" f file: +hamt_node_array_assoc Python/hamt.c /^hamt_node_array_assoc(PyHamtNode_Array *self,$/;" f file: +hamt_node_array_clone Python/hamt.c /^hamt_node_array_clone(PyHamtNode_Array *node)$/;" f file: +hamt_node_array_dealloc Python/hamt.c /^hamt_node_array_dealloc(PyHamtNode_Array *self)$/;" f file: +hamt_node_array_dump Python/hamt.c /^hamt_node_array_dump(PyHamtNode_Array *node,$/;" f file: +hamt_node_array_find Python/hamt.c /^hamt_node_array_find(PyHamtNode_Array *self,$/;" f file: +hamt_node_array_new Python/hamt.c /^hamt_node_array_new(Py_ssize_t count)$/;" f file: +hamt_node_array_traverse Python/hamt.c /^hamt_node_array_traverse(PyHamtNode_Array *self,$/;" f file: +hamt_node_array_without Python/hamt.c /^hamt_node_array_without(PyHamtNode_Array *self,$/;" f file: +hamt_node_assoc Python/hamt.c /^hamt_node_assoc(PyHamtNode *node,$/;" f file: +hamt_node_bitmap_assoc Python/hamt.c /^hamt_node_bitmap_assoc(PyHamtNode_Bitmap *self,$/;" f file: +hamt_node_bitmap_clone Python/hamt.c /^hamt_node_bitmap_clone(PyHamtNode_Bitmap *node)$/;" f file: +hamt_node_bitmap_clone_without Python/hamt.c /^hamt_node_bitmap_clone_without(PyHamtNode_Bitmap *o, uint32_t bit)$/;" f file: +hamt_node_bitmap_count Python/hamt.c /^hamt_node_bitmap_count(PyHamtNode_Bitmap *node)$/;" f file: +hamt_node_bitmap_dealloc Python/hamt.c /^hamt_node_bitmap_dealloc(PyHamtNode_Bitmap *self)$/;" f file: +hamt_node_bitmap_dump Python/hamt.c /^hamt_node_bitmap_dump(PyHamtNode_Bitmap *node,$/;" f file: +hamt_node_bitmap_find Python/hamt.c /^hamt_node_bitmap_find(PyHamtNode_Bitmap *self,$/;" f file: +hamt_node_bitmap_new Python/hamt.c /^hamt_node_bitmap_new(Py_ssize_t size)$/;" f file: +hamt_node_bitmap_traverse Python/hamt.c /^hamt_node_bitmap_traverse(PyHamtNode_Bitmap *self, visitproc visit, void *arg)$/;" f file: +hamt_node_bitmap_without Python/hamt.c /^hamt_node_bitmap_without(PyHamtNode_Bitmap *self,$/;" f file: +hamt_node_collision_assoc Python/hamt.c /^hamt_node_collision_assoc(PyHamtNode_Collision *self,$/;" f file: +hamt_node_collision_count Python/hamt.c /^hamt_node_collision_count(PyHamtNode_Collision *node)$/;" f file: +hamt_node_collision_dealloc Python/hamt.c /^hamt_node_collision_dealloc(PyHamtNode_Collision *self)$/;" f file: +hamt_node_collision_dump Python/hamt.c /^hamt_node_collision_dump(PyHamtNode_Collision *node,$/;" f file: +hamt_node_collision_find Python/hamt.c /^hamt_node_collision_find(PyHamtNode_Collision *self,$/;" f file: +hamt_node_collision_find_index Python/hamt.c /^hamt_node_collision_find_index(PyHamtNode_Collision *self, PyObject *key,$/;" f file: +hamt_node_collision_new Python/hamt.c /^hamt_node_collision_new(int32_t hash, Py_ssize_t size)$/;" f file: +hamt_node_collision_traverse Python/hamt.c /^hamt_node_collision_traverse(PyHamtNode_Collision *self,$/;" f file: +hamt_node_collision_without Python/hamt.c /^hamt_node_collision_without(PyHamtNode_Collision *self,$/;" f file: +hamt_node_dump Python/hamt.c /^hamt_node_dump(PyHamtNode *node,$/;" f file: +hamt_node_find Python/hamt.c /^hamt_node_find(PyHamtNode *node,$/;" f file: +hamt_node_new_bitmap_or_collision Python/hamt.c /^hamt_node_new_bitmap_or_collision(uint32_t shift,$/;" f file: +hamt_node_without Python/hamt.c /^hamt_node_without(PyHamtNode *node,$/;" f file: +hamt_py_delete Python/hamt.c /^hamt_py_delete(PyHamtObject *self, PyObject *key)$/;" f file: +hamt_py_dump Python/hamt.c /^hamt_py_dump(PyHamtObject *self, PyObject *Py_UNUSED(args))$/;" f file: +hamt_py_get Python/hamt.c /^hamt_py_get(PyHamtObject *self, PyObject *args)$/;" f file: +hamt_py_items Python/hamt.c /^hamt_py_items(PyHamtObject *self, PyObject *args)$/;" f file: +hamt_py_keys Python/hamt.c /^hamt_py_keys(PyHamtObject *self, PyObject *Py_UNUSED(args))$/;" f file: +hamt_py_set Python/hamt.c /^hamt_py_set(PyHamtObject *self, PyObject *args)$/;" f file: +hamt_py_values Python/hamt.c /^hamt_py_values(PyHamtObject *self, PyObject *args)$/;" f file: +hamt_tp_clear Python/hamt.c /^hamt_tp_clear(PyHamtObject *self)$/;" f file: +hamt_tp_contains Python/hamt.c /^hamt_tp_contains(PyHamtObject *self, PyObject *key)$/;" f file: +hamt_tp_dealloc Python/hamt.c /^hamt_tp_dealloc(PyHamtObject *self)$/;" f file: +hamt_tp_iter Python/hamt.c /^hamt_tp_iter(PyHamtObject *self)$/;" f file: +hamt_tp_len Python/hamt.c /^hamt_tp_len(PyHamtObject *self)$/;" f file: +hamt_tp_new Python/hamt.c /^hamt_tp_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +hamt_tp_richcompare Python/hamt.c /^hamt_tp_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +hamt_tp_subscript Python/hamt.c /^hamt_tp_subscript(PyHamtObject *self, PyObject *key)$/;" f file: +hamt_tp_traverse Python/hamt.c /^hamt_tp_traverse(PyHamtObject *self, visitproc visit, void *arg)$/;" f file: +hamt_without_t Python/hamt.c /^typedef enum {W_ERROR, W_NOT_FOUND, W_EMPTY, W_NEWNODE} hamt_without_t;$/;" t typeref:enum:__anon678 file: +hand Lib/turtledemo/clock.py /^def hand(laenge, spitze):$/;" f +handle Lib/_pydecimal.py /^ def handle(self, context, *args):$/;" m class:ConversionSyntax +handle Lib/_pydecimal.py /^ def handle(self, context, *args):$/;" m class:DecimalException +handle Lib/_pydecimal.py /^ def handle(self, context, *args):$/;" m class:DivisionImpossible +handle Lib/_pydecimal.py /^ def handle(self, context, *args):$/;" m class:DivisionUndefined +handle Lib/_pydecimal.py /^ def handle(self, context, *args):$/;" m class:InvalidContext +handle Lib/_pydecimal.py /^ def handle(self, context, *args):$/;" m class:InvalidOperation +handle Lib/_pydecimal.py /^ def handle(self, context, sign, *args):$/;" m class:DivisionByZero +handle Lib/_pydecimal.py /^ def handle(self, context, sign, *args):$/;" m class:Overflow +handle Lib/asyncio/windows_utils.py /^ def handle(self):$/;" m class:PipeHandle +handle Lib/cgitb.py /^ def handle(self, info=None):$/;" m class:Hook +handle Lib/http/server.py /^ def handle(self):$/;" m class:BaseHTTPRequestHandler +handle Lib/idlelib/rpc.py /^ def handle(self):$/;" m class:RPCHandler +handle Lib/idlelib/run.py /^ def handle(self):$/;" m class:MyHandler +handle Lib/logging/__init__.py /^ def handle(self, record):$/;" m class:Handler +handle Lib/logging/__init__.py /^ def handle(self, record):$/;" m class:Logger +handle Lib/logging/__init__.py /^ def handle(self, record):$/;" m class:NullHandler +handle Lib/logging/config.py /^ def handle(self):$/;" m class:listen.ConfigStreamHandler +handle Lib/logging/handlers.py /^ def handle(self, record):$/;" m class:QueueListener +handle Lib/socketserver.py /^ def handle(self):$/;" m class:BaseRequestHandler +handle Lib/test/test_codeccallbacks.py /^ def handle(exc):$/;" f function:CodecCallbackTest.test_encode_bytes_replacement +handle Lib/test/test_codeccallbacks.py /^ def handle(exc):$/;" f function:CodecCallbackTest.test_encode_nonascii_replacement +handle Lib/test/test_codeccallbacks.py /^ def handle(exc):$/;" f function:CodecCallbackTest.test_encode_odd_bytes_replacement +handle Lib/test/test_codeccallbacks.py /^ def handle(self, exc):$/;" m class:PosReturn +handle Lib/test/test_codeccallbacks.py /^ def handle(self, exc):$/;" m class:RepeatedPosReturn +handle Lib/test/test_imaplib.py /^ def handle(self):$/;" m class:NewIMAPTestsMixin.test_EOF_without_complete_welcome_message.EOFHandler +handle Lib/test/test_imaplib.py /^ def handle(self):$/;" m class:NewIMAPTestsMixin.test_imaplib_timeout_functionality_test.TimeoutHandler +handle Lib/test/test_imaplib.py /^ def handle(self):$/;" m class:NewIMAPTestsMixin.test_linetoolong.TooLongHandler +handle Lib/test/test_imaplib.py /^ def handle(self):$/;" m class:ThreadedNetworkedTests.test_bracket_flags.BracketFlagHandler +handle Lib/test/test_imaplib.py /^ def handle(self):$/;" m class:ThreadedNetworkedTests.test_issue5949.EOFHandler +handle Lib/test/test_imaplib.py /^ def handle(self):$/;" m class:ThreadedNetworkedTests.test_linetoolong.TooLongHandler +handle Lib/test/test_imaplib.py /^ def handle(self):$/;" m class:SimpleIMAPHandler +handle Lib/test/test_logging.py /^ def handle(self):$/;" m class:TestTCPServer.__init__.DelegatingTCPRequestHandler +handle Lib/test/test_logging.py /^ def handle(self):$/;" m class:TestUDPServer.__init__.DelegatingUDPRequestHandler +handle Lib/test/test_logging.py /^ def handle(self, msg):$/;" m class:MemoryHandlerTest.test_race_between_set_target_and_flush.MockRaceConditionHandler +handle Lib/test/test_logging.py /^ def handle(self, record):$/;" m class:RecordingHandler +handle Lib/test/test_minidom.py /^ def handle(self, operation, key, data, src, dst):$/;" m class:MinidomTest.check_clone_node_entity.Handler +handle Lib/test/test_minidom.py /^ def handle(self, operation, key, data, src, dst):$/;" m class:MinidomTest.UserDataHandler +handle Lib/test/test_socketserver.py /^ def handle(self):$/;" m class:SocketServerTest.make_server.MyHandler +handle Lib/test/test_socketserver.py /^ def handle(self):$/;" m class:SocketWriterTest.test_basics.Handler +handle Lib/test/test_socketserver.py /^ def handle(self):$/;" m class:SocketWriterTest.test_write.Handler +handle Lib/test/test_socketserver.py /^ def handle(self):$/;" m class:BadHandler +handle Lib/test/test_urllib2.py /^ def handle(self, fn_name, action, *args, **kwds):$/;" m class:MockHandler +handle Lib/test/test_xml_etree.py /^ def handle(*args):$/;" f function:TreeBuilderTest.test_builder_lookup_errors.RaisingBuilder.__getattr__ +handle Lib/test/test_xmlrpc.py /^ def handle(self):$/;" m class:BaseKeepaliveServerTestCase.RequestHandler +handle Lib/unittest/case.py /^ def handle(self, name, args, kwargs):$/;" m class:_AssertRaisesBaseContext +handle Lib/wsgiref/simple_server.py /^ def handle(self):$/;" m class:WSGIRequestHandler +handle Modules/_multiprocessing/semaphore.c /^ SEM_HANDLE handle;$/;" m struct:__anon470 file: +handle Modules/_winapi.c /^ HANDLE handle;$/;" m struct:__anon535 file: +handle Modules/overlapped.c /^ HANDLE handle;$/;" m struct:__anon567 file: +handle Modules/posixmodule.c /^ HANDLE handle;$/;" m struct:__anon481 file: +handleError Lib/logging/__init__.py /^ def handleError(self, record):$/;" m class:Handler +handleError Lib/logging/handlers.py /^ def handleError(self, record):$/;" m class:SocketHandler +handleError Lib/test/test_logging.py /^ def handleError(self, record):$/;" m class:TestStreamHandler +handlePoint Doc/includes/minidom-example.py /^def handlePoint(point):$/;" f +handlePoints Doc/includes/minidom-example.py /^def handlePoints(points):$/;" f +handleSlide Doc/includes/minidom-example.py /^def handleSlide(slide):$/;" f +handleSlideTitle Doc/includes/minidom-example.py /^def handleSlideTitle(title):$/;" f +handleSlides Doc/includes/minidom-example.py /^def handleSlides(slides):$/;" f +handleSlideshow Doc/includes/minidom-example.py /^def handleSlideshow(slideshow):$/;" f +handleSlideshowTitle Doc/includes/minidom-example.py /^def handleSlideshowTitle(title):$/;" f +handleToc Doc/includes/minidom-example.py /^def handleToc(slides):$/;" f +handleUnknownEncoding Modules/expat/xmlparse.c /^handleUnknownEncoding(XML_Parser parser, const XML_Char *encodingName) {$/;" f file: +handle_ARTICLE Lib/test/test_nntplib.py /^ def handle_ARTICLE(self, message_spec=None):$/;" m class:NNTPv1Handler +handle_AUTHINFO Lib/test/test_nntplib.py /^ def handle_AUTHINFO(self, *args):$/;" m class:MockSocketTests.test_login_aborted.Handler +handle_AUTHINFO Lib/test/test_nntplib.py /^ def handle_AUTHINFO(self, cred_type, data):$/;" m class:NNTPv1Handler +handle_BODY Lib/test/test_nntplib.py /^ def handle_BODY(self, message_spec=None):$/;" m class:NNTPv1Handler +handle_CAPABILITIES Lib/test/test_nntplib.py /^ def handle_CAPABILITIES(self):$/;" m class:MockSocketTests.test_bad_capabilities.Handler +handle_CAPABILITIES Lib/test/test_nntplib.py /^ def handle_CAPABILITIES(self):$/;" m class:CapsAfterLoginNNTPv2Handler +handle_CAPABILITIES Lib/test/test_nntplib.py /^ def handle_CAPABILITIES(self):$/;" m class:ModeSwitchingNNTPv2Handler +handle_CAPABILITIES Lib/test/test_nntplib.py /^ def handle_CAPABILITIES(self):$/;" m class:NNTPv2Handler +handle_DATE Lib/test/test_nntplib.py /^ def handle_DATE(self):$/;" m class:NNTPv1Handler +handle_EOF Lib/idlelib/pyshell.py /^ def handle_EOF(self):$/;" m class:MyRPCClient +handle_EOF Lib/idlelib/rpc.py /^ def handle_EOF(self):$/;" m class:SocketIO +handle_GROUP Lib/test/test_nntplib.py /^ def handle_GROUP(self, group):$/;" m class:NNTPv1Handler +handle_HEAD Lib/test/test_nntplib.py /^ def handle_HEAD(self, message_spec=None):$/;" m class:NNTPv1Handler +handle_HELP Lib/test/test_nntplib.py /^ def handle_HELP(self):$/;" m class:NNTPv1Handler +handle_IHAVE Lib/test/test_nntplib.py /^ def handle_IHAVE(self, message_id, *, body=None):$/;" m class:NNTPv1Handler +handle_LAST Lib/test/test_nntplib.py /^ def handle_LAST(self):$/;" m class:NNTPv1Handler +handle_LIST Lib/test/test_nntplib.py /^ def handle_LIST(self, action=None, param=None):$/;" m class:NNTPv1Handler +handle_MODE Lib/test/test_nntplib.py /^ def handle_MODE(self, _):$/;" m class:NNTPv2Handler +handle_MODE Lib/test/test_nntplib.py /^ def handle_MODE(self, what):$/;" m class:ModeSwitchingNNTPv2Handler +handle_NEWNEWS Lib/test/test_nntplib.py /^ def handle_NEWNEWS(self, group, date_str, time_str):$/;" m class:NNTPv1Handler +handle_NEXT Lib/test/test_nntplib.py /^ def handle_NEXT(self):$/;" m class:NNTPv1Handler +handle_OVER Lib/test/test_nntplib.py /^ def handle_OVER(self, message_spec=None):$/;" m class:NNTPv2Handler +handle_POST Lib/test/test_nntplib.py /^ def handle_POST(self, *, body=None):$/;" m class:NNTPv1Handler +handle_QUIT Lib/test/test_nntplib.py /^ def handle_QUIT(self):$/;" m class:NNTPv1Handler +handle_STAT Lib/test/test_nntplib.py /^ def handle_STAT(self, message_spec=None):$/;" m class:NNTPv1Handler +handle_XOVER Lib/test/test_nntplib.py /^ def handle_XOVER(self, message_spec):$/;" m class:NNTPv1Handler +handle_accept Lib/test/support/asyncore.py /^ def handle_accept(self):$/;" m class:dispatcher +handle_accepted Lib/test/smtpd.py /^ def handle_accepted(self, conn, addr):$/;" m class:SMTPServer +handle_accepted Lib/test/support/asyncore.py /^ def handle_accepted(self, sock, addr):$/;" m class:dispatcher +handle_accepted Lib/test/test_ftplib.py /^ def handle_accepted(self, conn, addr):$/;" m class:DummyFTPServer +handle_accepted Lib/test/test_poplib.py /^ def handle_accepted(self, conn, addr):$/;" m class:DummyPOP3Server +handle_accepted Lib/test/test_smtplib.py /^ def handle_accepted(self, conn, addr):$/;" m class:SimSMTPServer +handle_accepted Lib/test/test_smtplib.py /^ def handle_accepted(self, conn, addr):$/;" m class:SimSMTPUTF8Server +handle_accepted Lib/test/test_ssl.py /^ def handle_accepted(self, sock_obj, addr):$/;" m class:AsyncoreEchoServer.EchoServer +handle_after Tools/c-analyzer/c_analyzer/__main__.py /^ def handle_after():$/;" f function:_get_check_handlers +handle_alt_loop Tools/peg_generator/pegen/c_generator.py /^ def handle_alt_loop(self, node: Alt, is_gather: bool, rulename: Optional[str]) -> None:$/;" m class:CParserGenerator +handle_alt_normal Tools/peg_generator/pegen/c_generator.py /^ def handle_alt_normal(self, node: Alt, is_gather: bool, rulename: Optional[str]) -> None:$/;" m class:CParserGenerator +handle_begin_element Lib/plistlib.py /^ def handle_begin_element(self, element, attrs):$/;" m class:_PlistParser +handle_callback Objects/weakrefobject.c /^handle_callback(PyWeakReference *ref, PyObject *callback)$/;" f file: +handle_capital_sigma Objects/unicodeobject.c /^handle_capital_sigma(int kind, const void *data, Py_ssize_t length, Py_ssize_t i)$/;" f file: +handle_channel_error Modules/_xxinterpchannelsmodule.c /^handle_channel_error(int err, PyObject *mod, int64_t cid)$/;" f file: +handle_charref Lib/html/parser.py /^ def handle_charref(self, name):$/;" m class:HTMLParser +handle_charref Lib/test/test_htmlparser.py /^ def handle_charref(self, data):$/;" m class:EventCollector +handle_charref Lib/test/test_htmlparser.py /^ def handle_charref(self, data):$/;" m class:EventCollectorCharrefs +handle_client Lib/test/test_asyncio/test_ssl.py /^ async def handle_client(reader, writer):$/;" f function:TestSSL.test_create_server_ssl_1 +handle_client Lib/test/test_asyncio/test_ssl.py /^ async def handle_client(reader, writer):$/;" f function:TestSSL.test_create_server_ssl_over_ssl +handle_client Lib/test/test_asyncio/test_streams.py /^ async def handle_client(self, client_reader, client_writer):$/;" m class:StreamTests.test_start_server.MyServer +handle_client Lib/test/test_asyncio/test_streams.py /^ async def handle_client(self, client_reader, client_writer):$/;" m class:StreamTests.test_start_tls.MyServer +handle_client Lib/test/test_asyncio/test_streams.py /^ async def handle_client(self, client_reader, client_writer):$/;" m class:StreamTests.test_start_unix_server.MyServer +handle_client_callback Lib/test/test_asyncio/test_streams.py /^ def handle_client_callback(self, client_reader, client_writer):$/;" m class:StreamTests.test_start_server.MyServer +handle_client_callback Lib/test/test_asyncio/test_streams.py /^ def handle_client_callback(self, client_reader, client_writer):$/;" m class:StreamTests.test_start_unix_server.MyServer +handle_close Lib/test/support/asynchat.py /^ def handle_close(self):$/;" m class:async_chat +handle_close Lib/test/support/asyncore.py /^ def handle_close(self):$/;" m class:dispatcher +handle_close Lib/test/test_ftplib.py /^ def handle_close(self):$/;" m class:DummyDTPHandler +handle_close Lib/test/test_ssl.py /^ def handle_close(self):$/;" m class:AsyncoreEchoServer.EchoServer.ConnectionHandler +handle_close Modules/_elementtree.c /^ PyObject *handle_close;$/;" m struct:__anon386 file: +handle_code_object_event Modules/_testcapi/watchers.c /^handle_code_object_event(int which_watcher, PyCodeEvent event, PyCodeObject *co) {$/;" f file: +handle_command_def Lib/pdb.py /^ def handle_command_def(self, line):$/;" m class:Pdb +handle_comment Lib/html/parser.py /^ def handle_comment(self, data):$/;" m class:HTMLParser +handle_comment Lib/test/test_htmlparser.py /^ def handle_comment(self, data):$/;" m class:EventCollector +handle_comment Modules/_elementtree.c /^ PyObject *handle_comment;$/;" m struct:__anon386 file: +handle_connect Lib/test/support/asyncore.py /^ def handle_connect(self):$/;" m class:dispatcher +handle_connect Lib/test/test_ftplib.py /^ def handle_connect(self):$/;" m class:DummyFTPServer +handle_connect Lib/test/test_poplib.py /^ def handle_connect(self):$/;" m class:DummyPOP3Server +handle_connect_event Lib/test/support/asyncore.py /^ def handle_connect_event(self):$/;" m class:dispatcher +handle_data Lib/html/parser.py /^ def handle_data(self, data):$/;" m class:HTMLParser +handle_data Lib/idlelib/help.py /^ def handle_data(self, data):$/;" m class:HelpParser +handle_data Lib/plistlib.py /^ def handle_data(self, data):$/;" m class:_PlistParser +handle_data Lib/test/test_htmlparser.py /^ def handle_data(self, data):$/;" m class:EventCollector +handle_data Modules/_elementtree.c /^ PyObject *handle_data;$/;" m struct:__anon386 file: +handle_datagram Lib/test/test_logging.py /^ def handle_datagram(self, request):$/;" m class:DatagramHandlerTest +handle_datagram Lib/test/test_logging.py /^ def handle_datagram(self, request):$/;" m class:SysLogHandlerTest +handle_decl Lib/html/parser.py /^ def handle_decl(self, decl):$/;" m class:HTMLParser +handle_decl Lib/test/test_htmlparser.py /^ def handle_decl(self, data):$/;" m class:EventCollector +handle_defect Lib/email/_policybase.py /^ def handle_defect(self, obj, defect):$/;" m class:Policy +handle_doctype Modules/_elementtree.c /^ PyObject *handle_doctype;$/;" m struct:__anon386 file: +handle_end Modules/_elementtree.c /^ PyObject *handle_end;$/;" m struct:__anon386 file: +handle_end_element Lib/plistlib.py /^ def handle_end_element(self, element):$/;" m class:_PlistParser +handle_end_ns Modules/_elementtree.c /^ PyObject *handle_end_ns;$/;" m struct:__anon386 file: +handle_endtag Lib/html/parser.py /^ def handle_endtag(self, tag):$/;" m class:HTMLParser +handle_endtag Lib/idlelib/help.py /^ def handle_endtag(self, tag):$/;" m class:HelpParser +handle_endtag Lib/test/test_htmlparser.py /^ def handle_endtag(self, tag):$/;" m class:EventCollector +handle_entity_decl Lib/plistlib.py /^ def handle_entity_decl(self, entity_name, is_parameter_entity, value, base, system_id, public_id, notation_name):$/;" m class:_PlistParser +handle_entityref Lib/html/parser.py /^ def handle_entityref(self, name):$/;" m class:HTMLParser +handle_entityref Lib/test/test_htmlparser.py /^ def handle_entityref(self, data):$/;" m class:EventCollector +handle_entityref Lib/test/test_htmlparser.py /^ def handle_entityref(self, data):$/;" m class:EventCollectorCharrefs +handle_error Lib/idlelib/rpc.py /^ def handle_error(self, request, client_address):$/;" m class:RPCServer +handle_error Lib/idlelib/run.py /^ def handle_error(self, request, client_address):$/;" m class:MyRPCServer +handle_error Lib/socketserver.py /^ def handle_error(self, request, client_address):$/;" m class:BaseServer +handle_error Lib/test/support/asyncore.py /^ def handle_error(self):$/;" m class:dispatcher +handle_error Lib/test/test_asyncio/utils.py /^ def handle_error(self, request, client_address):$/;" m class:_run_test_server.SilentUnixWSGIServer +handle_error Lib/test/test_asyncio/utils.py /^ def handle_error(self, request, client_address):$/;" m class:SilentWSGIServer +handle_error Lib/test/test_ftplib.py /^ def handle_error(self):$/;" m class:.SSLConnection +handle_error Lib/test/test_ftplib.py /^ def handle_error(self):$/;" m class:DummyDTPHandler +handle_error Lib/test/test_ftplib.py /^ def handle_error(self):$/;" m class:DummyFTPHandler +handle_error Lib/test/test_ftplib.py /^ def handle_error(self):$/;" m class:DummyFTPServer +handle_error Lib/test/test_imaplib.py /^ def handle_error(self, request, client_address):$/;" m class:NewIMAPTestsMixin._setup.TestTCPServer +handle_error Lib/test/test_imaplib.py /^ def handle_error(self, request, client_address):$/;" m class:ThreadedNetworkedTests.make_server.MyServer +handle_error Lib/test/test_poplib.py /^ def handle_error(self):$/;" m class:DummyPOP3Handler +handle_error Lib/test/test_poplib.py /^ def handle_error(self):$/;" m class:DummyPOP3Server +handle_error Lib/test/test_smtplib.py /^ def handle_error(self):$/;" m class:SimSMTPChannel +handle_error Lib/test/test_smtplib.py /^ def handle_error(self):$/;" m class:SimSMTPServer +handle_error Lib/test/test_socketserver.py /^ def handle_error(self, request, client_address):$/;" m class:SocketServerTest.make_server.MyServer +handle_error Lib/test/test_socketserver.py /^ def handle_error(self, request, client_address):$/;" m class:BaseErrorTestServer +handle_error Lib/test/test_ssl.py /^ def handle_error(self):$/;" m class:AsyncoreEchoServer.EchoServer.ConnectionHandler +handle_error Lib/test/test_ssl.py /^ def handle_error(self):$/;" m class:AsyncoreEchoServer.EchoServer +handle_error Lib/test/test_ssl.py /^def handle_error(prefix):$/;" f +handle_error Lib/test/test_wsgiref.py /^ def handle_error(self):$/;" m class:TestHandler +handle_error Lib/wsgiref/handlers.py /^ def handle_error(self):$/;" m class:BaseHandler +handle_expect_100 Lib/http/server.py /^ def handle_expect_100(self):$/;" m class:BaseHTTPRequestHandler +handle_expect_100 Lib/test/test_httpservers.py /^ def handle_expect_100(self):$/;" m class:RejectingSocketlessRequestHandler +handle_expt Lib/test/support/asyncore.py /^ def handle_expt(self):$/;" m class:dispatcher +handle_expt Lib/test/test_smtplib.py /^ def handle_expt(self):$/;" f +handle_expt_event Lib/test/support/asyncore.py /^ def handle_expt_event(self):$/;" m class:dispatcher +handle_failure Tools/c-analyzer/c_analyzer/__main__.py /^ def handle_failure(failure, data):$/;" f function:_get_check_handlers.handle_after +handle_func_event Objects/funcobject.c /^handle_func_event(PyFunction_WatchEvent event, PyFunctionObject *func,$/;" f file: +handle_get Lib/xmlrpc/server.py /^ def handle_get(self):$/;" m class:CGIXMLRPCRequestHandler +handle_get Lib/xmlrpc/server.py /^ def handle_get(self):$/;" m class:DocCGIXMLRPCRequestHandler +handle_legacy_finalizers Modules/gcmodule.c /^handle_legacy_finalizers(PyThreadState *tstate,$/;" f file: +handle_list Modules/_winapi.c /^ LPHANDLE handle_list;$/;" m struct:__anon536 file: +handle_name Lib/lib2to3/fixes/fix_urllib.py /^ def handle_name(name, prefix):$/;" f function:FixUrllib.transform_member +handle_new_client Lib/test/test_os.py /^ async def handle_new_client(self, reader, writer):$/;" m class:TestSendfile +handle_one_request Lib/http/server.py /^ def handle_one_request(self):$/;" m class:BaseHTTPRequestHandler +handle_one_request Lib/test/test_httpservers.py /^ def handle_one_request():$/;" f function:BaseHTTPRequestHandlerTestCase.test_close_connection +handle_one_request Lib/test/test_xmlrpc.py /^ def handle_one_request(self):$/;" m class:BaseKeepaliveServerTestCase.RequestHandler +handle_pi Lib/html/parser.py /^ def handle_pi(self, data):$/;" m class:HTMLParser +handle_pi Lib/test/test_htmlparser.py /^ def handle_pi(self, data):$/;" m class:EventCollector +handle_pi Modules/_elementtree.c /^ PyObject *handle_pi;$/;" m struct:__anon386 file: +handle_read Lib/test/support/asynchat.py /^ def handle_read(self):$/;" m class:async_chat +handle_read Lib/test/support/asyncore.py /^ def handle_read(self):$/;" m class:dispatcher +handle_read Lib/test/test_ftplib.py /^ def handle_read(self):$/;" m class:DummyDTPHandler +handle_read Lib/test/test_ftplib.py /^ handle_read = handle_connect$/;" v class:DummyFTPServer +handle_read Lib/test/test_poplib.py /^ def handle_read(self):$/;" f function:DummyPOP3Handler.cmd_utf8 +handle_read Lib/test/test_poplib.py /^ handle_read = handle_connect$/;" v class:DummyPOP3Server +handle_read Lib/test/test_ssl.py /^ def handle_read(self):$/;" m class:AsyncoreEchoServer.EchoServer.ConnectionHandler +handle_read_event Lib/test/support/asyncore.py /^ def handle_read_event(self):$/;" m class:dispatcher +handle_read_event Lib/test/test_ftplib.py /^ def handle_read_event(self):$/;" m class:.SSLConnection +handle_request Lib/multiprocessing/managers.py /^ def handle_request(self, conn):$/;" m class:Server +handle_request Lib/socketserver.py /^ def handle_request(self):$/;" m class:BaseServer +handle_request Lib/test/test_logging.py /^ def handle_request(self, request):$/;" m class:HTTPHandlerTest +handle_request Lib/test/test_urllib2_localnet.py /^ def handle_request(self, request_handler):$/;" m class:DigestAuthHandler +handle_request Lib/xmlrpc/server.py /^ def handle_request(self, request_text=None):$/;" m class:CGIXMLRPCRequestHandler +handle_restore_timer Lib/idlelib/parenmatch.py /^ def handle_restore_timer(self, timer_count):$/;" m class:ParenMatch +handle_resurrected_objects Modules/gcmodule.c /^handle_resurrected_objects(PyGC_Head *unreachable, PyGC_Head* still_unreachable,$/;" f file: +handle_sig Lib/test/test_pty.py /^ def handle_sig(self, sig, frame):$/;" m class:PtyTest +handle_sighup Lib/test/test_builtin.py /^ def handle_sighup(signum, frame):$/;" m class:PtyTests +handle_sighup Lib/test/test_pty.py /^ def handle_sighup(signum, frame):$/;" m class:PtyTest +handle_signals Lib/test/test_threadsignals.py /^def handle_signals(sig,frame):$/;" f +handle_signals Python/ceval_gil.c /^handle_signals(PyThreadState *tstate)$/;" f file: +handle_signature Doc/tools/extensions/pyspecific.py /^ def handle_signature(self, sig, signode):$/;" m class:PyAbstractMethod +handle_signature Doc/tools/extensions/pyspecific.py /^ def handle_signature(self, sig, signode):$/;" m class:PyAwaitableMixin +handle_signature Doc/tools/extensions/pyspecific.py /^ def handle_signature(self, sig, signode):$/;" m class:PyCoroutineMixin +handle_signature Doc/tools/extensions/pyspecific.py /^ def handle_signature(self, sig, signode):$/;" m class:PyDecoratorMixin +handle_socket Lib/test/test_logging.py /^ def handle_socket(self, request):$/;" m class:SocketHandlerTest +handle_start Modules/_elementtree.c /^ PyObject *handle_start;$/;" m struct:__anon386 file: +handle_start_ns Modules/_elementtree.c /^ PyObject *handle_start_ns;$/;" m struct:__anon386 file: +handle_startendtag Lib/html/parser.py /^ def handle_startendtag(self, tag, attrs):$/;" m class:HTMLParser +handle_startendtag Lib/test/test_htmlparser.py /^ def handle_startendtag(self, tag, attrs):$/;" m class:EventCollector +handle_starttag Lib/html/parser.py /^ def handle_starttag(self, tag, attrs):$/;" m class:HTMLParser +handle_starttag Lib/idlelib/help.py /^ def handle_starttag(self, tag, attrs):$/;" m class:HelpParser +handle_starttag Lib/test/test_htmlparser.py /^ def handle_starttag(self, tag, attrs):$/;" m class:EventCollector +handle_starttag Lib/test/test_htmlparser.py /^ def handle_starttag(self, tag, attrs):$/;" m class:EventCollectorExtra +handle_system_exit Python/pythonrun.c /^handle_system_exit(void)$/;" f file: +handle_timeout Lib/socketserver.py /^ def handle_timeout(self):$/;" m class:.ForkingMixIn +handle_timeout Lib/socketserver.py /^ def handle_timeout(self):$/;" m class:BaseServer +handle_tk_events Lib/idlelib/run.py /^def handle_tk_events(tcl=tcl):$/;" f +handle_tuple Lib/lib2to3/fixes/fix_tuple_params.py /^ def handle_tuple(tuple_arg, add_prefix=False):$/;" f function:FixTupleParams.transform +handle_unknown Lib/test/test_nntplib.py /^ def handle_unknown(self):$/;" m class:NNTPv1Handler +handle_weakrefs Modules/gcmodule.c /^handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)$/;" f file: +handle_welcome Lib/test/test_nntplib.py /^ def handle_welcome(self):$/;" m class:NNTPv1Handler +handle_winconfig Lib/idlelib/editor.py /^ def handle_winconfig(self, event=None):$/;" m class:EditorWindow +handle_write Lib/test/support/asynchat.py /^ def handle_write(self):$/;" m class:async_chat +handle_write Lib/test/support/asyncore.py /^ def handle_write(self):$/;" m class:dispatcher +handle_write Lib/test/support/asyncore.py /^ def handle_write(self):$/;" m class:dispatcher_with_send +handle_write_event Lib/test/support/asyncore.py /^ def handle_write_event(self):$/;" m class:dispatcher +handle_write_event Lib/test/test_ftplib.py /^ def handle_write_event(self):$/;" m class:.SSLConnection +handle_xmlrpc Lib/xmlrpc/server.py /^ def handle_xmlrpc(self, request_text):$/;" m class:CGIXMLRPCRequestHandler +handle_yview Lib/idlelib/editor.py /^ def handle_yview(self, event, *args):$/;" m class:EditorWindow +handled Lib/test/test_xmlrpc.py /^ handled = False$/;" v class:XMLRPCTestCase.test_keepalive_disconnect.RequestHandler +handler Lib/cgitb.py /^handler = Hook().handle$/;" v +handler Lib/idlelib/multicall.py /^ def handler(event, l = self.bindedfuncs, mc_type = self.type):$/;" f function:_SimpleBinder.bind +handler Lib/idlelib/multicall.py /^ def handler(event):$/;" f function:_multi_call.bindseq +handler Lib/idlelib/multicall.py /^ def handler(event, lists = lists,$/;" f function:_ComplexBinder.__create_handler +handler Lib/test/_test_multiprocessing.py /^ def handler(*args):$/;" f function:_TestProcess._kill_process +handler Lib/test/_test_multiprocessing.py /^ def handler(signum, frame):$/;" f function:TestIgnoreEINTR._test_ignore +handler Lib/test/_test_multiprocessing.py /^ def handler(signum, frame):$/;" f function:TestIgnoreEINTR._test_ignore_listener +handler Lib/test/test_asyncio/test_base_events.py /^ def handler(loop, context):$/;" f function:BaseEventLoopTests.test_set_exc_handler_broken +handler Lib/test/test_ftplib.py /^ handler = DummyTLS_FTPHandler$/;" v class:.DummyTLS_FTPServer +handler Lib/test/test_ftplib.py /^ handler = DummyFTPHandler$/;" v class:DummyFTPServer +handler Lib/test/test_poplib.py /^ handler = DummyPOP3Handler$/;" v class:DummyPOP3Server +handler Lib/test/test_pyexpat.py /^ def handler(text):$/;" f function:sf1296433Test.test_parse_only_xml_data +handler Lib/test/test_selectors.py /^ def handler(*args):$/;" f function:BaseSelectorTestCase.test_select_interrupt_exc +handler Lib/test/test_signal.py /^ def handler(a, b):$/;" f function:RaiseSignalTest.test_handler +handler Lib/test/test_signal.py /^ def handler(signum, frame):$/;" f function:StressTest.test_stress_delivery_simultaneous +handler Lib/test/test_signal.py /^ def handler(signum=None, frame=None):$/;" f function:StressTest.measure_itimer_resolution +handler Lib/test/test_subprocess.py /^ def handler(signum, frame):$/;" f function:ProcessTestCase.test_communicate_eintr +handler Lib/test/test_threading.py /^ def handler(signum, frame):$/;" f function:InterruptMainTests.check_interrupt_main_with_signal_handler +handler Lib/xml/etree/ElementTree.py /^ def handler(prefix, event=event_name, append=append):$/;" f function:XMLParser._setevents.handler +handler Lib/xml/etree/ElementTree.py /^ def handler(prefix, event=event_name, append=append,$/;" f function:XMLParser._setevents.handler +handler Lib/xml/etree/ElementTree.py /^ def handler(prefix, uri, event=event_name, append=append):$/;" f function:XMLParser._setevents.handler +handler Lib/xml/etree/ElementTree.py /^ def handler(prefix, uri, event=event_name, append=append,$/;" f function:XMLParser._setevents.handler +handler Lib/xml/etree/ElementTree.py /^ def handler(pi_target, data, event=event_name, append=append,$/;" f function:XMLParser._setevents +handler Lib/xml/etree/ElementTree.py /^ def handler(tag, attrib_in, event=event_name, append=append,$/;" f function:XMLParser._setevents +handler Lib/xml/etree/ElementTree.py /^ def handler(tag, event=event_name, append=append,$/;" f function:XMLParser._setevents +handler Lib/xml/etree/ElementTree.py /^ def handler(text, event=event_name, append=append, self=self):$/;" f function:XMLParser._setevents +handler Modules/expat/xmlrole.h /^ int(PTRCALL *handler)(struct prolog_state *state, int tok, const char *ptr,$/;" m struct:prolog_state +handler Modules/pyexpat.c /^ xmlhandler handler;$/;" m struct:HandlerInfo file: +handler1 Lib/test/test_codeccallbacks.py /^ def handler1(exc):$/;" f function:CodecCallbackTest.test_callbacks +handler2 Lib/test/test_codeccallbacks.py /^ def handler2(exc):$/;" f function:CodecCallbackTest.test_callbacks +handlerFunc Lib/test/test_logging.py /^def handlerFunc():$/;" f +handler_class Lib/http/server.py /^ handler_class = CGIHTTPRequestHandler$/;" v +handler_class Lib/http/server.py /^ handler_class = SimpleHTTPRequestHandler$/;" v +handler_class Lib/test/test_nntplib.py /^ handler_class = CapsAfterLoginNNTPv2Handler$/;" v class:CapsAfterLoginNNTPv2Tests +handler_class Lib/test/test_nntplib.py /^ handler_class = ModeSwitchingNNTPv2Handler$/;" v class:SendReaderNNTPv2Tests +handler_class Lib/test/test_nntplib.py /^ handler_class = NNTPv1Handler$/;" v class:NNTPv1Tests +handler_class Lib/test/test_nntplib.py /^ handler_class = NNTPv2Handler$/;" v class:NNTPv2Tests +handler_class Lib/test/test_nntplib.py /^ handler_class = None$/;" v class:MockedNNTPTestsMixin +handler_info Modules/pyexpat.c /^static struct HandlerInfo handler_info[64];$/;" v typeref:struct:HandlerInfo file: +handler_info Modules/pyexpat.c /^static struct HandlerInfo handler_info[] = {$/;" v typeref:struct:HandlerInfo file: +handler_names Lib/test/test_pyexpat.py /^ handler_names = [$/;" v class:ParseTest +handler_order Lib/test/test_urllib2.py /^ handler_order = 500$/;" v class:MockHandler +handler_order Lib/urllib/request.py /^ handler_order = 100$/;" v class:ProxyHandler +handler_order Lib/urllib/request.py /^ handler_order = 1000 # after all other processing$/;" v class:HTTPErrorProcessor +handler_order Lib/urllib/request.py /^ handler_order = 490 # before Basic auth$/;" v class:HTTPDigestAuthHandler +handler_order Lib/urllib/request.py /^ handler_order = 490 # before Basic auth$/;" v class:ProxyDigestAuthHandler +handler_order Lib/urllib/request.py /^ handler_order = 500$/;" v class:BaseHandler +handlers Include/internal/pycore_ast.h /^ asdl_excepthandler_seq *handlers;$/;" m struct:_stmt::__anon51::__anon69 +handlers Include/internal/pycore_ast.h /^ asdl_excepthandler_seq *handlers;$/;" m struct:_stmt::__anon51::__anon70 +handlers Include/internal/pycore_ast_state.h /^ PyObject *handlers;$/;" m struct:ast_state +handlers Include/internal/pycore_flowgraph.h /^ struct _PyCfgBasicblock_ *handlers[CO_MAXBLOCKS+1];$/;" m struct:__anon169 typeref:struct:__anon169::_PyCfgBasicblock_ +handlers Include/internal/pycore_signal.h /^ } handlers[Py_NSIG];$/;" m struct:_signals_runtime_state typeref:struct:_signals_runtime_state::__anon160 +handlers Modules/pyexpat.c /^ PyObject **handlers;$/;" m struct:__anon483 file: +handling_errors Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def handling_errors(ignore_exc=None, *, log_err=None):$/;" f +hangul_syllables Modules/unicodedata.c /^static const char * const hangul_syllables[][3] = {$/;" v file: +hanoi Lib/turtledemo/minimal_hanoi.py /^def hanoi(n, from_, with_, to_):$/;" f +hardlink_to Lib/pathlib.py /^ def hardlink_to(self, target):$/;" m class:Path +harmonic_mean Lib/statistics.py /^def harmonic_mean(data, weights=None):$/;" f +harrison_ulp Modules/_decimal/tests/deccheck.py /^ def harrison_ulp(self, dec):$/;" m class:SkipHandler +hasAttribute Lib/xml/dom/minidom.py /^ def hasAttribute(self, name):$/;" m class:Element +hasAttributeNS Lib/xml/dom/minidom.py /^ def hasAttributeNS(self, namespaceURI, localName):$/;" m class:Element +hasAttributes Lib/xml/dom/minidom.py /^ def hasAttributes(self):$/;" m class:Element +hasChildNodes Lib/xml/dom/minidom.py /^ def hasChildNodes(self):$/;" m class:Childless +hasChildNodes Lib/xml/dom/minidom.py /^ def hasChildNodes(self):$/;" m class:Node +hasFeature Lib/xml/dom/minidom.py /^ def hasFeature(self, feature, version):$/;" m class:DOMImplementation +hasHandlers Lib/logging/__init__.py /^ def hasHandlers(self):$/;" m class:Logger +hasHandlers Lib/logging/__init__.py /^ def hasHandlers(self):$/;" m class:LoggerAdapter +hasParamEntityRefs Modules/expat/xmlparse.c /^ XML_Bool hasParamEntityRefs;$/;" m struct:__anon617 file: +has_ShellExecute Modules/posixmodule.c /^static int has_ShellExecute = -1;$/;" v file: +has_arg Include/internal/pycore_getopt.h /^ int has_arg;$/;" m struct:__anon158 +has_c_implementation Lib/test/test_pickle.py /^ has_c_implementation = False$/;" v +has_c_implementation Lib/test/test_pickle.py /^ has_c_implementation = True$/;" v +has_calls Lib/test/test_unittest/testmock/testmock.py /^ def has_calls(self): pass$/;" m class:MockTest.test_mock_unsafe.Foo +has_children Lib/symtable.py /^ def has_children(self):$/;" m class:SymbolTable +has_cmdline_bunzip2 Lib/test/test_bz2.py /^has_cmdline_bunzip2 = None$/;" v +has_content Doc/tools/extensions/c_annotations.py /^ has_content = False$/;" v class:init_annotations.LimitedAPIList +has_content Doc/tools/extensions/pyspecific.py /^ has_content = False$/;" v class:MiscNews +has_content Doc/tools/extensions/pyspecific.py /^ has_content = True$/;" v class:AuditEvent +has_content Doc/tools/extensions/pyspecific.py /^ has_content = True$/;" v class:Availability +has_content Doc/tools/extensions/pyspecific.py /^ has_content = True$/;" v class:DeprecatedRemoved +has_content Doc/tools/extensions/pyspecific.py /^ has_content = True$/;" v class:ImplementationDetail +has_deadlock Lib/importlib/_bootstrap.py /^ def has_deadlock(self):$/;" m class:_ModuleLock +has_dualstack_ipv6 Lib/socket.py /^def has_dualstack_ipv6():$/;" f +has_external_symbol Tools/c-analyzer/c_parser/match.py /^def has_external_symbol(decl):$/;" f +has_extn Lib/smtplib.py /^ def has_extn(self, opt):$/;" m class:SMTP +has_fork_support Lib/test/support/__init__.py /^has_fork_support = hasattr(os, "fork") and not is_emscripten and not is_wasi$/;" v +has_gethostname Lib/test/support/socket_helper.py /^has_gethostname = not support.is_wasi$/;" v +has_header Lib/csv.py /^ def has_header(self, sample):$/;" m class:Sniffer +has_header Lib/urllib/request.py /^ def has_header(self, header_name):$/;" m class:Request +has_internal_symbol Tools/c-analyzer/c_parser/match.py /^def has_internal_symbol(decl):$/;" f +has_iso10646 Lib/test/multibytecodec_support.py /^ has_iso10646 = 0 # set if this encoding contains whole iso10646 map$/;" v class:TestBase +has_iso10646 Lib/test/test_codecencodings_cn.py /^ has_iso10646 = True$/;" v class:Test_GB18030 +has_key Lib/curses/has_key.py /^def has_key(ch):$/;" f +has_kwonlydefaults Python/symtable.c /^has_kwonlydefaults(asdl_arg_seq *kwonlyargs, asdl_expr_seq *kw_defaults)$/;" f file: +has_legacy_finalizer Modules/gcmodule.c /^has_legacy_finalizer(PyObject *op)$/;" f file: +has_location Lib/importlib/_bootstrap.py /^ def has_location(self):$/;" m class:ModuleSpec +has_location Lib/importlib/_bootstrap.py /^ def has_location(self, value):$/;" m class:ModuleSpec +has_magic Lib/glob.py /^def has_magic(s):$/;" f +has_meaningful_duration Lib/test/libregrtest/runtest.py /^ def has_meaningful_duration(self):$/;" m class:TestResult +has_meaningful_duration Lib/test/libregrtest/runtest.py /^ def has_meaningful_duration(state):$/;" m class:State +has_metaclass Lib/lib2to3/fixes/fix_metaclass.py /^def has_metaclass(parent):$/;" f +has_no_debug_ranges Lib/test/support/__init__.py /^def has_no_debug_ranges():$/;" f +has_nonstandard_attr Lib/http/cookiejar.py /^ def has_nonstandard_attr(self, name):$/;" m class:Cookie +has_openssl Tools/ssl/multissltests.py /^ def has_openssl(self):$/;" m class:AbstractBuilder +has_option Lib/configparser.py /^ def has_option(self, section, option):$/;" m class:RawConfigParser +has_option Lib/optparse.py /^ def has_option(self, opt_str):$/;" m class:OptionContainer +has_own_state Objects/obmalloc.c /^has_own_state(PyInterpreterState *interp)$/;" f file: +has_proxy Lib/urllib/request.py /^ def has_proxy(self):$/;" m class:Request +has_read1 Modules/_io/textio.c /^ char has_read1;$/;" m struct:textio file: +has_section Lib/configparser.py /^ def has_section(self, section):$/;" m class:RawConfigParser +has_socket_support Lib/test/support/__init__.py /^has_socket_support = not is_emscripten and not is_wasi$/;" v +has_spawnl Lib/test/test_tempfile.py /^has_spawnl = hasattr(os, 'spawnl')$/;" v +has_src Tools/ssl/multissltests.py /^ def has_src(self):$/;" m class:AbstractBuilder +has_starred Python/ast_opt.c /^has_starred(asdl_expr_seq *elts)$/;" f file: +has_strftime_extensions Lib/test/support/__init__.py /^ has_strftime_extensions = time.strftime("%4Y") != "%4Y"$/;" v +has_strftime_extensions Lib/test/support/__init__.py /^has_strftime_extensions = False$/;" v +has_subprocess_support Lib/test/support/__init__.py /^has_subprocess_support = not is_emscripten and not is_wasi$/;" v +has_textmode Lib/test/test_tempfile.py /^has_textmode = (tempfile._text_openflags != tempfile._bin_openflags)$/;" v +has_tls_protocol Lib/test/test_ssl.py /^def has_tls_protocol(protocol):$/;" f +has_tls_version Lib/test/test_ssl.py /^def has_tls_version(version):$/;" f +hasarg Lib/opcode.py /^hasarg = []$/;" v +hascompare Lib/opcode.py /^hascompare = []$/;" v +hasconst Lib/opcode.py /^hasconst = []$/;" v +hasexc Lib/opcode.py /^hasexc = []$/;" v +hasfree Lib/opcode.py /^hasfree = []$/;" v +hash Include/cpython/memoryobject.h /^ Py_hash_t hash; \/* hash value for read-only views *\/$/;" m struct:__anon191 +hash Include/cpython/setobject.h /^ Py_hash_t hash; \/* Cached hash code of the key *\/$/;" m struct:__anon223 +hash Include/cpython/setobject.h /^ Py_hash_t hash; \/* Only used by frozenset objects *\/$/;" m struct:__anon224 +hash Include/cpython/unicodeobject.h /^ Py_hash_t hash; \/* Hash value; -1 if not set *\/$/;" m struct:__anon231 +hash Include/cpython/weakrefobject.h /^ Py_hash_t hash;$/;" m struct:_PyWeakReference +hash Include/internal/pycore_tracemalloc.h /^ Py_uhash_t hash;$/;" m struct:tracemalloc_traceback +hash Include/pyhash.h /^ Py_hash_t (*const hash)(const void *, Py_ssize_t);$/;" m struct:__anon261 +hash Modules/_decimal/_decimal.c /^ Py_hash_t hash;$/;" m struct:__anon349 file: +hash Modules/_functoolsmodule.c /^ Py_hash_t hash;$/;" m struct:lru_list_elem file: +hash Modules/_ssl.h /^ Py_hash_t hash;$/;" m struct:__anon486 +hash Modules/expat/xmlparse.c /^ unsigned long hash;$/;" m struct:__anon615 file: +hash Modules/expat/xmlparse.c /^hash(XML_Parser parser, KEY s) {$/;" f file: +hash Objects/odictobject.c /^ Py_hash_t hash;$/;" m struct:_odictnode file: +hashTableClear Modules/expat/xmlparse.c /^hashTableClear(HASH_TABLE *table) {$/;" f file: +hashTableDestroy Modules/expat/xmlparse.c /^hashTableDestroy(HASH_TABLE *table) {$/;" f file: +hashTableInit Modules/expat/xmlparse.c /^hashTableInit(HASH_TABLE *p, const XML_Memory_Handling_Suite *ms) {$/;" f file: +hashTableIterInit Modules/expat/xmlparse.c /^hashTableIterInit(HASH_TABLE_ITER *iter, const HASH_TABLE *table) {$/;" f file: +hashTableIterNext Modules/expat/xmlparse.c /^hashTableIterNext(HASH_TABLE_ITER *iter) {$/;" f file: +hash_bits Include/pyhash.h /^ const int hash_bits;$/;" m struct:__anon261 +hash_buf2 Modules/_hacl/Hacl_Hash_SHA3.c /^hash_buf2;$/;" t typeref:struct:hash_buf2_s file: +hash_buf2_s Modules/_hacl/Hacl_Hash_SHA3.c /^typedef struct hash_buf2_s$/;" s file: +hash_char Modules/_testinternalcapi.c /^hash_char(const void *key)$/;" f file: +hash_constructors Lib/test/test_hashlib.py /^ def hash_constructors(self):$/;" m class:HashLibTestCase +hash_func Include/internal/pycore_hashtable.h /^ _Py_hashtable_hash_func hash_func;$/;" m struct:_Py_hashtable_t +hash_in_chunks Lib/test/test_hashlib.py /^ def hash_in_chunks(chunk_size):$/;" f function:HashLibTestCase.test_threaded_hashing +hash_info_desc Python/sysmodule.c /^static PyStructSequence_Desc hash_info_desc = {$/;" v file: +hash_info_fields Python/sysmodule.c /^static PyStructSequence_Field hash_info_fields[] = {$/;" v file: +hash_len Modules/_hacl/Hacl_Hash_SHA3.c /^static uint32_t hash_len(Spec_Hash_Definitions_hash_alg a)$/;" f file: +hash_seed Include/cpython/initconfig.h /^ unsigned long hash_seed;$/;" m struct:PyConfig +hash_state Modules/md5module.c /^ Hacl_Streaming_MD5_state *hash_state;$/;" m struct:__anon427 file: +hash_state Modules/sha1module.c /^ Hacl_Streaming_SHA1_state *hash_state;$/;" m struct:__anon467 file: +hash_state Modules/sha3module.c /^ Hacl_Streaming_Keccak_state *hash_state;$/;" m struct:__anon298 file: +hashcode Include/datetime.h /^ Py_hash_t hashcode; \/* -1 when unknown *\/$/;" m struct:__anon262 +hashes_to_check Lib/test/test_hash.py /^ hashes_to_check = [enumerate(range(10)),$/;" v class:HashBuiltinsTestCase +hashfunc Include/object.h /^typedef Py_hash_t (*hashfunc)(PyObject *);$/;" t +hashit Lib/test/test_decimal.py /^ def hashit(d):$/;" f function:UsabilityTest.test_hash_method +hashlib_clear Modules/_hashopenssl.c /^hashlib_clear(PyObject *m)$/;" f file: +hashlib_exception Modules/_hashopenssl.c /^hashlib_exception(PyObject *module)$/;" f file: +hashlib_free Modules/_hashopenssl.c /^hashlib_free(void *m)$/;" f file: +hashlib_init_constructors Modules/_hashopenssl.c /^hashlib_init_constructors(PyObject *module)$/;" f file: +hashlib_init_evptype Modules/_hashopenssl.c /^hashlib_init_evptype(PyObject *module)$/;" f file: +hashlib_init_evpxoftype Modules/_hashopenssl.c /^hashlib_init_evpxoftype(PyObject *module)$/;" f file: +hashlib_init_hashtable Modules/_hashopenssl.c /^hashlib_init_hashtable(PyObject *module)$/;" f file: +hashlib_init_hmactype Modules/_hashopenssl.c /^hashlib_init_hmactype(PyObject *module)$/;" f file: +hashlib_md_meth_names Modules/_hashopenssl.c /^hashlib_md_meth_names(PyObject *module)$/;" f file: +hashlib_slots Modules/_hashopenssl.c /^static PyModuleDef_Slot hashlib_slots[] = {$/;" v file: +hashlib_traverse Modules/_hashopenssl.c /^hashlib_traverse(PyObject *m, visitproc visit, void *arg)$/;" f file: +hashsalt Include/pyhash.h /^ Py_hash_t hashsalt;$/;" m struct:__anon256::__anon260 +hashstats Python/pyhash.c /^static Py_ssize_t hashstats[Py_HASH_STATS_MAX + 1] = {0};$/;" v file: +hashtable Include/internal/pycore_import.h /^ _Py_hashtable_t *hashtable;$/;" m struct:_import_runtime_state::__anon136 +hashtable Include/internal/pycore_typeobject.h /^ struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP];$/;" m struct:type_cache typeref:struct:type_cache::type_cache_entry +hashtable Modules/_hashopenssl.c /^ _Py_hashtable_t *hashtable;$/;" m struct:__anon561 file: +hashtable Python/marshal.c /^ _Py_hashtable_t *hashtable;$/;" m struct:__anon699 file: +hashtable_cb Modules/_testinternalcapi.c /^hashtable_cb(_Py_hashtable_t *table,$/;" f file: +hashtable_compare_str Python/import.c /^hashtable_compare_str(const void *key1, const void *key2)$/;" f file: +hashtable_compare_traceback Python/tracemalloc.c /^hashtable_compare_traceback(const void *key1, const void *key2)$/;" f file: +hashtable_compare_unicode Python/tracemalloc.c /^hashtable_compare_unicode(const void *key1, const void *key2)$/;" f file: +hashtable_destroy_str Python/import.c /^hashtable_destroy_str(void *ptr)$/;" f file: +hashtable_hash_pyobject Python/tracemalloc.c /^hashtable_hash_pyobject(const void *key)$/;" f file: +hashtable_hash_str Python/import.c /^hashtable_hash_str(const void *key)$/;" f file: +hashtable_hash_traceback Python/tracemalloc.c /^hashtable_hash_traceback(const void *key)$/;" f file: +hashtable_hash_uint Python/tracemalloc.c /^hashtable_hash_uint(const void *key_raw)$/;" f file: +hashtable_key_from_2_strings Python/import.c /^hashtable_key_from_2_strings(PyObject *str1, PyObject *str2, const char sep)$/;" f file: +hashtable_new Python/tracemalloc.c /^hashtable_new(_Py_hashtable_hash_func hash_func,$/;" f file: +hashtable_rehash Python/hashtable.c /^hashtable_rehash(_Py_hashtable_t *ht)$/;" f file: +hasjabs Lib/opcode.py /^hasjabs = []$/;" v +hasjrel Lib/opcode.py /^hasjrel = []$/;" v +haslocal Lib/opcode.py /^haslocal = []$/;" v +hasname Lib/opcode.py /^hasname = []$/;" v +hassuffix Lib/test/test_getpath.py /^ def hassuffix(self, path, suffix):$/;" m class:MockNTNamespace +hassuffix Lib/test/test_getpath.py /^ def hassuffix(self, path, suffix):$/;" m class:MockPosixNamespace +have_fork Lib/http/server.py /^ have_fork = hasattr(os, 'fork')$/;" v class:CGIHTTPRequestHandler +have_function Modules/posixmodule.c /^static const struct have_function {$/;" s file: +have_functions Modules/posixmodule.c /^} have_functions[] = {$/;" v typeref:struct:have_function file: +have_handler Modules/pyexpat.c /^have_handler(xmlparseobject *self, int type)$/;" f file: +hci_dev Modules/socketmodule.c 492;" d file: +head Include/cpython/weakrefobject.h /^PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);$/;" v +head Include/internal/pycore_gc.h /^ PyGC_Head head;$/;" m struct:gc_generation +head Include/internal/pycore_hashtable.h /^ _Py_slist_item_t *head;$/;" m struct:__anon129 +head Include/internal/pycore_interp.h /^ PyThreadState *head;$/;" m struct:_is::pythreads +head Include/internal/pycore_runtime.h /^ PyInterpreterState *head;$/;" m struct:pyruntimestate::pyinterpreters +head Include/internal/pycore_runtime.h /^ _Py_AuditHookEntry *head;$/;" m struct:pyruntimestate::__anon162 +head Include/internal/pycore_runtime.h /^ struct _xidregitem *head;$/;" m struct:pyruntimestate::_xidregistry typeref:struct:pyruntimestate::_xidregistry::_xidregitem +head Lib/nntplib.py /^ def head(self, message_spec=None, *, file=None):$/;" m class:NNTP +head Modules/_testbuffer.c /^ ndbuf_t *head; \/* currently active base buffer *\/$/;" m struct:__anon645 file: +head Modules/_xxinterpchannelsmodule.c /^ _channelref *head;$/;" m struct:_channels file: +header Include/internal/pycore_faulthandler.h /^ char *header;$/;" m struct:_faulthandler_runtime_state::__anon127 +header Include/internal/pycore_import.h /^ int header;$/;" m struct:_import_state::__anon138 +header Modules/_lsprof.c /^ rotating_node_t header;$/;" m struct:_ProfilerEntry file: +header Modules/_lsprof.c /^ rotating_node_t header;$/;" m struct:_ProfilerSubEntry file: +header Programs/_freeze_module.c /^static const char header[] =$/;" v file: +header Programs/_freeze_module.py /^header = "\/* Auto-generated by Programs\/_freeze_module.py *\/"$/;" v +header Python/import.c 2747;" d file: +header Python/import.c 2753;" d file: +headerRE Lib/email/feedparser.py /^headerRE = re.compile(r'^(From |[\\041-\\071\\073-\\176]*:|[\\t ])')$/;" v +header_app Lib/test/test_wsgiref.py /^def header_app(environ, start_response):$/;" f +header_as_deepcopy Lib/test/test_email/test_pickleable.py /^ def header_as_deepcopy(self, name, value):$/;" m class:TestPickleCopyHeader +header_as_pickle Lib/test/test_email/test_pickleable.py /^ def header_as_pickle(self, name, value):$/;" m class:TestPickleCopyHeader +header_cget Lib/tkinter/tix.py /^ def header_cget(self, col, opt):$/;" m class:HList +header_check Lib/email/quoprimime.py /^def header_check(octet):$/;" f +header_configure Lib/tkinter/tix.py /^ def header_configure(self, col, cnf={}, **kw):$/;" m class:HList +header_create Lib/tkinter/tix.py /^ def header_create(self, col, cnf={}, **kw):$/;" m class:HList +header_decode Lib/email/quoprimime.py /^def header_decode(s):$/;" f +header_delete Lib/tkinter/tix.py /^ def header_delete(self, col):$/;" m class:HList +header_encode Lib/email/base64mime.py /^def header_encode(header_bytes, charset='iso-8859-1'):$/;" f +header_encode Lib/email/charset.py /^ def header_encode(self, string):$/;" m class:Charset +header_encode Lib/email/quoprimime.py /^def header_encode(header_bytes, charset='iso-8859-1'):$/;" f +header_encode Lib/test/test_email/test_email.py /^ def header_encode(self, string):$/;" m class:TestMiscellaneous.test_accepts_any_charset_like_object.CharsetMock +header_encode_lines Lib/email/charset.py /^ def header_encode_lines(self, string, maxlengths):$/;" m class:Charset +header_exist Lib/tkinter/tix.py /^ header_exist = header_exists$/;" v class:HList +header_exists Lib/tkinter/tix.py /^ def header_exists(self, col):$/;" m class:HList +header_factory Lib/email/policy.py /^ header_factory = HeaderRegistry()$/;" v class:EmailPolicy +header_factory Lib/test/test_email/test_pickleable.py /^ header_factory = HeaderRegistry()$/;" v class:TestPickleCopyHeader +header_fetch_parse Lib/email/_policybase.py /^ def header_fetch_parse(self, name, value):$/;" m class:Compat32 +header_fetch_parse Lib/email/_policybase.py /^ def header_fetch_parse(self, name, value):$/;" m class:Policy +header_fetch_parse Lib/email/policy.py /^ def header_fetch_parse(self, name, value):$/;" m class:EmailPolicy +header_items Lib/urllib/request.py /^ def header_items(self):$/;" m class:Request +header_len Include/internal/pycore_faulthandler.h /^ size_t header_len;$/;" m struct:_faulthandler_runtime_state::__anon127 +header_length Lib/email/base64mime.py /^def header_length(bytearray):$/;" f +header_length Lib/email/quoprimime.py /^def header_length(bytearray):$/;" f +header_max_count Lib/email/_policybase.py /^ def header_max_count(self, name):$/;" m class:Policy +header_max_count Lib/email/policy.py /^ def header_max_count(self, name):$/;" m class:EmailPolicy +header_params Lib/test/test_email/test_pickleable.py /^ header_params = {$/;" v class:TestPickleCopyHeader +header_re Lib/wsgiref/validate.py /^header_re = re.compile(r'^[a-zA-Z][a-zA-Z0-9\\-_]*$')$/;" v +header_size Lib/tkinter/tix.py /^ def header_size(self, col):$/;" m class:HList +header_source_parse Lib/email/_policybase.py /^ def header_source_parse(self, sourcelines):$/;" m class:Compat32 +header_source_parse Lib/email/_policybase.py /^ def header_source_parse(self, sourcelines):$/;" m class:Policy +header_source_parse Lib/email/policy.py /^ def header_source_parse(self, sourcelines):$/;" m class:EmailPolicy +header_store_parse Lib/email/_policybase.py /^ def header_store_parse(self, name, value):$/;" m class:Compat32 +header_store_parse Lib/email/_policybase.py /^ def header_store_parse(self, name, value):$/;" m class:Policy +header_store_parse Lib/email/policy.py /^ def header_store_parse(self, name, value):$/;" m class:EmailPolicy +headers Doc/includes/email-headers.py /^headers = Parser(policy=default).parsestr($/;" v +headers Lib/cgi.py /^ headers = {}$/;" v class:MiniFieldStorage +headers Lib/test/test_urllib2.py /^ headers = r.info()$/;" v class:HandlerTests.test_ftp.NullFTPHandler +headers Lib/urllib/error.py /^ def headers(self):$/;" m class:HTTPError +headers Lib/urllib/error.py /^ def headers(self, headers):$/;" m class:HTTPError +headers Lib/wsgiref/handlers.py /^ headers = None$/;" v class:BaseHandler +headers_class Lib/wsgiref/handlers.py /^ headers_class = Headers # must be a Headers-like class$/;" v class:BaseHandler +headers_received Lib/test/test_urllib2_localnet.py /^ headers_received = []$/;" v class:GetRequestHandler.FakeHTTPRequestHandler +headers_sent Lib/wsgiref/handlers.py /^ headers_sent = False$/;" v class:BaseHandler +headertest_headers Lib/test/test_email/test_email.py /^ headertest_headers = ($/;" v class:Test8BitBytesHandling +headertest_msg Lib/test/test_email/test_email.py /^ headertest_msg = ('\\n'.join([src for (src, _) in headertest_headers]) +$/;" v class:Test8BitBytesHandling +heading Lib/pydoc.py /^ def heading(self, title, extras=''):$/;" f +heading Lib/tkinter/ttk.py /^ def heading(self, column, option=None, **kw):$/;" m class:Treeview +heading Lib/turtle.py /^ def heading(self):$/;" m class:TNavigator +heap_ctype_metaclass_custom_tp_new Modules/_testcapi/heaptype.c /^heap_ctype_metaclass_custom_tp_new(PyTypeObject *tp, PyObject *args, PyObject *kwargs)$/;" f file: +heapctype_dealloc Modules/_testcapi/heaptype.c /^heapctype_dealloc(HeapCTypeObject *self)$/;" f file: +heapctype_init Modules/_testcapi/heaptype.c /^heapctype_init(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +heapctype_members Modules/_testcapi/heaptype.c /^static struct PyMemberDef heapctype_members[] = {$/;" v typeref:struct:PyMemberDef file: +heapctypesetattr_dealloc Modules/_testcapi/heaptype.c /^heapctypesetattr_dealloc(HeapCTypeSetattrObject *self)$/;" f file: +heapctypesetattr_init Modules/_testcapi/heaptype.c /^heapctypesetattr_init(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +heapctypesetattr_members Modules/_testcapi/heaptype.c /^static struct PyMemberDef heapctypesetattr_members[] = {$/;" v typeref:struct:PyMemberDef file: +heapctypesetattr_setattro Modules/_testcapi/heaptype.c /^heapctypesetattr_setattro(HeapCTypeSetattrObject *self, PyObject *attr, PyObject *value)$/;" f file: +heapctypesubclass_init Modules/_testcapi/heaptype.c /^heapctypesubclass_init(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +heapctypesubclass_members Modules/_testcapi/heaptype.c /^static struct PyMemberDef heapctypesubclass_members[] = {$/;" v typeref:struct:PyMemberDef file: +heapctypesubclasswithfinalizer_finalize Modules/_testcapi/heaptype.c /^heapctypesubclasswithfinalizer_finalize(PyObject *self)$/;" f file: +heapctypesubclasswithfinalizer_init Modules/_testcapi/heaptype.c /^heapctypesubclasswithfinalizer_init(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +heapctypewithbuffer_getbuffer Modules/_testcapi/heaptype.c /^heapctypewithbuffer_getbuffer(HeapCTypeWithBufferObject *self, Py_buffer *view, int flags)$/;" f file: +heapctypewithbuffer_releasebuffer Modules/_testcapi/heaptype.c /^heapctypewithbuffer_releasebuffer(HeapCTypeWithBufferObject *self, Py_buffer *view)$/;" f file: +heapctypewithdict_dealloc Modules/_testcapi/heaptype.c /^heapctypewithdict_dealloc(HeapCTypeWithDictObject* self)$/;" f file: +heapctypewithdict_getsetlist Modules/_testcapi/heaptype.c /^static PyGetSetDef heapctypewithdict_getsetlist[] = {$/;" v file: +heapctypewithdict_members Modules/_testcapi/heaptype.c /^static struct PyMemberDef heapctypewithdict_members[] = {$/;" v typeref:struct:PyMemberDef file: +heapctypewithmanagedweakref_dealloc Modules/_testcapi/heaptype.c /^heapctypewithmanagedweakref_dealloc(PyObject* self)$/;" f file: +heapctypewithnegativedict_members Modules/_testcapi/heaptype.c /^static struct PyMemberDef heapctypewithnegativedict_members[] = {$/;" v typeref:struct:PyMemberDef file: +heapctypewithweakref_dealloc Modules/_testcapi/heaptype.c /^heapctypewithweakref_dealloc(HeapCTypeWithWeakrefObject* self)$/;" f file: +heapctypewithweakref_members Modules/_testcapi/heaptype.c /^static struct PyMemberDef heapctypewithweakref_members[] = {$/;" v typeref:struct:PyMemberDef file: +heapgcctype_dealloc Modules/_testcapi/heaptype.c /^heapgcctype_dealloc(HeapCTypeObject *self)$/;" f file: +heapgcctype_traverse Modules/_testcapi/heaptype.c /^heapgcctype_traverse(HeapCTypeObject *self, visitproc visit, void *arg)$/;" f file: +heapify Lib/heapq.py /^def heapify(x):$/;" f +heapify_internal Modules/_heapqmodule.c /^heapify_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))$/;" f file: +heapiter Lib/test/test_heapq.py /^ def heapiter(self, heap):$/;" m class:TestHeap +heapmanaged_clear Modules/_testcapi/heaptype.c /^heapmanaged_clear(HeapCTypeObject *self)$/;" f file: +heapmanaged_dealloc Modules/_testcapi/heaptype.c /^heapmanaged_dealloc(HeapCTypeObject *self)$/;" f file: +heapmanaged_traverse Modules/_testcapi/heaptype.c /^heapmanaged_traverse(HeapCTypeObject *self, visitproc visit, void *arg)$/;" f file: +heappop Lib/heapq.py /^def heappop(heap):$/;" f +heappop_internal Modules/_heapqmodule.c /^heappop_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))$/;" f file: +heappush Lib/heapq.py /^def heappush(heap, item):$/;" f +heappushpop Lib/heapq.py /^def heappushpop(heap, item):$/;" f +heapq_exec Modules/_heapqmodule.c /^heapq_exec(PyObject *m)$/;" f file: +heapq_methods Modules/_heapqmodule.c /^static PyMethodDef heapq_methods[] = {$/;" v file: +heapq_slots Modules/_heapqmodule.c /^static struct PyModuleDef_Slot heapq_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +heapreplace Lib/heapq.py /^def heapreplace(heap, item):$/;" f +heapreplace_internal Modules/_heapqmodule.c /^heapreplace_internal(PyObject *heap, PyObject *item, int siftup_func(PyListObject *, Py_ssize_t))$/;" f file: +heaptype_with_member_extract_and_check_memb Modules/_testcapi/heaptype_relative.c /^heaptype_with_member_extract_and_check_memb(PyObject *self)$/;" f file: +heaptype_with_member_get_memb Modules/_testcapi/heaptype_relative.c /^heaptype_with_member_get_memb(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +heaptype_with_member_get_memb_relative Modules/_testcapi/heaptype_relative.c /^heaptype_with_member_get_memb_relative(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +heaptype_with_member_methods Modules/_testcapi/heaptype_relative.c /^static PyMethodDef heaptype_with_member_methods[] = {$/;" v file: +heaptype_with_member_set_memb Modules/_testcapi/heaptype_relative.c /^heaptype_with_member_set_memb(PyObject *self, PyObject *value)$/;" f file: +heaptype_with_member_set_memb_relative Modules/_testcapi/heaptype_relative.c /^heaptype_with_member_set_memb_relative(PyObject *self, PyObject *value)$/;" f file: +height Lib/tkinter/__init__.py /^ def height(self):$/;" m class:Image +hello Lib/test/test_argparse.py /^ hello = 'hello world!' + os_helper.FS_NONASCII$/;" v class:TestArgumentsFromFile +hello Lib/test/test_descr.py /^ def hello(self):$/;" f function:.test_special_method_lookup +hello Lib/test/test_enum.py /^ def hello(self):$/;" m class:TestSpecial.test_custom_strenum.EnumMixin +hello Lib/test/test_enum.py /^ def hello(self):$/;" m class:TestSpecial.test_strenum.EnumMixin +hello Lib/test/test_enum.py /^ def hello(self):$/;" m class:TestSpecial.test_too_many_data_types.MyStr +hello_app Lib/test/test_wsgiref.py /^def hello_app(environ,start_response):$/;" f +helo Lib/smtplib.py /^ def helo(self, name=''):$/;" m class:SMTP +helo_resp Lib/smtplib.py /^ helo_resp = None$/;" v class:SMTP +help Doc/make.bat /^:help$/;" l +help Lib/code.py /^ help="don't print version and copyright messages")$/;" v +help Lib/http/server.py /^ help='bind to this address '$/;" v +help Lib/http/server.py /^ help='bind to this port '$/;" v +help Lib/http/server.py /^ help='conform to this HTTP version '$/;" v +help Lib/http/server.py /^ help='run as CGI server')$/;" v +help Lib/http/server.py /^ help='serve this directory '$/;" v +help Lib/idlelib/configdialog.py /^ def help(self):$/;" m class:ConfigDialog +help Lib/nntplib.py /^ def help(self, *, file=None):$/;" m class:NNTP +help Lib/pdb.py /^def help():$/;" f +help Lib/pydoc.py /^ def help(self, request, is_cli=False):$/;" f +help Lib/pydoc.py /^help = Helper()$/;" v +help Lib/smtplib.py /^ def help(self, args=''):$/;" m class:SMTP +help Lib/test/test_argparse.py /^ help=' oddly \\n'$/;" v class:TestHelpReformatting +help Lib/test/test_argparse.py /^ help='bar %(prog)s %(default)s %(dest)s'),$/;" v class:TestHelpVariableExpansion +help Lib/test/test_argparse.py /^ help='foo %(prog)s %(default)s %(choices)s'),$/;" v class:TestHelpVariableExpansion +help Lib/test/test_argparse.py /^ help='x %(prog)s %(default)s %(type)s %%'),$/;" v class:TestHelpVariableExpansion +help Lib/test/test_argparse.py /^ help='y %(prog)s %(default)s %(const)s'),$/;" v class:TestHelpVariableExpansion +help Lib/test/test_argparse.py /^ help=argparse.SUPPRESS),$/;" v class:TestHelpVersionActionSuppress +help Lib/test/test_argparse.py /^ help = usage$/;" v class:TestHelpVariableExpansionNoArguments +help PC/launcher2.c /^ bool help;$/;" m struct:__anon284 file: +help Tools/build/check_extension_modules.py /^ help="Enable debug logging",$/;" v +help Tools/build/check_extension_modules.py /^ help="Print a list of module names to stdout and exit",$/;" v +help Tools/build/check_extension_modules.py /^ help="Verbose, report builtin, shared, and unavailable modules",$/;" v +help Tools/build/check_extension_modules.py /^ help=($/;" v +help Tools/build/freeze_modules.py /^ help="Use both frozen and deepfrozen modules. (default: uses only deepfrozen modules)")$/;" v +help Tools/clinic/clinic.py /^ help="enable verbose mode")$/;" v +help Tools/clinic/clinic.py /^ help="force output regeneration")$/;" v +help Tools/clinic/clinic.py /^ help="redirect file output to OUTPUT")$/;" v +help Tools/clinic/clinic.py /^ help="the directory tree to walk in --make mode")$/;" v +help Tools/clinic/clinic.py /^ help="the list of files to process")$/;" v +help Tools/clinic/clinic.py /^ help="walk --srcdir to run over all relevant files")$/;" v +help Tools/clinic/clinic.py /^ help=("print a list of all supported converters "$/;" v +help Tools/i18n/makelocalealias.py /^ help='location of the X11 alias file '$/;" v +help Tools/i18n/makelocalealias.py /^ help='location of the glibc SUPPORTED locales file '$/;" v +help Tools/importbench/importbench.py /^ help='file to read benchmark data from to compare '$/;" v +help Tools/importbench/importbench.py /^ help='file to write benchmark data to')$/;" v +help Tools/importbench/importbench.py /^ help='specific benchmark to run')$/;" v +help Tools/patchcheck/patchcheck.py /^ help='Perform pass\/fail checks')$/;" v +help Tools/peg_generator/pegen/__main__.py /^ help="Compile generated C code into an extension module",$/;" v +help Tools/peg_generator/pegen/__main__.py /^ help="Print timing stats; repeat for more debug output",$/;" v +help Tools/peg_generator/pegen/__main__.py /^ help="Suppress code emission for rule actions",$/;" v +help Tools/peg_generator/pegen/__main__.py /^ help="Where to write the generated parser",$/;" v +help Tools/peg_generator/scripts/benchmark.py /^ help="Which target to use for the benchmark (default is xxl.py)",$/;" v +help Tools/peg_generator/scripts/grammar_grapher.py /^ help="Choose the grammar's start rule (exec, eval or single)",$/;" v +help Tools/ssl/multissltests.py /^ help="Base directory for OpenSSL \/ LibreSSL sources and builds."$/;" v +help Tools/ssl/multissltests.py /^ help="Disable network tests."$/;" v +help Tools/ssl/multissltests.py /^ help="Don't test OpenSSL and LibreSSL versions without upstream support",$/;" v +help Tools/ssl/multissltests.py /^ help="Enable debug logging",$/;" v +help Tools/ssl/multissltests.py /^ help="Force build and installation."$/;" v +help Tools/ssl/multissltests.py /^ help="Keep original sources for debugging."$/;" v +help Tools/ssl/multissltests.py /^ help="Override the automatic system type detection."$/;" v +help Tools/ssl/multissltests.py /^ help="Python tests to run, defaults to all SSL related tests.",$/;" v +help Tools/ssl/multissltests.py /^ help=($/;" v +help Tools/stringbench/stringbench.py /^ help="only do 8-bit string benchmarks")$/;" v +help Tools/stringbench/stringbench.py /^ help="only do Unicode string benchmarks")$/;" v +help Tools/stringbench/stringbench.py /^ help="skip regular expression tests")$/;" v class:UnsupportedType +help Tools/wasm/wasm_assets.py /^ help="install prefix",$/;" v +help Tools/wasm/wasm_build.py /^ help="Clean build directories first",$/;" v +help Tools/wasm/wasm_build.py /^ help="Run configure and make in silent mode",$/;" v +help Tools/wasm/wasm_build.py /^ help="Verbose logging",$/;" v +help Tools/wasm/wasm_build.py /^ help=($/;" v +help Tools/wasm/wasm_build.py /^ help=f"Build platform: {', '.join(platforms_help)}",$/;" v +help Tools/wasm/wasm_build.py /^ help=f"operation (default: build)\\n\\n{ops_help}",$/;" v +help_EOF Lib/pstats.py /^ def help_EOF(self):$/;" m class:f8.ProfileBrowser +help_add Lib/pstats.py /^ def help_add(self):$/;" m class:f8.ProfileBrowser +help_add Lib/test/test_cmd.py /^ def help_add(self):$/;" m class:samplecmdclass +help_callees Lib/pstats.py /^ def help_callees(self):$/;" m class:f8.ProfileBrowser +help_callers Lib/pstats.py /^ def help_callers(self):$/;" m class:f8.ProfileBrowser +help_dialog Lib/idlelib/editor.py /^ def help_dialog(self, event=None):$/;" m class:EditorWindow +help_dialog Lib/idlelib/macosx.py /^ def help_dialog(event=None):$/;" f function:overrideRootMenu +help_entries Lib/turtledemo/__main__.py /^help_entries = ( # (help_label, help_doc)$/;" v +help_exec Lib/pdb.py /^ def help_exec(self):$/;" m class:Pdb +help_help Lib/pstats.py /^ def help_help(self):$/;" m class:f8.ProfileBrowser +help_inputtype Lib/test/test_urllib.py /^ def help_inputtype(self, given, test_type):$/;" m class:urlencode_Tests +help_life Lib/test/test_cmd.py /^ def help_life(self):$/;" m class:samplecmdclass +help_meaning Lib/test/test_cmd.py /^ def help_meaning(self):$/;" m class:samplecmdclass +help_pages Lib/idlelib/configdialog.py /^help_pages = {$/;" v +help_pdb Lib/pdb.py /^ def help_pdb(self):$/;" m class:Pdb +help_quit Lib/pstats.py /^ def help_quit(self):$/;" m class:f8.ProfileBrowser +help_read Lib/pstats.py /^ def help_read(self):$/;" m class:f8.ProfileBrowser +help_reverse Lib/pstats.py /^ def help_reverse(self):$/;" m class:f8.ProfileBrowser +help_sort Lib/pstats.py /^ def help_sort(self):$/;" m class:f8.ProfileBrowser +help_source_selected Lib/idlelib/configdialog.py /^ def help_source_selected(self, event):$/;" m class:HelpFrame +help_stats Lib/pstats.py /^ def help_stats(self):$/;" m class:f8.ProfileBrowser +help_strip Lib/pstats.py /^ def help_strip(self):$/;" m class:f8.ProfileBrowser +help_url Lib/idlelib/editor.py /^ help_url = None$/;" v class:EditorWindow +helper Lib/contextlib.py /^ def helper(*args, **kwds):$/;" f function:asynccontextmanager +helper Lib/contextlib.py /^ def helper(*args, **kwds):$/;" f function:contextmanager +helper Lib/test/profilee.py /^def helper():$/;" f +helper Lib/test/test_marshal.py /^ def helper(self, sample, *extra):$/;" m class:HelperMixin +helper Lib/test/test_os.py /^ def helper(self):$/;" f function:TestInvalidFD.get_single +helper Lib/test/test_strptime.py /^ def helper(self, directive, position):$/;" m class:StrptimeTests +helper Lib/test/test_with.py /^ def helper(*args, **kwds):$/;" f function:mock_contextmanager +helper1 Lib/test/profilee.py /^def helper1():$/;" f +helper2 Lib/test/profilee.py /^def helper2():$/;" f +helper2_indirect Lib/test/profilee.py /^def helper2_indirect():$/;" f +helper3 Lib/test/test_marshal.py /^ def helper3(self, rsample, recursive=False, simple=False):$/;" m class:InstancingTestCase +helper_keys_contained Lib/test/test_dict.py /^ def helper_keys_contained(self, fn):$/;" m class:DictTest +helplist_item_add Lib/idlelib/configdialog.py /^ def helplist_item_add(self):$/;" m class:HelpFrame +helplist_item_edit Lib/idlelib/configdialog.py /^ def helplist_item_edit(self):$/;" m class:HelpFrame +helplist_item_remove Lib/idlelib/configdialog.py /^ def helplist_item_remove(self):$/;" m class:HelpFrame +hercules Lib/test/test_asyncio/test_taskgroups.py /^ async def hercules():$/;" f function:TestTaskGroup.test_taskgroup_25 +here Lib/test/make_ssl_certs.py /^here = os.path.abspath(os.path.dirname(__file__))$/;" v +here Lib/test/ssl_servers.py /^here = os.path.dirname(__file__)$/;" v +here Lib/test/test_coroutines.py /^ def here(self):$/;" m class:OriginTrackingTest +here Lib/test/test_httplib.py /^here = os.path.dirname(__file__)$/;" v +here Lib/test/test_pydoc.py /^ here = 'present!'$/;" v class:PydocWithMetaClasses.test_buggy_dir.C +here Lib/test/test_urllib2_localnet.py /^here = os.path.dirname(__file__)$/;" v +here Tools/buildbot/remoteDeploy.bat /^set here=%~dp0$/;" v +here Tools/buildbot/remotePythonInfo.bat /^set here=%~dp0$/;" v +here Tools/buildbot/test.bat /^set here=%~dp0$/;" v +hex Lib/test/test_enum.py /^ def hex(self):$/;" m class:TestSpecial.test_extending3.Color +hex Lib/uuid.py /^ def hex(self):$/;" m class:UUID +hex Tools/cases_generator/lexer.py /^hex = r'0[xX][0-9a-fA-F]+'$/;" v +hex_decode Lib/encodings/hex_codec.py /^def hex_decode(input, errors='strict'):$/;" f +hex_encode Lib/encodings/hex_codec.py /^def hex_encode(input, errors='strict'):$/;" f +hex_from_char Objects/floatobject.c /^hex_from_char(char c) {$/;" f file: +hexdigest Lib/hmac.py /^ def hexdigest(self):$/;" m class:HMAC +hexdigits Lib/string.py /^hexdigits = digits + 'abcdef' + 'ABCDEF'$/;" v +hexdigits Tools/gdb/libpython.py /^hexdigits = "0123456789abcdef"$/;" v +hexescape Lib/test/test_urllib.py /^def hexescape(char):$/;" f +hexint Lib/test/test_descr.py /^ class hexint(int):$/;" c function:.test_basic_inheritance +hexint Tools/build/generate_re_casefix.py /^class hexint(int):$/;" c +hexrepr Tools/unicode/gencodec.py /^def hexrepr(t, precision=4):$/;" f +hexstr Lib/test/test_hashlib.py /^def hexstr(s):$/;" f +hglob Lib/test/test_glob.py /^ def hglob(self, *parts, **kwargs):$/;" m class:GlobTests +hi Modules/_decimal/libmpdec/mpdecimal.h /^ uint64_t hi;$/;" m struct:__anon342 +hi Modules/mathmodule.c /^typedef struct { double hi; double lo; double tiny; } TripleLength;$/;" m struct:__anon303 file: +hi Modules/mathmodule.c /^typedef struct{ double hi; double lo; } DoubleLength;$/;" m struct:__anon302 file: +hi$ Modules/_decimal/libmpdec/vcdiv64.asm /^hi$ = 24$/;" d +hi0bits Python/dtoa.c /^hi0bits(ULong x)$/;" f file: +hi_iter Include/internal/pycore_hamt.h /^ PyHamtIteratorState hi_iter;$/;" m struct:__anon14 +hi_obj Include/internal/pycore_hamt.h /^ PyHamtObject *hi_obj;$/;" m struct:__anon14 +hi_yield Include/internal/pycore_hamt.h /^ binaryfunc hi_yield;$/;" m struct:__anon14 +hide Lib/tkinter/tix.py /^ def hide(self, widget):$/;" m class:ResizeHandle +hide Lib/tkinter/ttk.py /^ def hide(self, tab_id):$/;" m class:Notebook +hideTkConsole Lib/idlelib/macosx.py /^def hideTkConsole(root):$/;" f +hide_emit_errors Tools/c-analyzer/c_common/logging.py /^def hide_emit_errors():$/;" f +hide_entry Lib/tkinter/tix.py /^ def hide_entry(self, entry):$/;" m class:HList +hide_event Lib/idlelib/autocomplete_w.py /^ def hide_event(self, event):$/;" m class:AutoCompleteWindow +hide_event Lib/idlelib/calltip_w.py /^ def hide_event(self, event):$/;" m class:CalltipWindow +hide_sidebar Lib/idlelib/sidebar.py /^ def hide_sidebar(self):$/;" m class:BaseSideBar +hide_window Lib/idlelib/autocomplete_w.py /^ def hide_window(self):$/;" m class:AutoCompleteWindow +hide_window Lib/idlelib/idle_test/test_autocomplete.py /^ hide_window = Func()$/;" v class:AutoCompleteTest.dummy_acw +hidetip Lib/idlelib/calltip_w.py /^ def hidetip(self):$/;" m class:CalltipWindow +hidetip Lib/idlelib/tooltip.py /^ def hidetip(self):$/;" m class:OnHoverTooltipBase +hidetip Lib/idlelib/tooltip.py /^ def hidetip(self):$/;" m class:TooltipBase +hideturtle Lib/turtle.py /^ def hideturtle(self):$/;" m class:TPen +high Modules/_hacl/include/krml/types.h /^ uint64_t high;$/;" m struct:FStar_UInt128_uint128_s +highPriority PC/launcher2.c /^ bool highPriority;$/;" m struct:EnvironmentInfo file: +highest Lib/test/test_type_comments.py /^ highest = sys.version_info[1] # Highest minor version$/;" v class:TypeCommentTests +highlight Lib/cgitb.py /^ highlight = {}$/;" v +highlight_language Doc/conf.py /^highlight_language = 'python3'$/;" v +highpage Lib/idlelib/idle_test/test_configdialog.py /^highpage = changes['highlight']$/;" v +hilbert Lib/turtledemo/fractalcurves.py /^ def hilbert(self, size, level, parity):$/;" m class:CurvesTurtle +hint Python/bytecodes.c /^static uint16_t invert, counter, index, hint;$/;" v file: +history_next Lib/idlelib/history.py /^ def history_next(self, event):$/;" m class:History +history_prev Lib/idlelib/history.py /^ def history_prev(self, event):$/;" m class:History +hit Include/pystats.h /^ uint64_t hit;$/;" m struct:_specialization_stats +hit_eof Lib/test/test_tarfile.py /^ hit_eof = False$/;" v class:Bz2PartialReadTest._test_partial_input.MyBytesIO +hits Modules/_functoolsmodule.c /^ Py_ssize_t hits;$/;" m struct:lru_cache_object file: +hive PC/launcher2.c /^ HKEY hive;$/;" m struct:RegistrySearchInfo file: +hkey PC/winreg.c /^ HKEY hkey;$/;" m struct:__anon283 file: +hkey_mod Tools/c-analyzer/distutils/msvccompiler.py /^ hkey_mod = win32con$/;" v +hkey_mod Tools/c-analyzer/distutils/msvccompiler.py /^ hkey_mod = winreg$/;" v +hls_to_rgb Lib/colorsys.py /^def hls_to_rgb(h, l, s):$/;" f +hmactest Lib/test/test_hmac.py /^ def hmactest(key, data, hexdigests):$/;" f function:TestVectorsTestCase._rfc4231_test_cases +holder Lib/test/test_unittest/testmock/testpatch.py /^ class holder:$/;" c function:PatchTest.test_patch_propagates_exc_on_exit +holds_gil Python/pystate.c /^holds_gil(PyThreadState *tstate)$/;" f file: +home Include/cpython/initconfig.h /^ wchar_t *home;$/;" m struct:PyConfig +home Lib/pathlib.py /^ def home(cls):$/;" m class:Path +home Lib/test/test_getpath.py /^ home=None,$/;" v +home Lib/turtle.py /^ def home(self):$/;" m class:TNavigator +home Modules/getpath.py /^ home = pth_dir$/;" v +home Modules/getpath.py /^ home = ENV_PYTHONHOME$/;" v +home Modules/getpath.py /^home = config.get('home')$/;" v +home Python/pathconfig.c /^ wchar_t *home;$/;" m struct:_PyPathConfig file: +home_callback Lib/idlelib/editor.py /^ def home_callback(self, event):$/;" m class:EditorWindow +home_was_set Modules/getpath.py /^ home_was_set = True$/;" v +home_was_set Modules/getpath.py /^home_was_set = False$/;" v +hook Lib/test/audit-tests.py /^ def hook(event, *args):$/;" f function:test_sqlite3 +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_excepthook +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_gc +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_http_client +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_socket +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_sys_getframe +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_sys_getframemodulename +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_sys_monitoring_register_callback +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_syslog +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_threading +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_threading_abort +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_unraisablehook +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_winreg +hook Lib/test/audit-tests.py /^ def hook(event, args):$/;" f function:test_wmi_exec_query +hook Lib/test/test_importlib/extension/test_path_hook.py /^ def hook(self, entry):$/;" m class:PathHookTests +hook Lib/test/test_importlib/util.py /^ def hook(entry):$/;" f function:mock_path_hook +hook Lib/test/test_threading.py /^ def hook(hook_args):$/;" f function:ExceptHookTests.test_custom_excepthook +hookCFunction Include/internal/pycore_runtime.h /^ Py_AuditHookFunction hookCFunction;$/;" m struct:_Py_AuditHookEntry +hook_calloc Modules/_testcapi/mem.c /^hook_calloc(void *ctx, size_t nelem, size_t elsize)$/;" f file: +hook_compressed Lib/fileinput.py /^def hook_compressed(filename, mode, *, encoding=None, errors=None):$/;" f +hook_encoded Lib/fileinput.py /^def hook_encoded(encoding, errors=None):$/;" f +hook_fcalloc Modules/_testcapi/mem.c /^hook_fcalloc(void *ctx, size_t nelem, size_t elsize)$/;" f file: +hook_ffree Modules/_testcapi/mem.c /^hook_ffree(void *ctx, void *ptr)$/;" f file: +hook_fmalloc Modules/_testcapi/mem.c /^hook_fmalloc(void *ctx, size_t size)$/;" f file: +hook_frealloc Modules/_testcapi/mem.c /^hook_frealloc(void *ctx, void *ptr, size_t new_size)$/;" f file: +hook_free Modules/_testcapi/mem.c /^hook_free(void *ctx, void *ptr)$/;" f file: +hook_func Lib/test/test_sys.py /^ def hook_func(*args):$/;" f function:UnraisableHookTest.test_custom_unraisablehook_fail +hook_func Lib/test/test_sys.py /^ def hook_func(args):$/;" f function:UnraisableHookTest.test_custom_unraisablehook +hook_malloc Modules/_testcapi/mem.c /^hook_malloc(void *ctx, size_t size)$/;" f file: +hook_realloc Modules/_testcapi/mem.c /^hook_realloc(void *ctx, void *ptr, size_t new_size)$/;" f file: +hooktester Lib/test/test_urllib.py /^ def hooktester(block_count, block_read_size, file_size, _report=report):$/;" f function:urlretrieve_FileTests.test_reporthook_0_bytes +hooktester Lib/test/test_urllib.py /^ def hooktester(block_count, block_read_size, file_size, _report=report):$/;" f function:urlretrieve_FileTests.test_reporthook_5_bytes +hooktester Lib/test/test_urllib.py /^ def hooktester(block_count, block_read_size, file_size, _report=report):$/;" f function:urlretrieve_FileTests.test_reporthook_8193_bytes +hooktester Lib/test/test_urllib.py /^ def hooktester(block_count, block_read_size, file_size, count_holder=[0]):$/;" f function:urlretrieve_FileTests.test_reporthook +hop_limit Lib/test/test_socket.py /^ hop_limit = 2$/;" v class:RFC3542AncillaryTest +host Lib/ftplib.py /^ host = ''$/;" v class:FTP +host Lib/imaplib.py /^ host = args[0]$/;" v +host Lib/test/test_imaplib.py /^ host = 'cyrus.andrew.cmu.edu'$/;" v class:RemoteIMAPTest +host Lib/test/test_socket.py /^ host = HOST$/;" v class:InetTestBase +host Lib/test/test_socket.py /^ host = socket_helper.HOSTv6$/;" v class:Inet6TestBase +host Tools/wasm/wasm_build.py /^ host=Host.build,$/;" v class:BuildProfile +hostent Lib/test/test_lib2to3/data/infinite_recursion.py /^class hostent(Structure):$/;" c +hostflags Modules/_ssl.c /^ unsigned int hostflags;$/;" m struct:__anon579 file: +hostmask Lib/ipaddress.py /^ def hostmask(self):$/;" m class:IPv4Interface +hostmask Lib/ipaddress.py /^ def hostmask(self):$/;" m class:IPv6Interface +hostmask Lib/ipaddress.py /^ def hostmask(self):$/;" m class:_BaseNetwork +hostname Lib/pydoc.py /^ hostname = val$/;" v class:cli.BadUsage +hostname Lib/pydoc.py /^ hostname = 'localhost'$/;" v class:cli.BadUsage +hostname Lib/urllib/parse.py /^ def hostname(self):$/;" m class:_NetlocResultMixinBase +hostname_checks_common_name Lib/ssl.py /^ def hostname_checks_common_name(self):$/;" f function:SSLContext.options +hostname_checks_common_name Lib/ssl.py /^ def hostname_checks_common_name(self, value):$/;" f function:SSLContext.options +hosts Lib/ipaddress.py /^ def hosts(self):$/;" m class:IPv6Network +hosts Lib/ipaddress.py /^ def hosts(self):$/;" m class:_BaseNetwork +hour Lib/_pydatetime.py /^ def hour(self):$/;" m class:datetime +hour Lib/_pydatetime.py /^ def hour(self):$/;" m class:time +hour Modules/_zoneinfo.c /^ int8_t hour;$/;" m struct:__anon639 file: +hour Modules/_zoneinfo.c /^ int8_t hour;$/;" m struct:__anon640 file: +hsort Lib/test/test_heapq.py /^ def hsort(data, comp):$/;" f function:TestHeap.test_comparison_operator +hsv_to_rgb Lib/colorsys.py /^def hsv_to_rgb(h, s, v):$/;" f +ht Include/internal/pycore_hashtable.h /^PyAPI_FUNC(size_t) _Py_hashtable_size(const _Py_hashtable_t *ht);$/;" v +ht Include/internal/pycore_hashtable.h /^PyAPI_FUNC(void) _Py_hashtable_clear(_Py_hashtable_t *ht);$/;" v +ht Include/internal/pycore_hashtable.h /^PyAPI_FUNC(void) _Py_hashtable_destroy(_Py_hashtable_t *ht);$/;" v +ht Lib/turtle.py /^ ht = hideturtle$/;" v class:TPen +ht_cached_keys Include/cpython/object.h /^ struct _dictkeysobject *ht_cached_keys;$/;" m struct:_heaptypeobject typeref:struct:_heaptypeobject::_dictkeysobject +ht_module Include/cpython/object.h /^ PyObject *ht_module;$/;" m struct:_heaptypeobject +ht_name Include/cpython/object.h /^ PyObject *ht_name, *ht_slots, *ht_qualname;$/;" m struct:_heaptypeobject +ht_qualname Include/cpython/object.h /^ PyObject *ht_name, *ht_slots, *ht_qualname;$/;" m struct:_heaptypeobject +ht_slots Include/cpython/object.h /^ PyObject *ht_name, *ht_slots, *ht_qualname;$/;" m struct:_heaptypeobject +ht_type Include/cpython/object.h /^ PyTypeObject ht_type;$/;" m struct:_heaptypeobject +html Lib/cgitb.py /^def html(einfo, context=5):$/;" f +html Lib/pydoc.py /^html = HTMLDoc()$/;" v +html2text Lib/test/test_pydoc.py /^def html2text(html):$/;" f +html5 Lib/html/entities.py /^html5 = {$/;" v +html_additional_pages Doc/conf.py /^html_additional_pages = {$/;" v +html_context Doc/conf.py /^html_context = {$/;" v +html_error Lib/pydoc.py /^ def html_error(url, exc):$/;" f function:_url_handler +html_getobj Lib/pydoc.py /^ def html_getobj(url):$/;" f function:_url_handler +html_index Lib/pydoc.py /^ def html_index():$/;" f function:_url_handler +html_keywords Lib/pydoc.py /^ def html_keywords():$/;" f function:_url_handler +html_last_updated_fmt Doc/conf.py /^html_last_updated_fmt = '%b %d, %Y'$/;" v +html_navbar Lib/pydoc.py /^ def html_navbar():$/;" f function:_url_handler +html_search Lib/pydoc.py /^ def html_search(key):$/;" f function:_url_handler +html_short_title Doc/conf.py /^html_short_title = '%s Documentation' % release$/;" v +html_sidebars Doc/conf.py /^html_sidebars = {$/;" v +html_split_index Doc/conf.py /^html_split_index = True$/;" v +html_static_path Doc/conf.py /^html_static_path = ['_static', 'tools\/static']$/;" v +html_style Doc/conf.py /^ html_style = 'pydoctheme.css'$/;" v +html_theme Doc/conf.py /^html_theme = 'python_docs_theme'$/;" v +html_theme_options Doc/conf.py /^html_theme_options = {$/;" v +html_theme_path Doc/conf.py /^html_theme_path = ['tools']$/;" v +html_topicpage Lib/pydoc.py /^ def html_topicpage(topic):$/;" f function:_url_handler +html_topics Lib/pydoc.py /^ def html_topics():$/;" f function:_url_handler +html_use_opensearch Doc/conf.py /^html_use_opensearch = 'https:\/\/docs.python.org\/' + version$/;" v +htmlhelp_basename Doc/conf.py /^htmlhelp_basename = 'python' + release.replace('.', '')$/;" v +htmlview Doc/make.bat /^:htmlview$/;" l +htobe16 Modules/_hacl/include/krml/lowstar_endianness.h 28;" d +htobe16 Modules/_hacl/include/krml/lowstar_endianness.h 46;" d +htobe16 Modules/_hacl/include/krml/lowstar_endianness.h 64;" d +htobe16 Modules/_hacl/include/krml/lowstar_endianness.h 83;" d +htobe32 Modules/_hacl/include/krml/lowstar_endianness.h 106;" d +htobe32 Modules/_hacl/include/krml/lowstar_endianness.h 132;" d +htobe32 Modules/_hacl/include/krml/lowstar_endianness.h 33;" d +htobe32 Modules/_hacl/include/krml/lowstar_endianness.h 51;" d +htobe32 Modules/_hacl/include/krml/lowstar_endianness.h 69;" d +htobe32 Modules/_hacl/include/krml/lowstar_endianness.h 88;" d +htobe64 Modules/_hacl/include/krml/lowstar_endianness.h 116;" d +htobe64 Modules/_hacl/include/krml/lowstar_endianness.h 142;" d +htobe64 Modules/_hacl/include/krml/lowstar_endianness.h 23;" d +htobe64 Modules/_hacl/include/krml/lowstar_endianness.h 41;" d +htobe64 Modules/_hacl/include/krml/lowstar_endianness.h 74;" d +htobe64 Modules/_hacl/include/krml/lowstar_endianness.h 93;" d +htole16 Modules/_hacl/include/krml/lowstar_endianness.h 26;" d +htole16 Modules/_hacl/include/krml/lowstar_endianness.h 44;" d +htole16 Modules/_hacl/include/krml/lowstar_endianness.h 65;" d +htole16 Modules/_hacl/include/krml/lowstar_endianness.h 84;" d +htole32 Modules/_hacl/include/krml/lowstar_endianness.h 108;" d +htole32 Modules/_hacl/include/krml/lowstar_endianness.h 130;" d +htole32 Modules/_hacl/include/krml/lowstar_endianness.h 31;" d +htole32 Modules/_hacl/include/krml/lowstar_endianness.h 49;" d +htole32 Modules/_hacl/include/krml/lowstar_endianness.h 70;" d +htole32 Modules/_hacl/include/krml/lowstar_endianness.h 89;" d +htole64 Modules/_hacl/include/krml/lowstar_endianness.h 118;" d +htole64 Modules/_hacl/include/krml/lowstar_endianness.h 140;" d +htole64 Modules/_hacl/include/krml/lowstar_endianness.h 21;" d +htole64 Modules/_hacl/include/krml/lowstar_endianness.h 39;" d +htole64 Modules/_hacl/include/krml/lowstar_endianness.h 75;" d +htole64 Modules/_hacl/include/krml/lowstar_endianness.h 94;" d +http2time Lib/http/cookiejar.py /^def http2time(text):$/;" f +http_error Lib/test/test_patma.py /^ def http_error(status):$/;" f function:TestPatma.test_patma_174 +http_error Lib/test/test_patma.py /^ def http_error(status):$/;" f function:TestPatma.test_patma_175 +http_error Lib/urllib/request.py /^ def http_error(self, url, fp, errcode, errmsg, headers, data=None):$/;" m class:URLopener +http_error_301 Lib/urllib/request.py /^ def http_error_301(self, url, fp, errcode, errmsg, headers, data=None):$/;" m class:FancyURLopener +http_error_302 Lib/urllib/request.py /^ def http_error_302(self, req, fp, code, msg, headers):$/;" m class:HTTPRedirectHandler +http_error_302 Lib/urllib/request.py /^ def http_error_302(self, url, fp, errcode, errmsg, headers, data=None):$/;" m class:FancyURLopener +http_error_303 Lib/urllib/request.py /^ def http_error_303(self, url, fp, errcode, errmsg, headers, data=None):$/;" m class:FancyURLopener +http_error_307 Lib/urllib/request.py /^ def http_error_307(self, url, fp, errcode, errmsg, headers, data=None):$/;" m class:FancyURLopener +http_error_308 Lib/urllib/request.py /^ def http_error_308(self, url, fp, errcode, errmsg, headers, data=None):$/;" m class:FancyURLopener +http_error_401 Lib/test/test_urllib2.py /^ def http_error_401(self, *args, **kwds):$/;" m class:HandlerTests.test_basic_and_digest_auth_handlers.TestBasicAuthHandler +http_error_401 Lib/test/test_urllib2.py /^ def http_error_401(self, *args, **kwds):$/;" m class:HandlerTests.test_basic_and_digest_auth_handlers.TestDigestAuthHandler +http_error_401 Lib/urllib/request.py /^ def http_error_401(self, req, fp, code, msg, headers):$/;" m class:HTTPBasicAuthHandler +http_error_401 Lib/urllib/request.py /^ def http_error_401(self, req, fp, code, msg, headers):$/;" m class:HTTPDigestAuthHandler +http_error_401 Lib/urllib/request.py /^ def http_error_401(self, url, fp, errcode, errmsg, headers, data=None,$/;" m class:FancyURLopener +http_error_407 Lib/urllib/request.py /^ def http_error_407(self, req, fp, code, msg, headers):$/;" m class:ProxyBasicAuthHandler +http_error_407 Lib/urllib/request.py /^ def http_error_407(self, req, fp, code, msg, headers):$/;" m class:ProxyDigestAuthHandler +http_error_407 Lib/urllib/request.py /^ def http_error_407(self, url, fp, errcode, errmsg, headers, data=None,$/;" m class:FancyURLopener +http_error_auth_reqed Lib/urllib/request.py /^ def http_error_auth_reqed(self, auth_header, host, req, headers):$/;" m class:AbstractDigestAuthHandler +http_error_auth_reqed Lib/urllib/request.py /^ def http_error_auth_reqed(self, authreq, host, req, headers):$/;" m class:AbstractBasicAuthHandler +http_error_default Lib/urllib/request.py /^ def http_error_default(self, req, fp, code, msg, hdrs):$/;" m class:HTTPDefaultErrorHandler +http_error_default Lib/urllib/request.py /^ def http_error_default(self, url, fp, errcode, errmsg, headers):$/;" m class:FancyURLopener +http_error_default Lib/urllib/request.py /^ def http_error_default(self, url, fp, errcode, errmsg, headers):$/;" m class:URLopener +http_multi_server Lib/test/test_xmlrpc.py /^def http_multi_server(evt, numrequests, requestHandler=None):$/;" f +http_open Lib/test/test_urllib2.py /^ def http_open(self, req):$/;" m class:HandlerTests.test_redirect_encoding.Handler +http_open Lib/test/test_urllib2.py /^ def http_open(self, req):$/;" m class:MockHTTPHandler +http_open Lib/test/test_urllib2.py /^ def http_open(self, req):$/;" m class:MockHTTPHandlerCheckAuth +http_open Lib/test/test_urllib2.py /^ def http_open(self, req):$/;" m class:MockHTTPHandlerRedirect +http_open Lib/urllib/request.py /^ def http_open(self, req):$/;" m class:HTTPHandler +http_request Lib/urllib/request.py /^ def http_request(self, req):$/;" m class:AbstractBasicAuthHandler +http_request Lib/urllib/request.py /^ def http_request(self, request):$/;" m class:HTTPCookieProcessor +http_request Lib/urllib/request.py /^ http_request = AbstractHTTPHandler.do_request_$/;" v class:HTTPHandler +http_response Lib/urllib/request.py /^ def http_response(self, req, response):$/;" m class:AbstractBasicAuthHandler +http_response Lib/urllib/request.py /^ def http_response(self, request, response):$/;" m class:HTTPCookieProcessor +http_response Lib/urllib/request.py /^ def http_response(self, request, response):$/;" m class:HTTPErrorProcessor +http_server Lib/test/test_xmlrpc.py /^def http_server(evt, numrequests, requestHandler=None, encoding=None):$/;" f +http_server_with_basic_auth_handler Lib/test/test_urllib2_localnet.py /^ def http_server_with_basic_auth_handler(*args, **kwargs):$/;" f function:BasicAuthTests.setUp +http_version Lib/wsgiref/handlers.py /^ http_version = "1.0" # Version that should be used for response$/;" v class:BaseHandler +https_open Lib/test/test_urllib2.py /^ def https_open(self, req):$/;" m class:MockHTTPHandlerRedirect.MockHTTPSHandler +https_open Lib/urllib/request.py /^ def https_open(self, req):$/;" m class:.HTTPSHandler +https_request Lib/urllib/request.py /^ https_request = AbstractHTTPHandler.do_request_$/;" v class:.HTTPSHandler +https_request Lib/urllib/request.py /^ https_request = http_request$/;" v class:AbstractBasicAuthHandler +https_request Lib/urllib/request.py /^ https_request = http_request$/;" v class:HTTPCookieProcessor +https_response Lib/urllib/request.py /^ https_response = http_response$/;" v class:AbstractBasicAuthHandler +https_response Lib/urllib/request.py /^ https_response = http_response$/;" v class:HTTPCookieProcessor +https_response Lib/urllib/request.py /^ https_response = http_response$/;" v class:HTTPErrorProcessor +huge Lib/test/test_json/test_enum.py /^ huge = HUGE$/;" v class:BigNum +huge_zipfile Lib/test/test_zipfile/_path/test_path.py /^ def huge_zipfile(self):$/;" m class:TestPath +human_text_bytes Tools/stringbench/stringbench.py /^human_text_bytes = bytes_from_str(human_text)$/;" v +human_text_unicode Tools/stringbench/stringbench.py /^human_text_unicode = unicode_from_str(human_text)$/;" v +huntrleaks Lib/test/libregrtest/cmdline.py /^def huntrleaks(string):$/;" f +hv Modules/socketmodule.h /^ SOCKADDR_HV hv;$/;" m union:sock_addr +hw Lib/idlelib/idle_test/test_text.py /^ hw = 'hello\\nworld' # Several tests insert this after initialization.$/;" v class:TextTest +hwn Lib/idlelib/idle_test/test_text.py /^ hwn = hw+'\\n' # \\n present at initialization, before insert$/;" v class:TextTest +hydra Lib/test/test_asyncio/test_taskgroups.py /^ async def hydra(g):$/;" f function:TestTaskGroup.test_taskgroup_25 +hz Modules/cjkcodecs/_codecs_cn.c 15;" d file: +i Lib/test/test_coroutines.py /^ i = 0$/;" v class:CoroutineTest.test_for_stop_iteration.AIter +i Lib/test/test_coroutines.py /^ i = 0$/;" v class:CoroutineTest.test_for_tuple.AIter +i Lib/test/test_dataclasses.py /^ i = 0$/;" v class:TestCase.test_no_fields_but_member_variable.C +i Lib/test/test_enum.py /^ i = int$/;" v class:TestSpecial.test_enum_of_types.MyTypes +i Lib/test/test_enum.py /^ i = int$/;" v class:TestSpecial.test_enum_of_types_with_nonmember.MyTypes +i Lib/test/test_functools.py /^ def i(arg):$/;" f function:TestSingleDispatch.test_annotations +i Lib/test/test_functools.py /^ def i(arg):$/;" f function:TestSingleDispatch.test_invalid_registrations +i Lib/test/test_functools.py /^ def i(arg):$/;" f function:TestSingleDispatch.test_mro_conflicts +i Lib/test/test_sys_setprofile.py /^ def i():$/;" f function:ProfileHookTestCase.test_distant_exception +i Lib/test/test_sys_setprofile.py /^ def i():$/;" f function:ProfileSimulatorTestCase.test_distant_exception +i Modules/_ctypes/callproc.c /^ int i;$/;" m union:result file: +i Modules/_ctypes/ctypes.h /^ int i;$/;" m union:value +i Modules/_ctypes/ctypes.h /^ int i;$/;" m union:tagPyCArgObject::__anon496 +i Modules/getpath.py /^ i = 0$/;" v +i Objects/stringlib/localeutil.h /^ Py_ssize_t i; \/* Where we're currently pointing in grouping. *\/$/;" m struct:__anon702 +i2b Python/dtoa.c /^i2b(int i)$/;" f file: +iInc Python/dtoa.c 2617;" d file: +i_except Include/internal/pycore_flowgraph.h /^ struct _PyCfgBasicblock_ *i_except; \/* target block when exception is raised *\/$/;" m struct:__anon167 typeref:struct:__anon167::_PyCfgBasicblock_ +i_except_handler_info Include/internal/pycore_compile.h /^ _PyCompile_ExceptHandlerInfo i_except_handler_info;$/;" m struct:__anon152 +i_get Modules/_ctypes/cfield.c /^i_get(void *ptr, Py_ssize_t size)$/;" f file: +i_get_sw Modules/_ctypes/cfield.c /^i_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +i_getitem Modules/arraymodule.c /^i_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +i_level Include/internal/pycore_hamt.h /^ int8_t i_level;$/;" m struct:__anon13 +i_loc Include/internal/pycore_compile.h /^ _PyCompilerSrcLocation i_loc;$/;" m struct:__anon152 +i_loc Include/internal/pycore_flowgraph.h /^ _PyCompilerSrcLocation i_loc;$/;" m struct:__anon167 +i_nodes Include/internal/pycore_hamt.h /^ PyHamtNode *i_nodes[_Py_HAMT_MAX_TREE_DEPTH];$/;" m struct:__anon13 +i_oparg Include/internal/pycore_compile.h /^ int i_oparg;$/;" m struct:__anon152 +i_oparg Include/internal/pycore_flowgraph.h /^ int i_oparg;$/;" m struct:__anon167 +i_opcode Include/internal/pycore_compile.h /^ int i_opcode;$/;" m struct:__anon152 +i_opcode Include/internal/pycore_flowgraph.h /^ int i_opcode;$/;" m struct:__anon167 +i_pos Include/internal/pycore_hamt.h /^ Py_ssize_t i_pos[_Py_HAMT_MAX_TREE_DEPTH];$/;" m struct:__anon13 +i_set Modules/_ctypes/cfield.c /^i_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +i_set_sw Modules/_ctypes/cfield.c /^i_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +i_setitem Modules/arraymodule.c /^i_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +i_target Include/internal/pycore_flowgraph.h /^ struct _PyCfgBasicblock_ *i_target; \/* target block (if jump instruction) *\/$/;" m struct:__anon167 typeref:struct:__anon167::_PyCfgBasicblock_ +iadd Lib/operator.py /^def iadd(a, b):$/;" f +iadd Lib/test/test_unittest/testmock/testmagicmethods.py /^ def iadd(mock):$/;" f function:TestMockingMagicMethods.test_numeric +iand Lib/operator.py /^def iand(a, b):$/;" f +icon Lib/idlelib/grep.py /^ icon = "Grep"$/;" v class:GrepDialog +icon Lib/idlelib/replace.py /^ icon = "Replace"$/;" v class:ReplaceDialog +icon Lib/idlelib/searchbase.py /^ icon = "Search"$/;" v class:SearchDialogBase +iconbitmap Lib/tkinter/__init__.py /^ iconbitmap = wm_iconbitmap$/;" v class:Wm +iconcat Lib/operator.py /^def iconcat(a, b):$/;" f +iconify Lib/tkinter/__init__.py /^ iconify = wm_iconify$/;" v class:Wm +iconmask Lib/tkinter/__init__.py /^ iconmask = wm_iconmask$/;" v class:Wm +iconname Lib/tkinter/__init__.py /^ iconname = wm_iconname$/;" v class:Wm +iconphoto Lib/tkinter/__init__.py /^ iconphoto = wm_iconphoto$/;" v class:Wm +iconposition Lib/tkinter/__init__.py /^ iconposition = wm_iconposition$/;" v class:Wm +iconwindow Lib/tkinter/__init__.py /^ iconwindow = wm_iconwindow$/;" v class:Wm +icount Modules/ossaudiodev.c /^ Py_ssize_t icount; \/* input count *\/$/;" m struct:__anon471 file: +icursor Lib/tkinter/__init__.py /^ def icursor(self, *args):$/;" m class:Canvas +icursor Lib/tkinter/__init__.py /^ def icursor(self, index):$/;" m class:Entry +icursor Lib/tkinter/__init__.py /^ def icursor(self, index):$/;" m class:Spinbox +id Include/cpython/pystate.h /^ uint64_t id;$/;" m struct:_ts +id Include/internal/pycore_ast.h /^ identifier id;$/;" m struct:_expr::__anon77::__anon101 +id Include/internal/pycore_ast_state.h /^ PyObject *id;$/;" m struct:ast_state +id Include/internal/pycore_flowgraph.h /^ int id;$/;" m struct:__anon168 +id Include/internal/pycore_interp.h /^ int64_t id;$/;" m struct:_is +id Lib/doctest.py /^ def id(self):$/;" m class:DocFileCase +id Lib/doctest.py /^ def id(self):$/;" m class:DocTestCase +id Lib/test/support/interpreters.py /^ def id(self):$/;" m class:Interpreter +id Lib/test/support/interpreters.py /^ def id(self):$/;" m class:_ChannelEnd +id Lib/test/test_capi/test_misc.py /^ id = _testcapi.instancemethod(id)$/;" v class:InstanceMethod +id Lib/test/test_support.py /^ def id(self):$/;" m class:TestSupport.test_match_test.Test +id Lib/unittest/case.py /^ def id(self):$/;" m class:FunctionTestCase +id Lib/unittest/case.py /^ def id(self):$/;" m class:TestCase +id Lib/unittest/case.py /^ def id(self):$/;" m class:_SubTest +id Lib/unittest/suite.py /^ def id(self):$/;" m class:_ErrorHolder +id Modules/_tkinter.c /^ int id;$/;" m struct:_fhcdata file: +id Modules/_xxinterpchannelsmodule.c /^ int64_t id;$/;" m struct:_channelid_xid file: +id Modules/_xxinterpchannelsmodule.c /^ int64_t id;$/;" m struct:_channelref file: +id Modules/_xxinterpchannelsmodule.c /^ int64_t id;$/;" m struct:channelid file: +id Modules/expat/xmlparse.c /^ const ATTRIBUTE_ID *id;$/;" m struct:__anon614 file: +id Objects/interpreteridobject.c /^ int64_t id;$/;" m struct:interpid file: +id Python/fileutils.c /^ FILE_ID_128 id;$/;" m union:__anon669 file: +id Tools/c-analyzer/c_parser/info.py /^ def id(self):$/;" m class:HighlevelParsedItem +id Tools/c-analyzer/c_parser/info.py /^ def id(self):$/;" m class:ParsedItem +idAtt Modules/expat/xmlparse.c /^ const ATTRIBUTE_ID *idAtt;$/;" m struct:__anon616 file: +id_128_to_ino Python/fileutils.c /^} id_128_to_ino;$/;" t typeref:union:__anon669 file: +id_mutex Include/internal/pycore_interp.h /^ PyThread_type_lock id_mutex;$/;" m struct:_is +id_re Tools/cases_generator/lexer.py /^id_re = r'[a-zA-Z_][0-9a-zA-Z_]*'$/;" v +id_refcount Include/internal/pycore_interp.h /^ int64_t id_refcount;$/;" m struct:_is +id_t Lib/test/test_lib2to3/data/infinite_recursion.py /^id_t = __darwin_id_t$/;" v +idb_adap_oid Lib/idlelib/debugger_r.py /^idb_adap_oid = "idb_adapter"$/;" v +iden Lib/test/test_descr.py /^ def iden(self):$/;" f function:.test_special_method_lookup +ident Lib/logging/handlers.py /^ ident = '' # prepended to all messages$/;" v class:SysLogHandler +ident Lib/multiprocessing/process.py /^ def ident(self):$/;" m class:BaseProcess +ident Lib/multiprocessing/process.py /^ def ident(self):$/;" m class:_ParentProcess +ident Lib/test/test_coroutines.py /^ def ident(val):$/;" f function:CoroutineTest.test_await_11 +ident Lib/test/test_sys_setprofile.py /^def ident(function):$/;" f +ident Lib/threading.py /^ def ident(self):$/;" m class:Thread +identchars Lib/cmd.py /^ identchars = IDENTCHARS$/;" v class:Cmd +identical Lib/test/test_float.py /^ def identical(self, x, y):$/;" m class:HexFloatTestCase +identifier Include/internal/pycore_asdl.h /^typedef PyObject * identifier;$/;" t +identifiers Include/internal/pycore_global_strings.h /^ } identifiers;$/;" m struct:_Py_global_strings typeref:struct:_Py_global_strings::__anon6 +identify Lib/tkinter/__init__.py /^ def identify(self, x, y):$/;" m class:PanedWindow +identify Lib/tkinter/__init__.py /^ def identify(self, x, y):$/;" m class:Scale +identify Lib/tkinter/__init__.py /^ def identify(self, x, y):$/;" m class:Scrollbar +identify Lib/tkinter/__init__.py /^ def identify(self, x, y):$/;" m class:Spinbox +identify Lib/tkinter/ttk.py /^ def identify(self, component, x, y):$/;" m class:Treeview +identify Lib/tkinter/ttk.py /^ def identify(self, x, y):$/;" m class:Entry +identify Lib/tkinter/ttk.py /^ def identify(self, x, y):$/;" m class:Notebook +identify Lib/tkinter/ttk.py /^ def identify(self, x, y):$/;" m class:Widget +identify_column Lib/tkinter/ttk.py /^ def identify_column(self, x):$/;" m class:Treeview +identify_element Lib/tkinter/ttk.py /^ def identify_element(self, x, y):$/;" m class:Treeview +identify_region Lib/tkinter/ttk.py /^ def identify_region(self, x, y):$/;" m class:Treeview +identify_row Lib/tkinter/ttk.py /^ def identify_row(self, y):$/;" m class:Treeview +identity Lib/argparse.py /^ def identity(string):$/;" f function:ArgumentParser.__init__ +identity Lib/test/_test_multiprocessing.py /^def identity(x):$/;" f +identity Lib/test/pickletester.py /^def identity(x):$/;" f +identity Lib/test/test_builtin.py /^ def identity(item):$/;" f function:BuiltinTest.test_filter +identity Lib/test/test_scope.py /^ def identity(x):$/;" f function:ScopeTests.testMixedFreevarsAndCellvars +idleConf Lib/idlelib/config.py /^idleConf = IdleConf()$/;" v +idleConf Lib/idlelib/idle_test/test_config.py /^idleConf = config.idleConf$/;" v +idle_credits Lib/idlelib/idle_test/test_help_about.py /^ idle_credits = About.show_idle_credits$/;" v class:Dummy_about_dialog +idle_formatwarning Lib/idlelib/run.py /^def idle_formatwarning(message, category, filename, lineno, line=None):$/;" f +idle_news Lib/idlelib/idle_test/test_help_about.py /^ idle_news = About.show_idle_news$/;" v class:Dummy_about_dialog +idle_readme Lib/idlelib/idle_test/test_help_about.py /^ idle_readme = About.show_readme$/;" v class:Dummy_about_dialog +idle_showwarning Lib/idlelib/pyshell.py /^def idle_showwarning($/;" f +idle_showwarning_subproc Lib/idlelib/run.py /^def idle_showwarning_subproc($/;" f +idlelib Lib/test/test_idle.py /^idlelib = import_module('idlelib')$/;" v +idlelib_dir Lib/idlelib/idle.py /^idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))$/;" v +idna_cleanup Modules/socketmodule.c /^idna_cleanup(struct maybe_idna *data)$/;" f file: +idna_converter Modules/socketmodule.c /^idna_converter(PyObject *obj, struct maybe_idna *data)$/;" f file: +idpattern Lib/string.py /^ idpattern = r'(?a:[_a-z][_a-z0-9]*)'$/;" v class:Template +idpattern Lib/test/test_string.py /^ idpattern = r'[_a-z][._a-z0-9]*'$/;" v class:TestTemplate.test_idpattern_override.PathPattern +idpattern Lib/test/test_string.py /^ idpattern = r'[a-z]+'$/;" v class:TestTemplate.test_idpattern_override_inside_outside.MyPattern +idpattern Lib/test/test_string.py /^ idpattern = r'[a-z]+'$/;" v class:TestTemplate.test_idpattern_override_inside_outside_invalid_unbraced.MyPattern +idprog Lib/idlelib/colorizer.py /^idprog = re.compile(r"\\s+(\\w+)")$/;" v +ids Include/internal/pycore_unicodeobject.h /^ struct _Py_unicode_ids ids;$/;" m struct:_Py_unicode_state typeref:struct:_Py_unicode_state::_Py_unicode_ids +ids Include/internal/pycore_unicodeobject.h /^ struct _Py_unicode_runtime_ids ids;$/;" m struct:_Py_unicode_runtime_state typeref:struct:_Py_unicode_runtime_state::_Py_unicode_runtime_ids +idtype_t Lib/test/test_lib2to3/data/infinite_recursion.py /^idtype_t = c_int # enum$/;" v +ieee Modules/_decimal/tests/deccheck.py /^ ieee = [$/;" v +ieee_big_endian_format Objects/floatobject.c 1723;" d file: +ieee_context Modules/_decimal/_decimal.c /^ieee_context(PyObject *dummy UNUSED, PyObject *v)$/;" f file: +ieee_little_endian_format Objects/floatobject.c 1724;" d file: +if1 Lib/test/test_compile.py /^ def if1(x):$/;" f function:TestSpecifics.test_lineno_after_implicit_return +if2 Lib/test/test_compile.py /^ def if2(x):$/;" f function:TestSpecifics.test_lineno_after_implicit_return +if3 Lib/test/test_compile.py /^ def if3(x):$/;" f function:TestSpecifics.test_lineno_after_implicit_return +if4 Lib/test/test_compile.py /^ def if4(x):$/;" f function:TestSpecifics.test_lineno_after_implicit_return +if_else_break Lib/test/test_compile.py /^ def if_else_break():$/;" f function:TestSpecifics.test_redundant_jump_in_if_else_break +if_stmt_rule Parser/parser.c /^if_stmt_rule(Parser *p)$/;" f file: +if_stmt_type Parser/parser.c 132;" d file: +ifloordiv Lib/operator.py /^def ifloordiv(a, b):$/;" f +iframe_getcode Modules/_testinternalcapi.c /^iframe_getcode(PyObject *self, PyObject *frame)$/;" f file: +iframe_getlasti Modules/_testinternalcapi.c /^iframe_getlasti(PyObject *self, PyObject *frame)$/;" f file: +iframe_getline Modules/_testinternalcapi.c /^iframe_getline(PyObject *self, PyObject *frame)$/;" f file: +ifs Include/internal/pycore_ast.h /^ asdl_expr_seq *ifs;$/;" m struct:_comprehension +ifs Include/internal/pycore_ast_state.h /^ PyObject *ifs;$/;" m struct:ast_state +iglob Lib/glob.py /^def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False,$/;" f +ignorableWhitespace Lib/xml/dom/pulldom.py /^ def ignorableWhitespace(self, chars):$/;" m class:PullDOM +ignorableWhitespace Lib/xml/dom/pulldom.py /^ def ignorableWhitespace(self, chars):$/;" m class:SAX2DOM +ignorableWhitespace Lib/xml/sax/handler.py /^ def ignorableWhitespace(self, whitespace):$/;" m class:ContentHandler +ignorableWhitespace Lib/xml/sax/saxutils.py /^ def ignorableWhitespace(self, chars):$/;" m class:XMLFilterBase +ignorableWhitespace Lib/xml/sax/saxutils.py /^ def ignorableWhitespace(self, content):$/;" m class:XMLGenerator +ignoreSectionProcessor Modules/expat/xmlparse.c /^ignoreSectionProcessor(XML_Parser parser, const char *start, const char *end,$/;" f file: +ignoreSectionProcessor Modules/expat/xmlparse.c /^static Processor ignoreSectionProcessor;$/;" v file: +ignoreSectionTok Modules/expat/xmltok_impl.c /^PREFIX(ignoreSectionTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +ignore_attribute_error Modules/_elementtree.c /^ignore_attribute_error(PyObject *value)$/;" f file: +ignore_deprecation Lib/test/test_ssl.py /^ignore_deprecation = warnings_helper.ignore_warnings($/;" v +ignore_deprecations_from Lib/test/support/__init__.py /^def ignore_deprecations_from(module: str, *, like: str) -> object:$/;" f +ignore_errors Lib/codecs.py /^ ignore_errors = None$/;" v +ignore_errors Lib/codecs.py /^ ignore_errors = lookup_error("ignore")$/;" v +ignore_errors Python/codecs.c /^static PyObject *ignore_errors(PyObject *self, PyObject *exc)$/;" f file: +ignore_exc Tools/c-analyzer/c_common/scriptutil.py /^ def ignore_exc(_exc):$/;" f function:add_failure_filtering_cli.process_args +ignore_exc Tools/c-analyzer/c_common/scriptutil.py /^ def ignore_exc(exc):$/;" f function:add_failure_filtering_cli.process_args +ignore_handler Include/internal/pycore_signal.h /^ PyObject *ignore_handler;$/;" m struct:_signals_runtime_state +ignore_handler Modules/signalmodule.c /^ PyObject *ignore_handler; \/\/ borrowed ref (signal_global_state)$/;" m struct:__anon300 file: +ignore_line Tools/clinic/clinic.py /^ def ignore_line(line):$/;" m class:DSLParser +ignore_log_types Lib/test/support/asyncore.py /^ ignore_log_types = frozenset({'warning'})$/;" v class:dispatcher +ignore_non_src Tools/freeze/test/freeze.py /^ def ignore_non_src(src, names):$/;" f function:copy_source_tree +ignore_patterns Lib/shutil.py /^def ignore_patterns(*patterns):$/;" f +ignore_source_errors Python/traceback.c /^ignore_source_errors(void) {$/;" f file: +ignore_warning Lib/test/test_hmac.py /^def ignore_warning(func):$/;" f +ignore_warnings Lib/test/support/warnings_helper.py /^def ignore_warnings(*, category):$/;" f +ignore_warnings Lib/test/test_asyncio/test_unix_events.py /^ ignore_warnings = mock.patch.object(log.logger, "warning")$/;" v class:ChildWatcherTestsMixin +ignore_zeros Lib/tarfile.py /^ ignore_zeros = False # If true, skips empty or invalid blocks and$/;" v class:TarFile +ihave Lib/nntplib.py /^ def ihave(self, message_id, data):$/;" m class:NNTP +iid Modules/_ctypes/ctypes.h /^ GUID *iid;$/;" m struct:__anon493 +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\x00\\x00\\xdc\\x80"$/;" v class:UTF32Test +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\x80\\xdc"$/;" v class:UTF16Test +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\x80\\xdc\\x00\\x00"$/;" v class:UTF32Test +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\xdc\\x80"$/;" v class:UTF16Test +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\x00\\x00\\xdc\\x80"$/;" v class:UTF32BETest +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\x80\\xdc"$/;" v class:UTF16LETest +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\x80\\xdc\\x00\\x00"$/;" v class:UTF32LETest +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\xdc\\x80"$/;" v class:UTF16BETest +ill_formed_sequence Lib/test/test_codecs.py /^ ill_formed_sequence = b"\\xed\\xb2\\x80"$/;" v class:UTF8Test +ill_formed_sequence_replace Lib/test/test_codecs.py /^ ill_formed_sequence_replace = "\\ufffd" * 3$/;" v class:UTF8Test +ill_formed_sequence_replace Lib/test/test_codecs.py /^ ill_formed_sequence_replace = "\\ufffd"$/;" v class:ReadTest +ilshift Lib/operator.py /^def ilshift(a, b):$/;" f +im_func Include/cpython/classobject.h /^ PyObject *im_func; \/* The callable object implementing the method *\/$/;" m struct:__anon192 +im_self Include/cpython/classobject.h /^ PyObject *im_self; \/* The instance it is bound to *\/$/;" m struct:__anon192 +im_weakreflist Include/cpython/classobject.h /^ PyObject *im_weakreflist; \/* List of weak references *\/$/;" m struct:__anon192 +imag Include/cpython/complexobject.h /^ double imag;$/;" m struct:__anon237 +imag Lib/_pydecimal.py /^ def imag(self):$/;" m class:Decimal +imag Lib/numbers.py /^ def imag(self):$/;" m class:Complex +imag Lib/numbers.py /^ def imag(self):$/;" m class:Real +image_cget Lib/tkinter/__init__.py /^ def image_cget(self, index, option):$/;" m class:Text +image_configure Lib/tkinter/__init__.py /^ def image_configure(self, index, cnf=None, **kw):$/;" m class:Text +image_create Lib/tkinter/__init__.py /^ def image_create(self, index, cnf={}, **kw):$/;" m class:Text +image_create Lib/tkinter/tix.py /^ def image_create(self, imgtype, cnf={}, master=None, **kw):$/;" m class:TixWidget +image_delete Lib/tkinter/tix.py /^ def image_delete(self, imgname):$/;" m class:TixWidget +image_names Lib/tkinter/__init__.py /^ def image_names(self):$/;" m class:Misc +image_names Lib/tkinter/__init__.py /^ def image_names(self):$/;" m class:Text +image_names Lib/tkinter/__init__.py /^def image_names():$/;" f +image_types Lib/tkinter/__init__.py /^ def image_types(self):$/;" m class:Misc +image_types Lib/tkinter/__init__.py /^def image_types():$/;" f +imaginary_number_rule Parser/parser.c /^imaginary_number_rule(Parser *p)$/;" f file: +imaginary_number_type Parser/parser.c 158;" d file: +imap Lib/multiprocessing/pool.py /^ def imap(self, func, iterable, chunksize=1):$/;" m class:Pool +imap_class Lib/test/test_imaplib.py /^ imap_class = IMAP4_SSL$/;" v class:NewIMAPSSLTests +imap_class Lib/test/test_imaplib.py /^ imap_class = IMAP4_SSL$/;" v class:RemoteIMAP_SSLTest +imap_class Lib/test/test_imaplib.py /^ imap_class = IMAP4_SSL$/;" v class:ThreadedNetworkedTestsSSL +imap_class Lib/test/test_imaplib.py /^ imap_class = imaplib.IMAP4$/;" v class:NewIMAPTests +imap_class Lib/test/test_imaplib.py /^ imap_class = imaplib.IMAP4$/;" v class:RemoteIMAPTest +imap_class Lib/test/test_imaplib.py /^ imap_class = imaplib.IMAP4$/;" v class:ThreadedNetworkedTests +imap_unordered Lib/multiprocessing/pool.py /^ def imap_unordered(self, func, iterable, chunksize=1):$/;" m class:Pool +imatmul Lib/operator.py /^def imatmul(a, b):$/;" f +img_data Doc/includes/email-mime.py /^ img_data = fp.read()$/;" v +imghdr Lib/test/test_imghdr.py /^imghdr = warnings_helper.import_deprecated("imghdr")$/;" v +imod Lib/operator.py /^def imod(a, b):$/;" f +imp_methods Python/import.c /^static PyMethodDef imp_methods[] = {$/;" v file: +imp_module Python/import.c /^static struct PyModuleDef imp_module = {$/;" v typeref:struct:PyModuleDef file: +imp_module_exec Python/import.c /^imp_module_exec(PyObject *module)$/;" f file: +imp_slots Python/import.c /^static PyModuleDef_Slot imp_slots[] = {$/;" v file: +impl_by_reference Tools/clinic/clinic.py /^ impl_by_reference = False$/;" v class:CConverter +impl_by_reference Tools/clinic/clinic.py /^ impl_by_reference = True$/;" v class:Py_buffer_converter +impl_detail Lib/test/support/__init__.py /^def impl_detail(msg=None, **guards):$/;" f +implementation Include/cpython/pytime.h /^ const char *implementation;$/;" m struct:__anon176 +implementation Lib/xml/dom/minidom.py /^ implementation = DOMImplementation()$/;" v class:Document +implicitContext Modules/expat/xmlparse.c /^static const XML_Char implicitContext[]$/;" v file: +implicit_namespace Lib/test/test_runpy.py /^implicit_namespace = {$/;" v +implicit_newline Parser/tokenizer.h /^ int implicit_newline;$/;" m struct:tok_state +implicit_stop_iteration Lib/test/test_monitoring.py /^ def implicit_stop_iteration():$/;" f function:ExceptionMonitoringTest.test_implicit_stop_iteration +importNode Lib/xml/dom/minidom.py /^ def importNode(self, node, deep):$/;" m class:Document +import_ Lib/test/test_importlib/source/test_file_loader.py /^ def import_(self, file, module_name):$/;" m class:BadBytecodeTest +import_ Lib/test/test_importlib/source/test_file_loader.py /^ def import_(self, file, module_name):$/;" m class:BadBytecodeTestPEP302 +import_ Lib/test/test_importlib/source/test_file_loader.py /^ def import_(self, file, module_name):$/;" m class:BadBytecodeTestPEP451 +import_ Lib/test/test_importlib/source/test_finder.py /^ def import_(self, root, module):$/;" m class:FinderTests +import_ Tools/importbench/importbench.py /^ import_ = importlib.__import__$/;" v +import_ Tools/importbench/importbench.py /^ import_ = __import__$/;" v +import_ab Lib/test/test_importlib/test_threaded_import.py /^ def import_ab():$/;" f function:ThreadedImportTests.test_circular_imports +import_add_module Python/import.c /^import_add_module(PyThreadState *tstate, PyObject *name)$/;" f file: +import_all_from Python/intrinsics.c /^import_all_from(PyThreadState *tstate, PyObject *locals, PyObject *v)$/;" f file: +import_ba Lib/test/test_importlib/test_threaded_import.py /^ def import_ba():$/;" f function:ThreadedImportTests.test_circular_imports +import_copyreg Objects/typeobject.c /^import_copyreg(void)$/;" f file: +import_curses Include/py_curses.h 85;" d +import_deprecated Lib/test/support/warnings_helper.py /^def import_deprecated(name):$/;" f +import_ensure_initialized Python/import.c /^import_ensure_initialized(PyInterpreterState *interp, PyObject *mod, PyObject *name)$/;" f file: +import_file Tools/peg_generator/pegen/testutil.py /^def import_file(full_name: str, path: str) -> Any:$/;" f +import_find_and_load Python/import.c /^import_find_and_load(PyThreadState *tstate, PyObject *abs_name)$/;" f file: +import_find_extension Python/import.c /^import_find_extension(PyThreadState *tstate, PyObject *name,$/;" f file: +import_fresh_module Lib/test/support/import_helper.py /^def import_fresh_module(name, fresh=(), blocked=(), *,$/;" f +import_from Python/ceval.c /^import_from(PyThreadState *tstate, PyObject *v, PyObject *name)$/;" f file: +import_from_as_name_rule Parser/parser.c /^import_from_as_name_rule(Parser *p)$/;" f file: +import_from_as_name_type Parser/parser.c 107;" d file: +import_from_as_names_rule Parser/parser.c /^import_from_as_names_rule(Parser *p)$/;" f file: +import_from_as_names_type Parser/parser.c 106;" d file: +import_from_rule Parser/parser.c /^import_from_rule(Parser *p)$/;" f file: +import_from_targets_rule Parser/parser.c /^import_from_targets_rule(Parser *p)$/;" f file: +import_from_targets_type Parser/parser.c 105;" d file: +import_from_type Parser/parser.c 104;" d file: +import_func Include/internal/pycore_import.h /^ PyObject *import_func;$/;" m struct:_import_state +import_get_module Python/import.c /^import_get_module(PyThreadState *tstate, PyObject *name)$/;" f file: +import_hook Lib/modulefinder.py /^ def import_hook(self, name, caller=None, fromlist=None, level=-1):$/;" m class:ModuleFinder +import_importlib Lib/test/test_importlib/util.py /^def import_importlib(module_name):$/;" f +import_in_subinterp Lib/test/test_import/__init__.py /^ def import_in_subinterp(self, interpid=None, *,$/;" m class:SinglephaseInitTests +import_level Include/internal/pycore_import.h /^ int import_level;$/;" m struct:_import_state::__anon138 +import_level Python/import.c 2725;" d file: +import_level Python/import.c 2783;" d file: +import_main_path Lib/multiprocessing/spawn.py /^def import_main_path(main_path):$/;" f +import_mapping_2to3 Modules/_pickle.c /^ PyObject *import_mapping_2to3;$/;" m struct:__anon448 file: +import_mapping_3to2 Modules/_pickle.c /^ PyObject *import_mapping_3to2;$/;" m struct:__anon448 file: +import_module Lib/importlib/__init__.py /^def import_module(name, package=None):$/;" f +import_module Lib/modulefinder.py /^ def import_module(self, partname, fqname, parent):$/;" m class:ModuleFinder +import_module Lib/test/support/import_helper.py /^def import_module(name, deprecated=False, *, required_on=()):$/;" f +import_module Lib/test/test_import/__init__.py /^ def import_module(self):$/;" f +import_module Lib/test/test_importlib/import_/test___package__.py /^ def import_module(self, globals_):$/;" m class:Using__package__ +import_name Python/ceval.c /^import_name(PyThreadState *tstate, _PyInterpreterFrame *frame,$/;" f file: +import_name_rule Parser/parser.c /^import_name_rule(Parser *p)$/;" f file: +import_name_type Parser/parser.c 103;" d file: +import_names_from_package Lib/test/test_importlib/test_main.py /^ def import_names_from_package(package_name):$/;" f function:PackagesDistributionsEggTest.test_packages_distributions_on_eggs +import_or_skip Lib/test/test_zipfile/_path/_support.py /^def import_or_skip(name):$/;" f +import_script Lib/test/test_import/__init__.py /^ def import_script(self, name, fd, filename=None, check_override=None):$/;" m class:SubinterpImportTests +import_singlephase Lib/test/test_capi/check_config.py /^def import_singlephase():$/;" f +import_star Python/intrinsics.c /^import_star(PyThreadState* tstate, PyObject *from)$/;" f file: +import_state Lib/test/test_importlib/util.py /^def import_state(**kwargs):$/;" f +import_stmt_rule Parser/parser.c /^import_stmt_rule(Parser *p)$/;" f file: +import_stmt_type Parser/parser.c 102;" d file: +import_time Include/cpython/initconfig.h /^ int import_time;$/;" m struct:PyConfig +import_tool Lib/test/test_tools/__init__.py /^def import_tool(toolname):$/;" f +importable Lib/test/test_uuid.py /^def importable(name):$/;" f +importable_name Lib/importlib/metadata/__init__.py /^ def importable_name(name):$/;" f function:_top_level_inferred +importer Lib/logging/config.py /^ importer = staticmethod(__import__)$/;" v class:BaseConfigurator +importer Lib/test/test_fork1.py /^ def importer():$/;" f function:ForkTest.test_threaded_import_lock_fork +importfile Lib/pydoc.py /^def importfile(path):$/;" f +importlib Include/internal/pycore_import.h /^ PyObject *importlib;$/;" m struct:_import_state +importlib Lib/test/test_importlib/extension/test_case_sensitivity.py /^importlib = util.import_importlib('importlib')$/;" v +importlib Lib/test/test_importlib/import_/test_path.py /^importlib = util.import_importlib('importlib')$/;" v +importlib Lib/test/test_importlib/source/test_case_sensitivity.py /^importlib = util.import_importlib('importlib')$/;" v +importlib Lib/test/test_importlib/source/test_file_loader.py /^importlib = util.import_importlib('importlib')$/;" v +importlib_abc Lib/test/test_importlib/source/test_file_loader.py /^importlib_abc = util.import_importlib('importlib.abc')$/;" v +importlib_util Lib/test/test_importlib/source/test_file_loader.py /^importlib_util = util.import_importlib('importlib.util')$/;" v +importlib_util Lib/test/test_importlib/test_util.py /^importlib_util = util.import_importlib('importlib.util')$/;" v +importmap Modules/cjkcodecs/cjkcodecs.h /^importmap(const char *modname, const char *symbol,$/;" f +imports Include/internal/pycore_interp.h /^ struct _import_state imports;$/;" m struct:_is typeref:struct:_is::_import_state +imports Include/internal/pycore_runtime.h /^ struct _import_runtime_state imports;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_import_runtime_state +imports_under_tool Lib/test/test_tools/__init__.py /^def imports_under_tool(name, *subdirs):$/;" f +imul Lib/operator.py /^def imul(a, b):$/;" f +imul Lib/test/test_list.py /^ def imul(a, b): a *= b$/;" f function:ListTest.test_overflow +in Modules/socketmodule.h /^ struct sockaddr_in in;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_in +in6 Modules/socketmodule.h /^ struct sockaddr_in6 in6;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_in6 +in6_addrany Modules/getaddrinfo.c /^static const char in6_addrany[] = {$/;" v file: +in6_loopback Modules/getaddrinfo.c /^static const char in6_loopback[] = {$/;" v file: +inEntityValue Modules/expat/xmlrole.h /^ int inEntityValue;$/;" m struct:prolog_state +in_ Lib/importlib/metadata/_text.py /^ def in_(self, other):$/;" m class:FoldedCase +in_addr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^in_addr_t = __uint32_t$/;" v +in_addrany Modules/getaddrinfo.c /^static const char in_addrany[] = { 0, 0, 0, 0 };$/;" v file: +in_bitwise_or_rule Parser/parser.c /^in_bitwise_or_rule(Parser *p)$/;" f file: +in_bitwise_or_type Parser/parser.c 205;" d file: +in_build PC/layout/main.py /^ def in_build(f, dest="", new_name=None):$/;" f function:get_layout +in_callback Modules/pyexpat.c /^ int in_callback; \/* Is a callback active? *\/$/;" m struct:__anon483 file: +in_eldecl Modules/expat/xmlparse.c /^ XML_Bool in_eldecl;$/;" m struct:__anon617 file: +in_except Lib/test/test_exceptions.py /^ def in_except():$/;" f function:PEP626Tests.test_lineno_after_raise_in_except +in_finally_except Lib/test/test_exceptions.py /^ def in_finally_except():$/;" f function:PEP626Tests.test_lineno_in_finally_except +in_finally_normal Lib/test/test_exceptions.py /^ def in_finally_normal():$/;" f function:PEP626Tests.test_lineno_in_finally_normal +in_loopback Modules/getaddrinfo.c /^static const char in_loopback[] = { 127, 0, 0, 1 };$/;" v file: +in_named_except Lib/test/test_exceptions.py /^ def in_named_except():$/;" f function:PEP626Tests.test_lineno_in_named_except +in_port_t Lib/test/test_lib2to3/data/infinite_recursion.py /^in_port_t = __uint16_t$/;" v +in_rpc_code Lib/idlelib/debugger.py /^ def in_rpc_code(self, frame):$/;" m class:Idb +in_special_context Lib/lib2to3/fixer_util.py /^def in_special_context(node):$/;" f +in_special_context Lib/lib2to3/fixes/fix_dict.py /^ def in_special_context(self, node, isiter):$/;" m class:FixDict +in_special_context Lib/lib2to3/fixes/fix_xrange.py /^ def in_special_context(self, node):$/;" m class:FixXrange +in_table_a1 Lib/stringprep.py /^def in_table_a1(code):$/;" f +in_table_b1 Lib/stringprep.py /^def in_table_b1(code):$/;" f +in_table_c11 Lib/stringprep.py /^def in_table_c11(code):$/;" f +in_table_c11_c12 Lib/stringprep.py /^def in_table_c11_c12(code):$/;" f +in_table_c12 Lib/stringprep.py /^def in_table_c12(code):$/;" f +in_table_c21 Lib/stringprep.py /^def in_table_c21(code):$/;" f +in_table_c21_c22 Lib/stringprep.py /^def in_table_c21_c22(code):$/;" f +in_table_c22 Lib/stringprep.py /^def in_table_c22(code):$/;" f +in_table_c3 Lib/stringprep.py /^def in_table_c3(code):$/;" f +in_table_c4 Lib/stringprep.py /^def in_table_c4(code):$/;" f +in_table_c5 Lib/stringprep.py /^def in_table_c5(code):$/;" f +in_table_c6 Lib/stringprep.py /^def in_table_c6(code):$/;" f +in_table_c7 Lib/stringprep.py /^def in_table_c7(code):$/;" f +in_table_c8 Lib/stringprep.py /^def in_table_c8(code):$/;" f +in_table_c9 Lib/stringprep.py /^def in_table_c9(code):$/;" f +in_table_d1 Lib/stringprep.py /^def in_table_d1(code):$/;" f +in_table_d2 Lib/stringprep.py /^def in_table_d2(code):$/;" f +in_test_no_match_single_character Tools/stringbench/stringbench.py /^def in_test_no_match_single_character(STR):$/;" f +in_test_no_match_two_character Tools/stringbench/stringbench.py /^def in_test_no_match_two_character(STR):$/;" f +in_test_quick_match_single_character Tools/stringbench/stringbench.py /^def in_test_quick_match_single_character(STR):$/;" f +in_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def in_test_quick_match_two_characters(STR):$/;" f +in_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def in_test_slow_match_100_characters(STR):$/;" f +in_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def in_test_slow_match_two_characters(STR):$/;" f +in_thread Lib/test/test_asyncio/test_subprocess.py /^ async def in_thread():$/;" f function:SubprocessMixin.GenericWatcherTests.test_create_subprocess_with_pidfd +in_try Lib/test/test_exceptions.py /^ def in_try():$/;" f function:PEP626Tests.test_lineno_in_try +in_use Include/internal/pycore_pythread.h /^ bool in_use;$/;" m struct:py_stub_tls_entry +in_weakreflist Modules/_sqlite/blob.h /^ PyObject *in_weakreflist;$/;" m struct:__anon360 +in_weakreflist Modules/_sqlite/cursor.h /^ PyObject* in_weakreflist; \/* List of weak references *\/$/;" m struct:__anon358 +in_weakreflist Modules/_threadmodule.c /^ PyObject *in_weakreflist;$/;" m struct:__anon442 file: +in_weakreflist Modules/_threadmodule.c /^ PyObject *in_weakreflist;$/;" m struct:__anon443 file: +inbuf Modules/cjkcodecs/multibytecodec.c /^ const unsigned char *inbuf, *inbuf_top, *inbuf_end;$/;" m struct:__anon323 file: +inbuf_end Modules/cjkcodecs/multibytecodec.c /^ const unsigned char *inbuf, *inbuf_top, *inbuf_end;$/;" m struct:__anon323 file: +inbuf_top Modules/cjkcodecs/multibytecodec.c /^ const unsigned char *inbuf, *inbuf_top, *inbuf_end;$/;" m struct:__anon323 file: +inc Lib/test/_test_atexit.py /^ def inc():$/;" f function:GeneralTest.test_clear +inc Lib/test/_test_atexit.py /^ def inc():$/;" f function:GeneralTest.test_stress +inc Lib/test/_test_atexit.py /^ def inc():$/;" f function:GeneralTest.test_unregister +inc Lib/test/test_scope.py /^ def inc(self):$/;" m class:ScopeTests.testNonLocalMethod.f.c +inc Lib/test/test_scope.py /^ def inc():$/;" f function:ScopeTests.testNonLocalFunction.f +inc Lib/test/test_threading.py /^ def inc(self):$/;" m class:Counter +inc Lib/test/test_timeit.py /^ def inc(self):$/;" m class:FakeTimer +inc_result Lib/test/test_asyncio/test_tasks.py /^ def inc_result(num):$/;" f function:SleepTests.test_sleep_zero +include Lib/xml/etree/ElementInclude.py /^def include(elem, loader=None, base_url=None,$/;" f +includeLevel Modules/expat/xmlrole.h /^ unsigned includeLevel;$/;" m struct:prolog_state +include_dir Tools/ssl/multissltests.py /^ def include_dir(self):$/;" m class:AbstractBuilder +included packaging/skipped_tests.py /^included = find_tests_in_spec(MAIN)$/;" v +includes Tools/c-analyzer/c_parser/preprocessor/common.py /^ includes = tuple(f'-include{i}' for i in includes)$/;" v +incnewkwarglist Modules/cjkcodecs/multibytecodec.c /^static char *incnewkwarglist[] = {"errors", NULL};$/;" v file: +incomplete Lib/html/parser.py /^incomplete = re.compile('&[a-zA-Z#]')$/;" v +incr Lib/test/test__xxinterpchannels.py /^ def incr(self):$/;" m class:ChannelState +incr_false Modules/_decimal/_decimal.c /^incr_false(void)$/;" f +incr_true Modules/_decimal/_decimal.c /^incr_true(void)$/;" f +increase_size Lib/turtledemo/__main__.py /^ def increase_size(self, dummy=None):$/;" m class:DemoWindow +increasing_level_traverse Lib/ast.py /^ def increasing_level_traverse(node):$/;" f function:_Unparser.visit_BoolOp +incref Lib/multiprocessing/managers.py /^ def incref(self, c, ident):$/;" m class:Server +increfs Include/pystats.h /^ uint64_t increfs;$/;" m struct:_object_stats +increment Lib/tkinter/tix.py /^ def increment(self):$/;" m class:Control +increment_lineno Lib/ast.py /^def increment_lineno(node, n=1):$/;" f +incrementalnewlinedecoder_clear Modules/_io/textio.c /^incrementalnewlinedecoder_clear(nldecoder_object *self)$/;" f file: +incrementalnewlinedecoder_dealloc Modules/_io/textio.c /^incrementalnewlinedecoder_dealloc(nldecoder_object *self)$/;" f file: +incrementalnewlinedecoder_getset Modules/_io/textio.c /^static PyGetSetDef incrementalnewlinedecoder_getset[] = {$/;" v file: +incrementalnewlinedecoder_methods Modules/_io/textio.c /^static PyMethodDef incrementalnewlinedecoder_methods[] = {$/;" v file: +incrementalnewlinedecoder_newlines_get Modules/_io/textio.c /^incrementalnewlinedecoder_newlines_get(nldecoder_object *self, void *context)$/;" f file: +incrementalnewlinedecoder_traverse Modules/_io/textio.c /^incrementalnewlinedecoder_traverse(nldecoder_object *self, visitproc visit,$/;" f file: +indent Lib/cgitb.py /^ indent = '' + small(' ' * 5) + ' <\/tt>'$/;" v +indent Lib/idlelib/help.py /^ def indent(self, amt=1):$/;" m class:HelpParser +indent Lib/json/__init__.py /^ indent=None,$/;" v +indent Lib/optparse.py /^ def indent(self):$/;" m class:HelpFormatter +indent Lib/pydoc.py /^ def indent(self, text, prefix=' '):$/;" m class:TextDoc +indent Lib/textwrap.py /^def indent(text, prefix, predicate=None):$/;" f +indent Lib/traceback.py /^ def indent(self):$/;" m class:_ExceptionPrintContext +indent Lib/xml/etree/ElementTree.py /^def indent(tree, space=" ", level=0):$/;" f +indent Modules/_json.c /^ PyObject *indent;$/;" m struct:_PyEncoderObject file: +indent Parser/tokenizer.h /^ int indent; \/* Current indentation index *\/$/;" m struct:tok_state +indent Tools/build/deepfreeze.py /^ def indent(self) -> None:$/;" m class:Printer +indent Tools/build/generate_global_objects.py /^ def indent(self):$/;" m class:Printer +indent Tools/cases_generator/generate_cases.py /^ def indent(self):$/;" m class:Formatter +indent Tools/clinic/clinic.py /^ def indent(self, line):$/;" m class:IndentStack +indent Tools/peg_generator/pegen/parser_generator.py /^ def indent(self) -> Iterator[None]:$/;" m class:ParserGenerator +indent_all_lines Tools/clinic/clinic.py /^def indent_all_lines(s: str, prefix: str) -> str:$/;" f +indent_level Lib/tabnanny.py /^ def indent_level(self, tabsize):$/;" m class:Whitespace +indent_region_event Lib/idlelib/format.py /^ def indent_region_event(self, event=None):$/;" m class:FormatRegion +indenterror Parser/tokenizer.c /^indenterror(struct tok_state *tok)$/;" f file: +indentsize Lib/inspect.py /^def indentsize(line):$/;" f +index Include/cpython/object.h /^ Py_ssize_t index;$/;" m struct:_Py_Identifier +index Include/internal/pycore_code.h /^ uint16_t index;$/;" m struct:__anon18 +index Include/internal/pycore_code.h /^ uint16_t index;$/;" m struct:__anon24 +index Lib/_collections_abc.py /^ def index(self, value, start=0, stop=None):$/;" m class:Sequence +index Lib/collections/__init__.py /^ def index(self, item, *args):$/;" m class:UserList +index Lib/collections/__init__.py /^ def index(self, sub, start=0, end=_sys.maxsize):$/;" m class:UserString +index Lib/idlelib/idle_test/mock_tk.py /^ def index(self, index):$/;" m class:Text +index Lib/importlib/metadata/_text.py /^ def index(self, sub):$/;" m class:FoldedCase +index Lib/multiprocessing/shared_memory.py /^ def index(self, value):$/;" m class:ShareableList +index Lib/operator.py /^def index(a):$/;" f +index Lib/pydoc.py /^ def index(self, dir, shadowed=None):$/;" f +index Lib/test/test_class.py /^ def index(x):$/;" f function:ClassTests.testBadTypeReturned +index Lib/tkinter/__init__.py /^ def index(self, *args):$/;" m class:Canvas +index Lib/tkinter/__init__.py /^ def index(self, index):$/;" m class:Entry +index Lib/tkinter/__init__.py /^ def index(self, index):$/;" m class:Listbox +index Lib/tkinter/__init__.py /^ def index(self, index):$/;" m class:Menu +index Lib/tkinter/__init__.py /^ def index(self, index):$/;" m class:Spinbox +index Lib/tkinter/__init__.py /^ def index(self, index):$/;" m class:Text +index Lib/tkinter/ttk.py /^ def index(self, item):$/;" m class:Treeview +index Lib/tkinter/ttk.py /^ def index(self, tab_id):$/;" m class:Notebook +index Modules/_collectionsmodule.c /^ Py_ssize_t index;$/;" m struct:__anon531 file: +index Modules/_collectionsmodule.c /^ Py_ssize_t index;$/;" m struct:__anon533 file: +index Modules/_ctypes/ctypes.h /^ Py_ssize_t index; \/* Index into CDataObject's$/;" m struct:__anon494 +index Modules/_ctypes/ctypes.h /^ Py_ssize_t index;$/;" m struct:basespec +index Modules/_ctypes/ctypes.h /^ int index;$/;" m struct:__anon493 +index Modules/_elementtree.c /^ Py_ssize_t index; \/* current stack size (0 means empty) *\/$/;" m struct:__anon385 file: +index Modules/_operator.c /^ Py_ssize_t index; \/\/ -1 unless *item* is a single non-negative integer index$/;" m struct:__anon474 file: +index Modules/_randommodule.c /^ int index;$/;" m struct:__anon430 file: +index Modules/_sre/sre.h /^ Py_ssize_t index;$/;" m struct:__anon456::__anon457 +index Modules/_struct.c /^ Py_ssize_t index;$/;" m struct:__anon380 file: +index Modules/arraymodule.c /^ Py_ssize_t index;$/;" m struct:__anon648 file: +index Modules/itertoolsmodule.c /^ Py_ssize_t index;$/;" m struct:__anon407 file: +index Modules/itertoolsmodule.c /^ int index; \/* 0 <= index <= LINKCELLS *\/$/;" m struct:__anon406 file: +index Modules/unicodedata_db.h /^struct reindex{int start;short count,index;};$/;" m struct:reindex +index Objects/enumobject.c /^ Py_ssize_t index;$/;" m struct:__anon728 file: +index Objects/stringlib/unicode_format.h /^ Py_ssize_t index;$/;" m struct:__anon706 +index Python/bytecodes.c /^static uint16_t invert, counter, index, hint;$/;" v file: +index1 Modules/unicodedata_db.h /^static const unsigned short index1[] = {$/;" v +index1 Objects/unicodetype_db.h /^static const unsigned short index1[] = {$/;" v +index2 Modules/unicodedata_db.h /^static const unsigned short index2[] = {$/;" v +index2 Objects/unicodetype_db.h /^static const unsigned short index2[] = {$/;" v +index2coords Lib/test/test_generators.py /^ def index2coords(self, index):$/;" m class:Knights +index2line Lib/idlelib/editor.py /^def index2line(index):$/;" f +index2line Lib/idlelib/hyperparser.py /^ def index2line(index):$/;" f function:HyperParser.__init__ +indexOf Lib/operator.py /^def indexOf(a, b):$/;" f +indexTable Modules/audioop.c /^static const int indexTable[16] = {$/;" v file: +index_pages Lib/http/server.py /^ index_pages = ("index.html", "index.htm")$/;" v class:SimpleHTTPRequestHandler +index_test_quick_match_single_character Tools/stringbench/stringbench.py /^def index_test_quick_match_single_character(STR):$/;" f +index_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def index_test_quick_match_two_characters(STR):$/;" f +index_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def index_test_slow_match_100_characters(STR):$/;" f +index_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def index_test_slow_match_two_characters(STR):$/;" f +indexgroup Modules/_sre/sre.h /^ PyObject* indexgroup; \/* tuple *\/$/;" m struct:__anon454 +indextype Tools/unicode/genmap_support.py /^ indextype = 'struct unim_index'$/;" v class:EncodeMapWriter +indicator Modules/_decimal/tests/randdec.py /^def indicator():$/;" f +indicator_cget Lib/tkinter/tix.py /^ def indicator_cget(self, entry, opt):$/;" m class:HList +indicator_configure Lib/tkinter/tix.py /^ def indicator_configure(self, entry, cnf={}, **kw):$/;" m class:HList +indicator_create Lib/tkinter/tix.py /^ def indicator_create(self, entry, cnf={}, **kw):$/;" m class:HList +indicator_delete Lib/tkinter/tix.py /^ def indicator_delete(self, entry):$/;" m class:HList +indicator_exists Lib/tkinter/tix.py /^ def indicator_exists(self, entry):$/;" m class:HList +indicator_size Lib/tkinter/tix.py /^ def indicator_size(self, entry):$/;" m class:HList +indices Lib/test/test_buffer.py /^def indices(shape):$/;" f +indices Modules/itertoolsmodule.c /^ Py_ssize_t *indices; \/* one index per element in the pool *\/$/;" m struct:__anon416 file: +indices Modules/itertoolsmodule.c /^ Py_ssize_t *indices; \/* one index per pool *\/$/;" m struct:__anon413 file: +indices Modules/itertoolsmodule.c /^ Py_ssize_t *indices; \/* one index per result element *\/$/;" m struct:__anon414 file: +indices Modules/itertoolsmodule.c /^ Py_ssize_t *indices; \/* one index per result element *\/$/;" m struct:__anon415 file: +indstack Parser/tokenizer.h /^ int indstack[MAXINDENT]; \/* Stack of indents *\/$/;" m struct:tok_state +inet_aton Modules/socketmodule.c 105;" d file: +inf Lib/test/test_json/test_enum.py /^ inf = INF$/;" v class:WierdNum +inf_msg Lib/urllib/request.py /^ "The last 30x error message was:\\n"$/;" v class:HTTPRedirectHandler +infer Tools/clinic/clinic.py /^ def infer(self, line):$/;" m class:IndentStack +infer_type Python/compile.c /^infer_type(expr_ty e)$/;" f file: +infer_variance Objects/typevarobject.c /^ bool infer_variance;$/;" m struct:__anon713 file: +infer_variance Objects/typevarobject.c /^ bool infer_variance;$/;" m struct:__anon715 file: +infinite_cache Lib/test/test_functools.py /^ def infinite_cache(o):$/;" f function:TestLRU.test_lru_type_error +infinite_loops Lib/test/test_crashers.py /^infinite_loops = ["infinite_loop_re.py", "nasty_eq_vs_dict.py"]$/;" v +infinite_lru_cache_wrapper Modules/_functoolsmodule.c /^infinite_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)$/;" f file: +infinite_recursion Lib/test/support/__init__.py /^def infinite_recursion(max_depth=100):$/;" f +infinity Modules/_decimal/tests/randdec.py /^def infinity():$/;" f +inflatedart Lib/turtledemo/penrose.py /^def inflatedart(l, n):$/;" f +inflatekite Lib/turtledemo/penrose.py /^def inflatekite(l, n):$/;" f +info Include/memoryobject.h /^PyAPI_FUNC(PyObject *) PyMemoryView_FromBuffer(const Py_buffer *info);$/;" v +info Lib/dis.py /^ def info(self):$/;" m class:Bytecode +info Lib/gettext.py /^ def info(self):$/;" m class:NullTranslations +info Lib/http/client.py /^ def info(self):$/;" m class:HTTPResponse +info Lib/logging/__init__.py /^ def info(self, msg, *args, **kwargs):$/;" m class:Logger +info Lib/logging/__init__.py /^ def info(self, msg, *args, **kwargs):$/;" m class:LoggerAdapter +info Lib/logging/__init__.py /^def info(msg, *args, **kwargs):$/;" f +info Lib/multiprocessing/util.py /^def info(msg, *args):$/;" f +info Lib/test/test_http_cookiejar.py /^ def info(self): return self._headers$/;" m class:FakeResponse +info Lib/test/test_urllib2.py /^ def info(self):$/;" m class:MockHTTPResponse +info Lib/test/test_urllib2.py /^ def info(self):$/;" m class:MockResponse +info Lib/tkinter/__init__.py /^ info = grid_info$/;" v class:Grid +info Lib/tkinter/__init__.py /^ info = pack_info$/;" v class:Pack +info Lib/tkinter/__init__.py /^ info = place_info$/;" v class:Place +info Lib/tkinter/tix.py /^ def info(self, option=None):$/;" m class:Form +info Lib/urllib/response.py /^ def info(self):$/;" m class:addinfo +info Tools/c-analyzer/c_common/logging.py /^ def info(self, *args, **kwargs):$/;" m class:Printer +info Tools/c-analyzer/distutils/log.py /^ def info(self, msg, *args):$/;" m class:Log +info Tools/c-analyzer/distutils/log.py /^info = _global_log.info$/;" v +info Tools/patchcheck/patchcheck.py /^ info=lambda x: n_files_str(len(x)))$/;" v +info Tools/patchcheck/patchcheck.py /^ info=lambda x: x if x is not None else "not a PR branch")$/;" v +info_active Lib/tkinter/tix.py /^ def info_active(self):$/;" m class:TList +info_anchor Lib/tkinter/tix.py /^ def info_anchor(self):$/;" m class:HList +info_anchor Lib/tkinter/tix.py /^ def info_anchor(self):$/;" m class:TList +info_bbox Lib/tkinter/tix.py /^ def info_bbox(self, entry):$/;" m class:HList +info_bbox Lib/tkinter/tix.py /^ def info_bbox(self, x, y):$/;" m class:Grid +info_breakpoints Lib/test/test_bdb.py /^def info_breakpoints():$/;" f +info_children Lib/tkinter/tix.py /^ def info_children(self, entry=None):$/;" m class:HList +info_data Lib/tkinter/tix.py /^ def info_data(self, entry):$/;" m class:HList +info_down Lib/tkinter/tix.py /^ def info_down(self, index):$/;" m class:TList +info_dragsite Lib/tkinter/tix.py /^ def info_dragsite(self):$/;" m class:HList +info_dropsite Lib/tkinter/tix.py /^ def info_dropsite(self):$/;" m class:HList +info_exists Lib/test/test_tkinter/test_variables.py /^ def info_exists(self, *args):$/;" m class:TestVariable +info_exists Lib/tkinter/tix.py /^ def info_exists(self, entry):$/;" m class:HList +info_exists Lib/tkinter/tix.py /^ def info_exists(self, x, y):$/;" m class:Grid +info_hidden Lib/tkinter/tix.py /^ def info_hidden(self, entry):$/;" m class:HList +info_left Lib/tkinter/tix.py /^ def info_left(self, index):$/;" m class:TList +info_next Lib/tkinter/tix.py /^ def info_next(self, entry):$/;" m class:HList +info_parent Lib/tkinter/tix.py /^ def info_parent(self, entry):$/;" m class:HList +info_patchlevel Lib/tkinter/__init__.py /^ def info_patchlevel(self):$/;" m class:Misc +info_prev Lib/tkinter/tix.py /^ def info_prev(self, entry):$/;" m class:HList +info_right Lib/tkinter/tix.py /^ def info_right(self, index):$/;" m class:TList +info_selection Lib/tkinter/tix.py /^ def info_selection(self):$/;" m class:HList +info_selection Lib/tkinter/tix.py /^ def info_selection(self):$/;" m class:TList +info_size Lib/tkinter/tix.py /^ def info_size(self):$/;" m class:TList +info_up Lib/tkinter/tix.py /^ def info_up(self, index):$/;" m class:TList +infobuf Modules/_testbuffer.c /^static char *infobuf = NULL;$/;" v file: +infolist Lib/zipfile/__init__.py /^ def infolist(self):$/;" m class:ZipFile +infoset Lib/xml/dom/xmlbuilder.py /^ infoset = False$/;" v class:Options +inherit_patma_flags Objects/typeobject.c /^inherit_patma_flags(PyTypeObject *type, PyTypeObject *base) {$/;" f file: +inherit_slots Objects/typeobject.c /^inherit_slots(PyTypeObject *type, PyTypeObject *base)$/;" f file: +inherit_special Objects/typeobject.c /^inherit_special(PyTypeObject *type, PyTypeObject *base)$/;" f file: +init Doc/tools/extensions/pyspecific.py /^ def init(self):$/;" m class:PydocTopicsBuilder +init Lib/email/headerregistry.py /^ def init(self, *args, **kw):$/;" m class:AddressHeader +init Lib/email/headerregistry.py /^ def init(self, *args, **kw):$/;" m class:ContentDispositionHeader +init Lib/email/headerregistry.py /^ def init(self, *args, **kw):$/;" m class:ContentTransferEncodingHeader +init Lib/email/headerregistry.py /^ def init(self, *args, **kw):$/;" m class:ContentTypeHeader +init Lib/email/headerregistry.py /^ def init(self, *args, **kw):$/;" m class:DateHeader +init Lib/email/headerregistry.py /^ def init(self, *args, **kw):$/;" m class:MIMEVersionHeader +init Lib/email/headerregistry.py /^ def init(self, *args, **kw):$/;" m class:ParameterizedMIMEHeader +init Lib/email/headerregistry.py /^ def init(self, name, *, parse_tree, defects):$/;" m class:BaseHeader +init Lib/idlelib/browser.py /^ def init(self):$/;" m class:ModuleBrowser +init Lib/mimetypes.py /^def init(files=None):$/;" f +init Lib/pstats.py /^ def init(self, arg):$/;" m class:Stats +init Lib/test/test_concurrent_futures/test_init.py /^def init(x):$/;" f +init Lib/test/test_decimal.py /^def init(m):$/;" f +init Lib/test/test_importlib/test_abc.py /^init = test_util.import_importlib('importlib')$/;" v +init Lib/test/test_importlib/test_api.py /^init = test_util.import_importlib('importlib')$/;" v +init Lib/test/test_importlib/test_locks.py /^init = test_util.import_importlib('importlib')$/;" v +init Lib/test/test_importlib/test_spec.py /^init = test_util.import_importlib('importlib')$/;" v +init Lib/test/test_importlib/test_util.py /^init = util.import_importlib('importlib')$/;" v +init Lib/turtledemo/planet_and_moon.py /^ def init(self):$/;" m class:GravSys +init Lib/turtledemo/planet_and_moon.py /^ def init(self):$/;" m class:Star +init Lib/urllib/request.py /^ def init(self):$/;" m class:ftpwrapper +initArgs Lib/test/test_unittest/test_break.py /^ initArgs = []$/;" v class:TestBreak.testMainInstallsHandler.FakeRunner +initArgs Lib/test/test_unittest/test_program.py /^ initArgs = None$/;" v class:FakeRunner +initContext Modules/_lsprof.c /^initContext(ProfilerObject *pObj, ProfilerContext *self, ProfilerEntry *entry)$/;" f file: +initEnc Modules/expat/xmltok.h /^ ENCODING initEnc;$/;" m struct:__anon619 +initGUI Tools/unittestgui/unittestgui.py /^ def initGUI(self, root, initialTestName):$/;" m class:TkTestRunner +initScan Modules/expat/xmltok.c /^initScan(const ENCODING *const *encodingTable, const INIT_ENCODING *enc,$/;" f file: +initScanContent Modules/expat/xmltok_ns.c /^NS(initScanContent)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +initScanProlog Modules/expat/xmltok_ns.c /^NS(initScanProlog)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +initUpdatePosition Modules/expat/xmltok.c /^initUpdatePosition(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +init__testsinglephase_basic Modules/_testsinglephase.c /^init__testsinglephase_basic(PyModuleDef *def)$/;" f file: +init_annotations Doc/tools/extensions/c_annotations.py /^def init_annotations(app):$/;" f +init_ast_literal_eval Modules/_xxtestfuzz/fuzzer.c /^static int init_ast_literal_eval(void) {$/;" f file: +init_basic_context Modules/_decimal/_decimal.c /^init_basic_context(PyObject *v)$/;" f file: +init_builtin_modules_table Python/import.c /^init_builtin_modules_table(void)$/;" f file: +init_by_array Modules/_randommodule.c /^init_by_array(RandomObject *self, uint32_t init_key[], size_t key_length)$/;" f file: +init_called Lib/test/test_ctypes/test_frombuffer.py /^ init_called = False$/;" v class:X +init_called Lib/test/test_ctypes/test_pickling.py /^ init_called = 0$/;" v class:X +init_co_cached Objects/codeobject.c /^init_co_cached(PyCodeObject *self) {$/;" f file: +init_code Objects/codeobject.c /^init_code(PyCodeObject *co, struct _PyCodeConstructor *con)$/;" f file: +init_condattr Python/thread_pthread.h /^init_condattr(void)$/;" f +init_csv_reader Modules/_xxtestfuzz/fuzzer.c /^static int init_csv_reader(void) {$/;" f file: +init_current_context Modules/_decimal/_decimal.c /^init_current_context(void)$/;" f file: +init_database Lib/msilib/__init__.py /^def init_database(name, schema,$/;" f +init_database Lib/test/test_msilib.py /^def init_database():$/;" f +init_db Lib/test/test_dbm.py /^ def init_db(self):$/;" m class:AnyDBMTestCase +init_db Lib/test/test_dbm_dumb.py /^ def init_db(self):$/;" m class:DumbDBMTestCase +init_dump_ascii_wstr Python/initconfig.c /^init_dump_ascii_wstr(const wchar_t *str)$/;" f file: +init_extended_context Modules/_decimal/_decimal.c /^init_extended_context(PyObject *v)$/;" f file: +init_fail Lib/test/test_concurrent_futures/test_init.py /^def init_fail(log_queue=None):$/;" f +init_filters Python/_warnings.c /^init_filters(PyInterpreterState *interp)$/;" f file: +init_flags Modules/_testbuffer.c /^init_flags(ndbuf_t *ndbuf)$/;" f file: +init_flags Objects/memoryobject.c /^init_flags(PyMemoryViewObject *mv)$/;" f file: +init_fortran_strides_from_shape Objects/memoryobject.c /^init_fortran_strides_from_shape(Py_buffer *view)$/;" f file: +init_frame Objects/frameobject.c /^init_frame(_PyInterpreterFrame *frame, PyFunctionObject *func, PyObject *locals)$/;" f file: +init_from_config_clear Programs/_testembed.c /^static void init_from_config_clear(PyConfig *config)$/;" f file: +init_fs_codec Objects/unicodeobject.c /^init_fs_codec(PyInterpreterState *interp)$/;" f file: +init_fs_encoding Objects/unicodeobject.c /^init_fs_encoding(PyThreadState *tstate)$/;" f file: +init_genrand Modules/_randommodule.c /^init_genrand(RandomObject *self, uint32_t s)$/;" f file: +init_handler_descrs Modules/pyexpat.c /^static int init_handler_descrs(pyexpat_state *state)$/;" f file: +init_identifiers Python/Python-ast.c /^static int init_identifiers(struct ast_state *state)$/;" f file: +init_import_site Python/pylifecycle.c /^init_import_site(void)$/;" f file: +init_importlib Python/import.c /^init_importlib(PyThreadState *tstate, PyObject *sysmod)$/;" f file: +init_importlib_external Python/import.c /^init_importlib_external(PyInterpreterState *interp)$/;" f file: +init_inline_values Objects/dictobject.c /^init_inline_values(PyObject *obj, PyTypeObject *tp)$/;" f file: +init_interned_dict Objects/unicodeobject.c /^init_interned_dict(PyInterpreterState *interp)$/;" f file: +init_interp_create_gil Python/pylifecycle.c /^init_interp_create_gil(PyThreadState *tstate, int gil)$/;" f file: +init_interp_main Python/pylifecycle.c /^init_interp_main(PyThreadState *tstate)$/;" f file: +init_interp_settings Python/pylifecycle.c /^init_interp_settings(PyInterpreterState *interp,$/;" f file: +init_interpreter Python/pystate.c /^init_interpreter(PyInterpreterState *interp,$/;" f file: +init_json_loads Modules/_xxtestfuzz/fuzzer.c /^static int init_json_loads(void) {$/;" f file: +init_len Modules/_testbuffer.c /^init_len(Py_buffer *base)$/;" f file: +init_len Objects/memoryobject.c /^init_len(Py_buffer *view)$/;" f file: +init_method_ref Modules/_pickle.c /^init_method_ref(PyObject *self, PyObject *name,$/;" f file: +init_module Modules/_testsinglephase.c /^init_module(PyObject *module, module_state *state)$/;" f file: +init_ndbuf Modules/_testbuffer.c /^init_ndbuf(PyObject *items, PyObject *shape, PyObject *strides,$/;" f file: +init_normalization Parser/pegen.c /^init_normalization(Parser *p)$/;" f file: +init_own_gil Python/ceval_gil.c /^init_own_gil(PyInterpreterState *interp, struct _gil_runtime_state *gil)$/;" f file: +init_refchain Objects/object.c /^init_refchain(PyInterpreterState *interp)$/;" f file: +init_return_converter Tools/clinic/clinic.py /^class init_return_converter(long_return_converter):$/;" c +init_runtime Python/pystate.c /^init_runtime(_PyRuntimeState *runtime,$/;" f file: +init_set_builtins_open Python/pylifecycle.c /^init_set_builtins_open(void)$/;" f file: +init_sha3type Modules/sha3module.c 573;" d file: +init_sha3type Modules/sha3module.c 591;" d file: +init_shape_strides Objects/memoryobject.c /^init_shape_strides(Py_buffer *dest, const Py_buffer *src)$/;" f file: +init_shared_gil Python/ceval_gil.c /^init_shared_gil(PyInterpreterState *interp, struct _gil_runtime_state *gil)$/;" f file: +init_shared_values Objects/memoryobject.c /^init_shared_values(Py_buffer *dest, const Py_buffer *src)$/;" f file: +init_shelf Lib/turtledemo/sorting_animate.py /^def init_shelf():$/;" f +init_shell Lib/idlelib/idle_test/test_sidebar.py /^ def init_shell(cls):$/;" m class:ShellSidebarTest +init_simple Modules/_testbuffer.c /^init_simple(ndbuf_t *ndbuf, PyObject *items, PyObject *format,$/;" f file: +init_slice Modules/_testbuffer.c /^init_slice(Py_buffer *base, PyObject *key, int dim)$/;" f file: +init_slice Objects/memoryobject.c /^init_slice(Py_buffer *base, PyObject *key, int dim)$/;" f file: +init_sockobject Modules/socketmodule.c /^init_sockobject(socket_state *state, PySocketSockObject *s,$/;" f file: +init_sre_compile Modules/_xxtestfuzz/fuzzer.c /^static int init_sre_compile(void) {$/;" f file: +init_sre_match Modules/_xxtestfuzz/fuzzer.c /^static int init_sre_match(void) {$/;" f file: +init_state Include/internal/pycore_ceval.h /^ void* (*init_state)(void);$/;" m struct:__anon4 +init_state Include/internal/pycore_ceval_state.h /^ void* (*init_state)(void);$/;" m struct:trampoline_api_st +init_state Lib/idlelib/colorizer.py /^ def init_state(self):$/;" m class:ColorDelegator +init_state Modules/_testsinglephase.c /^init_state(module_state *state)$/;" f file: +init_stdio_encoding Objects/unicodeobject.c /^init_stdio_encoding(PyInterpreterState *interp)$/;" f file: +init_strides_from_shape Objects/memoryobject.c /^init_strides_from_shape(Py_buffer *view)$/;" f file: +init_struct_unpack Modules/_xxtestfuzz/fuzzer.c /^static int init_struct_unpack(void) {$/;" f file: +init_structure Modules/_testbuffer.c /^init_structure(ndbuf_t *ndbuf, PyObject *shape, PyObject *strides,$/;" f file: +init_suboffsets Modules/_testbuffer.c /^init_suboffsets(ndbuf_t *ndbuf)$/;" f file: +init_suboffsets Objects/memoryobject.c /^init_suboffsets(Py_buffer *dest, const Py_buffer *src)$/;" f file: +init_sys_streams Python/pylifecycle.c /^init_sys_streams(PyThreadState *tstate)$/;" f file: +init_test Lib/test/test_bdb.py /^ def init_test(self):$/;" m class:Tracer +init_test_file Lib/test/test_lib2to3/test_refactor.py /^ def init_test_file(self, test_file):$/;" m class:TestRefactoringTool +init_threadstate Python/pystate.c /^init_threadstate(PyThreadState *tstate,$/;" f file: +init_timezone Modules/timemodule.c /^init_timezone(PyObject *m)$/;" f file: +init_tp_subclasses Objects/typeobject.c /^init_tp_subclasses(PyTypeObject *self)$/;" f file: +init_types Python/Python-ast.c /^init_types(struct ast_state *state)$/;" f file: +init_validators Lib/idlelib/configdialog.py /^ def init_validators(self):$/;" m class:ShedPage +init_validators Lib/idlelib/configdialog.py /^ def init_validators(self):$/;" m class:WinPage +init_weakref Objects/weakrefobject.c /^init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)$/;" f file: +init_widgets Lib/idlelib/sidebar.py /^ def init_widgets(self):$/;" m class:BaseSideBar +init_widgets Lib/idlelib/sidebar.py /^ def init_widgets(self):$/;" m class:LineNumbers +init_widgets Lib/idlelib/sidebar.py /^ def init_widgets(self):$/;" m class:ShellSidebar +init_zipimport Python/import.c /^init_zipimport(PyThreadState *tstate, int verbose)$/;" f file: +initarg Lib/test/pickletester.py /^class initarg(C):$/;" c +inited Lib/mimetypes.py /^inited = False$/;" v +initfp Lib/aifc.py /^ def initfp(self, file):$/;" m class:Aifc_read +initfp Lib/aifc.py /^ def initfp(self, file):$/;" m class:Aifc_write +initfp Lib/sunau.py /^ def initfp(self, file):$/;" m class:Au_read +initfp Lib/sunau.py /^ def initfp(self, file):$/;" m class:Au_write +initfp Lib/wave.py /^ def initfp(self, file):$/;" m class:Wave_read +initfp Lib/wave.py /^ def initfp(self, file):$/;" m class:Wave_write +initfunc Include/cpython/import.h /^ PyObject* (*initfunc)(void);$/;" m struct:_inittab +initial Lib/test/test_monitoring.py /^ initial = [$/;" v class:ExceptionMonitoringTest +initial Modules/itertoolsmodule.c /^ PyObject *initial;$/;" m struct:__anon417 file: +initial Python/pystate.c /^static const _PyRuntimeState initial = _PyRuntimeState_INIT(_PyRuntime);$/;" v file: +initial_names Tools/peg_generator/pegen/grammar.py /^ def initial_names(self) -> AbstractSet[str]:$/;" m class:Cut +initialised Modules/_cursesmodule.c /^static int initialised = FALSE;$/;" v file: +initialised_setupterm Modules/_cursesmodule.c /^static int initialised_setupterm = FALSE;$/;" v file: +initialisedcolors Modules/_cursesmodule.c /^static int initialisedcolors = FALSE;$/;" v file: +initialize Lib/tkinter/__init__.py /^ initialize = set$/;" v class:BooleanVar +initialize Lib/tkinter/__init__.py /^ initialize = set$/;" v class:Variable +initialize Modules/_ctypes/_ctypes_test.c /^ void (*initialize)(void *(*)(int), void(*)(void *));$/;" m struct:__anon514 file: +initialize Tools/clinic/clinic.py /^ def initialize(self) -> str:$/;" m class:CConverter +initializeEncoding Modules/expat/xmlparse.c /^initializeEncoding(XML_Parser parser) {$/;" f file: +initialize_caches Modules/_zoneinfo.c /^initialize_caches(zoneinfo_state *state)$/;" f file: +initialize_function_pointers Modules/overlapped.c /^initialize_function_pointers(void)$/;" f file: +initialize_line_tools Python/instrumentation.c /^initialize_line_tools(PyCodeObject *code, _Py_LocalMonitors *all_events)$/;" f file: +initialize_lines Python/instrumentation.c /^initialize_lines(PyCodeObject *code)$/;" f file: +initialize_locals Python/ceval.c /^initialize_locals(PyThreadState *tstate, PyFunctionObject *func,$/;" f file: +initialize_members Objects/structseq.c /^initialize_members(PyStructSequence_Desc *desc,$/;" f file: +initialize_static_fields Objects/structseq.c /^initialize_static_fields(PyTypeObject *type, PyStructSequence_Desc *desc,$/;" f file: +initialize_static_type Objects/structseq.c /^initialize_static_type(PyTypeObject *type, PyStructSequence_Desc *desc,$/;" f file: +initialize_structseq_dict Objects/structseq.c /^initialize_structseq_dict(PyStructSequence_Desc *desc, PyObject* dict,$/;" f file: +initialize_token Parser/pegen.c /^initialize_token(Parser *p, Token *parser_token, struct token *new_token, int token_type) {$/;" f file: +initialize_tools Python/instrumentation.c /^initialize_tools(PyCodeObject *code)$/;" f file: +initialized Include/cpython/modsupport.h /^ int initialized;$/;" m struct:_PyArg_Parser +initialized Include/cpython/pystate.h /^ unsigned int initialized:1;$/;" m struct:_ts::__anon219 +initialized Include/internal/pycore_ast_state.h /^ int initialized;$/;" m struct:ast_state +initialized Include/internal/pycore_pythread.h /^ int initialized;$/;" m struct:_pythread_runtime_state +initialized Include/internal/pycore_runtime.h /^ int initialized;$/;" m struct:pyruntimestate +initialized Include/internal/pycore_tracemalloc.h /^ } initialized;$/;" m struct:_PyTraceMalloc_Config typeref:enum:_PyTraceMalloc_Config::__anon30 +initialized Lib/__hello__.py /^initialized = True$/;" v +initialized Lib/__phello__/__init__.py /^initialized = True$/;" v +initialized Lib/__phello__/spam.py /^initialized = True$/;" v +initialized Lib/test/test_subclassinit.py /^ initialized = False$/;" v class:Test.test_init_subclass.A +initialized Lib/test/test_subclassinit.py /^ initialized = False$/;" v class:Test.test_init_subclass_dict.A +initialized Modules/_io/_iomodule.h /^ int initialized;$/;" m struct:_io_state +initialized Modules/_sqlite/connection.h /^ int initialized;$/;" m struct:__anon359 +initialized Modules/_sqlite/cursor.h /^ int initialized;$/;" m struct:__anon358 +initialized Modules/_testsinglephase.c /^ _PyTime_t initialized;$/;" m struct:__anon387 file: +initialized Modules/getbuildinfo.c /^static int initialized = 0;$/;" v file: +initialized Python/getversion.c /^static int initialized = 0;$/;" v file: +initialized Python/thread.c 22;" d file: +initialized Tools/freeze/flag.py /^initialized = True$/;" v +initialized_count Modules/_testsinglephase.c /^ int initialized_count;$/;" m struct:__anon388 file: +initializer Lib/test/_test_multiprocessing.py /^def initializer(ns):$/;" f +initializer Modules/cjkcodecs/_codecs_iso2022.c /^ iso2022_init_func initializer;$/;" m struct:iso2022_designation file: +initiate_send Lib/test/support/asynchat.py /^ def initiate_send(self):$/;" m class:async_chat +initiate_send Lib/test/support/asyncore.py /^ def initiate_send(self):$/;" m class:dispatcher_with_send +initlog Lib/cgi.py /^def initlog(*allargs):$/;" f +initproc Include/object.h /^typedef int (*initproc)(PyObject *, PyObject *, PyObject *);$/;" t +initprofile Lib/pstats.py /^ initprofile = None$/;" v class:f8.ProfileBrowser +initprofile Lib/pstats.py /^ initprofile = sys.argv[1]$/;" v class:f8.ProfileBrowser +inits Lib/test/test_gc.py /^ inits = []$/;" v class:GCTests.test_trashcan_threads.C +initscr Lib/curses/__init__.py /^def initscr():$/;" f +inittab Include/internal/pycore_import.h /^ struct _inittab *inittab;$/;" m struct:_import_runtime_state typeref:struct:_import_runtime_state::_inittab +inittab_copy Python/import.c /^static struct _inittab *inittab_copy = NULL;$/;" v typeref:struct:_inittab file: +inlen Modules/cjkcodecs/multibytecodec.c /^ Py_ssize_t inpos, inlen;$/;" m struct:__anon322 file: +inline Modules/_blake2/impl/blake2.h 49;" d +inline Modules/_decimal/libmpdec/mpdecimal.c 69;" d file: +inline Modules/_decimal/libmpdec/mpdecimal.c 70;" d file: +inline Modules/_hacl/include/krml/internal/target.h 19;" d +inline Modules/expat/internal.h 101;" d +inline Modules/expat/internal.h 104;" d +inline Modules/expat/internal.h 95;" d +inline_comment_prefixes Lib/test/test_configparser.py /^ inline_comment_prefixes = ';'$/;" v class:CompatibleTestCase +inline_comment_prefixes Lib/test/test_configparser.py /^ inline_comment_prefixes = (';', '#')$/;" v class:CfgParserTestCaseClass +inline_comment_prefixes Lib/test/test_configparser.py /^ inline_comment_prefixes = ('\/\/', '"')$/;" v class:ConfigParserTestCaseNonStandardDelimiters +inline_comment_prefixes Lib/test/test_configparser.py /^ inline_comment_prefixes = ('\/\/', '"')$/;" v class:RawConfigParserTestCaseNonStandardDelimiters +inline_comment_prefixes Lib/test/test_configparser.py /^ inline_comment_prefixes = ('\/\/',)$/;" v class:RawConfigParserTestSambaConf +inline_comprehension Python/symtable.c /^inline_comprehension(PySTEntryObject *ste, PySTEntryObject *comp,$/;" f file: +inline_small_exit_blocks Python/flowgraph.c /^inline_small_exit_blocks(basicblock *bb) {$/;" f file: +inlined_comprehension_state Python/compile.c /^} inlined_comprehension_state;$/;" t typeref:struct:__anon673 file: +inlined_py_calls Include/pystats.h /^ uint64_t inlined_py_calls;$/;" m struct:_call_stats +inmodule Tools/c-analyzer/cpython/_builtin_types.py /^ def inmodule(self):$/;" m class:BuiltinTypeInfo +inner Lib/_pylong.py /^ def inner(L, R):$/;" f function:_digits2int +inner Lib/_pylong.py /^ def inner(a, b):$/;" f function:_str_to_int_inner +inner Lib/_pylong.py /^ def inner(n, w):$/;" f function:int_to_decimal +inner Lib/_pylong.py /^ def inner(x, L, R):$/;" f function:_int2digits +inner Lib/contextlib.py /^ async def inner(*args, **kwds):$/;" f function:AsyncContextDecorator.__call__ +inner Lib/contextlib.py /^ def inner(*args, **kwds):$/;" f function:ContextDecorator.__call__ +inner Lib/idlelib/editor.py /^ def inner(offset, _startindex=startindex,$/;" f function:EditorWindow._build_char_in_string_func +inner Lib/ssl.py /^ def inner(conn, direction, version, content_type, msg_type, data):$/;" f function:SSLContext._msg_callback +inner Lib/test/support/__init__.py /^ def inner(*args, **kwds):$/;" f function:run_with_tz.decorator +inner Lib/test/support/_hypothesis_stubs/strategies.py /^ def inner(*args, **kwargs):$/;" f function:composite +inner Lib/test/test_asyncio/test_events.py /^ async def inner():$/;" f function:AbstractEventLoopTests.test_not_implemented_async +inner Lib/test/test_asyncio/test_streams.py /^ async def inner(httpd):$/;" f function:.test_async_writer_api +inner Lib/test/test_asyncio/test_streams.py /^ async def inner(httpd):$/;" f function:.test_async_writer_api_exception_after_close +inner Lib/test/test_asyncio/test_tasks.py /^ async def inner():$/;" f function:BaseTaskTests.test_bare_create_task +inner Lib/test/test_asyncio/test_tasks.py /^ async def inner():$/;" f function:BaseTaskTests.test_shield_effect +inner Lib/test/test_asyncio/test_tasks.py /^ async def inner():$/;" f function:BaseTaskTests.test_yield_future_passes_cancel +inner Lib/test/test_asyncio/test_tasks.py /^ async def inner():$/;" f function:BaseTaskTests.test_yield_wait_does_not_shield_cancel +inner Lib/test/test_asyncio/test_tasks.py /^ async def inner():$/;" f function:CoroutineGatherTests.test_cancellation_broadcast +inner Lib/test/test_asyncio/test_tasks.py /^ async def inner(f):$/;" f function:CoroutineGatherTests.test_exception_marking +inner Lib/test/test_asyncio/test_waitfor.py /^ async def inner():$/;" f function:AsyncioWaitForTest.test_wait_for_reraises_exception_during_cancellation.foo +inner Lib/test/test_asyncio/test_waitfor.py /^ async def inner():$/;" f function:AsyncioWaitForTest.test_wait_for_waits_for_task_cancellation_w_timeout_0.foo +inner Lib/test/test_asyncio/test_waitfor.py /^ async def inner():$/;" f function:AsyncioWaitForTest.test_wait_for_cancellation_race_condition +inner Lib/test/test_asyncio/test_waitfor.py /^ async def inner():$/;" f function:AsyncioWaitForTest.test_wait_for_issue86296 +inner Lib/test/test_asyncio/test_waitfor.py /^ async def inner():$/;" f function:AsyncioWaitForTest.test_wait_for_waits_for_task_cancellation +inner Lib/test/test_capi/test_misc.py /^ def inner():$/;" f function:Test_Pep523API.test_inlined_send +inner Lib/test/test_capi/test_misc.py /^ def inner(x):$/;" f function:Test_Pep523API.test_inlined_call_function_ex +inner Lib/test/test_capi/test_misc.py /^ def inner(x=42):$/;" f function:Test_Pep523API.test_inlined_call +inner Lib/test/test_decorators.py /^ def inner(cls):$/;" m class:TestDecorators.test_wrapped_descriptor_inside_classmethod.Class +inner Lib/test/test_dis.py /^ def inner(e=5, f=6):$/;" f function:outer.f +inner Lib/test/test_exceptions.py /^ def inner():$/;" f function:ExceptionTests.test_memory_error_cleanup +inner Lib/test/test_exceptions.py /^ def inner():$/;" f function:ExceptionTests.test_recursion_error_cleanup +inner Lib/test/test_frame.py /^ def inner():$/;" f function:FrameAttrsTest.make_frames.outer +inner Lib/test/test_frame.py /^ def inner():$/;" f function:ReprTest.test_repr.outer +inner Lib/test/test_frame.py /^ def inner(self, x=5, **kwargs):$/;" m class:ClearTest +inner Lib/test/test_fstring.py /^ def inner():$/;" f function:.test_closure.outer +inner Lib/test/test_future3.py /^ def inner():$/;" f function:nester +inner Lib/test/test_itertools.py /^ def inner(self):$/;" f function:pickle_deprecated +inner Lib/test/test_logging.py /^ def inner():$/;" f function:FakeHandler.record_call +inner Lib/test/test_logging.py /^ def inner():$/;" f function:LoggerTest.test_find_caller_with_stacklevel +inner Lib/test/test_logging.py /^ def inner():$/;" f function:ShutdownTest.raise_error +inner Lib/test/test_monitoring.py /^ def inner():$/;" f function:TestRegressions.test_105162 +inner Lib/test/test_reprlib.py /^ def inner():$/;" f function:ReprTests.test_cell.get_cell +inner Lib/test/test_scope.py /^ def inner():$/;" f function:ScopeTests.testCellIsArgAndEscapes.external +inner Lib/test/test_scope.py /^ def inner():$/;" f function:ScopeTests.testCellIsLocalAndEscapes.external +inner Lib/test/test_scope.py /^ def inner():$/;" f function:ScopeTests.testUnboundLocal.errorInInner +inner Lib/test/test_scope.py /^ def inner():$/;" f function:ScopeTests.testUnboundLocal.errorInOuter +inner Lib/test/test_scope.py /^ def inner():$/;" f function:ScopeTests.testUnboundLocal_AfterDel.errorInInner +inner Lib/test/test_scope.py /^ def inner():$/;" f function:ScopeTests.testUnboundLocal_AfterDel.errorInOuter +inner Lib/test/test_sys.py /^ def inner():$/;" f function:SizeofTest.test_objecttypes.get_cell +inner Lib/test/test_sys.py /^ def inner():$/;" f function:SizeofTest.test_objecttypes.get_cell2 +inner Lib/test/test_traceback.py /^ def inner():$/;" f function:MiscTracebackCases.test_clear +inner Lib/test/test_type_params.py /^ def inner[C, D]():$/;" f function:TypeParamsTypeParamsDunder.test_typeparams_dunder_function_01.outer +inner Lib/test/test_unittest/test_skipping.py /^ def inner(*a):$/;" f function:Test_TestSkipping.test_decorated_skip.decorator +inner Lib/test/test_unittest/testmock/testasync.py /^ async def inner():$/;" f function:AsyncArguments.test_wraps_coroutine +inner Lib/test/test_unittest/testmock/testasync.py /^ def inner():$/;" f function:AsyncArguments.test_wraps_normal_function +inner Lib/test/test_warnings/data/stacklevel.py /^def inner(message, stacklevel=1):$/;" f +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_base_exception +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_exception +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_generator_exit +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_stop_iteration +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_return +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_work +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_yield +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestPEP380Operation.test_catching_exception_from_subgen_and_returning +inner Lib/test/test_yield_from.py /^ def inner():$/;" f function:TestPEP380Operation.test_close_with_cleared_frame +inner Lib/test/test_zoneinfo/_support.py /^ def inner():$/;" f function:call_once +inner Lib/typing.py /^ def inner(*args, **kwds):$/;" f function:_tp_cache.decorator +inner Lib/unittest/result.py /^ def inner(self, *args, **kw):$/;" f function:failfast +inner Lib/unittest/signals.py /^ def inner(*args, **kwargs):$/;" f function:removeHandler +inner Tools/scripts/var_access_benchmark.py /^ def inner(trials=trials):$/;" f function:make_nonlocal_reader +inner Tools/scripts/var_access_benchmark.py /^ def inner(trials=trials):$/;" f function:make_nonlocal_writer +inner1 Lib/test/test_asyncio/test_tasks.py /^ async def inner1():$/;" f function:BaseTaskTests.test_task_basics +inner2 Lib/test/test_asyncio/test_tasks.py /^ async def inner2():$/;" f function:BaseTaskTests.test_task_basics +inner_api Lib/test/test_warnings/data/package_helper.py /^def inner_api(message, *, stacklevel, warnings_module):$/;" f +inner_function Lib/test/test_funcattrs.py /^ def inner_function():$/;" f function:global_function +inner_function2 Lib/test/test_funcattrs.py /^ def inner_function2():$/;" f function:global_function.inner_function.inner_global_function +inner_global_function Lib/test/test_funcattrs.py /^ def inner_global_function():$/;" f function:global_function.inner_function +inner_has_pos_only Lib/test/test_positional_only_arg.py /^ def inner_has_pos_only():$/;" f function:PositionalOnlyTestCase.test_annotations_in_closures.multiple_levels +inner_has_pos_only Lib/test/test_positional_only_arg.py /^ def inner_has_pos_only():$/;" f function:PositionalOnlyTestCase.test_annotations_in_closures +inner_length Modules/_blake2/impl/blake2.h /^ uint8_t inner_length; \/\/ 16$/;" m struct:__blake2s_param +inner_length Modules/_blake2/impl/blake2.h /^ uint8_t inner_length; \/\/ 18$/;" m struct:__blake2b_param +inner_raise Lib/test/test_traceback.py /^ def inner_raise():$/;" f function:BaseExceptionReportingTests.test_cause +inner_raise Lib/test/test_traceback.py /^ def inner_raise():$/;" f function:BaseExceptionReportingTests.test_cause_and_context +inner_raise Lib/test/test_traceback.py /^ def inner_raise():$/;" f function:BaseExceptionReportingTests.test_cause_recursive +inner_raise Lib/test/test_traceback.py /^ def inner_raise():$/;" f function:BaseExceptionReportingTests.test_context +inner_raising_func Lib/test/test_exceptions.py /^ def inner_raising_func():$/;" f function:ExceptionTests.testExceptionCleanupState +inner_test Lib/test/test_unittest/testmock/testasync.py /^ def inner_test(mock_type):$/;" f function:AsyncContextManagerTest.test_mock_supports_async_context_manager +inner_test Lib/test/test_unittest/testmock/testasync.py /^ def inner_test(mock_type):$/;" f function:AsyncContextManagerTest.test_set_return_value_of_aenter +inner_test Lib/test/test_unittest/testmock/testasync.py /^ def inner_test(mock_type):$/;" f function:AsyncIteratorTest.test_mock_aiter_and_anext_asyncmock +inner_test Lib/test/test_unittest/testmock/testasync.py /^ def inner_test(mock_type):$/;" f function:AsyncSpecTest.test_spec_mock_type_kw +inner_test Lib/test/test_unittest/testmock/testasync.py /^ def inner_test(mock_type):$/;" f function:AsyncSpecTest.test_spec_mock_type_positional +inner_test Lib/test/test_unittest/testmock/testasync.py /^ def inner_test(mock_type):$/;" f function:AsyncSpecTest.test_spec_normal_methods_on_class +inner_write Modules/_sqlite/blob.c /^inner_write(pysqlite_Blob *self, const void *buf, Py_ssize_t len,$/;" f file: +innermost Lib/test/test_logging.py /^ def innermost():$/;" f function:LoggerTest.test_find_caller_with_stacklevel +innermost Lib/test/test_yield_from.py /^ def innermost():$/;" f function:TestPEP380Operation.test_close_with_cleared_frame +ino_t Lib/test/test_lib2to3/data/infinite_recursion.py /^ino_t = __darwin_ino_t$/;" v +inobj Modules/cjkcodecs/multibytecodec.c /^ PyObject *inobj;$/;" m struct:__anon322 file: +inp Parser/tokenizer.h /^ char *inp; \/* End of data in buffer *\/$/;" m struct:tok_state +inplace Lib/unittest/mock.py /^inplace = ' '.join('i%s' % n for n in numerics.split())$/;" v +inplace_divrem1 Objects/longobject.c /^inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n)$/;" f file: +inplace_member Modules/_testcapi/structmember.c /^ char inplace_member[6];$/;" m struct:__anon543 file: +inplace_rem1 Objects/longobject.c /^inplace_rem1(digit *pin, Py_ssize_t size, digit n)$/;" f file: +inpos Modules/cjkcodecs/multibytecodec.c /^ Py_ssize_t inpos, inlen;$/;" m struct:__anon322 file: +input Lib/fileinput.py /^def input(files=None, inplace=False, backup="", *, mode="r", openhook=None,$/;" f +input Lib/pydoc.py /^ def input(self):$/;" m class:Helper +input Parser/tokenizer.h /^ char* input; \/* Tokenizer's newline translated copy of the string. *\/$/;" m struct:tok_state +input Tools/cases_generator/parser.py /^ def input(self) -> InputEffect | None:$/;" m class:Parser +input_buffer Modules/_bz2module.c /^ char *input_buffer;$/;" m struct:__anon466 file: +input_buffer Modules/_lzmamodule.c /^ uint8_t *input_buffer;$/;" m struct:__anon296 file: +input_buffer Modules/_pickle.c /^ char *input_buffer;$/;" m struct:UnpicklerObject file: +input_buffer Modules/zlibmodule.c /^ uint8_t *input_buffer;$/;" m struct:__anon307 file: +input_buffer_size Modules/_bz2module.c /^ size_t input_buffer_size;$/;" m struct:__anon466 file: +input_buffer_size Modules/_lzmamodule.c /^ size_t input_buffer_size;$/;" m struct:__anon296 file: +input_buffer_size Modules/zlibmodule.c /^ Py_ssize_t input_buffer_size;$/;" m struct:__anon307 file: +input_iter Modules/_csv.c /^ PyObject *input_iter; \/* iterate over this for input lines *\/$/;" m struct:__anon625 file: +input_len Modules/_pickle.c /^ Py_ssize_t input_len;$/;" m struct:UnpicklerObject file: +input_line Modules/_pickle.c /^ char *input_line;$/;" m struct:UnpicklerObject file: +inputs Tools/cases_generator/parser.py /^ def inputs(self) -> list[InputEffect] | None:$/;" m class:Parser +inquiry Include/object.h /^typedef int (*inquiry)(PyObject *);$/;" t +ins Lib/test/test_importlib/test_abc.py /^ def ins(self):$/;" m class:ABCTestHarness +ins Modules/arraymodule.c /^ins(arrayobject *self, Py_ssize_t where, PyObject *v)$/;" f file: +ins1 Modules/arraymodule.c /^ins1(arrayobject *self, Py_ssize_t where, PyObject *v)$/;" f file: +ins1 Objects/listobject.c /^ins1(PyListObject *self, Py_ssize_t where, PyObject *v)$/;" f file: +insert Lib/_collections_abc.py /^ def insert(self, index, value):$/;" m class:MutableSequence +insert Lib/collections/__init__.py /^ def insert(self, i, item):$/;" m class:UserList +insert Lib/idlelib/colorizer.py /^ def insert(self, index, chars, tags=None):$/;" m class:ColorDelegator +insert Lib/idlelib/idle_test/mock_tk.py /^ def insert(self, index, chars):$/;" m class:Text +insert Lib/idlelib/idle_test/test_editor.py /^def insert(text, string):$/;" f +insert Lib/idlelib/idle_test/test_percolator.py /^ def insert(self, *args):$/;" m class:MyFilter +insert Lib/idlelib/percolator.py /^ def insert(self, *args):$/;" m class:_percolator.Tracer +insert Lib/idlelib/percolator.py /^ def insert(self, index, chars, tags=None):$/;" m class:Percolator +insert Lib/idlelib/pyshell.py /^ def insert(self, index, chars, tags=None):$/;" m class:ModifiedUndoDelegator +insert Lib/idlelib/pyshell.py /^ def insert(self, index, chars, tags=None):$/;" m class:UserInputTaggingDelegator +insert Lib/idlelib/sidebar.py /^ def insert(self, index, chars, tags=None):$/;" m class:EndLineDelegator +insert Lib/idlelib/sidebar.py /^ def insert(self, index, chars, tags=None):$/;" m class:WrappedLineHeightChangeDelegator +insert Lib/idlelib/undo.py /^ def insert(self, index, chars, tags=None):$/;" m class:UndoDelegator +insert Lib/re/_parser.py /^ def insert(self, index, code):$/;" m class:SubPattern +insert Lib/test/test_bisect.py /^ def insert(self, index, item):$/;" m class:TestInsort.test_listDerived.List +insert Lib/test/test_bisect.py /^ def insert(self, idx, item):$/;" m class:Range +insert Lib/test/test_collections.py /^ def insert(self, index, value):$/;" m class:TestCollectionABCs.test_MutableSequence_mixins.MutableSequenceSubclass +insert Lib/tkinter/__init__.py /^ def insert(self, *args):$/;" m class:Canvas +insert Lib/tkinter/__init__.py /^ def insert(self, index, *elements):$/;" m class:Listbox +insert Lib/tkinter/__init__.py /^ def insert(self, index, chars, *args):$/;" m class:Text +insert Lib/tkinter/__init__.py /^ def insert(self, index, itemType, cnf={}, **kw):$/;" m class:Menu +insert Lib/tkinter/__init__.py /^ def insert(self, index, s):$/;" m class:Spinbox +insert Lib/tkinter/__init__.py /^ def insert(self, index, string):$/;" m class:Entry +insert Lib/tkinter/tix.py /^ def insert(self, index, cnf={}, **kw):$/;" m class:TList +insert Lib/tkinter/tix.py /^ def insert(self, index, str):$/;" m class:ComboBox +insert Lib/tkinter/ttk.py /^ def insert(self, parent, index, iid=None, **kw):$/;" m class:Treeview +insert Lib/tkinter/ttk.py /^ def insert(self, pos, child, **kw):$/;" m class:Notebook +insert Lib/tkinter/ttk.py /^ def insert(self, pos, child, **kw):$/;" m class:Panedwindow +insert Lib/turtledemo/sorting_animate.py /^ def insert(self, key, b):$/;" m class:Shelf +insert Lib/xml/etree/ElementTree.py /^ def insert(self, index, subelement):$/;" m class:Element +insertBefore Lib/xml/dom/minidom.py /^ def insertBefore(self, newChild, refChild):$/;" m class:Childless +insertBefore Lib/xml/dom/minidom.py /^ def insertBefore(self, newChild, refChild):$/;" m class:Entity +insertBefore Lib/xml/dom/minidom.py /^ def insertBefore(self, newChild, refChild):$/;" m class:Node +insertData Lib/xml/dom/minidom.py /^ def insertData(self, offset, arg):$/;" m class:CharacterData +insert_after Objects/weakrefobject.c /^insert_after(PyWeakReference *newref, PyWeakReference *prev)$/;" f file: +insert_cascade Lib/tkinter/__init__.py /^ def insert_cascade(self, index, cnf={}, **kw):$/;" m class:Menu +insert_checkbutton Lib/tkinter/__init__.py /^ def insert_checkbutton(self, index, cnf={}, **kw):$/;" m class:Menu +insert_child Lib/lib2to3/pytree.py /^ def insert_child(self, i, child):$/;" m class:Node +insert_command Lib/tkinter/__init__.py /^ def insert_command(self, index, cnf={}, **kw):$/;" m class:Menu +insert_comments Modules/_elementtree.c /^ char insert_comments;$/;" m struct:__anon385 file: +insert_head Objects/weakrefobject.c /^insert_head(PyWeakReference *newref, PyWeakReference **list)$/;" f file: +insert_into_dictkeys Objects/dictobject.c /^insert_into_dictkeys(PyDictKeysObject *keys, PyObject *name)$/;" f file: +insert_lop Modules/_curses_panel.c /^insert_lop(PyCursesPanelObject *po)$/;" f file: +insert_pis Modules/_elementtree.c /^ char insert_pis;$/;" m struct:__anon385 file: +insert_prefix_instructions Python/compile.c /^insert_prefix_instructions(_PyCompile_CodeUnitMetadata *umd, basicblock *entryblock,$/;" f file: +insert_radiobutton Lib/tkinter/__init__.py /^ def insert_radiobutton(self, index, cnf={}, **kw):$/;" m class:Menu +insert_separator Lib/tkinter/__init__.py /^ def insert_separator(self, index, cnf={}, **kw):$/;" m class:Menu +insert_to_emptydict Objects/dictobject.c /^insert_to_emptydict(PyInterpreterState *interp, PyDictObject *mp,$/;" f file: +insert_to_freepool Objects/obmalloc.c /^insert_to_freepool(OMState *state, poolp pool)$/;" f file: +insert_to_usedpool Objects/obmalloc.c /^insert_to_usedpool(OMState *state, poolp pool)$/;" f file: +insertdict Objects/dictobject.c /^insertdict(PyInterpreterState *interp, PyDictObject *mp,$/;" f file: +insertfilter Lib/idlelib/percolator.py /^ def insertfilter(self, filter):$/;" m class:Percolator +insertfilterafter Lib/idlelib/percolator.py /^ def insertfilterafter(self, filter, after):$/;" m class:Percolator +insertion_resize Objects/dictobject.c /^insertion_resize(PyInterpreterState *interp, PyDictObject *mp, int unicode)$/;" f file: +insertion_sort Lib/encodings/punycode.py /^def insertion_sort(base, extended, errors):$/;" f +insertion_unsort Lib/encodings/punycode.py /^def insertion_unsort(str, extended):$/;" f +insertptr PC/msvcrtmodule.c /^insertptr(PyObject *mod, char *name, void *value)$/;" f file: +inskey PC/winreg.c /^inskey(PyObject *mod, char *name, HKEY key)$/;" f file: +insort Lib/bisect.py /^insort = insort_right$/;" v +insort_left Lib/bisect.py /^def insort_left(a, x, lo=0, hi=None, *, key=None):$/;" f +insort_right Lib/bisect.py /^def insort_right(a, x, lo=0, hi=None, *, key=None):$/;" f +inspect Include/cpython/initconfig.h /^ int inspect;$/;" m struct:PyConfig +inst Lib/test/test_capi/test_misc.py /^ inst = cls()$/;" v class:CAPITest.test_sublclassing_managed_both.C2 +inst Lib/test/test_exceptions.py /^ inst = exc$/;" v class:ExceptionTests.test_memory_error_subclasses.TestException +inst Python/bytecodes.c 48;" d file: +inst_def Tools/cases_generator/parser.py /^ def inst_def(self) -> InstDef | None:$/;" m class:Parser +inst_header Tools/cases_generator/parser.py /^ def inst_header(self) -> InstHeader | None:$/;" m class:Parser +inst_method_calling Lib/test/test_trace.py /^ def inst_method_calling(self, x):$/;" m class:TracedClass +inst_method_linear Lib/test/test_trace.py /^ def inst_method_linear(self, y):$/;" m class:TracedClass +install Lib/gettext.py /^ def install(self, names=None):$/;" m class:NullTranslations +install Lib/gettext.py /^def install(domain, localedir=None, *, names=None):$/;" f +install Lib/xml/dom/expatbuilder.py /^ def install(self, parser):$/;" m class:ExpatBuilder +install Lib/xml/dom/expatbuilder.py /^ def install(self, parser):$/;" m class:InternalSubsetExtractor +install Lib/xml/dom/expatbuilder.py /^ def install(self, parser):$/;" m class:Namespaces +install Tools/ssl/multissltests.py /^ def install(self):$/;" m class:AbstractBuilder +installDir PC/launcher2.c /^ const wchar_t *installDir;$/;" m struct:EnvironmentInfo file: +installEnvironment PC/launcher2.c /^installEnvironment(const SearchInfo *search)$/;" f +installHandler Lib/unittest/signals.py /^def installHandler():$/;" f +installSize Mac/BuildScript/build-installer.py /^def installSize(clear=False, _saved=[]):$/;" f +install_and_retry PCbuild/blurb.bat /^:install_and_retry$/;" l +install_finder Lib/test/test_importlib/fixtures.py /^def install_finder(finder):$/;" f +install_links_if_our_fw Mac/BuildScript/scripts/postflight.ensurepip /^ install_links_if_our_fw() {$/;" f +install_opener Lib/urllib/request.py /^def install_opener(opener):$/;" f +install_recursionlimit_wrappers Lib/idlelib/run.py /^def install_recursionlimit_wrappers():$/;" f +install_scripts Lib/venv/__init__.py /^ def install_scripts(self, context, path):$/;" m class:EnvBuilder +install_signal_handlers Include/cpython/initconfig.h /^ int install_signal_handlers;$/;" m struct:PyConfig +install_signal_handlers Lib/test/test_embed.py /^ install_signal_handlers=0,$/;" v class:InitConfigTests +install_target Tools/ssl/multissltests.py /^ install_target = 'install'$/;" v class:AbstractBuilder +install_target Tools/ssl/multissltests.py /^ install_target = 'install_sw'$/;" v class:BuildOpenSSL +install_tests Lib/test/test_xml_etree_c.py /^def install_tests():$/;" f +install_tests_in_module_dict Lib/test/_test_multiprocessing.py /^def install_tests_in_module_dict(remote_globs, start_method,$/;" f +installed Lib/test/test_importlib/test_spec.py /^ installed = sys.modules[self.spec.name]$/;" v class:ModuleSpecMethodsTests.test_load_replaced.ReplacingLoader +installed Modules/_testcapi/mem.c /^ int installed;$/;" m struct:__anon556 file: +installed_pythons PC/launcher.c /^static INSTALLED_PYTHON installed_pythons[MAX_INSTALLED_PYTHONS];$/;" v file: +instance Lib/test/test_http_cookiejar.py /^ instance = type_()$/;" v class:FileCookieJarTests.test_constructor_with_other_types.A +instance Lib/test/test_unittest/testmock/testcallable.py /^ instance = mock()$/;" v class:TestCallable.test_patch_spec_callable_class.Multi +instance Lib/test/test_unittest/testmock/testpatch.py /^ instance = m.return_value$/;" v class:PatchTest.test_new_callable_inherit_for_mocks.MockSub +instance_count Lib/test/test_cppext/extension.cpp /^ static int instance_count;$/;" m class:VirtualPyObject file: +instance_count Lib/test/test_cppext/extension.cpp /^int VirtualPyObject::instance_count = 0;$/;" m class:VirtualPyObject file: +instance_method Lib/test/test_inspect.py /^ def instance_method(self): pass$/;" m class:TestIsDataDescriptor.test_functions.Test +instancemethod_call Objects/classobject.c /^instancemethod_call(PyObject *self, PyObject *arg, PyObject *kw)$/;" f file: +instancemethod_dealloc Objects/classobject.c /^instancemethod_dealloc(PyObject *self) {$/;" f file: +instancemethod_descr_get Objects/classobject.c /^instancemethod_descr_get(PyObject *descr, PyObject *obj, PyObject *type) {$/;" f file: +instancemethod_get_doc Objects/classobject.c /^instancemethod_get_doc(PyObject *self, void *context)$/;" f file: +instancemethod_getattro Objects/classobject.c /^instancemethod_getattro(PyObject *self, PyObject *name)$/;" f file: +instancemethod_getset Objects/classobject.c /^static PyGetSetDef instancemethod_getset[] = {$/;" v file: +instancemethod_memberlist Objects/classobject.c /^static PyMemberDef instancemethod_memberlist[] = {$/;" v file: +instancemethod_new Objects/clinic/classobject.c.h /^instancemethod_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +instancemethod_new_impl Objects/classobject.c /^instancemethod_new_impl(PyTypeObject *type, PyObject *function)$/;" f file: +instancemethod_repr Objects/classobject.c /^instancemethod_repr(PyObject *self)$/;" f file: +instancemethod_richcompare Objects/classobject.c /^instancemethod_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +instancemethod_traverse Objects/classobject.c /^instancemethod_traverse(PyObject *self, visitproc visit, void *arg) {$/;" f file: +instances_created Lib/test/test_subprocess.py /^ instances_created = []$/;" v class:MiscTests.RecordingPopen +instantiate Modules/_pickle.c /^instantiate(PyObject *cls, PyObject *args)$/;" f file: +instate Lib/tkinter/ttk.py /^ def instate(self, statespec, callback=None, *args, **kw):$/;" m class:Widget +insteadfunc Lib/test/inspect_fodder2.py /^ def insteadfunc():$/;" f function:replace +instr_format Python/opcode_metadata.h /^ enum InstructionFormat instr_format;$/;" m struct:opcode_metadata typeref:enum:opcode_metadata::InstructionFormat +instr_sequence Python/assemble.c /^typedef _PyCompile_InstructionSequence instr_sequence;$/;" t file: +instr_sequence Python/compile.c /^typedef _PyCompile_InstructionSequence instr_sequence;$/;" t file: +instr_sequence_addop Python/compile.c /^instr_sequence_addop(instr_sequence *seq, int opcode, int oparg, location loc)$/;" f file: +instr_sequence_fini Python/compile.c /^instr_sequence_fini(instr_sequence *seq) {$/;" f file: +instr_sequence_insert_instruction Python/compile.c /^instr_sequence_insert_instruction(instr_sequence *seq, int pos,$/;" f file: +instr_sequence_new_label Python/compile.c /^instr_sequence_new_label(instr_sequence *seq)$/;" f file: +instr_sequence_next_inst Python/compile.c /^instr_sequence_next_inst(instr_sequence *seq) {$/;" f file: +instr_sequence_to_cfg Python/compile.c /^instr_sequence_to_cfg(instr_sequence *seq, cfg_builder *g) {$/;" f file: +instr_sequence_to_instructions Python/compile.c /^instr_sequence_to_instructions(instr_sequence *seq)$/;" f file: +instr_sequence_use_label Python/compile.c /^instr_sequence_use_label(instr_sequence *seq, int lbl) {$/;" f file: +instr_size Python/flowgraph.c /^instr_size(cfg_instr *instruction)$/;" f file: +instrinsic_func1 Include/internal/pycore_intrinsics.h /^typedef PyObject *(*instrinsic_func1)(PyThreadState* tstate, PyObject *value);$/;" t +instrinsic_func2 Include/internal/pycore_intrinsics.h /^typedef PyObject *(*instrinsic_func2)(PyThreadState* tstate, PyObject *value1, PyObject *value2);$/;" t +instruction Python/assemble.c /^typedef _PyCompile_Instruction instruction;$/;" t file: +instruction Python/compile.c /^typedef _PyCompile_Instruction instruction;$/;" t file: +instruction_length Python/instrumentation.c /^instruction_length(PyCodeObject *code, int offset)$/;" f file: +instructions1 Lib/turtledemo/sorting_animate.py /^instructions1 = "press i for insertion sort, s for selection sort, q for quicksort"$/;" v +instructions2 Lib/turtledemo/sorting_animate.py /^instructions2 = "spacebar to quit, r to randomize"$/;" v +instructions_to_cfg Python/compile.c /^instructions_to_cfg(PyObject *instructions, cfg_builder *g)$/;" f file: +instructions_to_instr_sequence Python/compile.c /^instructions_to_instr_sequence(PyObject *instructions, instr_sequence *seq)$/;" f file: +instrument Python/instrumentation.c /^instrument(PyCodeObject *code, int i)$/;" f file: +instrument_all_executing_code_objects Python/instrumentation.c /^instrument_all_executing_code_objects(PyInterpreterState *interp) {$/;" f file: +instrument_line Python/instrumentation.c /^instrument_line(PyCodeObject *code, int i)$/;" f file: +instrument_per_instruction Python/instrumentation.c /^instrument_per_instruction(PyCodeObject *code, int i)$/;" f file: +instrumentation_cross_checks Python/instrumentation.c /^instrumentation_cross_checks(PyInterpreterState *interp, PyCodeObject *code)$/;" f file: +int16_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int16_t = c_short$/;" v +int32_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int32_t = c_int$/;" v +int4 Lib/pickletools.py /^int4 = ArgumentDescriptor($/;" v +int64_t Include/cpython/interpreteridobject.h /^PyAPI_FUNC(PyObject *) _PyInterpreterID_New(int64_t);$/;" v +int64_t Include/internal/pycore_interp.h /^PyAPI_FUNC(PyInterpreterState*) _PyInterpreterState_LookUpID(int64_t);$/;" v +int64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int64_t = c_longlong$/;" v +int8_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int8_t = c_byte$/;" v +int_ Lib/uuid.py /^int_ = int # The built-in int type$/;" v +int___format__ Objects/clinic/longobject.c.h /^int___format__(PyObject *self, PyObject *arg)$/;" f +int___format___impl Objects/longobject.c /^int___format___impl(PyObject *self, PyObject *format_spec)$/;" f file: +int___getnewargs__ Objects/clinic/longobject.c.h /^int___getnewargs__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +int___getnewargs___impl Objects/longobject.c /^int___getnewargs___impl(PyObject *self)$/;" f file: +int___round__ Objects/clinic/longobject.c.h /^int___round__(PyObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +int___round___impl Objects/longobject.c /^int___round___impl(PyObject *self, PyObject *o_ndigits)$/;" f file: +int___sizeof__ Objects/clinic/longobject.c.h /^int___sizeof__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +int___sizeof___impl Objects/longobject.c /^int___sizeof___impl(PyObject *self)$/;" f file: +int_as_integer_ratio Objects/clinic/longobject.c.h /^int_as_integer_ratio(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +int_as_integer_ratio_impl Objects/longobject.c /^int_as_integer_ratio_impl(PyObject *self)$/;" f file: +int_bit_count Objects/clinic/longobject.c.h /^int_bit_count(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +int_bit_count_impl Objects/longobject.c /^int_bit_count_impl(PyObject *self)$/;" f file: +int_bit_length Objects/clinic/longobject.c.h /^int_bit_length(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +int_bit_length_impl Objects/longobject.c /^int_bit_length_impl(PyObject *self)$/;" f file: +int_class Lib/test/test_int.py /^ int_class = IntSubclass$/;" v class:IntSubclassStrDigitLimitsTests +int_class Lib/test/test_int.py /^ int_class = int # Override this in subclasses to reuse the suite.$/;" v class:IntStrDigitLimitsTests +int_const Modules/_testsinglephase.c /^ PyObject *int_const;$/;" m struct:__anon387 file: +int_constants Modules/_decimal/_decimal.c /^static struct int_constmap int_constants [] = {$/;" v typeref:struct:int_constmap file: +int_constmap Modules/_decimal/_decimal.c /^struct int_constmap { const char *name; int val; };$/;" s file: +int_converter Modules/clinic/_testclinic.c.h /^int_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +int_converter Tools/clinic/clinic.py /^class int_converter(CConverter):$/;" c +int_converter_impl Modules/_testclinic.c /^int_converter_impl(PyObject *module, int a, int b, int c)$/;" f file: +int_divmod Lib/_pylong.py /^def int_divmod(a, b):$/;" f +int_fast16_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_fast16_t = int16_t$/;" v +int_fast32_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_fast32_t = int32_t$/;" v +int_fast64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_fast64_t = int64_t$/;" v +int_fast8_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_fast8_t = int8_t$/;" v +int_from_bytes Objects/clinic/longobject.c.h /^int_from_bytes(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +int_from_bytes_impl Objects/longobject.c /^int_from_bytes_impl(PyTypeObject *type, PyObject *bytes_obj,$/;" f file: +int_from_int Tools/gdb/libpython.py /^def int_from_int(gdbval):$/;" f +int_from_string Lib/_pylong.py /^def int_from_string(s):$/;" f +int_handler Lib/test/test_unittest/test_break.py /^ int_handler = None$/;" v class:TestBreak +int_handler Lib/test/test_unittest/test_break.py /^ int_handler = signal.SIG_DFL$/;" v class:TestBreakSignalDefault +int_handler Lib/test/test_unittest/test_break.py /^ int_handler = signal.SIG_IGN$/;" v class:TestBreakSignalIgnored +int_handler Lib/test/test_unittest/test_break.py /^ int_handler = signal.default_int_handler$/;" v class:TestBreakDefaultIntHandler +int_info_desc Objects/longobject.c /^static PyStructSequence_Desc int_info_desc = {$/;" v file: +int_info_fields Objects/longobject.c /^static PyStructSequence_Field int_info_fields[] = {$/;" v file: +int_is_integer Objects/clinic/longobject.c.h /^int_is_integer(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +int_is_integer_impl Objects/longobject.c /^int_is_integer_impl(PyObject *self)$/;" f file: +int_least16_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_least16_t = int16_t$/;" v +int_least32_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_least32_t = int32_t$/;" v +int_least64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_least64_t = int64_t$/;" v +int_least8_t Lib/test/test_lib2to3/data/infinite_recursion.py /^int_least8_t = int8_t$/;" v +int_max_str_digits Include/cpython/initconfig.h /^ int int_max_str_digits;$/;" m struct:PyConfig +int_member Modules/_testcapi/structmember.c /^ int int_member;$/;" m struct:__anon543 file: +int_return_converter Tools/clinic/clinic.py /^class int_return_converter(long_return_converter):$/;" c +int_to_bytes Objects/clinic/longobject.c.h /^int_to_bytes(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +int_to_bytes_impl Objects/longobject.c /^int_to_bytes_impl(PyObject *self, Py_ssize_t length, PyObject *byteorder,$/;" f file: +int_to_decimal Lib/_pylong.py /^def int_to_decimal(n):$/;" f +int_to_decimal_string Lib/_pylong.py /^def int_to_decimal_string(n):$/;" f +int_to_dict Modules/getpath.c /^int_to_dict(PyObject *dict, const char *key, int v)$/;" f file: +int_to_float Lib/test/test_long.py /^def int_to_float(n):$/;" f +int_types Lib/test/test_ctypes/test_bitfields.py /^int_types = unsigned_int_types + signed_int_types$/;" v +integer Modules/_testmultiphase.c /^ PyObject *integer;$/;" m struct:__anon425 file: +integer_codes Lib/test/test_struct.py /^integer_codes = 'b', 'B', 'h', 'H', 'i', 'I', 'l', 'L', 'q', 'Q', 'n', 'N'$/;" v +integers Lib/test/test_math_property.py /^integers = hypothesis.strategies.integers$/;" v +integers Modules/_decimal/tests/formathelper.py /^integers = [$/;" v +integrate Modules/_ctypes/_ctypes_test.c /^integrate(double a, double b, double (*f)(double), long nstep)$/;" f +interact Lib/code.py /^ def interact(self, banner=None, exitmsg=None):$/;" m class:InteractiveConsole +interact Lib/code.py /^def interact(banner=None, readfunc=None, local=None, exitmsg=None):$/;" f +interact Lib/pydoc.py /^ def interact(self):$/;" f +interact Lib/telnetlib.py /^ def interact(self):$/;" m class:Telnet +interact_2965 Lib/test/test_http_cookiejar.py /^def interact_2965(cookiejar, url, *set_cookie_hdrs):$/;" f +interact_netscape Lib/test/test_http_cookiejar.py /^def interact_netscape(cookiejar, url, *set_cookie_hdrs):$/;" f +interaction Lib/idlelib/debugger.py /^ def interaction(self, message, frame, info=None):$/;" m class:Debugger +interaction Lib/idlelib/debugger_r.py /^ def interaction(self, message, fid, modified_info):$/;" m class:GUIAdapter +interaction Lib/idlelib/debugger_r.py /^ def interaction(self, message, frame, info=None):$/;" m class:GUIProxy +interaction Lib/pdb.py /^ def interaction(self, frame, traceback):$/;" m class:Pdb +interactive Include/cpython/initconfig.h /^ int interactive;$/;" m struct:PyConfig +interactive_python Lib/test/test_cmd_line_script.py /^ def interactive_python(self, separate_stderr=False):$/;" m class:CmdLineTest +interactive_rule Parser/parser.c /^interactive_rule(Parser *p)$/;" f file: +interactive_src_end Parser/tokenizer.h /^ char *interactive_src_end; \/* The end of the source parsed so far in interactive mode *\/$/;" m struct:tok_state +interactive_src_start Parser/tokenizer.h /^ char *interactive_src_start; \/* The start of the source parsed so far in interactive mode *\/$/;" m struct:tok_state +interactive_type Parser/parser.c 82;" d file: +interactive_underflow Parser/tokenizer.h /^ enum interactive_underflow_t interactive_underflow;$/;" m struct:tok_state typeref:enum:tok_state::interactive_underflow_t +interactive_underflow_t Parser/tokenizer.h /^enum interactive_underflow_t {$/;" g +interesting Lib/test/test_descr.py /^ def interesting(strings):$/;" f function:.test_dir +interesting_normal Lib/html/parser.py /^interesting_normal = re.compile('[&<]')$/;" v +interface Lib/test/test_socket.py /^ interface = 'vcan0'$/;" v class:SocketCANTest +interface_test_driver Lib/test/test_baseexception.py /^ def interface_test_driver(self, results):$/;" m class:ExceptionClassTests +interface_tests Lib/test/test_baseexception.py /^ interface_tests = ("length", "args", "str", "repr")$/;" v class:ExceptionClassTests +interleave Lib/ast.py /^ def interleave(self, inter, f, seq):$/;" m class:_Unparser +intern Modules/pyexpat.c /^ PyObject *intern; \/* Dictionary to intern strings *\/$/;" m struct:__anon483 file: +intern_string_constants Objects/codeobject.c /^intern_string_constants(PyObject *tuple, int *modified)$/;" f file: +intern_strings Objects/codeobject.c /^intern_strings(PyObject *tuple)$/;" f file: +internal Include/pybuffer.h /^ void *internal;$/;" m struct:__anon1 +internal Lib/test/test_symtable.py /^ internal = find_block(spam, "internal")$/;" v class:SymtableTest +internal Tools/c-analyzer/cpython/_builtin_types.py /^ def internal(self):$/;" m class:BuiltinTypeDecl +internal Tools/c-analyzer/cpython/_builtin_types.py /^ def internal(self):$/;" m class:BuiltinTypeInfo +internalEntityProcessor Modules/expat/xmlparse.c /^internalEntityProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +internalEntityProcessor Modules/expat/xmlparse.c /^static Processor internalEntityProcessor;$/;" v file: +internalEventEndPtr Modules/expat/xmlparse.c /^ const char *internalEventEndPtr;$/;" m struct:open_internal_entity file: +internalEventPtr Modules/expat/xmlparse.c /^ const char *internalEventPtr;$/;" m struct:open_internal_entity file: +internalSortKey PC/launcher2.c /^ int internalSortKey;$/;" m struct:EnvironmentInfo file: +internalSubset Lib/xml/dom/minidom.py /^ internalSubset = None$/;" v class:DocumentType +internalSubset Modules/expat/xmlrole.c /^ doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2,$/;" v file: +internalSubset Modules/expat/xmlrole.c /^internalSubset(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +internalTk Mac/BuildScript/build-installer.py /^def internalTk():$/;" f +internal_big2_encoding Modules/expat/xmltok.c /^static const struct normal_encoding internal_big2_encoding$/;" v typeref:struct:normal_encoding file: +internal_big2_encoding_ns Modules/expat/xmltok.c /^static const struct normal_encoding internal_big2_encoding_ns$/;" v typeref:struct:normal_encoding file: +internal_bisect_left Modules/_bisectmodule.c /^internal_bisect_left(PyObject *list, PyObject *item, Py_ssize_t lo, Py_ssize_t hi,$/;" f file: +internal_bisect_right Modules/_bisectmodule.c /^internal_bisect_right(PyObject *list, PyObject *item, Py_ssize_t lo, Py_ssize_t hi,$/;" f file: +internal_close Modules/_io/fileio.c /^internal_close(fileio *self)$/;" f file: +internal_close Modules/_io/winconsoleio.c /^internal_close(winconsoleio *self)$/;" f file: +internal_connect Modules/socketmodule.c /^internal_connect(PySocketSockObject *s, struct sockaddr *addr, int addrlen,$/;" f file: +internal_crc32 Modules/binascii.c /^internal_crc32(const unsigned char *bin_data, Py_ssize_t len, unsigned int crc)$/;" f file: +internal_data Lib/test/test_cppext/extension.cpp /^ int* internal_data;$/;" m class:VirtualPyObject file: +internal_devpoll_register Modules/selectmodule.c /^internal_devpoll_register(devpollObject *self, int fd,$/;" f file: +internal_error_callback Modules/cjkcodecs/multibytecodec.c /^internal_error_callback(const char *errors)$/;" f file: +internal_little2_encoding Modules/expat/xmltok.c /^static const struct normal_encoding internal_little2_encoding$/;" v typeref:struct:normal_encoding file: +internal_little2_encoding_ns Modules/expat/xmltok.c /^static const struct normal_encoding internal_little2_encoding_ns$/;" v typeref:struct:normal_encoding file: +internal_rename Modules/posixmodule.c /^internal_rename(path_t *src, path_t *dst, int src_dir_fd, int dst_dir_fd, int is_replace)$/;" f file: +internal_select Modules/socketmodule.c /^internal_select(PySocketSockObject *s, int writing, _PyTime_t interval,$/;" f file: +internal_setblocking Modules/socketmodule.c /^internal_setblocking(PySocketSockObject *s, int block)$/;" f file: +internal_utf8_encoding Modules/expat/xmltok.c /^static const struct normal_encoding internal_utf8_encoding$/;" v typeref:struct:normal_encoding file: +internal_utf8_encoding_ns Modules/expat/xmltok.c /^static const struct normal_encoding internal_utf8_encoding_ns$/;" v typeref:struct:normal_encoding file: +interned Include/cpython/unicodeobject.h /^ unsigned int interned:2;$/;" m struct:__anon231::__anon232 +interned_strings Include/internal/pycore_global_objects.h /^ PyObject *interned_strings;$/;" m struct:_Py_interp_cached_objects +interp Include/cpython/import.h /^PyAPI_FUNC(int) _PyImport_ReleaseLock(PyInterpreterState *interp);$/;" v +interp Include/cpython/import.h /^PyAPI_FUNC(void) _PyImport_AcquireLock(PyInterpreterState *interp);$/;" v +interp Include/cpython/pylifecycle.h /^PyAPI_FUNC(int) _Py_IsInterpreterFinalizing(PyInterpreterState *interp);$/;" v +interp Include/cpython/pystate.h /^ PyInterpreterState *interp);$/;" v +interp Include/cpython/pystate.h /^ PyInterpreterState *interp;$/;" m struct:_ts +interp Include/cpython/pystate.h /^ int64_t interp;$/;" m struct:_xid +interp Include/cpython/pystate.h /^PyAPI_FUNC(const PyConfig*) _PyInterpreterState_GetConfig(PyInterpreterState *interp);$/;" v +interp Include/internal/pycore_ceval.h /^PyAPI_FUNC(void) _PyEval_SignalAsyncExc(PyInterpreterState *interp);$/;" v +interp Include/internal/pycore_ceval.h /^PyAPI_FUNC(void) _PyEval_SignalReceived(PyInterpreterState *interp);$/;" v +interp Include/internal/pycore_faulthandler.h /^ PyInterpreterState *interp;$/;" m struct:_faulthandler_runtime_state::__anon126 +interp Include/internal/pycore_faulthandler.h /^ PyInterpreterState *interp;$/;" m struct:_faulthandler_runtime_state::__anon127 +interp Include/internal/pycore_faulthandler.h /^ PyInterpreterState *interp;$/;" m struct:faulthandler_user_signal +interp Include/internal/pycore_pylifecycle.h /^PyAPI_FUNC(void) _PyGC_DumpShutdownStats(PyInterpreterState *interp);$/;" v +interp Include/internal/pycore_pystate.h /^PyAPI_FUNC(PyThreadState *) _PyThreadState_New(PyInterpreterState *interp);$/;" v +interp Modules/_threadmodule.c /^ PyInterpreterState *interp;$/;" m struct:bootstate file: +interp Modules/_tkinter.c /^ Tcl_Interp *interp;$/;" m struct:__anon334 file: +interp Modules/_tkinter.c /^ Tcl_Interp* interp;$/;" m struct:CommandEvent file: +interp Modules/_xxinterpchannelsmodule.c /^ int64_t interp;$/;" m struct:_channelend file: +interp_create Modules/_xxsubinterpretersmodule.c /^interp_create(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +interp_destroy Modules/_xxsubinterpretersmodule.c /^interp_destroy(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +interp_get_current Modules/_xxsubinterpretersmodule.c /^interp_get_current(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +interp_get_main Modules/_xxsubinterpretersmodule.c /^interp_get_main(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +interp_id_converter Objects/interpreteridobject.c /^interp_id_converter(PyObject *arg, void *ptr)$/;" f file: +interp_is_running Modules/_xxsubinterpretersmodule.c /^interp_is_running(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +interp_list_all Modules/_xxsubinterpretersmodule.c /^interp_list_all(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +interp_look_up_id Python/pystate.c /^interp_look_up_id(_PyRuntimeState *runtime, int64_t requested_id)$/;" f file: +interp_run_string Modules/_xxsubinterpretersmodule.c /^interp_run_string(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +interpid Modules/_testinternalcapi.c /^ int64_t interpid;$/;" m struct:__anon565 file: +interpid Objects/interpreteridobject.c /^typedef struct interpid {$/;" s file: +interpid Objects/interpreteridobject.c /^} interpid;$/;" t typeref:struct:interpid file: +interpid_as_number Objects/interpreteridobject.c /^static PyNumberMethods interpid_as_number = {$/;" v file: +interpid_dealloc Objects/interpreteridobject.c /^interpid_dealloc(PyObject *v)$/;" f file: +interpid_hash Objects/interpreteridobject.c /^interpid_hash(PyObject *self)$/;" f file: +interpid_int Objects/interpreteridobject.c /^interpid_int(PyObject *self)$/;" f file: +interpid_new Objects/interpreteridobject.c /^interpid_new(PyTypeObject *cls, PyObject *args, PyObject *kwds)$/;" f file: +interpid_repr Objects/interpreteridobject.c /^interpid_repr(PyObject *self)$/;" f file: +interpid_richcompare Objects/interpreteridobject.c /^interpid_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +interpid_str Objects/interpreteridobject.c /^interpid_str(PyObject *self)$/;" f file: +interpolation Lib/test/test_configparser.py /^ interpolation = configparser.LegacyInterpolation()$/;" v class:ConfigParserTestCaseLegacyInterpolation +interpolation Lib/test/test_configparser.py /^ interpolation = None$/;" v class:ConfigParserTestCaseNoInterpolation +interpolation Lib/test/test_configparser.py /^ interpolation = configparser.ExtendedInterpolation()$/;" v class:ConfigParserTestCaseExtendedInterpolation +interpolation Lib/test/test_configparser.py /^ interpolation = configparser._UNSET$/;" v class:CfgParserTestCaseClass +interpreter_clear Python/pystate.c /^interpreter_clear(PyInterpreterState *interp, PyThreadState *tstate)$/;" f file: +interpreter_decrefs Include/pystats.h /^ uint64_t interpreter_decrefs;$/;" m struct:_object_stats +interpreter_increfs Include/pystats.h /^ uint64_t interpreter_increfs;$/;" m struct:_object_stats +interpreter_leaks Include/internal/pycore_object_state.h /^ Py_ssize_t interpreter_leaks;$/;" m struct:_py_object_runtime_state +interpreter_leaks Include/internal/pycore_obmalloc.h /^ Py_ssize_t interpreter_leaks;$/;" m struct:_obmalloc_global_state +interpreter_requires_environment Lib/test/support/script_helper.py /^def interpreter_requires_environment():$/;" f +interpreter_trampoline Include/internal/pycore_interp.h /^ PyCodeObject *interpreter_trampoline;$/;" m struct:_is +interpreter_update_config Python/pylifecycle.c /^interpreter_update_config(PyThreadState *tstate, int only_update_path_config)$/;" f file: +interpreters Include/internal/pycore_runtime.h /^ } interpreters;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::pyinterpreters +interpreters Lib/test/test__xxsubinterpreters.py /^interpreters = import_helper.import_module('_xxsubinterpreters')$/;" v +interrupt_self Lib/test/test_asyncio/test_runners.py /^def interrupt_self():$/;" f +interrupt_subprocess Lib/idlelib/pyshell.py /^ def interrupt_subprocess(self):$/;" m class:ModifiedInterpreter +interrupt_the_server Lib/idlelib/run.py /^ def interrupt_the_server(self):$/;" m class:Executive +interruptable Lib/idlelib/run.py /^interruptable = False$/;" v +intersection Lib/_weakrefset.py /^ def intersection(self, other):$/;" m class:WeakSet +intersection Lib/test/test_dictviews.py /^ def intersection(self, other):$/;" m class:DictSetTest.test_keys_set_operations.CustomSet +intersection_update Lib/_weakrefset.py /^ def intersection_update(self, other):$/;" m class:WeakSet +interval Include/internal/pycore_gil.h /^ unsigned long interval;$/;" m struct:_gil_runtime_state +intmax_t Lib/test/test_lib2to3/data/infinite_recursion.py /^intmax_t = c_longlong$/;" v +intptr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^intptr_t = c_long$/;" v +intro Lib/cmd.py /^ intro = None$/;" v class:Cmd +intro Lib/pydoc.py /^ def intro(self):$/;" f +introspective Lib/test/datetimetester.py /^ class introspective(tzinfo):$/;" c function:TZInfoBase.test_argument_passing +inv Lib/operator.py /^def inv(a):$/;" f +inv_cdf Lib/statistics.py /^ def inv_cdf(self, p):$/;" m class:NormalDist +inv_four_step_fnt Modules/_decimal/libmpdec/fourstep.c /^inv_four_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum)$/;" f +inv_six_step_fnt Modules/_decimal/libmpdec/sixstep.c /^inv_six_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum)$/;" f +invalid Tools/cases_generator/lexer.py /^invalid = r"\\S" # A single non-space character that's not caught by any of the other patterns$/;" v +invalid_ann_assign_target_rule Parser/parser.c /^invalid_ann_assign_target_rule(Parser *p)$/;" f file: +invalid_ann_assign_target_type Parser/parser.c 281;" d file: +invalid_arguments_rule Parser/parser.c /^invalid_arguments_rule(Parser *p)$/;" f file: +invalid_arguments_type Parser/parser.c 274;" d file: +invalid_as_pattern_rule Parser/parser.c /^invalid_as_pattern_rule(Parser *p)$/;" f file: +invalid_as_pattern_type Parser/parser.c 310;" d file: +invalid_assignment_rule Parser/parser.c /^invalid_assignment_rule(Parser *p)$/;" f file: +invalid_assignment_type Parser/parser.c 280;" d file: +invalid_block_rule Parser/parser.c /^invalid_block_rule(Parser *p)$/;" f file: +invalid_block_type Parser/parser.c 283;" d file: +invalid_case_block_rule Parser/parser.c /^invalid_case_block_rule(Parser *p)$/;" f file: +invalid_case_block_type Parser/parser.c 309;" d file: +invalid_class_argument_pattern_rule Parser/parser.c /^invalid_class_argument_pattern_rule(Parser *p)$/;" f file: +invalid_class_argument_pattern_type Parser/parser.c 312;" d file: +invalid_class_def_raw_rule Parser/parser.c /^invalid_class_def_raw_rule(Parser *p)$/;" f file: +invalid_class_def_raw_type Parser/parser.c 319;" d file: +invalid_class_pattern_rule Parser/parser.c /^invalid_class_pattern_rule(Parser *p)$/;" f file: +invalid_class_pattern_type Parser/parser.c 311;" d file: +invalid_comma_and_underscore Python/formatter_unicode.c /^invalid_comma_and_underscore(void)$/;" f file: +invalid_comprehension_rule Parser/parser.c /^invalid_comprehension_rule(Parser *p)$/;" f file: +invalid_comprehension_type Parser/parser.c 284;" d file: +invalid_conversion_character_rule Parser/parser.c /^invalid_conversion_character_rule(Parser *p)$/;" f file: +invalid_conversion_character_type Parser/parser.c 324;" d file: +invalid_def_raw_rule Parser/parser.c /^invalid_def_raw_rule(Parser *p)$/;" f file: +invalid_def_raw_type Parser/parser.c 318;" d file: +invalid_default_rule Parser/parser.c /^invalid_default_rule(Parser *p)$/;" f file: +invalid_default_type Parser/parser.c 287;" d file: +invalid_del_stmt_rule Parser/parser.c /^invalid_del_stmt_rule(Parser *p)$/;" f file: +invalid_del_stmt_type Parser/parser.c 282;" d file: +invalid_dict_comprehension_rule Parser/parser.c /^invalid_dict_comprehension_rule(Parser *p)$/;" f file: +invalid_dict_comprehension_type Parser/parser.c 285;" d file: +invalid_double_starred_kvpairs_rule Parser/parser.c /^invalid_double_starred_kvpairs_rule(Parser *p)$/;" f file: +invalid_double_starred_kvpairs_type Parser/parser.c 320;" d file: +invalid_double_type_comments_rule Parser/parser.c /^invalid_double_type_comments_rule(Parser *p)$/;" f file: +invalid_double_type_comments_type Parser/parser.c 295;" d file: +invalid_elif_stmt_rule Parser/parser.c /^invalid_elif_stmt_rule(Parser *p)$/;" f file: +invalid_elif_stmt_type Parser/parser.c 314;" d file: +invalid_else_stmt_rule Parser/parser.c /^invalid_else_stmt_rule(Parser *p)$/;" f file: +invalid_else_stmt_type Parser/parser.c 315;" d file: +invalid_except_star_stmt_indent_rule Parser/parser.c /^invalid_except_star_stmt_indent_rule(Parser *p)$/;" f file: +invalid_except_star_stmt_indent_type Parser/parser.c 307;" d file: +invalid_except_stmt_indent_rule Parser/parser.c /^invalid_except_stmt_indent_rule(Parser *p)$/;" f file: +invalid_except_stmt_indent_type Parser/parser.c 306;" d file: +invalid_except_stmt_rule Parser/parser.c /^invalid_except_stmt_rule(Parser *p)$/;" f file: +invalid_except_stmt_type Parser/parser.c 304;" d file: +invalid_expression_rule Parser/parser.c /^invalid_expression_rule(Parser *p)$/;" f file: +invalid_expression_type Parser/parser.c 278;" d file: +invalid_finally_stmt_rule Parser/parser.c /^invalid_finally_stmt_rule(Parser *p)$/;" f file: +invalid_finally_stmt_type Parser/parser.c 305;" d file: +invalid_flags_err Modules/_decimal/_decimal.c /^static const char *invalid_flags_err =$/;" v file: +invalid_for_stmt_rule Parser/parser.c /^invalid_for_stmt_rule(Parser *p)$/;" f file: +invalid_for_stmt_type Parser/parser.c 317;" d file: +invalid_for_target_rule Parser/parser.c /^invalid_for_target_rule(Parser *p)$/;" f file: +invalid_for_target_type Parser/parser.c 297;" d file: +invalid_group_rule Parser/parser.c /^invalid_group_rule(Parser *p)$/;" f file: +invalid_group_type Parser/parser.c 298;" d file: +invalid_if_stmt_rule Parser/parser.c /^invalid_if_stmt_rule(Parser *p)$/;" f file: +invalid_if_stmt_type Parser/parser.c 313;" d file: +invalid_import_from_targets_rule Parser/parser.c /^invalid_import_from_targets_rule(Parser *p)$/;" f file: +invalid_import_from_targets_type Parser/parser.c 300;" d file: +invalid_import_rule Parser/parser.c /^invalid_import_rule(Parser *p)$/;" f file: +invalid_import_type Parser/parser.c 299;" d file: +invalid_kvpair_rule Parser/parser.c /^invalid_kvpair_rule(Parser *p)$/;" f file: +invalid_kvpair_type Parser/parser.c 321;" d file: +invalid_kwarg_rule Parser/parser.c /^invalid_kwarg_rule(Parser *p)$/;" f file: +invalid_kwarg_type Parser/parser.c 275;" d file: +invalid_kwds_rule Parser/parser.c /^invalid_kwds_rule(Parser *p)$/;" f file: +invalid_kwds_type Parser/parser.c 289;" d file: +invalid_lambda_kwds_rule Parser/parser.c /^invalid_lambda_kwds_rule(Parser *p)$/;" f file: +invalid_lambda_kwds_type Parser/parser.c 294;" d file: +invalid_lambda_parameters_helper_rule Parser/parser.c /^invalid_lambda_parameters_helper_rule(Parser *p)$/;" f file: +invalid_lambda_parameters_helper_type Parser/parser.c 292;" d file: +invalid_lambda_parameters_rule Parser/parser.c /^invalid_lambda_parameters_rule(Parser *p)$/;" f file: +invalid_lambda_parameters_type Parser/parser.c 291;" d file: +invalid_lambda_star_etc_rule Parser/parser.c /^invalid_lambda_star_etc_rule(Parser *p)$/;" f file: +invalid_lambda_star_etc_type Parser/parser.c 293;" d file: +invalid_legacy_expression_rule Parser/parser.c /^invalid_legacy_expression_rule(Parser *p)$/;" f file: +invalid_legacy_expression_type Parser/parser.c 277;" d file: +invalid_match_stmt_rule Parser/parser.c /^invalid_match_stmt_rule(Parser *p)$/;" f file: +invalid_match_stmt_type Parser/parser.c 308;" d file: +invalid_named_expression_rule Parser/parser.c /^invalid_named_expression_rule(Parser *p)$/;" f file: +invalid_named_expression_type Parser/parser.c 279;" d file: +invalid_parameters_helper_rule Parser/parser.c /^invalid_parameters_helper_rule(Parser *p)$/;" f file: +invalid_parameters_helper_type Parser/parser.c 290;" d file: +invalid_parameters_rule Parser/parser.c /^invalid_parameters_rule(Parser *p)$/;" f file: +invalid_parameters_type Parser/parser.c 286;" d file: +invalid_replacement_field_rule Parser/parser.c /^invalid_replacement_field_rule(Parser *p)$/;" f file: +invalid_replacement_field_type Parser/parser.c 323;" d file: +invalid_rounding_err Modules/_decimal/_decimal.c /^static const char *invalid_rounding_err =$/;" v file: +invalid_signals_err Modules/_decimal/_decimal.c /^static const char *invalid_signals_err =$/;" v file: +invalid_star_etc_rule Parser/parser.c /^invalid_star_etc_rule(Parser *p)$/;" f file: +invalid_star_etc_type Parser/parser.c 288;" d file: +invalid_starred_expression_rule Parser/parser.c /^invalid_starred_expression_rule(Parser *p)$/;" f file: +invalid_starred_expression_type Parser/parser.c 322;" d file: +invalid_syntax Lib/test/test_lib2to3/test_parser.py /^ def invalid_syntax(self, code):$/;" m class:GrammarTest +invalid_thousands_separator_type Python/formatter_unicode.c /^invalid_thousands_separator_type(char specifier, Py_UCS4 presentation_type)$/;" f file: +invalid_try_stmt_rule Parser/parser.c /^invalid_try_stmt_rule(Parser *p)$/;" f file: +invalid_try_stmt_type Parser/parser.c 303;" d file: +invalid_while_stmt_rule Parser/parser.c /^invalid_while_stmt_rule(Parser *p)$/;" f file: +invalid_while_stmt_type Parser/parser.c 316;" d file: +invalid_with_item_rule Parser/parser.c /^invalid_with_item_rule(Parser *p)$/;" f file: +invalid_with_item_type Parser/parser.c 296;" d file: +invalid_with_stmt_indent_rule Parser/parser.c /^invalid_with_stmt_indent_rule(Parser *p)$/;" f file: +invalid_with_stmt_indent_type Parser/parser.c 302;" d file: +invalid_with_stmt_rule Parser/parser.c /^invalid_with_stmt_rule(Parser *p)$/;" f file: +invalid_with_stmt_type Parser/parser.c 301;" d file: +invalidate_caches Lib/importlib/__init__.py /^def invalidate_caches():$/;" f +invalidate_caches Lib/importlib/_bootstrap_external.py /^ def invalidate_caches():$/;" m class:PathFinder +invalidate_caches Lib/importlib/_bootstrap_external.py /^ def invalidate_caches(self):$/;" m class:FileFinder +invalidate_caches Lib/importlib/abc.py /^ def invalidate_caches(self):$/;" m class:MetaPathFinder +invalidate_caches Lib/importlib/abc.py /^ def invalidate_caches(self):$/;" m class:PathEntryFinder +invalidate_caches Lib/importlib/metadata/__init__.py /^ def invalidate_caches(cls):$/;" m class:MetadataPathFinder +invalidate_caches Lib/test/test_importlib/import_/test_path.py /^ def invalidate_caches(self):$/;" m class:FinderTests.test_invalidate_caches_clear_out_relative_path.FakeFinder +invalidate_caches Lib/test/test_importlib/import_/test_path.py /^ def invalidate_caches(self):$/;" m class:FinderTests.test_invalidate_caches_finders.FakeFinder +invalidate_caches Lib/test/test_importlib/test_api.py /^ def invalidate_caches(self):$/;" m class:InvalidateCacheTests.test_method_called.InvalidatingNullFinder +invalidate_caches Lib/zipimport.py /^ def invalidate_caches(self):$/;" m class:zipimporter +invalidate_icache Python/perf_trampoline.c /^static void invalidate_icache(char* begin, char*end) {$/;" f file: +inverse Lib/test/test_sqlite3/test_userfunctions.py /^ def inverse(self, value): self.count -= value * 2$/;" m class:WindowFunctionTests.test_win_redefine_function.Redefined +inverse Lib/test/test_sqlite3/test_userfunctions.py /^ def inverse(self, x): pass$/;" m class:WindowFunctionTests.test_win_missing_finalize.MissingFinalize +inverse Lib/test/test_sqlite3/test_userfunctions.py /^ def inverse(self, x): pass$/;" m class:WindowFunctionTests.test_win_missing_method.MissingStep +inverse Lib/test/test_sqlite3/test_userfunctions.py /^ def inverse(self, x): pass$/;" m class:WindowFunctionTests.test_win_missing_method.MissingValue +inverse Lib/test/test_sqlite3/test_userfunctions.py /^ def inverse(self, value):$/;" m class:WindowSumInt +inverse_callback Modules/_sqlite/connection.c /^inverse_callback(sqlite3_context *context, int argc, sqlite3_value **params)$/;" f file: +inversion_rule Parser/parser.c /^inversion_rule(Parser *p)$/;" f file: +inversion_type Parser/parser.c 195;" d file: +invert Lib/operator.py /^invert = inv$/;" v +invert Lib/test/datetimetester.py /^ def invert(ut, ti):$/;" m class:ZoneInfo +invert Python/bytecodes.c /^static uint16_t invert, counter, index, hint;$/;" v file: +inverted_factorial_odd_part Modules/mathmodule.c /^static const uint64_t inverted_factorial_odd_part[] = {$/;" v file: +inverted_registry Modules/_pickle.c /^ PyObject *inverted_registry;$/;" m struct:__anon448 file: +invisible Lib/test/test_enum.py /^ def invisible(self):$/;" m class:_EnumTests.test_dir_on_sub_with_behavior_on_super.SuperEnum +invocation Lib/lib2to3/fixes/fix_operator.py /^def invocation(s):$/;" f +invoke Lib/tkinter/__init__.py /^ def invoke(self):$/;" m class:Button +invoke Lib/tkinter/__init__.py /^ def invoke(self):$/;" m class:Checkbutton +invoke Lib/tkinter/__init__.py /^ def invoke(self):$/;" m class:Radiobutton +invoke Lib/tkinter/__init__.py /^ def invoke(self, element):$/;" m class:Spinbox +invoke Lib/tkinter/__init__.py /^ def invoke(self, index):$/;" m class:Menu +invoke Lib/tkinter/tix.py /^ def invoke(self):$/;" m class:Control +invoke Lib/tkinter/tix.py /^ def invoke(self):$/;" m class:ExFileSelectBox +invoke Lib/tkinter/tix.py /^ def invoke(self):$/;" m class:FileEntry +invoke Lib/tkinter/tix.py /^ def invoke(self):$/;" m class:FileSelectBox +invoke Lib/tkinter/tix.py /^ def invoke(self, name):$/;" m class:ButtonBox +invoke Lib/tkinter/tix.py /^ def invoke(self, name):$/;" m class:Select +invoke Lib/tkinter/tix.py /^ def invoke(self, name):$/;" m class:StdButtonBox +invoke Lib/tkinter/ttk.py /^ def invoke(self):$/;" m class:Button +invoke Lib/tkinter/ttk.py /^ def invoke(self):$/;" m class:Checkbutton +invoke Lib/tkinter/ttk.py /^ def invoke(self):$/;" m class:Radiobutton +invoke Tools/gdb/libpython.py /^ def invoke(self, args, from_tty):$/;" m class:PyBacktrace +invoke Tools/gdb/libpython.py /^ def invoke(self, args, from_tty):$/;" m class:PyBacktraceFull +invoke Tools/gdb/libpython.py /^ def invoke(self, args, from_tty):$/;" m class:PyDown +invoke Tools/gdb/libpython.py /^ def invoke(self, args, from_tty):$/;" m class:PyList +invoke Tools/gdb/libpython.py /^ def invoke(self, args, from_tty):$/;" m class:PyLocals +invoke Tools/gdb/libpython.py /^ def invoke(self, args, from_tty):$/;" m class:PyPrint +invoke Tools/gdb/libpython.py /^ def invoke(self, args, from_tty):$/;" m class:PyUp +invoke_child PC/launcher.c /^invoke_child(wchar_t * executable, wchar_t * suffix, wchar_t * cmdline)$/;" f file: +invoke_excepthook Lib/threading.py /^ def invoke_excepthook(thread):$/;" f function:_make_invoke_excepthook +invoke_gc_callback Modules/gcmodule.c /^invoke_gc_callback(PyThreadState *tstate, const char *phase,$/;" f file: +invroot_schedule_prec Modules/_decimal/libmpdec/mpdecimal.c /^invroot_schedule_prec(mpd_ssize_t klist[MPD_MAX_PREC_LOG2],$/;" f file: +io Lib/test/test_io.py /^ io = io$/;" v class:CMiscIOTest +io Lib/test/test_io.py /^ io = io$/;" v class:CSignalsTest +io Lib/test/test_io.py /^ io = io$/;" v class:CTextIOWrapperTest +io Lib/test/test_io.py /^ io = pyio$/;" v class:PyMiscIOTest +io Lib/test/test_io.py /^ io = pyio$/;" v class:PySignalsTest +io Lib/test/test_io.py /^ io = pyio$/;" v class:PyTextIOWrapperTest +io Lib/typing.py /^class io(metaclass=_DeprecatedType):$/;" c +io_check_errors Modules/_io/textio.c /^io_check_errors(PyObject *errors)$/;" f file: +io_effect Tools/cases_generator/parser.py /^ def io_effect(self) -> tuple[list[InputEffect], list[OutputEffect]]:$/;" m class:Parser +io_open Modules/_zoneinfo.c /^ PyObject *io_open;$/;" m struct:__anon641 file: +io_refs Lib/test/test_urllib.py /^ io_refs = 1$/;" v class:fakehttp.FakeSocket +iobase Modules/_io/iobase.c /^} iobase;$/;" t typeref:struct:__anon434 file: +iobase_check_closed Modules/_io/iobase.c /^iobase_check_closed(PyObject *self)$/;" f file: +iobase_check_readable Modules/_io/iobase.c /^iobase_check_readable(PyObject *self, PyObject *args)$/;" f file: +iobase_check_seekable Modules/_io/iobase.c /^iobase_check_seekable(PyObject *self, PyObject *args)$/;" f file: +iobase_check_writable Modules/_io/iobase.c /^iobase_check_writable(PyObject *self, PyObject *args)$/;" f file: +iobase_clear Modules/_io/iobase.c /^iobase_clear(iobase *self)$/;" f file: +iobase_closed_get Modules/_io/iobase.c /^iobase_closed_get(PyObject *self, void *context)$/;" f file: +iobase_dealloc Modules/_io/iobase.c /^iobase_dealloc(iobase *self)$/;" f file: +iobase_enter Modules/_io/iobase.c /^iobase_enter(PyObject *self, PyObject *args)$/;" f file: +iobase_exit Modules/_io/iobase.c /^iobase_exit(PyObject *self, PyObject *args)$/;" f file: +iobase_finalize Modules/_io/iobase.c /^iobase_finalize(PyObject *self)$/;" f file: +iobase_getset Modules/_io/iobase.c /^static PyGetSetDef iobase_getset[] = {$/;" v file: +iobase_is_closed Modules/_io/iobase.c /^iobase_is_closed(PyObject *self)$/;" f file: +iobase_iter Modules/_io/iobase.c /^iobase_iter(PyObject *self)$/;" f file: +iobase_iternext Modules/_io/iobase.c /^iobase_iternext(PyObject *self)$/;" f file: +iobase_members Modules/_io/iobase.c /^static struct PyMemberDef iobase_members[] = {$/;" v typeref:struct:PyMemberDef file: +iobase_methods Modules/_io/iobase.c /^static PyMethodDef iobase_methods[] = {$/;" v file: +iobase_slots Modules/_io/iobase.c /^static PyType_Slot iobase_slots[] = {$/;" v file: +iobase_spec Modules/_io/iobase.c /^PyType_Spec iobase_spec = {$/;" v +iobase_traverse Modules/_io/iobase.c /^iobase_traverse(iobase *self, visitproc visit, void *arg)$/;" f file: +iobase_unsupported Modules/_io/iobase.c /^iobase_unsupported(_PyIO_State *state, const char *message)$/;" f file: +ioclass Lib/test/test_email/test_generator.py /^ ioclass = io.BytesIO$/;" v class:TestBytesGenerator +ioclass Lib/test/test_email/test_generator.py /^ ioclass = io.StringIO$/;" v class:TestGenerator +ioclass Lib/test/test_memoryio.py /^ class ioclass(io.StringIO):$/;" c class:CStringIOPickleTest +ioclass Lib/test/test_memoryio.py /^ class ioclass(pyio.StringIO):$/;" c class:PyStringIOPickleTest +ioclass Lib/test/test_memoryio.py /^ ioclass = io.BytesIO$/;" v class:CBytesIOTest +ioclass Lib/test/test_memoryio.py /^ ioclass = io.StringIO$/;" v class:CStringIOTest +ioclass Lib/test/test_memoryio.py /^ ioclass = pyio.BytesIO$/;" v class:PyBytesIOTest +ioclass Lib/test/test_memoryio.py /^ ioclass = pyio.StringIO$/;" v class:PyStringIOTest +ioclass Lib/test/test_sax.py /^ class ioclass(list):$/;" c class:WriterXmlgenTest +ioclass Lib/test/test_sax.py /^ def ioclass(self):$/;" m class:StreamReaderWriterXmlgenTest +ioclass Lib/test/test_sax.py /^ def ioclass(self):$/;" m class:StreamWriterXmlgenTest +ioclass Lib/test/test_sax.py /^ ioclass = BytesIO$/;" v class:BytesXmlgenTest +ioclass Lib/test/test_sax.py /^ ioclass = StringIO$/;" v class:StringXmlgenTest +ioerror_peer_reset Lib/test/test_urllib2net.py /^ioerror_peer_reset = TransientResource(OSError, errno=errno.ECONNRESET)$/;" v +iomodule_clear Modules/_io/_iomodule.c /^iomodule_clear(PyObject *mod) {$/;" f file: +iomodule_exec Modules/_io/_iomodule.c /^iomodule_exec(PyObject *m)$/;" f file: +iomodule_free Modules/_io/_iomodule.c /^iomodule_free(void *mod)$/;" f file: +iomodule_slots Modules/_io/_iomodule.c /^static struct PyModuleDef_Slot iomodule_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +iomodule_traverse Modules/_io/_iomodule.c /^iomodule_traverse(PyObject *mod, visitproc visit, void *arg) {$/;" f file: +ior Lib/operator.py /^def ior(a, b):$/;" f +iov_cleanup Modules/posixmodule.c /^iov_cleanup(struct iovec *iov, Py_buffer *buf, int cnt)$/;" f file: +iov_setup Modules/posixmodule.c /^iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, Py_ssize_t cnt, int type)$/;" f file: +ip Lib/email/_header_value_parser.py /^ def ip(self):$/;" m class:DomainLiteral +ip Lib/ipaddress.py /^ def ip(self):$/;" m class:IPv4Interface +ip Lib/ipaddress.py /^ def ip(self):$/;" m class:IPv6Interface +ip2num Lib/urllib/request.py /^ def ip2num(ipAddr):$/;" f function:_proxy_bypass_macosx_sysconf +ip_address Lib/ipaddress.py /^def ip_address(address):$/;" f +ip_interface Lib/ipaddress.py /^def ip_interface(address):$/;" f +ip_network Lib/ipaddress.py /^def ip_network(address, strict=True):$/;" f +ipow Lib/operator.py /^def ipow(a, b):$/;" f +ipowObject Modules/_testcapimodule.c /^} ipowObject;$/;" t typeref:struct:__anon591 file: +ipowType Modules/_testcapimodule.c /^static PyTypeObject ipowType = {$/;" v file: +ipowType_as_number Modules/_testcapimodule.c /^static PyNumberMethods ipowType_as_number = {$/;" v file: +ipowType_ipow Modules/_testcapimodule.c /^ipowType_ipow(PyObject *self, PyObject *other, PyObject *mod)$/;" f file: +ipv4_addrs Lib/test/test_httpservers.py /^ ipv4_addrs = ($/;" v class:ScriptTestCase +ipv4_mapped Lib/ipaddress.py /^ def ipv4_mapped(self):$/;" m class:IPv6Address +ipv6_addrs Lib/test/test_httpservers.py /^ ipv6_addrs = ($/;" v class:ScriptTestCase +irange Lib/test/test_itertools.py /^def irange(n):$/;" f +ireturn_example Lib/test/test_sys_settrace.py /^def ireturn_example():$/;" f +irshift Lib/operator.py /^def irshift(a, b):$/;" f +isAMD64Host PC/launcher2.c /^isAMD64Host(void)$/;" f +isARM64Host PC/launcher2.c /^isARM64Host(void)$/;" f +isAquaTk Lib/idlelib/macosx.py /^def isAquaTk():$/;" f +isCarbonTk Lib/idlelib/macosx.py /^def isCarbonTk():$/;" f +isCdata Modules/expat/xmlparse.c /^ XML_Bool isCdata;$/;" m struct:__anon614 file: +isCocoaTk Lib/idlelib/macosx.py /^def isCocoaTk():$/;" f +isDaemon Lib/threading.py /^ def isDaemon(self):$/;" m class:Thread +isElementContent Lib/xml/dom/expatbuilder.py /^ def isElementContent(self):$/;" m class:ElementInfo +isElementContent Lib/xml/dom/minidom.py /^ def isElementContent(self):$/;" m class:ElementInfo +isEmpty Lib/xml/dom/expatbuilder.py /^ def isEmpty(self):$/;" m class:ElementInfo +isEmpty Lib/xml/dom/minidom.py /^ def isEmpty(self):$/;" m class:ElementInfo +isEnabledFor Lib/logging/__init__.py /^ def isEnabledFor(self, level):$/;" m class:Logger +isEnabledFor Lib/logging/__init__.py /^ def isEnabledFor(self, level):$/;" m class:LoggerAdapter +isEnvVarSet PC/launcher2.c /^isEnvVarSet(const wchar_t *name)$/;" f +isEven Lib/test/test_itertools.py /^def isEven(x):$/;" f +isGeneralTextEntity Modules/expat/xmltok.c /^ int isGeneralTextEntity, const ENCODING *enc, const char *ptr,$/;" v file: +isId Lib/xml/dom/expatbuilder.py /^ def isId(self, aname):$/;" m class:ElementInfo +isId Lib/xml/dom/minidom.py /^ def isId(self, aname):$/;" m class:ElementInfo +isIdNS Lib/xml/dom/expatbuilder.py /^ def isIdNS(self, euri, ename, auri, aname):$/;" m class:ElementInfo +isIdNS Lib/xml/dom/minidom.py /^ def isIdNS(self, namespaceURI, localName):$/;" m class:ElementInfo +isInvalid2 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isInvalid2)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isInvalid3 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isInvalid3)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isInvalid4 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isInvalid4)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isName2 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isName2)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isName3 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isName3)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isName4 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isName4)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNameMin Modules/expat/xmltok.c /^ int(PTRFASTCALL *isNameMin)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNever Modules/expat/xmltok.c /^isNever(const ENCODING *enc, const char *p) {$/;" f file: +isNmstrt2 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isNmstrt2)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNmstrt3 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isNmstrt3)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNmstrt4 Modules/expat/xmltok.c /^ int(PTRFASTCALL *isNmstrt4)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNmstrtMin Modules/expat/xmltok.c /^ int(PTRFASTCALL *isNmstrtMin)(const ENCODING *, const char *);$/;" m struct:normal_encoding file: +isNumeric Parser/asdl_c.py /^ def isNumeric(self, field):$/;" m class:Obj2ModVisitor +isOdd Lib/test/test_itertools.py /^def isOdd(x):$/;" f +isPublicId Modules/expat/xmltok.h /^ int(PTRCALL *isPublicId)(const ENCODING *enc, const char *ptr,$/;" m struct:encoding +isPublicId Modules/expat/xmltok_impl.c /^PREFIX(isPublicId)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +isRat Lib/test/test_binop.py /^def isRat(x):$/;" f +isReservedKey Lib/http/cookies.py /^ def isReservedKey(self, K):$/;" m class:Morsel +isSameNode Lib/xml/dom/minidom.py /^ def isSameNode(self, other):$/;" m class:Node +isSet Lib/threading.py /^ def isSet(self):$/;" m class:Event +isSimpleType Parser/asdl_c.py /^ def isSimpleType(self, field):$/;" m class:Obj2ModVisitor +isSpace Modules/expat/xmltok.c /^isSpace(int c) {$/;" f file: +isSupported Lib/xml/dom/minidom.py /^ def isSupported(self, feature, version):$/;" m class:Document +isSupported Lib/xml/dom/minidom.py /^ def isSupported(self, feature, version):$/;" m class:Node +isTipcAvailable Lib/test/test_socket.py /^def isTipcAvailable():$/;" f +isUtf16 Modules/expat/xmltok.h /^ char isUtf16;$/;" m struct:encoding +isUtf8 Modules/expat/xmltok.h /^ char isUtf8;$/;" m struct:encoding +isXQuartz Lib/idlelib/macosx.py /^def isXQuartz():$/;" f +is_ Lib/operator.py /^def is_(a, b):$/;" f +is_ Lib/tomllib/_parser.py /^ def is_(self, key: Key, flag: int) -> bool:$/;" m class:Flags +is_HDN Lib/http/cookiejar.py /^def is_HDN(text):$/;" f +is_a_simple_defined Tools/clinic/cpp.py /^ is_a_simple_defined = re.compile(r'^defined\\s*\\(\\s*[A-Za-z0-9_]+\\s*\\)$').match$/;" v class:Monitor +is_absolute Lib/pathlib.py /^ def is_absolute(self):$/;" m class:PurePath +is_abstract_socket_namespace Lib/multiprocessing/util.py /^def is_abstract_socket_namespace(address):$/;" f +is_active Lib/asyncio/unix_events.py /^ def is_active(self):$/;" m class:AbstractChildWatcher +is_active Lib/asyncio/unix_events.py /^ def is_active(self):$/;" m class:BaseChildWatcher +is_active Lib/asyncio/unix_events.py /^ def is_active(self):$/;" m class:MultiLoopChildWatcher +is_active Lib/asyncio/unix_events.py /^ def is_active(self):$/;" m class:PidfdChildWatcher +is_active Lib/asyncio/unix_events.py /^ def is_active(self):$/;" m class:ThreadedChildWatcher +is_active Lib/graphlib.py /^ def is_active(self):$/;" m class:TopologicalSorter +is_active Lib/idlelib/autocomplete_w.py /^ def is_active(self):$/;" m class:AutoCompleteWindow +is_alias Python/import.c /^ bool is_alias;$/;" m struct:frozen_info file: +is_alignment_token Python/formatter_unicode.c /^is_alignment_token(Py_UCS4 c)$/;" f +is_alive Lib/multiprocessing/process.py /^ def is_alive(self):$/;" m class:BaseProcess +is_alive Lib/multiprocessing/process.py /^ def is_alive(self):$/;" m class:_ParentProcess +is_alive Lib/test/_test_multiprocessing.py /^ def is_alive(self):$/;" m class:TestPoolNotLeakOnFailure.test_release_unused_processes.FailingForkProcess +is_alive Lib/threading.py /^ def is_alive(self):$/;" m class:Thread +is_alive Lib/threading.py /^ def is_alive(self):$/;" m class:_DummyThread +is_all_white Lib/idlelib/format.py /^def is_all_white(line):$/;" f +is_android Lib/test/support/__init__.py /^is_android = hasattr(sys, 'getandroidapilevel')$/;" v +is_annotated Lib/symtable.py /^ def is_annotated(self):$/;" m class:Symbol +is_asciicompat_encoding Modules/_io/textio.c /^is_asciicompat_encoding(encodefunc_t f)$/;" f file: +is_assign_target Lib/lib2to3/fixes/fix_next.py /^def is_assign_target(node):$/;" f +is_assigned Lib/symtable.py /^ def is_assigned(self):$/;" m class:Symbol +is_async Include/internal/pycore_ast.h /^ int is_async;$/;" m struct:_comprehension +is_async Include/internal/pycore_ast_state.h /^ PyObject *is_async;$/;" m struct:ast_state +is_attachment Lib/email/message.py /^ def is_attachment(self):$/;" m class:MIMEPart +is_authenticated Lib/urllib/request.py /^ def is_authenticated(self, authuri):$/;" m class:HTTPPasswordMgrWithPriorAuth +is_big_endian Modules/arraymodule.c /^ int is_big_endian;$/;" m struct:mformatdescr file: +is_bit_set_in_table Include/internal/pycore_opcode_utils.h /^is_bit_set_in_table(const uint32_t *table, int bitindex) {$/;" f +is_bitwise_or_rule Parser/parser.c /^is_bitwise_or_rule(Parser *p)$/;" f file: +is_bitwise_or_type Parser/parser.c 207;" d file: +is_block_closer Lib/idlelib/pyparse.py /^ def is_block_closer(self):$/;" m class:Parser +is_block_device Lib/pathlib.py /^ def is_block_device(self):$/;" m class:Path +is_block_opener Lib/idlelib/pyparse.py /^ def is_block_opener(self):$/;" m class:Parser +is_block_push Python/flowgraph.c /^is_block_push(cfg_instr *i)$/;" f file: +is_blocked Lib/http/cookiejar.py /^ def is_blocked(self, domain):$/;" m class:DefaultCookiePolicy +is_browseable_extension Lib/idlelib/browser.py /^def is_browseable_extension(path):$/;" f +is_browser Tools/wasm/wasm_build.py /^ def is_browser(self) -> bool:$/;" m class:BuildProfile +is_browser Tools/wasm/wasm_build.py /^ def is_browser(self):$/;" m class:EmscriptenTarget +is_builtin Python/import.c /^is_builtin(PyObject *name)$/;" f file: +is_byte_format Lib/test/test_buffer.py /^def is_byte_format(fmt):$/;" f +is_canonical Lib/_pydecimal.py /^ def is_canonical(self):$/;" m class:Decimal +is_canonical Lib/_pydecimal.py /^ def is_canonical(self, a):$/;" m class:Context +is_cgi Lib/http/server.py /^ def is_cgi(self):$/;" m class:CGIHTTPRequestHandler +is_char_device Lib/pathlib.py /^ def is_char_device(self):$/;" m class:Path +is_char_in_string Lib/idlelib/editor.py /^ def is_char_in_string(self, text_index):$/;" m class:EditorWindow +is_char_in_string Lib/idlelib/idle_test/test_hyperparser.py /^ is_char_in_string = EditorWindow.is_char_in_string$/;" v class:DummyEditwin +is_client_connected Lib/test/test_ftplib.py /^ def is_client_connected():$/;" f function:TestFTPClass.test_with_statement +is_client_error Lib/http/__init__.py /^ def is_client_error(self):$/;" m class:HTTPStatus +is_client_error Lib/test/test_httplib.py /^ def is_client_error(self):$/;" m class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +is_closed Lib/asyncio/base_events.py /^ def is_closed(self):$/;" m class:BaseEventLoop +is_closed Lib/asyncio/events.py /^ def is_closed(self):$/;" m class:AbstractEventLoop +is_closing Lib/asyncio/base_subprocess.py /^ def is_closing(self):$/;" m class:BaseSubprocessTransport +is_closing Lib/asyncio/proactor_events.py /^ def is_closing(self):$/;" m class:_ProactorBasePipeTransport +is_closing Lib/asyncio/selector_events.py /^ def is_closing(self):$/;" m class:_SelectorTransport +is_closing Lib/asyncio/sslproto.py /^ def is_closing(self):$/;" m class:_SSLProtocolTransport +is_closing Lib/asyncio/streams.py /^ def is_closing(self):$/;" m class:StreamWriter +is_closing Lib/asyncio/transports.py /^ def is_closing(self):$/;" m class:BaseTransport +is_closing Lib/asyncio/unix_events.py /^ def is_closing(self):$/;" m class:_UnixReadPipeTransport +is_closing Lib/asyncio/unix_events.py /^ def is_closing(self):$/;" m class:_UnixWritePipeTransport +is_code_page_present Lib/test/test_codecs.py /^def is_code_page_present(cp):$/;" f +is_connected Lib/test/test_nntplib.py /^ def is_connected():$/;" f function:NetworkedNNTPTestsMixin.test_with_statement +is_contiguous Modules/_testbuffer.c /^is_contiguous(PyObject *self, PyObject *args)$/;" f file: +is_core_module Python/import.c /^is_core_module(PyInterpreterState *interp, PyObject *name, PyObject *filename)$/;" f file: +is_coroutine Modules/_asynciomodule.c /^is_coroutine(asyncio_state *state, PyObject *coro)$/;" f file: +is_cygwingcc Tools/c-analyzer/distutils/cygwinccompiler.py /^def is_cygwingcc():$/;" f +is_dataclass Lib/dataclasses.py /^def is_dataclass(obj):$/;" f +is_dead_weakref Modules/_weakref.c /^is_dead_weakref(PyObject *value)$/;" f file: +is_decl Tools/c-analyzer/c_parser/info.py /^ def is_decl(cls, kind):$/;" m class:KIND +is_decl Tools/c-analyzer/c_parser/match.py /^def is_decl(item):$/;" f +is_declared_global Lib/symtable.py /^ def is_declared_global(self):$/;" m class:Symbol +is_digit Modules/_datetimemodule.c /^is_digit(const char c) {$/;" f file: +is_digits_or_empty Lib/idlelib/configdialog.py /^ def is_digits_or_empty(s):$/;" f function:ShedPage.init_validators +is_digits_or_empty Lib/idlelib/configdialog.py /^ def is_digits_or_empty(s):$/;" f function:WinPage.init_validators +is_dir Lib/importlib/resources/_adapters.py /^ def is_dir(self):$/;" m class:CompatibilityFiles.ChildPath +is_dir Lib/importlib/resources/_adapters.py /^ is_dir = is_file$/;" v class:CompatibilityFiles.OrphanPath +is_dir Lib/importlib/resources/_adapters.py /^ is_dir = is_file$/;" v class:CompatibilityFiles.SpecPath +is_dir Lib/importlib/resources/abc.py /^ def is_dir(self) -> bool:$/;" m class:Traversable +is_dir Lib/importlib/resources/readers.py /^ def is_dir(self):$/;" m class:MultiplexedPath +is_dir Lib/importlib/resources/simple.py /^ def is_dir(self):$/;" m class:ResourceContainer +is_dir Lib/importlib/resources/simple.py /^ def is_dir(self):$/;" m class:ResourceHandle +is_dir Lib/pathlib.py /^ def is_dir(self):$/;" m class:Path +is_dir Lib/zipfile/__init__.py /^ def is_dir(self):$/;" m class:ZipInfo +is_dir Lib/zipfile/_path/__init__.py /^ def is_dir(self):$/;" m class:Path +is_directive Lib/test/test_clinic.py /^ def is_directive(self, name):$/;" m class:FakeClinic +is_dml Modules/_sqlite/statement.h /^ int is_dml;$/;" m struct:__anon357 +is_docstring Lib/lib2to3/fixes/fix_tuple_params.py /^def is_docstring(stmt):$/;" f +is_dunder_name Objects/typeobject.c /^is_dunder_name(PyObject *name)$/;" f file: +is_editline Lib/test/test_readline.py /^ is_editline = ("EditLine wrapper" in readline._READLINE_LIBRARY_VERSION)$/;" v +is_editline Lib/test/test_readline.py /^ is_editline = (readline.__doc__ and "libedit" in readline.__doc__)$/;" v +is_empty_dict Modules/_elementtree.c /^is_empty_dict(PyObject *obj)$/;" f file: +is_emscripten Tools/wasm/wasm_build.py /^ def is_emscripten(self) -> bool:$/;" m class:Host +is_env_var_to_ignore Lib/test/test_subprocess.py /^ def is_env_var_to_ignore(n):$/;" f function:ProcessTestCase.test_empty_env +is_error Modules/mathmodule.c /^is_error(double x)$/;" f file: +is_evalframe Tools/gdb/libpython.py /^ def is_evalframe(self):$/;" m class:Frame +is_executable Lib/http/server.py /^ def is_executable(self, path):$/;" m class:CGIHTTPRequestHandler +is_executable Tools/c-analyzer/c_common/fsutil.py /^def is_executable(file, *, user=None, check=False):$/;" f +is_exit_without_lineno Python/flowgraph.c /^is_exit_without_lineno(basicblock *b) {$/;" f file: +is_exiting Lib/multiprocessing/util.py /^def is_exiting():$/;" f +is_expired Lib/http/cookiejar.py /^ def is_expired(self, now=None):$/;" m class:Cookie +is_external_reference Tools/c-analyzer/c_parser/match.py /^def is_external_reference(decl):$/;" f +is_failed Lib/test/libregrtest/runtest.py /^ def is_failed(self, fail_env_changed: bool) -> bool:$/;" m class:TestResult +is_failed Lib/test/libregrtest/runtest.py /^ def is_failed(state):$/;" m class:State +is_fifo Lib/pathlib.py /^ def is_fifo(self):$/;" m class:Path +is_file Lib/importlib/resources/_adapters.py /^ def is_file(self):$/;" m class:CompatibilityFiles.ChildPath +is_file Lib/importlib/resources/_adapters.py /^ def is_file(self):$/;" m class:CompatibilityFiles.OrphanPath +is_file Lib/importlib/resources/_adapters.py /^ def is_file(self):$/;" m class:CompatibilityFiles.SpecPath +is_file Lib/importlib/resources/abc.py /^ def is_file(self) -> bool:$/;" m class:Traversable +is_file Lib/importlib/resources/readers.py /^ def is_file(self):$/;" m class:MultiplexedPath +is_file Lib/importlib/resources/simple.py /^ def is_file(self):$/;" m class:ResourceContainer +is_file Lib/importlib/resources/simple.py /^ def is_file(self):$/;" m class:ResourceHandle +is_file Lib/pathlib.py /^ def is_file(self):$/;" m class:Path +is_file Lib/zipfile/_path/__init__.py /^ def is_file(self):$/;" m class:Path +is_filename_to_skip Python/_warnings.c /^is_filename_to_skip(PyObject *filename, PyTupleObject *skip_file_prefixes)$/;" f file: +is_finite Lib/_pydecimal.py /^ def is_finite(self):$/;" m class:Decimal +is_finite Lib/_pydecimal.py /^ def is_finite(self, a):$/;" m class:Context +is_fips_mode Lib/test/test_hashlib.py /^ def is_fips_mode(self):$/;" m class:HashLibTestCase +is_fixed_type Tools/c-analyzer/c_analyzer/match.py /^def is_fixed_type(vardecl):$/;" f +is_forking Lib/multiprocessing/spawn.py /^def is_forking(argv):$/;" f +is_forward_decl Tools/c-analyzer/c_parser/match.py /^def is_forward_decl(decl):$/;" f +is_free Lib/symtable.py /^ def is_free(self):$/;" m class:Symbol +is_free_in_any_child Python/symtable.c /^is_free_in_any_child(PySTEntryObject *entry, PyObject *key)$/;" f file: +is_frozen_header Tools/build/deepfreeze.py /^def is_frozen_header(source: str) -> bool:$/;" f +is_funcptr Tools/c-analyzer/c_parser/match.py /^def is_funcptr(vartype):$/;" f +is_gather Tools/peg_generator/pegen/grammar.py /^ def is_gather(self) -> bool:$/;" m class:Rule +is_gc_collect Tools/gdb/libpython.py /^ def is_gc_collect(self):$/;" m class:Frame +is_global Lib/ipaddress.py /^ def is_global(self):$/;" m class:IPv4Address +is_global Lib/ipaddress.py /^ def is_global(self):$/;" m class:IPv4Network +is_global Lib/ipaddress.py /^ def is_global(self):$/;" m class:IPv6Address +is_global Lib/ipaddress.py /^ def is_global(self):$/;" m class:_BaseNetwork +is_global Lib/symtable.py /^ def is_global(self):$/;" m class:Symbol +is_global_var Tools/c-analyzer/c_parser/match.py /^def is_global_var(decl):$/;" f +is_hardlink Lib/test/test_compileall.py /^def is_hardlink(filename1, filename2):$/;" f +is_hop_by_hop Lib/wsgiref/util.py /^def is_hop_by_hop(header_name):$/;" f +is_ignored_filename Lib/trace.py /^ def is_ignored_filename(self, filename):$/;" m class:CoverageResults +is_immutable Tools/c-analyzer/c_analyzer/match.py /^def is_immutable(vardecl):$/;" f +is_import Lib/lib2to3/fixer_util.py /^def is_import(node):$/;" f +is_import_originated Python/compile.c /^is_import_originated(struct compiler *c, expr_ty e)$/;" f file: +is_import_stmt Lib/lib2to3/fixer_util.py /^ def is_import_stmt(node):$/;" f function:touch_import +is_imported Lib/symtable.py /^ def is_imported(self):$/;" m class:Symbol +is_in_code Lib/idlelib/hyperparser.py /^ def is_in_code(self):$/;" m class:HyperParser +is_in_string Lib/idlelib/hyperparser.py /^ def is_in_string(self):$/;" m class:HyperParser +is_infinite Lib/_pydecimal.py /^ def is_infinite(self):$/;" m class:Decimal +is_infinite Lib/_pydecimal.py /^ def is_infinite(self, a):$/;" m class:Context +is_informational Lib/http/__init__.py /^ def is_informational(self):$/;" m class:HTTPStatus +is_informational Lib/test/test_httplib.py /^ def is_informational(self):$/;" m class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +is_initialised Modules/zlibmodule.c /^ bool is_initialised;$/;" m struct:__anon306 file: +is_initialised Modules/zlibmodule.c /^ bool is_initialised;$/;" m struct:__anon307 file: +is_installed Lib/test/test_launcher.py /^def is_installed(tag):$/;" f +is_installed Tools/c-analyzer/c_common/scriptutil.py /^def is_installed(filename, *, allowsuffix=True):$/;" f +is_instance Lib/test/test_unittest/testmock/support.py /^def is_instance(obj, klass):$/;" f +is_instrumented Python/instrumentation.c /^is_instrumented(int opcode)$/;" f file: +is_int Lib/idlelib/configdialog.py /^def is_int(s):$/;" f +is_int_config Modules/_sqlite/connection.c /^is_int_config(const int op)$/;" f file: +is_integer Lib/fractions.py /^ def is_integer(self):$/;" m class:Fraction +is_integer_type Modules/arraymodule.c /^ int is_integer_type;$/;" m struct:arraydescr file: +is_internal Modules/expat/xmlparse.c /^ XML_Bool is_internal; \/* true if declared in internal subset outside PE *\/$/;" m struct:__anon611 file: +is_internal_filename Python/_warnings.c /^is_internal_filename(PyObject *filename)$/;" f file: +is_internal_frame Python/_warnings.c /^is_internal_frame(PyFrameObject *frame)$/;" f file: +is_it_true Lib/test/pydoc_mod.py /^ def is_it_true(self):$/;" m class:C +is_jump Python/flowgraph.c /^is_jump(cfg_instr *i)$/;" f file: +is_junction Lib/pathlib.py /^ def is_junction(self):$/;" m class:Path +is_jython Lib/test/support/__init__.py /^is_jython = sys.platform.startswith('java')$/;" v +is_keyword Parser/pegen.h /^ int is_keyword;$/;" m struct:__anon665 +is_keyword_only Tools/clinic/clinic.py /^ def is_keyword_only(self) -> bool:$/;" m class:Parameter +is_known Tools/c-analyzer/c_analyzer/info.py /^ def is_known(self):$/;" m class:Analyzed +is_leap Modules/_datetimemodule.c /^is_leap(int year)$/;" f file: +is_leap_year Modules/_zoneinfo.c /^is_leap_year(int year)$/;" f file: +is_legal_c_identifier Tools/clinic/clinic.py /^is_legal_c_identifier = re.compile('^[A-Za-z_][A-Za-z0-9_]*$').match$/;" v +is_legal_capsule Objects/capsule.c 26;" d file: +is_legal_py_identifier Tools/clinic/clinic.py /^def is_legal_py_identifier(s: str) -> bool:$/;" f +is_link_local Lib/ipaddress.py /^ def is_link_local(self):$/;" m class:IPv4Address +is_link_local Lib/ipaddress.py /^ def is_link_local(self):$/;" m class:IPv6Address +is_link_local Lib/ipaddress.py /^ def is_link_local(self):$/;" m class:_BaseNetwork +is_list Lib/lib2to3/fixer_util.py /^def is_list(node):$/;" f +is_list Lib/test/test_lib2to3/test_util.py /^ def is_list(self, string):$/;" m class:Test_is_list +is_literal_char Modules/_ctypes/callproc.c /^is_literal_char(unsigned char c)$/;" f file: +is_literal_string Tools/i18n/pygettext.py /^def is_literal_string(s):$/;" f +is_local Lib/symtable.py /^ def is_local(self):$/;" m class:Symbol +is_local_symbol_type Tools/build/smelly.py /^def is_local_symbol_type(symtype):$/;" f +is_local_var Tools/c-analyzer/c_parser/match.py /^def is_local_var(decl):$/;" f +is_loop Tools/peg_generator/pegen/grammar.py /^ def is_loop(self) -> bool:$/;" m class:Rule +is_loopback Lib/ipaddress.py /^ def is_loopback(self):$/;" m class:IPv4Address +is_loopback Lib/ipaddress.py /^ def is_loopback(self):$/;" m class:IPv6Address +is_loopback Lib/ipaddress.py /^ def is_loopback(self):$/;" m class:IPv6Interface +is_loopback Lib/ipaddress.py /^ def is_loopback(self):$/;" m class:_BaseNetwork +is_main_interpreter Modules/syslogmodule.c /^is_main_interpreter(void)$/;" f file: +is_medium_int Objects/longobject.c /^is_medium_int(stwodigits x)$/;" f file: +is_memoryview_format Lib/test/test_buffer.py /^def is_memoryview_format(fmt):$/;" f +is_missing_dep Tools/c-analyzer/c_parser/preprocessor/common.py /^def is_missing_dep(errtext):$/;" f +is_module_global Tools/c-analyzer/c_analyzer/match.py /^ def is_module_global(decl):$/;" f function:group_by_storage +is_module_global_decl Tools/c-analyzer/c_analyzer/match.py /^def is_module_global_decl(decl):$/;" f +is_mount Lib/pathlib.py /^ def is_mount(self):$/;" m class:Path +is_multicast Lib/ipaddress.py /^ def is_multicast(self):$/;" m class:IPv4Address +is_multicast Lib/ipaddress.py /^ def is_multicast(self):$/;" m class:IPv6Address +is_multicast Lib/ipaddress.py /^ def is_multicast(self):$/;" m class:_BaseNetwork +is_multiindex Objects/memoryobject.c /^is_multiindex(PyObject *key)$/;" f file: +is_multipart Lib/email/message.py /^ def is_multipart(self):$/;" m class:Message +is_multiprocess_flag Tools/scripts/run_tests.py /^def is_multiprocess_flag(arg):$/;" f +is_multislice Objects/memoryobject.c /^is_multislice(PyObject *key)$/;" f file: +is_name_stdlib_module Python/suggestions.c /^is_name_stdlib_module(PyObject* name)$/;" f file: +is_namespace Lib/symtable.py /^ def is_namespace(self):$/;" m class:Symbol +is_nan Lib/_pydecimal.py /^ def is_nan(self):$/;" m class:Decimal +is_nan Lib/_pydecimal.py /^ def is_nan(self, a):$/;" m class:Context +is_nested Lib/symtable.py /^ def is_nested(self):$/;" m class:SymbolTable +is_no_line_marker Objects/codeobject.c /^is_no_line_marker(uint8_t b)$/;" f file: +is_non_empty_tuple Lib/ast.py /^ def is_non_empty_tuple(slice_value):$/;" f function:_Unparser.visit_Subscript +is_nonlocal Lib/symtable.py /^ def is_nonlocal(self):$/;" m class:Symbol +is_normal Lib/_pydecimal.py /^ def is_normal(self, a):$/;" m class:Context +is_normal Lib/_pydecimal.py /^ def is_normal(self, context=None):$/;" m class:Decimal +is_normalized_quickcheck Modules/unicodedata.c /^is_normalized_quickcheck(PyObject *self, PyObject *input, bool nfc, bool k,$/;" f file: +is_not Lib/operator.py /^def is_not(a, b):$/;" f +is_not_allowed Lib/http/cookiejar.py /^ def is_not_allowed(self, domain):$/;" m class:DefaultCookiePolicy +is_null Tools/gdb/libpython.py /^ def is_null(self):$/;" m class:PyObjectPtr +is_onlyws Lib/email/header.py /^ def is_onlyws(self):$/;" m class:_Accumulator +is_optimized Lib/symtable.py /^ def is_optimized(self):$/;" m class:SymbolTable +is_optimized_out Tools/gdb/libpython.py /^ def is_optimized_out(self):$/;" m class:PyFramePtr +is_optimized_out Tools/gdb/libpython.py /^ def is_optimized_out(self):$/;" m class:PyObjectPtr +is_optional Tools/clinic/clinic.py /^ def is_optional(self) -> bool:$/;" m class:CConverter +is_optional Tools/clinic/clinic.py /^ def is_optional(self) -> bool:$/;" m class:Parameter +is_os_mismatch Tools/c-analyzer/c_parser/preprocessor/common.py /^def is_os_mismatch(filename, errtext=None):$/;" f +is_other_python_frame Tools/gdb/libpython.py /^ def is_other_python_frame(self):$/;" m class:Frame +is_overlapping Lib/test/test_buffer.py /^def is_overlapping(t):$/;" f +is_package Include/cpython/import.h /^ int is_package;$/;" m struct:_frozen +is_package Lib/importlib/_bootstrap.py /^ def is_package(cls, fullname):$/;" m class:BuiltinImporter +is_package Lib/importlib/_bootstrap.py /^ def is_package(cls, fullname):$/;" m class:FrozenImporter +is_package Lib/importlib/_bootstrap_external.py /^ def is_package(self, fullname):$/;" m class:ExtensionFileLoader +is_package Lib/importlib/_bootstrap_external.py /^ def is_package(self, fullname):$/;" m class:NamespaceLoader +is_package Lib/importlib/_bootstrap_external.py /^ def is_package(self, fullname):$/;" m class:_LoaderBasics +is_package Lib/importlib/abc.py /^ def is_package(self, fullname):$/;" m class:InspectLoader +is_package Lib/test/test_importlib/source/test_file_loader.py /^ def is_package(self, _): pass$/;" m class:SimpleTest.test_get_filename_API.Tester +is_package Lib/test/test_importlib/source/test_file_loader.py /^ def is_package(self, _): return False$/;" m class:SimpleTest.test_load_module_API.Tester +is_package Lib/test/test_importlib/test_abc.py /^ def is_package(self, fullname):$/;" m class:LoaderLoadModuleTests.loader.SpecLoader +is_package Lib/test/test_importlib/test_abc.py /^ def is_package(self, fullname):$/;" m class:InspectLoader +is_package Lib/test/test_importlib/test_spec.py /^ def is_package(self, name):$/;" m class:FactoryTests.test_spec_from_file_location_smsl_default_bad_is_package.Loader +is_package Lib/test/test_importlib/test_spec.py /^ def is_package(self, name):$/;" m class:FactoryTests.test_spec_from_file_location_smsl_default_not_package.Loader +is_package Lib/test/test_importlib/test_spec.py /^ def is_package(self, name):$/;" m class:FactoryTests.test_spec_from_loader_default_with_bad_is_package.Loader +is_package Lib/zipimport.py /^ def is_package(self, fullname):$/;" m class:zipimporter +is_package Python/import.c /^ bool is_package;$/;" m struct:frozen_info file: +is_param Modules/expat/xmlparse.c /^ XML_Bool is_param;$/;" m struct:__anon611 file: +is_parameter Lib/symtable.py /^ def is_parameter(self):$/;" m class:Symbol +is_positional_only Tools/clinic/clinic.py /^ def is_positional_only(self) -> bool:$/;" m class:Parameter +is_potential_identifier_char Parser/tokenizer.c 23;" d file: +is_potential_identifier_start Parser/tokenizer.c 17;" d file: +is_pots Tools/c-analyzer/c_parser/match.py /^def is_pots(typespec, *,$/;" f +is_primitive_root Modules/_decimal/libmpdec/literature/fnt.py /^def is_primitive_root(r, p, factors, exponents):$/;" f +is_private Lib/ipaddress.py /^ def is_private(self):$/;" m class:IPv4Address +is_private Lib/ipaddress.py /^ def is_private(self):$/;" m class:IPv6Address +is_private Lib/ipaddress.py /^ def is_private(self):$/;" m class:_BaseNetwork +is_probably_builtin Lib/lib2to3/fixer_util.py /^def is_probably_builtin(node):$/;" f +is_process_global Tools/c-analyzer/c_analyzer/match.py /^def is_process_global(vardecl):$/;" f +is_pseudo Lib/opcode.py /^def is_pseudo(op):$/;" f +is_public Tools/c-analyzer/c_analyzer/match.py /^def is_public(decl):$/;" f +is_public_api Tools/c-analyzer/c_analyzer/match.py /^def is_public_api(decl):$/;" f +is_public_declaration Tools/c-analyzer/c_analyzer/match.py /^def is_public_declaration(decl):$/;" f +is_public_definition Tools/c-analyzer/c_analyzer/match.py /^def is_public_definition(decl):$/;" f +is_public_impl Tools/c-analyzer/c_analyzer/match.py /^def is_public_impl(decl):$/;" f +is_python Lib/http/server.py /^ def is_python(self, path):$/;" m class:CGIHTTPRequestHandler +is_python_build Lib/sysconfig.py /^def is_python_build(check_home=None):$/;" f +is_python_flag Tools/scripts/run_tests.py /^def is_python_flag(arg):$/;" f +is_python_frame Tools/gdb/libpython.py /^ def is_python_frame(self):$/;" m class:Frame +is_qnan Lib/_pydecimal.py /^ def is_qnan(self):$/;" m class:Decimal +is_qnan Lib/_pydecimal.py /^ def is_qnan(self, a):$/;" m class:Context +is_readable Tools/c-analyzer/c_common/fsutil.py /^def is_readable(file, *, user=None, check=False):$/;" f +is_reading Lib/asyncio/proactor_events.py /^ def is_reading(self):$/;" m class:_ProactorReadPipeTransport +is_reading Lib/asyncio/selector_events.py /^ def is_reading(self):$/;" m class:_SelectorTransport +is_reading Lib/asyncio/sslproto.py /^ def is_reading(self):$/;" m class:_SSLProtocolTransport +is_reading Lib/asyncio/transports.py /^ def is_reading(self):$/;" m class:ReadTransport +is_reading Lib/asyncio/unix_events.py /^ def is_reading(self):$/;" m class:_UnixReadPipeTransport +is_readying Objects/typeobject.c /^is_readying(PyTypeObject *type)$/;" f file: +is_redirection Lib/http/__init__.py /^ def is_redirection(self):$/;" m class:HTTPStatus +is_redirection Lib/test/test_httplib.py /^ def is_redirection(self):$/;" m class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +is_referenced Lib/symtable.py /^ def is_referenced(self):$/;" m class:Symbol +is_related Lib/functools.py /^ def is_related(typ):$/;" f function:_compose_mro +is_relative_to Lib/pathlib.py /^ def is_relative_to(self, other, \/, *_deprecated):$/;" m class:PurePath +is_reserved Lib/ipaddress.py /^ def is_reserved(self):$/;" m class:IPv4Address +is_reserved Lib/ipaddress.py /^ def is_reserved(self):$/;" m class:IPv6Address +is_reserved Lib/ipaddress.py /^ def is_reserved(self):$/;" m class:_BaseNetwork +is_reserved Lib/pathlib.py /^ def is_reserved(self):$/;" m class:PurePath +is_resizeable Modules/mmapmodule.c /^is_resizeable(mmap_object *self)$/;" f file: +is_resource Lib/importlib/resources/_legacy.py /^def is_resource(package: Package, name: str) -> bool:$/;" f +is_resource Lib/importlib/resources/abc.py /^ def is_resource(self, path: StrPath) -> bool:$/;" m class:TraversableResources +is_resource Lib/importlib/resources/abc.py /^ def is_resource(self, path: Text) -> bool:$/;" m class:ResourceReader +is_resource Lib/importlib/resources/readers.py /^ def is_resource(self, path):$/;" m class:ZipReader +is_resource Lib/test/test_importlib/resources/util.py /^ def is_resource(self, path_):$/;" m class:Reader +is_resource Lib/test/test_importlib/test_abc.py /^ def is_resource(self, *args, **kwargs):$/;" m class:ResourceReader +is_resource_enabled Lib/test/support/__init__.py /^def is_resource_enabled(resource):$/;" f +is_resource_use_flag Tools/scripts/run_tests.py /^def is_resource_use_flag(arg):$/;" f +is_resume Objects/genobject.c /^is_resume(_Py_CODEUNIT *instr)$/;" f file: +is_rfc3986_uri_char Modules/expat/xmlparse.c /^is_rfc3986_uri_char(XML_Char candidate) {$/;" f file: +is_root_correctly_rounded Lib/test/test_statistics.py /^ def is_root_correctly_rounded(x: Fraction, root: float) -> bool:$/;" f function:TestSqrtHelpers.test_float_sqrt_of_frac +is_rpc_path_valid Lib/xmlrpc/server.py /^ def is_rpc_path_valid(self):$/;" m class:SimpleXMLRPCRequestHandler +is_running Lib/asyncio/base_events.py /^ def is_running(self):$/;" m class:BaseEventLoop +is_running Lib/asyncio/coroutines.py /^ def is_running(coro):$/;" f function:_format_coroutine +is_running Lib/asyncio/events.py /^ def is_running(self):$/;" m class:AbstractEventLoop +is_running Lib/test/support/interpreters.py /^ def is_running(self):$/;" m class:Interpreter +is_same Objects/unionobject.c /^is_same(PyObject *left, PyObject *right)$/;" f file: +is_same_exception_metadata Objects/exceptions.c /^is_same_exception_metadata(PyObject *exc1, PyObject *exc2)$/;" f file: +is_server_error Lib/http/__init__.py /^ def is_server_error(self):$/;" m class:HTTPStatus +is_server_error Lib/test/test_httplib.py /^ def is_server_error(self):$/;" m class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +is_serving Lib/asyncio/base_events.py /^ def is_serving(self):$/;" m class:Server +is_serving Lib/asyncio/events.py /^ def is_serving(self):$/;" m class:AbstractServer +is_set Lib/asyncio/locks.py /^ def is_set(self):$/;" m class:Event +is_set Lib/multiprocessing/managers.py /^ def is_set(self):$/;" m class:EventProxy +is_set Lib/multiprocessing/synchronize.py /^ def is_set(self):$/;" m class:Event +is_set Lib/threading.py /^ def is_set(self):$/;" m class:Event +is_shim Tools/gdb/libpython.py /^ def is_shim(self):$/;" m class:PyFramePtr +is_shutting_down Lib/concurrent/futures/process.py /^ def is_shutting_down(self):$/;" m class:_ExecutorManagerThread +is_sign_element Python/formatter_unicode.c /^is_sign_element(Py_UCS4 c)$/;" f +is_signed Lib/_pydecimal.py /^ def is_signed(self):$/;" m class:Decimal +is_signed Lib/_pydecimal.py /^ def is_signed(self, a):$/;" m class:Context +is_signed Modules/arraymodule.c /^ int is_signed;$/;" m struct:arraydescr file: +is_signed Modules/arraymodule.c /^ int is_signed;$/;" m struct:mformatdescr file: +is_simple Parser/asdl_c.py /^def is_simple(sum_type):$/;" f +is_site_local Lib/ipaddress.py /^ def is_site_local(self):$/;" m class:IPv6Address +is_site_local Lib/ipaddress.py /^ def is_site_local(self):$/;" m class:IPv6Network +is_skipped_module Lib/bdb.py /^ def is_skipped_module(self, module_name):$/;" m class:Bdb +is_snan Lib/_pydecimal.py /^ def is_snan(self):$/;" m class:Decimal +is_snan Lib/_pydecimal.py /^ def is_snan(self, a):$/;" m class:Context +is_socket Lib/pathlib.py /^ def is_socket(self):$/;" m class:Path +is_space Modules/_decimal/_decimal.c /^is_space(int kind, const void *data, Py_ssize_t pos)$/;" f +is_standalone Tools/c-analyzer/c_common/scriptutil.py /^def is_standalone(filename):$/;" f +is_start_line Tools/clinic/clinic.py /^ def is_start_line(self, line):$/;" m class:BlockParser +is_static_local Tools/c-analyzer/c_analyzer/match.py /^ def is_static_local(decl):$/;" f function:group_by_storage +is_static_module_global Tools/c-analyzer/c_analyzer/match.py /^ def is_static_module_global(decl):$/;" f function:group_by_storage +is_stop_line Tools/clinic/clinic.py /^ def is_stop_line(line):$/;" f function:BlockParser.parse_clinic_block +is_strict_base Lib/functools.py /^ def is_strict_base(typ):$/;" f function:_compose_mro +is_subnormal Lib/_pydecimal.py /^ def is_subnormal(self, a):$/;" m class:Context +is_subnormal Lib/_pydecimal.py /^ def is_subnormal(self, context=None):$/;" m class:Decimal +is_subtree Lib/lib2to3/fixes/fix_next.py /^def is_subtree(root, node):$/;" f +is_suburi Lib/urllib/request.py /^ def is_suburi(self, base, test):$/;" m class:HTTPPasswordMgr +is_success Lib/http/__init__.py /^ def is_success(self):$/;" m class:HTTPStatus +is_success Lib/test/test_httplib.py /^ def is_success(self):$/;" m class:BasicTest.test_simple_httpstatus.CheckedHTTPStatus +is_super_instruction Python/instrumentation.c /^is_super_instruction(uint8_t opcode) {$/;" f file: +is_symlink Lib/pathlib.py /^ def is_symlink(self):$/;" m class:Path +is_symlink Lib/zipfile/_path/__init__.py /^ def is_symlink(self):$/;" m class:Path +is_system_type Tools/c-analyzer/c_analyzer/match.py /^def is_system_type(typespec):$/;" f +is_tarfile Lib/tarfile.py /^def is_tarfile(name):$/;" f +is_target Tools/c-analyzer/c_analyzer/info.py /^ def is_target(cls, raw):$/;" m class:Analyzed +is_target Tools/c-analyzer/cpython/_analyzer.py /^ def is_target(cls, raw):$/;" m class:Analyzed +is_third_party Lib/http/cookiejar.py /^def is_third_party(request):$/;" f +is_this_file Lib/importlib/resources/_common.py /^ def is_this_file(frame_info):$/;" f function:_infer_caller +is_tipwindow_shown Lib/idlelib/idle_test/test_tooltip.py /^ def is_tipwindow_shown(self, tooltip):$/;" m class:HovertipTest +is_tripped Include/internal/pycore_signal.h /^ _Py_atomic_int is_tripped;$/;" m struct:_signals_runtime_state +is_tripped Modules/signalmodule.c 104;" d file: +is_tstate_valid Python/ceval_gil.c /^is_tstate_valid(PyThreadState *tstate)$/;" f file: +is_tstate_valid Python/legacy_tracing.c /^is_tstate_valid(PyThreadState *tstate)$/;" f file: +is_tuple Lib/lib2to3/fixer_util.py /^def is_tuple(node):$/;" f +is_tuple Lib/test/test_lib2to3/test_util.py /^ def is_tuple(self, string):$/;" m class:Test_is_tuple +is_two_element_slice Python/compile.c /^is_two_element_slice(expr_ty s)$/;" f file: +is_type_decl Tools/c-analyzer/c_parser/info.py /^ def is_type_decl(cls, kind):$/;" m class:KIND +is_type_decl Tools/c-analyzer/c_parser/match.py /^def is_type_decl(item):$/;" f +is_typeddict Lib/typing.py /^def is_typeddict(tp):$/;" f +is_ubuntu Lib/test/test_ssl.py /^def is_ubuntu():$/;" f +is_unavailable_exception Lib/test/test_xmlrpc.py /^def is_unavailable_exception(e):$/;" f +is_unicode_scalar_value Lib/tomllib/_parser.py /^def is_unicode_scalar_value(codepoint: int) -> bool:$/;" f +is_unified_ideograph Modules/unicodedata.c /^is_unified_ideograph(Py_UCS4 code)$/;" f file: +is_unionable Objects/unionobject.c /^is_unionable(PyObject *obj)$/;" f file: +is_unspecified Lib/ipaddress.py /^ def is_unspecified(self):$/;" m class:IPv4Address +is_unspecified Lib/ipaddress.py /^ def is_unspecified(self):$/;" m class:IPv6Address +is_unspecified Lib/ipaddress.py /^ def is_unspecified(self):$/;" m class:IPv6Interface +is_unspecified Lib/ipaddress.py /^ def is_unspecified(self):$/;" m class:_BaseNetwork +is_unwinding_reliable Lib/test/test_perf_profiler.py /^def is_unwinding_reliable():$/;" f +is_valid Lib/string.py /^ def is_valid(self):$/;" m class:Template +is_valid_fd Python/pylifecycle.c /^is_valid_fd(int fd)$/;" f file: +is_valid_id Lib/idlelib/idle_test/test_hyperparser.py /^ def is_valid_id(candidate):$/;" f function:HyperParserTest.test_eat_identifier +is_valid_wide_char Python/fileutils.c /^is_valid_wide_char(wchar_t ch)$/;" f file: +is_vararg Tools/clinic/clinic.py /^ def is_vararg(self) -> bool:$/;" m class:Parameter +is_version_up_to_date Python/instrumentation.c /^is_version_up_to_date(PyCodeObject *code, PyInterpreterState *interp)$/;" f file: +is_waiting_for_gil Tools/gdb/libpython.py /^ def is_waiting_for_gil(self):$/;" m class:Frame +is_wasi Tools/wasm/wasm_build.py /^ def is_wasi(self) -> bool:$/;" m class:Host +is_worker Lib/test/libregrtest/main.py /^ def is_worker(self):$/;" m class:Regrtest +is_wrapper Lib/importlib/resources/_common.py /^ def is_wrapper(frame_info):$/;" f function:_infer_caller +is_writable Modules/mmapmodule.c /^is_writable(mmap_object *self)$/;" f file: +is_writable Tools/c-analyzer/c_common/fsutil.py /^def is_writable(file, *, user=None, check=False):$/;" f +is_yield Objects/genobject.c /^is_yield(_Py_CODEUNIT *instr)$/;" f file: +is_zero Lib/_pydecimal.py /^ def is_zero(self):$/;" m class:Decimal +is_zero Lib/_pydecimal.py /^ def is_zero(self, a):$/;" m class:Context +is_zipfile Lib/zipfile/__init__.py /^def is_zipfile(filename):$/;" f +isabs Lib/ntpath.py /^def isabs(s):$/;" f +isabs Lib/posixpath.py /^def isabs(s):$/;" f +isabs Lib/test/test_getpath.py /^ def isabs(self, path):$/;" m class:MockNTNamespace +isabs Lib/test/test_getpath.py /^ def isabs(self, path):$/;" m class:MockPosixNamespace +isabstract Lib/inspect.py /^def isabstract(object):$/;" f +isalias Tools/build/freeze_modules.py /^ def isalias(self):$/;" m class:FrozenModule +isalnum Include/pyport.h 465;" d +isalnum Include/pyport.h 466;" d +isalnum Lib/collections/__init__.py /^ def isalnum(self):$/;" m class:UserString +isalnum Lib/curses/ascii.py /^def isalnum(c): return isalpha(c) or isdigit(c)$/;" f +isalpha Include/pyport.h 467;" d +isalpha Include/pyport.h 468;" d +isalpha Lib/collections/__init__.py /^ def isalpha(self):$/;" m class:UserString +isalpha Lib/curses/ascii.py /^def isalpha(c): return isupper(c) or islower(c)$/;" f +isascii Lib/collections/__init__.py /^ def isascii(self):$/;" m class:UserString +isascii Lib/curses/ascii.py /^def isascii(c): return 0 <= _ctoi(c) <= 127 # ?$/;" f +isasyncgen Lib/inspect.py /^def isasyncgen(object):$/;" f +isasyncgenfunction Lib/inspect.py /^def isasyncgenfunction(obj):$/;" f +isatty Lib/_pyio.py /^ def isatty(self):$/;" m class:BufferedRWPair +isatty Lib/_pyio.py /^ def isatty(self):$/;" m class:FileIO +isatty Lib/_pyio.py /^ def isatty(self):$/;" m class:IOBase +isatty Lib/_pyio.py /^ def isatty(self):$/;" m class:TextIOWrapper +isatty Lib/_pyio.py /^ def isatty(self):$/;" m class:_BufferedIOMixin +isatty Lib/chunk.py /^ def isatty(self):$/;" m class:Chunk +isatty Lib/idlelib/pyshell.py /^ def isatty(self):$/;" m class:PyShell +isatty Lib/idlelib/run.py /^ def isatty(self):$/;" m class:StdioFile +isatty Lib/tempfile.py /^ def isatty(self):$/;" m class:SpooledTemporaryFile +isatty Lib/test/test_io.py /^ def isatty(self):$/;" m class:BufferedRWPairTest.test_isatty.SelectableIsAtty +isatty Lib/typing.py /^ def isatty(self) -> bool:$/;" m class:IO +isawaitable Lib/inspect.py /^def isawaitable(object):$/;" f +isback Lib/idlelib/searchengine.py /^ def isback(self):$/;" m class:SearchEngine +isblank Lib/curses/ascii.py /^def isblank(c): return _ctoi(c) in (9, 32)$/;" f +isblk Lib/tarfile.py /^ def isblk(self):$/;" m class:TarInfo +isbootstrap Tools/build/freeze_modules.py /^ def isbootstrap(self):$/;" m class:FrozenSource +isbuiltin Lib/inspect.py /^def isbuiltin(object):$/;" f +isbytes Modules/_sre/sre.h /^ int isbytes; \/* pattern type (1 - bytes, 0 - string, -1 - None) *\/$/;" m struct:__anon454 +isbytes Modules/_sre/sre.h /^ int isbytes;$/;" m struct:__anon458 +iscase Lib/idlelib/searchengine.py /^ def iscase(self):$/;" m class:SearchEngine +ischr Lib/tarfile.py /^ def ischr(self):$/;" m class:TarInfo +isclass Lib/inspect.py /^def isclass(object):$/;" f +isclean Mac/Extras.install.py /^def isclean(name):$/;" f +isclose Lib/test/test_cmath.py /^ isclose = cmath.isclose$/;" v class:IsCloseTests +isclose Lib/test/test_math.py /^ isclose = math.isclose # subclasses should override this$/;" v class:IsCloseTests +isclosed Lib/http/client.py /^ def isclosed(self):$/;" m class:HTTPResponse +iscntrl Lib/curses/ascii.py /^def iscntrl(c): return 0 <= _ctoi(c) <= 31 or _ctoi(c) == 127$/;" f +iscode Lib/inspect.py /^def iscode(object):$/;" f +iscoroutine Lib/asyncio/coroutines.py /^def iscoroutine(obj):$/;" f +iscoroutine Lib/inspect.py /^def iscoroutine(object):$/;" f +iscoroutine_typecache Modules/_asynciomodule.c /^ PyObject *iscoroutine_typecache;$/;" m struct:__anon308 file: +iscoroutinefunction Lib/asyncio/coroutines.py /^def iscoroutinefunction(func):$/;" f +iscoroutinefunction Lib/inspect.py /^def iscoroutinefunction(obj):$/;" f +isctrl Lib/curses/ascii.py /^def isctrl(c): return 0 <= _ctoi(c) < 32$/;" f +isdata Lib/pydoc.py /^def isdata(object):$/;" f +isdatadescriptor Lib/inspect.py /^def isdatadescriptor(object):$/;" f +isdecimal Lib/collections/__init__.py /^ def isdecimal(self):$/;" m class:UserString +isdev Lib/tarfile.py /^ def isdev(self):$/;" m class:TarInfo +isdevdrive Lib/ntpath.py /^ def isdevdrive(path):$/;" f +isdigit Lib/collections/__init__.py /^ def isdigit(self):$/;" m class:UserString +isdigit Lib/curses/ascii.py /^def isdigit(c): return 48 <= _ctoi(c) <= 57$/;" f +isdir Lib/genericpath.py /^def isdir(s):$/;" f +isdir Lib/tarfile.py /^ def isdir(self):$/;" m class:TarInfo +isdir Lib/test/test_getpath.py /^ def isdir(self, path):$/;" m class:MockNTNamespace +isdir Lib/test/test_getpath.py /^ def isdir(self, path):$/;" m class:MockPosixNamespace +isdir Lib/test/test_unittest/test_discovery.py /^ def isdir(_):$/;" f function:TestDiscovery.setup_module_clash +isdir Lib/test/test_unittest/test_discovery.py /^ def isdir(path):$/;" f function:TestDiscovery.test_find_tests +isdir Lib/test/test_venv.py /^ def isdir(self, *args):$/;" m class:BasicTest +isdisjoint Lib/_collections_abc.py /^ def isdisjoint(self, other):$/;" m class:Set +isdisjoint Lib/_weakrefset.py /^ def isdisjoint(self, other):$/;" m class:WeakSet +isdown Lib/turtle.py /^ def isdown(self):$/;" m class:TPen +iselement Lib/xml/etree/ElementTree.py /^def iselement(element):$/;" f +isfifo Lib/tarfile.py /^ def isfifo(self):$/;" m class:TarInfo +isfile Lib/genericpath.py /^def isfile(path):$/;" f +isfile Lib/tarfile.py /^ def isfile(self):$/;" m class:TarInfo +isfile Lib/test/test_getpath.py /^ def isfile(self, path):$/;" m class:MockNTNamespace +isfile Lib/test/test_getpath.py /^ def isfile(self, path):$/;" m class:MockPosixNamespace +isfile Lib/test/test_unittest/test_discovery.py /^ def isfile(_):$/;" f function:TestDiscovery.setup_module_clash +isfile Lib/test/test_unittest/test_discovery.py /^ def isfile(path):$/;" f function:TestDiscovery.test_find_tests +isfile Lib/test/test_unittest/test_program.py /^ def isfile(path):$/;" f function:TestCommandLineArgs._patch_isfile +isfirstline Lib/fileinput.py /^ def isfirstline(self):$/;" m class:FileInput +isfirstline Lib/fileinput.py /^def isfirstline():$/;" f +isfirstline Lib/test/test_fileinput.py /^ def isfirstline(self):$/;" m class:MockFileInput +isframe Lib/inspect.py /^def isframe(object):$/;" f +isfuncs Lib/idlelib/idle_test/test_macosx.py /^ isfuncs = ((macosx.isAquaTk, ('carbon', 'cocoa')),$/;" v class:IsTypeTkTest +isfunction Lib/inspect.py /^def isfunction(object):$/;" f +isfuture Lib/asyncio/base_futures.py /^def isfuture(obj):$/;" f +isfuture Lib/asyncio/futures.py /^isfuture = base_futures.isfuture$/;" v +isgenerator Lib/inspect.py /^def isgenerator(object):$/;" f +isgeneratorfunction Lib/inspect.py /^def isgeneratorfunction(obj):$/;" f +isgetsetdescriptor Lib/inspect.py /^ def isgetsetdescriptor(object):$/;" f +isgraph Lib/curses/ascii.py /^def isgraph(c): return 33 <= _ctoi(c) <= 126$/;" f +ishex Lib/quopri.py /^def ishex(c):$/;" f +isidentifier Lib/collections/__init__.py /^ def isidentifier(self):$/;" m class:UserString +isinstance Include/internal/pycore_code.h /^ PyObject *isinstance;$/;" m struct:callable_cache +isint Lib/test/test_binop.py /^def isint(x):$/;" f +isinterned Lib/test/test_code.py /^def isinterned(s):$/;" f +isjunction Lib/ntpath.py /^ def isjunction(path):$/;" f function:dirname +isjunction Lib/posixpath.py /^def isjunction(path):$/;" f +iskeyword Lib/keyword.py /^iskeyword = frozenset(kwlist).__contains__$/;" v +isleap Lib/calendar.py /^def isleap(year):$/;" f +islice Lib/test/test_itertools.py /^ def islice(iterable, *args):$/;" m class:TestPurePythonRoughEquivalents +islice_dealloc Modules/itertoolsmodule.c /^islice_dealloc(isliceobject *lz)$/;" f file: +islice_methods Modules/itertoolsmodule.c /^static PyMethodDef islice_methods[] = {$/;" v file: +islice_new Modules/itertoolsmodule.c /^islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +islice_next Modules/itertoolsmodule.c /^islice_next(isliceobject *lz)$/;" f file: +islice_reduce Modules/itertoolsmodule.c /^islice_reduce(isliceobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +islice_setstate Modules/itertoolsmodule.c /^islice_setstate(isliceobject *lz, PyObject *state)$/;" f file: +islice_slots Modules/itertoolsmodule.c /^static PyType_Slot islice_slots[] = {$/;" v file: +islice_spec Modules/itertoolsmodule.c /^static PyType_Spec islice_spec = {$/;" v file: +islice_traverse Modules/itertoolsmodule.c /^islice_traverse(isliceobject *lz, visitproc visit, void *arg)$/;" f file: +islice_type Modules/itertoolsmodule.c /^ PyTypeObject *islice_type;$/;" m struct:__anon400 file: +isliceobject Modules/itertoolsmodule.c /^} isliceobject;$/;" t typeref:struct:__anon410 file: +islink Lib/genericpath.py /^def islink(path):$/;" f +islnk Lib/tarfile.py /^ def islnk(self):$/;" m class:TarInfo +islower Include/pyport.h 469;" d +islower Include/pyport.h 470;" d +islower Lib/collections/__init__.py /^ def islower(self):$/;" m class:UserString +islower Lib/curses/ascii.py /^def islower(c): return 97 <= _ctoi(c) <= 122$/;" f +ismemberdescriptor Lib/inspect.py /^ def ismemberdescriptor(object):$/;" f +ismeta Lib/curses/ascii.py /^def ismeta(c): return _ctoi(c) > 127$/;" f +ismethod Lib/inspect.py /^def ismethod(object):$/;" f +ismethod Lib/test/test_pyclbr.py /^ def ismethod(oclass, obj, name):$/;" f function:PyclbrTest.checkModule +ismethoddescriptor Lib/inspect.py /^def ismethoddescriptor(object):$/;" f +ismethodwrapper Lib/inspect.py /^def ismethodwrapper(object):$/;" f +ismodule Lib/inspect.py /^def ismodule(object):$/;" f +ismodule Lib/test/test_getpath.py /^ def ismodule(self, path):$/;" m class:MockNTNamespace +ismodule Lib/test/test_getpath.py /^ def ismodule(self, path):$/;" m class:MockPosixNamespace +ismount Lib/ntpath.py /^def ismount(path):$/;" f +ismount Lib/posixpath.py /^def ismount(path):$/;" f +isnot_bitwise_or_rule Parser/parser.c /^isnot_bitwise_or_rule(Parser *p)$/;" f file: +isnot_bitwise_or_type Parser/parser.c 206;" d file: +isnum Lib/test/test_binop.py /^def isnum(x):$/;" f +isnumeric Lib/collections/__init__.py /^ def isnumeric(self):$/;" m class:UserString +iso2022_config Modules/cjkcodecs/_codecs_iso2022.c /^struct iso2022_config {$/;" s file: +iso2022_decode_func Modules/cjkcodecs/_codecs_iso2022.c /^typedef Py_UCS4 (*iso2022_decode_func)(const MultibyteCodec *codec,$/;" t file: +iso2022_designation Modules/cjkcodecs/_codecs_iso2022.c /^struct iso2022_designation {$/;" s file: +iso2022_encode_func Modules/cjkcodecs/_codecs_iso2022.c /^typedef DBCHAR (*iso2022_encode_func)(const MultibyteCodec *codec,$/;" t file: +iso2022_init_func Modules/cjkcodecs/_codecs_iso2022.c /^typedef int (*iso2022_init_func)(const MultibyteCodec *codec);$/;" t file: +iso2022_jp_1_designations Modules/cjkcodecs/_codecs_iso2022.c /^static const struct iso2022_designation iso2022_jp_1_designations[] = {$/;" v typeref:struct:iso2022_designation file: +iso2022_jp_2004_designations Modules/cjkcodecs/_codecs_iso2022.c /^static const struct iso2022_designation iso2022_jp_2004_designations[] = {$/;" v typeref:struct:iso2022_designation file: +iso2022_jp_2_designations Modules/cjkcodecs/_codecs_iso2022.c /^static const struct iso2022_designation iso2022_jp_2_designations[] = {$/;" v typeref:struct:iso2022_designation file: +iso2022_jp_3_designations Modules/cjkcodecs/_codecs_iso2022.c /^static const struct iso2022_designation iso2022_jp_3_designations[] = {$/;" v typeref:struct:iso2022_designation file: +iso2022_jp_designations Modules/cjkcodecs/_codecs_iso2022.c /^static const struct iso2022_designation iso2022_jp_designations[] = {$/;" v typeref:struct:iso2022_designation file: +iso2022_jp_ext_designations Modules/cjkcodecs/_codecs_iso2022.c /^static const struct iso2022_designation iso2022_jp_ext_designations[] = {$/;" v typeref:struct:iso2022_designation file: +iso2022_kr_designations Modules/cjkcodecs/_codecs_iso2022.c /^static const struct iso2022_designation iso2022_kr_designations[] = {$/;" v typeref:struct:iso2022_designation file: +iso2022processesc Modules/cjkcodecs/_codecs_iso2022.c /^iso2022processesc(const MultibyteCodec *codec, MultibyteCodec_State *state,$/;" f file: +iso2022processg2 Modules/cjkcodecs/_codecs_iso2022.c /^iso2022processg2(const MultibyteCodec *codec, MultibyteCodec_State *state,$/;" f file: +iso2time Lib/http/cookiejar.py /^def iso2time(text):$/;" f +iso_calendar_date_getset Modules/_datetimemodule.c /^static PyGetSetDef iso_calendar_date_getset[] = {$/;" v file: +iso_calendar_date_methods Modules/_datetimemodule.c /^static PyMethodDef iso_calendar_date_methods[] = {$/;" v file: +iso_calendar_date_new Modules/clinic/_datetimemodule.c.h /^iso_calendar_date_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +iso_calendar_date_new_impl Modules/_datetimemodule.c /^iso_calendar_date_new_impl(PyTypeObject *type, int year, int week,$/;" f file: +iso_calendar_date_reduce Modules/_datetimemodule.c /^iso_calendar_date_reduce(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +iso_calendar_date_repr Modules/_datetimemodule.c /^iso_calendar_date_repr(PyDateTime_IsoCalendarDate *self)$/;" f file: +iso_calendar_date_week Modules/_datetimemodule.c /^iso_calendar_date_week(PyDateTime_IsoCalendarDate *self, void *unused)$/;" f file: +iso_calendar_date_weekday Modules/_datetimemodule.c /^iso_calendar_date_weekday(PyDateTime_IsoCalendarDate *self, void *unused)$/;" f file: +iso_calendar_date_year Modules/_datetimemodule.c /^iso_calendar_date_year(PyDateTime_IsoCalendarDate *self, void *unused)$/;" f file: +iso_to_ymd Modules/_datetimemodule.c /^iso_to_ymd(const int iso_year, const int iso_week, const int iso_day,$/;" f file: +iso_week1_monday Modules/_datetimemodule.c /^iso_week1_monday(int year)$/;" f file: +isocalendar Lib/_pydatetime.py /^ def isocalendar(self):$/;" m class:date +isoformat Lib/_pydatetime.py /^ def isoformat(self):$/;" m class:date +isoformat Lib/_pydatetime.py /^ def isoformat(self, sep='T', timespec='auto'):$/;" m class:datetime +isoformat Lib/_pydatetime.py /^ def isoformat(self, timespec='auto'):$/;" m class:time +isolated Include/cpython/initconfig.h /^ int isolated;$/;" m struct:PyConfig +isolated Include/cpython/initconfig.h /^ int isolated;$/;" m struct:PyPreConfig +isolated Include/internal/pycore_initconfig.h /^ int isolated; \/* -I option *\/$/;" m struct:__anon163 +isolated Lib/test/support/interpreters.py /^ def isolated(self):$/;" m class:Interpreter +isolated Lib/test/test_embed.py /^ isolated=1,$/;" v class:InitConfigTests +isolated Lib/test/test_getpath.py /^ isolated=0,$/;" v +isolated_context Lib/test/test_context.py /^def isolated_context(func):$/;" f +isolation_level Modules/_sqlite/connection.h /^ const char *isolation_level;$/;" m struct:__anon359 +isolation_level_converter Modules/_sqlite/connection.c /^isolation_level_converter(PyObject *str_or_none, const char **result)$/;" f file: +isort Lib/turtledemo/sorting_animate.py /^def isort(shelf):$/;" f +isoweekday Lib/_pydatetime.py /^ def isoweekday(self):$/;" m class:date +ispackage Lib/pydoc.py /^def ispackage(path):$/;" f +ispackagedir Lib/idlelib/pathbrowser.py /^ def ispackagedir(self, file):$/;" m class:DirBrowserTreeItem +ispath Lib/pydoc.py /^def ispath(x):$/;" f +ispkg Tools/build/freeze_modules.py /^ def ispkg(self):$/;" m class:FrozenSource +ispower2 Modules/_decimal/libmpdec/bits.h /^ispower2(mpd_size_t n)$/;" f +isprint Lib/curses/ascii.py /^def isprint(c): return 32 <= _ctoi(c) <= 126$/;" f +isprintable Lib/collections/__init__.py /^ def isprintable(self):$/;" m class:UserString +isprintable Tools/build/deepfreeze.py /^def isprintable(b: bytes) -> bool:$/;" f +ispunct Lib/curses/ascii.py /^def ispunct(c): return isgraph(c) and not isalnum(c)$/;" f +ispythonsource Lib/idlelib/editor.py /^ def ispythonsource(self, filename):$/;" m class:EditorWindow +ispythonsource Lib/idlelib/outwin.py /^ def ispythonsource(self, filename):$/;" m class:OutputWindow +ispythonsource Lib/idlelib/pyshell.py /^ def ispythonsource(self, filename):$/;" m class:PyShell +isre Lib/idlelib/searchengine.py /^ def isre(self):$/;" m class:SearchEngine +isreadable Lib/pprint.py /^ def isreadable(self, object):$/;" m class:PrettyPrinter +isreadable Lib/pprint.py /^def isreadable(object):$/;" f +isrecursive Lib/pprint.py /^ def isrecursive(self, object):$/;" m class:PrettyPrinter +isrecursive Lib/pprint.py /^def isrecursive(object):$/;" f +isreg Lib/tarfile.py /^ def isreg(self):$/;" m class:TarInfo +isroutine Lib/inspect.py /^def isroutine(object):$/;" f +issoftkeyword Lib/keyword.py /^issoftkeyword = frozenset(softkwlist).__contains__$/;" v +isspace Include/pyport.h 471;" d +isspace Include/pyport.h 472;" d +isspace Lib/collections/__init__.py /^ def isspace(self):$/;" m class:UserString +isspace Lib/curses/ascii.py /^def isspace(c): return _ctoi(c) in (9, 10, 11, 12, 13, 32)$/;" f +issparse Lib/tarfile.py /^ def issparse(self):$/;" m class:TarInfo +isstdin Lib/fileinput.py /^ def isstdin(self):$/;" m class:FileInput +isstdin Lib/fileinput.py /^def isstdin():$/;" f +isstdin Lib/test/test_fileinput.py /^ def isstdin(self):$/;" m class:MockFileInput +isstring Lib/re/_compiler.py /^def isstring(obj):$/;" f +issubset Lib/_weakrefset.py /^ def issubset(self, other):$/;" m class:WeakSet +issue_re Doc/tools/extensions/pyspecific.py /^issue_re = re.compile('(?:[Ii]ssue #|bpo-)([0-9]+)', re.I)$/;" v +issue_role Doc/tools/extensions/pyspecific.py /^def issue_role(typ, rawtext, text, lineno, inliner, options={}, content=[]):$/;" f +issuperset Lib/_weakrefset.py /^ def issuperset(self, other):$/;" m class:WeakSet +issym Lib/tarfile.py /^ def issym(self):$/;" m class:TarInfo +istest Lib/test/test_inspect.py /^ def istest(self, predicate, exp):$/;" m class:IsTestBase +istitle Lib/collections/__init__.py /^ def istitle(self):$/;" m class:UserString +istraceback Lib/inspect.py /^def istraceback(object):$/;" f +istype Tools/c-analyzer/c_analyzer/info.py /^ def istype(self):$/;" m class:Analyzed +isub Lib/operator.py /^def isub(a, b):$/;" f +isupper Include/pyport.h 473;" d +isupper Include/pyport.h 474;" d +isupper Lib/collections/__init__.py /^ def isupper(self):$/;" m class:UserString +isupper Lib/curses/ascii.py /^def isupper(c): return 65 <= _ctoi(c) <= 90$/;" f +isvisible Lib/turtle.py /^ def isvisible(self):$/;" m class:TPen +isword Lib/idlelib/searchengine.py /^ def isword(self):$/;" m class:SearchEngine +iswrap Lib/idlelib/searchengine.py /^ def iswrap(self):$/;" m class:SearchEngine +isxdigit Lib/curses/ascii.py /^ (65 <= _ctoi(c) <= 70) or (97 <= _ctoi(c) <= 102)$/;" f +isxfile Lib/test/test_getpath.py /^ def isxfile(self, path):$/;" m class:MockNTNamespace +isxfile Lib/test/test_getpath.py /^ def isxfile(self, path):$/;" m class:MockPosixNamespace +it Modules/_lsprof.c /^ _PyTime_t it; \/* inline time in this entry (not in subcalls) *\/$/;" m struct:_ProfilerEntry file: +it Modules/_lsprof.c /^ _PyTime_t it;$/;" m struct:_ProfilerSubEntry file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon401 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon402 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon403 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon405 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon407 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon408 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon409 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon410 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon411 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon417 file: +it Modules/itertoolsmodule.c /^ PyObject *it;$/;" m struct:__anon419 file: +it Python/bltinmodule.c /^ PyObject *it;$/;" m struct:__anon682 file: +it_callable Objects/iterobject.c /^ PyObject *it_callable; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon741 file: +it_complained Lib/test/test_sort.py /^ it_complained = False$/;" v class:TestBase.testStressfully.Stable +it_field Objects/stringlib/unicode_format.h /^ FieldNameIterator it_field;$/;" m struct:__anon709 +it_fmt Objects/memoryobject.c /^ const char *it_fmt;$/;" m struct:__anon733 file: +it_funcs Lib/lib2to3/fixes/fix_itertools.py /^ it_funcs = "('imap'|'ifilter'|'izip'|'izip_longest'|'ifilterfalse')"$/;" v class:FixItertools +it_happened Lib/test/test_gc.py /^ def it_happened(ignored):$/;" f function:GC_Detector.__init__ +it_index Include/internal/pycore_list.h /^ Py_ssize_t it_index;$/;" m struct:__anon157 +it_index Include/internal/pycore_tuple.h /^ Py_ssize_t it_index;$/;" m struct:__anon143 +it_index Objects/bytearrayobject.c /^ Py_ssize_t it_index;$/;" m struct:__anon738 file: +it_index Objects/bytesobject.c /^ Py_ssize_t it_index;$/;" m struct:__anon722 file: +it_index Objects/iterobject.c /^ Py_ssize_t it_index;$/;" m struct:__anon740 file: +it_index Objects/listobject.c /^ Py_ssize_t it_index;$/;" m struct:__anon749 file: +it_index Objects/memoryobject.c /^ Py_ssize_t it_index;$/;" m struct:__anon733 file: +it_index Objects/unicodeobject.c /^ Py_ssize_t it_index;$/;" m struct:__anon737 file: +it_length Objects/memoryobject.c /^ Py_ssize_t it_length;$/;" m struct:__anon733 file: +it_markup Objects/stringlib/unicode_format.h /^ MarkupIterator it_markup;$/;" m struct:__anon708 +it_sentinel Objects/iterobject.c /^ PyObject *it_sentinel; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon741 file: +it_seq Include/internal/pycore_list.h /^ PyListObject *it_seq; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon157 +it_seq Include/internal/pycore_tuple.h /^ PyTupleObject *it_seq; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon143 +it_seq Objects/bytearrayobject.c /^ PyByteArrayObject *it_seq; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon738 file: +it_seq Objects/bytesobject.c /^ PyBytesObject *it_seq; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon722 file: +it_seq Objects/iterobject.c /^ PyObject *it_seq; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon740 file: +it_seq Objects/listobject.c /^ PyListObject *it_seq; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon749 file: +it_seq Objects/memoryobject.c /^ PyMemoryViewObject *it_seq; \/\/ Set to NULL when iterator is exhausted$/;" m struct:__anon733 file: +it_seq Objects/unicodeobject.c /^ PyObject *it_seq; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon737 file: +item Lib/test/test_enum.py /^ item = self.source_values[2]$/;" v class:_EnumTests.test_object_str_override.Generic +item Lib/tkinter/ttk.py /^ def item(self, item, option=None, **kw):$/;" m class:Treeview +item Lib/xml/dom/minicompat.py /^ def item(self, index):$/;" m class:EmptyNodeList +item Lib/xml/dom/minicompat.py /^ def item(self, index):$/;" m class:NodeList +item Lib/xml/dom/minidom.py /^ def item(self, index):$/;" m class:NamedNodeMap +item Lib/xml/dom/minidom.py /^ def item(self, index):$/;" m class:ReadOnlySequentialNamedNodeMap +item Modules/_operator.c /^ PyObject *item;$/;" m struct:__anon474 file: +item Modules/_testcapimodule.c /^ PyObject *item;$/;" m struct:__anon594 file: +item Objects/memoryobject.c /^ char *item; \/* buffer for mview *\/$/;" m struct:unpacker file: +item Python/getargs.c /^ void *item;$/;" m struct:__anon694 file: +item Tools/peg_generator/pegen/grammar_parser.py /^ def item(self) -> Optional[Item]:$/;" m class:GeneratedParser +item_cget Lib/tkinter/tix.py /^ def item_cget(self, entry, col, opt):$/;" m class:HList +item_configure Lib/tkinter/tix.py /^ def item_configure(self, entry, col, cnf={}, **kw):$/;" m class:HList +item_create Lib/tkinter/tix.py /^ def item_create(self, entry, col, cnf={}, **kw):$/;" m class:HList +item_delete Lib/tkinter/tix.py /^ def item_delete(self, entry, col):$/;" m class:HList +item_exists Lib/tkinter/tix.py /^ def item_exists(self, entry, col):$/;" m class:HList +item_ok Lib/idlelib/idle_test/test_query.py /^ def item_ok(self):$/;" m class:HelpsourceEntryokTest.Dummy_HelpSource +item_ok Lib/idlelib/query.py /^ item_ok = SectionName.entry_ok # localize for test override$/;" v class:HelpSource +item_separator Lib/json/encoder.py /^ item_separator = ', '$/;" v class:JSONEncoder +item_separator Modules/_json.c /^ PyObject *item_separator;$/;" m struct:_PyEncoderObject file: +itemcget Lib/tkinter/__init__.py /^ def itemcget(self, index, option):$/;" m class:Listbox +itemcget Lib/tkinter/__init__.py /^ def itemcget(self, tagOrId, option):$/;" m class:Canvas +itemclass Tools/build/stable_abi.py /^def itemclass(kind):$/;" f +itemclasses Tools/build/stable_abi.py /^itemclasses = {}$/;" v +itemconfig Lib/test/test_pydoc.py /^ itemconfig = itemconfigure$/;" v class:PydocDocTest.test_method_aliases.B +itemconfig Lib/tkinter/__init__.py /^ itemconfig = itemconfigure$/;" v class:Canvas +itemconfig Lib/tkinter/__init__.py /^ itemconfig = itemconfigure$/;" v class:Listbox +itemconfigure Lib/test/test_pydoc.py /^ def itemconfigure(self, tagOrId, cnf=None, **kw):$/;" m class:PydocDocTest.test_method_aliases.B +itemconfigure Lib/tkinter/__init__.py /^ def itemconfigure(self, index, cnf=None, **kw):$/;" m class:Listbox +itemconfigure Lib/tkinter/__init__.py /^ def itemconfigure(self, tagOrId, cnf=None, **kw):$/;" m class:Canvas +itemgetter Lib/operator.py /^class itemgetter:$/;" c +itemgetter_call Modules/_operator.c /^itemgetter_call(itemgetterobject *ig, PyObject *args, PyObject *kw)$/;" f file: +itemgetter_call_impl Modules/_operator.c /^itemgetter_call_impl(itemgetterobject *ig, PyObject *obj)$/;" f file: +itemgetter_clear Modules/_operator.c /^itemgetter_clear(itemgetterobject *ig)$/;" f file: +itemgetter_dealloc Modules/_operator.c /^itemgetter_dealloc(itemgetterobject *ig)$/;" f file: +itemgetter_members Modules/_operator.c /^static PyMemberDef itemgetter_members[] = {$/;" v file: +itemgetter_methods Modules/_operator.c /^static PyMethodDef itemgetter_methods[] = {$/;" v file: +itemgetter_new Modules/_operator.c /^itemgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +itemgetter_reduce Modules/_operator.c /^itemgetter_reduce(itemgetterobject *ig, PyObject *Py_UNUSED(ignored))$/;" f file: +itemgetter_repr Modules/_operator.c /^itemgetter_repr(itemgetterobject *ig)$/;" f file: +itemgetter_traverse Modules/_operator.c /^itemgetter_traverse(itemgetterobject *ig, visitproc visit, void *arg)$/;" f file: +itemgetter_type Modules/_operator.c /^ PyObject *itemgetter_type;$/;" m struct:__anon473 file: +itemgetter_type_slots Modules/_operator.c /^static PyType_Slot itemgetter_type_slots[] = {$/;" v file: +itemgetter_type_spec Modules/_operator.c /^static PyType_Spec itemgetter_type_spec = {$/;" v file: +itemgetter_vectorcall Modules/_operator.c /^itemgetter_vectorcall(PyObject *ig, PyObject *const *args,$/;" f file: +itemgetterobject Modules/_operator.c /^} itemgetterobject;$/;" t typeref:struct:__anon474 file: +items Include/cpython/initconfig.h /^ wchar_t **items;$/;" m struct:__anon200 +items Include/internal/pycore_ast.h /^ asdl_withitem_seq *items;$/;" m struct:_stmt::__anon51::__anon65 +items Include/internal/pycore_ast.h /^ asdl_withitem_seq *items;$/;" m struct:_stmt::__anon51::__anon66 +items Include/internal/pycore_ast_state.h /^ PyObject *items;$/;" m struct:ast_state +items Lib/_collections_abc.py /^ def items(self):$/;" m class:Mapping +items Lib/collections/__init__.py /^ def items(self):$/;" m class:OrderedDict +items Lib/configparser.py /^ def items(self, section=_UNSET, raw=False, vars=None):$/;" m class:RawConfigParser +items Lib/dbm/dumb.py /^ def items(self):$/;" m class:_Database +items Lib/email/message.py /^ def items(self):$/;" m class:Message +items Lib/mailbox.py /^ def items(self):$/;" m class:Mailbox +items Lib/test/test_capi/test_abstract.py /^ def items(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems.Mapping1 +items Lib/test/test_capi/test_abstract.py /^ def items(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems.Mapping2 +items Lib/test/test_capi/test_abstract.py /^ def items(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems_bad_arg.BadMapping +items Lib/test/test_capi/test_dict.py /^ def items(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems.BadMapping +items Lib/test/test_configparser.py /^ def items(self):$/;" m class:SortedDict +items Lib/test/test_dict.py /^ def items(self):$/;" m class:DictTest.test_dict_copy_order.CustomReversedDict +items Lib/test/test_listcomps.py /^ items = [(lambda: i) for i in range(5)]$/;" v class:ListComprehensionTest.test_class_scope_free_var_with_class_cell.C +items Lib/test/test_ordered_dict.py /^ def items(self):$/;" m class:OrderedDictTests.test_init_calls.Spam +items Lib/test/test_types.py /^ def items(self):$/;" m class:MappingProxyTests.test_customdict.customdict +items Lib/weakref.py /^ def items(self):$/;" m class:WeakKeyDictionary +items Lib/weakref.py /^ def items(self):$/;" m class:WeakValueDictionary +items Lib/wsgiref/headers.py /^ def items(self):$/;" m class:Headers +items Lib/xml/dom/minidom.py /^ def items(self):$/;" m class:NamedNodeMap +items Lib/xml/etree/ElementTree.py /^ def items(self):$/;" m class:Element +items Lib/xml/sax/xmlreader.py /^ def items(self):$/;" m class:AttributesImpl +items Modules/_sre/sre.h /^ } items[0];$/;" m struct:__anon456 typeref:struct:__anon456::__anon457 +items Modules/_xxsubinterpretersmodule.c /^ struct _sharednsitem* items;$/;" m struct:_sharedns typeref:struct:_sharedns::_sharednsitem file: +items Parser/pegen.h /^ } *items;$/;" m struct:__anon655 typeref:struct:__anon655::__anon656 +items Tools/peg_generator/pegen/grammar_parser.py /^ def items(self) -> Optional[NamedItemList]:$/;" m class:GeneratedParser +itemsNS Lib/xml/dom/minidom.py /^ def itemsNS(self):$/;" m class:NamedNodeMap +items_from_keys_and_values Tools/gdb/libpython.py /^def items_from_keys_and_values(keys, values):$/;" f +items_pattern_rule Parser/parser.c /^items_pattern_rule(Parser *p)$/;" f file: +items_pattern_type Parser/parser.c 172;" d file: +items_view Lib/ast.py /^ def items_view(self, traverser, items):$/;" m class:_Unparser +itemsize Include/object.h /^ int itemsize;$/;" m struct:__anon253 +itemsize Include/pybuffer.h /^ Py_ssize_t itemsize; \/* This is Py_ssize_t so it can be$/;" m struct:__anon1 +itemsize Lib/test/test_memoryview.py /^ itemsize = 1$/;" v class:BaseBytesMemoryTests +itemsize Lib/test/test_memoryview.py /^ itemsize = array.array('i').itemsize$/;" v class:BaseArrayMemoryTests +itemsize Modules/arraymodule.c /^ int itemsize;$/;" m struct:arraydescr file: +itemsize Objects/memoryobject.c /^ Py_ssize_t itemsize; \/* len(item) *\/$/;" m struct:unpacker file: +iter Include/internal/pycore_ast.h /^ expr_ty iter;$/;" m struct:_stmt::__anon51::__anon61 +iter Include/internal/pycore_ast.h /^ expr_ty iter;$/;" m struct:_stmt::__anon51::__anon62 +iter Include/internal/pycore_ast.h /^ expr_ty iter;$/;" m struct:_comprehension +iter Include/internal/pycore_ast_state.h /^ PyObject *iter;$/;" m struct:ast_state +iter Lib/xml/etree/ElementTree.py /^ def iter(self, tag=None):$/;" m class:Element +iter Lib/xml/etree/ElementTree.py /^ def iter(self, tag=None):$/;" m class:ElementTree +iter Python/bytecodes.c /^static PyObject *exit_func, *lasti, *val, *retval, *obj, *iter;$/;" v file: +iter_action_sets Lib/test/test__xxinterpchannels.py /^ def iter_action_sets(self):$/;" m class:ExhaustiveChannelTests +iter_all Tools/c-analyzer/c_parser/info.py /^ def iter_all(self):$/;" m class:Declarations +iter_analysis_results Tools/c-analyzer/c_analyzer/__init__.py /^def iter_analysis_results(filenmes, *,$/;" f +iter_and_mutate Lib/test/test_dict.py /^ def iter_and_mutate():$/;" f function:DictTest.test_oob_indexing_dictiter_iternextitem +iter_attachments Lib/email/message.py /^ def iter_attachments(self):$/;" m class:MIMEPart +iter_builtin_types Tools/c-analyzer/cpython/_builtin_types.py /^def iter_builtin_types(filenames=None):$/;" f +iter_builtins Tools/gdb/libpython.py /^ def iter_builtins(self):$/;" m class:PyFrameObjectPtr +iter_builtins Tools/gdb/libpython.py /^ def iter_builtins(self):$/;" m class:PyFramePtr +iter_capi Tools/c-analyzer/cpython/_capi.py /^def iter_capi(filenames=None):$/;" f +iter_child_nodes Lib/ast.py /^def iter_child_nodes(node):$/;" f +iter_clean_lines Tools/c-analyzer/table-file.py /^def iter_clean_lines(lines):$/;" f +iter_codes Lib/test/test_compileall.py /^ def iter_codes(self):$/;" m class:HardlinkDedupTestsBase +iter_dealloc Objects/iterobject.c /^iter_dealloc(seqiterobject *it)$/;" f file: +iter_decls Tools/c-analyzer/c_analyzer/__init__.py /^def iter_decls(filenames, *,$/;" f +iter_decls Tools/c-analyzer/cpython/_analyzer.py /^def iter_decls(filenames, **kwargs):$/;" f +iter_decls_tsv Tools/c-analyzer/c_parser/datafiles.py /^def iter_decls_tsv(infile, extracolumns=None, relroot=fsutil.USE_CWD):$/;" f +iter_error Lib/test/test_builtin.py /^ def iter_error(self, iterable, error):$/;" m class:BuiltinTest +iter_exempt Lib/lib2to3/fixes/fix_dict.py /^iter_exempt = fixer_util.consuming_calls | {"iter"}$/;" v +iter_fields Lib/ast.py /^def iter_fields(node):$/;" f +iter_filenames Tools/c-analyzer/cpython/_files.py /^def iter_filenames(*, search=False):$/;" f +iter_files Tools/build/generate_global_objects.py /^def iter_files():$/;" f +iter_files Tools/c-analyzer/c_common/fsutil.py /^def iter_files(root, suffix=None, relparent=None, *,$/;" f +iter_files_by_suffix Tools/c-analyzer/c_common/fsutil.py /^def iter_files_by_suffix(root, suffixes, relparent=None, *,$/;" f +iter_fixtures Lib/test/test__xxinterpchannels.py /^ def iter_fixtures(self):$/;" m class:ExhaustiveChannelTests +iter_format Lib/test/test_buffer.py /^def iter_format(nitems, testobj='ndarray'):$/;" f +iter_global_strings Tools/build/generate_global_objects.py /^def iter_global_strings():$/;" f +iter_globals Tools/gdb/libpython.py /^ def iter_globals(self):$/;" m class:PyFrameObjectPtr +iter_globals Tools/gdb/libpython.py /^ def iter_globals(self):$/;" m class:PyFramePtr +iter_header_files Tools/c-analyzer/cpython/_files.py /^def iter_header_files(filenames=None, *, levels=None):$/;" f +iter_importer_modules Lib/pkgutil.py /^def iter_importer_modules(importer, prefix=''):$/;" f +iter_importers Lib/pkgutil.py /^def iter_importers(fullname=""):$/;" f +iter_integer_formats Lib/test/test_struct.py /^def iter_integer_formats(byteorders=byteorders):$/;" f +iter_iternext Objects/iterobject.c /^iter_iternext(PyObject *iterator)$/;" f file: +iter_len Objects/iterobject.c /^iter_len(seqiterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +iter_locals Tools/gdb/libpython.py /^ def iter_locals(self):$/;" m class:PyFrameObjectPtr +iter_locals Tools/gdb/libpython.py /^ def iter_locals(self):$/;" m class:PyFramePtr +iter_many Tools/c-analyzer/c_common/iterutil.py /^def iter_many(items, onempty=None):$/;" f +iter_marks Tools/c-analyzer/c_common/scriptutil.py /^def iter_marks(mark='.', *, group=5, groups=2, lines=_NOT_SET, sep=' '):$/;" f +iter_mode Lib/test/test_buffer.py /^def iter_mode(n, obj='ndarray'):$/;" f +iter_modules Lib/pkgutil.py /^def iter_modules(path=None, prefix=''):$/;" f +iter_one Lib/test/test_asyncio/test_base_events.py /^ async def iter_one():$/;" f function:BaseEventLoopTests.leave_unfinalized_asyncgen +iter_parts Lib/email/message.py /^ def iter_parts(self):$/;" m class:MIMEPart +iter_reduce Objects/iterobject.c /^iter_reduce(seqiterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +iter_results Tools/c-analyzer/c_parser/parser/_common.py /^def iter_results(results):$/;" f +iter_roundtrip Lib/test/test_buffer.py /^ def iter_roundtrip(ex, m, items, fmt):$/;" f function:TestBufferProtocol.test_memoryview_cast +iter_sections Tools/c-analyzer/table-file.py /^def iter_sections(lines):$/;" f +iter_setstate Objects/iterobject.c /^iter_setstate(seqiterobject *it, PyObject *state)$/;" f file: +iter_submodules Tools/build/freeze_modules.py /^def iter_submodules(pkgname, pkgdir=None, match='*'):$/;" f +iter_subs Tools/build/freeze_modules.py /^ def iter_subs():$/;" f function:_parse_spec +iter_tests Lib/test/libregrtest/runtest.py /^ def iter_tests(self):$/;" m class:RunTests +iter_to_marker Tools/build/generate_global_objects.py /^def iter_to_marker(lines, marker):$/;" f +iter_traverse Objects/iterobject.c /^iter_traverse(seqiterobject *it, visitproc visit, void *arg)$/;" f file: +iter_unpack Modules/clinic/_struct.c.h /^iter_unpack(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +iter_unpack_impl Modules/_struct.c /^iter_unpack_impl(PyObject *module, PyStructObject *s_object,$/;" f file: +iter_zipimport_modules Lib/pkgutil.py /^ def iter_zipimport_modules(importer, prefix=''):$/;" f +iterable Lib/test/test_heapq.py /^ def iterable():$/;" f function:TestHeap.test_merge_does_not_suppress_index_error +iterable Python/bytecodes.c /^static PyObject *aiter, *awaitable, *iterable, *w, *exc_value, *bc, *locals;$/;" v file: +iterable_body Lib/test/test_urllib2.py /^ def iterable_body():$/;" f function:HandlerTests.test_http_body_iterable +iterate Lib/test/test_asyncgen.py /^ async def iterate():$/;" f function:to_list +iterate Lib/test/test_unittest/testmock/testasync.py /^ async def iterate(iterator):$/;" f function:AsyncIteratorTest.test_mock_async_for +iterator Lib/xml/etree/ElementTree.py /^ def iterator(source):$/;" f function:iterparse +iterator_func Lib/test/test_weakref.py /^ def iterator_func():$/;" f function:ReferencesTestCase.test_proxy_next +iterdecode Lib/codecs.py /^def iterdecode(iterator, encoding, errors='strict', **kwargs):$/;" f +iterdir Lib/importlib/resources/_adapters.py /^ def iterdir(self):$/;" m class:CompatibilityFiles.ChildPath +iterdir Lib/importlib/resources/_adapters.py /^ def iterdir(self):$/;" m class:CompatibilityFiles.OrphanPath +iterdir Lib/importlib/resources/_adapters.py /^ def iterdir(self):$/;" m class:CompatibilityFiles.SpecPath +iterdir Lib/importlib/resources/abc.py /^ def iterdir(self) -> Iterator["Traversable"]:$/;" m class:Traversable +iterdir Lib/importlib/resources/readers.py /^ def iterdir(self):$/;" m class:MultiplexedPath +iterdir Lib/importlib/resources/simple.py /^ def iterdir(self):$/;" m class:ResourceContainer +iterdir Lib/pathlib.py /^ def iterdir(self):$/;" m class:Path +iterdir Lib/zipfile/_path/__init__.py /^ def iterdir(self):$/;" m class:Path +iterencode Lib/codecs.py /^def iterencode(iterator, encoding, errors='strict', **kwargs):$/;" f +iterencode Lib/json/encoder.py /^ def iterencode(self, o, _one_shot=False):$/;" m class:JSONEncoder +iterfind Lib/xml/etree/ElementPath.py /^def iterfind(elem, path, namespaces=None):$/;" f +iterfind Lib/xml/etree/ElementTree.py /^ def iterfind(self, path, namespaces=None):$/;" m class:Element +iterfind Lib/xml/etree/ElementTree.py /^ def iterfind(self, path, namespaces=None):$/;" m class:ElementTree +iterfunc Lib/test/seq_tests.py /^def iterfunc(seqn):$/;" f +iteritems Lib/mailbox.py /^ def iteritems(self):$/;" m class:Mailbox +iteritems Lib/test/test_configparser.py /^ def iteritems(self):$/;" m class:SortedDict +iteritems Tools/gdb/libpython.py /^ def iteritems(self):$/;" m class:PyDictObjectPtr +iteritems Tools/gdb/libpython.py /^ def iteritems(self):$/;" m class:PyKeysValuesPair +iterkeys Lib/dbm/dumb.py /^ def iterkeys(self):$/;" m class:_Database +iterkeys Lib/mailbox.py /^ def iterkeys(self):$/;" m class:MH +iterkeys Lib/mailbox.py /^ def iterkeys(self):$/;" m class:Mailbox +iterkeys Lib/mailbox.py /^ def iterkeys(self):$/;" m class:Maildir +iterkeys Lib/mailbox.py /^ def iterkeys(self):$/;" m class:_singlefileMailbox +iterkeys Lib/test/test_configparser.py /^ def iterkeys(self):$/;" m class:SortedDict +iterkeys Lib/test/test_shelve.py /^ def iterkeys(self):$/;" m class:byteskeydict +iterlines Lib/test/test_nntplib.py /^ def iterlines(b):$/;" f function:NNTPv1v2TestsMixin.check_post_ihave +itermonthdates Lib/calendar.py /^ def itermonthdates(self, year, month):$/;" m class:Calendar +itermonthdays Lib/calendar.py /^ def itermonthdays(self, year, month):$/;" m class:Calendar +itermonthdays2 Lib/calendar.py /^ def itermonthdays2(self, year, month):$/;" m class:Calendar +itermonthdays3 Lib/calendar.py /^ def itermonthdays3(self, year, month):$/;" m class:Calendar +itermonthdays4 Lib/calendar.py /^ def itermonthdays4(self, year, month):$/;" m class:Calendar +itermulti Lib/test/seq_tests.py /^def itermulti(seqn):$/;" f +iternextfunc Include/object.h /^typedef PyObject *(*iternextfunc) (PyObject *);$/;" t +iterparse Lib/xml/etree/ElementTree.py /^def iterparse(source, events=None, parser=None):$/;" f +iters Python/bltinmodule.c /^ PyObject *iters;$/;" m struct:__anon683 file: +itertext Lib/xml/etree/ElementTree.py /^ def itertext(self):$/;" m class:Element +itertools Lib/test/test_zipfile/_path/test_path.py /^ class itertools:$/;" c class:jaraco +itertools__grouper Modules/clinic/itertoolsmodule.c.h /^itertools__grouper(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools__grouper_impl Modules/itertoolsmodule.c /^itertools__grouper_impl(PyTypeObject *type, PyObject *parent,$/;" f file: +itertools__tee Modules/clinic/itertoolsmodule.c.h /^itertools__tee(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools__tee_impl Modules/itertoolsmodule.c /^itertools__tee_impl(PyTypeObject *type, PyObject *iterable)$/;" f file: +itertools_accumulate Modules/clinic/itertoolsmodule.c.h /^itertools_accumulate(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_accumulate_impl Modules/itertoolsmodule.c /^itertools_accumulate_impl(PyTypeObject *type, PyObject *iterable,$/;" f file: +itertools_chain_from_iterable Modules/itertoolsmodule.c /^itertools_chain_from_iterable(PyTypeObject *type, PyObject *arg)$/;" f file: +itertools_combinations Modules/clinic/itertoolsmodule.c.h /^itertools_combinations(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_combinations_impl Modules/itertoolsmodule.c /^itertools_combinations_impl(PyTypeObject *type, PyObject *iterable,$/;" f file: +itertools_combinations_with_replacement Modules/clinic/itertoolsmodule.c.h /^itertools_combinations_with_replacement(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_combinations_with_replacement_impl Modules/itertoolsmodule.c /^itertools_combinations_with_replacement_impl(PyTypeObject *type,$/;" f file: +itertools_compress Modules/clinic/itertoolsmodule.c.h /^itertools_compress(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_compress_impl Modules/itertoolsmodule.c /^itertools_compress_impl(PyTypeObject *type, PyObject *seq1, PyObject *seq2)$/;" f file: +itertools_count Modules/clinic/itertoolsmodule.c.h /^itertools_count(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_count_impl Modules/itertoolsmodule.c /^itertools_count_impl(PyTypeObject *type, PyObject *long_cnt,$/;" f file: +itertools_cycle Modules/clinic/itertoolsmodule.c.h /^itertools_cycle(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_cycle_impl Modules/itertoolsmodule.c /^itertools_cycle_impl(PyTypeObject *type, PyObject *iterable)$/;" f file: +itertools_dropwhile Modules/clinic/itertoolsmodule.c.h /^itertools_dropwhile(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_dropwhile_impl Modules/itertoolsmodule.c /^itertools_dropwhile_impl(PyTypeObject *type, PyObject *func, PyObject *seq)$/;" f file: +itertools_filterfalse Modules/clinic/itertoolsmodule.c.h /^itertools_filterfalse(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_filterfalse_impl Modules/itertoolsmodule.c /^itertools_filterfalse_impl(PyTypeObject *type, PyObject *func, PyObject *seq)$/;" f file: +itertools_groupby Modules/clinic/itertoolsmodule.c.h /^itertools_groupby(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_groupby_impl Modules/itertoolsmodule.c /^itertools_groupby_impl(PyTypeObject *type, PyObject *it, PyObject *keyfunc)$/;" f file: +itertools_permutations Modules/clinic/itertoolsmodule.c.h /^itertools_permutations(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_permutations_impl Modules/itertoolsmodule.c /^itertools_permutations_impl(PyTypeObject *type, PyObject *iterable,$/;" f file: +itertools_starmap Modules/clinic/itertoolsmodule.c.h /^itertools_starmap(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_starmap_impl Modules/itertoolsmodule.c /^itertools_starmap_impl(PyTypeObject *type, PyObject *func, PyObject *seq)$/;" f file: +itertools_state Modules/itertoolsmodule.c /^} itertools_state;$/;" t typeref:struct:__anon400 file: +itertools_takewhile Modules/clinic/itertoolsmodule.c.h /^itertools_takewhile(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_takewhile_impl Modules/itertoolsmodule.c /^itertools_takewhile_impl(PyTypeObject *type, PyObject *func, PyObject *seq)$/;" f file: +itertools_tee Modules/clinic/itertoolsmodule.c.h /^itertools_tee(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +itertools_tee_impl Modules/itertoolsmodule.c /^itertools_tee_impl(PyObject *module, PyObject *iterable, Py_ssize_t n)$/;" f file: +itertools_teedataobject Modules/clinic/itertoolsmodule.c.h /^itertools_teedataobject(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +itertools_teedataobject_impl Modules/itertoolsmodule.c /^itertools_teedataobject_impl(PyTypeObject *type, PyObject *it,$/;" f file: +itertoolsmodule Modules/itertoolsmodule.c /^static struct PyModuleDef itertoolsmodule = {$/;" v typeref:struct:PyModuleDef file: +itertoolsmodule Modules/itertoolsmodule.c /^static struct PyModuleDef itertoolsmodule;$/;" v typeref:struct:PyModuleDef file: +itertoolsmodule_clear Modules/itertoolsmodule.c /^itertoolsmodule_clear(PyObject *mod)$/;" f file: +itertoolsmodule_exec Modules/itertoolsmodule.c /^itertoolsmodule_exec(PyObject *mod)$/;" f file: +itertoolsmodule_free Modules/itertoolsmodule.c /^itertoolsmodule_free(void *mod)$/;" f file: +itertoolsmodule_slots Modules/itertoolsmodule.c /^static struct PyModuleDef_Slot itertoolsmodule_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +itertoolsmodule_traverse Modules/itertoolsmodule.c /^itertoolsmodule_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +itervaluerefs Lib/weakref.py /^ def itervaluerefs(self):$/;" m class:WeakValueDictionary +itervalues Lib/mailbox.py /^ def itervalues(self):$/;" m class:Mailbox +itervalues Lib/test/test_configparser.py /^ def itervalues(self):$/;" m class:SortedDict +iterweekdays Lib/calendar.py /^ def iterweekdays(self):$/;" m class:Calendar +itimer_error Modules/signalmodule.c /^ PyObject *itimer_error;$/;" m struct:__anon300 file: +itimer_retval Modules/signalmodule.c /^itimer_retval(struct itimerval *iv)$/;" f file: +itn Lib/tarfile.py /^def itn(n, digits=8, format=DEFAULT_FORMAT):$/;" f +itruediv Lib/operator.py /^def itruediv(a, b):$/;" f +itruediv Lib/test/test_unittest/testmock/testmagicmethods.py /^ def itruediv(mock):$/;" f function:TestMockingMagicMethods.test_division +itself Modules/pyexpat.c /^ XML_Parser itself;$/;" m struct:__anon483 file: +ittuple Modules/itertoolsmodule.c /^ PyObject *ittuple; \/* tuple of iterators *\/$/;" m struct:__anon422 file: +ittuple Python/bltinmodule.c /^ PyObject *ittuple; \/* tuple of iterators *\/$/;" m struct:__anon684 file: +ixor Lib/operator.py /^def ixor(a, b):$/;" f +j Lib/test/test_functools.py /^ def j(arg):$/;" f function:TestSingleDispatch.test_mro_conflicts +j Lib/test/test_sys_setprofile.py /^ def j(p):$/;" f function:ProfileHookTestCase.test_distant_exception +j Lib/test/test_sys_setprofile.py /^ def j(p):$/;" f function:ProfileSimulatorTestCase.test_distant_exception +j_class Lib/test/ann_module.py /^j_class = new_class('J')$/;" v +jabs_op Lib/opcode.py /^def jabs_op(name, op):$/;" f +jaraco Lib/test/test_zipfile/_path/test_path.py /^class jaraco:$/;" c +java_ver Lib/platform.py /^def java_ver(release='', vendor='', vminfo=('', '', ''), osinfo=('', '', '')):$/;" f +jisx0201_k_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0201_k_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0201_k_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0201_k_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0201_r_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0201_r_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0201_r_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0201_r_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0208_decmap Modules/cjkcodecs/mappings_jp.h /^static const struct dbcs_index jisx0208_decmap[256] = {$/;" v typeref:struct:dbcs_index +jisx0208_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0208_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0208_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0208_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0208_init Modules/cjkcodecs/_codecs_iso2022.c /^jisx0208_init(const MultibyteCodec *codec)$/;" f file: +jisx0212_decmap Modules/cjkcodecs/mappings_jp.h /^static const struct dbcs_index jisx0212_decmap[256] = {$/;" v typeref:struct:dbcs_index +jisx0212_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0212_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0212_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0212_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0212_init Modules/cjkcodecs/_codecs_iso2022.c /^jisx0212_init(const MultibyteCodec *codec)$/;" f file: +jisx0213_1_bmp_decmap Modules/cjkcodecs/mappings_jp.h /^static const struct dbcs_index jisx0213_1_bmp_decmap[256] = {$/;" v typeref:struct:dbcs_index +jisx0213_1_emp_decmap Modules/cjkcodecs/mappings_jp.h /^static const struct dbcs_index jisx0213_1_emp_decmap[256] = {$/;" v typeref:struct:dbcs_index +jisx0213_2000_1_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2000_1_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0213_2000_1_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2000_1_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0213_2000_1_encoder_paironly Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2000_1_encoder_paironly(const MultibyteCodec *codec,$/;" f file: +jisx0213_2000_2_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2000_2_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0213_2000_2_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2000_2_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0213_2004_1_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2004_1_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0213_2004_1_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2004_1_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0213_2004_1_encoder_paironly Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2004_1_encoder_paironly(const MultibyteCodec *codec,$/;" f file: +jisx0213_2004_2_decoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2004_2_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +jisx0213_2004_2_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_2004_2_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0213_2_bmp_decmap Modules/cjkcodecs/mappings_jp.h /^static const struct dbcs_index jisx0213_2_bmp_decmap[256] = {$/;" v typeref:struct:dbcs_index +jisx0213_2_emp_decmap Modules/cjkcodecs/mappings_jp.h /^static const struct dbcs_index jisx0213_2_emp_decmap[256] = {$/;" v typeref:struct:dbcs_index +jisx0213_bmp_encmap Modules/cjkcodecs/mappings_jp.h /^static const struct unim_index jisx0213_bmp_encmap[256] = {$/;" v typeref:struct:unim_index +jisx0213_emp_encmap Modules/cjkcodecs/mappings_jp.h /^static const struct unim_index jisx0213_emp_encmap[256] = {$/;" v typeref:struct:unim_index +jisx0213_encoder Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +jisx0213_init Modules/cjkcodecs/_codecs_iso2022.c /^jisx0213_init(const MultibyteCodec *codec)$/;" f file: +jisx0213_pair_decmap Modules/cjkcodecs/mappings_jisx0213_pair.h /^static const struct widedbcs_index *jisx0213_pair_decmap;$/;" v typeref:struct:widedbcs_index +jisx0213_pair_decmap Modules/cjkcodecs/mappings_jisx0213_pair.h /^static const struct widedbcs_index jisx0213_pair_decmap[256] = {$/;" v typeref:struct:widedbcs_index +jisx0213_pair_encmap Modules/cjkcodecs/mappings_jisx0213_pair.h /^static const struct pair_encodemap *jisx0213_pair_encmap;$/;" v typeref:struct:pair_encodemap +jisx0213_pair_encmap Modules/cjkcodecs/mappings_jisx0213_pair.h /^static const struct pair_encodemap jisx0213_pair_encmap[JISX0213_ENCPAIRS] = {$/;" v typeref:struct:pair_encodemap +jisxcommon_encmap Modules/cjkcodecs/mappings_jp.h /^static const struct unim_index jisxcommon_encmap[256] = {$/;" v typeref:struct:unim_index +job_counter Lib/multiprocessing/pool.py /^job_counter = itertools.count()$/;" v +jobs Tools/ssl/multissltests.py /^ jobs = os.cpu_count()$/;" v class:AbstractBuilder +johabidx_choseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char johabidx_choseong[32] = {$/;" v file: +johabidx_jongseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char johabidx_jongseong[32] = {$/;" v file: +johabidx_jungseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char johabidx_jungseong[32] = {$/;" v file: +johabjamo_choseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char johabjamo_choseong[32] = {$/;" v file: +johabjamo_jongseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char johabjamo_jongseong[32] = {$/;" v file: +johabjamo_jungseong Modules/cjkcodecs/_codecs_kr.c /^static const unsigned char johabjamo_jungseong[32] = {$/;" v file: +join Lib/asyncio/queues.py /^ async def join(self):$/;" m class:Queue +join Lib/collections/__init__.py /^ def join(self, seq):$/;" m class:UserString +join Lib/multiprocessing/managers.py /^ def join(self, timeout=None):$/;" m class:BaseManager +join Lib/multiprocessing/pool.py /^ def join(self):$/;" m class:Pool +join Lib/multiprocessing/process.py /^ def join(self, timeout=None):$/;" m class:BaseProcess +join Lib/multiprocessing/process.py /^ def join(self, timeout=None):$/;" m class:_ParentProcess +join Lib/multiprocessing/queues.py /^ def join(self):$/;" m class:JoinableQueue +join Lib/ntpath.py /^def join(path, *paths):$/;" f +join Lib/posixpath.py /^def join(a, *p):$/;" f +join Lib/queue.py /^ def join(self):$/;" m class:Queue +join Lib/shlex.py /^def join(split_command):$/;" f +join Lib/socketserver.py /^ def join(self):$/;" m class:_NoThreads +join Lib/socketserver.py /^ def join(self):$/;" m class:_Threads +join Lib/test/_test_multiprocessing.py /^ def join(self):$/;" m class:TestPoolNotLeakOnFailure.test_release_unused_processes.FailingForkProcess +join Lib/test/test_pathlib.py /^join = lambda *x: os.path.join(BASE, *x)$/;" v +join Lib/threading.py /^ def join(self, timeout=None):$/;" m class:Thread +join Lib/threading.py /^ def join(self, timeout=None):$/;" m class:_DummyThread +join Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun join (hi lo)$/;" f +join PC/launcher2.c /^join(wchar_t *buffer, size_t bufferLength, const wchar_t *fragment)$/;" f +join_100_words_5 Tools/stringbench/stringbench.py /^def join_100_words_5(STR):$/;" f +join_100_words_single Tools/stringbench/stringbench.py /^def join_100_words_single(STR):$/;" f +join_alphabet_5 Tools/stringbench/stringbench.py /^def join_alphabet_5(STR):$/;" f +join_alphabet_list_five Tools/stringbench/stringbench.py /^def join_alphabet_list_five(STR):$/;" f +join_alphabet_list_single Tools/stringbench/stringbench.py /^def join_alphabet_list_single(STR):$/;" f +join_alphabet_single Tools/stringbench/stringbench.py /^def join_alphabet_single(STR):$/;" f +join_append Modules/_csv.c /^join_append(WriterObj *self, PyObject *field, int quoted)$/;" f file: +join_append_data Modules/_csv.c /^join_append_data(WriterObj *self, int field_kind, const void *field_data,$/;" f file: +join_append_lineterminator Modules/_csv.c /^join_append_lineterminator(WriterObj *self)$/;" f file: +join_check_rec_size Modules/_csv.c /^join_check_rec_size(WriterObj *self, Py_ssize_t rec_len)$/;" f file: +join_conditions Tools/peg_generator/pegen/c_generator.py /^ def join_conditions(self, keyword: str, node: Any) -> None:$/;" m class:CParserGenerator +join_empty_5 Tools/stringbench/stringbench.py /^def join_empty_5(STR):$/;" f +join_empty_single Tools/stringbench/stringbench.py /^def join_empty_single(STR):$/;" f +join_executor_internals Lib/concurrent/futures/process.py /^ def join_executor_internals(self):$/;" m class:_ExecutorManagerThread +join_header_words Lib/http/cookiejar.py /^def join_header_words(lists):$/;" f +join_path_filename Modules/posixmodule.c /^join_path_filename(const char *path_narrow, const char* filename, Py_ssize_t filename_len)$/;" f file: +join_path_filenameW Modules/posixmodule.c /^join_path_filenameW(const wchar_t *path_wide, const wchar_t *filename)$/;" f file: +join_process Lib/test/_test_multiprocessing.py /^def join_process(process):$/;" f +join_relfile Python/fileutils.c /^join_relfile(wchar_t *buffer, size_t bufsize,$/;" f file: +join_reset Modules/_csv.c /^join_reset(WriterObj *self)$/;" f file: +join_rows Tools/scripts/summarize_stats.py /^def join_rows(a_rows, b_rows):$/;" f +join_temporary_c_thread Modules/_testcapimodule.c /^join_temporary_c_thread(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +join_thread Lib/multiprocessing/queues.py /^ def join_thread(self):$/;" m class:Queue +join_thread Lib/test/support/threading_helper.py /^def join_thread(thread, timeout=None):$/;" f +joinpath Lib/importlib/metadata/__init__.py /^ def joinpath(self, child):$/;" m class:FastPath +joinpath Lib/importlib/metadata/_meta.py /^ def joinpath(self) -> _T:$/;" m class:SimplePath +joinpath Lib/importlib/resources/_adapters.py /^ def joinpath(self, other):$/;" m class:CompatibilityFiles.ChildPath +joinpath Lib/importlib/resources/_adapters.py /^ def joinpath(self, other):$/;" m class:CompatibilityFiles.OrphanPath +joinpath Lib/importlib/resources/_adapters.py /^ def joinpath(self, other):$/;" m class:CompatibilityFiles.SpecPath +joinpath Lib/importlib/resources/abc.py /^ def joinpath(self, *descendants: StrPath) -> "Traversable":$/;" m class:Traversable +joinpath Lib/importlib/resources/readers.py /^ def joinpath(self, *descendants):$/;" m class:MultiplexedPath +joinpath Lib/importlib/resources/simple.py /^ def joinpath(self, name):$/;" m class:ResourceHandle +joinpath Lib/pathlib.py /^ def joinpath(self, *pathsegments):$/;" m class:PurePath +joinpath Lib/test/test_getpath.py /^ def joinpath(self, *path):$/;" m class:MockNTNamespace +joinpath Lib/test/test_getpath.py /^ def joinpath(self, *path):$/;" m class:MockPosixNamespace +joinpath Lib/zipfile/_path/__init__.py /^ def joinpath(self, *other):$/;" m class:Path +joins Lib/test/test_glob.py /^ def joins(self, *tuples):$/;" m class:GlobTests +joinuser Lib/site.py /^ def joinuser(*args):$/;" f function:_getuserbase +joinuser Lib/sysconfig.py /^ def joinuser(*args):$/;" f function:_getuserbase +journeyman Lib/test/test_enum.py /^ journeyman = 'why did the chicken cross the road?'$/;" v class:TestSpecial.test_string_enum.SkillLevel +jrel_op Lib/opcode.py /^def jrel_op(name, op):$/;" f +js_output Lib/http/cookies.py /^ def js_output(self, attrs=None):$/;" m class:BaseCookie +js_output Lib/http/cookies.py /^ def js_output(self, attrs=None):$/;" m class:Morsel +json Lib/importlib/metadata/_adapters.py /^ def json(self):$/;" m class:Message +json Lib/importlib/metadata/_meta.py /^ def json(self) -> Dict[str, Union[str, List[str]]]:$/;" m class:PackageMetadata +json Lib/test/test_json/__init__.py /^ json = cjson$/;" v class:CTest +json Lib/test/test_json/__init__.py /^ json = pyjson$/;" v class:PyTest +json_loads_method Modules/_xxtestfuzz/fuzzer.c /^PyObject* json_loads_method = NULL;$/;" v +json_path Lib/test/test_tomllib/test_data.py /^ json_path = p.with_suffix(".json")$/;" v +jsonmodule Modules/_json.c /^static struct PyModuleDef jsonmodule = {$/;" v typeref:struct:PyModuleDef file: +julian Modules/_zoneinfo.c /^ uint8_t julian;$/;" m struct:__anon640 file: +jump Lib/turtledemo/clock.py /^def jump(distanz, winkel=0):$/;" f +jump Modules/_sre/sre_lib.h /^ int jump;$/;" m struct:__anon460 +jump Python/bytecodes.c /^static size_t jump;$/;" v file: +jump_target_label Python/compile.c /^typedef _PyCfgJumpTargetLabel jump_target_label;$/;" t file: +jump_target_label Python/flowgraph.c /^typedef _PyCfgJumpTargetLabel jump_target_label;$/;" t file: +jump_test Lib/test/test_sys_settrace.py /^ def jump_test(jumpFrom, jumpTo, expected, error=None, event='line', warning=None):$/;" m class:JumpTestCase +jump_thread Python/flowgraph.c /^jump_thread(cfg_instr *inst, cfg_instr *target, int opcode)$/;" f file: +jump_to_fail_pop Python/compile.c /^jump_to_fail_pop(struct compiler *c, location loc,$/;" f file: +jumped Lib/test/test_pprint.py /^ jumped=4,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +jumpto Lib/turtledemo/chaos.py /^def jumpto(x, y):$/;" f +jumptoline Lib/idlelib/codecontext.py /^ def jumptoline(self, event=None):$/;" m class:CodeContext +jumpy Lib/test/test_dis.py /^def jumpy():$/;" f +junction Lib/test/test_os.py /^ junction = 'junctiontest'$/;" v class:Win32JunctionTests +junction_target Lib/test/test_os.py /^ junction_target = os.path.dirname(os.path.abspath(__file__))$/;" v class:Win32JunctionTests +junit_xml_list Lib/test/support/__init__.py /^junit_xml_list = None # list of testsuite XML elements$/;" v +just_call Lib/test/test_monitoring.py /^def just_call():$/;" f +just_pass Lib/test/test_monitoring.py /^def just_pass():$/;" f +just_raise Lib/test/test_monitoring.py /^def just_raise():$/;" f +k Include/internal/pycore_dtoa.h /^ int k, maxwds, sign, wds;$/;" m struct:Bigint +k Lib/locale.py /^ k = k.replace('_', '')$/;" v +k Lib/test/test_sort.py /^ def k(x):$/;" f function:TestDecorateSortUndecorate.test_key_with_mutation +k Modules/expat/siphash.h /^ uint64_t k[2];$/;" m struct:sipkey +k0 Include/pyhash.h /^ uint64_t k0;$/;" m struct:__anon256::__anon258 +k1 Include/pyhash.h /^ uint64_t k1;$/;" m struct:__anon256::__anon258 +k_lopsided_mul Objects/longobject.c /^k_lopsided_mul(PyLongObject *a, PyLongObject *b)$/;" f file: +k_mul Objects/longobject.c /^k_mul(PyLongObject *a, PyLongObject *b)$/;" f file: +keccak_piln Modules/_hacl/Hacl_Hash_SHA3.c /^keccak_piln[24U] =$/;" v file: +keccak_rndc Modules/_hacl/Hacl_Hash_SHA3.c /^keccak_rndc[24U] =$/;" v file: +keccak_rotc Modules/_hacl/Hacl_Hash_SHA3.c /^keccak_rotc[24U] =$/;" v file: +keep Modules/_ctypes/_ctypes.c /^ PyObject *keep; \/\/ If set, a reference to the original CDataObject.$/;" m struct:__anon498 file: +keep Modules/_ctypes/callproc.c /^ PyObject *keep;$/;" m struct:argument file: +keepProcessing Modules/expat/xmlparse.c /^ XML_Bool keepProcessing;$/;" m struct:__anon617 file: +keep_line_order Lib/lib2to3/fixer_base.py /^ keep_line_order = False # For the bottom matcher: match with the$/;" v class:BaseFix +keep_line_order Lib/lib2to3/fixes/fix_exitfunc.py /^ keep_line_order = True$/;" v class:FixExitfunc +keep_line_order Lib/lib2to3/fixes/fix_imports.py /^ keep_line_order = True$/;" v class:FixImports +keep_top_bit Modules/_heapqmodule.c /^keep_top_bit(Py_ssize_t n)$/;" f file: +keepalive Lib/test/crashers/mutation_inside_cyclegc.py /^keepalive = []$/;" v +kernel Modules/_decimal/libmpdec/numbertheory.h /^ mpd_uint_t kernel;$/;" m struct:fnt_params +kernel32 Lib/test/support/os_helper.py /^ kernel32 = ctypes.WinDLL('kernel32', use_last_error=True)$/;" v +kernel32 PC/validate_ucrtbase.py /^kernel32 = WinDLL('kernel32')$/;" v +ketchup Lib/test/pickletester.py /^ def ketchup():$/;" m class:AbstractPickleTests.test_py_methods.PyMethodsTest.Nested +key Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_key_delete(pthread_key_t key);$/;" v +key Include/cpython/pthread_stubs.h /^PyAPI_FUNC(void *) pthread_getspecific(pthread_key_t key);$/;" v +key Include/cpython/setobject.h /^ PyObject *key;$/;" m struct:__anon223 +key Include/internal/pycore_ast.h /^ expr_ty key;$/;" m struct:_expr::__anon77::__anon88 +key Include/internal/pycore_ast_state.h /^ PyObject *key;$/;" m struct:ast_state +key Include/internal/pycore_hashtable.h /^ void *key;$/;" m struct:__anon130 +key Include/pythread.h /^PyAPI_FUNC(int) PyThread_tss_create(Py_tss_t *key);$/;" v +key Include/pythread.h /^PyAPI_FUNC(int) PyThread_tss_is_created(Py_tss_t *key);$/;" v +key Include/pythread.h /^PyAPI_FUNC(void *) PyThread_tss_get(Py_tss_t *key);$/;" v +key Include/pythread.h /^PyAPI_FUNC(void) PyThread_tss_delete(Py_tss_t *key);$/;" v +key Include/pythread.h /^PyAPI_FUNC(void) PyThread_tss_free(Py_tss_t *key);$/;" v +key Lib/http/cookies.py /^ def key(self):$/;" m class:Morsel +key Lib/test/test_ordered_dict.py /^ key = Key()$/;" v class:OrderedDictTests.test_issue24347.Key +key Lib/zoneinfo/_zoneinfo.py /^ def key(self):$/;" m class:ZoneInfo +key Modules/_ctypes/_ctypes.c /^ PyObject *key;$/;" m struct:__anon497 file: +key Modules/_functoolsmodule.c /^ PyObject *key, *result;$/;" m struct:lru_list_elem file: +key Modules/_threadmodule.c /^ PyObject *key;$/;" m struct:__anon445 file: +key Modules/_zoneinfo.c /^ PyObject *key;$/;" m struct:StrongCacheNode file: +key Modules/_zoneinfo.c /^ PyObject *key;$/;" m struct:__anon638 file: +key Modules/getpath.py /^ key = winreg.OpenKeyEx(hk, WINREG_KEY)$/;" v +key Modules/rotatingtree.h /^ void *key;$/;" m struct:rotating_node_s +key Objects/odictobject.c /^ PyObject *key;$/;" m struct:_odictnode file: +key PC/launcher.c /^ wchar_t key[MAX_PATH];$/;" m struct:__anon288 file: +key Parser/pegen.h /^ expr_ty key;$/;" m struct:__anon659 +key Parser/pegen.h /^ expr_ty key;$/;" m struct:__anon660 +key Tools/c-analyzer/c_parser/info.py /^ def key(self):$/;" m class:HighlevelParsedItem +key_compare Objects/listobject.c /^ int (*key_compare)(PyObject *, PyObject *, MergeState *);$/;" m struct:s_MergeState file: +key_destroy_func Include/internal/pycore_hashtable.h /^ _Py_hashtable_destroy_func key_destroy_func;$/;" m struct:_Py_hashtable_t +key_hash Include/internal/pycore_hashtable.h /^ Py_uhash_t key_hash;$/;" m struct:__anon130 +key_length Modules/_blake2/impl/blake2.h /^ uint8_t key_length; \/\/ 2$/;" m struct:__blake2b_param +key_length Modules/_blake2/impl/blake2.h /^ uint8_t key_length; \/\/ 2$/;" m struct:__blake2s_param +key_richcompare Objects/listobject.c /^ PyObject *(*key_richcompare)(PyObject *, PyObject *, int);$/;" m struct:s_MergeState file: +key_separator Lib/json/encoder.py /^ key_separator = ': '$/;" v class:JSONEncoder +key_separator Modules/_json.c /^ PyObject *key_separator;$/;" m struct:_PyEncoderObject file: +key_t Lib/test/test_lib2to3/data/infinite_recursion.py /^key_t = __int32_t$/;" v +key_type Lib/test/test_enum.py /^ key_type = 'An$(1,2)', 0$/;" v class:TestSpecial.test_missing_value_error.Combined +key_value_pattern_rule Parser/parser.c /^key_value_pattern_rule(Parser *p)$/;" f file: +key_value_pattern_type Parser/parser.c 173;" d file: +key_value_rule Lib/tomllib/_parser.py /^def key_value_rule($/;" f +keyeq Modules/expat/xmlparse.c /^keyeq(KEY s1, KEY s2) {$/;" f file: +keyerror_title Lib/idlelib/config_key.py /^ keyerror_title = 'Key Sequence Error'$/;" v class:GetKeysFrame +keyfunc Lib/test/test_itertools.py /^ def keyfunc(obj):$/;" f function:TestBasicOps.test_groupby +keyfunc Modules/itertoolsmodule.c /^ PyObject *keyfunc;$/;" m struct:__anon403 file: +keylen Modules/expat/xmlparse.c /^keylen(KEY s) {$/;" f file: +keylog_bio Modules/_ssl.c /^ BIO *keylog_bio;$/;" m struct:__anon579 file: +keylog_filename Modules/_ssl.c /^ PyObject *keylog_filename;$/;" m struct:__anon579 file: +keylog_lines Lib/test/test_ssl.py /^ def keylog_lines(self, fname=os_helper.TESTFN):$/;" m class:TestSSLDebug +keylog_lock Modules/_ssl.h /^ PyThread_type_lock keylog_lock;$/;" m struct:__anon485 +keynames Lib/idlelib/editor.py /^keynames = {$/;" v +keyobject Modules/_functoolsmodule.c /^} keyobject;$/;" t typeref:struct:__anon394 file: +keyobject_call Modules/_functoolsmodule.c /^keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds)$/;" f file: +keyobject_clear Modules/_functoolsmodule.c /^keyobject_clear(keyobject *ko)$/;" f file: +keyobject_dealloc Modules/_functoolsmodule.c /^keyobject_dealloc(keyobject *ko)$/;" f file: +keyobject_members Modules/_functoolsmodule.c /^static PyMemberDef keyobject_members[] = {$/;" v file: +keyobject_richcompare Modules/_functoolsmodule.c /^keyobject_richcompare(PyObject *ko, PyObject *other, int op)$/;" f file: +keyobject_traverse Modules/_functoolsmodule.c /^keyobject_traverse(keyobject *ko, visitproc visit, void *arg)$/;" f file: +keyobject_type Modules/_functoolsmodule.c /^ PyTypeObject *keyobject_type;$/;" m struct:_functools_state file: +keyobject_type_slots Modules/_functoolsmodule.c /^static PyType_Slot keyobject_type_slots[] = {$/;" v file: +keyobject_type_spec Modules/_functoolsmodule.c /^static PyType_Spec keyobject_type_spec = {$/;" v file: +keypress_event Lib/idlelib/autocomplete_w.py /^ def keypress_event(self, event):$/;" m class:AutoCompleteWindow +keyrefs Lib/weakref.py /^ def keyrefs(self):$/;" m class:WeakKeyDictionary +keyrelease_event Lib/idlelib/autocomplete_w.py /^ def keyrelease_event(self, event):$/;" m class:AutoCompleteWindow +keys Include/internal/pycore_ast.h /^ asdl_expr_seq *keys;$/;" m struct:_expr::__anon77::__anon84 +keys Include/internal/pycore_ast.h /^ asdl_expr_seq *keys;$/;" m struct:_pattern::__anon107::__anon111 +keys Include/internal/pycore_ast_state.h /^ PyObject *keys;$/;" m struct:ast_state +keys Lib/_collections_abc.py /^ def keys(self):$/;" m class:Mapping +keys Lib/cgi.py /^ def keys(self):$/;" m class:FieldStorage +keys Lib/collections/__init__.py /^ def keys(self):$/;" m class:OrderedDict +keys Lib/dbm/dumb.py /^ def keys(self):$/;" m class:_Database +keys Lib/email/message.py /^ def keys(self):$/;" m class:Message +keys Lib/idlelib/debugger_r.py /^ def keys(self):$/;" m class:DictProxy +keys Lib/idlelib/debugobj.py /^ def keys(self):$/;" m class:DictTreeItem +keys Lib/idlelib/debugobj.py /^ def keys(self):$/;" m class:SequenceTreeItem +keys Lib/mailbox.py /^ def keys(self):$/;" m class:Mailbox +keys Lib/test/mapping_tests.py /^ def keys(self):$/;" m class:BasicTestMappingProtocol.test_update.FailingUserDict +keys Lib/test/mapping_tests.py /^ def keys(self):$/;" m class:BasicTestMappingProtocol.test_update.SimpleUserDict +keys Lib/test/mapping_tests.py /^ def keys(self):$/;" m class:TestMappingProtocol.test_update.SimpleUserDict +keys Lib/test/support/os_helper.py /^ def keys(self):$/;" m class:EnvironmentVarGuard +keys Lib/test/test_builtin.py /^ def keys(self):$/;" m class:BuiltinTest.test_general_eval.C +keys Lib/test/test_builtin.py /^ def keys(self):$/;" m class:BuiltinTest.test_general_eval.D +keys Lib/test/test_builtin.py /^ def keys(self):$/;" m class:BuiltinTest.test_general_eval.M +keys Lib/test/test_capi/test_abstract.py /^ def keys(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems.Mapping1 +keys Lib/test/test_capi/test_abstract.py /^ def keys(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems.Mapping2 +keys Lib/test/test_capi/test_abstract.py /^ def keys(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems_bad_arg.BadMapping +keys Lib/test/test_capi/test_dict.py /^ def keys(self):$/;" m class:CAPITest.test_mapping_keys_valuesitems.BadMapping +keys Lib/test/test_compile.py /^ def keys(self):$/;" m class:TestSpecifics.test_exec_with_general_mapping_for_locals.M +keys Lib/test/test_configparser.py /^ def keys(self):$/;" m class:SortedDict +keys Lib/test/test_dict.py /^ def keys(self):$/;" m class:DictTest.test_dict_copy_order.CustomReversedDict +keys Lib/test/test_dict.py /^ def keys(self):$/;" m class:DictTest.test_update.FailingUserDict +keys Lib/test/test_dict.py /^ def keys(self):$/;" m class:DictTest.test_update.SimpleUserDict +keys Lib/test/test_json/test_dump.py /^ def keys(self):$/;" m class:TestDump.test_encode_evil_dict.D +keys Lib/test/test_marshal.py /^ keys = (123, 1.2345, 'abc', (123, 'abc'), frozenset({123, 'abc'}))$/;" v class:InstancingTestCase +keys Lib/test/test_ordered_dict.py /^ def keys(self):$/;" m class:OrderedDictTests.test_init_calls.Spam +keys Lib/test/test_shelve.py /^ def keys(self):$/;" m class:byteskeydict +keys Lib/test/test_subprocess.py /^ keys = None$/;" v class:Win32ProcessTestCase.test_issue31471.BadEnv +keys Lib/test/test_types.py /^ def keys(self):$/;" m class:MappingProxyTests.test_customdict.customdict +keys Lib/tkinter/__init__.py /^ def keys(self):$/;" m class:Misc +keys Lib/weakref.py /^ def keys(self):$/;" m class:WeakKeyDictionary +keys Lib/weakref.py /^ def keys(self):$/;" m class:WeakValueDictionary +keys Lib/wsgiref/headers.py /^ def keys(self):$/;" m class:Headers +keys Lib/xml/dom/minidom.py /^ def keys(self):$/;" m class:NamedNodeMap +keys Lib/xml/etree/ElementTree.py /^ def keys(self):$/;" m class:Element +keys Lib/xml/sax/xmlreader.py /^ def keys(self):$/;" m class:AttributesImpl +keys Objects/listobject.c /^ PyObject **keys;$/;" m struct:__anon748 file: +keys Python/bytecodes.c /^static PyObject *list, *tuple, *dict, *owner, *set, *str, *tup, *map, *keys;$/;" v file: +keysNS Lib/xml/dom/minidom.py /^ def keysNS(self):$/;" m class:NamedNodeMap +keys_free_list Include/internal/pycore_dict_state.h /^ PyDictKeysObject *keys_free_list[PyDict_MAXFREELIST];$/;" m struct:_Py_dict_state +keys_helper Lib/test/test_dbm.py /^ def keys_helper(self, f):$/;" m class:AnyDBMTestCase +keys_helper Lib/test/test_dbm_dumb.py /^ def keys_helper(self, f):$/;" m class:DumbDBMTestCase +keys_numfree Include/internal/pycore_dict_state.h /^ int keys_numfree;$/;" m struct:_Py_dict_state +keys_ok Lib/idlelib/config_key.py /^ def keys_ok(self, keys):$/;" m class:GetKeysFrame +keys_version Include/internal/pycore_code.h /^ uint16_t keys_version[2];$/;" m struct:__anon25 +keyspage Lib/idlelib/idle_test/test_configdialog.py /^keyspage = changes['keys']$/;" v +keyword_attributes Python/Python-ast.c /^static const char * const keyword_attributes[] = {$/;" v file: +keyword_fields Python/Python-ast.c /^static const char * const keyword_fields[]={$/;" v file: +keyword_helper Tools/peg_generator/pegen/c_generator.py /^ def keyword_helper(self, keyword: str) -> FunctionCall:$/;" m class:CCallMakerVisitor +keyword_only_arg Lib/test/inspect_fodder2.py /^def keyword_only_arg(*, arg):$/;" f +keyword_only_parameter Modules/clinic/_testclinic.c.h /^keyword_only_parameter(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +keyword_only_parameter_impl Modules/_testclinic.c /^keyword_only_parameter_impl(PyObject *module, PyObject *a)$/;" f file: +keyword_pattern_rule Parser/parser.c /^keyword_pattern_rule(Parser *p)$/;" f file: +keyword_pattern_type Parser/parser.c 178;" d file: +keyword_patterns_rule Parser/parser.c /^keyword_patterns_rule(Parser *p)$/;" f file: +keyword_patterns_type Parser/parser.c 177;" d file: +keyword_ty Include/internal/pycore_ast.h /^typedef struct _keyword *keyword_ty;$/;" t typeref:struct:_keyword +keyword_type Include/internal/pycore_ast_state.h /^ PyObject *keyword_type;$/;" m struct:ast_state +keyword_type Tools/peg_generator/pegen/parser_generator.py /^ def keyword_type(self) -> int:$/;" m class:ParserGenerator +keyworded Lib/test/inspect_fodder2.py /^def keyworded(*arg1, arg2=1):$/;" f +keywordonly_and_kwarg_sum Lib/test/test_keywordonlyarg.py /^def keywordonly_and_kwarg_sum(*, k1, k2, **kwarg):$/;" f +keywordonly_nodefaults_sum Lib/test/test_keywordonlyarg.py /^def keywordonly_nodefaults_sum(*, k1, k2):$/;" f +keywordonly_sum Lib/test/test_keywordonlyarg.py /^def keywordonly_sum(*, k1=0, k2):$/;" f +keywords Include/cpython/modsupport.h /^ const char * const *keywords;$/;" m struct:_PyArg_Parser +keywords Include/internal/pycore_ast.h /^ asdl_keyword_seq *keywords;$/;" m struct:_expr::__anon77::__anon94 +keywords Include/internal/pycore_ast.h /^ asdl_keyword_seq *keywords;$/;" m struct:_stmt::__anon51::__anon54 +keywords Include/internal/pycore_ast_state.h /^ PyObject *keywords;$/;" m struct:ast_state +keywords Lib/pydoc.py /^ keywords = {$/;" v class:Helper +keywords Lib/test/test_functools.py /^ keywords = functools.partialmethod(capture, a=2)$/;" v class:TestPartialMethod.A +keywords Modules/clinic/_testclinic.c.h /^keywords(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +keywords Parser/pegen.h /^ KeywordToken **keywords;$/;" m struct:__anon657 +keywords Tools/cases_generator/lexer.py /^keywords = { name.lower() : name for name in kwds }$/;" v +keywords Tools/i18n/pygettext.py /^ keywords = []$/;" v class:main.Options +keywords_impl Modules/_testclinic.c /^keywords_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +keywords_kwonly Modules/clinic/_testclinic.c.h /^keywords_kwonly(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +keywords_kwonly_impl Modules/_testclinic.c /^keywords_kwonly_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +keywords_kwonly_opt Modules/clinic/_testclinic.c.h /^keywords_kwonly_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +keywords_kwonly_opt_impl Modules/_testclinic.c /^keywords_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +keywords_opt Modules/clinic/_testclinic.c.h /^keywords_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +keywords_opt_impl Modules/_testclinic.c /^keywords_opt_impl(PyObject *module, PyObject *a, PyObject *b, PyObject *c)$/;" f file: +keywords_opt_kwonly Modules/clinic/_testclinic.c.h /^keywords_opt_kwonly(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +keywords_opt_kwonly_impl Modules/_testclinic.c /^keywords_opt_kwonly_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +kill Lib/asyncio/base_subprocess.py /^ def kill(self):$/;" m class:BaseSubprocessTransport +kill Lib/asyncio/subprocess.py /^ def kill(self):$/;" m class:Process +kill Lib/asyncio/transports.py /^ def kill(self):$/;" m class:SubprocessTransport +kill Lib/multiprocessing/popen_fork.py /^ def kill(self):$/;" m class:Popen +kill Lib/multiprocessing/popen_spawn_win32.py /^ kill = terminate$/;" v class:Popen +kill Lib/multiprocessing/process.py /^ def kill(self):$/;" m class:BaseProcess +kill Lib/subprocess.py /^ def kill(self):$/;" f function:Popen._on_error_fd_closer +kill Lib/test/test_asyncio/test_subprocess.py /^ def kill():$/;" f function:SubprocessMixin.test_close_kill_running.kill_running +kill PCbuild/build.bat /^if "%~1"=="-k" (set kill=true) & shift & goto CheckOpts$/;" v +kill PCbuild/build.bat /^set kill=$/;" v +kill_me Lib/test/test_asyncio/test_tasks.py /^ async def kill_me(loop):$/;" f function:BaseTaskTests.test_log_destroyed_pending_task +kill_on_error Lib/test/_test_eintr.py /^def kill_on_error(proc):$/;" f +kill_p1 Lib/test/test_subprocess.py /^ def kill_p1():$/;" f function:POSIXProcessTestCase.test_pipe_cloexec_real_tools +kill_p2 Lib/test/test_subprocess.py /^ def kill_p2():$/;" f function:POSIXProcessTestCase.test_pipe_cloexec_real_tools +kill_proc_timer_thread Lib/test/test_subprocess.py /^ def kill_proc_timer_thread():$/;" f function:ProcessTestCase.test_threadsafe_wait +kill_process Lib/test/test_os.py /^ def kill_process(pid):$/;" f function:PidTests.test_waitstatus_to_exitcode_kill +kill_python Lib/test/support/script_helper.py /^def kill_python(p):$/;" f +kill_running Lib/test/test_asyncio/test_subprocess.py /^ async def kill_running():$/;" f function:SubprocessMixin.test_close_dont_kill_finished +kill_running Lib/test/test_asyncio/test_subprocess.py /^ async def kill_running():$/;" f function:SubprocessMixin.test_close_kill_running +kill_subprocess Lib/idlelib/pyshell.py /^ def kill_subprocess(self):$/;" m class:ModifiedInterpreter +kind Include/cpython/unicodeobject.h /^ unsigned int kind:3;$/;" m struct:__anon231::__anon232 +kind Include/cpython/unicodeobject.h /^ int kind;$/;" m struct:__anon236 +kind Include/internal/pycore_ast.h /^ string kind;$/;" m struct:_expr::__anon77::__anon97 +kind Include/internal/pycore_ast.h /^ enum _excepthandler_kind kind;$/;" m struct:_excepthandler typeref:enum:_excepthandler::_excepthandler_kind +kind Include/internal/pycore_ast.h /^ enum _expr_kind kind;$/;" m struct:_expr typeref:enum:_expr::_expr_kind +kind Include/internal/pycore_ast.h /^ enum _mod_kind kind;$/;" m struct:_mod typeref:enum:_mod::_mod_kind +kind Include/internal/pycore_ast.h /^ enum _pattern_kind kind;$/;" m struct:_pattern typeref:enum:_pattern::_pattern_kind +kind Include/internal/pycore_ast.h /^ enum _stmt_kind kind;$/;" m struct:_stmt typeref:enum:_stmt::_stmt_kind +kind Include/internal/pycore_ast.h /^ enum _type_ignore_kind kind;$/;" m struct:_type_ignore typeref:enum:_type_ignore::_type_ignore_kind +kind Include/internal/pycore_ast.h /^ enum _type_param_kind kind;$/;" m struct:_type_param typeref:enum:_type_param::_type_param_kind +kind Include/internal/pycore_ast_state.h /^ PyObject *kind;$/;" m struct:ast_state +kind Lib/inspect.py /^ def kind(self):$/;" m class:Parameter +kind Modules/_multiprocessing/semaphore.c /^ int kind;$/;" m struct:__anon470 file: +kind Objects/frameobject.c /^typedef enum kind {$/;" g file: +kind Objects/odictobject.c /^ int kind;$/;" m struct:__anon736 file: +kind Parser/pegen.h /^typedef struct { operator_ty kind; } AugOperator;$/;" m struct:__anon664 +kind Parser/tokenizer.h /^ enum tokenizer_mode_kind_t kind;$/;" m struct:_tokenizer_mode typeref:enum:_tokenizer_mode::tokenizer_mode_kind_t +kind Python/pystate.c /^ int kind;$/;" m struct:_shared_str_data file: +kind Tools/c-analyzer/c_parser/info.py /^ kind = KIND.ENUM$/;" v class:Enum +kind Tools/c-analyzer/c_parser/info.py /^ kind = KIND.FUNCTION$/;" v class:Function +kind Tools/c-analyzer/c_parser/info.py /^ kind = KIND.STATEMENT$/;" v class:Statement +kind Tools/c-analyzer/c_parser/info.py /^ kind = KIND.STRUCT$/;" v class:Struct +kind Tools/c-analyzer/c_parser/info.py /^ kind = KIND.TYPEDEF$/;" v class:TypeDef +kind Tools/c-analyzer/c_parser/info.py /^ kind = KIND.UNION$/;" v class:Union +kind Tools/c-analyzer/c_parser/info.py /^ kind = KIND.VARIABLE$/;" v class:Variable +kind Tools/c-analyzer/c_parser/info.py /^ kind = None$/;" v class:HighlevelParsedItem +kind_maxchar_limit Objects/unicodeobject.c /^kind_maxchar_limit(int kind)$/;" f file: +kind_to_text Tools/scripts/summarize_stats.py /^def kind_to_text(kind, defines, opname):$/;" f +kite Lib/turtledemo/penrose.py /^def kite(l):$/;" f +klass Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ klass = c_zoneinfo.ZoneInfo$/;" v class:CZoneInfoCacheTest +kmask Python/dtoa.c 1136;" d file: +kmul_split Objects/longobject.c /^kmul_split(PyLongObject *n,$/;" f file: +knownTCPFlags Lib/test/test_socket.py /^ knownTCPFlags = {$/;" v class:TestMSWindowsTCPFlags +known_capsule Modules/_testcapimodule.c /^} known_capsule;$/;" t typeref:struct:__anon588 file: +known_err_token Parser/pegen.h /^ Token *known_err_token;$/;" m struct:__anon657 +known_hashes Lib/test/test_hash.py /^ known_hashes = {$/;" v class:StringlikeHashRandomizationTests +known_numerics Lib/test/test__locale.py /^known_numerics = {$/;" v +known_platforms Doc/tools/extensions/pyspecific.py /^ known_platforms = frozenset({$/;" v class:Availability +knownbits Lib/msilib/__init__.py /^ typemask | type_nullable | type_key$/;" v +knownfiles Lib/mimetypes.py /^knownfiles = [$/;" v +kqfd Modules/selectmodule.c /^ SOCKET kqfd; \/* kqueue control fd *\/$/;" m struct:__anon578 file: +kqueue_event_Check Modules/selectmodule.c 1750;" d file: +kqueue_event_Object Modules/selectmodule.c /^} kqueue_event_Object;$/;" t typeref:struct:__anon577 file: +kqueue_event_Type Modules/selectmodule.c /^ PyTypeObject *kqueue_event_Type;$/;" m struct:__anon572 file: +kqueue_event_Type_slots Modules/selectmodule.c /^static PyType_Slot kqueue_event_Type_slots[] = {$/;" v file: +kqueue_event_Type_spec Modules/selectmodule.c /^static PyType_Spec kqueue_event_Type_spec = {$/;" v file: +kqueue_event_init Modules/selectmodule.c /^kqueue_event_init(kqueue_event_Object *self, PyObject *args, PyObject *kwds)$/;" f file: +kqueue_event_members Modules/selectmodule.c /^static struct PyMemberDef kqueue_event_members[] = {$/;" v typeref:struct:PyMemberDef file: +kqueue_event_repr Modules/selectmodule.c /^kqueue_event_repr(kqueue_event_Object *s)$/;" f file: +kqueue_event_richcompare Modules/selectmodule.c /^kqueue_event_richcompare(kqueue_event_Object *s, kqueue_event_Object *o,$/;" f file: +kqueue_queue_Object Modules/selectmodule.c /^} kqueue_queue_Object;$/;" t typeref:struct:__anon578 file: +kqueue_queue_Type Modules/selectmodule.c /^ PyTypeObject *kqueue_queue_Type;$/;" m struct:__anon572 file: +kqueue_queue_Type_slots Modules/selectmodule.c /^static PyType_Slot kqueue_queue_Type_slots[] = {$/;" v file: +kqueue_queue_Type_spec Modules/selectmodule.c /^static PyType_Spec kqueue_queue_Type_spec = {$/;" v file: +kqueue_queue_dealloc Modules/selectmodule.c /^kqueue_queue_dealloc(kqueue_queue_Object *self)$/;" f file: +kqueue_queue_err_closed Modules/selectmodule.c /^kqueue_queue_err_closed(void)$/;" f file: +kqueue_queue_get_closed Modules/selectmodule.c /^kqueue_queue_get_closed(kqueue_queue_Object *self, void *Py_UNUSED(ignored))$/;" f file: +kqueue_queue_getsetlist Modules/selectmodule.c /^static PyGetSetDef kqueue_queue_getsetlist[] = {$/;" v file: +kqueue_queue_internal_close Modules/selectmodule.c /^kqueue_queue_internal_close(kqueue_queue_Object *self)$/;" f file: +kqueue_queue_methods Modules/selectmodule.c /^static PyMethodDef kqueue_queue_methods[] = {$/;" v file: +kshift Python/dtoa.c 1135;" d file: +ksx1001_decmap Modules/cjkcodecs/mappings_kr.h /^static const struct dbcs_index ksx1001_decmap[256] = {$/;" v typeref:struct:dbcs_index +ksx1001_decoder Modules/cjkcodecs/_codecs_iso2022.c /^ksx1001_decoder(const MultibyteCodec *codec, const unsigned char *data)$/;" f file: +ksx1001_encoder Modules/cjkcodecs/_codecs_iso2022.c /^ksx1001_encoder(const MultibyteCodec *codec, const Py_UCS4 *data,$/;" f file: +ksx1001_init Modules/cjkcodecs/_codecs_iso2022.c /^ksx1001_init(const MultibyteCodec *codec)$/;" f file: +kvpair_rule Parser/parser.c /^kvpair_rule(Parser *p)$/;" f file: +kvpair_type Parser/parser.c 246;" d file: +kw Modules/_functoolsmodule.c /^ PyObject *kw;$/;" m struct:__anon393 file: +kw Modules/_threadmodule.c /^ PyObject *kw;$/;" m struct:__anon445 file: +kw_defaults Include/internal/pycore_ast.h /^ asdl_expr_seq *kw_defaults;$/;" m struct:_arguments +kw_defaults Include/internal/pycore_ast_state.h /^ PyObject *kw_defaults;$/;" m struct:ast_state +kwarg Include/internal/pycore_ast.h /^ arg_ty kwarg;$/;" m struct:_arguments +kwarg Include/internal/pycore_ast_state.h /^ PyObject *kwarg;$/;" m struct:ast_state +kwarg Parser/pegen.h /^ arg_ty kwarg;$/;" m struct:__anon663 +kwarg_or_double_starred_rule Parser/parser.c /^kwarg_or_double_starred_rule(Parser *p)$/;" f file: +kwarg_or_double_starred_type Parser/parser.c 258;" d file: +kwarg_or_starred_rule Parser/parser.c /^kwarg_or_starred_rule(Parser *p)$/;" f file: +kwarg_or_starred_type Parser/parser.c 257;" d file: +kwargs Include/internal/pycore_atexit.h /^ PyObject *kwargs;$/;" m struct:__anon122 +kwargs Lib/inspect.py /^ def kwargs(self):$/;" m class:BoundArguments +kwargs Lib/test/test_imaplib.py /^ kwargs={'poll_interval': 0.01})$/;" v class:NewIMAPTestsMixin._setup.TestTCPServer +kwargs Lib/test/test_imaplib.py /^ kwargs={'poll_interval': 0.01})$/;" v class:ThreadedNetworkedTests.make_server.MyServer +kwargs Lib/test/test_socketserver.py /^ kwargs={'poll_interval':0.01})$/;" v class:SocketServerTest.test_shutdown.MyHandler +kwargs Lib/test/test_unittest/testmock/testpatch.py /^ kwargs = {arg: True}$/;" v class:PatchTest.test_new_callable_inherit_for_mocks.MockSub +kwargs Lib/test/test_unittest/testmock/testpatch.py /^ kwargs = None$/;" v class:PatchTest.test_new_callable_keyword_arguments.Bar +kwargs Lib/test/test_unittest/testmock/testpatch.py /^ kwargs = None$/;" v class:PatchTest.test_new_callable_spec.Bar +kwargs Lib/unittest/mock.py /^ def kwargs(self):$/;" m class:_Call +kwargs Modules/_threadmodule.c /^ PyObject *kwargs;$/;" m struct:bootstate file: +kwargs Tools/build/update_file.py /^ kwargs = vars(args)$/;" v +kwargs_rule Parser/parser.c /^kwargs_rule(Parser *p)$/;" f file: +kwargs_type Parser/parser.c 255;" d file: +kwd_attrs Include/internal/pycore_ast.h /^ asdl_identifier_seq *kwd_attrs;$/;" m struct:_pattern::__anon107::__anon112 +kwd_attrs Include/internal/pycore_ast_state.h /^ PyObject *kwd_attrs;$/;" m struct:ast_state +kwd_mark Modules/_functoolsmodule.c /^ PyObject *kwd_mark;$/;" m struct:_functools_state file: +kwd_mark Modules/_functoolsmodule.c /^ PyObject *kwd_mark;$/;" m struct:lru_cache_object file: +kwd_patterns Include/internal/pycore_ast.h /^ asdl_pattern_seq *kwd_patterns;$/;" m struct:_pattern::__anon107::__anon112 +kwd_patterns Include/internal/pycore_ast_state.h /^ PyObject *kwd_patterns;$/;" m struct:ast_state +kwds Include/internal/pycore_namespace.h /^PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);$/;" v +kwds Modules/_operator.c /^ PyObject *kwds;$/;" m struct:__anon476 file: +kwds Objects/typeobject.c /^ PyObject *kwds;$/;" m struct:__anon718 file: +kwds Tools/cases_generator/lexer.py /^kwds = ($/;" v +kwds_rule Parser/parser.c /^kwds_rule(Parser *p)$/;" f file: +kwds_type Parser/parser.c 122;" d file: +kwlist Lib/keyword.py /^kwlist = [$/;" v +kwonlyargcount Include/internal/pycore_code.h /^ int kwonlyargcount;$/;" m struct:_PyCodeConstructor +kwonlyargs Include/internal/pycore_ast.h /^ asdl_arg_seq *kwonlyargs;$/;" m struct:_arguments +kwonlyargs Include/internal/pycore_ast_state.h /^ PyObject *kwonlyargs;$/;" m struct:ast_state +kwonlyargs Parser/pegen.h /^ asdl_seq *kwonlyargs; \/\/ asdl_seq* of NameDefaultsPair's$/;" m struct:__anon663 +kwtuple Include/cpython/modsupport.h /^ PyObject *kwtuple; \/* tuple of keyword parameter names *\/$/;" m struct:_PyArg_Parser +l Lib/test/test_functools.py /^ l = []$/;" v class:TestSingleDispatch.test_cache_invalidation.TracingDict +l Lib/turtledemo/lindenmayer.py /^ def l():$/;" f function:main +l Modules/_ctypes/callproc.c /^ long l;$/;" m union:result file: +l Modules/_ctypes/ctypes.h /^ long l;$/;" m union:value +l Modules/_ctypes/ctypes.h /^ long l;$/;" m union:tagPyCArgObject::__anon496 +l Tools/unicode/mkstringprep.py /^ l = l.strip()$/;" v +l_divmod Objects/longobject.c /^l_divmod(PyLongObject *v, PyLongObject *w,$/;" f file: +l_get Modules/_ctypes/cfield.c /^l_get(void *ptr, Py_ssize_t size)$/;" f file: +l_get_sw Modules/_ctypes/cfield.c /^l_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +l_getitem Modules/arraymodule.c /^l_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +l_mod Objects/longobject.c /^l_mod(PyLongObject *v, PyLongObject *w, PyLongObject **pmod)$/;" f file: +l_set Modules/_ctypes/cfield.c /^l_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +l_set_sw Modules/_ctypes/cfield.c /^l_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +l_setitem Modules/arraymodule.c /^l_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +label Lib/cProfile.py /^def label(code):$/;" f +label Lib/test/test_typing.py /^ label = 'B'$/;" v class:ProtocolTests.test_protocols_isinstance_py36.BPoint +label Modules/posixmodule.c /^ const char * const label;$/;" m struct:have_function file: +label_exception_targets Python/flowgraph.c /^label_exception_targets(basicblock *entryblock) {$/;" f file: +label_text Doc/tools/extensions/pyspecific.py /^ label_text = sphinx_gettext('CPython implementation detail:')$/;" v class:ImplementationDetail +lambda_kwds_rule Parser/parser.c /^lambda_kwds_rule(Parser *p)$/;" f file: +lambda_kwds_type Parser/parser.c 228;" d file: +lambda_param_maybe_default_rule Parser/parser.c /^lambda_param_maybe_default_rule(Parser *p)$/;" f file: +lambda_param_maybe_default_type Parser/parser.c 231;" d file: +lambda_param_no_default_rule Parser/parser.c /^lambda_param_no_default_rule(Parser *p)$/;" f file: +lambda_param_no_default_type Parser/parser.c 229;" d file: +lambda_param_rule Parser/parser.c /^lambda_param_rule(Parser *p)$/;" f file: +lambda_param_type Parser/parser.c 232;" d file: +lambda_param_with_default_rule Parser/parser.c /^lambda_param_with_default_rule(Parser *p)$/;" f file: +lambda_param_with_default_type Parser/parser.c 230;" d file: +lambda_parameters_rule Parser/parser.c /^lambda_parameters_rule(Parser *p)$/;" f file: +lambda_parameters_type Parser/parser.c 224;" d file: +lambda_params_rule Parser/parser.c /^lambda_params_rule(Parser *p)$/;" f file: +lambda_params_type Parser/parser.c 223;" d file: +lambda_slash_no_default_rule Parser/parser.c /^lambda_slash_no_default_rule(Parser *p)$/;" f file: +lambda_slash_no_default_type Parser/parser.c 225;" d file: +lambda_slash_with_default_rule Parser/parser.c /^lambda_slash_with_default_rule(Parser *p)$/;" f file: +lambda_slash_with_default_type Parser/parser.c 226;" d file: +lambda_star_etc_rule Parser/parser.c /^lambda_star_etc_rule(Parser *p)$/;" f file: +lambda_star_etc_type Parser/parser.c 227;" d file: +lambdef_rule Parser/parser.c /^lambdef_rule(Parser *p)$/;" f file: +lambdef_type Parser/parser.c 222;" d file: +lanczos_den_coeffs Modules/mathmodule.c /^static const double lanczos_den_coeffs[LANCZOS_N] = {$/;" v file: +lanczos_g Modules/mathmodule.c /^static const double lanczos_g = 6.024680040776729583740234375;$/;" v file: +lanczos_g_minus_half Modules/mathmodule.c /^static const double lanczos_g_minus_half = 5.524680040776729583740234375;$/;" v file: +lanczos_num_coeffs Modules/mathmodule.c /^static const double lanczos_num_coeffs[LANCZOS_N] = {$/;" v file: +lanczos_sum Modules/mathmodule.c /^lanczos_sum(double x)$/;" f file: +lang Lib/email/_header_value_parser.py /^ lang = None$/;" v class:EncodedWord +langinfo_constant Modules/_localemodule.c /^static struct langinfo_constant{$/;" s file: +langinfo_constants Modules/_localemodule.c /^} langinfo_constants[] =$/;" v typeref:struct:langinfo_constant file: +language Tools/clinic/clinic.py /^ language = 'C'$/;" v class:CLanguage +language Tools/clinic/clinic.py /^ language = 'Python'$/;" v class:PythonLanguage +language_map Tools/c-analyzer/distutils/ccompiler.py /^ language_map = {".c" : "c",$/;" v class:CCompiler +language_order Tools/c-analyzer/distutils/ccompiler.py /^ language_order = ["c++", "objc", "c"]$/;" v class:CCompiler +languages Tools/clinic/clinic.py /^languages = { 'C': CLanguage, 'Python': PythonLanguage }$/;" v +large_base_example Lib/test/support/_hypothesis_stubs/__init__.py /^ large_base_example = 7$/;" v class:HealthCheck +large_file_exception_test Lib/test/test_zipfile/test_core.py /^ def large_file_exception_test(self, f, compression):$/;" m class:StoredTestZip64InSmallFiles +large_file_exception_test2 Lib/test/test_zipfile/test_core.py /^ def large_file_exception_test2(self, f, compression):$/;" m class:StoredTestZip64InSmallFiles +large_file_ops Lib/test/test_io.py /^ def large_file_ops(self, f):$/;" m class:IOTest +large_sizes Lib/test/pickletester.py /^ large_sizes = [s for s in chunk_sizes$/;" v class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +last Doc/includes/newtypes/custom2.c /^ PyObject *last; \/* last name *\/$/;" m struct:__anon273 file: +last Doc/includes/newtypes/custom3.c /^ PyObject *last; \/* last name *\/$/;" m struct:__anon276 file: +last Doc/includes/newtypes/custom4.c /^ PyObject *last; \/* last name *\/$/;" m struct:__anon274 file: +last Include/internal/pycore_ceval_state.h /^ int last;$/;" m struct:_pending_calls +last Lib/nntplib.py /^ def last(self):$/;" m class:NNTP +last Lib/shelve.py /^ def last(self):$/;" m class:BsdDbShelf +last Lib/test/test_generators.py /^ def last():$/;" f function:Knights.__init__ +last Modules/_elementtree.c /^ PyObject *last; \/* most recently created node *\/$/;" m struct:__anon385 file: +last Modules/_xxinterpchannelsmodule.c /^ _channelitem *last;$/;" m struct:_channelqueue file: +last Modules/cjkcodecs/mappings_cn.h /^ Py_UCS4 first, last;$/;" m struct:_gb18030_to_unibmp_ranges +lastChild Lib/xml/dom/minidom.py /^ lastChild = None$/;" v class:Childless +lastResort Lib/logging/__init__.py /^lastResort = _defaultLastResort$/;" v +last_accepted Lib/multiprocessing/connection.py /^ def last_accepted(self):$/;" m class:Listener +last_cb Lib/test/test_asyncio/test_futures.py /^def last_cb():$/;" f +last_chunk Lib/test/test_httplib.py /^last_chunk = "0\\r\\n"$/;" v +last_chunk_extended Lib/test/test_httplib.py /^last_chunk_extended = "0" + chunk_extension + "\\r\\n"$/;" v +last_ctx_pos Modules/_sre/sre_lib.h /^ Py_ssize_t last_ctx_pos;$/;" m struct:__anon460 +last_dim_is_contiguous Objects/memoryobject.c /^last_dim_is_contiguous(const Py_buffer *dest, const Py_buffer *src)$/;" f file: +last_expr_buffer Parser/tokenizer.h /^ char* last_expr_buffer;$/;" m struct:_tokenizer_mode +last_expr_end Parser/tokenizer.h /^ Py_ssize_t last_expr_end;$/;" m struct:_tokenizer_mode +last_expr_size Parser/tokenizer.h /^ Py_ssize_t last_expr_size;$/;" m struct:_tokenizer_mode +last_final_leaks Objects/obmalloc.c /^static Py_ssize_t last_final_leaks = 0;$/;" v file: +last_final_reftotal Objects/object.c /^static Py_ssize_t last_final_reftotal = 0;$/;" v file: +last_for_tail Modules/_elementtree.c /^ PyObject *last_for_tail; \/* most recently created node that takes a tail *\/$/;" m struct:__anon385 file: +last_holder Include/internal/pycore_gil.h /^ _Py_atomic_address last_holder;$/;" m struct:_gil_runtime_state +last_ll_callback Include/internal/pycore_atexit.h /^ atexit_callback *last_ll_callback;$/;" m struct:atexit_state +last_module_index Include/internal/pycore_import.h /^ Py_ssize_t last_module_index;$/;" m struct:_import_runtime_state +last_node Modules/_blake2/impl/blake2.h /^ uint8_t last_node;$/;" m struct:__blake2b_state +last_node Modules/_blake2/impl/blake2.h /^ uint8_t last_node;$/;" m struct:__blake2s_state +last_ptr Modules/_sre/sre.h /^ const void* last_ptr; \/* helper to check for infinite loops *\/$/;" m struct:SRE_REPEAT_T +last_raises1 Lib/test/test_traceback.py /^ def last_raises1(self):$/;" m class:LimitTests +last_raises2 Lib/test/test_traceback.py /^ def last_raises2(self):$/;" m class:LimitTests +last_raises3 Lib/test/test_traceback.py /^ def last_raises3(self):$/;" m class:LimitTests +last_raises4 Lib/test/test_traceback.py /^ def last_raises4(self):$/;" m class:LimitTests +last_raises5 Lib/test/test_traceback.py /^ def last_raises5(self):$/;" m class:LimitTests +last_resort_memory_error Include/internal/pycore_global_objects.h /^ PyBaseExceptionObject last_resort_memory_error;$/;" m struct:_Py_interp_static_objects::__anon149 +last_restart_version Include/internal/pycore_interp.h /^ uint64_t last_restart_version;$/;" m struct:_is +last_returns_frame1 Lib/test/test_traceback.py /^ def last_returns_frame1(self):$/;" m class:LimitTests +last_returns_frame2 Lib/test/test_traceback.py /^ def last_returns_frame2(self):$/;" m class:LimitTests +last_returns_frame3 Lib/test/test_traceback.py /^ def last_returns_frame3(self):$/;" m class:LimitTests +last_returns_frame4 Lib/test/test_traceback.py /^ def last_returns_frame4(self):$/;" m class:LimitTests +last_returns_frame5 Lib/test/test_traceback.py /^ def last_returns_frame5(self):$/;" m class:LimitTests +last_tid Modules/_multiprocessing/semaphore.c /^ unsigned long last_tid;$/;" m struct:__anon470 file: +last_wid Lib/test/test_capi/test_watchers.py /^ last_wid = stack.enter_context(self.watcher())$/;" v class:TestTypeWatchers.test_all_watchers.C +last_wid Lib/test/test_capi/test_watchers.py /^ last_wid = -1$/;" v class:TestTypeWatchers.test_all_watchers.C +lastchild Modules/expat/xmlparse.c /^ int lastchild;$/;" m struct:__anon612 file: +lastcmd Lib/cmd.py /^ lastcmd = ''$/;" v class:Cmd +lastdot Lib/test/smtpd.py /^ lastdot = classname.rfind(".")$/;" v +lasti Python/bytecodes.c /^static PyObject *exit_func, *lasti, *val, *retval, *obj, *iter;$/;" v file: +lasti2lineno Lib/pdb.py /^def lasti2lineno(code, lasti):$/;" f +lastindex Modules/_sre/sre.h /^ Py_ssize_t lastindex; \/* last index marker seen by the engine (-1 if none) *\/$/;" m struct:__anon455 +lastindex Modules/_sre/sre.h /^ int lastindex;$/;" m struct:__anon458 +lastindex Modules/_sre/sre_lib.h /^ int lastindex;$/;" m struct:__anon460 +lastmark Modules/_sre/sre.h /^ int lastmark;$/;" m struct:__anon458 +lastmark Modules/_sre/sre_lib.h /^ int lastmark;$/;" m struct:__anon460 +lastrowid Modules/_sqlite/cursor.h /^ PyObject* lastrowid;$/;" m struct:__anon358 +lastvisiblechild Lib/idlelib/tree.py /^ def lastvisiblechild(self):$/;" m class:TreeNode +late_deletion Lib/test/support/__init__.py /^def late_deletion(obj):$/;" f +latency_client Tools/ccbench/ccbench.py /^def latency_client(addr, nb_pings, interval):$/;" f +latency_tasks Tools/ccbench/ccbench.py /^latency_tasks = throughput_tasks$/;" v +latex_appendices Doc/conf.py /^latex_appendices = ['glossary', 'about', 'license', 'copyright']$/;" v +latex_documents Doc/conf.py /^latex_documents = [$/;" v +latex_elements Doc/conf.py /^latex_elements = {$/;" v +latex_engine Doc/conf.py /^latex_engine = 'xelatex'$/;" v +latin Lib/test/_test_multiprocessing.py /^def latin(s):$/;" f +latin1 Include/cpython/unicodeobject.h /^ Py_UCS1 *latin1;$/;" m union:__anon234::__anon235 +latin1 Include/internal/pycore_global_strings.h /^ } latin1[128];$/;" m struct:_Py_global_strings typeref:struct:_Py_global_strings::__anon8 +latin1_encode Modules/_io/textio.c /^latin1_encode(textio *self, PyObject *text)$/;" f file: +latin1_encoding Modules/expat/xmltok.c /^static const struct normal_encoding latin1_encoding$/;" v typeref:struct:normal_encoding file: +latin1_encoding_ns Modules/expat/xmltok.c /^static const struct normal_encoding latin1_encoding_ns$/;" v typeref:struct:normal_encoding file: +latin1_toUtf16 Modules/expat/xmltok.c /^latin1_toUtf16(const ENCODING *enc, const char **fromP, const char *fromLim,$/;" f file: +latin1_toUtf8 Modules/expat/xmltok.c /^latin1_toUtf8(const ENCODING *enc, const char **fromP, const char *fromLim,$/;" f file: +launchEnvironment PC/launcher2.c /^launchEnvironment(const SearchInfo *search, const EnvironmentInfo *launch, wchar_t *launchCommand)$/;" f +launcher_ini_path PC/launcher.c /^static wchar_t launcher_ini_path[MAX_PATH];$/;" v file: +layout Lib/tkinter/ttk.py /^ def layout(self, style, layoutspec=None):$/;" m class:Style +lazy Lib/test/test_pprint.py /^ lazy=7,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +lazycache Lib/linecache.py /^def lazycache(filename, module_globals):$/;" f +lc_float_strings Python/pystrtod.c /^static const char * const lc_float_strings[] = {$/;" v file: +lcg Lib/test/test_hash.py /^def lcg(x, length=16):$/;" f +lcg_urandom Python/bootstrap_hash.c /^lcg_urandom(unsigned int x0, unsigned char *buffer, size_t size)$/;" f file: +lchmod Lib/pathlib.py /^ def lchmod(self, mode):$/;" m class:Path +ldiv_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class ldiv_t(Structure):$/;" c +le Lib/operator.py /^def le(a, b):$/;" f +le16toh Modules/_hacl/include/krml/lowstar_endianness.h 27;" d +le16toh Modules/_hacl/include/krml/lowstar_endianness.h 45;" d +le16toh Modules/_hacl/include/krml/lowstar_endianness.h 67;" d +le16toh Modules/_hacl/include/krml/lowstar_endianness.h 86;" d +le32toh Modules/_hacl/include/krml/lowstar_endianness.h 114;" d +le32toh Modules/_hacl/include/krml/lowstar_endianness.h 131;" d +le32toh Modules/_hacl/include/krml/lowstar_endianness.h 32;" d +le32toh Modules/_hacl/include/krml/lowstar_endianness.h 50;" d +le32toh Modules/_hacl/include/krml/lowstar_endianness.h 72;" d +le32toh Modules/_hacl/include/krml/lowstar_endianness.h 91;" d +le64toh Modules/_hacl/include/krml/lowstar_endianness.h 125;" d +le64toh Modules/_hacl/include/krml/lowstar_endianness.h 141;" d +le64toh Modules/_hacl/include/krml/lowstar_endianness.h 22;" d +le64toh Modules/_hacl/include/krml/lowstar_endianness.h 40;" d +le64toh Modules/_hacl/include/krml/lowstar_endianness.h 77;" d +le64toh Modules/_hacl/include/krml/lowstar_endianness.h 96;" d +leadingws_comment Lib/idlelib/idle_test/test_format.py /^ leadingws_comment = ' # This is a comment'$/;" v class:Is_Get_Test +leadingws_nocomment Lib/idlelib/idle_test/test_format.py /^ leadingws_nocomment = ' This is not a comment'$/;" v class:Is_Get_Test +leaf_generator Lib/test/test_exception_group.py /^def leaf_generator(exc, tbs=None):$/;" f +leaf_length Modules/_blake2/impl/blake2.h /^ uint32_t leaf_length; \/\/ 8$/;" m struct:__blake2b_param +leaf_length Modules/_blake2/impl/blake2.h /^ uint32_t leaf_length; \/\/ 8$/;" m struct:__blake2s_param +leaf_to_root Lib/lib2to3/btm_utils.py /^ def leaf_to_root(self):$/;" m class:MinNode +leak Lib/test/leakers/test_ctypes.py /^def leak():$/;" f +leak Lib/test/leakers/test_selftype.py /^def leak():$/;" f +leak_inner Lib/test/leakers/test_ctypes.py /^def leak_inner():$/;" f +leapdays Lib/calendar.py /^def leapdays(y1, y2):$/;" f +leave_task Modules/_asynciomodule.c /^leave_task(asyncio_state *state, PyObject *loop, PyObject *task)$/;" f file: +leave_unfinalized_asyncgen Lib/test/test_asyncio/test_base_events.py /^ async def leave_unfinalized_asyncgen(self):$/;" m class:BaseEventLoopTests +leaves Lib/lib2to3/btm_utils.py /^ def leaves(self):$/;" m class:MinNode +leaves Lib/lib2to3/pytree.py /^ def leaves(self):$/;" m class:Base +leaves Lib/lib2to3/pytree.py /^ def leaves(self):$/;" m class:Leaf +leaves Lib/test/test_exception_group.py /^ def leaves(exc):$/;" f function:ExceptionGroupSplitTestBase.split_exception_group +left Include/internal/pycore_ast.h /^ expr_ty left;$/;" m struct:_expr::__anon77::__anon80 +left Include/internal/pycore_ast.h /^ expr_ty left;$/;" m struct:_expr::__anon77::__anon93 +left Include/internal/pycore_ast_state.h /^ PyObject *left;$/;" m struct:ast_state +left Lib/test/test_set.py /^ left = set()$/;" v class:TestSubsetEmptyNonEmpty +left Lib/test/test_set.py /^ left = set()$/;" v class:TestSubsetEqualEmpty +left Lib/test/test_set.py /^ left = set([1, 2])$/;" v class:TestSubsetEqualNonEmpty +left Lib/test/test_set.py /^ left = set([1])$/;" v class:TestSubsetNonOverlap +left Lib/test/test_set.py /^ left = set([1])$/;" v class:TestSubsetPartial +left Lib/turtle.py /^ def left(self, angle):$/;" m class:TNavigator +left Modules/_ctypes/_ctypes_test.c /^ long left;$/;" m struct:__anon516 file: +left Modules/rotatingtree.h /^ rotating_node_t *left;$/;" m struct:rotating_node_s +left Python/bytecodes.c /^static PyObject *value, *value1, *value2, *left, *right, *res, *sum, *prod, *sub;$/;" v file: +left_bytes Modules/zlibmodule.c /^ Py_ssize_t left_bytes;$/;" m struct:__anon304 file: +leftblock Modules/_collectionsmodule.c /^ block *leftblock;$/;" m struct:__anon530 file: +leftindex Modules/_collectionsmodule.c /^ Py_ssize_t leftindex; \/* 0 <= leftindex < BLOCKLEN *\/$/;" m struct:__anon530 file: +leftlink Modules/_collectionsmodule.c /^ struct BLOCK *leftlink;$/;" m struct:BLOCK typeref:struct:BLOCK::BLOCK file: +leftover Lib/test/test_asyncio/test_runners.py /^ async def leftover():$/;" f function:RunTests.test_asyncio_run_cancels_hanging_tasks +leftover Lib/test/test_asyncio/test_runners.py /^ async def leftover():$/;" f function:RunTests.test_asyncio_run_reports_hanging_tasks_errors +legacy Lib/test/test_sqlite3/test_transactions.py /^ legacy = sqlite.LEGACY_TRANSACTION_CONTROL$/;" v class:AutocommitAttribute +legacy Tools/clinic/clinic.py /^ legacy = sorted(legacy_converters)$/;" v +legacy_mode Modules/_testbuffer.c /^ int legacy_mode; \/* if true, use the view.obj==NULL hack *\/$/;" m struct:__anon647 file: +legacy_normalize Lib/importlib/metadata/__init__.py /^ def legacy_normalize(name):$/;" m class:Prepared +legacy_normalized Lib/importlib/metadata/__init__.py /^ legacy_normalized = None$/;" v class:Prepared +legacy_pad Modules/_hacl/Hacl_Hash_MD5.c /^static void legacy_pad(uint64_t len, uint8_t *dst)$/;" f file: +legacy_pad Modules/_hacl/Hacl_Hash_SHA1.c /^static void legacy_pad(uint64_t len, uint8_t *dst)$/;" f file: +legacy_update Modules/_hacl/Hacl_Hash_MD5.c /^static void legacy_update(uint32_t *abcd, uint8_t *x)$/;" f file: +legacy_update Modules/_hacl/Hacl_Hash_SHA1.c /^static void legacy_update(uint32_t *h, uint8_t *l)$/;" f file: +legacy_windows_fs_encoding Include/cpython/initconfig.h /^ int legacy_windows_fs_encoding;$/;" m struct:PyPreConfig +legacy_windows_stdio Include/cpython/initconfig.h /^ int legacy_windows_stdio;$/;" m struct:PyConfig +len Include/internal/pycore_code.h /^ PyObject *len;$/;" m struct:callable_cache +len Include/internal/pycore_range.h /^ long len;$/;" m struct:__anon124 +len Include/pybuffer.h /^ Py_ssize_t len;$/;" m struct:__anon1 +len Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t len;$/;" m struct:mpd_t +len Modules/_testbuffer.c /^ Py_ssize_t len; \/* length of data *\/$/;" m struct:ndbuf file: +len Modules/_xxsubinterpretersmodule.c /^ Py_ssize_t len;$/;" m struct:_sharedns file: +len Modules/socketmodule.c /^ Py_ssize_t len;$/;" m struct:sock_recv file: +len Modules/socketmodule.c /^ Py_ssize_t len;$/;" m struct:sock_recvfrom file: +len Modules/socketmodule.c /^ Py_ssize_t len;$/;" m struct:sock_send file: +len Modules/socketmodule.c /^ Py_ssize_t len;$/;" m struct:sock_sendto file: +len Objects/dictobject.c /^ Py_ssize_t len;$/;" m struct:__anon750 file: +len Objects/listobject.c /^ Py_ssize_t len; \/* length of run *\/$/;" m struct:s_slice file: +len Objects/rangeobject.c /^ PyObject *len;$/;" m struct:__anon724 file: +len Objects/setobject.c /^ Py_ssize_t len;$/;" m struct:__anon725 file: +len Python/pystate.c /^ Py_ssize_t len;$/;" m struct:_shared_bytes_data file: +len Python/pystate.c /^ Py_ssize_t len;$/;" m struct:_shared_str_data file: +len_b Lib/email/_encoded_words.py /^def len_b(bstring):$/;" f +len_message Lib/test/test_asyncio/test_subprocess.py /^ async def len_message(message):$/;" f function:SubprocessMixin.test_stdin_not_inheritable +len_q Lib/email/_encoded_words.py /^def len_q(bstring):$/;" f +lenfunc Include/object.h /^typedef Py_ssize_t (*lenfunc)(PyObject *);$/;" t +length Include/cpython/initconfig.h /^ Py_ssize_t length;$/;" m struct:__anon200 +length Include/cpython/unicodeobject.h /^ Py_ssize_t length; \/* Number of code points in the string *\/$/;" m struct:__anon231 +length Lib/xml/dom/minicompat.py /^ length = property(_get_length, _set_length,$/;" v class:EmptyNodeList +length Lib/xml/dom/minicompat.py /^ length = property(_get_length, _set_length,$/;" v class:NodeList +length Modules/_ctypes/ctypes.h /^ Py_ssize_t length; \/* number of fields *\/$/;" m struct:__anon495 +length Modules/_elementtree.c /^ Py_ssize_t length; \/* actual number of items *\/$/;" m struct:__anon382 file: +length Modules/posixmodule.c /^ Py_ssize_t length;$/;" m struct:__anon478 file: +length Objects/rangeobject.c /^ PyObject *length;$/;" m struct:__anon723 file: +length PC/launcher.c /^ int length;$/;" m struct:__anon289 file: +length Tools/clinic/clinic.py /^ length = False$/;" v class:CConverter +length_as_max_line_length_policy Lib/test/test_email/test_generator.py /^ def length_as_max_line_length_policy(self, n):$/;" m class:TestGeneratorBase +length_as_max_line_length_with_refold_all_folds Lib/test/test_email/test_generator.py /^ def length_as_max_line_length_with_refold_all_folds(self, n):$/;" m class:TestGeneratorBase +length_as_max_line_length_with_refold_none_does_not_fold Lib/test/test_email/test_generator.py /^ def length_as_max_line_length_with_refold_none_does_not_fold(self, n):$/;" m class:TestGeneratorBase +length_as_maxheaderlen_parameter Lib/test/test_email/test_generator.py /^ def length_as_maxheaderlen_parameter(self, n):$/;" m class:TestGeneratorBase +length_as_maxheaderlen_parm_overrides_policy Lib/test/test_email/test_generator.py /^ def length_as_maxheaderlen_parm_overrides_policy(self, n):$/;" m class:TestGeneratorBase +length_hint Lib/operator.py /^def length_hint(obj, default=0):$/;" f +length_name Tools/clinic/clinic.py /^ def length_name(self):$/;" m class:CConverter +length_params Lib/test/test_email/test_generator.py /^ length_params = [n for n in refold_long_expected]$/;" v class:TestGeneratorBase +lengths Lib/test/test_bufio.py /^lengths = list(range(1, 257)) + [512, 1000, 1024, 2048, 4096, 8192, 10000,$/;" v +lerp Lib/idlelib/idle_test/test_sidebar.py /^ def lerp(a, b, steps):$/;" f function:LineNumbersTest.simulate_drag +less Lib/tabnanny.py /^ def less(self, other):$/;" m class:Whitespace +less_than Lib/test/test_inspect.py /^ def less_than(a, b):$/;" f function:TestGetClosureVars.test_nonlocal_vars +letter Lib/textwrap.py /^ letter = r'[^\\d\\W]'$/;" v class:TextWrapper +letter Tools/cases_generator/lexer.py /^letter = re.compile(r'[a-zA-Z_]')$/;" v +level Include/internal/pycore_ast.h /^ int level;$/;" m struct:_stmt::__anon51::__anon73 +level Include/internal/pycore_ast_state.h /^ PyObject *level;$/;" m struct:ast_state +level Include/internal/pycore_import.h /^ int level;$/;" m struct:_import_state::__anon137 +level Lib/test/test_logging.py /^ level = logging.NOTSET$/;" v class:StreamWithIntName +level Modules/expat/xmlrole.h /^ unsigned level;$/;" m struct:prolog_state +level Parser/pegen.h /^ int level;$/;" m struct:__anon653 +level Parser/pegen.h /^ int level;$/;" m struct:__anon657 +level Parser/tokenizer.h /^ int level; \/* () [] {} Parentheses nesting level *\/$/;" m struct:tok_state +level Parser/tokenizer.h /^ int level;$/;" m struct:token +level Python/bytecodes.c /^static PyObject *orig, *excs, *update, *b, *fromlist, *level, *from;$/;" v file: +level1 Lib/test/test_exception_group.py /^ def level1(i):$/;" f function:NestedExceptionGroupSplitTest.test_split_by_type.nested_group +level1 Objects/unicodeobject.c /^ unsigned char level1[32];$/;" m struct:encoding_map file: +level2 Lib/test/test_exception_group.py /^ def level2(i):$/;" f function:NestedExceptionGroupSplitTest.test_split_by_type.nested_group +level23 Objects/unicodeobject.c /^ unsigned char level23[1];$/;" m struct:encoding_map file: +level3 Lib/test/test_exception_group.py /^ def level3(i):$/;" f function:NestedExceptionGroupSplitTest.test_split_by_type.nested_group +levelnum PCbuild/field3.py /^levelnum = {'alpha': 0xA,$/;" v +levenshtein Tools/build/generate_levenshtein_examples.py /^def levenshtein(a, b):$/;" f +levenshtein_distance Python/suggestions.c /^levenshtein_distance(const char *a, size_t a_size,$/;" f file: +lexicon Modules/unicodename_db.h /^static const unsigned char lexicon[] = {$/;" v +lexicon_offset Modules/unicodename_db.h /^static const unsigned int lexicon_offset[] = {$/;" v +lexists Lib/ntpath.py /^def lexists(path):$/;" f +lexists Lib/posixpath.py /^def lexists(path):$/;" f +lhash_node_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class lhash_node_st(Structure):$/;" c +lhash_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class lhash_st(Structure):$/;" c +lhs Python/bytecodes.c /^static PyObject *container, *start, *stop, *v, *lhs, *rhs, *res2;$/;" v file: +li_code Objects/codeobject.c /^ PyCodeObject *li_code;$/;" m struct:__anon743 file: +li_line Objects/codeobject.c /^ PyCodeAddressRange li_line;$/;" m struct:__anon743 file: +lib Lib/test/test_ctypes/test_funcptr.py /^lib = CDLL(_ctypes_test.__file__)$/;" v +lib Lib/test/test_ctypes/test_libc.py /^lib = CDLL(_ctypes_test.__file__)$/;" v +lib Lib/test/test_ctypes/test_stringptr.py /^lib = CDLL(_ctypes_test.__file__)$/;" v +lib2to3_dir Lib/test/test_lib2to3/support.py /^lib2to3_dir = os.path.dirname(lib2to3.__file__)$/;" v +lib_codes_to_names Modules/_ssl.h /^ PyObject *lib_codes_to_names;$/;" m struct:__anon485 +lib_dir Lib/test/test_unparse.py /^ lib_dir = pathlib.Path(__file__).parent \/ ".."$/;" v class:DirectoryTestCase +lib_dir Tools/ssl/multissltests.py /^ def lib_dir(self):$/;" m class:AbstractBuilder +libc_name Lib/test/test_ctypes/test_loading.py /^libc_name = None$/;" v +libc_ver Lib/platform.py /^def libc_ver(executable=None, lib='', version='', chunksize=16384):$/;" f +libedit_append_replace_history_offset Modules/readline.c /^static int8_t libedit_append_replace_history_offset = 0;$/;" v file: +libedit_history_start Modules/readline.c /^static int8_t libedit_history_start = 0;$/;" v file: +libedit_version_tag Modules/readline.c /^static const char libedit_version_tag[] = "EditLine wrapper";$/;" v file: +liberal_is_HDN Lib/http/cookiejar.py /^def liberal_is_HDN(text):$/;" f +libraries PCbuild/get_externals.bat /^if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4$/;" v +libraries PCbuild/get_externals.bat /^if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.0.11$/;" v +libraries PCbuild/get_externals.bat /^if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.13.0$/;" v +libraries PCbuild/get_externals.bat /^if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6$/;" v +libraries PCbuild/get_externals.bat /^if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.13.0$/;" v +libraries PCbuild/get_externals.bat /^set libraries=$/;" v +libraries PCbuild/get_externals.bat /^set libraries=%libraries% bzip2-1.0.8$/;" v +libraries PCbuild/get_externals.bat /^set libraries=%libraries% sqlite-3.42.0.0$/;" v +libraries PCbuild/get_externals.bat /^set libraries=%libraries% xz-5.2.5$/;" v +libraries PCbuild/get_externals.bat /^set libraries=%libraries% zlib-1.2.13$/;" v +libraries Tools/msi/get_externals.bat /^set libraries=$/;" v +library Lib/test/test_getpath.py /^ library="",$/;" v class:MockGetPathTests +library Modules/_ssl.c /^ const char *library;$/;" m struct:py_ssl_library_code file: +library Modules/_ssl.c /^ int library, reason;$/;" m struct:py_ssl_error_code file: +library Tools/ssl/multissltests.py /^ library = "LibreSSL"$/;" v class:BuildLibreSSL +library Tools/ssl/multissltests.py /^ library = "OpenSSL"$/;" v class:BuildOpenSSL +library Tools/ssl/multissltests.py /^ library = None$/;" v class:AbstractBuilder +library_codes Modules/_ssl_data.h /^static struct py_ssl_library_code library_codes[] = {$/;" v typeref:struct:py_ssl_library_code +library_codes Modules/_ssl_data_111.h /^static struct py_ssl_library_code library_codes[] = {$/;" v typeref:struct:py_ssl_library_code +library_codes Modules/_ssl_data_300.h /^static struct py_ssl_library_code library_codes[] = {$/;" v typeref:struct:py_ssl_library_code +library_codes Modules/_ssl_data_31.h /^static struct py_ssl_library_code library_codes[] = {$/;" v typeref:struct:py_ssl_library_code +library_dir Modules/getpath.py /^ library_dir = dirname(library)$/;" v +library_dir Modules/getpath.py /^ library_dir = executable_dir$/;" v +library_dir Modules/getpath.py /^ library_dir = dirname(library)$/;" v +library_dir Modules/getpath.py /^ library_dir = dirname(library)$/;" v +library_recipes Mac/BuildScript/build-installer.py /^def library_recipes():$/;" f +library_to_dict Modules/getpath.c /^library_to_dict(PyObject *dict, const char *key)$/;" f file: +libsystem_b_handle Modules/_ctypes/callproc.c /^static void *libsystem_b_handle;$/;" v file: +lift Lib/test/test_pydoc.py /^ lift = tkraise$/;" v class:PydocDocTest.test_method_aliases.A +lift Lib/tkinter/__init__.py /^ lift = tkraise$/;" v class:Misc +lilendian_table Modules/_struct.c /^static formatdef lilendian_table[] = {$/;" v file: +limit Include/cpython/code.h /^ const uint8_t *limit;$/;" m struct:_opaque +limitToCompany PC/launcher2.c /^ const wchar_t *limitToCompany;$/;" m struct:__anon284 file: +limit_denominator Lib/fractions.py /^ def limit_denominator(self, max_denominator=1000000):$/;" m class:Fraction +limited_cache Lib/test/test_functools.py /^ def limited_cache(o):$/;" f function:TestLRU.test_lru_type_error +line Lib/msilib/__init__.py /^ def line(self, name, x, y, w, h):$/;" m class:Dialog +line Lib/traceback.py /^ def line(self):$/;" m class:FrameSummary +line Lib/turtledemo/chaos.py /^def line(x1, y1, x2, y2):$/;" f +line Modules/_decimal/tests/formathelper.py /^ line = f.readline()$/;" v +line Modules/getpath.py /^ line = line.partition('#')[0].strip()$/;" v +line Tools/cases_generator/lexer.py /^ def line(self):$/;" m class:Token +line Tools/i18n/pygettext.py /^ line = fp.readline()$/;" v class:main.Options +lineNumber Modules/expat/xmltok.h /^ XML_Size lineNumber;$/;" m struct:position +line_buffering Lib/_pyio.py /^ def line_buffering(self):$/;" m class:TextIOWrapper +line_buffering Lib/typing.py /^ def line_buffering(self) -> bool:$/;" m class:TextIO +line_buffering Modules/_io/textio.c /^ char line_buffering;$/;" m struct:textio file: +line_delta Include/cpython/code.h /^ int8_t line_delta;$/;" m struct:__anon228 +line_from_offset Lib/test/test_monitoring.py /^def line_from_offset(code, offset):$/;" f +line_num Modules/_csv.c /^ unsigned long line_num; \/* Source-file line number *\/$/;" m struct:__anon625 file: +line_prefix Lib/pdb.py /^line_prefix = '\\n-> ' # Probably a better default$/;" v +line_start Parser/tokenizer.h /^ const char* line_start; \/* pointer to start of current line *\/$/;" m struct:tok_state +line_tools Include/cpython/code.h /^ uint8_t *line_tools;$/;" m struct:__anon229 +linear-mod-1 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm linear-mod-1$/;" f +linear-mod-2 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm linear-mod-2$/;" f +linear-mod-3 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm linear-mod-3$/;" f +linear_format Tools/clinic/clinic.py /^def linear_format(s: str, **kwargs: str) -> str:$/;" f +linear_regression Lib/statistics.py /^def linear_regression(x, y, \/, *, proportional=False):$/;" f +linefeed_callback Lib/idlelib/pyshell.py /^ def linefeed_callback(self, event):$/;" m class:PyShell +linegraph Lib/test/test_set.py /^def linegraph(G):$/;" f +lineinfo Lib/pdb.py /^ def lineinfo(self, identifier):$/;" m class:Pdb +lineiter_dealloc Objects/codeobject.c /^lineiter_dealloc(lineiterator *li)$/;" f file: +lineiter_next Objects/codeobject.c /^lineiter_next(lineiterator *li)$/;" f file: +lineiterator Objects/codeobject.c /^} lineiterator;$/;" t typeref:struct:__anon743 file: +lineno Include/cpython/compile.h /^ int lineno;$/;" m struct:__anon206 +lineno Include/cpython/pyerrors.h /^ PyObject *lineno;$/;" m struct:__anon182 +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_type_ignore::__anon116::__anon117 +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_alias +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_arg +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_excepthandler +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_expr +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_keyword +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_pattern +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_stmt +lineno Include/internal/pycore_ast.h /^ int lineno;$/;" m struct:_type_param +lineno Include/internal/pycore_ast_state.h /^ PyObject *lineno;$/;" m struct:ast_state +lineno Include/internal/pycore_tracemalloc.h /^ unsigned int lineno;$/;" m struct:tracemalloc_frame +lineno Lib/fileinput.py /^ def lineno(self):$/;" m class:FileInput +lineno Lib/fileinput.py /^def lineno():$/;" f +lineno Lib/lib2to3/pytree.py /^ lineno = 0 # Line where this token starts in the input$/;" v class:Leaf +lineno Lib/test/test_fileinput.py /^ def lineno(self):$/;" m class:MockFileInput +lineno Lib/tracemalloc.py /^ def lineno(self):$/;" m class:Frame +lineno Parser/pegen.h /^ int lineno;$/;" m struct:__anon655::__anon656 +lineno Parser/pegen.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:__anon653 +lineno Parser/tokenizer.h /^ int lineno, col_offset, end_lineno, end_col_offset;$/;" m struct:token +lineno Parser/tokenizer.h /^ int lineno; \/* Current line number *\/$/;" m struct:tok_state +lineno_after_raise Lib/test/test_exceptions.py /^ def lineno_after_raise(self, f, *expected):$/;" m class:PEP626Tests +lineno_sort_key Lib/mailcap.py /^def lineno_sort_key(entry):$/;" f +lines Include/cpython/code.h /^ _PyCoLineInstrumentationData *lines;$/;" m struct:__anon229 +lines Lib/test/test_httplib.py /^ lines = ($/;" v class:ExtendedReadTest +lines Lib/test/test_httplib.py /^ lines = ($/;" v class:ExtendedReadTestChunked +lines Modules/_cursesmodule.c 125;" d file: +lines_chunked Lib/test/test_httplib.py /^ lines_chunked = ($/;" v class:ExtendedReadTest +lines_expected Lib/test/test_httplib.py /^ lines_expected = lines[lines.find('hello'):].encode("ascii")$/;" v class:ExtendedReadTest +lines_from_postions Lib/test/test_code.py /^def lines_from_postions(positions):$/;" f +linesep Lib/email/_policybase.py /^ linesep = '\\n'$/;" v class:Policy +linesep Lib/mailbox.py /^linesep = os.linesep.encode('ascii')$/;" v +linesep Lib/os.py /^ linesep = '\\r\\n'$/;" v +linesep Lib/test/test_email/test_email.py /^ linesep = '\\n'$/;" v class:TestBytesGeneratorIdempotentNL +linesep Lib/test/test_email/test_email.py /^ linesep = '\\n'$/;" v class:TestIdempotent +linesep Lib/test/test_email/test_email.py /^ linesep = '\\r\\n'$/;" v class:TestBytesGeneratorIdempotentCRLF +linesep Lib/test/test_httpservers.py /^ linesep = os.linesep.encode('ascii')$/;" v class:CGIHTTPServerTestCase +linesep_splitter Lib/email/policy.py /^linesep_splitter = re.compile(r'\\n|\\r')$/;" v +linesread Lib/test/test_fileinput.py /^ def linesread(self):$/;" m class:LineReader +linetable Include/internal/pycore_code.h /^ PyObject *linetable;$/;" m struct:_PyCodeConstructor +linetable Objects/codeobject.c /^static const uint8_t linetable[2] = {$/;" v file: +lineterminator Lib/csv.py /^ lineterminator = '\\r\\n'$/;" v class:Sniffer.sniff.dialect +lineterminator Lib/csv.py /^ lineterminator = '\\n'$/;" v class:unix_dialect +lineterminator Lib/csv.py /^ lineterminator = '\\r\\n'$/;" v class:excel +lineterminator Lib/csv.py /^ lineterminator = None$/;" v class:Dialect +lineterminator Lib/test/test_csv.py /^ lineterminator='\\n',$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +lineterminator Lib/test/test_csv.py /^ lineterminator = '\\r\\n'$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +lineterminator Lib/test/test_csv.py /^ lineterminator = '\\r\\n'$/;" v class:TestDialectValidity.test_delimiter.mydialect +lineterminator Lib/test/test_csv.py /^ lineterminator = '\\r\\n'$/;" v class:TestDialectValidity.test_escapechar.mydialect +lineterminator Lib/test/test_csv.py /^ lineterminator = '\\r\\n'$/;" v class:TestDialectValidity.test_lineterminator.mydialect +lineterminator Lib/test/test_csv.py /^ lineterminator = '\\r\\n'$/;" v class:TestDialectValidity.test_quoting.mydialect +lineterminator Lib/test/test_csv.py /^ lineterminator='$'$/;" v class:Test_Csv._test_dialect_attrs.dialect +lineterminator Modules/_csv.c /^ PyObject *lineterminator; \/* string to write between records *\/$/;" m struct:__anon624 file: +link_to_gamepay Lib/test/sgml_input.html /^ function link_to_gamepay() {$/;" f +linkcheck_allowed_redirects Doc/conf.py /^linkcheck_allowed_redirects = {$/;" v +linkcheck_anchors_ignore Doc/conf.py /^linkcheck_anchors_ignore = [$/;" v +linkcheck_ignore Doc/conf.py /^linkcheck_ignore = [$/;" v +linkname Lib/tarfile.py /^ linkname = ('Name of the target file name, which is only present '$/;" v class:TarInfo +linkpath Lib/tarfile.py /^ def linkpath(self):$/;" m class:TarInfo +linkpath Lib/tarfile.py /^ def linkpath(self, linkname):$/;" m class:TarInfo +linspace Lib/test/test_math.py /^ def linspace(lo, hi, n):$/;" f function:MathTests.test_sumprod_extended_precision_accuracy +lint_app Lib/wsgiref/validate.py /^ def lint_app(*args, **kw):$/;" f function:validator +linux_alpha Lib/test/test_builtin.py /^ linux_alpha = (platform.system().startswith('Linux') and$/;" v class:BuiltinTest +linux_dirent64 Modules/_posixsubprocess.c /^struct linux_dirent64 {$/;" s file: +list Doc/includes/newtypes/sublist.c /^ PyListObject list;$/;" m struct:__anon275 file: +list Include/internal/pycore_blocks_output_buffer.h /^ PyObject *list;$/;" m struct:__anon140 +list Include/internal/pycore_initconfig.h /^PyAPI_FUNC(PyObject*) _PyWideStringList_AsList(const PyWideStringList *list);$/;" v +list Include/internal/pycore_initconfig.h /^PyAPI_FUNC(int) _PyWideStringList_CheckConsistency(const PyWideStringList *list);$/;" v +list Include/internal/pycore_initconfig.h /^PyAPI_FUNC(void) _PyWideStringList_Clear(PyWideStringList *list);$/;" v +list Include/internal/pycore_interp.h /^ struct _Py_list_state list;$/;" m struct:_is typeref:struct:_is::_Py_list_state +list Lib/cgi.py /^ list = None$/;" v class:MiniFieldStorage +list Lib/imaplib.py /^ def list(self, directory='""', pattern='*'):$/;" m class:IMAP4 +list Lib/multiprocessing/dummy/__init__.py /^list = list$/;" v +list Lib/nntplib.py /^ def list(self, group_pattern=None, *, file=None):$/;" m class:NNTP +list Lib/poplib.py /^ def list(self, which=None):$/;" m class:POP3 +list Lib/pydoc.py /^ def list(self, items, columns=4, width=80):$/;" f +list Lib/tarfile.py /^ def list(self, verbose=True, *, members=None):$/;" m class:TarFile +list Lib/test/_test_multiprocessing.py /^ list = property(operator.attrgetter('manager.list'))$/;" v class:ManagerMixin +list Modules/_lsprof.c /^ PyObject *list;$/;" m struct:__anon364 file: +list Modules/_testcapimodule.c /^ PyListObject list;$/;" m struct:__anon593 file: +list Modules/xxsubtype.c /^ PyListObject list;$/;" m struct:__anon634 file: +list PC/launcher2.c /^ bool list;$/;" m struct:__anon284 file: +list Python/bytecodes.c /^static PyObject *list, *tuple, *dict, *owner, *set, *str, *tup, *map, *keys;$/;" v file: +list Python/tracemalloc.c /^ PyObject *list;$/;" m struct:__anon689 file: +list2 Lib/test/test_pprint.py /^class list2(list):$/;" c +list2cmdline Lib/subprocess.py /^def list2cmdline(seq):$/;" f +list2dict Python/compile.c /^list2dict(PyObject *list)$/;" f file: +list3 Lib/test/test_pprint.py /^class list3(list):$/;" c +listEnvironments PC/launcher2.c /^listEnvironments(EnvironmentInfo *env, FILE * out, bool showPath, EnvironmentInfo *defaultEnv)$/;" f +listPaths PC/launcher2.c /^ bool listPaths;$/;" m struct:__anon284 file: +list___init__ Objects/clinic/listobject.c.h /^list___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +list___init___impl Objects/listobject.c /^list___init___impl(PyListObject *self, PyObject *iterable)$/;" f file: +list___reversed__ Objects/clinic/listobject.c.h /^list___reversed__(PyListObject *self, PyObject *Py_UNUSED(ignored))$/;" f +list___reversed___impl Objects/listobject.c /^list___reversed___impl(PyListObject *self)$/;" f file: +list___sizeof__ Objects/clinic/listobject.c.h /^list___sizeof__(PyListObject *self, PyObject *Py_UNUSED(ignored))$/;" f +list___sizeof___impl Objects/listobject.c /^list___sizeof___impl(PyListObject *self)$/;" f file: +list_alias1 Lib/test/pydoc_mod.py /^list_alias1 = typing.List[int]$/;" v +list_alias2 Lib/test/pydoc_mod.py /^list_alias2 = list[int]$/;" v +list_all Lib/test/support/interpreters.py /^def list_all():$/;" f +list_all_channels Lib/test/support/interpreters.py /^def list_all_channels():$/;" f +list_append Include/internal/pycore_code.h /^ PyObject *list_append;$/;" m struct:callable_cache +list_append Objects/listobject.c /^list_append(PyListObject *self, PyObject *object)$/;" f file: +list_append_pop Tools/scripts/var_access_benchmark.py /^def list_append_pop(trials=trials, a=[1]):$/;" f +list_as_flags Modules/_decimal/_decimal.c /^list_as_flags(PyObject *list)$/;" f file: +list_as_mapping Objects/listobject.c /^static PyMappingMethods list_as_mapping = {$/;" v file: +list_as_sequence Objects/listobject.c /^static PySequenceMethods list_as_sequence = {$/;" v file: +list_ass_item Objects/listobject.c /^list_ass_item(PyListObject *a, Py_ssize_t i, PyObject *v)$/;" f file: +list_ass_slice Objects/listobject.c /^list_ass_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v)$/;" f file: +list_ass_subscript Objects/listobject.c /^list_ass_subscript(PyListObject* self, PyObject* item, PyObject* value)$/;" f file: +list_builtin_module_names Python/sysmodule.c /^list_builtin_module_names(void)$/;" f file: +list_cases Lib/test/bisect_cmd.py /^def list_cases(args):$/;" f +list_cases Lib/test/libregrtest/main.py /^ def list_cases(self):$/;" m class:Regrtest +list_clear Objects/clinic/listobject.c.h /^list_clear(PyListObject *self, PyObject *Py_UNUSED(ignored))$/;" f +list_clear_impl Objects/listobject.c /^list_clear_impl(PyListObject *self)$/;" f file: +list_concat Objects/listobject.c /^list_concat(PyListObject *a, PyObject *bb)$/;" f file: +list_contains Objects/listobject.c /^list_contains(PyListObject *a, PyObject *el)$/;" f file: +list_copy Objects/clinic/listobject.c.h /^list_copy(PyListObject *self, PyObject *Py_UNUSED(ignored))$/;" f +list_copy_impl Objects/listobject.c /^list_copy_impl(PyListObject *self)$/;" f file: +list_count Objects/listobject.c /^list_count(PyListObject *self, PyObject *value)$/;" f file: +list_custom_repr Lib/test/test_pprint.py /^class list_custom_repr(list):$/;" c +list_dealloc Objects/listobject.c /^list_dealloc(PyListObject *op)$/;" f file: +list_dir Lib/test/test_unittest/test_discovery.py /^ def list_dir(path):$/;" f function:TestDiscovery.setup_import_issue_package_tests +list_dir Lib/test/test_unittest/test_discovery.py /^ def list_dir(path):$/;" f function:TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests +list_dir Lib/test/test_unittest/test_discovery.py /^ def list_dir(path):$/;" f function:TestDiscovery.test_find_tests_customize_via_package_pattern +list_directory Lib/http/server.py /^ def list_directory(self, path):$/;" m class:SimpleHTTPRequestHandler +list_effect_size Tools/cases_generator/generate_cases.py /^def list_effect_size(effects: list[StackEffect]) -> tuple[int, str]:$/;" f +list_extend Objects/listobject.c /^list_extend(PyListObject *self, PyObject *iterable)$/;" f file: +list_folders Lib/mailbox.py /^ def list_folders(self):$/;" m class:MH +list_folders Lib/mailbox.py /^ def list_folders(self):$/;" m class:Maildir +list_frozen Tools/build/generate_stdlib_module_names.py /^def list_frozen(names):$/;" f +list_frozen_module_names Python/import.c /^list_frozen_module_names(void)$/;" f file: +list_index Objects/clinic/listobject.c.h /^list_index(PyListObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +list_index_impl Objects/listobject.c /^list_index_impl(PyListObject *self, PyObject *value, Py_ssize_t start,$/;" f file: +list_inplace_concat Objects/listobject.c /^list_inplace_concat(PyListObject *self, PyObject *other)$/;" f file: +list_inplace_repeat Objects/listobject.c /^list_inplace_repeat(PyListObject *self, Py_ssize_t n)$/;" f file: +list_insert Objects/clinic/listobject.c.h /^list_insert(PyListObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +list_insert_impl Objects/listobject.c /^list_insert_impl(PyListObject *self, Py_ssize_t index, PyObject *object)$/;" f file: +list_item Objects/listobject.c /^list_item(PyListObject *a, Py_ssize_t i)$/;" f file: +list_iter Objects/listobject.c /^list_iter(PyObject *seq)$/;" f file: +list_iterator Lib/_collections_abc.py /^list_iterator = type(iter([]))$/;" v +list_join Modules/_elementtree.c /^list_join(PyObject* list)$/;" f +list_keys_final Lib/idlelib/idle_test/test_config_key.py /^ class list_keys_final:$/;" c function:KeySelectionTest.Basic.__init__ +list_keys_final Lib/idlelib/idle_test/test_config_key.py /^ class list_keys_final:$/;" c function:ValidationTest.Validator.__init__ +list_length Objects/listobject.c /^list_length(PyListObject *a)$/;" f file: +list_methods Objects/listobject.c /^static PyMethodDef list_methods[] = {$/;" v file: +list_module_names Tools/build/check_extension_modules.py /^ def list_module_names(self, *, all: bool = False) -> set:$/;" m class:ModuleChecker +list_modules Tools/build/generate_stdlib_module_names.py /^def list_modules():$/;" f +list_modules_setup_extensions Tools/build/generate_stdlib_module_names.py /^def list_modules_setup_extensions(names):$/;" f +list_new_prealloc Objects/listobject.c /^list_new_prealloc(Py_ssize_t size)$/;" f file: +list_of_panels Modules/_curses_panel.c /^} list_of_panels;$/;" t typeref:struct:_list_of_panels file: +list_packages Tools/build/generate_stdlib_module_names.py /^def list_packages(names):$/;" f +list_pop Objects/clinic/listobject.c.h /^list_pop(PyListObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +list_pop_impl Objects/listobject.c /^list_pop_impl(PyListObject *self, Py_ssize_t index)$/;" f file: +list_preallocate_exact Objects/listobject.c /^list_preallocate_exact(PyListObject *self, Py_ssize_t size)$/;" f file: +list_public_methods Lib/xmlrpc/server.py /^def list_public_methods(obj):$/;" f +list_python_modules Tools/build/generate_stdlib_module_names.py /^def list_python_modules(names):$/;" f +list_regex Lib/test/test_regrtest.py /^ def list_regex(line_format, tests):$/;" f function:BaseTestCase.check_executed_tests +list_remove Objects/listobject.c /^list_remove(PyListObject *self, PyObject *value)$/;" f file: +list_repeat Objects/listobject.c /^list_repeat(PyListObject *a, Py_ssize_t n)$/;" f file: +list_repr Objects/listobject.c /^list_repr(PyListObject *v)$/;" f file: +list_resize Objects/listobject.c /^list_resize(PyListObject *self, Py_ssize_t newsize)$/;" f file: +list_returner Lib/test/test_tomllib/test_error.py /^ def list_returner(s: str) -> list:$/;" f function:TestError.test_invalid_parse_float +list_reverse Objects/clinic/listobject.c.h /^list_reverse(PyListObject *self, PyObject *Py_UNUSED(ignored))$/;" f +list_reverse_impl Objects/listobject.c /^list_reverse_impl(PyListObject *self)$/;" f file: +list_reverseiterator Lib/_collections_abc.py /^list_reverseiterator = type(iter(reversed([])))$/;" v +list_richcompare Objects/listobject.c /^list_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +list_rule Parser/parser.c /^list_rule(Parser *p)$/;" f file: +list_segments Lib/multiprocessing/managers.py /^ def list_segments(self, c):$/;" m class:SyncManager.SharedMemoryServer +list_slice Objects/listobject.c /^list_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh)$/;" f file: +list_sort Objects/clinic/listobject.c.h /^list_sort(PyListObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +list_sort Tools/ccbench/ccbench.py /^ def list_sort(l):$/;" f function:task_sort +list_sort_impl Objects/listobject.c /^list_sort_impl(PyListObject *self, PyObject *keyfunc, int reverse)$/;" f file: +list_stdlib_module_names Python/sysmodule.c /^list_stdlib_module_names(void)$/;" f file: +list_subscript Objects/listobject.c /^list_subscript(PyListObject* self, PyObject* item)$/;" f file: +list_tests Lib/test/libregrtest/main.py /^ def list_tests(self):$/;" m class:Regrtest +list_to_buffer Lib/test/test_asyncio/test_selector_events.py /^def list_to_buffer(l=()):$/;" f +list_to_tuple Python/intrinsics.c /^list_to_tuple(PyThreadState* unused, PyObject *v)$/;" f file: +list_traverse Objects/listobject.c /^list_traverse(PyListObject *o, visitproc visit, void *arg)$/;" f file: +list_type Parser/parser.c 240;" d file: +list_vectorcall Objects/listobject.c /^list_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +listargs Lib/test/test_argparse.py /^ def listargs(parser, args):$/;" f function:ParserTesterMetaclass.__init__ +listchildren Lib/idlelib/browser.py /^ def listchildren(self):$/;" m class:ModuleBrowserTreeItem +listcodecs Tools/unicode/listcodecs.py /^def listcodecs(dir):$/;" f +listcomp Lib/test/test_peepholer.py /^ def listcomp():$/;" f function:TestTranforms.test_assignment_idiom_in_comprehensions +listcomp_rule Parser/parser.c /^listcomp_rule(Parser *p)$/;" f file: +listcomp_type Parser/parser.c 249;" d file: +listdir Lib/test/test_unittest/test_discovery.py /^ def listdir(_):$/;" f function:TestDiscovery.setup_module_clash +listen Lib/logging/config.py /^def listen(port=DEFAULT_LOGGING_CONFIG_PORT, verify=None):$/;" f +listen Lib/test/mock_socket.py /^ def listen(self, backlog):$/;" m class:MockSocket +listen Lib/test/support/asyncore.py /^ def listen(self, num):$/;" m class:dispatcher +listen Lib/turtle.py /^ def listen(self, xdummy=None, ydummy=None):$/;" m class:TurtleScreen +listener Lib/telnetlib.py /^ def listener(self):$/;" m class:Telnet +listener Lib/test/test_ssl.py /^ def listener():$/;" f function:ThreadedTests.test_rude_shutdown +listenerMaker Lib/test/test_logging.py /^def listenerMaker(arg1, arg2, respect_handler_level=False):$/;" f +listener_client Lib/multiprocessing/managers.py /^listener_client = {$/;" v +listicons Lib/idlelib/tree.py /^def listicons(icondir=ICONDIR):$/;" f +listiter_dealloc Objects/listobject.c /^listiter_dealloc(_PyListIterObject *it)$/;" f file: +listiter_len Objects/listobject.c /^listiter_len(_PyListIterObject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +listiter_methods Objects/listobject.c /^static PyMethodDef listiter_methods[] = {$/;" v file: +listiter_next Objects/listobject.c /^listiter_next(_PyListIterObject *it)$/;" f file: +listiter_reduce Objects/listobject.c /^listiter_reduce(_PyListIterObject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +listiter_reduce_general Objects/listobject.c /^listiter_reduce_general(void *_it, int forward)$/;" f file: +listiter_setstate Objects/listobject.c /^listiter_setstate(_PyListIterObject *it, PyObject *state)$/;" f file: +listiter_traverse Objects/listobject.c /^listiter_traverse(_PyListIterObject *it, visitproc visit, void *arg)$/;" f file: +listkeywords Lib/pydoc.py /^ def listkeywords(self):$/;" f +listlen Objects/listobject.c /^ Py_ssize_t listlen; \/* len(input_list) - read only *\/$/;" m struct:s_MergeState file: +listmailcapfiles Lib/mailcap.py /^def listmailcapfiles():$/;" f +listmodules Lib/idlelib/pathbrowser.py /^ def listmodules(self, allnames):$/;" m class:DirBrowserTreeItem +listmodules Lib/pydoc.py /^ def listmodules(self, key=''):$/;" f +listp Lib/test/test_buffer.py /^def listp(lst):$/;" f +listreviter_dealloc Objects/listobject.c /^listreviter_dealloc(listreviterobject *it)$/;" f file: +listreviter_len Objects/listobject.c /^listreviter_len(listreviterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +listreviter_methods Objects/listobject.c /^static PyMethodDef listreviter_methods[] = {$/;" v file: +listreviter_next Objects/listobject.c /^listreviter_next(listreviterobject *it)$/;" f file: +listreviter_reduce Objects/listobject.c /^listreviter_reduce(listreviterobject *it, PyObject *Py_UNUSED(ignored))$/;" f file: +listreviter_setstate Objects/listobject.c /^listreviter_setstate(listreviterobject *it, PyObject *state)$/;" f file: +listreviter_traverse Objects/listobject.c /^listreviter_traverse(listreviterobject *it, visitproc visit, void *arg)$/;" f file: +listreviterobject Objects/listobject.c /^} listreviterobject;$/;" t typeref:struct:__anon749 file: +listselect_event Lib/idlelib/autocomplete_w.py /^ def listselect_event(self, event):$/;" m class:AutoCompleteWindow +listsymbols Lib/pydoc.py /^ def listsymbols(self):$/;" f +listtopics Lib/pydoc.py /^ def listtopics(self):$/;" f +listxattr Lib/test/test_os.py /^ def listxattr(path, *args):$/;" f function:ExtendedAttributeTests.test_fds +literal Modules/_sre/sre.h /^ PyObject *literal; \/* NULL if empty *\/$/;" m struct:__anon456::__anon457 +literal Modules/_sre/sre.h /^ PyObject *literal;$/;" m struct:__anon456 +literalScanners Modules/expat/xmltok.h /^ SCANNER literalScanners[XML_N_LITERAL_TYPES];$/;" m struct:encoding +literal_eval Lib/ast.py /^def literal_eval(node_or_string):$/;" f +literal_expr_rule Parser/parser.c /^literal_expr_rule(Parser *p)$/;" f file: +literal_expr_type Parser/parser.c 153;" d file: +literal_pattern_rule Parser/parser.c /^literal_pattern_rule(Parser *p)$/;" f file: +literal_pattern_type Parser/parser.c 152;" d file: +literals Include/internal/pycore_global_strings.h /^ } literals;$/;" m struct:_Py_global_strings typeref:struct:_Py_global_strings::__anon5 +little2_byteToAscii Modules/expat/xmltok.c /^little2_byteToAscii(const ENCODING *enc, const char *p) {$/;" f file: +little2_byteType Modules/expat/xmltok.c /^little2_byteType(const ENCODING *enc, const char *p) {$/;" f file: +little2_charMatches Modules/expat/xmltok.c /^little2_charMatches(const ENCODING *enc, const char *p, int c) {$/;" f file: +little2_encoding Modules/expat/xmltok.c /^static const struct normal_encoding little2_encoding$/;" v typeref:struct:normal_encoding file: +little2_encoding_ns Modules/expat/xmltok.c /^static const struct normal_encoding little2_encoding_ns$/;" v typeref:struct:normal_encoding file: +little2_isNameMin Modules/expat/xmltok.c /^little2_isNameMin(const ENCODING *enc, const char *p) {$/;" f file: +little2_isNmstrtMin Modules/expat/xmltok.c /^little2_isNmstrtMin(const ENCODING *enc, const char *p) {$/;" f file: +ljust Lib/collections/__init__.py /^ def ljust(self, width, *args):$/;" m class:UserString +ll Modules/_ctypes/ctypes.h /^ long long ll;$/;" m union:value +ll Modules/socketmodule.h /^ struct sockaddr_ll ll;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_ll +ll_callbacks Include/internal/pycore_atexit.h /^ atexit_callback *ll_callbacks;$/;" m struct:atexit_state +lldiv_t Lib/test/test_lib2to3/data/infinite_recursion.py /^class lldiv_t(Structure):$/;" c +lltrace_instruction Python/ceval.c /^lltrace_instruction(_PyInterpreterFrame *frame,$/;" f file: +lltrace_resume_frame Python/ceval.c /^lltrace_resume_frame(_PyInterpreterFrame *frame)$/;" f file: +ln Lib/_pydecimal.py /^ def ln(self, a):$/;" m class:Context +ln Lib/_pydecimal.py /^ def ln(self, context=None):$/;" m class:Decimal +ln Modules/_decimal/tests/deccheck.py /^ def ln(self, t):$/;" m class:SkipHandler +ln_schedule_prec Modules/_decimal/libmpdec/mpdecimal.c /^ln_schedule_prec(mpd_ssize_t klist[MPD_MAX_PREC_LOG2], mpd_ssize_t maxprec,$/;" f file: +lnapprox Modules/_decimal/libmpdec/mpdecimal.c /^static const uint16_t lnapprox[900] = {$/;" v file: +lno Tools/c-analyzer/c_parser/info.py /^ def lno(self):$/;" m class:ParsedItem +lno Tools/c-analyzer/c_parser/info.py /^ def lno(self):$/;" m class:SourceLine +lno_abs2rel Lib/test/test_bdb.py /^ def lno_abs2rel(self):$/;" m class:Tracer +lno_rel2abs Lib/test/test_bdb.py /^ def lno_rel2abs(self, fname, lineno):$/;" m class:Tracer +lo Modules/_decimal/libmpdec/mpdecimal.h /^ uint64_t lo;$/;" m struct:__anon342 +lo Modules/mathmodule.c /^typedef struct { double hi; double lo; double tiny; } TripleLength;$/;" m struct:__anon303 file: +lo Modules/mathmodule.c /^typedef struct{ double hi; double lo; } DoubleLength;$/;" m struct:__anon302 file: +lo$ Modules/_decimal/libmpdec/vcdiv64.asm /^lo$ = 32$/;" d +lo0bits Python/dtoa.c /^lo0bits(ULong *y)$/;" f file: +lo_next Include/cpython/code.h /^ const uint8_t *lo_next;$/;" m struct:_opaque +load Lib/http/cookiejar.py /^ def load(self, filename=None, ignore_discard=False, ignore_expires=False):$/;" m class:FileCookieJar +load Lib/http/cookies.py /^ def load(self, rawdata):$/;" m class:BaseCookie +load Lib/idlelib/idle_test/test_config.py /^ def load(self): # Test_add_option verifies that this works.$/;" m class:ChangesTest +load Lib/importlib/metadata/__init__.py /^ def load(self):$/;" m class:EntryPoint +load Lib/json/__init__.py /^def load(fp, *, cls=None, object_hook=None, parse_float=None,$/;" f +load Lib/lib2to3/pgen2/grammar.py /^ def load(self, filename):$/;" m class:Grammar +load Lib/pickle.py /^ def load(self):$/;" m class:_Unpickler +load Lib/plistlib.py /^def load(fp, *, fmt=None, dict_type=dict):$/;" f +load Lib/test/test_compile.py /^ def load():$/;" f function:TestSpecifics.test_uses_slice_instructions +load Lib/test/test_import/__init__.py /^ def load(self, name):$/;" m class:SinglephaseInitTests +load Lib/test/test_importlib/source/test_source_encoding.py /^ def load(self, loader):$/;" m class:EncodingTestPEP302 +load Lib/test/test_importlib/source/test_source_encoding.py /^ def load(self, loader):$/;" m class:EncodingTestPEP451 +load Lib/test/test_importlib/source/test_source_encoding.py /^ def load(self, loader, module_name):$/;" m class:LineEndingTestPEP302 +load Lib/test/test_importlib/source/test_source_encoding.py /^ def load(self, loader, module_name):$/;" m class:LineEndingTestPEP451 +load Lib/test/test_importlib/test_abc.py /^ def load(self, loader):$/;" m class:InspectLoaderLoadModuleTests +load Lib/test/test_pickle.py /^ load = staticmethod(pickle._load)$/;" v class:PyPickleTests +load Lib/tomllib/_parser.py /^def load(fp: BinaryIO, \/, *, parse_float: ParseFloat = float) -> dict[str, Any]:$/;" f +load Lib/tracemalloc.py /^ def load(filename):$/;" m class:Snapshot +load Lib/turtledemo/__main__.py /^ def load(entry=entry):$/;" f function:DemoWindow.makeLoadDemoMenu +load Lib/xml/dom/xmlbuilder.py /^ def load(self, uri):$/;" m class:DocumentLS +load Modules/_pickle.c /^load(PickleState *st, UnpicklerObject *self)$/;" f file: +load128_be Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h /^inline static uint128_t load128_be(uint8_t *b) {$/;" f +load128_be Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h 63;" d +load128_be0 Modules/_hacl/include/krml/lowstar_endianness.h 228;" d +load128_be_ Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h /^inline static void load128_be_(uint8_t *b, uint128_t *r) {$/;" f +load128_le Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h /^inline static uint128_t load128_le(uint8_t *b) {$/;" f +load128_le Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h 61;" d +load128_le0 Modules/_hacl/include/krml/lowstar_endianness.h 226;" d +load128_le_ Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h /^inline static void load128_le_(uint8_t *b, uint128_t *r) {$/;" f +load16 Modules/_hacl/include/krml/lowstar_endianness.h /^inline static uint16_t load16(uint8_t *b) {$/;" f +load16_be Modules/_hacl/include/krml/lowstar_endianness.h 194;" d +load16_be0 Modules/_hacl/include/krml/lowstar_endianness.h 213;" d +load16_le Modules/_hacl/include/krml/lowstar_endianness.h 192;" d +load16_le0 Modules/_hacl/include/krml/lowstar_endianness.h 211;" d +load32 Modules/_blake2/impl/blake2-impl.h /^static inline uint32_t load32( const void *src )$/;" f +load32 Modules/_hacl/include/krml/lowstar_endianness.h /^inline static uint32_t load32(uint8_t *b) {$/;" f +load32_be Modules/_hacl/include/krml/lowstar_endianness.h 199;" d +load32_be0 Modules/_hacl/include/krml/lowstar_endianness.h 218;" d +load32_le Modules/_hacl/include/krml/lowstar_endianness.h 197;" d +load32_le0 Modules/_hacl/include/krml/lowstar_endianness.h 216;" d +load48 Modules/_blake2/impl/blake2-impl.h /^static inline uint64_t load48( const void *src )$/;" f +load64 Modules/_blake2/impl/blake2-impl.h /^static inline uint64_t load64( const void *src )$/;" f +load64 Modules/_hacl/include/krml/lowstar_endianness.h /^inline static uint64_t load64(uint8_t *b) {$/;" f +load64_be Modules/_hacl/include/krml/lowstar_endianness.h 204;" d +load64_be0 Modules/_hacl/include/krml/lowstar_endianness.h 223;" d +load64_le Modules/_hacl/include/krml/lowstar_endianness.h 202;" d +load64_le0 Modules/_hacl/include/krml/lowstar_endianness.h 221;" d +loadTestsFromModule Lib/test/test_unittest/test_discovery.py /^ def loadTestsFromModule(module, pattern=None):$/;" f function:TestDiscovery.test_find_tests +loadTestsFromModule Lib/test/test_unittest/test_discovery.py /^ def loadTestsFromModule(module, pattern=None):$/;" f function:TestDiscovery.test_find_tests_default_calls_package_load_tests +loadTestsFromModule Lib/test/test_unittest/test_discovery.py /^ def loadTestsFromModule(module, pattern=None):$/;" f function:TestDiscovery.test_find_tests_socket +loadTestsFromModule Lib/test/test_unittest/test_discovery.py /^ def loadTestsFromModule(module, pattern=None):$/;" f function:TestDiscovery.test_find_tests_with_package +loadTestsFromModule Lib/test/test_unittest/test_program.py /^ def loadTestsFromModule(self, module):$/;" m class:Test_TestProgram.TestLoader +loadTestsFromModule Lib/unittest/loader.py /^ def loadTestsFromModule(self, module, *, pattern=None):$/;" m class:TestLoader +loadTestsFromName Lib/unittest/loader.py /^ def loadTestsFromName(self, name, module=None):$/;" m class:TestLoader +loadTestsFromNames Lib/test/test_unittest/test_program.py /^ def loadTestsFromNames(self, names, module):$/;" m class:Test_TestProgram.TestLoader +loadTestsFromNames Lib/unittest/loader.py /^ def loadTestsFromNames(self, names, module=None):$/;" m class:TestLoader +loadTestsFromTestCase Lib/unittest/loader.py /^ def loadTestsFromTestCase(self, testCaseClass):$/;" m class:TestLoader +loadXML Lib/xml/dom/xmlbuilder.py /^ def loadXML(self, source):$/;" m class:DocumentLS +load_a Lib/test/test_importlib/test_api.py /^ def load_a():$/;" f function:ImportModuleTests.test_loaded_once +load_additems Lib/pickle.py /^ def load_additems(self):$/;" m class:_Unpickler +load_additems Modules/_pickle.c /^load_additems(PickleState *state, UnpicklerObject *self)$/;" f file: +load_append Lib/pickle.py /^ def load_append(self):$/;" m class:_Unpickler +load_append Modules/_pickle.c /^load_append(PickleState *state, UnpicklerObject *self)$/;" f file: +load_appends Lib/pickle.py /^ def load_appends(self):$/;" m class:_Unpickler +load_appends Modules/_pickle.c /^load_appends(PickleState *state, UnpicklerObject *self)$/;" f file: +load_args_for_super Python/compile.c /^load_args_for_super(struct compiler *c, expr_ty e) {$/;" f file: +load_attr Lib/test/test_compile.py /^ def load_attr():$/;" f function:TestSpecifics.test_lineno_attribute +load_attr_fail_kind Python/specialize.c /^load_attr_fail_kind(DescriptorClassification kind)$/;" f file: +load_b Lib/test/test_importlib/test_api.py /^ def load_b():$/;" f function:ImportModuleTests.test_loaded_once +load_big5_map Tools/unicode/genmap_tchinese.py /^def load_big5_map():$/;" f +load_binbytes Lib/pickle.py /^ def load_binbytes(self):$/;" m class:_Unpickler +load_binbytes8 Lib/pickle.py /^ def load_binbytes8(self):$/;" m class:_Unpickler +load_binfloat Lib/pickle.py /^ def load_binfloat(self):$/;" m class:_Unpickler +load_binfloat Modules/_pickle.c /^load_binfloat(PickleState *state, UnpicklerObject *self)$/;" f file: +load_binget Lib/pickle.py /^ def load_binget(self):$/;" m class:_Unpickler +load_binget Modules/_pickle.c /^load_binget(PickleState *st, UnpicklerObject *self)$/;" f file: +load_binint Lib/pickle.py /^ def load_binint(self):$/;" m class:_Unpickler +load_binint Modules/_pickle.c /^load_binint(PickleState *state, UnpicklerObject *self)$/;" f file: +load_binint1 Lib/pickle.py /^ def load_binint1(self):$/;" m class:_Unpickler +load_binint1 Modules/_pickle.c /^load_binint1(PickleState *state, UnpicklerObject *self)$/;" f file: +load_binint2 Lib/pickle.py /^ def load_binint2(self):$/;" m class:_Unpickler +load_binint2 Modules/_pickle.c /^load_binint2(PickleState *state, UnpicklerObject *self)$/;" f file: +load_binintx Modules/_pickle.c /^load_binintx(UnpicklerObject *self, char *s, int size)$/;" f file: +load_binpersid Lib/pickle.py /^ def load_binpersid(self):$/;" m class:_Unpickler +load_binpersid Modules/_pickle.c /^load_binpersid(PickleState *st, UnpicklerObject *self)$/;" f file: +load_binput Lib/pickle.py /^ def load_binput(self):$/;" m class:_Unpickler +load_binput Modules/_pickle.c /^load_binput(PickleState *state, UnpicklerObject *self)$/;" f file: +load_binstring Lib/pickle.py /^ def load_binstring(self):$/;" m class:_Unpickler +load_binunicode Lib/pickle.py /^ def load_binunicode(self):$/;" m class:_Unpickler +load_binunicode8 Lib/pickle.py /^ def load_binunicode8(self):$/;" m class:_Unpickler +load_bool Modules/_pickle.c /^load_bool(PickleState *state, UnpicklerObject *self, PyObject *boolean)$/;" f file: +load_breakpoints Lib/idlelib/debugger.py /^ def load_breakpoints(self):$/;" m class:Debugger +load_build Lib/pickle.py /^ def load_build(self):$/;" m class:_Unpickler +load_build Modules/_pickle.c /^load_build(PickleState *st, UnpicklerObject *self)$/;" f file: +load_bytearray8 Lib/pickle.py /^ def load_bytearray8(self):$/;" m class:_Unpickler +load_compressed_keys Lib/test/test_zoneinfo/data/update_test_data.py /^def load_compressed_keys() -> typing.Dict[str, typing.List[str]]:$/;" f +load_counted_binbytes Modules/_pickle.c /^load_counted_binbytes(PickleState *state, UnpicklerObject *self, int nbytes)$/;" f file: +load_counted_binstring Modules/_pickle.c /^load_counted_binstring(PickleState *st, UnpicklerObject *self, int nbytes)$/;" f file: +load_counted_binunicode Modules/_pickle.c /^load_counted_binunicode(PickleState *state, UnpicklerObject *self, int nbytes)$/;" f file: +load_counted_bytearray Modules/_pickle.c /^load_counted_bytearray(PickleState *state, UnpicklerObject *self)$/;" f file: +load_counted_long Modules/_pickle.c /^load_counted_long(PickleState *st, UnpicklerObject *self, int size)$/;" f file: +load_counted_tuple Modules/_pickle.c /^load_counted_tuple(PickleState *state, UnpicklerObject *self, Py_ssize_t len)$/;" f file: +load_cp950_map Tools/unicode/genmap_tchinese.py /^def load_cp950_map():$/;" f +load_data Lib/zoneinfo/_common.py /^def load_data(fobj):$/;" f +load_data Modules/_zoneinfo.c /^load_data(zoneinfo_state *state, PyZoneInfo_ZoneInfo *self, PyObject *file_obj)$/;" f file: +load_default_certs Lib/ssl.py /^ def load_default_certs(self, purpose=Purpose.SERVER_AUTH):$/;" m class:SSLContext +load_dict Lib/idlelib/debugger.py /^ def load_dict(self, dict, force=0, rpc_client=None):$/;" m class:NamespaceViewer +load_dict Lib/pickle.py /^ def load_dict(self):$/;" m class:_Unpickler +load_dict Modules/_pickle.c /^load_dict(PickleState *st, UnpicklerObject *self)$/;" f file: +load_dup Lib/pickle.py /^ def load_dup(self):$/;" m class:_Unpickler +load_dup Modules/_pickle.c /^load_dup(PickleState *state, UnpicklerObject *self)$/;" f file: +load_dyld_shared_cache_contains_path Modules/_ctypes/callproc.c /^__attribute__((constructor)) void load_dyld_shared_cache_contains_path(void) {$/;" f +load_empty_dict Modules/_pickle.c /^load_empty_dict(PickleState *state, UnpicklerObject *self)$/;" f file: +load_empty_dictionary Lib/pickle.py /^ def load_empty_dictionary(self):$/;" m class:_Unpickler +load_empty_list Lib/pickle.py /^ def load_empty_list(self):$/;" m class:_Unpickler +load_empty_list Modules/_pickle.c /^load_empty_list(PickleState *state, UnpicklerObject *self)$/;" f file: +load_empty_set Lib/pickle.py /^ def load_empty_set(self):$/;" m class:_Unpickler +load_empty_set Modules/_pickle.c /^load_empty_set(PickleState *state, UnpicklerObject *self)$/;" f file: +load_empty_tuple Lib/pickle.py /^ def load_empty_tuple(self):$/;" m class:_Unpickler +load_ext1 Lib/pickle.py /^ def load_ext1(self):$/;" m class:_Unpickler +load_ext2 Lib/pickle.py /^ def load_ext2(self):$/;" m class:_Unpickler +load_ext4 Lib/pickle.py /^ def load_ext4(self):$/;" m class:_Unpickler +load_extension Lib/idlelib/editor.py /^ def load_extension(self, name):$/;" m class:EditorWindow +load_extension Modules/_pickle.c /^load_extension(PickleState *st, UnpicklerObject *self, int nbytes)$/;" f file: +load_extensions Lib/idlelib/configdialog.py /^ def load_extensions(self):$/;" m class:ExtPage +load_extensions Lib/idlelib/editor.py /^ def load_extensions(self):$/;" m class:EditorWindow +load_false Lib/pickle.py /^ def load_false(self):$/;" m class:_Unpickler +load_file Lib/modulefinder.py /^ def load_file(self, pathname):$/;" m class:ModuleFinder +load_float Lib/pickle.py /^ def load_float(self):$/;" m class:_Unpickler +load_float Modules/_pickle.c /^load_float(PickleState *state, UnpicklerObject *self)$/;" f file: +load_font_cfg Lib/idlelib/configdialog.py /^ def load_font_cfg(self):$/;" m class:FontPage +load_frame Lib/pickle.py /^ def load_frame(self):$/;" m class:_Unpickler +load_frame Lib/pickle.py /^ def load_frame(self, frame_size):$/;" m class:_Unframer +load_frame Modules/_pickle.c /^load_frame(PickleState *state, UnpicklerObject *self)$/;" f file: +load_frozenset Lib/pickle.py /^ def load_frozenset(self):$/;" m class:_Unpickler +load_frozenset Modules/_pickle.c /^load_frozenset(PickleState *state, UnpicklerObject *self)$/;" f file: +load_functools_lru_cache Modules/_sqlite/module.c /^load_functools_lru_cache(PyObject *module)$/;" f file: +load_get Lib/pickle.py /^ def load_get(self):$/;" m class:_Unpickler +load_get Modules/_pickle.c /^load_get(PickleState *st, UnpicklerObject *self)$/;" f file: +load_global Lib/pickle.py /^ def load_global(self):$/;" m class:_Unpickler +load_global Modules/_pickle.c /^load_global(PickleState *state, UnpicklerObject *self)$/;" f file: +load_grammar Lib/lib2to3/pgen2/driver.py /^def load_grammar(gt="Grammar.txt", gp=None,$/;" f +load_helplist Lib/idlelib/configdialog.py /^ def load_helplist(self):$/;" m class:HelpFrame +load_inst Lib/pickle.py /^ def load_inst(self):$/;" m class:_Unpickler +load_inst Modules/_pickle.c /^load_inst(PickleState *state, UnpicklerObject *self)$/;" f file: +load_int Lib/pickle.py /^ def load_int(self):$/;" m class:_Unpickler +load_int Modules/_pickle.c /^load_int(PickleState *state, UnpicklerObject *self)$/;" f file: +load_json Tools/peg_generator/scripts/download_pypi_packages.py /^def load_json(filename: str) -> Dict[Any, Any]:$/;" f +load_key_cfg Lib/idlelib/configdialog.py /^ def load_key_cfg(self):$/;" m class:KeysPage +load_keys_list Lib/idlelib/configdialog.py /^ def load_keys_list(self, keyset_name):$/;" m class:KeysPage +load_library Modules/_ctypes/callproc.c /^static PyObject *load_library(PyObject *self, PyObject *args)$/;" f file: +load_list Lib/pickle.py /^ def load_list(self):$/;" m class:_Unpickler +load_list Modules/_pickle.c /^load_list(PickleState *state, UnpicklerObject *self)$/;" f file: +load_long Lib/pickle.py /^ def load_long(self):$/;" m class:_Unpickler +load_long Modules/_pickle.c /^load_long(PickleState *state, UnpicklerObject *self)$/;" f file: +load_long1 Lib/pickle.py /^ def load_long1(self):$/;" m class:_Unpickler +load_long4 Lib/pickle.py /^ def load_long4(self):$/;" m class:_Unpickler +load_long_binget Lib/pickle.py /^ def load_long_binget(self):$/;" m class:_Unpickler +load_long_binget Modules/_pickle.c /^load_long_binget(PickleState *st, UnpicklerObject *self)$/;" f file: +load_long_binput Lib/pickle.py /^ def load_long_binput(self):$/;" m class:_Unpickler +load_long_binput Modules/_pickle.c /^load_long_binput(PickleState *state, UnpicklerObject *self)$/;" f file: +load_macros Tools/c-analyzer/distutils/msvc9compiler.py /^ def load_macros(self, version):$/;" m class:MacroExpander +load_macros Tools/c-analyzer/distutils/msvccompiler.py /^ def load_macros(self, version):$/;" m class:MacroExpander +load_mark Lib/pickle.py /^ def load_mark(self):$/;" m class:_Unpickler +load_mark Modules/_pickle.c /^load_mark(PickleState *state, UnpicklerObject *self)$/;" f file: +load_memoize Lib/pickle.py /^ def load_memoize(self):$/;" m class:_Unpickler +load_memoize Modules/_pickle.c /^load_memoize(PickleState *state, UnpicklerObject *self)$/;" f file: +load_method Lib/test/test_compile.py /^ def load_method():$/;" f function:TestSpecifics.test_lineno_attribute +load_module Lib/importlib/_abc.py /^ def load_module(self, fullname):$/;" m class:Loader +load_module Lib/importlib/_bootstrap.py /^ def load_module(cls, fullname):$/;" m class:FrozenImporter +load_module Lib/importlib/_bootstrap.py /^ load_module = classmethod(_load_module_shim)$/;" v class:BuiltinImporter +load_module Lib/importlib/_bootstrap_external.py /^ def load_module(self, fullname):$/;" m class:FileLoader +load_module Lib/importlib/_bootstrap_external.py /^ def load_module(self, fullname):$/;" m class:NamespaceLoader +load_module Lib/importlib/_bootstrap_external.py /^ def load_module(self, fullname):$/;" m class:_LoaderBasics +load_module Lib/importlib/abc.py /^ load_module = _bootstrap_external._LoaderBasics.load_module$/;" v class:InspectLoader +load_module Lib/modulefinder.py /^ def load_module(self, fqname, fp, pathname, file_info):$/;" m class:ModuleFinder +load_module Lib/test/test_importlib/builtin/test_loader.py /^ def load_module(self, name):$/;" m class:LoaderTests +load_module Lib/test/test_importlib/extension/test_loader.py /^ def load_module(self):$/;" m class:MultiPhaseExtensionModuleTests +load_module Lib/test/test_importlib/extension/test_loader.py /^ def load_module(self):$/;" m class:SinglePhaseExtensionModuleTests +load_module Lib/test/test_importlib/extension/test_loader.py /^ def load_module(self, fullname):$/;" m class:LoaderTests +load_module Lib/test/test_importlib/import_/test_api.py /^ def load_module(cls, fullname):$/;" m class:BadLoaderFinder +load_module Lib/test/test_importlib/test_spec.py /^ def load_module(self, name):$/;" m class:ModuleSpecMethodsTests.test_load_legacy_attributes_immutable.ImmutableLoader +load_module Lib/test/test_modulefinder.py /^ def load_module(self, fqname, fp, pathname, file_info):$/;" m class:ModuleFinderTest.test_load_module_api.CheckLoadModuleApi +load_module Lib/zipimport.py /^ def load_module(self, fullname):$/;" m class:zipimporter +load_module_by_name Lib/test/test_importlib/extension/test_loader.py /^ def load_module_by_name(self, fullname):$/;" m class:MultiPhaseExtensionModuleTests +load_module_by_name Lib/test/test_importlib/extension/test_loader.py /^ def load_module_by_name(self, fullname):$/;" m class:SinglePhaseExtensionModuleTests +load_newobj Lib/pickle.py /^ def load_newobj(self):$/;" m class:_Unpickler +load_newobj Modules/_pickle.c /^load_newobj(PickleState *state, UnpicklerObject *self, int use_kwargs)$/;" f file: +load_newobj_ex Lib/pickle.py /^ def load_newobj_ex(self):$/;" m class:_Unpickler +load_next_buffer Lib/pickle.py /^ def load_next_buffer(self):$/;" m class:_Unpickler +load_next_buffer Modules/_pickle.c /^load_next_buffer(PickleState *st, UnpicklerObject *self)$/;" f file: +load_none Lib/pickle.py /^ def load_none(self):$/;" m class:_Unpickler +load_none Modules/_pickle.c /^load_none(PickleState *state, UnpicklerObject *self)$/;" f file: +load_obj Lib/pickle.py /^ def load_obj(self):$/;" m class:_Unpickler +load_obj Modules/_pickle.c /^load_obj(PickleState *state, UnpicklerObject *self)$/;" f file: +load_package Lib/modulefinder.py /^ def load_package(self, fqname, pathname):$/;" m class:ModuleFinder +load_package_tests Lib/test/support/__init__.py /^def load_package_tests(pkg_dir, loader, standard_tests, pattern):$/;" f +load_packaged_grammar Lib/lib2to3/pgen2/driver.py /^def load_packaged_grammar(package, grammar_source):$/;" f +load_persid Lib/pickle.py /^ def load_persid(self):$/;" m class:_Unpickler +load_persid Modules/_pickle.c /^load_persid(PickleState *st, UnpicklerObject *self)$/;" f file: +load_pop Lib/pickle.py /^ def load_pop(self):$/;" m class:_Unpickler +load_pop Modules/_pickle.c /^load_pop(PickleState *state, UnpicklerObject *self)$/;" f file: +load_pop_mark Lib/pickle.py /^ def load_pop_mark(self):$/;" m class:_Unpickler +load_pop_mark Modules/_pickle.c /^load_pop_mark(PickleState *state, UnpicklerObject *self)$/;" f file: +load_proto Lib/pickle.py /^ def load_proto(self):$/;" m class:_Unpickler +load_proto Modules/_pickle.c /^load_proto(PickleState *state, UnpicklerObject *self)$/;" f file: +load_put Lib/pickle.py /^ def load_put(self):$/;" m class:_Unpickler +load_put Modules/_pickle.c /^load_put(PickleState *state, UnpicklerObject *self)$/;" f file: +load_readonly_buffer Lib/pickle.py /^ def load_readonly_buffer(self):$/;" m class:_Unpickler +load_readonly_buffer Modules/_pickle.c /^load_readonly_buffer(PickleState *state, UnpicklerObject *self)$/;" f file: +load_reduce Lib/pickle.py /^ def load_reduce(self):$/;" m class:_Unpickler +load_reduce Modules/_pickle.c /^load_reduce(PickleState *state, UnpicklerObject *self)$/;" f file: +load_setitem Lib/pickle.py /^ def load_setitem(self):$/;" m class:_Unpickler +load_setitem Modules/_pickle.c /^load_setitem(PickleState *state, UnpicklerObject *self)$/;" f file: +load_setitems Lib/pickle.py /^ def load_setitems(self):$/;" m class:_Unpickler +load_setitems Modules/_pickle.c /^load_setitems(PickleState *state, UnpicklerObject *self)$/;" f file: +load_shelled_cfg Lib/idlelib/configdialog.py /^ def load_shelled_cfg(self):$/;" m class:ShedPage +load_short_binbytes Lib/pickle.py /^ def load_short_binbytes(self):$/;" m class:_Unpickler +load_short_binstring Lib/pickle.py /^ def load_short_binstring(self):$/;" m class:_Unpickler +load_short_binunicode Lib/pickle.py /^ def load_short_binunicode(self):$/;" m class:_Unpickler +load_stack Lib/idlelib/debugger.py /^ def load_stack(self, stack, index=None):$/;" m class:StackViewer +load_stack_global Lib/pickle.py /^ def load_stack_global(self):$/;" m class:_Unpickler +load_stack_global Modules/_pickle.c /^load_stack_global(PickleState *st, UnpicklerObject *self)$/;" f file: +load_standard_extensions Lib/idlelib/editor.py /^ def load_standard_extensions(self):$/;" m class:EditorWindow +load_stats Lib/pstats.py /^ def load_stats(self, arg):$/;" m class:Stats +load_stop Lib/pickle.py /^ def load_stop(self):$/;" m class:_Unpickler +load_string Lib/pickle.py /^ def load_string(self):$/;" m class:_Unpickler +load_string Modules/_pickle.c /^load_string(PickleState *st, UnpicklerObject *self)$/;" f file: +load_tail Lib/modulefinder.py /^ def load_tail(self, q, tail):$/;" m class:ModuleFinder +load_test Lib/test/test_dis.py /^def load_test(x, y=0):$/;" f +load_tests Lib/idlelib/idle_test/__init__.py /^def load_tests(loader, standard_tests, pattern):$/;" f +load_tests Lib/test/datetimetester.py /^def load_tests(loader, standard_tests, pattern):$/;" f +load_tests Lib/test/test_asyncio/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_builtin.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_capi/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_cmd.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_code.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_collections.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_concurrent_futures/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_ctypes/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_datetime.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_decimal.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_deque.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_descrtut.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_difflib.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_doctest.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_email/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_email/torture_test.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_enum.py /^def load_tests(loader, tests, ignore):$/;" f +load_tests Lib/test/test_extcall.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_generators.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_genexps.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_getopt.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_heapq.py /^def load_tests(loader, tests, ignore):$/;" f +load_tests Lib/test/test_http_cookies.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_importlib/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_importlib/builtin/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_importlib/extension/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_importlib/frozen/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_importlib/import_/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_importlib/source/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_io.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_itertools.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_json/__init__.py /^def load_tests(loader, _, pattern):$/;" f +load_tests Lib/test/test_lib2to3/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_listcomps.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_math.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_metaclass.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_multiprocessing_fork/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_multiprocessing_forkserver/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_multiprocessing_spawn/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_pdb.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_peg_generator/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_pep646_syntax.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_pickle.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_pickletools.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_setcomps.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_sqlite3/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_statistics.py /^def load_tests(loader, tests, ignore):$/;" f +load_tests Lib/test/test_syntax.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_threading_local.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_tkinter/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_tomllib/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_tools/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_ttk/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_unittest/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_unittest/test_discovery.py /^ def load_tests(loader, tests, pattern):$/;" f function:TestDiscovery.test_find_tests_customize_via_package_pattern.Module.__init__ +load_tests Lib/test/test_unittest/test_discovery.py /^ def load_tests(loader, tests, pattern):$/;" f function:TestDiscovery.test_find_tests_default_calls_package_load_tests.Module.__init__ +load_tests Lib/test/test_unittest/test_discovery.py /^ def load_tests(loader, tests, pattern):$/;" f function:TestDiscovery.test_find_tests_with_package.Module.__init__ +load_tests Lib/test/test_unittest/test_discovery.py /^ def load_tests(self, loader, tests, pattern):$/;" m class:TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests.Module +load_tests Lib/test/test_unittest/test_loader.py /^ def load_tests(loader, tests, pattern):$/;" f function:Test_TestLoader.test_loadTestsFromModule__faulty_load_tests +load_tests Lib/test/test_unittest/test_loader.py /^ def load_tests(loader, tests, pattern):$/;" f function:Test_TestLoader.test_loadTestsFromModule__load_tests +load_tests Lib/test/test_unittest/test_loader.py /^ def load_tests(loader, tests, pattern):$/;" f function:Test_TestLoader.test_loadTestsFromModule__pattern +load_tests Lib/test/test_unittest/testmock/__init__.py /^def load_tests(*args):$/;" f +load_tests Lib/test/test_unittest/testmock/__main__.py /^def load_tests(loader, standard_tests, pattern):$/;" f +load_tests Lib/test/test_unpack.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_unpack_ex.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_weakref.py /^def load_tests(loader, tests, pattern):$/;" f +load_tests Lib/test/test_zipfile/__init__.py /^def load_tests(*args):$/;" f +load_tests_args Lib/test/test_unittest/test_discovery.py /^ load_tests_args = []$/;" v class:TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests.Module +load_tests_args Lib/test/test_unittest/test_discovery.py /^ load_tests_args = []$/;" v class:TestDiscovery.test_find_tests_customize_via_package_pattern.Module +load_tests_args Lib/test/test_unittest/test_discovery.py /^ load_tests_args = []$/;" v class:TestDiscovery.test_find_tests_default_calls_package_load_tests.Module +load_tests_args Lib/test/test_unittest/test_discovery.py /^ load_tests_args = []$/;" v class:TestDiscovery.test_find_tests_with_package.Module +load_teststring Lib/test/multibytecodec_support.py /^def load_teststring(name):$/;" f +load_theme_cfg Lib/idlelib/configdialog.py /^ def load_theme_cfg(self):$/;" m class:HighPage +load_timedelta Modules/_zoneinfo.c /^load_timedelta(zoneinfo_state *state, long seconds)$/;" f file: +load_tokens Tools/build/generate_token.py /^def load_tokens(path):$/;" f +load_transition_examples Lib/test/test_zoneinfo/test_zoneinfo.py /^ def load_transition_examples(cls, key):$/;" m class:ZoneDumpData +load_transition_examples Lib/test/test_zoneinfo/test_zoneinfo.py /^ def load_transition_examples(self, key):$/;" m class:DatetimeSubclassMixin +load_transition_examples Lib/test/test_zoneinfo/test_zoneinfo.py /^ def load_transition_examples(self, key):$/;" m class:ZoneInfoTest +load_transition_examples Lib/test/test_zoneinfo/test_zoneinfo.py /^ def load_transition_examples(self, key):$/;" m class:ZoneInfoV1Test +load_true Lib/pickle.py /^ def load_true(self):$/;" m class:_Unpickler +load_tuple Lib/pickle.py /^ def load_tuple(self):$/;" m class:_Unpickler +load_tuple Modules/_pickle.c /^load_tuple(PickleState *state, UnpicklerObject *self)$/;" f file: +load_tuple1 Lib/pickle.py /^ def load_tuple1(self):$/;" m class:_Unpickler +load_tuple2 Lib/pickle.py /^ def load_tuple2(self):$/;" m class:_Unpickler +load_tuple3 Lib/pickle.py /^ def load_tuple3(self):$/;" m class:_Unpickler +load_tzdata Lib/zoneinfo/_common.py /^def load_tzdata(key):$/;" f +load_unicode Lib/pickle.py /^ def load_unicode(self):$/;" m class:_Unpickler +load_unicode Modules/_pickle.c /^load_unicode(PickleState *state, UnpicklerObject *self)$/;" f file: +load_windows_cfg Lib/idlelib/configdialog.py /^ def load_windows_cfg(self):$/;" m class:WinPage +loaded Lib/idlelib/idle_test/test_config.py /^ loaded = {'main': {'Msec': {'mitem': 'mval'}},$/;" v class:ChangesTest +loaded Lib/test/test_importlib/test_lazy.py /^ loaded = None$/;" v class:TestingImporter +loaded Lib/test/test_importlib/test_spec.py /^ loaded = self.bootstrap._load(self.spec)$/;" v class:ModuleSpecMethodsTests.test_load_legacy_attributes_immutable.ImmutableLoader +loaded Lib/test/test_importlib/test_spec.py /^ loaded = self.bootstrap._load(self.spec)$/;" v class:ModuleSpecMethodsTests.test_load_replaced.ReplacingLoader +loader Lib/test/test_importlib/test_abc.py /^ def loader(self):$/;" m class:LoaderLoadModuleTests +loadfile Lib/idlelib/iomenu.py /^ def loadfile(self, filename):$/;" m class:IOBinding +loadfile Lib/turtledemo/__main__.py /^ def loadfile(self, filename):$/;" m class:DemoWindow +loadmap Tools/unicode/genmap_support.py /^def loadmap(fo, natcol=0, unicol=1, sbcs=0):$/;" f +loadmap_jisx0213 Tools/unicode/genmap_japanese.py /^def loadmap_jisx0213(fo):$/;" f +loads Lib/json/__init__.py /^def loads(s, *, cls=None, object_hook=None, parse_float=None,$/;" f +loads Lib/lib2to3/pgen2/grammar.py /^ def loads(self, pkl):$/;" m class:Grammar +loads Lib/multiprocessing/reduction.py /^ loads = pickle.loads$/;" v class:ForkingPickler +loads Lib/plistlib.py /^def loads(value, *, fmt=None, dict_type=dict):$/;" f +loads Lib/test/pickletester.py /^ def loads(data, **kwargs):$/;" f function:AbstractPickleModuleTests.test_dump_load_oob_buffers +loads Lib/test/test_ctypes/test_pickling.py /^ def loads(self, item):$/;" m class:PickleTest +loads Lib/test/test_json/__init__.py /^ loads = staticmethod(cjson.loads)$/;" v class:CTest +loads Lib/test/test_json/__init__.py /^ loads = staticmethod(pyjson.loads)$/;" v class:PyTest +loads Lib/test/test_pickle.py /^ def loads(self, buf, **kwds):$/;" m class:InMemoryPickleTests +loads Lib/test/test_pickle.py /^ def loads(self, buf, **kwds):$/;" m class:PersistentPicklerUnpicklerMixin +loads Lib/test/test_pickle.py /^ def loads(self, buf, **kwds):$/;" m class:PyPicklerTests +loads Lib/test/test_pickle.py /^ def loads(self, buf, **kwds):$/;" m class:PyUnpicklerTests +loads Lib/test/test_pickle.py /^ loads = staticmethod(pickle._loads)$/;" v class:PyPickleTests +loads Lib/test/test_pickletools.py /^ def loads(self, buf, **kwds):$/;" m class:OptimizedPickleTests +loads Lib/tomllib/_parser.py /^def loads(s: str, \/, *, parse_float: ParseFloat = float) -> dict[str, Any]: # noqa: C901$/;" f +loads Lib/xmlrpc/client.py /^def loads(data, use_datetime=False, use_builtin_types=False):$/;" f +loads Tools/build/umarshal.py /^def loads(data: bytes) -> Any:$/;" f +loadtk Lib/tkinter/__init__.py /^ def loadtk(self):$/;" m class:Tk +lobbest Lib/test/inspect_fodder.py /^async def lobbest(grenade):$/;" f +local Lib/_pydatetime.py /^ def local(u):$/;" f function:datetime._mktime +local Lib/_threading_local.py /^class local:$/;" c +local Modules/_datetimemodule.c /^local(long long u)$/;" f file: +local Modules/_decimal/_decimal.c /^ PyObject *local;$/;" m struct:__anon352 file: +localPart Modules/expat/xmlparse.c /^ const XML_Char *localPart;$/;" m struct:__anon610 file: +local_addr Lib/test/test_asyncio/test_base_events.py /^ local_addr=('127.0.0.1', 0), family=socket.AF_INET)$/;" v class:BaseEventLoopWithSelectorTests.test_create_datagram_endpoint_cant_bind.Err +local_clear Modules/_threadmodule.c /^local_clear(localobject *self)$/;" f file: +local_dealloc Modules/_threadmodule.c /^local_dealloc(localobject *self)$/;" f file: +local_deleted Lib/_threading_local.py /^ def local_deleted(_, key=key):$/;" f function:_localimpl.create_dict +local_dummy_type Modules/_threadmodule.c /^ PyTypeObject *local_dummy_type;$/;" m struct:__anon441 file: +local_dummy_type_members Modules/_threadmodule.c /^static PyMemberDef local_dummy_type_members[] = {$/;" v file: +local_dummy_type_slots Modules/_threadmodule.c /^static PyType_Slot local_dummy_type_slots[] = {$/;" v file: +local_dummy_type_spec Modules/_threadmodule.c /^static PyType_Spec local_dummy_type_spec = {$/;" v file: +local_fail Tools/clinic/clinic.py /^ def local_fail(should_be_there_but_isnt):$/;" f function:Language.validate.assert_only_one +local_february_name Lib/test/test_ssl.py /^ def local_february_name():$/;" f function:BasicSocketTests.test_cert_time_to_seconds_locale +local_getattro Modules/_threadmodule.c /^local_getattro(localobject *self, PyObject *name)$/;" f file: +local_monitors Include/cpython/code.h /^ _Py_LocalMonitors local_monitors;$/;" m struct:__anon229 +local_new Modules/_threadmodule.c /^local_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +local_part Lib/email/_header_value_parser.py /^ def local_part(self):$/;" m class:AddrSpec +local_part Lib/email/_header_value_parser.py /^ def local_part(self):$/;" m class:AngleAddr +local_part Lib/email/_header_value_parser.py /^ def local_part(self):$/;" m class:LocalPart +local_part Lib/email/_header_value_parser.py /^ def local_part(self):$/;" m class:Mailbox +local_part Lib/email/_header_value_parser.py /^ def local_part(self):$/;" m class:NameAddr +local_setattro Modules/_threadmodule.c /^local_setattro(localobject *self, PyObject *name, PyObject *v)$/;" f file: +local_timezone Modules/_datetimemodule.c /^local_timezone(PyDateTime_DateTime *utc_time)$/;" f file: +local_timezone_from_local Modules/_datetimemodule.c /^local_timezone_from_local(PyDateTime_DateTime *local_dt)$/;" f file: +local_timezone_from_timestamp Modules/_datetimemodule.c /^local_timezone_from_timestamp(time_t timestamp)$/;" f file: +local_to_seconds Modules/_datetimemodule.c /^local_to_seconds(int year, int month, int day,$/;" f file: +local_traverse Modules/_threadmodule.c /^local_traverse(localobject *self, visitproc visit, void *arg)$/;" f file: +local_type Modules/_threadmodule.c /^ PyTypeObject *local_type;$/;" m struct:__anon441 file: +local_type_members Modules/_threadmodule.c /^static PyMemberDef local_type_members[] = {$/;" v file: +local_type_slots Modules/_threadmodule.c /^static PyType_Slot local_type_slots[] = {$/;" v file: +local_type_spec Modules/_threadmodule.c /^static PyType_Spec local_type_spec = {$/;" v file: +local_union Python/instrumentation.c /^local_union(_Py_GlobalMonitors a, _Py_LocalMonitors b)$/;" f file: +local_variable_context Tools/peg_generator/pegen/parser_generator.py /^ def local_variable_context(self) -> Iterator[None]:$/;" m class:ParserGenerator +local_variable_names Tools/peg_generator/pegen/parser_generator.py /^ def local_variable_names(self) -> List[str]:$/;" m class:ParserGenerator +localcall Lib/idlelib/rpc.py /^ def localcall(self, seq, request):$/;" m class:SocketIO +localcontext Lib/_pydecimal.py /^def localcontext(ctx=None, **kwargs):$/;" f +localdict Modules/_threadmodule.c /^ PyObject *localdict; \/* Borrowed reference! *\/$/;" m struct:__anon444 file: +localdummy_dealloc Modules/_threadmodule.c /^localdummy_dealloc(localdummyobject *self)$/;" f file: +localdummyobject Modules/_threadmodule.c /^} localdummyobject;$/;" t typeref:struct:__anon444 file: +locale_alias Lib/locale.py /^locale_alias = {$/;" v +locale_clear Modules/_localemodule.c /^locale_clear(PyObject *module)$/;" f file: +locale_decode_monetary Modules/_localemodule.c /^locale_decode_monetary(PyObject *dict, struct lconv *lc)$/;" f file: +locale_encoding_alias Lib/locale.py /^locale_encoding_alias = {$/;" v +locale_free Modules/_localemodule.c /^locale_free(PyObject *module)$/;" f file: +locale_is_ascii Modules/_localemodule.c /^locale_is_ascii(const char *str)$/;" f file: +locale_list Modules/_decimal/tests/formathelper.py /^ if not loc.startswith('#')]$/;" v +locale_list Modules/_decimal/tests/formathelper.py /^ locale_list = locale_list.decode('latin-1')$/;" v +locale_list Modules/_decimal/tests/formathelper.py /^ locale_list = locale_list.decode()$/;" v +locale_list Modules/_decimal/tests/formathelper.py /^ locale_list = locale_list.split('\\n')$/;" v +locale_list Modules/_decimal/tests/formathelper.py /^ locale_list = subprocess.Popen(["locale", "-a"],$/;" v +locale_list Modules/_decimal/tests/formathelper.py /^ locale_list = ['C']$/;" v +locale_list Modules/_decimal/tests/formathelper.py /^ locale_list = windows_lang_strings$/;" v +locale_name Python/pylifecycle.c /^ const char *locale_name; \/* The locale to try as a coercion target *\/$/;" m struct:_CandidateLocale file: +locale_traverse Modules/_localemodule.c /^locale_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +locale_type Lib/test/test_locale.py /^ locale_type = locale.LC_ALL$/;" v class:TestEnUSCollation +locale_type Lib/test/test_locale.py /^ locale_type = locale.LC_NUMERIC$/;" v class:TestNumberFormatting +localeconv Lib/locale.py /^ def localeconv():$/;" f function:_strxfrm +localeconv Lib/locale.py /^def localeconv():$/;" f +localhost Lib/test/test_timeout.py /^ localhost = socket_helper.HOST$/;" v class:TimeoutTestCase +localhost Lib/urllib/request.py /^def localhost():$/;" f +localize Lib/locale.py /^def localize(string, grouping=False, monetary=False):$/;" f +localobject Modules/_threadmodule.c /^} localobject;$/;" t typeref:struct:__anon445 file: +locals Python/bytecodes.c /^static PyObject *aiter, *awaitable, *iterable, *w, *exc_value, *bc, *locals;$/;" v file: +localsplus Include/internal/pycore_frame.h /^ PyObject *localsplus[1];$/;" m struct:_PyInterpreterFrame +localspluskinds Include/internal/pycore_code.h /^ PyObject *localspluskinds; \/\/ Bytes object, one byte per variable$/;" m struct:_PyCodeConstructor +localsplusnames Include/internal/pycore_code.h /^ PyObject *localsplusnames; \/\/ Tuple of strings$/;" m struct:_PyCodeConstructor +localsviewer Lib/idlelib/debugger.py /^ localsviewer = None$/;" v class:Debugger +localtime Lib/email/utils.py /^def localtime(dt=None, isdst=None):$/;" f +localtrace_count Lib/trace.py /^ def localtrace_count(self, frame, why, arg):$/;" m class:Trace +localtrace_trace Lib/trace.py /^ def localtrace_trace(self, frame, why, arg):$/;" m class:Trace +localtrace_trace_and_count Lib/trace.py /^ def localtrace_trace_and_count(self, frame, why, arg):$/;" m class:Trace +locate Lib/importlib/metadata/__init__.py /^ def locate(self):$/;" m class:PackagePath +locate Lib/pydoc.py /^def locate(path, forceload=0):$/;" f +locate_all_pythons PC/launcher.c /^locate_all_pythons(void)$/;" f file: +locate_file Lib/importlib/metadata/__init__.py /^ def locate_file(self, path):$/;" m class:Distribution +locate_file Lib/importlib/metadata/__init__.py /^ def locate_file(self, path):$/;" m class:PathDistribution +locate_python PC/launcher.c /^locate_python(wchar_t * wanted_ver, BOOL from_shebang)$/;" f file: +locate_pythons_for_key PC/launcher.c /^locate_pythons_for_key(HKEY root, REGSAM flags)$/;" f file: +locate_store_pythons PC/launcher.c /^locate_store_pythons(void)$/;" f file: +locate_venv_python PC/launcher.c /^locate_venv_python(void)$/;" f file: +locate_wrapped_script PC/launcher.c /^locate_wrapped_script(void)$/;" f file: +location Lib/idlelib/rpc.py /^ location = "#C" # Client$/;" v class:RPCClient +location Lib/idlelib/rpc.py /^ location = "#S" # Server$/;" v class:RPCHandler +location Python/assemble.c /^typedef _PyCompilerSrcLocation location;$/;" t file: +location Python/compile.c /^typedef _PyCompilerSrcLocation location;$/;" t file: +location Python/flowgraph.c /^typedef _PyCompilerSrcLocation location;$/;" t file: +location_checks PC/launcher.c /^static wchar_t * location_checks[] = {$/;" v file: +location_is_after Python/compile.c /^location_is_after(location loc1, location loc2) {$/;" f file: +location_pointer Python/assemble.c /^location_pointer(struct assembler* a)$/;" f file: +locationstyle Tools/i18n/pygettext.py /^ locationstyle = GNU$/;" v class:main.Options +lock Include/cpython/pythread.h /^PyAPI_FUNC(int) _PyThread_at_fork_reinit(PyThread_type_lock *lock);$/;" v +lock Include/internal/pycore_ceval_state.h /^ PyThread_type_lock lock;$/;" m struct:_pending_calls +lock Include/internal/pycore_import.h /^ } lock;$/;" m struct:_import_state typeref:struct:_import_state::__anon137 +lock Include/internal/pycore_unicodeobject.h /^ PyThread_type_lock lock;$/;" m struct:_Py_unicode_runtime_ids +lock Lib/mailbox.py /^ def lock(self):$/;" m class:MH +lock Lib/mailbox.py /^ def lock(self):$/;" m class:Mailbox +lock Lib/mailbox.py /^ def lock(self):$/;" m class:Maildir +lock Lib/mailbox.py /^ def lock(self):$/;" m class:_singlefileMailbox +lock Modules/_blake2/blake2b_impl.c /^ PyThread_type_lock lock;$/;" m struct:__anon539 file: +lock Modules/_blake2/blake2s_impl.c /^ PyThread_type_lock lock;$/;" m struct:__anon537 file: +lock Modules/_bz2module.c /^ PyThread_type_lock lock;$/;" m struct:__anon465 file: +lock Modules/_bz2module.c /^ PyThread_type_lock lock;$/;" m struct:__anon466 file: +lock Modules/_hashopenssl.c /^ PyThread_type_lock lock; \/* OpenSSL context lock *\/$/;" m struct:__anon562 file: +lock Modules/_hashopenssl.c /^ PyThread_type_lock lock; \/* HMAC context lock *\/$/;" m struct:__anon563 file: +lock Modules/_io/bufferedio.c /^ PyThread_type_lock lock;$/;" m struct:__anon435 file: +lock Modules/_lzmamodule.c /^ PyThread_type_lock lock;$/;" m struct:__anon295 file: +lock Modules/_lzmamodule.c /^ PyThread_type_lock lock;$/;" m struct:__anon296 file: +lock Modules/_queuemodule.c /^ PyThread_type_lock lock;$/;" m struct:__anon292 file: +lock Modules/md5module.c /^ PyThread_type_lock lock;$/;" m struct:__anon427 file: +lock Modules/sha1module.c /^ PyThread_type_lock lock;$/;" m struct:__anon467 file: +lock Modules/sha2module.c /^ PyThread_type_lock lock;$/;" m struct:__anon631 file: +lock Modules/sha2module.c /^ PyThread_type_lock lock;$/;" m struct:__anon632 file: +lock Modules/sha3module.c /^ PyThread_type_lock lock;$/;" m struct:__anon298 file: +lock Modules/zlibmodule.c /^ PyThread_type_lock lock;$/;" m struct:__anon306 file: +lock Modules/zlibmodule.c /^ PyThread_type_lock lock;$/;" m struct:__anon307 file: +lock_PyThread_acquire_lock Modules/_threadmodule.c /^lock_PyThread_acquire_lock(lockobject *self, PyObject *args, PyObject *kwds)$/;" f file: +lock_PyThread_release_lock Modules/_threadmodule.c /^lock_PyThread_release_lock(lockobject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +lock__at_fork_reinit Modules/_threadmodule.c /^lock__at_fork_reinit(lockobject *self, PyObject *Py_UNUSED(args))$/;" f file: +lock_acquire_parse_args Modules/_threadmodule.c /^lock_acquire_parse_args(PyObject *args, PyObject *kwds,$/;" f file: +lock_dealloc Modules/_threadmodule.c /^lock_dealloc(lockobject *self)$/;" f file: +lock_holder_thread_fn Lib/test/test_logging.py /^ def lock_holder_thread_fn():$/;" f function:HandlerTest.test_post_fork_child_no_deadlock +lock_lock Modules/_threadmodule.c /^ PyThread_type_lock lock_lock;$/;" m struct:__anon442 file: +lock_locked_lock Modules/_threadmodule.c /^lock_locked_lock(lockobject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +lock_methods Modules/_threadmodule.c /^static PyMethodDef lock_methods[] = {$/;" v file: +lock_released Python/thread_pthread.h /^ pthread_cond_t lock_released;$/;" m struct:__anon692 +lock_repr Modules/_threadmodule.c /^lock_repr(lockobject *self)$/;" f file: +lock_traverse Modules/_threadmodule.c /^lock_traverse(lockobject *self, visitproc visit, void *arg)$/;" f file: +lock_type Modules/_threadmodule.c /^ PyTypeObject *lock_type;$/;" m struct:__anon441 file: +lock_type_members Modules/_threadmodule.c /^static PyMemberDef lock_type_members[] = {$/;" v file: +lock_type_slots Modules/_threadmodule.c /^static PyType_Slot lock_type_slots[] = {$/;" v file: +lock_type_spec Modules/_threadmodule.c /^static PyType_Spec lock_type_spec = {$/;" v file: +locked Include/internal/pycore_gil.h /^ _Py_atomic_int locked;$/;" m struct:_gil_runtime_state +locked Lib/asyncio/locks.py /^ def locked(self):$/;" m class:Lock +locked Lib/asyncio/locks.py /^ def locked(self):$/;" m class:Semaphore +locked Lib/test/test_contextlib.py /^ def locked():$/;" f function:LockContextTestCase.testWithBoundedSemaphore +locked Lib/test/test_contextlib.py /^ def locked():$/;" f function:LockContextTestCase.testWithCondition +locked Lib/test/test_contextlib.py /^ def locked():$/;" f function:LockContextTestCase.testWithSemaphore +locked Modules/_queuemodule.c /^ int locked;$/;" m struct:__anon292 file: +locked Modules/_sqlite/cursor.h /^ int locked;$/;" m struct:__anon358 +locked Modules/_threadmodule.c /^ char locked; \/* for sanity checking *\/$/;" m struct:__anon442 file: +locked Python/thread_nt.h /^ int locked;$/;" m struct:_NRMUTEX +locked Python/thread_pthread.h /^ char locked; \/* 0=unlocked, 1=locked *\/$/;" m struct:__anon692 +locked_EVP_MD_CTX_copy Modules/_hashopenssl.c /^locked_EVP_MD_CTX_copy(EVP_MD_CTX *new_ctx_p, EVPobject *self)$/;" f file: +locked_HMAC_CTX_copy Modules/_hashopenssl.c /^locked_HMAC_CTX_copy(HMAC_CTX *new_ctx_p, HMACobject *self)$/;" f file: +lockit Lib/test/test_asyncio/test_locks.py /^ async def lockit():$/;" f function:LockTests.test_cancel_release_race +lockit Lib/test/test_asyncio/test_locks.py /^ async def lockit(name, blocker):$/;" f function:LockTests.test_cancel_race +lockobject Modules/_threadmodule.c /^} lockobject;$/;" t typeref:struct:__anon442 file: +locktype Lib/test/test_importlib/test_locks.py /^ locktype = classmethod(lambda cls: cls.LockType("some_lock"))$/;" v class:ModuleLockAsRLockTests +locktype Lib/test/test_thread.py /^ locktype = thread.allocate_lock$/;" v class:LockTests +locktype Lib/test/test_threading.py /^ locktype = staticmethod(threading.Condition)$/;" v class:ConditionAsRLockTests +locktype Lib/test/test_threading.py /^ locktype = staticmethod(threading.Lock)$/;" v class:LockTests +locktype Lib/test/test_threading.py /^ locktype = staticmethod(threading._CRLock)$/;" v class:CRLockTests +locktype Lib/test/test_threading.py /^ locktype = staticmethod(threading._PyRLock)$/;" v class:PyRLockTests +log Lib/cgi.py /^log = initlog # The current logging function$/;" v +log Lib/logging/__init__.py /^ def log(self, level, msg, *args, **kwargs):$/;" m class:Logger +log Lib/logging/__init__.py /^ def log(self, level, msg, *args, **kwargs):$/;" m class:LoggerAdapter +log Lib/logging/__init__.py /^def log(level, msg, *args, **kwargs):$/;" f +log Lib/test/libregrtest/main.py /^ def log(self, line=''):$/;" m class:Regrtest +log Lib/test/support/asyncore.py /^ def log(self, message):$/;" m class:dispatcher +log Lib/test/test_sqlite3/test_regression.py /^ def log(self, *args):$/;" m class:RegressionTests.test_bpo37347.Printer +log Modules/_decimal/tests/deccheck.py /^def log(fmt, args=None):$/;" f +log Tools/c-analyzer/distutils/log.py /^ def log(self, level, msg, *args):$/;" m class:Log +log Tools/c-analyzer/distutils/log.py /^log = _global_log.log$/;" v +log Tools/ssl/multissltests.py /^log = logging.getLogger("multissl")$/;" v +log10 Lib/_pydecimal.py /^ def log10(self, a):$/;" m class:Context +log10 Lib/_pydecimal.py /^ def log10(self, context=None):$/;" m class:Decimal +log10 Modules/_decimal/tests/deccheck.py /^ def log10(self, t):$/;" m class:SkipHandler +logAsyncioTasks Lib/logging/__init__.py /^logAsyncioTasks = True$/;" v +logMultiprocessing Lib/logging/__init__.py /^logMultiprocessing = True$/;" v +logProcesses Lib/logging/__init__.py /^logProcesses = True$/;" v +logThreads Lib/logging/__init__.py /^logThreads = True$/;" v +log_at_all_levels Lib/test/test_logging.py /^ def log_at_all_levels(self, logger):$/;" m class:CustomLevelsAndFiltersTest +log_date_time_string Lib/http/server.py /^ def log_date_time_string(self):$/;" m class:BaseHTTPRequestHandler +log_debug Lib/lib2to3/refactor.py /^ def log_debug(self, msg, *args):$/;" m class:RefactoringTool +log_debug PC/layout/support/logging.py /^def log_debug(msg, *args, **kwargs):$/;" f +log_error Lib/http/server.py /^ def log_error(self, format, *args):$/;" m class:BaseHTTPRequestHandler +log_error Lib/lib2to3/main.py /^ def log_error(self, msg, *args, **kwargs):$/;" m class:StdoutRefactoringTool +log_error Lib/lib2to3/refactor.py /^ def log_error(self, msg, *args, **kwds):$/;" m class:RefactoringTool +log_error PC/layout/support/logging.py /^def log_error(msg, *args, **kwargs):$/;" f +log_exception Lib/wsgiref/handlers.py /^ def log_exception(self,exc_info):$/;" m class:BaseHandler +log_exception PC/layout/support/logging.py /^def log_exception(msg, *args, **kwargs):$/;" f +log_exceptions Lib/test/test_queue.py /^ def log_exceptions(f):$/;" f function:BaseSimpleQueueTest.run_threads +log_finder Lib/test/test_importlib/import_/test_meta_path.py /^ def log_finder(self, importer):$/;" m class:CallSignature +log_foo Lib/test/test_unittest/test_case.py /^log_foo = logging.getLogger('foo')$/;" v +log_foobar Lib/test/test_unittest/test_case.py /^log_foobar = logging.getLogger('foo.bar')$/;" v +log_format Lib/test/test_logging.py /^ log_format = "%(name)s -> %(levelname)s: %(message)s"$/;" v class:BaseTest +log_fp PC/launcher.c /^static FILE * log_fp = NULL;$/;" v file: +log_fp PC/launcher2.c /^static FILE * log_fp = NULL;$/;" v file: +log_info Lib/test/support/asyncore.py /^ def log_info(self, message, type='info'):$/;" m class:dispatcher +log_info PC/layout/support/logging.py /^def log_info(msg, *args, **kwargs):$/;" f +log_match Tools/c-analyzer/c_parser/parser/_common.py /^def log_match(group, m, depth_before=None, depth_after=None):$/;" f +log_message Lib/http/server.py /^ def log_message(self, format, *args):$/;" m class:BaseHTTPRequestHandler +log_message Lib/lib2to3/fixer_base.py /^ def log_message(self, message):$/;" m class:BaseFix +log_message Lib/lib2to3/refactor.py /^ def log_message(self, msg, *args):$/;" m class:RefactoringTool +log_message Lib/pydoc.py /^ def log_message(self, *args):$/;" m class:_start_server.DocHandler +log_message Lib/test/ssl_servers.py /^ def log_message(self, format, *args):$/;" m class:RootedHTTPRequestHandler +log_message Lib/test/test_asyncio/utils.py /^ def log_message(self, format, *args):$/;" m class:SilentWSGIRequestHandler +log_message Lib/test/test_httpservers.py /^ def log_message(self, *args):$/;" m class:NoLogRequestHandler +log_message Lib/test/test_httpservers.py /^ def log_message(self, format, *args):$/;" m class:SocketlessRequestHandler +log_message Lib/test/test_logging.py /^ def log_message(self, format, *args):$/;" m class:TestHTTPServer.__init__.DelegatingHTTPRequestHandler +log_message Lib/test/test_robotparser.py /^ def log_message(self, format, *args):$/;" m class:RobotHandler +log_message Lib/test/test_urllib2_localnet.py /^ def log_message(self, *args):$/;" m class:GetRequestHandler.FakeHTTPRequestHandler +log_message Lib/test/test_urllib2_localnet.py /^ def log_message(self, format, *args):$/;" m class:BasicAuthHandler +log_message Lib/test/test_urllib2_localnet.py /^ def log_message(self, format, *args):$/;" m class:FakeProxyHandler +log_message Lib/test/test_xmlrpc.py /^ def log_message(self, format, *args):$/;" m class:XMLRPCTestCase.test_keepalive_disconnect.RequestHandler +log_n_wait Lib/test/test_concurrent_futures/test_thread_pool.py /^ def log_n_wait(ident):$/;" f function:ThreadPoolExecutorTest.test_executor_map_current_future_cancel +log_operation Lib/test/test_binop.py /^ def log_operation(self, *args):$/;" m class:OperationLogger +log_quux Lib/test/test_unittest/test_case.py /^log_quux = logging.getLogger('quux')$/;" v +log_record Lib/test/test_logging.py /^ async def log_record():$/;" f function:BasicConfigTest.test_log_taskName +log_request Lib/http/server.py /^ def log_request(self, code='-', size='-'):$/;" m class:BaseHTTPRequestHandler +log_request Lib/test/ssl_servers.py /^ def log_request(self, format, *args):$/;" m class:StatsRequestHandler +log_request Lib/xmlrpc/server.py /^ def log_request(self, code='-', size='-'):$/;" m class:SimpleXMLRPCRequestHandler +log_special_values Modules/cmathmodule.c /^static Py_complex log_special_values[7][7];$/;" v file: +log_to_stderr Lib/multiprocessing/context.py /^ def log_to_stderr(self, level=None):$/;" m class:BaseContext +log_to_stderr Lib/multiprocessing/util.py /^def log_to_stderr(level=None):$/;" f +log_warning PC/layout/support/logging.py /^def log_warning(msg, *args, **kwargs):$/;" f +logb Lib/_pydecimal.py /^ def logb(self, a):$/;" m class:Context +logb Lib/_pydecimal.py /^ def logb(self, context=None):$/;" m class:Decimal +logfile Lib/cgi.py /^logfile = "" # Filename to log to, if not empty$/;" v +logfp Lib/cgi.py /^logfp = None # File object to log to, if not None$/;" v +logger Doc/tools/extensions/glossary_search.py /^logger = logging.getLogger(__name__)$/;" v +logger Doc/tools/extensions/pyspecific.py /^ def logger(self):$/;" m class:AuditEvent +logger Lib/asyncio/log.py /^logger = logging.getLogger(__package__)$/;" v +logger Lib/http/cookiejar.py /^logger = None$/;" v +logger Lib/test/test_syslog.py /^ def logger():$/;" f function:Test.test_syslog_threaded +logger Lib/venv/__init__.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/build/check_extension_modules.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/c_analyzer/__main__.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/c_common/scriptutil.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/c_common/strutil.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/c_parser/__main__.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/c_parser/preprocessor/__init__.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/c_parser/preprocessor/__main__.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/c_parser/preprocessor/common.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/cpython/__main__.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/c-analyzer/cpython/_capi.py /^logger = logging.getLogger(__name__)$/;" v +logger Tools/peg_generator/pegen/parser.py /^def logger(method: F) -> F:$/;" f +logger Tools/wasm/wasm_build.py /^logger = logging.getLogger("wasm_build")$/;" v +logger_wrapper Tools/peg_generator/pegen/parser.py /^ def logger_wrapper(self: P, *args: object) -> T:$/;" f function:logger +loghelper Modules/mathmodule.c /^loghelper(PyObject* arg, double (*func)(double))$/;" f file: +logical_and Lib/_pydecimal.py /^ def logical_and(self, a, b):$/;" m class:Context +logical_and Lib/_pydecimal.py /^ def logical_and(self, other, context=None):$/;" m class:Decimal +logical_bin_incr_digits Modules/_decimal/tests/randdec.py /^def logical_bin_incr_digits(prec, itr):$/;" f +logical_invert Lib/_pydecimal.py /^ def logical_invert(self, a):$/;" m class:Context +logical_invert Lib/_pydecimal.py /^ def logical_invert(self, context=None):$/;" m class:Decimal +logical_or Lib/_pydecimal.py /^ def logical_or(self, a, b):$/;" m class:Context +logical_or Lib/_pydecimal.py /^ def logical_or(self, other, context=None):$/;" m class:Decimal +logical_un_incr_digits Modules/_decimal/tests/randdec.py /^def logical_un_incr_digits(prec, itr):$/;" f +logical_xor Lib/_pydecimal.py /^ def logical_xor(self, a, b):$/;" m class:Context +logical_xor Lib/_pydecimal.py /^ def logical_xor(self, other, context=None):$/;" m class:Decimal +login Lib/ftplib.py /^ def login(self, user='', passwd='', acct='', secure=True):$/;" m class:.FTP_TLS +login Lib/ftplib.py /^ def login(self, user = '', passwd = '', acct = ''):$/;" m class:FTP +login Lib/imaplib.py /^ def login(self, user, password):$/;" m class:IMAP4 +login Lib/nntplib.py /^ def login(self, user=None, password=None, usenetrc=True):$/;" m class:NNTP +login Lib/smtplib.py /^ def login(self, user, password, *, initial_response_ok=True):$/;" m class:SMTP +login_cram_md5 Lib/imaplib.py /^ def login_cram_md5(self, user, password):$/;" m class:IMAP4 +lognormvariate Lib/random.py /^ def lognormvariate(self, mu, sigma):$/;" m class:Random +lognormvariate Lib/random.py /^lognormvariate = _inst.lognormvariate$/;" v +logo Lib/test/test_urllibnet.py /^ logo = "http:\/\/www.pythontest.net\/"$/;" v class:urlretrieveNetworkTests +logout Lib/imaplib.py /^ def logout(self):$/;" m class:IMAP4 +logpi Modules/mathmodule.c /^static const double logpi = 1.144729885849400174143427351353058711647;$/;" v file: +long1 Lib/pickletools.py /^long1 = ArgumentDescriptor($/;" v +long4 Lib/pickletools.py /^long4 = ArgumentDescriptor($/;" v +longMessage Lib/test/test_email/test_policy.py /^ longMessage = True$/;" v class:PolicyAPITests +longMessage Lib/test/test_unittest/test_assertions.py /^ longMessage = False$/;" v class:TestLongMessage.setUp.TestableTestFalse +longMessage Lib/test/test_unittest/test_assertions.py /^ longMessage = True$/;" v class:TestLongMessage.setUp.TestableTestTrue +longMessage Lib/unittest/case.py /^ longMessage = True$/;" v class:TestCase +long_abs Objects/longobject.c /^long_abs(PyLongObject *v)$/;" f file: +long_add Objects/longobject.c /^long_add(PyLongObject *a, PyLongObject *b)$/;" f file: +long_add_would_overflow Modules/mathmodule.c /^long_add_would_overflow(long a, long b)$/;" f file: +long_and Objects/longobject.c /^long_and(PyObject *a, PyObject *b)$/;" f file: +long_as_flags Modules/_decimal/_decimal.c /^long_as_flags(PyObject *v)$/;" f file: +long_as_number Objects/longobject.c /^static PyNumberMethods long_as_number = {$/;" v file: +long_bitwise Objects/longobject.c /^long_bitwise(PyLongObject *a,$/;" f file: +long_bool Objects/longobject.c /^long_bool(PyLongObject *v)$/;" f file: +long_cnt Modules/itertoolsmodule.c /^ PyObject *long_cnt;$/;" m struct:__anon420 file: +long_compare Objects/longobject.c /^long_compare(PyLongObject *a, PyLongObject *b)$/;" f file: +long_converter Modules/clinic/_testclinic.c.h /^long_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +long_converter Tools/clinic/clinic.py /^class long_converter(CConverter):$/;" c +long_converter_impl Modules/_testclinic.c /^long_converter_impl(PyObject *module, long a)$/;" f file: +long_dealloc Objects/longobject.c /^long_dealloc(PyObject *self)$/;" f file: +long_div Objects/longobject.c /^long_div(PyObject *a, PyObject *b)$/;" f file: +long_divmod Objects/longobject.c /^long_divmod(PyObject *a, PyObject *b)$/;" f file: +long_divrem Objects/longobject.c /^long_divrem(PyLongObject *a, PyLongObject *b,$/;" f file: +long_float Objects/longobject.c /^long_float(PyObject *v)$/;" f file: +long_format_binary Objects/longobject.c /^long_format_binary(PyObject *aa, int base, int alternate,$/;" f file: +long_from_binary_base Objects/longobject.c /^long_from_binary_base(const char *start, const char *end, Py_ssize_t digits, int base, PyLongObject **res)$/;" f file: +long_from_non_binary_base Objects/longobject.c /^long_from_non_binary_base(const char *start, const char *end, Py_ssize_t digits, int base, PyLongObject **res)$/;" f file: +long_from_string_base Objects/longobject.c /^long_from_string_base(const char **str, int base, PyLongObject **res)$/;" f file: +long_getset Objects/longobject.c /^static PyGetSetDef long_getset[] = {$/;" v file: +long_has_args Lib/getopt.py /^def long_has_args(opt, longopts):$/;" f +long_hash Objects/longobject.c /^long_hash(PyLongObject *v)$/;" f file: +long_invert Objects/longobject.c /^long_invert(PyLongObject *v)$/;" f file: +long_invmod Objects/longobject.c /^long_invmod(PyLongObject *a, PyLongObject *n)$/;" f file: +long_lcm Modules/mathmodule.c /^long_lcm(PyObject *a, PyObject *b)$/;" f file: +long_lived_pending Include/internal/pycore_gc.h /^ Py_ssize_t long_lived_pending;$/;" m struct:_gc_runtime_state +long_lived_total Include/internal/pycore_gc.h /^ Py_ssize_t long_lived_total;$/;" m struct:_gc_runtime_state +long_long Objects/longobject.c /^long_long(PyObject *v)$/;" f file: +long_long_converter Modules/clinic/_testclinic.c.h /^long_long_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +long_long_converter Tools/clinic/clinic.py /^class long_long_converter(CConverter):$/;" c +long_long_converter_impl Modules/_testclinic.c /^long_long_converter_impl(PyObject *module, long long a)$/;" f file: +long_long_meth Objects/longobject.c /^long_long_meth(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +long_lshift Objects/longobject.c /^long_lshift(PyObject *a, PyObject *b)$/;" f file: +long_lshift1 Objects/longobject.c /^long_lshift1(PyLongObject *a, Py_ssize_t wordshift, digit remshift)$/;" f file: +long_member Modules/_testcapi/structmember.c /^ long long_member;$/;" m struct:__anon543 file: +long_methods Objects/longobject.c /^static PyMethodDef long_methods[] = {$/;" v file: +long_mod Objects/longobject.c /^long_mod(PyObject *a, PyObject *b)$/;" f file: +long_mul Objects/longobject.c /^long_mul(PyLongObject *a, PyLongObject *b)$/;" f file: +long_neg Objects/longobject.c /^long_neg(PyLongObject *v)$/;" f file: +long_new Objects/clinic/longobject.c.h /^long_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +long_new_impl Objects/longobject.c /^long_new_impl(PyTypeObject *type, PyObject *x, PyObject *obase)$/;" f file: +long_normalize Objects/longobject.c /^long_normalize(PyLongObject *v)$/;" f file: +long_or Objects/longobject.c /^long_or(PyObject *a, PyObject *b)$/;" f file: +long_pow Objects/longobject.c /^long_pow(PyObject *v, PyObject *w, PyObject *x)$/;" f file: +long_rem Objects/longobject.c /^long_rem(PyLongObject *a, PyLongObject *b, PyLongObject **prem)$/;" f file: +long_return_converter Tools/clinic/clinic.py /^class long_return_converter(CReturnConverter):$/;" c +long_richcompare Objects/longobject.c /^long_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +long_rshift Objects/longobject.c /^long_rshift(PyObject *a, PyObject *b)$/;" f file: +long_rshift1 Objects/longobject.c /^long_rshift1(PyLongObject *a, Py_ssize_t wordshift, digit remshift)$/;" f file: +long_slice Lib/test/test_compile.py /^ def long_slice():$/;" f function:TestSpecifics.test_uses_slice_instructions +long_state Include/internal/pycore_interp.h /^ struct _Py_long_state long_state;$/;" m struct:_is typeref:struct:_is::_Py_long_state +long_step Modules/itertoolsmodule.c /^ PyObject *long_step;$/;" m struct:__anon420 file: +long_sub Objects/longobject.c /^long_sub(PyLongObject *a, PyLongObject *b)$/;" f file: +long_subtype_new Objects/longobject.c /^long_subtype_new(PyTypeObject *type, PyObject *x, PyObject *obase)$/;" f file: +long_title Lib/idlelib/editor.py /^ def long_title(self):$/;" m class:EditorWindow +long_to_decimal_string Objects/longobject.c /^long_to_decimal_string(PyObject *aa)$/;" f file: +long_to_decimal_string_internal Objects/longobject.c /^long_to_decimal_string_internal(PyObject *aa,$/;" f file: +long_true_divide Objects/longobject.c /^long_true_divide(PyObject *v, PyObject *w)$/;" f file: +long_value Include/cpython/longintrepr.h /^ _PyLongValue long_value;$/;" m struct:_longobject +long_xor Objects/longobject.c /^long_xor(PyObject *a, PyObject *b)$/;" f file: +longclone Lib/test/test_descr.py /^ class longclone(int):$/;" c function:.test_basic_inheritance +longer_match_exists Lib/test/test_difflib.py /^ def longer_match_exists(self, a, b, n):$/;" m class:TestFindLongest +longest Tools/clinic/clinic.py /^ longest = max(longest, len(short_name))$/;" v +longest Tools/clinic/clinic.py /^ longest = -1$/;" v +longest_run_of_spaces Lib/tabnanny.py /^ def longest_run_of_spaces(self):$/;" m class:Whitespace +longlong_member Modules/_testcapi/structmember.c /^ long long longlong_member;$/;" m struct:__anon543 file: +longname Lib/test/test_reprlib.py /^ longname = 'areallylongpackageandmodulenametotestreprtruncation'$/;" v class:LongReprTest +longnametype Lib/test/test_tarfile.py /^ longnametype = tarfile.GNUTYPE_LONGNAME$/;" v class:GNUReadTest +longnametype Lib/test/test_tarfile.py /^ longnametype = tarfile.XHDTYPE$/;" v class:PaxReadTest +longopts Python/getopt.c /^static const _PyOS_LongOption longopts[] = {$/;" v file: +longrange_iterator Lib/_collections_abc.py /^longrange_iterator = type(iter(range(1 << 1000)))$/;" v +longrangeiter_dealloc Objects/rangeobject.c /^longrangeiter_dealloc(longrangeiterobject *r)$/;" f file: +longrangeiter_len Objects/rangeobject.c /^longrangeiter_len(longrangeiterobject *r, PyObject *no_args)$/;" f file: +longrangeiter_methods Objects/rangeobject.c /^static PyMethodDef longrangeiter_methods[] = {$/;" v file: +longrangeiter_next Objects/rangeobject.c /^longrangeiter_next(longrangeiterobject *r)$/;" f file: +longrangeiter_reduce Objects/rangeobject.c /^longrangeiter_reduce(longrangeiterobject *r, PyObject *Py_UNUSED(ignored))$/;" f file: +longrangeiter_setstate Objects/rangeobject.c /^longrangeiter_setstate(longrangeiterobject *r, PyObject *state)$/;" f file: +longrangeiterobject Objects/rangeobject.c /^} longrangeiterobject;$/;" t typeref:struct:__anon724 file: +look_up_frozen Python/import.c /^look_up_frozen(const char *name)$/;" f file: +lookahead Parser/tokenizer.c /^lookahead(struct tok_state *tok, const char *test)$/;" f file: +lookahead Tools/peg_generator/pegen/grammar_parser.py /^ def lookahead(self) -> Optional[LookaheadOrCut]:$/;" m class:GeneratedParser +lookahead_call_helper Tools/peg_generator/pegen/c_generator.py /^ def lookahead_call_helper(self, node: Lookahead, positive: int) -> FunctionCall:$/;" m class:CCallMakerVisitor +lookahead_call_helper Tools/peg_generator/pegen/python_generator.py /^ def lookahead_call_helper(self, node: Lookahead) -> Tuple[str, str]:$/;" m class:PythonCallMakerVisitor +lookahead_call_helper Tools/peg_generator/pegen/python_generator.py /^ def lookahead_call_helper(self, node: Lookahead) -> bool:$/;" m class:InvalidNodeVisitor +lookdict_index Objects/dictobject.c /^lookdict_index(PyDictKeysObject *k, Py_hash_t hash, Py_ssize_t index)$/;" f file: +lookup Lib/cgitb.py /^def lookup(name, frame, locals):$/;" f +lookup Lib/importlib/metadata/__init__.py /^ def lookup(self, mtime):$/;" m class:FastPath +lookup Lib/mailcap.py /^def lookup(caps, MIMEtype, key=None):$/;" f +lookup Lib/shutil.py /^ def lookup(name):$/;" f function:copystat._nop +lookup Lib/symtable.py /^ def lookup(self, name):$/;" m class:SymbolTable +lookup Lib/tkinter/ttk.py /^ def lookup(self, style, option, state=None, default=None):$/;" m class:Style +lookup Modules/expat/xmlparse.c /^lookup(XML_Parser parser, HASH_TABLE *table, KEY name, size_t createSize) {$/;" f file: +lookup Tools/peg_generator/scripts/joinstats.py /^ def lookup(self, type: int) -> str:$/;" m class:TypeMapper +lookupTestDecoder Lib/test/test_io.py /^def lookupTestDecoder(name):$/;" f +lookup_dimension Objects/memoryobject.c /^lookup_dimension(const Py_buffer *view, char *ptr, int dim, Py_ssize_t index)$/;" f file: +lookup_maybe_method Objects/typeobject.c /^lookup_maybe_method(PyObject *self, PyObject *attr, int *unbound)$/;" f file: +lookup_method Objects/typeobject.c /^lookup_method(PyObject *self, PyObject *attr, int *unbound)$/;" f file: +lookup_tp_bases Objects/typeobject.c /^lookup_tp_bases(PyTypeObject *self)$/;" f file: +lookup_tp_dict Objects/typeobject.c /^lookup_tp_dict(PyTypeObject *self)$/;" f file: +lookup_tp_mro Objects/typeobject.c /^lookup_tp_mro(PyTypeObject *self)$/;" f file: +lookup_tp_subclasses Objects/typeobject.c /^lookup_tp_subclasses(PyTypeObject *self)$/;" f file: +lookupmodule Lib/pdb.py /^ def lookupmodule(self, filename):$/;" m class:Pdb +loop Lib/asyncio/__main__.py /^ loop = asyncio.new_event_loop()$/;" v class:REPLThread +loop Lib/asyncio/proactor_events.py /^ def loop(f=None):$/;" f function:BaseProactorEventLoop._start_serving +loop Lib/test/support/asyncore.py /^def loop(timeout=30.0, use_poll=False, map=None, count=None):$/;" f +loop Lib/test/test_asyncio/test_events.py /^ loop = asyncio.new_event_loop()$/;" v class:GetEventLoopTestsMixin.test_get_event_loop_returns_running_loop.Policy +loop Lib/test/test_asyncio/utils.py /^ def loop(environ):$/;" f function:_run_test_server +loop Lib/test/test_generators.py /^ def loop():$/;" f function:GeneratorTest.test_issue103488 +loop_accept_pipe Lib/asyncio/windows_events.py /^ def loop_accept_pipe(f=None):$/;" f function:ProactorEventLoop.start_serving_pipe +loop_exception_handler Lib/test/test_asyncio/functional.py /^ def loop_exception_handler(self, loop, context):$/;" m class:FunctionalTestCaseMixin +loop_overhead Tools/scripts/var_access_benchmark.py /^def loop_overhead(trials=trials):$/;" f +loop_pid Lib/asyncio/events.py /^ loop_pid = (None, None)$/;" v class:_RunningLoop +loop_test Lib/test/test_dis.py /^def loop_test():$/;" f +lop Modules/_curses_panel.c /^static list_of_panels *lop;$/;" v file: +lorem_ipsum Lib/test/test_curses.py /^def lorem_ipsum(win):$/;" f +low Modules/_hacl/include/krml/types.h /^ uint64_t low;$/;" m struct:FStar_UInt128_uint128_s +lowPriorityTag PC/launcher2.c /^ bool lowPriorityTag;$/;" m struct:__anon284 file: +lower Include/internal/pycore_ast.h /^ expr_ty lower;$/;" m struct:_expr::__anon77::__anon104 +lower Include/internal/pycore_ast_state.h /^ PyObject *lower;$/;" m struct:ast_state +lower Lib/collections/__init__.py /^ def lower(self):$/;" m class:UserString +lower Lib/importlib/metadata/_text.py /^ def lower(self):$/;" m class:FoldedCase +lower Lib/tkinter/__init__.py /^ def lower(self, belowThis=None):$/;" m class:Misc +lower Lib/tkinter/__init__.py /^ lower = tag_lower$/;" v class:Canvas +lower Objects/unicodectype.c /^ const int lower;$/;" m struct:__anon701 file: +lower_conversion_dense Tools/stringbench/stringbench.py /^def lower_conversion_dense(STR):$/;" f +lower_conversion_rare Tools/stringbench/stringbench.py /^def lower_conversion_rare(STR):$/;" f +lower_ucs4 Objects/unicodeobject.c /^lower_ucs4(int kind, const void *data, Py_ssize_t length, Py_ssize_t i,$/;" f file: +lowercase_insert Lib/idlelib/idle_test/test_percolator.py /^ def lowercase_insert(self, index, chars, tags=None):$/;" m class:MyFilter +lowerdict Lib/test/test_collections.py /^ class lowerdict(dict):$/;" c function:TestChainMap.test_new_child +lowest Lib/test/test_type_comments.py /^ lowest = 4 # Lowest minor version supported$/;" v class:TypeCommentTests +lp_double Modules/_struct.c /^lp_double(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +lp_float Modules/_struct.c /^lp_float(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +lp_halffloat Modules/_struct.c /^lp_halffloat(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +lp_int Modules/_struct.c /^lp_int(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +lp_longlong Modules/_struct.c /^lp_longlong(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +lp_uint Modules/_struct.c /^lp_uint(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +lp_ulonglong Modules/_struct.c /^lp_ulonglong(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +lru_cache Lib/functools.py /^def lru_cache(maxsize=128, typed=False):$/;" f +lru_cache Modules/_sqlite/module.h /^ PyObject *lru_cache;$/;" m struct:__anon355 +lru_cache_append_link Modules/_functoolsmodule.c /^lru_cache_append_link(lru_cache_object *self, lru_list_elem *link)$/;" f file: +lru_cache_call Modules/_functoolsmodule.c /^lru_cache_call(lru_cache_object *self, PyObject *args, PyObject *kwds)$/;" f file: +lru_cache_clear_list Modules/_functoolsmodule.c /^lru_cache_clear_list(lru_list_elem *link)$/;" f file: +lru_cache_copy Modules/_functoolsmodule.c /^lru_cache_copy(PyObject *self, PyObject *unused)$/;" f file: +lru_cache_dealloc Modules/_functoolsmodule.c /^lru_cache_dealloc(lru_cache_object *obj)$/;" f file: +lru_cache_deepcopy Modules/_functoolsmodule.c /^lru_cache_deepcopy(PyObject *self, PyObject *unused)$/;" f file: +lru_cache_descr_get Modules/_functoolsmodule.c /^lru_cache_descr_get(PyObject *self, PyObject *obj, PyObject *type)$/;" f file: +lru_cache_extract_link Modules/_functoolsmodule.c /^lru_cache_extract_link(lru_list_elem *link)$/;" f file: +lru_cache_getsetlist Modules/_functoolsmodule.c /^static PyGetSetDef lru_cache_getsetlist[] = {$/;" v file: +lru_cache_make_key Modules/_functoolsmodule.c /^lru_cache_make_key(PyObject *kwd_mark, PyObject *args,$/;" f file: +lru_cache_memberlist Modules/_functoolsmodule.c /^static PyMemberDef lru_cache_memberlist[] = {$/;" v file: +lru_cache_methods Modules/_functoolsmodule.c /^static PyMethodDef lru_cache_methods[] = {$/;" v file: +lru_cache_new Modules/_functoolsmodule.c /^lru_cache_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +lru_cache_object Modules/_functoolsmodule.c /^typedef struct lru_cache_object {$/;" s file: +lru_cache_object Modules/_functoolsmodule.c /^} lru_cache_object;$/;" t typeref:struct:lru_cache_object file: +lru_cache_prepend_link Modules/_functoolsmodule.c /^lru_cache_prepend_link(lru_cache_object *self, lru_list_elem *link)$/;" f file: +lru_cache_reduce Modules/_functoolsmodule.c /^lru_cache_reduce(PyObject *self, PyObject *unused)$/;" f file: +lru_cache_ternaryfunc Modules/_functoolsmodule.c /^typedef PyObject *(*lru_cache_ternaryfunc)(struct lru_cache_object *, PyObject *, PyObject *);$/;" t file: +lru_cache_tp_clear Modules/_functoolsmodule.c /^lru_cache_tp_clear(lru_cache_object *self)$/;" f file: +lru_cache_tp_traverse Modules/_functoolsmodule.c /^lru_cache_tp_traverse(lru_cache_object *self, visitproc visit, void *arg)$/;" f file: +lru_cache_type_slots Modules/_functoolsmodule.c /^static PyType_Slot lru_cache_type_slots[] = {$/;" v file: +lru_cache_type_spec Modules/_functoolsmodule.c /^static PyType_Spec lru_cache_type_spec = {$/;" v file: +lru_cache_unlink_list Modules/_functoolsmodule.c /^lru_cache_unlink_list(lru_cache_object *self)$/;" f file: +lru_list_elem Modules/_functoolsmodule.c /^typedef struct lru_list_elem {$/;" s file: +lru_list_elem Modules/_functoolsmodule.c /^} lru_list_elem;$/;" t typeref:struct:lru_list_elem file: +lru_list_elem_dealloc Modules/_functoolsmodule.c /^lru_list_elem_dealloc(lru_list_elem *link)$/;" f file: +lru_list_elem_type Modules/_functoolsmodule.c /^ PyTypeObject *lru_list_elem_type;$/;" m struct:_functools_state file: +lru_list_elem_type Modules/_functoolsmodule.c /^ PyTypeObject *lru_list_elem_type;$/;" m struct:lru_cache_object file: +lru_list_elem_type_slots Modules/_functoolsmodule.c /^static PyType_Slot lru_list_elem_type_slots[] = {$/;" v file: +lru_list_elem_type_spec Modules/_functoolsmodule.c /^static PyType_Spec lru_list_elem_type_spec = {$/;" v file: +lshift Lib/operator.py /^def lshift(a, b):$/;" f +lshift Python/dtoa.c /^lshift(Bigint *b, int k)$/;" f file: +lst Modules/_queuemodule.c /^ PyObject *lst;$/;" m struct:__anon292 file: +lst_pos Modules/_queuemodule.c /^ Py_ssize_t lst_pos;$/;" m struct:__anon292 file: +lstat Lib/pathlib.py /^ def lstat(self):$/;" m class:Path +lstat Modules/posixmodule.c /^ PyObject *lstat;$/;" m struct:__anon480 file: +lstrip Lib/collections/__init__.py /^ def lstrip(self, chars=None):$/;" m class:UserString +lstrip_sql Modules/_sqlite/statement.c /^lstrip_sql(const char *sql)$/;" f file: +lsub Lib/imaplib.py /^ def lsub(self, directory='""', pattern='*'):$/;" m class:IMAP4 +lt Lib/operator.py /^def lt(a, b):$/;" f +lt Lib/turtle.py /^ lt = left$/;" v class:TNavigator +lt_bitwise_or_rule Parser/parser.c /^lt_bitwise_or_rule(Parser *p)$/;" f file: +lt_bitwise_or_type Parser/parser.c 201;" d file: +lte_bitwise_or_rule Parser/parser.c /^lte_bitwise_or_rule(Parser *p)$/;" f file: +lte_bitwise_or_type Parser/parser.c 200;" d file: +lu_double Modules/_struct.c /^lu_double(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lu_float Modules/_struct.c /^lu_float(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lu_halffloat Modules/_struct.c /^lu_halffloat(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lu_int Modules/_struct.c /^lu_int(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lu_longlong Modules/_struct.c /^lu_longlong(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lu_short Modules/_struct.c /^lu_short(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lu_uint Modules/_struct.c /^lu_uint(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lu_ulonglong Modules/_struct.c /^lu_ulonglong(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +lv_tag Include/cpython/longintrepr.h /^ uintptr_t lv_tag; \/* Number of digits, sign and flags *\/$/;" m struct:_PyLongValue +lwp_cookie_str Lib/http/cookiejar.py /^def lwp_cookie_str(cookie):$/;" f +lzip Lib/test/test_iter.py /^ def lzip(*args):$/;" f function:TestCase.test_builtin_zip +lzip Lib/test/test_itertools.py /^def lzip(*args):$/;" f +lzma Lib/test/test_lzma.py /^lzma = import_module("lzma")$/;" v +lzma Lib/test/test_tarfile.py /^ lzma = None$/;" v +lzma Lib/test/test_zoneinfo/test_zoneinfo.py /^lzma = import_module('lzma')$/;" v +lzma Lib/zipfile/__init__.py /^ lzma = None$/;" v +lzma_clear Modules/_lzmamodule.c /^lzma_clear(PyObject *module)$/;" f file: +lzma_compressor_type Modules/_lzmamodule.c /^ PyTypeObject *lzma_compressor_type;$/;" m struct:__anon293 file: +lzma_compressor_type_slots Modules/_lzmamodule.c /^static PyType_Slot lzma_compressor_type_slots[] = {$/;" v file: +lzma_compressor_type_spec Modules/_lzmamodule.c /^static PyType_Spec lzma_compressor_type_spec = {$/;" v file: +lzma_decompressor_type Modules/_lzmamodule.c /^ PyTypeObject *lzma_decompressor_type;$/;" m struct:__anon293 file: +lzma_decompressor_type_slots Modules/_lzmamodule.c /^static PyType_Slot lzma_decompressor_type_slots[] = {$/;" v file: +lzma_decompressor_type_spec Modules/_lzmamodule.c /^static PyType_Spec lzma_decompressor_type_spec = {$/;" v file: +lzma_exec Modules/_lzmamodule.c /^lzma_exec(PyObject *module)$/;" f file: +lzma_filter_converter Modules/_lzmamodule.c /^lzma_filter_converter(_lzma_state *state, PyObject *spec, void *ptr)$/;" f file: +lzma_free Modules/_lzmamodule.c /^lzma_free(void *module)$/;" f file: +lzma_methods Modules/_lzmamodule.c /^static PyMethodDef lzma_methods[] = {$/;" v file: +lzma_slots Modules/_lzmamodule.c /^static PyModuleDef_Slot lzma_slots[] = {$/;" v file: +lzma_traverse Modules/_lzmamodule.c /^lzma_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +lzs Modules/_lzmamodule.c /^ lzma_stream lzs;$/;" m struct:__anon295 file: +lzs Modules/_lzmamodule.c /^ lzma_stream lzs;$/;" m struct:__anon296 file: +m Include/import.h /^PyAPI_FUNC(PyObject *) PyImport_ReloadModule(PyObject *m);$/;" v +m Lib/test/pyclbr_input.py /^ def m(self): pass$/;" m class:C +m Lib/test/test_copy.py /^ def m(self):$/;" m class:TestCopy.test_deepcopy_bound_method.Foo +m Lib/test/test_descrtut.py /^ def m(self):$/;" m class:A +m Lib/test/test_descrtut.py /^ def m(self):$/;" m class:B +m Lib/test/test_descrtut.py /^ def m(self):$/;" m class:C +m Lib/test/test_descrtut.py /^ def m(self):$/;" m class:D +m Lib/test/test_functools.py /^ m = mro(C, haystack)$/;" v class:TestSingleDispatch.test_compose_mro.C +m Lib/test/test_functools.py /^ m = mro(D, haystack)$/;" v class:TestSingleDispatch.test_compose_mro.D +m Lib/test/test_inspect.py /^ def m(self): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.A +m Lib/test/test_inspect.py /^ def m(self): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.B +m Lib/test/test_inspect.py /^ def m(self): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.C +m Lib/test/test_scope.py /^ def m(self):$/;" m class:ScopeTests.testBoundAndFree.f.C +m Lib/test/test_scope.py /^ def m(self):$/;" m class:ScopeTests.testLocalsClass.f.C +m Lib/test/test_unittest/testmock/testmock.py /^ m = create_autospec(Foo, set_spec=True)$/;" v class:MockTest.test_misspelled_arguments.Foo +m Lib/test/test_unittest/testmock/testpatch.py /^ m = p.start()$/;" v class:PatchTest.test_new_callable_inherit_for_mocks.MockSub +m Tools/msi/purge.py /^ m = VERSION_RE.match(sys.argv[1])$/;" v +m Tools/scripts/var_access_benchmark.py /^ def m(self):$/;" m class:A +m Tools/unicode/mkstringprep.py /^ m = re.match("----- (Start|End) Table ([A-Z](.[0-9])+) -----", l)$/;" v +m1 Lib/idlelib/idle_test/test_calltip.py /^ def m1(*args): pass$/;" m class:.test_starred_parameter.C +m1 Lib/test/test_dict.py /^ m1 = d.keys().mapping$/;" v class:DictTest.test_views_mapping.Dict +m1 Lib/test/test_inspect.py /^ def m1(self): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.A +m1 Lib/test/test_inspect.py /^ def m1(self): pass$/;" m class:TestClassesAndFunctions.test_classify_newstyle.D +m1 Lib/test/test_inspect.py /^ def m1(self, arg1, arg2=1) -> int:$/;" m class:TestSignatureObject.test_signature_on_method.Test +m1 Lib/test/test_inspect.py /^ def m1(self, arg1, arg2=1) -> int:$/;" m class:TestSignatureObject.test_signature_wrapped_bound_method.Test +m1d Lib/test/test_inspect.py /^ def m1d(*args, **kwargs):$/;" f function:TestSignatureObject.test_signature_wrapped_bound_method +m2 Lib/idlelib/idle_test/test_calltip.py /^ def m2(**kwargs): pass$/;" m class:.test_invalid_method_get_spec.C +m2 Lib/test/test_dict.py /^ m2 = d.values().mapping$/;" v class:DictTest.test_views_mapping.Dict +m2 Lib/test/test_inspect.py /^ def m2(*args):$/;" m class:TestSignatureObject.test_signature_on_method.Test +m2 Modules/_decimal/libmpdec/literature/fnt.py /^m2 = (MPD_MAXTRANSFORM_2N * 3) \/\/ 2 # Maximum length of the smaller array.$/;" v +m3 Lib/test/test_dict.py /^ m3 = d.items().mapping$/;" v class:DictTest.test_views_mapping.Dict +m_accounting Modules/expat/xmlparse.c /^ ACCOUNTING m_accounting;$/;" m struct:XML_ParserStruct file: +m_assign Lib/test/test_buffer.py /^def m_assign(llst, rlst, lslices, rslices):$/;" f +m_atan2 Modules/mathmodule.c /^m_atan2(double y, double x)$/;" f file: +m_attInfo Modules/expat/xmlparse.c /^ XML_AttrInfo *m_attInfo;$/;" m struct:XML_ParserStruct file: +m_attlistDeclHandler Modules/expat/xmlparse.c /^ XML_AttlistDeclHandler m_attlistDeclHandler;$/;" m struct:XML_ParserStruct file: +m_atts Modules/expat/xmlparse.c /^ ATTRIBUTE *m_atts;$/;" m struct:XML_ParserStruct file: +m_attsSize Modules/expat/xmlparse.c /^ int m_attsSize;$/;" m struct:XML_ParserStruct file: +m_base Include/moduleobject.h /^ PyModuleDef_Base m_base;$/;" m struct:PyModuleDef +m_buffer Modules/expat/xmlparse.c /^ char *m_buffer;$/;" m struct:XML_ParserStruct file: +m_bufferEnd Modules/expat/xmlparse.c /^ char *m_bufferEnd;$/;" m struct:XML_ParserStruct file: +m_bufferLim Modules/expat/xmlparse.c /^ const char *m_bufferLim;$/;" m struct:XML_ParserStruct file: +m_bufferPtr Modules/expat/xmlparse.c /^ const char *m_bufferPtr;$/;" m struct:XML_ParserStruct file: +m_characterDataHandler Modules/expat/xmlparse.c /^ XML_CharacterDataHandler m_characterDataHandler;$/;" m struct:XML_ParserStruct file: +m_clear Include/moduleobject.h /^ inquiry m_clear;$/;" m struct:PyModuleDef +m_commentHandler Modules/expat/xmlparse.c /^ XML_CommentHandler m_commentHandler;$/;" m struct:XML_ParserStruct file: +m_copy Include/moduleobject.h /^ PyObject* m_copy;$/;" m struct:PyModuleDef_Base +m_curBase Modules/expat/xmlparse.c /^ const XML_Char *m_curBase;$/;" m struct:XML_ParserStruct file: +m_dataBuf Modules/expat/xmlparse.c /^ XML_Char *m_dataBuf;$/;" m struct:XML_ParserStruct file: +m_dataBufEnd Modules/expat/xmlparse.c /^ XML_Char *m_dataBufEnd;$/;" m struct:XML_ParserStruct file: +m_declAttributeId Modules/expat/xmlparse.c /^ ATTRIBUTE_ID *m_declAttributeId;$/;" m struct:XML_ParserStruct file: +m_declAttributeIsCdata Modules/expat/xmlparse.c /^ XML_Bool m_declAttributeIsCdata;$/;" m struct:XML_ParserStruct file: +m_declAttributeIsId Modules/expat/xmlparse.c /^ XML_Bool m_declAttributeIsId;$/;" m struct:XML_ParserStruct file: +m_declAttributeType Modules/expat/xmlparse.c /^ const XML_Char *m_declAttributeType;$/;" m struct:XML_ParserStruct file: +m_declElementType Modules/expat/xmlparse.c /^ ELEMENT_TYPE *m_declElementType;$/;" m struct:XML_ParserStruct file: +m_declEntity Modules/expat/xmlparse.c /^ ENTITY *m_declEntity;$/;" m struct:XML_ParserStruct file: +m_declNotationName Modules/expat/xmlparse.c /^ const XML_Char *m_declNotationName;$/;" m struct:XML_ParserStruct file: +m_declNotationPublicId Modules/expat/xmlparse.c /^ const XML_Char *m_declNotationPublicId;$/;" m struct:XML_ParserStruct file: +m_defaultExpandInternalEntities Modules/expat/xmlparse.c /^ XML_Bool m_defaultExpandInternalEntities;$/;" m struct:XML_ParserStruct file: +m_defaultHandler Modules/expat/xmlparse.c /^ XML_DefaultHandler m_defaultHandler;$/;" m struct:XML_ParserStruct file: +m_doc Include/moduleobject.h /^ const char* m_doc;$/;" m struct:PyModuleDef +m_doctypeName Modules/expat/xmlparse.c /^ const XML_Char *m_doctypeName;$/;" m struct:XML_ParserStruct file: +m_doctypePubid Modules/expat/xmlparse.c /^ const XML_Char *m_doctypePubid;$/;" m struct:XML_ParserStruct file: +m_doctypeSysid Modules/expat/xmlparse.c /^ const XML_Char *m_doctypeSysid;$/;" m struct:XML_ParserStruct file: +m_dtd Modules/expat/xmlparse.c /^ DTD *m_dtd;$/;" m struct:XML_ParserStruct file: +m_elementDeclHandler Modules/expat/xmlparse.c /^ XML_ElementDeclHandler m_elementDeclHandler;$/;" m struct:XML_ParserStruct file: +m_encoding Modules/expat/xmlparse.c /^ const ENCODING *m_encoding;$/;" m struct:XML_ParserStruct file: +m_endCdataSectionHandler Modules/expat/xmlparse.c /^ XML_EndCdataSectionHandler m_endCdataSectionHandler;$/;" m struct:XML_ParserStruct file: +m_endDoctypeDeclHandler Modules/expat/xmlparse.c /^ XML_EndDoctypeDeclHandler m_endDoctypeDeclHandler;$/;" m struct:XML_ParserStruct file: +m_endElementHandler Modules/expat/xmlparse.c /^ XML_EndElementHandler m_endElementHandler;$/;" m struct:XML_ParserStruct file: +m_endNamespaceDeclHandler Modules/expat/xmlparse.c /^ XML_EndNamespaceDeclHandler m_endNamespaceDeclHandler;$/;" m struct:XML_ParserStruct file: +m_entityDeclHandler Modules/expat/xmlparse.c /^ XML_EntityDeclHandler m_entityDeclHandler;$/;" m struct:XML_ParserStruct file: +m_entity_stats Modules/expat/xmlparse.c /^ ENTITY_STATS m_entity_stats;$/;" m struct:XML_ParserStruct file: +m_errorCode Modules/expat/xmlparse.c /^ enum XML_Error m_errorCode;$/;" m struct:XML_ParserStruct typeref:enum:XML_ParserStruct::XML_Error file: +m_eventEndPtr Modules/expat/xmlparse.c /^ const char *m_eventEndPtr;$/;" m struct:XML_ParserStruct file: +m_eventPtr Modules/expat/xmlparse.c /^ const char *m_eventPtr;$/;" m struct:XML_ParserStruct file: +m_externalEntityRefHandler Modules/expat/xmlparse.c /^ XML_ExternalEntityRefHandler m_externalEntityRefHandler;$/;" m struct:XML_ParserStruct file: +m_externalEntityRefHandlerArg Modules/expat/xmlparse.c /^ XML_Parser m_externalEntityRefHandlerArg;$/;" m struct:XML_ParserStruct file: +m_free Include/moduleobject.h /^ freefunc m_free;$/;" m struct:PyModuleDef +m_freeBindingList Modules/expat/xmlparse.c /^ BINDING *m_freeBindingList;$/;" m struct:XML_ParserStruct file: +m_freeInternalEntities Modules/expat/xmlparse.c /^ OPEN_INTERNAL_ENTITY *m_freeInternalEntities;$/;" m struct:XML_ParserStruct file: +m_freeTagList Modules/expat/xmlparse.c /^ TAG *m_freeTagList;$/;" m struct:XML_ParserStruct file: +m_groupConnector Modules/expat/xmlparse.c /^ char *m_groupConnector;$/;" m struct:XML_ParserStruct file: +m_groupSize Modules/expat/xmlparse.c /^ unsigned int m_groupSize;$/;" m struct:XML_ParserStruct file: +m_handlerArg Modules/expat/xmlparse.c /^ void *m_handlerArg;$/;" m struct:XML_ParserStruct file: +m_hash_secret_salt Modules/expat/xmlparse.c /^ unsigned long m_hash_secret_salt;$/;" m struct:XML_ParserStruct file: +m_idAttIndex Modules/expat/xmlparse.c /^ int m_idAttIndex;$/;" m struct:XML_ParserStruct file: +m_index Include/moduleobject.h /^ Py_ssize_t m_index;$/;" m struct:PyModuleDef_Base +m_inheritedBindings Modules/expat/xmlparse.c /^ BINDING *m_inheritedBindings;$/;" m struct:XML_ParserStruct file: +m_init Include/moduleobject.h /^ PyObject* (*m_init)(void);$/;" m struct:PyModuleDef_Base +m_initEncoding Modules/expat/xmlparse.c /^ INIT_ENCODING m_initEncoding;$/;" m struct:XML_ParserStruct file: +m_internalEncoding Modules/expat/xmlparse.c /^ const ENCODING *m_internalEncoding;$/;" m struct:XML_ParserStruct file: +m_isParamEntity Modules/expat/xmlparse.c /^ XML_Bool m_isParamEntity;$/;" m struct:XML_ParserStruct file: +m_lgamma Modules/mathmodule.c /^m_lgamma(double x)$/;" f file: +m_log Modules/mathmodule.c /^m_log(double x)$/;" f file: +m_log10 Modules/mathmodule.c /^m_log10(double x)$/;" f file: +m_log1p Modules/_math.h 25;" d +m_log2 Modules/mathmodule.c /^m_log2(double x)$/;" f file: +m_mem Modules/expat/xmlparse.c /^ const XML_Memory_Handling_Suite m_mem;$/;" m struct:XML_ParserStruct file: +m_methods Include/moduleobject.h /^ PyMethodDef *m_methods;$/;" m struct:PyModuleDef +m_ml Include/cpython/methodobject.h /^ PyMethodDef *m_ml; \/* Description of the C function to call *\/$/;" m struct:__anon202 +m_module Include/cpython/methodobject.h /^ PyObject *m_module; \/* The __module__ attribute, can be anything *\/$/;" m struct:__anon202 +m_nSpecifiedAtts Modules/expat/xmlparse.c /^ int m_nSpecifiedAtts;$/;" m struct:XML_ParserStruct file: +m_name Include/moduleobject.h /^ const char* m_name;$/;" m struct:PyModuleDef +m_namespaceSeparator Modules/expat/xmlparse.c /^ XML_Char m_namespaceSeparator;$/;" m struct:XML_ParserStruct file: +m_notStandaloneHandler Modules/expat/xmlparse.c /^ XML_NotStandaloneHandler m_notStandaloneHandler;$/;" m struct:XML_ParserStruct file: +m_notationDeclHandler Modules/expat/xmlparse.c /^ XML_NotationDeclHandler m_notationDeclHandler;$/;" m struct:XML_ParserStruct file: +m_ns Modules/expat/xmlparse.c /^ XML_Bool m_ns;$/;" m struct:XML_ParserStruct file: +m_nsAtts Modules/expat/xmlparse.c /^ NS_ATT *m_nsAtts;$/;" m struct:XML_ParserStruct file: +m_nsAttsPower Modules/expat/xmlparse.c /^ unsigned char m_nsAttsPower;$/;" m struct:XML_ParserStruct file: +m_nsAttsVersion Modules/expat/xmlparse.c /^ unsigned long m_nsAttsVersion;$/;" m struct:XML_ParserStruct file: +m_ns_triplets Modules/expat/xmlparse.c /^ XML_Bool m_ns_triplets;$/;" m struct:XML_ParserStruct file: +m_obj Lib/test/test_cppext/extension.cpp /^ PyObject *m_obj; \/\/ Strong reference$/;" m class:StrongRef file: +m_openInternalEntities Modules/expat/xmlparse.c /^ OPEN_INTERNAL_ENTITY *m_openInternalEntities;$/;" m struct:XML_ParserStruct file: +m_paramEntityParsing Modules/expat/xmlparse.c /^ enum XML_ParamEntityParsing m_paramEntityParsing;$/;" m struct:XML_ParserStruct typeref:enum:XML_ParserStruct::XML_ParamEntityParsing file: +m_parentParser Modules/expat/xmlparse.c /^ XML_Parser m_parentParser;$/;" m struct:XML_ParserStruct file: +m_parseEndByteIndex Modules/expat/xmlparse.c /^ XML_Index m_parseEndByteIndex;$/;" m struct:XML_ParserStruct file: +m_parseEndPtr Modules/expat/xmlparse.c /^ const char *m_parseEndPtr;$/;" m struct:XML_ParserStruct file: +m_parsingStatus Modules/expat/xmlparse.c /^ XML_ParsingStatus m_parsingStatus;$/;" m struct:XML_ParserStruct file: +m_position Modules/expat/xmlparse.c /^ POSITION m_position;$/;" m struct:XML_ParserStruct file: +m_positionPtr Modules/expat/xmlparse.c /^ const char *m_positionPtr;$/;" m struct:XML_ParserStruct file: +m_processingInstructionHandler Modules/expat/xmlparse.c /^ XML_ProcessingInstructionHandler m_processingInstructionHandler;$/;" m struct:XML_ParserStruct file: +m_processor Modules/expat/xmlparse.c /^ Processor *m_processor;$/;" m struct:XML_ParserStruct file: +m_prologState Modules/expat/xmlparse.c /^ PROLOG_STATE m_prologState;$/;" m struct:XML_ParserStruct file: +m_protocolEncodingName Modules/expat/xmlparse.c /^ const XML_Char *m_protocolEncodingName;$/;" m struct:XML_ParserStruct file: +m_remainder Modules/mathmodule.c /^m_remainder(double x, double y)$/;" f file: +m_self Include/cpython/methodobject.h /^ PyObject *m_self; \/* Passed as 'self' arg to the C func, can be NULL *\/$/;" m struct:__anon202 +m_sinpi Modules/mathmodule.c /^m_sinpi(double x)$/;" f file: +m_size Include/moduleobject.h /^ Py_ssize_t m_size;$/;" m struct:PyModuleDef +m_skippedEntityHandler Modules/expat/xmlparse.c /^ XML_SkippedEntityHandler m_skippedEntityHandler;$/;" m struct:XML_ParserStruct file: +m_slots Include/moduleobject.h /^ PyModuleDef_Slot *m_slots;$/;" m struct:PyModuleDef +m_startCdataSectionHandler Modules/expat/xmlparse.c /^ XML_StartCdataSectionHandler m_startCdataSectionHandler;$/;" m struct:XML_ParserStruct file: +m_startDoctypeDeclHandler Modules/expat/xmlparse.c /^ XML_StartDoctypeDeclHandler m_startDoctypeDeclHandler;$/;" m struct:XML_ParserStruct file: +m_startElementHandler Modules/expat/xmlparse.c /^ XML_StartElementHandler m_startElementHandler;$/;" m struct:XML_ParserStruct file: +m_startNamespaceDeclHandler Modules/expat/xmlparse.c /^ XML_StartNamespaceDeclHandler m_startNamespaceDeclHandler;$/;" m struct:XML_ParserStruct file: +m_tagLevel Modules/expat/xmlparse.c /^ int m_tagLevel;$/;" m struct:XML_ParserStruct file: +m_tagStack Modules/expat/xmlparse.c /^ TAG *m_tagStack;$/;" m struct:XML_ParserStruct file: +m_temp2Pool Modules/expat/xmlparse.c /^ STRING_POOL m_temp2Pool;$/;" m struct:XML_ParserStruct file: +m_tempPool Modules/expat/xmlparse.c /^ STRING_POOL m_tempPool;$/;" m struct:XML_ParserStruct file: +m_tgamma Modules/mathmodule.c /^m_tgamma(double x)$/;" f file: +m_traverse Include/moduleobject.h /^ traverseproc m_traverse;$/;" m struct:PyModuleDef +m_unknownEncodingData Modules/expat/xmlparse.c /^ void *m_unknownEncodingData;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingHandler Modules/expat/xmlparse.c /^ XML_UnknownEncodingHandler m_unknownEncodingHandler;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingHandlerData Modules/expat/xmlparse.c /^ void *m_unknownEncodingHandlerData;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingMem Modules/expat/xmlparse.c /^ void *m_unknownEncodingMem;$/;" m struct:XML_ParserStruct file: +m_unknownEncodingRelease Modules/expat/xmlparse.c /^ void(XMLCALL *m_unknownEncodingRelease)(void *);$/;" m struct:XML_ParserStruct file: +m_unparsedEntityDeclHandler Modules/expat/xmlparse.c /^ XML_UnparsedEntityDeclHandler m_unparsedEntityDeclHandler;$/;" m struct:XML_ParserStruct file: +m_useForeignDTD Modules/expat/xmlparse.c /^ XML_Bool m_useForeignDTD;$/;" m struct:XML_ParserStruct file: +m_userData Modules/expat/xmlparse.c /^ void *m_userData;$/;" m struct:XML_ParserStruct file: +m_weakreflist Include/cpython/methodobject.h /^ PyObject *m_weakreflist; \/* List of weak references *\/$/;" m struct:__anon202 +m_xmlDeclHandler Modules/expat/xmlparse.c /^ XML_XmlDeclHandler m_xmlDeclHandler;$/;" m struct:XML_ParserStruct file: +ma_keys Include/cpython/dictobject.h /^ PyDictKeysObject *ma_keys;$/;" m struct:__anon195 +ma_used Include/cpython/dictobject.h /^ Py_ssize_t ma_used;$/;" m struct:__anon195 +ma_values Include/cpython/dictobject.h /^ PyDictValues *ma_values;$/;" m struct:__anon195 +ma_version_tag Include/cpython/dictobject.h /^ Py_DEPRECATED(3.12) uint64_t ma_version_tag;$/;" m struct:__anon195 +ma_version_tag Include/cpython/dictobject.h /^ uint64_t ma_version_tag;$/;" m struct:__anon195 +mac_ver Lib/platform.py /^def mac_ver(release='', versioninfo=('', '', ''), machine=''):$/;" f +machine Lib/platform.py /^def machine():$/;" f +machine_format_code Modules/arraymodule.c /^enum machine_format_code {$/;" g file: +machinery Lib/test/test_importlib/builtin/test_finder.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/builtin/test_loader.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/extension/test_case_sensitivity.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/extension/test_finder.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/extension/test_loader.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/extension/test_path_hook.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/frozen/test_finder.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/frozen/test_loader.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/import_/test_path.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/source/test_case_sensitivity.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/source/test_file_loader.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/source/test_finder.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/source/test_path_hook.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/source/test_source_encoding.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/test_abc.py /^machinery = test_util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/test_api.py /^machinery = test_util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/test_spec.py /^machinery = test_util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/test_util.py /^machinery = util.import_importlib('importlib.machinery')$/;" v +machinery Lib/test/test_importlib/test_windows.py /^machinery = test_util.import_importlib('importlib.machinery')$/;" v +macro Python/bytecodes.c 50;" d file: +macro Tools/cases_generator/lexer.py /^macro = r'# *(ifdef|ifndef|undef|define|error|endif|if|else|include|#)'$/;" v +macro_def Tools/cases_generator/parser.py /^ def macro_def(self) -> Macro | None:$/;" m class:Parser +macros packaging/macros.python3.py /^macros = {$/;" v +mactypes Lib/idlelib/idle_test/test_macosx.py /^mactypes = {'carbon', 'cocoa', 'xquartz'}$/;" v +madcomplex Lib/test/test_descr.py /^ class madcomplex(complex):$/;" c function:.test_basic_inheritance +madstring Lib/test/test_descr.py /^ class madstring(str):$/;" c function:.test_basic_inheritance +madtuple Lib/test/test_descr.py /^ class madtuple(tuple):$/;" c function:.test_basic_inheritance +madunicode Lib/test/test_descr.py /^ class madunicode(str):$/;" c function:.test_basic_inheritance +magenta Lib/test/test_enum.py /^ magenta = 5$/;" v class:TestSpecial.test_extending.Color.MoreColor +magenta Lib/test/test_enum.py /^ magenta = 5$/;" v class:TestSpecial.test_extending2.Color.MoreColor +magenta Lib/test/test_enum.py /^ magenta = 5$/;" v class:TestSpecial.test_extending3.MoreColor +magic Include/pyexpat.h /^ char* magic; \/* set to PyExpat_CAPI_MAGIC *\/$/;" m struct:PyExpat_CAPI +magic_check Lib/glob.py /^magic_check = re.compile('([*?[])')$/;" v +magic_check_bytes Lib/glob.py /^magic_check_bytes = re.compile(b'([*?[])')$/;" v +magic_decorator Lib/test/test_typing.py /^ def magic_decorator(func):$/;" f function:ForwardRefTests.test_meta_no_type_check +magic_html_parser Doc/includes/email-read-alternative.py /^def magic_html_parser(html_text, partfiles):$/;" f +magic_methods Lib/unittest/mock.py /^magic_methods = ($/;" v +magic_re Lib/http/cookiejar.py /^ magic_re = re.compile(r"^\\#LWP-Cookies-(\\d+\\.\\d+)", re.ASCII)$/;" v class:CookieJar +magic_values PC/launcher.c /^static PYC_MAGIC magic_values[] = {$/;" v file: +mail Lib/smtplib.py /^ def mail(self, sender, options=()):$/;" m class:SMTP +mail_response Lib/test/test_smtplib.py /^ mail_response = None$/;" v class:SimSMTPChannel +mailboxes Lib/email/_header_value_parser.py /^ def mailboxes(self):$/;" m class:Address +mailboxes Lib/email/_header_value_parser.py /^ def mailboxes(self):$/;" m class:AddressList +mailboxes Lib/email/_header_value_parser.py /^ def mailboxes(self):$/;" m class:Group +mailboxes Lib/email/_header_value_parser.py /^ def mailboxes(self):$/;" m class:GroupList +mailboxes Lib/email/_header_value_parser.py /^ def mailboxes(self):$/;" m class:MailboxList +mailcap Lib/test/test_mailcap.py /^mailcap = warnings_helper.import_deprecated('mailcap')$/;" v +main Doc/includes/dbpickle.py /^def main():$/;" f +main Doc/includes/diff.py /^def main():$/;" f +main Doc/includes/email-dir.py /^def main():$/;" f +main Doc/includes/email-unpack.py /^def main():$/;" f +main Doc/includes/ndiff.py /^def main(args):$/;" f +main Doc/includes/run-func.c /^main(int argc, char *argv[])$/;" f +main Doc/tools/check-warnings.py /^def main(argv: list[str] | None = None) -> int:$/;" f +main Include/internal/pycore_runtime.h /^ PyInterpreterState *main;$/;" m struct:pyruntimestate::pyinterpreters +main Lib/__hello__.py /^def main():$/;" f +main Lib/__phello__/__init__.py /^def main():$/;" f +main Lib/__phello__/spam.py /^def main():$/;" f +main Lib/ast.py /^def main():$/;" f +main Lib/base64.py /^def main():$/;" f +main Lib/cProfile.py /^def main():$/;" f +main Lib/calendar.py /^def main(args):$/;" f +main Lib/compileall.py /^def main():$/;" f +main Lib/gzip.py /^def main():$/;" f +main Lib/idlelib/pyshell.py /^def main():$/;" f +main Lib/idlelib/run.py /^def main(del_exitfunc=False):$/;" f +main Lib/json/tool.py /^def main():$/;" f +main Lib/lib2to3/main.py /^def main(fixer_pkg, args=None):$/;" f +main Lib/lib2to3/pgen2/driver.py /^def main(*args):$/;" f +main Lib/multiprocessing/forkserver.py /^def main(listener_fd, alive_r, preload, main_path=None, sys_path=None):$/;" f +main Lib/multiprocessing/resource_tracker.py /^def main(fd):$/;" f +main Lib/pdb.py /^def main():$/;" f +main Lib/profile.py /^def main():$/;" f +main Lib/py_compile.py /^def main():$/;" f +main Lib/quopri.py /^def main():$/;" f +main Lib/site.py /^def main():$/;" f +main Lib/sqlite3/__main__.py /^def main(*args):$/;" f +main Lib/tabnanny.py /^def main():$/;" f +main Lib/tarfile.py /^def main():$/;" f +main Lib/test/_test_venv_multiprocessing.py /^def main():$/;" f +main Lib/test/bisect_cmd.py /^def main():$/;" f +main Lib/test/curses_tests.py /^def main(stdscr):$/;" f +main Lib/test/libregrtest/main.py /^ def main(self, tests=None, **kwargs):$/;" m class:Regrtest +main Lib/test/libregrtest/main.py /^def main(tests=None, **kwargs):$/;" f +main Lib/test/pythoninfo.py /^def main():$/;" f +main Lib/test/reperf.py /^def main():$/;" f +main Lib/test/sortperf.py /^def main():$/;" f +main Lib/test/test_ast.py /^def main():$/;" f +main Lib/test/test_asyncgen.py /^ async def main():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_02 +main Lib/test/test_asyncgen.py /^ async def main():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_exception_01 +main Lib/test/test_asyncgen.py /^ async def main():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_shutdown_exception_02 +main Lib/test/test_asyncgen.py /^ async def main():$/;" f function:AsyncGenAsyncioTest.test_asyncgen_nonstarted_hooks_are_cancellable +main Lib/test/test_asyncio/test_base_events.py /^ async def main():$/;" f function:BaseEventLoopWithSelectorTests.test_create_server_ipv6 +main Lib/test/test_asyncio/test_context.py /^ async def main():$/;" f function:DecimalContextTest.test_asyncio_task_decimal_context +main Lib/test/test_asyncio/test_events.py /^ async def main():$/;" f function:GetEventLoopTestsMixin.tearDown.test_get_event_loop_new_process +main Lib/test/test_asyncio/test_events.py /^ async def main():$/;" f function:EventLoopTestsMixin.test_prompt_cancellation +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_cancels_hanging_tasks +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_closes_gens_after_hanging_tasks_errors +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_from_running_loop +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_loop_factory +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_raises +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_reports_hanging_tasks_errors +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_return +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_set_event_loop +main Lib/test/test_asyncio/test_runners.py /^ async def main():$/;" f function:RunTests.test_asyncio_run_without_uncancel +main Lib/test/test_asyncio/test_runners.py /^ async def main(expected):$/;" f function:RunTests.test_asyncio_run_debug +main Lib/test/test_asyncio/test_server.py /^ async def main(srv):$/;" f function:BaseStartServer.test_start_server_1 +main Lib/test/test_asyncio/test_server.py /^ async def main(srv):$/;" f function:SelectorStartServerTests.test_start_unix_server_1 +main Lib/test/test_asyncio/test_ssl.py /^ async def main(proto, on_con, on_eof, on_con_lost):$/;" f function:TestSSL.test_start_tls_server_1 +main Lib/test/test_asyncio/test_sslproto.py /^ async def main():$/;" f function:BaseStartTLS.test_start_tls_wrong_args +main Lib/test/test_asyncio/test_sslproto.py /^ async def main(proto, on_con, on_con_lost, on_got_hello):$/;" f function:BaseStartTLS.test_start_tls_server_1 +main Lib/test/test_asyncio/test_streams.py /^ async def main():$/;" f function:.test_multiple_drain +main Lib/test/test_asyncio/test_subprocess.py /^ async def main():$/;" f function:SubprocessMixin.GenericWatcherTests.test_create_subprocess_with_pidfd +main Lib/test/test_asyncio/test_subprocess.py /^ async def main() -> None:$/;" f function:SubprocessMixin.test_create_subprocess_env_exec +main Lib/test/test_asyncio/test_subprocess.py /^ async def main() -> None:$/;" f function:SubprocessMixin.test_create_subprocess_env_shell +main Lib/test/test_asyncio/test_subprocess.py /^ async def main() -> None:$/;" f function:SubprocessMixin.test_subprocess_concurrent_wait +main Lib/test/test_asyncio/test_subprocess.py /^ async def main() -> None:$/;" f function:SubprocessMixin.test_subprocess_consistent_callbacks +main Lib/test/test_asyncio/test_subprocess.py /^ async def main():$/;" f function:SubprocessMixin.test_subprocess_communicate_stdout +main Lib/test/test_asyncio/test_taskgroups.py /^ async def main():$/;" f function:TestTaskGroup.test_taskgroup_context_manager_exit_raises +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_cancel_gather_2 +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_context_1 +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_context_2 +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_context_3 +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_context_4 +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_context_5 +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_context_6 +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_exception_traceback +main Lib/test/test_asyncio/test_tasks.py /^ async def main():$/;" f function:BaseTaskTests.test_wait_generator +main Lib/test/test_asyncio/test_unix_events.py /^ async def main():$/;" f function:TestFork.test_fork_signal_handling +main Lib/test/test_asyncio/test_windows_events.py /^ async def main():$/;" f function:WinPolicyTests.test_proactor_win_policy +main Lib/test/test_asyncio/test_windows_events.py /^ async def main():$/;" f function:WinPolicyTests.test_selector_win_policy +main Lib/test/test_coroutines.py /^ async def main():$/;" f function:CoroutineTest.test_for_11 +main Lib/test/test_coroutines.py /^ async def main():$/;" f function:CoroutineTest.test_for_6 +main Lib/test/test_cppext/setup.py /^def main():$/;" f +main Lib/test/test_cprofile.py /^def main():$/;" f +main Lib/test/test_exceptions.py /^ def main():$/;" f function:ExceptionTests.test_yield_in_nested_try_excepts +main Lib/test/test_importlib/partial/cfimport.py /^def main():$/;" f +main Lib/test/test_importlib/partial/pool_in_threads.py /^def main():$/;" f +main Lib/test/test_importlib/resources/update-zips.py /^def main():$/;" f +main Lib/test/test_lib2to3/pytree_idempotency.py /^def main():$/;" f +main Lib/test/test_profile.py /^def main():$/;" f +main Lib/test/test_unittest/testmock/testasync.py /^ async def main():$/;" f function:AsyncAutospecTest.test_create_autospec +main Lib/test/test_unittest/testmock/testasync.py /^ async def main():$/;" f function:AsyncIteratorTest.test_aiter_set_return_value +main Lib/test/test_unittest/testmock/testasync.py /^ async def main(self):$/;" m class:AsyncContextManagerTest.ProductionCode +main Lib/timeit.py /^def main(args=None, *, _wrap_timer=None):$/;" f +main Lib/tokenize.py /^def main():$/;" f +main Lib/trace.py /^def main():$/;" f +main Lib/turtledemo/__main__.py /^def main():$/;" f +main Lib/turtledemo/bytedesign.py /^def main():$/;" f +main Lib/turtledemo/chaos.py /^def main():$/;" f +main Lib/turtledemo/clock.py /^def main():$/;" f +main Lib/turtledemo/colormixer.py /^def main():$/;" f +main Lib/turtledemo/forest.py /^def main():$/;" f +main Lib/turtledemo/fractalcurves.py /^def main():$/;" f +main Lib/turtledemo/lindenmayer.py /^def main():$/;" f +main Lib/turtledemo/minimal_hanoi.py /^def main():$/;" f +main Lib/turtledemo/nim.py /^def main():$/;" f +main Lib/turtledemo/paint.py /^def main():$/;" f +main Lib/turtledemo/peace.py /^def main():$/;" f +main Lib/turtledemo/penrose.py /^def main():$/;" f +main Lib/turtledemo/planet_and_moon.py /^def main():$/;" f +main Lib/turtledemo/rosette.py /^def main():$/;" f +main Lib/turtledemo/round_dance.py /^def main():$/;" f +main Lib/turtledemo/sorting_animate.py /^def main():$/;" f +main Lib/turtledemo/tree.py /^def main():$/;" f +main Lib/turtledemo/two_canvases.py /^def main():$/;" f +main Lib/turtledemo/yinyang.py /^def main():$/;" f +main Lib/unittest/main.py /^main = TestProgram$/;" v +main Lib/uuid.py /^def main():$/;" f +main Lib/venv/__init__.py /^def main(args=None):$/;" f +main Lib/webbrowser.py /^def main():$/;" f +main Lib/zipapp.py /^def main(args=None):$/;" f +main Lib/zipfile/__main__.py /^def main(args=None):$/;" f +main Mac/BuildScript/build-installer.py /^def main():$/;" f +main Mac/BuildScript/resources/install_certificates.command /^ main()$/;" f +main Mac/Extras.install.py /^def main():$/;" f +main Mac/Tools/plistlib_generate_testdata.py /^def main():$/;" f +main Mac/Tools/pythonw.c /^main(int argc, char **argv) {$/;" f +main Modules/_blake2/blake2b2s.py /^def main():$/;" f +main Modules/_decimal/libmpdec/bench.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/bench_full.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/compare.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/div.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/divmod.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/multiply.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/pow.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/powmod.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/shift.c /^main(int argc, char **argv)$/;" f +main Modules/_decimal/libmpdec/examples/sqrt.c /^main(int argc, char **argv)$/;" f +main Modules/expat/siphash.h /^main(void) {$/;" f +main Objects/typeslots.py /^def main():$/;" f +main PC/layout/main.py /^def main():$/;" f +main PCbuild/get_external.py /^def main():$/;" f +main PCbuild/prepare_ssl.py /^def main():$/;" f +main Parser/asdl_c.py /^def main(input_filename, c_filename, h_filename, internal_h_filename, dump_module=False):$/;" f +main Programs/_freeze_module.c /^main(int argc, char *argv[])$/;" f +main Programs/_freeze_module.py /^def main():$/;" f +main Programs/_testembed.c /^int main(int argc, char *argv[])$/;" f +main Programs/freeze_test_frozenmain.py /^def main():$/;" f +main Programs/python.c /^main(int argc, char **argv)$/;" f +main Python/makeopcodetargets.py /^def main():$/;" f +main Tools/build/check_extension_modules.py /^def main():$/;" f +main Tools/build/deepfreeze.py /^def main() -> None:$/;" f +main Tools/build/freeze_modules.py /^def main():$/;" f +main Tools/build/generate_global_objects.py /^def main() -> None:$/;" f +main Tools/build/generate_levenshtein_examples.py /^def main():$/;" f +main Tools/build/generate_opcode_h.py /^def main(opcode_py, outfile='Include\/opcode.h',$/;" f +main Tools/build/generate_re_casefix.py /^def main(outfile='Lib\/re\/_casefix.py'):$/;" f +main Tools/build/generate_sre_constants.py /^def main($/;" f +main Tools/build/generate_stdlib_module_names.py /^def main():$/;" f +main Tools/build/generate_token.py /^def main(op, infile='Grammar\/Tokens', *args):$/;" f +main Tools/build/smelly.py /^def main():$/;" f +main Tools/build/stable_abi.py /^def main():$/;" f +main Tools/build/umarshal.py /^def main():$/;" f +main Tools/c-analyzer/c_analyzer/__main__.py /^def main(cmd, cmd_kwargs):$/;" f +main Tools/c-analyzer/c_parser/__main__.py /^def main(cmd, cmd_kwargs):$/;" f +main Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def main(cmd, cmd_kwargs):$/;" f +main Tools/c-analyzer/cpython/__main__.py /^def main(cmd, cmd_kwargs):$/;" f +main Tools/c-analyzer/table-file.py /^def main(filename):$/;" f +main Tools/cases_generator/generate_cases.py /^def main():$/;" f +main Tools/ccbench/ccbench.py /^def main():$/;" f +main Tools/clinic/clinic.py /^def main(argv):$/;" f +main Tools/freeze/freeze.py /^def main():$/;" f +main Tools/freeze/regen_frozen.py /^def main():$/;" f +main Tools/i18n/msgfmt.py /^def main():$/;" f +main Tools/i18n/pygettext.py /^def main():$/;" f +main Tools/importbench/importbench.py /^def main(import_, options):$/;" f +main Tools/iobench/iobench.py /^def main():$/;" f +main Tools/msi/csv_to_wxs.py /^def main(file_source, install_target):$/;" f +main Tools/msi/generate_md5.py /^def main():$/;" f +main Tools/patchcheck/patchcheck.py /^def main():$/;" f +main Tools/patchcheck/reindent.py /^def main():$/;" f +main Tools/patchcheck/untabify.py /^def main():$/;" f +main Tools/peg_generator/pegen/__main__.py /^def main() -> None:$/;" f +main Tools/peg_generator/pegen/first_sets.py /^def main() -> None:$/;" f +main Tools/peg_generator/pegen/grammar_visualizer.py /^def main() -> None:$/;" f +main Tools/peg_generator/pegen/keywordgen.py /^def main() -> None:$/;" f +main Tools/peg_generator/scripts/ast_timings.py /^def main() -> None:$/;" f +main Tools/peg_generator/scripts/benchmark.py /^def main():$/;" f +main Tools/peg_generator/scripts/download_pypi_packages.py /^def main() -> None:$/;" f +main Tools/peg_generator/scripts/find_max_nesting.py /^def main() -> None:$/;" f +main Tools/peg_generator/scripts/grammar_grapher.py /^def main() -> None:$/;" f +main Tools/peg_generator/scripts/joinstats.py /^def main() -> None:$/;" f +main Tools/peg_generator/scripts/test_parse_directory.py /^def main() -> None:$/;" f +main Tools/peg_generator/scripts/test_pypi_packages.py /^def main() -> None:$/;" f +main Tools/scripts/checkpip.py /^def main():$/;" f +main Tools/scripts/divmod_threshold.py /^def main():$/;" f +main Tools/scripts/run_tests.py /^def main(regrtest_args):$/;" f +main Tools/scripts/summarize_stats.py /^def main():$/;" f +main Tools/ssl/make_ssl_data.py /^def main():$/;" f +main Tools/ssl/multissltests.py /^def main():$/;" f +main Tools/stringbench/stringbench.py /^def main():$/;" f +main Tools/unicode/genmap_japanese.py /^def main():$/;" f +main Tools/unicode/genmap_korean.py /^def main():$/;" f +main Tools/unicode/genmap_schinese.py /^def main():$/;" f +main Tools/unittestgui/unittestgui.py /^def main(initialTestName=""):$/;" f +main Tools/wasm/wasm_assets.py /^def main():$/;" f +main Tools/wasm/wasm_build.py /^def main():$/;" f +main Tools/wasm/wasm_webserver.py /^def main():$/;" f +main config.guess /^ main()$/;" f +main config.guess /^ main ()$/;" f +main config.guess /^main ()$/;" f +main_argc Programs/_testembed.c /^int main_argc;$/;" v +main_argv Programs/_testembed.c /^char **main_argv;$/;" v +main_def Modules/_testmultiphase.c /^static PyModuleDef main_def = TEST_MODULE_DEF("main", main_slots, testexport_methods);$/;" v file: +main_for_filenames Tools/c-analyzer/c_common/scriptutil.py /^def main_for_filenames(filenames, process_filenames=None, relroot=fsutil.USE_CWD):$/;" f +main_hkscs Tools/unicode/genmap_tchinese.py /^def main_hkscs():$/;" f +main_in_children_source Lib/test/test_multiprocessing_main_handling.py /^ main_in_children_source = test_source$/;" v class:ForkCmdLineTest +main_in_children_source Lib/test/test_multiprocessing_main_handling.py /^ main_in_children_source = test_source_main_skipped_in_children$/;" v class:ForkServerCmdLineTest +main_in_children_source Lib/test/test_multiprocessing_main_handling.py /^ main_in_children_source = test_source_main_skipped_in_children$/;" v class:SpawnCmdLineTest +main_in_temp_cwd Lib/test/regrtest.py /^main_in_temp_cwd = main$/;" v +main_slots Modules/_testmultiphase.c /^static PyModuleDef_Slot main_slots[] = {$/;" v file: +main_thread Include/internal/pycore_runtime.h /^ unsigned long main_thread;$/;" m struct:pyruntimestate +main_thread Lib/threading.py /^def main_thread():$/;" f +main_tw Tools/unicode/genmap_tchinese.py /^def main_tw():$/;" f +main_xoptions Lib/test/test_embed.py /^ def main_xoptions(self, xoptions_list):$/;" m class:InitConfigTests +mainformatlong Objects/unicodeobject.c /^mainformatlong(PyObject *v,$/;" f file: +mainloop Lib/idlelib/rpc.py /^ def mainloop(self):$/;" m class:SocketIO +mainloop Lib/tkinter/__init__.py /^ def mainloop(self, n=0):$/;" m class:Misc +mainloop Lib/tkinter/__init__.py /^def mainloop(n=0):$/;" f +mainloop Lib/turtle.py /^ def mainloop(self):$/;" m class:TurtleScreenBase +mainpage Lib/idlelib/idle_test/test_configdialog.py /^mainpage = changes['main']$/;" v +maintype Lib/email/_header_value_parser.py /^ maintype = 'text'$/;" v class:ContentType +maintype Lib/email/headerregistry.py /^ def maintype(self):$/;" m class:ContentTypeHeader +major Lib/email/_header_value_parser.py /^ major = None$/;" v class:MIMEVersion +major Lib/email/headerregistry.py /^ def major(self):$/;" m class:MIMEVersionHeader +major Modules/expat/expat.h /^ int major;$/;" m struct:__anon601 +make Lib/zipfile/_path/__init__.py /^ def make(cls, source):$/;" m class:CompleteDirs +make Tools/i18n/msgfmt.py /^def make(filename, outfile):$/;" f +makeBuilder Lib/xml/dom/expatbuilder.py /^def makeBuilder(options):$/;" f +makeCallable Lib/test/test_inspect.py /^ def makeCallable(self, signature):$/;" m class:TestGetcallargsFunctions +makeCallable Lib/test/test_inspect.py /^ def makeCallable(self, signature):$/;" m class:TestGetcallargsMethods +makeCallable Lib/test/test_inspect.py /^ def makeCallable(self, signature):$/;" m class:TestGetcallargsUnboundMethods +makeFontMenu Lib/turtledemo/__main__.py /^ def makeFontMenu(self, master):$/;" m class:DemoWindow +makeGraphFrame Lib/turtledemo/__main__.py /^ def makeGraphFrame(self, root):$/;" m class:DemoWindow +makeHelpMenu Lib/turtledemo/__main__.py /^ def makeHelpMenu(self, master):$/;" m class:DemoWindow +makeLoadDemoMenu Lib/turtledemo/__main__.py /^ def makeLoadDemoMenu(self, master):$/;" m class:DemoWindow +makeLogRecord Lib/logging/__init__.py /^def makeLogRecord(dict):$/;" f +makeMpkgPlist Mac/BuildScript/build-installer.py /^def makeMpkgPlist(path):$/;" f +makePickle Lib/logging/handlers.py /^ def makePickle(self, record):$/;" m class:SocketHandler +makeRecord Lib/logging/__init__.py /^ def makeRecord(self, name, level, fn, lno, msg, args, exc_info,$/;" m class:Logger +makeReturner Lib/test/test_scope.py /^ def makeReturner(*lst):$/;" f function:ScopeTests.testComplexDefinitions +makeReturner2 Lib/test/test_scope.py /^ def makeReturner2(**kwargs):$/;" f function:ScopeTests.testComplexDefinitions +makeSocket Lib/logging/handlers.py /^ def makeSocket(self):$/;" m class:DatagramHandler +makeSocket Lib/logging/handlers.py /^ def makeSocket(self, timeout=1):$/;" m class:SocketHandler +makeSuite Lib/unittest/loader.py /^def makeSuite(testCaseClass, prefix='test', sortUsing=util.three_way_cmp,$/;" f +makeTextFrame Lib/turtledemo/__main__.py /^ def makeTextFrame(self, root):$/;" m class:DemoWindow +makeTree Lib/test/test_zipimport.py /^ def makeTree(self, files, dirName=TEMP_DIR):$/;" m class:UncompressedZipImportTestCase +makeZip Lib/test/test_zipimport.py /^ def makeZip(self, files, zipName=TEMP_ZIP, **kw):$/;" m class:UncompressedZipImportTestCase +make_Zreplacement Modules/_datetimemodule.c /^make_Zreplacement(PyObject *object, PyObject *tzinfoarg)$/;" f file: +make_abc_subclasses Lib/test/test_importlib/test_abc.py /^def make_abc_subclasses(base_class, name=None, inst=False, **kwargs):$/;" f +make_acw Lib/idlelib/idle_test/test_autocomplete.py /^ def make_acw(): return self.dummy_acw()$/;" f function:AutoCompleteTest.test_open_completions +make_adder Lib/test/test_inspect.py /^ def make_adder(x):$/;" f function:TestGetClosureVars.test_nonlocal_vars +make_adder Lib/test/test_scope.py /^ def make_adder(x):$/;" f function:ScopeTests.testSimpleNesting +make_adder2 Lib/test/test_scope.py /^ def make_adder2(x):$/;" f function:ScopeTests.testExtraNesting +make_adder3 Lib/test/test_scope.py /^ def make_adder3(x):$/;" f function:ScopeTests.testSimpleAndRebinding +make_adder4 Lib/test/test_scope.py /^ def make_adder4(): # XXX add exta level of indirection$/;" f function:ScopeTests.testNestingGlobalNoFree +make_adder5 Lib/test/test_scope.py /^ def make_adder5(x):$/;" f function:ScopeTests.testNestingThroughClass +make_adder6 Lib/test/test_scope.py /^ def make_adder6(x):$/;" f function:ScopeTests.testNestingPlusFreeRefToGlobal +make_alternative Lib/email/message.py /^ def make_alternative(self, boundary=None):$/;" m class:MIMEPart +make_arange Lib/test/test_asyncgen.py /^ def make_arange(n):$/;" f function:AsyncGenAsyncioTest.test_async_gen_expression_01 +make_arange Lib/test/test_asyncgen.py /^ def make_arange(n):$/;" f function:AsyncGenAsyncioTest.test_async_gen_expression_02 +make_archive Lib/shutil.py /^def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,$/;" f +make_archive Lib/test/test_zipapp.py /^ def make_archive(self):$/;" m class:ZipAppCmdlineTest +make_array Modules/arraymodule.c /^make_array(PyTypeObject *arraytype, char typecode, PyObject *items)$/;" f file: +make_bad_fd Lib/test/support/os_helper.py /^def make_bad_fd():$/;" f +make_base Lib/test/test_type_params.py /^def make_base(arg):$/;" f +make_bloom_mask Objects/unicodeobject.c /^make_bloom_mask(int kind, const void* ptr, Py_ssize_t len)$/;" f file: +make_button Lib/idlelib/searchbase.py /^ def make_button(self, label, command, isdef=0):$/;" m class:SearchDialogBase +make_byte_stream Lib/test/test_sax.py /^ def make_byte_stream(self):$/;" m class:PrepareInputSourceTest +make_c Tools/build/generate_token.py /^def make_c(infile, outfile='Parser\/token.c'):$/;" f +make_ca Lib/test/make_ssl_certs.py /^def make_ca():$/;" f +make_callback Lib/idlelib/configdialog.py /^ def make_callback(var, config):$/;" m class:VarTrace +make_cert_key Lib/test/make_ssl_certs.py /^def make_cert_key(hostname, sign=False, extra_san='',$/;" f +make_cfg_traversal_stack Python/flowgraph.c /^make_cfg_traversal_stack(basicblock *entryblock) {$/;" f file: +make_character_stream Lib/test/test_sax.py /^ def make_character_stream(self):$/;" m class:PrepareInputSourceTest +make_chflags_raiser Lib/test/test_shutil.py /^ def make_chflags_raiser(err):$/;" f function:TestCopy.test_copystat_handles_harmless_chflags_errors +make_closure_functions Lib/test/test_builtin.py /^ def make_closure_functions():$/;" f function:BuiltinTest.test_exec_closure +make_cmd Tools/wasm/wasm_build.py /^ def make_cmd(self) -> List[str]:$/;" m class:BuildProfile +make_comparable Lib/xmlrpc/client.py /^ def make_comparable(self, other):$/;" m class:DateTime +make_condition Lib/importlib/metadata/__init__.py /^ def make_condition(name):$/;" f function:Distribution._convert_egg_info_reqs_to_simple_reqs +make_connection Lib/xmlrpc/client.py /^ def make_connection(self, host):$/;" m class:SafeTransport +make_connection Lib/xmlrpc/client.py /^ def make_connection(self, host):$/;" m class:Transport +make_const Python/ast_opt.c /^make_const(expr_ty node, PyObject *val, PyArena *arena)$/;" f file: +make_const_tuple Python/ast_opt.c /^make_const_tuple(asdl_expr_seq *elts)$/;" f file: +make_cookies Lib/http/cookiejar.py /^ def make_cookies(self, response, request):$/;" m class:CookieJar +make_dataclass Lib/dataclasses.py /^def make_dataclass(cls_name, fields, *, bases=(), namespace=None, init=True,$/;" f +make_decode_exception Objects/unicodeobject.c /^make_decode_exception(PyObject **exceptionObject,$/;" f file: +make_decorator Lib/test/test_decorators.py /^ def make_decorator(tag):$/;" f function:TestDecorators.test_eval_order +make_deep_eg Lib/test/test_exception_group.py /^ def make_deep_eg(self):$/;" m class:DeepRecursionInSplitAndSubgroup +make_deep_path Lib/test/test_zipfile/_path/test_complexity.py /^ def make_deep_path(cls, depth):$/;" m class:TestComplexity +make_deep_paths Lib/test/test_zipfile/_path/test_complexity.py /^ def make_deep_paths(cls, depth):$/;" m class:TestComplexity +make_defaults Lib/test/test_email/test_policy.py /^def make_defaults(base_defaults, differences):$/;" f +make_dfa Lib/lib2to3/pgen2/pgen.py /^ def make_dfa(self, start, finish):$/;" m class:ParserGenerator +make_dict_from_instance_attributes Objects/dictobject.c /^make_dict_from_instance_attributes(PyInterpreterState *interp,$/;" f file: +make_dummy_object Lib/test/test_concurrent_futures/executor.py /^def make_dummy_object(_):$/;" f +make_emscripten_info Python/sysmodule.c /^make_emscripten_info(void)$/;" f file: +make_encode_exception Objects/unicodeobject.c /^make_encode_exception(PyObject **exceptionObject,$/;" f file: +make_encoding_map Lib/codecs.py /^def make_encoding_map(decoding_map):$/;" f +make_entry Lib/idlelib/searchbase.py /^ def make_entry(self, label_text, var):$/;" m class:SearchDialogBase +make_escapes Tools/i18n/pygettext.py /^def make_escapes(pass_nonascii):$/;" f +make_everything_awesome Lib/test/test_typing.py /^ make_everything_awesome=True,$/;" v class:DataclassTransformTests.test_base_class.ModelBase +make_evil_tarfile Lib/test/test_tarfile.py /^ def make_evil_tarfile(self, tar_name):$/;" m class:CommandLineTest +make_except_stack Python/flowgraph.c /^make_except_stack(void) {$/;" f file: +make_file Lib/cgi.py /^ def make_file(self):$/;" m class:FieldStorage +make_file Lib/difflib.py /^ def make_file(self, fromlines, tolines, fromdesc='', todesc='',$/;" m class:HtmlDiff +make_file Lib/importlib/metadata/__init__.py /^ def make_file(name, hash=None, size_str=None):$/;" f function:Distribution.files +make_file Lib/test/test_tempfile.py /^ def make_file():$/;" f function:TestNamedTemporaryFile.test_iter +make_files Lib/importlib/metadata/__init__.py /^ def make_files(lines):$/;" f function:Distribution.files +make_finalizers Lib/test/_test_multiprocessing.py /^ def make_finalizers():$/;" f function:_TestFinalize.test_thread_safety +make_first Lib/lib2to3/pgen2/pgen.py /^ def make_first(self, c, name):$/;" m class:ParserGenerator +make_first_graph Tools/peg_generator/pegen/parser_generator.py /^def make_first_graph(rules: Dict[str, Rule]) -> Dict[str, AbstractSet[str]]:$/;" f +make_flags Python/sysmodule.c /^make_flags(PyInterpreterState *interp)$/;" f file: +make_foo_optimized_then_set_event Lib/test/test_monitoring.py /^ def make_foo_optimized_then_set_event():$/;" f function:TestRegressions.test_108390 +make_frame Lib/idlelib/idle_test/test_textview.py /^ def make_frame(self, wrap=NONE, **kwargs):$/;" m class:ScrollableTextFrameTest +make_frame Lib/idlelib/searchbase.py /^ def make_frame(self,labeltext=None):$/;" m class:SearchDialogBase +make_frames Lib/test/test_frame.py /^ def make_frames(self):$/;" m class:FrameAttrsTest +make_freplacement Modules/_datetimemodule.c /^make_freplacement(PyObject *object)$/;" f file: +make_funcptrtype_dict Modules/_ctypes/_ctypes.c /^make_funcptrtype_dict(StgDictObject *stgdict)$/;" f file: +make_function_with_no_checks Lib/test/test_peepholer.py /^ def make_function_with_no_checks(self):$/;" m class:TestMarkingVariablesAsUnKnown +make_gen Objects/genobject.c /^make_gen(PyTypeObject *type, PyFunctionObject *func)$/;" f file: +make_grammar Lib/lib2to3/pgen2/pgen.py /^ def make_grammar(self):$/;" m class:ParserGenerator +make_grouping Lib/test/test_decimal.py /^ def make_grouping(lst):$/;" f function:CWhitebox.test_invalid_override +make_grouping Lib/test/test_decimal.py /^ def make_grouping(lst):$/;" f function:FormatTest.test_n_format +make_gui Lib/idlelib/debugger.py /^ def make_gui(self):$/;" m class:Debugger +make_h Tools/build/generate_token.py /^def make_h(infile, outfile='Include\/internal\/pycore_token.h'):$/;" f +make_hand_shape Lib/turtledemo/clock.py /^def make_hand_shape(name, laenge, spitze):$/;" f +make_header Lib/email/header.py /^def make_header(decoded_seq, maxlinelen=None, header_name=None,$/;" f +make_header Lib/test/test_email/test_headerregistry.py /^ def make_header(self, name, value):$/;" m class:TestHeaderBase +make_heaptype_with_member Modules/_testcapi/heaptype_relative.c /^make_heaptype_with_member(PyObject *module, PyObject *args)$/;" f file: +make_hkscs_map Tools/unicode/genmap_tchinese.py /^def make_hkscs_map(table):$/;" f +make_https_server Lib/test/ssl_servers.py /^def make_https_server(case, *, context=None, certfile=CERTFILE,$/;" f +make_id Lib/msilib/__init__.py /^def make_id(str):$/;" f +make_id Tools/msi/csv_to_wxs.py /^def make_id(path):$/;" f +make_identity_dict Lib/codecs.py /^def make_identity_dict(rng):$/;" f +make_immutable_type_with_base Modules/_testcapi/heaptype.c /^make_immutable_type_with_base(PyObject *self, PyObject *base)$/;" f file: +make_impl_info Python/sysmodule.c /^make_impl_info(PyObject *version_info)$/;" f file: +make_inheritable Modules/_posixsubprocess.c /^make_inheritable(int *c_fds_to_keep, Py_ssize_t len, int errpipe_write)$/;" f file: +make_intermediate Modules/_io/stringio.c /^make_intermediate(stringio *self)$/;" f file: +make_ipv4_addr Modules/overlapped.c /^make_ipv4_addr(const struct sockaddr_in *addr)$/;" f file: +make_ipv4_addr Modules/socketmodule.c /^make_ipv4_addr(const struct sockaddr_in *addr)$/;" f file: +make_ipv6_addr Modules/overlapped.c /^make_ipv6_addr(const struct sockaddr_in6 *addr)$/;" f file: +make_ipv6_addr Modules/socketmodule.c /^make_ipv6_addr(const struct sockaddr_in6 *addr)$/;" f file: +make_it Lib/test/test_wsgiref.py /^ def make_it(text=text,size=size):$/;" f function:UtilityTests.checkFW +make_label Lib/lib2to3/pgen2/pgen.py /^ def make_label(self, c, label):$/;" m class:ParserGenerator +make_legacy_pyc Lib/test/support/import_helper.py /^def make_legacy_pyc(source):$/;" f +make_memoryview_from_NULL_pointer Modules/_testcapimodule.c /^make_memoryview_from_NULL_pointer(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +make_menu Lib/idlelib/scrolledlist.py /^ def make_menu(self):$/;" m class:ScrolledList +make_mixed Lib/email/message.py /^ def make_mixed(self, boundary=None):$/;" m class:MIMEPart +make_mmap_file Lib/test/test_mmap.py /^ def make_mmap_file (self, f, halfsize):$/;" m class:MmapTests +make_mock_editor_window Lib/idlelib/idle_test/test_squeezer.py /^ def make_mock_editor_window(self, with_text_widget=False):$/;" m class:SqueezerTest +make_mock_file Lib/test/test_nntplib.py /^def make_mock_file(handler):$/;" f +make_mock_squeezer Lib/idlelib/idle_test/test_squeezer.py /^ def make_mock_squeezer(self):$/;" m class:ExpandingButtonTest +make_module Lib/test/test_traceback.py /^ def make_module(self, code):$/;" m class:SuggestionFormattingTestBase +make_msgid Lib/email/utils.py /^def make_msgid(idstring=None, domain=None):$/;" f +make_names Lib/test/test_zipfile/_path/test_complexity.py /^ def make_names(cls, width, letters=string.ascii_lowercase):$/;" m class:TestComplexity +make_ncurses_version Modules/_cursesmodule.c /^make_ncurses_version(PyTypeObject *type)$/;" f file: +make_nested Lib/test/test_gc.py /^ def make_nested():$/;" f function:GCTests.test_trashcan_threads +make_new_frozenset Objects/setobject.c /^make_new_frozenset(PyTypeObject *type, PyObject *iterable)$/;" f file: +make_new_set Objects/setobject.c /^make_new_set(PyTypeObject *type, PyObject *iterable)$/;" f file: +make_new_set_basetype Objects/setobject.c /^make_new_set_basetype(PyTypeObject *type, PyObject *iterable)$/;" f file: +make_non_inheritable Python/fileutils.c /^make_non_inheritable(int fd)$/;" f file: +make_nonlocal_reader Tools/scripts/var_access_benchmark.py /^def make_nonlocal_reader():$/;" f +make_nonlocal_writer Tools/scripts/var_access_benchmark.py /^def make_nonlocal_writer():$/;" f +make_nrc Lib/test/test_netrc.py /^ def make_nrc(self, test_data):$/;" m class:NetrcTestCase +make_objecttreeitem Lib/idlelib/debugobj.py /^def make_objecttreeitem(labeltext, object, setfunction=None):$/;" f +make_option Lib/optparse.py /^make_option = Option$/;" v +make_pairs Lib/test/test_dict.py /^ def make_pairs():$/;" m class:DictTest.test_str_nonstr.Key3 +make_parser Lib/test/test_optparse.py /^ def make_parser(self, columns):$/;" m class:TestHelp +make_parser Lib/xml/sax/__init__.py /^def make_parser(parser_list=()):$/;" f +make_parser Tools/peg_generator/pegen/testutil.py /^def make_parser(source: str) -> Type[Parser]:$/;" f +make_pat Lib/idlelib/colorizer.py /^def make_pat():$/;" f +make_pending_calls Python/ceval_gil.c /^make_pending_calls(PyInterpreterState *interp)$/;" f file: +make_pkg Lib/test/support/script_helper.py /^def make_pkg(pkg_dir, init_source=''):$/;" f +make_pkg Lib/test/test_importlib/test_main.py /^ def make_pkg(name):$/;" m class:NameNormalizationTests +make_property Lib/multiprocessing/sharedctypes.py /^def make_property(name):$/;" f +make_pth Lib/test/test_site.py /^ def make_pth(self, contents, pth_dir='.', pth_name=TESTFN):$/;" m class:HelperFunctionsTests +make_py Tools/build/generate_token.py /^def make_py(infile, outfile='Lib\/token.py'):$/;" f +make_pyc Lib/test/test_zipimport.py /^def make_pyc(co, mtime, size):$/;" f +make_range_object Objects/rangeobject.c /^make_range_object(PyTypeObject *type, PyObject *start,$/;" f file: +make_related Lib/email/message.py /^ def make_related(self, boundary=None):$/;" m class:MIMEPart +make_relative_path Lib/test/test_contextlib.py /^ def make_relative_path(self, *parts):$/;" m class:TestChdir +make_request_and_skip Lib/test/test_docxmlrpc.py /^ def make_request_and_skip(self):$/;" f function:make_request_and_skipIf.decorator +make_request_and_skip Lib/test/test_xmlrpc.py /^ def make_request_and_skip(self):$/;" f function:make_request_and_skipIf.decorator +make_request_and_skipIf Lib/test/test_docxmlrpc.py /^def make_request_and_skipIf(condition, reason):$/;" f +make_request_and_skipIf Lib/test/test_xmlrpc.py /^def make_request_and_skipIf(condition, reason):$/;" f +make_request_with_timeout Lib/test/test_asyncio/test_tasks.py /^ async def make_request_with_timeout(*, sleep: float, timeout: float):$/;" f function:BaseTaskTests.test_uncancel_structured_blocks +make_reset_reader Lib/test/test_httplib.py /^ def make_reset_reader(text):$/;" f function:PersistenceTest.test_disconnected +make_rmenu Lib/idlelib/editor.py /^ def make_rmenu(self):$/;" m class:EditorWindow +make_rst Tools/build/generate_token.py /^def make_rst(infile, outfile='Doc\/library\/token-list.inc'):$/;" f +make_safe_parse_float Lib/tomllib/_parser.py /^def make_safe_parse_float(parse_float: ParseFloat) -> ParseFloat:$/;" f +make_scanner Lib/json/scanner.py /^make_scanner = c_make_scanner or py_make_scanner$/;" v +make_script Lib/test/support/script_helper.py /^def make_script(script_dir, script_basename, source, omit_suffix=False):$/;" f +make_script Lib/test/test_compileall.py /^ def make_script(self, code, name="script"):$/;" m class:HardlinkDedupTestsBase +make_search Lib/idlelib/idle_test/test_searchengine.py /^ def make_search(self, func):$/;" m class:ForwardBackwardTest +make_server Lib/test/test_docxmlrpc.py /^def make_server():$/;" f +make_server Lib/test/test_httplib.py /^ def make_server(self, certfile):$/;" m class:HTTPSTest +make_server Lib/test/test_imaplib.py /^ def make_server(self, addr, hdlr):$/;" m class:ThreadedNetworkedTests +make_server Lib/test/test_nntplib.py /^ def make_server(self, *args, **kwargs):$/;" m class:MockedNNTPTestsMixin +make_server Lib/test/test_socketserver.py /^ def make_server(self, addr, svrcls, hdlrbase):$/;" m class:SocketServerTest +make_server Lib/wsgiref/simple_server.py /^def make_server($/;" f +make_set Lib/test/test_inspect.py /^ def make_set():$/;" f function:TestSignatureBind.test_signature_bind_implicit_arg +make_sets_of_bad_objects Lib/test/test_set.py /^ def make_sets_of_bad_objects(self):$/;" m class:TestOperationsMutating +make_shared_key_dict Lib/test/test_dict.py /^ def make_shared_key_dict(self, n):$/;" m class:DictTest +make_short Lib/msilib/__init__.py /^ def make_short(self, file):$/;" m class:Directory +make_simple_tarfile Lib/test/test_tarfile.py /^ def make_simple_tarfile(self, tar_name):$/;" m class:CommandLineTest +make_sized_heaptypes Modules/_testcapi/heaptype_relative.c /^make_sized_heaptypes(PyObject *module, PyObject *args)$/;" f file: +make_socket Lib/test/test_asyncio/test_base_events.py /^ def make_socket(self, blocking=False):$/;" m class:BaseLoopSockSendfileTests +make_socket Lib/test/test_asyncio/test_proactor_events.py /^ def make_socket(self, cleanup=True):$/;" m class:ProactorEventLoopUnixSockSendfileTests +make_socket Lib/test/test_asyncio/test_sendfile.py /^ def make_socket(self, cleanup=True):$/;" m class:SockSendfileMixin +make_socket Lib/test/test_asyncio/test_unix_events.py /^ def make_socket(self, cleanup=True):$/;" m class:SelectorEventLoopUnixSockSendfileTests +make_socketpair Lib/test/test_selectors.py /^ def make_socketpair(self):$/;" m class:BaseSelectorTestCase +make_somezreplacement Modules/_datetimemodule.c /^make_somezreplacement(PyObject *object, char *sep, PyObject *tzinfoarg)$/;" f file: +make_squeezer_instance Lib/idlelib/idle_test/test_squeezer.py /^ def make_squeezer_instance(self, editor_window=None):$/;" m class:SqueezerTest +make_string_literal Tools/build/deepfreeze.py /^def make_string_literal(b: bytes) -> str:$/;" f +make_suite Lib/lib2to3/fixer_util.py /^def make_suite(node):$/;" f +make_syntax_error Tools/cases_generator/lexer.py /^def make_syntax_error($/;" f +make_syntax_error Tools/cases_generator/plexer.py /^ def make_syntax_error(self, message: str, tkn: Token|None = None) -> SyntaxError:$/;" m class:PLexer +make_syntax_error Tools/peg_generator/pegen/parser.py /^ def make_syntax_error(self, message: str, filename: str = "") -> SyntaxError:$/;" m class:Parser +make_sys_argv Python/sysmodule.c /^make_sys_argv(int argc, wchar_t * const * argv)$/;" f file: +make_table Lib/difflib.py /^ def make_table(self,fromlines,tolines,fromdesc='',todesc='',context=False,$/;" m class:HtmlDiff +make_tasks Lib/test/test_asyncio/test_locks.py /^ def make_tasks(self, n, coro):$/;" m class:BarrierTests +make_temp Lib/test/test_tempfile.py /^ def make_temp(self):$/;" m class:TestMkdtemp +make_temp Lib/test/test_tempfile.py /^ def make_temp(self):$/;" m class:TestMkstempInner +make_temp_file Lib/test/test_logging.py /^def make_temp_file(*args, **kwargs):$/;" f +make_test_archive Lib/test/test_zipfile/test_core.py /^ def make_test_archive(self, f):$/;" m class:TestsWithMultipleOpens +make_test_archive Lib/test/test_zipfile/test_core.py /^ def make_test_archive(self, f, compression):$/;" m class:AbstractTestsWithRandomBinaryFiles +make_test_archive Lib/test/test_zipfile/test_core.py /^ def make_test_archive(self, f, compression, compresslevel=None):$/;" m class:AbstractTestsWithSourceFile +make_test_file Lib/test/test_zipfile/test_core.py /^ def make_test_file(self):$/;" m class:ExtractTests +make_test_protocol Lib/test/test_asyncio/utils.py /^def make_test_protocol(base):$/;" f +make_test_source Tools/iobench/iobench.py /^ def make_test_source(name, size):$/;" f function:run_all_tests.run_test_family +make_text_widget Lib/idlelib/idle_test/test_squeezer.py /^ def make_text_widget(self, root=None):$/;" m class:SqueezerTest +make_timezones_capi Modules/_testcapi/datetime.c /^make_timezones_capi(PyObject *self, PyObject *args)$/;" f file: +make_tracer Lib/test/test_sys_settrace.py /^ def make_tracer():$/;" m class:SkipLineEventsTraceTestCase +make_tracer Lib/test/test_sys_settrace.py /^ def make_tracer():$/;" m class:TraceOpcodesTestCase +make_tracer Lib/test/test_sys_settrace.py /^ def make_tracer():$/;" m class:TraceTestCase +make_translate_exception Objects/unicodeobject.c /^make_translate_exception(PyObject **exceptionObject,$/;" f file: +make_tuple Modules/cjkcodecs/multibytecodec.c /^make_tuple(PyObject *object, Py_ssize_t len)$/;" f file: +make_type Python/Python-ast.c /^make_type(struct ast_state *state, const char *type, PyObject* base,$/;" f file: +make_type_with_base Modules/_testcapi/heaptype.c /^make_type_with_base(PyObject *self, PyObject *base)$/;" f file: +make_union Objects/typevarobject.c /^make_union(PyObject *self, PyObject *other)$/;" f file: +make_union Objects/unionobject.c /^make_union(PyObject *args)$/;" f file: +make_unraisable_hook_args Python/errors.c /^make_unraisable_hook_args(PyThreadState *tstate, PyObject *exc_type,$/;" f file: +make_uppercase Lib/test/test_importlib/fixtures.py /^ def make_uppercase(self):$/;" m class:DistInfoPkg +make_version_info Python/sysmodule.c /^make_version_info(PyThreadState *tstate)$/;" f file: +make_weak_keyed_dict Lib/test/test_weakref.py /^ def make_weak_keyed_dict(self):$/;" m class:MappingTestCase +make_weak_valued_dict Lib/test/test_weakref.py /^ def make_weak_valued_dict(self):$/;" m class:MappingTestCase +make_wrapper Tools/wasm/wasm_build.py /^ make_wrapper=EMSCRIPTEN_ROOT \/ "emmake",$/;" v +make_wrapper Tools/wasm/wasm_build.py /^ make_wrapper=None,$/;" v +make_xml_file Lib/test/test_sax.py /^def make_xml_file(doc, encoding, decl_encoding=...):$/;" f +make_zip Lib/test/test_zipfile/test_core.py /^ def make_zip(fp):$/;" f function:StoredTestZip64InSmallFiles.test_unseekable_zip_known_filesize +make_zip Lib/test/test_zipfile/test_core.py /^ def make_zip(fp):$/;" f function:StoredTestZip64InSmallFiles.test_unseekable_zip_unknown_filesize +make_zip Lib/test/test_zipfile/test_core.py /^ def make_zip(fp):$/;" f function:StoredTestZip64InSmallFiles.test_zip64_required_not_allowed_fail +make_zip64_file Lib/test/test_zipfile/test_core.py /^ def make_zip64_file($/;" m class:StoredTestZip64InSmallFiles +make_zip_path Lib/test/test_zipfile/_path/test_complexity.py /^ def make_zip_path(self, depth=1, width=1) -> zipfile.Path:$/;" m class:TestComplexity +make_zip_pkg Lib/test/support/script_helper.py /^def make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,$/;" f +make_zip_script Lib/test/support/script_helper.py /^def make_zip_script(zip_dir, zip_basename, script_name, name_in_zip=None):$/;" f +makebackup Tools/patchcheck/reindent.py /^makebackup = True$/;" v +makebdaddr Modules/socketmodule.c /^makebdaddr(bdaddr_t *bdaddr)$/;" f file: +makecode Python/assemble.c /^makecode(_PyCompile_CodeUnitMetadata *umd, struct assembler *a, PyObject *const_cache,$/;" f file: +makeconfig Tools/freeze/makeconfig.py /^def makeconfig(infp, outfp, modules, with_ifdef=0):$/;" f +makecycle Lib/test/test_itertools.py /^ def makecycle(self, iterator, container):$/;" m class:TestGC +makedev Lib/tarfile.py /^ def makedev(self, tarinfo, targetpath):$/;" m class:TarFile +makedir Lib/tarfile.py /^ def makedir(self, tarinfo, targetpath):$/;" m class:TarFile +makedirs Lib/os.py /^def makedirs(name, mode=0o777, exist_ok=False):$/;" f +makeelement Lib/xml/etree/ElementTree.py /^ def makeelement(self, tag, attrib):$/;" m class:Element +makefifo Lib/tarfile.py /^ def makefifo(self, tarinfo, targetpath):$/;" m class:TarFile +makefile Lib/socket.py /^ def makefile(self, mode="r", buffering=None, *,$/;" m class:socket +makefile Lib/tarfile.py /^ def makefile(self, tarinfo, targetpath):$/;" m class:TarFile +makefile Lib/test/mock_socket.py /^ def makefile(self, mode='r', bufsize=-1):$/;" m class:MockSocket +makefile Lib/test/test_httplib.py /^ def makefile(self, mode, bufsize=None):$/;" m class:FakeSocket +makefile Lib/test/test_nntplib.py /^ def makefile(socket, mode):$/;" m class:MockSocketTests.check_constructor_error_conditions.MockSocket +makefile Lib/test/test_urllib.py /^ def makefile(self, *args, **kwds):$/;" m class:fakehttp.FakeSocket +makefile Tools/wasm/wasm_build.py /^ def makefile(self) -> pathlib.Path:$/;" m class:BuildProfile +makefreeze Tools/freeze/makefreeze.py /^def makefreeze(base, dict, debug=0, entry_point=None, fail_import=()):$/;" f +makelink Lib/tarfile.py /^ def makelink(self, tarinfo, targetpath):$/;" m class:TarFile +makemakefile Tools/freeze/makemakefile.py /^def makemakefile(outfp, makevars, files, target):$/;" f +makemakefile Tools/freeze/winmakemakefile.py /^def makemakefile(outfp, vars, files, target):$/;" f +makemove Lib/turtledemo/nim.py /^ def makemove(self, x, y):$/;" m class:Stick +makename Lib/pydoc.py /^ def makename(c, m=object.__module__):$/;" f function:TextDoc.docclass +makepasv Lib/ftplib.py /^ def makepasv(self):$/;" m class:FTP +makepath Lib/site.py /^def makepath(*paths):$/;" f +makepathobject Python/sysmodule.c /^makepathobject(const wchar_t *path, wchar_t delim)$/;" f file: +makepipeline Lib/pipes.py /^ def makepipeline(self, infile, outfile):$/;" m class:Template +makepipeline Lib/pipes.py /^def makepipeline(infile, steps, outfile):$/;" f +makeport Lib/ftplib.py /^ def makeport(self):$/;" m class:FTP +makeshapes Lib/turtledemo/penrose.py /^def makeshapes():$/;" f +makesockaddr Modules/socketmodule.c /^makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto)$/;" f file: +maketables Tools/unicode/makeunicodedata.py /^def maketables(trace=0):$/;" f +maketrans Lib/collections/__init__.py /^ maketrans = str.maketrans$/;" v class:UserString +maketree Lib/turtledemo/tree.py /^def maketree():$/;" f +makeunicodedata Tools/unicode/makeunicodedata.py /^def makeunicodedata(unicode, trace):$/;" f +makeunicodename Tools/unicode/makeunicodedata.py /^def makeunicodename(unicode, trace):$/;" f +makeunicodetype Tools/unicode/makeunicodedata.py /^def makeunicodetype(unicode, trace):$/;" f +makeuniversal Modules/_elementtree.c /^makeuniversal(XMLParserObject* self, const char* string)$/;" f +makeunknown Lib/tarfile.py /^ def makeunknown(self, tarinfo, targetpath):$/;" m class:TarFile +makeval_recvmsg Modules/socketmodule.c /^makeval_recvmsg(ssize_t received, void *data)$/;" f file: +makeval_recvmsg_into Modules/socketmodule.c /^makeval_recvmsg_into(ssize_t received, void *data)$/;" f file: +makevardef Tools/freeze/parsesetup.py /^makevardef = re.compile('^([a-zA-Z0-9_]+)[ \\t]*=(.*)')$/;" v +male Lib/test/test_enum.py /^ male = 0$/;" v class:TestSpecial.test_mixed_enum_in_call_1.Gender +male Lib/test/test_enum.py /^ male = 0$/;" v class:TestSpecial.test_mixed_enum_in_call_2.Gender +male Lib/test/test_enum.py /^ male = 0$/;" v class:TestSpecial.test_wrong_enum_in_call.Gender +male Lib/test/test_enum.py /^ male = 0$/;" v class:TestSpecial.test_wrong_enum_in_mixed_call.Gender +malloc Include/cpython/pymem.h /^ void* (*malloc) (void *ctx, size_t size);$/;" m struct:__anon249 +malloc Include/internal/pycore_hashtable.h /^ void* (*malloc) (size_t size);$/;" m struct:__anon131 +malloc Lib/multiprocessing/heap.py /^ def malloc(self, size):$/;" m class:Heap +malloc_fcn Modules/expat/expat.h /^ void *(*malloc_fcn)(size_t size);$/;" m struct:__anon597 +malloc_size Modules/_testcapi/mem.c /^ size_t malloc_size;$/;" m struct:__anon555 file: +malloc_stats Include/cpython/initconfig.h /^ int malloc_stats;$/;" m struct:PyConfig +malloc_wrapper Programs/_testembed.c /^malloc_wrapper(void *ctx, size_t size)$/;" f file: +manage Lib/tkinter/__init__.py /^ manage = wm_manage$/;" v class:Wm +manage_socket Lib/idlelib/run.py /^def manage_socket(address):$/;" f +manager Lib/logging/__init__.py /^ def manager(self):$/;" m class:LoggerAdapter +manager Lib/logging/__init__.py /^ def manager(self, value):$/;" m class:LoggerAdapter +manager Lib/test/test_grammar.py /^ class manager(object):$/;" c function:GrammarTests.test_with_statement +manager Lib/test/test_grammar.py /^ class manager:$/;" c function:GrammarTests.test_async_with +manager Lib/test/test_lib2to3/data/py2_test_grammar.py /^ class manager(object):$/;" c function:GrammarTests.test_with_statement +manager Lib/test/test_lib2to3/data/py3_test_grammar.py /^ class manager(object):$/;" c function:GrammarTests.test_with_statement +manager Lib/test/test_typing.py /^ def manager():$/;" f function:OtherABCTests.test_async_contextmanager +manager Lib/test/test_typing.py /^ def manager():$/;" f function:OtherABCTests.test_contextmanager +manager_class Lib/test/_test_multiprocessing.py /^ manager_class = multiprocessing.managers.SyncManager$/;" v class:TestSyncManagerTypes +mangle1 Lib/test/clinic.test.c /^mangle1(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f file: +mangle2 Lib/test/clinic.test.c /^mangle2(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f file: +mangle_from_ Lib/email/_policybase.py /^ mangle_from_ = False$/;" v class:Policy +mangle_from_ Lib/email/_policybase.py /^ mangle_from_ = True$/;" v class:Compat32 +manifest_get_embed_info Tools/c-analyzer/distutils/msvc9compiler.py /^ def manifest_get_embed_info(self, target_desc, ld_args):$/;" m class:MSVCCompiler +manifest_setup_ldargs Tools/c-analyzer/distutils/msvc9compiler.py /^ def manifest_setup_ldargs(self, output_filename, build_temp, ld_args):$/;" m class:MSVCCompiler +manipulate_bytecode Lib/test/test_importlib/source/test_file_loader.py /^ def manipulate_bytecode(self,$/;" m class:BadBytecodeTest +manpages_url Doc/conf.py /^manpages_url = 'https:\/\/manpages.debian.org\/{path}'$/;" v +many_groups Lib/test/test_argparse.py /^ def many_groups(parser, argument_signatures):$/;" f function:ParserTesterMetaclass.__init__ +manyargs Lib/test/inspect_fodder2.py /^def manyargs(arg1, arg2,$/;" f +map Lib/concurrent/futures/_base.py /^ def map(self, fn, *iterables, timeout=None, chunksize=1):$/;" m class:Executor +map Lib/concurrent/futures/process.py /^ def map(self, fn, *iterables, timeout=None, chunksize=1):$/;" m class:ProcessPoolExecutor +map Lib/multiprocessing/pool.py /^ def map(self, func, iterable, chunksize=None):$/;" m class:Pool +map Lib/test/support/_hypothesis_stubs/strategies.py /^ def map(self, pack):$/;" m class:StubStrategy +map Lib/tkinter/ttk.py /^ def map(self, style, query_opt=None, **kw):$/;" m class:Style +map Modules/cjkcodecs/cjkcodecs.h /^ const DBCHAR *map;$/;" m struct:unim_index +map Modules/cjkcodecs/cjkcodecs.h /^ const Py_UCS4 *map;$/;" m struct:widedbcs_index +map Modules/cjkcodecs/cjkcodecs.h /^ const ucs2_t *map;$/;" m struct:dbcs_index +map Modules/cjkcodecs/cjkcodecs.h /^ const unsigned char *map;$/;" m struct:unim_index_bytebased +map Modules/expat/expat.h /^ int map[256];$/;" m struct:__anon598 +map Modules/nismodule.c /^ char *map;$/;" m struct:nis_map file: +map Modules/nismodule.c /^ mapname map;$/;" m struct:nismaplist file: +map Python/bytecodes.c /^static PyObject *list, *tuple, *dict, *owner, *set, *str, *tup, *map, *keys;$/;" v file: +map Tools/ccbench/ccbench.py /^ map = itertools.imap$/;" v +mapLogRecord Lib/logging/handlers.py /^ def mapLogRecord(self, record):$/;" m class:HTTPHandler +mapPriority Lib/logging/handlers.py /^ def mapPriority(self, levelName):$/;" m class:SysLogHandler +mapRE Tools/unicode/gencodec.py /^mapRE = re.compile(r'((?:0x[0-9a-fA-F]+\\+?)+)'$/;" v +map_async Lib/multiprocessing/pool.py /^ def map_async(self, func, iterable, chunksize=None, callback=None,$/;" m class:Pool +map_char Lib/test/test_builtin.py /^def map_char(arg):$/;" f +map_dealloc Python/bltinmodule.c /^map_dealloc(mapobject *lz)$/;" f file: +map_families Tools/cases_generator/generate_cases.py /^ def map_families(self) -> None:$/;" m class:Analyzer +map_file Include/internal/pycore_ceval_state.h /^ FILE *map_file;$/;" m struct:_ceval_runtime_state::__anon166 +map_handle Modules/mmapmodule.c /^ HANDLE map_handle;$/;" m struct:__anon490 file: +map_lock Include/sysmodule.h /^ PyThread_type_lock map_lock;$/;" m struct:__anon2 +map_methods Python/bltinmodule.c /^static PyMethodDef map_methods[] = {$/;" v file: +map_new Python/bltinmodule.c /^map_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +map_next Python/bltinmodule.c /^map_next(mapobject *lz)$/;" f file: +map_reduce Python/bltinmodule.c /^map_reduce(mapobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +map_table_b2 Lib/stringprep.py /^def map_table_b2(a):$/;" f +map_table_b2 Tools/unicode/mkstringprep.py /^def map_table_b2(a):$/;" f +map_table_b3 Lib/stringprep.py /^def map_table_b3(code):$/;" f +map_table_b3 Tools/unicode/mkstringprep.py /^def map_table_b3(code):$/;" f +map_to_index Lib/lib2to3/fixes/fix_tuple_params.py /^def map_to_index(param_list, prefix=[], d=None):$/;" f +map_to_type Lib/email/headerregistry.py /^ def map_to_type(self, name, cls):$/;" m class:HeaderRegistry +map_traverse Python/bltinmodule.c /^map_traverse(mapobject *lz, visitproc visit, void *arg)$/;" f file: +map_vectorcall Python/bltinmodule.c /^map_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +mapfilename Lib/test/test_codecmaps_jp.py /^ mapfilename = 'EUC-JISX0213.TXT'$/;" v class:TestEUCJISX0213Map +mapfilename Lib/test/test_codecmaps_jp.py /^ mapfilename = 'EUC-JP.TXT'$/;" v class:TestEUCJPCOMPATMap +mapfilename Lib/test/test_codecmaps_jp.py /^ mapfilename = 'SHIFTJIS.TXT'$/;" v class:TestSJISCOMPATMap +mapfilename Lib/test/test_codecmaps_jp.py /^ mapfilename = 'SHIFT_JISX0213.TXT'$/;" v class:TestSJISX0213Map +mapfileurl Lib/test/test_codecmaps_cn.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/CP936.TXT'$/;" v class:TestGBKMap +mapfileurl Lib/test/test_codecmaps_cn.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/EUC-CN.TXT'$/;" v class:TestGB2312Map +mapfileurl Lib/test/test_codecmaps_cn.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/gb-18030-2000.xml'$/;" v class:TestGB18030Map +mapfileurl Lib/test/test_codecmaps_hk.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/BIG5HKSCS-2004.TXT'$/;" v class:TestBig5HKSCSMap +mapfileurl Lib/test/test_codecmaps_jp.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/CP932.TXT'$/;" v class:TestCP932Map +mapfileurl Lib/test/test_codecmaps_jp.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/EUC-JISX0213.TXT'$/;" v class:TestEUCJISX0213Map +mapfileurl Lib/test/test_codecmaps_jp.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/EUC-JP.TXT'$/;" v class:TestEUCJPCOMPATMap +mapfileurl Lib/test/test_codecmaps_jp.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/SHIFTJIS.TXT'$/;" v class:TestSJISCOMPATMap +mapfileurl Lib/test/test_codecmaps_jp.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/SHIFT_JISX0213.TXT'$/;" v class:TestSJISX0213Map +mapfileurl Lib/test/test_codecmaps_kr.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/CP949.TXT'$/;" v class:TestCP949Map +mapfileurl Lib/test/test_codecmaps_kr.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/EUC-KR.TXT'$/;" v class:TestEUCKRMap +mapfileurl Lib/test/test_codecmaps_kr.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/JOHAB.TXT'$/;" v class:TestJOHABMap +mapfileurl Lib/test/test_codecmaps_tw.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/BIG5.TXT'$/;" v class:TestBIG5Map +mapfileurl Lib/test/test_codecmaps_tw.py /^ mapfileurl = 'http:\/\/www.pythontest.net\/unicode\/CP950.TXT'$/;" v class:TestCP950Map +maple Lib/test/pickletester.py /^ def maple(cls):$/;" m class:AbstractPickleTests.test_py_methods.PyMethodsTest.Nested +mapname Modules/nismodule.c /^typedef char *mapname;$/;" t file: +mapobject Python/bltinmodule.c /^} mapobject;$/;" t typeref:struct:__anon683 file: +mapp_methods Objects/dictobject.c /^static PyMethodDef mapp_methods[] = {$/;" v file: +mapping Lib/lib2to3/fixes/fix_imports.py /^ mapping = MAPPING$/;" v class:FixImports +mapping Lib/lib2to3/fixes/fix_imports2.py /^ mapping = MAPPING$/;" v class:FixImports2 +mapping Lib/msilib/__init__.py /^ def mapping(self, event, attribute):$/;" m class:Control +mapping Lib/test/test_pickle.py /^def mapping(module, name):$/;" f +mapping Objects/descrobject.c /^ PyObject *mapping;$/;" m struct:__anon746 file: +mapping_check Modules/_testcapi/abstract.c /^mapping_check(PyObject *self, PyObject *obj)$/;" f file: +mapping_delitem Modules/_testcapi/abstract.c /^mapping_delitem(PyObject *self, PyObject *args)$/;" f file: +mapping_delitemstring Modules/_testcapi/abstract.c /^mapping_delitemstring(PyObject *self, PyObject *args)$/;" f file: +mapping_getitemstring Modules/_testcapi/abstract.c /^mapping_getitemstring(PyObject *self, PyObject *args)$/;" f file: +mapping_haskey Modules/_testcapi/abstract.c /^mapping_haskey(PyObject *self, PyObject *args)$/;" f file: +mapping_haskeystring Modules/_testcapi/abstract.c /^mapping_haskeystring(PyObject *self, PyObject *args)$/;" f file: +mapping_items Modules/_testcapi/abstract.c /^mapping_items(PyObject *self, PyObject *obj)$/;" f file: +mapping_keys Modules/_testcapi/abstract.c /^mapping_keys(PyObject *self, PyObject *obj)$/;" f file: +mapping_length Modules/_testcapi/abstract.c /^mapping_length(PyObject *self, PyObject *obj)$/;" f file: +mapping_list Modules/cjkcodecs/cjkcodecs.h /^ struct dbcs_map *mapping_list;$/;" m struct:_cjk_mod_state typeref:struct:_cjk_mod_state::dbcs_map +mapping_pattern_rule Parser/parser.c /^mapping_pattern_rule(Parser *p)$/;" f file: +mapping_pattern_type Parser/parser.c 171;" d file: +mapping_setitemstring Modules/_testcapi/abstract.c /^mapping_setitemstring(PyObject *self, PyObject *args)$/;" f file: +mapping_size Modules/_testcapi/abstract.c /^mapping_size(PyObject *self, PyObject *obj)$/;" f file: +mapping_values Modules/_testcapi/abstract.c /^mapping_values(PyObject *self, PyObject *obj)$/;" f file: +mappingproxy Lib/_collections_abc.py /^mappingproxy = type(type.__dict__)$/;" v +mappingproxy Lib/test/test_types.py /^ mappingproxy = types.MappingProxyType$/;" v class:MappingProxyTests +mappingproxy_as_mapping Objects/descrobject.c /^static PyMappingMethods mappingproxy_as_mapping = {$/;" v file: +mappingproxy_as_number Objects/descrobject.c /^static PyNumberMethods mappingproxy_as_number = {$/;" v file: +mappingproxy_as_sequence Objects/descrobject.c /^static PySequenceMethods mappingproxy_as_sequence = {$/;" v file: +mappingproxy_check_mapping Objects/descrobject.c /^mappingproxy_check_mapping(PyObject *mapping)$/;" f file: +mappingproxy_contains Objects/descrobject.c /^mappingproxy_contains(mappingproxyobject *pp, PyObject *key)$/;" f file: +mappingproxy_copy Objects/descrobject.c /^mappingproxy_copy(mappingproxyobject *pp, PyObject *Py_UNUSED(ignored))$/;" f file: +mappingproxy_dealloc Objects/descrobject.c /^mappingproxy_dealloc(mappingproxyobject *pp)$/;" f file: +mappingproxy_get Objects/descrobject.c /^mappingproxy_get(mappingproxyobject *pp, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +mappingproxy_getitem Objects/descrobject.c /^mappingproxy_getitem(mappingproxyobject *pp, PyObject *key)$/;" f file: +mappingproxy_getiter Objects/descrobject.c /^mappingproxy_getiter(mappingproxyobject *pp)$/;" f file: +mappingproxy_hash Objects/descrobject.c /^mappingproxy_hash(mappingproxyobject *pp)$/;" f file: +mappingproxy_ior Objects/descrobject.c /^mappingproxy_ior(PyObject *self, PyObject *Py_UNUSED(other))$/;" f file: +mappingproxy_items Objects/descrobject.c /^mappingproxy_items(mappingproxyobject *pp, PyObject *Py_UNUSED(ignored))$/;" f file: +mappingproxy_keys Objects/descrobject.c /^mappingproxy_keys(mappingproxyobject *pp, PyObject *Py_UNUSED(ignored))$/;" f file: +mappingproxy_len Objects/descrobject.c /^mappingproxy_len(mappingproxyobject *pp)$/;" f file: +mappingproxy_methods Objects/descrobject.c /^static PyMethodDef mappingproxy_methods[] = {$/;" v file: +mappingproxy_new Objects/clinic/descrobject.c.h /^mappingproxy_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +mappingproxy_new_impl Objects/descrobject.c /^mappingproxy_new_impl(PyTypeObject *type, PyObject *mapping)$/;" f file: +mappingproxy_or Objects/descrobject.c /^mappingproxy_or(PyObject *left, PyObject *right)$/;" f file: +mappingproxy_repr Objects/descrobject.c /^mappingproxy_repr(mappingproxyobject *pp)$/;" f file: +mappingproxy_reversed Objects/descrobject.c /^mappingproxy_reversed(mappingproxyobject *pp, PyObject *Py_UNUSED(ignored))$/;" f file: +mappingproxy_richcompare Objects/descrobject.c /^mappingproxy_richcompare(mappingproxyobject *v, PyObject *w, int op)$/;" f file: +mappingproxy_str Objects/descrobject.c /^mappingproxy_str(mappingproxyobject *pp)$/;" f file: +mappingproxy_traverse Objects/descrobject.c /^mappingproxy_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +mappingproxy_values Objects/descrobject.c /^mappingproxy_values(mappingproxyobject *pp, PyObject *Py_UNUSED(ignored))$/;" f file: +mappingproxyobject Objects/descrobject.c /^} mappingproxyobject;$/;" t typeref:struct:__anon746 file: +maps Modules/nismodule.c /^ nismaplist *maps;$/;" m struct:nisresp_maplist file: +mapstar Lib/multiprocessing/pool.py /^def mapstar(args):$/;" f +mark Lib/idlelib/idle_test/test_searchengine.py /^ def mark(s):$/;" f function:GetSelectionTest.test_get_selection +mark Lib/idlelib/idle_test/test_searchengine.py /^ def mark(s):$/;" f function:SearchTest.test_search +mark Modules/_sre/sre.h /^ Py_ssize_t mark[1];$/;" m struct:__anon455 +mark Modules/_sre/sre.h /^ const void** mark;$/;" m struct:__anon458 +mark Modules/cjkcodecs/_codecs_iso2022.c /^ unsigned char mark;$/;" m struct:iso2022_designation file: +mark Parser/pegen.h /^ int mark;$/;" m struct:__anon657 +mark Parser/pegen.h /^ int mark;$/;" m struct:_memo +mark Tools/peg_generator/pegen/tokenizer.py /^ def mark(self) -> Mark:$/;" m class:Tokenizer +mark_as_completed Modules/overlapped.c /^mark_as_completed(OVERLAPPED *ov)$/;" f file: +mark_cold Python/flowgraph.c /^mark_cold(basicblock *entryblock) {$/;" f file: +mark_except_handlers Python/flowgraph.c /^mark_except_handlers(basicblock *entryblock) {$/;" f file: +mark_gravity Lib/tkinter/__init__.py /^ def mark_gravity(self, markName, direction=None):$/;" m class:Text +mark_names Lib/tkinter/__init__.py /^ def mark_names(self):$/;" m class:Text +mark_next Lib/tkinter/__init__.py /^ def mark_next(self, index):$/;" m class:Text +mark_previous Lib/tkinter/__init__.py /^ def mark_previous(self, index):$/;" m class:Text +mark_reachable Python/flowgraph.c /^mark_reachable(basicblock *entryblock) {$/;" f file: +mark_set Lib/idlelib/idle_test/mock_tk.py /^ def mark_set(self, name, index):$/;" m class:Text +mark_set Lib/tkinter/__init__.py /^ def mark_set(self, markName, index):$/;" m class:Text +mark_set Modules/_pickle.c /^ int mark_set; \/* is MARK set? *\/$/;" m struct:__anon449 file: +mark_stacks Objects/frameobject.c /^mark_stacks(PyCodeObject *code_obj, int len)$/;" f file: +mark_unset Lib/idlelib/idle_test/mock_tk.py /^ def mark_unset(self, *markNames):$/;" m class:Text +mark_unset Lib/tkinter/__init__.py /^ def mark_unset(self, *markNames):$/;" m class:Text +mark_warm Python/flowgraph.c /^mark_warm(basicblock *entryblock) {$/;" f file: +markcoroutinefunction Lib/inspect.py /^def markcoroutinefunction(func):$/;" f +marker Modules/_pickle.c /^marker(PickleState *st, UnpicklerObject *self)$/;" f file: +markers Modules/_json.c /^ PyObject *markers;$/;" m struct:_PyEncoderObject file: +marklines Objects/frameobject.c /^marklines(PyCodeObject *code, int len)$/;" f file: +markobject Lib/pickletools.py /^markobject = StackObject($/;" v +marks Modules/_pickle.c /^ Py_ssize_t *marks; \/* Mark stack, used for unpickling container$/;" m struct:UnpicklerObject file: +marks_size Modules/_pickle.c /^ Py_ssize_t marks_size; \/* Current allocated size of the mark stack. *\/$/;" m struct:UnpicklerObject file: +markup Lib/pydoc.py /^ def markup(self, text, escape=None, funcs={}, classes={}, methods={}):$/;" f +markup Lib/xmlrpc/server.py /^ def markup(self, text, escape=None, funcs={}, classes={}, methods={}):$/;" m class:ServerHTMLDoc +marshal_dump Python/clinic/marshal.c.h /^marshal_dump(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +marshal_dump_impl Python/marshal.c /^marshal_dump_impl(PyObject *module, PyObject *value, PyObject *file,$/;" f file: +marshal_dumps Python/clinic/marshal.c.h /^marshal_dumps(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +marshal_dumps_impl Python/marshal.c /^marshal_dumps_impl(PyObject *module, PyObject *value, int version)$/;" f file: +marshal_load Python/marshal.c /^marshal_load(PyObject *module, PyObject *file)$/;" f file: +marshal_loads Python/clinic/marshal.c.h /^marshal_loads(PyObject *module, PyObject *arg)$/;" f +marshal_loads_impl Python/marshal.c /^marshal_loads_impl(PyObject *module, Py_buffer *bytes)$/;" f file: +marshal_methods Python/marshal.c /^static PyMethodDef marshal_methods[] = {$/;" v file: +marshal_module_exec Python/marshal.c /^marshal_module_exec(PyObject *mod)$/;" f file: +marshalmap Tools/unicode/gencodec.py /^def marshalmap(name,map,marshalfile):$/;" f +marshalmodule Python/marshal.c /^static struct PyModuleDef marshalmodule = {$/;" v typeref:struct:PyModuleDef file: +marshalmodule_slots Python/marshal.c /^static PyModuleDef_Slot marshalmodule_slots[] = {$/;" v file: +mask Include/cpython/setobject.h /^ Py_ssize_t mask;$/;" m struct:__anon224 +masks Modules/audioop.c /^static const unsigned int masks[] = {0, 0xFF, 0xFFFF, 0xFFFFFF, 0xFFFFFFFF};$/;" v file: +master Include/cpython/memoryobject.h /^ Py_buffer master; \/* snapshot buffer obtained from the original exporter *\/$/;" m struct:__anon190 +master Lib/doctest.py /^master = None$/;" v +master Lib/test/test_enum.py /^ master = 'what is the sound of one hand clapping?'$/;" v class:TestSpecial.test_string_enum.SkillLevel +master_doc Doc/conf.py /^master_doc = 'contents'$/;" v +master_open Lib/pty.py /^def master_open():$/;" f +match Lib/lib2to3/fixer_base.py /^ def match(self, node):$/;" m class:BaseFix +match Lib/lib2to3/fixes/fix_idioms.py /^ def match(self, node):$/;" m class:FixIdioms +match Lib/lib2to3/fixes/fix_imports.py /^ def match(self, node):$/;" m class:FixImports +match Lib/lib2to3/fixes/fix_ne.py /^ def match(self, node):$/;" m class:FixNe +match Lib/lib2to3/fixes/fix_numliterals.py /^ def match(self, node):$/;" m class:FixNumliterals +match Lib/lib2to3/fixes/fix_renames.py /^ def match(self, node):$/;" m class:FixRenames +match Lib/lib2to3/pytree.py /^ def match(self, node):$/;" m class:NegatedPattern +match Lib/lib2to3/pytree.py /^ def match(self, node, results=None):$/;" m class:BasePattern +match Lib/lib2to3/pytree.py /^ def match(self, node, results=None):$/;" m class:LeafPattern +match Lib/lib2to3/pytree.py /^ def match(self, node, results=None):$/;" m class:WildcardPattern +match Lib/pathlib.py /^ def match(self, path_pattern, *, case_sensitive=None):$/;" m class:PurePath +match Lib/re/__init__.py /^def match(pattern, string, flags=0):$/;" f +match Lib/re/_parser.py /^ def match(self, char):$/;" m class:Tokenizer +match Lib/test/test_buffer.py /^ def match(req, flag):$/;" f function:TestBufferProtocol.verify_getbuf +match Lib/test/test_lib2to3/data/fixers/myfixes/fix_explicit.py /^ def match(self): return False$/;" m class:FixExplicit +match Lib/test/test_lib2to3/data/fixers/myfixes/fix_first.py /^ def match(self, node): return False$/;" m class:FixFirst +match Lib/test/test_lib2to3/data/fixers/myfixes/fix_last.py /^ def match(self, node): return False$/;" m class:FixLast +match Lib/test/test_lib2to3/data/fixers/myfixes/fix_preorder.py /^ def match(self, node): return False$/;" m class:FixPreorder +match Lib/test/test_warnings/__init__.py /^ def match(self, a):$/;" m class:FilterTests.test_mutate_filter_list.X +match Lib/zipfile/_path/__init__.py /^ def match(self, path_pattern):$/;" m class:Path +match Modules/_sre/sre_lib.h /^SRE(match)(SRE_STATE* state, const SRE_CODE* pattern, int toplevel)$/;" f +match Objects/exceptions.c /^ PyObject *match;$/;" m struct:__anon735 file: +match Tools/c-analyzer/cpython/_builtin_types.py /^ def match(info, *, log=None):$/;" f function:resolve_matcher +match_all Modules/_sre/sre.h /^ int match_all;$/;" m struct:__anon458 +match_args_key Objects/structseq.c /^static const char match_args_key[] = "__match_args__";$/;" v file: +match_case_fields Python/Python-ast.c /^static const char * const match_case_fields[]={$/;" v file: +match_case_ty Include/internal/pycore_ast.h /^typedef struct _match_case *match_case_ty;$/;" t typeref:struct:_match_case +match_case_type Include/internal/pycore_ast_state.h /^ PyObject *match_case_type;$/;" m struct:ast_state +match_class Python/ceval.c /^match_class(PyThreadState *tstate, PyObject *subject, PyObject *type,$/;" f file: +match_class_attr Python/ceval.c /^match_class_attr(PyThreadState *tstate, PyObject *subject, PyObject *type,$/;" f file: +match_clear Modules/_sre/sre.c /^match_clear(MatchObject *self)$/;" f file: +match_dealloc Modules/_sre/sre.c /^match_dealloc(MatchObject* self)$/;" f file: +match_function Lib/test/support/__init__.py /^ def match_function(test_id):$/;" f function:set_match_tests +match_getindex Modules/_sre/sre.c /^match_getindex(MatchObject* self, PyObject* index)$/;" f file: +match_getitem Modules/_sre/sre.c /^match_getitem(MatchObject* self, PyObject* name)$/;" f file: +match_getset Modules/_sre/sre.c /^static PyGetSetDef match_getset[] = {$/;" v file: +match_getslice Modules/_sre/sre.c /^match_getslice(MatchObject* self, PyObject* index, PyObject* def)$/;" f file: +match_getslice_by_index Modules/_sre/sre.c /^match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def)$/;" f file: +match_glob Tools/c-analyzer/c_common/fsutil.py /^def match_glob(filename, pattern):$/;" f +match_group Modules/_sre/sre.c /^match_group(MatchObject* self, PyObject* args)$/;" f file: +match_keys Python/ceval.c /^match_keys(PyThreadState *tstate, PyObject *map, PyObject *keys)$/;" f file: +match_kind Tools/c-analyzer/c_common/scriptutil.py /^ def match_kind(kind, *, _excluded=excluded):$/;" f function:add_kind_filtering_cli.process_args +match_kind Tools/c-analyzer/c_common/scriptutil.py /^ def match_kind(kind, *, _included=included):$/;" f function:add_kind_filtering_cli.process_args +match_lastgroup_get Modules/_sre/sre.c /^match_lastgroup_get(MatchObject *self, void *Py_UNUSED(ignored))$/;" f file: +match_lastindex_get Modules/_sre/sre.c /^match_lastindex_get(MatchObject *self, void *Py_UNUSED(ignored))$/;" f file: +match_members Modules/_sre/sre.c /^static PyMemberDef match_members[] = {$/;" v file: +match_methods Modules/_sre/sre.c /^static PyMethodDef match_methods[] = {$/;" v file: +match_modname Tools/build/freeze_modules.py /^ def match_modname(modname):$/;" f function:_resolve_modname_matcher +match_paren Tools/c-analyzer/c_parser/parser/_common.py /^def match_paren(text, depth=0):$/;" f +match_path_tail Tools/c-analyzer/c_common/fsutil.py /^def match_path_tail(path1, path2):$/;" f +match_regs Modules/_sre/sre.c /^match_regs(MatchObject* self)$/;" f file: +match_regs_get Modules/_sre/sre.c /^match_regs_get(MatchObject *self, void *Py_UNUSED(ignored))$/;" f file: +match_repr Modules/_sre/sre.c /^match_repr(MatchObject *self)$/;" f file: +match_seq Lib/lib2to3/pytree.py /^ def match_seq(self, nodes):$/;" m class:NegatedPattern +match_seq Lib/lib2to3/pytree.py /^ def match_seq(self, nodes, results=None):$/;" m class:BasePattern +match_seq Lib/lib2to3/pytree.py /^ def match_seq(self, nodes, results=None):$/;" m class:WildcardPattern +match_slots Modules/_sre/sre.c /^static PyType_Slot match_slots[] = {$/;" v file: +match_spec Modules/_sre/sre.c /^static PyType_Spec match_spec = {$/;" v file: +match_stmt_rule Parser/parser.c /^match_stmt_rule(Parser *p)$/;" f file: +match_stmt_type Parser/parser.c 143;" d file: +match_storage Tools/c-analyzer/c_parser/match.py /^def match_storage(decl, expected):$/;" f +match_test Lib/test/support/__init__.py /^def match_test(test):$/;" f +match_test_regex Lib/test/support/__init__.py /^ def match_test_regex(test_id):$/;" f function:_compile_match_function +match_to_datetime Lib/tomllib/_re.py /^def match_to_datetime(match: re.Match) -> datetime | date:$/;" f +match_to_localtime Lib/tomllib/_re.py /^def match_to_localtime(match: re.Match) -> time:$/;" f +match_to_number Lib/tomllib/_re.py /^def match_to_number(match: re.Match, parse_float: ParseFloat) -> Any:$/;" f +match_traverse Modules/_sre/sre.c /^match_traverse(MatchObject *self, visitproc visit, void *arg)$/;" f file: +match_value Lib/test/support/__init__.py /^ def match_value(self, k, dv, v):$/;" m class:Matcher +matched_named_groups Lib/idlelib/colorizer.py /^def matched_named_groups(re_match):$/;" f +matcher Lib/test/test_ast.py /^ def matcher(node):$/;" f function:ASTValidatorTests.test_funcdef_pattern_matching +matcher Tools/cases_generator/lexer.py /^matcher = re.compile(choice(id_re, number_re, str_re, char, newline, macro, comment_re, *operators.values(), invalid))$/;" v +matches Lib/importlib/metadata/__init__.py /^ def matches(self, **params):$/;" m class:EntryPoint +matches Lib/test/support/__init__.py /^ def matches(self, d, **kwargs):$/;" m class:Matcher +matches Lib/test/support/logging_helper.py /^ def matches(self, **kwargs):$/;" m class:TestHandler +math_1 Modules/mathmodule.c /^math_1(PyObject *arg, double (*func) (double), int can_overflow)$/;" f file: +math_1a Modules/mathmodule.c /^math_1a(PyObject *arg, double (*func) (double))$/;" f file: +math_2 Modules/mathmodule.c /^math_2(PyObject *const *args, Py_ssize_t nargs,$/;" f file: +math_ceil Modules/mathmodule.c /^math_ceil(PyObject *module, PyObject *number)$/;" f file: +math_clear Modules/mathmodule.c /^math_clear(PyObject *module)$/;" f file: +math_comb Modules/clinic/mathmodule.c.h /^math_comb(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +math_comb_impl Modules/mathmodule.c /^math_comb_impl(PyObject *module, PyObject *n, PyObject *k)$/;" f file: +math_degrees Modules/clinic/mathmodule.c.h /^math_degrees(PyObject *module, PyObject *arg)$/;" f +math_degrees_impl Modules/mathmodule.c /^math_degrees_impl(PyObject *module, double x)$/;" f file: +math_dist Modules/clinic/mathmodule.c.h /^math_dist(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +math_dist_impl Modules/mathmodule.c /^math_dist_impl(PyObject *module, PyObject *p, PyObject *q)$/;" f file: +math_error Modules/cmathmodule.c /^math_error(void)$/;" f file: +math_exec Modules/mathmodule.c /^math_exec(PyObject *module)$/;" f file: +math_factorial Modules/mathmodule.c /^math_factorial(PyObject *module, PyObject *arg)$/;" f file: +math_floor Modules/mathmodule.c /^math_floor(PyObject *module, PyObject *number)$/;" f file: +math_fmod Modules/clinic/mathmodule.c.h /^math_fmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +math_fmod_impl Modules/mathmodule.c /^math_fmod_impl(PyObject *module, double x, double y)$/;" f file: +math_free Modules/mathmodule.c /^math_free(void *module)$/;" f file: +math_frexp Modules/clinic/mathmodule.c.h /^math_frexp(PyObject *module, PyObject *arg)$/;" f +math_frexp_impl Modules/mathmodule.c /^math_frexp_impl(PyObject *module, double x)$/;" f file: +math_fsum Modules/mathmodule.c /^math_fsum(PyObject *module, PyObject *seq)$/;" f file: +math_gcd Modules/mathmodule.c /^math_gcd(PyObject *module, PyObject * const *args, Py_ssize_t nargs)$/;" f file: +math_hypot Modules/mathmodule.c /^math_hypot(PyObject *self, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +math_isclose Modules/clinic/mathmodule.c.h /^math_isclose(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +math_isclose_impl Modules/mathmodule.c /^math_isclose_impl(PyObject *module, double a, double b, double rel_tol,$/;" f file: +math_isfinite Modules/clinic/mathmodule.c.h /^math_isfinite(PyObject *module, PyObject *arg)$/;" f +math_isfinite_impl Modules/mathmodule.c /^math_isfinite_impl(PyObject *module, double x)$/;" f file: +math_isinf Modules/clinic/mathmodule.c.h /^math_isinf(PyObject *module, PyObject *arg)$/;" f +math_isinf_impl Modules/mathmodule.c /^math_isinf_impl(PyObject *module, double x)$/;" f file: +math_isnan Modules/clinic/mathmodule.c.h /^math_isnan(PyObject *module, PyObject *arg)$/;" f +math_isnan_impl Modules/mathmodule.c /^math_isnan_impl(PyObject *module, double x)$/;" f file: +math_isqrt Modules/mathmodule.c /^math_isqrt(PyObject *module, PyObject *n)$/;" f file: +math_lcm Modules/mathmodule.c /^math_lcm(PyObject *module, PyObject * const *args, Py_ssize_t nargs)$/;" f file: +math_ldexp Modules/clinic/mathmodule.c.h /^math_ldexp(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +math_ldexp_impl Modules/mathmodule.c /^math_ldexp_impl(PyObject *module, double x, PyObject *i)$/;" f file: +math_log Modules/mathmodule.c /^math_log(PyObject *module, PyObject * const *args, Py_ssize_t nargs)$/;" f file: +math_log10 Modules/mathmodule.c /^math_log10(PyObject *module, PyObject *x)$/;" f file: +math_log2 Modules/mathmodule.c /^math_log2(PyObject *module, PyObject *x)$/;" f file: +math_methods Modules/mathmodule.c /^static PyMethodDef math_methods[] = {$/;" v file: +math_modf Modules/clinic/mathmodule.c.h /^math_modf(PyObject *module, PyObject *arg)$/;" f +math_modf_impl Modules/mathmodule.c /^math_modf_impl(PyObject *module, double x)$/;" f file: +math_module_state Modules/mathmodule.c /^} math_module_state;$/;" t typeref:struct:__anon301 file: +math_nextafter Modules/clinic/mathmodule.c.h /^math_nextafter(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +math_nextafter_impl Modules/mathmodule.c /^math_nextafter_impl(PyObject *module, double x, double y, PyObject *steps)$/;" f file: +math_perm Modules/clinic/mathmodule.c.h /^math_perm(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +math_perm_impl Modules/mathmodule.c /^math_perm_impl(PyObject *module, PyObject *n, PyObject *k)$/;" f file: +math_pow Modules/clinic/mathmodule.c.h /^math_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +math_pow_impl Modules/mathmodule.c /^math_pow_impl(PyObject *module, double x, double y)$/;" f file: +math_prod Modules/clinic/mathmodule.c.h /^math_prod(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +math_prod_impl Modules/mathmodule.c /^math_prod_impl(PyObject *module, PyObject *iterable, PyObject *start)$/;" f file: +math_radians Modules/clinic/mathmodule.c.h /^math_radians(PyObject *module, PyObject *arg)$/;" f +math_radians_impl Modules/mathmodule.c /^math_radians_impl(PyObject *module, double x)$/;" f file: +math_slots Modules/mathmodule.c /^static PyModuleDef_Slot math_slots[] = {$/;" v file: +math_sumprod Modules/clinic/mathmodule.c.h /^math_sumprod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +math_sumprod_impl Modules/mathmodule.c /^math_sumprod_impl(PyObject *module, PyObject *p, PyObject *q)$/;" f file: +math_testcases Lib/test/test_math.py /^math_testcases = os.path.join(test_dir, 'math_testcases.txt')$/;" v +math_trunc Modules/mathmodule.c /^math_trunc(PyObject *module, PyObject *x)$/;" f file: +math_ulp Modules/clinic/mathmodule.c.h /^math_ulp(PyObject *module, PyObject *arg)$/;" f +math_ulp_impl Modules/mathmodule.c /^math_ulp_impl(PyObject *module, double x)$/;" f file: +mathmodule Modules/mathmodule.c /^static struct PyModuleDef mathmodule = {$/;" v typeref:struct:PyModuleDef file: +matmul Lib/operator.py /^def matmul(a, b):$/;" f +matmulObject Modules/_testcapimodule.c /^} matmulObject;$/;" t typeref:struct:__anon590 file: +matmulType Modules/_testcapimodule.c /^static PyTypeObject matmulType = {$/;" v file: +matmulType_as_number Modules/_testcapimodule.c /^static PyNumberMethods matmulType_as_number = {$/;" v file: +matmulType_dealloc Modules/_testcapimodule.c /^matmulType_dealloc(PyObject *self)$/;" f file: +matmulType_imatmul Modules/_testcapimodule.c /^matmulType_imatmul(PyObject *self, PyObject *other)$/;" f file: +matmulType_matmul Modules/_testcapimodule.c /^matmulType_matmul(PyObject *self, PyObject *other)$/;" f file: +max Include/cpython/modsupport.h /^ int max; \/* maximal number of positional arguments *\/$/;" m struct:_PyArg_Parser +max Lib/_pydecimal.py /^ def max(self, a, b):$/;" m class:Context +max Lib/_pydecimal.py /^ def max(self, other, context=None):$/;" m class:Decimal +max Modules/_ctypes/ctypes.h 6;" d +max PC/launcher.c /^ unsigned short max;$/;" m struct:__anon290 file: +maxDiff Lib/test/test_ast.py /^ maxDiff = None$/;" v class:ASTHelpers_Test +maxDiff Lib/test/test_ast.py /^ maxDiff = None$/;" v class:AST_Tests +maxDiff Lib/test/test_audit.py /^ maxDiff = None$/;" v class:AuditTest +maxDiff Lib/test/test_clinic.py /^ maxDiff = None$/;" v class:ClinicExternalTest +maxDiff Lib/test/test_clinic.py /^ maxDiff = None$/;" v class:_ParserBase +maxDiff Lib/test/test_dis.py /^ maxDiff = None$/;" v class:DisTests +maxDiff Lib/test/test_dtrace.py /^ maxDiff = None$/;" v class:TraceTests +maxDiff Lib/test/test_email/__init__.py /^ maxDiff = None$/;" v class:TestEmailBase +maxDiff Lib/test/test_email/test_email.py /^ maxDiff = None$/;" v class:BaseTestBytesGeneratorIdempotent +maxDiff Lib/test/test_email/test_email.py /^ maxDiff = None$/;" v class:Test8BitBytesHandling +maxDiff Lib/test/test_email/test_email.py /^ maxDiff = None$/;" v class:TestLongHeaders +maxDiff Lib/test/test_email/test_email.py /^ maxDiff = None$/;" v class:TestParsers +maxDiff Lib/test/test_embed.py /^ maxDiff = 100 * 50$/;" v class:EmbeddingTests +maxDiff Lib/test/test_embed.py /^ maxDiff = 4096$/;" v class:InitConfigTests +maxDiff Lib/test/test_enum.py /^ maxDiff = None$/;" v class:TestStdLib +maxDiff Lib/test/test_mailbox.py /^ maxDiff = None$/;" v class:TestMailbox +maxDiff Lib/test/test_monitoring.py /^ maxDiff = None$/;" v class:TestBranchAndJumpEvents +maxDiff Lib/test/test_monitoring.py /^ maxDiff = None$/;" v class:TestLineAndInstructionEvents +maxDiff Lib/test/test_multiprocessing_main_handling.py /^ maxDiff = None # Show full tracebacks on subprocess failure$/;" v class:MultiProcessingCmdLineMixin +maxDiff Lib/test/test_pydoc.py /^ maxDiff = None$/;" v class:PydocDocTest +maxDiff Lib/test/test_re.py /^ maxDiff = None$/;" v class:DebugTests +maxDiff Lib/test/test_smtplib.py /^ maxDiff = None$/;" v class:DebuggingServerTests +maxDiff Lib/test/test_smtplib.py /^ maxDiff = None$/;" v class:SMTPUTF8SimTests +maxDiff Lib/test/test_tracemalloc.py /^ maxDiff = 2048$/;" v class:TestFilters +maxDiff Lib/test/test_tracemalloc.py /^ maxDiff = 4000$/;" v class:TestSnapshot +maxDiff Lib/test/test_tracemalloc.py /^ maxDiff = 80 * 20$/;" v class:TestCAPI +maxDiff Lib/test/test_unittest/test_async_case.py /^ maxDiff = None$/;" v class:TestAsyncCase +maxDiff Lib/test/test_unittest/test_result.py /^ maxDiff = None$/;" v class:Test_TextTestResult +maxDiff Lib/test/test_venv.py /^ maxDiff = 80 * 50$/;" v class:BaseTest +maxDiff Lib/test/test_wsgiref.py /^ maxDiff = 80 * 50$/;" v class:HandlerTests +maxDiff Lib/test/test_xml_etree.py /^ maxDiff = None$/;" v class:C14NTest +maxDiff Lib/unittest/case.py /^ maxDiff = 80*8$/;" v class:TestCase +max_children Lib/socketserver.py /^ max_children = 40$/;" v class:.ForkingMixIn +max_command_size_limit Lib/test/smtpd.py /^ def max_command_size_limit(self):$/;" m class:SMTPChannel +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:ContentTransferEncodingHeader +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:MIMEVersionHeader +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:MessageIDHeader +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:ParameterizedMIMEHeader +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:UniqueAddressHeader +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:UniqueDateHeader +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:UniqueSingleAddressHeader +max_count Lib/email/headerregistry.py /^ max_count = 1$/;" v class:UniqueUnstructuredHeader +max_count Lib/email/headerregistry.py /^ max_count = None$/;" v class:AddressHeader +max_count Lib/email/headerregistry.py /^ max_count = None$/;" v class:DateHeader +max_count Lib/email/headerregistry.py /^ max_count = None$/;" v class:UnstructuredHeader +max_fold_seconds Modules/_datetimemodule.c /^static long long max_fold_seconds = 24 * 3600;$/;" v file: +max_group_depth Python/pythonrun.c /^ int max_group_depth; \/\/ Maximum nesting level of EGs$/;" m struct:exception_print_context file: +max_group_width Python/pythonrun.c /^ int max_group_width; \/\/ Maximum number of children of each EG$/;" m struct:exception_print_context file: +max_length Include/internal/pycore_blocks_output_buffer.h /^ Py_ssize_t max_length;$/;" m struct:__anon140 +max_line_length Lib/email/_policybase.py /^ max_line_length = 78$/;" v class:Policy +max_mag Lib/_pydecimal.py /^ def max_mag(self, a, b):$/;" m class:Context +max_mag Lib/_pydecimal.py /^ def max_mag(self, other, context=None):$/;" m class:Decimal +max_memuse Lib/test/support/__init__.py /^max_memuse = 0 # Disable bigmem tests (they will still be run with$/;" v +max_n_fds Modules/selectmodule.c /^ int max_n_fds;$/;" m struct:__anon575 file: +max_nframe Include/internal/pycore_tracemalloc.h /^ int max_nframe;$/;" m struct:_PyTraceMalloc_Config +max_output_len Modules/_pickle.c /^ Py_ssize_t max_output_len; \/* Allocation size of output_buffer. *\/$/;" m struct:PicklerObject file: +max_packet_size Lib/socketserver.py /^ max_packet_size = 8192$/;" v class:UDPServer +max_prefixlen Lib/ipaddress.py /^ def max_prefixlen(self):$/;" m class:_BaseV4 +max_prefixlen Lib/ipaddress.py /^ def max_prefixlen(self):$/;" m class:_BaseV6 +max_redirections Lib/urllib/request.py /^ max_redirections = 10$/;" v class:HTTPRedirectHandler +max_repeats Lib/urllib/request.py /^ max_repeats = 4$/;" v class:HTTPRedirectHandler +max_size Lib/asyncio/proactor_events.py /^ max_size = 256 * 1024$/;" v class:_ProactorDatagramTransport +max_size Lib/asyncio/selector_events.py /^ max_size = 256 * 1024 # Buffer size passed to recv().$/;" v class:_SelectorTransport +max_size Lib/asyncio/sslproto.py /^ max_size = 256 * 1024 # Buffer size passed to read()$/;" v class:SSLProtocol +max_size Lib/asyncio/unix_events.py /^ max_size = 256 * 1024 # max bytes we read in one event loop iteration$/;" v class:_UnixReadPipeTransport +max_str_digits Include/internal/pycore_interp.h /^ int max_str_digits;$/;" m struct:_Py_long_state +max_undo Lib/idlelib/undo.py /^ max_undo = 1000$/;" v class:UndoDelegator +maxarenas Include/internal/pycore_obmalloc.h /^ uint maxarenas;$/;" m struct:_obmalloc_mgmt +maxarenas Objects/obmalloc.c 876;" d file: +maxchar Include/cpython/unicodeobject.h /^ Py_UCS4 maxchar;$/;" m struct:__anon236 +maxchar Lib/test/test_sys.py /^ maxchar = ord(max(s))$/;" v class:SizeofTest.test_objecttypes.newstyleclass +maxcontext Modules/_decimal/tests/deccheck.py /^maxcontext = P.Context($/;" v +maximumAmplificationFactor Modules/expat/xmlparse.c /^ float maximumAmplificationFactor; \/\/ >=1.0$/;" m struct:accounting file: +maximumDepthSeen Modules/expat/xmlparse.c /^ unsigned int maximumDepthSeen;$/;" m struct:entity_stats file: +maximum_version Lib/ssl.py /^ def maximum_version(self):$/;" f function:SSLContext.load_default_certs +maximum_version Lib/ssl.py /^ def maximum_version(self, value):$/;" f function:SSLContext.load_default_certs +maxlen Lib/cgi.py /^maxlen = 0$/;" v +maxlen Modules/_collectionsmodule.c /^ Py_ssize_t maxlen; \/* maxlen is -1 for unbounded deques *\/$/;" m struct:__anon530 file: +maxline Lib/ftplib.py /^ maxline = MAXLINE$/;" v class:FTP +maxnextoffset Include/internal/pycore_obmalloc.h /^ uint maxnextoffset; \/* largest valid nextoffset *\/$/;" m struct:pool_header +maxsize Lib/asyncio/queues.py /^ def maxsize(self):$/;" m class:Queue +maxsize Lib/test/test_format.py /^maxsize = support.MAX_Py_ssize_t$/;" v +maxsize Lib/test/test_index.py /^maxsize = support.MAX_Py_ssize_t$/;" v +maxsize Lib/test/test_itertools.py /^maxsize = support.MAX_Py_ssize_t$/;" v +maxsize Lib/tkinter/__init__.py /^ maxsize = wm_maxsize$/;" v class:Wm +maxsize Modules/_functoolsmodule.c /^ Py_ssize_t maxsize;$/;" m struct:lru_cache_object file: +maxsize Modules/_tkinter.c /^ Py_ssize_t maxsize; \/* allocated size *\/$/;" m struct:__anon338 file: +maxvals Modules/audioop.c /^static const int maxvals[] = {0, 0x7F, 0x7FFF, 0x7FFFFF, 0x7FFFFFFF};$/;" v file: +maxvalue Modules/_multiprocessing/semaphore.c /^ int maxvalue;$/;" m struct:__anon470 file: +maxvalues Lib/test/test_audioop.py /^maxvalues = {w: (1 << (8 * w - 1)) - 1 for w in (1, 2, 3, 4)}$/;" v +maxwds Include/internal/pycore_dtoa.h /^ int k, maxwds, sign, wds;$/;" m struct:Bigint +may_add_dict Objects/typeobject.c /^ int may_add_dict;$/;" m struct:__anon718 file: +may_add_weak Objects/typeobject.c /^ int may_add_weak;$/;" m struct:__anon718 file: +maybe Lib/lib2to3/pgen2/tokenize.py /^def maybe(*choices): return group(*choices) + '?'$/;" f +maybe Lib/pydoc.py /^ def maybe(self):$/;" m class:.docclass.HorizontalRule +maybe Lib/pydoc.py /^ def maybe(self):$/;" m class:TextDoc.docclass.HorizontalRule +maybe Lib/tokenize.py /^def maybe(*choices): return group(*choices) + '?'$/;" f +maybe Tools/cases_generator/plexer.py /^ def maybe(self, kind: str, raw: bool = False) -> Token | None:$/;" m class:PLexer +maybeTokenized Modules/expat/xmlparse.c /^ XML_Bool maybeTokenized;$/;" m struct:attribute_id file: +maybe_complain Lib/test/test_sort.py /^ maybe_complain = True$/;" v class:TestBase.testStressfully.Complains +maybe_freelist_clear Objects/tupleobject.c /^maybe_freelist_clear(PyInterpreterState *interp, int fini)$/;" f file: +maybe_freelist_pop Objects/tupleobject.c /^maybe_freelist_pop(Py_ssize_t size)$/;" f file: +maybe_freelist_push Objects/tupleobject.c /^maybe_freelist_push(PyTupleObject *op)$/;" f file: +maybe_get_event_loop_policy Lib/test/support/__init__.py /^def maybe_get_event_loop_policy():$/;" f +maybe_handle_shebang PC/launcher.c /^maybe_handle_shebang(wchar_t ** argv, wchar_t * cmdline)$/;" f file: +maybe_has_pending_calls Python/ceval_gil.c /^maybe_has_pending_calls(PyInterpreterState *interp)$/;" f file: +maybe_idna Modules/socketmodule.c /^struct maybe_idna {$/;" s file: +maybe_init_static_strings Python/ast_unparse.c /^maybe_init_static_strings(void)$/;" f file: +maybe_newline Lib/ast.py /^ def maybe_newline(self):$/;" m class:_Unparser +maybe_optimize_method_call Python/compile.c /^maybe_optimize_method_call(struct compiler *c, expr_ty e)$/;" f file: +maybe_parenthesize Tools/cases_generator/generate_cases.py /^def maybe_parenthesize(sym: str) -> str:$/;" f +maybe_push Python/flowgraph.c /^maybe_push(basicblock *b, uint64_t unsafe_mask, basicblock ***sp)$/;" f file: +maybe_pyc_file Python/pythonrun.c /^maybe_pyc_file(FILE *fp, PyObject *filename, int closeit)$/;" f file: +maybe_sequence_pattern_rule Parser/parser.c /^maybe_sequence_pattern_rule(Parser *p)$/;" f file: +maybe_sequence_pattern_type Parser/parser.c 168;" d file: +maybe_small_long Objects/longobject.c /^maybe_small_long(PyLongObject *v)$/;" f file: +maybe_star_pattern_rule Parser/parser.c /^maybe_star_pattern_rule(Parser *p)$/;" f file: +maybe_star_pattern_type Parser/parser.c 169;" d file: +maybe_test Lib/test/test_modulefinder.py /^maybe_test = [$/;" v +maybe_test_new Lib/test/test_modulefinder.py /^maybe_test_new = [$/;" v +maybesave Lib/idlelib/editor.py /^ def maybesave(self):$/;" m class:EditorWindow +maybesave Lib/idlelib/iomenu.py /^ def maybesave(self):$/;" m class:IOBinding +maybesave Lib/idlelib/outwin.py /^ def maybesave(self):$/;" m class:OutputWindow +mb Lib/idlelib/idle_test/test_browser.py /^mb = pyclbr$/;" v +mbcodec_init Modules/cjkcodecs/multibytecodec.h /^typedef int (*mbcodec_init)(const struct _multibyte_codec *codec);$/;" t +mbdecode_func Modules/cjkcodecs/multibytecodec.h /^typedef Py_ssize_t (*mbdecode_func)(MultibyteCodec_State *state,$/;" t +mbdecodeinit_func Modules/cjkcodecs/multibytecodec.h /^typedef int (*mbdecodeinit_func)(MultibyteCodec_State *state,$/;" t +mbdecodereset_func Modules/cjkcodecs/multibytecodec.h /^typedef Py_ssize_t (*mbdecodereset_func)(MultibyteCodec_State *state,$/;" t +mbencode_func Modules/cjkcodecs/multibytecodec.h /^typedef Py_ssize_t (*mbencode_func)(MultibyteCodec_State *state,$/;" t +mbencodeinit_func Modules/cjkcodecs/multibytecodec.h /^typedef int (*mbencodeinit_func)(MultibyteCodec_State *state,$/;" t +mbencodereset_func Modules/cjkcodecs/multibytecodec.h /^typedef Py_ssize_t (*mbencodereset_func)(MultibyteCodec_State *state,$/;" t +mbidecoder_dealloc Modules/cjkcodecs/multibytecodec.c /^mbidecoder_dealloc(MultibyteIncrementalDecoderObject *self)$/;" f file: +mbidecoder_init Modules/cjkcodecs/multibytecodec.c /^mbidecoder_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +mbidecoder_methods Modules/cjkcodecs/multibytecodec.c /^static struct PyMethodDef mbidecoder_methods[] = {$/;" v typeref:struct:PyMethodDef file: +mbidecoder_new Modules/cjkcodecs/multibytecodec.c /^mbidecoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +mbidecoder_traverse Modules/cjkcodecs/multibytecodec.c /^mbidecoder_traverse(MultibyteIncrementalDecoderObject *self,$/;" f file: +mbiencoder_dealloc Modules/cjkcodecs/multibytecodec.c /^mbiencoder_dealloc(MultibyteIncrementalEncoderObject *self)$/;" f file: +mbiencoder_init Modules/cjkcodecs/multibytecodec.c /^mbiencoder_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +mbiencoder_methods Modules/cjkcodecs/multibytecodec.c /^static struct PyMethodDef mbiencoder_methods[] = {$/;" v typeref:struct:PyMethodDef file: +mbiencoder_new Modules/cjkcodecs/multibytecodec.c /^mbiencoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +mbiencoder_traverse Modules/cjkcodecs/multibytecodec.c /^mbiencoder_traverse(MultibyteIncrementalEncoderObject *self,$/;" f file: +mbox Lib/mailbox.py /^class mbox(_mboxMMDF):$/;" c +mboxMessage Lib/mailbox.py /^class mboxMessage(_mboxMMDFMessage):$/;" c +mbstreamreader_dealloc Modules/cjkcodecs/multibytecodec.c /^mbstreamreader_dealloc(MultibyteStreamReaderObject *self)$/;" f file: +mbstreamreader_init Modules/cjkcodecs/multibytecodec.c /^mbstreamreader_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +mbstreamreader_iread Modules/cjkcodecs/multibytecodec.c /^mbstreamreader_iread(MultibyteStreamReaderObject *self,$/;" f file: +mbstreamreader_members Modules/cjkcodecs/multibytecodec.c /^static PyMemberDef mbstreamreader_members[] = {$/;" v file: +mbstreamreader_methods Modules/cjkcodecs/multibytecodec.c /^static struct PyMethodDef mbstreamreader_methods[] = {$/;" v typeref:struct:PyMethodDef file: +mbstreamreader_new Modules/cjkcodecs/multibytecodec.c /^mbstreamreader_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +mbstreamreader_traverse Modules/cjkcodecs/multibytecodec.c /^mbstreamreader_traverse(MultibyteStreamReaderObject *self,$/;" f file: +mbstreamwriter_dealloc Modules/cjkcodecs/multibytecodec.c /^mbstreamwriter_dealloc(MultibyteStreamWriterObject *self)$/;" f file: +mbstreamwriter_init Modules/cjkcodecs/multibytecodec.c /^mbstreamwriter_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +mbstreamwriter_iwrite Modules/cjkcodecs/multibytecodec.c /^mbstreamwriter_iwrite(MultibyteStreamWriterObject *self,$/;" f file: +mbstreamwriter_members Modules/cjkcodecs/multibytecodec.c /^static PyMemberDef mbstreamwriter_members[] = {$/;" v file: +mbstreamwriter_methods Modules/cjkcodecs/multibytecodec.c /^static struct PyMethodDef mbstreamwriter_methods[] = {$/;" v typeref:struct:PyMethodDef file: +mbstreamwriter_new Modules/cjkcodecs/multibytecodec.c /^mbstreamwriter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +mbstreamwriter_traverse Modules/cjkcodecs/multibytecodec.c /^mbstreamwriter_traverse(MultibyteStreamWriterObject *self,$/;" f file: +mbuf Include/cpython/memoryobject.h /^ _PyManagedBufferObject *mbuf; \/* managed buffer *\/$/;" m struct:__anon191 +mbuf_add_incomplete_view Objects/memoryobject.c /^mbuf_add_incomplete_view(_PyManagedBufferObject *mbuf, const Py_buffer *src,$/;" f file: +mbuf_add_view Objects/memoryobject.c /^mbuf_add_view(_PyManagedBufferObject *mbuf, const Py_buffer *src)$/;" f file: +mbuf_alloc Objects/memoryobject.c /^mbuf_alloc(void)$/;" f file: +mbuf_clear Objects/memoryobject.c /^mbuf_clear(_PyManagedBufferObject *self)$/;" f file: +mbuf_copy_format Objects/memoryobject.c /^mbuf_copy_format(_PyManagedBufferObject *mbuf, const char *fmt)$/;" f file: +mbuf_dealloc Objects/memoryobject.c /^mbuf_dealloc(_PyManagedBufferObject *self)$/;" f file: +mbuf_release Objects/memoryobject.c /^mbuf_release(_PyManagedBufferObject *self)$/;" f file: +mbuf_traverse Objects/memoryobject.c /^mbuf_traverse(_PyManagedBufferObject *self, visitproc visit, void *arg)$/;" f file: +mcontext Lib/test/test_lib2to3/data/infinite_recursion.py /^class mcontext(Structure):$/;" c +mcontext64 Lib/test/test_lib2to3/data/infinite_recursion.py /^class mcontext64(Structure):$/;" c +mcontext64_t Lib/test/test_lib2to3/data/infinite_recursion.py /^mcontext64_t = __darwin_mcontext64_t$/;" v +mcontext_t Lib/test/test_lib2to3/data/infinite_recursion.py /^mcontext_t = __darwin_mcontext_t$/;" v +md Lib/test/test_inspect.py /^ md = _BrokenMethodDescriptor()$/;" v class:TestClassesAndFunctions.test_classify_newstyle.A +md Lib/test/test_inspect.py /^ md = _BrokenMethodDescriptor()$/;" v class:TestClassesAndFunctions.test_getmembers_descriptors.A +md5_exec Modules/md5module.c /^md5_exec(PyObject *m)$/;" f file: +md5_get_digest_size Modules/md5module.c /^md5_get_digest_size(PyObject *self, void *closure)$/;" f file: +md5_get_state Modules/md5module.c /^md5_get_state(PyObject *module)$/;" f file: +md5_type Modules/md5module.c /^ PyTypeObject* md5_type;$/;" m struct:__anon428 file: +md5_type_slots Modules/md5module.c /^static PyType_Slot md5_type_slots[] = {$/;" v file: +md5_type_spec Modules/md5module.c /^static PyType_Spec md5_type_spec = {$/;" v file: +md5sum Lib/test/test_sqlite3/test_userfunctions.py /^ def md5sum(t):$/;" f function:FunctionTests.test_function_destructor_via_gc +md5test Lib/test/test_hmac.py /^ def md5test(key, data, digest):$/;" f function:TestVectorsTestCase.test_md5_vectors +md_def Include/internal/pycore_moduleobject.h /^ PyModuleDef *md_def;$/;" m struct:__anon125 +md_dict Include/internal/pycore_moduleobject.h /^ PyObject *md_dict;$/;" m struct:__anon125 +md_name Include/internal/pycore_moduleobject.h /^ PyObject *md_name;$/;" m struct:__anon125 +md_state Include/internal/pycore_moduleobject.h /^ void *md_state;$/;" m struct:__anon125 +md_weaklist Include/internal/pycore_moduleobject.h /^ PyObject *md_weaklist;$/;" m struct:__anon125 +mdays Lib/calendar.py /^mdays = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]$/;" v +mdc2_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class mdc2_ctx_st(Structure):$/;" c +me_hash Include/internal/pycore_dict.h /^ Py_hash_t me_hash;$/;" m struct:__anon144 +me_key Include/internal/pycore_dict.h /^ PyObject *me_key; \/* The key must be Unicode and have hash. *\/$/;" m struct:__anon145 +me_key Include/internal/pycore_dict.h /^ PyObject *me_key;$/;" m struct:__anon144 +me_key Modules/_pickle.c /^ PyObject *me_key;$/;" m struct:__anon450 file: +me_value Include/internal/pycore_dict.h /^ PyObject *me_value; \/* This field is only meaningful for combined tables *\/$/;" m struct:__anon144 +me_value Include/internal/pycore_dict.h /^ PyObject *me_value; \/* This field is only meaningful for combined tables *\/$/;" m struct:__anon145 +me_value Modules/_pickle.c /^ Py_ssize_t me_value;$/;" m struct:__anon450 file: +mean Lib/statistics.py /^ def mean(self):$/;" m class:NormalDist +mean Lib/statistics.py /^def mean(data):$/;" f +measure Lib/tkinter/font.py /^ def measure(self, text, displayof=None):$/;" m class:Font +measure Tools/clinic/clinic.py /^ def measure(self, line):$/;" m class:IndentStack +measure_itimer_resolution Lib/test/test_signal.py /^ def measure_itimer_resolution(self):$/;" m class:StressTest +median Lib/statistics.py /^ def median(self):$/;" m class:NormalDist +median Lib/statistics.py /^def median(data):$/;" f +median_grouped Lib/statistics.py /^def median_grouped(data, interval=1.0):$/;" f +median_high Lib/statistics.py /^def median_high(data):$/;" f +median_low Lib/statistics.py /^def median_low(data):$/;" f +medium_sizes Lib/test/pickletester.py /^ medium_sizes = [s for s in chunk_sizes$/;" v class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +medium_value Objects/longobject.c 24;" d file: +melon Lib/test/test_module/__init__.py /^ melon = Descr()$/;" v class:ModuleTests.test_descriptor_errors_propagate.M +mem Include/internal/pycore_pymem.h /^ PyMemAllocatorEx mem;$/;" m struct:_pymem_allocators::__anon16 +mem Include/internal/pycore_pymem.h /^ debug_alloc_api_t mem;$/;" m struct:_pymem_allocators::__anon17 +mem Include/internal/pycore_tracemalloc.h /^ PyMemAllocatorEx mem;$/;" m struct:_tracemalloc_runtime_state::__anon31 +mem Modules/_testcapi/mem.c /^ PyMemAllocatorEx mem;$/;" m struct:__anon556 file: +mem Modules/expat/xmlparse.c /^ const XML_Memory_Handling_Suite *mem;$/;" m struct:__anon608 file: +mem Modules/expat/xmlparse.c /^ const XML_Memory_Handling_Suite *mem;$/;" m struct:__anon613 file: +member Lib/enum.py /^ member = None$/;" v class:property +member Lib/enum.py /^class member(object):$/;" c +member_dir Lib/test/test_enum.py /^def member_dir(member):$/;" f +member_get Objects/descrobject.c /^member_get(PyMemberDescrObject *descr, PyObject *obj, PyObject *type)$/;" f file: +member_get_doc Objects/descrobject.c /^member_get_doc(PyMemberDescrObject *descr, void *closure)$/;" f file: +member_getset Objects/descrobject.c /^static PyGetSetDef member_getset[] = {$/;" v file: +member_repr Objects/descrobject.c /^member_repr(PyMemberDescrObject *descr)$/;" f file: +member_set Objects/descrobject.c /^member_set(PyMemberDescrObject *descr, PyObject *obj, PyObject *value)$/;" f file: +members Lib/test/test_tarfile.py /^ def members(tar):$/;" f function:ListTest.test_list_members +members Tools/c-analyzer/c_parser/info.py /^ def members(self):$/;" m class:_StructUnion +members Tools/cases_generator/parser.py /^ def members(self) -> list[str] | None:$/;" m class:Parser +members_to_repeat Modules/_testcapi/heaptype.c /^static struct PyMemberDef members_to_repeat[] = {$/;" v typeref:struct:PyMemberDef file: +memerrors_freelist Include/internal/pycore_exceptions.h /^ PyBaseExceptionObject *memerrors_freelist;$/;" m struct:_Py_exc_state +memerrors_numfree Include/internal/pycore_exceptions.h /^ int memerrors_numfree;$/;" m struct:_Py_exc_state +memmove Lib/ctypes/__init__.py /^memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr)$/;" v +memo Modules/_json.c /^ PyObject *memo;$/;" m struct:_PyScannerObject file: +memo Modules/_pickle.c /^ PyMemoTable *memo; \/* Memo table, keep track of the seen$/;" m struct:PicklerObject file: +memo Modules/_pickle.c /^ PyObject **memo;$/;" m struct:UnpicklerObject file: +memo Parser/pegen.h /^ Memo *memo;$/;" m struct:__anon653 +memo_get Modules/_pickle.c /^memo_get(PickleState *st, PicklerObject *self, PyObject *key)$/;" f file: +memo_len Modules/_pickle.c /^ size_t memo_len; \/* Number of objects in the memo *\/$/;" m struct:UnpicklerObject file: +memo_put Modules/_pickle.c /^memo_put(PickleState *st, PicklerObject *self, PyObject *obj)$/;" f file: +memo_size Modules/_pickle.c /^ size_t memo_size; \/* Capacity of the memo array *\/$/;" m struct:UnpicklerObject file: +memo_statistics Include/internal/pycore_parser.h /^ long memo_statistics[_PYPEGEN_NSTATISTICS];$/;" m struct:_parser_runtime_state +memo_statistics Parser/pegen.c 264;" d file: +memoflag Tools/peg_generator/pegen/grammar_parser.py /^ def memoflag(self) -> Optional[str]:$/;" m class:GeneratedParser +memoize Lib/pickle.py /^ def memoize(self, obj):$/;" m class:_Pickler +memoize Lib/test/test_decorators.py /^def memoize(func):$/;" f +memoize Tools/peg_generator/pegen/parser.py /^def memoize(method: F) -> F:$/;" f +memoize_left_rec Tools/peg_generator/pegen/parser.py /^def memoize_left_rec(method: Callable[[P], Optional[T]]) -> Callable[[P], Optional[T]]:$/;" f +memoize_left_rec_wrapper Tools/peg_generator/pegen/parser.py /^ def memoize_left_rec_wrapper(self: P) -> Optional[T]:$/;" f function:memoize_left_rec +memoize_wrapper Tools/peg_generator/pegen/parser.py /^ def memoize_wrapper(self: P, *args: object) -> T:$/;" f function:memoize +memoproxy_slots Modules/_pickle.c /^static PyType_Slot memoproxy_slots[] = {$/;" v file: +memoproxy_spec Modules/_pickle.c /^static PyType_Spec memoproxy_spec = {$/;" v file: +memory_alloc Objects/memoryobject.c /^memory_alloc(int ndim)$/;" f file: +memory_as_buffer Objects/memoryobject.c /^static PyBufferProcs memory_as_buffer = {$/;" v file: +memory_as_mapping Objects/memoryobject.c /^static PyMappingMethods memory_as_mapping = {$/;" v file: +memory_as_sequence Objects/memoryobject.c /^static PySequenceMethods memory_as_sequence = {$/;" v file: +memory_ass_sub Objects/memoryobject.c /^memory_ass_sub(PyMemoryViewObject *self, PyObject *key, PyObject *value)$/;" f file: +memory_bio_dealloc Modules/_ssl.c /^memory_bio_dealloc(PySSLMemoryBIO *self)$/;" f file: +memory_bio_get_eof Modules/_ssl.c /^memory_bio_get_eof(PySSLMemoryBIO *self, void *c)$/;" f file: +memory_bio_get_pending Modules/_ssl.c /^memory_bio_get_pending(PySSLMemoryBIO *self, void *c)$/;" f file: +memory_bio_getsetlist Modules/_ssl.c /^static PyGetSetDef memory_bio_getsetlist[] = {$/;" v file: +memory_bio_methods Modules/_ssl.c /^static struct PyMethodDef memory_bio_methods[] = {$/;" v typeref:struct:PyMethodDef file: +memory_bio_traverse Modules/_ssl.c /^memory_bio_traverse(PySSLMemoryBIO *self, visitproc visit, void *arg)$/;" f file: +memory_c_contiguous Objects/memoryobject.c /^memory_c_contiguous(PyMemoryViewObject *self, PyObject *dummy)$/;" f file: +memory_clear Objects/memoryobject.c /^memory_clear(PyMemoryViewObject *self)$/;" f file: +memory_contiguous Objects/memoryobject.c /^memory_contiguous(PyMemoryViewObject *self, PyObject *dummy)$/;" f file: +memory_database Lib/test/test_sqlite3/test_dbapi.py /^def memory_database(*args, **kwargs):$/;" f +memory_dealloc Objects/memoryobject.c /^memory_dealloc(PyMemoryViewObject *self)$/;" f file: +memory_enter Objects/memoryobject.c /^memory_enter(PyObject *self, PyObject *args)$/;" f file: +memory_error Lib/test/test_asyncio/test_futures.py /^ def memory_error():$/;" f function:BaseFutureTests.check_future_exception_never_retrieved +memory_exit Objects/memoryobject.c /^memory_exit(PyObject *self, PyObject *args)$/;" f file: +memory_f_contiguous Objects/memoryobject.c /^memory_f_contiguous(PyMemoryViewObject *self, PyObject *dummy)$/;" f file: +memory_format_get Objects/memoryobject.c /^memory_format_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_from_contiguous_copy Objects/memoryobject.c /^memory_from_contiguous_copy(const Py_buffer *src, char order)$/;" f file: +memory_getbuf Objects/memoryobject.c /^memory_getbuf(PyMemoryViewObject *self, Py_buffer *view, int flags)$/;" f file: +memory_getsetlist Objects/memoryobject.c /^static PyGetSetDef memory_getsetlist[] = {$/;" v file: +memory_hash Objects/memoryobject.c /^memory_hash(PyMemoryViewObject *self)$/;" f file: +memory_index Lib/test/test_buffer.py /^def memory_index(indices, t):$/;" f +memory_item Objects/memoryobject.c /^memory_item(PyMemoryViewObject *self, Py_ssize_t index)$/;" f file: +memory_item_multi Objects/memoryobject.c /^memory_item_multi(PyMemoryViewObject *self, PyObject *tup)$/;" f file: +memory_itemsize_get Objects/memoryobject.c /^memory_itemsize_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_iter Objects/memoryobject.c /^memory_iter(PyObject *seq)$/;" f file: +memory_length Objects/memoryobject.c /^memory_length(PyMemoryViewObject *self)$/;" f file: +memory_methods Objects/memoryobject.c /^static PyMethodDef memory_methods[] = {$/;" v file: +memory_nbytes_get Objects/memoryobject.c /^memory_nbytes_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_ndim_get Objects/memoryobject.c /^memory_ndim_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_obj_get Objects/memoryobject.c /^memory_obj_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_readonly_get Objects/memoryobject.c /^memory_readonly_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_releasebuf Objects/memoryobject.c /^memory_releasebuf(PyMemoryViewObject *self, Py_buffer *view)$/;" f file: +memory_repr Objects/memoryobject.c /^memory_repr(PyMemoryViewObject *self)$/;" f file: +memory_richcompare Objects/memoryobject.c /^memory_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +memory_shape_get Objects/memoryobject.c /^memory_shape_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_strides_get Objects/memoryobject.c /^memory_strides_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_suboffsets_get Objects/memoryobject.c /^memory_suboffsets_get(PyMemoryViewObject *self, void *Py_UNUSED(ignored))$/;" f file: +memory_subscript Objects/memoryobject.c /^memory_subscript(PyMemoryViewObject *self, PyObject *key)$/;" f file: +memory_traverse Objects/memoryobject.c /^memory_traverse(PyMemoryViewObject *self, visitproc visit, void *arg)$/;" f file: +memoryiter_dealloc Objects/memoryobject.c /^memoryiter_dealloc(memoryiterobject *it)$/;" f file: +memoryiter_next Objects/memoryobject.c /^memoryiter_next(memoryiterobject *it)$/;" f file: +memoryiter_traverse Objects/memoryobject.c /^memoryiter_traverse(memoryiterobject *it, visitproc visit, void *arg)$/;" f file: +memoryiterobject Objects/memoryobject.c /^} memoryiterobject;$/;" t typeref:struct:__anon733 file: +memoryview Objects/clinic/memoryobject.c.h /^memoryview(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +memoryview__from_flags Objects/clinic/memoryobject.c.h /^memoryview__from_flags(PyTypeObject *type, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +memoryview__from_flags_impl Objects/memoryobject.c /^memoryview__from_flags_impl(PyTypeObject *type, PyObject *object, int flags)$/;" f file: +memoryview_cast Objects/clinic/memoryobject.c.h /^memoryview_cast(PyMemoryViewObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +memoryview_cast_impl Objects/memoryobject.c /^memoryview_cast_impl(PyMemoryViewObject *self, PyObject *format,$/;" f file: +memoryview_hex Objects/clinic/memoryobject.c.h /^memoryview_hex(PyMemoryViewObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +memoryview_hex_impl Objects/memoryobject.c /^memoryview_hex_impl(PyMemoryViewObject *self, PyObject *sep,$/;" f file: +memoryview_impl Objects/memoryobject.c /^memoryview_impl(PyTypeObject *type, PyObject *object)$/;" f file: +memoryview_release Objects/clinic/memoryobject.c.h /^memoryview_release(PyMemoryViewObject *self, PyObject *Py_UNUSED(ignored))$/;" f +memoryview_release_impl Objects/memoryobject.c /^memoryview_release_impl(PyMemoryViewObject *self)$/;" f file: +memoryview_tobytes Objects/clinic/memoryobject.c.h /^memoryview_tobytes(PyMemoryViewObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +memoryview_tobytes_impl Objects/memoryobject.c /^memoryview_tobytes_impl(PyMemoryViewObject *self, const char *order)$/;" f file: +memoryview_tolist Objects/clinic/memoryobject.c.h /^memoryview_tolist(PyMemoryViewObject *self, PyObject *Py_UNUSED(ignored))$/;" f +memoryview_tolist_impl Objects/memoryobject.c /^memoryview_tolist_impl(PyMemoryViewObject *self)$/;" f file: +memoryview_toreadonly Objects/clinic/memoryobject.c.h /^memoryview_toreadonly(PyMemoryViewObject *self, PyObject *Py_UNUSED(ignored))$/;" f +memoryview_toreadonly_impl Objects/memoryobject.c /^memoryview_toreadonly_impl(PyMemoryViewObject *self)$/;" f file: +memset Lib/ctypes/__init__.py /^memset = CFUNCTYPE(c_void_p, c_void_p, c_int, c_size_t)(_memset_addr)$/;" v +mentioned packaging/skipped_tests.py /^mentioned = excluded | included$/;" v +menu Lib/idlelib/scrolledlist.py /^ menu = None$/;" v class:ScrolledList +menu_specs Lib/idlelib/editor.py /^ menu_specs = [$/;" v class:EditorWindow +menu_specs Lib/idlelib/pyshell.py /^ menu_specs = [$/;" v class:PyShell +menudefs Lib/idlelib/mainmenu.py /^menudefs = [$/;" v +menudefs Lib/idlelib/zzdummy.py /^ menudefs = [$/;" v class:ZzDummy +menufont Lib/turtledemo/__main__.py /^menufont = ("Arial", 12, NORMAL)$/;" v +merge Lib/doctest.py /^ def merge(self, other):$/;" m class:DocTestRunner +merge Lib/heapq.py /^def merge(*iterables, key=None, reverse=False):$/;" f +merge Lib/idlelib/undo.py /^ def merge(self, cmd):$/;" m class:Command +merge Lib/idlelib/undo.py /^ def merge(self, cmd):$/;" m class:InsertCommand +merge Lib/test/test_descrtut.py /^ def merge(self, other):$/;" m class:defaultdict +merge Lib/test/test_descrtut.py /^ def merge(self, other):$/;" m class:defaultdict2 +merge Objects/unionobject.c /^merge(PyObject **items1, Py_ssize_t size1,$/;" f file: +merge_at Objects/listobject.c /^merge_at(MergeState *ms, Py_ssize_t i)$/;" f file: +merge_class_dict Objects/typeobject.c /^merge_class_dict(PyObject *dict, PyObject *aclass)$/;" f file: +merge_compute_minrun Objects/listobject.c /^merge_compute_minrun(Py_ssize_t n)$/;" f file: +merge_consts_recursive Python/compile.c /^merge_consts_recursive(PyObject *const_cache, PyObject *o)$/;" f file: +merge_force_collapse Objects/listobject.c /^merge_force_collapse(MergeState *ms)$/;" f file: +merge_freemem Objects/listobject.c /^merge_freemem(MergeState *ms)$/;" f file: +merge_getmem Objects/listobject.c /^merge_getmem(MergeState *ms, Py_ssize_t need)$/;" f file: +merge_hi Objects/listobject.c /^merge_hi(MergeState *ms, sortslice ssa, Py_ssize_t na,$/;" f file: +merge_init Objects/listobject.c /^merge_init(MergeState *ms, Py_ssize_t list_size, int has_keyfunc,$/;" f file: +merge_lo Objects/listobject.c /^merge_lo(MergeState *ms, sortslice ssa, Py_ssize_t na,$/;" f file: +merge_old_version Tools/unicode/makeunicodedata.py /^def merge_old_version(version, new, old):$/;" f +message Lib/pdb.py /^ def message(self, msg):$/;" m class:Pdb +message Lib/test/test_email/__init__.py /^ message = Message$/;" v class:TestEmailBase +message Lib/test/test_email/test_contentmanager.py /^ message = EmailMessage$/;" v class:TestContentManager +message Lib/test/test_email/test_contentmanager.py /^ message = EmailMessage$/;" v class:TestRawDataManager +message Lib/test/test_email/test_inversion.py /^ message = EmailMessage$/;" v class:TestInversion +message Lib/test/test_email/test_message.py /^ message = EmailMessage$/;" v class:TestEmailMessage +message Lib/test/test_email/test_message.py /^ message = MIMEPart$/;" v class:TestMIMEPart +message_as_clear Lib/test/test_email/test_message.py /^ def message_as_clear(self, body_parts, attachments, parts, msg):$/;" m class:TestEmailMessageBase +message_as_clear_content Lib/test/test_email/test_message.py /^ def message_as_clear_content(self, body_parts, attachments, parts, msg):$/;" m class:TestEmailMessageBase +message_as_get_body Lib/test/test_email/test_message.py /^ def message_as_get_body(self, body_parts, attachments, parts, msg):$/;" m class:TestEmailMessageBase +message_as_iter_attachment Lib/test/test_email/test_message.py /^ def message_as_iter_attachment(self, body_parts, attachments, parts, msg):$/;" m class:TestEmailMessageBase +message_as_iter_parts Lib/test/test_email/test_message.py /^ def message_as_iter_parts(self, body_parts, attachments, parts, msg):$/;" m class:TestEmailMessageBase +message_factory Lib/email/_policybase.py /^ message_factory = None$/;" v class:Policy +message_factory Lib/email/policy.py /^ message_factory = EmailMessage$/;" v class:EmailPolicy +message_from_binary_file Lib/email/__init__.py /^def message_from_binary_file(fp, *args, **kws):$/;" f +message_from_binary_file Lib/test/test_email/test_parser.py /^def message_from_binary_file(s, *args, **kw):$/;" f +message_from_bytes Lib/email/__init__.py /^def message_from_bytes(s, *args, **kws):$/;" f +message_from_bytes Lib/test/test_email/test_parser.py /^def message_from_bytes(s, *args, **kw):$/;" f +message_from_file Lib/email/__init__.py /^def message_from_file(fp, *args, **kws):$/;" f +message_from_file Lib/test/test_email/test_parser.py /^def message_from_file(s, *args, **kw):$/;" f +message_from_string Lib/email/__init__.py /^def message_from_string(s, *args, **kws):$/;" f +message_num Lib/test/test_logging.py /^ message_num = 0$/;" v class:BaseTest +message_params Lib/test/test_email/test_message.py /^ message_params = {$/;" v class:TestEmailMessageBase +meta Lib/test/test_abc.py /^ class meta(type, A):$/;" c function:test_factory.TestABC.test_metaclass_abc +meta Lib/test/test_descr.py /^ class meta(type):$/;" c function:.test_abstractmethods +meta Lib/test/test_inspect.py /^ class meta(type):$/;" c function:TestGetattrStatic.test_metaclass +meta Lib/test/test_inspect.py /^ class meta(type):$/;" c function:TestGetattrStatic.test_metaclass_with_descriptor +meta Tools/peg_generator/pegen/grammar_parser.py /^ def meta(self) -> Optional[MetaTuple]:$/;" m class:GeneratedParser +meta_func Lib/test/test_types.py /^ def meta_func(name, bases, ns, **kw):$/;" f function:ClassCreationTests.test_new_class_metaclass_keywords +metaclass Lib/test/pickletester.py /^class metaclass(type):$/;" c +metaclass Lib/test/test_abc.py /^ class metaclass(type):$/;" c function:test_factory.TestABC.test_tricky_new_works.with_metaclass +metadata Lib/importlib/metadata/__init__.py /^ def metadata(self) -> _meta.PackageMetadata:$/;" m class:Distribution +metadata Lib/importlib/metadata/__init__.py /^def metadata(distribution_name) -> _meta.PackageMetadata:$/;" f +metadata Parser/asdl_c.py /^ def metadata(self):$/;" m class:EmitVisitor +metadata Parser/asdl_c.py /^ def metadata(self, value):$/;" m class:EmitVisitor +metadata Parser/pegen.h /^ PyObject *metadata;$/;" m struct:__anon653 +metadata Parser/pegen.h /^ PyObject *metadata;$/;" m struct:__anon666 +metadata Parser/tokenizer.h /^ PyObject *metadata;$/;" m struct:token +metas Tools/peg_generator/pegen/grammar_parser.py /^ def metas(self) -> Optional[MetaList]:$/;" m class:GeneratedParser +metatype Objects/typeobject.c /^ PyTypeObject *metatype;$/;" m struct:__anon718 file: +metavar Tools/peg_generator/pegen/__main__.py /^ metavar="OUT",$/;" v +metavar Tools/wasm/wasm_build.py /^ metavar="OP",$/;" v +metavar Tools/wasm/wasm_build.py /^ metavar="PLATFORM",$/;" v +meth Lib/test/ann_module2.py /^ def meth(self, param: complex) -> None:$/;" m class:NTC +meth Lib/test/test_builtin.py /^ def meth(self): pass$/;" m class:BuiltinTest.test_callable.C1 +meth Lib/test/test_capi/test_misc.py /^ def meth(self):$/;" m class:CAPITest.test_immutable_type_with_mutable_base.MutableBase +meth Lib/test/test_compare.py /^ meth = ("eq", "ne")$/;" v class:ComparisonFullTest.CompEqNe +meth Lib/test/test_compare.py /^ meth = ("eq",)$/;" v class:ComparisonFullTest.CompEq +meth Lib/test/test_compare.py /^ meth = ("ge",)$/;" v class:ComparisonFullTest.CompGe +meth Lib/test/test_compare.py /^ meth = ("gt",)$/;" v class:ComparisonFullTest.CompGt +meth Lib/test/test_compare.py /^ meth = ("le", "ge")$/;" v class:ComparisonFullTest.CompLeGe +meth Lib/test/test_compare.py /^ meth = ("le",)$/;" v class:ComparisonFullTest.CompLe +meth Lib/test/test_compare.py /^ meth = ("lt", "gt")$/;" v class:ComparisonFullTest.CompLtGt +meth Lib/test/test_compare.py /^ meth = ("lt",)$/;" v class:ComparisonFullTest.CompLt +meth Lib/test/test_compare.py /^ meth = ("ne",)$/;" v class:ComparisonFullTest.CompNe +meth Lib/test/test_compare.py /^ meth = ()$/;" v class:ComparisonFullTest.CompNone +meth Lib/test/test_descr.py /^ def meth(self):$/;" m class:.test_mutable_bases.C2 +meth Lib/test/test_descr.py /^ def meth(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.A +meth Lib/test/test_descr.py /^ def meth(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.B +meth Lib/test/test_descr.py /^ def meth(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.C +meth Lib/test/test_descr.py /^ def meth(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.D +meth Lib/test/test_descr.py /^ def meth(self):$/;" m class:ClassPropertiesAndMethods.test_metaclass.E +meth Lib/test/test_descr.py /^ def meth(self):$/;" m class:DictProxyTests.setUp.C +meth Lib/test/test_descr.py /^ def meth(self, a):$/;" m class:.test_supers.A +meth Lib/test/test_descr.py /^ def meth(self, a):$/;" m class:.test_supers.B +meth Lib/test/test_descr.py /^ def meth(self, a):$/;" m class:.test_supers.C +meth Lib/test/test_descr.py /^ def meth(self, a):$/;" m class:.test_supers.D +meth Lib/test/test_descr.py /^ def meth(self, a):$/;" m class:.test_supers.E +meth Lib/test/test_descr.py /^ def meth(self, a):$/;" m class:.test_supers.F +meth Lib/test/test_import/__init__.py /^ def meth(self, _meth=meth):$/;" f function:requires_singlephase_init +meth Lib/test/test_monitoring.py /^ def meth(self):$/;" m class:TestBranchAndJumpEvents.test_except_star.Foo +meth Lib/test/test_super.py /^ def meth(self):$/;" m class:TestSuper.test_cell_as_self.X +meth Lib/test/test_type_params.py /^ def meth(self):$/;" m class:TypeParamsAccessTest.test_super.Base +meth Lib/test/test_type_params.py /^ def meth[T](self, arg: int) -> T:$/;" m class:TypeParamsAccessTest.test_super.Child +meth Lib/test/test_type_params.py /^ def meth[__U](self, arg: __T, arg2: __U):$/;" m class:TypeParamsManglingTest.test_mangling.Foo +meth Lib/test/test_types.py /^ def meth(self) -> int:$/;" m class:UnionTests.test_or_type_operator_with_Protocol.Proto +meth Lib/test/test_typing.py /^ def meth(self) -> T: ...$/;" m class:ProtocolTests.test_runtime_checkable_generic.Foo +meth Lib/test/test_typing.py /^ def meth(self) -> int: ...$/;" m class:ProtocolTests.test_runtime_checkable_generic.Impl +meth Lib/test/test_typing.py /^ def meth(self): ...$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.CallableMembersProto +meth Lib/test/test_typing.py /^ def meth(self): ...$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.IdenticalProto +meth Lib/test/test_typing.py /^ def meth(self): ...$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.MixedMembersProto2 +meth Lib/test/test_typing.py /^ def meth(self): ...$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.SupersetProto +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_defining_generic_protocols.PR +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_defining_generic_protocols_old_style.PR +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.NotAProtocolButAnImplicitSubclass +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.NotAProtocolButAnImplicitSubclass2 +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.NotAProtocolButAnImplicitSubclass3 +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_non_protocol_subclasses.D +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_non_protocol_subclasses.PR +meth Lib/test/test_typing.py /^ def meth(self): pass$/;" m class:ProtocolTests.test_protocols_support_register.PM +meth Lib/test/test_typing.py /^ def meth(self):$/;" m class:ProtocolTests.test_basic_protocol.D +meth Lib/test/test_typing.py /^ def meth(self):$/;" m class:ProtocolTests.test_basic_protocol.P +meth Lib/test/test_typing.py /^ def meth(self):$/;" m class:ProtocolTests.test_generic_protocols_special_from_protocol.P +meth Lib/test/test_typing.py /^ def meth(self):$/;" m class:ProtocolTests.test_generic_protocols_special_from_protocol.PG +meth Lib/test/test_typing.py /^ def meth(self, arg):$/;" m class:ProtocolTests.test_protocols_isinstance_py36.C +meth Lib/test/test_typing.py /^ def meth(self, x, y): return True$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.NotAProtocolButAnImplicitSubclass3 +meth Lib/test/test_typing.py /^ def meth(self, x: T) -> None: ...$/;" m class:ProtocolTests.test_pep695_generic_protocol_callable_members.Bar +meth Lib/test/test_typing.py /^ def meth(self, x: T) -> None: ...$/;" m class:ProtocolTests.test_pep695_generic_protocol_callable_members.Foo +meth Lib/test/test_typing.py /^ def meth(self, x: int): ...$/;" m class:ForwardRefTests.test_no_type_check_no_bases.C +meth Lib/test/test_typing.py /^ def meth(x): ...$/;" m class:ProtocolTests.test_protocols_isinstance.BadP +meth Lib/test/test_typing.py /^ def meth(x): ...$/;" m class:ProtocolTests.test_protocols_isinstance.BadPG +meth Lib/test/test_typing.py /^ def meth(x): ...$/;" m class:ProtocolTests.test_protocols_isinstance.C +meth Lib/test/test_typing.py /^ def meth(x): ...$/;" m class:ProtocolTests.test_protocols_isinstance.P +meth Lib/test/test_typing.py /^ def meth(x): ...$/;" m class:ProtocolTests.test_protocols_isinstance.PG +meth Lib/test/test_typing.py /^ def meth(x: int): ...$/;" m class:GetTypeHintTests.test_respect_no_type_check.ABase +meth Lib/test/test_typing.py /^ meth = CustomCallable()$/;" v class:ProtocolTests.test_protocols_isinstance.WeirderProto +meth Lib/test/test_typing.py /^ meth = lambda *args, **kwargs: None$/;" v class:ProtocolTests.test_protocols_isinstance.WeirdProto2 +meth Lib/test/test_typing.py /^ meth = str.maketrans$/;" v class:ProtocolTests.test_protocols_isinstance.WeirdProto +meth Lib/test/test_typing.py /^ def meth(self, arg: str) -> int:$/;" m class:Other +meth Lib/test/test_typing.py /^ def meth(self, arg: str) -> int:$/;" m class:Proto +meth Lib/test/test_unittest/testmock/testmock.py /^ def meth(self, a, b, c, d=None): pass$/;" m class:MockTest.test_assert_has_calls_nested_spec.Something +meth Lib/test/test_unittest/testmock/testmock.py /^ def meth(self, a, b, c, d=None): pass$/;" m class:Something +meth Lib/test/test_weakref.py /^ def meth(self):$/;" m class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef +meth1 Lib/test/test_grammar.py /^ def meth1(self): pass$/;" m class:GrammarTests.test_classdef.C +meth1 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def meth1(self): pass$/;" m class:GrammarTests.testClassdef.C +meth1 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def meth1(self): pass$/;" m class:GrammarTests.testClassdef.C +meth1 Lib/test/test_typing.py /^ def meth1(self):$/;" m class:ProtocolTests.test_subprotocols_extending.C +meth1 Lib/test/test_typing.py /^ def meth1(self):$/;" m class:ProtocolTests.test_subprotocols_extending.C1 +meth1 Lib/test/test_typing.py /^ def meth1(self):$/;" m class:ProtocolTests.test_subprotocols_extending.P1 +meth1 Lib/test/test_typing.py /^ def meth1(self):$/;" m class:ProtocolTests.test_subprotocols_merging.C +meth1 Lib/test/test_typing.py /^ def meth1(self):$/;" m class:ProtocolTests.test_subprotocols_merging.C1 +meth1 Lib/test/test_typing.py /^ def meth1(self):$/;" m class:ProtocolTests.test_subprotocols_merging.P1 +meth1 Lib/test/test_unittest/testmock/testmock.py /^ def meth1(self, a, b): pass$/;" m class:MockTest.test_assert_has_calls_nested_spec.Something.Foo +meth2 Lib/test/test_grammar.py /^ def meth2(self, arg): pass$/;" m class:GrammarTests.test_classdef.C +meth2 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def meth2(self, arg): pass$/;" m class:GrammarTests.testClassdef.C +meth2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def meth2(self, arg): pass$/;" m class:GrammarTests.testClassdef.C +meth2 Lib/test/test_typing.py /^ def meth2(self): ...$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.MixedMembersProto1 +meth2 Lib/test/test_typing.py /^ def meth2(self): ...$/;" m class:ProtocolTests.test_implicit_issubclass_between_two_protocols.SupersetProto +meth2 Lib/test/test_typing.py /^ def meth2(self):$/;" m class:ProtocolTests.test_subprotocols_extending.C +meth2 Lib/test/test_typing.py /^ def meth2(self):$/;" m class:ProtocolTests.test_subprotocols_extending.C2 +meth2 Lib/test/test_typing.py /^ def meth2(self):$/;" m class:ProtocolTests.test_subprotocols_extending.P2 +meth2 Lib/test/test_typing.py /^ def meth2(self):$/;" m class:ProtocolTests.test_subprotocols_merging.C +meth2 Lib/test/test_typing.py /^ def meth2(self):$/;" m class:ProtocolTests.test_subprotocols_merging.C2 +meth2 Lib/test/test_typing.py /^ def meth2(self):$/;" m class:ProtocolTests.test_subprotocols_merging.P2 +meth3 Lib/test/test_grammar.py /^ def meth3(self, a1, a2): pass$/;" m class:GrammarTests.test_classdef.C +meth3 Lib/test/test_lib2to3/data/py2_test_grammar.py /^ def meth3(self, a1, a2): pass$/;" m class:GrammarTests.testClassdef.C +meth3 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def meth3(self, a1, a2): pass$/;" m class:GrammarTests.testClassdef.C +meth_class_methods Modules/_testcapimodule.c /^static PyMethodDef meth_class_methods[] = {$/;" v file: +meth_dealloc Objects/methodobject.c /^meth_dealloc(PyCFunctionObject *m)$/;" f file: +meth_descr_call_fail_kind Python/specialize.c /^meth_descr_call_fail_kind(int ml_flags)$/;" f file: +meth_fastcall Modules/_testcapimodule.c /^meth_fastcall(PyObject* self, PyObject* const* args, Py_ssize_t nargs)$/;" f file: +meth_fastcall_keywords Modules/_testcapimodule.c /^meth_fastcall_keywords(PyObject* self, PyObject* const* args,$/;" f file: +meth_from_sock Lib/test/test_socket.py /^ def meth_from_sock(self, sock):$/;" m class:SendfileUsingSendTest +meth_from_sock Lib/test/test_socket.py /^ def meth_from_sock(self, sock):$/;" m class:SendfileUsingSendfileTest +meth_get__doc__ Objects/methodobject.c /^meth_get__doc__(PyCFunctionObject *m, void *closure)$/;" f file: +meth_get__name__ Objects/methodobject.c /^meth_get__name__(PyCFunctionObject *m, void *closure)$/;" f file: +meth_get__qualname__ Objects/methodobject.c /^meth_get__qualname__(PyCFunctionObject *m, void *closure)$/;" f file: +meth_get__self__ Objects/methodobject.c /^meth_get__self__(PyCFunctionObject *m, void *closure)$/;" f file: +meth_get__text_signature__ Objects/methodobject.c /^meth_get__text_signature__(PyCFunctionObject *m, void *closure)$/;" f file: +meth_getsets Objects/methodobject.c /^static PyGetSetDef meth_getsets [] = {$/;" v file: +meth_hash Objects/methodobject.c /^meth_hash(PyCFunctionObject *a)$/;" f file: +meth_instance_methods Modules/_testcapimodule.c /^static PyMethodDef meth_instance_methods[] = {$/;" v file: +meth_members Objects/methodobject.c /^static PyMemberDef meth_members[] = {$/;" v file: +meth_methods Objects/methodobject.c /^static PyMethodDef meth_methods[] = {$/;" v file: +meth_noargs Modules/_testcapimodule.c /^meth_noargs(PyObject* self, PyObject* ignored)$/;" f file: +meth_o Modules/_testcapimodule.c /^meth_o(PyObject* self, PyObject* obj)$/;" f file: +meth_reduce Objects/methodobject.c /^meth_reduce(PyCFunctionObject *m, PyObject *Py_UNUSED(ignored))$/;" f file: +meth_repr Objects/methodobject.c /^meth_repr(PyCFunctionObject *m)$/;" f file: +meth_richcompare Objects/methodobject.c /^meth_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +meth_state Modules/_testmultiphase.c /^} meth_state;$/;" t typeref:struct:__anon423 file: +meth_state_access_exec Modules/_testmultiphase.c /^meth_state_access_exec(PyObject *m)$/;" f file: +meth_state_access_slots Modules/_testmultiphase.c /^static PyModuleDef_Slot meth_state_access_slots[] = {$/;" v file: +meth_static_methods Modules/_testcapimodule.c /^static PyMethodDef meth_static_methods[] = {$/;" v file: +meth_traverse Objects/methodobject.c /^meth_traverse(PyCFunctionObject *m, visitproc visit, void *arg)$/;" f file: +meth_varargs Modules/_testcapimodule.c /^meth_varargs(PyObject* self, PyObject* args)$/;" f file: +meth_varargs_keywords Modules/_testcapimodule.c /^meth_varargs_keywords(PyObject* self, PyObject* args, PyObject* kwargs)$/;" f file: +method Lib/multiprocessing/popen_fork.py /^ method = 'fork'$/;" v class:Popen +method Lib/multiprocessing/popen_forkserver.py /^ method = 'forkserver'$/;" v class:Popen +method Lib/multiprocessing/popen_spawn_posix.py /^ method = 'spawn'$/;" v class:Popen +method Lib/multiprocessing/popen_spawn_win32.py /^ method = 'spawn'$/;" v class:Popen +method Lib/test/inspect_fodder2.py /^ def method(self):$/;" m class:ClassWithMethod +method Lib/test/shadowed_super.py /^ def method(self):$/;" m class:C +method Lib/test/test_call.py /^ def method(self, arg1, arg2):$/;" m class:PythonClass +method Lib/test/test_contextlib.py /^ def method(self, a, b, c=None):$/;" m class:TestContextDecorator.test_decorating_method.Test +method Lib/test/test_contextlib_async.py /^ async def method(self, a, b, c=None):$/;" m class:AsyncContextManagerTestCase.test_decorating_method.Test +method Lib/test/test_descr.py /^ def method(cls):$/;" m class:.test_bound_method_repr.Foo +method Lib/test/test_descr.py /^ def method(self):$/;" m class:.test_bound_method_repr.Base +method Lib/test/test_descr.py /^ def method(self):$/;" m class:.test_bound_method_repr.Derived2 +method Lib/test/test_descr.py /^ def method(self):$/;" m class:.test_bound_method_repr.Foo +method Lib/test/test_functools.py /^ method = functools.partialmethod()$/;" v class:TestPartialMethod.test_invalid_args.B +method Lib/test/test_functools.py /^ method = functools.partialmethod(None, 1)$/;" v class:TestPartialMethod.test_invalid_args.B +method Lib/test/test_functools.py /^ method = functools.partialmethod(func=capture, a=1)$/;" v class:TestPartialMethod.test_invalid_args.B +method Lib/test/test_listcomps.py /^ def method(self):$/;" m class:ListComprehensionTest.test_class_scope_free_var_with_class_cell.C +method Lib/test/test_positional_only_arg.py /^ def method(self):$/;" m class:PositionalOnlyTestCase.test_annotations_in_closures.Something +method Lib/test/test_positional_only_arg.py /^ def method(self):$/;" m class:PositionalOnlyTestCase.test_super.A +method Lib/test/test_positional_only_arg.py /^ def method(self, \/):$/;" m class:PositionalOnlyTestCase.test_super.C +method Lib/test/test_super.py /^ def method(self):$/;" m class:TestSuper.test_attribute_error.C +method Lib/test/test_super.py /^ def method(self):$/;" m class:TestSuper.test_bad_first_arg.C +method Lib/test/test_super.py /^ def method(self):$/;" m class:TestSuper.test_shadowed_dynamic.C +method Lib/test/test_super.py /^ def method(self):$/;" m class:TestSuper.test_shadowed_dynamic_two_arg.C +method Lib/test/test_super.py /^ def method(self):$/;" m class:TestSuper.test_shadowed_local.C +method Lib/test/test_super.py /^ def method(self):$/;" m class:TestSuper.test_super___class__.C +method Lib/test/test_super.py /^ def method(self):$/;" m class:TestSuper.test_super_subclass___class__.C +method Lib/test/test_typing.py /^ def method(self) -> None: ...$/;" m class:ProtocolTests.test_protocol_decorated_with_final_mixed_members.Foo +method Lib/test/test_typing.py /^ def method(self) -> None: ...$/;" m class:ProtocolTests.test_protocol_decorated_with_final_mixed_members.ProtocolWithMixedMembers +method Lib/test/test_typing.py /^ def method(self) -> int: ...$/;" m class:ProtocolTests.test_runtime_checkable_generic.NotImpl +method Lib/test/test_typing.py /^ def method(self): ...$/;" m class:MethodHolder +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self): pass$/;" m class:MockTest.test_customize_wrapped_object_with_return_value.Real +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self): pass$/;" m class:MockTest.test_customize_wrapped_object_with_return_value_and_side_effect.Real +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self): pass$/;" m class:MockTest.test_customize_wrapped_object_with_return_value_and_side_effect2.Real +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self): pass$/;" m class:MockTest.test_customize_wrapped_object_with_return_value_and_side_effect_default.Real +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self): pass$/;" m class:MockTest.test_customize_wrapped_object_with_side_effect_exception.Real +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self): pass$/;" m class:MockTest.test_customize_wrapped_object_with_side_effect_function.Real +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self): pass$/;" m class:MockTest.test_customize_wrapped_object_with_side_effect_iterable.Real +method Lib/test/test_unittest/testmock/testmock.py /^ def method(self):$/;" m class:MockTest.test_customize_wrapped_object_with_side_effect_iterable_with_default.Real +method Lib/test/test_urllib2.py /^ method = 'PUT'$/;" v class:RequestTests.PutRequest +method Lib/test/test_weakref.py /^ def method(self):$/;" m class:C +method Lib/unittest/mock.py /^ def method(self, \/, *args, **kw):$/;" f function:_get_method +method___reduce__ Objects/clinic/classobject.c.h /^method___reduce__(PyMethodObject *self, PyObject *Py_UNUSED(ignored))$/;" f +method___reduce___impl Objects/classobject.c /^method___reduce___impl(PyMethodObject *self)$/;" f file: +method_and_var Lib/test/test_scope.py /^ def method_and_var(self):$/;" m class:ScopeTests.testFreeVarInMethod.test.Test +method_and_var Lib/test/test_scope.py /^ def method_and_var(self):$/;" m class:ScopeTests.testFreeVarInMethod.Test +method_annotation Lib/test/test_docxmlrpc.py /^ def method_annotation(self, x: bytes):$/;" m class:make_server.ClassWithAnnotation +method_cache Lib/importlib/metadata/_functools.py /^def method_cache(method, cache_wrapper=None):$/;" f +method_check_args Objects/descrobject.c /^method_check_args(PyObject *func, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f file: +method_dealloc Objects/classobject.c /^method_dealloc(PyMethodObject *im)$/;" f file: +method_enter_call Objects/descrobject.c /^method_enter_call(PyThreadState *tstate, PyObject *func)$/;" f file: +method_example Lib/test/test_capi/test_misc.py /^ def method_example(self): ...$/;" m class:CAPITest.test_eval_get_func_desc.A +method_example Lib/test/test_capi/test_misc.py /^ def method_example(self): ...$/;" m class:CAPITest.test_eval_get_func_name.A +method_get Objects/descrobject.c /^method_get(PyMethodDescrObject *descr, PyObject *obj, PyObject *type)$/;" f file: +method_get_doc Objects/classobject.c /^method_get_doc(PyMethodObject *im, void *context)$/;" f file: +method_get_doc Objects/descrobject.c /^method_get_doc(PyMethodDescrObject *descr, void *closure)$/;" f file: +method_get_text_signature Objects/descrobject.c /^method_get_text_signature(PyMethodDescrObject *descr, void *closure)$/;" f file: +method_getattro Objects/classobject.c /^method_getattro(PyObject *obj, PyObject *name)$/;" f file: +method_getset Objects/classobject.c /^static PyGetSetDef method_getset[] = {$/;" v file: +method_getset Objects/descrobject.c /^static PyGetSetDef method_getset[] = {$/;" v file: +method_hash Objects/classobject.c /^method_hash(PyMethodObject *a)$/;" f file: +method_in_dynamic_class Lib/test/inspect_fodder2.py /^method_in_dynamic_class = f().g$/;" v +method_is_overloaded Objects/typeobject.c /^method_is_overloaded(PyObject *left, PyObject *right, PyObject *name)$/;" f file: +method_memberlist Objects/classobject.c /^static PyMemberDef method_memberlist[] = {$/;" v file: +method_methods Objects/classobject.c /^static PyMethodDef method_methods[] = {$/;" v file: +method_new Objects/clinic/classobject.c.h /^method_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +method_new_impl Objects/classobject.c /^method_new_impl(PyTypeObject *type, PyObject *function, PyObject *instance)$/;" f file: +method_noarg Lib/test/test_call.py /^ def method_noarg(self):$/;" m class:PythonClass +method_one Lib/test/test_abc.py /^ def method_one(self):$/;" m class:test_factory.TestABC.test_object_new_with_many_abstractmethods.C +method_one Lib/test/test_abc.py /^ def method_one(self):$/;" m class:test_factory.TestABC.test_object_new_with_one_abstractmethod.C +method_output_as_list Objects/abstract.c /^method_output_as_list(PyObject *o, PyObject *meth)$/;" f file: +method_repr Objects/classobject.c /^method_repr(PyMethodObject *a)$/;" f file: +method_repr Objects/descrobject.c /^method_repr(PyMethodDescrObject *descr)$/;" f file: +method_returning_true Lib/test/test_pydoc.py /^ def method_returning_true(self):$/;" m class:PydocDocTest.test_allmethods.TestClass +method_richcompare Objects/classobject.c /^method_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +method_sample1 Lib/test/test_unittest/testmock/testsealable.py /^ def method_sample1(self): pass$/;" m class:SampleObject +method_sample2 Lib/test/test_unittest/testmock/testsealable.py /^ def method_sample2(self): pass$/;" m class:SampleObject +method_traverse Objects/classobject.c /^method_traverse(PyMethodObject *im, visitproc visit, void *arg)$/;" f file: +method_two Lib/test/test_abc.py /^ def method_two(self):$/;" m class:test_factory.TestABC.test_object_new_with_many_abstractmethods.C +method_two_args Lib/test/test_call.py /^ def method_two_args(self, x, y):$/;" m class:A +method_vectorcall Objects/classobject.c /^method_vectorcall(PyObject *method, PyObject *const *args,$/;" f file: +method_vectorcall_FASTCALL Objects/descrobject.c /^method_vectorcall_FASTCALL($/;" f file: +method_vectorcall_FASTCALL_KEYWORDS Objects/descrobject.c /^method_vectorcall_FASTCALL_KEYWORDS($/;" f file: +method_vectorcall_FASTCALL_KEYWORDS_METHOD Objects/descrobject.c /^method_vectorcall_FASTCALL_KEYWORDS_METHOD($/;" f file: +method_vectorcall_NOARGS Objects/descrobject.c /^method_vectorcall_NOARGS($/;" f file: +method_vectorcall_O Objects/descrobject.c /^method_vectorcall_O($/;" f file: +method_vectorcall_VARARGS Objects/descrobject.c /^method_vectorcall_VARARGS($/;" f file: +method_vectorcall_VARARGS_KEYWORDS Objects/descrobject.c /^method_vectorcall_VARARGS_KEYWORDS($/;" f file: +method_with_docstring Lib/test/doctest_lineno.py /^ def method_with_docstring(self):$/;" m class:MethodWrapper +method_with_doctest Lib/test/doctest_lineno.py /^ def method_with_doctest(self):$/;" m class:MethodWrapper +method_without_docstring Lib/test/doctest_lineno.py /^ def method_without_docstring(self):$/;" m class:MethodWrapper +methodcaller Lib/operator.py /^class methodcaller:$/;" c +methodcaller_call Modules/_operator.c /^methodcaller_call(methodcallerobject *mc, PyObject *args, PyObject *kw)$/;" f file: +methodcaller_clear Modules/_operator.c /^methodcaller_clear(methodcallerobject *mc)$/;" f file: +methodcaller_dealloc Modules/_operator.c /^methodcaller_dealloc(methodcallerobject *mc)$/;" f file: +methodcaller_methods Modules/_operator.c /^static PyMethodDef methodcaller_methods[] = {$/;" v file: +methodcaller_new Modules/_operator.c /^methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +methodcaller_reduce Modules/_operator.c /^methodcaller_reduce(methodcallerobject *mc, PyObject *Py_UNUSED(ignored))$/;" f file: +methodcaller_repr Modules/_operator.c /^methodcaller_repr(methodcallerobject *mc)$/;" f file: +methodcaller_traverse Modules/_operator.c /^methodcaller_traverse(methodcallerobject *mc, visitproc visit, void *arg)$/;" f file: +methodcaller_type Modules/_operator.c /^ PyObject *methodcaller_type;$/;" m struct:__anon473 file: +methodcaller_type_slots Modules/_operator.c /^static PyType_Slot methodcaller_type_slots[] = {$/;" v file: +methodcaller_type_spec Modules/_operator.c /^static PyType_Spec methodcaller_type_spec = {$/;" v file: +methodcallerobject Modules/_operator.c /^} methodcallerobject;$/;" t typeref:struct:__anon476 file: +methoddef_flags Tools/clinic/clinic.py /^ def methoddef_flags(self) -> str | None:$/;" m class:Function +methodmap Lib/filecmp.py /^ methodmap = dict(subdirs=phase4,$/;" v class:dircmp +methodnames Lib/test/test_profile.py /^ methodnames = ['print_stats', 'print_callers', 'print_callees']$/;" v class:ProfileTest +methods Lib/crypt.py /^methods = []$/;" v +methods Python/instrumentation.c /^static PyMethodDef methods[] = {$/;" v file: +metrics Lib/tkinter/font.py /^ def metrics(self, *options, **kw):$/;" m class:Font +mf Lib/modulefinder.py /^ mf = test()$/;" v +mformat_descriptors Modules/arraymodule.c /^} mformat_descriptors[] = {$/;" v typeref:struct:mformatdescr file: +mformatdescr Modules/arraymodule.c /^static const struct mformatdescr {$/;" s file: +mgmt Include/internal/pycore_obmalloc.h /^ struct _obmalloc_mgmt mgmt;$/;" m struct:_obmalloc_state typeref:struct:_obmalloc_state::_obmalloc_mgmt +micro Modules/expat/expat.h /^ int micro;$/;" m struct:__anon601 +microsecond Lib/_pydatetime.py /^ def microsecond(self):$/;" m class:datetime +microsecond Lib/_pydatetime.py /^ def microsecond(self):$/;" m class:time +microseconds Include/datetime.h /^ int microseconds; \/* 0 <= microseconds < 1000000 is invariant *\/$/;" m struct:__anon262 +microseconds Lib/_pydatetime.py /^ def microseconds(self):$/;" m class:timedelta +microseconds_to_delta Modules/_datetimemodule.c 1971;" d file: +microseconds_to_delta_ex Modules/_datetimemodule.c /^microseconds_to_delta_ex(PyObject *pyus, PyTypeObject *type)$/;" f file: +middle Lib/test/test_traceback.py /^ def middle():$/;" f function:MiscTracebackCases.test_clear +mime_parameters_as_value Lib/test/test_email/test__header_value_parser.py /^ def mime_parameters_as_value(self,$/;" m class:Test_parse_mime_parameters +mime_parameters_params Lib/test/test_email/test__header_value_parser.py /^ mime_parameters_params = {$/;" v class:Test_parse_mime_parameters +mime_version_as_value Lib/test/test_email/test__header_value_parser.py /^ def mime_version_as_value(self,$/;" m class:Test_parse_mime_version +mime_version_params Lib/test/test_email/test__header_value_parser.py /^ mime_version_params = {$/;" v class:Test_parse_mime_version +mimetypes_cmd Lib/test/test_mimetypes.py /^ def mimetypes_cmd(self, *args, **kwargs):$/;" m class:MimetypesCliTestCase +min Include/cpython/modsupport.h /^ int min; \/* minimal number of arguments *\/$/;" m struct:_PyArg_Parser +min Lib/_pydecimal.py /^ def min(self, a, b):$/;" m class:Context +min Lib/_pydecimal.py /^ def min(self, other, context=None):$/;" m class:Decimal +min Modules/_ctypes/ctypes.h 7;" d +min PC/launcher.c /^ unsigned short min;$/;" m struct:__anon290 file: +minBytesPerChar Modules/expat/xmltok.h /^ int minBytesPerChar;$/;" m struct:encoding +min_char Include/cpython/unicodeobject.h /^ Py_UCS4 min_char;$/;" m struct:__anon236 +min_gallop Objects/listobject.c /^ Py_ssize_t min_gallop;$/;" m struct:s_MergeState file: +min_length Include/cpython/unicodeobject.h /^ Py_ssize_t min_length;$/;" m struct:__anon236 +min_mag Lib/_pydecimal.py /^ def min_mag(self, a, b):$/;" m class:Context +min_mag Lib/_pydecimal.py /^ def min_mag(self, other, context=None):$/;" m class:Decimal +min_max Python/bltinmodule.c /^min_max(PyObject *args, PyObject *kwds, int op)$/;" f file: +min_size Include/cpython/bytesobject.h /^ Py_ssize_t min_size;$/;" m struct:__anon174 +min_width Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t min_width; \/* minimum field width *\/$/;" m struct:mpd_spec_t +minimum_version Lib/ssl.py /^ def minimum_version(self):$/;" f function:SSLContext.load_default_certs +minimum_version Lib/ssl.py /^ def minimum_version(self, value):$/;" f function:SSLContext.load_default_certs +minitemsize Lib/test/test_array.py /^ minitemsize = 1$/;" v class:ByteTest +minitemsize Lib/test/test_array.py /^ minitemsize = 1$/;" v class:UnsignedByteTest +minitemsize Lib/test/test_array.py /^ minitemsize = 2$/;" v class:IntTest +minitemsize Lib/test/test_array.py /^ minitemsize = 2$/;" v class:ShortTest +minitemsize Lib/test/test_array.py /^ minitemsize = 2$/;" v class:UnicodeTest +minitemsize Lib/test/test_array.py /^ minitemsize = 2$/;" v class:UnsignedIntTest +minitemsize Lib/test/test_array.py /^ minitemsize = 2$/;" v class:UnsignedShortTest +minitemsize Lib/test/test_array.py /^ minitemsize = 4$/;" v class:FloatTest +minitemsize Lib/test/test_array.py /^ minitemsize = 4$/;" v class:LongTest +minitemsize Lib/test/test_array.py /^ minitemsize = 4$/;" v class:UnsignedLongTest +minitemsize Lib/test/test_array.py /^ minitemsize = 8$/;" v class:DoubleTest +minitemsize Lib/test/test_array.py /^ minitemsize = 8$/;" v class:LongLongTest +minitemsize Lib/test/test_array.py /^ minitemsize = 8$/;" v class:UnsignedLongLongTest +minor Lib/email/_header_value_parser.py /^ minor = None$/;" v class:MIMEVersion +minor Lib/email/headerregistry.py /^ def minor(self):$/;" m class:MIMEVersionHeader +minor Modules/expat/expat.h /^ int minor;$/;" m struct:__anon601 +minsize Lib/test/test_itertools.py /^minsize = -maxsize-1$/;" v +minsize Lib/tkinter/__init__.py /^ minsize = wm_minsize$/;" v class:Wm +minus Lib/_pydecimal.py /^ def minus(self, a):$/;" m class:Context +minus_one Modules/_decimal/libmpdec/mpdecimal.c /^static const mpd_t minus_one = {MPD_NEG|MPD_STATIC|MPD_CONST_DATA, 0, 1, 1, 1,$/;" v file: +minused Include/cpython/dictobject.h /^PyAPI_FUNC(PyObject *) _PyDict_NewPresized(Py_ssize_t minused);$/;" v +minused Lib/test/test_sys.py /^ minused = len(sample)$/;" v class:SizeofTest.test_objecttypes.C +minused Lib/test/test_sys.py /^ minused = minused*2$/;" v class:SizeofTest.test_objecttypes.C +minute Lib/_pydatetime.py /^ def minute(self):$/;" m class:datetime +minute Lib/_pydatetime.py /^ def minute(self):$/;" m class:time +minute Modules/_zoneinfo.c /^ int8_t minute;$/;" m struct:__anon639 file: +minute Modules/_zoneinfo.c /^ int8_t minute;$/;" m struct:__anon640 file: +minvals Modules/audioop.c /^static const int minvals[] = {0, -0x80, -0x8000, -0x800000, -0x7FFFFFFF-1};$/;" v file: +minvalues Lib/test/test_audioop.py /^minvalues = {w: -1 << (8 * w - 1) for w in (1, 2, 3, 4)}$/;" v +mirrored Modules/unicodedata.c /^ const unsigned char mirrored; \/* true if mirrored in bidir mode *\/$/;" m struct:__anon642 file: +mirrored_changed Modules/unicodedata.c /^ const unsigned char mirrored_changed;$/;" m struct:change_record file: +misc_header Lib/cmd.py /^ misc_header = "Miscellaneous help topics:"$/;" v class:Cmd +miss Include/pystats.h /^ uint64_t miss;$/;" m struct:_specialization_stats +misses Modules/_functoolsmodule.c /^ Py_ssize_t misses;$/;" m struct:lru_cache_object file: +misshappen Lib/test/test_code.py /^def misshappen():$/;" f +missing Modules/_lsprof.c /^ PyObject* missing;$/;" m struct:__anon362 file: +missing packaging/skipped_tests.py /^missing = excluded - included - qemu_exclusions$/;" v +missing_arguments Python/ceval.c /^missing_arguments(PyThreadState *tstate, PyCodeObject *co,$/;" f file: +missing_compiler_executable Lib/test/support/__init__.py /^def missing_compiler_executable(cmd_names=[]):$/;" f +missing_link Lib/test/test_os.py /^ missing_link = 'missing link'$/;" v class:Win32SymlinkTests +mixedargs_sum Lib/test/test_keywordonlyarg.py /^def mixedargs_sum(a, b=0, *arg, k1, k2=0):$/;" f +mixedargs_sum2 Lib/test/test_keywordonlyarg.py /^def mixedargs_sum2(a, b=0, *arg, k1, k2=0, **kwargs):$/;" f +mkargs Lib/test/test_decimal.py /^ def mkargs(module, sig):$/;" f function:SignatureTest.test_inspect_types +mkcmd Lib/idlelib/sidebar.py /^ def mkcmd(eventname):$/;" f function:ShellSidebar.context_menu_event +mkd Lib/ftplib.py /^ def mkd(self, dirname):$/;" m class:FTP +mkdir Lib/pathlib.py /^ def mkdir(self, mode=0o777, parents=False, exist_ok=False):$/;" m class:Path +mkdir Lib/test/test_importlib/_path.py /^ def mkdir(self, **kwargs):$/;" m class:Recording +mkdir Lib/test/test_importlib/_path.py /^ def mkdir(self, **kwargs):$/;" m class:TreeMaker +mkdir Lib/zipfile/__init__.py /^ def mkdir(self, zinfo_or_directory_name, mode=511):$/;" m class:ZipFile +mkdtemp Lib/tempfile.py /^def mkdtemp(suffix=None, prefix=None, dir=None):$/;" f +mkdtemp Lib/test/test_shutil.py /^ def mkdtemp(self, prefix=None):$/;" m class:BaseTest +mkgrent Modules/grpmodule.c /^mkgrent(PyObject *module, struct group *p)$/;" f file: +mkhier Lib/test/test_pkg.py /^ def mkhier(self, descr):$/;" m class:TestPkg +mkpwent Modules/pwdmodule.c /^mkpwent(PyObject *module, struct passwd *p)$/;" f file: +mksalt Lib/crypt.py /^def mksalt(method=None, *, rounds=None):$/;" f +mkspent Modules/spwdmodule.c /^static PyObject *mkspent(PyObject *module, struct spwd *p)$/;" f file: +mkstemp Lib/tempfile.py /^def mkstemp(suffix=None, prefix=None, dir=None, text=False):$/;" f +mkstemped Lib/test/test_tempfile.py /^ class mkstemped:$/;" c class:TestMkstempInner +mktemp Lib/tempfile.py /^def mktemp(suffix="", prefix=template, dir=None):$/;" f +mktemp Lib/test/test_glob.py /^ def mktemp(self, *parts):$/;" m class:GlobTests +mktemped Lib/test/test_tempfile.py /^ class mktemped:$/;" c class:TestMktemp +mktime_tz Lib/email/_parseaddr.py /^def mktime_tz(data):$/;" f +ml Modules/_testcapimodule.c /^static PyMethodDef ml = {$/;" v file: +ml Modules/_testcapimodule.c /^static PyMethodDef ml;$/;" v file: +ml_doc Include/methodobject.h /^ const char *ml_doc; \/* The __doc__ attribute, or NULL *\/$/;" m struct:PyMethodDef +ml_flags Include/methodobject.h /^ int ml_flags; \/* Combination of METH_xxx flags, which mostly$/;" m struct:PyMethodDef +ml_meth Include/methodobject.h /^ PyCFunction ml_meth; \/* The C function that implements it *\/$/;" m struct:PyMethodDef +ml_name Include/methodobject.h /^ const char *ml_name; \/* The name of the built-in function\/method *\/$/;" m struct:PyMethodDef +mlsd Lib/ftplib.py /^ def mlsd(self, path="", facts=[]):$/;" m class:FTP +mm_class Include/cpython/methodobject.h /^ PyTypeObject *mm_class; \/* Class that defines this method *\/$/;" m struct:__anon203 +mmap Lib/test/test_mmap.py /^mmap = import_module('mmap')$/;" v +mmap Lib/test/test_os.py /^ mmap = None$/;" v +mmap__enter__method Modules/mmapmodule.c /^mmap__enter__method(mmap_object *self, PyObject *args)$/;" f file: +mmap__exit__method Modules/mmapmodule.c /^mmap__exit__method(PyObject *self, PyObject *args)$/;" f file: +mmap__repr__method Modules/mmapmodule.c /^mmap__repr__method(PyObject *self)$/;" f file: +mmap__sizeof__method Modules/mmapmodule.c /^mmap__sizeof__method(mmap_object *self, void *unused)$/;" f file: +mmap_ass_item Modules/mmapmodule.c /^mmap_ass_item(mmap_object *self, Py_ssize_t i, PyObject *v)$/;" f file: +mmap_ass_subscript Modules/mmapmodule.c /^mmap_ass_subscript(mmap_object *self, PyObject *item, PyObject *value)$/;" f file: +mmap_buffer_getbuf Modules/mmapmodule.c /^mmap_buffer_getbuf(mmap_object *self, Py_buffer *view, int flags)$/;" f file: +mmap_buffer_releasebuf Modules/mmapmodule.c /^mmap_buffer_releasebuf(mmap_object *self, Py_buffer *view)$/;" f file: +mmap_close_method Modules/mmapmodule.c /^mmap_close_method(mmap_object *self, PyObject *unused)$/;" f file: +mmap_closed_get Modules/mmapmodule.c /^mmap_closed_get(mmap_object *self, void *Py_UNUSED(ignored))$/;" f file: +mmap_exec Modules/mmapmodule.c /^mmap_exec(PyObject *module)$/;" f file: +mmap_find_method Modules/mmapmodule.c /^mmap_find_method(mmap_object *self,$/;" f file: +mmap_flush_method Modules/mmapmodule.c /^mmap_flush_method(mmap_object *self, PyObject *args)$/;" f file: +mmap_gfind Modules/mmapmodule.c /^mmap_gfind(mmap_object *self,$/;" f file: +mmap_item Modules/mmapmodule.c /^mmap_item(mmap_object *self, Py_ssize_t i)$/;" f file: +mmap_length Modules/mmapmodule.c /^mmap_length(mmap_object *self)$/;" f file: +mmap_madvise_method Modules/mmapmodule.c /^mmap_madvise_method(mmap_object *self, PyObject *args)$/;" f file: +mmap_move_method Modules/mmapmodule.c /^mmap_move_method(mmap_object *self, PyObject *args)$/;" f file: +mmap_object Modules/mmapmodule.c /^} mmap_object;$/;" t typeref:struct:__anon490 file: +mmap_object_dealloc Modules/mmapmodule.c /^mmap_object_dealloc(mmap_object *m_obj)$/;" f file: +mmap_object_getset Modules/mmapmodule.c /^static PyGetSetDef mmap_object_getset[] = {$/;" v file: +mmap_object_members Modules/mmapmodule.c /^static struct PyMemberDef mmap_object_members[] = {$/;" v typeref:struct:PyMemberDef file: +mmap_object_methods Modules/mmapmodule.c /^static struct PyMethodDef mmap_object_methods[] = {$/;" v typeref:struct:PyMethodDef file: +mmap_object_slots Modules/mmapmodule.c /^static PyType_Slot mmap_object_slots[] = {$/;" v file: +mmap_object_spec Modules/mmapmodule.c /^static PyType_Spec mmap_object_spec = {$/;" v file: +mmap_object_traverse Modules/mmapmodule.c /^mmap_object_traverse(mmap_object *m_obj, visitproc visit, void *arg)$/;" f file: +mmap_read_byte_method Modules/mmapmodule.c /^mmap_read_byte_method(mmap_object *self,$/;" f file: +mmap_read_line_method Modules/mmapmodule.c /^mmap_read_line_method(mmap_object *self,$/;" f file: +mmap_read_method Modules/mmapmodule.c /^mmap_read_method(mmap_object *self,$/;" f file: +mmap_resize_method Modules/mmapmodule.c /^mmap_resize_method(mmap_object *self,$/;" f file: +mmap_rfind_method Modules/mmapmodule.c /^mmap_rfind_method(mmap_object *self,$/;" f file: +mmap_seek_method Modules/mmapmodule.c /^mmap_seek_method(mmap_object *self, PyObject *args)$/;" f file: +mmap_size_method Modules/mmapmodule.c /^mmap_size_method(mmap_object *self,$/;" f file: +mmap_slots Modules/mmapmodule.c /^static PyModuleDef_Slot mmap_slots[] = {$/;" v file: +mmap_subscript Modules/mmapmodule.c /^mmap_subscript(mmap_object *self, PyObject *item)$/;" f file: +mmap_tell_method Modules/mmapmodule.c /^mmap_tell_method(mmap_object *self, PyObject *unused)$/;" f file: +mmap_write_byte_method Modules/mmapmodule.c /^mmap_write_byte_method(mmap_object *self,$/;" f file: +mmap_write_method Modules/mmapmodule.c /^mmap_write_method(mmap_object *self,$/;" f file: +mmapmodule Modules/mmapmodule.c /^static struct PyModuleDef mmapmodule = {$/;" v typeref:struct:PyModuleDef file: +mn_eck Lib/turtledemo/rosette.py /^def mn_eck(p, ne,sz):$/;" f +mnemonic Modules/_ssl.c /^ const char *mnemonic;$/;" m struct:py_ssl_error_code file: +mock Lib/test/test_unittest/testmock/testhelpers.py /^ mock = create_autospec(spec)$/;" v class:SpecSignatureTest.test_descriptors.Baz +mock Lib/test/test_unittest/testmock/testhelpers.py /^ mock = create_autospec(spec, spec_set=True)$/;" v class:SpecSignatureTest.test_spec_set.Sub +mock Lib/test/test_unittest/testmock/testmock.py /^ mock = Klass()$/;" v class:MockTest.test_mock_add_spec.Anything +mock_Shell Lib/idlelib/idle_test/test_calltip.py /^class mock_Shell:$/;" c +mock_TipWindow Lib/idlelib/idle_test/test_calltip.py /^class mock_TipWindow:$/;" c +mock_add_spec Lib/unittest/mock.py /^ def mock_add_spec(self, spec, spec_set=False):$/;" m class:MagicMock +mock_add_spec Lib/unittest/mock.py /^ def mock_add_spec(self, spec, spec_set=False):$/;" m class:NonCallableMagicMock +mock_add_spec Lib/unittest/mock.py /^ def mock_add_spec(self, spec, spec_set=False):$/;" m class:NonCallableMock +mock_calls Lib/unittest/mock.py /^ mock_calls = _delegating_property('mock_calls')$/;" v class:NonCallableMock +mock_config Lib/idlelib/idle_test/test_config.py /^ def mock_config(self):$/;" m class:IdleConfTest +mock_contextmanager Lib/test/test_with.py /^def mock_contextmanager(func):$/;" f +mock_contextmanager_generator Lib/test/test_with.py /^def mock_contextmanager_generator():$/;" f +mock_execv Lib/test/test_os.py /^ def mock_execv(name, *args):$/;" f function:_execvpe_mockup +mock_execve Lib/test/test_os.py /^ def mock_execve(name, *args):$/;" f function:_execvpe_mockup +mock_fork Lib/test/test_pty.py /^ def mock_fork():$/;" f function:SmallPtyTests._make_mock_fork +mock_generate_time_safe Lib/test/test_uuid.py /^ def mock_generate_time_safe(self, safe_value):$/;" m class:BaseTestUUID +mock_get_code Lib/test/test_importlib/test_abc.py /^ def mock_get_code(self):$/;" m class:InspectLoaderLoadModuleTests +mock_get_command_stdout Lib/test/test_uuid.py /^def mock_get_command_stdout(data):$/;" f +mock_getaddrinfo Lib/test/test_asyncio/test_base_events.py /^ def mock_getaddrinfo(*args, **kwds):$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_ssl_server_hostname_default +mock_idleconf_GetFont Lib/idlelib/idle_test/test_codecontext.py /^ def mock_idleconf_GetFont(root, configType, section):$/;" f function:CodeContextTest.setUp +mock_idleconf_GetFont Lib/idlelib/idle_test/test_sidebar.py /^ def mock_idleconf_GetFont(root, configType, section):$/;" f function:LineNumbersTest.setUp +mock_idleconf_GetFont Lib/idlelib/idle_test/test_sidebar.py /^ def mock_idleconf_GetFont(root, configType, section):$/;" f function:ShellSidebarTest.test_font +mock_idleconf_GetHighlight Lib/idlelib/idle_test/test_codecontext.py /^ def mock_idleconf_GetHighlight(theme, element):$/;" f function:CodeContextTest.setUp +mock_idleconf_GetHighlight Lib/idlelib/idle_test/test_sidebar.py /^ def mock_idleconf_GetHighlight(theme, element):$/;" f function:LineNumbersTest.setUp +mock_idleconf_GetHighlight Lib/idlelib/idle_test/test_sidebar.py /^ def mock_idleconf_GetHighlight(theme, element):$/;" f function:ShellSidebarTest.test_highlight_colors +mock_make_ssl_transport Lib/test/test_asyncio/test_base_events.py /^ def mock_make_ssl_transport(sock, protocol, sslcontext, waiter,$/;" f function:BaseEventLoopWithSelectorTests.test_create_connection_ssl_server_hostname_default +mock_methods Lib/test/test_importlib/test_abc.py /^ def mock_methods(self, *, get_source=False, get_filename=False):$/;" m class:ExecutionLoaderGetCodeTests +mock_modules Lib/test/test_importlib/import_/test___package__.py /^ mock_modules = util.mock_spec$/;" v class:Setting__package__PEP451 +mock_modules Lib/test/test_importlib/import_/test___package__.py /^ mock_modules = util.mock_spec$/;" v class:Using__package__PEP451 +mock_modules Lib/test/test_importlib/import_/test_meta_path.py /^ mock_modules = util.mock_spec$/;" v class:CallSignaturePEP451 +mock_nonblocking_socket Lib/test/test_asyncio/utils.py /^def mock_nonblocking_socket(proto=socket.IPPROTO_TCP, type=socket.SOCK_STREAM,$/;" f +mock_open Lib/test/test_sax.py /^ def mock_open(*args):$/;" f function:ParseTest.test_parse_close_source +mock_open Lib/unittest/mock.py /^def mock_open(mock=None, read_data=''):$/;" f +mock_path_hook Lib/test/test_importlib/util.py /^def mock_path_hook(*entries, importer):$/;" f +mock_pyclbr_tree Lib/idlelib/idle_test/test_browser.py /^mock_pyclbr_tree = {'C0': C0, 'f0': f0}$/;" v +mock_refactor_file Lib/test/test_lib2to3/test_refactor.py /^ def mock_refactor_file(self, f, *args):$/;" f function:TestRefactoringTool.test_refactor_dir.check +mock_register_at_fork Lib/test/support/import_helper.py /^def mock_register_at_fork(func):$/;" f +mock_rename Lib/test/test_shutil.py /^def mock_rename(func):$/;" f +mock_server_class Lib/test/test_httpservers.py /^ def mock_server_class(self):$/;" m class:ScriptTestCase +mock_socket_module Lib/test/test_asyncio/test_base_events.py /^def mock_socket_module():$/;" f +mock_socket_module Lib/test/test_nntplib.py /^ class mock_socket_module:$/;" c function:MockSocketTests.check_constructor_error_conditions +mock_spec Lib/test/test_importlib/util.py /^class mock_spec(_ImporterMock):$/;" c +mock_sys Lib/test/test_code_module.py /^ def mock_sys(self):$/;" m class:TestInteractiveConsole +mock_wait_window Lib/test/test_tkinter/test_simpledialog.py /^ def mock_wait_window(w):$/;" f function:DefaultRootTest.test_askinteger +mocked_socket_module Lib/test/test_socket.py /^ def mocked_socket_module(self):$/;" m class:NetworkConnectionNoServer +mod Lib/operator.py /^def mod(a, b):$/;" f +mod Lib/symtable.py /^ mod = symtable(src, os.path.split(sys.argv[0])[1], "exec")$/;" v +mod Lib/test/smtpd.py /^ mod = __import__(classname[:lastdot], globals(), locals(), [""])$/;" v +mod Lib/test/test_ast.py /^ def mod(self, mod, msg=None, mode="exec", *, exc=ValueError):$/;" m class:ASTValidatorTests +mod Lib/test/test_descr.py /^ mod = ModuleType("spam")$/;" v class:.test_set_dict.Module2 +mod Lib/test/test_pdb.py /^mod = types.ModuleType('module_to_skip')$/;" v +mod-augment Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd mod-augment$/;" f +mod-m-b Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-m-b$/;" f +mod-reduce-aux1 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-reduce-aux1$/;" f +mod-reduce-aux2 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-reduce-aux2$/;" f +mod-reduce-aux3 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-reduce-aux3$/;" f +mod-reduce-aux4 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-reduce-aux4$/;" f +mod-reduce-p1 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun mod-reduce-p1 (hi lo)$/;" f +mod-reduce-p1==simple-mod-reduce-p1 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-reduce-p1==simple-mod-reduce-p1$/;" f +mod-reduce-p2 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun mod-reduce-p2 (hi lo)$/;" f +mod-reduce-p2==simple-mod-reduce-p2 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-reduce-p2==simple-mod-reduce-p2$/;" f +mod-reduce-p3 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defun mod-reduce-p3 (hi lo)$/;" f +mod-reduce-p3==simple-mod-reduce-p3 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm mod-reduce-p3==simple-mod-reduce-p3$/;" f +mod_dict Lib/inspect.py /^mod_dict = globals()$/;" v +mod_methods Modules/_scproxy.c /^static PyMethodDef mod_methods[] = {$/;" v file: +mod_mpd_ssize_t Modules/_decimal/libmpdec/typearith.h /^mod_mpd_ssize_t(mpd_ssize_t a, mpd_ssize_t m)$/;" f +mod_ty Include/internal/pycore_ast.h /^typedef struct _mod *mod_ty;$/;" t typeref:struct:_mod +mod_type Include/internal/pycore_ast_state.h /^ PyObject *mod_type;$/;" m struct:ast_state +modaux-1a Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm modaux-1a$/;" f +modaux-1b Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm modaux-1b$/;" f +modaux-1c Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm modaux-1c$/;" f +modaux-2a Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm modaux-2a$/;" f +modaux-2b Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm modaux-2b$/;" f +modaux-2c Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthm modaux-2c$/;" f +modaux-2d Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defthmd modaux-2d$/;" f +mode Lib/_pyio.py /^ def mode(self):$/;" m class:FileIO +mode Lib/_pyio.py /^ def mode(self):$/;" m class:_BufferedIOMixin +mode Lib/socket.py /^ def mode(self):$/;" m class:SocketIO +mode Lib/statistics.py /^ def mode(self):$/;" m class:NormalDist +mode Lib/statistics.py /^def mode(data):$/;" f +mode Lib/tarfile.py /^ mode = 'Permission bits.',$/;" v class:TarInfo +mode Lib/tempfile.py /^ def mode(self):$/;" m class:SpooledTemporaryFile +mode Lib/test/test_httplib.py /^ mode = 'r'$/;" v class:BasicTest.test_send_updating_file.UpdatingFile +mode Lib/test/test_tarfile.py /^ def mode(self):$/;" m class:TarTest +mode Lib/turtle.py /^ def mode(self, mode=None):$/;" m class:TurtleScreen +mode Lib/typing.py /^ def mode(self) -> str:$/;" m class:IO +mode Modules/ossaudiodev.c /^ int mode; \/* file mode (O_RDONLY, etc.) *\/$/;" m struct:__anon471 file: +mode_string Modules/_io/fileio.c /^mode_string(fileio *self)$/;" f file: +mode_t Lib/test/test_lib2to3/data/infinite_recursion.py /^mode_t = __darwin_mode_t$/;" v +mode_t Modules/_stat.c /^typedef unsigned short mode_t;$/;" t file: +modfile Lib/test/test_inspect.py /^ modfile = modfile[:-1]$/;" v +modfile Lib/test/test_inspect.py /^modfile = mod.__file__$/;" v +modfile Lib/test/test_inspect.py /^modfile = normcase(modfile)$/;" v +modified Lib/urllib/robotparser.py /^ def modified(self):$/;" m class:RobotFileParser +modify Lib/selectors.py /^ def modify(self, fileobj, events, data=None):$/;" m class:BaseSelector +modify Lib/selectors.py /^ def modify(self, fileobj, events, data=None):$/;" m class:_BaseSelectorImpl +modify Lib/selectors.py /^ def modify(self, fileobj, events, data=None):$/;" m class:_PollLikeSelector +modify Tools/clinic/clinic.py /^ def modify(self) -> str:$/;" m class:CConverter +modify_bytewise Tools/iobench/iobench.py /^def modify_bytewise(f, source):$/;" f +modify_file Lib/test/test_threading.py /^ def modify_file():$/;" f function:ThreadingExceptionTests.test_multithread_modify_file_noerror +modify_medium_chunks Tools/iobench/iobench.py /^def modify_medium_chunks(f, source):$/;" f +modify_path Lib/test/test_embed.py /^ def modify_path(path):$/;" f function:InitConfigTests.test_init_read_set +modify_seek_forward_blockwise Tools/iobench/iobench.py /^def modify_seek_forward_blockwise(f, source):$/;" f +modify_seek_forward_bytewise Tools/iobench/iobench.py /^def modify_seek_forward_bytewise(f, source):$/;" f +modify_small_chunks Tools/iobench/iobench.py /^def modify_small_chunks(f, source):$/;" f +modify_tests Tools/iobench/iobench.py /^modify_tests = [$/;" v +modname Lib/test/test_ctypes/test_values.py /^ modname = entry.name.decode("ascii")$/;" v class:PythonValuesTestCase.test_frozentable.struct_frozen +modname Lib/test/test_file_eintr.py /^ modname = '_io'$/;" v class:CTestBufferedIOSignalInterrupt +modname Lib/test/test_file_eintr.py /^ modname = '_io'$/;" v class:CTestFileIOSignalInterrupt +modname Lib/test/test_file_eintr.py /^ modname = '_io'$/;" v class:CTestTextIOSignalInterrupt +modname Lib/test/test_file_eintr.py /^ modname = '_pyio'$/;" v class:PyTestBufferedIOSignalInterrupt +modname Lib/test/test_file_eintr.py /^ modname = '_pyio'$/;" v class:PyTestFileIOSignalInterrupt +modname Lib/test/test_file_eintr.py /^ modname = '_pyio'$/;" v class:PyTestTextIOSignalInterrupt +modname Tools/build/freeze_modules.py /^ def modname(self):$/;" m class:FrozenModule +modname Tools/build/freeze_modules.py /^ def modname(self):$/;" m class:FrozenSource +modnum Modules/_decimal/libmpdec/numbertheory.h /^ int modnum;$/;" m struct:fnt_params +modpkglink Lib/pydoc.py /^ def modpkglink(self, modpkginfo):$/;" f +modstate Modules/cjkcodecs/multibytecodec.h /^ struct _cjk_mod_state *modstate;$/;" m struct:_multibyte_codec typeref:struct:_multibyte_codec::_cjk_mod_state +module Include/internal/pycore_ast.h /^ identifier module;$/;" m struct:_stmt::__anon51::__anon73 +module Include/internal/pycore_ast_state.h /^ PyObject *module;$/;" m struct:ast_state +module Lib/importlib/metadata/__init__.py /^ def module(self):$/;" m class:EntryPoint +module Lib/test/test_aifc.py /^ module = aifc$/;" v class:AifcTest +module Lib/test/test_bisect.py /^ module = c_bisect$/;" v class:TestBisectC +module Lib/test/test_bisect.py /^ module = c_bisect$/;" v class:TestDocExampleC +module Lib/test/test_bisect.py /^ module = c_bisect$/;" v class:TestErrorHandlingC +module Lib/test/test_bisect.py /^ module = c_bisect$/;" v class:TestInsortC +module Lib/test/test_bisect.py /^ module = py_bisect$/;" v class:TestBisectPython +module Lib/test/test_bisect.py /^ module = py_bisect$/;" v class:TestDocExamplePython +module Lib/test/test_bisect.py /^ module = py_bisect$/;" v class:TestErrorHandlingPython +module Lib/test/test_bisect.py /^ module = py_bisect$/;" v class:TestInsortPython +module Lib/test/test_functools.py /^ module = c_functools$/;" v class:TestLRUC +module Lib/test/test_functools.py /^ module = c_functools$/;" v class:TestPartialC +module Lib/test/test_functools.py /^ module = py_functools$/;" v class:TestLRUPy +module Lib/test/test_functools.py /^ module = py_functools$/;" v class:TestPartialPy +module Lib/test/test_heapq.py /^ module = c_heapq$/;" v class:TestErrorHandlingC +module Lib/test/test_heapq.py /^ module = c_heapq$/;" v class:TestHeapC +module Lib/test/test_heapq.py /^ module = py_heapq$/;" v class:TestErrorHandlingPython +module Lib/test/test_heapq.py /^ module = py_heapq$/;" v class:TestHeapPython +module Lib/test/test_importlib/source/test_file_loader.py /^ module = loader.load_module() # Should not raise an exception.$/;" v class:SimpleTest.test_load_module_API.Tester +module Lib/test/test_importlib/test_util.py /^ module = self.util.module_from_spec(spec)$/;" v class:ModuleFromSpecTests.test_no_create_module.Loader +module Lib/test/test_operator.py /^ module = c_operator$/;" v class:CCOperatorPickleTestCase +module Lib/test/test_operator.py /^ module = c_operator$/;" v class:COperatorTestCase +module Lib/test/test_operator.py /^ module = c_operator$/;" v class:CPyOperatorPickleTestCase +module Lib/test/test_operator.py /^ module = py_operator$/;" v class:PyCOperatorPickleTestCase +module Lib/test/test_operator.py /^ module = py_operator$/;" v class:PyOperatorTestCase +module Lib/test/test_operator.py /^ module = py_operator$/;" v class:PyPyOperatorPickleTestCase +module Lib/test/test_ordered_dict.py /^ module = builtins$/;" v class:CPythonBuiltinDictTests +module Lib/test/test_ordered_dict.py /^ module = c_coll$/;" v class:CPythonOrderedDictSubclassTests +module Lib/test/test_ordered_dict.py /^ module = c_coll$/;" v class:CPythonOrderedDictTests +module Lib/test/test_ordered_dict.py /^ module = c_coll$/;" v class:CPythonOrderedDictWithSlotsCopyingTests +module Lib/test/test_ordered_dict.py /^ module = py_coll$/;" v class:PurePythonOrderedDictSubclassTests +module Lib/test/test_ordered_dict.py /^ module = py_coll$/;" v class:PurePythonOrderedDictTests +module Lib/test/test_ordered_dict.py /^ module = py_coll$/;" v class:PurePythonOrderedDictWithSlotsCopyingTests +module Lib/test/test_statistics.py /^ module = c_statistics$/;" v class:TestNormalDistC +module Lib/test/test_statistics.py /^ module = py_statistics$/;" v class:TestNormalDistPython +module Lib/test/test_statistics.py /^ module = statistics$/;" v class:GlobalsTest +module Lib/test/test_sunau.py /^ module = sunau$/;" v class:SunauTest +module Lib/test/test_unittest/test_discovery.py /^ module = None$/;" v class:TestableTestProgram +module Lib/test/test_unittest/test_program.py /^ module = '__main__'$/;" v class:InitialisableProgram +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:CCatchWarningTests +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:CEnvironmentVariableTests +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:CFilterTests +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:CPublicAPITests +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:CWCmdLineTests +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:CWarnTests +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:CWarningsDisplayTests +module Lib/test/test_warnings/__init__.py /^ module = c_warnings$/;" v class:_WarningsTests +module Lib/test/test_warnings/__init__.py /^ module = original_warnings$/;" v class:_DeprecatedTest +module Lib/test/test_warnings/__init__.py /^ module = py_warnings$/;" v class:PyCatchWarningTests +module Lib/test/test_warnings/__init__.py /^ module = py_warnings$/;" v class:PyEnvironmentVariableTests +module Lib/test/test_warnings/__init__.py /^ module = py_warnings$/;" v class:PyFilterTests +module Lib/test/test_warnings/__init__.py /^ module = py_warnings$/;" v class:PyPublicAPITests +module Lib/test/test_warnings/__init__.py /^ module = py_warnings$/;" v class:PyWCmdLineTests +module Lib/test/test_warnings/__init__.py /^ module = py_warnings$/;" v class:PyWarnTests +module Lib/test/test_warnings/__init__.py /^ module = py_warnings$/;" v class:PyWarningsDisplayTests +module Lib/test/test_wave.py /^ module = wave$/;" v class:WaveTest +module Lib/test/test_xxlimited.py /^ module = xxlimited$/;" v class:TestXXLimited +module Lib/test/test_xxlimited.py /^ module = xxlimited_35$/;" v class:TestXXLimited35 +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CCallingConventionTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CTZDataTests +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CTZStrTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CTestModule +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CTzPathTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CWeirdZoneTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CZoneInfoCacheTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CZoneInfoPickleTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CZoneInfoSubclassTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CZoneInfoTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = c_zoneinfo$/;" v class:CZoneInfoV1Test +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:CallingConventionTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:TZStrTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:TestModule +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:TzPathTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:WeirdZoneTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:ZoneInfoCacheTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:ZoneInfoPickleTest +module Lib/test/test_zoneinfo/test_zoneinfo.py /^ module = py_zoneinfo$/;" v class:ZoneInfoTest +module Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ module = c_zoneinfo$/;" v class:CZoneInfoPickleTest +module Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ module = c_zoneinfo$/;" v class:CZoneInfoTest +module Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ module = py_zoneinfo$/;" v class:ZoneInfoCacheTest +module Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ module = py_zoneinfo$/;" v class:ZoneInfoPickleTest +module Lib/test/test_zoneinfo/test_zoneinfo_property.py /^ module = py_zoneinfo$/;" v class:ZoneInfoTest +module Lib/unittest/main.py /^ module=None$/;" v class:TestProgram +module Modules/_sqlite/connection.h /^ PyObject *module;$/;" m struct:_callback_context +module Modules/_testcapimodule.c /^ char *module;$/;" m struct:__anon588 file: +module Modules/_testsinglephase.c /^ module_state module;$/;" m struct:__anon388 file: +module Modules/_xxinterpchannelsmodule.c /^ PyObject *module;$/;" m struct:channel_id_converter_data file: +module Objects/typevarobject.c /^ PyObject *module;$/;" m struct:__anon716 file: +module Tools/clinic/clinic.py /^ module = globals()$/;" v +module2 Lib/test/test_operator.py /^ module2 = c_operator$/;" v class:CCOperatorPickleTestCase +module2 Lib/test/test_operator.py /^ module2 = c_operator$/;" v class:PyCOperatorPickleTestCase +module2 Lib/test/test_operator.py /^ module2 = py_operator$/;" v class:CPyOperatorPickleTestCase +module2 Lib/test/test_operator.py /^ module2 = py_operator$/;" v class:PyPyOperatorPickleTestCase +moduleMethods Modules/_lsprof.c /^static PyMethodDef moduleMethods[] = {$/;" v file: +moduleMethods Modules/_tkinter.c /^static PyMethodDef moduleMethods[] =$/;" v file: +moduleSetup Lib/test/test_unittest/test_setups.py /^ moduleSetup = 0$/;" v class:TestSetups.test_error_in_setup_module.Module +moduleSetup Lib/test/test_unittest/test_setups.py /^ moduleSetup = 0$/;" v class:TestSetups.test_setup_module.Module +moduleTornDown Lib/test/test_unittest/test_setups.py /^ moduleTornDown = 0$/;" v class:TestSetups.test_error_in_setup_module.Module +moduleTornDown Lib/test/test_unittest/test_setups.py /^ moduleTornDown = 0$/;" v class:TestSetups.test_error_in_teardown_module.Module +moduleTornDown Lib/test/test_unittest/test_setups.py /^ moduleTornDown = 0$/;" v class:TestSetups.test_teardown_module.Module +module___init__ Objects/clinic/moduleobject.c.h /^module___init__(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +module___init___impl Objects/moduleobject.c /^module___init___impl(PyModuleObject *self, PyObject *name, PyObject *doc)$/;" f file: +module_add_int_constant Modules/_lzmamodule.c /^module_add_int_constant(PyObject *m, const char *name, long long value)$/;" f file: +module_cleanup1 Lib/test/test_unittest/test_runner.py /^ def module_cleanup1(*args, **kwargs):$/;" f function:TestModuleCleanUp.test_add_and_do_ModuleCleanup +module_cleanup2 Lib/test/test_unittest/test_runner.py /^ def module_cleanup2(*args, **kwargs):$/;" f function:TestModuleCleanUp.test_add_and_do_ModuleCleanup +module_cleanup_bad Lib/test/test_unittest/test_runner.py /^ def module_cleanup_bad(*args, **kwargs):$/;" f function:TestModuleCleanUp.test_doModuleCleanup_with_errors_in_addModuleCleanup +module_cleanup_good Lib/test/test_unittest/test_runner.py /^ def module_cleanup_good(*args, **kwargs):$/;" f function:TestModuleCleanUp.test_doModuleCleanup_with_errors_in_addModuleCleanup +module_clear Modules/_asynciomodule.c /^module_clear(PyObject *mod)$/;" f file: +module_clear Modules/_sqlite/module.c /^module_clear(PyObject *module)$/;" f file: +module_clear Modules/_testinternalcapi.c /^module_clear(PyObject *module)$/;" f file: +module_clear Modules/_xxinterpchannelsmodule.c /^module_clear(PyObject *mod)$/;" f file: +module_clear Modules/_xxsubinterpretersmodule.c /^module_clear(PyObject *mod)$/;" f file: +module_clear Modules/_zoneinfo.c /^module_clear(PyObject *mod)$/;" f file: +module_clear Objects/moduleobject.c /^module_clear(PyModuleObject *m)$/;" f file: +module_code Lib/test/test_importlib/import_/test_fromlist.py /^ def module_code():$/;" f function:HandlingFromlist.test_module_from_package_triggers_ModuleNotFoundError +module_connect Modules/_sqlite/module.c /^module_connect(PyObject *module, PyObject *const *args, Py_ssize_t nargsf,$/;" f file: +module_count Modules/_xxinterpchannelsmodule.c /^ int module_count;$/;" m struct:globals file: +module_dealloc Objects/moduleobject.c /^module_dealloc(PyModuleObject *m)$/;" f file: +module_def Modules/_tracemalloc.c /^static struct PyModuleDef module_def = {$/;" v typeref:struct:PyModuleDef file: +module_def Modules/faulthandler.c /^static struct PyModuleDef module_def = {$/;" v typeref:struct:PyModuleDef file: +module_dict_for_exec Python/import.c /^module_dict_for_exec(PyThreadState *tstate, PyObject *name)$/;" f file: +module_dir Objects/moduleobject.c /^module_dir(PyObject *self, PyObject *args)$/;" f file: +module_exec Modules/_asynciomodule.c /^module_exec(PyObject *mod)$/;" f file: +module_exec Modules/_elementtree.c /^module_exec(PyObject *m)$/;" f file: +module_exec Modules/_sqlite/module.c /^module_exec(PyObject *module)$/;" f file: +module_exec Modules/_testinternalcapi.c /^module_exec(PyObject *module)$/;" f file: +module_exec Modules/_xxinterpchannelsmodule.c /^module_exec(PyObject *mod)$/;" f file: +module_exec Modules/_xxsubinterpretersmodule.c /^module_exec(PyObject *mod)$/;" f file: +module_files Tools/ssl/multissltests.py /^ module_files = ($/;" v class:AbstractBuilder +module_free Modules/_asynciomodule.c /^module_free(void *mod)$/;" f file: +module_free Modules/_sqlite/module.c /^module_free(void *module)$/;" f file: +module_free Modules/_testinternalcapi.c /^module_free(void *module)$/;" f file: +module_free Modules/_xxinterpchannelsmodule.c /^module_free(void *mod)$/;" f file: +module_free Modules/_xxsubinterpretersmodule.c /^module_free(void *mod)$/;" f file: +module_free Modules/_zoneinfo.c /^module_free(void *mod)$/;" f file: +module_free_freelists Modules/_asynciomodule.c /^module_free_freelists(asyncio_state *state)$/;" f file: +module_from_spec Lib/importlib/_bootstrap.py /^def module_from_spec(spec):$/;" f +module_functions Modules/_struct.c /^static struct PyMethodDef module_functions[] = {$/;" v typeref:struct:PyMethodDef file: +module_functions Modules/_testinternalcapi.c /^static PyMethodDef module_functions[] = {$/;" v file: +module_functions Modules/_xxinterpchannelsmodule.c /^static PyMethodDef module_functions[] = {$/;" v file: +module_functions Modules/_xxsubinterpretersmodule.c /^static PyMethodDef module_functions[] = {$/;" v file: +module_get_annotations Objects/moduleobject.c /^module_get_annotations(PyModuleObject *m, void *Py_UNUSED(ignored))$/;" f file: +module_getsets Objects/moduleobject.c /^static PyGetSetDef module_getsets[] = {$/;" v file: +module_globals Lib/test/test_warnings/__init__.py /^ module_globals={'__loader__': get_bad_loader([42]),$/;" v class:_WarningsTests.test_issue31285.get_bad_loader.BadLoader.get_source.BadSource +module_init Modules/_asynciomodule.c /^module_init(asyncio_state *state)$/;" f file: +module_init_dict Objects/moduleobject.c /^module_init_dict(PyModuleObject *mod, PyObject *md_dict,$/;" f file: +module_injection Lib/test/test_importlib/import_/test_packages.py /^ def module_injection():$/;" f function:ParentModuleTests.test_module_not_package_but_side_effects +module_keys_version Include/internal/pycore_code.h /^ uint16_t module_keys_version;$/;" m struct:__anon18 +module_libs Tools/ssl/multissltests.py /^ module_libs = ("_ssl", "_hashlib")$/;" v class:AbstractBuilder +module_members Objects/moduleobject.c /^static PyMemberDef module_members[] = {$/;" v file: +module_methods Modules/_ctypes/_ctypes_test.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_datetimemodule.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_io/_iomodule.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_multiprocessing/multiprocessing.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_multiprocessing/posixshmem.c /^static PyMethodDef module_methods[ ] = {$/;" v file: +module_methods Modules/_posixsubprocess.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_sqlite/module.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_tracemalloc.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_xxtestfuzz/_xxtestfuzz.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/_zoneinfo.c /^static PyMethodDef module_methods[] = {{NULL, NULL}};$/;" v file: +module_methods Modules/faulthandler.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Modules/itertoolsmodule.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_methods Objects/moduleobject.c /^static PyMethodDef module_methods[] = {$/;" v file: +module_name Lib/test/test_import/__init__.py /^ module_name = "unlikely_module_name"$/;" v class:PycRewritingTests +module_name Lib/test/test_importlib/source/test_source_encoding.py /^ module_name = '_temp'$/;" v class:EncodingTest +module_name Lib/test/test_importlib/test_abc.py /^ module_name = 'blah'$/;" v class:InspectLoaderLoadModuleTests +module_name Lib/test/test_importlib/test_lazy.py /^ module_name = 'lazy_loader_test'$/;" v class:TestingImporter +module_path_to_dotted_name Lib/test/test_zipimport.py /^def module_path_to_dotted_name(path):$/;" f +module_repr Objects/moduleobject.c /^module_repr(PyModuleObject *m)$/;" f file: +module_search_path Python/pathconfig.c /^ wchar_t *module_search_path;$/;" m struct:_PyPathConfig file: +module_search_paths Include/cpython/initconfig.h /^ PyWideStringList module_search_paths;$/;" m struct:PyConfig +module_search_paths Lib/test/test_embed.py /^ def module_search_paths(self, prefix=None, exec_prefix=None):$/;" m class:InitConfigTests +module_search_paths Lib/test/test_getpath.py /^ module_search_paths=None,$/;" v +module_search_paths_set Include/cpython/initconfig.h /^ int module_search_paths_set;$/;" m struct:PyConfig +module_search_paths_set Lib/test/test_getpath.py /^ module_search_paths_set=0,$/;" v +module_set_annotations Objects/moduleobject.c /^module_set_annotations(PyModuleObject *m, PyObject *value, void *Py_UNUSED(ignored))$/;" f file: +module_slots Modules/_asynciomodule.c /^static struct PyModuleDef_Slot module_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +module_slots Modules/_multiprocessing/posixshmem.c /^static PyModuleDef_Slot module_slots[] = {$/;" v file: +module_slots Modules/_opcode.c /^static PyModuleDef_Slot module_slots[] = {$/;" v file: +module_slots Modules/_sqlite/module.c /^static struct PyModuleDef_Slot module_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +module_slots Modules/_testinternalcapi.c /^static struct PyModuleDef_Slot module_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +module_slots Modules/_xxinterpchannelsmodule.c /^static struct PyModuleDef_Slot module_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +module_slots Modules/_xxsubinterpretersmodule.c /^static struct PyModuleDef_Slot module_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +module_slots Objects/unicodeobject.c /^static PyModuleDef_Slot module_slots[] = {$/;" v file: +module_state Modules/_io/stringio.c /^ _PyIO_State *module_state;$/;" m struct:__anon433 file: +module_state Modules/_testinternalcapi.c /^} module_state;$/;" t typeref:struct:__anon564 file: +module_state Modules/_testsinglephase.c /^} module_state;$/;" t typeref:struct:__anon387 file: +module_state Modules/_xxinterpchannelsmodule.c /^} module_state;$/;" t typeref:struct:__anon366 file: +module_state Modules/_xxsubinterpretersmodule.c /^} module_state;$/;" t typeref:struct:__anon652 file: +module_state Modules/cjkcodecs/multibytecodec.c /^} module_state;$/;" t typeref:struct:__anon321 file: +module_traverse Modules/_asynciomodule.c /^module_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +module_traverse Modules/_sqlite/module.c /^module_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +module_traverse Modules/_testinternalcapi.c /^module_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +module_traverse Modules/_xxinterpchannelsmodule.c /^module_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +module_traverse Modules/_xxsubinterpretersmodule.c /^module_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +module_traverse Modules/_zoneinfo.c /^module_traverse(PyObject *mod, visitproc visit, void *arg)$/;" f file: +module_traverse Objects/moduleobject.c /^module_traverse(PyModuleObject *m, visitproc visit, void *arg)$/;" f file: +moduledef Modules/_xxinterpchannelsmodule.c /^static struct PyModuleDef moduledef = {$/;" v typeref:struct:PyModuleDef file: +moduledef Modules/_xxinterpchannelsmodule.c /^static struct PyModuleDef moduledef;$/;" v typeref:struct:PyModuleDef file: +moduledef Modules/_xxsubinterpretersmodule.c /^static struct PyModuleDef moduledef = {$/;" v typeref:struct:PyModuleDef file: +modulelink Lib/pydoc.py /^ def modulelink(self, object):$/;" f +modulename Lib/test/test_fileio.py /^ modulename = '_io'$/;" v class:CAutoFileTests +modulename Lib/test/test_fileio.py /^ modulename = '_io'$/;" v class:COtherFileTests +modulename Lib/test/test_fileio.py /^ modulename = '_pyio'$/;" v class:PyAutoFileTests +modulename Lib/test/test_fileio.py /^ modulename = '_pyio'$/;" v class:PyOtherFileTests +modules Include/internal/pycore_import.h /^ PyObject *modules;$/;" m struct:_import_state +modules Lib/test/test_lib2to3/test_fixers.py /^ modules = {"sys": ("maxint", "maxsize"),$/;" v class:Test_renames +modules_by_index Include/internal/pycore_import.h /^ PyObject *modules_by_index;$/;" m struct:_import_state +modules_cleanup Lib/test/support/import_helper.py /^def modules_cleanup(oldmodules):$/;" f +modules_setup Lib/test/support/import_helper.py /^def modules_setup():$/;" f +modulesbyfile Lib/inspect.py /^modulesbyfile = {}$/;" v +modulus Modules/_decimal/libmpdec/numbertheory.h /^ mpd_uint_t modulus;$/;" m struct:fnt_params +monitor_handled Python/ceval.c /^monitor_handled(PyThreadState *tstate,$/;" f file: +monitor_raise Python/ceval.c /^monitor_raise(PyThreadState *tstate, _PyInterpreterFrame *frame,$/;" f file: +monitor_reraise Python/ceval.c /^monitor_reraise(PyThreadState *tstate, _PyInterpreterFrame *frame,$/;" f file: +monitor_stop_iteration Python/ceval.c /^monitor_stop_iteration(PyThreadState *tstate, _PyInterpreterFrame *frame,$/;" f file: +monitor_throw Python/ceval.c /^monitor_throw(PyThreadState *tstate,$/;" f file: +monitor_unwind Python/ceval.c /^monitor_unwind(PyThreadState *tstate,$/;" f file: +monitoring__all_events Python/clinic/instrumentation.c.h /^monitoring__all_events(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +monitoring__all_events_impl Python/instrumentation.c /^monitoring__all_events_impl(PyObject *module)$/;" f file: +monitoring_callables Include/internal/pycore_interp.h /^ PyObject *monitoring_callables[PY_MONITORING_TOOL_IDS][_PY_MONITORING_EVENTS];$/;" m struct:_is +monitoring_free_tool_id Python/clinic/instrumentation.c.h /^monitoring_free_tool_id(PyObject *module, PyObject *arg)$/;" f +monitoring_free_tool_id_impl Python/instrumentation.c /^monitoring_free_tool_id_impl(PyObject *module, int tool_id)$/;" f file: +monitoring_get_events Python/clinic/instrumentation.c.h /^monitoring_get_events(PyObject *module, PyObject *arg)$/;" f +monitoring_get_events_impl Python/instrumentation.c /^monitoring_get_events_impl(PyObject *module, int tool_id)$/;" f file: +monitoring_get_local_events Python/clinic/instrumentation.c.h /^monitoring_get_local_events(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +monitoring_get_local_events_impl Python/instrumentation.c /^monitoring_get_local_events_impl(PyObject *module, int tool_id,$/;" f file: +monitoring_get_tool Python/clinic/instrumentation.c.h /^monitoring_get_tool(PyObject *module, PyObject *arg)$/;" f +monitoring_get_tool_impl Python/instrumentation.c /^monitoring_get_tool_impl(PyObject *module, int tool_id)$/;" f file: +monitoring_module Python/instrumentation.c /^static struct PyModuleDef monitoring_module = {$/;" v typeref:struct:PyModuleDef file: +monitoring_register_callback Python/clinic/instrumentation.c.h /^monitoring_register_callback(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +monitoring_register_callback_impl Python/instrumentation.c /^monitoring_register_callback_impl(PyObject *module, int tool_id, int event,$/;" f file: +monitoring_restart_events Python/clinic/instrumentation.c.h /^monitoring_restart_events(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +monitoring_restart_events_impl Python/instrumentation.c /^monitoring_restart_events_impl(PyObject *module)$/;" f file: +monitoring_set_events Python/clinic/instrumentation.c.h /^monitoring_set_events(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +monitoring_set_events_impl Python/instrumentation.c /^monitoring_set_events_impl(PyObject *module, int tool_id, int event_set)$/;" f file: +monitoring_set_local_events Python/clinic/instrumentation.c.h /^monitoring_set_local_events(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +monitoring_set_local_events_impl Python/instrumentation.c /^monitoring_set_local_events_impl(PyObject *module, int tool_id,$/;" f file: +monitoring_tool_names Include/internal/pycore_interp.h /^ PyObject *monitoring_tool_names[PY_MONITORING_TOOL_IDS];$/;" m struct:_is +monitoring_use_tool_id Python/clinic/instrumentation.c.h /^monitoring_use_tool_id(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +monitoring_use_tool_id_impl Python/instrumentation.c /^monitoring_use_tool_id_impl(PyObject *module, int tool_id, PyObject *name)$/;" f file: +monitoring_version Include/internal/pycore_interp.h /^ uint64_t monitoring_version;$/;" m struct:_is +monitors Include/internal/pycore_interp.h /^ _Py_GlobalMonitors monitors;$/;" m struct:_is +monitors_and Python/instrumentation.c /^monitors_and(_Py_LocalMonitors a, _Py_LocalMonitors b)$/;" f file: +monitors_are_empty Python/instrumentation.c /^monitors_are_empty(_Py_LocalMonitors m)$/;" f file: +monitors_equals Python/instrumentation.c /^monitors_equals(_Py_LocalMonitors a, _Py_LocalMonitors b)$/;" f file: +monitors_sub Python/instrumentation.c /^monitors_sub(_Py_LocalMonitors a, _Py_LocalMonitors b)$/;" f file: +monkey Lib/test/test_asyncio/test_proactor_events.py /^ def monkey():$/;" f function:ProactorSocketTransportTests.test_pause_resume_reading.recv_into +monkey Lib/test/test_inspect.py /^ def monkey(filename, module_globals=None):$/;" f function:TestRetrievingSourceCode.test_proceed_with_fake_filename +monotonic Include/cpython/pytime.h /^ int monotonic;$/;" m struct:__anon176 +month Lib/_pydatetime.py /^ def month(self):$/;" m class:date +month Lib/calendar.py /^month = c.formatmonth$/;" v +month Modules/_zoneinfo.c /^ uint8_t month;$/;" m struct:__anon639 file: +month_abbr Lib/calendar.py /^month_abbr = _localized_month('%b')$/;" v +month_name Lib/calendar.py /^month_name = _localized_month('%B')$/;" v +monthcalendar Lib/calendar.py /^monthcalendar = c.monthdayscalendar$/;" v +monthdatescalendar Lib/calendar.py /^ def monthdatescalendar(self, year, month):$/;" m class:Calendar +monthdays2calendar Lib/calendar.py /^ def monthdays2calendar(self, year, month):$/;" m class:Calendar +monthdayscalendar Lib/calendar.py /^ def monthdayscalendar(self, year, month):$/;" m class:Calendar +monthname Lib/http/server.py /^ monthname = [None,$/;" v class:BaseHTTPRequestHandler +monthrange Lib/calendar.py /^def monthrange(year, month):$/;" f +more Lib/test/support/asynchat.py /^ def more(self):$/;" m class:simple_producer +more_alts Tools/peg_generator/pegen/grammar_parser.py /^ def more_alts(self) -> Optional[Rhs]:$/;" m class:GeneratedParser +more_core Modules/_ctypes/malloc_closure.c /^static void more_core(void)$/;" f file: +more_data Modules/_ctypes/_ctypes_test.c /^ float more_data[2];$/;" m struct:__anon503 file: +more_generic Lib/test/test_type_aliases.py /^ def more_generic[T, *Ts, **P]():$/;" f function:TypeParamsAliasValueTest.test_alias_value_04 +morning Lib/test/test_enum.py /^ morning = 1$/;" v class:TestSpecial.test_getattr_getitem.Period +most_common Lib/collections/__init__.py /^ def most_common(self, n=None):$/;" m class:Counter +most_significant_bit Python/instrumentation.c /^static inline int most_significant_bit(uint8_t bits) {$/;" f file: +move Lib/shutil.py /^def move(src, dst, copy_function=copy2):$/;" f +move Lib/tkinter/__init__.py /^ def move(self, *args):$/;" m class:Canvas +move Lib/tkinter/dnd.py /^ def move(self, event):$/;" m class:Icon +move Lib/tkinter/ttk.py /^ def move(self, item, parent, index):$/;" m class:Treeview +move Lib/turtledemo/nim.py /^ def move(self, row, col):$/;" m class:NimModel +moveToFreeBindingList Modules/expat/xmlparse.c /^moveToFreeBindingList(XML_Parser parser, BINDING *bindings) {$/;" f file: +move_at_edge Lib/idlelib/editor.py /^ def move_at_edge(event):$/;" f function:EditorWindow.move_at_edge_if_selection +move_at_edge_if_selection Lib/idlelib/editor.py /^ def move_at_edge_if_selection(self, edge_index):$/;" m class:EditorWindow +move_column Lib/tkinter/tix.py /^ def move_column(self, from_, to, offset):$/;" m class:Grid +move_in_stack Tools/gdb/libpython.py /^def move_in_stack(move_up):$/;" f +move_legacy_finalizer_reachable Modules/gcmodule.c /^move_legacy_finalizer_reachable(PyGC_Head *finalizers)$/;" f file: +move_legacy_finalizers Modules/gcmodule.c /^move_legacy_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)$/;" f file: +move_row Lib/tkinter/tix.py /^ def move_row(self, from_, to, offset):$/;" m class:Grid +move_strong_cache_node_to_front Modules/_zoneinfo.c /^move_strong_cache_node_to_front(zoneinfo_state *state, StrongCacheNode **root,$/;" f file: +move_to_end Lib/collections/__init__.py /^ def move_to_end(self, key, last=True):$/;" m class:OrderedDict +move_unreachable Modules/gcmodule.c /^move_unreachable(PyGC_Head *young, PyGC_Head *unreachable)$/;" f file: +moveto Lib/tkinter/__init__.py /^ def moveto(self, tagOrId, x='', y=''):$/;" m class:Canvas +mp Include/cpython/dictobject.h /^PyAPI_FUNC(int) _PyDict_HasOnlyStringKeys(PyObject *mp);$/;" v +mp Include/cpython/dictobject.h /^PyAPI_FUNC(void) _PyDict_MaybeUntrack(PyObject *mp);$/;" v +mp Include/dictobject.h /^PyAPI_FUNC(PyObject *) PyDict_Copy(PyObject *mp);$/;" v +mp Include/dictobject.h /^PyAPI_FUNC(PyObject *) PyDict_Items(PyObject *mp);$/;" v +mp Include/dictobject.h /^PyAPI_FUNC(PyObject *) PyDict_Keys(PyObject *mp);$/;" v +mp Include/dictobject.h /^PyAPI_FUNC(PyObject *) PyDict_Values(PyObject *mp);$/;" v +mp Include/dictobject.h /^PyAPI_FUNC(Py_ssize_t) PyDict_Size(PyObject *mp);$/;" v +mp Include/dictobject.h /^PyAPI_FUNC(void) PyDict_Clear(PyObject *mp);$/;" v +mp_ass_subscript Include/cpython/object.h /^ objobjargproc mp_ass_subscript;$/;" m struct:__anon211 +mp_length Include/cpython/object.h /^ lenfunc mp_length;$/;" m struct:__anon211 +mp_result_error Lib/test/libregrtest/runtest_mp.py /^ def mp_result_error($/;" m class:TestWorkerProcess +mp_subscript Include/cpython/object.h /^ binaryfunc mp_subscript;$/;" m struct:__anon211 +mpd_abs Modules/_decimal/libmpdec/mpsignal.c /^mpd_abs(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_abs_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_abs_uint(const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_add Modules/_decimal/libmpdec/mpsignal.c /^mpd_add(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_add_i32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_add_i32(mpd_t *result, const mpd_t *a, int32_t b, mpd_context_t *ctx)$/;" f +mpd_add_i64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_add_i64(mpd_t *result, const mpd_t *a, int64_t b, mpd_context_t *ctx)$/;" f +mpd_add_ssize Modules/_decimal/libmpdec/mpsignal.c /^mpd_add_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b, mpd_context_t *ctx)$/;" f +mpd_add_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_add_u32(mpd_t *result, const mpd_t *a, uint32_t b, mpd_context_t *ctx)$/;" f +mpd_add_u64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_add_u64(mpd_t *result, const mpd_t *a, uint64_t b, mpd_context_t *ctx)$/;" f +mpd_add_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_add_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b, mpd_context_t *ctx)$/;" f +mpd_addstatus_raise Modules/_decimal/libmpdec/context.c /^mpd_addstatus_raise(mpd_context_t *ctx, uint32_t flags)$/;" f +mpd_adjexp Modules/_decimal/libmpdec/mpdecimal.c /^mpd_adjexp(const mpd_t *dec)$/;" f +mpd_alloc Modules/_decimal/libmpdec/mpalloc.c /^mpd_alloc(mpd_size_t nmemb, mpd_size_t size)$/;" f +mpd_and Modules/_decimal/libmpdec/mpsignal.c /^mpd_and(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_arith_sign Modules/_decimal/libmpdec/mpdecimal.c /^mpd_arith_sign(const mpd_t *dec)$/;" f +mpd_as_uint128_triple Modules/_decimal/libmpdec/mpdecimal.c /^mpd_as_uint128_triple(const mpd_t *a)$/;" f +mpd_basiccontext Modules/_decimal/libmpdec/context.c /^mpd_basiccontext(mpd_context_t *ctx)$/;" f +mpd_bits Modules/_decimal/libmpdec/constants.c /^ const mpd_size_t mpd_bits[32] = {$/;" v +mpd_bits Modules/_decimal/libmpdec/constants.c /^ const mpd_size_t mpd_bits[64] = {$/;" v +mpd_bsf Modules/_decimal/libmpdec/bits.h /^mpd_bsf(mpd_size_t a)$/;" f +mpd_bsf Modules/_decimal/libmpdec/bits.h /^mpd_bsf(mpd_size_t n)$/;" f +mpd_bsr Modules/_decimal/libmpdec/bits.h /^mpd_bsr(mpd_size_t a)$/;" f +mpd_bsr Modules/_decimal/libmpdec/bits.h /^mpd_bsr(mpd_size_t n)$/;" f +mpd_calloc Modules/_decimal/libmpdec/mpalloc.c /^mpd_calloc(mpd_size_t nmemb, mpd_size_t size)$/;" f +mpd_callocfunc Modules/_decimal/libmpdec/mpalloc.c /^void *(* mpd_callocfunc)(size_t nmemb, size_t size) = calloc;$/;" v +mpd_callocfunc_em Modules/_decimal/libmpdec/mpalloc.c /^mpd_callocfunc_em(size_t nmemb, size_t size)$/;" f +mpd_canonical Modules/_decimal/libmpdec/mpsignal.c /^mpd_canonical(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_ceil Modules/_decimal/libmpdec/mpsignal.c /^mpd_ceil(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_check_nan Modules/_decimal/libmpdec/mpsignal.c /^mpd_check_nan(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_check_nans Modules/_decimal/libmpdec/mpsignal.c /^mpd_check_nans(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_check_underflow Modules/_decimal/libmpdec/mpdecimal.c /^mpd_check_underflow(mpd_t *dec, const mpd_context_t *ctx, uint32_t *status)$/;" f file: +mpd_clamp_string Modules/_decimal/libmpdec/constants.c /^const char * const mpd_clamp_string[MPD_CLAMP_GUARD] = {$/;" v +mpd_class Modules/_decimal/libmpdec/mpdecimal.c /^mpd_class(const mpd_t *a, const mpd_context_t *ctx)$/;" f +mpd_clear_flags Modules/_decimal/libmpdec/mpdecimal.c /^mpd_clear_flags(mpd_t *result)$/;" f +mpd_cmp Modules/_decimal/libmpdec/mpsignal.c /^mpd_cmp(const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_cmp_total Modules/_decimal/libmpdec/mpdecimal.c /^mpd_cmp_total(const mpd_t *a, const mpd_t *b)$/;" f +mpd_cmp_total_mag Modules/_decimal/libmpdec/mpdecimal.c /^mpd_cmp_total_mag(const mpd_t *a, const mpd_t *b)$/;" f +mpd_coeff_isallnine Modules/_decimal/libmpdec/mpdecimal.c /^mpd_coeff_isallnine(const mpd_t *dec)$/;" f file: +mpd_coeff_ispow10 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_coeff_ispow10(const mpd_t *dec)$/;" f file: +mpd_compare Modules/_decimal/libmpdec/mpsignal.c /^mpd_compare(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_compare_signal Modules/_decimal/libmpdec/mpsignal.c /^mpd_compare_signal(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_compare_total Modules/_decimal/libmpdec/mpdecimal.c /^mpd_compare_total(mpd_t *result, const mpd_t *a, const mpd_t *b)$/;" f +mpd_compare_total_mag Modules/_decimal/libmpdec/mpdecimal.c /^mpd_compare_total_mag(mpd_t *result, const mpd_t *a, const mpd_t *b)$/;" f +mpd_context_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef struct mpd_context_t {$/;" s +mpd_context_t Modules/_decimal/libmpdec/mpdecimal.h /^} mpd_context_t;$/;" t typeref:struct:mpd_context_t +mpd_copy Modules/_decimal/libmpdec/mpsignal.c /^mpd_copy(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_copy_abs Modules/_decimal/libmpdec/mpsignal.c /^mpd_copy_abs(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_copy_flags Modules/_decimal/libmpdec/mpdecimal.c /^mpd_copy_flags(mpd_t *result, const mpd_t *a)$/;" f +mpd_copy_negate Modules/_decimal/libmpdec/mpsignal.c /^mpd_copy_negate(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_copy_sign Modules/_decimal/libmpdec/mpsignal.c /^mpd_copy_sign(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_defaultcontext Modules/_decimal/libmpdec/context.c /^mpd_defaultcontext(mpd_context_t *ctx)$/;" f +mpd_del Modules/_decimal/libmpdec/mpdecimal.c /^mpd_del(mpd_t *dec)$/;" f +mpd_dflt_traphandler Modules/_decimal/libmpdec/context.c /^mpd_dflt_traphandler(mpd_context_t *ctx)$/;" f +mpd_digits_to_size Modules/_decimal/libmpdec/mpdecimal.c /^mpd_digits_to_size(mpd_ssize_t digits)$/;" f +mpd_div Modules/_decimal/libmpdec/mpsignal.c /^mpd_div(mpd_t *q, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_div_i32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_div_i32(mpd_t *result, const mpd_t *a, int32_t b, mpd_context_t *ctx)$/;" f +mpd_div_i64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_div_i64(mpd_t *result, const mpd_t *a, int64_t b, mpd_context_t *ctx)$/;" f +mpd_div_ssize Modules/_decimal/libmpdec/mpsignal.c /^mpd_div_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b, mpd_context_t *ctx)$/;" f +mpd_div_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_div_u32(mpd_t *result, const mpd_t *a, uint32_t b, mpd_context_t *ctx)$/;" f +mpd_div_u64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_div_u64(mpd_t *result, const mpd_t *a, uint64_t b, mpd_context_t *ctx)$/;" f +mpd_div_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_div_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b, mpd_context_t *ctx)$/;" f +mpd_divint Modules/_decimal/libmpdec/mpsignal.c /^mpd_divint(mpd_t *q, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_divmod Modules/_decimal/libmpdec/mpsignal.c /^mpd_divmod(mpd_t *q, mpd_t *r, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_err_fatal Modules/_decimal/libmpdec/mpdecimal.h 798;" d +mpd_err_warn Modules/_decimal/libmpdec/mpdecimal.h 803;" d +mpd_etiny Modules/_decimal/libmpdec/mpdecimal.c /^mpd_etiny(const mpd_context_t *ctx)$/;" f +mpd_etop Modules/_decimal/libmpdec/mpdecimal.c /^mpd_etop(const mpd_context_t *ctx)$/;" f +mpd_exp Modules/_decimal/libmpdec/mpsignal.c /^mpd_exp(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_exp_digits Modules/_decimal/libmpdec/mpdecimal.c /^mpd_exp_digits(mpd_ssize_t exp)$/;" f +mpd_export_u16 Modules/_decimal/libmpdec/mpsignal.c /^mpd_export_u16(uint16_t **rdata, size_t rlen, uint32_t base, const mpd_t *src,$/;" f +mpd_export_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_export_u32(uint32_t **rdata, size_t rlen, uint32_t base, const mpd_t *src,$/;" f +mpd_finalize Modules/_decimal/libmpdec/mpsignal.c /^mpd_finalize(mpd_t *result, mpd_context_t *ctx)$/;" f +mpd_flag_string Modules/_decimal/libmpdec/io.c /^static const char *mpd_flag_string[MPD_NUM_FLAGS] = {$/;" v file: +mpd_floor Modules/_decimal/libmpdec/mpsignal.c /^mpd_floor(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_fma Modules/_decimal/libmpdec/mpsignal.c /^mpd_fma(mpd_t *result, const mpd_t *a, const mpd_t *b, const mpd_t *c,$/;" f +mpd_format Modules/_decimal/libmpdec/mpsignal.c /^mpd_format(const mpd_t *dec, const char *fmt, mpd_context_t *ctx)$/;" f +mpd_fprint Modules/_decimal/libmpdec/io.c /^mpd_fprint(FILE *file, const mpd_t *dec)$/;" f +mpd_free Modules/_decimal/libmpdec/mpalloc.c /^void (* mpd_free)(void *ptr) = free;$/;" v +mpd_from_uint128_triple Modules/_decimal/libmpdec/mpdecimal.c /^mpd_from_uint128_triple(mpd_t *result, const mpd_uint128_triple_t *triple, uint32_t *status)$/;" f +mpd_get_i32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_get_i32(const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_get_i64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_get_i64(const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_get_ssize Modules/_decimal/libmpdec/mpsignal.c /^mpd_get_ssize(const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_get_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_get_u32(const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_get_u64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_get_u64(const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_get_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_get_uint(const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_getclamp Modules/_decimal/libmpdec/context.c /^mpd_getclamp(const mpd_context_t *ctx)$/;" f +mpd_getcr Modules/_decimal/libmpdec/context.c /^mpd_getcr(const mpd_context_t *ctx)$/;" f +mpd_getemax Modules/_decimal/libmpdec/context.c /^mpd_getemax(const mpd_context_t *ctx)$/;" f +mpd_getemin Modules/_decimal/libmpdec/context.c /^mpd_getemin(const mpd_context_t *ctx)$/;" f +mpd_getprec Modules/_decimal/libmpdec/context.c /^mpd_getprec(const mpd_context_t *ctx)$/;" f +mpd_getround Modules/_decimal/libmpdec/context.c /^mpd_getround(const mpd_context_t *ctx)$/;" f +mpd_getstatus Modules/_decimal/libmpdec/context.c /^mpd_getstatus(const mpd_context_t *ctx)$/;" f +mpd_gettraps Modules/_decimal/libmpdec/context.c /^mpd_gettraps(const mpd_context_t *ctx)$/;" f +mpd_ieee_context Modules/_decimal/libmpdec/context.c /^mpd_ieee_context(mpd_context_t *ctx, int bits)$/;" f +mpd_import_u16 Modules/_decimal/libmpdec/mpsignal.c /^mpd_import_u16(mpd_t *result, const uint16_t *srcdata, size_t srclen,$/;" f +mpd_import_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_import_u32(mpd_t *result, const uint32_t *srcdata, size_t srclen,$/;" f +mpd_init Modules/_decimal/libmpdec/context.c /^mpd_init(mpd_context_t *ctx, mpd_ssize_t prec)$/;" f +mpd_invert Modules/_decimal/libmpdec/mpsignal.c /^mpd_invert(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_invmoduli Modules/_decimal/libmpdec/constants.c /^ const uint32_t mpd_invmoduli[3][3] = {$/;" v +mpd_invroot Modules/_decimal/libmpdec/mpsignal.c /^mpd_invroot(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_iscanonical Modules/_decimal/libmpdec/mpdecimal.c /^mpd_iscanonical(const mpd_t *dec)$/;" f +mpd_isconst_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isconst_data(const mpd_t *dec)$/;" f +mpd_isdynamic Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isdynamic(const mpd_t *dec)$/;" f +mpd_isdynamic_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isdynamic_data(const mpd_t *dec)$/;" f +mpd_iseven Modules/_decimal/libmpdec/mpdecimal.c /^mpd_iseven(const mpd_t *dec)$/;" f +mpd_isfinite Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isfinite(const mpd_t *dec)$/;" f +mpd_isinfinite Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isinfinite(const mpd_t *dec)$/;" f +mpd_isinteger Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isinteger(const mpd_t *dec)$/;" f +mpd_isnan Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isnan(const mpd_t *dec)$/;" f +mpd_isnegative Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isnegative(const mpd_t *dec)$/;" f +mpd_isnormal Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isnormal(const mpd_t *dec, const mpd_context_t *ctx)$/;" f +mpd_isodd Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isodd(const mpd_t *dec)$/;" f +mpd_isoddcoeff Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isoddcoeff(const mpd_t *dec)$/;" f +mpd_isoddword Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isoddword(mpd_uint_t word)$/;" f +mpd_ispositive Modules/_decimal/libmpdec/mpdecimal.c /^mpd_ispositive(const mpd_t *dec)$/;" f +mpd_isqnan Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isqnan(const mpd_t *dec)$/;" f +mpd_isshared_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isshared_data(const mpd_t *dec)$/;" f +mpd_issigned Modules/_decimal/libmpdec/mpdecimal.c /^mpd_issigned(const mpd_t *dec)$/;" f +mpd_issnan Modules/_decimal/libmpdec/mpdecimal.c /^mpd_issnan(const mpd_t *dec)$/;" f +mpd_isspecial Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isspecial(const mpd_t *dec)$/;" f +mpd_isstatic Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isstatic(const mpd_t *dec)$/;" f +mpd_isstatic_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_isstatic_data(const mpd_t *dec)$/;" f +mpd_issubnormal Modules/_decimal/libmpdec/mpdecimal.c /^mpd_issubnormal(const mpd_t *dec, const mpd_context_t *ctx)$/;" f +mpd_iszero Modules/_decimal/libmpdec/mpdecimal.c /^mpd_iszero(const mpd_t *dec)$/;" f +mpd_iszerocoeff Modules/_decimal/libmpdec/mpdecimal.c /^mpd_iszerocoeff(const mpd_t *dec)$/;" f +mpd_ln Modules/_decimal/libmpdec/mpsignal.c /^mpd_ln(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_ln10_data Modules/_decimal/libmpdec/mpdecimal.c /^static const mpd_uint_t mpd_ln10_data[MPD_MINALLOC_MAX] = {$/;" v file: +mpd_log10 Modules/_decimal/libmpdec/mpsignal.c /^mpd_log10(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_logb Modules/_decimal/libmpdec/mpsignal.c /^mpd_logb(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_lsd Modules/_decimal/libmpdec/mpdecimal.c /^mpd_lsd(mpd_uint_t word)$/;" f +mpd_lsnprint_flags Modules/_decimal/libmpdec/io.c /^mpd_lsnprint_flags(char *dest, int nmemb, uint32_t flags, const char *flag_string[])$/;" f +mpd_lsnprint_signals Modules/_decimal/libmpdec/io.c /^mpd_lsnprint_signals(char *dest, int nmemb, uint32_t flags, const char *signal_string[])$/;" f +mpd_mallocfunc Modules/_decimal/libmpdec/mpalloc.c /^void *(* mpd_mallocfunc)(size_t size) = malloc;$/;" v +mpd_max Modules/_decimal/libmpdec/mpsignal.c /^mpd_max(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_max_mag Modules/_decimal/libmpdec/mpsignal.c /^mpd_max_mag(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_maxcoeff Modules/_decimal/libmpdec/mpsignal.c /^mpd_maxcoeff(mpd_t *result, mpd_context_t *ctx)$/;" f +mpd_maxcontext Modules/_decimal/libmpdec/context.c /^mpd_maxcontext(mpd_context_t *ctx)$/;" f +mpd_mbstr_t Modules/_decimal/libmpdec/io.c /^} mpd_mbstr_t;$/;" t typeref:struct:__anon343 file: +mpd_min Modules/_decimal/libmpdec/mpsignal.c /^mpd_min(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_min_mag Modules/_decimal/libmpdec/mpsignal.c /^mpd_min_mag(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_minalloc Modules/_decimal/libmpdec/mpdecimal.c /^mpd_minalloc(mpd_t *result)$/;" f +mpd_minus Modules/_decimal/libmpdec/mpsignal.c /^mpd_minus(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_moduli Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t mpd_moduli[3] = {2113929217UL, 2013265921UL, 1811939329UL};$/;" v +mpd_moduli Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t mpd_moduli[3] = {$/;" v +mpd_msd Modules/_decimal/libmpdec/mpdecimal.c /^mpd_msd(mpd_uint_t word)$/;" f +mpd_msword Modules/_decimal/libmpdec/mpdecimal.c /^mpd_msword(const mpd_t *dec)$/;" f +mpd_mul Modules/_decimal/libmpdec/mpsignal.c /^mpd_mul(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_mul_i32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_mul_i32(mpd_t *result, const mpd_t *a, int32_t b, mpd_context_t *ctx)$/;" f +mpd_mul_i64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_mul_i64(mpd_t *result, const mpd_t *a, int64_t b, mpd_context_t *ctx)$/;" f +mpd_mul_ssize Modules/_decimal/libmpdec/mpsignal.c /^mpd_mul_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b, mpd_context_t *ctx)$/;" f +mpd_mul_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_mul_u32(mpd_t *result, const mpd_t *a, uint32_t b, mpd_context_t *ctx)$/;" f +mpd_mul_u64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_mul_u64(mpd_t *result, const mpd_t *a, uint64_t b, mpd_context_t *ctx)$/;" f +mpd_mul_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_mul_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b, mpd_context_t *ctx)$/;" f +mpd_new Modules/_decimal/libmpdec/mpalloc.c /^mpd_new(mpd_context_t *ctx)$/;" f +mpd_next_minus Modules/_decimal/libmpdec/mpsignal.c /^mpd_next_minus(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_next_plus Modules/_decimal/libmpdec/mpsignal.c /^mpd_next_plus(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_next_toward Modules/_decimal/libmpdec/mpsignal.c /^mpd_next_toward(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_or Modules/_decimal/libmpdec/mpsignal.c /^mpd_or(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_parse_fmt_str Modules/_decimal/libmpdec/io.c /^mpd_parse_fmt_str(mpd_spec_t *spec, const char *fmt, int caps)$/;" f +mpd_plus Modules/_decimal/libmpdec/mpsignal.c /^mpd_plus(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_pow Modules/_decimal/libmpdec/mpsignal.c /^mpd_pow(mpd_t *result, const mpd_t *base, const mpd_t *exp, mpd_context_t *ctx)$/;" f +mpd_pow10 Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t mpd_pow10[MPD_RDIGITS+1] = {$/;" v +mpd_powmod Modules/_decimal/libmpdec/mpsignal.c /^mpd_powmod(mpd_t *result, const mpd_t *base, const mpd_t *exp, const mpd_t *mod,$/;" f +mpd_print Modules/_decimal/libmpdec/io.c /^mpd_print(const mpd_t *dec)$/;" f +mpd_qabs Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qabs(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qabs_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qabs_uint(const mpd_t *a, uint32_t *status)$/;" f +mpd_qadd Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qadd(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qadd_i32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qadd_i32(mpd_t *result, const mpd_t *a, int32_t b,$/;" f +mpd_qadd_i64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qadd_i64(mpd_t *result, const mpd_t *a, int64_t b,$/;" f +mpd_qadd_ssize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qadd_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b,$/;" f +mpd_qadd_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qadd_u32(mpd_t *result, const mpd_t *a, uint32_t b,$/;" f +mpd_qadd_u64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qadd_u64(mpd_t *result, const mpd_t *a, uint64_t b,$/;" f +mpd_qadd_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qadd_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b,$/;" f +mpd_qand Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qand(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qceil Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qceil(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qcheck_3nans Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcheck_3nans(mpd_t *result, const mpd_t *a, const mpd_t *b, const mpd_t *c,$/;" f file: +mpd_qcheck_nan Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcheck_nan(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qcheck_nans Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcheck_nans(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qcmp Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcmp(const mpd_t *a, const mpd_t *b, uint32_t *status)$/;" f +mpd_qcompare Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcompare(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qcompare_signal Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcompare_signal(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qcopy Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcopy(mpd_t *result, const mpd_t *a, uint32_t *status)$/;" f +mpd_qcopy_abs Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcopy_abs(mpd_t *result, const mpd_t *a, uint32_t *status)$/;" f +mpd_qcopy_cxx Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcopy_cxx(mpd_t *result, const mpd_t *a)$/;" f +mpd_qcopy_negate Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcopy_negate(mpd_t *result, const mpd_t *a, uint32_t *status)$/;" f +mpd_qcopy_sign Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcopy_sign(mpd_t *result, const mpd_t *a, const mpd_t *b, uint32_t *status)$/;" f +mpd_qcopy_static Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qcopy_static(mpd_t *result, const mpd_t *a)$/;" f file: +mpd_qdiv Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdiv(mpd_t *q, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qdiv_i32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdiv_i32(mpd_t *result, const mpd_t *a, int32_t b,$/;" f +mpd_qdiv_i64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdiv_i64(mpd_t *result, const mpd_t *a, int64_t b,$/;" f +mpd_qdiv_ssize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdiv_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b,$/;" f +mpd_qdiv_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdiv_u32(mpd_t *result, const mpd_t *a, uint32_t b,$/;" f +mpd_qdiv_u64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdiv_u64(mpd_t *result, const mpd_t *a, uint64_t b,$/;" f +mpd_qdiv_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdiv_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b,$/;" f +mpd_qdivint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdivint(mpd_t *q, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qdivmod Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qdivmod(mpd_t *q, mpd_t *r, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qexp Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qexp(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qexport_u16 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qexport_u16(uint16_t **rdata, size_t rlen, uint32_t rbase,$/;" f +mpd_qexport_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qexport_u32(uint32_t **rdata, size_t rlen, uint32_t rbase,$/;" f +mpd_qfinalize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qfinalize(mpd_t *result, const mpd_context_t *ctx, uint32_t *status)$/;" f +mpd_qfloor Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qfloor(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qfma Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qfma(mpd_t *result, const mpd_t *a, const mpd_t *b, const mpd_t *c,$/;" f +mpd_qformat Modules/_decimal/libmpdec/io.c /^mpd_qformat(const mpd_t *dec, const char *fmt, const mpd_context_t *ctx,$/;" f +mpd_qformat_spec Modules/_decimal/libmpdec/io.c /^mpd_qformat_spec(const mpd_t *dec, const mpd_spec_t *spec,$/;" f +mpd_qget_i32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qget_i32(const mpd_t *a, uint32_t *status)$/;" f +mpd_qget_i64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qget_i64(const mpd_t *a, uint32_t *status)$/;" f +mpd_qget_ssize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qget_ssize(const mpd_t *a, uint32_t *status)$/;" f +mpd_qget_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qget_u32(const mpd_t *a, uint32_t *status)$/;" f +mpd_qget_u64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qget_u64(const mpd_t *a, uint32_t *status)$/;" f +mpd_qget_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qget_uint(const mpd_t *a, uint32_t *status)$/;" f +mpd_qimport_u16 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qimport_u16(mpd_t *result,$/;" f +mpd_qimport_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qimport_u32(mpd_t *result,$/;" f +mpd_qinvert Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qinvert(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qinvroot Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qinvroot(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qln Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qln(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qln10 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qln10(mpd_t *result, mpd_ssize_t prec, uint32_t *status)$/;" f +mpd_qlog10 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qlog10(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qlogb Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qlogb(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qmax Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmax(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qmax_mag Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmax_mag(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qmaxcoeff Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmaxcoeff(mpd_t *result, const mpd_context_t *ctx, uint32_t *status)$/;" f +mpd_qmin Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmin(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qmin_mag Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmin_mag(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qminus Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qminus(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qmul Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmul(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qmul_i32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmul_i32(mpd_t *result, const mpd_t *a, int32_t b,$/;" f +mpd_qmul_i64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmul_i64(mpd_t *result, const mpd_t *a, int64_t b,$/;" f +mpd_qmul_ssize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmul_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b,$/;" f +mpd_qmul_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmul_u32(mpd_t *result, const mpd_t *a, uint32_t b,$/;" f +mpd_qmul_u64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmul_u64(mpd_t *result, const mpd_t *a, uint64_t b,$/;" f +mpd_qmul_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qmul_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b,$/;" f +mpd_qncopy Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qncopy(const mpd_t *a)$/;" f +mpd_qnew Modules/_decimal/libmpdec/mpalloc.c /^mpd_qnew(void)$/;" f +mpd_qnew_size Modules/_decimal/libmpdec/mpalloc.c /^mpd_qnew_size(mpd_ssize_t nwords)$/;" f +mpd_qnext_minus Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qnext_minus(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qnext_plus Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qnext_plus(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qnext_toward Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qnext_toward(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qor Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qor(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qplus Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qplus(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qpow Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qpow(mpd_t *result, const mpd_t *base, const mpd_t *exp,$/;" f +mpd_qpowmod Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qpowmod(mpd_t *result, const mpd_t *base, const mpd_t *exp,$/;" f +mpd_qquantize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qquantize(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qreduce Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qreduce(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qrem Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qrem(mpd_t *r, const mpd_t *a, const mpd_t *b, const mpd_context_t *ctx,$/;" f +mpd_qrem_near Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qrem_near(mpd_t *r, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qrescale Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qrescale(mpd_t *result, const mpd_t *a, mpd_ssize_t exp,$/;" f +mpd_qrescale_fmt Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qrescale_fmt(mpd_t *result, const mpd_t *a, mpd_ssize_t exp,$/;" f +mpd_qresize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qresize(mpd_t *result, mpd_ssize_t nwords, uint32_t *status)$/;" f +mpd_qresize_cxx Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qresize_cxx(mpd_t *result, mpd_ssize_t nwords)$/;" f file: +mpd_qresize_zero Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qresize_zero(mpd_t *result, mpd_ssize_t nwords, uint32_t *status)$/;" f +mpd_qrotate Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qrotate(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qround_to_int Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qround_to_int(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qround_to_intx Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qround_to_intx(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qscaleb Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qscaleb(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qset_i32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_i32(mpd_t *result, int32_t a, const mpd_context_t *ctx,$/;" f +mpd_qset_i64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_i64(mpd_t *result, int64_t a, const mpd_context_t *ctx,$/;" f +mpd_qset_i64_exact Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_i64_exact(mpd_t *result, int64_t a, uint32_t *status)$/;" f +mpd_qset_ssize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_ssize(mpd_t *result, mpd_ssize_t a, const mpd_context_t *ctx,$/;" f +mpd_qset_string Modules/_decimal/libmpdec/io.c /^mpd_qset_string(mpd_t *dec, const char *s, const mpd_context_t *ctx,$/;" f +mpd_qset_string_exact Modules/_decimal/libmpdec/io.c /^mpd_qset_string_exact(mpd_t *dec, const char *s, uint32_t *status)$/;" f +mpd_qset_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_u32(mpd_t *result, uint32_t a, const mpd_context_t *ctx,$/;" f +mpd_qset_u64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_u64(mpd_t *result, uint64_t a, const mpd_context_t *ctx,$/;" f +mpd_qset_u64_exact Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_u64_exact(mpd_t *result, uint64_t a, uint32_t *status)$/;" f +mpd_qset_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qset_uint(mpd_t *result, mpd_uint_t a, const mpd_context_t *ctx,$/;" f +mpd_qsetclamp Modules/_decimal/libmpdec/context.c /^mpd_qsetclamp(mpd_context_t *ctx, int c)$/;" f +mpd_qsetcr Modules/_decimal/libmpdec/context.c /^mpd_qsetcr(mpd_context_t *ctx, int c)$/;" f +mpd_qsetemax Modules/_decimal/libmpdec/context.c /^mpd_qsetemax(mpd_context_t *ctx, mpd_ssize_t emax)$/;" f +mpd_qsetemin Modules/_decimal/libmpdec/context.c /^mpd_qsetemin(mpd_context_t *ctx, mpd_ssize_t emin)$/;" f +mpd_qsetprec Modules/_decimal/libmpdec/context.c /^mpd_qsetprec(mpd_context_t *ctx, mpd_ssize_t prec)$/;" f +mpd_qsetround Modules/_decimal/libmpdec/context.c /^mpd_qsetround(mpd_context_t *ctx, int round)$/;" f +mpd_qsetstatus Modules/_decimal/libmpdec/context.c /^mpd_qsetstatus(mpd_context_t *ctx, uint32_t flags)$/;" f +mpd_qsettraps Modules/_decimal/libmpdec/context.c /^mpd_qsettraps(mpd_context_t *ctx, uint32_t flags)$/;" f +mpd_qshift Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qshift(mpd_t *result, const mpd_t *a, const mpd_t *b, const mpd_context_t *ctx,$/;" f +mpd_qshiftl Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qshiftl(mpd_t *result, const mpd_t *a, mpd_ssize_t n, uint32_t *status)$/;" f +mpd_qshiftn Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qshiftn(mpd_t *result, const mpd_t *a, mpd_ssize_t n, const mpd_context_t *ctx,$/;" f +mpd_qshiftr Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qshiftr(mpd_t *result, const mpd_t *a, mpd_ssize_t n, uint32_t *status)$/;" f +mpd_qshiftr_inplace Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qshiftr_inplace(mpd_t *result, mpd_ssize_t n)$/;" f +mpd_qsqrt Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsqrt(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_qsset_i32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsset_i32(mpd_t *result, int32_t a, const mpd_context_t *ctx,$/;" f +mpd_qsset_i64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsset_i64(mpd_t *result, int64_t a, const mpd_context_t *ctx,$/;" f +mpd_qsset_ssize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsset_ssize(mpd_t *result, mpd_ssize_t a, const mpd_context_t *ctx,$/;" f +mpd_qsset_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsset_u32(mpd_t *result, uint32_t a, const mpd_context_t *ctx,$/;" f +mpd_qsset_u64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsset_u64(mpd_t *result, uint64_t a, const mpd_context_t *ctx,$/;" f +mpd_qsset_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsset_uint(mpd_t *result, mpd_uint_t a, const mpd_context_t *ctx,$/;" f +mpd_qsshiftr Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsshiftr(mpd_t *result, const mpd_t *a, mpd_ssize_t n)$/;" f file: +mpd_qsub Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsub(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_qsub_i32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsub_i32(mpd_t *result, const mpd_t *a, int32_t b,$/;" f +mpd_qsub_i64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsub_i64(mpd_t *result, const mpd_t *a, int64_t b,$/;" f +mpd_qsub_ssize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsub_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b,$/;" f +mpd_qsub_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsub_u32(mpd_t *result, const mpd_t *a, uint32_t b,$/;" f +mpd_qsub_u64 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsub_u64(mpd_t *result, const mpd_t *a, uint64_t b,$/;" f +mpd_qsub_uint Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qsub_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b,$/;" f +mpd_qtrunc Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qtrunc(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,$/;" f +mpd_quantize Modules/_decimal/libmpdec/mpsignal.c /^mpd_quantize(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_qxor Modules/_decimal/libmpdec/mpdecimal.c /^mpd_qxor(mpd_t *result, const mpd_t *a, const mpd_t *b,$/;" f +mpd_radix Modules/_decimal/libmpdec/mpdecimal.c /^mpd_radix(void)$/;" f +mpd_realloc Modules/_decimal/libmpdec/mpalloc.c /^mpd_realloc(void *ptr, mpd_size_t nmemb, mpd_size_t size, uint8_t *err)$/;" f +mpd_realloc_dyn Modules/_decimal/libmpdec/mpalloc.c /^mpd_realloc_dyn(mpd_t *result, mpd_ssize_t nwords, uint32_t *status)$/;" f +mpd_realloc_dyn_cxx Modules/_decimal/libmpdec/mpalloc.c /^mpd_realloc_dyn_cxx(mpd_t *result, mpd_ssize_t nwords)$/;" f +mpd_reallocfunc Modules/_decimal/libmpdec/mpalloc.c /^void *(* mpd_reallocfunc)(void *ptr, size_t size) = realloc;$/;" v +mpd_reduce Modules/_decimal/libmpdec/mpsignal.c /^mpd_reduce(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_rem Modules/_decimal/libmpdec/mpsignal.c /^mpd_rem(mpd_t *r, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_rem_near Modules/_decimal/libmpdec/mpsignal.c /^mpd_rem_near(mpd_t *r, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_rescale Modules/_decimal/libmpdec/mpsignal.c /^mpd_rescale(mpd_t *result, const mpd_t *a, mpd_ssize_t exp, mpd_context_t *ctx)$/;" f +mpd_resize Modules/_decimal/libmpdec/mpdecimal.c /^mpd_resize(mpd_t *result, mpd_ssize_t nwords, mpd_context_t *ctx)$/;" f +mpd_resize_u16 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_resize_u16(uint16_t **w, size_t nmemb)$/;" f file: +mpd_resize_u32 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_resize_u32(uint32_t **w, size_t nmemb)$/;" f file: +mpd_resize_zero Modules/_decimal/libmpdec/mpdecimal.c /^mpd_resize_zero(mpd_t *result, mpd_ssize_t nwords, mpd_context_t *ctx)$/;" f +mpd_restore_fenv Modules/_decimal/libmpdec/mpdecimal.c /^mpd_restore_fenv(unsigned int cw)$/;" f file: +mpd_roots Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t mpd_roots[3] = {5UL, 31UL, 13UL};$/;" v +mpd_roots Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t mpd_roots[3] = {7ULL, 10ULL, 19ULL};$/;" v +mpd_rotate Modules/_decimal/libmpdec/mpsignal.c /^mpd_rotate(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_round_string Modules/_decimal/libmpdec/constants.c /^const char * const mpd_round_string[MPD_ROUND_GUARD] = {$/;" v +mpd_round_to_int Modules/_decimal/libmpdec/mpsignal.c /^mpd_round_to_int(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_round_to_intx Modules/_decimal/libmpdec/mpsignal.c /^mpd_round_to_intx(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_same_quantum Modules/_decimal/libmpdec/mpdecimal.c /^mpd_same_quantum(const mpd_t *a, const mpd_t *b)$/;" f +mpd_scaleb Modules/_decimal/libmpdec/mpsignal.c /^mpd_scaleb(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_set_const_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_const_data(mpd_t *result)$/;" f +mpd_set_dynamic Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_dynamic(mpd_t *result)$/;" f +mpd_set_dynamic_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_dynamic_data(mpd_t *result)$/;" f +mpd_set_fenv Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_fenv(void)$/;" f file: +mpd_set_flags Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_flags(mpd_t *result, uint8_t flags)$/;" f +mpd_set_i32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_set_i32(mpd_t *result, int32_t a, mpd_context_t *ctx)$/;" f +mpd_set_i64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_set_i64(mpd_t *result, int64_t a, mpd_context_t *ctx)$/;" f +mpd_set_infinity Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_infinity(mpd_t *result)$/;" f +mpd_set_negative Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_negative(mpd_t *result)$/;" f +mpd_set_positive Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_positive(mpd_t *result)$/;" f +mpd_set_qnan Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_qnan(mpd_t *result)$/;" f +mpd_set_shared_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_shared_data(mpd_t *result)$/;" f +mpd_set_sign Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_sign(mpd_t *result, uint8_t sign)$/;" f +mpd_set_snan Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_snan(mpd_t *result)$/;" f +mpd_set_ssize Modules/_decimal/libmpdec/mpsignal.c /^mpd_set_ssize(mpd_t *result, mpd_ssize_t a, mpd_context_t *ctx)$/;" f +mpd_set_static Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_static(mpd_t *result)$/;" f +mpd_set_static_data Modules/_decimal/libmpdec/mpdecimal.c /^mpd_set_static_data(mpd_t *result)$/;" f +mpd_set_string Modules/_decimal/libmpdec/mpsignal.c /^mpd_set_string(mpd_t *result, const char *s, mpd_context_t *ctx)$/;" f +mpd_set_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_set_u32(mpd_t *result, uint32_t a, mpd_context_t *ctx)$/;" f +mpd_set_u64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_set_u64(mpd_t *result, uint64_t a, mpd_context_t *ctx)$/;" f +mpd_set_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_set_uint(mpd_t *result, mpd_uint_t a, mpd_context_t *ctx)$/;" f +mpd_setdigits Modules/_decimal/libmpdec/mpdecimal.c /^mpd_setdigits(mpd_t *result)$/;" f +mpd_seterror Modules/_decimal/libmpdec/mpdecimal.c /^mpd_seterror(mpd_t *result, uint32_t flags, uint32_t *status)$/;" f +mpd_setminalloc Modules/_decimal/libmpdec/context.c /^mpd_setminalloc(mpd_ssize_t n)$/;" f +mpd_setspecial Modules/_decimal/libmpdec/mpdecimal.c /^mpd_setspecial(mpd_t *result, uint8_t sign, uint8_t type)$/;" f +mpd_sh_alloc Modules/_decimal/libmpdec/mpalloc.c /^mpd_sh_alloc(mpd_size_t struct_size, mpd_size_t nmemb, mpd_size_t size)$/;" f +mpd_shift Modules/_decimal/libmpdec/mpsignal.c /^mpd_shift(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_shiftl Modules/_decimal/libmpdec/mpsignal.c /^mpd_shiftl(mpd_t *result, const mpd_t *a, mpd_ssize_t n, mpd_context_t *ctx)$/;" f +mpd_shiftn Modules/_decimal/libmpdec/mpsignal.c /^mpd_shiftn(mpd_t *result, const mpd_t *a, mpd_ssize_t n, mpd_context_t *ctx)$/;" f +mpd_shiftr Modules/_decimal/libmpdec/mpsignal.c /^mpd_shiftr(mpd_t *result, const mpd_t *a, mpd_ssize_t n, mpd_context_t *ctx)$/;" f +mpd_sign Modules/_decimal/libmpdec/mpdecimal.c /^mpd_sign(const mpd_t *dec)$/;" f +mpd_signal_string Modules/_decimal/libmpdec/io.c /^static const char *mpd_signal_string[MPD_NUM_FLAGS] = {$/;" v file: +mpd_signcpy Modules/_decimal/libmpdec/mpdecimal.c /^mpd_signcpy(mpd_t *result, const mpd_t *a)$/;" f +mpd_size_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef size_t mpd_size_t; \/* unsigned size type *\/$/;" t +mpd_sizeinbase Modules/_decimal/libmpdec/mpdecimal.c /^mpd_sizeinbase(const mpd_t *a, uint32_t base)$/;" f +mpd_snprint_flags Modules/_decimal/libmpdec/io.c /^mpd_snprint_flags(char *dest, int nmemb, uint32_t flags)$/;" f +mpd_spec_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef struct mpd_spec_t {$/;" s +mpd_spec_t Modules/_decimal/libmpdec/mpdecimal.h /^} mpd_spec_t;$/;" t typeref:struct:mpd_spec_t +mpd_sqrt Modules/_decimal/libmpdec/mpsignal.c /^mpd_sqrt(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_sset_i32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sset_i32(mpd_t *result, int32_t a, mpd_context_t *ctx)$/;" f +mpd_sset_i64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sset_i64(mpd_t *result, int64_t a, mpd_context_t *ctx)$/;" f +mpd_sset_ssize Modules/_decimal/libmpdec/mpsignal.c /^mpd_sset_ssize(mpd_t *result, mpd_ssize_t a, mpd_context_t *ctx)$/;" f +mpd_sset_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sset_u32(mpd_t *result, uint32_t a, mpd_context_t *ctx)$/;" f +mpd_sset_u64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sset_u64(mpd_t *result, uint64_t a, mpd_context_t *ctx)$/;" f +mpd_sset_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_sset_uint(mpd_t *result, mpd_uint_t a, mpd_context_t *ctx)$/;" f +mpd_ssize_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef int32_t mpd_ssize_t;$/;" t +mpd_ssize_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef int64_t mpd_ssize_t;$/;" t +mpd_strtossize Modules/_decimal/libmpdec/io.h /^mpd_strtossize(const char *s, char **end, int base)$/;" f +mpd_strtossize Modules/_decimal/libmpdec/io.h 39;" d +mpd_sub Modules/_decimal/libmpdec/mpsignal.c /^mpd_sub(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_sub_i32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sub_i32(mpd_t *result, const mpd_t *a, int32_t b, mpd_context_t *ctx)$/;" f +mpd_sub_i64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sub_i64(mpd_t *result, const mpd_t *a, int64_t b, mpd_context_t *ctx)$/;" f +mpd_sub_ssize Modules/_decimal/libmpdec/mpsignal.c /^mpd_sub_ssize(mpd_t *result, const mpd_t *a, mpd_ssize_t b, mpd_context_t *ctx)$/;" f +mpd_sub_u32 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sub_u32(mpd_t *result, const mpd_t *a, uint32_t b, mpd_context_t *ctx)$/;" f +mpd_sub_u64 Modules/_decimal/libmpdec/mpsignal.c /^mpd_sub_u64(mpd_t *result, const mpd_t *a, uint64_t b, mpd_context_t *ctx)$/;" f +mpd_sub_uint Modules/_decimal/libmpdec/mpsignal.c /^mpd_sub_uint(mpd_t *result, const mpd_t *a, mpd_uint_t b, mpd_context_t *ctx)$/;" f +mpd_switch_to_dyn Modules/_decimal/libmpdec/mpalloc.c /^mpd_switch_to_dyn(mpd_t *result, mpd_ssize_t nwords, uint32_t *status)$/;" f +mpd_switch_to_dyn_cxx Modules/_decimal/libmpdec/mpalloc.c /^mpd_switch_to_dyn_cxx(mpd_t *result, mpd_ssize_t nwords)$/;" f +mpd_switch_to_dyn_zero Modules/_decimal/libmpdec/mpalloc.c /^mpd_switch_to_dyn_zero(mpd_t *result, mpd_ssize_t nwords, uint32_t *status)$/;" f +mpd_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef struct mpd_t {$/;" s +mpd_t Modules/_decimal/libmpdec/mpdecimal.h /^} mpd_t;$/;" t typeref:struct:mpd_t +mpd_to_eng Modules/_decimal/libmpdec/io.c /^mpd_to_eng(const mpd_t *dec, int fmt)$/;" f +mpd_to_eng_size Modules/_decimal/libmpdec/io.c /^mpd_to_eng_size(char **res, const mpd_t *dec, int fmt)$/;" f +mpd_to_sci Modules/_decimal/libmpdec/io.c /^mpd_to_sci(const mpd_t *dec, int fmt)$/;" f +mpd_to_sci_size Modules/_decimal/libmpdec/io.c /^mpd_to_sci_size(char **res, const mpd_t *dec, int fmt)$/;" f +mpd_trail_zeros Modules/_decimal/libmpdec/mpdecimal.c /^mpd_trail_zeros(const mpd_t *dec)$/;" f +mpd_traphandler Modules/_decimal/libmpdec/context.c /^void (* mpd_traphandler)(mpd_context_t *) = mpd_dflt_traphandler;$/;" v +mpd_triple_class Modules/_decimal/libmpdec/mpdecimal.h /^enum mpd_triple_class {$/;" g +mpd_trunc Modules/_decimal/libmpdec/mpsignal.c /^mpd_trunc(mpd_t *result, const mpd_t *a, mpd_context_t *ctx)$/;" f +mpd_uint128_triple_t Modules/_decimal/libmpdec/mpdecimal.h /^} mpd_uint128_triple_t;$/;" t typeref:struct:__anon342 +mpd_uint_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef uint32_t mpd_uint_t; \/* unsigned mod type *\/$/;" t +mpd_uint_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef uint64_t mpd_uint_t; \/* unsigned mod type *\/$/;" t +mpd_uint_zero Modules/_decimal/libmpdec/mpdecimal.c /^mpd_uint_zero(mpd_uint_t *dest, mpd_size_t len)$/;" f +mpd_uuint_t Modules/_decimal/libmpdec/mpdecimal.h /^typedef uint64_t mpd_uuint_t; \/* double width unsigned mod type *\/$/;" t +mpd_validate_lconv Modules/_decimal/libmpdec/io.c /^mpd_validate_lconv(mpd_spec_t *spec)$/;" f +mpd_version Modules/_decimal/libmpdec/mpdecimal.c /^mpd_version(void)$/;" f +mpd_word_digits Modules/_decimal/libmpdec/mpdecimal.c /^mpd_word_digits(mpd_uint_t word)$/;" f +mpd_word_isallnine Modules/_decimal/libmpdec/mpdecimal.c /^mpd_word_isallnine(mpd_uint_t word)$/;" f file: +mpd_word_ispow10 Modules/_decimal/libmpdec/mpdecimal.c /^mpd_word_ispow10(mpd_uint_t word)$/;" f file: +mpd_workcontext Modules/_decimal/libmpdec/mpdecimal.c /^mpd_workcontext(mpd_context_t *workctx, const mpd_context_t *ctx)$/;" f file: +mpd_xor Modules/_decimal/libmpdec/mpsignal.c /^mpd_xor(mpd_t *result, const mpd_t *a, const mpd_t *b, mpd_context_t *ctx)$/;" f +mpd_zerocoeff Modules/_decimal/libmpdec/mpdecimal.c /^mpd_zerocoeff(mpd_t *result)$/;" f +mprime_rdx Modules/_decimal/libmpdec/constants.c /^ const mpd_uint_t mprime_rdx = 15581492618384294730ULL;$/;" v +mro Lib/test/test_descr.py /^ def mro(self):$/;" m class:.test_altmro.X._metaclass +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:.test_altmro.PerverseMetaType +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_disappearing_custom_mro.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_incomplete_extend.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_incomplete_set_bases_on_self.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_incomplete_super.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_reent_set_bases_on_base.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_reent_set_bases_on_direct_base.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_reent_set_bases_tp_base_cycle.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_tp_subclasses_cycle_error_return_path.M +mro Lib/test/test_descr.py /^ def mro(cls):$/;" m class:MroTest.test_tp_subclasses_cycle_in_update_slots.M +mro Lib/test/test_descr.py /^ def mro(self):$/;" m class:.test_mutable_bases_with_failing_mro.WorkAlways +mro Lib/test/test_descr.py /^ def mro(self):$/;" m class:.test_mutable_bases_with_failing_mro.WorkOnce +mro Lib/test/test_enum.py /^ mro = 9$/;" v class:_EnumTests.test_invalid_names.Wrong +mro Lib/test/test_opcache.py /^ def mro():$/;" m class:TestLoadMethodCache.test_type_descriptor_shadows_attribute_method.Class +mro Lib/test/test_opcache.py /^ mro = None$/;" v class:TestLoadAttrCache.test_type_descriptor_shadows_attribute_method.Class +mro Lib/test/test_super.py /^ def mro(self):$/;" m class:TestSuper.test___class___mro.Meta +mro_check Objects/typeobject.c /^mro_check(PyTypeObject *type, PyObject *mro)$/;" f file: +mro_hierarchy Objects/typeobject.c /^mro_hierarchy(PyTypeObject *type, PyObject *temp)$/;" f file: +mro_implementation Objects/typeobject.c /^mro_implementation(PyTypeObject *type)$/;" f file: +mro_internal Objects/typeobject.c /^mro_internal(PyTypeObject *type, PyObject **p_old_mro)$/;" f file: +mro_invoke Objects/typeobject.c /^mro_invoke(PyTypeObject *type)$/;" f file: +msg Doc/includes/email-alternative.py /^msg = EmailMessage()$/;" v +msg Doc/includes/email-mime.py /^msg = EmailMessage()$/;" v +msg Doc/includes/email-simple.py /^ msg = EmailMessage()$/;" v +msg Include/cpython/pyerrors.h /^ PyObject *msg;$/;" m struct:__anon181 +msg Include/cpython/pyerrors.h /^ PyObject *msg;$/;" m struct:__anon182 +msg Include/cpython/pyerrors.h /^ PyObject *msg;$/;" m struct:__anon183 +msg Include/internal/pycore_ast.h /^ expr_ty msg;$/;" m struct:_stmt::__anon51::__anon71 +msg Include/internal/pycore_ast_state.h /^ PyObject *msg;$/;" m struct:ast_state +msg Lib/getopt.py /^ msg = ''$/;" v class:GetoptError +msg Lib/modulefinder.py /^ def msg(self, level, str, *args):$/;" m class:ModuleFinder +msg Lib/smtplib.py /^ msg = ''$/;" v +msg Lib/telnetlib.py /^ def msg(self, msg, *args):$/;" m class:Telnet +msg Lib/test/shadowed_super.py /^ msg = "truly super"$/;" v class:super +msg Lib/test/test_email/test_email.py /^ msg = email.message_from_file(fp, MyMessage)$/;" v class:TestMiscellaneous.test_message_from_file_with_class.MyMessage +msg Lib/test/test_gdb.py /^ msg = "gdb security settings prevent use of custom hooks: "$/;" v +msg Lib/test/test_int.py /^ msg = "can't convert non-string"$/;" v class:IntTestCases.test_non_numeric_input_types.CustomByteArray +msg Lib/test/test_sqlite3/test_regression.py /^ msg = "Recursive use of cursors not allowed"$/;" v class:RecursiveUseOfCursors +msg Lib/test/test_super.py /^ msg = "quite super"$/;" v class:TestSuper.test_shadowed_local.super +msg Lib/test/test_super.py /^ msg = "super super"$/;" v class:TestSuper.test_shadowed_dynamic.MySuper +msg Lib/test/test_super.py /^ msg = "super super"$/;" v class:TestSuper.test_shadowed_dynamic_two_arg.MySuper +msg Lib/test/test_telnetlib.py /^ def msg(self, msg, *args):$/;" m class:TelnetAlike +msg Lib/turtledemo/bytedesign.py /^ msg = main()$/;" v +msg Lib/turtledemo/colormixer.py /^ msg = main()$/;" v +msg Lib/turtledemo/fractalcurves.py /^ msg = main()$/;" v +msg Lib/turtledemo/lindenmayer.py /^ msg = main()$/;" v +msg Lib/turtledemo/minimal_hanoi.py /^ msg = main()$/;" v +msg Lib/turtledemo/paint.py /^ msg = main()$/;" v +msg Lib/turtledemo/rosette.py /^ msg = main()$/;" v +msg Lib/turtledemo/tree.py /^ msg = main()$/;" v +msg Modules/_xxsubinterpretersmodule.c /^ const char *msg;$/;" m struct:_sharedexception file: +msg Modules/socketmodule.c /^ struct msghdr *msg;$/;" m struct:sock_recvmsg typeref:struct:sock_recvmsg::msghdr file: +msg Modules/socketmodule.c /^ struct msghdr *msg;$/;" m struct:sock_sendmsg typeref:struct:sock_sendmsg::msghdr file: +msg_as_deepcopy Lib/test/test_email/test_pickleable.py /^ def msg_as_deepcopy(self, msg):$/;" m class:TestPickleCopyMessage +msg_as_input Lib/test/test_email/test_inversion.py /^ def msg_as_input(self, msg):$/;" m class:TestInversion +msg_as_pickle Lib/test/test_email/test_pickleable.py /^ def msg_as_pickle(self, msg):$/;" m class:TestPickleCopyMessage +msg_cb Lib/test/test_ssl.py /^ def msg_cb(conn, direction, version, content_type, msg_type, data):$/;" f function:TestPostHandshakeAuth.test_pha_required_nocert +msg_cb Lib/test/test_ssl.py /^ def msg_cb(conn, direction, version, content_type, msg_type, data):$/;" f function:TestSSLDebug.test_msg_callback +msg_cb Lib/test/test_ssl.py /^ def msg_cb(conn, direction, version, content_type, msg_type, data):$/;" f function:TestSSLDebug.test_msg_callback_deadlock_bpo43577 +msg_cb Lib/test/test_ssl.py /^ def msg_cb(conn, direction, version, content_type, msg_type, data):$/;" f function:TestSSLDebug.test_msg_callback_tls12 +msg_cb Modules/_ssl.c /^ PyObject *msg_cb;$/;" m struct:__anon579 file: +msg_flags_common_set Lib/test/test_socket.py /^ msg_flags_common_set = 0$/;" v class:SendrecvmsgBase +msg_flags_common_unset Lib/test/test_socket.py /^ msg_flags_common_unset = 0$/;" v class:SendrecvmsgBase +msg_flags_eor_indicator Lib/test/test_socket.py /^ def msg_flags_eor_indicator(self):$/;" m class:SendrecvmsgSCTPFlagsBase +msg_flags_eor_indicator Lib/test/test_socket.py /^ msg_flags_eor_indicator = 0$/;" v class:SendrecvmsgBase +msg_flags_non_eor_indicator Lib/test/test_socket.py /^ def msg_flags_non_eor_indicator(self):$/;" m class:SendrecvmsgDgramFlagsBase +msg_flags_non_eor_indicator Lib/test/test_socket.py /^ msg_flags_non_eor_indicator = 0$/;" v class:SendrecvmsgBase +msg_format Lib/test/test_property.py /^ msg_format = None$/;" v class:_PropertyUnreachableAttribute +msg_format Lib/test/test_property.py /^ msg_format = r"^property 'foo' of 'PropertyUnreachableAttributeWithName\\.cls' object {}$"$/;" v class:PropertyUnreachableAttributeWithName +msg_format Lib/test/test_property.py /^ msg_format = r"^property of 'PropertyUnreachableAttributeNoName\\.cls' object {}$"$/;" v class:PropertyUnreachableAttributeNoName +msg_params Lib/test/test_email/test_inversion.py /^ msg_params = {$/;" v class:TestInversion +msg_params Lib/test/test_email/test_pickleable.py /^ msg_params = {}$/;" v class:TestPickleCopyMessage +msg_string Lib/test/test_imaplib.py /^ msg_string = 'Subject: üñí©öðé'$/;" v class:ThreadedNetworkedTests.test_enable_UTF8_True_append.UTF8AppendServer +msgfunc Lib/test/test_email/test_generator.py /^ msgfunc = staticmethod(message_from_bytes)$/;" v class:TestBytesGenerator +msgfunc Lib/test/test_email/test_generator.py /^ msgfunc = staticmethod(message_from_string)$/;" v class:TestGenerator +msgin Lib/modulefinder.py /^ def msgin(self, *args):$/;" m class:ModuleFinder +msgmaker Lib/test/test_email/test_generator.py /^ def msgmaker(self, msg, policy=None):$/;" m class:TestGeneratorBase +msgout Lib/modulefinder.py /^ def msgout(self, *args):$/;" m class:ModuleFinder +msi_doc PC/_msi.c /^static char msi_doc[] = "Documentation";$/;" v file: +msi_methods PC/_msi.c /^static PyMethodDef msi_methods[] = {$/;" v file: +msidb_Type PC/_msi.c /^static PyTypeObject msidb_Type = {$/;" v file: +msierror PC/_msi.c /^msierror(int status)$/;" f file: +msilib Lib/test/test_msilib.py /^ msilib = import_module('msilib')$/;" v +msiobj PC/_msi.c /^typedef struct msiobj{$/;" s file: +msiobj PC/_msi.c /^}msiobj;$/;" t typeref:struct:msiobj file: +msiobj_dealloc PC/_msi.c /^msiobj_dealloc(msiobj* msidb)$/;" f file: +msiview_Type PC/_msi.c /^static PyTypeObject msiview_Type = {$/;" v file: +msum Lib/test/test_math.py /^ def msum(iterable):$/;" f function:MathTests.testFsum +msvcrt Lib/test/_test_multiprocessing.py /^ msvcrt = None$/;" v +msvcrt_CrtSetReportFile PC/clinic/msvcrtmodule.c.h /^msvcrt_CrtSetReportFile(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +msvcrt_CrtSetReportFile_impl PC/msvcrtmodule.c /^msvcrt_CrtSetReportFile_impl(PyObject *module, int type, void *file)$/;" f file: +msvcrt_CrtSetReportMode PC/clinic/msvcrtmodule.c.h /^msvcrt_CrtSetReportMode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +msvcrt_CrtSetReportMode_impl PC/msvcrtmodule.c /^msvcrt_CrtSetReportMode_impl(PyObject *module, int type, int mode)$/;" f file: +msvcrt_GetErrorMode PC/clinic/msvcrtmodule.c.h /^msvcrt_GetErrorMode(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +msvcrt_GetErrorMode_impl PC/msvcrtmodule.c /^msvcrt_GetErrorMode_impl(PyObject *module)$/;" f file: +msvcrt_SetErrorMode PC/clinic/msvcrtmodule.c.h /^msvcrt_SetErrorMode(PyObject *module, PyObject *arg)$/;" f +msvcrt_SetErrorMode_impl PC/msvcrtmodule.c /^msvcrt_SetErrorMode_impl(PyObject *module, unsigned int mode)$/;" f file: +msvcrt_functions PC/msvcrtmodule.c /^static struct PyMethodDef msvcrt_functions[] = {$/;" v typeref:struct:PyMethodDef file: +msvcrt_get_osfhandle PC/clinic/msvcrtmodule.c.h /^msvcrt_get_osfhandle(PyObject *module, PyObject *arg)$/;" f +msvcrt_get_osfhandle_impl PC/msvcrtmodule.c /^msvcrt_get_osfhandle_impl(PyObject *module, int fd)$/;" f file: +msvcrt_getch PC/clinic/msvcrtmodule.c.h /^msvcrt_getch(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +msvcrt_getch_impl PC/msvcrtmodule.c /^msvcrt_getch_impl(PyObject *module)$/;" f file: +msvcrt_getche PC/clinic/msvcrtmodule.c.h /^msvcrt_getche(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +msvcrt_getche_impl PC/msvcrtmodule.c /^msvcrt_getche_impl(PyObject *module)$/;" f file: +msvcrt_getwch PC/clinic/msvcrtmodule.c.h /^msvcrt_getwch(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +msvcrt_getwch_impl PC/msvcrtmodule.c /^msvcrt_getwch_impl(PyObject *module)$/;" f file: +msvcrt_getwche PC/clinic/msvcrtmodule.c.h /^msvcrt_getwche(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +msvcrt_getwche_impl PC/msvcrtmodule.c /^msvcrt_getwche_impl(PyObject *module)$/;" f file: +msvcrt_heapmin PC/clinic/msvcrtmodule.c.h /^msvcrt_heapmin(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +msvcrt_heapmin_impl PC/msvcrtmodule.c /^msvcrt_heapmin_impl(PyObject *module)$/;" f file: +msvcrt_kbhit PC/clinic/msvcrtmodule.c.h /^msvcrt_kbhit(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +msvcrt_kbhit_impl PC/msvcrtmodule.c /^msvcrt_kbhit_impl(PyObject *module)$/;" f file: +msvcrt_locking PC/clinic/msvcrtmodule.c.h /^msvcrt_locking(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +msvcrt_locking_impl PC/msvcrtmodule.c /^msvcrt_locking_impl(PyObject *module, int fd, int mode, long nbytes)$/;" f file: +msvcrt_open_osfhandle PC/clinic/msvcrtmodule.c.h /^msvcrt_open_osfhandle(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +msvcrt_open_osfhandle_impl PC/msvcrtmodule.c /^msvcrt_open_osfhandle_impl(PyObject *module, void *handle, int flags)$/;" f file: +msvcrt_putch PC/clinic/msvcrtmodule.c.h /^msvcrt_putch(PyObject *module, PyObject *arg)$/;" f +msvcrt_putch_impl PC/msvcrtmodule.c /^msvcrt_putch_impl(PyObject *module, char char_value)$/;" f file: +msvcrt_putwch PC/clinic/msvcrtmodule.c.h /^msvcrt_putwch(PyObject *module, PyObject *arg)$/;" f +msvcrt_putwch_impl PC/msvcrtmodule.c /^msvcrt_putwch_impl(PyObject *module, int unicode_char)$/;" f file: +msvcrt_set_error_mode PC/clinic/msvcrtmodule.c.h /^msvcrt_set_error_mode(PyObject *module, PyObject *arg)$/;" f +msvcrt_set_error_mode_impl PC/msvcrtmodule.c /^msvcrt_set_error_mode_impl(PyObject *module, int mode)$/;" f file: +msvcrt_setmode PC/clinic/msvcrtmodule.c.h /^msvcrt_setmode(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +msvcrt_setmode_impl PC/msvcrtmodule.c /^msvcrt_setmode_impl(PyObject *module, int fd, int flags)$/;" f file: +msvcrt_slots PC/msvcrtmodule.c /^static PyModuleDef_Slot msvcrt_slots[] = {$/;" v file: +msvcrt_ungetch PC/clinic/msvcrtmodule.c.h /^msvcrt_ungetch(PyObject *module, PyObject *arg)$/;" f +msvcrt_ungetch_impl PC/msvcrtmodule.c /^msvcrt_ungetch_impl(PyObject *module, char char_value)$/;" f file: +msvcrt_ungetwch PC/clinic/msvcrtmodule.c.h /^msvcrt_ungetwch(PyObject *module, PyObject *arg)$/;" f +msvcrt_ungetwch_impl PC/msvcrtmodule.c /^msvcrt_ungetwch_impl(PyObject *module, int unicode_char)$/;" f file: +msvcrtmodule PC/msvcrtmodule.c /^static struct PyModuleDef msvcrtmodule = {$/;" v typeref:struct:PyModuleDef file: +mswindows Lib/test/test_http_cookiejar.py /^mswindows = (sys.platform == "win32")$/;" v +mswindows Lib/test/test_subprocess.py /^mswindows = (sys.platform == "win32")$/;" v +mt_allocated Modules/_pickle.c /^ size_t mt_allocated;$/;" m struct:__anon451 file: +mt_interact Lib/telnetlib.py /^ def mt_interact(self):$/;" m class:Telnet +mt_mask Modules/_pickle.c /^ size_t mt_mask;$/;" m struct:__anon451 file: +mt_table Modules/_pickle.c /^ PyMemoEntry *mt_table;$/;" m struct:__anon451 file: +mt_used Modules/_pickle.c /^ size_t mt_used;$/;" m struct:__anon451 file: +mtime Lib/gzip.py /^ def mtime(self):$/;" m class:GzipFile +mtime Lib/importlib/metadata/__init__.py /^ def mtime(self):$/;" m class:FastPath +mtime Lib/tarfile.py /^ mtime = 'Time of last modification.',$/;" v class:TarInfo +mtime Lib/urllib/robotparser.py /^ def mtime(self):$/;" m class:RobotFileParser +mtime_ns Modules/posixmodule.c /^ long mtime_ns;$/;" m struct:__anon479 file: +mtime_s Modules/posixmodule.c /^ time_t mtime_s;$/;" m struct:__anon479 file: +mul Doc/includes/mp_pool.py /^def mul(a, b):$/;" f +mul Doc/includes/mp_workers.py /^def mul(a, b):$/;" f +mul Lib/operator.py /^def mul(a, b):$/;" f +mul Lib/test/_test_multiprocessing.py /^def mul(x, y):$/;" f +mul Lib/test/profilee.py /^def mul(a, b):$/;" f +mul Lib/test/test_concurrent_futures/executor.py /^def mul(x, y):$/;" f +mul Lib/test/test_concurrent_futures/test_as_completed.py /^def mul(x, y):$/;" f +mul Lib/test/test_concurrent_futures/test_wait.py /^def mul(x, y):$/;" f +mul Lib/test/test_list.py /^ def mul(a, b): return a * b$/;" f function:ListTest.test_overflow +mul_size_t Modules/_decimal/libmpdec/typearith.h /^mul_size_t(mpd_size_t a, mpd_size_t b)$/;" f +mul_size_t_overflow Modules/_decimal/libmpdec/typearith.h /^mul_size_t_overflow(mpd_size_t a, mpd_size_t b, mpd_size_t *overflow)$/;" f +mulmod_size_t Modules/_decimal/libmpdec/typearith.h /^mulmod_size_t(mpd_size_t a, mpd_size_t b, mpd_size_t m)$/;" f +mult Python/dtoa.c /^mult(Bigint *a, Bigint *b)$/;" f file: +multadd Python/dtoa.c /^multadd(Bigint *b, int m, int a) \/* multiply by m and add a *\/$/;" f file: +multi Lib/xmlrpc/client.py /^ multi = MultiCall(server)$/;" v +multi_interp_extensions_check Lib/test/support/import_helper.py /^def multi_interp_extensions_check(enabled=True):$/;" f +multi_line_start Parser/tokenizer.h /^ const char* multi_line_start; \/* pointer to start of first line of$/;" m struct:tok_state +multi_line_test Lib/test/test_io.py /^ def multi_line_test(self, f, enc):$/;" m class:TextIOWrapperTest +multibytecodec_clear Modules/cjkcodecs/multibytecodec.c /^multibytecodec_clear(MultibyteCodecObject *self)$/;" f file: +multibytecodec_dealloc Modules/cjkcodecs/multibytecodec.c /^multibytecodec_dealloc(MultibyteCodecObject *self)$/;" f file: +multibytecodec_decerror Modules/cjkcodecs/multibytecodec.c /^multibytecodec_decerror(const MultibyteCodec *codec,$/;" f file: +multibytecodec_encerror Modules/cjkcodecs/multibytecodec.c /^multibytecodec_encerror(const MultibyteCodec *codec,$/;" f file: +multibytecodec_encode Modules/cjkcodecs/multibytecodec.c /^multibytecodec_encode(const MultibyteCodec *codec,$/;" f file: +multibytecodec_methods Modules/cjkcodecs/multibytecodec.c /^static struct PyMethodDef multibytecodec_methods[] = {$/;" v typeref:struct:PyMethodDef file: +multibytecodec_slots Modules/cjkcodecs/multibytecodec.c /^static PyType_Slot multibytecodec_slots[] = {$/;" v file: +multibytecodec_spec Modules/cjkcodecs/multibytecodec.c /^static PyType_Spec multibytecodec_spec = {$/;" v file: +multibytecodec_traverse Modules/cjkcodecs/multibytecodec.c /^multibytecodec_traverse(MultibyteCodecObject *self, visitproc visit, void *arg)$/;" f file: +multibytecodec_type Modules/cjkcodecs/multibytecodec.c /^ PyTypeObject *multibytecodec_type;$/;" m struct:__anon321 file: +multicolumn Lib/pydoc.py /^ def multicolumn(self, list, format):$/;" f +multiline_sig Lib/test/inspect_fodder2.py /^multiline_sig = [$/;" v +multiline_test_comment Lib/idlelib/idle_test/test_format.py /^ multiline_test_comment = ($/;" v class:FormatEventTest +multiline_test_string Lib/idlelib/idle_test/test_format.py /^ multiline_test_string = ($/;" v class:FormatEventTest +multimetaclass Lib/test/test_descr.py /^ class multimetaclass(autoproperty, autosuper):$/;" c function:ClassPropertiesAndMethods.test_metaclass +multimode Lib/statistics.py /^def multimode(data):$/;" f +multipass Lib/test/_test_multiprocessing.py /^ def multipass(cls, barrier, results, n):$/;" m class:_TestBarrier +multipass Lib/test/lock_tests.py /^ def multipass(self, results, n):$/;" m class:BarrierTests +multiple_levels Lib/test/test_positional_only_arg.py /^ def multiple_levels():$/;" f function:PositionalOnlyTestCase.test_annotations_in_closures +multiple_tools Python/instrumentation.c /^multiple_tools(_Py_LocalMonitors *m)$/;" f file: +multiple_use_keys Lib/importlib/metadata/_adapters.py /^ multiple_use_keys = set($/;" v class:Message +multiply Lib/_pydecimal.py /^ def multiply(self, a, b):$/;" m class:Context +multiply_by_denominator Modules/_decimal/_decimal.c /^multiply_by_denominator(PyObject *v, PyObject *r, PyObject *context)$/;" f file: +multiply_int_timedelta Modules/_datetimemodule.c /^multiply_int_timedelta(PyObject *intobj, PyDateTime_Delta *delta)$/;" f file: +multiply_truedivide_timedelta_float Modules/_datetimemodule.c /^multiply_truedivide_timedelta_float(PyDateTime_Delta *delta, PyObject *floatobj, int op)$/;" f file: +multiprocessing Lib/test/test_re.py /^ multiprocessing = None$/;" v +multiprocessing Lib/test/test_socket.py /^ multiprocessing = False$/;" v +multiprocessing_exec Modules/_multiprocessing/multiprocessing.c /^multiprocessing_exec(PyObject *module)$/;" f file: +multiprocessing_module Modules/_multiprocessing/multiprocessing.c /^static struct PyModuleDef multiprocessing_module = {$/;" v typeref:struct:PyModuleDef file: +multiprocessing_slots Modules/_multiprocessing/multiprocessing.c /^static PyModuleDef_Slot multiprocessing_slots[] = {$/;" v file: +multislice Lib/test/test_buffer.py /^def multislice(lst, slices):$/;" f +multislice_assign Lib/test/test_buffer.py /^def multislice_assign(llst, rlst, lslices, rslices):$/;" f +must_advance Modules/_sre/sre.h /^ int must_advance;$/;" m struct:__anon458 +must_stop Lib/test/libregrtest/runtest.py /^ def must_stop(self, fail_fast: bool, fail_env_changed: bool) -> bool:$/;" m class:TestResult +must_stop Lib/test/libregrtest/runtest.py /^ def must_stop(state):$/;" m class:State +mut Lib/test/test_asyncio/test_futures.py /^ def mut(f):$/;" f function:BaseFutureDoneCallbackTests.test_schedule_callbacks_list_mutation_1 +mut Python/thread_pthread.h /^ pthread_mutex_t mut;$/;" m struct:__anon692 +mutablemapping_add_pairs Objects/odictobject.c /^mutablemapping_add_pairs(PyObject *self, PyObject *pairs)$/;" f file: +mutablemapping_update Objects/odictobject.c /^mutablemapping_update(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +mutablemapping_update_arg Objects/odictobject.c /^mutablemapping_update_arg(PyObject *self, PyObject *arg)$/;" f file: +mutate Lib/test/test_dict.py /^ def mutate(d):$/;" f function:DictTest.test_reentrant_insertion +mutate Lib/test/test_io.py /^ def mutate(bufio, pos1, pos2):$/;" f function:BufferedRandomTest.test_write_rewind_write +mutate_dict Lib/test/test_dict.py /^ mutate_dict = None$/;" v class:DictTest.test_mutating_lookup.NastyKey +mutated_name Lib/test/test_importlib/test_lazy.py /^ mutated_name = 'changed'$/;" v class:TestingImporter +mutating Lib/test/test_codeccallbacks.py /^ def mutating(exc):$/;" f function:CodecCallbackTest.test_mutatingdecodehandler +mutating_cmp Lib/test/test_sort.py /^ def mutating_cmp(x, y):$/;" f function:TestBugs.test_undetected_mutation +mutatingtuple Lib/test/test_itertools.py /^ def mutatingtuple(tuple1, f, tuple2):$/;" f function:RegressionTests.test_sf_793826 +mutation Lib/test/test_memoryio.py /^ def mutation(memio):$/;" f function:CBytesIOTest.test_cow_setstate +mutation Lib/test/test_memoryio.py /^ def mutation(memio):$/;" f function:CBytesIOTest.test_cow_truncate +mutation Lib/test/test_memoryio.py /^ def mutation(memio):$/;" f function:CBytesIOTest.test_cow_write +mutex Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_mutex_destroy(pthread_mutex_t *mutex);$/;" v +mutex Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_mutex_lock(pthread_mutex_t *mutex);$/;" v +mutex Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_mutex_trylock(pthread_mutex_t *mutex);$/;" v +mutex Include/cpython/pthread_stubs.h /^PyAPI_FUNC(int) pthread_mutex_unlock(pthread_mutex_t *mutex);$/;" v +mutex Include/internal/pycore_atexit.h /^ PyThread_type_lock mutex;$/;" m struct:_atexit_runtime_state +mutex Include/internal/pycore_gil.h /^ PyMUTEX_T mutex;$/;" m struct:_gil_runtime_state +mutex Include/internal/pycore_import.h /^ PyThread_type_lock mutex;$/;" m struct:_import_runtime_state::__anon136 +mutex Include/internal/pycore_import.h /^ PyThread_type_lock mutex;$/;" m struct:_import_state::__anon137 +mutex Include/internal/pycore_pymem.h /^ PyThread_type_lock mutex;$/;" m struct:_pymem_allocators +mutex Include/internal/pycore_runtime.h /^ PyThread_type_lock mutex;$/;" m struct:pyruntimestate::__anon162 +mutex Include/internal/pycore_runtime.h /^ PyThread_type_lock mutex;$/;" m struct:pyruntimestate::_xidregistry +mutex Include/internal/pycore_runtime.h /^ PyThread_type_lock mutex;$/;" m struct:pyruntimestate::pyinterpreters +mutex Include/internal/pycore_runtime.h /^ PyThread_type_lock mutex;$/;" m struct:_getargs_runtime_state +mutex Modules/_xxinterpchannelsmodule.c /^ PyThread_type_lock mutex;$/;" m struct:_channel file: +mutex Modules/_xxinterpchannelsmodule.c /^ PyThread_type_lock mutex;$/;" m struct:_channels file: +mv Objects/typeobject.c /^ PyObject *mv;$/;" m struct:_PyBufferWrapper file: +mview Objects/memoryobject.c /^ PyObject *mview; \/* cached memoryview *\/$/;" m struct:unpacker file: +myComparison Lib/test/list_tests.py /^ def myComparison(x,y):$/;" f function:CommonTest.test_sort +myCustomFormatter Lib/test/test_logging.py /^class myCustomFormatter:$/;" c +myRequests Lib/test/test_xmlrpc.py /^ myRequests = []$/;" v class:BaseKeepaliveServerTestCase.RequestHandler +my_CharacterDataHandler Modules/pyexpat.c /^my_CharacterDataHandler(void *userData, const XML_Char *data, int len)$/;" f file: +my_DefaultHandlerExpand Modules/pyexpat.c 653;" d file: +my_ElementDeclHandler Modules/pyexpat.c /^my_ElementDeclHandler(void *userData,$/;" f file: +my_StartElementHandler Modules/pyexpat.c /^my_StartElementHandler(void *userData,$/;" f file: +my_a Lib/test/test_dataclasses.py /^ def my_a(self):$/;" m class:TestCase.test_helper_asdict_namedtuple_derived.T +my_basename Objects/exceptions.c /^my_basename(PyObject *name)$/;" f file: +my_basic_config Lib/test/test_logging.py /^ def my_basic_config(*a, **kw):$/;" f function:BasicConfigTest._test_log +my_breakpointhook Lib/test/test_builtin.py /^ def my_breakpointhook():$/;" f function:TestBreakpoint.test_breakpoint_with_passthru_error +my_cm Lib/test/test_contextlib.py /^ def my_cm():$/;" f function:TestBaseExitStack.test_exit_exception_explicit_none_context +my_cm Lib/test/test_contextlib_async.py /^ async def my_cm():$/;" f function:TestAsyncExitStack.test_async_exit_exception_explicit_none_context +my_cm_with_exit_stack Lib/test/test_contextlib.py /^ def my_cm_with_exit_stack():$/;" f function:TestBaseExitStack.test_exit_exception_explicit_none_context +my_cm_with_exit_stack Lib/test/test_contextlib_async.py /^ async def my_cm_with_exit_stack():$/;" f function:TestAsyncExitStack.test_async_exit_exception_explicit_none_context +my_cmp Lib/test/test_sort.py /^ def my_cmp(x, y):$/;" f function:TestDecorateSortUndecorate.test_decorated +my_cmp Lib/test/test_sort.py /^ def my_cmp(x, y):$/;" f function:TestDecorateSortUndecorate.test_reverse_stability +my_cmp_reversed Lib/test/test_sort.py /^ def my_cmp_reversed(x, y):$/;" f function:TestDecorateSortUndecorate.test_reverse_stability +my_eggs Modules/_ctypes/_ctypes_test.c /^EGG my_eggs[1] = {$/;" v +my_fgets Parser/myreadline.c /^my_fgets(PyThreadState* tstate, char *buf, int len, FILE *fp)$/;" f file: +my_file_and_modname Lib/test/test_trace.py /^def my_file_and_modname():$/;" f +my_free Modules/_ctypes/_ctypes_test.c /^EXPORT(void)my_free(void *ptr)$/;" f +my_func Lib/test/test_tempfile.py /^ def my_func(dir)->str:$/;" f function:TestNamedTemporaryFile.test_correct_finalizer_work_if_already_deleted +my_func Lib/test/test_tempfile.py /^ def my_func(dir):$/;" f function:TestNamedTemporaryFile.test_del_by_finalizer +my_function Lib/test/test_xmlrpc.py /^ def my_function():$/;" m class:http_server.MyXMLRPCServer +my_function Lib/test/test_xmlrpc.py /^ def my_function():$/;" f function:http_multi_server +my_getallocationgranularity Modules/mmapmodule.c /^my_getallocationgranularity (void)$/;" f file: +my_getallocationgranularity Modules/mmapmodule.c 75;" d file: +my_getpagesize Modules/mmapmodule.c /^my_getpagesize(void)$/;" f file: +my_getpagesize Modules/mmapmodule.c 77;" d file: +my_handler Lib/test/test_asyncio/test_events.py /^ def my_handler():$/;" f function:EventLoopTestsMixin.test_add_signal_handler +my_handler Lib/test/test_asyncio/test_events.py /^ def my_handler():$/;" f function:EventLoopTestsMixin.test_signal_handling_while_selecting +my_handler Lib/test/test_asyncio/test_events.py /^ def my_handler(*args):$/;" f function:EventLoopTestsMixin.test_signal_handling_args +my_handler Lib/test/test_threadsignals.py /^ def my_handler(signal, frame):$/;" f function:ThreadSignals.acquire_retries_on_intr +my_handler Lib/test/test_threadsignals.py /^ def my_handler(signum, frame):$/;" f function:ThreadSignals.test_interrupted_timed_acquire +my_import Lib/test/test_ast.py /^ def my_import(name, *args, **kw):$/;" f function:ModuleStateTests.test_sys_modules +my_insert Lib/idlelib/redirector.py /^ def my_insert(*args):$/;" f function:_widget_redirector +my_int Lib/test/test_ctypes/test_arrays.py /^ class my_int(c_int):$/;" c function:ArrayTestCase.test_cache +my_logger Lib/test/test_warnings/__init__.py /^ def my_logger(message, category, filename, lineno, file=None, line=None):$/;" f function:CatchWarningTests.test_record_override_showwarning_before +my_logger Lib/test/test_warnings/__init__.py /^ def my_logger(message, category, filename, lineno, file=None, line=None):$/;" f function:CatchWarningTests.test_record_override_showwarning_inside +my_logging_levels Lib/test/test_logging.py /^my_logging_levels = {$/;" v +my_method Lib/test/test_concurrent_futures/executor.py /^ def my_method(self):$/;" m class:MyObject +my_mkdir Lib/test/test_pathlib.py /^ def my_mkdir(path, mode=0o777):$/;" f function:_BasePathTest.test_mkdir_concurrent_parent_creation +my_qsort Modules/_ctypes/_ctypes_test.c /^EXPORT(void) my_qsort(void *base, size_t num, size_t width, int(*compare)(const void*, const void*))$/;" f +my_spams Modules/_ctypes/_ctypes_test.c /^SPAM my_spams[2] = {$/;" v +my_sqrt Modules/_ctypes/_ctypes_test.c /^EXPORT(double) my_sqrt(double a)$/;" f +my_strchr Modules/_ctypes/_ctypes_test.c /^EXPORT(char *)my_strchr(const char *s, int c)$/;" f +my_strdup Modules/_ctypes/_ctypes_test.c /^EXPORT(char *) my_strdup(char *src)$/;" f +my_strtok Modules/_ctypes/_ctypes_test.c /^EXPORT(char *)my_strtok(char *token, const char *delim)$/;" f +my_unicode Lib/test/test_re.py /^ class my_unicode(str): pass$/;" c function:ReTests.test_bug_764548 +my_url_handler Lib/test/test_pydoc.py /^ def my_url_handler(url, content_type):$/;" f function:PydocServerTest.test_server +my_wcsdup Modules/_ctypes/_ctypes_test.c /^EXPORT(wchar_t *) my_wcsdup(wchar_t *src)$/;" f +mybytes Lib/test/test_hmac.py /^ class mybytes(bytes):$/;" c function:CompareDigestTestCase._test_compare_digest +myclasses Lib/test/pickletester.py /^myclasses = [MyInt, MyFloat,$/;" v +mycmp Lib/test/test_functools.py /^ def mycmp(x, y):$/;" f function:TestCmpToKey.test_hash +mycmp Lib/test/test_functools.py /^ def mycmp(x, y):$/;" f function:TestCmpToKey.test_sort_int +mycmp Lib/test/test_functools.py /^ def mycmp(x, y):$/;" f function:TestCmpToKey.test_sort_int_str +mycoll Lib/test/test_sqlite3/test_hooks.py /^ def mycoll(x, y):$/;" f function:CollationTests.test_collation_is_used +mycoll Lib/test/test_sqlite3/test_hooks.py /^ def mycoll(x, y):$/;" f function:CollationTests.test_collation_returns_large_integer +mycontext Lib/test/test_contextlib.py /^ class mycontext(ContextDecorator):$/;" c function:TestContextDecorator.test_typo_enter +mycontext Lib/test/test_contextlib.py /^ class mycontext(ContextDecorator):$/;" c function:TestContextDecorator.test_typo_exit +mycontext Lib/test/test_contextlib.py /^ class mycontext(somecontext, ContextDecorator):$/;" c function:TestContextDecorator.test_contextdecorator_as_mixin +mycontext Lib/test/test_contextlib.py /^class mycontext(ContextDecorator):$/;" c +mydialect Lib/test/test_csv.py /^ class mydialect(csv.Dialect):$/;" c function:TestDialectValidity.test_invalid_chars.create_invalid +mydialect Lib/test/test_csv.py /^ class mydialect(csv.Dialect):$/;" c function:TestDialectRegistry.test_register_kwargs_override +mydialect Lib/test/test_csv.py /^ class mydialect(csv.Dialect):$/;" c function:TestDialectValidity.test_delimiter +mydialect Lib/test/test_csv.py /^ class mydialect(csv.Dialect):$/;" c function:TestDialectValidity.test_escapechar +mydialect Lib/test/test_csv.py /^ class mydialect(csv.Dialect):$/;" c function:TestDialectValidity.test_lineterminator +mydialect Lib/test/test_csv.py /^ class mydialect(csv.Dialect):$/;" c function:TestDialectValidity.test_quoting +mydict Lib/test/mapping_tests.py /^ class mydict(self.type2test):$/;" c function:TestHashMappingProtocol.test_fromkeys +mydict Lib/test/mapping_tests.py /^ class mydict(self.type2test):$/;" c function:TestMappingProtocol.test_fromkeys +mydict Lib/test/test_descr.py /^ class mydict(dict):$/;" c function:.test_hash_inheritance +mydict Lib/test/test_dict.py /^ class mydict(dict):$/;" c function:DictTest.test_fromkeys +myerrno Include/cpython/pyerrors.h /^ PyObject *myerrno;$/;" m struct:__anon186 +myexceltsv Lib/test/test_csv.py /^ class myexceltsv(csv.Dialect):$/;" c function:TestDialectRegistry.test_incomplete_dialect +myexceltsv Lib/test/test_csv.py /^ class myexceltsv(csv.excel):$/;" c function:TestDialectRegistry.test_registry +myfactory Lib/test/test_xml_etree.py /^ def myfactory(tag, attrib):$/;" f function:TreeBuilderTest.test_element_factory +myfileobj Lib/gzip.py /^ myfileobj = None$/;" v class:GzipFile +myformatwarning Lib/test/test_warnings/__init__.py /^ def myformatwarning(message, category, filename, lineno, text):$/;" f function:WarningsDisplayTests.test_formatwarning_override +myfree Lib/test/test_code.py /^ def myfree(ptr):$/;" m class:CodeLocationTest +myfunc Lib/test/test_capi/test_watchers.py /^ def myfunc():$/;" f function:TestFuncWatchers.test_multiple_watchers.second_watcher +myfunc Lib/test/test_capi/test_watchers.py /^ def myfunc():$/;" f function:TestFuncWatchers.test_watcher_raises_error.watcher +myfunc Lib/test/test_capi/test_watchers.py /^ def myfunc():$/;" f function:TestFuncWatchers.test_func_events_dispatched.watcher +myfunc Lib/test/test_capi/test_watchers.py /^ def myfunc():$/;" f function:TestFuncWatchers.test_dealloc_watcher_raises_error +myfunc Lib/test/test_unittest/testmock/testhelpers.py /^ def myfunc(x, y): pass$/;" f function:SpecSignatureTest.test_spec_inspect_signature +mygen Lib/test/test_sqlite3/test_dbapi.py /^ def mygen():$/;" f function:CursorTests.test_execute_many_generator +mygetattr Lib/test/test_descr.py /^ def mygetattr(self, name):$/;" f function:.test_dynamics +myhash Tools/unicode/makeunicodedata.py /^def myhash(s, magic):$/;" f +myint Lib/test/pickletester.py /^class myint(int):$/;" c +myint Lib/test/test_fractions.py /^ class myint(int):$/;" c function:FractionTest.test_int_subclass +myint Lib/test/test_long.py /^ class myint(int):$/;" c function:LongTest.test_as_integer_ratio +myint Lib/test/test_long.py /^ class myint(int):$/;" c function:LongTest.test_from_bytes +myint2 Lib/test/test_long.py /^ class myint2(int):$/;" c function:LongTest.test_from_bytes +myint3 Lib/test/test_long.py /^ class myint3(int):$/;" c function:LongTest.test_from_bytes +mykey Lib/test/test_descr.py /^ mykey = 'from Base'$/;" v class:MiscTests.test_type_lookup_mro_reference.Base +mykey Lib/test/test_descr.py /^ mykey = 'from Base2'$/;" v class:MiscTests.test_type_lookup_mro_reference.Base2 +mykey2 Lib/test/test_descr.py /^ mykey2 = 'from Base'$/;" v class:MiscTests.test_type_lookup_mro_reference.Base +mykey2 Lib/test/test_descr.py /^ mykey2 = 'from Base2'$/;" v class:MiscTests.test_type_lookup_mro_reference.Base2 +mylist Lib/test/test_descr.py /^ class mylist(list):$/;" c function:.test_hash_inheritance +myobj Lib/test/test_slice.py /^ class myobj(): pass$/;" c function:SliceTest.test_cycle +mypatch Lib/test/test_unittest/testmock/testpatch.py /^ class mypatch(_patch):$/;" c function:PatchTest.test_stopall_lifo.get_patch +mypeek Lib/test/test_httplib.py /^ def mypeek(n=-1):$/;" f function:ExtendedReadTest.test_peek +myprintf Modules/_ctypes/_ctypes_test.c /^EXPORT(int)myprintf(char *fmt, ...)$/;" f +myreplace Lib/test/multibytecodec_support.py /^ def myreplace(exc):$/;" f function:TestBase.test_callback_None_index +myreplace Lib/test/multibytecodec_support.py /^ def myreplace(exc):$/;" f function:TestBase.test_callback_backward_index +myreplace Lib/test/multibytecodec_support.py /^ def myreplace(exc):$/;" f function:TestBase.test_callback_forward_index +myreplace Lib/test/multibytecodec_support.py /^ def myreplace(exc):$/;" f function:TestBase.test_callback_index_outofbound +myreplace Lib/test/multibytecodec_support.py /^ def myreplace(exc):$/;" f function:TestBase.test_callback_long_index +myreplace Lib/test/multibytecodec_support.py /^ def myreplace(exc):$/;" f function:TestBase.test_callback_returns_bytes +myreplace Lib/test/multibytecodec_support.py /^ def myreplace(exc):$/;" f function:TestBase.test_callback_wrong_objects +myrepr Lib/idlelib/debugobj.py /^myrepr = Repr()$/;" v +myrights Lib/imaplib.py /^ def myrights(self, mailbox):$/;" m class:IMAP4 +myself Lib/test/test_descr.py /^ def myself(cls): return cls$/;" m class:ClassPropertiesAndMethods.test_metaclass._metaclass +myset Lib/test/test_contains.py /^class myset(base_set):$/;" c +mysetattr Lib/test/test_descr.py /^ def mysetattr(self, name, value):$/;" f function:.test_dynamics +mystr Lib/test/test_configparser.py /^ class mystr(str):$/;" c function:.test_set_string_types +mystr Lib/test/test_hmac.py /^ class mystr(str):$/;" c function:CompareDigestTestCase._test_compare_digest +mysuper Lib/test/test_descr.py /^ class mysuper(super):$/;" c function:.test_supers +mysuper Lib/test/test_super.py /^ class mysuper(super):$/;" c function:TestSuper.test_super_subclass___class__ +mytype Lib/test/inspect_stringized_annotations.py /^ mytype = int$/;" v class:MyClassWithLocalAnnotations +mywrite Lib/idlelib/squeezer.py /^ def mywrite(s, tags=(), write=editwin.write):$/;" f function:Squeezer.__init__ +n Lib/pickletools.py /^ n=UP_TO_NEWLINE,$/;" v +n Lib/pickletools.py /^ n=UP_TO_NEWLINE,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT1,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT4U,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT8U,$/;" v +n Lib/pickletools.py /^ n=UP_TO_NEWLINE,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT1,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT4,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT4U,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT8U,$/;" v +n Lib/pickletools.py /^ n=UP_TO_NEWLINE,$/;" v +n Lib/pickletools.py /^ n=8,$/;" v +n Lib/pickletools.py /^ n=1,$/;" v +n Lib/pickletools.py /^ n=2,$/;" v +n Lib/pickletools.py /^ n=4,$/;" v +n Lib/pickletools.py /^ n=8,$/;" v +n Lib/pickletools.py /^ n=4,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT1,$/;" v +n Lib/pickletools.py /^ n=TAKEN_FROM_ARGUMENT4,$/;" v +n Lib/test/test_gc.py /^ n = 0$/;" v class:GCTests.test_trashcan.Ouch +n Lib/test/test_index.py /^ n = operator.index(bad_int)$/;" v class:BaseTestCase.test_index_returns_int_subclass.BadInt2 +n Lib/test/test_int.py /^ n = IntSubclass(good_int)$/;" v class:IntTestCases.test_int_returns_int_subclass.TruncReturnsIntSubclass +n Lib/test/test_int.py /^ n = int(bad_int)$/;" v class:IntTestCases.test_int_returns_int_subclass.TruncReturnsIntSubclass +n Lib/test/test_int.py /^ n = int(good_int)$/;" v class:IntTestCases.test_int_returns_int_subclass.TruncReturnsIntSubclass +n Lib/test/test_iterlen.py /^n = 10$/;" v +n Objects/listobject.c /^ int n;$/;" m struct:s_MergeState file: +n Tools/clinic/clinic.py /^ n = n.value$/;" v class:DSLParser.state_parameter.DetectBadNodes +n Tools/i18n/makelocalealias.py /^ n = len(data)$/;" v +nDefaultAtts Modules/expat/xmlparse.c /^ int nDefaultAtts;$/;" m struct:__anon616 file: +n_bigtens Python/dtoa.c 1132;" d file: +n_decimal Python/formatter_unicode.c /^ Py_ssize_t n_decimal; \/* 0 if only an integer *\/$/;" m struct:__anon676 file: +n_digits Python/formatter_unicode.c /^ Py_ssize_t n_digits; \/* The number of digits before a decimal$/;" m struct:__anon676 file: +n_fds Modules/selectmodule.c /^ int n_fds;$/;" m struct:__anon575 file: +n_files_str Tools/patchcheck/patchcheck.py /^def n_files_str(count):$/;" f +n_frames Lib/test/pickletester.py /^ n_frames = (len(pickled) - 1) \/\/ self.FRAME_SIZE_TARGET + 1$/;" v class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +n_grouped_digits Python/formatter_unicode.c /^ Py_ssize_t n_grouped_digits; \/* Space taken up by the digits, including$/;" m struct:__anon676 file: +n_in_sequence Include/structseq.h /^ int n_in_sequence;$/;" m struct:PyStructSequence_Desc +n_instances Lib/test/_test_multiprocessing.py /^ n_instances = 0$/;" v class:CountedObject +n_keyword_lists Parser/parser.c /^static const int n_keyword_lists = 9;$/;" v file: +n_keyword_lists Parser/pegen.h /^ int n_keyword_lists;$/;" m struct:__anon657 +n_lpadding Python/formatter_unicode.c /^ Py_ssize_t n_lpadding;$/;" m struct:__anon676 file: +n_min_width Python/formatter_unicode.c /^ Py_ssize_t n_min_width; \/* The min_width we used when we computed$/;" m struct:__anon676 file: +n_prefix Python/formatter_unicode.c /^ Py_ssize_t n_prefix;$/;" m struct:__anon676 file: +n_remainder Python/formatter_unicode.c /^ Py_ssize_t n_remainder; \/* Digits in decimal and\/or exponent part,$/;" m struct:__anon676 file: +n_rpadding Python/formatter_unicode.c /^ Py_ssize_t n_rpadding;$/;" m struct:__anon676 file: +n_sign Python/formatter_unicode.c /^ Py_ssize_t n_sign; \/* number of digits needed for sign (0\/1) *\/$/;" m struct:__anon676 file: +n_spadding Python/formatter_unicode.c /^ Py_ssize_t n_spadding;$/;" m struct:__anon676 file: +n_waiting Lib/asyncio/locks.py /^ def n_waiting(self):$/;" m class:Barrier +n_waiting Lib/multiprocessing/managers.py /^ def n_waiting(self):$/;" m class:BarrierProxy +n_waiting Lib/threading.py /^ def n_waiting(self):$/;" m class:Barrier +naive_dict_check Lib/test/test_typing.py /^ def naive_dict_check(obj, tp):$/;" f function:GenericTests.test_naive_runtime_checks +naive_dt Lib/test/test_email/test_utils.py /^ naive_dt = datetime.datetime(*dateargs)$/;" v class:DateTimeTests +naive_generic_check Lib/test/test_typing.py /^ def naive_generic_check(obj, tp):$/;" f function:GenericTests.test_naive_runtime_checks +naive_list_base_check Lib/test/test_typing.py /^ def naive_list_base_check(obj, tp):$/;" f function:GenericTests.test_naive_runtime_checks +name Doc/tools/extensions/asdl_highlight.py /^ name = "ASDL"$/;" v class:ASDLLexer +name Doc/tools/extensions/peg_highlight.py /^ name = "PEG"$/;" v class:PEGLexer +name Doc/tools/extensions/pyspecific.py /^ name = 'pydoc-topics'$/;" v class:PydocTopicsBuilder +name Include/cpython/descrobject.h /^ const char *name;$/;" m struct:wrapperbase +name Include/cpython/import.h /^ const char *name; \/* ASCII encoded string *\/$/;" m struct:_frozen +name Include/cpython/import.h /^ const char *name; \/* ASCII encoded string *\/$/;" m struct:_inittab +name Include/cpython/import.h /^PyAPI_FUNC(PyObject *) _PyImport_GetModuleId(_Py_Identifier *name);$/;" v +name Include/cpython/pyerrors.h /^ PyObject *name;$/;" m struct:__anon183 +name Include/cpython/pyerrors.h /^ PyObject *name;$/;" m struct:__anon188 +name Include/cpython/pyerrors.h /^ PyObject *name;$/;" m struct:__anon189 +name Include/descrobject.h /^ const char *name;$/;" m struct:PyGetSetDef +name Include/descrobject.h /^ const char *name;$/;" m struct:PyMemberDef +name Include/import.h /^ PyObject *name$/;" v +name Include/import.h /^PyAPI_FUNC(PyObject *) PyImport_GetModule(PyObject *name);$/;" v +name Include/import.h /^PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name);$/;" v +name Include/internal/pycore_ast.h /^ expr_ty name;$/;" m struct:_stmt::__anon51::__anon58 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_excepthandler::__anon105::__anon106 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_pattern::__anon107::__anon113 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_pattern::__anon107::__anon114 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_stmt::__anon51::__anon52 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_stmt::__anon51::__anon53 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_stmt::__anon51::__anon54 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_type_param::__anon118::__anon119 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_type_param::__anon118::__anon120 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_type_param::__anon118::__anon121 +name Include/internal/pycore_ast.h /^ identifier name;$/;" m struct:_alias +name Include/internal/pycore_ast_state.h /^ PyObject *name;$/;" m struct:ast_state +name Include/internal/pycore_code.h /^ PyObject *name;$/;" m struct:_PyCodeConstructor +name Include/internal/pycore_getopt.h /^ const wchar_t *name;$/;" m struct:__anon158 +name Include/internal/pycore_import.h /^ const char *name; \/* ASCII encoded string *\/$/;" m struct:_module_alias +name Include/internal/pycore_typeobject.h /^ PyObject *name; \/\/ reference to exactly a str or None$/;" m struct:type_cache_entry +name Include/moduleobject.h /^ PyObject *name$/;" v +name Include/object.h /^ const char* name;$/;" m struct:__anon253 +name Include/pyhash.h /^ const char *name;$/;" m struct:__anon261 +name Include/structseq.h /^ const char *name;$/;" m struct:PyStructSequence_Desc +name Include/structseq.h /^ const char *name;$/;" m struct:PyStructSequence_Field +name Lib/_pyio.py /^ def name(self):$/;" m class:TextIOWrapper +name Lib/_pyio.py /^ def name(self):$/;" m class:_BufferedIOMixin +name Lib/configparser.py /^ def name(self):$/;" m class:SectionProxy +name Lib/email/headerregistry.py /^ def name(self):$/;" m class:BaseHeader +name Lib/enum.py /^ def name(self):$/;" m class:Enum +name Lib/hmac.py /^ def name(self):$/;" m class:HMAC +name Lib/idlelib/run.py /^ def name(self):$/;" m class:StdioFile +name Lib/importlib/metadata/__init__.py /^ name = None$/;" v class:DistributionFinder.Context +name Lib/importlib/metadata/__init__.py /^ def name(self):$/;" m class:Distribution +name Lib/importlib/metadata/__init__.py /^ def name(self):$/;" m class:PackageNotFoundError +name Lib/importlib/resources/_adapters.py /^ def name(self):$/;" m class:CompatibilityFiles.ChildPath +name Lib/importlib/resources/_adapters.py /^ def name(self):$/;" m class:CompatibilityFiles.OrphanPath +name Lib/importlib/resources/_adapters.py /^ def name(self):$/;" m class:CompatibilityFiles.SpecPath +name Lib/importlib/resources/abc.py /^ def name(self) -> str:$/;" m class:Traversable +name Lib/importlib/resources/readers.py /^ def name(self):$/;" m class:MultiplexedPath +name Lib/importlib/resources/simple.py /^ def name(self):$/;" m class:SimpleReader +name Lib/inspect.py /^ def name(self):$/;" m class:Parameter +name Lib/lib2to3/pytree.py /^ name = None # Optional name used to store match in results dict$/;" v class:BasePattern +name Lib/logging/__init__.py /^ def name(self):$/;" m class:LoggerAdapter +name Lib/logging/__init__.py /^ name = property(get_name, set_name)$/;" v class:Handler +name Lib/multiprocessing/process.py /^ def name(self):$/;" m class:BaseProcess +name Lib/multiprocessing/process.py /^ def name(self, name):$/;" m class:BaseProcess +name Lib/multiprocessing/shared_memory.py /^ def name(self):$/;" m class:SharedMemory +name Lib/os.py /^ name = 'nt'$/;" v +name Lib/pathlib.py /^ def name(self):$/;" m class:PurePath +name Lib/pickletools.py /^ name='decimalnl_short',$/;" v +name Lib/pickletools.py /^ name='unicodestringnl',$/;" v +name Lib/pickletools.py /^ name='decimalnl_long',$/;" v +name Lib/pickletools.py /^ name="unicodestring1",$/;" v +name Lib/pickletools.py /^ name="unicodestring4",$/;" v +name Lib/pickletools.py /^ name="unicodestring8",$/;" v +name Lib/pickletools.py /^ name='stringnl',$/;" v +name Lib/pickletools.py /^ name="bytearray8",$/;" v +name Lib/pickletools.py /^ name="bytes1",$/;" v +name Lib/pickletools.py /^ name="bytes4",$/;" v +name Lib/pickletools.py /^ name="bytes8",$/;" v +name Lib/pickletools.py /^ name="string1",$/;" v +name Lib/pickletools.py /^ name="string4",$/;" v +name Lib/pickletools.py /^ name='floatnl',$/;" v +name Lib/pickletools.py /^ name='float8',$/;" v +name Lib/pickletools.py /^ name='uint1',$/;" v +name Lib/pickletools.py /^ name='uint2',$/;" v +name Lib/pickletools.py /^ name='uint4',$/;" v +name Lib/pickletools.py /^ name='uint8',$/;" v +name Lib/pickletools.py /^ name='int4',$/;" v +name Lib/pickletools.py /^ name="None",$/;" v +name Lib/pickletools.py /^ name="dict",$/;" v +name Lib/pickletools.py /^ name="frozenset",$/;" v +name Lib/pickletools.py /^ name="list",$/;" v +name Lib/pickletools.py /^ name="long1",$/;" v +name Lib/pickletools.py /^ name="long4",$/;" v +name Lib/pickletools.py /^ name="mark",$/;" v +name Lib/pickletools.py /^ name="set",$/;" v +name Lib/pickletools.py /^ name="stackslice",$/;" v +name Lib/pickletools.py /^ name="tuple",$/;" v +name Lib/pickletools.py /^ name='any',$/;" v +name Lib/pickletools.py /^ name='bool',$/;" v +name Lib/pickletools.py /^ name='buffer',$/;" v +name Lib/pickletools.py /^ name='bytearray',$/;" v +name Lib/pickletools.py /^ name='bytes',$/;" v +name Lib/pickletools.py /^ name='bytes_or_str',$/;" v +name Lib/pickletools.py /^ name='float',$/;" v +name Lib/pickletools.py /^ name='int',$/;" v +name Lib/pickletools.py /^ name='int_or_bool',$/;" v +name Lib/pickletools.py /^ name='str',$/;" v +name Lib/pydoc.py /^ name = getattr(thing, '__name__', None)$/;" v +name Lib/socket.py /^ def name(self):$/;" m class:SocketIO +name Lib/tarfile.py /^ name = 'Name of the archive member.',$/;" v class:TarInfo +name Lib/tempfile.py /^ def name(self):$/;" m class:SpooledTemporaryFile +name Lib/test/test_ctypes/test_pickling.py /^ name = 'PickleTest_%s' % proto$/;" v +name Lib/test/test_enum.py /^ name = 1$/;" v class:TestSpecial.test_enum_with_value_name.Huh +name Lib/test/test_enum.py /^ name = 2$/;" v class:TestUnique.test_unique_with_name.Sillier +name Lib/test/test_enum.py /^ name = 2$/;" v class:TestVerify.test_unique_with_name.Sillier +name Lib/test/test_enum.py /^ name = 3$/;" v class:TestSpecial.test_member_from_member_access.Di +name Lib/test/test_enum.py /^ name = 3$/;" v class:TestUnique.test_unique_with_name.Silly +name Lib/test/test_enum.py /^ name = 3$/;" v class:TestVerify.test_unique_with_name.Silly +name Lib/test/test_imaplib.py /^ name='%s serving' % self.server_class,$/;" v class:ThreadedNetworkedTests.make_server.MyServer +name Lib/test/test_imaplib.py /^ name=self._testMethodName+'-server',$/;" v class:NewIMAPTestsMixin._setup.TestTCPServer +name Lib/test/test_importlib/source/test_case_sensitivity.py /^ name = 'MoDuLe'$/;" v class:CaseSensitivityTest +name Lib/test/test_inspect.py /^ def name(self):$/;" m class:TestClassesAndFunctions.test_getmembers_static.A +name Lib/test/test_logging.py /^ name = 2$/;" v class:StreamWithIntName +name Lib/test/test_monitoring.py /^ name = "branch"$/;" v class:BranchRecorder +name Lib/test/test_monitoring.py /^ name = "jump"$/;" v class:JumpRecorder +name Lib/test/test_set.py /^ name = "both empty"$/;" v class:TestSubsetEqualEmpty +name Lib/test/test_set.py /^ name = "equal pair"$/;" v class:TestSubsetEqualNonEmpty +name Lib/test/test_set.py /^ name = "neither empty, neither contains"$/;" v class:TestSubsetNonOverlap +name Lib/test/test_set.py /^ name = "one a non-empty proper subset of other"$/;" v class:TestSubsetPartial +name Lib/test/test_set.py /^ name = "one empty, one non-empty"$/;" v class:TestSubsetEmptyNonEmpty +name Lib/test/test_shelve.py /^ name = f'TestProto{proto}MemShelve'$/;" v class:TestShelveFileBase +name Lib/test/test_socketserver.py /^ name='MyServer serving',$/;" v class:SocketServerTest.test_shutdown.MyHandler +name Lib/threading.py /^ def name(self):$/;" m class:Thread +name Lib/threading.py /^ def name(self, name):$/;" m class:Thread +name Lib/typing.py /^ def name(self) -> str:$/;" m class:IO +name Lib/xml/dom/minidom.py /^ name = None$/;" v class:DocumentType +name Lib/zipfile/_path/__init__.py /^ def name(self):$/;" m class:Path +name Modules/_csv.c /^ const char *name;$/;" m struct:__anon623 file: +name Modules/_ctypes/_ctypes_test.c /^ char *name;$/;" m struct:__anon512 file: +name Modules/_ctypes/_ctypes_test.c /^ char *name;$/;" m struct:__anon513 file: +name Modules/_datetimemodule.c /^ PyObject *name;$/;" m struct:__anon586 file: +name Modules/_decimal/_decimal.c /^ const char *name; \/* condition or signal name *\/$/;" m struct:__anon353 file: +name Modules/_decimal/_decimal.c /^struct int_constmap { const char *name; int val; };$/;" m struct:int_constmap file: +name Modules/_decimal/_decimal.c /^struct ssize_constmap { const char *name; mpd_ssize_t val; };$/;" m struct:ssize_constmap file: +name Modules/_io/textio.c /^ const char *name;$/;" m struct:__anon437 file: +name Modules/_localemodule.c /^ char* name;$/;" m struct:langinfo_constant file: +name Modules/_multiprocessing/semaphore.c /^ char *name;$/;" m struct:__anon470 file: +name Modules/_operator.c /^ PyObject *name;$/;" m struct:__anon476 file: +name Modules/_sqlite/module.c /^ const char *name;$/;" m struct:__anon354 file: +name Modules/_testcapimodule.c /^ char *name;$/;" m struct:__anon588 file: +name Modules/_testclinic.c /^ const char *name;$/;" m struct:__anon392 file: +name Modules/_tkinter.c /^ const char *name;$/;" m struct:CommandEvent file: +name Modules/_xxsubinterpretersmodule.c /^ const char *name;$/;" m struct:_sharedexception file: +name Modules/_xxsubinterpretersmodule.c /^ const char *name;$/;" m struct:_sharednsitem file: +name Modules/expat/expat.h /^ XML_Char *name;$/;" m struct:XML_cp +name Modules/expat/expat.h /^ const XML_LChar *name;$/;" m struct:__anon602 +name Modules/expat/xmlparse.c /^ KEY name;$/;" m struct:__anon607 file: +name Modules/expat/xmlparse.c /^ TAG_NAME name; \/* tagName in the API encoding *\/$/;" m struct:tag file: +name Modules/expat/xmlparse.c /^ XML_Char *name;$/;" m struct:attribute_id file: +name Modules/expat/xmlparse.c /^ const XML_Char *name;$/;" m struct:__anon611 file: +name Modules/expat/xmlparse.c /^ const XML_Char *name;$/;" m struct:__anon612 file: +name Modules/expat/xmlparse.c /^ const XML_Char *name;$/;" m struct:__anon616 file: +name Modules/expat/xmlparse.c /^ const XML_Char *name;$/;" m struct:prefix file: +name Modules/expat/xmltok.h /^ const char *name;$/;" m struct:__anon618 +name Modules/faulthandler.c /^ const char* name;$/;" m struct:__anon559 file: +name Modules/posixmodule.c /^ PyObject *name;$/;" m struct:__anon480 file: +name Modules/posixmodule.c /^ const char *name;$/;" m struct:constdef file: +name Modules/pyexpat.c /^ const char * name; \/* Error constant name, e.g. "XML_ERROR_NO_MEMORY" *\/$/;" m struct:ErrorInfo file: +name Modules/pyexpat.c /^ const char *name;$/;" m struct:HandlerInfo file: +name Modules/termios.c /^ char *name;$/;" m struct:constant file: +name Modules/unicodedata.c /^ const char *name;$/;" m struct:previous_version file: +name Objects/capsule.c /^ const char *name;$/;" m struct:__anon726 file: +name Objects/exceptions.c /^ const char *name;$/;" m struct:static_exception file: +name Objects/typeobject.c /^ PyObject *name;$/;" m struct:__anon718 file: +name Objects/typevarobject.c /^ PyObject *name;$/;" m struct:__anon713 file: +name Objects/typevarobject.c /^ PyObject *name;$/;" m struct:__anon714 file: +name Objects/typevarobject.c /^ PyObject *name;$/;" m struct:__anon715 file: +name Objects/typevarobject.c /^ PyObject *name;$/;" m struct:__anon716 file: +name PC/validate_ucrtbase.py /^ name = create_unicode_buffer(name_len)$/;" v +name Programs/_testembed.c /^ const char *name;$/;" m struct:TestCase file: +name Python/intrinsics.c /^make_typevar_with_bound(PyThreadState* Py_UNUSED(ignored), PyObject *name,$/;" v file: +name Python/intrinsics.c /^make_typevar_with_constraints(PyThreadState* Py_UNUSED(ignored), PyObject *name,$/;" v file: +name Tools/peg_generator/pegen/grammar_visualizer.py /^ def name(self, node: Rule) -> str:$/;" m class:ASTGrammarPrinter +name Tools/peg_generator/pegen/parser.py /^ def name(self) -> Optional[tokenize.TokenInfo]:$/;" m class:Parser +name Tools/scripts/summarize_stats.py /^ name = next(specialized)$/;" v +name2codepoint Lib/html/entities.py /^name2codepoint = {$/;" v +name2i Lib/pickletools.py /^name2i = {}$/;" v +nameCheck Lib/test/test_tempfile.py /^ def nameCheck(self, name, dir, pre, suf):$/;" m class:BaseTestCase +nameEnd Modules/expat/expat.h /^ XML_Index nameEnd; \/* Offset after the attribute name's last byte. *\/$/;" m struct:__anon599 +nameLength Modules/expat/xmltok.h /^ int(PTRFASTCALL *nameLength)(const ENCODING *, const char *);$/;" m struct:encoding +nameLength Modules/expat/xmltok_impl.c /^PREFIX(nameLength)(const ENCODING *enc, const char *ptr) {$/;" f file: +nameMatchesAscii Modules/expat/xmltok.h /^ int(PTRCALL *nameMatchesAscii)(const ENCODING *, const char *, const char *,$/;" m struct:encoding +nameMatchesAscii Modules/expat/xmltok_impl.c /^PREFIX(nameMatchesAscii)(const ENCODING *enc, const char *ptr1,$/;" f file: +namePages Modules/expat/nametab.h /^static const unsigned char namePages[] = {$/;" v +nameStart Modules/expat/expat.h /^ XML_Index nameStart; \/* Offset to beginning of the attribute name. *\/$/;" m struct:__anon599 +name_aliases Modules/unicodename_db.h /^static const unsigned int name_aliases[] = {$/;" v +name_carter Lib/test/test_ast.py /^ name_carter = ast.Name('carter', ast.Load())$/;" v class:ASTValidatorTests +name_from Include/cpython/pyerrors.h /^ PyObject *name_from;$/;" m struct:__anon183 +name_mapping_2to3 Modules/_pickle.c /^ PyObject *name_mapping_2to3;$/;" m struct:__anon448 file: +name_mapping_3to2 Modules/_pickle.c /^ PyObject *name_mapping_3to2;$/;" m struct:__anon448 file: +name_matches Objects/capsule.c /^name_matches(const char *name1, const char *name2) {$/;" f file: +name_op Lib/opcode.py /^def name_op(name, op):$/;" f +name_op Objects/typeobject.c /^static PyObject *name_op[] = {$/;" v file: +name_or_attr_rule Parser/parser.c /^name_or_attr_rule(Parser *p)$/;" f file: +name_or_attr_type Parser/parser.c 164;" d file: +name_strobj Include/cpython/descrobject.h /^ PyObject *name_strobj;$/;" m struct:wrapperbase +named_expression_rule Parser/parser.c /^named_expression_rule(Parser *p)$/;" f file: +named_expression_type Parser/parser.c 192;" d file: +named_item Tools/peg_generator/pegen/grammar_parser.py /^ def named_item(self) -> Optional[NamedItem]:$/;" m class:GeneratedParser +named_sequence Modules/unicodename_db.h /^} named_sequence;$/;" t typeref:struct:NamedSequence +named_sequences Modules/unicodename_db.h /^static const named_sequence named_sequences[] = {$/;" v +named_sequences_end Modules/unicodename_db.h /^static const unsigned int named_sequences_end = 0xf03cd;$/;" v +named_sequences_start Modules/unicodename_db.h /^static const unsigned int named_sequences_start = 0xf0200;$/;" v +namedtuple Lib/collections/__init__.py /^def namedtuple(typename, field_names, *, rename=False, defaults=None, module=None):$/;" f +namelink Lib/pydoc.py /^ def namelink(self, name, *dicts):$/;" f +namelist Lib/zipfile/__init__.py /^ def namelist(self):$/;" m class:ZipFile +namelist Lib/zipfile/_path/__init__.py /^ def namelist(self):$/;" m class:CompleteDirs +namelist Lib/zipfile/_path/__init__.py /^ def namelist(self):$/;" m class:FastLookup +nameobj Python/import.c /^ PyObject *nameobj;$/;" m struct:frozen_info file: +nameprep Lib/encodings/idna.py /^def nameprep(label):$/;" f +nameprep_tests Lib/test/test_codecs.py /^nameprep_tests = [$/;" v +namer Lib/logging/handlers.py /^ namer = None$/;" v class:BaseRotatingHandler +namer Lib/test/test_logging.py /^ def namer(self, name):$/;" m class:RotatingFileHandlerTest.test_namer_rotator_inheritance.HandlerWithNamerAndRotator +namer Lib/test/test_logging.py /^ def namer(name):$/;" f function:RotatingFileHandlerTest.test_rollover_filenames +namer Lib/test/test_logging.py /^ def namer(name):$/;" f function:RotatingFileHandlerTest.test_rotator +namereplace_errors Lib/codecs.py /^ namereplace_errors = None$/;" v +namereplace_errors Lib/codecs.py /^ namereplace_errors = lookup_error("namereplace")$/;" v +namereplace_errors Python/codecs.c /^static PyObject *namereplace_errors(PyObject *self, PyObject *exc)$/;" f file: +names Include/internal/pycore_ast.h /^ asdl_alias_seq *names;$/;" m struct:_stmt::__anon51::__anon72 +names Include/internal/pycore_ast.h /^ asdl_alias_seq *names;$/;" m struct:_stmt::__anon51::__anon73 +names Include/internal/pycore_ast.h /^ asdl_identifier_seq *names;$/;" m struct:_stmt::__anon51::__anon74 +names Include/internal/pycore_ast.h /^ asdl_identifier_seq *names;$/;" m struct:_stmt::__anon51::__anon75 +names Include/internal/pycore_ast_state.h /^ PyObject *names;$/;" m struct:ast_state +names Include/internal/pycore_code.h /^ PyObject *names;$/;" m struct:_PyCodeConstructor +names Lib/importlib/metadata/__init__.py /^ def names(self):$/;" m class:EntryPoints +names Lib/test/test_csv.py /^ names = ["Martin von Löwis",$/;" v class:TestUnicode +names Lib/test/test_importlib/resources/test_resource.py /^def names(traversable):$/;" f +names Lib/tkinter/font.py /^def names(root=None):$/;" f +names Lib/trace.py /^ def names(self, filename, modulename):$/;" m class:_Ignore +names Lib/urllib/request.py /^ names = None$/;" v class:FileHandler +names Modules/_elementtree.c /^ PyObject *names;$/;" m struct:__anon386 file: +names Tools/unicode/listcodecs.py /^ names = listcodecs(encodings.__path__[0])$/;" v +names_with_defaults Parser/pegen.h /^ asdl_seq *names_with_defaults; \/\/ asdl_seq* of NameDefaultsPair's$/;" m struct:__anon662 +namespace Lib/imaplib.py /^ def namespace(self):$/;" m class:IMAP4 +namespace Lib/pdb.py /^ def namespace(self):$/;" m class:_ModuleTarget +namespace Lib/pdb.py /^ def namespace(self):$/;" m class:_ScriptTarget +namespace1 Lib/test/test_typing.py /^ def namespace1():$/;" f function:ForwardRefTests.test_forward_equality_namespace +namespace1 Lib/test/test_typing.py /^ def namespace1():$/;" f function:ForwardRefTests.test_forward_recursion_actually +namespace2 Lib/test/test_typing.py /^ def namespace2():$/;" f function:ForwardRefTests.test_forward_equality_namespace +namespace2 Lib/test/test_typing.py /^ def namespace2():$/;" f function:ForwardRefTests.test_forward_recursion_actually +namespaceURI Lib/xml/dom/minidom.py /^ namespaceURI = None # this is non-null only for elements and attributes$/;" v class:Node +namespace_clear Objects/namespaceobject.c /^namespace_clear(_PyNamespaceObject *ns)$/;" f file: +namespace_dealloc Objects/namespaceobject.c /^namespace_dealloc(_PyNamespaceObject *ns)$/;" f file: +namespace_declarations Lib/xml/dom/xmlbuilder.py /^ namespace_declarations = True$/;" v class:Options +namespace_init Objects/namespaceobject.c /^namespace_init(_PyNamespaceObject *ns, PyObject *args, PyObject *kwds)$/;" f file: +namespace_members Objects/namespaceobject.c /^static PyMemberDef namespace_members[] = {$/;" v file: +namespace_methods Objects/namespaceobject.c /^static PyMethodDef namespace_methods[] = {$/;" v file: +namespace_new Objects/namespaceobject.c /^namespace_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +namespace_reduce Objects/namespaceobject.c /^namespace_reduce(_PyNamespaceObject *ns, PyObject *Py_UNUSED(ignored))$/;" f file: +namespace_repr Objects/namespaceobject.c /^namespace_repr(PyObject *ns)$/;" f file: +namespace_richcompare Objects/namespaceobject.c /^namespace_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +namespace_traverse Objects/namespaceobject.c /^namespace_traverse(_PyNamespaceObject *ns, visitproc visit, void *arg)$/;" f file: +namespace_tree_context Lib/test/test_importlib/test_namespace_pkgs.py /^def namespace_tree_context(**kwargs):$/;" f +namespaces Lib/xml/dom/xmlbuilder.py /^ namespaces = 1$/;" v class:Options +nametofont Lib/tkinter/font.py /^def nametofont(name, root=None):$/;" f +nametowidget Lib/tkinter/__init__.py /^ def nametowidget(self, name):$/;" m class:Misc +namingBitmap Modules/expat/nametab.h /^static const unsigned namingBitmap[] = {$/;" v +nan Lib/test/test_json/test_enum.py /^ nan = NAN$/;" v class:WierdNum +nan Modules/_decimal/tests/randdec.py /^def nan():$/;" f +narenas_currently_allocated Include/internal/pycore_obmalloc.h /^ size_t narenas_currently_allocated;$/;" m struct:_obmalloc_mgmt +narenas_currently_allocated Objects/obmalloc.c 880;" d file: +narenas_highwater Include/internal/pycore_obmalloc.h /^ size_t narenas_highwater;$/;" m struct:_obmalloc_mgmt +narenas_highwater Objects/obmalloc.c 882;" d file: +nargs Tools/ssl/multissltests.py /^ nargs='*',$/;" v +nargs Tools/ssl/multissltests.py /^ nargs='+',$/;" v +nargs Tools/wasm/wasm_build.py /^ nargs="*",$/;" v +nargsf Include/abstract.h /^PyAPI_FUNC(Py_ssize_t) PyVectorcall_NARGS(size_t nargsf);$/;" v +narrow Modules/posixmodule.c /^ BOOL narrow;$/;" m struct:__anon478 file: +narrow Modules/posixmodule.c /^ const char *narrow;$/;" m struct:__anon478 file: +native_id Lib/threading.py /^ def native_id(self):$/;" f function:Thread.ident +native_table Modules/_struct.c /^static const formatdef native_table[] = {$/;" v file: +native_thread_id Include/cpython/pystate.h /^ unsigned long native_thread_id;$/;" m struct:_ts +native_type_range Lib/test/test_buffer.py /^def native_type_range(fmt):$/;" f +native_types Lib/test/test_ctypes/test_pep3118.py /^native_types = [$/;" v +nattrs Modules/_operator.c /^ Py_ssize_t nattrs;$/;" m struct:__anon475 file: +nb_absolute Include/cpython/object.h /^ unaryfunc nb_absolute;$/;" m struct:__anon209 +nb_add Include/cpython/object.h /^ binaryfunc nb_add;$/;" m struct:__anon209 +nb_and Include/cpython/object.h /^ binaryfunc nb_and;$/;" m struct:__anon209 +nb_bool Include/cpython/object.h /^ inquiry nb_bool;$/;" m struct:__anon209 +nb_divmod Include/cpython/object.h /^ binaryfunc nb_divmod;$/;" m struct:__anon209 +nb_float Include/cpython/object.h /^ unaryfunc nb_float;$/;" m struct:__anon209 +nb_floor_divide Include/cpython/object.h /^ binaryfunc nb_floor_divide;$/;" m struct:__anon209 +nb_index Include/cpython/object.h /^ unaryfunc nb_index;$/;" m struct:__anon209 +nb_inplace_add Include/cpython/object.h /^ binaryfunc nb_inplace_add;$/;" m struct:__anon209 +nb_inplace_and Include/cpython/object.h /^ binaryfunc nb_inplace_and;$/;" m struct:__anon209 +nb_inplace_floor_divide Include/cpython/object.h /^ binaryfunc nb_inplace_floor_divide;$/;" m struct:__anon209 +nb_inplace_lshift Include/cpython/object.h /^ binaryfunc nb_inplace_lshift;$/;" m struct:__anon209 +nb_inplace_matrix_multiply Include/cpython/object.h /^ binaryfunc nb_inplace_matrix_multiply;$/;" m struct:__anon209 +nb_inplace_multiply Include/cpython/object.h /^ binaryfunc nb_inplace_multiply;$/;" m struct:__anon209 +nb_inplace_or Include/cpython/object.h /^ binaryfunc nb_inplace_or;$/;" m struct:__anon209 +nb_inplace_power Include/cpython/object.h /^ ternaryfunc nb_inplace_power;$/;" m struct:__anon209 +nb_inplace_remainder Include/cpython/object.h /^ binaryfunc nb_inplace_remainder;$/;" m struct:__anon209 +nb_inplace_rshift Include/cpython/object.h /^ binaryfunc nb_inplace_rshift;$/;" m struct:__anon209 +nb_inplace_subtract Include/cpython/object.h /^ binaryfunc nb_inplace_subtract;$/;" m struct:__anon209 +nb_inplace_true_divide Include/cpython/object.h /^ binaryfunc nb_inplace_true_divide;$/;" m struct:__anon209 +nb_inplace_xor Include/cpython/object.h /^ binaryfunc nb_inplace_xor;$/;" m struct:__anon209 +nb_int Include/cpython/object.h /^ unaryfunc nb_int;$/;" m struct:__anon209 +nb_invert Include/cpython/object.h /^ unaryfunc nb_invert;$/;" m struct:__anon209 +nb_lshift Include/cpython/object.h /^ binaryfunc nb_lshift;$/;" m struct:__anon209 +nb_matrix_multiply Include/cpython/object.h /^ binaryfunc nb_matrix_multiply;$/;" m struct:__anon209 +nb_multiply Include/cpython/object.h /^ binaryfunc nb_multiply;$/;" m struct:__anon209 +nb_negative Include/cpython/object.h /^ unaryfunc nb_negative;$/;" m struct:__anon209 +nb_or Include/cpython/object.h /^ binaryfunc nb_or;$/;" m struct:__anon209 +nb_positive Include/cpython/object.h /^ unaryfunc nb_positive;$/;" m struct:__anon209 +nb_power Include/cpython/object.h /^ ternaryfunc nb_power;$/;" m struct:__anon209 +nb_remainder Include/cpython/object.h /^ binaryfunc nb_remainder;$/;" m struct:__anon209 +nb_reserved Include/cpython/object.h /^ void *nb_reserved; \/* the slot formerly known as nb_long *\/$/;" m struct:__anon209 +nb_rshift Include/cpython/object.h /^ binaryfunc nb_rshift;$/;" m struct:__anon209 +nb_subtract Include/cpython/object.h /^ binaryfunc nb_subtract;$/;" m struct:__anon209 +nb_true_divide Include/cpython/object.h /^ binaryfunc nb_true_divide;$/;" m struct:__anon209 +nb_xor Include/cpython/object.h /^ binaryfunc nb_xor;$/;" m struct:__anon209 +nbits Lib/idlelib/multicall.py /^ def nbits(n):$/;" f function:expand_substates +nbuckets Include/internal/pycore_hashtable.h /^ size_t nbuckets;$/;" m struct:_Py_hashtable_t +nbytes Modules/_decimal/libmpdec/io.c /^ mpd_ssize_t nbytes; \/* length in bytes *\/$/;" m struct:__anon343 file: +ncallbacks Include/internal/pycore_atexit.h /^ int ncallbacks;$/;" m struct:_atexit_runtime_state +ncallbacks Include/internal/pycore_atexit.h /^ int ncallbacks;$/;" m struct:atexit_state +nchannels Lib/test/test_aifc.py /^ nchannels = 2$/;" v class:AifcALAWTest +nchannels Lib/test/test_aifc.py /^ nchannels = 2$/;" v class:AifcPCM16Test +nchannels Lib/test/test_aifc.py /^ nchannels = 2$/;" v class:AifcPCM24Test +nchannels Lib/test/test_aifc.py /^ nchannels = 2$/;" v class:AifcPCM32Test +nchannels Lib/test/test_aifc.py /^ nchannels = 2$/;" v class:AifcPCM8Test +nchannels Lib/test/test_aifc.py /^ nchannels = 2$/;" v class:AifcULAWTest +nchannels Lib/test/test_sunau.py /^ nchannels = 2$/;" v class:SunauPCM16Test +nchannels Lib/test/test_sunau.py /^ nchannels = 2$/;" v class:SunauPCM24Test +nchannels Lib/test/test_sunau.py /^ nchannels = 2$/;" v class:SunauPCM32Test +nchannels Lib/test/test_sunau.py /^ nchannels = 2$/;" v class:SunauPCM8Test +nchannels Lib/test/test_sunau.py /^ nchannels = 2$/;" v class:SunauULAWTest +nchannels Lib/test/test_wave.py /^ nchannels = 2$/;" v class:WavePCM16Test +nchannels Lib/test/test_wave.py /^ nchannels = 2$/;" v class:WavePCM24ExtTest +nchannels Lib/test/test_wave.py /^ nchannels = 2$/;" v class:WavePCM24Test +nchannels Lib/test/test_wave.py /^ nchannels = 2$/;" v class:WavePCM32Test +nchannels Lib/test/test_wave.py /^ nchannels = 2$/;" v class:WavePCM8Test +nchars Modules/_decimal/libmpdec/io.c /^ mpd_ssize_t nchars; \/* length in chars *\/$/;" m struct:__anon343 file: +ncurses_version_desc Modules/_cursesmodule.c /^static PyStructSequence_Desc ncurses_version_desc = {$/;" v file: +ncurses_version_fields Modules/_cursesmodule.c /^static PyStructSequence_Field ncurses_version_fields[] = {$/;" v file: +nd Lib/idlelib/idle_test/test_calltip.py /^ def nd(self): pass # No doc.$/;" m class:TC +nd Python/dtoa.c /^ int e0, nd, nd0, scale;$/;" m struct:BCinfo file: +nd0 Python/dtoa.c /^ int e0, nd, nd0, scale;$/;" m struct:BCinfo file: +ndarray Lib/test/test_buffer.py /^ ndarray = None$/;" v +ndarray_add_suboffsets Modules/_testbuffer.c /^ndarray_add_suboffsets(PyObject *self, PyObject *dummy)$/;" f file: +ndarray_as_buffer Modules/_testbuffer.c /^static PyBufferProcs ndarray_as_buffer = {$/;" v file: +ndarray_as_list Modules/_testbuffer.c /^ndarray_as_list(NDArrayObject *nd)$/;" f file: +ndarray_as_mapping Modules/_testbuffer.c /^static PyMappingMethods ndarray_as_mapping = {$/;" v file: +ndarray_as_sequence Modules/_testbuffer.c /^static PySequenceMethods ndarray_as_sequence = {$/;" v file: +ndarray_ass_subscript Modules/_testbuffer.c /^ndarray_ass_subscript(NDArrayObject *self, PyObject *key, PyObject *value)$/;" f file: +ndarray_c_contig Modules/_testbuffer.c /^ndarray_c_contig(PyObject *self, PyObject *dummy)$/;" f file: +ndarray_contig Modules/_testbuffer.c /^ndarray_contig(PyObject *self, PyObject *dummy)$/;" f file: +ndarray_dealloc Modules/_testbuffer.c /^ndarray_dealloc(NDArrayObject *self)$/;" f file: +ndarray_fortran_contig Modules/_testbuffer.c /^ndarray_fortran_contig(PyObject *self, PyObject *dummy)$/;" f file: +ndarray_from_structure Lib/test/test_buffer.py /^def ndarray_from_structure(items, fmt, t, flags=0):$/;" f +ndarray_get_flags Modules/_testbuffer.c /^ndarray_get_flags(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_format Modules/_testbuffer.c /^ndarray_get_format(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_itemsize Modules/_testbuffer.c /^ndarray_get_itemsize(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_nbytes Modules/_testbuffer.c /^ndarray_get_nbytes(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_ndim Modules/_testbuffer.c /^ndarray_get_ndim(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_obj Modules/_testbuffer.c /^ndarray_get_obj(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_offset Modules/_testbuffer.c /^ndarray_get_offset(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_readonly Modules/_testbuffer.c /^ndarray_get_readonly(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_shape Modules/_testbuffer.c /^ndarray_get_shape(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_strides Modules/_testbuffer.c /^ndarray_get_strides(NDArrayObject *self, void *closure)$/;" f file: +ndarray_get_suboffsets Modules/_testbuffer.c /^ndarray_get_suboffsets(NDArrayObject *self, void *closure)$/;" f file: +ndarray_getbuf Modules/_testbuffer.c /^ndarray_getbuf(NDArrayObject *self, Py_buffer *view, int flags)$/;" f file: +ndarray_getset Modules/_testbuffer.c /^static PyGetSetDef ndarray_getset [] =$/;" v file: +ndarray_hash Modules/_testbuffer.c /^ndarray_hash(PyObject *self)$/;" f file: +ndarray_init Modules/_testbuffer.c /^ndarray_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +ndarray_init_staticbuf Modules/_testbuffer.c /^ndarray_init_staticbuf(PyObject *exporter, NDArrayObject *nd, int flags)$/;" f file: +ndarray_item Modules/_testbuffer.c /^ndarray_item(NDArrayObject *self, Py_ssize_t index)$/;" f file: +ndarray_memoryview_from_buffer Modules/_testbuffer.c /^ndarray_memoryview_from_buffer(PyObject *self, PyObject *dummy)$/;" f file: +ndarray_methods Modules/_testbuffer.c /^static PyMethodDef ndarray_methods [] =$/;" v file: +ndarray_new Modules/_testbuffer.c /^ndarray_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +ndarray_pop Modules/_testbuffer.c /^ndarray_pop(PyObject *self, PyObject *dummy)$/;" f file: +ndarray_print Lib/test/test_buffer.py /^def ndarray_print(nd):$/;" f +ndarray_push Modules/_testbuffer.c /^ndarray_push(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +ndarray_push_base Modules/_testbuffer.c /^ndarray_push_base(NDArrayObject *nd, PyObject *items,$/;" f file: +ndarray_releasebuf Modules/_testbuffer.c /^ndarray_releasebuf(NDArrayObject *self, Py_buffer *view)$/;" f file: +ndarray_subscript Modules/_testbuffer.c /^ndarray_subscript(NDArrayObject *self, PyObject *key)$/;" f file: +ndarray_tobytes Modules/_testbuffer.c /^ndarray_tobytes(PyObject *self, PyObject *dummy)$/;" f file: +ndarray_tolist Modules/_testbuffer.c /^ndarray_tolist(PyObject *self, PyObject *dummy)$/;" f file: +ndbm Lib/dbm/__init__.py /^ ndbm = None$/;" v class:error +ndbm Lib/test/test_dbm.py /^ ndbm = None$/;" v +ndbuf Modules/_testbuffer.c /^typedef struct ndbuf {$/;" s file: +ndbuf_delete Modules/_testbuffer.c /^ndbuf_delete(NDArrayObject *nd, ndbuf_t *elt)$/;" f file: +ndbuf_free Modules/_testbuffer.c /^ndbuf_free(ndbuf_t *ndbuf)$/;" f file: +ndbuf_new Modules/_testbuffer.c /^ndbuf_new(Py_ssize_t nitems, Py_ssize_t itemsize, Py_ssize_t offset, int flags)$/;" f file: +ndbuf_pop Modules/_testbuffer.c /^ndbuf_pop(NDArrayObject *nd)$/;" f file: +ndbuf_push Modules/_testbuffer.c /^ndbuf_push(NDArrayObject *nd, ndbuf_t *elt)$/;" f file: +ndbuf_t Modules/_testbuffer.c /^} ndbuf_t;$/;" t typeref:struct:ndbuf file: +ndiff Lib/difflib.py /^def ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK):$/;" f +ndiffAssertEqual Lib/test/test_email/__init__.py /^ ndiffAssertEqual = unittest.TestCase.assertEqual$/;" v class:TestEmailBase +ndigits Modules/_decimal/tests/randdec.py /^def ndigits(n):$/;" f +ndim Include/pybuffer.h /^ int ndim;$/;" m struct:__anon1 +ndim Modules/_ctypes/ctypes.h /^ int ndim;$/;" m struct:__anon495 +ne Lib/operator.py /^def ne(a, b):$/;" f +ne Lib/test/test_unittest/testmock/testmagicmethods.py /^ def ne(self, other):$/;" f function:TestMockingMagicMethods.test_equality +ne_pairs Lib/test/test_unittest/test_case.py /^ ne_pairs = [(Test.Foo('test1'), Test.Foo('runTest')),$/;" v class:Test_TestCase +ne_pairs Lib/test/test_unittest/test_suite.py /^ ne_pairs = [(unittest.TestSuite(), _mk_TestSuite('test_1'))$/;" v class:Test_TestSuite +nearest Lib/tkinter/__init__.py /^ def nearest(self, y):$/;" m class:Listbox +nearest Lib/tkinter/tix.py /^ def nearest(self, x, y):$/;" m class:Grid +nearest Lib/tkinter/tix.py /^ def nearest(self, x, y):$/;" m class:TList +nearest Lib/tkinter/tix.py /^ def nearest(self, y):$/;" m class:HList +need_adapt Modules/_sqlite/cursor.c /^need_adapt(pysqlite_state *state, PyObject *obj)$/;" f file: +need_c_queue Lib/test/test_queue.py /^need_c_queue = unittest.skipUnless(c_queue, "No _queue module found")$/;" v +need_close Python/pythonrun.c /^ bool need_close; \/\/ Need a closing bottom frame$/;" m struct:exception_print_context file: +need_eof Modules/_io/textio.c /^ char need_eof;$/;" m struct:__anon438 file: +need_symbol Lib/test/test_ctypes/__init__.py /^def need_symbol(name):$/;" f +needs_arglist Doc/tools/extensions/pyspecific.py /^ def needs_arglist(self):$/;" m class:PyDecoratorMixin +needs_input Modules/_bz2module.c /^ char needs_input;$/;" m struct:__anon466 file: +needs_input Modules/_lzmamodule.c /^ char needs_input;$/;" m struct:__anon296 file: +needs_input Modules/zlibmodule.c /^ char needs_input;$/;" m struct:__anon307 file: +needs_sphinx Doc/conf.py /^needs_sphinx = '4.2'$/;" v +needsquoting Lib/quopri.py /^def needsquoting(c, quotetabs, header):$/;" f +needwrapbutton Lib/idlelib/grep.py /^ needwrapbutton = 0$/;" v class:GrepDialog +needwrapbutton Lib/idlelib/searchbase.py /^ needwrapbutton = 1 # not in Find in Files$/;" v class:SearchDialogBase +neg Lib/operator.py /^def neg(a):$/;" f +neg_inf Lib/test/test_json/test_enum.py /^ neg_inf = NEG_INF$/;" v class:WierdNum +negate Tools/clinic/cpp.py /^def negate(condition: str) -> str:$/;" f +negative_exp Lib/test/test_strtod.py /^ def negative_exp(n):$/;" f function:StrtodTests.test_large_exponents +negative_lookahead Tools/peg_generator/pegen/parser.py /^ def negative_lookahead(self, func: Callable[..., object], *args: object) -> bool:$/;" m class:Parser +negative_refcount Modules/_testcapimodule.c /^negative_refcount(PyObject *self, PyObject *Py_UNUSED(args))$/;" f file: +nego_collector Lib/test/test_telnetlib.py /^class nego_collector(object):$/;" c +negzero Lib/test/test_peepholer.py /^ def negzero():$/;" f function:TestTranforms.test_folding_of_unaryops_on_constants +neitherspacenordigit Lib/test/test_calendar.py /^ def neitherspacenordigit(c):$/;" f function:OutputTestCase.normalize_calendar +nentries Include/internal/pycore_hashtable.h /^ size_t nentries; \/\/ Total number of entries in the table$/;" m struct:_Py_hashtable_t +nerrors Lib/test/test_sort.py /^nerrors = 0$/;" v +nest Lib/test/test_scope.py /^ def nest():$/;" f function:ScopeTests.testNestingGlobalNoFree.make_adder4.nest +nest Lib/test/test_scope.py /^ def nest():$/;" f function:ScopeTests.testNestingGlobalNoFree.make_adder4 +nest Tools/c-analyzer/c_parser/parser/_info.py /^ def nest(self, text, before, start=None):$/;" m class:SourceInfo +nested Lib/test/test_asyncio/test_taskgroups.py /^ async def nested():$/;" f function:TestTaskGroup._test_taskgroup_21 +nested Lib/test/test_asyncio/test_taskgroups.py /^ async def nested():$/;" f function:TestTaskGroup.test_taskgroup_19 +nested Lib/test/test_asyncio/test_taskgroups.py /^ async def nested():$/;" f function:TestTaskGroup.test_taskgroup_20 +nested Lib/test/test_asyncio/test_taskgroups.py /^ async def nested():$/;" f function:TestTaskGroup.test_taskgroup_20a +nested Lib/test/test_asyncio/test_taskgroups.py /^ async def nested():$/;" f function:TestTaskGroup.test_taskgroup_21a +nested Lib/test/test_asyncio/test_tasks.py /^ async def nested():$/;" f function:BaseTaskTests.test_cancel_awaited_task +nested Lib/test/test_asyncio/test_tasks.py /^ async def nested():$/;" f function:BaseTaskTests.test_cancel_traceback_for_future_exception +nested Lib/test/test_asyncio/test_tasks.py /^ async def nested():$/;" f function:BaseTaskTests.test_cancel_traceback_for_future_result +nested Lib/test/test_coroutines.py /^ def nested():$/;" f function:OriginTrackingTest.test_origin_tracking +nested Lib/test/test_doctest2.py /^ def nested(self):$/;" m class:C.D +nested Lib/test/test_functools.py /^ nested = functools.partialmethod(positional, 5)$/;" v class:TestPartialMethod.A +nested Lib/test/test_super.py /^ def nested():$/;" f function:TestSuper.test_super_with_closure.E.f +nested Lib/test/test_sys_settrace.py /^ def nested():$/;" f function:.test_no_jump_from_call +nested Lib/test/test_typing.py /^ def nested(self: 'ForRefExample'):$/;" m class:ForRefExample +nested Modules/_ctypes/_ctypes_test.c /^ } nested;$/;" m struct:__anon506 typeref:struct:__anon506::__anon507 file: +nestedTuple Lib/test/test_reprlib.py /^def nestedTuple(nesting):$/;" f +nested_call Lib/test/test_monitoring.py /^def nested_call():$/;" f +nested_group Lib/test/test_exception_group.py /^ def nested_group():$/;" f function:NestedExceptionGroupSplitTest.test_split_by_type +nested_in_class Lib/idlelib/browser.py /^ def nested_in_class(): pass$/;" m class:_module_browser.Nested_in_func +nested_lambda Lib/test/inspect_fodder2.py /^nested_lambda = ($/;" v +nested_reraise Lib/test/test_raise.py /^ def nested_reraise():$/;" f function:TestRaise.test_nested_reraise +nested_runner Lib/test/test_asyncio/test_taskgroups.py /^ async def nested_runner():$/;" f function:TestTaskGroup.test_taskgroup_16 +nested_scopes Lib/__future__.py /^nested_scopes = _Feature((2, 1, 0, "beta", 1),$/;" v +nester Lib/test/test_future3.py /^def nester():$/;" f +netdb_lock Modules/socketmodule.c /^static PyThread_type_lock netdb_lock;$/;" v file: +netrc Lib/netrc.py /^class netrc:$/;" c +never Tools/freeze/makeconfig.py /^never = ['marshal', '_imp', '_ast', '__main__', 'builtins',$/;" v +new Lib/hashlib.py /^ new = __py_new$/;" v +new Lib/hmac.py /^def new(key, msg=None, digestmod=''):$/;" f +new Lib/idlelib/filelist.py /^ def new(self, filename=None):$/;" m class:FileList +new Lib/symtable.py /^ def new(self, table, filename):$/;" m class:SymbolTableFactory +newCertificate Modules/_ssl/cert.c /^newCertificate(PyTypeObject *type, X509 *cert, int upref)$/;" f file: +newClientSocket Lib/test/test_socket.py /^ def newClientSocket(self):$/;" m class:ThreadedSocketTestMixin +newDevPollObject Modules/selectmodule.c /^newDevPollObject(PyObject *module)$/;" f file: +newEVPobject Modules/_hashopenssl.c /^newEVPobject(PyTypeObject *type)$/;" f file: +newEnvironmentInfo PC/launcher2.c /^newEnvironmentInfo(const wchar_t *company, const wchar_t *tag)$/;" f +newFDs Lib/test/test_socket.py /^ def newFDs(self, n):$/;" m class:SCMRightsTest +newKqueue_Object Modules/selectmodule.c /^newKqueue_Object(PyTypeObject *type, SOCKET fd)$/;" f file: +newMD5object Modules/md5module.c /^newMD5object(MD5State * st)$/;" f file: +newPollObject Modules/selectmodule.c /^newPollObject(PyObject *module)$/;" f file: +newProfilerEntry Modules/_lsprof.c /^newProfilerEntry(ProfilerObject *pObj, void *key, PyObject *userObj)$/;" f file: +newPyEpoll_Object Modules/selectmodule.c /^newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd)$/;" f file: +newPySSLSocket Modules/_ssl.c /^newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock,$/;" f file: +newPyTclObject Modules/_tkinter.c /^newPyTclObject(Tcl_Obj *arg)$/;" f file: +newSHA1object Modules/sha1module.c /^newSHA1object(SHA1State *st)$/;" f file: +newSHA224object Modules/sha2module.c /^newSHA224object(sha2_state *state)$/;" f file: +newSHA256object Modules/sha2module.c /^newSHA256object(sha2_state *state)$/;" f file: +newSHA384object Modules/sha2module.c /^newSHA384object(sha2_state *state)$/;" f file: +newSHA3object Modules/sha3module.c /^newSHA3object(PyTypeObject *type)$/;" f file: +newSHA512object Modules/sha2module.c /^newSHA512object(sha2_state *state)$/;" f file: +newSocket Lib/test/test_socket.py /^ def newSocket(self):$/;" m class:SCTPStreamBase +newSocket Lib/test/test_socket.py /^ def newSocket(self):$/;" m class:TCPTestBase +newSocket Lib/test/test_socket.py /^ def newSocket(self):$/;" m class:UDP6TestBase +newSocket Lib/test/test_socket.py /^ def newSocket(self):$/;" m class:UDPLITE6TestBase +newSocket Lib/test/test_socket.py /^ def newSocket(self):$/;" m class:UDPLITETestBase +newSocket Lib/test/test_socket.py /^ def newSocket(self):$/;" m class:UDPTestBase +newSocket Lib/test/test_socket.py /^ def newSocket(self):$/;" m class:UnixStreamBase +newSubEntry Modules/_lsprof.c /^newSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)$/;" f file: +newXxoObject Modules/xxlimited.c /^newXxoObject(PyObject *module)$/;" f file: +newXxoObject Modules/xxlimited_35.c /^newXxoObject(PyObject *arg)$/;" f file: +newXxoObject Modules/xxmodule.c /^newXxoObject(PyObject *arg)$/;" f file: +new_BLAKE2bObject Modules/_blake2/blake2b_impl.c /^new_BLAKE2bObject(PyTypeObject *type)$/;" f file: +new_BLAKE2sObject Modules/_blake2/blake2s_impl.c /^new_BLAKE2sObject(PyTypeObject *type)$/;" f file: +new_arena Objects/obmalloc.c /^new_arena(OMState *state)$/;" f file: +new_buffersize Modules/_io/fileio.c /^new_buffersize(fileio *self, size_t currentsize)$/;" f file: +new_buffersize Modules/_io/winconsoleio.c /^new_buffersize(winconsoleio *self, DWORD currentsize)$/;" f file: +new_callback Lib/idlelib/editor.py /^ def new_callback(self, event):$/;" m class:EditorWindow +new_child Lib/collections/__init__.py /^ def new_child(self, m=None, **kwargs): # like Django's Context.push()$/;" m class:ChainMap +new_class Lib/types.py /^def new_class(name, bases=(), kwds=None, exec_body=None):$/;" f +new_code Lib/test/test_code.py /^ def new_code(c):$/;" f function:CodeTest.test_closure_injection +new_code_arena Python/perf_trampoline.c /^new_code_arena(void)$/;" f file: +new_compiler Python/compile.c /^new_compiler(mod_ty mod, PyObject *filename, PyCompilerFlags *pflags,$/;" f file: +new_compiler Tools/c-analyzer/distutils/ccompiler.py /^def new_compiler(plat=None, compiler=None, verbose=0, dry_run=0, force=0):$/;" f +new_config Lib/idlelib/idle_test/test_config.py /^ def new_config(self, _utest=False):$/;" m class:IdleConfTest +new_conn Lib/test/test_telnetlib.py /^ def new_conn(*ignored):$/;" f function:test_socket +new_coro Lib/test/test_collections.py /^ async def new_coro():$/;" f function:TestOneTrickPonyABCs.test_Awaitable +new_coro Lib/test/test_collections.py /^ async def new_coro():$/;" f function:TestOneTrickPonyABCs.test_Coroutine +new_date Modules/_datetimemodule.c 953;" d file: +new_date_ex Modules/_datetimemodule.c /^new_date_ex(int year, int month, int day, PyTypeObject *type)$/;" f file: +new_date_subclass_ex Modules/_datetimemodule.c /^new_date_subclass_ex(int year, int month, int day, PyObject *cls)$/;" f file: +new_datetime Modules/_datetimemodule.c 1022;" d file: +new_datetime_ex Modules/_datetimemodule.c /^new_datetime_ex(int year, int month, int day, int hour, int minute,$/;" f file: +new_datetime_ex2 Modules/_datetimemodule.c /^new_datetime_ex2(int year, int month, int day, int hour, int minute,$/;" f file: +new_datetime_subclass_ex Modules/_datetimemodule.c /^new_datetime_subclass_ex(int year, int month, int day, int hour, int minute,$/;" f file: +new_datetime_subclass_fold_ex Modules/_datetimemodule.c /^new_datetime_subclass_fold_ex(int year, int month, int day, int hour, int minute,$/;" f file: +new_defdict Modules/_collectionsmodule.c /^new_defdict(defdictobject *dd, PyObject *arg)$/;" f file: +new_delta Modules/_datetimemodule.c 1131;" d file: +new_delta_ex Modules/_datetimemodule.c /^new_delta_ex(int days, int seconds, int microseconds, int normalize,$/;" f file: +new_dict Lib/test/test_dict_version.py /^ def new_dict(self, *args, **kw):$/;" m class:DictVersionTests +new_dict Objects/dictobject.c /^new_dict(PyInterpreterState *interp,$/;" f file: +new_dict_with_shared_keys Objects/dictobject.c /^new_dict_with_shared_keys(PyInterpreterState *interp, PyDictKeysObject *keys)$/;" f file: +new_event_loop Lib/asyncio/events.py /^ def new_event_loop(self):$/;" m class:AbstractEventLoopPolicy +new_event_loop Lib/asyncio/events.py /^ def new_event_loop(self):$/;" m class:BaseDefaultEventLoopPolicy +new_event_loop Lib/asyncio/events.py /^def new_event_loop():$/;" f +new_event_loop Lib/test/test_asyncio/test_runners.py /^ def new_event_loop():$/;" f function:RunTests.test_asyncio_run_without_uncancel +new_event_loop Lib/test/test_asyncio/test_runners.py /^ def new_event_loop(self):$/;" m class:TestPolicy +new_future Lib/test/test_asyncio/test_tasks.py /^ def new_future(self, loop):$/;" m class:BaseTaskTests +new_hamt Modules/_testcapimodule.c /^new_hamt(PyObject *self, PyObject *args)$/;" f file: +new_handle_signature Doc/tools/extensions/c_annotations.py /^ def new_handle_signature(self, sig, signode):$/;" f function:setup +new_handler Lib/test/test_unittest/test_break.py /^ def new_handler(frame, signum):$/;" f function:TestBreak.testHandlerReplacedButCalled.test_function +new_html5 Tools/build/parse_html5_entities.py /^ new_html5 = create_dict(get_json(ENTITIES_URL))$/;" v +new_interpreter Python/pylifecycle.c /^new_interpreter(PyThreadState **tstate_p, const PyInterpreterConfig *config)$/;" f file: +new_keys_object Objects/dictobject.c /^new_keys_object(PyInterpreterState *interp, uint8_t log2_size, bool unicode)$/;" f file: +new_kwtuple Python/getargs.c /^new_kwtuple(const char * const *keywords, int total, int pos)$/;" f file: +new_linesiterator Objects/codeobject.c /^new_linesiterator(PyCodeObject *code)$/;" f file: +new_loop Lib/test/test_asyncio/functional.py /^ def new_loop(self):$/;" m class:FunctionalTestCaseMixin +new_loop Lib/test/test_asyncio/test_buffered_proto.py /^ def new_loop(self):$/;" m class:BaseTestBufferedProtocol +new_loop Lib/test/test_asyncio/test_buffered_proto.py /^ def new_loop(self):$/;" m class:BufferedProtocolProactorTests +new_loop Lib/test/test_asyncio/test_buffered_proto.py /^ def new_loop(self):$/;" m class:BufferedProtocolSelectorTests +new_loop Lib/test/test_asyncio/test_runners.py /^ def new_loop(self):$/;" m class:BaseTest +new_loop Lib/test/test_asyncio/test_server.py /^ def new_loop(self):$/;" m class:BaseStartServer +new_loop Lib/test/test_asyncio/test_server.py /^ def new_loop(self):$/;" m class:ProactorStartServerTests +new_loop Lib/test/test_asyncio/test_server.py /^ def new_loop(self):$/;" m class:SelectorStartServerTests +new_loop Lib/test/test_asyncio/test_ssl.py /^ def new_loop(self):$/;" m class:TestSSL +new_loop Lib/test/test_asyncio/test_sslproto.py /^ def new_loop(self):$/;" m class:BaseStartTLS +new_loop Lib/test/test_asyncio/test_sslproto.py /^ def new_loop(self):$/;" m class:ProactorStartTLSTests +new_loop Lib/test/test_asyncio/test_sslproto.py /^ def new_loop(self):$/;" m class:SelectorStartTLSTests +new_map_line packaging/pre_checkin.sh /^function new_map_line () {$/;" f +new_method Lib/test/test_dataclasses.py /^ def new_method(self):$/;" m class:TestCase.test_generic_extending.NonDataDerived +new_mmap_object Modules/mmapmodule.c /^new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)$/;" f file: +new_module Lib/test/test_importlib/test_lazy.py /^ def new_module(self, source_code=None):$/;" m class:LazyLoaderTests +new_module Objects/moduleobject.c /^new_module(PyTypeObject *mt, PyObject *args, PyObject *kws)$/;" f file: +new_module_notrack Objects/moduleobject.c /^new_module_notrack(PyTypeObject *mt)$/;" f file: +new_mpd Modules/_decimal/libmpdec/bench.c /^new_mpd(void)$/;" f file: +new_mpd Modules/_decimal/libmpdec/bench_full.c /^new_mpd(void)$/;" f file: +new_name Lib/lib2to3/fixer_base.py /^ def new_name(self, template="xxx_todo_changeme"):$/;" m class:BaseFix +new_object Include/cpython/pystate.h /^ xid_newobjectfunc new_object;$/;" m struct:_xid +new_objects Lib/test/test_descr.py /^ new_objects = len(gc.get_objects())$/;" v class:.test_slots.F +new_overlapped Modules/_winapi.c /^new_overlapped(PyObject *module, HANDLE handle)$/;" f file: +new_parser Lib/idlelib/idle_test/test_config.py /^ def new_parser(self, path=''):$/;" m class:IdleUserConfParserTest +new_policy Lib/test/test_asyncio/test_ssl.py /^ def new_policy(self):$/;" m class:TestSSL +new_policy Lib/test/test_email/test_policy.py /^ new_policy = email.policy.EmailPolicy()$/;" v class:PolicyAPITests +new_previous_version Modules/unicodedata.c /^new_previous_version(PyTypeObject *ucd_type,$/;" f file: +new_reference Objects/object.c /^new_reference(PyObject *op)$/;" f file: +new_sample Lib/test/test_dataclasses.py /^ new_sample = pickle.loads(pickle.dumps(sample, proto))$/;" v class:TestCase.test_dataclasses_pickleable.R +new_sleep_process Lib/test/_test_eintr.py /^ def new_sleep_process(self):$/;" m class:OSEINTRTest +new_sockobject Modules/socketmodule.c /^new_sockobject(socket_state *state, SOCKET_T fd, int family, int type,$/;" f file: +new_statement_cache Modules/_sqlite/connection.c /^new_statement_cache(pysqlite_Connection *self, pysqlite_state *state,$/;" f file: +new_string Parser/tokenizer.c /^new_string(const char *s, Py_ssize_t len, struct tok_state *tok)$/;" f file: +new_style_class Lib/test/dtracedata/instance.py /^class new_style_class(object):$/;" c +new_task Lib/test/test_asyncio/test_tasks.py /^ def new_task(self, coro):$/;" m class:BaseCurrentLoopTests +new_task Lib/test/test_asyncio/test_tasks.py /^ def new_task(self, coro):$/;" m class:CCurrentLoopTests +new_task Lib/test/test_asyncio/test_tasks.py /^ def new_task(self, coro):$/;" m class:PyCurrentLoopTests +new_task Lib/test/test_asyncio/test_tasks.py /^ def new_task(self, loop, coro, name='TestTask', context=None):$/;" m class:BaseTaskTests +new_test_loop Lib/test/test_asyncio/utils.py /^ def new_test_loop(self, gen=None):$/;" m class:TestCase +new_test_method Lib/idlelib/idle_test/tkinter_testing_utils.py /^ def new_test_method(self):$/;" f function:run_in_tk_mainloop.decorator +new_threadstate Python/pystate.c /^new_threadstate(PyInterpreterState *interp)$/;" f file: +new_time Modules/_datetimemodule.c 1098;" d file: +new_time_ex Modules/_datetimemodule.c /^new_time_ex(int hour, int minute, int second, int usecond,$/;" f file: +new_time_ex2 Modules/_datetimemodule.c /^new_time_ex2(int hour, int minute, int second, int usecond,$/;" f file: +new_timezone Modules/_datetimemodule.c /^new_timezone(PyObject *offset, PyObject *name)$/;" f file: +new_user Lib/test/test_typing.py /^ def new_user(user_class: Type[U]) -> U:$/;" f function:TypeTests.test_type_typevar +new_user Lib/test/test_typing.py /^ def new_user(user_class: Type[User]) -> User:$/;" f function:TypeTests.test_type_basic +new_values Include/pystats.h /^ uint64_t new_values;$/;" m struct:_object_stats +new_values Objects/dictobject.c /^new_values(size_t size)$/;" f file: +new_was_called Lib/test/test_ctypes/test_init.py /^ new_was_called = False$/;" v class:X +new_watcher Lib/test/test_sys_setprofile.py /^ def new_watcher(self):$/;" m class:ProfileHookTestCase +new_watcher Lib/test/test_sys_setprofile.py /^ def new_watcher(self):$/;" m class:ProfileSimulatorTestCase +new_weak_cache Modules/_zoneinfo.c /^new_weak_cache(void)$/;" f file: +new_weakref Objects/weakrefobject.c /^new_weakref(PyObject *ob, PyObject *callback)$/;" f file: +newarrayobject Modules/arraymodule.c /^newarrayobject(PyTypeObject *type, Py_ssize_t size, const struct arraydescr *descr)$/;" f file: +newblock Modules/_collectionsmodule.c /^newblock(dequeobject *deque) {$/;" f file: +newchannelid Modules/_xxinterpchannelsmodule.c /^newchannelid(PyTypeObject *cls, int64_t cid, int end, _channels *channels,$/;" f file: +newcompobject Modules/zlibmodule.c /^newcompobject(PyTypeObject *type)$/;" f file: +newconfig Lib/test/test_configparser.py /^ def newconfig(self, defaults=None):$/;" m class:CfgParserTestCaseClass +newconfig Lib/test/test_configparser.py /^ def newconfig(self, defaults=None):$/;" m class:ConvertersTestCase +newdbmobject Modules/_dbmmodule.c /^newdbmobject(_dbm_state *state, const char *file, int flags, int mode)$/;" f file: +newer Tools/c-analyzer/distutils/dep_util.py /^def newer (source, target):$/;" f +newer Tools/gdb/libpython.py /^ def newer(self):$/;" m class:Frame +newfunc Include/object.h /^typedef PyObject *(*newfunc)(PyTypeObject *, PyObject *, PyObject *);$/;" t +newgdbmobject Modules/_gdbmmodule.c /^newgdbmobject(_gdbm_state *state, const char *file, int flags, int mode)$/;" f file: +newgroups Lib/nntplib.py /^ def newgroups(self, date, *, file=None):$/;" m class:NNTP +newinterpid Objects/interpreteridobject.c /^newinterpid(PyTypeObject *cls, int64_t id, int force)$/;" f file: +newline Lib/email/header.py /^ def newline(self):$/;" m class:_ValueFormatter +newline Lib/test/test_socket.py /^ newline = ''$/;" v class:UnicodeReadFileObjectClassTestCase +newline Lib/test/test_socket.py /^ newline = ''$/;" v class:UnicodeReadWriteFileObjectClassTestCase +newline Lib/test/test_socket.py /^ newline = ''$/;" v class:UnicodeWriteFileObjectClassTestCase +newline Lib/test/test_socket.py /^ newline = None$/;" v class:FileObjectClassTestCase +newline Tools/cases_generator/lexer.py /^newline = r"\\n"$/;" v +newline_and_indent_event Lib/idlelib/editor.py /^ def newline_and_indent_event(self, event):$/;" m class:EditorWindow +newlines Lib/_pyio.py /^ def newlines(self):$/;" m class:IncrementalNewlineDecoder +newlines Lib/_pyio.py /^ def newlines(self):$/;" m class:TextIOBase +newlines Lib/_pyio.py /^ def newlines(self):$/;" m class:TextIOWrapper +newlines Lib/tempfile.py /^ def newlines(self):$/;" m class:SpooledTemporaryFile +newlines Lib/typing.py /^ def newlines(self) -> Any:$/;" m class:TextIO +newlines_rsplit Tools/stringbench/stringbench.py /^def newlines_rsplit(STR):$/;" f +newlines_rsplit_2000 Tools/stringbench/stringbench.py /^def newlines_rsplit_2000(STR):$/;" f +newlines_split Tools/stringbench/stringbench.py /^def newlines_split(STR):$/;" f +newlines_split_2000 Tools/stringbench/stringbench.py /^def newlines_split_2000(STR):$/;" f +newlines_splitlines Tools/stringbench/stringbench.py /^def newlines_splitlines(STR):$/;" f +newlines_splitlines_2000 Tools/stringbench/stringbench.py /^def newlines_splitlines_2000(STR):$/;" f +newlockobject Modules/_threadmodule.c /^newlockobject(PyObject *module)$/;" f file: +newmeth Lib/test/datetimetester.py /^ def newmeth(self, start):$/;" m class:TestDate.test_subclass_date.C +newmeth Lib/test/datetimetester.py /^ def newmeth(self, start):$/;" m class:TestDateTime.test_subclass_datetime.C +newmeth Lib/test/datetimetester.py /^ def newmeth(self, start):$/;" m class:TestDateTimeTZ.test_subclass_datetimetz.C +newmeth Lib/test/datetimetester.py /^ def newmeth(self, start):$/;" m class:TestTime.test_subclass_time.C +newmeth Lib/test/datetimetester.py /^ def newmeth(self, start):$/;" m class:TestTimeTZ.test_subclass_timetz.C +newmethod Lib/test/test_xml_etree.py /^ def newmethod(self):$/;" m class:ElementTreeTypeTest.test_Element_subclass_new_method.MyElement +newnews Lib/nntplib.py /^ def newnews(self, group, date, *, file=None):$/;" m class:NNTP +newobj_unpickling_error Modules/_pickle.c /^newobj_unpickling_error(PickleState *st, const char *msg, int use_kwargs,$/;" f file: +newossmixerobject Modules/ossaudiodev.c /^newossmixerobject(PyObject *arg)$/;" f file: +newossobject Modules/ossaudiodev.c /^newossobject(PyObject *arg)$/;" f file: +newsemlockobject Modules/_multiprocessing/semaphore.c /^newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue,$/;" f file: +newseq Lib/idlelib/rpc.py /^ def newseq(self):$/;" m class:SocketIO +newsize Lib/test/test_sys.py /^ newsize = PySet_MINSIZE$/;" v class:SizeofTest.test_objecttypes.C +newstyle Lib/test/test_index.py /^class newstyle:$/;" c +newstyleclass Lib/test/test_sys.py /^ class newstyleclass(object): pass$/;" c function:SizeofTest.test_objecttypes +newt Lib/test/test_set.py /^ newt = elem$/;" v class:TestJointOps.test_deepcopy.Tracer +newtask Lib/test/test_thread.py /^ def newtask(self):$/;" m class:ThreadRunningTests +newtest Lib/test/test_quopri.py /^ def newtest(self):$/;" f function:withpythonimplementation +newtest Lib/test/test_tkinter/support.py /^ def newtest(self):$/;" f function:requires_tk.deco +newtest Lib/test/test_xml_etree.py /^ def newtest(*args, **kwargs):$/;" f function:checkwarnings.decorator +newtrap Modules/_decimal/libmpdec/mpdecimal.h /^ uint32_t newtrap; \/* set by mpd_addstatus_raise() *\/$/;" m struct:mpd_context_t +newxmlparseobject Modules/pyexpat.c /^newxmlparseobject(pyexpat_state *state, const char *encoding,$/;" f file: +next Include/cpython/modsupport.h /^ struct _PyArg_Parser *next;$/;" m struct:_PyArg_Parser typeref:struct:_PyArg_Parser::_PyArg_Parser +next Include/cpython/pystate.h /^ PyThreadState *next;$/;" m struct:_ts +next Include/internal/pycore_atexit.h /^ struct atexit_callback *next;$/;" m struct:atexit_callback typeref:struct:atexit_callback::atexit_callback +next Include/internal/pycore_dtoa.h /^ struct Bigint *next;$/;" m struct:Bigint typeref:struct:Bigint::Bigint +next Include/internal/pycore_hashtable.h /^ struct _Py_slist_item_s *next;$/;" m struct:_Py_slist_item_s typeref:struct:_Py_slist_item_s::_Py_slist_item_s +next Include/internal/pycore_interp.h /^ PyInterpreterState *next;$/;" m struct:_is +next Include/internal/pycore_interp.h /^ struct _xidregitem *next;$/;" m struct:_xidregitem typeref:struct:_xidregitem::_xidregitem +next Include/internal/pycore_runtime.h /^ struct _Py_AuditHookEntry *next;$/;" m struct:_Py_AuditHookEntry typeref:struct:_Py_AuditHookEntry::_Py_AuditHookEntry +next Lib/ast.py /^ def next(self):$/;" m class:_Precedence +next Lib/bdb.py /^ next = 1 # Next bp to be assigned$/;" v class:Breakpoint +next Lib/idlelib/debugger.py /^ def next(self):$/;" m class:Debugger +next Lib/mailbox.py /^ def next(self):$/;" m class:Maildir +next Lib/multiprocessing/pool.py /^ def next(self, timeout=None):$/;" m class:IMapIterator +next Lib/nntplib.py /^ def next(self):$/;" m class:NNTP +next Lib/shelve.py /^ def next(self):$/;" m class:BsdDbShelf +next Lib/tarfile.py /^ def next(self):$/;" m class:TarFile +next Lib/test/test_ast.py /^ def next(self):$/;" m class:AST_Tests.test_precedence_enum._Precedence +next Lib/test/test_unittest/testmock/testmock.py /^ def next(self):$/;" m class:Iter +next Lib/tkinter/ttk.py /^ def next(self, item):$/;" m class:Treeview +next Modules/_ctypes/malloc_closure.c /^ union _tagITEM *next;$/;" m union:_tagITEM typeref:union:_tagITEM::_tagITEM file: +next Modules/_curses_panel.c /^ struct _list_of_panels *next;$/;" m struct:_list_of_panels typeref:struct:_list_of_panels::_list_of_panels file: +next Modules/_functoolsmodule.c /^ struct lru_list_elem *prev, *next; \/* borrowed links *\/$/;" m struct:lru_list_elem typeref:struct:lru_list_elem:: file: +next Modules/_testbuffer.c /^ struct ndbuf *next;$/;" m struct:ndbuf typeref:struct:ndbuf::ndbuf file: +next Modules/_tkinter.c /^ struct _fhcdata *next;$/;" m struct:_fhcdata typeref:struct:_fhcdata::_fhcdata file: +next Modules/_xxinterpchannelsmodule.c /^ struct _channelend *next;$/;" m struct:_channelend typeref:struct:_channelend::_channelend file: +next Modules/_xxinterpchannelsmodule.c /^ struct _channelitem *next;$/;" m struct:_channelitem typeref:struct:_channelitem::_channelitem file: +next Modules/_xxinterpchannelsmodule.c /^ struct _channelref *next;$/;" m struct:_channelref typeref:struct:_channelref::_channelref file: +next Modules/_zoneinfo.c /^ StrongCacheNode *next;$/;" m struct:StrongCacheNode file: +next Modules/expat/xmlparse.c /^ struct block *next;$/;" m struct:block typeref:struct:block::block file: +next Modules/expat/xmlparse.c /^ struct open_internal_entity *next;$/;" m struct:open_internal_entity typeref:struct:open_internal_entity::open_internal_entity file: +next Modules/itertoolsmodule.c /^ Py_ssize_t next;$/;" m struct:__anon410 file: +next Modules/nismodule.c /^ struct nismaplist *next;$/;" m struct:nismaplist typeref:struct:nismaplist::nismaplist file: +next Objects/odictobject.c /^ _ODictNode *next;$/;" m struct:_odictnode file: +next PC/launcher2.c /^ struct EnvironmentInfo *next;$/;" m struct:EnvironmentInfo typeref:struct:EnvironmentInfo::EnvironmentInfo file: +next PC/launcher2.c /^ struct _SearchInfoBuffer *next;$/;" m struct:_SearchInfoBuffer typeref:struct:_SearchInfoBuffer::_SearchInfoBuffer file: +next Parser/pegen.h /^ struct _memo *next;$/;" m struct:_memo typeref:struct:_memo::_memo +next Python/sysmodule.c /^ struct _preinit_entry *next;$/;" m struct:_preinit_entry typeref:struct:_preinit_entry::_preinit_entry file: +next Tools/cases_generator/plexer.py /^ def next(self, raw: bool = False) -> Token | None:$/;" m class:PLexer +next Tools/clinic/clinic.py /^ def next($/;" m class:DSLParser +nextScaffoldPart Modules/expat/xmlparse.c /^nextScaffoldPart(XML_Parser parser) {$/;" f file: +nextSibling Lib/xml/dom/minidom.py /^ nextSibling = None$/;" v class:Node +nextTagBinding Modules/expat/xmlparse.c /^ struct binding *nextTagBinding;$/;" m struct:binding typeref:struct:binding::binding file: +next_attribute Lib/test/test_unittest/testmock/testpatch.py /^ next_attribute = sentinel.Original2$/;" v class:PatchTest.test_multiple_patchobject.Something +next_attribute Lib/test/test_unittest/testmock/testpatch.py /^ next_attribute = sentinel.Original2$/;" v class:PatchTest.test_patchobject_twice.Something +next_code_delta Objects/codeobject.c /^next_code_delta(PyCodeAddressRange *bounds)$/;" f file: +next_code_version Tools/build/deepfreeze.py /^next_code_version = 1$/;" v +next_external_frame Python/_warnings.c /^next_external_frame(PyFrameObject *frame, PyTupleObject *skip_file_prefixes)$/;" f file: +next_id Include/internal/pycore_runtime.h /^ int64_t next_id;$/;" m struct:pyruntimestate::pyinterpreters +next_id Modules/_xxinterpchannelsmodule.c /^ int64_t next_id;$/;" m struct:_channels file: +next_index Include/internal/pycore_unicodeobject.h /^ Py_ssize_t next_index;$/;" m struct:_Py_unicode_runtime_ids +next_keys_version Include/internal/pycore_dict_state.h /^ uint32_t next_keys_version;$/;" m struct:_Py_dict_state +next_message Lib/test/test_logging.py /^ def next_message(self):$/;" m class:BaseTest +next_minus Lib/_pydecimal.py /^ def next_minus(self, a):$/;" m class:Context +next_minus Lib/_pydecimal.py /^ def next_minus(self, context=None):$/;" m class:Decimal +next_plus Lib/_pydecimal.py /^ def next_plus(self, a):$/;" m class:Context +next_plus Lib/_pydecimal.py /^ def next_plus(self, context=None):$/;" m class:Decimal +next_posi Modules/zlibmodule.c /^ Bytef *next_posi;$/;" m struct:__anon304 file: +next_read_idx Modules/_pickle.c /^ Py_ssize_t next_read_idx;$/;" m struct:UnpicklerObject file: +next_rec Lib/test/test_logging.py /^ def next_rec(self):$/;" m class:BaseFileTest +next_set_method Lib/test/test_bdb.py /^ def next_set_method(self):$/;" m class:Tracer +next_sibling Lib/lib2to3/pytree.py /^ def next_sibling(self):$/;" m class:Base +next_swappable_instruction Python/flowgraph.c /^next_swappable_instruction(basicblock *block, int i, int lineno)$/;" f file: +next_test Lib/idlelib/idle_test/htest.py /^ def next_test():$/;" f function:run +next_toward Lib/_pydecimal.py /^ def next_toward(self, a, b):$/;" m class:Context +next_toward Lib/_pydecimal.py /^ def next_toward(self, other, context=None):$/;" m class:Decimal +next_unique_id Include/internal/pycore_interp.h /^ uint64_t next_unique_id;$/;" m struct:_is::pythreads +next_version Include/internal/pycore_function.h /^ uint32_t next_version;$/;" m struct:_py_func_state +next_version_tag Include/internal/pycore_typeobject.h /^ unsigned int next_version_tag;$/;" m struct:_types_runtime_state +next_version_tag Include/internal/pycore_typeobject.h /^ unsigned int next_version_tag;$/;" m struct:types_state +nextarena Include/internal/pycore_obmalloc.h /^ struct arena_object* nextarena;$/;" m struct:arena_object typeref:struct:arena_object::arena_object +nextfile Lib/fileinput.py /^ def nextfile(self):$/;" m class:FileInput +nextfile Lib/fileinput.py /^def nextfile():$/;" f +nextfile Lib/test/test_fileinput.py /^ def nextfile(self):$/;" m class:MockFileInput +nextlink Modules/itertoolsmodule.c /^ PyObject *nextlink;$/;" m struct:__anon405 file: +nextoffset Include/internal/pycore_obmalloc.h /^ uint nextoffset; \/* bytes to virgin block *\/$/;" m struct:pool_header +nextpool Include/internal/pycore_obmalloc.h /^ struct pool_header *nextpool; \/* next pool of this size class *\/$/;" m struct:pool_header typeref:struct:pool_header::pool_header +nextprompt Parser/tokenizer.h /^ const char *prompt, *nextprompt; \/* For interactive prompting *\/$/;" m struct:tok_state +nextseq Lib/idlelib/rpc.py /^ nextseq = 0$/;" v class:SocketIO +nextseq Lib/idlelib/rpc.py /^ nextseq = 1 # Requests coming from the client are odd numbered$/;" v class:RPCClient +nextsib Modules/expat/xmlparse.c /^ int nextsib;$/;" m struct:__anon612 file: +nfc_first Modules/unicodedata_db.h /^static struct reindex nfc_first[] = {$/;" v typeref:struct:reindex +nfc_last Modules/unicodedata_db.h /^static struct reindex nfc_last[] = {$/;" v typeref:struct:reindex +nfc_nfkc Modules/unicodedata.c /^nfc_nfkc(PyObject *self, PyObject *input, int k)$/;" f file: +nfd_nfkd Modules/unicodedata.c /^nfd_nfkd(PyObject *self, PyObject *input, int k)$/;" f file: +nfp2lasta Include/internal/pycore_obmalloc.h /^ struct arena_object* nfp2lasta[MAX_POOLS_IN_ARENA + 1];$/;" m struct:_obmalloc_mgmt typeref:struct:_obmalloc_mgmt::arena_object +nfp2lasta Objects/obmalloc.c 879;" d file: +nframe Include/internal/pycore_tracemalloc.h /^ uint16_t nframe;$/;" m struct:tracemalloc_traceback +nframes Lib/test/test_aifc.py /^ nframes = 48$/;" v class:AifcALAWTest +nframes Lib/test/test_aifc.py /^ nframes = 48$/;" v class:AifcPCM16Test +nframes Lib/test/test_aifc.py /^ nframes = 48$/;" v class:AifcPCM24Test +nframes Lib/test/test_aifc.py /^ nframes = 48$/;" v class:AifcPCM32Test +nframes Lib/test/test_aifc.py /^ nframes = 48$/;" v class:AifcPCM8Test +nframes Lib/test/test_aifc.py /^ nframes = 48$/;" v class:AifcULAWTest +nframes Lib/test/test_sunau.py /^ nframes = 48$/;" v class:SunauPCM16Test +nframes Lib/test/test_sunau.py /^ nframes = 48$/;" v class:SunauPCM24Test +nframes Lib/test/test_sunau.py /^ nframes = 48$/;" v class:SunauPCM32Test +nframes Lib/test/test_sunau.py /^ nframes = 48$/;" v class:SunauPCM8Test +nframes Lib/test/test_sunau.py /^ nframes = 48$/;" v class:SunauULAWTest +nframes Lib/test/test_wave.py /^ nframes = 48$/;" v class:WavePCM16Test +nframes Lib/test/test_wave.py /^ nframes = 48$/;" v class:WavePCM24ExtTest +nframes Lib/test/test_wave.py /^ nframes = 48$/;" v class:WavePCM24Test +nframes Lib/test/test_wave.py /^ nframes = 48$/;" v class:WavePCM32Test +nframes Lib/test/test_wave.py /^ nframes = 48$/;" v class:WavePCM8Test +nfreepools Include/internal/pycore_obmalloc.h /^ uint nfreepools;$/;" m struct:arena_object +ngettext Lib/gettext.py /^ def ngettext(self, msgid1, msgid2, n):$/;" m class:GNUTranslations +ngettext Lib/gettext.py /^ def ngettext(self, msgid1, msgid2, n):$/;" m class:NullTranslations +ngettext Lib/gettext.py /^def ngettext(msgid1, msgid2, n):$/;" f +ngettext Lib/optparse.py /^ def ngettext(singular, plural, n):$/;" f function:_repr +nicer_error Lib/test/test_venv.py /^ def nicer_error(self):$/;" m class:EnsurePipTest +night Lib/test/test_enum.py /^ night = 4$/;" v class:TestSpecial.test_getattr_getitem.Period +nine Lib/test/test_enum.py /^ nine = '9'$/;" v class:TestSpecial.test_custom_strenum.GoodbyeEnum +nine Lib/test/test_enum.py /^ nine = '9'$/;" v class:TestSpecial.test_strenum.GoodbyeEnum +ninstance Lib/test/test_unittest/test_case.py /^ ninstance = 0$/;" v class:.test_no_exception_leak.MyException +nis Lib/test/test_nis.py /^ nis = import_helper.import_module('nis')$/;" v +nis_cat Modules/nismodule.c /^nis_cat(PyObject *module, PyObject *args, PyObject *kwdict)$/;" f file: +nis_clear Modules/nismodule.c /^nis_clear(PyObject *m)$/;" f file: +nis_error Modules/nismodule.c /^ PyObject *nis_error;$/;" m struct:__anon487 file: +nis_error Modules/nismodule.c /^nis_error(nis_state *state, int err)$/;" f file: +nis_exec Modules/nismodule.c /^nis_exec(PyObject *module)$/;" f file: +nis_foreach Modules/nismodule.c /^nis_foreach(int instatus, char *inkey, int inkeylen, char *inval,$/;" f file: +nis_free Modules/nismodule.c /^nis_free(void *m)$/;" f file: +nis_get_default_domain Modules/nismodule.c /^nis_get_default_domain(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f file: +nis_map Modules/nismodule.c /^static struct nis_map {$/;" s file: +nis_maplist Modules/nismodule.c /^nis_maplist(nis_state *state, char *dom)$/;" f file: +nis_mapname Modules/nismodule.c /^nis_mapname(char *map, int *pfix)$/;" f file: +nis_maps Modules/nismodule.c /^nis_maps (PyObject *module, PyObject *args, PyObject *kwdict)$/;" f file: +nis_match Modules/nismodule.c /^nis_match(PyObject *module, PyObject *args, PyObject *kwdict)$/;" f file: +nis_methods Modules/nismodule.c /^static PyMethodDef nis_methods[] = {$/;" v file: +nis_slots Modules/nismodule.c /^static PyModuleDef_Slot nis_slots[] = {$/;" v file: +nis_state Modules/nismodule.c /^} nis_state;$/;" t typeref:struct:__anon487 file: +nis_traverse Modules/nismodule.c /^nis_traverse(PyObject *m, visitproc visit, void *arg)$/;" f file: +nis_xdr_domainname Modules/nismodule.c /^nis_xdr_domainname(XDR *xdrs, domainname *objp)$/;" f file: +nis_xdr_mapname Modules/nismodule.c /^nis_xdr_mapname(XDR *xdrs, mapname *objp)$/;" f file: +nis_xdr_ypmaplist Modules/nismodule.c /^nis_xdr_ypmaplist(XDR *xdrs, nismaplist *objp)$/;" f file: +nis_xdr_ypresp_maplist Modules/nismodule.c /^nis_xdr_ypresp_maplist(XDR *xdrs, nisresp_maplist *objp)$/;" f file: +nis_xdr_ypstat Modules/nismodule.c /^nis_xdr_ypstat(XDR *xdrs, nisstat *objp)$/;" f file: +nismaplist Modules/nismodule.c /^struct nismaplist {$/;" s file: +nismaplist Modules/nismodule.c /^typedef struct nismaplist nismaplist;$/;" t typeref:struct:nismaplist file: +nismodule Modules/nismodule.c /^static struct PyModuleDef nismodule = {$/;" v typeref:struct:PyModuleDef file: +nisproc_maplist_2 Modules/nismodule.c /^nisproc_maplist_2(domainname *argp, CLIENT *clnt)$/;" f file: +nisresp_maplist Modules/nismodule.c /^struct nisresp_maplist {$/;" s file: +nisresp_maplist Modules/nismodule.c /^typedef struct nisresp_maplist nisresp_maplist;$/;" t typeref:struct:nisresp_maplist file: +nisstat Modules/nismodule.c /^enum nisstat {$/;" g file: +nisstat Modules/nismodule.c /^typedef enum nisstat nisstat;$/;" t typeref:enum:nisstat file: +nitems Modules/_operator.c /^ Py_ssize_t nitems;$/;" m struct:__anon474 file: +nitpick_ignore Doc/conf.py /^nitpick_ignore = [$/;" v +nl Modules/socketmodule.h /^ struct sockaddr_nl nl;$/;" m union:sock_addr typeref:struct:sock_addr::sockaddr_nl +nl_langinfo Lib/test/test__locale.py /^ nl_langinfo = None$/;" v +nlargest Lib/heapq.py /^def nlargest(n, iterable, key=None):$/;" f +nldecoder_object Modules/_io/textio.c /^struct nldecoder_object {$/;" s file: +nldecoder_object Modules/_io/textio.c /^typedef struct nldecoder_object nldecoder_object;$/;" t typeref:struct:nldecoder_object file: +nldecoder_slots Modules/_io/textio.c /^static PyType_Slot nldecoder_slots[] = {$/;" v file: +nldecoder_spec Modules/_io/textio.c /^PyType_Spec nldecoder_spec = {$/;" v +nlink_t Lib/test/test_lib2to3/data/infinite_recursion.py /^nlink_t = __uint16_t$/;" v +nlst Lib/ftplib.py /^ def nlst(self, *args):$/;" m class:FTP +nlz Modules/_decimal/libmpdec/typearith.h /^nlz(uint32_t x)$/;" f +nlz Modules/_decimal/libmpdec/typearith.h /^nlz(uint64_t x)$/;" f +nm_dec_as_long Modules/_decimal/_decimal.c /^nm_dec_as_long(PyObject *dec)$/;" f file: +nm_mpd_qdivmod Modules/_decimal/_decimal.c /^nm_mpd_qdivmod(PyObject *v, PyObject *w)$/;" f file: +nm_mpd_qpow Modules/_decimal/_decimal.c /^nm_mpd_qpow(PyObject *base, PyObject *exp, PyObject *mod)$/;" f file: +nm_nonzero Modules/_decimal/_decimal.c /^nm_nonzero(PyObject *v)$/;" f file: +nmstrtPages Modules/expat/nametab.h /^static const unsigned char nmstrtPages[] = {$/;" v +nntp_class Lib/test/test_nntplib.py /^ def nntp_class(*pos, **kw):$/;" m class:MockSslTests +nntp_class Lib/test/test_nntplib.py /^ nntp_class = nntplib.NNTP$/;" v class:MockSocketTests +nntp_version Lib/test/test_nntplib.py /^ nntp_version = 1$/;" v class:NNTPv1Tests +nntp_version Lib/test/test_nntplib.py /^ nntp_version = 2$/;" v class:CapsAfterLoginNNTPv2Tests +nntp_version Lib/test/test_nntplib.py /^ nntp_version = 2$/;" v class:NNTPv2Tests +nntp_version Lib/test/test_nntplib.py /^ nntp_version = 2$/;" v class:SendReaderNNTPv2Tests +nntplib Lib/test/test_nntplib.py /^nntplib = warnings_helper.import_deprecated("nntplib")$/;" v +no_cache Lib/zoneinfo/_zoneinfo.py /^ def no_cache(cls, key):$/;" m class:ZoneInfo +no_chdir Lib/test/test_shutil.py /^no_chdir = unittest.mock.patch('os.chdir',$/;" v +no_code1 Lib/test/test_compile.py /^ def no_code1():$/;" f function:TestSpecifics.test_lineno_after_no_code +no_code2 Lib/test/test_compile.py /^ def no_code2():$/;" f function:TestSpecifics.test_lineno_after_no_code +no_empty_basic_blocks Python/flowgraph.c /^no_empty_basic_blocks(cfg_builder *g) {$/;" f file: +no_exception Modules/_xxsubinterpretersmodule.c /^static const struct _sharedexception no_exception = {$/;" v typeref:struct:_sharedexception file: +no_grouping Python/formatter_unicode.c /^static const char no_grouping[1] = {CHAR_MAX};$/;" v file: +no_groups Lib/test/test_argparse.py /^ def no_groups(parser, argument_signatures):$/;" f function:ParserTesterMetaclass.__init__ +no_intrinsic Python/intrinsics.c /^no_intrinsic(PyThreadState* tstate, PyObject *unused)$/;" f file: +no_jump_to_non_integers Lib/test/test_sys_settrace.py /^def no_jump_to_non_integers(output):$/;" f +no_jump_without_trace_function Lib/test/test_sys_settrace.py /^def no_jump_without_trace_function():$/;" f +no_matching_rfc2965 Lib/http/cookiejar.py /^ def no_matching_rfc2965(ns_cookie, lookup=lookup):$/;" f function:CookieJar.make_cookies +no_modules Programs/_freeze_module.c /^static const struct _frozen no_modules[] = {$/;" v typeref:struct:_frozen file: +no_neg_0 Python/formatter_unicode.c /^ int no_neg_0;$/;" m struct:__anon674 file: +no_pop_blocks Lib/test/test_sys_settrace.py /^def no_pop_blocks():$/;" f +no_pop_tops Lib/test/test_sys_settrace.py /^def no_pop_tops(): # 0$/;" f +no_redundant_jumps Python/flowgraph.c /^no_redundant_jumps(cfg_builder *g) {$/;" f file: +no_rerun Lib/test/test_import/__init__.py /^def no_rerun(reason):$/;" f +no_tests_run Lib/test/libregrtest/main.py /^ def no_tests_run(self):$/;" m class:Regrtest +no_tools_for_global_event Python/ceval.c /^no_tools_for_global_event(PyThreadState *tstate, int event)$/;" f file: +no_tools_for_local_event Python/ceval.c /^no_tools_for_local_event(PyThreadState *tstate, _PyInterpreterFrame *frame, int event)$/;" f file: +no_tracing Lib/test/support/__init__.py /^def no_tracing(func):$/;" f +no_type_check Lib/typing.py /^def no_type_check(arg):$/;" f +no_type_check_decorator Lib/typing.py /^def no_type_check_decorator(decorator):$/;" f +nobody Lib/http/server.py /^nobody = None$/;" v +nobody Lib/test/smtpd.py /^ nobody = pwd.getpwnam('nobody')[2]$/;" v +nobody_uid Lib/http/server.py /^def nobody_uid():$/;" f +node Lib/platform.py /^def node():$/;" f +node Lib/uuid.py /^ def node(self):$/;" m class:UUID +node Parser/pegen.h /^ void *node;$/;" m struct:_memo +node Tools/wasm/wasm_build.py /^ node = "node"$/;" v class:EmscriptenTarget +nodeName Lib/xml/dom/minidom.py /^ nodeName = "#cdata-section"$/;" v class:CDATASection +nodeName Lib/xml/dom/minidom.py /^ nodeName = "#comment"$/;" v class:Comment +nodeName Lib/xml/dom/minidom.py /^ nodeName = "#document"$/;" v class:Document +nodeName Lib/xml/dom/minidom.py /^ nodeName = "#document-fragment"$/;" v class:DocumentFragment +nodeName Lib/xml/dom/minidom.py /^ nodeName = "#text"$/;" v class:Text +nodeName Lib/xml/dom/minidom.py /^ nodeName = property(_get_nodeName, _set_nodeName)$/;" v class:ProcessingInstruction +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.ATTRIBUTE_NODE$/;" v class:Attr +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.CDATA_SECTION_NODE$/;" v class:CDATASection +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.COMMENT_NODE$/;" v class:Comment +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.DOCUMENT_FRAGMENT_NODE$/;" v class:DocumentFragment +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.DOCUMENT_NODE$/;" v class:Document +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.DOCUMENT_TYPE_NODE$/;" v class:DocumentType +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.ELEMENT_NODE$/;" v class:Element +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.ENTITY_NODE$/;" v class:Entity +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.NOTATION_NODE$/;" v class:Notation +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.PROCESSING_INSTRUCTION_NODE$/;" v class:ProcessingInstruction +nodeType Lib/xml/dom/minidom.py /^ nodeType = Node.TEXT_NODE$/;" v class:Text +nodeValue Lib/xml/dom/minidom.py /^ nodeValue = None$/;" v class:Document +nodeValue Lib/xml/dom/minidom.py /^ nodeValue = None$/;" v class:DocumentFragment +nodeValue Lib/xml/dom/minidom.py /^ nodeValue = None$/;" v class:DocumentType +nodeValue Lib/xml/dom/minidom.py /^ nodeValue = None$/;" v class:Element +nodeValue Lib/xml/dom/minidom.py /^ nodeValue = None$/;" v class:Entity +nodeValue Lib/xml/dom/minidom.py /^ nodeValue = None$/;" v class:Notation +nodeValue Lib/xml/dom/minidom.py /^ nodeValue = property(_get_nodeValue, _set_nodeValue)$/;" v class:ProcessingInstruction +node_debug Tools/wasm/wasm_build.py /^ node_debug = "node-debug"$/;" v class:EmscriptenTarget +node_depth Modules/_blake2/impl/blake2.h /^ uint8_t node_depth; \/\/ 15$/;" m struct:__blake2s_param +node_depth Modules/_blake2/impl/blake2.h /^ uint8_t node_depth; \/\/ 17$/;" m struct:__blake2b_param +node_offset Modules/_blake2/impl/blake2.h /^ uint64_t node_offset; \/\/ 16$/;" m struct:__blake2b_param +node_offset Modules/_blake2/impl/blake2.h /^ uint8_t node_offset[6];\/\/ 14$/;" m struct:__blake2s_param +nodoc_func Lib/test/pydoc_mod.py /^def nodoc_func():$/;" f +nodocstrings Tools/i18n/pygettext.py /^ nodocstrings = {}$/;" v class:main.Options +noflush Lib/test/test_print.py /^ class noflush:$/;" c function:TestPrint.test_print_flush +noheaders Lib/urllib/request.py /^def noheaders():$/;" f +nohelp Lib/cmd.py /^ nohelp = "*** No help on %s"$/;" v class:Cmd +nolog Lib/cgi.py /^def nolog(*allargs):$/;" f +non_bool Lib/test/test_dataclasses.py /^ def non_bool(value):$/;" f function:TestHash.test_hash_rules +non_error_app Lib/test/test_wsgiref.py /^ def non_error_app(e,s):$/;" f function:HandlerTests.testBasicErrorOutput +non_error_app Lib/test/test_wsgiref.py /^ def non_error_app(e,s):$/;" f function:HandlerTests.testHeaderFormats +non_hierarchical Lib/urllib/parse.py /^non_hierarchical = ['gopher', 'hdl', 'mailto', 'news',$/;" v +non_isolated_def Modules/_testmultiphase.c /^static PyModuleDef non_isolated_def = TEST_MODULE_DEF("_test_non_isolated",$/;" v file: +non_isolated_slots Modules/_testmultiphase.c /^static PyModuleDef_Slot non_isolated_slots[] = {$/;" v file: +non_latin_bin_msg_as7bit Lib/test/test_email/test_email.py /^ non_latin_bin_msg_as7bit = '\\n'.join(non_latin_bin_msg_as7bit)$/;" v class:Test8BitBytesHandling +non_latin_bin_msg_as7bit Lib/test/test_email/test_email.py /^ non_latin_bin_msg_as7bit = non_latin_bin_msg_as7bit_wrapped.split('\\n')$/;" v class:Test8BitBytesHandling +non_linux_skip_if_other_okay_error Lib/test/test_ssl.py /^ def non_linux_skip_if_other_okay_error(self, err):$/;" m class:TestPreHandshakeClose +non_word_re Lib/http/cookiejar.py /^ non_word_re = re.compile(r"\\W")$/;" v class:CookieJar +nonascii Lib/test/test_pydoc.py /^class nonascii:$/;" c +nonascii_prefix Python/importdl.c /^static const char * const nonascii_prefix = "PyInitU";$/;" v file: +nonchar Tools/unicode/mkstringprep.py /^nonchar = set(range(0xFDD0,0xFDF0))$/;" v +nondst_folds Lib/test/datetimetester.py /^ def nondst_folds(self):$/;" m class:ZoneInfo +none_as_number Objects/object.c /^static PyNumberMethods none_as_number = {$/;" v file: +none_bool Objects/object.c /^none_bool(PyObject *v)$/;" f file: +none_dealloc Objects/object.c /^none_dealloc(PyObject* none)$/;" f file: +none_hash Objects/object.c /^static Py_hash_t none_hash(PyObject *v)$/;" f file: +none_loader Lib/test/test_xml_etree.py /^ def none_loader(self, href, parser, encoding=None):$/;" m class:XIncludeTest +none_new Objects/object.c /^none_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f file: +none_removed Lib/idlelib/idle_test/test_pyshell.py /^ def none_removed(self, text):$/;" m class:PyShellRemoveLastNewlineAndSurroundingWhitespaceTest +none_repr Objects/object.c /^none_repr(PyObject *op)$/;" f file: +nonexistent packaging/skipped_tests.py /^nonexistent = mentioned - alltests$/;" v +nonlocal_stmt_rule Parser/parser.c /^nonlocal_stmt_rule(Parser *p)$/;" f file: +nonlocal_stmt_type Parser/parser.c 98;" d file: +nonmember Lib/enum.py /^class nonmember(object):$/;" c +nonmodule_bar Modules/_testmultiphase.c /^nonmodule_bar(PyObject *self, PyObject *args)$/;" f file: +nonmodule_methods Modules/_testmultiphase.c /^static PyMethodDef nonmodule_methods[] = {$/;" v file: +nontypes Lib/idlelib/idle_test/test_macosx.py /^nontypes = {'other'}$/;" v +noon Lib/test/test_enum.py /^ noon = 2$/;" v class:TestSpecial.test_getattr_getitem.Period +noop Doc/includes/mp_pool.py /^def noop(x):$/;" f +noop Lib/imaplib.py /^ def noop(self):$/;" m class:IMAP4 +noop Lib/poplib.py /^ def noop(self):$/;" m class:POP3 +noop Lib/smtplib.py /^ def noop(self):$/;" m class:SMTP +noop Lib/test/test_asyncio/test_eager_task_factory.py /^ async def noop(): pass$/;" f function:EagerTaskFactoryLoopTests.test_eager_task_factory_set +noop Lib/test/test_asyncio/test_events.py /^def noop(*args, **kwargs):$/;" f +noop Lib/test/test_threading.py /^ def noop(): pass$/;" f function:ThreadTests.test_leak_without_join +noop Lib/test/test_unittest/test_loader.py /^ def noop(arg):$/;" f function:Test_TestLoader.test_partial_functions +noop_character_data_handler Modules/pyexpat.c /^noop_character_data_handler(void *userData, const XML_Char *data, int len)$/;" f file: +noop_code_event_handler Modules/_testcapi/watchers.c /^noop_code_event_handler(PyCodeEvent event, PyCodeObject *co)$/;" f file: +noop_func_event_handler Modules/_testcapi/watchers.c /^noop_func_event_handler(PyFunction_WatchEvent event, PyFunctionObject *func,$/;" f file: +noop_trace Lib/test/test_threading.py /^ def noop_trace(frame, event, arg):$/;" f function:ThreadTests.test_frame_tstate_tracing +noop_trace Lib/test/test_threading.py /^ def noop_trace(frame, event, arg):$/;" f function:ThreadTests.test_gettrace +nop Lib/test/test_coroutines.py /^ def nop():$/;" f function:CoroutineTest.test_await_15 +nop Lib/test/test_coroutines.py /^ def nop():$/;" f function:CoroutineTest.test_func_16 +nop_descr_get Modules/_testcapi/vectorcall.c /^nop_descr_get(PyObject *func, PyObject *obj, PyObject *type)$/;" f file: +norm Lib/test/test_cgi.py /^def norm(seq):$/;" f +norm Lib/test/test_glob.py /^ def norm(self, *parts):$/;" m class:GlobTests +norm Lib/test/test_unicode_file_functions.py /^ def norm(self, s):$/;" m class:UnicodeFileTests +normal Lib/test/support/_hypothesis_stubs/__init__.py /^ normal = 1$/;" v class:Verbosity +normal Modules/expat/xmltok.c /^ struct normal_encoding normal;$/;" m struct:unknown_encoding typeref:struct:unknown_encoding::normal_encoding file: +normal_body Lib/email/contentmanager.py /^ def normal_body(lines): return b'\\n'.join(lines) + b'\\n'$/;" f function:_encode_text +normal_encoding Modules/expat/xmltok.c /^struct normal_encoding {$/;" s file: +normal_foo_name Lib/test/test_unittest/testmock/testasync.py /^normal_foo_name = f'{__name__}.NormalClass'$/;" v +normal_form Lib/test/test_unicode_file_functions.py /^ normal_form = 'NFC'$/;" v class:UnicodeNFCFileTests +normal_form Lib/test/test_unicode_file_functions.py /^ normal_form = 'NFD'$/;" v class:UnicodeNFDFileTests +normal_form Lib/test/test_unicode_file_functions.py /^ normal_form = 'NFKC'$/;" v class:UnicodeNFKCFileTests +normal_form Lib/test/test_unicode_file_functions.py /^ normal_form = 'NFKD'$/;" v class:UnicodeNFKDFileTests +normal_form Lib/test/test_unicode_file_functions.py /^ normal_form = None$/;" v class:UnicodeFileTests +normal_func Lib/test/test_unittest/testmock/testasync.py /^def normal_func(): pass$/;" f +normal_method Lib/test/test_typing.py /^ def normal_method(self): ...$/;" m class:OverrideDecoratorTests.test_override.Base +normal_method Lib/test/test_typing.py /^ def normal_method(self):$/;" m class:OverrideDecoratorTests.test_override.Derived +normal_method Lib/test/test_unittest/testmock/testasync.py /^ def normal_method(self): pass$/;" m class:AsyncClass +normalization Modules/unicodedata.c /^ Py_UCS4 (*normalization)(Py_UCS4);$/;" m struct:previous_version file: +normalization_3_2_0 Modules/unicodedata_db.h /^static Py_UCS4 normalization_3_2_0(Py_UCS4 n)$/;" f +normalization_quick_check Modules/unicodedata.c /^ const unsigned char normalization_quick_check; \/* see is_normalized() *\/$/;" m struct:__anon642 file: +normalize Lib/_pydecimal.py /^ def normalize(self, a):$/;" m class:Context +normalize Lib/_pydecimal.py /^ def normalize(self, context=None):$/;" m class:Decimal +normalize Lib/importlib/metadata/__init__.py /^ def normalize(name):$/;" m class:Prepared +normalize Lib/locale.py /^def normalize(localename):$/;" f +normalize Lib/test/test_ctypes/test_pep3118.py /^def normalize(format):$/;" f +normalize Lib/test/test_tomllib/burntsushi.py /^def normalize(obj: Any) -> Any:$/;" f +normalize Lib/xml/dom/minidom.py /^ def normalize(self):$/;" m class:Childless +normalize Lib/xml/dom/minidom.py /^ def normalize(self):$/;" m class:Node +normalize Parser/pegen.h /^ PyObject* normalize;$/;" m struct:__anon657 +normalize Tools/i18n/pygettext.py /^def normalize(s, encoding):$/;" f +normalizeLines Modules/expat/xmlparse.c /^normalizeLines(XML_Char *s) {$/;" f file: +normalizePublicId Modules/expat/xmlparse.c /^normalizePublicId(XML_Char *publicId) {$/;" f file: +normalizeUserObj Modules/_lsprof.c /^normalizeUserObj(PyObject *obj)$/;" f file: +normalize_and_reduce_paths Tools/c-analyzer/distutils/msvc9compiler.py /^def normalize_and_reduce_paths(paths):$/;" f +normalize_and_reduce_paths Tools/c-analyzer/distutils/msvccompiler.py /^def normalize_and_reduce_paths(paths):$/;" f +normalize_c_whitespace Tools/patchcheck/patchcheck.py /^def normalize_c_whitespace(file_paths):$/;" f +normalize_calendar Lib/test/test_calendar.py /^ def normalize_calendar(self, s):$/;" m class:OutputTestCase +normalize_d_s_us Modules/_datetimemodule.c /^normalize_d_s_us(int *d, int *s, int *us)$/;" f file: +normalize_date Misc/coverity_model.c /^normalize_date(int *year, int *month, int *day)$/;" f file: +normalize_date Modules/_datetimemodule.c /^normalize_date(int *year, int *month, int *day)$/;" f file: +normalize_datetime Modules/_datetimemodule.c /^normalize_datetime(int *year, int *month, int *day,$/;" f file: +normalize_docs_whitespace Tools/patchcheck/patchcheck.py /^def normalize_docs_whitespace(file_paths):$/;" f +normalize_encoding Lib/encodings/__init__.py /^def normalize_encoding(encoding):$/;" f +normalize_insts Lib/test/support/bytecode_helper.py /^ def normalize_insts(self, insts):$/;" m class:CompilationStepTestCase +normalize_jumps Python/flowgraph.c /^normalize_jumps(_PyCfgBuilder *g)$/;" f file: +normalize_jumps_in_block Python/flowgraph.c /^normalize_jumps_in_block(cfg_builder *g, basicblock *b) {$/;" f file: +normalize_linesep_regex Lib/test/test_email/test_email.py /^ normalize_linesep_regex = re.compile(br'(? str:$/;" f +normalize_path Modules/_testinternalcapi.c /^normalize_path(PyObject *self, PyObject *filename)$/;" f file: +normalize_selection Tools/c-analyzer/c_common/scriptutil.py /^def normalize_selection(selected: str, *, possible=None):$/;" f +normalize_snippet Tools/clinic/clinic.py /^def normalize_snippet(s, *, indent=0):$/;" f +normalize_test_name Lib/test/libregrtest/runtest.py /^def normalize_test_name(test_full_name, *, is_error=False):$/;" f +normalize_text Lib/test/pythoninfo.py /^def normalize_text(text):$/;" f +normalize_trace_output Lib/test/test_dtrace.py /^def normalize_trace_output(output):$/;" f +normalize_whitespace Tools/patchcheck/patchcheck.py /^def normalize_whitespace(file_paths):$/;" f +normalize_y_m_d Modules/_datetimemodule.c /^normalize_y_m_d(int *y, int *m, int *d)$/;" f file: +normalized Lib/importlib/metadata/__init__.py /^ normalized = None$/;" v class:Prepared +normalized Modules/expat/xmltok.h /^ char normalized;$/;" m struct:__anon618 +normalizestring Python/codecs.c /^PyObject *normalizestring(const char *string)$/;" f file: +normalvariate Lib/random.py /^ def normalvariate(self, mu=0.0, sigma=1.0):$/;" m class:Random +normalvariate Lib/random.py /^normalvariate = _inst.normalvariate$/;" v +normcase Lib/ntpath.py /^ def normcase(s):$/;" f function:_get_bothseps +normcase Lib/posixpath.py /^def normcase(s):$/;" f +normpath Lib/ntpath.py /^ def normpath(path):$/;" f +normpath Lib/posixpath.py /^ def normpath(path):$/;" f +noskipdec Lib/test/test_socket.py /^ def noskipdec(obj):$/;" f function:skipWithClientIf +not_ Lib/operator.py /^def not_(a):$/;" f +not_a_test_method Lib/test/support/_hypothesis_stubs/__init__.py /^ not_a_test_method = 8$/;" v class:HealthCheck +not_callable Lib/test/test_unittest/testmock/testhelpers.py /^ not_callable = classmethod(None)$/;" v class:TestCallablePredicate.test_non_callable_classmethod.BadClassMethod +not_callable Lib/test/test_unittest/testmock/testhelpers.py /^ not_callable = staticmethod(None)$/;" v class:TestCallablePredicate.test_non_callable_staticmethod.BadStaticMethod +not_compressed Lib/tarfile.py /^ def not_compressed(comptype):$/;" f function:TarFile.open +not_equal_witness Lib/tabnanny.py /^ def not_equal_witness(self, other):$/;" m class:Whitespace +not_generic Lib/test/test_funcattrs.py /^ def not_generic(): pass$/;" f function:FunctionPropertiesTest.test___type_params__ +not_less_witness Lib/tabnanny.py /^ def not_less_witness(self, other):$/;" m class:Whitespace +not_overloaded Lib/test/test_typing.py /^ def not_overloaded(): pass$/;" f function:OverloadTests.test_overload_registry +not_test_method Lib/test/test_unittest/testmock/testpatch.py /^ def not_test_method(other_self):$/;" m class:PatchTest.test_patch_class_decorator.Foo +not_test_method Lib/test/test_unittest/testmock/testpatch.py /^ def not_test_method(other_self):$/;" m class:PatchTest.test_patchobject_class_decorator.Foo +notation Modules/expat/xmlparse.c /^ const XML_Char *notation;$/;" m struct:__anon611 file: +notation0 Modules/expat/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4, attlist0, attlist1,$/;" v file: +notation0 Modules/expat/xmlrole.c /^notation0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +notation1 Modules/expat/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4, attlist0, attlist1,$/;" v file: +notation1 Modules/expat/xmlrole.c /^notation1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +notation2 Modules/expat/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4, attlist0, attlist1,$/;" v file: +notation2 Modules/expat/xmlrole.c /^notation2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +notation3 Modules/expat/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4, attlist0, attlist1,$/;" v file: +notation3 Modules/expat/xmlrole.c /^notation3(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +notation4 Modules/expat/xmlrole.c /^ notation0, notation1, notation2, notation3, notation4, attlist0, attlist1,$/;" v file: +notation4 Modules/expat/xmlrole.c /^notation4(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +notationDecl Lib/test/test_sax.py /^ def notationDecl(self, name, publicId, systemId):$/;" m class:ExpatReaderTest.TestDTDHandler +notationDecl Lib/xml/sax/handler.py /^ def notationDecl(self, name, publicId, systemId):$/;" m class:DTDHandler +notationDecl Lib/xml/sax/saxutils.py /^ def notationDecl(self, name, publicId, systemId):$/;" m class:XMLFilterBase +notation_decl Lib/xml/sax/expatreader.py /^ def notation_decl(self, name, base, sysid, pubid):$/;" m class:ExpatParser +notation_decl_handler Lib/xml/dom/expatbuilder.py /^ def notation_decl_handler(self, notationName, base, systemId, publicId):$/;" m class:ExpatBuilder +noteargs Lib/test/test_decorators.py /^ def noteargs(*args, **kwds):$/;" f function:TestDecorators.test_argforms +noteq_bitwise_or_rule Parser/parser.c /^noteq_bitwise_or_rule(Parser *p)$/;" f file: +noteq_bitwise_or_type Parser/parser.c 199;" d file: +nothing Lib/test/test_functools.py /^ nothing = functools.partialmethod(capture)$/;" v class:TestPartialMethod.A +nothing Lib/test/test_unittest/test_case.py /^ def nothing(self):$/;" f function:.testKeyboardInterrupt +nothing Lib/test/test_unittest/test_case.py /^ def nothing(self):$/;" f function:.testSkippingEverywhere +nothing Lib/test/test_unittest/test_case.py /^ def nothing(self):$/;" f function:.testSystemExit +notification Lib/test/test_concurrent_futures/test_future.py /^ def notification():$/;" f function:FutureTests.test_exception_with_success +notification Lib/test/test_concurrent_futures/test_future.py /^ def notification():$/;" f function:FutureTests.test_result_with_cancel +notification Lib/test/test_concurrent_futures/test_future.py /^ def notification():$/;" f function:FutureTests.test_result_with_success +notify Lib/asyncio/locks.py /^ def notify(self, n=1):$/;" m class:Condition +notify Lib/multiprocessing/managers.py /^ def notify(self, n=1):$/;" m class:ConditionProxy +notify Lib/multiprocessing/synchronize.py /^ def notify(self, n=1):$/;" m class:Condition +notify Lib/threading.py /^ def notify(self, n=1):$/;" m class:Condition +notifyAll Lib/threading.py /^ def notifyAll(self):$/;" m class:Condition +notifyRunning Tools/unittestgui/unittestgui.py /^ def notifyRunning(self):$/;" m class:BaseGUITestRunner +notifyRunning Tools/unittestgui/unittestgui.py /^ def notifyRunning(self):$/;" m class:TkTestRunner +notifyStopped Tools/unittestgui/unittestgui.py /^ def notifyStopped(self):$/;" m class:BaseGUITestRunner +notifyStopped Tools/unittestgui/unittestgui.py /^ def notifyStopped(self):$/;" m class:TkTestRunner +notifyTestErrored Tools/unittestgui/unittestgui.py /^ def notifyTestErrored(self, test, err):$/;" m class:BaseGUITestRunner +notifyTestErrored Tools/unittestgui/unittestgui.py /^ def notifyTestErrored(self, test, err):$/;" m class:TkTestRunner +notifyTestFailed Tools/unittestgui/unittestgui.py /^ def notifyTestFailed(self, test, err):$/;" m class:BaseGUITestRunner +notifyTestFailed Tools/unittestgui/unittestgui.py /^ def notifyTestFailed(self, test, err):$/;" m class:TkTestRunner +notifyTestFailedExpectedly Tools/unittestgui/unittestgui.py /^ def notifyTestFailedExpectedly(self, test, err):$/;" m class:BaseGUITestRunner +notifyTestFailedExpectedly Tools/unittestgui/unittestgui.py /^ def notifyTestFailedExpectedly(self, test, err):$/;" m class:TkTestRunner +notifyTestFinished Tools/unittestgui/unittestgui.py /^ def notifyTestFinished(self, test):$/;" m class:BaseGUITestRunner +notifyTestFinished Tools/unittestgui/unittestgui.py /^ def notifyTestFinished(self, test):$/;" m class:TkTestRunner +notifyTestSkipped Tools/unittestgui/unittestgui.py /^ def notifyTestSkipped(self, test, reason):$/;" m class:BaseGUITestRunner +notifyTestSkipped Tools/unittestgui/unittestgui.py /^ def notifyTestSkipped(self, test, reason):$/;" m class:TkTestRunner +notifyTestStarted Tools/unittestgui/unittestgui.py /^ def notifyTestStarted(self, test):$/;" m class:BaseGUITestRunner +notifyTestStarted Tools/unittestgui/unittestgui.py /^ def notifyTestStarted(self, test):$/;" m class:TkTestRunner +notifyTestsDiscovered Tools/unittestgui/unittestgui.py /^ def notifyTestsDiscovered(self, test_suite):$/;" m class:BaseGUITestRunner +notifyTestsDiscovered Tools/unittestgui/unittestgui.py /^ def notifyTestsDiscovered(self, test_suite):$/;" m class:TkTestRunner +notify_all Lib/asyncio/locks.py /^ def notify_all(self):$/;" m class:Condition +notify_all Lib/multiprocessing/managers.py /^ def notify_all(self):$/;" m class:ConditionProxy +notify_all Lib/multiprocessing/synchronize.py /^ def notify_all(self):$/;" m class:Condition +notify_all Lib/threading.py /^ def notify_all(self):$/;" m class:Condition +notify_code_watchers Objects/codeobject.c /^notify_code_watchers(PyCodeEvent event, PyCodeObject *co)$/;" f file: +notify_func_watchers Objects/funcobject.c /^notify_func_watchers(PyInterpreterState *interp, PyFunction_WatchEvent event,$/;" f file: +notify_move Lib/turtledemo/nim.py /^ def notify_move(self, row, col):$/;" m class:NimController +notify_move Lib/turtledemo/nim.py /^ def notify_move(self, row, col):$/;" m class:NimModel +notify_move Lib/turtledemo/nim.py /^ def notify_move(self, row, col, maxspalte, player):$/;" m class:NimView +notify_over Lib/turtledemo/nim.py /^ def notify_over(self):$/;" m class:NimView +notify_range Lib/idlelib/colorizer.py /^ def notify_range(self, index1, index2=None):$/;" m class:ColorDelegator +notimplemented_as_number Objects/object.c /^static PyNumberMethods notimplemented_as_number = {$/;" v file: +notimplemented_bool Objects/object.c /^notimplemented_bool(PyObject *v)$/;" f file: +notimplemented_dealloc Objects/object.c /^notimplemented_dealloc(PyObject *notimplemented)$/;" f file: +notimplemented_methods Objects/object.c /^static PyMethodDef notimplemented_methods[] = {$/;" v file: +notimplemented_new Objects/object.c /^notimplemented_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f file: +notin_bitwise_or_rule Parser/parser.c /^notin_bitwise_or_rule(Parser *p)$/;" f file: +notin_bitwise_or_type Parser/parser.c 204;" d file: +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_ensure_future_coroutine +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_ensure_future_task +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_task_class +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_task_repr +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_task_repr_autogenerated +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_task_repr_name_not_str +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_task_set_methods +notmuch Lib/test/test_asyncio/test_tasks.py /^ async def notmuch():$/;" f function:BaseTaskTests.test_task_set_name_pylong +notmutch Lib/test/test_asyncio/test_tasks.py /^ async def notmutch():$/;" f function:BaseTaskTests.test_baseexception_during_cancel +notok Lib/test/datetimetester.py /^ class notok(ok):$/;" c function:TestTimezoneConversions.test_bogus_dst +now Lib/_pydatetime.py /^ def now(cls, tz=None):$/;" m class:datetime +now Modules/posixmodule.c /^ int now;$/;" m struct:__anon479 file: +nowhitespace Lib/textwrap.py /^ nowhitespace = '[^' + whitespace[1:]$/;" v class:TextWrapper +np Lib/test/pickletester.py /^ np = None$/;" v +np_bool Modules/_struct.c /^np_bool(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_byte Modules/_struct.c /^np_byte(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_char Modules/_struct.c /^np_char(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_double Modules/_struct.c /^np_double(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_float Modules/_struct.c /^np_float(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_halffloat Modules/_struct.c /^np_halffloat(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_int Modules/_struct.c /^np_int(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_long Modules/_struct.c /^np_long(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_longlong Modules/_struct.c /^np_longlong(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_short Modules/_struct.c /^np_short(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_size_t Modules/_struct.c /^np_size_t(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_ssize_t Modules/_struct.c /^np_ssize_t(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_ubyte Modules/_struct.c /^np_ubyte(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_uint Modules/_struct.c /^np_uint(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_ulong Modules/_struct.c /^np_ulong(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_ulonglong Modules/_struct.c /^np_ulonglong(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_ushort Modules/_struct.c /^np_ushort(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +np_void_p Modules/_struct.c /^np_void_p(_structmodulestate *state, char *p, PyObject *v, const formatdef *f)$/;" f file: +npgettext Lib/gettext.py /^ def npgettext(self, context, msgid1, msgid2, n):$/;" m class:GNUTranslations +npgettext Lib/gettext.py /^ def npgettext(self, context, msgid1, msgid2, n):$/;" m class:NullTranslations +npgettext Lib/gettext.py /^def npgettext(context, msgid1, msgid2, n):$/;" f +npyc PCbuild/rmpyc.py /^npyc = deltree("..\/Lib")$/;" v +nr_of_items Lib/turtle.py /^ def nr_of_items(self):$/;" m class:Tbuffer +nreadahead Lib/_pyio.py /^ def nreadahead():$/;" f function:IOBase.readline +nrv_alloc Python/dtoa.c /^nrv_alloc(const char *s, char **rve, int n)$/;" f file: +ns Include/cpython/pytime.h /^PyAPI_FUNC(_PyTime_t) _PyTime_FromNanoseconds(_PyTime_t ns);$/;" v +ns Modules/expat/xmltok.c 1649;" d file: +ns Modules/expat/xmltok.c 1654;" d file: +ns Modules/expat/xmltok.c 1659;" d file: +ns Modules/expat/xmltok.c 1666;" d file: +ns PC/layout/main.py /^ ns=ns,$/;" v +ns Tools/build/generate_sre_constants.py /^ ns = {}$/;" v +ns Tools/clinic/clinic.py /^ ns = cmdline.parse_args(argv)$/;" v +ns_dict Objects/namespaceobject.c /^ PyObject *ns_dict;$/;" m struct:__anon729 file: +ns_get PC/layout/support/options.py /^def ns_get(ns, key, default=False):$/;" f +ns_prefixes Modules/pyexpat.c /^ int ns_prefixes; \/* Namespace-triplets mode? *\/$/;" m struct:__anon483 file: +ns_set PC/layout/support/options.py /^def ns_set(ns, key, value=True):$/;" f +ns_to_sec Lib/test/test_os.py /^ def ns_to_sec(ns):$/;" m class:UtimeTests +ns_uri Lib/test/test_sax.py /^ns_uri = "http:\/\/www.python.org\/xml-ns\/saxtest\/"$/;" v +nslot Objects/typeobject.c /^ Py_ssize_t nslot;$/;" m struct:__anon718 file: +nsmallest Lib/heapq.py /^def nsmallest(n, iterable, key=None):$/;" f +nsstr Mac/Tools/plistlib_generate_testdata.py /^def nsstr(value):$/;" f +nt Lib/test/test_dataclasses.py /^ def nt(lst):$/;" f function:TestCase.test_helper_astuple_factory +nt Lib/test/test_ntpath.py /^ nt = None$/;" v +nti Lib/tarfile.py /^def nti(s):$/;" f +ntimes_arena_allocated Include/internal/pycore_obmalloc.h /^ size_t ntimes_arena_allocated;$/;" m struct:_obmalloc_mgmt +ntimes_arena_allocated Objects/obmalloc.c 881;" d file: +ntotalpools Include/internal/pycore_obmalloc.h /^ uint ntotalpools;$/;" m struct:arena_object +ntransfercmd Lib/ftplib.py /^ def ntransfercmd(self, cmd, rest=None):$/;" m class:.FTP_TLS +ntransfercmd Lib/ftplib.py /^ def ntransfercmd(self, cmd, rest=None):$/;" m class:FTP +nts Lib/tarfile.py /^def nts(s, encoding, errors):$/;" f +ntt Modules/_decimal/libmpdec/literature/fnt.py /^def ntt(lst, dir):$/;" f +ntt_convolute Modules/_decimal/libmpdec/literature/fnt.py /^def ntt_convolute(a, b):$/;" f +nu_bool Modules/_struct.c /^nu_bool(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_byte Modules/_struct.c /^nu_byte(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_char Modules/_struct.c /^nu_char(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_double Modules/_struct.c /^nu_double(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_float Modules/_struct.c /^nu_float(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_halffloat Modules/_struct.c /^nu_halffloat(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_int Modules/_struct.c /^nu_int(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_long Modules/_struct.c /^nu_long(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_longlong Modules/_struct.c /^nu_longlong(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_short Modules/_struct.c /^nu_short(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_size_t Modules/_struct.c /^nu_size_t(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_ssize_t Modules/_struct.c /^nu_ssize_t(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_ubyte Modules/_struct.c /^nu_ubyte(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_uint Modules/_struct.c /^nu_uint(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_ulong Modules/_struct.c /^nu_ulong(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_ulonglong Modules/_struct.c /^nu_ulonglong(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_ushort Modules/_struct.c /^nu_ushort(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +nu_void_p Modules/_struct.c /^nu_void_p(_structmodulestate *state, const char *p, const formatdef *f)$/;" f file: +null Lib/test/test_grammar.py /^ def null(x): return x$/;" f function:GrammarTests.test_funcdef +null Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def null(x): return x$/;" f function:GrammarTests.testFuncdef +null_error Objects/abstract.c /^null_error(void)$/;" f file: +null_error Objects/call.c /^null_error(PyThreadState *tstate)$/;" f file: +null_richcompare Modules/xxlimited_35.c /^null_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +null_richcompare Modules/xxmodule.c /^null_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +null_slots_def Modules/_testmultiphase.c /^static PyModuleDef null_slots_def = TEST_MODULE_DEF($/;" v file: +nullable Modules/posixmodule.c /^ int nullable;$/;" m struct:__anon478 file: +nullcontext Lib/contextlib.py /^class nullcontext(AbstractContextManager, AbstractAsyncContextManager):$/;" c +num Lib/test/test_binop.py /^ num = property(_get_num, None)$/;" v class:Rat +num Lib/test/test_capi/test_misc.py /^ num = 0$/;" v class:CAPITest.do_test_trashcan_python_class.PyList +numWrites Lib/test/test_httpservers.py /^ def numWrites(self):$/;" m class:AuditableBytesIO +num_addresses Lib/ipaddress.py /^ def num_addresses(self):$/;" m class:_BaseNetwork +num_basic_static_types_used Modules/_testcapimodule.c /^static int num_basic_static_types_used = 0;$/;" v file: +num_builtins_initialized Include/internal/pycore_typeobject.h /^ size_t num_builtins_initialized;$/;" m struct:types_state +num_code_object_created_events Modules/_testcapi/watchers.c /^static int num_code_object_created_events[NUM_CODE_WATCHERS] = {0, 0};$/;" v file: +num_code_object_destroyed_events Modules/_testcapi/watchers.c /^static int num_code_object_destroyed_events[NUM_CODE_WATCHERS] = {0, 0};$/;" v file: +num_codecs Modules/cjkcodecs/cjkcodecs.h /^ int num_codecs;$/;" m struct:_cjk_mod_state +num_commands PC/launcher.c /^static int num_commands = 0;$/;" v file: +num_fields Modules/_csv.c /^ int num_fields; \/* number of fields in record *\/$/;" m struct:__anon626 file: +num_installed_pythons PC/launcher.c /^static size_t num_installed_pythons = 0;$/;" v file: +num_items Parser/pegen.h /^ size_t num_items;$/;" m struct:__anon655 +num_mappings Modules/cjkcodecs/cjkcodecs.h /^ int num_mappings;$/;" m struct:_cjk_mod_state +num_marks Modules/_pickle.c /^ Py_ssize_t num_marks; \/* Number of marks in the mark stack. *\/$/;" m struct:UnpicklerObject file: +num_polls Lib/test/subprocessdata/sigchild_ignore.py /^num_polls = 0$/;" v +num_spams Modules/_ctypes/_ctypes_test.c /^ int num_spams;$/;" m struct:__anon513 file: +num_transitions Modules/_zoneinfo.c /^ size_t num_transitions;$/;" m struct:__anon638 file: +num_ttinfos Modules/_zoneinfo.c /^ size_t num_ttinfos;$/;" m struct:__anon638 file: +numactive Modules/itertoolsmodule.c /^ Py_ssize_t numactive;$/;" m struct:__anon422 file: +number Doc/includes/newtypes/custom2.c /^ int number;$/;" m struct:__anon273 file: +number Doc/includes/newtypes/custom3.c /^ int number;$/;" m struct:__anon276 file: +number Doc/includes/newtypes/custom4.c /^ int number;$/;" m struct:__anon274 file: +number Lib/email/_header_value_parser.py /^ number = None$/;" v class:Section +number Lib/test/test_enum.py /^ class number(IntEnum):$/;" c function:TestSpecial.test_intenum_transitivity +number Tools/peg_generator/pegen/parser.py /^ def number(self) -> Optional[tokenize.TokenInfo]:$/;" m class:Parser +number_asyncgen Lib/test/test_inspect.py /^ async def number_asyncgen():$/;" f function:TestGetAsyncGenState.setUp +number_class Lib/_pydecimal.py /^ def number_class(self, a):$/;" m class:Context +number_class Lib/_pydecimal.py /^ def number_class(self, context=None):$/;" m class:Decimal +number_coroutine Lib/test/test_inspect.py /^ def number_coroutine():$/;" f function:TestGetCoroutineState.setUp +number_funcs Modules/_decimal/tests/randdec.py /^number_funcs = [randint, randfloat, randcomplex, randfraction]$/;" v +number_generator Lib/test/test_inspect.py /^ def number_generator():$/;" f function:TestGetGeneratorState.setUp +number_of_objects Lib/multiprocessing/managers.py /^ def number_of_objects(self, c):$/;" m class:Server +number_operators Lib/test/test_descr.py /^ def number_operators(self, a, b, skip=[]):$/;" m class:OperatorsTest +number_re Tools/cases_generator/lexer.py /^number_re = choice(octal, hex, float, decimal)$/;" v +number_token Lib/test/test_tokenize.py /^ def number_token(s):$/;" f function:.test_underscore_literals +numbers Lib/lib2to3/fixer_base.py /^ numbers = itertools.count(1) # For new_name()$/;" v class:BaseFix +numbers Modules/_decimal/tests/formathelper.py /^numbers = [$/;" v +numchildren Modules/expat/expat.h /^ unsigned int numchildren;$/;" m struct:XML_cp +numcombs Lib/test/test_itertools.py /^ def numcombs(n, r):$/;" f function:TestBasicOps.test_combinations_with_replacement +numerator Lib/fractions.py /^ def numerator(a):$/;" m class:Fraction +numerator Lib/numbers.py /^ def numerator(self):$/;" m class:Integral +numerator Lib/numbers.py /^ def numerator(self):$/;" m class:Rational +numerator Lib/test/test_enum.py /^ numerator = 2$/;" v class:TestIntEnumClass.test_shadowed_attr.Number +numerator Lib/test/test_fractions.py /^ def numerator(self):$/;" m class:FractionTest.testBoolGuarateesBoolReturn.CustomValue +numerator Lib/test/test_fractions.py /^ def numerator(self):$/;" m class:FractionTest.testIntGuaranteesIntReturn.CustomInt +numerator Lib/test/test_fractions.py /^ def numerator(self):$/;" m class:FractionTest.test_int_subclass.myint +numerator Lib/test/test_numeric_tower.py /^ def numerator(self):$/;" m class:DummyIntegral +numerator_as_decimal Modules/_decimal/_decimal.c /^numerator_as_decimal(PyObject *r, PyObject *context)$/;" f file: +numeric_as_ascii Modules/_decimal/_decimal.c /^numeric_as_ascii(PyObject *u, int strip_ws, int ignore_underscores)$/;" f file: +numeric_changed Modules/unicodedata.c /^ const double numeric_changed;$/;" m struct:change_record file: +numeric_field Modules/_csv.c /^ int numeric_field; \/* treat field as numeric *\/$/;" m struct:__anon625 file: +numeric_string Modules/_decimal/tests/randdec.py /^def numeric_string(maxprec, maxexp):$/;" f +numeric_tester Lib/test/test__locale.py /^ def numeric_tester(self, calc_type, calc_value, data_type, used_locale):$/;" m class:_LocaleTests +numeric_value Modules/_decimal/tests/randdec.py /^def numeric_value(maxprec, maxexp):$/;" f +numerics Lib/unittest/mock.py /^numerics = ($/;" v +numero Lib/test/test_enum.py /^ class numero(IntEnum):$/;" c function:TestSpecial.test_intenum_transitivity +numfree Include/internal/pycore_context.h /^ int numfree;$/;" m struct:_Py_context_state +numfree Include/internal/pycore_dict_state.h /^ int numfree;$/;" m struct:_Py_dict_state +numfree Include/internal/pycore_floatobject.h /^ int numfree;$/;" m struct:_Py_float_state +numfree Include/internal/pycore_list.h /^ int numfree;$/;" m struct:_Py_list_state +numfree Include/internal/pycore_tuple.h /^ int numfree[PyTuple_NFREELISTS];$/;" m struct:_Py_tuple_state +numfreeblocks Modules/_collectionsmodule.c /^ Py_ssize_t numfreeblocks;$/;" m struct:__anon530 file: +numinput Lib/turtle.py /^ def numinput(self, title, prompt, default=None, minval=None, maxval=None):$/;" m class:TurtleScreenBase +numopen Modules/_xxinterpchannelsmodule.c /^ int64_t numopen;$/;" m struct:_channels file: +numpy_array Lib/test/test_buffer.py /^ numpy_array = None$/;" v +numpy_array_from_structure Lib/test/test_buffer.py /^def numpy_array_from_structure(items, fmt, t):$/;" f +numread Modules/itertoolsmodule.c /^ int numread; \/* 0 <= numread <= LINKCELLS *\/$/;" m struct:__anon405 file: +numrecvopen Modules/_xxinterpchannelsmodule.c /^ int64_t numrecvopen;$/;" m struct:_channelassociations file: +numsendopen Modules/_xxinterpchannelsmodule.c /^ int64_t numsendopen;$/;" m struct:_channelassociations file: +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyMapping_Items(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyMapping_Keys(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyMapping_Values(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyNumber_Absolute(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyNumber_Float(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyNumber_Index(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyNumber_Invert(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyNumber_Long(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyNumber_Negative(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyNumber_Positive(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PyObject_Type(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PySequence_List(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(PyObject *) PySequence_Tuple(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(Py_ssize_t) PyMapping_Length(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(Py_ssize_t) PyMapping_Size(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(Py_ssize_t) PyObject_Length(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(Py_ssize_t) PyObject_Size(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(Py_ssize_t) PySequence_Length(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(Py_ssize_t) PySequence_Size(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(int) PyMapping_Check(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(int) PyNumber_Check(PyObject *o);$/;" v +o Include/abstract.h /^PyAPI_FUNC(int) PySequence_Check(PyObject *o);$/;" v +o Include/cpython/abstract.h /^PyAPI_FUNC(PyObject *) _PyNumber_Index(PyObject *o);$/;" v +o Include/cpython/abstract.h /^PyAPI_FUNC(int) _PyObject_HasLen(PyObject *o);$/;" v +o Lib/test/test_descr.py /^ o = trash(o)$/;" v class:.test_slots_trash.trash +o Lib/test/test_queue.py /^ o = Circular()$/;" v class:CSimpleQueueTest.test_reentrancy.Circular +ob Include/internal/pycore_global_objects.h /^ PyBytesObject ob;$/;" m struct:_Py_static_objects::__anon147::__anon148 +ob_alloc Include/cpython/bytearrayobject.h /^ Py_ssize_t ob_alloc; \/* How many bytes allocated in ob_bytes *\/$/;" m struct:__anon204 +ob_array Include/cpython/memoryobject.h /^ Py_ssize_t ob_array[1]; \/* shape, strides, suboffsets *\/$/;" m struct:__anon191 +ob_base Include/object.h /^ PyObject ob_base;$/;" m struct:__anon251 +ob_bytes Include/cpython/bytearrayobject.h /^ char *ob_bytes; \/* Physical backing buffer *\/$/;" m struct:__anon204 +ob_descr Modules/arraymodule.c /^ const struct arraydescr *ob_descr;$/;" m struct:arrayobject typeref:struct:arrayobject::arraydescr file: +ob_digit Include/cpython/longintrepr.h /^ digit ob_digit[1];$/;" m struct:_PyLongValue +ob_exports Include/cpython/bytearrayobject.h /^ Py_ssize_t ob_exports; \/* How many buffer exports *\/$/;" m struct:__anon204 +ob_exports Modules/arraymodule.c /^ Py_ssize_t ob_exports; \/* Number of exported buffers *\/$/;" m struct:arrayobject file: +ob_fval Include/cpython/floatobject.h /^ double ob_fval;$/;" m struct:__anon245 +ob_item Include/cpython/listobject.h /^ PyObject **ob_item;$/;" m struct:__anon239 +ob_item Include/cpython/tupleobject.h /^ PyObject *ob_item[1];$/;" m struct:__anon201 +ob_item Modules/arraymodule.c /^ char *ob_item;$/;" m struct:arrayobject file: +ob_ref Include/cpython/cellobject.h /^ PyObject *ob_ref;$/;" m struct:__anon246 +ob_refcnt Include/object.h /^ Py_ssize_t ob_refcnt;$/;" m union:_object::__anon250 +ob_refcnt_split Include/object.h /^ PY_UINT32_T ob_refcnt_split[2];$/;" m union:_object::__anon250 +ob_shash Include/cpython/bytesobject.h /^ Py_DEPRECATED(3.11) Py_hash_t ob_shash;$/;" m struct:__anon173 +ob_size Include/object.h /^ Py_ssize_t ob_size; \/* Number of items in variable part *\/$/;" m struct:__anon251 +ob_start Include/cpython/bytearrayobject.h /^ char *ob_start; \/* Logical start inside ob_bytes *\/$/;" m struct:__anon204 +ob_sval Include/cpython/bytesobject.h /^ char ob_sval[1];$/;" m struct:__anon173 +ob_type Include/object.h /^ PyTypeObject *ob_type;$/;" m struct:_object +obj Include/abstract.h /^Py_DEPRECATED(3.0) PyAPI_FUNC(int) PyObject_CheckReadBuffer(PyObject *obj);$/;" v +obj Include/cpython/code.h /^PyAPI_FUNC(PyObject*) _PyCode_ConstantKey(PyObject *obj);$/;" v +obj Include/cpython/object.h /^PyAPI_FUNC(void *) PyObject_GetItemData(PyObject *obj);$/;" v +obj Include/cpython/object.h /^PyAPI_FUNC(void) _PyObject_ClearManagedDict(PyObject *obj);$/;" v +obj Include/cpython/objimpl.h /^PyAPI_FUNC(int) PyObject_IS_GC(PyObject *obj);$/;" v +obj Include/cpython/pyerrors.h /^ PyObject *obj;$/;" m struct:__anon189 +obj Include/cpython/pystate.h /^ PyObject *obj;$/;" m struct:_xid +obj Include/cpython/pytime.h /^ PyObject *obj);$/;" v +obj Include/internal/pycore_pymem.h /^ PyMemAllocatorEx obj;$/;" m struct:_pymem_allocators::__anon16 +obj Include/internal/pycore_pymem.h /^ debug_alloc_api_t obj;$/;" m struct:_pymem_allocators::__anon17 +obj Include/internal/pycore_tracemalloc.h /^ PyMemAllocatorEx obj;$/;" m struct:_tracemalloc_runtime_state::__anon31 +obj Include/object.h /^PyAPI_FUNC(PyObject*) Py_NewRef(PyObject *obj);$/;" v +obj Include/object.h /^PyAPI_FUNC(PyObject*) Py_XNewRef(PyObject *obj);$/;" v +obj Include/pybuffer.h /^ PyObject *obj; \/* owned reference *\/$/;" m struct:__anon1 +obj Include/pybuffer.h /^PyAPI_FUNC(int) PyObject_CheckBuffer(PyObject *obj);$/;" v +obj Include/tracemalloc.h /^PyAPI_FUNC(PyObject *) _PyTraceMalloc_GetObjectTraceback(PyObject *obj);$/;" v +obj Include/unicodeobject.h /^ PyObject *obj \/* Object *\/$/;" v +obj Lib/lib2to3/fixes/fix_operator.py /^ obj = "'(' obj=any ')'"$/;" v class:FixOperator +obj Lib/test/pickletester.py /^ obj = cls()$/;" v class:AbstractPickleTests.test_py_methods.PyMethodsTest.Nested +obj Lib/test/test_builtin.py /^ obj = cls()$/;" v class:BuiltinTest.test_format.C +obj Lib/test/test_deque.py /^ obj = C()$/;" v class:TestBasic.test_container_iterator.C +obj Lib/test/test_dict.py /^ obj = C()$/;" v class:DictTest.test_container_iterator.C +obj Lib/test/test_enum.py /^ obj = foo()$/;" v class:TestHelpers.test_is_descriptor.foo +obj Lib/test/test_heapq.py /^ obj = Int(x)$/;" v class:TestHeap.test_merge_stability.Int +obj Lib/test/test_ordered_dict.py /^ obj = MyOD([(None, obj)])$/;" v class:OrderedDictTests.test_highly_nested_subclass.MyOD +obj Lib/test/test_property.py /^ obj = None$/;" v class:_PropertyUnreachableAttribute +obj Modules/_ctypes/ctypes.h /^ PyObject *obj;$/;" m struct:tagPyCArgObject +obj Modules/_testcapi/buffer.c /^ PyObject *obj;$/;" m struct:__anon554 file: +obj Modules/_testcapi/mem.c /^ PyMemAllocatorEx obj;$/;" m struct:__anon556 file: +obj Modules/selectmodule.c /^ PyObject *obj; \/* owned reference *\/$/;" m struct:__anon573 file: +obj Modules/socketmodule.c /^ PyObject *obj;$/;" m struct:maybe_idna file: +obj Objects/genericaliasobject.c /^ PyObject *obj; \/* Set to NULL when iterator is exhausted *\/$/;" m struct:__anon712 file: +obj Objects/typeobject.c /^ PyObject *obj;$/;" m struct:_PyBufferWrapper file: +obj Objects/typeobject.c /^ PyObject *obj;$/;" m struct:__anon719 file: +obj Python/bytecodes.c /^static PyObject *exit_func, *lasti, *val, *retval, *obj, *iter;$/;" v file: +obj2ast_alias Python/Python-ast.c /^obj2ast_alias(struct ast_state *state, PyObject* obj, alias_ty* out, PyArena*$/;" f +obj2ast_arg Python/Python-ast.c /^obj2ast_arg(struct ast_state *state, PyObject* obj, arg_ty* out, PyArena* arena)$/;" f +obj2ast_arguments Python/Python-ast.c /^obj2ast_arguments(struct ast_state *state, PyObject* obj, arguments_ty* out,$/;" f +obj2ast_boolop Python/Python-ast.c /^obj2ast_boolop(struct ast_state *state, PyObject* obj, boolop_ty* out, PyArena*$/;" f +obj2ast_cmpop Python/Python-ast.c /^obj2ast_cmpop(struct ast_state *state, PyObject* obj, cmpop_ty* out, PyArena*$/;" f +obj2ast_comprehension Python/Python-ast.c /^obj2ast_comprehension(struct ast_state *state, PyObject* obj, comprehension_ty*$/;" f +obj2ast_constant Python/Python-ast.c /^static int obj2ast_constant(struct ast_state *Py_UNUSED(state), PyObject* obj, PyObject** out, PyArena* arena)$/;" f file: +obj2ast_excepthandler Python/Python-ast.c /^obj2ast_excepthandler(struct ast_state *state, PyObject* obj, excepthandler_ty*$/;" f +obj2ast_expr Python/Python-ast.c /^obj2ast_expr(struct ast_state *state, PyObject* obj, expr_ty* out, PyArena*$/;" f +obj2ast_expr_context Python/Python-ast.c /^obj2ast_expr_context(struct ast_state *state, PyObject* obj, expr_context_ty*$/;" f +obj2ast_identifier Python/Python-ast.c /^static int obj2ast_identifier(struct ast_state *state, PyObject* obj, PyObject** out, PyArena* arena)$/;" f file: +obj2ast_int Python/Python-ast.c /^static int obj2ast_int(struct ast_state* Py_UNUSED(state), PyObject* obj, int* out, PyArena* arena)$/;" f file: +obj2ast_keyword Python/Python-ast.c /^obj2ast_keyword(struct ast_state *state, PyObject* obj, keyword_ty* out,$/;" f +obj2ast_match_case Python/Python-ast.c /^obj2ast_match_case(struct ast_state *state, PyObject* obj, match_case_ty* out,$/;" f +obj2ast_mod Python/Python-ast.c /^obj2ast_mod(struct ast_state *state, PyObject* obj, mod_ty* out, PyArena* arena)$/;" f +obj2ast_object Python/Python-ast.c /^static int obj2ast_object(struct ast_state *Py_UNUSED(state), PyObject* obj, PyObject** out, PyArena* arena)$/;" f file: +obj2ast_operator Python/Python-ast.c /^obj2ast_operator(struct ast_state *state, PyObject* obj, operator_ty* out,$/;" f +obj2ast_pattern Python/Python-ast.c /^obj2ast_pattern(struct ast_state *state, PyObject* obj, pattern_ty* out,$/;" f +obj2ast_stmt Python/Python-ast.c /^obj2ast_stmt(struct ast_state *state, PyObject* obj, stmt_ty* out, PyArena*$/;" f +obj2ast_string Python/Python-ast.c /^static int obj2ast_string(struct ast_state *state, PyObject* obj, PyObject** out, PyArena* arena)$/;" f file: +obj2ast_type_ignore Python/Python-ast.c /^obj2ast_type_ignore(struct ast_state *state, PyObject* obj, type_ignore_ty*$/;" f +obj2ast_type_param Python/Python-ast.c /^obj2ast_type_param(struct ast_state *state, PyObject* obj, type_param_ty* out,$/;" f +obj2ast_unaryop Python/Python-ast.c /^obj2ast_unaryop(struct ast_state *state, PyObject* obj, unaryop_ty* out,$/;" f +obj2ast_withitem Python/Python-ast.c /^obj2ast_withitem(struct ast_state *state, PyObject* obj, withitem_ty* out,$/;" f +obj_arena Include/internal/pycore_pymem.h /^ PyObjectArenaAllocator obj_arena;$/;" m struct:_pymem_allocators +obj_extension Tools/c-analyzer/distutils/_msvccompiler.py /^ obj_extension = '.obj'$/;" v class:MSVCCompiler +obj_extension Tools/c-analyzer/distutils/bcppcompiler.py /^ obj_extension = '.obj'$/;" v class:BCPPCompiler +obj_extension Tools/c-analyzer/distutils/ccompiler.py /^ obj_extension = None # string$/;" v class:CCompiler +obj_extension Tools/c-analyzer/distutils/cygwinccompiler.py /^ obj_extension = ".o"$/;" v class:CygwinCCompiler +obj_extension Tools/c-analyzer/distutils/msvc9compiler.py /^ obj_extension = '.obj'$/;" v class:MSVCCompiler +obj_extension Tools/c-analyzer/distutils/msvccompiler.py /^ obj_extension = '.obj'$/;" v class:MSVCCompiler +obj_extension Tools/c-analyzer/distutils/unixccompiler.py /^ obj_extension = ".o"$/;" v class:UnixCCompiler +obj_extra_data_clear Modules/_testcapi/gc.c /^obj_extra_data_clear(PyObject *self)$/;" f file: +obj_extra_data_dealloc Modules/_testcapi/gc.c /^obj_extra_data_dealloc(PyObject *self)$/;" f file: +obj_extra_data_get Modules/_testcapi/gc.c /^obj_extra_data_get(PyObject *self, void *Py_UNUSED(ignored))$/;" f file: +obj_extra_data_get_extra_storage Modules/_testcapi/gc.c /^obj_extra_data_get_extra_storage(PyObject *self)$/;" f file: +obj_extra_data_getset Modules/_testcapi/gc.c /^static PyGetSetDef obj_extra_data_getset[] = {$/;" v file: +obj_extra_data_new Modules/_testcapi/gc.c /^obj_extra_data_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +obj_extra_data_set Modules/_testcapi/gc.c /^obj_extra_data_set(PyObject *self, PyObject *newval, void *Py_UNUSED(ignored))$/;" f file: +obj_extra_data_traverse Modules/_testcapi/gc.c /^obj_extra_data_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +obj_name_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class obj_name_st(Structure):$/;" c +obj_type Objects/typeobject.c /^ PyTypeObject *obj_type;$/;" m struct:__anon719 file: +objcount Modules/_xxinterpchannelsmodule.c /^ Py_ssize_t objcount;$/;" m struct:_channelref file: +object Include/cpython/pyerrors.h /^ PyObject *object;$/;" m struct:__anon184 +object Include/internal/pycore_asdl.h /^typedef PyObject * object;$/;" t +object Modules/_functoolsmodule.c /^ PyObject *object;$/;" m struct:__anon394 file: +object Modules/posixmodule.c /^ PyObject *object;$/;" m struct:__anon478 file: +object___dir__ Objects/clinic/typeobject.c.h /^object___dir__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +object___dir___impl Objects/typeobject.c /^object___dir___impl(PyObject *self)$/;" f file: +object___format__ Objects/clinic/typeobject.c.h /^object___format__(PyObject *self, PyObject *arg)$/;" f +object___format___impl Objects/typeobject.c /^object___format___impl(PyObject *self, PyObject *format_spec)$/;" f file: +object___getstate__ Objects/clinic/typeobject.c.h /^object___getstate__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +object___getstate___impl Objects/typeobject.c /^object___getstate___impl(PyObject *self)$/;" f file: +object___reduce__ Objects/clinic/typeobject.c.h /^object___reduce__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +object___reduce___impl Objects/typeobject.c /^object___reduce___impl(PyObject *self)$/;" f file: +object___reduce_ex__ Objects/clinic/typeobject.c.h /^object___reduce_ex__(PyObject *self, PyObject *arg)$/;" f +object___reduce_ex___impl Objects/typeobject.c /^object___reduce_ex___impl(PyObject *self, int protocol)$/;" f file: +object___sizeof__ Objects/clinic/typeobject.c.h /^object___sizeof__(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f +object___sizeof___impl Objects/typeobject.c /^object___sizeof___impl(PyObject *self)$/;" f file: +object__getattribute__ Include/internal/pycore_code.h /^ PyObject *object__getattribute__;$/;" m struct:callable_cache +object_converter Tools/clinic/clinic.py /^class object_converter(CConverter):$/;" c +object_dealloc Objects/typeobject.c /^object_dealloc(PyObject *self)$/;" f file: +object_delattr Modules/_testcapi/abstract.c /^object_delattr(PyObject *self, PyObject *args)$/;" f file: +object_delattrstring Modules/_testcapi/abstract.c /^object_delattrstring(PyObject *self, PyObject *args)$/;" f file: +object_delitem Modules/_testcapi/abstract.c /^object_delitem(PyObject *self, PyObject *args)$/;" f file: +object_get_class Objects/typeobject.c /^object_get_class(PyObject *self, void *closure)$/;" f file: +object_getattr Modules/_testcapi/abstract.c /^object_getattr(PyObject *self, PyObject *args)$/;" f file: +object_getattrstring Modules/_testcapi/abstract.c /^object_getattrstring(PyObject *self, PyObject *args)$/;" f file: +object_getitem Modules/_testcapi/abstract.c /^object_getitem(PyObject *self, PyObject *args)$/;" f file: +object_getsets Objects/typeobject.c /^static PyGetSetDef object_getsets[] = {$/;" v file: +object_getstate Objects/typeobject.c /^object_getstate(PyObject *obj, int required)$/;" f file: +object_getstate_default Objects/typeobject.c /^object_getstate_default(PyObject *obj, int required)$/;" f file: +object_hasattr Modules/_testcapi/abstract.c /^object_hasattr(PyObject *self, PyObject *args)$/;" f file: +object_hasattrstring Modules/_testcapi/abstract.c /^object_hasattrstring(PyObject *self, PyObject *args)$/;" f file: +object_head Tools/build/deepfreeze.py /^ def object_head(self, typename: str) -> None:$/;" m class:Printer +object_hook Modules/_json.c /^ PyObject *object_hook;$/;" m struct:_PyScannerObject file: +object_init Objects/typeobject.c /^object_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +object_init_subclass Objects/typeobject.c /^object_init_subclass(PyObject *cls, PyObject *arg)$/;" f file: +object_is_not_callable Objects/call.c /^object_is_not_callable(PyThreadState *tstate, PyObject *callable)$/;" f file: +object_is_shareable Modules/_xxsubinterpretersmodule.c /^object_is_shareable(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +object_isinstance Objects/abstract.c /^object_isinstance(PyObject *inst, PyObject *cls)$/;" f file: +object_issubclass Objects/abstract.c /^object_issubclass(PyThreadState *tstate, PyObject *derived, PyObject *cls)$/;" f file: +object_methods Objects/typeobject.c /^static PyMethodDef object_methods[] = {$/;" v file: +object_new Objects/typeobject.c /^object_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +object_pairs_hook Modules/_json.c /^ PyObject *object_pairs_hook;$/;" m struct:_PyScannerObject file: +object_recursive_isinstance Objects/abstract.c /^object_recursive_isinstance(PyThreadState *tstate, PyObject *inst, PyObject *cls)$/;" f file: +object_repr Objects/typeobject.c /^object_repr(PyObject *self)$/;" f file: +object_richcompare Objects/typeobject.c /^object_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +object_set_class Objects/typeobject.c /^object_set_class(PyObject *self, PyObject *value, void *closure)$/;" f file: +object_setattr Modules/_testcapi/abstract.c /^object_setattr(PyObject *self, PyObject *args)$/;" f file: +object_setattrstring Modules/_testcapi/abstract.c /^object_setattrstring(PyObject *self, PyObject *args)$/;" f file: +object_setitem Modules/_testcapi/abstract.c /^object_setitem(PyObject *self, PyObject *args)$/;" f file: +object_state Include/internal/pycore_interp.h /^ struct _py_object_state object_state;$/;" m struct:_is typeref:struct:_is::_py_object_state +object_state Include/internal/pycore_runtime.h /^ struct _py_object_runtime_state object_state;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_py_object_runtime_state +object_stats Include/pystats.h /^ ObjectStats object_stats;$/;" m struct:_stats +object_str Objects/typeobject.c /^object_str(PyObject *self)$/;" f file: +object_subclasshook Objects/typeobject.c /^object_subclasshook(PyObject *cls, PyObject *args)$/;" f file: +object_vacall Objects/call.c /^object_vacall(PyThreadState *tstate, PyObject *base,$/;" f file: +object_var_head Tools/build/deepfreeze.py /^ def object_var_head(self, typename: str, size: int) -> None:$/;" m class:Printer +objects Lib/test/pickletester.py /^ objects = [(str(i).encode('ascii'), i % 42, {'i': str(i)})$/;" v class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +objects Lib/test/test_ipaddress.py /^ objects = v4_objects + v6_objects$/;" v class:ComparisonTests +objects_converter Modules/clinic/_testclinic.c.h /^objects_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +objects_converter_impl Modules/_testclinic.c /^objects_converter_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +objects_with_scoped Lib/test/test_ipaddress.py /^ objects_with_scoped = objects + v6_scoped_objects$/;" v class:ComparisonTests +objecttable Lib/idlelib/rpc.py /^objecttable = {}$/;" v +objobjargproc Include/object.h /^typedef int(*objobjargproc)(PyObject *, PyObject *, PyObject *);$/;" t +objobjproc Include/object.h /^typedef int (*objobjproc)(PyObject *, PyObject *);$/;" t +objreduce Include/internal/pycore_global_objects.h /^ PyObject *objreduce;$/;" m struct:_Py_interp_cached_objects +objreduce Objects/typeobject.c 6341;" d file: +objreduce Objects/typeobject.c 6378;" d file: +obmalloc Include/internal/pycore_interp.h /^ struct _obmalloc_state obmalloc;$/;" m struct:_is typeref:struct:_is::_obmalloc_state +obmalloc Include/internal/pycore_runtime.h /^ struct _obmalloc_global_state obmalloc;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_obmalloc_global_state +obtype Lib/pickletools.py /^ obtype=(bytes, str),$/;" v +obtype Lib/pickletools.py /^ obtype=(int, bool),$/;" v +obtype Lib/pickletools.py /^ obtype=StackObject,$/;" v +obtype Lib/pickletools.py /^ obtype=bool,$/;" v +obtype Lib/pickletools.py /^ obtype=bytearray,$/;" v +obtype Lib/pickletools.py /^ obtype=bytes,$/;" v +obtype Lib/pickletools.py /^ obtype=dict,$/;" v +obtype Lib/pickletools.py /^ obtype=float,$/;" v +obtype Lib/pickletools.py /^ obtype=int,$/;" v +obtype Lib/pickletools.py /^ obtype=list,$/;" v +obtype Lib/pickletools.py /^ obtype=object,$/;" v +obtype Lib/pickletools.py /^ obtype=set,$/;" v +obtype Lib/pickletools.py /^ obtype=str,$/;" v +obtype Lib/pickletools.py /^ obtype=tuple,$/;" v +obtype Lib/pickletools.py /^ obtype=type(None),$/;" v +ocount Modules/ossaudiodev.c /^ Py_ssize_t ocount; \/* output count *\/$/;" m struct:__anon471 file: +octal Tools/cases_generator/lexer.py /^octal = r'0[0-7]+' + suffix$/;" v +octdigits Lib/string.py /^octdigits = '01234567'$/;" v +octetstring Lib/test/test_descr.py /^ class octetstring(str):$/;" c function:.test_str_of_str_subclass +octlong Lib/test/test_descr.py /^ class octlong(int):$/;" c function:.test_basic_inheritance +od Lib/test/test_ordered_dict.py /^ od = OrderedDict()$/;" v class:OrderedDictTests.test_reference_loop.A +od_dict Objects/odictobject.c /^ PyDictObject od_dict; \/* the underlying dict *\/$/;" m struct:_odictobject file: +od_fast_nodes Objects/odictobject.c /^ _ODictNode **od_fast_nodes; \/* hash table that mirrors the dict table *\/$/;" m struct:_odictobject file: +od_fast_nodes_size Objects/odictobject.c /^ Py_ssize_t od_fast_nodes_size;$/;" m struct:_odictobject file: +od_first Objects/odictobject.c /^ _ODictNode *od_first; \/* first node in the linked list, if any *\/$/;" m struct:_odictobject file: +od_inst_dict Objects/odictobject.c /^ PyObject *od_inst_dict; \/* OrderedDict().__dict__ *\/$/;" m struct:_odictobject file: +od_last Objects/odictobject.c /^ _ODictNode *od_last; \/* last node in the linked list, if any *\/$/;" m struct:_odictobject file: +od_resize_sentinel Objects/odictobject.c /^ void *od_resize_sentinel; \/* changes if odict should be resized *\/$/;" m struct:_odictobject file: +od_state Objects/odictobject.c /^ size_t od_state; \/* incremented whenever the LL changes *\/$/;" m struct:_odictobject file: +od_weakreflist Objects/odictobject.c /^ PyObject *od_weakreflist; \/* holds weakrefs to the odict *\/$/;" m struct:_odictobject file: +odict_as_mapping Objects/odictobject.c /^static PyMappingMethods odict_as_mapping = {$/;" v file: +odict_as_number Objects/odictobject.c /^static PyNumberMethods odict_as_number = {$/;" v file: +odict_clear Objects/odictobject.c /^odict_clear(register PyODictObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odict_copy Objects/odictobject.c /^odict_copy(register PyODictObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odict_dealloc Objects/odictobject.c /^odict_dealloc(PyODictObject *self)$/;" f file: +odict_getset Objects/odictobject.c /^static PyGetSetDef odict_getset[] = {$/;" v file: +odict_init Objects/odictobject.c /^odict_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +odict_inplace_or Objects/odictobject.c /^odict_inplace_or(PyObject *self, PyObject *other)$/;" f file: +odict_iter Objects/odictobject.c /^odict_iter(PyODictObject *od)$/;" f file: +odict_methods Objects/odictobject.c /^static PyMethodDef odict_methods[] = {$/;" v file: +odict_mp_ass_sub Objects/odictobject.c /^odict_mp_ass_sub(PyODictObject *od, PyObject *v, PyObject *w)$/;" f file: +odict_or Objects/odictobject.c /^odict_or(PyObject *left, PyObject *right)$/;" f file: +odict_reduce Objects/odictobject.c /^odict_reduce(register PyODictObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odict_repr Objects/odictobject.c /^odict_repr(PyODictObject *self)$/;" f file: +odict_reversed Objects/odictobject.c /^odict_reversed(PyODictObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odict_richcompare Objects/odictobject.c /^odict_richcompare(PyObject *v, PyObject *w, int op)$/;" f file: +odict_sizeof Objects/odictobject.c /^odict_sizeof(PyODictObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odict_tp_clear Objects/odictobject.c /^odict_tp_clear(PyODictObject *od)$/;" f file: +odict_traverse Objects/odictobject.c /^odict_traverse(PyODictObject *od, visitproc visit, void *arg)$/;" f file: +odict_update Objects/odictobject.c 1156;" d file: +odictitems_iter Objects/odictobject.c /^odictitems_iter(_PyDictViewObject *dv)$/;" f file: +odictitems_methods Objects/odictobject.c /^static PyMethodDef odictitems_methods[] = {$/;" v file: +odictitems_new Objects/odictobject.c /^odictitems_new(PyObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odictitems_reversed Objects/odictobject.c /^odictitems_reversed(_PyDictViewObject *dv, PyObject *Py_UNUSED(ignored))$/;" f file: +odictiter_dealloc Objects/odictobject.c /^odictiter_dealloc(odictiterobject *di)$/;" f file: +odictiter_iternext Objects/odictobject.c /^odictiter_iternext(odictiterobject *di)$/;" f file: +odictiter_methods Objects/odictobject.c /^static PyMethodDef odictiter_methods[] = {$/;" v file: +odictiter_new Objects/odictobject.c /^odictiter_new(PyODictObject *od, int kind)$/;" f file: +odictiter_nextkey Objects/odictobject.c /^odictiter_nextkey(odictiterobject *di)$/;" f file: +odictiter_reduce Objects/odictobject.c /^odictiter_reduce(odictiterobject *di, PyObject *Py_UNUSED(ignored))$/;" f file: +odictiter_traverse Objects/odictobject.c /^odictiter_traverse(odictiterobject *di, visitproc visit, void *arg)$/;" f file: +odictiterobject Objects/odictobject.c /^} odictiterobject;$/;" t typeref:struct:__anon736 file: +odictkeys_iter Objects/odictobject.c /^odictkeys_iter(_PyDictViewObject *dv)$/;" f file: +odictkeys_methods Objects/odictobject.c /^static PyMethodDef odictkeys_methods[] = {$/;" v file: +odictkeys_new Objects/odictobject.c /^odictkeys_new(PyObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odictkeys_reversed Objects/odictobject.c /^odictkeys_reversed(_PyDictViewObject *dv, PyObject *Py_UNUSED(ignored))$/;" f file: +odictvalues_iter Objects/odictobject.c /^odictvalues_iter(_PyDictViewObject *dv)$/;" f file: +odictvalues_methods Objects/odictobject.c /^static PyMethodDef odictvalues_methods[] = {$/;" v file: +odictvalues_new Objects/odictobject.c /^odictvalues_new(PyObject *od, PyObject *Py_UNUSED(ignored))$/;" f file: +odictvalues_reversed Objects/odictobject.c /^odictvalues_reversed(_PyDictViewObject *dv, PyObject *Py_UNUSED(ignored))$/;" f file: +off_t Lib/test/test_lib2to3/data/infinite_recursion.py /^off_t = __darwin_off_t$/;" v +offer_suggestions_for_attribute_error Python/suggestions.c /^offer_suggestions_for_attribute_error(PyAttributeErrorObject *exc)$/;" f file: +offer_suggestions_for_import_error Python/suggestions.c /^offer_suggestions_for_import_error(PyImportErrorObject *exc)$/;" f file: +offer_suggestions_for_name_error Python/suggestions.c /^offer_suggestions_for_name_error(PyNameErrorObject *exc)$/;" f file: +offset Include/cpython/descrobject.h /^ int offset;$/;" m struct:wrapperbase +offset Include/cpython/pyerrors.h /^ PyObject *offset;$/;" m struct:__anon182 +offset Include/descrobject.h /^ Py_ssize_t offset;$/;" m struct:PyMemberDef +offset Lib/tarfile.py /^ offset = 'The tar header starts here.',$/;" v class:TarInfo +offset Modules/_ctypes/ctypes.h /^ Py_ssize_t offset;$/;" m struct:__anon494 +offset Modules/_datetimemodule.c /^ PyObject *offset;$/;" m struct:__anon586 file: +offset Modules/_sqlite/blob.h /^ int offset;$/;" m struct:__anon360 +offset Modules/_struct.c /^ Py_ssize_t offset;$/;" m struct:_formatcode file: +offset Modules/_testbuffer.c /^ Py_ssize_t offset; \/* start of the array relative to data *\/$/;" m struct:ndbuf file: +offset Modules/mmapmodule.c /^ long long offset;$/;" m struct:__anon490 file: +offset Modules/mmapmodule.c /^ off_t offset;$/;" m struct:__anon490 file: +offset_data Lib/tarfile.py /^ offset_data = "The file's data starts here.",$/;" v class:TarInfo +offset_from_tz_string Lib/http/cookiejar.py /^def offset_from_tz_string(tz):$/;" f +offsetstring Lib/test/test_email/test_utils.py /^ offsetstring = ' -0700'$/;" v class:DateTimeTests +ogp_custom_meta_tags Doc/conf.py /^ogp_custom_meta_tags = [$/;" v +ogp_image Doc/conf.py /^ogp_image = '_static\/og-image.png'$/;" v +ogp_site_name Doc/conf.py /^ogp_site_name = 'Python documentation'$/;" v +ogp_site_url Doc/conf.py /^ogp_site_url = 'https:\/\/docs.python.org\/3\/'$/;" v +ok Lib/idlelib/config_key.py /^ def ok(self):$/;" m class:GetKeysFrame +ok Lib/idlelib/config_key.py /^ def ok(self, event=None):$/;" m class:GetKeysWindow +ok Lib/idlelib/configdialog.py /^ def ok(self):$/;" m class:ConfigDialog +ok Lib/idlelib/help_about.py /^ def ok(self, event=None):$/;" m class:AboutDialog +ok Lib/idlelib/idle_test/test_query.py /^ ok = query.Query.ok$/;" v class:QueryTest.Dummy_Query +ok Lib/idlelib/query.py /^ def ok(self, event=None): # Do not replace.$/;" m class:Query +ok Lib/idlelib/textview.py /^ def ok(self, event=None):$/;" m class:ViewFrame +ok Lib/idlelib/textview.py /^ def ok(self, event=None):$/;" m class:ViewWindow +ok Lib/test/datetimetester.py /^ class ok(tzinfo):$/;" c function:TestTimezoneConversions.test_bogus_dst +ok Lib/tkinter/simpledialog.py /^ def ok(self, event=None):$/;" m class:Dialog +ok Modules/_io/bufferedio.c /^ int ok; \/* Initialized? *\/$/;" m struct:__anon435 file: +ok Modules/_io/stringio.c /^ char ok; \/* initialized? *\/$/;" m struct:__anon433 file: +ok Modules/_io/textio.c /^ int ok; \/* initialized? *\/$/;" m struct:textio file: +ok_command Lib/tkinter/filedialog.py /^ def ok_command(self):$/;" m class:FileDialog +ok_command Lib/tkinter/filedialog.py /^ def ok_command(self):$/;" m class:LoadFileDialog +ok_command Lib/tkinter/filedialog.py /^ def ok_command(self):$/;" m class:SaveFileDialog +ok_count Lib/test/test_threadedtempfile.py /^ ok_count = 0$/;" v class:TempFileGreedy +ok_event Lib/tkinter/filedialog.py /^ def ok_event(self, event):$/;" m class:FileDialog +ok_handler Lib/test/test_socket.py /^ def ok_handler(*args):$/;" f function:GeneralModuleTests.check_sendall_interrupted +old Modules/itertoolsmodule.c /^ PyObject *old;$/;" m struct:__anon402 file: +oldSplit Lib/test/test_shlex.py /^ def oldSplit(self, s):$/;" m class:ShlexTest +oldStyleTag PC/launcher2.c /^ bool oldStyleTag;$/;" m struct:__anon284 file: +old_hook Lib/test/test_fileinput.py /^ def old_hook(filename, mode):$/;" f function:FileInputTests.test_file_hook_backward_compatibility +old_main_modules Lib/multiprocessing/spawn.py /^old_main_modules = []$/;" v +old_modes Lib/test/support/__init__.py /^ old_modes = None$/;" v class:SuppressCrashReport +old_stack Include/internal/pycore_faulthandler.h /^ stack_t old_stack;$/;" m struct:_faulthandler_runtime_state +old_stack Modules/faulthandler.c 84;" d file: +old_style_class Lib/test/dtracedata/instance.py /^class old_style_class():$/;" c +old_value Lib/test/support/__init__.py /^ old_value = None$/;" v class:SuppressCrashReport +old_versions Tools/unicode/makeunicodedata.py /^old_versions = ["3.2.0"]$/;" v +older Tools/gdb/libpython.py /^ def older(self):$/;" m class:Frame +oledll Lib/ctypes/__init__.py /^ oledll = LibraryLoader(OleDLL)$/;" v +oll Lib/test/inspect_fodder2.py /^oll = lambda m: m$/;" v +om Lib/test/pyclbr_input.py /^ def om(self): pass$/;" m class:Other +om Lib/test/pyclbr_input.py /^ om = Other.om$/;" v class:C +onResize Lib/turtle.py /^ def onResize(self, event):$/;" m class:ScrolledCanvas +onResize Lib/turtledemo/__main__.py /^ def onResize(self, event):$/;" m class:DemoWindow +on_alarm Lib/test/test_io.py /^ def on_alarm(*args):$/;" f function:SignalsTest.check_reentrant_write +on_async_cleanup Lib/test/test_unittest/test_async_case.py /^ async def on_async_cleanup(self, val):$/;" m class:TestAsyncCase.test_cleanups_interleave_order.Test +on_bindingslist_select Lib/idlelib/configdialog.py /^ def on_bindingslist_select(self, event):$/;" m class:KeysPage +on_bottom Lib/test/test_typing.py /^ def on_bottom(self, a: int) -> int:$/;" m class:OverrideDecoratorTests.test_multiple_decorators.WithOverride +on_buf Lib/test/test_asyncio/test_buffered_proto.py /^ def on_buf(buf):$/;" f function:BaseTestBufferedProtocol.test_buffered_proto_create_connection.client +on_build_finish Doc/tools/extensions/glossary_search.py /^def on_build_finish(app, exc):$/;" f +on_cleanup Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup(self):$/;" m class:TestAsyncCase.test_exception_in_setup.Test +on_cleanup Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup(self):$/;" m class:TestAsyncCase.test_exception_in_tear_down.Test +on_cleanup Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup(self):$/;" m class:TestAsyncCase.test_exception_in_test.Test +on_cleanup1 Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup1(self):$/;" m class:TestAsyncCase.test_exception_in_tear_clean_up.Test +on_cleanup1 Lib/test/test_unittest/test_async_case.py /^ def on_cleanup1(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +on_cleanup2 Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup2(self):$/;" m class:TestAsyncCase.test_exception_in_tear_clean_up.Test +on_cleanup2 Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup2(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +on_cleanup3 Lib/test/test_unittest/test_async_case.py /^ def on_cleanup3(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +on_cleanup4 Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup4(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +on_cleanup5 Lib/test/test_unittest/test_async_case.py /^ def on_cleanup5(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +on_cleanup6 Lib/test/test_unittest/test_async_case.py /^ async def on_cleanup6(self):$/;" m class:TestAsyncCase.test_full_cycle.Test +on_completion Modules/readline.c /^on_completion(const char *text, int state)$/;" f file: +on_completion_display_matches_hook Modules/readline.c /^on_completion_display_matches_hook(char **matches,$/;" f file: +on_delete Include/cpython/pystate.h /^ void (*on_delete)(void *);$/;" m struct:_ts +on_delete_data Include/cpython/pystate.h /^ void *on_delete_data;$/;" m struct:_ts +on_double Lib/idlelib/debugger.py /^ def on_double(self, index):$/;" m class:StackViewer +on_double Lib/idlelib/scrolledlist.py /^ def on_double(self, index): print("double", self.get(index))$/;" m class:_scrolled_list.MyScrolledList +on_double Lib/idlelib/scrolledlist.py /^ def on_double(self, index):$/;" m class:ScrolledList +on_fontlist_select Lib/idlelib/configdialog.py /^ def on_fontlist_select(self, event):$/;" m class:FontPage +on_fork Lib/asyncio/events.py /^ def on_fork():$/;" f +on_hook Modules/readline.c /^on_hook(PyObject *func)$/;" f file: +on_motion Lib/tkinter/dnd.py /^ def on_motion(self, event):$/;" m class:DndHandler +on_new_color_set Lib/idlelib/configdialog.py /^ def on_new_color_set(self):$/;" m class:HighPage +on_pre_input_hook Modules/readline.c /^on_pre_input_hook(void)$/;" f file: +on_release Lib/tkinter/dnd.py /^ def on_release(self, event):$/;" m class:DndHandler +on_select Lib/idlelib/debugger.py /^ def on_select(self, index):$/;" m class:StackViewer +on_select Lib/idlelib/scrolledlist.py /^ def on_select(self, index): print("select", self.get(index))$/;" m class:_scrolled_list.MyScrolledList +on_select Lib/idlelib/scrolledlist.py /^ def on_select(self, index):$/;" m class:ScrolledList +on_server_client Lib/test/test_asyncio/test_buffered_proto.py /^ async def on_server_client(reader, writer):$/;" f function:BaseTestBufferedProtocol.test_buffered_proto_create_connection +on_squeezed_expand Lib/idlelib/pyshell.py /^ def on_squeezed_expand(self, index, text, tags):$/;" m class:PyShell +on_startup_hook Modules/readline.c /^on_startup_hook(void)$/;" f file: +on_sync_cleanup Lib/test/test_unittest/test_async_case.py /^ async def on_sync_cleanup(self, val):$/;" m class:TestAsyncCase.test_cleanups_interleave_order.Test +on_timeout Lib/test/test_asyncio/test_tasks.py /^ def on_timeout():$/;" f function:BaseTaskTests.test_uncancel_structured_blocks.make_request_with_timeout +on_top Lib/test/test_typing.py /^ def on_top(self, a: int) -> int:$/;" m class:OverrideDecoratorTests.test_multiple_decorators.WithOverride +on_top Python/compile.c /^ Py_ssize_t on_top;$/;" m struct:__anon672 file: +once Lib/test/test_asyncio/utils.py /^ async def once():$/;" f function:run_briefly +once_registry Include/internal/pycore_warnings.h /^ PyObject *once_registry; \/* Dict *\/$/;" m struct:_warnings_runtime_state +onceregistry Lib/warnings.py /^ onceregistry = _onceregistry$/;" v +onceregistry Lib/warnings.py /^ onceregistry = {}$/;" v +onclick Lib/turtle.py /^ def onclick(self, fun, btn=1, add=None):$/;" m class:RawTurtle +onclick Lib/turtle.py /^ def onclick(self, fun, btn=1, add=None):$/;" m class:TurtleScreen +ondestroy Lib/turtle.py /^ def ondestroy(self, destroy):$/;" m class:_Root +ondrag Lib/turtle.py /^ def ondrag(self, fun, btn=1, add=None):$/;" m class:RawTurtle +one Lib/test/test_enum.py /^ one = '1'$/;" v class:TestSpecial.test_custom_strenum.ThirdFailedStrEnum.ThirdFailedStrEnum +one Lib/test/test_enum.py /^ one = '1'$/;" v class:TestSpecial.test_strenum.GoodbyeEnum.SecondFailedStrEnum +one Lib/test/test_enum.py /^ one = '1'$/;" v class:TestSpecial.test_strenum.GoodbyeEnum.ThirdFailedStrEnum +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestSpecial.test_strenum.GoodbyeEnum.FirstFailedStrEnum +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestUnique.test_unique_dirty.Dirty +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestVerify.test_unique_dirty.Dirty +one Lib/test/test_enum.py /^ one = '1'$/;" v class:TestSpecial.test_custom_strenum.OkayEnum +one Lib/test/test_enum.py /^ one = '1'$/;" v class:TestSpecial.test_custom_strenum.SecondFailedStrEnum +one Lib/test/test_enum.py /^ one = '1'$/;" v class:TestSpecial.test_custom_strenum.ThirdFailedStrEnum +one Lib/test/test_enum.py /^ one = '1'$/;" v class:TestSpecial.test_strenum.GoodStrEnum +one Lib/test/test_enum.py /^ one = 1 # this will become '1'$/;" v class:TestSpecial.test_custom_strenum.FirstFailedStrEnum +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestSpecial.test_intenum_transitivity.number +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestSpecial.test_introspection.Plain +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestUnique.test_unique_clean.Clean +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestUnique.test_unique_with_name.Silly +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestVerify.test_unique_clean.Clean +one Lib/test/test_enum.py /^ one = 1$/;" v class:TestVerify.test_unique_with_name.Silly +one Lib/test/test_enum.py /^ one = 100$/;" v class:TestSpecial.test_introspection.Number +one Lib/test/test_enum.py /^ one = auto()$/;" v class:OldTestFlag.test_unique_composite.TestFlag +one Lib/test/test_enum.py /^ one = auto()$/;" v class:OldTestIntFlag.test_unique_composite.TestFlag +one Lib/test/test_enum.py /^ one = auto()$/;" v class:_EnumTests.test_contains_tf.OtherEnum +one Lib/test/test_grammar.py /^ def one():$/;" f function:GrammarTests.test_var_annot_basics +one Lib/test/test_pydoc.py /^ one = 1$/;" v class:PydocDocTest.test_text_enum_member_with_value_zero.BinaryInteger +one Lib/test/test_unittest/testmock/testhelpers.py /^ def one(self, a, b): pass$/;" m class:SomeClass +one Lib/test/test_unittest/testmock/testmock.py /^ one = 'one'$/;" v class:MockTest.test_manager_mock.Foo +one Lib/test/test_unittest/testmock/testmock.py /^ one = 'one'$/;" v class:MockTest.test_misspelled_arguments.Foo +one Lib/test/test_unittest/testmock/testmock.py /^ one = 1$/;" v class:MockTest.test_mock_add_spec._One +one Lib/test/test_yield_from.py /^ def one():$/;" f function:TestPEP380Operation.test_delegating_generators_claim_to_be_running +one Modules/_decimal/libmpdec/mpdecimal.c /^static const mpd_t one = {MPD_STATIC|MPD_CONST_DATA, 0, 1, 1, 1, data_one};$/;" v file: +one Objects/enumobject.c /^ PyObject* one; \/* borrowed reference *\/$/;" m struct:__anon727 file: +one_arg PCbuild/find_msbuild.bat /^:one_arg$/;" l +one_arg PCbuild/find_python.bat /^:one_arg$/;" l +one_group Lib/test/test_argparse.py /^ def one_group(parser, argument_signatures):$/;" f function:ParserTesterMetaclass.__init__ +one_instr_line Lib/test/test_sys_settrace.py /^def one_instr_line():$/;" f +onearg Lib/test/test_itertools.py /^def onearg(x):$/;" f +onecmd Lib/cmd.py /^ def onecmd(self, line):$/;" m class:Cmd +onecmd Lib/pdb.py /^ def onecmd(self, line):$/;" m class:Pdb +onelinefunc Lib/test/inspect_fodder2.py /^def onelinefunc(): pass$/;" f +onerror Lib/pydoc.py /^ def onerror(modname):$/;" f function:.listmodules +onerror Lib/pydoc.py /^ def onerror(modname):$/;" f function:_url_handler.html_search.callback +onerror Lib/pydoc.py /^ def onerror(modname):$/;" f function:apropos +onerror Lib/test/test_shutil.py /^ def onerror(*args):$/;" f function:TestRmTree.test_both_onerror_and_onexc +onerror Lib/test/test_shutil.py /^ def onerror(*args):$/;" f function:TestRmTree.test_rmtree_errors_onerror +onerror Lib/test/test_shutil.py /^ def onerror(*args):$/;" f function:TestRmTree.test_rmtree_fails_on_junctions_onerror +onerror Lib/test/test_shutil.py /^ def onerror(*args):$/;" f function:TestRmTree.test_rmtree_fails_on_symlink_onerror +onexc Lib/shutil.py /^ def onexc(*args):$/;" f function:rmtree.onexc +onexc Lib/shutil.py /^ def onexc(*args):$/;" f function:rmtree +onexc Lib/tempfile.py /^ def onexc(func, path, exc):$/;" f function:TemporaryDirectory._rmtree +onexc Lib/test/test_shutil.py /^ def onexc(*args):$/;" f function:TestRmTree.test_both_onerror_and_onexc +onexc Lib/test/test_shutil.py /^ def onexc(*args):$/;" f function:TestRmTree.test_rmtree_errors_onexc +onexc Lib/test/test_shutil.py /^ def onexc(*args):$/;" f function:TestRmTree.test_rmtree_fails_on_junctions_onexc +onexc Lib/test/test_shutil.py /^ def onexc(*args):$/;" f function:TestRmTree.test_rmtree_fails_on_symlink_onexc +onkey Lib/turtle.py /^ def onkey(self, fun, key):$/;" m class:TurtleScreen +onkeypress Lib/turtle.py /^ def onkeypress(self, fun, key=None):$/;" m class:TurtleScreen +onkeyrelease Lib/turtle.py /^ onkeyrelease = onkey$/;" v class:TurtleScreen +onliners Lib/test/test_sys_settrace.py /^ def onliners():$/;" f function:TraceTestCase.test_14_onliner_if +only Lib/importlib/resources/_itertools.py /^def only(iterable, default=None, too_long=None):$/;" f +only_nt Lib/test/test_pathlib.py /^only_nt = unittest.skipIf(os.name != 'nt',$/;" v +only_posix Lib/test/test_pathlib.py /^only_posix = unittest.skipIf(os.name == 'nt',$/;" v +only_run_in_spawn_testsuite Lib/test/_test_multiprocessing.py /^def only_run_in_spawn_testsuite(reason):$/;" f +onrelease Lib/turtle.py /^ def onrelease(self, fun, btn=1, add=None):$/;" m class:RawTurtle +onscreenclick Lib/turtle.py /^ onscreenclick = onclick$/;" v class:TurtleScreen +ontimer Lib/turtle.py /^ def ontimer(self, fun, t=0):$/;" m class:TurtleScreen +op Include/complexobject.h /^PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op);$/;" v +op Include/complexobject.h /^PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op);$/;" v +op Include/cpython/code.h /^ } op;$/;" m union:__anon225 typeref:struct:__anon225::__anon226 +op Include/cpython/complexobject.h /^PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op);$/;" v +op Include/cpython/longobject.h /^PyAPI_FUNC(Py_ssize_t) PyUnstable_Long_CompactValue(const PyLongObject* op);$/;" v +op Include/cpython/longobject.h /^PyAPI_FUNC(int) PyUnstable_Long_IsCompact(const PyLongObject* op);$/;" v +op Include/cpython/object.h /^PyAPI_FUNC(void) _Py_NewReference(PyObject *op);$/;" v +op Include/cpython/object.h /^PyAPI_FUNC(void) _Py_NewReferenceNoTotal(PyObject *op);$/;" v +op Include/cpython/objimpl.h /^PyAPI_FUNC(PyObject **) PyObject_GET_WEAKREFS_LISTPTR(PyObject *op);$/;" v +op Include/internal/pycore_ast.h /^ boolop_ty op;$/;" m struct:_expr::__anon77::__anon78 +op Include/internal/pycore_ast.h /^ operator_ty op;$/;" m struct:_expr::__anon77::__anon80 +op Include/internal/pycore_ast.h /^ operator_ty op;$/;" m struct:_stmt::__anon51::__anon59 +op Include/internal/pycore_ast.h /^ unaryop_ty op;$/;" m struct:_expr::__anon77::__anon81 +op Include/internal/pycore_ast_state.h /^ PyObject *op;$/;" m struct:ast_state +op Python/bytecodes.c 49;" d file: +op Tools/cases_generator/parser.py /^ def op(self) -> OpName | None:$/;" m class:Parser +op Tools/peg_generator/pegen/parser.py /^ def op(self) -> Optional[tokenize.TokenInfo]:$/;" m class:Parser +op_sequence Lib/test/test_binop.py /^def op_sequence(op, *classes):$/;" f +opaque Include/cpython/code.h /^ struct _opaque opaque;$/;" m struct:_line_offsets typeref:struct:_line_offsets::_opaque +opcode Modules/_pickle.c /^enum opcode {$/;" g file: +opcode_functions Modules/_opcode.c /^opcode_functions[] = {$/;" v file: +opcode_has_event Python/instrumentation.c /^opcode_has_event(int opcode)$/;" f file: +opcode_in_pickle Lib/test/pickletester.py /^def opcode_in_pickle(code, pickle):$/;" f +opcode_metadata Python/opcode_metadata.h /^struct opcode_metadata {$/;" s +opcode_sig_re Doc/tools/extensions/pyspecific.py /^opcode_sig_re = re.compile(r'(\\w+(?:\\+\\d)?)(?:\\s*\\((.*)\\))?')$/;" v +opcode_stats Include/pystats.h /^ OpcodeStats opcode_stats[256];$/;" m struct:_stats +opcode_targets Python/opcode_targets.h /^static void *opcode_targets[256] = {$/;" v +opcodemodule Modules/_opcode.c /^static struct PyModuleDef opcodemodule = {$/;" v typeref:struct:PyModuleDef file: +opcodes Lib/pickletools.py /^opcodes = [$/;" v +open Lib/_pyio.py /^def open(file, mode="r", buffering=-1, encoding=None, errors=None,$/;" f +open Lib/aifc.py /^def open(f, mode=None):$/;" f +open Lib/bz2.py /^def open(filename, mode="rb", compresslevel=9,$/;" f +open Lib/codecs.py /^def open(filename, mode='r', encoding=None, errors='strict', buffering=-1):$/;" f +open Lib/dbm/__init__.py /^def open(file, flag='r', mode=0o666):$/;" f +open Lib/dbm/dumb.py /^def open(file, flag='c', mode=0o666):$/;" f +open Lib/gzip.py /^def open(filename, mode="rb", compresslevel=_COMPRESS_LEVEL_BEST,$/;" f +open Lib/idlelib/filelist.py /^ def open(self, filename, action=None):$/;" m class:FileList +open Lib/idlelib/grep.py /^ def open(self, text, searchphrase, io=None):$/;" m class:GrepDialog +open Lib/idlelib/iomenu.py /^ def open(self, event):$/;" m class:_io_binding.MyEditWin +open Lib/idlelib/iomenu.py /^ def open(self, event=None, editFile=None):$/;" m class:IOBinding +open Lib/idlelib/replace.py /^ def open(self, text, insert_tags=None):$/;" m class:ReplaceDialog +open Lib/idlelib/searchbase.py /^ def open(self, text, searchphrase=None):$/;" m class:SearchDialogBase +open Lib/imaplib.py /^ def open(self, host='', port=IMAP4_SSL_PORT, timeout=None):$/;" m class:IMAP4.IMAP4_SSL +open Lib/imaplib.py /^ def open(self, host='', port=IMAP4_PORT, timeout=None):$/;" m class:IMAP4 +open Lib/imaplib.py /^ def open(self, host=None, port=None, timeout=None):$/;" m class:IMAP4_stream +open Lib/importlib/resources/_adapters.py /^ def open(self, mode='r', *args, **kwargs):$/;" m class:CompatibilityFiles.ChildPath +open Lib/importlib/resources/_adapters.py /^ def open(self, mode='r', *args, **kwargs):$/;" m class:CompatibilityFiles.OrphanPath +open Lib/importlib/resources/_adapters.py /^ def open(self, mode='r', *args, **kwargs):$/;" m class:CompatibilityFiles.SpecPath +open Lib/importlib/resources/abc.py /^ def open(self, mode='r', *args, **kwargs):$/;" m class:Traversable +open Lib/importlib/resources/readers.py /^ def open(self, *args, **kwargs):$/;" m class:MultiplexedPath +open Lib/importlib/resources/simple.py /^ def open(self, *args, **kwargs):$/;" m class:ResourceContainer +open Lib/importlib/resources/simple.py /^ def open(self, mode='r', *args, **kwargs):$/;" m class:ResourceHandle +open Lib/lzma.py /^def open(filename, mode="rb", *,$/;" f +open Lib/pathlib.py /^ def open(self, mode='r', buffering=-1, encoding=None,$/;" m class:Path +open Lib/pipes.py /^ def open(self, file, rw):$/;" m class:Template +open Lib/shelve.py /^def open(filename, flag='c', protocol=None, writeback=False):$/;" f +open Lib/sunau.py /^def open(f, mode=None):$/;" f +open Lib/tarfile.py /^ def open(cls, name=None, mode="r", fileobj=None, bufsize=RECORDSIZE, **kwargs):$/;" m class:TarFile +open Lib/tarfile.py /^open = TarFile.open$/;" v +open Lib/telnetlib.py /^ def open(self, host, port=0, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):$/;" m class:Telnet +open Lib/test/test_bufio.py /^ open = io.open$/;" v class:CBufferSizeTest +open Lib/test/test_bufio.py /^ open = staticmethod(pyio.open)$/;" v class:PyBufferSizeTest +open Lib/test/test_bz2.py /^ def open(self, *args, **kwargs):$/;" m class:OpenTest +open Lib/test/test_file.py /^ open = io.open$/;" v class:CAutoFileTests +open Lib/test/test_file.py /^ open = io.open$/;" v class:COtherFileTests +open Lib/test/test_file.py /^ open = staticmethod(pyio.open)$/;" v class:PyAutoFileTests +open Lib/test/test_file.py /^ open = staticmethod(pyio.open)$/;" v class:PyOtherFileTests +open Lib/test/test_largefile.py /^ open = staticmethod(io.open)$/;" v class:CLargeFileTest +open Lib/test/test_largefile.py /^ open = staticmethod(io.open)$/;" v class:TestCopyfile +open Lib/test/test_largefile.py /^ open = staticmethod(io.open)$/;" v class:TestSocketSendfile +open Lib/test/test_largefile.py /^ open = staticmethod(pyio.open)$/;" v class:PyLargeFileTest +open Lib/test/test_tarfile.py /^ def open(self, **kwargs):$/;" m class:ArchiveMaker +open Lib/test/test_tarfile.py /^ open = bz2.BZ2File if bz2 else None$/;" v class:Bz2Test +open Lib/test/test_tarfile.py /^ open = gzip.GzipFile if gzip else None$/;" v class:GzipTest +open Lib/test/test_tarfile.py /^ open = io.FileIO$/;" v class:TarTest +open Lib/test/test_tarfile.py /^ open = lzma.LZMAFile if lzma else None$/;" v class:LzmaTest +open Lib/test/test_univnewlines.py /^ open = io.open$/;" v class:CTest +open Lib/test/test_univnewlines.py /^ open = staticmethod(pyio.open)$/;" v class:PyTest +open Lib/test/test_urllib2.py /^ def open(self, req, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):$/;" m class:MockOpener +open Lib/tkinter/tix.py /^ def open(self, entrypath):$/;" m class:CheckList +open Lib/tkinter/tix.py /^ def open(self, entrypath):$/;" m class:Tree +open Lib/tokenize.py /^def open(filename):$/;" f +open Lib/urllib/request.py /^ def open(self, fullurl, data=None):$/;" m class:URLopener +open Lib/urllib/request.py /^ def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):$/;" m class:OpenerDirector +open Lib/wave.py /^def open(f, mode=None):$/;" f +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:.MacOSX +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:.MacOSXOSAScript +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:.WindowsDefault +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:BackgroundBrowser +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:BaseBrowser +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:GenericBrowser +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:Konqueror +open Lib/webbrowser.py /^ def open(self, url, new=0, autoraise=True):$/;" m class:UnixBrowser +open Lib/webbrowser.py /^def open(url, new=0, autoraise=True):$/;" f +open Lib/zipfile/__init__.py /^ def open(self, name, mode="r", pwd=None, *, force_zip64=False):$/;" m class:ZipFile +open Lib/zipfile/_path/__init__.py /^ def open(self, mode='r', *args, pwd=None, **kwargs):$/;" m class:Path +open Modules/_xxinterpchannelsmodule.c /^ int open;$/;" m struct:_channel file: +open Modules/_xxinterpchannelsmodule.c /^ int open;$/;" m struct:_channelend file: +open Modules/expat/xmlparse.c /^ XML_Bool open;$/;" m struct:__anon611 file: +open Tools/freeze/bkfile.py /^def open(file, mode='r', bufsize=-1):$/;" f +open_binary Lib/importlib/resources/_legacy.py /^def open_binary(package: Package, resource: Resource) -> BinaryIO:$/;" f +open_binary Lib/importlib/resources/simple.py /^ def open_binary(self, resource: str) -> BinaryIO:$/;" m class:SimpleReader +open_browser Lib/pydoc.py /^ open_browser = True$/;" v class:cli.BadUsage +open_browser Lib/pydoc.py /^ open_browser = False$/;" v class:cli.BadUsage +open_calltip Lib/idlelib/calltip.py /^ def open_calltip(self, evalfuncs):$/;" m class:Calltip +open_close Lib/idlelib/idle_test/test_calltip.py /^ def open_close(self, testfunc):$/;" m class:CalltipTest +open_code Lib/_pyio.py /^ open_code = _open_code_with_warning$/;" v +open_code_hook Include/internal/pycore_runtime.h /^ Py_OpenCodeHookFunction open_code_hook;$/;" m struct:pyruntimestate +open_code_userdata Include/internal/pycore_runtime.h /^ void *open_code_userdata;$/;" m struct:pyruntimestate +open_completions Lib/idlelib/autocomplete.py /^ def open_completions(self, args):$/;" m class:AutoComplete +open_connection Lib/asyncio/streams.py /^async def open_connection(host=None, port=None, *,$/;" f +open_data Lib/urllib/request.py /^ def open_data(self, url, data=None):$/;" m class:URLopener +open_data Tools/unicode/makeunicodedata.py /^def open_data(template, version):$/;" f +open_debugger Lib/idlelib/pyshell.py /^ def open_debugger(self):$/;" m class:PyShell +open_dir_fd Lib/test/support/os_helper.py /^def open_dir_fd(path):$/;" f +open_fds Lib/test/test_subprocess.py /^ def open_fds():$/;" f function:ProcessTestCase.test_double_close_on_error +open_file Lib/test/test_modulefinder.py /^def open_file(path):$/;" f +open_file Lib/urllib/request.py /^ def open_file(self, url):$/;" m class:URLopener +open_for_changes Tools/build/generate_global_objects.py /^def open_for_changes(filename, orig):$/;" f +open_ftp Lib/urllib/request.py /^ def open_ftp(self, url):$/;" m class:URLopener +open_http Lib/urllib/request.py /^ def open_http(self, url, data=None):$/;" m class:URLopener +open_https Lib/urllib/request.py /^ def open_https(self, url, data=None):$/;" f function:URLopener.http_error_default +open_internal_entity Modules/expat/xmlparse.c /^typedef struct open_internal_entity {$/;" s file: +open_keys Lib/test/test_getpath.py /^ def open_keys(self):$/;" m class:MockWinreg +open_local_file Lib/test/test_urllib.py /^ def open_local_file(self, url):$/;" m class:URLopener_Tests.test_local_file_open.DummyURLopener +open_local_file Lib/urllib/request.py /^ def open_local_file(self, req):$/;" m class:FileHandler +open_local_file Lib/urllib/request.py /^ def open_local_file(self, url):$/;" m class:URLopener +open_mapping_file Lib/test/multibytecodec_support.py /^ def open_mapping_file(self):$/;" m class:TestBase_Mapping +open_mapping_file Tools/unicode/genmap_support.py /^def open_mapping_file(path, source):$/;" f +open_module Lib/idlelib/editor.py /^ def open_module(self):$/;" m class:EditorWindow +open_module_browser Lib/idlelib/editor.py /^ def open_module_browser(self, event=None):$/;" m class:EditorWindow +open_module_event Lib/idlelib/editor.py /^ def open_module_event(self, event):$/;" m class:EditorWindow +open_new Lib/webbrowser.py /^ def open_new(self, url):$/;" m class:BaseBrowser +open_new Lib/webbrowser.py /^def open_new(url):$/;" f +open_new_tab Lib/webbrowser.py /^ def open_new_tab(self, url):$/;" m class:BaseBrowser +open_new_tab Lib/webbrowser.py /^def open_new_tab(url):$/;" f +open_path_browser Lib/idlelib/editor.py /^ def open_path_browser(self, event=None):$/;" m class:EditorWindow +open_r Lib/pipes.py /^ def open_r(self, file):$/;" m class:Template +open_recent_file Lib/idlelib/editor.py /^ def open_recent_file(fn_closure=file_name):$/;" f function:EditorWindow.__recent_file_callback +open_remote_stack_viewer Lib/idlelib/pyshell.py /^ def open_remote_stack_viewer(self):$/;" m class:ModifiedInterpreter +open_resource Lib/importlib/resources/abc.py /^ def open_resource(self, resource: StrPath) -> io.BufferedReader:$/;" m class:TraversableResources +open_resource Lib/importlib/resources/abc.py /^ def open_resource(self, resource: Text) -> BinaryIO:$/;" m class:ResourceReader +open_resource Lib/importlib/resources/readers.py /^ def open_resource(self, resource):$/;" m class:ZipReader +open_resource Lib/test/test_importlib/resources/util.py /^ def open_resource(self, path):$/;" m class:Reader +open_resource Lib/test/test_importlib/test_abc.py /^ def open_resource(self, *args, **kwargs):$/;" m class:ResourceReader +open_sequence_pattern_rule Parser/parser.c /^open_sequence_pattern_rule(Parser *p)$/;" f file: +open_sequence_pattern_type Parser/parser.c 167;" d file: +open_shell Lib/idlelib/pyshell.py /^ def open_shell(self, event=None):$/;" m class:PyShellFileList +open_spam Lib/test/test_urllib.py /^ def open_spam(self, url):$/;" m class:URLopener_Tests.test_quoted_open.DummyURLopener +open_spec Lib/unittest/mock.py /^open_spec = None$/;" v +open_stack_viewer Lib/idlelib/pyshell.py /^ def open_stack_viewer(self, event=None): # -n mode only$/;" m class:PyShell +open_text Lib/importlib/resources/_legacy.py /^def open_text($/;" f +open_turtle_demo Lib/idlelib/editor.py /^ def open_turtle_demo(self, event = None):$/;" m class:EditorWindow +open_unix_connection Lib/asyncio/streams.py /^ async def open_unix_connection(path=None, *,$/;" f function:start_server +open_unknown Lib/urllib/request.py /^ def open_unknown(self, fullurl, data=None):$/;" m class:URLopener +open_unknown_proxy Lib/urllib/request.py /^ def open_unknown_proxy(self, proxy, fullurl, data=None):$/;" m class:URLopener +open_urlresource Lib/test/support/__init__.py /^def open_urlresource(url, *args, **kw):$/;" f +open_w Lib/pipes.py /^ def open_w(self, file):$/;" m class:Template +opendialog Lib/idlelib/iomenu.py /^ opendialog = None$/;" v class:IOBinding +opened Tools/c-analyzer/c_parser/source.py /^def opened(source, filename=None):$/;" f +opener Lib/tempfile.py /^ def opener(*args):$/;" f function:.TemporaryFile +opener Lib/tempfile.py /^ def opener(*args):$/;" f function:.TemporaryFile +opener Lib/tempfile.py /^ def opener(*args):$/;" f function:NamedTemporaryFile +opener Lib/test/test_io.py /^ def opener(path, flags):$/;" f function:IOTest.test_opener +opener Lib/test/test_syslog.py /^ def opener():$/;" f function:Test.test_syslog_threaded +opener_has_handler Lib/test/test_urllib2.py /^ def opener_has_handler(self, opener, handler_class):$/;" m class:MiscTests +openfile Lib/test/test_email/__init__.py /^def openfile(filename, *args, **kws):$/;" f +openfile Lib/test/test_email/torture_test.py /^def openfile(filename):$/;" f +opengroup Lib/re/_parser.py /^ def opengroup(self, name=None):$/;" m class:State +openhook Lib/fileinput.py /^ def openhook(filename, mode):$/;" f function:hook_encoded +openhook Lib/test/test_fileinput.py /^ def openhook(self, filename, mode):$/;" m class:LineReader +openpty Lib/pty.py /^def openpty():$/;" f +openssl_cli Tools/ssl/multissltests.py /^ def openssl_cli(self):$/;" m class:AbstractBuilder +openssl_compare_digest Lib/test/test_hmac.py /^ openssl_compare_digest = None$/;" v +openssl_fptr Lib/test/test_lib2to3/data/infinite_recursion.py /^openssl_fptr = CFUNCTYPE(None)$/;" v +openssl_hashlib Lib/test/test_hashlib.py /^openssl_hashlib = import_fresh_module('hashlib', fresh=['_hashlib'])$/;" v +openssl_md_meth_names Lib/test/test_hashlib.py /^ openssl_md_meth_names = frozenset()$/;" v +openssl_version Tools/ssl/multissltests.py /^ def openssl_version(self):$/;" m class:AbstractBuilder +operand Include/internal/pycore_ast.h /^ expr_ty operand;$/;" m struct:_expr::__anon77::__anon81 +operand Include/internal/pycore_ast_state.h /^ PyObject *operand;$/;" m struct:ast_state +operation Lib/test/test_minidom.py /^ operation = xml.dom.UserDataHandler.NODE_CLONED$/;" v class:MinidomTest.check_clone_node_entity.Handler +operation Lib/test/test_minidom.py /^ operation = xml.dom.UserDataHandler.NODE_IMPORTED$/;" v class:MinidomTest.check_clone_node_entity.Handler +operator PyObject* Lib/test/test_cppext/extension.cpp /^ inline operator PyObject*() const { return this->m_obj; }$/;" f class:StrongRef +operator_clear Modules/_operator.c /^operator_clear(PyObject *module)$/;" f file: +operator_exec Modules/_operator.c /^operator_exec(PyObject *module)$/;" f file: +operator_free Modules/_operator.c /^operator_free(void *module)$/;" f file: +operator_methods Modules/_operator.c /^static struct PyMethodDef operator_methods[] = {$/;" v typeref:struct:PyMethodDef file: +operator_slots Modules/_operator.c /^static struct PyModuleDef_Slot operator_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +operator_table Parser/asdl.py /^ operator_table = {$/;" v class:TokenKind +operator_traverse Modules/_operator.c /^operator_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +operator_ty Include/internal/pycore_ast.h /^ FloorDiv=13 } operator_ty;$/;" t typeref:enum:_operator +operator_type Include/internal/pycore_ast_state.h /^ PyObject *operator_type;$/;" m struct:ast_state +operatormodule Modules/_operator.c /^static struct PyModuleDef operatormodule = {$/;" v typeref:struct:PyModuleDef file: +operators Tools/cases_generator/lexer.py /^operators = { op: pattern for op, pattern in globals().items() if op == op.upper() }$/;" v +oplists Lib/opcode.py /^oplists = [hasarg, hasconst, hasname, hasjrel, hasjabs,$/;" v +opmap Lib/lib2to3/pgen2/grammar.py /^opmap = {}$/;" v +opmap Lib/opcode.py /^opmap = {}$/;" v +opmap Lib/test/test_richcmp.py /^opmap = {$/;" v +opmap Tools/cases_generator/lexer.py /^opmap = { pattern.replace("\\\\", "") or '\\\\' : op for op, pattern in operators.items() }$/;" v +opmap Tools/scripts/summarize_stats.py /^opmap = dict(sorted(opmap.items()))$/;" v +opmap Tools/scripts/summarize_stats.py /^opmap = {name: i for i, name in enumerate(opname)}$/;" v +opname Lib/opcode.py /^opname = ['<%r>' % (op,) for op in range(MAX_PSEUDO_OPCODE + 1)]$/;" v +opname Tools/scripts/summarize_stats.py /^opname = ["<0>"]$/;" v +ops Include/internal/pycore_ast.h /^ asdl_int_seq *ops;$/;" m struct:_expr::__anon77::__anon93 +ops Include/internal/pycore_ast_state.h /^ PyObject *ops;$/;" m struct:ast_state +ops Lib/xml/etree/ElementPath.py /^ops = {$/;" v +ops Tools/cases_generator/parser.py /^ def ops(self) -> list[OpName] | None:$/;" m class:Parser +ops Tools/wasm/wasm_build.py /^ops = dict($/;" v +ops_help Tools/wasm/wasm_build.py /^ops_help = "\\n".join(f"{op:16s} {help}" for op, help in ops.items())$/;" v +opstrings Objects/object.c /^static const char * const opstrings[] = {"<", "<=", "==", "!=", ">", ">="};$/;" v file: +opt Lib/getopt.py /^ opt = ''$/;" v class:GetoptError +opt_ptr Python/getopt.c /^static const wchar_t *opt_ptr = L"";$/;" v file: +optim_args_from_interpreter_flags Lib/test/support/__init__.py /^def optim_args_from_interpreter_flags():$/;" f +optimization_level Include/cpython/initconfig.h /^ int optimization_level;$/;" m struct:PyConfig +optimize Include/internal/pycore_compile.h /^ int optimize;$/;" m struct:__anon150 +optimize Lib/lib2to3/pytree.py /^ def optimize(self):$/;" m class:BasePattern +optimize Lib/lib2to3/pytree.py /^ def optimize(self):$/;" m class:WildcardPattern +optimize Lib/pickletools.py /^def optimize(p):$/;" f +optimize Tools/i18n/makelocalealias.py /^def optimize(data):$/;" f +optimize_and_assemble Python/compile.c /^optimize_and_assemble(struct compiler *c, int addNone)$/;" f file: +optimize_and_assemble_code_unit Python/compile.c /^optimize_and_assemble_code_unit(struct compiler_unit *u, PyObject *const_cache,$/;" f file: +optimize_basic_block Python/flowgraph.c /^optimize_basic_block(PyObject *const_cache, basicblock *bb, PyObject *consts)$/;" f file: +optimize_cfg Python/flowgraph.c /^optimize_cfg(cfg_builder *g, PyObject *consts, PyObject *const_cache)$/;" f file: +optimize_format Python/ast_opt.c /^optimize_format(expr_ty node, PyObject *fmt, asdl_expr_seq *elts, PyArena *arena)$/;" f file: +optimize_python Lib/test/test_dtrace.py /^ optimize_python = 0$/;" v class:DTraceNormalTests +optimize_python Lib/test/test_dtrace.py /^ optimize_python = 0$/;" v class:SystemTapNormalTests +optimize_python Lib/test/test_dtrace.py /^ optimize_python = 0$/;" v class:TraceTests +optimize_python Lib/test/test_dtrace.py /^ optimize_python = 2$/;" v class:DTraceOptimizedTests +optimize_python Lib/test/test_dtrace.py /^ optimize_python = 2$/;" v class:SystemTapOptimizedTests +optimized Lib/test/pickletester.py /^ optimized = False$/;" v class:AbstractPickleTests +option1 Lib/test/test_enum.py /^ option1 = 1$/;" v class:TestSpecial.test_flufl_enum.MailManOptions +option2 Lib/test/test_enum.py /^ option2 = 2$/;" v class:TestSpecial.test_flufl_enum.MailManOptions +option3 Lib/test/test_enum.py /^ option3 = 3$/;" v class:TestSpecial.test_flufl_enum.MailManOptions +option_add Lib/tkinter/__init__.py /^ def option_add(self, pattern, value, priority = None):$/;" m class:Misc +option_clear Lib/tkinter/__init__.py /^ def option_clear(self):$/;" m class:Misc +option_get Lib/tkinter/__init__.py /^ def option_get(self, name, className):$/;" m class:Misc +option_readfile Lib/tkinter/__init__.py /^ def option_readfile(self, fileName, priority = None):$/;" m class:Misc +option_spec Doc/tools/extensions/pyspecific.py /^ option_spec = {}$/;" v class:DeprecatedRemoved +option_spec Doc/tools/extensions/pyspecific.py /^ option_spec = {}$/;" v class:MiscNews +optional_arguments Doc/tools/extensions/c_annotations.py /^ optional_arguments = 0$/;" v class:init_annotations.LimitedAPIList +optional_arguments Doc/tools/extensions/pyspecific.py /^ optional_arguments = 0$/;" v class:Availability +optional_arguments Doc/tools/extensions/pyspecific.py /^ optional_arguments = 0$/;" v class:MiscNews +optional_arguments Doc/tools/extensions/pyspecific.py /^ optional_arguments = 1$/;" v class:DeprecatedRemoved +optional_arguments Doc/tools/extensions/pyspecific.py /^ optional_arguments = 2$/;" v class:AuditEvent +optional_vars Include/internal/pycore_ast.h /^ expr_ty optional_vars;$/;" m struct:_withitem +optional_vars Include/internal/pycore_ast_state.h /^ PyObject *optional_vars;$/;" m struct:ast_state +options Lib/configparser.py /^ def options(self, section):$/;" m class:RawConfigParser +options Lib/lib2to3/fixer_base.py /^ options = None # Options object passed to initializer$/;" v class:BaseFix +options Lib/ssl.py /^ def options(self):$/;" m class:SSLContext +options Lib/ssl.py /^ def options(self, value):$/;" m class:SSLContext +options Lib/test/smtpd.py /^ options = parseargs()$/;" v +options Tools/importbench/importbench.py /^ options = parser.parse_args()$/;" v +optionxform Lib/configparser.py /^ def optionxform(self, optionstr):$/;" m class:RawConfigParser +or_ Lib/operator.py /^def or_(a, b):$/;" f +or_false Lib/test/test_compile.py /^ def or_false(x):$/;" f function:TestSpecifics.test_consts_in_conditionals +or_pattern_rule Parser/parser.c /^or_pattern_rule(Parser *p)$/;" f file: +or_pattern_type Parser/parser.c 150;" d file: +or_true Lib/test/test_compile.py /^ def or_true(x):$/;" f function:TestSpecifics.test_consts_in_conditionals +ord_to_ymd Modules/_datetimemodule.c /^ord_to_ymd(int ordinal, int *year, int *month, int *day)$/;" f file: +order Lib/lib2to3/fixer_base.py /^ order = "post" # Does the fixer prefer pre- or post-order traversal$/;" v class:BaseFix +order Lib/lib2to3/fixes/fix_intern.py /^ order = "pre"$/;" v class:FixIntern +order Lib/lib2to3/fixes/fix_next.py /^ order = "pre" # Pre-order tree traversal$/;" v class:FixNext +order Lib/lib2to3/fixes/fix_operator.py /^ order = "pre"$/;" v class:FixOperator +order Lib/lib2to3/fixes/fix_reduce.py /^ order = "pre"$/;" v class:FixReduce +order Lib/lib2to3/fixes/fix_reload.py /^ order = "pre"$/;" v class:FixReload +order Lib/lib2to3/fixes/fix_renames.py /^ order = "pre" # Pre-order tree traversal$/;" v class:FixRenames +order Lib/test/test_lib2to3/data/fixers/bad_order.py /^ order = "crazy"$/;" v class:FixBadOrder +order Lib/test/test_lib2to3/data/fixers/myfixes/fix_preorder.py /^ order = "pre"$/;" v class:FixPreorder +order_comparisons Lib/test/test_copy.py /^order_comparisons = le, lt, ge, gt$/;" v +order_default Lib/test/test_typing.py /^ order_default=True,$/;" v class:DataclassTransformTests.test_base_class.ModelBase +ordered_attributes Modules/pyexpat.c /^ int ordered_attributes; \/* Return attributes as a list. *\/$/;" m struct:__anon483 file: +orelse Include/internal/pycore_ast.h /^ asdl_stmt_seq *orelse;$/;" m struct:_stmt::__anon51::__anon61 +orelse Include/internal/pycore_ast.h /^ asdl_stmt_seq *orelse;$/;" m struct:_stmt::__anon51::__anon62 +orelse Include/internal/pycore_ast.h /^ asdl_stmt_seq *orelse;$/;" m struct:_stmt::__anon51::__anon63 +orelse Include/internal/pycore_ast.h /^ asdl_stmt_seq *orelse;$/;" m struct:_stmt::__anon51::__anon64 +orelse Include/internal/pycore_ast.h /^ asdl_stmt_seq *orelse;$/;" m struct:_stmt::__anon51::__anon69 +orelse Include/internal/pycore_ast.h /^ asdl_stmt_seq *orelse;$/;" m struct:_stmt::__anon51::__anon70 +orelse Include/internal/pycore_ast.h /^ expr_ty orelse;$/;" m struct:_expr::__anon77::__anon83 +orelse Include/internal/pycore_ast_state.h /^ PyObject *orelse;$/;" m struct:ast_state +orig Include/internal/pycore_import.h /^ const char *orig; \/* ASCII encoded string *\/$/;" m struct:_module_alias +orig Lib/test/test_functools.py /^ def orig(): ...$/;" f function:TestLRU.test_common_signatures +orig Lib/test/test_functools.py /^ def orig(x, y):$/;" f function:TestLRU.test_copy +orig Lib/test/test_functools.py /^ def orig(x, y):$/;" f function:TestLRU.test_deepcopy +orig Lib/test/test_functools.py /^ def orig(x, y):$/;" f function:TestLRU.test_lru +orig Lib/test/test_functools.py /^ def orig(x, y):$/;" f function:TestLRU.test_lru_cache_threaded +orig Lib/test/test_importlib/fixtures.py /^orig = _path.create.registry[str]$/;" v +orig Python/bytecodes.c /^static PyObject *orig, *excs, *update, *b, *fromlist, *level, *from;$/;" v file: +orig Tools/build/freeze_modules.py /^ def orig(self):$/;" m class:FrozenModule +orig_argv Include/cpython/initconfig.h /^ PyWideStringList orig_argv;$/;" m struct:PyConfig +orig_argv Include/internal/pycore_runtime.h /^ PyWideStringList orig_argv;$/;" m struct:pyruntimestate +orig_argv Lib/test/test_getpath.py /^ orig_argv=None,$/;" v +orig_dict Objects/typeobject.c /^ PyObject *orig_dict;$/;" m struct:__anon718 file: +orig_mbox Lib/idlelib/idle_test/test_replace.py /^orig_mbox = se.messagebox$/;" v +orig_objects Lib/test/test_descr.py /^ orig_objects = len(gc.get_objects())$/;" v class:.test_slots.F +orig_platform Lib/idlelib/idle_test/test_query.py /^ orig_platform = query.platform # Set in test_path_ok_file.$/;" v class:HelpsourcePathokTest +orig_stream Lib/test/test_contextlib.py /^ orig_stream = "stderr"$/;" v class:TestRedirectStderr +orig_stream Lib/test/test_contextlib.py /^ orig_stream = "stdout"$/;" v class:TestRedirectStdout +orig_stream Lib/test/test_contextlib.py /^ orig_stream = None$/;" v class:TestRedirectStream +orig_threading_excepthook Lib/test/libregrtest/utils.py /^orig_threading_excepthook = None$/;" v +orig_unraisablehook Lib/test/libregrtest/utils.py /^orig_unraisablehook = None$/;" v +origin Objects/genericaliasobject.c /^ PyObject *origin;$/;" m struct:__anon711 file: +origin_server Lib/wsgiref/handlers.py /^ origin_server = False$/;" v class:BaseCGIHandler +origin_server Lib/wsgiref/handlers.py /^ origin_server = True # We are transmitting direct to client$/;" v class:BaseHandler +originalCmdLine PC/launcher2.c /^ const wchar_t *originalCmdLine;$/;" m struct:__anon284 file: +original_opcode Include/cpython/code.h /^ uint8_t original_opcode;$/;" m struct:__anon228 +origname Python/import.c /^ const char *origname;$/;" m struct:frozen_info file: +os_DirEntry___fspath__ Modules/clinic/posixmodule.c.h /^os_DirEntry___fspath__(DirEntry *self, PyObject *Py_UNUSED(ignored))$/;" f +os_DirEntry___fspath___impl Modules/posixmodule.c /^os_DirEntry___fspath___impl(DirEntry *self)$/;" f file: +os_DirEntry_inode Modules/clinic/posixmodule.c.h /^os_DirEntry_inode(DirEntry *self, PyObject *Py_UNUSED(ignored))$/;" f +os_DirEntry_inode_impl Modules/posixmodule.c /^os_DirEntry_inode_impl(DirEntry *self)$/;" f file: +os_DirEntry_is_dir Modules/clinic/posixmodule.c.h /^os_DirEntry_is_dir(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_DirEntry_is_dir_impl Modules/posixmodule.c /^os_DirEntry_is_dir_impl(DirEntry *self, PyTypeObject *defining_class,$/;" f file: +os_DirEntry_is_file Modules/clinic/posixmodule.c.h /^os_DirEntry_is_file(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_DirEntry_is_file_impl Modules/posixmodule.c /^os_DirEntry_is_file_impl(DirEntry *self, PyTypeObject *defining_class,$/;" f file: +os_DirEntry_is_junction Modules/clinic/posixmodule.c.h /^os_DirEntry_is_junction(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_DirEntry_is_junction_impl Modules/posixmodule.c /^os_DirEntry_is_junction_impl(DirEntry *self, PyTypeObject *defining_class)$/;" f file: +os_DirEntry_is_symlink Modules/clinic/posixmodule.c.h /^os_DirEntry_is_symlink(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_DirEntry_is_symlink_impl Modules/posixmodule.c /^os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class)$/;" f file: +os_DirEntry_stat Modules/clinic/posixmodule.c.h /^os_DirEntry_stat(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_DirEntry_stat_impl Modules/posixmodule.c /^os_DirEntry_stat_impl(DirEntry *self, PyTypeObject *defining_class,$/;" f file: +os_WCOREDUMP Modules/clinic/posixmodule.c.h /^os_WCOREDUMP(PyObject *module, PyObject *arg)$/;" f +os_WCOREDUMP_impl Modules/posixmodule.c /^os_WCOREDUMP_impl(PyObject *module, int status)$/;" f file: +os_WEXITSTATUS Modules/clinic/posixmodule.c.h /^os_WEXITSTATUS(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_WEXITSTATUS_impl Modules/posixmodule.c /^os_WEXITSTATUS_impl(PyObject *module, int status)$/;" f file: +os_WIFCONTINUED Modules/clinic/posixmodule.c.h /^os_WIFCONTINUED(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_WIFCONTINUED_impl Modules/posixmodule.c /^os_WIFCONTINUED_impl(PyObject *module, int status)$/;" f file: +os_WIFEXITED Modules/clinic/posixmodule.c.h /^os_WIFEXITED(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_WIFEXITED_impl Modules/posixmodule.c /^os_WIFEXITED_impl(PyObject *module, int status)$/;" f file: +os_WIFSIGNALED Modules/clinic/posixmodule.c.h /^os_WIFSIGNALED(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_WIFSIGNALED_impl Modules/posixmodule.c /^os_WIFSIGNALED_impl(PyObject *module, int status)$/;" f file: +os_WIFSTOPPED Modules/clinic/posixmodule.c.h /^os_WIFSTOPPED(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_WIFSTOPPED_impl Modules/posixmodule.c /^os_WIFSTOPPED_impl(PyObject *module, int status)$/;" f file: +os_WSTOPSIG Modules/clinic/posixmodule.c.h /^os_WSTOPSIG(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_WSTOPSIG_impl Modules/posixmodule.c /^os_WSTOPSIG_impl(PyObject *module, int status)$/;" f file: +os_WTERMSIG Modules/clinic/posixmodule.c.h /^os_WTERMSIG(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_WTERMSIG_impl Modules/posixmodule.c /^os_WTERMSIG_impl(PyObject *module, int status)$/;" f file: +os__add_dll_directory Modules/clinic/posixmodule.c.h /^os__add_dll_directory(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__add_dll_directory_impl Modules/posixmodule.c /^os__add_dll_directory_impl(PyObject *module, path_t *path)$/;" f file: +os__exit Modules/clinic/posixmodule.c.h /^os__exit(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__exit_impl Modules/posixmodule.c /^os__exit_impl(PyObject *module, int status)$/;" f file: +os__fcopyfile Modules/clinic/posixmodule.c.h /^os__fcopyfile(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os__fcopyfile_impl Modules/posixmodule.c /^os__fcopyfile_impl(PyObject *module, int in_fd, int out_fd, int flags)$/;" f file: +os__getdiskusage Modules/clinic/posixmodule.c.h /^os__getdiskusage(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__getdiskusage_impl Modules/posixmodule.c /^os__getdiskusage_impl(PyObject *module, path_t *path)$/;" f file: +os__getfinalpathname Modules/clinic/posixmodule.c.h /^os__getfinalpathname(PyObject *module, PyObject *arg)$/;" f +os__getfinalpathname_impl Modules/posixmodule.c /^os__getfinalpathname_impl(PyObject *module, path_t *path)$/;" f file: +os__getfullpathname Modules/clinic/posixmodule.c.h /^os__getfullpathname(PyObject *module, PyObject *arg)$/;" f +os__getfullpathname_impl Modules/posixmodule.c /^os__getfullpathname_impl(PyObject *module, path_t *path)$/;" f file: +os__getvolumepathname Modules/clinic/posixmodule.c.h /^os__getvolumepathname(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__getvolumepathname_impl Modules/posixmodule.c /^os__getvolumepathname_impl(PyObject *module, path_t *path)$/;" f file: +os__path_exists Modules/clinic/posixmodule.c.h /^os__path_exists(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__path_exists_impl Modules/posixmodule.c /^os__path_exists_impl(PyObject *module, PyObject *path)$/;" f file: +os__path_isdevdrive Modules/clinic/posixmodule.c.h /^os__path_isdevdrive(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__path_isdevdrive_impl Modules/posixmodule.c /^os__path_isdevdrive_impl(PyObject *module, path_t *path)$/;" f file: +os__path_isdir Modules/clinic/posixmodule.c.h /^os__path_isdir(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__path_isdir_impl Modules/posixmodule.c /^os__path_isdir_impl(PyObject *module, PyObject *path)$/;" f file: +os__path_isfile Modules/clinic/posixmodule.c.h /^os__path_isfile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__path_isfile_impl Modules/posixmodule.c /^os__path_isfile_impl(PyObject *module, PyObject *path)$/;" f file: +os__path_islink Modules/clinic/posixmodule.c.h /^os__path_islink(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__path_islink_impl Modules/posixmodule.c /^os__path_islink_impl(PyObject *module, PyObject *path)$/;" f file: +os__path_normpath Modules/clinic/posixmodule.c.h /^os__path_normpath(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__path_normpath_impl Modules/posixmodule.c /^os__path_normpath_impl(PyObject *module, PyObject *path)$/;" f file: +os__path_splitroot Modules/clinic/posixmodule.c.h /^os__path_splitroot(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__path_splitroot_impl Modules/posixmodule.c /^os__path_splitroot_impl(PyObject *module, path_t *path)$/;" f file: +os__remove_dll_directory Modules/clinic/posixmodule.c.h /^os__remove_dll_directory(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os__remove_dll_directory_impl Modules/posixmodule.c /^os__remove_dll_directory_impl(PyObject *module, PyObject *cookie)$/;" f file: +os_abort Modules/clinic/posixmodule.c.h /^os_abort(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_abort_impl Modules/posixmodule.c /^os_abort_impl(PyObject *module)$/;" f file: +os_access Modules/clinic/posixmodule.c.h /^os_access(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_access_impl Modules/posixmodule.c /^os_access_impl(PyObject *module, path_t *path, int mode, int dir_fd,$/;" f file: +os_chdir Modules/clinic/posixmodule.c.h /^os_chdir(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_chdir_impl Modules/posixmodule.c /^os_chdir_impl(PyObject *module, path_t *path)$/;" f file: +os_chflags Modules/clinic/posixmodule.c.h /^os_chflags(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_chflags_impl Modules/posixmodule.c /^os_chflags_impl(PyObject *module, path_t *path, unsigned long flags,$/;" f file: +os_chmod Modules/clinic/posixmodule.c.h /^os_chmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_chmod_impl Modules/posixmodule.c /^os_chmod_impl(PyObject *module, path_t *path, int mode, int dir_fd,$/;" f file: +os_chown Modules/clinic/posixmodule.c.h /^os_chown(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_chown_impl Modules/posixmodule.c /^os_chown_impl(PyObject *module, path_t *path, uid_t uid, gid_t gid,$/;" f file: +os_chroot Modules/clinic/posixmodule.c.h /^os_chroot(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_chroot_impl Modules/posixmodule.c /^os_chroot_impl(PyObject *module, path_t *path)$/;" f file: +os_cleanup Modules/socketmodule.c /^os_cleanup(void)$/;" f file: +os_close Modules/clinic/posixmodule.c.h /^os_close(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_close_impl Modules/posixmodule.c /^os_close_impl(PyObject *module, int fd)$/;" f file: +os_closerange Modules/clinic/posixmodule.c.h /^os_closerange(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_closerange_impl Modules/posixmodule.c /^os_closerange_impl(PyObject *module, int fd_low, int fd_high)$/;" f file: +os_confstr Modules/clinic/posixmodule.c.h /^os_confstr(PyObject *module, PyObject *arg)$/;" f +os_confstr_impl Modules/posixmodule.c /^os_confstr_impl(PyObject *module, int name)$/;" f file: +os_copy_file_range Modules/clinic/posixmodule.c.h /^os_copy_file_range(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_copy_file_range_impl Modules/posixmodule.c /^os_copy_file_range_impl(PyObject *module, int src, int dst, Py_ssize_t count,$/;" f file: +os_cpu_count Modules/clinic/posixmodule.c.h /^os_cpu_count(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_cpu_count_impl Modules/posixmodule.c /^os_cpu_count_impl(PyObject *module)$/;" f file: +os_ctermid Modules/clinic/posixmodule.c.h /^os_ctermid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_ctermid_impl Modules/posixmodule.c /^os_ctermid_impl(PyObject *module)$/;" f file: +os_device_encoding Modules/clinic/posixmodule.c.h /^os_device_encoding(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_device_encoding_impl Modules/posixmodule.c /^os_device_encoding_impl(PyObject *module, int fd)$/;" f file: +os_dup Modules/clinic/posixmodule.c.h /^os_dup(PyObject *module, PyObject *arg)$/;" f +os_dup2 Modules/clinic/posixmodule.c.h /^os_dup2(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_dup2_impl Modules/posixmodule.c /^os_dup2_impl(PyObject *module, int fd, int fd2, int inheritable)$/;" f file: +os_dup_impl Modules/posixmodule.c /^os_dup_impl(PyObject *module, int fd)$/;" f file: +os_environ Lib/test/test_wsgiref.py /^ os_environ = dict(os.environ.items())$/;" v class:ErrorHandler +os_environ Lib/wsgiref/handlers.py /^ os_environ = {}$/;" v class:CGIHandler +os_environ Lib/wsgiref/handlers.py /^ os_environ = {}$/;" v class:IISCGIHandler +os_environ Lib/wsgiref/handlers.py /^ os_environ= read_environ()$/;" v class:BaseHandler +os_eventfd Modules/clinic/posixmodule.c.h /^os_eventfd(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_eventfd_impl Modules/posixmodule.c /^os_eventfd_impl(PyObject *module, unsigned int initval, int flags)$/;" f file: +os_eventfd_read Modules/clinic/posixmodule.c.h /^os_eventfd_read(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_eventfd_read_impl Modules/posixmodule.c /^os_eventfd_read_impl(PyObject *module, int fd)$/;" f file: +os_eventfd_write Modules/clinic/posixmodule.c.h /^os_eventfd_write(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_eventfd_write_impl Modules/posixmodule.c /^os_eventfd_write_impl(PyObject *module, int fd, unsigned long long value)$/;" f file: +os_execv Modules/clinic/posixmodule.c.h /^os_execv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_execv_impl Modules/posixmodule.c /^os_execv_impl(PyObject *module, path_t *path, PyObject *argv)$/;" f file: +os_execve Modules/clinic/posixmodule.c.h /^os_execve(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_execve_impl Modules/posixmodule.c /^os_execve_impl(PyObject *module, path_t *path, PyObject *argv, PyObject *env)$/;" f file: +os_fchdir Modules/clinic/posixmodule.c.h /^os_fchdir(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_fchdir_impl Modules/posixmodule.c /^os_fchdir_impl(PyObject *module, int fd)$/;" f file: +os_fchmod Modules/clinic/posixmodule.c.h /^os_fchmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_fchmod_impl Modules/posixmodule.c /^os_fchmod_impl(PyObject *module, int fd, int mode)$/;" f file: +os_fchown Modules/clinic/posixmodule.c.h /^os_fchown(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_fchown_impl Modules/posixmodule.c /^os_fchown_impl(PyObject *module, int fd, uid_t uid, gid_t gid)$/;" f file: +os_fdatasync Modules/clinic/posixmodule.c.h /^os_fdatasync(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_fdatasync_impl Modules/posixmodule.c /^os_fdatasync_impl(PyObject *module, int fd)$/;" f file: +os_fork Modules/clinic/posixmodule.c.h /^os_fork(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_fork1 Modules/clinic/posixmodule.c.h /^os_fork1(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_fork1_impl Modules/posixmodule.c /^os_fork1_impl(PyObject *module)$/;" f file: +os_fork_impl Modules/posixmodule.c /^os_fork_impl(PyObject *module)$/;" f file: +os_forkpty Modules/clinic/posixmodule.c.h /^os_forkpty(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_forkpty_impl Modules/posixmodule.c /^os_forkpty_impl(PyObject *module)$/;" f file: +os_fpathconf Modules/clinic/posixmodule.c.h /^os_fpathconf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_fpathconf_impl Modules/posixmodule.c /^os_fpathconf_impl(PyObject *module, int fd, int name)$/;" f file: +os_fsencode Tools/gdb/libpython.py /^ def os_fsencode(filename):$/;" f +os_fspath Modules/clinic/posixmodule.c.h /^os_fspath(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_fspath_impl Modules/posixmodule.c /^os_fspath_impl(PyObject *module, PyObject *path)$/;" f file: +os_fstat Modules/clinic/posixmodule.c.h /^os_fstat(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_fstat_impl Modules/posixmodule.c /^os_fstat_impl(PyObject *module, int fd)$/;" f file: +os_fstatvfs Modules/clinic/posixmodule.c.h /^os_fstatvfs(PyObject *module, PyObject *arg)$/;" f +os_fstatvfs_impl Modules/posixmodule.c /^os_fstatvfs_impl(PyObject *module, int fd)$/;" f file: +os_fsync Modules/clinic/posixmodule.c.h /^os_fsync(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_fsync_impl Modules/posixmodule.c /^os_fsync_impl(PyObject *module, int fd)$/;" f file: +os_ftruncate Modules/clinic/posixmodule.c.h /^os_ftruncate(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_ftruncate_impl Modules/posixmodule.c /^os_ftruncate_impl(PyObject *module, int fd, Py_off_t length)$/;" f file: +os_get_blocking Modules/clinic/posixmodule.c.h /^os_get_blocking(PyObject *module, PyObject *arg)$/;" f +os_get_blocking_impl Modules/posixmodule.c /^os_get_blocking_impl(PyObject *module, int fd)$/;" f file: +os_get_handle_inheritable Modules/clinic/posixmodule.c.h /^os_get_handle_inheritable(PyObject *module, PyObject *arg)$/;" f +os_get_handle_inheritable_impl Modules/posixmodule.c /^os_get_handle_inheritable_impl(PyObject *module, intptr_t handle)$/;" f file: +os_get_inheritable Modules/clinic/posixmodule.c.h /^os_get_inheritable(PyObject *module, PyObject *arg)$/;" f +os_get_inheritable_impl Modules/posixmodule.c /^os_get_inheritable_impl(PyObject *module, int fd)$/;" f file: +os_get_terminal_size Modules/clinic/posixmodule.c.h /^os_get_terminal_size(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_get_terminal_size_impl Modules/posixmodule.c /^os_get_terminal_size_impl(PyObject *module, int fd)$/;" f file: +os_getcwd Modules/clinic/posixmodule.c.h /^os_getcwd(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getcwd_impl Modules/posixmodule.c /^os_getcwd_impl(PyObject *module)$/;" f file: +os_getcwdb Modules/clinic/posixmodule.c.h /^os_getcwdb(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getcwdb_impl Modules/posixmodule.c /^os_getcwdb_impl(PyObject *module)$/;" f file: +os_getegid Modules/clinic/posixmodule.c.h /^os_getegid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getegid_impl Modules/posixmodule.c /^os_getegid_impl(PyObject *module)$/;" f file: +os_geteuid Modules/clinic/posixmodule.c.h /^os_geteuid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_geteuid_impl Modules/posixmodule.c /^os_geteuid_impl(PyObject *module)$/;" f file: +os_getgid Modules/clinic/posixmodule.c.h /^os_getgid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getgid_impl Modules/posixmodule.c /^os_getgid_impl(PyObject *module)$/;" f file: +os_getgrouplist Modules/clinic/posixmodule.c.h /^os_getgrouplist(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_getgrouplist_impl Modules/posixmodule.c /^os_getgrouplist_impl(PyObject *module, const char *user, int basegid)$/;" f file: +os_getgroups Modules/clinic/posixmodule.c.h /^os_getgroups(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getgroups_impl Modules/posixmodule.c /^os_getgroups_impl(PyObject *module)$/;" f file: +os_getloadavg Modules/clinic/posixmodule.c.h /^os_getloadavg(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getloadavg_impl Modules/posixmodule.c /^os_getloadavg_impl(PyObject *module)$/;" f file: +os_getlogin Modules/clinic/posixmodule.c.h /^os_getlogin(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getlogin_impl Modules/posixmodule.c /^os_getlogin_impl(PyObject *module)$/;" f file: +os_getpgid Modules/clinic/posixmodule.c.h /^os_getpgid(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_getpgid_impl Modules/posixmodule.c /^os_getpgid_impl(PyObject *module, pid_t pid)$/;" f file: +os_getpgrp Modules/clinic/posixmodule.c.h /^os_getpgrp(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getpgrp_impl Modules/posixmodule.c /^os_getpgrp_impl(PyObject *module)$/;" f file: +os_getpid Modules/clinic/posixmodule.c.h /^os_getpid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getpid_impl Modules/posixmodule.c /^os_getpid_impl(PyObject *module)$/;" f file: +os_getppid Modules/clinic/posixmodule.c.h /^os_getppid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getppid_impl Modules/posixmodule.c /^os_getppid_impl(PyObject *module)$/;" f file: +os_getpriority Modules/clinic/posixmodule.c.h /^os_getpriority(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_getpriority_impl Modules/posixmodule.c /^os_getpriority_impl(PyObject *module, int which, int who)$/;" f file: +os_getrandom Modules/clinic/posixmodule.c.h /^os_getrandom(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_getrandom_impl Modules/posixmodule.c /^os_getrandom_impl(PyObject *module, Py_ssize_t size, int flags)$/;" f file: +os_getresgid Modules/clinic/posixmodule.c.h /^os_getresgid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getresgid_impl Modules/posixmodule.c /^os_getresgid_impl(PyObject *module)$/;" f file: +os_getresuid Modules/clinic/posixmodule.c.h /^os_getresuid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getresuid_impl Modules/posixmodule.c /^os_getresuid_impl(PyObject *module)$/;" f file: +os_getsid Modules/clinic/posixmodule.c.h /^os_getsid(PyObject *module, PyObject *arg)$/;" f +os_getsid_impl Modules/posixmodule.c /^os_getsid_impl(PyObject *module, pid_t pid)$/;" f file: +os_getuid Modules/clinic/posixmodule.c.h /^os_getuid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_getuid_impl Modules/posixmodule.c /^os_getuid_impl(PyObject *module)$/;" f file: +os_getxattr Modules/clinic/posixmodule.c.h /^os_getxattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_getxattr_impl Modules/posixmodule.c /^os_getxattr_impl(PyObject *module, path_t *path, path_t *attribute,$/;" f file: +os_init Modules/socketmodule.c /^os_init(void)$/;" f file: +os_initgroups Modules/clinic/posixmodule.c.h /^os_initgroups(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_initgroups_impl Modules/posixmodule.c /^os_initgroups_impl(PyObject *module, PyObject *oname, int gid)$/;" f file: +os_isatty Modules/clinic/posixmodule.c.h /^os_isatty(PyObject *module, PyObject *arg)$/;" f +os_isatty_impl Modules/posixmodule.c /^os_isatty_impl(PyObject *module, int fd)$/;" f file: +os_kill Modules/clinic/posixmodule.c.h /^os_kill(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_kill_impl Modules/posixmodule.c /^os_kill_impl(PyObject *module, pid_t pid, Py_ssize_t signal)$/;" f file: +os_killpg Modules/clinic/posixmodule.c.h /^os_killpg(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_killpg_impl Modules/posixmodule.c /^os_killpg_impl(PyObject *module, pid_t pgid, int signal)$/;" f file: +os_lchflags Modules/clinic/posixmodule.c.h /^os_lchflags(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_lchflags_impl Modules/posixmodule.c /^os_lchflags_impl(PyObject *module, path_t *path, unsigned long flags)$/;" f file: +os_lchmod Modules/clinic/posixmodule.c.h /^os_lchmod(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_lchmod_impl Modules/posixmodule.c /^os_lchmod_impl(PyObject *module, path_t *path, int mode)$/;" f file: +os_lchown Modules/clinic/posixmodule.c.h /^os_lchown(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_lchown_impl Modules/posixmodule.c /^os_lchown_impl(PyObject *module, path_t *path, uid_t uid, gid_t gid)$/;" f file: +os_link Modules/clinic/posixmodule.c.h /^os_link(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_link_impl Modules/posixmodule.c /^os_link_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,$/;" f file: +os_listdir Modules/clinic/posixmodule.c.h /^os_listdir(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_listdir_impl Modules/posixmodule.c /^os_listdir_impl(PyObject *module, path_t *path)$/;" f file: +os_listdrives Modules/clinic/posixmodule.c.h /^os_listdrives(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_listdrives_impl Modules/posixmodule.c /^os_listdrives_impl(PyObject *module)$/;" f file: +os_listmounts Modules/clinic/posixmodule.c.h /^os_listmounts(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_listmounts_impl Modules/posixmodule.c /^os_listmounts_impl(PyObject *module, path_t *volume)$/;" f file: +os_listvolumes Modules/clinic/posixmodule.c.h /^os_listvolumes(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_listvolumes_impl Modules/posixmodule.c /^os_listvolumes_impl(PyObject *module)$/;" f file: +os_listxattr Modules/clinic/posixmodule.c.h /^os_listxattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_listxattr_impl Modules/posixmodule.c /^os_listxattr_impl(PyObject *module, path_t *path, int follow_symlinks)$/;" f file: +os_lockf Modules/clinic/posixmodule.c.h /^os_lockf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_lockf_impl Modules/posixmodule.c /^os_lockf_impl(PyObject *module, int fd, int command, Py_off_t length)$/;" f file: +os_login_tty Modules/clinic/posixmodule.c.h /^os_login_tty(PyObject *module, PyObject *arg)$/;" f +os_login_tty_impl Modules/posixmodule.c /^os_login_tty_impl(PyObject *module, int fd)$/;" f file: +os_lseek Modules/clinic/posixmodule.c.h /^os_lseek(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_lseek_impl Modules/posixmodule.c /^os_lseek_impl(PyObject *module, int fd, Py_off_t position, int how)$/;" f file: +os_lstat Modules/clinic/posixmodule.c.h /^os_lstat(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_lstat_impl Modules/posixmodule.c /^os_lstat_impl(PyObject *module, path_t *path, int dir_fd)$/;" f file: +os_major Modules/clinic/posixmodule.c.h /^os_major(PyObject *module, PyObject *arg)$/;" f +os_major_impl Modules/posixmodule.c /^os_major_impl(PyObject *module, dev_t device)$/;" f file: +os_makedev Modules/clinic/posixmodule.c.h /^os_makedev(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_makedev_impl Modules/posixmodule.c /^os_makedev_impl(PyObject *module, int major, int minor)$/;" f file: +os_memfd_create Modules/clinic/posixmodule.c.h /^os_memfd_create(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_memfd_create_impl Modules/posixmodule.c /^os_memfd_create_impl(PyObject *module, PyObject *name, unsigned int flags)$/;" f file: +os_minor Modules/clinic/posixmodule.c.h /^os_minor(PyObject *module, PyObject *arg)$/;" f +os_minor_impl Modules/posixmodule.c /^os_minor_impl(PyObject *module, dev_t device)$/;" f file: +os_mkdir Modules/clinic/posixmodule.c.h /^os_mkdir(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_mkdir_impl Modules/posixmodule.c /^os_mkdir_impl(PyObject *module, path_t *path, int mode, int dir_fd)$/;" f file: +os_mkfifo Modules/clinic/posixmodule.c.h /^os_mkfifo(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_mkfifo_impl Modules/posixmodule.c /^os_mkfifo_impl(PyObject *module, path_t *path, int mode, int dir_fd)$/;" f file: +os_mknod Modules/clinic/posixmodule.c.h /^os_mknod(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_mknod_impl Modules/posixmodule.c /^os_mknod_impl(PyObject *module, path_t *path, int mode, dev_t device,$/;" f file: +os_nice Modules/clinic/posixmodule.c.h /^os_nice(PyObject *module, PyObject *arg)$/;" f +os_nice_impl Modules/posixmodule.c /^os_nice_impl(PyObject *module, int increment)$/;" f file: +os_open Lib/test/_test_eintr.py /^ def os_open(self, path):$/;" m class:SocketEINTRTest +os_open Modules/clinic/posixmodule.c.h /^os_open(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_open_impl Modules/posixmodule.c /^os_open_impl(PyObject *module, path_t *path, int flags, int mode, int dir_fd)$/;" f file: +os_openpty Modules/clinic/posixmodule.c.h /^os_openpty(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_openpty_impl Modules/posixmodule.c /^os_openpty_impl(PyObject *module)$/;" f file: +os_pathconf Modules/clinic/posixmodule.c.h /^os_pathconf(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_pathconf_impl Modules/posixmodule.c /^os_pathconf_impl(PyObject *module, path_t *path, int name)$/;" f file: +os_pidfd_open Modules/clinic/posixmodule.c.h /^os_pidfd_open(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_pidfd_open_impl Modules/posixmodule.c /^os_pidfd_open_impl(PyObject *module, pid_t pid, unsigned int flags)$/;" f file: +os_pipe Modules/clinic/posixmodule.c.h /^os_pipe(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_pipe2 Modules/clinic/posixmodule.c.h /^os_pipe2(PyObject *module, PyObject *arg)$/;" f +os_pipe2_impl Modules/posixmodule.c /^os_pipe2_impl(PyObject *module, int flags)$/;" f file: +os_pipe_impl Modules/posixmodule.c /^os_pipe_impl(PyObject *module)$/;" f file: +os_plock Modules/clinic/posixmodule.c.h /^os_plock(PyObject *module, PyObject *arg)$/;" f +os_plock_impl Modules/posixmodule.c /^os_plock_impl(PyObject *module, int op)$/;" f file: +os_posix_fadvise Modules/clinic/posixmodule.c.h /^os_posix_fadvise(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_posix_fadvise_impl Modules/posixmodule.c /^os_posix_fadvise_impl(PyObject *module, int fd, Py_off_t offset,$/;" f file: +os_posix_fallocate Modules/clinic/posixmodule.c.h /^os_posix_fallocate(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_posix_fallocate_impl Modules/posixmodule.c /^os_posix_fallocate_impl(PyObject *module, int fd, Py_off_t offset,$/;" f file: +os_posix_spawn Modules/clinic/posixmodule.c.h /^os_posix_spawn(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_posix_spawn_impl Modules/posixmodule.c /^os_posix_spawn_impl(PyObject *module, path_t *path, PyObject *argv,$/;" f file: +os_posix_spawnp Modules/clinic/posixmodule.c.h /^os_posix_spawnp(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_posix_spawnp_impl Modules/posixmodule.c /^os_posix_spawnp_impl(PyObject *module, path_t *path, PyObject *argv,$/;" f file: +os_pread Modules/clinic/posixmodule.c.h /^os_pread(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_pread_impl Modules/posixmodule.c /^os_pread_impl(PyObject *module, int fd, Py_ssize_t length, Py_off_t offset)$/;" f file: +os_preadv Modules/clinic/posixmodule.c.h /^os_preadv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_preadv_impl Modules/posixmodule.c /^os_preadv_impl(PyObject *module, int fd, PyObject *buffers, Py_off_t offset,$/;" f file: +os_putenv Modules/clinic/posixmodule.c.h /^os_putenv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_putenv_impl Modules/posixmodule.c /^os_putenv_impl(PyObject *module, PyObject *name, PyObject *value)$/;" f file: +os_pwrite Modules/clinic/posixmodule.c.h /^os_pwrite(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_pwrite_impl Modules/posixmodule.c /^os_pwrite_impl(PyObject *module, int fd, Py_buffer *buffer, Py_off_t offset)$/;" f file: +os_pwritev Modules/clinic/posixmodule.c.h /^os_pwritev(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_pwritev_impl Modules/posixmodule.c /^os_pwritev_impl(PyObject *module, int fd, PyObject *buffers, Py_off_t offset,$/;" f file: +os_read Modules/clinic/posixmodule.c.h /^os_read(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_read_impl Modules/posixmodule.c /^os_read_impl(PyObject *module, int fd, Py_ssize_t length)$/;" f file: +os_readlink Modules/clinic/posixmodule.c.h /^os_readlink(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_readlink_impl Modules/posixmodule.c /^os_readlink_impl(PyObject *module, path_t *path, int dir_fd)$/;" f file: +os_readv Modules/clinic/posixmodule.c.h /^os_readv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_readv_impl Modules/posixmodule.c /^os_readv_impl(PyObject *module, int fd, PyObject *buffers)$/;" f file: +os_register_at_fork Modules/clinic/posixmodule.c.h /^os_register_at_fork(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_register_at_fork_impl Modules/posixmodule.c /^os_register_at_fork_impl(PyObject *module, PyObject *before,$/;" f file: +os_remove Modules/clinic/posixmodule.c.h /^os_remove(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_remove_impl Modules/posixmodule.c /^os_remove_impl(PyObject *module, path_t *path, int dir_fd)$/;" f file: +os_removexattr Modules/clinic/posixmodule.c.h /^os_removexattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_removexattr_impl Modules/posixmodule.c /^os_removexattr_impl(PyObject *module, path_t *path, path_t *attribute,$/;" f file: +os_rename Modules/clinic/posixmodule.c.h /^os_rename(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_rename_impl Modules/posixmodule.c /^os_rename_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,$/;" f file: +os_replace Modules/clinic/posixmodule.c.h /^os_replace(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_replace_impl Modules/posixmodule.c /^os_replace_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,$/;" f file: +os_rmdir Modules/clinic/posixmodule.c.h /^os_rmdir(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_rmdir_impl Modules/posixmodule.c /^os_rmdir_impl(PyObject *module, path_t *path, int dir_fd)$/;" f file: +os_scandir Modules/clinic/posixmodule.c.h /^os_scandir(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_scandir_impl Modules/posixmodule.c /^os_scandir_impl(PyObject *module, path_t *path)$/;" f file: +os_sched_get_priority_max Modules/clinic/posixmodule.c.h /^os_sched_get_priority_max(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_sched_get_priority_max_impl Modules/posixmodule.c /^os_sched_get_priority_max_impl(PyObject *module, int policy)$/;" f file: +os_sched_get_priority_min Modules/clinic/posixmodule.c.h /^os_sched_get_priority_min(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_sched_get_priority_min_impl Modules/posixmodule.c /^os_sched_get_priority_min_impl(PyObject *module, int policy)$/;" f file: +os_sched_getaffinity Modules/clinic/posixmodule.c.h /^os_sched_getaffinity(PyObject *module, PyObject *arg)$/;" f +os_sched_getaffinity_impl Modules/posixmodule.c /^os_sched_getaffinity_impl(PyObject *module, pid_t pid)$/;" f file: +os_sched_getparam Modules/clinic/posixmodule.c.h /^os_sched_getparam(PyObject *module, PyObject *arg)$/;" f +os_sched_getparam_impl Modules/posixmodule.c /^os_sched_getparam_impl(PyObject *module, pid_t pid)$/;" f file: +os_sched_getscheduler Modules/clinic/posixmodule.c.h /^os_sched_getscheduler(PyObject *module, PyObject *arg)$/;" f +os_sched_getscheduler_impl Modules/posixmodule.c /^os_sched_getscheduler_impl(PyObject *module, pid_t pid)$/;" f file: +os_sched_param Modules/clinic/posixmodule.c.h /^os_sched_param(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +os_sched_param__doc__ Modules/posixmodule.c /^PyDoc_VAR(os_sched_param__doc__);$/;" v +os_sched_param_impl Modules/posixmodule.c /^os_sched_param_impl(PyTypeObject *type, PyObject *sched_priority)$/;" f file: +os_sched_rr_get_interval Modules/clinic/posixmodule.c.h /^os_sched_rr_get_interval(PyObject *module, PyObject *arg)$/;" f +os_sched_rr_get_interval_impl Modules/posixmodule.c /^os_sched_rr_get_interval_impl(PyObject *module, pid_t pid)$/;" f file: +os_sched_setaffinity Modules/clinic/posixmodule.c.h /^os_sched_setaffinity(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_sched_setaffinity_impl Modules/posixmodule.c /^os_sched_setaffinity_impl(PyObject *module, pid_t pid, PyObject *mask)$/;" f file: +os_sched_setparam Modules/clinic/posixmodule.c.h /^os_sched_setparam(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_sched_setparam_impl Modules/posixmodule.c /^os_sched_setparam_impl(PyObject *module, pid_t pid, PyObject *param_obj)$/;" f file: +os_sched_setscheduler Modules/clinic/posixmodule.c.h /^os_sched_setscheduler(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_sched_setscheduler_impl Modules/posixmodule.c /^os_sched_setscheduler_impl(PyObject *module, pid_t pid, int policy,$/;" f file: +os_sched_yield Modules/clinic/posixmodule.c.h /^os_sched_yield(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_sched_yield_impl Modules/posixmodule.c /^os_sched_yield_impl(PyObject *module)$/;" f file: +os_sendfile Modules/clinic/posixmodule.c.h /^os_sendfile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_sendfile_impl Modules/posixmodule.c /^os_sendfile_impl(PyObject *module, int out_fd, int in_fd, Py_off_t offset,$/;" f file: +os_set_blocking Modules/clinic/posixmodule.c.h /^os_set_blocking(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_set_blocking_impl Modules/posixmodule.c /^os_set_blocking_impl(PyObject *module, int fd, int blocking)$/;" f file: +os_set_handle_inheritable Modules/clinic/posixmodule.c.h /^os_set_handle_inheritable(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_set_handle_inheritable_impl Modules/posixmodule.c /^os_set_handle_inheritable_impl(PyObject *module, intptr_t handle,$/;" f file: +os_set_inheritable Modules/clinic/posixmodule.c.h /^os_set_inheritable(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_set_inheritable_impl Modules/posixmodule.c /^os_set_inheritable_impl(PyObject *module, int fd, int inheritable)$/;" f file: +os_setegid Modules/clinic/posixmodule.c.h /^os_setegid(PyObject *module, PyObject *arg)$/;" f +os_setegid_impl Modules/posixmodule.c /^os_setegid_impl(PyObject *module, gid_t egid)$/;" f file: +os_seteuid Modules/clinic/posixmodule.c.h /^os_seteuid(PyObject *module, PyObject *arg)$/;" f +os_seteuid_impl Modules/posixmodule.c /^os_seteuid_impl(PyObject *module, uid_t euid)$/;" f file: +os_setgid Modules/clinic/posixmodule.c.h /^os_setgid(PyObject *module, PyObject *arg)$/;" f +os_setgid_impl Modules/posixmodule.c /^os_setgid_impl(PyObject *module, gid_t gid)$/;" f file: +os_setgroups Modules/posixmodule.c /^os_setgroups(PyObject *module, PyObject *groups)$/;" f file: +os_setns Modules/clinic/posixmodule.c.h /^os_setns(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_setns_impl Modules/posixmodule.c /^os_setns_impl(PyObject *module, int fd, int nstype)$/;" f file: +os_setpgid Modules/clinic/posixmodule.c.h /^os_setpgid(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_setpgid_impl Modules/posixmodule.c /^os_setpgid_impl(PyObject *module, pid_t pid, pid_t pgrp)$/;" f file: +os_setpgrp Modules/clinic/posixmodule.c.h /^os_setpgrp(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_setpgrp_impl Modules/posixmodule.c /^os_setpgrp_impl(PyObject *module)$/;" f file: +os_setpriority Modules/clinic/posixmodule.c.h /^os_setpriority(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_setpriority_impl Modules/posixmodule.c /^os_setpriority_impl(PyObject *module, int which, int who, int priority)$/;" f file: +os_setregid Modules/clinic/posixmodule.c.h /^os_setregid(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_setregid_impl Modules/posixmodule.c /^os_setregid_impl(PyObject *module, gid_t rgid, gid_t egid)$/;" f file: +os_setresgid Modules/clinic/posixmodule.c.h /^os_setresgid(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_setresgid_impl Modules/posixmodule.c /^os_setresgid_impl(PyObject *module, gid_t rgid, gid_t egid, gid_t sgid)$/;" f file: +os_setresuid Modules/clinic/posixmodule.c.h /^os_setresuid(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_setresuid_impl Modules/posixmodule.c /^os_setresuid_impl(PyObject *module, uid_t ruid, uid_t euid, uid_t suid)$/;" f file: +os_setreuid Modules/clinic/posixmodule.c.h /^os_setreuid(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_setreuid_impl Modules/posixmodule.c /^os_setreuid_impl(PyObject *module, uid_t ruid, uid_t euid)$/;" f file: +os_setsid Modules/clinic/posixmodule.c.h /^os_setsid(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_setsid_impl Modules/posixmodule.c /^os_setsid_impl(PyObject *module)$/;" f file: +os_setuid Modules/clinic/posixmodule.c.h /^os_setuid(PyObject *module, PyObject *arg)$/;" f +os_setuid_impl Modules/posixmodule.c /^os_setuid_impl(PyObject *module, uid_t uid)$/;" f file: +os_setxattr Modules/clinic/posixmodule.c.h /^os_setxattr(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_setxattr_impl Modules/posixmodule.c /^os_setxattr_impl(PyObject *module, path_t *path, path_t *attribute,$/;" f file: +os_spawnv Modules/clinic/posixmodule.c.h /^os_spawnv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_spawnv_impl Modules/posixmodule.c /^os_spawnv_impl(PyObject *module, int mode, path_t *path, PyObject *argv)$/;" f file: +os_spawnve Modules/clinic/posixmodule.c.h /^os_spawnve(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_spawnve_impl Modules/posixmodule.c /^os_spawnve_impl(PyObject *module, int mode, path_t *path, PyObject *argv,$/;" f file: +os_splice Modules/clinic/posixmodule.c.h /^os_splice(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_splice_impl Modules/posixmodule.c /^os_splice_impl(PyObject *module, int src, int dst, Py_ssize_t count,$/;" f file: +os_startfile Modules/clinic/posixmodule.c.h /^os_startfile(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_startfile_impl Modules/posixmodule.c /^os_startfile_impl(PyObject *module, path_t *filepath,$/;" f file: +os_stat Modules/clinic/posixmodule.c.h /^os_stat(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_stat_impl Modules/posixmodule.c /^os_stat_impl(PyObject *module, path_t *path, int dir_fd, int follow_symlinks)$/;" f file: +os_statvfs Modules/clinic/posixmodule.c.h /^os_statvfs(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_statvfs_impl Modules/posixmodule.c /^os_statvfs_impl(PyObject *module, path_t *path)$/;" f file: +os_strerror Modules/clinic/posixmodule.c.h /^os_strerror(PyObject *module, PyObject *arg)$/;" f +os_strerror_impl Modules/posixmodule.c /^os_strerror_impl(PyObject *module, int code)$/;" f file: +os_symlink Modules/clinic/posixmodule.c.h /^os_symlink(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_symlink_impl Modules/posixmodule.c /^os_symlink_impl(PyObject *module, path_t *src, path_t *dst,$/;" f file: +os_sync Modules/clinic/posixmodule.c.h /^os_sync(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_sync_impl Modules/posixmodule.c /^os_sync_impl(PyObject *module)$/;" f file: +os_sysconf Modules/clinic/posixmodule.c.h /^os_sysconf(PyObject *module, PyObject *arg)$/;" f +os_sysconf_impl Modules/posixmodule.c /^os_sysconf_impl(PyObject *module, int name)$/;" f file: +os_system Modules/clinic/posixmodule.c.h /^os_system(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_system_impl Modules/posixmodule.c /^os_system_impl(PyObject *module, PyObject *command)$/;" f file: +os_system_impl Modules/posixmodule.c /^os_system_impl(PyObject *module, const Py_UNICODE *command)$/;" f file: +os_tcgetpgrp Modules/clinic/posixmodule.c.h /^os_tcgetpgrp(PyObject *module, PyObject *arg)$/;" f +os_tcgetpgrp_impl Modules/posixmodule.c /^os_tcgetpgrp_impl(PyObject *module, int fd)$/;" f file: +os_tcsetpgrp Modules/clinic/posixmodule.c.h /^os_tcsetpgrp(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_tcsetpgrp_impl Modules/posixmodule.c /^os_tcsetpgrp_impl(PyObject *module, int fd, pid_t pgid)$/;" f file: +os_times Modules/clinic/posixmodule.c.h /^os_times(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_times_impl Modules/posixmodule.c /^os_times_impl(PyObject *module)$/;" f file: +os_truncate Modules/clinic/posixmodule.c.h /^os_truncate(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_truncate_impl Modules/posixmodule.c /^os_truncate_impl(PyObject *module, path_t *path, Py_off_t length)$/;" f file: +os_ttyname Modules/clinic/posixmodule.c.h /^os_ttyname(PyObject *module, PyObject *arg)$/;" f +os_ttyname_impl Modules/posixmodule.c /^os_ttyname_impl(PyObject *module, int fd)$/;" f file: +os_umask Modules/clinic/posixmodule.c.h /^os_umask(PyObject *module, PyObject *arg)$/;" f +os_umask_impl Modules/posixmodule.c /^os_umask_impl(PyObject *module, int mask)$/;" f file: +os_uname Modules/clinic/posixmodule.c.h /^os_uname(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_uname_impl Modules/posixmodule.c /^os_uname_impl(PyObject *module)$/;" f file: +os_unlink Modules/clinic/posixmodule.c.h /^os_unlink(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_unlink_impl Modules/posixmodule.c /^os_unlink_impl(PyObject *module, path_t *path, int dir_fd)$/;" f file: +os_unsetenv Modules/clinic/posixmodule.c.h /^os_unsetenv(PyObject *module, PyObject *arg)$/;" f +os_unsetenv_impl Modules/posixmodule.c /^os_unsetenv_impl(PyObject *module, PyObject *name)$/;" f file: +os_unshare Modules/clinic/posixmodule.c.h /^os_unshare(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_unshare_impl Modules/posixmodule.c /^os_unshare_impl(PyObject *module, int flags)$/;" f file: +os_urandom Modules/clinic/posixmodule.c.h /^os_urandom(PyObject *module, PyObject *arg)$/;" f +os_urandom_impl Modules/posixmodule.c /^os_urandom_impl(PyObject *module, Py_ssize_t size)$/;" f file: +os_utime Modules/clinic/posixmodule.c.h /^os_utime(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_utime_impl Modules/posixmodule.c /^os_utime_impl(PyObject *module, path_t *path, PyObject *times, PyObject *ns,$/;" f file: +os_wait Modules/clinic/posixmodule.c.h /^os_wait(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +os_wait3 Modules/clinic/posixmodule.c.h /^os_wait3(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_wait3_impl Modules/posixmodule.c /^os_wait3_impl(PyObject *module, int options)$/;" f file: +os_wait4 Modules/clinic/posixmodule.c.h /^os_wait4(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_wait4_impl Modules/posixmodule.c /^os_wait4_impl(PyObject *module, pid_t pid, int options)$/;" f file: +os_wait_impl Modules/posixmodule.c /^os_wait_impl(PyObject *module)$/;" f file: +os_waitid Modules/clinic/posixmodule.c.h /^os_waitid(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_waitid_impl Modules/posixmodule.c /^os_waitid_impl(PyObject *module, idtype_t idtype, id_t id, int options)$/;" f file: +os_waitpid Modules/clinic/posixmodule.c.h /^os_waitpid(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_waitpid_impl Modules/posixmodule.c /^os_waitpid_impl(PyObject *module, intptr_t pid, int options)$/;" f file: +os_waitpid_impl Modules/posixmodule.c /^os_waitpid_impl(PyObject *module, pid_t pid, int options)$/;" f file: +os_waitstatus_to_exitcode Modules/clinic/posixmodule.c.h /^os_waitstatus_to_exitcode(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +os_waitstatus_to_exitcode_impl Modules/posixmodule.c /^os_waitstatus_to_exitcode_impl(PyObject *module, PyObject *status_obj)$/;" f file: +os_write Modules/clinic/posixmodule.c.h /^os_write(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_write_impl Modules/posixmodule.c /^os_write_impl(PyObject *module, int fd, Py_buffer *data)$/;" f file: +os_writev Modules/clinic/posixmodule.c.h /^os_writev(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +os_writev_impl Modules/posixmodule.c /^os_writev_impl(PyObject *module, int fd, PyObject *buffers)$/;" f file: +oserror_filter Lib/test/test_tarfile.py /^ def oserror_filter(tarinfo, path):$/;" f function:TestExtractionFilters.test_errorlevel +oserror_init Objects/exceptions.c /^oserror_init(PyOSErrorObject *self, PyObject **p_args,$/;" f file: +oserror_parse_args Objects/exceptions.c /^oserror_parse_args(PyObject **p_args,$/;" f file: +oserror_use_init Objects/exceptions.c /^oserror_use_init(PyTypeObject *type)$/;" f file: +oss_audio_t Modules/ossaudiodev.c /^} oss_audio_t;$/;" t typeref:struct:__anon471 file: +oss_bufsize Modules/ossaudiodev.c /^oss_bufsize(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_channels Modules/ossaudiodev.c /^oss_channels(oss_audio_t *self, PyObject *args)$/;" f file: +oss_close Modules/ossaudiodev.c /^oss_close(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_closed_getter Modules/ossaudiodev.c /^oss_closed_getter(oss_audio_t *self, void *closure)$/;" f file: +oss_dealloc Modules/ossaudiodev.c /^oss_dealloc(oss_audio_t *self)$/;" f file: +oss_exit Modules/ossaudiodev.c /^oss_exit(PyObject *self, PyObject *unused)$/;" f file: +oss_fileno Modules/ossaudiodev.c /^oss_fileno(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_getfmts Modules/ossaudiodev.c /^oss_getfmts(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_getptr Modules/ossaudiodev.c /^oss_getptr(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_getsetlist Modules/ossaudiodev.c /^static PyGetSetDef oss_getsetlist[] = {$/;" v file: +oss_members Modules/ossaudiodev.c /^static PyMemberDef oss_members[] = {$/;" v file: +oss_methods Modules/ossaudiodev.c /^static PyMethodDef oss_methods[] = {$/;" v file: +oss_mixer_close Modules/ossaudiodev.c /^oss_mixer_close(oss_mixer_t *self, PyObject *unused)$/;" f file: +oss_mixer_controls Modules/ossaudiodev.c /^oss_mixer_controls(oss_mixer_t *self, PyObject *args)$/;" f file: +oss_mixer_dealloc Modules/ossaudiodev.c /^oss_mixer_dealloc(oss_mixer_t *self)$/;" f file: +oss_mixer_fileno Modules/ossaudiodev.c /^oss_mixer_fileno(oss_mixer_t *self, PyObject *unused)$/;" f file: +oss_mixer_get Modules/ossaudiodev.c /^oss_mixer_get(oss_mixer_t *self, PyObject *args)$/;" f file: +oss_mixer_get_recsrc Modules/ossaudiodev.c /^oss_mixer_get_recsrc(oss_mixer_t *self, PyObject *args)$/;" f file: +oss_mixer_methods Modules/ossaudiodev.c /^static PyMethodDef oss_mixer_methods[] = {$/;" v file: +oss_mixer_reccontrols Modules/ossaudiodev.c /^oss_mixer_reccontrols(oss_mixer_t *self, PyObject *args)$/;" f file: +oss_mixer_set Modules/ossaudiodev.c /^oss_mixer_set(oss_mixer_t *self, PyObject *args)$/;" f file: +oss_mixer_set_recsrc Modules/ossaudiodev.c /^oss_mixer_set_recsrc(oss_mixer_t *self, PyObject *args)$/;" f file: +oss_mixer_stereocontrols Modules/ossaudiodev.c /^oss_mixer_stereocontrols(oss_mixer_t *self, PyObject *args)$/;" f file: +oss_mixer_t Modules/ossaudiodev.c /^} oss_mixer_t;$/;" t typeref:struct:__anon472 file: +oss_mode_getter Modules/ossaudiodev.c /^oss_mode_getter(oss_audio_t *self, void *closure)$/;" f file: +oss_nonblock Modules/ossaudiodev.c /^oss_nonblock(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_obufcount Modules/ossaudiodev.c /^oss_obufcount(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_obuffree Modules/ossaudiodev.c /^oss_obuffree(oss_audio_t *self, PyObject *unused)$/;" f file: +oss_post Modules/ossaudiodev.c /^oss_post(oss_audio_t *self, PyObject *args)$/;" f file: +oss_read Modules/ossaudiodev.c /^oss_read(oss_audio_t *self, PyObject *args)$/;" f file: +oss_reset Modules/ossaudiodev.c /^oss_reset(oss_audio_t *self, PyObject *args)$/;" f file: +oss_self Modules/ossaudiodev.c /^oss_self(PyObject *self, PyObject *unused)$/;" f file: +oss_setfmt Modules/ossaudiodev.c /^oss_setfmt(oss_audio_t *self, PyObject *args)$/;" f file: +oss_setparameters Modules/ossaudiodev.c /^oss_setparameters(oss_audio_t *self, PyObject *args)$/;" f file: +oss_speed Modules/ossaudiodev.c /^oss_speed(oss_audio_t *self, PyObject *args)$/;" f file: +oss_sync Modules/ossaudiodev.c /^oss_sync(oss_audio_t *self, PyObject *args)$/;" f file: +oss_write Modules/ossaudiodev.c /^oss_write(oss_audio_t *self, PyObject *args)$/;" f file: +oss_writeall Modules/ossaudiodev.c /^oss_writeall(oss_audio_t *self, PyObject *args)$/;" f file: +ossaudiodev Lib/test/test_ossaudiodev.py /^ ossaudiodev = import_helper.import_module('ossaudiodev')$/;" v +ossaudiodev_methods Modules/ossaudiodev.c /^static PyMethodDef ossaudiodev_methods[] = {$/;" v file: +ossaudiodevmodule Modules/ossaudiodev.c /^static struct PyModuleDef ossaudiodevmodule = {$/;" v typeref:struct:PyModuleDef file: +ossl_name Modules/_hashopenssl.c /^ const char *ossl_name;$/;" m struct:__anon560 file: +ossl_nid Modules/_hashopenssl.c /^ int ossl_nid;$/;" m struct:__anon560 file: +ossopen Modules/ossaudiodev.c /^ossopen(PyObject *self, PyObject *args)$/;" f file: +ossopenmixer Modules/ossaudiodev.c /^ossopenmixer(PyObject *self, PyObject *args)$/;" f file: +other Lib/test/test_collections.py /^ other = Other()$/;" v class:ABCTestCase.validate_comparison.Other +other_except Lib/test/test_exceptions.py /^ def other_except():$/;" f function:PEP626Tests.test_lineno_after_other_except +other_internal Lib/test/test_symtable.py /^ other_internal = find_block(spam, "other_internal")$/;" v class:SymtableTest +other_method Lib/test/test_weakref.py /^ def other_method(self):$/;" m class:Object +other_thread Lib/test/test_threadsignals.py /^ def other_thread():$/;" f function:ThreadSignals.acquire_retries_on_intr.my_handler +other_thread Lib/test/test_threadsignals.py /^ def other_thread():$/;" f function:ThreadSignals.test_rlock_acquire_interruption +our_candidate_list Lib/test/test_tempfile.py /^ def our_candidate_list():$/;" f function:TestGetDefaultTempdir.test_no_files_left_behind +out Include/cpython/dictobject.h /^PyAPI_FUNC(void) _PyDict_DebugMallocStats(FILE *out);$/;" v +out Include/cpython/listobject.h /^PyAPI_FUNC(void) _PyList_DebugMallocStats(FILE *out);$/;" v +out Include/cpython/object.h /^_PyObject_DebugTypeStats(FILE *out);$/;" v +out Include/cpython/tupleobject.h /^PyAPI_FUNC(void) _PyTuple_DebugMallocStats(FILE *out);$/;" v +out Include/internal/pycore_floatobject.h /^PyAPI_FUNC(void) _PyFloat_DebugMallocStats(FILE* out);$/;" v +out Include/internal/pycore_obmalloc.h /^PyAPI_FUNC(int) _PyObject_DebugMallocStats(FILE *out);$/;" v +out Lib/doctest.py /^ def out(s):$/;" f function:DocTestRunner.run +out Tools/iobench/iobench.py /^out = sys.stdout$/;" v +out_of_memory_goto Tools/peg_generator/pegen/c_generator.py /^ def out_of_memory_goto(self, expr: str, goto_target: str) -> None:$/;" m class:CParserGenerator +out_of_memory_return Tools/peg_generator/pegen/c_generator.py /^ def out_of_memory_return($/;" m class:CParserGenerator +outbuf Modules/cjkcodecs/multibytecodec.c /^ unsigned char *outbuf, *outbuf_end;$/;" m struct:__anon322 file: +outbuf_end Modules/cjkcodecs/multibytecodec.c /^ unsigned char *outbuf, *outbuf_end;$/;" m struct:__anon322 file: +outcome Tools/build/update_file.py /^ outcome = update_file_with_tmpfile(**kwargs)$/;" v +outer Lib/test/test_asyncio/test_tasks.py /^ async def outer():$/;" f function:BaseTaskTests.test_shield_effect +outer Lib/test/test_asyncio/test_tasks.py /^ async def outer():$/;" f function:BaseTaskTests.test_task_basics +outer Lib/test/test_asyncio/test_tasks.py /^ async def outer():$/;" f function:BaseTaskTests.test_yield_future_passes_cancel +outer Lib/test/test_asyncio/test_tasks.py /^ async def outer():$/;" f function:BaseTaskTests.test_yield_wait_does_not_shield_cancel +outer Lib/test/test_asyncio/test_tasks.py /^ async def outer():$/;" f function:CoroutineGatherTests.test_cancellation_broadcast +outer Lib/test/test_asyncio/test_tasks.py /^ async def outer():$/;" f function:CoroutineGatherTests.test_exception_marking +outer Lib/test/test_asyncio/test_timeouts.py /^ async def outer() -> None:$/;" f function:TimeoutTests.test_outer_task_is_not_cancelled +outer Lib/test/test_capi/test_misc.py /^ def outer():$/;" f function:Test_Pep523API.test_inlined_send +outer Lib/test/test_decorators.py /^ def outer(cls):$/;" m class:TestDecorators.test_wrapped_descriptor_inside_classmethod.Class +outer Lib/test/test_dis.py /^def outer(a=1, b=2):$/;" f +outer Lib/test/test_frame.py /^ def outer():$/;" f function:FrameAttrsTest.make_frames +outer Lib/test/test_frame.py /^ def outer():$/;" f function:ReprTest.test_repr +outer Lib/test/test_frame.py /^ def outer(self, **kwargs):$/;" m class:ClearTest +outer Lib/test/test_fstring.py /^ def outer(x):$/;" f function:.test_closure +outer Lib/test/test_generators.py /^ def outer():$/;" f function:ExceptionTest.test_nested_gen_except_loop +outer Lib/test/test_logging.py /^ def outer():$/;" f function:LoggerTest.test_find_caller_with_stacklevel +outer Lib/test/test_monitoring.py /^ def outer():$/;" f function:TestRegressions.test_105162 +outer Lib/test/test_traceback.py /^ def outer():$/;" f function:MiscTracebackCases.test_clear +outer Lib/test/test_type_aliases.py /^ def outer[A]():$/;" f function:TypeParamsAliasValueTest.test_alias_value_03 +outer Lib/test/test_type_params.py /^ def outer[A, B]():$/;" f function:TypeParamsTypeParamsDunder.test_typeparams_dunder_function_01 +outer Lib/test/test_warnings/data/stacklevel.py /^def outer(message, stacklevel=1):$/;" f +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_base_exception +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_exception +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_generator_exit +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_raise_stop_iteration +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_return +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_work +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestInterestingEdgeCases.test_close_and_throw_yield +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestPEP380Operation.test_catching_exception_from_subgen_and_returning +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestPEP380Operation.test_close_with_cleared_frame +outer Lib/test/test_yield_from.py /^ def outer():$/;" f function:TestPEP380Operation.test_send_tuple_with_custom_generator +outer_raise Lib/test/test_traceback.py /^ def outer_raise():$/;" f function:BaseExceptionReportingTests.test_cause +outer_raise Lib/test/test_traceback.py /^ def outer_raise():$/;" f function:BaseExceptionReportingTests.test_cause_and_context +outer_raise Lib/test/test_traceback.py /^ def outer_raise():$/;" f function:BaseExceptionReportingTests.test_cause_recursive +outer_raise Lib/test/test_traceback.py /^ def outer_raise():$/;" f function:BaseExceptionReportingTests.test_context +outerdir Lib/test/test_tarfile.py /^ outerdir = pathlib.Path(TEMPDIR) \/ 'outerdir'$/;" v class:TestExtractionFilters +outfile Tools/i18n/pygettext.py /^ outfile = 'messages.pot'$/;" v class:main.Options +outlen Modules/_blake2/impl/blake2.h /^ uint8_t outlen;$/;" m struct:__blake2b_state +outlen Modules/_blake2/impl/blake2.h /^ uint8_t outlen;$/;" m struct:__blake2bp_state +outlen Modules/_blake2/impl/blake2.h /^ uint8_t outlen;$/;" m struct:__blake2s_state +outlen Modules/_blake2/impl/blake2.h /^ uint8_t outlen;$/;" m struct:__blake2sp_state +outobj Modules/cjkcodecs/multibytecodec.c /^ PyObject *excobj, *outobj;$/;" m struct:__anon322 file: +outpath Tools/i18n/pygettext.py /^ outpath = ''$/;" v class:main.Options +output Lib/http/cookies.py /^ def output(self, attrs=None, header="Set-Cookie:"):$/;" m class:Morsel +output Lib/http/cookies.py /^ def output(self, attrs=None, header="Set-Cookie:", sep="\\015\\012"):$/;" m class:BaseCookie +output Lib/pydoc.py /^ def output(self):$/;" m class:Helper +output Tools/cases_generator/parser.py /^ def output(self) -> OutputEffect | None:$/;" m class:Parser +output Tools/clinic/clinic.py /^ def output():$/;" f function:_text_accumulator +output_buffer Modules/_pickle.c /^ PyObject *output_buffer; \/* Write into a local bytearray buffer before$/;" m struct:PicklerObject file: +output_comparative_stats Tools/scripts/summarize_stats.py /^def output_comparative_stats(base_stats, head_stats):$/;" f +output_difference Lib/doctest.py /^ def output_difference(self, example, got, optionflags):$/;" m class:OutputChecker +output_len Modules/_pickle.c /^ Py_ssize_t output_len; \/* Length of output_buffer. *\/$/;" m struct:PicklerObject file: +output_markup Objects/stringlib/unicode_format.h /^output_markup(SubString *field_name, SubString *format_spec,$/;" f +output_single_stats Tools/scripts/summarize_stats.py /^def output_single_stats(stats):$/;" f +output_stats Tools/scripts/summarize_stats.py /^def output_stats(inputs, json_output=None):$/;" f +output_templates Tools/clinic/clinic.py /^ def output_templates(self, f):$/;" m class:CLanguage +outputs Tools/cases_generator/parser.py /^ def outputs(self) -> list[OutputEffect] | None:$/;" m class:Parser +outside Lib/test/test_array.py /^ outside = 0xaa$/;" v class:UnsignedNumberTest +outside Lib/test/test_array.py /^ outside = 23$/;" v class:FPTest +outside Lib/test/test_array.py /^ outside = 23$/;" v class:SignedNumberTest +outside Lib/test/test_array.py /^ outside = str('\\x33')$/;" v class:UnicodeTest +over Lib/nntplib.py /^ def over(self, message_spec, *, file=None):$/;" m class:NNTP +over Lib/test/test_pprint.py /^ over=5,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +over_partial Lib/test/test_functools.py /^ over_partial = functools.partialmethod(functools.partial(capture, c=6), 7)$/;" v class:TestPartialMethod.A +overallocate Include/cpython/bytesobject.h /^ int overallocate;$/;" m struct:__anon174 +overallocate Include/cpython/unicodeobject.h /^ unsigned char overallocate;$/;" m struct:__anon236 +overlap Lib/statistics.py /^ def overlap(self, other):$/;" m class:NormalDist +overlap_numeric Lib/test/test_statistics.py /^ def overlap_numeric(X, Y, *, steps=8_192, z=5):$/;" f function:TestNormalDist.test_overlap +overlapped Modules/_winapi.c /^ OVERLAPPED overlapped;$/;" m struct:__anon535 file: +overlapped Modules/overlapped.c /^ OVERLAPPED overlapped;$/;" m struct:__anon567 file: +overlapped_dealloc Modules/_winapi.c /^overlapped_dealloc(OverlappedObject *self)$/;" f file: +overlapped_exec Modules/overlapped.c /^overlapped_exec(PyObject *module)$/;" f file: +overlapped_functions Modules/overlapped.c /^static PyMethodDef overlapped_functions[] = {$/;" v file: +overlapped_members Modules/_winapi.c /^static PyMemberDef overlapped_members[] = {$/;" v file: +overlapped_methods Modules/_winapi.c /^static PyMethodDef overlapped_methods[] = {$/;" v file: +overlapped_module Modules/overlapped.c /^static struct PyModuleDef overlapped_module = {$/;" v typeref:struct:PyModuleDef file: +overlapped_slots Modules/overlapped.c /^static PyModuleDef_Slot overlapped_slots[] = {$/;" v file: +overlapped_traverse Modules/_winapi.c /^overlapped_traverse(OverlappedObject *self, visitproc visit, void *arg)$/;" f file: +overlapped_type Modules/_winapi.c /^ PyTypeObject *overlapped_type;$/;" m struct:__anon534 file: +overlapped_type_slots Modules/overlapped.c /^static PyType_Slot overlapped_type_slots[] = {$/;" v file: +overlapped_type_spec Modules/overlapped.c /^static PyType_Spec overlapped_type_spec = {$/;" v file: +overlaps Lib/ipaddress.py /^ def overlaps(self, other):$/;" m class:_BaseNetwork +overload Lib/typing.py /^def overload(func):$/;" f +override Lib/importlib/util.py /^ def override(self):$/;" m class:_incompatible_extension_module_restrictions +override Lib/typing.py /^def override[F: _Func](method: F, \/) -> F:$/;" f +overrideRootMenu Lib/idlelib/macosx.py /^def overrideRootMenu(root, flist):$/;" f +override_frozen_modules Include/internal/pycore_import.h /^ int override_frozen_modules;$/;" m struct:_import_state +override_multi_interp_extensions_check Include/internal/pycore_import.h /^ int override_multi_interp_extensions_check;$/;" m struct:_import_state +override_vectorcall Modules/_testcapi/vectorcall.c /^override_vectorcall(PyObject *callable, PyObject *const *args, size_t nargsf,$/;" f file: +overrideredirect Lib/tkinter/__init__.py /^ overrideredirect = wm_overrideredirect$/;" v class:Wm +overrides_hash Objects/typeobject.c /^overrides_hash(PyTypeObject *type)$/;" f file: +own_gil Include/internal/pycore_ceval_state.h /^ int own_gil;$/;" m struct:_ceval_state +owner Include/internal/pycore_frame.h /^ char owner;$/;" m struct:_PyInterpreterFrame +owner Lib/pathlib.py /^ def owner(self):$/;" m class:Path +owner Modules/_io/bufferedio.c /^ volatile unsigned long owner;$/;" m struct:__anon435 file: +owner Modules/_ssl.c /^ PyObject *owner; \/* Python level "owner" passed to servername callback *\/$/;" m struct:__anon581 file: +owner Python/bytecodes.c /^static PyObject *list, *tuple, *dict, *owner, *set, *str, *tup, *map, *keys;$/;" v file: +ownerDocument Lib/xml/dom/minidom.py /^ ownerDocument = None$/;" v class:Node +oxford Lib/test/test_enum.py /^ oxford = blue$/;" v class:TestInternals.test_auto_with_aliases.Color +p Lib/inspect.py /^ def p(name_node, default_node, default=empty):$/;" f function:_signature_fromstr +p Lib/test/_test_multiprocessing.py /^ p = multiprocessing.pool.Pool(5, context=unittest.mock.MagicMock($/;" v class:TestPoolNotLeakOnFailure.test_release_unused_processes.FailingForkProcess +p Lib/test/mp_fork_bomb.py /^p = multiprocessing.Process(target=foo)$/;" v +p Lib/test/pickletester.py /^ p = self.pickler_class(bio, proto)$/;" v class:AbstractHookTests.test_pickler_hook.MyClass +p Lib/test/subprocessdata/sigchild_ignore.py /^p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])$/;" v +p Lib/test/test_ctypes/test_incomplete.py /^ p = p.next[0]$/;" v class:MyTestCase.test_incomplete_example.cell +p Lib/test/test_decimal.py /^ p = optparse.OptionParser("test_decimal.py [--debug] [{--skip | test1 [test2 [...]]}]")$/;" v +p Lib/test/test_descr.py /^ p = property(_testcapi.test_with_docstring)$/;" v class:.test_testcapi_no_segfault.X +p Lib/test/test_inspect.py /^ p = property(getp)$/;" v class:TestClassesAndFunctions.test_classify_newstyle.A +p Lib/test/test_inspect.py /^ def p(name): return signature.parameters[name].default$/;" f function:TestSignatureObject.test_signature_on_builtins +p Lib/test/test_lib2to3/test_fixers.py /^ def p(path):$/;" f function:Test_import.test_files_checked +p Lib/test/test_math.py /^ p = (4*scale, 3*scale)$/;" v class:MathTests.testDist.T +p Lib/test/test_math.py /^ p = (fourthmax,) * n$/;" v class:MathTests.testDist.T +p Lib/test/test_unittest/testmock/testpatch.py /^ p = patch(foo_name, new_callable=Klass, **kwargs)$/;" v class:PatchTest.test_new_callable_inherit_for_mocks.MockSub +p Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py /^p = pyex.partition('.app')$/;" v +p Modules/_ctypes/callproc.c /^ void *p;$/;" m union:result file: +p Modules/_ctypes/ctypes.h /^ void *p;$/;" m union:tagPyCArgObject::__anon496 +p Modules/expat/siphash.h /^ unsigned char buf[8], *p;$/;" m struct:siphash +p Modules/expat/xmlparse.c /^ NAMED **p;$/;" m struct:__anon609 file: +p Modules/getpath.py /^ p = p.rpartition('.')[0]$/;" v +p Modules/getpath.py /^ p = joinpath(p, program_name)$/;" v +p Tools/cases_generator/plexer.py /^ p = PLexer(src, filename)$/;" v class:PLexer +p Tools/stringbench/stringbench.py /^def p(*args):$/;" f +p1 Lib/lib2to3/fixes/fix_dict.py /^ p1 = patcomp.compile_pattern(P1)$/;" v class:FixDict +p1 Lib/lib2to3/fixes/fix_xrange.py /^ p1 = patcomp.compile_pattern(P1)$/;" v class:FixXrange +p1 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defmacro p1 ()$/;" f +p2 Lib/lib2to3/fixes/fix_dict.py /^ p2 = patcomp.compile_pattern(P2)$/;" v class:FixDict +p2 Lib/lib2to3/fixes/fix_xrange.py /^ p2 = patcomp.compile_pattern(P2)$/;" v class:FixXrange +p2 Lib/test/test_long.py /^ p2 = p2 << 1$/;" v +p2 Lib/test/test_long.py /^p2 = 4 # 0 and 1 already added$/;" v +p2 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defmacro p2 ()$/;" f +p3 Modules/_decimal/libmpdec/literature/umodarith.lisp /^(defmacro p3 ()$/;" f +p5s Include/internal/pycore_dtoa.h /^ struct Bigint *p5s;$/;" m struct:_dtoa_state typeref:struct:_dtoa_state::Bigint +pack Lib/idlelib/textview.py /^ def pack(self, **kwargs):$/;" m class:AutoHideScrollbar +pack Lib/mailbox.py /^ def pack(self):$/;" m class:MH +pack Lib/test/test_audioop.py /^def pack(width, data):$/;" f +pack Lib/test/test_os.py /^ def pack(value):$/;" f function:EventfdTests.test_eventfd_initval +pack Modules/_struct.c /^ int (*pack)(_structmodulestate *, char *, PyObject *,$/;" m struct:_formatdef file: +pack Modules/_struct.c /^pack(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +pack_arguments_newref Modules/_testclinic.c /^pack_arguments_newref(int argc, ...)$/;" f file: +pack_array Lib/xdrlib.py /^ def pack_array(self, list, pack_item):$/;" m class:Packer +pack_bool Lib/xdrlib.py /^ def pack_bool(self, x):$/;" m class:Packer +pack_bytes Lib/xdrlib.py /^ pack_bytes = pack_string$/;" v class:Packer +pack_configure Lib/tkinter/__init__.py /^ def pack_configure(self, cnf={}, **kw):$/;" m class:Pack +pack_double Lib/xdrlib.py /^ def pack_double(self, x):$/;" m class:Packer +pack_enum Lib/xdrlib.py /^ pack_enum = pack_int$/;" v class:Packer +pack_farray Lib/xdrlib.py /^ def pack_farray(self, n, list, pack_item):$/;" m class:Packer +pack_float Lib/xdrlib.py /^ def pack_float(self, x):$/;" m class:Packer +pack_fopaque Lib/xdrlib.py /^ pack_fopaque = pack_fstring$/;" v class:Packer +pack_forget Lib/tkinter/__init__.py /^ def pack_forget(self):$/;" m class:Pack +pack_from_list Modules/_testbuffer.c /^pack_from_list(PyObject *obj, PyObject *items, PyObject *format,$/;" f file: +pack_fstring Lib/xdrlib.py /^ def pack_fstring(self, n, s):$/;" m class:Packer +pack_halffloat Modules/_struct.c /^pack_halffloat(_structmodulestate *state,$/;" f file: +pack_hyper Lib/xdrlib.py /^ pack_hyper = pack_uhyper$/;" v class:Packer +pack_info Lib/tkinter/__init__.py /^ def pack_info(self):$/;" m class:Pack +pack_int Lib/xdrlib.py /^ def pack_int(self, x):$/;" m class:Packer +pack_into Modules/_struct.c /^pack_into(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f file: +pack_list Lib/xdrlib.py /^ def pack_list(self, list, pack_item):$/;" m class:Packer +pack_opaque Lib/xdrlib.py /^ pack_opaque = pack_string$/;" v class:Packer +pack_propagate Lib/tkinter/__init__.py /^ def pack_propagate(self, flag=_noarg_):$/;" m class:Misc +pack_single Modules/_testbuffer.c /^pack_single(char *ptr, PyObject *item, const char *fmt, Py_ssize_t itemsize)$/;" f file: +pack_single Objects/memoryobject.c /^pack_single(PyMemoryViewObject *self, char *ptr, PyObject *item, const char *fmt)$/;" f file: +pack_slaves Lib/tkinter/__init__.py /^ def pack_slaves(self):$/;" m class:Misc +pack_string Lib/xdrlib.py /^ def pack_string(self, s):$/;" m class:Packer +pack_uhyper Lib/xdrlib.py /^ def pack_uhyper(self, x):$/;" m class:Packer +pack_uint Lib/xdrlib.py /^ def pack_uint(self, x):$/;" m class:Packer +package Lib/importlib/resources/simple.py /^ def package(self) -> str:$/;" m class:SimpleReader +package Lib/test/test_importlib/resources/test_compatibilty_files.py /^ def package(self):$/;" m class:CompatibilityFilesNoReaderTests +package Lib/test/test_importlib/resources/test_compatibilty_files.py /^ def package(self):$/;" m class:CompatibilityFilesTests +package Lib/test/test_warnings/data/stacklevel.py /^def package(message, *, stacklevel):$/;" f +package packaging/import_failed.py /^ package = words[0][:-1]$/;" v +packageFromRecipe Mac/BuildScript/build-installer.py /^def packageFromRecipe(targetDir, recipe):$/;" f +packagePathMap Lib/modulefinder.py /^packagePathMap = {}$/;" v +package_name Lib/test/test_import/__init__.py /^ package_name = 'sample'$/;" v class:TestSymbolicallyLinkedPackage +package_path Lib/test/test_warnings/data/package_helper.py /^package_path = os.path.dirname(__file__)$/;" v +package_test Lib/test/test_modulefinder.py /^package_test = [$/;" v +package_to_anchor Lib/importlib/resources/_common.py /^def package_to_anchor(func):$/;" f +packages_distributions Lib/importlib/metadata/__init__.py /^def packages_distributions() -> Mapping[str, List[str]]:$/;" f +packed Lib/ipaddress.py /^ def packed(self):$/;" m class:IPv4Address +packed Lib/ipaddress.py /^ def packed(self):$/;" m class:IPv6Address +packed Lib/test/test_struct.py /^ packed = struct.pack(prefix+'?', 1)$/;" v class:StructTest.test_bool.ExplodingBool +packedFalse Lib/test/test_struct.py /^ packedFalse = struct.pack(falseFormat, *false)$/;" v class:StructTest.test_bool.ExplodingBool +packedTrue Lib/test/test_struct.py /^ packedTrue = struct.pack(trueFormat, *true)$/;" v class:StructTest.test_bool.ExplodingBool +packs Lib/test/test_audioop.py /^packs = {w: (lambda *data, width=w: pack(width, data)) for w in (1, 2, 3, 4)}$/;" v +pad Objects/stringlib/transmogrify.h /^pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill)$/;" f +pad Objects/unicodeobject.c /^pad(PyObject *self,$/;" f file: +padding Include/pyhash.h /^ unsigned char padding[16];$/;" m struct:__anon256::__anon259 +padding Include/pyhash.h /^ unsigned char padding[16];$/;" m struct:__anon256::__anon260 +page Lib/pydoc.py /^ def page(self, title, contents):$/;" m class:_url_handler._HTMLDoc +page Lib/pydoc.py /^ def page(self, title, contents):$/;" m class:HTMLDoc +page Lib/tkinter/tix.py /^ def page(self, name):$/;" m class:ListNoteBook +page Lib/tkinter/tix.py /^ def page(self, name):$/;" m class:NoteBook +page Lib/xmlrpc/server.py /^ def page(self, title, contents):$/;" m class:ServerHTMLDoc +page_down Lib/idlelib/tree.py /^ def page_down(self, event):$/;" m class:ScrolledCanvas +page_size Lib/test/memory_watchdog.py /^ page_size = get_pagesize()$/;" v +page_up Lib/idlelib/tree.py /^ def page_up(self, event):$/;" m class:ScrolledCanvas +pager Lib/pydoc.py /^def pager(text):$/;" f +pages Lib/tkinter/tix.py /^ def pages(self):$/;" m class:ListNoteBook +pages Lib/tkinter/tix.py /^ def pages(self):$/;" m class:NoteBook +paint Tools/unittestgui/unittestgui.py /^ def paint(self, *args):$/;" m class:ProgressBar +paint_theme_sample Lib/idlelib/configdialog.py /^ def paint_theme_sample(self):$/;" m class:HighPage +pair_converter Modules/_cursesmodule.c /^pair_converter(PyObject *arg, void *ptr)$/;" f file: +pair_count Include/pystats.h /^ uint64_t pair_count[256];$/;" m struct:_opcode_stats +pair_encodemap Modules/cjkcodecs/cjkcodecs.h /^struct pair_encodemap {$/;" s +pairs Lib/test/datetimetester.py /^def pairs(iterable):$/;" f +pairwise_dealloc Modules/itertoolsmodule.c /^pairwise_dealloc(pairwiseobject *po)$/;" f file: +pairwise_new Modules/clinic/itertoolsmodule.c.h /^pairwise_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +pairwise_new_impl Modules/itertoolsmodule.c /^pairwise_new_impl(PyTypeObject *type, PyObject *iterable)$/;" f file: +pairwise_next Modules/itertoolsmodule.c /^pairwise_next(pairwiseobject *po)$/;" f file: +pairwise_slots Modules/itertoolsmodule.c /^static PyType_Slot pairwise_slots[] = {$/;" v file: +pairwise_spec Modules/itertoolsmodule.c /^static PyType_Spec pairwise_spec = {$/;" v file: +pairwise_traverse Modules/itertoolsmodule.c /^pairwise_traverse(pairwiseobject *po, visitproc visit, void *arg)$/;" f file: +pairwise_type Modules/itertoolsmodule.c /^ PyTypeObject *pairwise_type;$/;" m struct:__anon400 file: +pairwiseobject Modules/itertoolsmodule.c /^} pairwiseobject;$/;" t typeref:struct:__anon402 file: +pan Modules/_curses_panel.c /^ PANEL *pan;$/;" m struct:__anon651 file: +pane Lib/tkinter/ttk.py /^ def pane(self, pane, option=None, **kw):$/;" m class:Panedwindow +panecget Lib/tkinter/__init__.py /^ def panecget(self, child, option):$/;" m class:PanedWindow +panecget Lib/tkinter/tix.py /^ def panecget(self, entry, opt):$/;" m class:PanedWindow +paneconfig Lib/tkinter/__init__.py /^ paneconfig = paneconfigure$/;" v class:PanedWindow +paneconfigure Lib/tkinter/__init__.py /^ def paneconfigure(self, tagOrId, cnf=None, **kw):$/;" m class:PanedWindow +paneconfigure Lib/tkinter/tix.py /^ def paneconfigure(self, entry, cnf={}, **kw):$/;" m class:PanedWindow +panes Lib/tkinter/__init__.py /^ def panes(self):$/;" m class:PanedWindow +panes Lib/tkinter/tix.py /^ def panes(self):$/;" m class:PanedWindow +parallel PCbuild/build.bat /^if "%~1"=="-M" (set parallel=) & shift & goto CheckOpts$/;" v +parallel PCbuild/build.bat /^if "%~1"=="-m" (set parallel=\/m) & shift & goto CheckOpts$/;" v +parallel PCbuild/build.bat /^set parallel=\/m$/;" v +param Lib/test/test_type_params.py /^ param = __T$/;" v class:TypeParamsManglingTest.test_mangling.Foo +param Modules/_blake2/blake2b_impl.c /^ blake2b_param param;$/;" m struct:__anon539 file: +param Modules/_blake2/blake2s_impl.c /^ blake2s_param param;$/;" m struct:__anon537 file: +paramEntities Modules/expat/xmlparse.c /^ HASH_TABLE paramEntities;$/;" m struct:__anon617 file: +paramEntityRead Modules/expat/xmlparse.c /^ XML_Bool paramEntityRead;$/;" m struct:__anon617 file: +param_maybe_default_rule Parser/parser.c /^param_maybe_default_rule(Parser *p)$/;" f file: +param_maybe_default_type Parser/parser.c 126;" d file: +param_no_default_rule Parser/parser.c /^param_no_default_rule(Parser *p)$/;" f file: +param_no_default_star_annotation_rule Parser/parser.c /^param_no_default_star_annotation_rule(Parser *p)$/;" f file: +param_no_default_star_annotation_type Parser/parser.c 124;" d file: +param_no_default_type Parser/parser.c 123;" d file: +param_rule Parser/parser.c /^param_rule(Parser *p)$/;" f file: +param_star_annotation_rule Parser/parser.c /^param_star_annotation_rule(Parser *p)$/;" f file: +param_star_annotation_type Parser/parser.c 128;" d file: +param_type Parser/parser.c 127;" d file: +param_value Lib/email/_header_value_parser.py /^ def param_value(self):$/;" m class:Parameter +param_with_default_rule Parser/parser.c /^param_with_default_rule(Parser *p)$/;" f file: +param_with_default_type Parser/parser.c 125;" d file: +parameter_type Modules/_sqlite/cursor.c /^} parameter_type;$/;" t typeref:enum:__anon361 file: +parameterize Lib/test/test_email/__init__.py /^def parameterize(cls):$/;" f +parameterize Lib/test/test_importlib/fixtures.py /^def parameterize(*args_set):$/;" f +parameterize Lib/test/test_zipfile/_path/_test_params.py /^def parameterize(names, value_groups):$/;" f +parameters Lib/inspect.py /^ def parameters(self):$/;" m class:Signature +parameters Objects/genericaliasobject.c /^ PyObject *parameters;$/;" m struct:__anon711 file: +parameters Objects/unionobject.c /^ PyObject *parameters;$/;" m struct:__anon751 file: +parameters Tools/clinic/clinic.py /^ parameters = []$/;" v +parameters_rule Parser/parser.c /^parameters_rule(Parser *p)$/;" f file: +parameters_type Parser/parser.c 118;" d file: +paramflags Modules/_ctypes/ctypes.h /^ PyObject *paramflags;$/;" m struct:__anon493 +paramfunc Modules/_ctypes/ctypes.h /^ PARAMFUNC paramfunc;$/;" m struct:__anon495 +params Lib/email/_header_value_parser.py /^ def params(self):$/;" m class:MimeParameters +params Lib/email/_header_value_parser.py /^ def params(self):$/;" m class:ParameterizedHeaderValue +params Lib/email/headerregistry.py /^ def params(self):$/;" m class:ParameterizedMIMEHeader +params_rule Parser/parser.c /^params_rule(Parser *p)$/;" f file: +params_type Parser/parser.c 117;" d file: +paramspec_alloc Objects/typevarobject.c /^paramspec_alloc(PyObject *name, PyObject *bound, bool covariant,$/;" f file: +paramspec_args Objects/typevarobject.c /^paramspec_args(PyObject *self, void *unused)$/;" f file: +paramspec_clear Objects/typevarobject.c /^paramspec_clear(paramspecobject *self)$/;" f file: +paramspec_dealloc Objects/typevarobject.c /^paramspec_dealloc(PyObject *self)$/;" f file: +paramspec_getset Objects/typevarobject.c /^static PyGetSetDef paramspec_getset[] = {$/;" v file: +paramspec_kwargs Objects/typevarobject.c /^paramspec_kwargs(PyObject *self, void *unused)$/;" f file: +paramspec_members Objects/typevarobject.c /^static PyMemberDef paramspec_members[] = {$/;" v file: +paramspec_methods Objects/typevarobject.c /^static PyMethodDef paramspec_methods[] = {$/;" v file: +paramspec_mro_entries Objects/typevarobject.c /^paramspec_mro_entries(PyObject *self, PyObject *args)$/;" f file: +paramspec_new Objects/clinic/typevarobject.c.h /^paramspec_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +paramspec_new_impl Objects/typevarobject.c /^paramspec_new_impl(PyTypeObject *type, PyObject *name, PyObject *bound,$/;" f file: +paramspec_reduce Objects/clinic/typevarobject.c.h /^paramspec_reduce(paramspecobject *self, PyObject *Py_UNUSED(ignored))$/;" f +paramspec_reduce_impl Objects/typevarobject.c /^paramspec_reduce_impl(paramspecobject *self)$/;" f file: +paramspec_repr Objects/typevarobject.c /^paramspec_repr(PyObject *self)$/;" f file: +paramspec_slots Objects/typevarobject.c /^static PyType_Slot paramspec_slots[] = {$/;" v file: +paramspec_spec Objects/typevarobject.c /^PyType_Spec paramspec_spec = {$/;" v +paramspec_traverse Objects/typevarobject.c /^paramspec_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +paramspec_type Include/internal/pycore_global_objects.h /^ PyTypeObject *paramspec_type;$/;" m struct:_Py_interp_cached_objects +paramspec_typing_prepare_subst Objects/clinic/typevarobject.c.h /^paramspec_typing_prepare_subst(paramspecobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +paramspec_typing_prepare_subst_impl Objects/typevarobject.c /^paramspec_typing_prepare_subst_impl(paramspecobject *self, PyObject *alias,$/;" f file: +paramspec_typing_subst Objects/clinic/typevarobject.c.h /^paramspec_typing_subst(paramspecobject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +paramspec_typing_subst_impl Objects/typevarobject.c /^paramspec_typing_subst_impl(paramspecobject *self, PyObject *arg)$/;" f file: +paramspecargs_methods Objects/typevarobject.c /^static PyMethodDef paramspecargs_methods[] = {$/;" v file: +paramspecargs_mro_entries Objects/typevarobject.c /^paramspecargs_mro_entries(PyObject *self, PyObject *args)$/;" f file: +paramspecargs_new Objects/clinic/typevarobject.c.h /^paramspecargs_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +paramspecargs_new_impl Objects/typevarobject.c /^paramspecargs_new_impl(PyTypeObject *type, PyObject *origin)$/;" f file: +paramspecargs_repr Objects/typevarobject.c /^paramspecargs_repr(PyObject *self)$/;" f file: +paramspecargs_slots Objects/typevarobject.c /^static PyType_Slot paramspecargs_slots[] = {$/;" v file: +paramspecargs_spec Objects/typevarobject.c /^PyType_Spec paramspecargs_spec = {$/;" v +paramspecargs_type Include/internal/pycore_global_objects.h /^ PyTypeObject *paramspecargs_type;$/;" m struct:_Py_interp_cached_objects +paramspecattr_clear Objects/typevarobject.c /^paramspecattr_clear(paramspecattrobject *self)$/;" f file: +paramspecattr_dealloc Objects/typevarobject.c /^paramspecattr_dealloc(PyObject *self)$/;" f file: +paramspecattr_members Objects/typevarobject.c /^static PyMemberDef paramspecattr_members[] = {$/;" v file: +paramspecattr_new Objects/typevarobject.c /^paramspecattr_new(PyTypeObject *tp, PyObject *origin)$/;" f file: +paramspecattr_richcompare Objects/typevarobject.c /^paramspecattr_richcompare(PyObject *a, PyObject *b, int op)$/;" f file: +paramspecattr_traverse Objects/typevarobject.c /^paramspecattr_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +paramspecattrobject Objects/typevarobject.c /^} paramspecattrobject;$/;" t typeref:struct:__anon717 file: +paramspeckwargs_methods Objects/typevarobject.c /^static PyMethodDef paramspeckwargs_methods[] = {$/;" v file: +paramspeckwargs_mro_entries Objects/typevarobject.c /^paramspeckwargs_mro_entries(PyObject *self, PyObject *args)$/;" f file: +paramspeckwargs_new Objects/clinic/typevarobject.c.h /^paramspeckwargs_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +paramspeckwargs_new_impl Objects/typevarobject.c /^paramspeckwargs_new_impl(PyTypeObject *type, PyObject *origin)$/;" f file: +paramspeckwargs_repr Objects/typevarobject.c /^paramspeckwargs_repr(PyObject *self)$/;" f file: +paramspeckwargs_slots Objects/typevarobject.c /^static PyType_Slot paramspeckwargs_slots[] = {$/;" v file: +paramspeckwargs_spec Objects/typevarobject.c /^PyType_Spec paramspeckwargs_spec = {$/;" v +paramspeckwargs_type Include/internal/pycore_global_objects.h /^ PyTypeObject *paramspeckwargs_type;$/;" m struct:_Py_interp_cached_objects +paramspecobject Objects/typevarobject.c /^} paramspecobject;$/;" t typeref:struct:__anon715 file: +paramstyle Lib/sqlite3/dbapi2.py /^paramstyle = "qmark"$/;" v +pardir Lib/ntpath.py /^pardir = '..'$/;" v +pardir Lib/posixpath.py /^pardir = '..'$/;" v +paren_closed_event Lib/idlelib/parenmatch.py /^ def paren_closed_event(self, event):$/;" m class:ParenMatch +parencolstack Parser/tokenizer.h /^ int parencolstack[MAXLEVEL];$/;" m struct:tok_state +parend_expr Lib/lib2to3/fixes/fix_print.py /^parend_expr = patcomp.compile_pattern($/;" v +parenlinenostack Parser/tokenizer.h /^ int parenlinenostack[MAXLEVEL];$/;" m struct:tok_state +parens Lib/idlelib/idle_test/test_calltip.py /^ def parens(self):$/;" f function:CalltipTest.test_repeated_parens +parenstack Parser/tokenizer.h /^ char parenstack[MAXLEVEL];$/;" m struct:tok_state +parent Lib/importlib/_bootstrap.py /^ def parent(self):$/;" m class:ModuleSpec +parent Lib/importlib/metadata/_meta.py /^ def parent(self) -> _T:$/;" m class:SimplePath +parent Lib/lib2to3/pytree.py /^ parent = None # Parent node pointer, or None$/;" v class:Base +parent Lib/pathlib.py /^ def parent(self):$/;" m class:PurePath +parent Lib/tkinter/ttk.py /^ def parent(self, item):$/;" m class:Treeview +parent Lib/zipfile/_path/__init__.py /^ def parent(self):$/;" m class:Path +parent Modules/_elementtree.c /^ ElementObject *parent;$/;" m struct:ParentLocator_t file: +parent Modules/expat/xmlparse.c /^ struct tag *parent; \/* parent of this element *\/$/;" m struct:tag typeref:struct:tag::tag file: +parent Modules/itertoolsmodule.c /^ PyObject *parent;$/;" m struct:__anon404 file: +parent PC/launcher2.c /^ struct EnvironmentInfo *parent;$/;" m struct:EnvironmentInfo typeref:struct:EnvironmentInfo::EnvironmentInfo file: +parentClass Lib/test/test_xmlrpc.py /^ parentClass = xmlrpc.server.SimpleXMLRPCRequestHandler$/;" v class:BaseKeepaliveServerTestCase.RequestHandler +parentClass Lib/test/test_xmlrpc.py /^ parentClass = xmlrpc.server.SimpleXMLRPCRequestHandler$/;" v class:GzipServerTestCase.RequestHandler +parentNode Lib/xml/dom/minidom.py /^ parentNode = None$/;" v class:Document +parentNode Lib/xml/dom/minidom.py /^ parentNode = None$/;" v class:DocumentFragment +parentNode Lib/xml/dom/minidom.py /^ parentNode = None$/;" v class:Node +parent_map Lib/xml/etree/ElementPath.py /^ parent_map = None$/;" v class:_SelectorContext +parent_process Lib/multiprocessing/context.py /^ parent_process = staticmethod(process.parent_process)$/;" v class:BaseContext +parent_process Lib/multiprocessing/process.py /^def parent_process():$/;" f +parent_process Lib/test/_test_multiprocessing.py /^ parent_process = staticmethod(multiprocessing.parent_process)$/;" v class:ProcessesMixin +parent_stack Modules/_elementtree.c /^ ParentLocator *parent_stack;$/;" m struct:__anon384 file: +parent_stack_push_new Modules/_elementtree.c /^parent_stack_push_new(ElementIterObject *it, ElementObject *parent)$/;" f file: +parent_stack_size Modules/_elementtree.c /^ Py_ssize_t parent_stack_size;$/;" m struct:__anon384 file: +parent_stack_used Modules/_elementtree.c /^ Py_ssize_t parent_stack_used;$/;" m struct:__anon384 file: +parenthesize Lib/lib2to3/fixer_util.py /^def parenthesize(node):$/;" f +parenthesized_lambda Lib/test/inspect_fodder2.py /^parenthesized_lambda = ($/;" v +parenthesized_lambda2 Lib/test/inspect_fodder2.py /^parenthesized_lambda2 = [$/;" v +parenthesized_lambda3 Lib/test/inspect_fodder2.py /^parenthesized_lambda3 = {0:$/;" v +parents Lib/collections/__init__.py /^ def parents(self): # like Django's Context.pop()$/;" m class:ChainMap +parents Lib/pathlib.py /^ def parents(self):$/;" m class:PurePath +paretovariate Lib/random.py /^ def paretovariate(self, alpha):$/;" m class:Random +paretovariate Lib/random.py /^paretovariate = _inst.paretovariate$/;" v +parrot Lib/test/test_lib2to3/data/fixers/parrot_example.py /^def parrot():$/;" f +parse Lib/ast.py /^def parse(source, filename='', mode='exec', *,$/;" f +parse Lib/cgi.py /^def parse(fp=None, environ=os.environ, keep_blank_values=0,$/;" f +parse Lib/doctest.py /^ def parse(self, string, name=''):$/;" m class:DocTestParser +parse Lib/email/headerregistry.py /^ def parse(cls, value, kwds):$/;" m class:AddressHeader +parse Lib/email/headerregistry.py /^ def parse(cls, value, kwds):$/;" m class:ContentTransferEncodingHeader +parse Lib/email/headerregistry.py /^ def parse(cls, value, kwds):$/;" m class:DateHeader +parse Lib/email/headerregistry.py /^ def parse(cls, value, kwds):$/;" m class:MIMEVersionHeader +parse Lib/email/headerregistry.py /^ def parse(cls, value, kwds):$/;" m class:MessageIDHeader +parse Lib/email/headerregistry.py /^ def parse(cls, value, kwds):$/;" m class:ParameterizedMIMEHeader +parse Lib/email/headerregistry.py /^ def parse(cls, value, kwds):$/;" m class:UnstructuredHeader +parse Lib/email/parser.py /^ def parse(self, fp, headersonly=False):$/;" m class:BytesParser +parse Lib/email/parser.py /^ def parse(self, fp, headersonly=False):$/;" m class:Parser +parse Lib/email/parser.py /^ def parse(self, fp, headersonly=True):$/;" m class:BytesHeaderParser +parse Lib/email/parser.py /^ def parse(self, fp, headersonly=True):$/;" m class:HeaderParser +parse Lib/importlib/metadata/_collections.py /^ def parse(cls, text):$/;" m class:Pair +parse Lib/lib2to3/pgen2/pgen.py /^ def parse(self):$/;" m class:ParserGenerator +parse Lib/plistlib.py /^ def parse(self, fileobj):$/;" m class:_PlistParser +parse Lib/plistlib.py /^ def parse(self, fp):$/;" m class:_BinaryPlistParser +parse Lib/re/_parser.py /^def parse(str, flags=0, state=None):$/;" f +parse Lib/string.py /^ def parse(self, format_string):$/;" m class:Formatter +parse Lib/test/test_clinic.py /^ def parse(self, block):$/;" m class:CopyParser +parse Lib/test/test_clinic.py /^ def parse(self, block):$/;" m class:InertParser +parse Lib/test/test_clinic.py /^ def parse(self, text):$/;" m class:ClinicParserTest +parse Lib/test/test_email/test_email.py /^ def parse(self, chunks):$/;" m class:TestFeedParsers +parse Lib/test/test_email/test_headerregistry.py /^ parse = headerregistry.UnstructuredHeader.parse$/;" v class:TestHeaderRegistry.FooDefault +parse Lib/test/test_email/test_policy.py /^ parse = headerregistry.UnstructuredHeader.parse$/;" v class:PolicyAPITests.Foo +parse Lib/test/test_import/__init__.py /^ def parse(cls, text):$/;" m class:ModuleSnapshot +parse Lib/test/test_import/__init__.py /^ def parse(cls, text):$/;" m class:TestSinglePhaseSnapshot +parse Lib/test/test_lib2to3/test_util.py /^def parse(code, strip_levels=0):$/;" f +parse Lib/test/test_pulldom.py /^ def parse(self, _):$/;" m class:SAX2DOMExerciser +parse Lib/test/test_pulldom.py /^ def parse(self, _):$/;" m class:SAXExerciser +parse Lib/test/test_string.py /^ def parse(self, format_string):$/;" m class:ModuleTest.test_override_parse.BarFormatter +parse Lib/test/test_type_comments.py /^ def parse(self, source, feature_version=highest):$/;" m class:TypeCommentTests +parse Lib/test/test_unicode.py /^ def parse(format):$/;" f function:StringModuleTest.test_formatter_parser +parse Lib/urllib/robotparser.py /^ def parse(self, lines):$/;" m class:RobotFileParser +parse Lib/xml/dom/expatbuilder.py /^def parse(file, namespaces=True):$/;" f +parse Lib/xml/dom/minidom.py /^def parse(file, parser=None, bufsize=None):$/;" f +parse Lib/xml/dom/pulldom.py /^def parse(stream_or_string, parser=None, bufsize=None):$/;" f +parse Lib/xml/dom/xmlbuilder.py /^ def parse(self, input):$/;" m class:DOMBuilder +parse Lib/xml/etree/ElementTree.py /^ def parse(self, source, parser=None):$/;" m class:ElementTree +parse Lib/xml/etree/ElementTree.py /^def parse(source, parser=None):$/;" f +parse Lib/xml/sax/__init__.py /^def parse(source, handler, errorHandler=ErrorHandler()):$/;" f +parse Lib/xml/sax/expatreader.py /^ def parse(self, source):$/;" m class:ExpatParser +parse Lib/xml/sax/saxutils.py /^ def parse(self, source):$/;" m class:XMLFilterBase +parse Lib/xml/sax/xmlreader.py /^ def parse(self, source):$/;" m class:IncrementalParser +parse Lib/xml/sax/xmlreader.py /^ def parse(self, source):$/;" m class:XMLReader +parse Parser/asdl.py /^ def parse(self, buf):$/;" m class:ASDLParser +parse Parser/asdl.py /^def parse(filename):$/;" f +parse Tools/c-analyzer/c_common/tables.py /^ def parse(cls, specstr):$/;" m class:ColumnSpec +parse Tools/c-analyzer/c_parser/parser/__init__.py /^def parse(srclines, **srckwargs):$/;" f +parse Tools/cases_generator/generate_cases.py /^ def parse(self) -> None:$/;" m class:Analyzer +parse Tools/clinic/clinic.py /^ def parse(self, block: Block) -> None:$/;" m class:DSLParser +parse Tools/clinic/clinic.py /^ def parse(self, block: Block) -> None:$/;" m class:PythonParser +parse Tools/clinic/clinic.py /^ def parse(self, input):$/;" m class:Clinic +parse Tools/i18n/makelocalealias.py /^def parse(filename):$/;" f +parse150 Lib/ftplib.py /^def parse150(resp):$/;" f +parse227 Lib/ftplib.py /^def parse227(resp):$/;" f +parse229 Lib/ftplib.py /^def parse229(resp, peer):$/;" f +parse257 Lib/ftplib.py /^def parse257(resp):$/;" f +parseArgs Lib/test/test_unittest/test_program.py /^ def parseArgs(self, *args, **kw): pass$/;" m class:TestCommandLineArgs.testWarning.FakeTP +parseArgs Lib/unittest/main.py /^ def parseArgs(self, argv):$/;" m class:TestProgram +parseCommandLine PC/launcher2.c /^parseCommandLine(SearchInfo *search)$/;" f +parseFile Lib/xml/dom/expatbuilder.py /^ def parseFile(self, file):$/;" m class:ExpatBuilder +parseFile Lib/xml/dom/expatbuilder.py /^ def parseFile(self, file):$/;" m class:FragmentBuilder +parseFile Lib/xml/dom/expatbuilder.py /^ def parseFile(self, file):$/;" m class:InternalSubsetExtractor +parseFragment Lib/xml/dom/expatbuilder.py /^def parseFragment(file, context, namespaces=True):$/;" f +parseFragmentString Lib/xml/dom/expatbuilder.py /^def parseFragmentString(string, context, namespaces=True):$/;" f +parseKeyUsage Modules/_ssl.c /^parseKeyUsage(PCCERT_CONTEXT pCertCtx, DWORD flags)$/;" f file: +parseOptions Mac/BuildScript/build-installer.py /^def parseOptions(args=None):$/;" f +parsePseudoAttribute Modules/expat/xmltok.c /^parsePseudoAttribute(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +parseString Lib/xml/dom/expatbuilder.py /^ def parseString(self, string):$/;" m class:ExpatBuilder +parseString Lib/xml/dom/expatbuilder.py /^ def parseString(self, string):$/;" m class:FragmentBuilder +parseString Lib/xml/dom/expatbuilder.py /^ def parseString(self, string):$/;" m class:InternalSubsetExtractor +parseString Lib/xml/dom/expatbuilder.py /^def parseString(string, namespaces=True):$/;" f +parseString Lib/xml/dom/minidom.py /^def parseString(string, parser=None):$/;" f +parseString Lib/xml/dom/pulldom.py /^def parseString(string, parser=None):$/;" f +parseString Lib/xml/sax/__init__.py /^def parseString(string, handler, errorHandler=ErrorHandler()):$/;" f +parseURI Lib/xml/dom/xmlbuilder.py /^ def parseURI(self, uri):$/;" m class:DOMBuilder +parseWithContext Lib/xml/dom/xmlbuilder.py /^ def parseWithContext(self, input, cnode, action):$/;" m class:DOMBuilder +parse_abbr Modules/_zoneinfo.c /^parse_abbr(const char *const p, PyObject **abbr)$/;" f file: +parse_add_char Modules/_csv.c /^parse_add_char(ReaderObj *self, _csvstate *module_state, Py_UCS4 c)$/;" f file: +parse_address Modules/overlapped.c /^parse_address(PyObject *obj, SOCKADDR *Address, int Length)$/;" f file: +parse_all Lib/test/test_type_comments.py /^ def parse_all(self, source, minver=lowest, maxver=highest, expected_regex=""):$/;" m class:TypeCommentTests +parse_alt Lib/lib2to3/pgen2/pgen.py /^ def parse_alt(self):$/;" m class:ParserGenerator +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname, displayname):$/;" m class:CConverter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, argnum: str) -> str:$/;" f +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:PyByteArrayObject_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:PyBytesObject_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:Py_buffer_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:Py_complex_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:Py_ssize_t_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:bool_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:char_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:double_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:float_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:int_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:long_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:long_long_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:short_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:size_t_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:str_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:unicode_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:unsigned_char_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:unsigned_int_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:unsigned_long_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:unsigned_long_long_converter +parse_arg Tools/clinic/clinic.py /^ def parse_arg(self, argname: str, displayname: str) -> str:$/;" m class:unsigned_short_converter +parse_arglist Modules/posixmodule.c /^parse_arglist(PyObject* argv, Py_ssize_t *argc)$/;" f file: +parse_args Lib/argparse.py /^ def parse_args(self, args=None, namespace=None):$/;" m class:ArgumentParser +parse_args Lib/optparse.py /^ def parse_args(self, args=None, values=None):$/;" m class:OptionParser +parse_args Lib/test/bisect_cmd.py /^def parse_args():$/;" f +parse_args Lib/test/libregrtest/main.py /^ def parse_args(self, kwargs):$/;" m class:Regrtest +parse_args Lib/test/test_argparse.py /^ def parse_args(self, *args, **kwargs):$/;" m class:ErrorRaisingArgumentParser +parse_args PCbuild/get_external.py /^def parse_args():$/;" f +parse_args Tools/c-analyzer/c_analyzer/__main__.py /^def parse_args(argv=sys.argv[1:], prog=sys.argv[0], *, subset=None):$/;" f +parse_args Tools/c-analyzer/c_parser/__main__.py /^def parse_args(argv=sys.argv[1:], prog=sys.argv[0], *, subset='parse'):$/;" f +parse_args Tools/c-analyzer/c_parser/preprocessor/__main__.py /^def parse_args(argv=sys.argv[1:], prog=sys.argv[0], *,$/;" f +parse_args Tools/c-analyzer/check-c-globals.py /^def parse_args(argv=sys.argv[1:]):$/;" f +parse_args Tools/c-analyzer/cpython/__main__.py /^def parse_args(argv=sys.argv[1:], prog=None, *, subset=None):$/;" f +parse_args Tools/c-analyzer/table-file.py /^def parse_args(argv=None, prog=None):$/;" f +parse_args_finds Objects/stringlib/find.h /^STRINGLIB(parse_args_finds)(const char * function_name, PyObject *args,$/;" f +parse_args_finds_byte Objects/bytes_methods.c /^parse_args_finds_byte(const char *function_name, PyObject *args,$/;" f +parse_args_finds_unicode Objects/unicodeobject.c /^parse_args_finds_unicode(const char * function_name, PyObject *args,$/;" f file: +parse_argument Tools/clinic/clinic.py /^ def parse_argument(self, list):$/;" m class:CConverter +parse_argv Include/cpython/initconfig.h /^ int parse_argv;$/;" m struct:PyConfig +parse_argv Include/cpython/initconfig.h /^ int parse_argv;$/;" m struct:PyPreConfig +parse_argv Lib/test/test_embed.py /^ parse_argv=1,$/;" v class:InitConfigTests +parse_argv Lib/test/test_embed.py /^ parse_argv=2,$/;" v class:InitConfigTests +parse_array Lib/tomllib/_parser.py /^def parse_array(src: str, pos: Pos, parse_float: ParseFloat) -> tuple[Pos, list]:$/;" f +parse_atom Lib/lib2to3/pgen2/pgen.py /^ def parse_atom(self):$/;" m class:ParserGenerator +parse_basic_str Lib/tomllib/_parser.py /^def parse_basic_str(src: str, pos: Pos, *, multiline: bool) -> tuple[Pos, str]:$/;" f +parse_basic_str_escape Lib/tomllib/_parser.py /^def parse_basic_str_escape($/;" f +parse_basic_str_escape_multiline Lib/tomllib/_parser.py /^def parse_basic_str_escape_multiline(src: str, pos: Pos) -> tuple[Pos, str]:$/;" f +parse_block Lib/lib2to3/refactor.py /^ def parse_block(self, block, lineno, indent):$/;" m class:RefactoringTool +parse_body Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^ def parse_body(source):$/;" f function:_parse_struct_next +parse_body Tools/c-analyzer/c_parser/parser/_func_body.py /^ def parse_body(source):$/;" f function:_parse_next_local_static +parse_body Tools/c-analyzer/c_parser/parser/_global.py /^ def parse_body(source):$/;" f function:_parse_next.parse_body +parse_body Tools/c-analyzer/c_parser/parser/_global.py /^ def parse_body(source):$/;" f function:_parse_next +parse_bogus_comment Lib/html/parser.py /^ def parse_bogus_comment(self, i, report=1):$/;" m class:HTMLParser +parse_by_reference Tools/clinic/clinic.py /^ parse_by_reference = True$/;" v class:CConverter +parse_c Tools/peg_generator/scripts/joinstats.py /^parse_c = os.path.join(reporoot, "peg_extension", "parse.c")$/;" v +parse_clinic_block Tools/clinic/clinic.py /^ def parse_clinic_block(self, dsl_name):$/;" m class:BlockParser +parse_comment Lib/_markupbase.py /^ def parse_comment(self, i, report=1):$/;" m class:ParserBase +parse_config_h Lib/sysconfig.py /^def parse_config_h(fp, vars=None):$/;" f +parse_constant Modules/_json.c /^ PyObject *parse_constant;$/;" m struct:_PyScannerObject file: +parse_content_disposition_header Lib/email/_header_value_parser.py /^def parse_content_disposition_header(value):$/;" f +parse_content_transfer_encoding_header Lib/email/_header_value_parser.py /^def parse_content_transfer_encoding_header(value):$/;" f +parse_content_type_header Lib/email/_header_value_parser.py /^def parse_content_type_header(value):$/;" f +parse_converter Tools/clinic/clinic.py /^ def parse_converter($/;" m class:DSLParser +parse_date Lib/test/test_http_cookiejar.py /^ def parse_date(text):$/;" f function:DateTimeTests.test_http2time +parse_date Lib/test/test_http_cookiejar.py /^ def parse_date(text):$/;" f function:DateTimeTests.test_iso2time +parse_datum Modules/_gdbmmodule.c /^parse_datum(PyObject *o, datum *d, const char *failmsg)$/;" f file: +parse_declaration Lib/_markupbase.py /^ def parse_declaration(self, i):$/;" m class:ParserBase +parse_digits Modules/_datetimemodule.c /^parse_digits(const char *ptr, int *var, size_t num_digits)$/;" f file: +parse_directory Tools/peg_generator/scripts/test_parse_directory.py /^def parse_directory(directory: str, verbose: bool, excluded_files: List[str], short: bool) -> int:$/;" f +parse_dsp Tools/freeze/checkextensions_win32.py /^def parse_dsp(dsp):$/;" f +parse_emconfig Tools/wasm/wasm_build.py /^def parse_emconfig($/;" f +parse_endtag Lib/html/parser.py /^ def parse_endtag(self, i):$/;" m class:HTMLParser +parse_entries Tools/c-analyzer/c_common/strutil.py /^def parse_entries(entries, *, ignoresep=None):$/;" f +parse_enum_body Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^def parse_enum_body(source, _anon_name, _parent):$/;" f +parse_envlist Modules/posixmodule.c /^parse_envlist(PyObject* env, Py_ssize_t *envc_ptr)$/;" f file: +parse_err_h Tools/ssl/make_ssl_data.py /^def parse_err_h(args):$/;" f +parse_error Lib/test/test_configparser.py /^ def parse_error(self, cf, exc, src):$/;" f +parse_executed_tests Lib/test/test_regrtest.py /^ def parse_executed_tests(self, output):$/;" m class:BaseTestCase +parse_extra_reasons Tools/ssl/make_ssl_data.py /^def parse_extra_reasons(args):$/;" f +parse_field Objects/stringlib/unicode_format.h /^parse_field(SubString *str, SubString *field_name, SubString *format_spec,$/;" f +parse_file Lib/lib2to3/pgen2/driver.py /^ def parse_file(self, filename, encoding=None, debug=False):$/;" m class:Driver +parse_file Lib/test/test_lib2to3/test_parser.py /^ def parse_file(self, filepath):$/;" m class:TestParserIdempotency +parse_file Tools/c-analyzer/c_parser/__init__.py /^def parse_file(filename, *,$/;" f +parse_file Tools/c-analyzer/cpython/_parser.py /^def parse_file(filename, *,$/;" f +parse_file Tools/cases_generator/generate_cases.py /^ def parse_file(self, filename: str, instrs_idx: dict[str, int]) -> None:$/;" m class:Analyzer +parse_file Tools/clinic/clinic.py /^def parse_file($/;" f +parse_file Tools/peg_generator/peg_extension/peg_extension.c /^parse_file(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +parse_file Tools/peg_generator/scripts/test_parse_directory.py /^def parse_file(source: str, file: str) -> Tuple[Any, float]:$/;" f +parse_file_actions Modules/posixmodule.c /^parse_file_actions(PyObject *file_actions,$/;" f file: +parse_files Tools/c-analyzer/c_parser/__init__.py /^def parse_files(filenames, *,$/;" f +parse_files Tools/c-analyzer/cpython/_parser.py /^def parse_files(filenames=None, *,$/;" f +parse_filter_chain_spec Modules/_lzmamodule.c /^parse_filter_chain_spec(_lzma_state *state, lzma_filter filters[], PyObject *filterspecs)$/;" f file: +parse_filter_spec_bcj Modules/_lzmamodule.c /^parse_filter_spec_bcj(_lzma_state *state, PyObject *spec)$/;" f file: +parse_filter_spec_delta Modules/_lzmamodule.c /^parse_filter_spec_delta(_lzma_state *state, PyObject *spec)$/;" f file: +parse_filter_spec_lzma Modules/_lzmamodule.c /^parse_filter_spec_lzma(_lzma_state *state, PyObject *spec)$/;" f file: +parse_float Modules/_json.c /^ PyObject *parse_float;$/;" m struct:_PyScannerObject file: +parse_format Python/ast_opt.c /^parse_format(PyObject *fmt, Py_ssize_t *ppos, expr_ty arg, PyArena *arena)$/;" f file: +parse_format Python/getargs.c /^parse_format(const char *format, int total, int npos,$/;" f file: +parse_frozen_specs Tools/build/freeze_modules.py /^def parse_frozen_specs():$/;" f +parse_func_type_input Lib/test/test_type_comments.py /^ def parse_func_type_input(source):$/;" f function:TypeCommentTests.test_func_type_input +parse_function Lib/test/test_clinic.py /^ def parse_function(self, text, signatures_in_block=2, function_index=1):$/;" m class:ClinicParserTest +parse_function_body Tools/c-analyzer/c_parser/parser/_func_body.py /^def parse_function_body(name, text, resolve, source, anon_name, parent):$/;" f +parse_function_body Tools/c-analyzer/c_parser/parser/_func_body.py /^def parse_function_body(source, name, anon_name):$/;" f +parse_function_should_fail Lib/test/test_clinic.py /^ def parse_function_should_fail(self, _input):$/;" m class:_ParserBase +parse_function_should_fail Lib/test/test_clinic.py /^ def parse_function_should_fail(self, s):$/;" m class:ClinicParserTest +parse_function_statics Tools/c-analyzer/c_parser/parser/_func_body.py /^def parse_function_statics(source, func, anon_name):$/;" f +parse_gb18030map Tools/unicode/genmap_schinese.py /^def parse_gb18030map(fo):$/;" f +parse_glibc_supported Tools/i18n/makelocalealias.py /^def parse_glibc_supported(filename):$/;" f +parse_globals Tools/c-analyzer/c_parser/parser/_global.py /^def parse_globals(source, anon_name):$/;" f +parse_graminit_c Lib/lib2to3/pgen2/conv.py /^ def parse_graminit_c(self, filename):$/;" m class:Converter +parse_graminit_h Lib/lib2to3/pgen2/conv.py /^ def parse_graminit_h(self, filename):$/;" m class:Converter +parse_grow_buff Modules/_csv.c /^parse_grow_buff(ReaderObj *self)$/;" f file: +parse_header Lib/cgi.py /^def parse_header(line):$/;" f +parse_headers Lib/http/client.py /^def parse_headers(fp, _class=HTTPMessage):$/;" f +parse_hex_char Lib/tomllib/_parser.py /^def parse_hex_char(src: str, pos: Pos, hex_len: int) -> tuple[Pos, str]:$/;" f +parse_hh_mm_ss_ff Modules/_datetimemodule.c /^parse_hh_mm_ss_ff(const char *tstr, const char *tstr_end, int *hour,$/;" f file: +parse_hkscs_map Tools/unicode/genmap_tchinese.py /^def parse_hkscs_map(fo):$/;" f +parse_html_declaration Lib/html/parser.py /^ def parse_html_declaration(self, i):$/;" m class:HTMLParser +parse_http_list Lib/urllib/request.py /^def parse_http_list(s):$/;" f +parse_ignore_dir Lib/trace.py /^ def parse_ignore_dir(s):$/;" f function:main +parse_inline_table Lib/tomllib/_parser.py /^def parse_inline_table(src: str, pos: Pos, parse_float: ParseFloat) -> tuple[Pos, dict]:$/;" f +parse_int Modules/_json.c /^ PyObject *parse_int;$/;" m struct:_PyScannerObject file: +parse_intermixed_args Lib/argparse.py /^ def parse_intermixed_args(self, args=None, namespace=None):$/;" m class:ArgumentParser +parse_internal_render_format_spec Python/formatter_unicode.c /^parse_internal_render_format_spec(PyObject *obj,$/;" f file: +parse_isoformat_date Modules/_datetimemodule.c /^parse_isoformat_date(const char *dtstr, const size_t len, int *year, int *month, int *day)$/;" f file: +parse_isoformat_time Modules/_datetimemodule.c /^parse_isoformat_time(const char *dtstr, size_t dtlen, int *hour, int *minute,$/;" f file: +parse_item Lib/lib2to3/pgen2/pgen.py /^ def parse_item(self):$/;" m class:ParserGenerator +parse_keqv_list Lib/urllib/request.py /^def parse_keqv_list(l):$/;" f +parse_key Lib/tomllib/_parser.py /^def parse_key(src: str, pos: Pos) -> tuple[Pos, Key]:$/;" f +parse_key_part Lib/tomllib/_parser.py /^def parse_key_part(src: str, pos: Pos) -> tuple[Pos, str]:$/;" f +parse_key_value_pair Lib/tomllib/_parser.py /^def parse_key_value_pair($/;" f +parse_kinds Tools/scripts/summarize_stats.py /^def parse_kinds(spec_src, prefix="SPEC_FAIL"):$/;" f +parse_known_args Lib/argparse.py /^ def parse_known_args(self, args=None, namespace=None):$/;" m class:ArgumentParser +parse_known_intermixed_args Lib/argparse.py /^ def parse_known_intermixed_args(self, args=None, namespace=None):$/;" m class:ArgumentParser +parse_line Tools/clinic/clinic.py /^ def parse_line(self, line):$/;" m class:CLanguage +parse_line Tools/clinic/clinic.py /^ def parse_line(self, line):$/;" m class:Language +parse_literal Python/ast_opt.c /^parse_literal(PyObject *fmt, Py_ssize_t *ppos, PyArena *arena)$/;" f file: +parse_literal_str Lib/tomllib/_parser.py /^def parse_literal_str(src: str, pos: Pos) -> tuple[Pos, str]:$/;" f +parse_location_table Lib/test/test_code.py /^def parse_location_table(code):$/;" f +parse_location_table Tools/gdb/libpython.py /^def parse_location_table(firstlineno, linetable):$/;" f +parse_manifest Tools/build/stable_abi.py /^def parse_manifest(file):$/;" f +parse_marked_section Lib/_markupbase.py /^ def parse_marked_section(self, i, report=1):$/;" m class:ParserBase +parse_markers Tools/c-analyzer/c_common/tables.py /^def parse_markers(markers, default=None):$/;" f +parse_message_id Lib/email/_header_value_parser.py /^def parse_message_id(value):$/;" f +parse_methods Lib/test/test_regrtest.py /^ def parse_methods(self, output):$/;" m class:ArgsTestCase +parse_mime_parameters Lib/email/_header_value_parser.py /^def parse_mime_parameters(value):$/;" f +parse_mime_version Lib/email/_header_value_parser.py /^def parse_mime_version(value):$/;" f +parse_mtestfile Lib/test/test_math.py /^def parse_mtestfile(fname):$/;" f +parse_multiline_str Lib/tomllib/_parser.py /^def parse_multiline_str(src: str, pos: Pos, *, literal: bool) -> tuple[Pos, str]:$/;" f +parse_multipart Lib/cgi.py /^def parse_multipart(fp, pdict, encoding="utf-8", errors="replace", separator='&'):$/;" f +parse_name Lib/inspect.py /^ def parse_name(node):$/;" f function:_signature_fromstr +parse_ns_headers Lib/http/cookiejar.py /^def parse_ns_headers(ns_headers):$/;" f +parse_number Python/formatter_unicode.c /^parse_number(PyObject *s, Py_ssize_t pos, Py_ssize_t end,$/;" f file: +parse_one_line_basic_str Lib/tomllib/_parser.py /^def parse_one_line_basic_str(src: str, pos: Pos) -> tuple[Pos, str]:$/;" f +parse_opcode_signature Doc/tools/extensions/pyspecific.py /^def parse_opcode_signature(env, sig, signode):$/;" f +parse_openssl_error_text Tools/ssl/make_ssl_data.py /^def parse_openssl_error_text(args):$/;" f +parse_openssl_version Modules/_ssl.c /^parse_openssl_version(unsigned long libver,$/;" f file: +parse_pdb_command Doc/tools/extensions/pyspecific.py /^def parse_pdb_command(env, sig, signode):$/;" f +parse_pi Lib/html/parser.py /^ def parse_pi(self, i):$/;" m class:HTMLParser +parse_platforms Doc/tools/extensions/pyspecific.py /^ def parse_platforms(self):$/;" m class:Availability +parse_posix_spawn_flags Modules/posixmodule.c /^parse_posix_spawn_flags(PyObject *module, const char *func_name, PyObject *setpgroup,$/;" f file: +parse_process_char Modules/_csv.c /^parse_process_char(ReaderObj *self, _csvstate *module_state, Py_UCS4 c)$/;" f file: +parse_qs Lib/urllib/parse.py /^def parse_qs(qs, keep_blank_values=False, strict_parsing=False,$/;" f +parse_qs_test_cases Lib/test/test_urlparse.py /^parse_qs_test_cases = [$/;" v +parse_qsl Lib/urllib/parse.py /^def parse_qsl(qs, keep_blank_values=False, strict_parsing=False,$/;" f +parse_qsl_test_cases Lib/test/test_urlparse.py /^parse_qsl_test_cases = [$/;" v +parse_random_seed Lib/test/test_regrtest.py /^ def parse_random_seed(self, output):$/;" m class:BaseTestCase +parse_request Lib/http/server.py /^ def parse_request(self):$/;" m class:BaseHTTPRequestHandler +parse_reset Modules/_csv.c /^parse_reset(ReaderObj *self)$/;" f file: +parse_response Lib/test/test_xmlrpc.py /^ def parse_response(self, response):$/;" m class:GzipServerTestCase.Transport +parse_response Lib/xmlrpc/client.py /^ def parse_response(self, response):$/;" m class:Transport +parse_rhs Lib/lib2to3/pgen2/pgen.py /^ def parse_rhs(self):$/;" m class:ParserGenerator +parse_row Tools/c-analyzer/c_common/tables.py /^def parse_row(line, sep, *, ncols=None, default=NOT_SET):$/;" f +parse_save_field Modules/_csv.c /^parse_save_field(ReaderObj *self)$/;" f file: +parse_setup_file Tools/build/check_extension_modules.py /^ def parse_setup_file(self, setup_file: pathlib.Path) -> Iterable[ModuleInfo]:$/;" m class:ModuleChecker +parse_shebang PC/launcher.c /^parse_shebang(wchar_t * shebang_line, int nchars, wchar_t ** command,$/;" f file: +parse_signature Tools/c-analyzer/c_parser/__init__.py /^def parse_signature(text):$/;" f +parse_special_symbol Tools/clinic/clinic.py /^ def parse_special_symbol(self, symbol):$/;" m class:DSLParser +parse_starttag Lib/html/parser.py /^ def parse_starttag(self, i):$/;" m class:HTMLParser +parse_stream Lib/lib2to3/pgen2/driver.py /^ def parse_stream(self, stream, debug=False):$/;" m class:Driver +parse_stream_raw Lib/lib2to3/pgen2/driver.py /^ def parse_stream_raw(self, stream, debug=False):$/;" m class:Driver +parse_strict_test_cases Lib/test/test_cgi.py /^parse_strict_test_cases = [$/;" v +parse_string Lib/lib2to3/pgen2/driver.py /^ def parse_string(self, text, debug=False):$/;" m class:Driver +parse_string Lib/test/test_lib2to3/support.py /^def parse_string(string):$/;" f +parse_string Tools/peg_generator/peg_extension/peg_extension.c /^parse_string(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +parse_string Tools/peg_generator/pegen/testutil.py /^def parse_string($/;" f +parse_struct_body Tools/c-analyzer/c_parser/parser/_compound_decl_body.py /^def parse_struct_body(source, anon_name, parent):$/;" f +parse_syntax_error Python/pythonrun.c /^parse_syntax_error(PyObject *err, PyObject **message, PyObject **filename,$/;" f file: +parse_table Tools/c-analyzer/c_common/tables.py /^def parse_table(entries, sep, header=None, rawsep=None, *,$/;" f +parse_table_lines Tools/c-analyzer/table-file.py /^def parse_table_lines(lines):$/;" f +parse_template Lib/re/_parser.py /^def parse_template(source, pattern):$/;" f +parse_testfile Lib/test/test_math.py /^def parse_testfile(fname):$/;" f +parse_time_t_args Modules/timemodule.c /^parse_time_t_args(PyObject *args, const char *format, time_t *pwhen)$/;" f file: +parse_tokens Lib/lib2to3/pgen2/driver.py /^ def parse_tokens(self, tokens, debug=False):$/;" m class:Driver +parse_transition_rule Modules/_zoneinfo.c /^parse_transition_rule(const char *const p, TransitionRuleType **out)$/;" f file: +parse_transition_time Modules/_zoneinfo.c /^parse_transition_time(const char *const p, int8_t *hour, int8_t *minute,$/;" f file: +parse_tuple_and_keywords Modules/_testcapi/getargs.c /^parse_tuple_and_keywords(PyObject *self, PyObject *args)$/;" f file: +parse_tz_delta Modules/_zoneinfo.c /^parse_tz_delta(const char *const p, long *total_seconds)$/;" f file: +parse_tz_str Modules/_zoneinfo.c /^parse_tz_str(zoneinfo_state *state, PyObject *tz_str_obj, _tzrule *out)$/;" f file: +parse_uint Modules/_zoneinfo.c /^parse_uint(const char *const p, uint8_t *value)$/;" f file: +parse_value Lib/tomllib/_parser.py /^def parse_value( # noqa: C901$/;" f +parse_var_decl Tools/c-analyzer/c_parser/parser/_common.py /^def parse_var_decl(decl):$/;" f +parse_varint Include/internal/pycore_code.h /^parse_varint(unsigned char *p, int *result) {$/;" f +parse_verbatim_block Tools/clinic/clinic.py /^ def parse_verbatim_block(self):$/;" m class:BlockParser +parse_weakref_init_args Objects/weakrefobject.c /^parse_weakref_init_args(const char *funcname, PyObject *args, PyObject *kwargs,$/;" f file: +parseaddr Lib/email/utils.py /^def parseaddr(addr):$/;" f +parseargs Lib/test/smtpd.py /^def parseargs():$/;" f +parsebytes Lib/email/parser.py /^ def parsebytes(self, text, headersonly=False):$/;" m class:BytesParser +parsebytes Lib/email/parser.py /^ def parsebytes(self, text, headersonly=True):$/;" m class:BytesHeaderParser +parsecodes Tools/unicode/gencodec.py /^def parsecodes(codes, len=len, range=range):$/;" f +parsed Tools/c-analyzer/c_parser/info.py /^ def parsed(self):$/;" m class:HighlevelParsedItem +parsedate Lib/email/_parseaddr.py /^def parsedate(data):$/;" f +parsedate_to_datetime Lib/email/utils.py /^def parsedate_to_datetime(data):$/;" f +parsedate_tz Lib/email/_parseaddr.py /^def parsedate_tz(data):$/;" f +parseerror_obj Modules/_elementtree.c /^ PyObject *parseerror_obj;$/;" m struct:__anon381 file: +parsefield Lib/mailcap.py /^def parsefield(line, i, n):$/;" f +parseline Lib/cmd.py /^ def parseline(self, line):$/;" m class:Cmd +parseline Lib/mailcap.py /^def parseline(line):$/;" f +parsemodule Tools/peg_generator/peg_extension/peg_extension.c /^static struct PyModuleDef parsemodule = {$/;" v typeref:struct:PyModuleDef file: +parsenumber Parser/pegen.c /^parsenumber(const char *s)$/;" f file: +parsenumber_raw Parser/pegen.c /^parsenumber_raw(const char *s)$/;" f file: +parser Include/internal/pycore_runtime.h /^ struct _parser_runtime_state parser;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::_parser_runtime_state +parser Lib/code.py /^ parser = argparse.ArgumentParser()$/;" v +parser Lib/configparser.py /^ def parser(self):$/;" m class:SectionProxy +parser Lib/http/server.py /^ parser = argparse.ArgumentParser()$/;" v +parser Lib/test/ssl_servers.py /^ parser = argparse.ArgumentParser($/;" v +parser Lib/test/test_xml_etree.py /^ parser = ET.XMLParser(target=RaisingBuilder(event, what=AttributeError))$/;" v class:TreeBuilderTest.test_builder_lookup_errors.RaisingBuilder +parser Lib/test/test_xml_etree.py /^ parser = MyParserWithDoctype(target=DoctypeParser())$/;" v class:XMLParserTest.test_subclass_doctype.MyParserWithDoctype +parser Modules/_decimal/tests/deccheck.py /^ parser = argparse.ArgumentParser(prog="deccheck.py")$/;" v +parser Modules/_elementtree.c /^ XML_Parser parser;$/;" m struct:__anon386 file: +parser Modules/expat/expat.h /^XMLPARSEAPI(XML_Index) XML_GetCurrentByteIndex(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XMLPARSEAPI(XML_Size) XML_GetCurrentColumnNumber(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XMLPARSEAPI(XML_Size) XML_GetCurrentLineNumber(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_DefaultCurrent(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_GetAttributeInfo(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_GetBase(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_GetCurrentByteCount(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_GetErrorCode(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_GetIdAttributeIndex(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_GetSpecifiedAttributeCount(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_ParserFree(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_ResumeParser(XML_Parser parser);$/;" v +parser Modules/expat/expat.h /^XML_UseParserAsHandlerArg(XML_Parser parser);$/;" v +parser Parser/asdl_c.py /^ parser = ArgumentParser()$/;" v +parser Tools/build/check_extension_modules.py /^parser = argparse.ArgumentParser($/;" v +parser Tools/build/deepfreeze.py /^parser = argparse.ArgumentParser()$/;" v +parser Tools/build/freeze_modules.py /^parser = argparse.ArgumentParser()$/;" v +parser Tools/build/update_file.py /^ parser = argparse.ArgumentParser()$/;" v +parser Tools/cases_generator/parser.py /^ parser = Parser(src, filename)$/;" v class:Parser +parser Tools/i18n/makelocalealias.py /^ parser = argparse.ArgumentParser()$/;" v +parser Tools/importbench/importbench.py /^ parser = argparse.ArgumentParser()$/;" v +parser Tools/patchcheck/patchcheck.py /^ parser = argparse.ArgumentParser(description=__doc__)$/;" v +parser Tools/ssl/make_ssl_data.py /^parser = argparse.ArgumentParser($/;" v +parser Tools/ssl/multissltests.py /^parser = argparse.ArgumentParser($/;" v +parser Tools/stringbench/stringbench.py /^parser = optparse.OptionParser()$/;" v +parser Tools/wasm/wasm_assets.py /^parser = argparse.ArgumentParser()$/;" v +parser Tools/wasm/wasm_build.py /^parser = argparse.ArgumentParser($/;" v +parser Tools/wasm/wasm_webserver.py /^parser = argparse.ArgumentParser($/;" v +parserCreate Modules/expat/xmlparse.c /^parserCreate(const XML_Char *encodingName,$/;" f file: +parserInit Modules/expat/xmlparse.c /^parserInit(XML_Parser parser, const XML_Char *encodingName) {$/;" f file: +parser_body Tools/clinic/clinic.py /^ def parser_body(prototype, *fields, declarations=''):$/;" f function:CLanguage.output_templates +parser_class Lib/test/test_argparse.py /^ parser_class = FromFileConverterArgumentParser$/;" v class:TestArgumentsFromFileConverter +parser_clear Python/getargs.c /^parser_clear(struct _PyArg_Parser *parser)$/;" f file: +parser_debug Include/cpython/initconfig.h /^ int parser_debug;$/;" m struct:PyConfig +parser_dir Lib/test/test_asdl_parser.py /^parser_dir = os.path.join(src_base, 'Parser')$/;" v +parser_init Python/getargs.c /^parser_init(struct _PyArg_Parser *parser)$/;" f file: +parser_name Tools/clinic/clinic.py /^ def parser_name(self):$/;" m class:CConverter +parser_ref_cycle Lib/test/test_xml_etree_c.py /^ def parser_ref_cycle():$/;" f function:MiscTests.test_parser_ref_cycle +parser_signature Lib/test/test_argparse.py /^ parser_signature = TestHelpBiggerOptionals.parser_signature$/;" v class:TestShortColumns +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig($/;" v class:TestHelpArgumentDefaults +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig($/;" v class:TestHelpRawDescription +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig($/;" v class:TestHelpRawText +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig($/;" v class:TestHelpReformatting +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(allow_abbrev=False)$/;" v class:TestDisallowLongAbbreviationAllowsShortGrouping +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(allow_abbrev=False)$/;" v class:TestOptionalsDisallowLongAbbreviation +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(argument_default=42)$/;" v class:TestParserDefault42 +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(argument_default=argparse.SUPPRESS)$/;" v class:TestParserDefaultSuppress +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(fromfile_prefix_chars='@')$/;" v class:TestArgumentsFromFile +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(fromfile_prefix_chars='@')$/;" v class:TestArgumentsFromFileConverter +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prefix_chars='+', allow_abbrev=False)$/;" v class:TestDisallowLongAbbreviationAllowsShortGroupingPrefix +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prefix_chars='+', allow_abbrev=False)$/;" v class:TestOptionalsDisallowLongAbbreviationPrefixChars +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prefix_chars='+-', add_help=False)$/;" v class:TestOptionalsAlternatePrefixCharsMultipleShortArgs +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prefix_chars='+:\/', add_help=False)$/;" v class:TestOptionalsAlternatePrefixChars +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prefix_chars='+:\/', add_help=True)$/;" v class:TestOptionalsAlternatePrefixCharsAddedHelp +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prefix_chars='-+')$/;" v class:TestPrefixCharacterOnlyArguments +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='P' * 60)$/;" v class:TestHelpUsageLongProg +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='P' * 60)$/;" v class:TestHelpUsageLongProgOptionsWrap +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='P' * 60, add_help=False)$/;" v class:TestHelpUsageLongProgPositionalsWrap +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpNone +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpRequiredOptional +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpSuppressOptionalGroup +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpSuppressPositional +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpTupleMetavar +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpUsage +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpUsageOptionalsOnlyWrap +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpUsageOptionalsPositionalsWrap +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpUsageOptionalsWrap +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpUsagePositionalsWrap +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpUsageWithParentheses +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpVariableExpansion +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG')$/;" v class:TestHelpVersionActionSuppress +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', add_help=False)$/;" v class:TestHelpNoHelpOptional +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', add_help=False)$/;" v class:TestHelpOnlyUserGroups +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', add_help=False)$/;" v class:TestHelpSuppressOptional +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', add_help=False)$/;" v class:TestHelpUsagePositionalsOnlyWrap +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', add_help=False)$/;" v class:TestHelpVariableExpansionNoArguments +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', description= 'D\\nD' * 30)$/;" v class:TestHelpWrappingShortNames +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', description='DESCRIPTION',$/;" v class:TestHelpBiggerOptionalGroups +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', description='DESCRIPTION',$/;" v class:TestHelpBiggerOptionals +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', description='description')$/;" v class:TestHelpVersionAction +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', description='description',$/;" v class:TestHelpMetavarTypeFormatter +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', prefix_chars='^;', add_help=False)$/;" v class:TestHelpAlternatePrefixChars +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', usage='%(prog)s FOO')$/;" v class:TestHelpVariableExpansionUsageSupplied +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG', usage=argparse.SUPPRESS)$/;" v class:TestHelpSuppressUsage +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG',$/;" v class:TestHelpSubparsersOrdering +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(prog='PROG',$/;" v class:TestHelpSubparsersWithHelpOrdering +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(usage='USAGE', description= 'D D' * 30)$/;" v class:TestHelpWrappingLongNames +parser_signature Lib/test/test_argparse.py /^ parser_signature = Sig(usage='USAGE', description='DESCRIPTION')$/;" v class:TestHelpBiggerPositionals +parser_type Tools/clinic/clinic.py /^ def parser_type(self):$/;" m class:self_converter +parser_warn Parser/tokenizer.c /^parser_warn(struct tok_state *tok, PyObject *category, const char *format, ...)$/;" f file: +parsers Lib/test/test_email/test_parser.py /^ parsers = (email.message_from_string, message_from_file)$/;" v class:TestParser +parsers Lib/test/test_email/test_parser.py /^ parsers = (message_from_bytes, message_from_binary_file)$/;" v class:TestBytesParser +parsers Tools/clinic/clinic.py /^parsers = {'clinic' : DSLParser, 'python': PythonParser}$/;" v +parsestr Lib/email/parser.py /^ def parsestr(self, text, headersonly=False):$/;" m class:Parser +parsestr Lib/email/parser.py /^ def parsestr(self, text, headersonly=True):$/;" m class:HeaderParser +parsing Modules/expat/expat.h /^ enum XML_Parsing parsing;$/;" m struct:__anon600 typeref:enum:__anon600::XML_Parsing +parsing_started Parser/pegen.h /^ int parsing_started;$/;" m struct:__anon657 +part Lib/test/test_importlib/resources/util.py /^ def part(entry):$/;" f function:Reader.is_resource +part_count Lib/email/header.py /^ def part_count(self):$/;" m class:_Accumulator +partfiles Doc/includes/email-read-alternative.py /^partfiles = {}$/;" v +partial Lib/functools.py /^class partial:$/;" c +partial Lib/imaplib.py /^ def partial(self, message_num, message_part, start, length):$/;" m class:IMAP4 +partial Lib/test/test_functools.py /^ partial = CPartialSubclass$/;" v class:TestPartialCSubclass +partial Lib/test/test_functools.py /^ partial = c_functools.partial$/;" v class:TestPartialC +partial Lib/test/test_functools.py /^ partial = PyPartialSubclass$/;" v class:TestPartialPySubclass +partial Lib/test/test_functools.py /^ partial = py_functools.partial$/;" v class:TestPartialPy +partial Modules/_pickle.c /^ PyObject *partial;$/;" m struct:__anon448 file: +partial_call Modules/_functoolsmodule.c /^partial_call(partialobject *pto, PyObject *args, PyObject *kwargs)$/;" f file: +partial_clear Modules/_functoolsmodule.c /^partial_clear(partialobject *pto)$/;" f file: +partial_dealloc Modules/_functoolsmodule.c /^partial_dealloc(partialobject *pto)$/;" f file: +partial_getsetlist Modules/_functoolsmodule.c /^static PyGetSetDef partial_getsetlist[] = {$/;" v file: +partial_memberlist Modules/_functoolsmodule.c /^static PyMemberDef partial_memberlist[] = {$/;" v file: +partial_methods Modules/_functoolsmodule.c /^static PyMethodDef partial_methods[] = {$/;" v file: +partial_new Modules/_functoolsmodule.c /^partial_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +partial_product Lib/test/test_math.py /^def partial_product(start, stop):$/;" f +partial_reduce Modules/_functoolsmodule.c /^partial_reduce(partialobject *pto, PyObject *unused)$/;" f file: +partial_repr Modules/_functoolsmodule.c /^partial_repr(partialobject *pto)$/;" f file: +partial_setstate Modules/_functoolsmodule.c /^partial_setstate(partialobject *pto, PyObject *state)$/;" f file: +partial_setvectorcall Modules/_functoolsmodule.c /^partial_setvectorcall(partialobject *pto)$/;" f file: +partial_traverse Modules/_functoolsmodule.c /^partial_traverse(partialobject *pto, visitproc visit, void *arg)$/;" f file: +partial_type Modules/_functoolsmodule.c /^ PyTypeObject *partial_type;$/;" m struct:_functools_state file: +partial_type_slots Modules/_functoolsmodule.c /^static PyType_Slot partial_type_slots[] = {$/;" v file: +partial_type_spec Modules/_functoolsmodule.c /^static PyType_Spec partial_type_spec = {$/;" v file: +partial_vectorcall Modules/_functoolsmodule.c /^partial_vectorcall(partialobject *pto, PyObject *const *args,$/;" f file: +partial_vectorcall_fallback Modules/_functoolsmodule.c /^partial_vectorcall_fallback(PyThreadState *tstate, partialobject *pto,$/;" f file: +partialmethod Lib/functools.py /^class partialmethod(object):$/;" c +partialobject Modules/_functoolsmodule.c /^} partialobject;$/;" t typeref:struct:__anon393 file: +parties Lib/asyncio/locks.py /^ def parties(self):$/;" m class:Barrier +parties Lib/multiprocessing/managers.py /^ def parties(self):$/;" m class:BarrierProxy +parties Lib/threading.py /^ def parties(self):$/;" m class:Barrier +partition Lib/collections/__init__.py /^ def partition(self, sep):$/;" m class:UserString +partition Lib/turtledemo/sorting_animate.py /^def partition(shelf, left, right, pivot_index):$/;" f +partition Objects/stringlib/partition.h /^STRINGLIB(partition)(PyObject* str_obj,$/;" f +partition_test_no_match_single_character Tools/stringbench/stringbench.py /^def partition_test_no_match_single_character(STR):$/;" f +partition_test_no_match_two_character Tools/stringbench/stringbench.py /^def partition_test_no_match_two_character(STR):$/;" f +partition_test_quick_match_single_character Tools/stringbench/stringbench.py /^def partition_test_quick_match_single_character(STR):$/;" f +partition_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def partition_test_quick_match_two_characters(STR):$/;" f +partition_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def partition_test_slow_match_100_characters(STR):$/;" f +partition_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def partition_test_slow_match_two_characters(STR):$/;" f +parts Lib/pathlib.py /^ def parts(self):$/;" m class:PurePath +pass1 Lib/test/test_pstats.py /^ def pass1(): pass$/;" f function:StatsTestCase.test_get_stats_profile +pass2 Lib/test/test_pstats.py /^ def pass2(): pass$/;" f function:StatsTestCase.test_get_stats_profile +pass3 Lib/test/test_pstats.py /^ def pass3(): pass$/;" f function:StatsTestCase.test_get_stats_profile +passValue Lib/test/test_tcl.py /^ def passValue(value):$/;" f function:TclTest.test_passing_values +pass_ Lib/poplib.py /^ def pass_(self, pswd):$/;" m class:POP3 +pass_alpharep Lib/test/test_zipfile/_path/test_path.py /^pass_alpharep = parameterize(['alpharep'], alpharep_generators)$/;" v +pass_dectest Lib/test/multibytecodec_support.py /^ pass_dectest = []$/;" v class:TestBase_Mapping +pass_dectest Lib/test/test_codecmaps_jp.py /^ pass_dectest = [$/;" v class:TestSJISCOMPATMap +pass_dectest Lib/test/test_codecmaps_kr.py /^ pass_dectest = [(b'\\\\', '\\u20a9')]$/;" v class:TestJOHABMap +pass_dectest Lib/test/test_codecmaps_kr.py /^ pass_dectest = [(b'\\xa4\\xd4', '\\u3164')]$/;" v class:TestEUCKRMap +pass_enctest Lib/test/multibytecodec_support.py /^ pass_enctest = []$/;" v class:TestBase_Mapping +pass_enctest Lib/test/test_codecmaps_jp.py /^ pass_enctest = [$/;" v class:TestSJISCOMPATMap +pass_enctest Lib/test/test_codecmaps_kr.py /^ pass_enctest = [(b'\\\\', '\\u20a9')]$/;" v class:TestJOHABMap +pass_enctest Lib/test/test_codecmaps_kr.py /^ pass_enctest = [(b'\\xa4\\xd4', '\\u3164')]$/;" v class:TestEUCKRMap +pass_enctest Lib/test/test_codecmaps_tw.py /^ pass_enctest = [$/;" v class:TestCP950Map +pass_none Lib/importlib/metadata/_functools.py /^def pass_none(func):$/;" f +passiveserver Lib/ftplib.py /^ passiveserver = True$/;" v class:FTP +password Lib/test/test_imaplib.py /^ password = 'pass'$/;" v class:RemoteIMAPTest +password Lib/urllib/parse.py /^ def password(self):$/;" m class:_NetlocResultMixinBase +password Modules/_ssl.c /^ char *password;$/;" m struct:__anon585 file: +paste Lib/idlelib/editor.py /^ def paste(self,event):$/;" m class:EditorWindow +patch Lib/test/support/__init__.py /^def patch(test_instance, object_to_patch, attr_name, new_value):$/;" f +patch Lib/test/test_asyncio/test_unix_events.py /^ def patch(target, wrapper):$/;" f function:ChildWatcherTestsMixin.waitpid_mocks.wrapped_func +patch Lib/unittest/mock.py /^def patch($/;" f +patchFile Mac/BuildScript/build-installer.py /^def patchFile(inPath, outPath):$/;" f +patchScript Mac/BuildScript/build-installer.py /^def patchScript(inPath, outPath):$/;" f +patch_list Lib/test/support/__init__.py /^def patch_list(orig):$/;" f +patch_pairindextypes Doc/tools/extensions/pyspecific.py /^def patch_pairindextypes(app, _env) -> None:$/;" f +patch_socket Lib/test/test_asyncio/test_base_events.py /^def patch_socket(f):$/;" f +patched Lib/test/test_unittest/testmock/testpatch.py /^ def patched():$/;" f function:PatchTest.test_patch_dict_stopall +patched Lib/test/test_unittest/testmock/testpatch.py /^ def patched(mock_path):$/;" f function:PatchTest.test_patch_stopall +patched Lib/unittest/mock.py /^ async def patched(*args, **keywargs):$/;" f function:_patch.decorate_async_callable +patched Lib/unittest/mock.py /^ def patched(*args, **keywargs):$/;" f function:_patch.decorate_callable +patched_call_soon Lib/test/test_asyncio/test_events.py /^ def patched_call_soon(*args):$/;" f function:EventLoopTestsMixin.test_run_in_executor_cancel +path Include/cpython/fileobject.h /^PyAPI_FUNC(PyObject *) PyFile_OpenCodeObject(PyObject *path);$/;" v +path Include/cpython/pyerrors.h /^ PyObject *path;$/;" m struct:__anon183 +path Include/import.h /^PyAPI_FUNC(PyObject *) PyImport_GetImporter(PyObject *path);$/;" v +path Include/osmodule.h /^PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);$/;" v +path Lib/importlib/metadata/__init__.py /^ def path(self):$/;" m class:DistributionFinder.Context +path Lib/importlib/resources/_legacy.py /^def path($/;" f +path Lib/tarfile.py /^ def path(self):$/;" m class:TarInfo +path Lib/tarfile.py /^ def path(self, name):$/;" m class:TarInfo +path Lib/test/test_import/__init__.py /^ path = TESTFN$/;" v class:PathsTests +path Lib/test/test_ntpath.py /^ path = ntpath$/;" v class:PathLikeTests +path Lib/test/test_posixpath.py /^ path = posixpath$/;" v class:PathLikeTests +path Modules/posixmodule.c /^ PyObject *path;$/;" m struct:__anon480 file: +path Modules/posixmodule.c /^ path_t path;$/;" m struct:__anon481 file: +path Tools/clinic/clinic.py /^ path = os.path.join(root, filename)$/;" v +path Tools/wasm/wasm_assets.py /^def path(val: str) -> pathlib.Path:$/;" f +path_and_dir_fd_invalid Modules/posixmodule.c /^path_and_dir_fd_invalid(const char *function_name, path_t *path, int dir_fd)$/;" f file: +path_cleanup Modules/posixmodule.c /^path_cleanup(path_t *path)$/;" f file: +path_command PC/launcher.c /^static COMMAND path_command;$/;" v file: +path_converter Modules/posixmodule.c /^path_converter(PyObject *o, void *p)$/;" f file: +path_error Lib/idlelib/idle_test/test_query.py /^ path_error = {}$/;" v class:HelpsourceEntryokTest.Dummy_HelpSource +path_error Modules/posixmodule.c /^path_error(path_t *path)$/;" f file: +path_error2 Modules/posixmodule.c /^path_error2(path_t *path, path_t *path2)$/;" f file: +path_from_key Lib/test/test_zoneinfo/test_zoneinfo.py /^ def path_from_key(self, key):$/;" m class:ZoneInfoData +path_hook Lib/importlib/_bootstrap_external.py /^ def path_hook(cls, *loader_details):$/;" m class:FileFinder +path_hook Lib/test/test_importlib/source/test_path_hook.py /^ def path_hook(self):$/;" m class:PathHookTest +path_hook Lib/test/test_importlib/test_threaded_import.py /^ def path_hook(path):$/;" f function:ThreadedImportTests.test_parallel_path_hooks +path_hook_for_FileFinder Lib/importlib/_bootstrap_external.py /^ def path_hook_for_FileFinder(path):$/;" f function:FileFinder.path_hook +path_location Lib/test/test_importlib/import_/test_path.py /^ path_location = 'test_finder_with_find_spec'$/;" v class:PathEntryFinderTests.test_finder_with_failing_find_spec.Finder +path_mtime Lib/importlib/_bootstrap_external.py /^ def path_mtime(self, path):$/;" m class:SourceLoader +path_mtime Lib/importlib/abc.py /^ def path_mtime(self, path):$/;" m class:SourceLoader +path_object_error Modules/posixmodule.c /^path_object_error(PyObject *path)$/;" f file: +path_object_error2 Modules/posixmodule.c /^path_object_error2(PyObject *path, PyObject *path2)$/;" f file: +path_ok Lib/idlelib/idle_test/test_query.py /^ def path_ok(self):$/;" m class:HelpsourceEntryokTest.Dummy_HelpSource +path_ok Lib/idlelib/idle_test/test_query.py /^ path_ok = query.HelpSource.path_ok$/;" v class:HelpsourcePathokTest.Dummy_HelpSource +path_ok Lib/idlelib/query.py /^ def path_ok(self):$/;" m class:HelpSource +path_out_of_memory Python/pathconfig.c /^path_out_of_memory(const char *func)$/;" f file: +path_return_ok Lib/http/cookiejar.py /^ def path_return_ok(self, path, request):$/;" m class:CookiePolicy +path_return_ok Lib/http/cookiejar.py /^ def path_return_ok(self, path, request):$/;" m class:DefaultCookiePolicy +path_sep Lib/importlib/_bootstrap_external.py /^path_sep = path_separators[0]$/;" v +path_sep Lib/zipimport.py /^path_sep = _bootstrap_external.path_sep$/;" v +path_sep_tuple Lib/importlib/_bootstrap_external.py /^path_sep_tuple = tuple(path_separators)$/;" v +path_separators Lib/importlib/_bootstrap_external.py /^ path_separators = ['\/']$/;" v +path_separators Lib/importlib/_bootstrap_external.py /^ path_separators = ['\\\\', '\/']$/;" v +path_separators Lib/importlib/_bootstrap_external.py /^path_separators = ''.join(path_separators)$/;" v +path_stats Lib/importlib/_bootstrap_external.py /^ def path_stats(self, path):$/;" m class:SourceFileLoader +path_stats Lib/importlib/_bootstrap_external.py /^ def path_stats(self, path):$/;" m class:SourceLoader +path_stats Lib/importlib/abc.py /^ def path_stats(self, path):$/;" m class:SourceLoader +path_stats Lib/test/test_importlib/test_abc.py /^ def path_stats(self, path):$/;" m class:SourceLoader +path_t Modules/posixmodule.c /^} path_t;$/;" t typeref:struct:__anon478 file: +pathconfig_warnings Include/cpython/initconfig.h /^ int pathconfig_warnings;$/;" m struct:PyConfig +pathconfig_warnings Lib/test/test_embed.py /^ pathconfig_warnings=0,$/;" v class:InitConfigTests +pathdirs Lib/pydoc.py /^def pathdirs():$/;" f +pathmodule Lib/test/test_genericpath.py /^ pathmodule = genericpath$/;" v class:TestGenericTest +pathmodule Lib/test/test_ntpath.py /^ pathmodule = ntpath$/;" v class:NtCommonTest +pathmodule Lib/test/test_posixpath.py /^ pathmodule = posixpath$/;" v class:PosixCommonTest +pathname2url Lib/nturl2path.py /^def pathname2url(p):$/;" f +pathname2url Lib/urllib/request.py /^ def pathname2url(pathname):$/;" m class:DataHandler +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['both_portions']$/;" v class:CombinedNamespacePackages +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['missing_directory.zip']$/;" v class:ZipWithMissingDirectory +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['module_and_namespace_package']$/;" v class:ModuleAndNamespacePackageInSameDir +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['nested_portion1.zip\/nested_portion1', 'portion2']$/;" v class:SeparatedNestedZipNamespacePackages +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['nested_portion1.zip\/nested_portion1']$/;" v class:SingleNestedZipNamespacePackage +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['not_a_namespace_pkg', 'portion1', 'portion2', 'both_portions']$/;" v class:LegacySupport +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['portion1', 'both_portions']$/;" v class:SeparatedOverlappingNamespacePackages +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['portion1', 'portion2']$/;" v class:SeparatedNamespacePackages +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['portion1']$/;" v class:DynamicPathNamespacePackage +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['portion1']$/;" v class:LoaderTests +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['portion1']$/;" v class:ReloadTests +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['portion1']$/;" v class:SeparatedNamespacePackagesCreatedWhileRunning +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['portion1']$/;" v class:SingleNamespacePackage +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['project1', 'project2']$/;" v class:DynamicPathCalculation +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['top_level_portion1.zip', 'portion2']$/;" v class:SeparatedZipNamespacePackages +paths Lib/test/test_importlib/test_namespace_pkgs.py /^ paths = ['top_level_portion1.zip']$/;" v class:SingleZipNamespacePackage +paths Lib/test/test_unittest/test_discovery.py /^ paths = []$/;" v class:TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests.Module +paths Lib/test/test_unittest/test_discovery.py /^ paths = []$/;" v class:TestDiscovery.test_find_tests_customize_via_package_pattern.Module +paths Lib/test/test_unittest/test_discovery.py /^ paths = []$/;" v class:TestDiscovery.test_find_tests_default_calls_package_load_tests.Module +paths Lib/test/test_unittest/test_discovery.py /^ paths = []$/;" v class:TestDiscovery.test_find_tests_with_package.Module +paths Lib/test/test_xmlrpc.py /^ paths = [$/;" v class:http_multi_server.BrokenDispatcher +pathsep Lib/ntpath.py /^pathsep = ';'$/;" v +pathsep Lib/posixpath.py /^pathsep = ':'$/;" v +pathvar Lib/idlelib/idle_test/test_query.py /^ pathvar = Var()$/;" v class:HelpsourceBrowsefileTest.Dummy_HelpSource +pats_built Lib/lib2to3/fixer_util.py /^pats_built = False$/;" v +pattern Include/internal/pycore_ast.h /^ pattern_ty pattern;$/;" m struct:_pattern::__anon107::__anon114 +pattern Include/internal/pycore_ast.h /^ pattern_ty pattern;$/;" m struct:_match_case +pattern Include/internal/pycore_ast_state.h /^ PyObject *pattern;$/;" m struct:ast_state +pattern Lib/_strptime.py /^ def pattern(self, format):$/;" m class:TimeRE +pattern Lib/importlib/metadata/__init__.py /^ pattern = re.compile($/;" v class:EntryPoint +pattern Lib/lib2to3/fixer_base.py /^ pattern = None # Compiled pattern, set by compile_pattern()$/;" v class:BaseFix +pattern Lib/test/subprocessdata/qgrep.py /^ pattern = sys.argv[1]$/;" v +pattern Modules/_sre/sre.h /^ PatternObject* pattern; \/* link to the regex (pattern) object *\/$/;" m struct:__anon455 +pattern Modules/_sre/sre.h /^ PyObject* pattern; \/* pattern source (or None) *\/$/;" m struct:__anon454 +pattern Modules/_sre/sre.h /^ PyObject* pattern;$/;" m struct:__anon459 +pattern Modules/_sre/sre.h /^ const SRE_CODE* pattern; \/* points to REPEAT operator arguments *\/$/;" m struct:SRE_REPEAT_T +pattern Modules/_sre/sre_lib.h /^ const SRE_CODE* pattern;$/;" m struct:__anon460 +pattern Parser/pegen.h /^ pattern_ty pattern;$/;" m struct:__anon660 +pattern_1 Lib/test/test_ast.py /^ pattern_1 = ast.MatchValue(constant_1)$/;" v class:ASTValidatorTests +pattern_attributes Python/Python-ast.c /^static const char * const pattern_attributes[] = {$/;" v file: +pattern_capture_target_rule Parser/parser.c /^pattern_capture_target_rule(Parser *p)$/;" f file: +pattern_capture_target_type Parser/parser.c 160;" d file: +pattern_clear Modules/_sre/sre.c /^pattern_clear(PatternObject *self)$/;" f file: +pattern_context Python/compile.c /^} pattern_context;$/;" t typeref:struct:__anon672 file: +pattern_convert Lib/lib2to3/patcomp.py /^def pattern_convert(grammar, raw_node_info):$/;" f +pattern_dealloc Modules/_sre/sre.c /^pattern_dealloc(PatternObject* self)$/;" f file: +pattern_error Modules/_sre/sre.c /^pattern_error(Py_ssize_t status)$/;" f file: +pattern_getset Modules/_sre/sre.c /^static PyGetSetDef pattern_getset[] = {$/;" v file: +pattern_grammar Lib/lib2to3/pygram.py /^pattern_grammar = driver.load_packaged_grammar("lib2to3", _PATTERN_GRAMMAR_FILE)$/;" v +pattern_groupindex Modules/_sre/sre.c /^pattern_groupindex(PatternObject *self, void *Py_UNUSED(ignored))$/;" f file: +pattern_hash Modules/_sre/sre.c /^pattern_hash(PatternObject *self)$/;" f file: +pattern_helper_rotate Python/compile.c /^pattern_helper_rotate(struct compiler *c, location loc, Py_ssize_t count)$/;" f file: +pattern_helper_sequence_subscr Python/compile.c /^pattern_helper_sequence_subscr(struct compiler *c, location loc,$/;" f file: +pattern_helper_sequence_unpack Python/compile.c /^pattern_helper_sequence_unpack(struct compiler *c, location loc,$/;" f file: +pattern_helper_store_name Python/compile.c /^pattern_helper_store_name(struct compiler *c, location loc,$/;" f file: +pattern_members Modules/_sre/sre.c /^static PyMemberDef pattern_members[] = {$/;" v file: +pattern_methods Modules/_sre/sre.c /^static PyMethodDef pattern_methods[] = {$/;" v file: +pattern_new_match Modules/_sre/sre.c /^pattern_new_match(_sremodulestate* module_state,$/;" f file: +pattern_repr Modules/_sre/sre.c /^pattern_repr(PatternObject *obj)$/;" f file: +pattern_richcompare Modules/_sre/sre.c /^pattern_richcompare(PyObject *lefto, PyObject *righto, int op)$/;" f file: +pattern_rule Parser/parser.c /^pattern_rule(Parser *p)$/;" f file: +pattern_scanner Modules/_sre/sre.c /^pattern_scanner(_sremodulestate *module_state,$/;" f file: +pattern_slots Modules/_sre/sre.c /^static PyType_Slot pattern_slots[] = {$/;" v file: +pattern_spec Modules/_sre/sre.c /^static PyType_Spec pattern_spec = {$/;" v file: +pattern_subx Modules/_sre/sre.c /^pattern_subx(_sremodulestate* module_state,$/;" f file: +pattern_symbols Lib/lib2to3/pygram.py /^pattern_symbols = Symbols(pattern_grammar)$/;" v +pattern_traverse Modules/_sre/sre.c /^pattern_traverse(PatternObject *self, visitproc visit, void *arg)$/;" f file: +pattern_tree Lib/lib2to3/fixer_base.py /^ pattern_tree = None # Tree representation of the pattern$/;" v class:BaseFix +pattern_true Lib/test/test_ast.py /^ pattern_true = ast.MatchSingleton(True)$/;" v class:ASTValidatorTests +pattern_ty Include/internal/pycore_ast.h /^typedef struct _pattern *pattern_ty;$/;" t typeref:struct:_pattern +pattern_type Include/internal/pycore_ast_state.h /^ PyObject *pattern_type;$/;" m struct:ast_state +pattern_type Parser/parser.c 148;" d file: +pattern_unpack_helper Python/compile.c /^pattern_unpack_helper(struct compiler *c, location loc,$/;" f file: +pattern_x Lib/test/test_ast.py /^ pattern_x = ast.MatchValue(constant_x)$/;" v class:ASTValidatorTests +patterns Include/internal/pycore_ast.h /^ asdl_pattern_seq *patterns;$/;" m struct:_pattern::__anon107::__anon110 +patterns Include/internal/pycore_ast.h /^ asdl_pattern_seq *patterns;$/;" m struct:_pattern::__anon107::__anon111 +patterns Include/internal/pycore_ast.h /^ asdl_pattern_seq *patterns;$/;" m struct:_pattern::__anon107::__anon112 +patterns Include/internal/pycore_ast.h /^ asdl_pattern_seq *patterns;$/;" m struct:_pattern::__anon107::__anon115 +patterns Include/internal/pycore_ast_state.h /^ PyObject *patterns;$/;" m struct:ast_state +patterns_rule Parser/parser.c /^patterns_rule(Parser *p)$/;" f file: +patterns_type Parser/parser.c 147;" d file: +pause_reading Lib/asyncio/proactor_events.py /^ def pause_reading(self):$/;" m class:_ProactorReadPipeTransport +pause_reading Lib/asyncio/selector_events.py /^ def pause_reading(self):$/;" m class:_SelectorTransport +pause_reading Lib/asyncio/sslproto.py /^ def pause_reading(self):$/;" m class:_SSLProtocolTransport +pause_reading Lib/asyncio/transports.py /^ def pause_reading(self):$/;" m class:ReadTransport +pause_reading Lib/asyncio/unix_events.py /^ def pause_reading(self):$/;" m class:_UnixReadPipeTransport +pause_writing Lib/asyncio/base_events.py /^ def pause_writing(self):$/;" m class:_SendfileFallbackProtocol +pause_writing Lib/asyncio/base_subprocess.py /^ def pause_writing(self):$/;" m class:WriteSubprocessPipeProto +pause_writing Lib/asyncio/protocols.py /^ def pause_writing(self):$/;" m class:BaseProtocol +pause_writing Lib/asyncio/sslproto.py /^ def pause_writing(self):$/;" m class:SSLProtocol +pause_writing Lib/asyncio/streams.py /^ def pause_writing(self):$/;" m class:FlowControlMixin +pause_writing_transport Lib/test/test_asyncio/test_proactor_events.py /^ def pause_writing_transport(self, high):$/;" m class:ProactorSocketTransportTests +pax_headers Lib/tarfile.py /^ pax_headers = ('A dictionary containing key-value pairs of an '$/;" v class:TarInfo +payload_as_body Lib/test/test_email/test_inversion.py /^ def payload_as_body(self, payload, **kw):$/;" m class:TestInversion +payload_params Lib/test/test_email/test_inversion.py /^ payload_params = {$/;" v class:TestInversion +payment_complete Lib/test/test_enum.py /^ payment_complete = (2, "Payment Complete")$/;" v class:TestSpecial.test_conflicting_types_resolved_in_new.LabelledList +pbkdf2_hmac Modules/clinic/_hashopenssl.c.h /^pbkdf2_hmac(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pbkdf2_hmac_impl Modules/_hashopenssl.c /^pbkdf2_hmac_impl(PyObject *module, const char *hash_name,$/;" f file: +pbkdf2_results Lib/test/test_hashlib.py /^ pbkdf2_results = {$/;" v class:KDFTests +pbkdf2_test_vectors Lib/test/test_hashlib.py /^ pbkdf2_test_vectors = [$/;" v class:KDFTests +pcbuild PCbuild/rt.bat /^set pcbuild=%~dp0$/;" v +pcbuild Tools/buildbot/clean.bat /^set pcbuild=%root%\\PCbuild$/;" v +pcl_exec Modules/_ctypes/ctypes.h /^ void *pcl_exec; \/* the C callable, executable *\/$/;" m struct:__anon492 +pcl_write Modules/_ctypes/ctypes.h /^ ffi_closure *pcl_write; \/* the C callable, writeable *\/$/;" m struct:__anon492 +pd Lib/turtle.py /^ pd = pendown$/;" v class:TPen +pdata_slots Modules/_pickle.c /^static PyType_Slot pdata_slots[] = {$/;" v file: +pdata_spec Modules/_pickle.c /^static PyType_Spec pdata_spec = {$/;" v file: +pdb_invoke Lib/test/test_pdb.py /^def pdb_invoke(method, arg):$/;" f +pdbcmd_sig_re Doc/tools/extensions/pyspecific.py /^pdbcmd_sig_re = re.compile(r'([a-z()!]+)\\s*(.*)')$/;" v +pdf Lib/statistics.py /^ def pdf(self, x):$/;" m class:NormalDist +peak_traced_memory Include/internal/pycore_tracemalloc.h /^ size_t peak_traced_memory;$/;" m struct:_tracemalloc_runtime_state +peek Lib/_pyio.py /^ def peek(self, size=0):$/;" m class:BufferedRWPair +peek Lib/_pyio.py /^ def peek(self, size=0):$/;" m class:BufferedRandom +peek Lib/_pyio.py /^ def peek(self, size=0):$/;" m class:BufferedReader +peek Lib/bz2.py /^ def peek(self, n=0):$/;" m class:BZ2File +peek Lib/gzip.py /^ def peek(self, n):$/;" m class:GzipFile +peek Lib/http/client.py /^ def peek(self, n=-1):$/;" m class:HTTPResponse +peek Lib/lzma.py /^ def peek(self, size=-1):$/;" m class:LZMAFile +peek Lib/test/pickletester.py /^ def peek(self, *args):$/;" m class:UnseekableIO +peek Lib/weakref.py /^ def peek(self):$/;" m class:finalize +peek Lib/zipfile/__init__.py /^ def peek(self, n=1):$/;" m class:ZipExtFile +peek Modules/_pickle.c /^ PyObject *peek; \/* peek() method of the input stream, or NULL *\/$/;" m struct:UnpicklerObject file: +peek Objects/frameobject.c /^peek(int64_t stack, int n)$/;" f file: +peek Tools/cases_generator/plexer.py /^ def peek(self, raw: bool = False) -> Token | None:$/;" m class:PLexer +peek Tools/peg_generator/pegen/tokenizer.py /^ def peek(self) -> tokenize.TokenInfo:$/;" m class:Tokenizer +peek_and_iter Tools/c-analyzer/c_common/iterutil.py /^def peek_and_iter(items):$/;" f +peer_create Lib/tkinter/__init__.py /^ def peer_create(self, newPathName, cnf={}, **kw): # new in Tk 8.5$/;" m class:Text +peer_names Lib/tkinter/__init__.py /^ def peer_names(self): # new in Tk 8.5$/;" m class:Text +pem_ctx_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pem_ctx_st(Structure):$/;" c +pem_password_cb Lib/test/test_lib2to3/data/infinite_recursion.py /^pem_password_cb = CFUNCTYPE(c_int, STRING, c_int, c_int, c_void_p)$/;" v +pem_recip_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pem_recip_st(Structure):$/;" c +pen Lib/turtle.py /^ def pen(self, pen=None, **pendict):$/;" m class:TPen +pencolor Lib/turtle.py /^ def pencolor(self, *args):$/;" m class:TPen +pendin Parser/tokenizer.h /^ int pendin; \/* Pending indents (if > 0) or dedents (if < 0) *\/$/;" m struct:tok_state +pending Include/internal/pycore_ceval_state.h /^ struct _pending_calls pending;$/;" m struct:_ceval_state typeref:struct:_ceval_state::_pending_calls +pending Lib/ssl.py /^ def pending(self):$/;" m class:SSLObject +pending Lib/ssl.py /^ def pending(self):$/;" m class:SSLSocket +pending Modules/_winapi.c /^ int pending;$/;" m struct:__anon535 file: +pending Objects/listobject.c /^ struct s_slice pending[MAX_MERGE_PENDING];$/;" m struct:s_MergeState typeref:struct:s_MergeState::s_slice file: +pending_bytes Modules/_io/textio.c /^ PyObject *pending_bytes; \/\/ data waiting to be written.$/;" m struct:textio file: +pending_bytes_count Modules/_io/textio.c /^ Py_ssize_t pending_bytes_count;$/;" m struct:textio file: +pending_exception Modules/_lsprof.c /^pending_exception(ProfilerObject *pObj)$/;" f file: +pending_identify Modules/_testinternalcapi.c /^pending_identify(PyObject *self, PyObject *args)$/;" f file: +pending_identify_result Modules/_testinternalcapi.c /^} pending_identify_result;$/;" v typeref:struct:__anon565 file: +pending_mainthread Include/internal/pycore_ceval_state.h /^ struct _pending_calls pending_mainthread;$/;" m struct:_ceval_runtime_state typeref:struct:_ceval_runtime_state::_pending_calls +pending_threadfunc Modules/_testcapimodule.c /^pending_threadfunc(PyObject *self, PyObject *arg)$/;" f file: +pending_threadfunc Modules/_testinternalcapi.c /^pending_threadfunc(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +pendingcalls_submit Lib/test/test_capi/test_misc.py /^ def pendingcalls_submit(self, l, n):$/;" m class:TestPendingCalls +pendingcalls_thread Lib/test/test_capi/test_misc.py /^ def pendingcalls_thread(self, context):$/;" m class:TestPendingCalls +pendingcalls_wait Lib/test/test_capi/test_misc.py /^ def pendingcalls_wait(self, l, n, context = None):$/;" m class:TestPendingCalls +pendingcr Modules/_io/textio.c /^ unsigned int pendingcr: 1;$/;" m struct:nldecoder_object file: +pendown Lib/turtle.py /^ def pendown(self):$/;" m class:TPen +pensize Lib/turtle.py /^ def pensize(self, width=None):$/;" m class:TPen +pentl Lib/turtledemo/bytedesign.py /^ def pentl(self, side, ang, scale):$/;" m class:Designer +pentpiece Lib/turtledemo/bytedesign.py /^ def pentpiece(self, initpos, scale):$/;" m class:Designer +pentr Lib/turtledemo/bytedesign.py /^ def pentr(self, side, ang, scale):$/;" m class:Designer +penup Lib/turtle.py /^ def penup(self):$/;" m class:TPen +pep495_eq_exception Modules/_datetimemodule.c /^pep495_eq_exception(PyObject *self, PyObject *other,$/;" f file: +per_instruction_opcodes Include/cpython/code.h /^ uint8_t *per_instruction_opcodes;$/;" m struct:__anon229 +per_instruction_tools Include/cpython/code.h /^ uint8_t *per_instruction_tools;$/;" m struct:__anon229 +perf Include/internal/pycore_ceval_state.h /^ } perf;$/;" m struct:_ceval_runtime_state typeref:struct:_ceval_runtime_state::__anon166 +perf_code_arena Python/perf_trampoline.c 192;" d file: +perf_command_works Lib/test/test_perf_profiler.py /^def perf_command_works():$/;" f +perf_map Include/sysmodule.h /^ FILE* perf_map;$/;" m struct:__anon2 +perf_map_file Python/perf_trampoline.c 194;" d file: +perf_map_state Python/sysmodule.c /^static PerfMapState perf_map_state;$/;" v file: +perf_map_write_entry Python/perf_trampoline.c /^perf_map_write_entry(void *state, const void *code_addr,$/;" f file: +perf_profiling Include/cpython/initconfig.h /^ int perf_profiling;$/;" m struct:PyConfig +perf_profiling Lib/test/test_embed.py /^ perf_profiling=0,$/;" v class:InitConfigTests +perf_status Python/perf_trampoline.c 190;" d file: +perf_status_t Include/internal/pycore_ceval_state.h /^} perf_status_t;$/;" t typeref:enum:__anon165 +performSearch PC/launcher2.c /^performSearch(SearchInfo *search, EnvironmentInfo **envs)$/;" f +perm_comb Modules/mathmodule.c /^perm_comb(PyObject *n, unsigned long long k, int iscomb)$/;" f file: +perm_comb_small Modules/mathmodule.c /^perm_comb_small(unsigned long long n, unsigned long long k, int iscomb)$/;" f file: +permanent_generation Include/internal/pycore_gc.h /^ struct gc_generation permanent_generation;$/;" m struct:_gc_runtime_state typeref:struct:_gc_runtime_state::gc_generation +permission_bits Lib/test/test_stat.py /^ permission_bits = {$/;" v class:TestFilemode +permuations_methods Modules/itertoolsmodule.c /^static PyMethodDef permuations_methods[] = {$/;" v file: +permutations Lib/test/test_buffer.py /^ permutations = rpermutation$/;" v +permutations1 Lib/test/test_itertools.py /^ def permutations1(iterable, r=None):$/;" f function:TestBasicOps.test_permutations +permutations2 Lib/test/test_itertools.py /^ def permutations2(iterable, r=None):$/;" f function:TestBasicOps.test_permutations +permutations_dealloc Modules/itertoolsmodule.c /^permutations_dealloc(permutationsobject *po)$/;" f file: +permutations_next Modules/itertoolsmodule.c /^permutations_next(permutationsobject *po)$/;" f file: +permutations_reduce Modules/itertoolsmodule.c /^permutations_reduce(permutationsobject *po, PyObject *Py_UNUSED(ignored))$/;" f file: +permutations_setstate Modules/itertoolsmodule.c /^permutations_setstate(permutationsobject *po, PyObject *state)$/;" f file: +permutations_sizeof Modules/itertoolsmodule.c /^permutations_sizeof(permutationsobject *po, void *unused)$/;" f file: +permutations_slots Modules/itertoolsmodule.c /^static PyType_Slot permutations_slots[] = {$/;" v file: +permutations_spec Modules/itertoolsmodule.c /^static PyType_Spec permutations_spec = {$/;" v file: +permutations_traverse Modules/itertoolsmodule.c /^permutations_traverse(permutationsobject *po, visitproc visit, void *arg)$/;" f file: +permutations_type Modules/itertoolsmodule.c /^ PyTypeObject *permutations_type;$/;" m struct:__anon400 file: +permutationsobject Modules/itertoolsmodule.c /^} permutationsobject;$/;" t typeref:struct:__anon416 file: +permute_left_option_groups Tools/clinic/clinic.py /^def permute_left_option_groups(l):$/;" f +permute_optional_groups Tools/clinic/clinic.py /^def permute_optional_groups(left, required, right):$/;" f +permute_right_option_groups Tools/clinic/clinic.py /^def permute_right_option_groups(l):$/;" f +perror Lib/tokenize.py /^ def perror(message):$/;" f function:main +pers_func Modules/_pickle.c /^ PyObject *pers_func; \/* persistent_id() method, can be NULL *\/$/;" m struct:PicklerObject file: +pers_func Modules/_pickle.c /^ PyObject *pers_func; \/* persistent_load() method, can be NULL. *\/$/;" m struct:UnpicklerObject file: +pers_func_self Modules/_pickle.c /^ PyObject *pers_func_self; \/* borrowed reference to self if pers_func$/;" m struct:PicklerObject file: +pers_func_self Modules/_pickle.c /^ PyObject *pers_func_self; \/* borrowed reference to self if pers_func$/;" m struct:UnpicklerObject file: +persistent_id Doc/includes/dbpickle.py /^ def persistent_id(self, obj):$/;" m class:DBPickler +persistent_id Lib/pickle.py /^ def persistent_id(self, obj):$/;" m class:_Pickler +persistent_id Lib/test/pickletester.py /^ def persistent_id(self, obj):$/;" m class:AbstractPickleTests.test_evil_pickler_mutating_collection.check.EvilPickler +persistent_id Lib/test/pickletester.py /^ def persistent_id(self, obj):$/;" m class:AbstractIdentityPersistentPicklerTests +persistent_id Lib/test/pickletester.py /^ def persistent_id(self, object):$/;" m class:AbstractPersistentPicklerTests +persistent_id Lib/test/test_pickle.py /^ def persistent_id(cls, obj):$/;" m class:PyIdPersPicklerTests.test_pickler_reference_cycle.PersPickler +persistent_id Lib/test/test_pickle.py /^ def persistent_id(obj):$/;" m class:PyIdPersPicklerTests.test_pickler_reference_cycle.PersPickler +persistent_id Lib/test/test_pickle.py /^ def persistent_id(subself, obj):$/;" m class:PersistentPicklerUnpicklerMixin.dumps.PersPickler +persistent_id Lib/test/test_pickle.py /^ def persistent_id(subself, obj):$/;" m class:PyIdPersPicklerTests.test_pickler_reference_cycle.PersPickler +persistent_load Doc/includes/dbpickle.py /^ def persistent_load(self, pid):$/;" m class:DBUnpickler +persistent_load Lib/pickle.py /^ def persistent_load(self, pid):$/;" m class:_Unpickler +persistent_load Lib/test/pickletester.py /^ def persistent_load(self, oid):$/;" m class:AbstractPersistentPicklerTests +persistent_load Lib/test/pickletester.py /^ def persistent_load(self, pid):$/;" m class:AbstractIdentityPersistentPicklerTests +persistent_load Lib/test/test_pickle.py /^ def persistent_load(cls, pid):$/;" m class:PyIdPersPicklerTests.test_unpickler_reference_cycle.PersUnpickler +persistent_load Lib/test/test_pickle.py /^ def persistent_load(pid):$/;" m class:PyIdPersPicklerTests.test_unpickler_reference_cycle.PersUnpickler +persistent_load Lib/test/test_pickle.py /^ def persistent_load(subself, obj):$/;" m class:PersistentPicklerUnpicklerMixin.loads.PersUnpickler +persistent_load Lib/test/test_pickle.py /^ def persistent_load(subself, pid):$/;" m class:PyIdPersPicklerTests.test_unpickler_reference_cycle.PersUnpickler +personal Modules/_blake2/impl/blake2.h /^ uint8_t personal[BLAKE2B_PERSONALBYTES]; \/\/ 64$/;" m struct:__blake2b_param +personal Modules/_blake2/impl/blake2.h /^ uint8_t personal[BLAKE2S_PERSONALBYTES]; \/\/ 32$/;" m struct:__blake2s_param +pex Lib/test/test_yield_from.py /^ def pex(e):$/;" f function:TestPEP380Operation.test_value_attribute_of_StopIteration_exception +pffi_type Modules/_ctypes/ctypes.h /^ ffi_type *pffi_type; \/* always statically allocated *\/$/;" m struct:fielddesc +pffi_type Modules/_ctypes/ctypes.h /^ ffi_type *pffi_type;$/;" m struct:tagPyCArgObject +pformat Lib/pprint.py /^ def pformat(self, object):$/;" m class:PrettyPrinter +pformat Lib/pprint.py /^def pformat(object, indent=1, width=80, depth=None, *,$/;" f +pfractions Lib/test/test_decimal.py /^pfractions = import_fresh_module('fractions', fresh=['fractions'])$/;" v +pfunc Include/object.h /^ void *pfunc; \/* function pointer *\/$/;" m struct:__anon252 +pgettext Lib/gettext.py /^ def pgettext(self, context, message):$/;" m class:GNUTranslations +pgettext Lib/gettext.py /^ def pgettext(self, context, message):$/;" m class:NullTranslations +pgettext Lib/gettext.py /^def pgettext(context, message):$/;" f +pgo_job PCbuild/build.bat /^set pgo_job=-m test --pgo$/;" v +phase0 Lib/filecmp.py /^ def phase0(self): # Compare everything except common subdirectories$/;" m class:dircmp +phase1 Lib/filecmp.py /^ def phase1(self): # Compute common names$/;" m class:dircmp +phase2 Lib/filecmp.py /^ def phase2(self): # Distinguish files, directories, funnies$/;" m class:dircmp +phase3 Lib/filecmp.py /^ def phase3(self): # Find out differences between common files$/;" m class:dircmp +phase4 Lib/filecmp.py /^ def phase4(self): # Find out differences between common subdirectories$/;" m class:dircmp +phase4_closure Lib/filecmp.py /^ def phase4_closure(self): # Recursively call phase4() on subdirectories$/;" m class:dircmp +phrasebook Modules/unicodename_db.h /^static const unsigned char phrasebook[] = {$/;" v +phrasebook_offset1 Modules/unicodename_db.h /^static const unsigned short phrasebook_offset1[] = {$/;" v +phrasebook_offset2 Modules/unicodename_db.h /^static const unsigned int phrasebook_offset2[] = {$/;" v +phrasebook_shift Modules/unicodename_db.h 8795;" d +phrasebook_short Modules/unicodename_db.h 8796;" d +pi Lib/test/test_json/test_enum.py /^ pi = PI$/;" v class:FloatNum +pi Lib/test/test_xml_etree.py /^ def pi(self, target, data):$/;" m class:ElementTreeTest.test_custom_builder.Builder +pi Lib/xml/etree/ElementTree.py /^ def pi(self, target, data):$/;" m class:C14NWriterTarget +pi Lib/xml/etree/ElementTree.py /^ def pi(self, target, text=None):$/;" m class:TreeBuilder +pi Modules/mathmodule.c /^static const double pi = 3.141592653589793238462643383279502884197;$/;" v file: +pi_cdecimal Modules/_decimal/tests/bench.py /^def pi_cdecimal():$/;" f +pi_code Objects/codeobject.c /^ PyCodeObject* pi_code;$/;" m struct:__anon744 file: +pi_column Objects/codeobject.c /^ int pi_column;$/;" m struct:__anon744 file: +pi_decimal Modules/_decimal/tests/bench.py /^def pi_decimal():$/;" f +pi_digits Tools/ccbench/ccbench.py /^ def pi_digits():$/;" f function:task_pidigits.calc_ndigits +pi_endcolumn Objects/codeobject.c /^ int pi_endcolumn;$/;" m struct:__anon744 file: +pi_endline Objects/codeobject.c /^ int pi_endline;$/;" m struct:__anon744 file: +pi_event_obj Modules/_elementtree.c /^ PyObject *pi_event_obj;$/;" m struct:__anon385 file: +pi_factory Modules/_elementtree.c /^ PyObject *pi_factory;$/;" m struct:__anon381 file: +pi_factory Modules/_elementtree.c /^ PyObject *pi_factory;$/;" m struct:__anon385 file: +pi_float Modules/_decimal/tests/bench.py /^def pi_float():$/;" f +pi_handler Lib/xml/dom/expatbuilder.py /^ def pi_handler(self, target, data):$/;" m class:ExpatBuilder +pi_offset Objects/codeobject.c /^ int pi_offset;$/;" m struct:__anon744 file: +pi_range Objects/codeobject.c /^ PyCodeAddressRange pi_range;$/;" m struct:__anon744 file: +pick Lib/tkinter/tix.py /^ def pick(self, index):$/;" m class:ComboBox +pickaddr Lib/test/test_socketserver.py /^ def pickaddr(self, proto):$/;" m class:SocketServerTest +pickle Lib/copyreg.py /^def pickle(ob_type, pickle_function, constructor_ob=None):$/;" f +pickleRoundTrip Lib/test/test_xml_etree.py /^ def pickleRoundTrip(self, obj, name, dumper, loader, proto):$/;" m class:ElementTestCase +pickle_C Lib/test/test_copy.py /^ def pickle_C(obj):$/;" f function:TestCopy.test_copy_registry +pickle_C Lib/test/test_copy.py /^ def pickle_C(obj):$/;" f function:TestCopy.test_deepcopy_registry +pickle_C Lib/test/test_copyreg.py /^def pickle_C(c):$/;" f +pickle_by_enum_name Lib/enum.py /^def pickle_by_enum_name(self, proto):$/;" f +pickle_by_global_name Lib/enum.py /^def pickle_by_global_name(self, proto):$/;" f +pickle_choices Lib/test/datetimetester.py /^pickle_choices = [(pickle, pickle, proto)$/;" v +pickle_clear Modules/_pickle.c /^pickle_clear(PyObject *m)$/;" f file: +pickle_code Lib/idlelib/rpc.py /^def pickle_code(co):$/;" f +pickle_complex Lib/copyreg.py /^def pickle_complex(c):$/;" f +pickle_deprecated Lib/test/test_itertools.py /^def pickle_deprecated(testfunc):$/;" f +pickle_free Modules/_pickle.c /^pickle_free(PyObject *m)$/;" f file: +pickle_loads Lib/test/datetimetester.py /^pickle_loads = {pickle.loads, pickle._loads}$/;" v +pickle_methods Modules/_pickle.c /^static struct PyMethodDef pickle_methods[] = {$/;" v typeref:struct:PyMethodDef file: +pickle_slots Modules/_pickle.c /^static PyModuleDef_Slot pickle_slots[] = {$/;" v file: +pickle_test Lib/test/test_ipaddress.py /^ def pickle_test(self, addr):$/;" m class:CommonTestMixin +pickle_traverse Modules/_pickle.c /^pickle_traverse(PyObject *m, visitproc visit, void *arg)$/;" f file: +pickle_union Lib/copyreg.py /^def pickle_union(obj):$/;" f +picklebuf_as_buffer Objects/picklebufobject.c /^static PyBufferProcs picklebuf_as_buffer = {$/;" v file: +picklebuf_clear Objects/picklebufobject.c /^picklebuf_clear(PyPickleBufferObject *self)$/;" f file: +picklebuf_dealloc Objects/picklebufobject.c /^picklebuf_dealloc(PyPickleBufferObject *self)$/;" f file: +picklebuf_getbuf Objects/picklebufobject.c /^picklebuf_getbuf(PyPickleBufferObject *self, Py_buffer *view, int flags)$/;" f file: +picklebuf_methods Objects/picklebufobject.c /^static PyMethodDef picklebuf_methods[] = {$/;" v file: +picklebuf_new Objects/picklebufobject.c /^picklebuf_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +picklebuf_raw Objects/picklebufobject.c /^picklebuf_raw(PyPickleBufferObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +picklebuf_release Objects/picklebufobject.c /^picklebuf_release(PyPickleBufferObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +picklebuf_releasebuf Objects/picklebufobject.c /^picklebuf_releasebuf(PyPickleBufferObject *self, Py_buffer *view)$/;" f file: +picklebuf_traverse Objects/picklebufobject.c /^picklebuf_traverse(PyPickleBufferObject *self, visitproc visit, void *arg)$/;" f file: +pickled Lib/test/pickletester.py /^ pickled = writer.concatenate_chunks()$/;" v class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +pickler Lib/test/test_pickle.py /^ pickler = _pickle.Pickler$/;" v class:.CDumpPickle_LoadPickle +pickler Lib/test/test_pickle.py /^ pickler = _pickle.Pickler$/;" v class:.CIdPersPicklerTests +pickler Lib/test/test_pickle.py /^ pickler = _pickle.Pickler$/;" v class:.CPersPicklerTests +pickler Lib/test/test_pickle.py /^ pickler = _pickle.Pickler$/;" v class:.CPicklerTests +pickler Lib/test/test_pickle.py /^ pickler = pickle._Pickler$/;" v class:.DumpPickle_CLoadPickle +pickler Lib/test/test_pickle.py /^ pickler = pickle._Pickler$/;" v class:PyIdPersPicklerTests +pickler Lib/test/test_pickle.py /^ pickler = pickle._Pickler$/;" v class:PyPersPicklerTests +pickler Lib/test/test_pickle.py /^ pickler = pickle._Pickler$/;" v class:PyPicklerTests +pickler Modules/_pickle.c /^ PicklerObject *pickler; \/* Pickler whose memo table we're proxying. *\/$/;" m struct:__anon452 file: +pickler_class Lib/test/pickletester.py /^ pickler_class = None$/;" v class:AbstractPicklerUnpicklerObjectTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = CustomCPicklerClass$/;" v class:.CPicklerHookTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = _pickle.Pickler$/;" v class:.CPicklerUnpicklerObjectTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = pickle.Pickler$/;" v class:.CChainDispatchTableTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = pickle.Pickler$/;" v class:.CDispatchTableTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = CustomPyPicklerClass$/;" v class:PyPicklerHookTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = pickle._Pickler$/;" v class:PyChainDispatchTableTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = pickle._Pickler$/;" v class:PyDispatchTableTests +pickler_class Lib/test/test_pickle.py /^ pickler_class = pickle._Pickler$/;" v class:PyPicklerUnpicklerObjectTests +pickler_type_slots Modules/_pickle.c /^static PyType_Slot pickler_type_slots[] = {$/;" v file: +pickler_type_spec Modules/_pickle.c /^static PyType_Spec pickler_type_spec = {$/;" v file: +picklerproxy_methods Modules/_pickle.c /^static PyMethodDef picklerproxy_methods[] = {$/;" v file: +pickletest Lib/test/test_itertools.py /^ def pickletest(self, protocol, it, stop=4, take=1, compare=None):$/;" m class:TestBasicOps +pickling_metaclass Lib/test/pickletester.py /^class pickling_metaclass(type):$/;" c +piclose Lib/html/parser.py /^piclose = re.compile('>')$/;" v +pid Lib/multiprocessing/process.py /^ pid = ident$/;" v class:BaseProcess +pid Lib/multiprocessing/process.py /^ pid = ident$/;" v class:_ParentProcess +pid_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pid_t = __darwin_pid_t$/;" v +pid_t PC/pyconfig.h /^typedef int pid_t;$/;" t +pie Lib/test/pickletester.py /^ def pie(self):$/;" m class:AbstractPickleTests.test_py_methods.PyMethodsTest.Nested +pieces Python/bytecodes.c /^static PyObject **pieces, **values;$/;" v file: +pip_cmd_checker Lib/test/test_venv.py /^ def pip_cmd_checker(cmd, **kwargs):$/;" f function:BasicTest.test_upgrade_dependencies +pipe Lib/asyncio/windows_utils.py /^def pipe(*, duplex=False, overlapped=(True, True), bufsize=BUFSIZE):$/;" f +pipe Lib/test/test_import/__init__.py /^ def pipe(self):$/;" m class:SubinterpImportTests +pipe Lib/test/test_threading.py /^ def pipe(self):$/;" m class:SubinterpThreadingTests +pipe_connection_lost Lib/asyncio/protocols.py /^ def pipe_connection_lost(self, fd, exc):$/;" m class:SubprocessProtocol +pipe_connection_lost Lib/asyncio/subprocess.py /^ def pipe_connection_lost(self, fd, exc):$/;" m class:SubprocessStreamProtocol +pipe_connection_lost Lib/test/test_asyncio/test_events.py /^ def pipe_connection_lost(self, fd, exc):$/;" m class:MySubprocessProtocol +pipe_connection_lost Lib/test/test_asyncio/test_subprocess.py /^ def pipe_connection_lost(self, fd, exc) -> None:$/;" m class:SubprocessMixin.test_subprocess_consistent_callbacks.MyProtocol +pipe_data_received Lib/asyncio/protocols.py /^ def pipe_data_received(self, fd, data):$/;" m class:SubprocessProtocol +pipe_data_received Lib/asyncio/subprocess.py /^ def pipe_data_received(self, fd, data):$/;" m class:SubprocessStreamProtocol +pipe_data_received Lib/test/test_asyncio/test_events.py /^ def pipe_data_received(self, fd, data):$/;" m class:MySubprocessProtocol +pipe_data_received Lib/test/test_asyncio/test_subprocess.py /^ def pipe_data_received(self, fd, data) -> None:$/;" m class:SubprocessMixin.test_subprocess_consistent_callbacks.MyProtocol +pipe_reader Lib/test/test_io.py /^ def pipe_reader():$/;" f function:IOTest.test_optional_abilities +pipe_writer Lib/test/test_io.py /^ def pipe_writer():$/;" f function:IOTest.test_optional_abilities +pipepager Lib/pydoc.py /^def pipepager(text, cmd):$/;" f +pipes Lib/test/test_pipes.py /^pipes = import_deprecated("pipes")$/;" v +pixels_conv Lib/test/test_tkinter/support.py /^def pixels_conv(value):$/;" f +pkcs7_digest_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_digest_st(Structure):$/;" c +pkcs7_enc_content_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_enc_content_st(Structure):$/;" c +pkcs7_encrypted_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_encrypted_st(Structure):$/;" c +pkcs7_enveloped_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_enveloped_st(Structure):$/;" c +pkcs7_issuer_and_serial_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_issuer_and_serial_st(Structure):$/;" c +pkcs7_recip_info_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_recip_info_st(Structure):$/;" c +pkcs7_signed_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_signed_st(Structure):$/;" c +pkcs7_signedandenveloped_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_signedandenveloped_st(Structure):$/;" c +pkcs7_signer_info_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_signer_info_st(Structure):$/;" c +pkcs7_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs7_st(Structure):$/;" c +pkcs8_priv_key_info_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class pkcs8_priv_key_info_st(Structure):$/;" c +pkg_recipes Mac/BuildScript/build-installer.py /^def pkg_recipes():$/;" f +pkg_with_non_ascii_description Lib/test/test_importlib/test_main.py /^ def pkg_with_non_ascii_description(site_dir):$/;" m class:NonASCIITests +pkg_with_non_ascii_description_egg_info Lib/test/test_importlib/test_main.py /^ def pkg_with_non_ascii_description_egg_info(site_dir):$/;" m class:NonASCIITests +pkgcontext Include/internal/pycore_import.h /^ const char * pkgcontext;$/;" m struct:_import_runtime_state +pkgcontext Python/import.c /^_Py_thread_local const char *pkgcontext = NULL;$/;" v +pl Lib/test/test_plistlib.py /^ pl = {$/;" v class:TestPlutil +place Lib/idlelib/textview.py /^ def place(self, **kwargs):$/;" m class:AutoHideScrollbar +place_configure Lib/tkinter/__init__.py /^ def place_configure(self, cnf={}, **kw):$/;" m class:Place +place_forget Lib/tkinter/__init__.py /^ def place_forget(self):$/;" m class:Place +place_info Lib/tkinter/__init__.py /^ def place_info(self):$/;" m class:Place +place_slaves Lib/tkinter/__init__.py /^ def place_slaves(self):$/;" m class:Misc +plain Lib/pydoc.py /^def plain(text):$/;" f +plain Lib/test/test_decorators.py /^ def plain(x):$/;" f function:TestClassDecorators.test_simple +plain Lib/test/test_zipfile/test_core.py /^ plain = b'zipfile.py encryption test'$/;" v class:DecryptionTests +plain2 Lib/test/test_zipfile/test_core.py /^ plain2 = b'\\x00'*512$/;" v class:DecryptionTests +plain_names Parser/pegen.h /^ asdl_arg_seq *plain_names;$/;" m struct:__anon662 +plainpager Lib/pydoc.py /^def plainpager(text):$/;" f +plaintext Lib/pydoc.py /^plaintext = _PlainTextDoc()$/;" v +plaintext Lib/test/test_uu.py /^plaintext = b"The symbols on top of your keyboard are !@#$%^&*()_+|~\\n"$/;" v +plane Modules/cjkcodecs/_codecs_iso2022.c /^ unsigned char plane;$/;" m struct:iso2022_designation file: +platf PCbuild/build.bat /^if "%~1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts$/;" v +platf PCbuild/build.bat /^set platf=x64$/;" v +platform Lib/platform.py /^def platform(aliased=False, terse=False):$/;" f +platform Tools/wasm/wasm_build.py /^ def platform(self) -> Platform:$/;" m class:Host +platforms_choices Tools/wasm/wasm_build.py /^platforms_choices = list(p.name for p in _profiles) + ["cleanall"]$/;" v +platforms_help Tools/wasm/wasm_build.py /^platforms_help = list(p.name for p in _profiles if p.support_level) + ["cleanall"]$/;" v +platforms_to_skip Lib/test/test_threading.py /^platforms_to_skip = ('netbsd5', 'hp-ux11')$/;" v +platlibdir Include/cpython/initconfig.h /^ wchar_t *platlibdir;$/;" m struct:PyConfig +platlibdir Lib/test/test_getpath.py /^ platlibdir=None,$/;" v +platlibdir Modules/getpath.py /^platlibdir = config.get('platlibdir') or PLATLIBDIR$/;" v +platstdlib_dir Lib/test/test_getpath.py /^ platstdlib_dir=None,$/;" v +platstdlib_dir Modules/getpath.py /^ platstdlib_dir = exec_prefix$/;" v +platstdlib_dir Modules/getpath.py /^ platstdlib_dir = real_executable_dir$/;" v +platstdlib_dir Modules/getpath.py /^ platstdlib_dir = joinpath($/;" v +platstdlib_dir Modules/getpath.py /^ platstdlib_dir = joinpath(exec_prefix, PLATSTDLIB_LANDMARK)$/;" v +platstdlib_dir Modules/getpath.py /^ platstdlib_dir = real_executable_dir$/;" v +platstdlib_dir Modules/getpath.py /^platstdlib_dir = None$/;" v +play Lib/turtledemo/minimal_hanoi.py /^def play():$/;" f +play_sound_file Lib/test/test_ossaudiodev.py /^ def play_sound_file(self, data, rate, ssize, nchannels):$/;" m class:OSSAudioDevTests +plot Lib/turtledemo/chaos.py /^def plot(fun, start, color):$/;" f +plural Lib/_pydatetime.py /^ def plural(n):$/;" f function:timedelta.__str__ +plural Lib/test/test_regrtest.py /^ def plural(count):$/;" f function:BaseTestCase.check_executed_tests +plus Doc/includes/mp_pool.py /^def plus(a, b):$/;" f +plus Doc/includes/mp_workers.py /^def plus(a, b):$/;" f +plus Lib/_pydecimal.py /^ def plus(self, a):$/;" m class:Context +plus Lib/test/test_builtin.py /^ def plus(*v):$/;" f function:BuiltinTest.test_map +pm Lib/pdb.py /^def pm():$/;" f +pmem_next Python/dtoa.c 339;" d file: +pmem_next Python/dtoa.c 391;" d file: +pmerge Objects/typeobject.c /^pmerge(PyObject *acc, PyObject **to_merge, Py_ssize_t to_merge_size)$/;" f file: +pname Objects/typeobject.c 9664;" d file: +pname Objects/typeobject.c 9693;" d file: +po Modules/_curses_panel.c /^ PyCursesPanelObject *po;$/;" m struct:_list_of_panels file: +point Modules/_ctypes/_ctypes_test.c /^} point;$/;" t typeref:struct:tagpoint file: +pointer Modules/_ctypes/callproc.c /^pointer(PyObject *self, PyObject *arg)$/;" f file: +pointer Objects/capsule.c /^ void *pointer;$/;" m struct:__anon726 file: +pointer_size Lib/test/test_bigmem.py /^pointer_size = 4 if sys.maxsize < 2**32 else 8$/;" v +pointer_size Lib/test/test_marshal.py /^pointer_size = 8 if sys.maxsize > 0xFFFFFFFF else 4$/;" v +pointerswap Modules/_decimal/libmpdec/transpose.h /^static inline void pointerswap(mpd_uint_t **a, mpd_uint_t **b)$/;" f +polar_complex Lib/test/test_cmath.py /^ def polar_complex(z):$/;" f function:CMathTests.test_specific_values +polar_with_errno_set Lib/test/test_cmath.py /^ def polar_with_errno_set(z):$/;" f function:CMathTests.test_polar_errno +policies Lib/test/test_email/test_policy.py /^ policies = {$/;" v class:PolicyAPITests +policy Lib/test/test_email/__init__.py /^ policy = compat32$/;" v class:TestEmailBase +policy Lib/test/test_email/test__header_value_parser.py /^ policy = policy.default$/;" v class:TestFolding +policy Lib/test/test_email/test_contentmanager.py /^ policy = policy.default$/;" v class:TestContentManager +policy Lib/test/test_email/test_contentmanager.py /^ policy = policy.default.clone(max_line_length=60,$/;" v class:TestRawDataManager +policy Lib/test/test_email/test_defect_handling.py /^ policy = TestDefectsBase.policy$/;" v class:TestDefectRaising +policy Lib/test/test_email/test_defect_handling.py /^ policy = policy.clone(raise_on_defect=True)$/;" v class:TestDefectRaising +policy Lib/test/test_email/test_defect_handling.py /^ policy = policy.default$/;" v class:TestDefectsBase +policy Lib/test/test_email/test_generator.py /^ policy = policy.default$/;" v class:TestGeneratorBase +policy Lib/test/test_email/test_inversion.py /^ policy = policy.default$/;" v class:TestInversion +policy Lib/test/test_email/test_message.py /^ policy = policy.default$/;" v class:Test +policy Lib/test/test_email/test_message.py /^ policy = policy.default$/;" v class:TestEmailMessageBase +policy_defaults Lib/test/test_email/test_policy.py /^ policy_defaults = compat32_defaults.copy()$/;" v class:PolicyAPITests +poll Lib/multiprocessing/connection.py /^ def poll(self, timeout=0.0):$/;" m class:_ConnectionBase +poll Lib/multiprocessing/dummy/connection.py /^ def poll(self, timeout=0.0):$/;" m class:Connection +poll Lib/multiprocessing/popen_fork.py /^ def poll(self, flag=os.WNOHANG):$/;" m class:Popen +poll Lib/multiprocessing/popen_forkserver.py /^ def poll(self, flag=os.WNOHANG):$/;" m class:Popen +poll Lib/multiprocessing/popen_spawn_win32.py /^ def poll(self):$/;" m class:Popen +poll Lib/subprocess.py /^ def poll(self):$/;" m class:Popen +poll Lib/test/support/asyncore.py /^def poll(timeout=0.0, map=None):$/;" f +poll Lib/test/test_webbrowser.py /^ def poll(self):$/;" m class:PopenMock +poll2 Lib/test/support/asyncore.py /^def poll2(timeout=0.0, map=None):$/;" f +poll3 Lib/test/support/asyncore.py /^poll3 = poll2 # Alias for backward compatibility$/;" v +pollObject Modules/selectmodule.c /^} pollObject;$/;" t typeref:struct:__anon574 file: +poll_Type Modules/selectmodule.c /^ PyTypeObject *poll_Type;$/;" m struct:__anon572 file: +poll_Type_slots Modules/selectmodule.c /^static PyType_Slot poll_Type_slots[] = {$/;" v file: +poll_Type_spec Modules/selectmodule.c /^static PyType_Spec poll_Type_spec = {$/;" v file: +poll_dealloc Modules/selectmodule.c /^poll_dealloc(pollObject *self)$/;" f file: +poll_methods Modules/selectmodule.c /^static PyMethodDef poll_methods[] = {$/;" v file: +poll_running Modules/selectmodule.c /^ int poll_running;$/;" m struct:__anon574 file: +poll_subprocess Lib/idlelib/pyshell.py /^ def poll_subprocess(self):$/;" m class:ModifiedInterpreter +pollmessage Lib/idlelib/rpc.py /^ def pollmessage(self, wait):$/;" m class:SocketIO +pollpacket Lib/idlelib/rpc.py /^ def pollpacket(self, wait):$/;" m class:SocketIO +pollresponse Lib/idlelib/rpc.py /^ def pollresponse(self, myseq, wait):$/;" m class:SocketIO +pool Modules/expat/xmlparse.c /^ STRING_POOL pool;$/;" m struct:__anon617 file: +pool Modules/itertoolsmodule.c /^ PyObject *pool; \/* input converted to a tuple *\/$/;" m struct:__anon414 file: +pool Modules/itertoolsmodule.c /^ PyObject *pool; \/* input converted to a tuple *\/$/;" m struct:__anon415 file: +pool Modules/itertoolsmodule.c /^ PyObject *pool; \/* input converted to a tuple *\/$/;" m struct:__anon416 file: +poolAppend Modules/expat/xmlparse.c /^poolAppend(STRING_POOL *pool, const ENCODING *enc, const char *ptr,$/;" f file: +poolAppendChar Modules/expat/xmlparse.c 600;" d file: +poolAppendString Modules/expat/xmlparse.c /^poolAppendString(STRING_POOL *pool, const XML_Char *s) {$/;" f file: +poolBytesToAllocateFor Modules/expat/xmlparse.c /^poolBytesToAllocateFor(int blockSize) {$/;" f file: +poolChop Modules/expat/xmlparse.c 596;" d file: +poolClear Modules/expat/xmlparse.c /^poolClear(STRING_POOL *pool) {$/;" f file: +poolCopyString Modules/expat/xmlparse.c /^poolCopyString(STRING_POOL *pool, const XML_Char *s) {$/;" f file: +poolCopyStringN Modules/expat/xmlparse.c /^poolCopyStringN(STRING_POOL *pool, const XML_Char *s, int n) {$/;" f file: +poolDestroy Modules/expat/xmlparse.c /^poolDestroy(STRING_POOL *pool) {$/;" f file: +poolDiscard Modules/expat/xmlparse.c 598;" d file: +poolEnd Modules/expat/xmlparse.c 594;" d file: +poolFinish Modules/expat/xmlparse.c 599;" d file: +poolGrow Modules/expat/xmlparse.c /^poolGrow(STRING_POOL *pool) {$/;" f file: +poolInit Modules/expat/xmlparse.c /^poolInit(STRING_POOL *pool, const XML_Memory_Handling_Suite *ms) {$/;" f file: +poolLastChar Modules/expat/xmlparse.c 597;" d file: +poolLength Modules/expat/xmlparse.c 595;" d file: +poolStart Modules/expat/xmlparse.c 593;" d file: +poolStoreString Modules/expat/xmlparse.c /^poolStoreString(STRING_POOL *pool, const ENCODING *enc, const char *ptr,$/;" f file: +pool_address Include/internal/pycore_obmalloc.h /^ pymem_block* pool_address;$/;" m struct:arena_object +pool_header Include/internal/pycore_obmalloc.h /^struct pool_header {$/;" s +pool_in_process Lib/test/_test_multiprocessing.py /^def pool_in_process():$/;" f +pool_is_in_list Objects/obmalloc.c /^pool_is_in_list(const poolp target, poolp list)$/;" f file: +poolp Include/internal/pycore_obmalloc.h /^typedef struct pool_header *poolp;$/;" t typeref:struct:pool_header +pools Include/internal/pycore_obmalloc.h /^ struct _obmalloc_pools pools;$/;" m struct:_obmalloc_state typeref:struct:_obmalloc_state::_obmalloc_pools +pools Modules/itertoolsmodule.c /^ PyObject *pools; \/* tuple of pool tuples *\/$/;" m struct:__anon413 file: +pop Lib/_collections_abc.py /^ def pop(self):$/;" m class:MutableSet +pop Lib/_collections_abc.py /^ def pop(self, index=-1):$/;" m class:MutableSequence +pop Lib/_collections_abc.py /^ def pop(self, key, default=__marker):$/;" m class:MutableMapping +pop Lib/_weakrefset.py /^ def pop(self):$/;" m class:WeakSet +pop Lib/collections/__init__.py /^ def pop(self, i=-1):$/;" m class:UserList +pop Lib/collections/__init__.py /^ def pop(self, key, *args):$/;" m class:ChainMap +pop Lib/collections/__init__.py /^ def pop(self, key, default=__marker):$/;" m class:OrderedDict +pop Lib/email/header.py /^ def pop(self):$/;" m class:_Accumulator +pop Lib/lib2to3/pgen2/parse.py /^ def pop(self):$/;" m class:Parser +pop Lib/logging/config.py /^ def pop(self, idx=-1):$/;" m class:ConvertingList +pop Lib/logging/config.py /^ def pop(self, key, default=None):$/;" m class:ConvertingDict +pop Lib/mailbox.py /^ def pop(self, key, default=None):$/;" m class:Mailbox +pop Lib/turtle.py /^ def pop(self):$/;" m class:Tbuffer +pop Lib/turtledemo/minimal_hanoi.py /^ def pop(self):$/;" m class:Tower +pop Lib/turtledemo/sorting_animate.py /^ def pop(self, key):$/;" m class:Shelf +pop Lib/weakref.py /^ def pop(self, key, *args):$/;" m class:WeakKeyDictionary +pop Lib/weakref.py /^ def pop(self, key, *args):$/;" m class:WeakValueDictionary +pop Lib/xml/dom/pulldom.py /^ def pop(self):$/;" m class:PullDOM +pop_all Lib/contextlib.py /^ def pop_all(self):$/;" m class:_BaseExitStack +pop_all Lib/socketserver.py /^ def pop_all(self):$/;" m class:_Threads +pop_and_collect Lib/test/test_weakref.py /^ def pop_and_collect(lst):$/;" f function:MappingTestCase.check_threaded_weak_dict_copy +pop_eof_matcher Lib/email/feedparser.py /^ def pop_eof_matcher(self):$/;" m class:BufferedSubFile +pop_except_block Python/flowgraph.c /^pop_except_block(ExceptStack *stack) {$/;" f file: +pop_from Lib/email/header.py /^ def pop_from(self, i=0):$/;" m class:_Accumulator +pop_inlined_comprehension_state Python/compile.c /^pop_inlined_comprehension_state(struct compiler *c, location loc,$/;" f file: +pop_mark Lib/pickle.py /^ def pop_mark(self):$/;" m class:_Unpickler +pop_next Lib/test/test_bdb.py /^ def pop_next(self):$/;" m class:Tracer +pop_source Lib/shlex.py /^ def pop_source(self):$/;" m class:shlex +pop_stack Tools/clinic/cpp.py /^ def pop_stack() -> TokenAndCondition:$/;" f function:Monitor.writeline +pop_to_level Objects/frameobject.c /^pop_to_level(int64_t stack, int level) {$/;" f file: +pop_trailing_ws Lib/email/_header_value_parser.py /^ def pop_trailing_ws(self):$/;" m class:Terminal +pop_tzdata_modules Lib/test/test_zoneinfo/_support.py /^ def pop_tzdata_modules():$/;" f function:ZoneInfoTestBase.tzpath_context +pop_value Objects/frameobject.c /^pop_value(int64_t stack)$/;" f file: +pop_written Lib/test/test_io.py /^ def pop_written(self):$/;" m class:MockNonBlockWriterIO +popcount_digit Objects/longobject.c /^popcount_digit(digit d)$/;" f file: +popdown Lib/tkinter/tix.py /^ def popdown(self):$/;" m class:DialogShell +popdown Lib/tkinter/tix.py /^ def popdown(self):$/;" m class:DirSelectDialog +popdown Lib/tkinter/tix.py /^ def popdown(self):$/;" m class:ExFileSelectDialog +popdown Lib/tkinter/tix.py /^ def popdown(self):$/;" m class:FileSelectDialog +popen Lib/os.py /^ def popen(cmd, mode="r", buffering=-1):$/;" f +popen_via_context_manager Lib/test/test_subprocess.py /^ def popen_via_context_manager(*args, **kwargs):$/;" f function:MiscTests.test_context_manager_keyboardinterrupt_no_kill +popitem Lib/_collections_abc.py /^ def popitem(self):$/;" m class:MutableMapping +popitem Lib/collections/__init__.py /^ def popitem(self):$/;" m class:ChainMap +popitem Lib/collections/__init__.py /^ def popitem(self, last=True):$/;" m class:OrderedDict +popitem Lib/configparser.py /^ def popitem(self):$/;" m class:RawConfigParser +popitem Lib/mailbox.py /^ def popitem(self):$/;" m class:Mailbox +popitem Lib/weakref.py /^ def popitem(self):$/;" m class:WeakKeyDictionary +popitem Lib/weakref.py /^ def popitem(self):$/;" m class:WeakValueDictionary +populate_tzstr_header Lib/test/test_zoneinfo/test_zoneinfo.py /^ def populate_tzstr_header(cls):$/;" m class:TZStrTest +popup Lib/tkinter/tix.py /^ def popup(self):$/;" m class:DialogShell +popup Lib/tkinter/tix.py /^ def popup(self):$/;" m class:DirSelectDialog +popup Lib/tkinter/tix.py /^ def popup(self):$/;" m class:ExFileSelectDialog +popup Lib/tkinter/tix.py /^ def popup(self):$/;" m class:FileSelectDialog +popup_event Lib/idlelib/debugger.py /^ def popup_event(self, event):$/;" m class:StackViewer +popup_event Lib/idlelib/scrolledlist.py /^ def popup_event(self, event):$/;" m class:ScrolledList +port Lib/ftplib.py /^ port = FTP_PORT$/;" v class:FTP +port Lib/http/server.py /^ port=args.port,$/;" v class:.DualStackServer +port Lib/nntplib.py /^ port = args.port$/;" v class:NNTP +port Lib/pydoc.py /^ port = val$/;" v class:cli.BadUsage +port Lib/pydoc.py /^ port = 0$/;" v class:cli.BadUsage +port Lib/test/test_imaplib.py /^ port = 143$/;" v class:RemoteIMAPTest +port Lib/test/test_imaplib.py /^ port = 993$/;" v class:RemoteIMAP_SSLTest +port Lib/test/test_urllib2_localnet.py /^ port = 80$/;" v class:GetRequestHandler.FakeHTTPRequestHandler +port Lib/urllib/parse.py /^ def port(self):$/;" m class:_NetlocResultMixinBase +port Modules/socketmodule.h /^ ULONG port;$/;" m union:SOCKADDR_BTH_REDEF::__anon397 +portable_lseek Modules/_io/fileio.c /^portable_lseek(fileio *self, PyObject *posobj, int whence, bool suppress_pipe_error)$/;" f file: +ports Tools/wasm/wasm_build.py /^ ports=EMSCRIPTEN_ROOT \/ "embuilder",$/;" v +ports Tools/wasm/wasm_build.py /^ ports=None,$/;" v +pos Include/cpython/modsupport.h /^ int pos; \/* number of positional-only arguments *\/$/;" m struct:_PyArg_Parser +pos Include/cpython/unicodeobject.h /^ Py_ssize_t pos;$/;" m struct:__anon236 +pos Lib/operator.py /^def pos(a):$/;" f +pos Lib/re/_parser.py /^ def pos(self):$/;" m class:Tokenizer +pos Lib/turtle.py /^ def pos(self):$/;" m class:TNavigator +pos Modules/_io/bufferedio.c /^ Py_off_t pos;$/;" m struct:__anon435 file: +pos Modules/_io/bytesio.c /^ Py_ssize_t pos;$/;" m struct:__anon439 file: +pos Modules/_io/stringio.c /^ Py_ssize_t pos;$/;" m struct:__anon433 file: +pos Modules/_sre/sre.h /^ Py_ssize_t pos, endpos; \/* current target slice *\/$/;" m struct:__anon455 +pos Modules/_sre/sre.h /^ Py_ssize_t pos, endpos;$/;" m struct:__anon458 +pos Modules/mmapmodule.c /^ Py_ssize_t pos; \/* relative to offset *\/$/;" m struct:__anon490 file: +pos0key1 Lib/test/test_grammar.py /^ def pos0key1(*, key): return key$/;" f function:GrammarTests.test_funcdef +pos0key1 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def pos0key1(*, key): return key$/;" f function:GrammarTests.testFuncdef +pos2key2 Lib/test/test_grammar.py /^ def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2$/;" f function:GrammarTests.test_funcdef +pos2key2 Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def pos2key2(p1, p2, *, k1, k2=100): return p1,p2,k1,k2$/;" f function:GrammarTests.testFuncdef +pos2key2dict Lib/test/test_grammar.py /^ def pos2key2dict(p1, p2, *, k1=100, k2, **kwarg): return p1,p2,k1,k2,kwarg$/;" f function:GrammarTests.test_funcdef +pos2key2dict Lib/test/test_lib2to3/data/py3_test_grammar.py /^ def pos2key2dict(p1, p2, *, k1=100, k2, **kwarg): return p1,p2,k1,k2,kwarg$/;" f function:GrammarTests.testFuncdef +position Lib/turtle.py /^ position = pos$/;" v class:TNavigator +position Modules/expat/xmltok.h /^typedef struct position {$/;" s +position_window Lib/idlelib/calltip_w.py /^ def position_window(self):$/;" m class:CalltipWindow +position_window Lib/idlelib/tooltip.py /^ def position_window(self):$/;" m class:TooltipBase +positional Lib/test/test_functools.py /^ positional = functools.partialmethod(capture, 1)$/;" v class:TestPartialMethod.A +positional_only Lib/test/test_call.py /^ def positional_only(arg, \/):$/;" m class:A +positional_only_arg Lib/test/inspect_fodder2.py /^def positional_only_arg(a, \/):$/;" f +positional_only_passed_as_keyword Python/ceval.c /^positional_only_passed_as_keyword(PyThreadState *tstate, PyCodeObject *co,$/;" f file: +positional_patterns_rule Parser/parser.c /^positional_patterns_rule(Parser *p)$/;" f file: +positional_patterns_type Parser/parser.c 176;" d file: +positionfrom Lib/tkinter/__init__.py /^ positionfrom = wm_positionfrom$/;" v class:Wm +positions_from_location_table Lib/test/test_code.py /^def positions_from_location_table(code):$/;" f +positionsiter_dealloc Objects/codeobject.c /^positionsiter_dealloc(positionsiterator* pi)$/;" f file: +positionsiter_next Objects/codeobject.c /^positionsiter_next(positionsiterator* pi)$/;" f file: +positionsiterator Objects/codeobject.c /^} positionsiterator;$/;" t typeref:struct:__anon744 file: +positive_address Lib/test/test_ctypes/test_prototypes.py /^def positive_address(a):$/;" f +positive_exp Lib/test/test_strtod.py /^ def positive_exp(n):$/;" f function:StrtodTests.test_large_exponents +positive_lookahead Tools/peg_generator/pegen/parser.py /^ def positive_lookahead(self, func: Callable[..., T], *args: object) -> T:$/;" m class:Parser +posix Lib/test/test_posix.py /^posix = import_helper.import_module('posix')$/;" v +posix Lib/test/test_posixpath.py /^ posix = None$/;" v +posix Lib/test/test_shutil.py /^ posix = None$/;" v +posix_constants_confstr Modules/posixmodule.c /^static struct constdef posix_constants_confstr[] = {$/;" v typeref:struct:constdef file: +posix_constants_pathconf Modules/posixmodule.c /^static struct constdef posix_constants_pathconf[] = {$/;" v typeref:struct:constdef file: +posix_constants_sysconf Modules/posixmodule.c /^static struct constdef posix_constants_sysconf[] = {$/;" v typeref:struct:constdef file: +posix_do_stat Modules/posixmodule.c /^posix_do_stat(PyObject *module, const char *function_name, path_t *path,$/;" f file: +posix_error Modules/posixmodule.c /^posix_error(void)$/;" f file: +posix_fildes_fd Modules/posixmodule.c /^posix_fildes_fd(int fd, int (*func)(int))$/;" f file: +posix_getcwd Modules/posixmodule.c /^posix_getcwd(int use_bytes)$/;" f file: +posix_locale Lib/test/test_utf8_mode.py /^ def posix_locale(self):$/;" m class:UTF8ModeTests +posix_methods Modules/posixmodule.c /^static PyMethodDef posix_methods[] = {$/;" v file: +posix_path_error Modules/posixmodule.c /^posix_path_error(path_t *path)$/;" f file: +posix_path_object_error Modules/posixmodule.c /^posix_path_object_error(PyObject *path)$/;" f file: +posix_spawn_file_actions_identifier Modules/posixmodule.c /^enum posix_spawn_file_actions_identifier {$/;" g file: +posixmodile_slots Modules/posixmodule.c /^static PyModuleDef_Slot posixmodile_slots[] = {$/;" v file: +posixmodule Modules/posixmodule.c /^static struct PyModuleDef posixmodule = {$/;" v typeref:struct:PyModuleDef file: +posixmodule_exec Modules/posixmodule.c /^posixmodule_exec(PyObject *m)$/;" f file: +posonly_keywords Modules/clinic/_testclinic.c.h /^posonly_keywords(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_keywords_impl Modules/_testclinic.c /^posonly_keywords_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +posonly_keywords_kwonly Modules/clinic/_testclinic.c.h /^posonly_keywords_kwonly(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_keywords_kwonly_impl Modules/_testclinic.c /^posonly_keywords_kwonly_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +posonly_keywords_kwonly_opt Modules/clinic/_testclinic.c.h /^posonly_keywords_kwonly_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_keywords_kwonly_opt_impl Modules/_testclinic.c /^posonly_keywords_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +posonly_keywords_opt Modules/clinic/_testclinic.c.h /^posonly_keywords_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_keywords_opt_impl Modules/_testclinic.c /^posonly_keywords_opt_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +posonly_keywords_opt_kwonly_opt Modules/clinic/_testclinic.c.h /^posonly_keywords_opt_kwonly_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_keywords_opt_kwonly_opt_impl Modules/_testclinic.c /^posonly_keywords_opt_kwonly_opt_impl(PyObject *module, PyObject *a,$/;" f file: +posonly_kwonly Modules/clinic/_testclinic.c.h /^posonly_kwonly(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_kwonly_impl Modules/_testclinic.c /^posonly_kwonly_impl(PyObject *module, PyObject *a, PyObject *b)$/;" f file: +posonly_kwonly_opt Modules/clinic/_testclinic.c.h /^posonly_kwonly_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_kwonly_opt_impl Modules/_testclinic.c /^posonly_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +posonly_opt_keywords_opt Modules/clinic/_testclinic.c.h /^posonly_opt_keywords_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_opt_keywords_opt_impl Modules/_testclinic.c /^posonly_opt_keywords_opt_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +posonly_opt_keywords_opt_kwonly_opt Modules/clinic/_testclinic.c.h /^posonly_opt_keywords_opt_kwonly_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_opt_keywords_opt_kwonly_opt_impl Modules/_testclinic.c /^posonly_opt_keywords_opt_kwonly_opt_impl(PyObject *module, PyObject *a,$/;" f file: +posonly_opt_kwonly_opt Modules/clinic/_testclinic.c.h /^posonly_opt_kwonly_opt(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_opt_kwonly_opt_impl Modules/_testclinic.c /^posonly_opt_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +posonly_sum Lib/test/test_keywordonlyarg.py /^def posonly_sum(pos_arg1, *arg, **kwarg):$/;" f +posonly_vararg Modules/clinic/_testclinic.c.h /^posonly_vararg(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +posonly_vararg_impl Modules/_testclinic.c /^posonly_vararg_impl(PyObject *module, PyObject *a, PyObject *b,$/;" f file: +posonlyargcount Include/internal/pycore_code.h /^ int posonlyargcount;$/;" m struct:_PyCodeConstructor +posonlyargs Include/internal/pycore_ast.h /^ asdl_arg_seq *posonlyargs;$/;" m struct:_arguments +posonlyargs Include/internal/pycore_ast_state.h /^ PyObject *posonlyargs;$/;" m struct:ast_state +possibleModules PC/frozen_dllmain.c /^static char *possibleModules[] = {$/;" v file: +post Lib/nntplib.py /^ def post(self, data):$/;" m class:NNTP +post Lib/tkinter/__init__.py /^ def post(self, x, y):$/;" m class:Menu +post_handshake_auth Modules/_ssl.c /^ int post_handshake_auth;$/;" m struct:__anon579 file: +post_init Lib/test/test_dataclasses.py /^ def post_init(self, y):$/;" f function:TestMakeDataclass.test_init_var +post_line_parenthesized_lambda1 Lib/test/inspect_fodder2.py /^post_line_parenthesized_lambda1 = (lambda: ()$/;" v +post_mortem Lib/pdb.py /^def post_mortem(t=None):$/;" f +post_order Lib/lib2to3/pytree.py /^ def post_order(self):$/;" m class:Base +post_order Lib/lib2to3/pytree.py /^ def post_order(self):$/;" m class:Leaf +post_order Lib/lib2to3/pytree.py /^ def post_order(self):$/;" m class:Node +post_parsing Tools/clinic/clinic.py /^ def post_parsing(self) -> str:$/;" m class:CConverter +post_parsing Tools/clinic/clinic.py /^ def post_parsing(self):$/;" m class:str_converter +post_setup Lib/venv/__init__.py /^ def post_setup(self, context):$/;" m class:EnvBuilder +post_widget Lib/tkinter/tix.py /^ def post_widget(self, widget, x, y):$/;" m class:PopupMenu +postargs Tools/c-analyzer/c_parser/preprocessor/common.py /^ postargs = (includes + postargs) if postargs else includes$/;" v +postcmd Lib/cmd.py /^ def postcmd(self, stop, line):$/;" m class:Cmd +postcmd Lib/pstats.py /^ def postcmd(self, stop, line):$/;" m class:f8.ProfileBrowser +postloop Lib/cmd.py /^ def postloop(self):$/;" m class:Cmd +postloop Lib/test/test_cmd.py /^ def postloop(self):$/;" m class:samplecmdclass +postscript Lib/tkinter/__init__.py /^ def postscript(self, cnf={}, **kw):$/;" m class:Canvas +postwindowsmenu Lib/idlelib/editor.py /^ def postwindowsmenu(self):$/;" m class:EditorWindow +postwindowsmenu Lib/idlelib/macosx.py /^ def postwindowsmenu(menu=menu):$/;" f function:overrideRootMenu +pow Lib/operator.py /^def pow(a, b):$/;" f +pow3 Doc/includes/mp_pool.py /^def pow3(x):$/;" f +pow5mult Python/dtoa.c /^pow5mult(Bigint *b, int k)$/;" f file: +power Lib/_pydecimal.py /^ def power(self, a, b, modulo=None):$/;" m class:Context +power Modules/expat/xmlparse.c /^ unsigned char power;$/;" m struct:__anon608 file: +power Objects/listobject.c /^ int power; \/* node "level" for powersort merge strategy *\/$/;" m struct:s_slice file: +power_rule Parser/parser.c /^power_rule(Parser *p)$/;" f file: +power_type Parser/parser.c 215;" d file: +powerloop Objects/listobject.c /^powerloop(Py_ssize_t s1, Py_ssize_t n1, Py_ssize_t n2, Py_ssize_t n)$/;" f file: +powerset Lib/test/test_set.py /^ def powerset(s):$/;" f function:TestFrozenSet.test_hash_effectiveness +powerset Lib/test/test_set.py /^def powerset(U):$/;" f +powtest Lib/test/test_pow.py /^ def powtest(self, type):$/;" m class:PowTest +pp Lib/pprint.py /^def pp(object, *args, sort_dicts=False, **kwargs):$/;" f +pprint Lib/email/_header_value_parser.py /^ def pprint(self):$/;" m class:Terminal +pprint Lib/email/_header_value_parser.py /^ def pprint(self, indent=''):$/;" m class:TokenList +pprint Lib/pprint.py /^ def pprint(self, object):$/;" m class:PrettyPrinter +pprint Lib/pprint.py /^def pprint(object, stream=None, indent=1, width=80, depth=None, *,$/;" f +pprint Tools/i18n/makelocalealias.py /^def pprint(data):$/;" f +ppro_mulmod Modules/_decimal/libmpdec/umodarith.h /^ppro_mulmod(mpd_uint_t a, mpd_uint_t b, double *dmod, uint32_t *dinvmod)$/;" f +ppro_mulmod2 Modules/_decimal/libmpdec/umodarith.h /^ppro_mulmod2(mpd_uint_t *a0, mpd_uint_t b0, mpd_uint_t *a1, mpd_uint_t b1,$/;" f +ppro_mulmod2c Modules/_decimal/libmpdec/umodarith.h /^ppro_mulmod2c(mpd_uint_t *a0, mpd_uint_t *a1, mpd_uint_t w,$/;" f +ppro_powmod Modules/_decimal/libmpdec/umodarith.h /^ppro_powmod(mpd_uint_t base, mpd_uint_t exp, double *dmod, uint32_t *dinvmod)$/;" f +ppro_setmodulus Modules/_decimal/libmpdec/numbertheory.h /^ppro_setmodulus(int modnum, mpd_uint_t *umod, double *dmod, uint32_t dinvmod[3])$/;" f +ppro_size3_ntt Modules/_decimal/libmpdec/fourstep.c /^ppro_size3_ntt(mpd_uint_t *x1, mpd_uint_t *x2, mpd_uint_t *x3, mpd_uint_t w3table[3],$/;" f file: +ppstr Lib/email/_header_value_parser.py /^ def ppstr(self, indent=''):$/;" m class:TokenList +prcal Lib/calendar.py /^prcal = c.pryear$/;" v +prdict Tools/freeze/parsesetup.py /^def prdict(d):$/;" f +pre_input_hook Modules/readline.c /^ PyObject *pre_input_hook;$/;" m struct:__anon339 file: +pre_order Lib/lib2to3/pytree.py /^ def pre_order(self):$/;" m class:Base +pre_order Lib/lib2to3/pytree.py /^ def pre_order(self):$/;" m class:Leaf +pre_order Lib/lib2to3/pytree.py /^ def pre_order(self):$/;" m class:Node +pre_render Tools/clinic/clinic.py /^ def pre_render(self):$/;" m class:CConverter +pre_render Tools/clinic/clinic.py /^ def pre_render(self):$/;" m class:self_converter +preallocate_memerrors Objects/exceptions.c /^preallocate_memerrors(void)$/;" f file: +preallocated Include/internal/pycore_dtoa.h /^ double preallocated[Bigint_PREALLOC_SIZE];$/;" m struct:_dtoa_state +preallocated_next Include/internal/pycore_dtoa.h /^ double *preallocated_next;$/;" m struct:_dtoa_state +prec Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t prec; \/* fraction digits or significant digits *\/$/;" m struct:mpd_spec_t +prec Modules/_decimal/libmpdec/mpdecimal.h /^ mpd_ssize_t prec; \/* precision *\/$/;" m struct:mpd_context_t +prec Modules/_decimal/tests/deccheck.py /^ prec = random.randrange(1, 6)$/;" v +prec Modules/_decimal/tests/deccheck.py /^ prec = property(getprec, setprec)$/;" v class:Context +prec Modules/_decimal/tests/deccheck.py /^ prec=C.MAX_PREC,$/;" v +prec Objects/unicodeobject.c /^ int prec;$/;" m struct:unicode_format_arg_t file: +precfloat Lib/test/test_descr.py /^ class precfloat(float):$/;" c function:.test_basic_inheritance +precision Python/formatter_unicode.c /^ Py_ssize_t precision;$/;" m struct:__anon674 file: +preclean Lib/test/test_gc.py /^ def preclean(self):$/;" m class:GCCallbackTests +precmd Lib/cmd.py /^ def precmd(self, line):$/;" m class:Cmd +precmd Lib/pdb.py /^ def precmd(self, line):$/;" m class:Pdb +precmdline_get_preconfig Python/preconfig.c /^precmdline_get_preconfig(_PyPreCmdline *cmdline, const PyPreConfig *config)$/;" f file: +precmdline_parse_cmdline Python/preconfig.c /^precmdline_parse_cmdline(_PyPreCmdline *cmdline)$/;" f file: +precmdline_set_preconfig Python/preconfig.c /^precmdline_set_preconfig(const _PyPreCmdline *cmdline, PyPreConfig *config)$/;" f file: +preconfig Include/internal/pycore_initconfig.h /^PyAPI_FUNC(void) _PyPreConfig_InitCompatConfig(PyPreConfig *preconfig);$/;" v +preconfig Include/internal/pycore_runtime.h /^ PyPreConfig preconfig;$/;" m struct:pyruntimestate +preconfig_copy Python/preconfig.c /^preconfig_copy(PyPreConfig *config, const PyPreConfig *config2)$/;" f file: +preconfig_get_global_vars Python/preconfig.c /^preconfig_get_global_vars(PyPreConfig *config)$/;" f file: +preconfig_init_allocator Python/preconfig.c /^preconfig_init_allocator(PyPreConfig *config)$/;" f file: +preconfig_init_coerce_c_locale Python/preconfig.c /^preconfig_init_coerce_c_locale(PyPreConfig *config)$/;" f file: +preconfig_init_utf8_mode Python/preconfig.c /^preconfig_init_utf8_mode(PyPreConfig *config, const _PyPreCmdline *cmdline)$/;" f file: +preconfig_read Python/preconfig.c /^preconfig_read(PyPreConfig *config, _PyPreCmdline *cmdline)$/;" f file: +preconfig_set_global_vars Python/preconfig.c /^preconfig_set_global_vars(const PyPreConfig *config)$/;" f file: +pred_wrapper Lib/test/test_inspect.py /^ def pred_wrapper(pred):$/;" f function:TestClassesAndFunctions.test_getmembers_descriptors +predefinedEntityName Modules/expat/xmltok.h /^ int(PTRCALL *predefinedEntityName)(const ENCODING *, const char *,$/;" m struct:encoding +predefinedEntityName Modules/expat/xmltok_impl.c /^PREFIX(predefinedEntityName)(const ENCODING *enc, const char *ptr,$/;" f file: +predicate Lib/test/test_asyncio/test_locks.py /^ def predicate():$/;" f function:ConditionTests.test_wait_for +predicate Lib/textwrap.py /^ def predicate(line):$/;" f function:indent +predicates Lib/test/test_inspect.py /^ predicates = set([inspect.isbuiltin, inspect.isclass, inspect.iscode,$/;" v class:IsTestBase +preexec Lib/test/test_cmd_line.py /^ def preexec():$/;" f function:CmdLineTest._test_no_stdio +preferTabsPreferenceWarning Lib/idlelib/macosx.py /^def preferTabsPreferenceWarning():$/;" f +preferred Lib/test/test_webbrowser.py /^ preferred=preferred)$/;" v class:BrowserRegistrationTest._check_registration.ExampleBrowser +preferred_encoding Modules/_decimal/tests/formathelper.py /^preferred_encoding = {$/;" v +prefetched_idx Modules/_pickle.c /^ Py_ssize_t prefetched_idx; \/* index of first prefetched byte *\/$/;" m struct:UnpicklerObject file: +prefix Include/cpython/initconfig.h /^ wchar_t *prefix;$/;" m struct:PyConfig +prefix Include/pyhash.h /^ Py_hash_t prefix;$/;" m struct:__anon256::__anon257 +prefix Lib/lib2to3/pytree.py /^ def prefix(self):$/;" m class:Leaf +prefix Lib/lib2to3/pytree.py /^ def prefix(self):$/;" m class:Node +prefix Lib/lib2to3/pytree.py /^ def prefix(self, prefix):$/;" m class:Leaf +prefix Lib/lib2to3/pytree.py /^ def prefix(self, prefix):$/;" m class:Node +prefix Lib/test/test_getpath.py /^ prefix=None,$/;" v +prefix Lib/test/test_logging.py /^ prefix = 'Adapter'$/;" v class:LoggerAdapterTest.test_nested.Adapter +prefix Lib/test/test_tarfile.py /^ prefix = "r:"$/;" v class:ReadTest +prefix Lib/test/test_tarfile.py /^ prefix = "w:"$/;" v class:Bz2CompressWriteTest +prefix Lib/test/test_tarfile.py /^ prefix = "w:"$/;" v class:DeviceHeaderTest +prefix Lib/test/test_tarfile.py /^ prefix = "w:"$/;" v class:GzCompressWriteTest +prefix Lib/test/test_tarfile.py /^ prefix = "w:"$/;" v class:WriteTest +prefix Lib/test/test_tarfile.py /^ prefix = "w|"$/;" v class:Bz2CompressStreamWriteTest +prefix Lib/test/test_tarfile.py /^ prefix = "w|"$/;" v class:GzCompressStreamWriteTest +prefix Lib/test/test_tarfile.py /^ prefix = "w|"$/;" v class:StreamWriteTest +prefix Lib/test/test_tarfile.py /^ prefix = "x"$/;" v class:CreateWithXModeTest +prefix Lib/test/test_tarfile.py /^ prefix = "x:"$/;" v class:CreateTest +prefix Lib/test/test_tarfile.py /^ prefix="r|"$/;" v class:StreamReadTest +prefix Lib/xml/dom/minidom.py /^ prefix = EMPTY_PREFIX # non-null only for NS elements and attributes$/;" v class:Node +prefix Lib/xml/dom/minidom.py /^ prefix = property(_get_prefix, _set_prefix)$/;" v class:Attr +prefix Modules/expat/xmlparse.c /^ PREFIX *prefix;$/;" m struct:__anon616 file: +prefix Modules/expat/xmlparse.c /^ PREFIX *prefix;$/;" m struct:attribute_id file: +prefix Modules/expat/xmlparse.c /^ const XML_Char *prefix;$/;" m struct:__anon610 file: +prefix Modules/expat/xmlparse.c /^ struct prefix *prefix;$/;" m struct:binding typeref:struct:binding::prefix file: +prefix Modules/expat/xmlparse.c /^typedef struct prefix {$/;" s file: +prefix Modules/getpath.py /^ prefix = library_dir$/;" v +prefix Modules/getpath.py /^ prefix = executable_dir$/;" v +prefix Modules/getpath.py /^ prefix = library_dir$/;" v +prefix Modules/getpath.py /^ prefix = search_up(library_dir, ZIP_LANDMARK)$/;" v +prefix Modules/getpath.py /^ prefix = build_stdlib_prefix$/;" v +prefix Modules/getpath.py /^ prefix = search_up(executable_dir, ZIP_LANDMARK)$/;" v +prefix Modules/getpath.py /^ prefix = PREFIX$/;" v +prefix Modules/getpath.py /^ prefix = abspath('')$/;" v +prefix Modules/getpath.py /^ prefix = search_up(executable_dir, *STDLIB_LANDMARKS)$/;" v +prefix Modules/getpath.py /^ prefix = config.get('prefix') or PREFIX$/;" v +prefix Modules/getpath.py /^prefix = config.get('prefix')$/;" v +prefix PCbuild/rt.bat /^if "%1"=="-arm32" (set prefix=%pcbuild%arm32) & shift & goto CheckOpts$/;" v +prefix PCbuild/rt.bat /^if "%1"=="-arm64" (set prefix=%pcbuild%arm64) & shift & goto CheckOpts$/;" v +prefix PCbuild/rt.bat /^if "%1"=="-win32" (set prefix=%pcbuild%win32) & shift & goto CheckOpts$/;" v +prefix PCbuild/rt.bat /^if "%1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts$/;" v +prefix PCbuild/rt.bat /^if \/I %1 EQU ARM (set prefix=%pcbuild%arm32) & exit \/B 0$/;" v +prefix PCbuild/rt.bat /^if \/I %1 EQU ARM64 (set prefix=%pcbuild%arm64) & exit \/B 0$/;" v +prefix PCbuild/rt.bat /^if \/I %1 EQU Win32 (set prefix=%pcbuild%win32) & exit \/B 0$/;" v +prefix PCbuild/rt.bat /^if \/I %1 EQU x64 (set prefix=%pcbuild%amd64) & exit \/B 0$/;" v +prefix PCbuild/rt.bat /^if not defined prefix set prefix=%pcbuild%amd64$/;" v +prefix Python/pathconfig.c /^ wchar_t *prefix;$/;" m struct:_PyPathConfig file: +prefixLen Modules/expat/xmlparse.c /^ int prefixLen;$/;" m struct:__anon610 file: +prefixed_lines Lib/textwrap.py /^ def prefixed_lines():$/;" f function:indent +prefixes Lib/test/test_lib2to3/test_parser.py /^ prefixes = ("'", '"',$/;" v class:TestStringLiterals +prefixes Modules/expat/xmlparse.c /^ HASH_TABLE prefixes;$/;" m struct:__anon617 file: +prefixlen Lib/ipaddress.py /^ def prefixlen(self):$/;" m class:_BaseNetwork +preformat Lib/pydoc.py /^ def preformat(self, text):$/;" f +preinitialized Include/internal/pycore_runtime.h /^ int preinitialized;$/;" m struct:pyruntimestate +preinitializing Include/internal/pycore_runtime.h /^ int preinitializing;$/;" m struct:pyruntimestate +preloop Lib/cmd.py /^ def preloop(self):$/;" m class:Cmd +preloop Lib/pdb.py /^ def preloop(self):$/;" m class:Pdb +preloop Lib/test/test_cmd.py /^ def preloop(self):$/;" m class:samplecmdclass +prep PCbuild/prepare_ssl.py /^def prep(arch):$/;" f +prep_interpreter Lib/test/test__xxinterpchannels.py /^ def prep_interpreter(self, interp):$/;" m class:ChannelCloseFixture +prep_reraise_star Python/intrinsics.c /^prep_reraise_star(PyThreadState* unused, PyObject *orig, PyObject *excs)$/;" f file: +prepare Lib/graphlib.py /^ def prepare(self):$/;" m class:TopologicalSorter +prepare Lib/logging/handlers.py /^ def prepare(self, record):$/;" m class:QueueHandler +prepare Lib/logging/handlers.py /^ def prepare(self, record):$/;" m class:QueueListener +prepare Lib/multiprocessing/spawn.py /^def prepare(data):$/;" f +prepare Lib/test/test_asyncio/test_base_events.py /^ def prepare(self):$/;" m class:BaseLoopSockSendfileTests +prepare Lib/test/test_asyncio/test_proactor_events.py /^ def prepare(self):$/;" m class:ProactorEventLoopUnixSockSendfileTests +prepare Lib/test/test_asyncio/test_unix_events.py /^ def prepare(self):$/;" m class:SelectorEventLoopUnixSockSendfileTests +prepare Lib/test/test_configparser.py /^ def prepare(self, config_class):$/;" m class:Issue7005TestCase +prepare Lib/test/test_posix.py /^ def prepare(self):$/;" m class:TestPosixDirFd +prepare Lib/test/test_subprocess.py /^ def prepare():$/;" f function:POSIXProcessTestCase.test_surrogates_error_message +prepare Tools/freeze/test/freeze.py /^def prepare(script=None, outdir=None):$/;" f +prepareParser Lib/xml/sax/expatreader.py /^ def prepareParser(self, source):$/;" m class:ExpatParser +prepareParser Lib/xml/sax/xmlreader.py /^ def prepareParser(self, source):$/;" m class:IncrementalParser +prepare_broken_pipe_test Lib/test/test_asyncio/test_subprocess.py /^ def prepare_broken_pipe_test(self):$/;" m class:SubprocessMixin +prepare_child Lib/xml/etree/ElementPath.py /^def prepare_child(next, token):$/;" f +prepare_class Lib/types.py /^def prepare_class(name, bases=(), kwds=None):$/;" f +prepare_data Lib/test/test_statistics.py /^ def prepare_data(self):$/;" m class:TestHarmonicMean +prepare_data Lib/test/test_statistics.py /^ def prepare_data(self):$/;" m class:TestMedian +prepare_data Lib/test/test_statistics.py /^ def prepare_data(self):$/;" m class:TestMedianDataType +prepare_data Lib/test/test_statistics.py /^ def prepare_data(self):$/;" m class:TestMode +prepare_data Lib/test/test_statistics.py /^ def prepare_data(self):$/;" m class:UnivariateCommonMixin +prepare_descendant Lib/xml/etree/ElementPath.py /^def prepare_descendant(next, token):$/;" f +prepare_file Lib/test/test_posix.py /^ def prepare_file(self):$/;" m class:TestPosixDirFd +prepare_files Tools/iobench/iobench.py /^def prepare_files():$/;" f +prepare_input_source Lib/xml/sax/saxutils.py /^def prepare_input_source(source, base=""):$/;" f +prepare_localsplus Python/compile.c /^prepare_localsplus(_PyCompile_CodeUnitMetadata *umd, cfg_builder *g, int code_flags)$/;" f file: +prepare_parent Lib/xml/etree/ElementPath.py /^def prepare_parent(next, token):$/;" f +prepare_predicate Lib/xml/etree/ElementPath.py /^def prepare_predicate(next, token):$/;" f +prepare_s Modules/_struct.c /^prepare_s(PyStructObject *self)$/;" f file: +prepare_self Lib/xml/etree/ElementPath.py /^def prepare_self(next, token):$/;" f +prepare_sendfile Lib/test/test_asyncio/test_sendfile.py /^ def prepare_sendfile(self, *, is_ssl=False, close_after=0):$/;" m class:SendfileMixin +prepare_socksendfile Lib/test/test_asyncio/test_sendfile.py /^ def prepare_socksendfile(self):$/;" m class:SockSendfileMixin +prepare_star Lib/xml/etree/ElementPath.py /^def prepare_star(next, token):$/;" f +prepare_types_for_conservation_test Lib/test/test_statistics.py /^ def prepare_types_for_conservation_test(self):$/;" m class:UnivariateTypeMixin +prepare_values_for_repeated_single_test Lib/test/test_statistics.py /^ def prepare_values_for_repeated_single_test(self):$/;" m class:AverageMixin +prepare_values_for_repeated_single_test Lib/test/test_statistics.py /^ def prepare_values_for_repeated_single_test(self):$/;" m class:TestHarmonicMean +prepend Lib/gzip.py /^ def prepend(self, prepend=b''):$/;" m class:_PaddedFile +prepend Lib/pipes.py /^ def prepend(self, cmd, kind):$/;" m class:Template +prepend_syspath Lib/idlelib/pyshell.py /^ def prepend_syspath(self, filename):$/;" m class:ModifiedInterpreter +preprocess Tools/c-analyzer/c_parser/preprocessor/__init__.py /^ def preprocess(**kwargs):$/;" f function:get_preprocessor.get_file_preprocessor +preprocess Tools/c-analyzer/c_parser/preprocessor/__init__.py /^def preprocess(source, *,$/;" f +preprocess Tools/c-analyzer/c_parser/preprocessor/common.py /^def preprocess(tool, filename, cwd=None, **kwargs):$/;" f +preprocess Tools/c-analyzer/c_parser/preprocessor/gcc.py /^def preprocess(filename,$/;" f +preprocess Tools/c-analyzer/c_parser/preprocessor/pure.py /^def preprocess(lines, filename=None, cwd=None):$/;" f +preprocess Tools/c-analyzer/distutils/bcppcompiler.py /^ def preprocess (self,$/;" m class:BCPPCompiler +preprocess Tools/c-analyzer/distutils/ccompiler.py /^ def preprocess(self, source, output_file=None, macros=None,$/;" m class:CCompiler +preprocess Tools/c-analyzer/distutils/unixccompiler.py /^ def preprocess(self, source, output_file=None, macros=None,$/;" m class:UnixCCompiler +prepstr Lib/idlelib/editor.py /^def prepstr(s):$/;" f +press Lib/tkinter/dnd.py /^ def press(self, event):$/;" m class:Icon +pretty Tools/scripts/summarize_stats.py /^def pretty(defname):$/;" f +pretty_flags Lib/dis.py /^def pretty_flags(flags):$/;" f +pretty_printer_lookup Tools/gdb/libpython.py /^def pretty_printer_lookup(gdbval):$/;" f +prev Include/cpython/pystate.h /^ PyThreadState *prev;$/;" m struct:_ts +prev Include/internal/pycore_interp.h /^ struct _xidregitem *prev;$/;" m struct:_xidregitem typeref:struct:_xidregitem::_xidregitem +prev Lib/tkinter/ttk.py /^ def prev(self, item):$/;" m class:Treeview +prev Modules/_functoolsmodule.c /^ struct lru_list_elem *prev, *next; \/* borrowed links *\/$/;" m struct:lru_list_elem typeref:struct:lru_list_elem::lru_list_elem file: +prev Modules/_sre/sre.h /^ struct SRE_REPEAT_T *prev; \/* points to previous repeat context *\/$/;" m struct:SRE_REPEAT_T typeref:struct:SRE_REPEAT_T::SRE_REPEAT_T +prev Modules/_testbuffer.c /^ struct ndbuf *prev;$/;" m struct:ndbuf typeref:struct:ndbuf::ndbuf file: +prev Modules/_zoneinfo.c /^ StrongCacheNode *prev;$/;" m struct:StrongCacheNode file: +prev Objects/odictobject.c /^ _ODictNode *prev;$/;" m struct:_odictnode file: +prev PC/launcher2.c /^ struct EnvironmentInfo *prev;$/;" m struct:EnvironmentInfo typeref:struct:EnvironmentInfo::EnvironmentInfo file: +prev Python/perf_trampoline.c /^ *prev; \/\/ Pointer to the arena or NULL if this is the first arena.$/;" m struct:code_arena_st typeref:struct:code_arena_st::code_arena_st file: +prevPrefixBinding Modules/expat/xmlparse.c /^ struct binding *prevPrefixBinding;$/;" m struct:binding typeref:struct:binding::binding file: +prev_instr Include/internal/pycore_frame.h /^ _Py_CODEUNIT *prev_instr;$/;" m struct:_PyInterpreterFrame +prev_sibling Lib/lib2to3/pytree.py /^ def prev_sibling(self):$/;" m class:Base +prevarena Include/internal/pycore_obmalloc.h /^ struct arena_object* prevarena;$/;" m struct:arena_object typeref:struct:arena_object::arena_object +previous Include/cpython/pystate.h /^ struct _PyCFrame *previous;$/;" m struct:_PyCFrame typeref:struct:_PyCFrame::_PyCFrame +previous Include/cpython/pystate.h /^ struct _stack_chunk *previous;$/;" m struct:_stack_chunk typeref:struct:_stack_chunk::_stack_chunk +previous Include/internal/pycore_faulthandler.h /^ _Py_sighandler_t previous;$/;" m struct:faulthandler_user_signal +previous Include/internal/pycore_frame.h /^ struct _PyInterpreterFrame *previous;$/;" m struct:_PyInterpreterFrame typeref:struct:_PyInterpreterFrame::_PyInterpreterFrame +previous Lib/shelve.py /^ def previous(self):$/;" m class:BsdDbShelf +previous Modules/_lsprof.c /^ struct _ProfilerContext *previous;$/;" m struct:_ProfilerContext typeref:struct:_ProfilerContext::_ProfilerContext file: +previous Modules/faulthandler.c /^ _Py_sighandler_t previous;$/;" m struct:__anon559 file: +previous Objects/stringlib/localeutil.h /^ char previous;$/;" m struct:__anon702 +previous Tools/gdb/libpython.py /^ def previous(self):$/;" m class:PyFramePtr +previousSibling Lib/xml/dom/minidom.py /^ previousSibling = None$/;" v class:Node +previous_code_delta Objects/codeobject.c /^previous_code_delta(PyCodeAddressRange *bounds)$/;" f file: +previous_item Include/cpython/pystate.h /^ struct _err_stackitem *previous_item;$/;" m struct:_err_stackitem typeref:struct:_err_stackitem::_err_stackitem +previous_version Modules/unicodedata.c /^typedef struct previous_version {$/;" s file: +prevpool Include/internal/pycore_obmalloc.h /^ struct pool_header *prevpool; \/* previous pool "" *\/$/;" m struct:pool_header typeref:struct:pool_header::pool_header +prework Objects/stringlib/fastsearch.h /^} STRINGLIB(prework);$/;" v +primary_raw Parser/parser.c /^primary_raw(Parser *p)$/;" f file: +primary_rule Parser/parser.c /^primary_rule(Parser *p)$/;" f file: +primary_type Parser/parser.c 217;" d file: +print Lib/idlelib/iomenu.py /^ def print(self, event):$/;" m class:_io_binding.MyEditWin +print Lib/traceback.py /^ def print(self, *, file=None, chain=True):$/;" m class:TracebackException +print Tools/peg_generator/pegen/parser_generator.py /^ def print(self, *args: object) -> None:$/;" m class:ParserGenerator +print128 Modules/_hacl/include/krml/fstar_uint128_struct_endianness.h 60;" d +printErrorList Lib/unittest/runner.py /^ def printErrorList(self, flavour, errors):$/;" m class:TextTestResult +printErrors Lib/test/test_unittest/test_runner.py /^ def printErrors(self):$/;" m class:Test_TextTestRunner.test_startTestRun_stopTestRun_called.LoggingTextResult +printErrors Lib/test/test_unittest/test_runner.py /^ def printErrors(self):$/;" m class:Test_TextTestRunner.test_works_with_result_without_startTestRun_stopTestRun.OldTextResult +printErrors Lib/unittest/result.py /^ def printErrors(self):$/;" m class:TestResult +printErrors Lib/unittest/runner.py /^ def printErrors(self):$/;" m class:TextTestResult +print_ Lib/re/_compiler.py /^ def print_(*args, to=None):$/;" f function:dis.dis_ +print_2 Lib/re/_compiler.py /^ def print_2(*args):$/;" f function:dis.dis_ +print_ac Lib/lib2to3/btm_matcher.py /^ def print_ac(self):$/;" m class:BottomMatcher +print_all_nondst_folds Lib/test/datetimetester.py /^ def print_all_nondst_folds(cls, same_abbr=False, start_year=1):$/;" m class:ZoneInfo +print_arguments Lib/cgi.py /^def print_arguments():$/;" f +print_autogen Tools/unicode/genmap_support.py /^def print_autogen(fo, source):$/;" f +print_block Tools/clinic/clinic.py /^ def print_block(self, block, *, core_includes=False):$/;" m class:BlockPrinter +print_call_heading Lib/pstats.py /^ def print_call_heading(self, name_size, column_title):$/;" m class:Stats +print_call_line Lib/pstats.py /^ def print_call_line(self, name_size, source, call_dict, arrow="->"):$/;" m class:Stats +print_call_stats Python/specialize.c /^print_call_stats(FILE *out, CallStats *stats)$/;" f file: +print_callees Lib/pstats.py /^ def print_callees(self, *amount):$/;" m class:Stats +print_callers Lib/pstats.py /^ def print_callers(self, *amount):$/;" m class:Stats +print_cert Lib/test/make_ssl_certs.py /^def print_cert(path):$/;" f +print_chained Python/pythonrun.c /^print_chained(struct exception_print_context* ctx, PyObject *value,$/;" f file: +print_comparative_specialization_stats Tools/scripts/summarize_stats.py /^def print_comparative_specialization_stats(name, base_family_stats, head_family_stats, defines):$/;" f +print_config Modules/_decimal/tests/runall-memorydebugger.sh /^print_config ()$/;" f +print_delta Modules/_testcapimodule.c /^static void print_delta(int test, struct timeval *s, struct timeval *e)$/;" f file: +print_differences Tools/i18n/makelocalealias.py /^def print_differences(data, olddata):$/;" f +print_directory Lib/cgi.py /^def print_directory():$/;" f +print_environ Lib/cgi.py /^def print_environ(environ=os.environ):$/;" f +print_environ_usage Lib/cgi.py /^def print_environ_usage():$/;" f +print_error Lib/test/test_exceptions.py /^ def print_error():$/;" f function:ExceptionTests.test_exception_target_in_nested_scope +print_error Tools/build/verify_ensurepip_wheels.py /^def print_error(file_path: str, message: str) -> None:$/;" f +print_error_location_carets Python/traceback.c /^print_error_location_carets(PyObject *f, int offset, Py_ssize_t start_offset, Py_ssize_t end_offset,$/;" f file: +print_error_text Python/pythonrun.c /^print_error_text(PyObject *f, Py_ssize_t offset, Py_ssize_t end_offset,$/;" f file: +print_escape Parser/tokenizer.c /^print_escape(FILE *f, const char *s, Py_ssize_t size)$/;" f file: +print_exc Lib/idlelib/run.py /^ def print_exc(typ, exc, tb):$/;" f function:print_exception +print_exc Lib/timeit.py /^ def print_exc(self, file=None):$/;" m class:Timer +print_exc Lib/traceback.py /^def print_exc(limit=None, file=None, chain=True):$/;" f +print_exception Lib/cgi.py /^def print_exception(type=None, value=None, tb=None, limit=None):$/;" f +print_exception Lib/idlelib/run.py /^def print_exception():$/;" f +print_exception Lib/traceback.py /^ file=None, chain=True):$/;" f +print_exception Python/pythonrun.c /^print_exception(struct exception_print_context *ctx, PyObject *value)$/;" f file: +print_exception_cause_and_context Python/pythonrun.c /^print_exception_cause_and_context(struct exception_print_context *ctx,$/;" f file: +print_exception_file_and_line Python/pythonrun.c /^print_exception_file_and_line(struct exception_print_context *ctx,$/;" f file: +print_exception_group Python/pythonrun.c /^print_exception_group(struct exception_print_context *ctx, PyObject *value)$/;" f file: +print_exception_invalid_type Python/pythonrun.c /^print_exception_invalid_type(struct exception_print_context *ctx,$/;" f file: +print_exception_message Python/pythonrun.c /^print_exception_message(struct exception_print_context *ctx, PyObject *type,$/;" f file: +print_exception_notes Python/pythonrun.c /^print_exception_notes(struct exception_print_context *ctx, PyObject *value)$/;" f file: +print_exception_recursive Python/pythonrun.c /^print_exception_recursive(struct exception_print_context *ctx, PyObject *value)$/;" f file: +print_exception_seen_lookup Python/pythonrun.c /^print_exception_seen_lookup(struct exception_print_context *ctx,$/;" f file: +print_exception_suggestions Python/pythonrun.c /^print_exception_suggestions(struct exception_print_context *ctx,$/;" f file: +print_exception_traceback Python/pythonrun.c /^print_exception_traceback(struct exception_print_context *ctx, PyObject *value)$/;" f file: +print_expr Python/intrinsics.c /^print_expr(PyThreadState* tstate, PyObject *value)$/;" f file: +print_file_and_line Include/cpython/pyerrors.h /^ PyObject *print_file_and_line;$/;" m struct:__anon182 +print_form Lib/cgi.py /^def print_form(form):$/;" f +print_function Lib/__future__.py /^print_function = _Feature((2, 6, 0, "alpha", 2),$/;" v +print_grammar_ast Tools/peg_generator/pegen/grammar_visualizer.py /^ def print_grammar_ast(self, grammar: Grammar, printer: Callable[..., None] = print) -> None:$/;" m class:ASTGrammarPrinter +print_help Lib/argparse.py /^ def print_help(self, file=None):$/;" m class:ArgumentParser +print_help Lib/optparse.py /^ def print_help(self, file=None):$/;" m class:OptionParser +print_label Tools/iobench/iobench.py /^ def print_label(filename, func):$/;" f function:run_all_tests +print_last Lib/traceback.py /^def print_last(limit=None, file=None, chain=True):$/;" f +print_line Lib/ftplib.py /^def print_line(line):$/;" f +print_line Lib/pstats.py /^ def print_line(self, func): # hack: should print percentages$/;" m class:Stats +print_list Lib/traceback.py /^def print_list(extracted_list, file=None):$/;" f +print_log Lib/imaplib.py /^ def print_log(self):$/;" f function:IMAP4._untagged_response +print_memstats Tools/peg_generator/pegen/testutil.py /^def print_memstats() -> bool:$/;" f +print_node Lib/lib2to3/btm_matcher.py /^ def print_node(node):$/;" f function:BottomMatcher.print_ac +print_nodes_recursively Tools/peg_generator/pegen/grammar_visualizer.py /^ def print_nodes_recursively(self, node: Rule, prefix: str = "", istail: bool = True) -> str:$/;" m class:ASTGrammarPrinter +print_notice Tools/build/verify_ensurepip_wheels.py /^def print_notice(file_path: str, message: str) -> None:$/;" f +print_object_stats Python/specialize.c /^print_object_stats(FILE *out, ObjectStats *stats)$/;" f file: +print_or_clear_traceback Modules/_sqlite/connection.c /^print_or_clear_traceback(callback_context *ctx)$/;" f file: +print_output Lib/lib2to3/main.py /^ def print_output(self, old, new, filename, equal):$/;" m class:StdoutRefactoringTool +print_output Lib/lib2to3/refactor.py /^ def print_output(self, old_text, new_text, filename, equal):$/;" m class:RefactoringTool +print_output Lib/test/test_lib2to3/test_refactor.py /^ def print_output(self, old_text, new_text, filename, equal):$/;" m class:TestRefactoringTool.test_refactor_stdin.MyRT +print_results Tools/iobench/iobench.py /^ def print_results(size, n, real, cpu):$/;" f function:run_all_tests +print_spec_stats Python/specialize.c /^print_spec_stats(FILE *out, OpcodeStats *stats)$/;" f file: +print_specialization_stats Tools/scripts/summarize_stats.py /^def print_specialization_stats(name, family_stats, defines):$/;" f +print_stack Lib/asyncio/tasks.py /^ def print_stack(self, *, limit=None, file=None):$/;" m class:Task +print_stack Lib/traceback.py /^def print_stack(f=None, limit=None, file=None):$/;" f +print_stack_entry Lib/pdb.py /^ def print_stack_entry(self, frame_lineno, prompt_prefix=line_prefix):$/;" m class:Pdb +print_stack_trace Lib/pdb.py /^ def print_stack_trace(self):$/;" m class:Pdb +print_state Lib/test/test_bdb.py /^ def print_state(self, header=None):$/;" m class:Tracer +print_stats Lib/cProfile.py /^ def print_stats(self, sort=-1):$/;" m class:Profile +print_stats Lib/profile.py /^ def print_stats(self, sort=-1):$/;" m class:Profile +print_stats Lib/pstats.py /^ def print_stats(self, *amount):$/;" m class:Stats +print_stats Python/specialize.c /^print_stats(FILE *out, PyStats *stats) {$/;" f file: +print_subinterp Programs/_testembed.c /^static void print_subinterp(void)$/;" f file: +print_summary Tools/gdb/libpython.py /^ def print_summary(self):$/;" m class:Frame +print_tb Lib/traceback.py /^def print_tb(tb, limit=None, file=None):$/;" f +print_three_column Tools/build/check_extension_modules.py /^ def print_three_column(modinfos: list[ModuleInfo]):$/;" f function:ModuleChecker.summary +print_title Lib/pstats.py /^ def print_title(self):$/;" m class:Stats +print_title Tools/scripts/summarize_stats.py /^def print_title(name, level=2):$/;" f +print_topics Lib/cmd.py /^ def print_topics(self, header, cmds, cmdlen, maxcol):$/;" m class:Cmd +print_traceback Tools/gdb/libpython.py /^ def print_traceback(self):$/;" m class:Frame +print_traceback Tools/gdb/libpython.py /^ def print_traceback(self):$/;" m class:PyFrameObjectPtr +print_traceback Tools/gdb/libpython.py /^ def print_traceback(self):$/;" m class:PyFramePtr +print_usage Lib/argparse.py /^ def print_usage(self, file=None):$/;" m class:ArgumentParser +print_usage Lib/optparse.py /^ def print_usage(self, file=None):$/;" m class:OptionParser +print_version Lib/optparse.py /^ def print_version(self, file=None):$/;" m class:OptionParser +print_warning Lib/test/libregrtest/utils.py /^def print_warning(msg):$/;" f +print_warning Lib/test/support/__init__.py /^def print_warning(msg):$/;" f +print_window Lib/idlelib/iomenu.py /^ def print_window(self, event):$/;" m class:IOBinding +printable Lib/string.py /^printable = digits + ascii_letters + punctuation + whitespace$/;" v +printblock Tools/peg_generator/pegen/parser_generator.py /^ def printblock(self, lines: str) -> None:$/;" m class:ParserGenerator +printdir Lib/zipfile/__init__.py /^ def printdir(self, file=None):$/;" m class:ZipFile +printer_instance Lib/test/test_sqlite3/test_regression.py /^ printer_instance = Printer()$/;" v class:RegressionTests.test_bpo37347.Printer +printfunc Include/cpython/object.h /^typedef Py_ssize_t printfunc;$/;" t +printit Modules/_decimal/tests/formathelper.py /^def printit(testno, s, fmt, encoding=None):$/;" f +printlist Lib/test/libregrtest/utils.py /^def printlist(x, width=70, indent=4, file=None):$/;" f +printmap Tools/unicode/genmap_support.py /^ def printmap(self):$/;" m class:EncodeMapWriter +printone Objects/obmalloc.c /^printone(FILE *out, const char* msg, size_t value)$/;" f file: +printout Tools/unicode/genmap_support.py /^ def printout(self, fp):$/;" m class:BufferedFiller +printsolution Lib/test/test_generators.py /^ def printsolution(self, row2col):$/;" m class:Queens +printsolution Lib/test/test_generators.py /^ def printsolution(self, x):$/;" m class:Knights +printtoken Lib/lib2to3/pgen2/tokenize.py /^def printtoken(type, token, xxx_todo_changeme, xxx_todo_changeme1, line): # for testing$/;" f +priority_map Lib/logging/handlers.py /^ priority_map = {$/;" v class:SysLogHandler +priority_names Lib/logging/handlers.py /^ priority_names = {$/;" v class:SysLogHandler +private Tools/c-analyzer/cpython/_builtin_types.py /^ def private(self):$/;" m class:BuiltinTypeDecl +private Tools/c-analyzer/cpython/_builtin_types.py /^ def private(self):$/;" m class:BuiltinTypeInfo +private_and_sunder_names Lib/test/test_enum.py /^ private_and_sunder_names = '_MyEnum__private_', '_MyEnum__also_private_'$/;" v class:TestHelpers +private_and_sunder_names Lib/test/test_enum.py /^ private_and_sunder_names = '_MyEnum__private_', '_MyEnum__also_private_'$/;" v class:TestInternals +private_key_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class private_key_st(Structure):$/;" c +private_mem Python/dtoa.c 338;" d file: +private_mem Python/dtoa.c 392;" d file: +private_names Lib/test/test_enum.py /^ private_names = '_MyEnum__private', '_MyEnum__still_private'$/;" v class:TestHelpers +private_names Lib/test/test_enum.py /^ private_names = '_MyEnum__private', '_MyEnum__still_private'$/;" v class:TestInternals +prmonth Lib/calendar.py /^ def prmonth(self, theyear, themonth, w=0, l=0):$/;" m class:TextCalendar +prmonth Lib/calendar.py /^prmonth = c.prmonth$/;" v +prn Lib/test/test_traceback.py /^ def prn():$/;" f function:TracebackFormatTests.test_print_stack +pro Lib/test/test_property.py /^ class pro(property):$/;" c function:PropertyTests.test_property_setname_on_property_subclass +probably_a_local_import Lib/lib2to3/fixes/fix_import.py /^ def probably_a_local_import(self, imp_name):$/;" m class:FixImport +probe Lib/test/test_asyncio/test_windows_events.py /^ async def probe():$/;" f function:ProactorTests._test_client_pipe_stat +probe Modules/posixmodule.c /^ int (*probe)(void);$/;" m struct:have_function file: +probe_den Tools/scripts/divmod_threshold.py /^def probe_den(nd):$/;" f +proc_events Lib/test/test_asyncio/test_base_events.py /^ def proc_events(event_list):$/;" f function:BaseEventLoopTests.test_single_selecter_event_callback_after_stopping +process Lib/imaplib.py /^ def process(self, data):$/;" m class:_Authenticator +process Lib/logging/__init__.py /^ def process(self, msg, kwargs):$/;" m class:LoggerAdapter +process Lib/optparse.py /^ def process(self, opt, value, values, parser):$/;" m class:Option +process Lib/test/test_logging.py /^ def process(self, msg, kwargs):$/;" m class:LoggerAdapterTest.test_nested.Adapter +process PC/launcher.c /^process(int argc, wchar_t ** argv)$/;" f file: +process PC/launcher2.c /^process(int argc, wchar_t ** argv)$/;" f +process Tools/patchcheck/untabify.py /^def process(filename, tabsize, verbose=True):$/;" f +processInternalEntity Modules/expat/xmlparse.c /^processInternalEntity(XML_Parser parser, ENTITY *entity, XML_Bool betweenDecl) {$/;" f file: +processXmlDecl Modules/expat/xmlparse.c /^processXmlDecl(XML_Parser parser, int isGeneralTextEntity, const char *s,$/;" f file: +process_args Tools/c-analyzer/c_analyzer/__main__.py /^ def process_args(args, *, argv):$/;" f function:_cli_data +process_args Tools/c-analyzer/c_analyzer/__main__.py /^ def process_args(args, *, argv=None):$/;" f function:add_output_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^ def process_args(args, *, argv=None):$/;" f function:add_failure_filtering_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^ def process_args(args, *, argv=None):$/;" f function:add_file_filtering_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^ def process_args(args, *, argv=None):$/;" f function:add_kind_filtering_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^ def process_args(args, *, argv=None):$/;" f function:add_progress_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^ def process_args(args, *, argv=None):$/;" f function:add_sepval_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^ def process_args(args, *, argv=None):$/;" f function:add_traceback_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^ def process_args(args, *, argv=None):$/;" f function:add_verbosity_cli +process_args Tools/c-analyzer/c_common/scriptutil.py /^def process_args(args, argv, processors, *, keys=None):$/;" f +process_args Tools/c-analyzer/c_parser/__main__.py /^ def process_args(args, *, argv=None):$/;" f function:add_output_cli +process_args Tools/c-analyzer/c_parser/preprocessor/__main__.py /^ def process_args(args, *, argv):$/;" f function:add_common_cli +process_args_by_key Tools/c-analyzer/c_common/scriptutil.py /^def process_args_by_key(args, argv, processors, keys):$/;" f +process_audit_events Doc/tools/extensions/pyspecific.py /^def process_audit_events(app, doctree, fromdocname):$/;" f +process_checks Tools/c-analyzer/c_analyzer/__main__.py /^ def process_checks(args, *, argv=None):$/;" f function:_cli_check +process_event Lib/test/test_bdb.py /^ def process_event(self, event, frame, *args):$/;" m class:Tracer +process_exc Lib/test/test_asyncio/test_tasks.py /^ async def process_exc(exc):$/;" f function:BaseTaskTests.test_exception_chaining_after_await_with_context_cycle +process_exited Lib/asyncio/protocols.py /^ def process_exited(self):$/;" m class:SubprocessProtocol +process_exited Lib/asyncio/subprocess.py /^ def process_exited(self):$/;" m class:SubprocessStreamProtocol +process_exited Lib/test/test_asyncio/test_events.py /^ def process_exited(self):$/;" m class:MySubprocessProtocol +process_exited Lib/test/test_asyncio/test_subprocess.py /^ def process_exited(self) -> None:$/;" m class:SubprocessMixin.test_subprocess_consistent_callbacks.MyProtocol +process_filenames Tools/c-analyzer/c_common/fsutil.py /^def process_filenames(filenames, *,$/;" f +process_filenames Tools/c-analyzer/c_common/scriptutil.py /^ def process_filenames(filenames, relroot=None):$/;" f function:add_file_filtering_cli.process_args +process_format Tools/c-analyzer/cpython/__main__.py /^ def process_format(args, *, argv=None):$/;" f function:_cli_builtin_types +process_format Tools/c-analyzer/cpython/__main__.py /^ def process_format(args, *, argv=None):$/;" f function:_cli_capi +process_glossary_nodes Doc/tools/extensions/glossary_search.py /^def process_glossary_nodes(app, doctree, fromdocname):$/;" f +process_ignored Tools/c-analyzer/cpython/__main__.py /^ def process_ignored(args, *, argv=None):$/;" f function:_cli_capi +process_kinds Tools/c-analyzer/cpython/__main__.py /^ def process_kinds(args, *, argv=None):$/;" f function:_cli_capi +process_levels Tools/c-analyzer/cpython/__main__.py /^ def process_levels(args, *, argv=None):$/;" f function:_cli_capi +process_many Lib/test/test_optparse.py /^ def process_many(self, option, opt, value, parser_):$/;" m class:TestCallbackManyArgs +process_message Lib/test/smtpd.py /^ def process_message(self, peer, mailfrom, rcpttos, data):$/;" m class:PureProxy +process_message Lib/test/smtpd.py /^ def process_message(self, peer, mailfrom, rcpttos, data, **kwargs):$/;" m class:DebuggingServer +process_message Lib/test/smtpd.py /^ def process_message(self, peer, mailfrom, rcpttos, data, **kwargs):$/;" m class:SMTPServer +process_message Lib/test/test_logging.py /^ def process_message(self, *args):$/;" m class:SMTPHandlerTest +process_message Lib/test/test_logging.py /^ def process_message(self, peer, mailfrom, rcpttos, data):$/;" m class:TestSMTPServer +process_message Lib/test/test_smtplib.py /^ def process_message(self, peer, mailfrom, rcpttos, data):$/;" m class:SimSMTPServer +process_message Lib/test/test_smtplib.py /^ def process_message(self, peer, mailfrom, rcpttos, data, mail_options=None,$/;" m class:SimSMTPUTF8Server +process_modules Tools/c-analyzer/cpython/__main__.py /^ def process_modules(args, *, argv=None):$/;" f function:_cli_builtin_types +process_n Lib/test/test_optparse.py /^ def process_n(self, option, opt, value, parser_):$/;" m class:TestCallbackMeddleArgs +process_opt Lib/test/test_optparse.py /^ def process_opt(self, option, opt, value, parser_):$/;" m class:TestCallback +process_pending Lib/test/test_nntplib.py /^ def process_pending(self):$/;" m class:NNTPv1Handler +process_pid Lib/test/test_threadsignals.py /^process_pid = os.getpid()$/;" v +process_rawq Lib/telnetlib.py /^ def process_rawq(self):$/;" m class:Telnet +process_request Lib/socketserver.py /^ def process_request(self, request, client_address):$/;" m class:.ForkingMixIn +process_request Lib/socketserver.py /^ def process_request(self, request, client_address):$/;" m class:BaseServer +process_request Lib/socketserver.py /^ def process_request(self, request, client_address):$/;" m class:ThreadingMixIn +process_request Lib/test/test_logging.py /^ def process_request(self):$/;" m class:TestHTTPServer.__init__.DelegatingHTTPRequestHandler +process_request_thread Lib/socketserver.py /^ def process_request_thread(self, request, client_address):$/;" m class:ThreadingMixIn +process_result Lib/test/test_ctypes/test_cfuncs.py /^ def process_result(result):$/;" f function:CFunctions.test_callwithresult +process_result_item Lib/concurrent/futures/process.py /^ def process_result_item(self, result_item):$/;" m class:_ExecutorManagerThread +process_tokens Lib/tabnanny.py /^def process_tokens(tokens):$/;" f +process_touched_warnings Doc/tools/check-warnings.py /^def process_touched_warnings($/;" f +process_tuple Lib/test/test_optparse.py /^ def process_tuple(self, option, opt, value, parser_, len, type):$/;" m class:TestCallbackExtraArgs +process_word Lib/test/test_io.py /^ def process_word(self):$/;" m class:StatefulIncrementalDecoder +processed Modules/expat/xmlparse.c /^ int processed; \/* # of processed bytes - when suspended *\/$/;" m struct:__anon611 file: +processed_file Lib/lib2to3/refactor.py /^ def processed_file(self, new_text, filename, old_text=None, write=False,$/;" m class:RefactoringTool +processingInstruction Lib/xml/dom/pulldom.py /^ def processingInstruction(self, target, data):$/;" m class:PullDOM +processingInstruction Lib/xml/dom/pulldom.py /^ def processingInstruction(self, target, data):$/;" m class:SAX2DOM +processingInstruction Lib/xml/sax/handler.py /^ def processingInstruction(self, target, data):$/;" m class:ContentHandler +processingInstruction Lib/xml/sax/saxutils.py /^ def processingInstruction(self, target, data):$/;" m class:XMLFilterBase +processingInstruction Lib/xml/sax/saxutils.py /^ def processingInstruction(self, target, data):$/;" m class:XMLGenerator +processing_instruction Lib/xml/sax/expatreader.py /^ def processing_instruction(self, target, data):$/;" m class:ExpatParser +processor Lib/platform.py /^ def processor(self):$/;" m class:uname_result +processor Lib/platform.py /^def processor():$/;" f +prod Lib/test/test_buffer.py /^def prod(lst):$/;" f +prod Lib/test/test_itertools.py /^def prod(iterable):$/;" f +prod Modules/_decimal/libmpdec/literature/fnt.py /^def prod(F, E):$/;" f +prod Python/bytecodes.c /^static PyObject *value, *value1, *value2, *left, *right, *res, *sum, *prod, *sub;$/;" v file: +produce_global_ext Lib/test/pickletester.py /^ def produce_global_ext(self, extcode, opcode):$/;" m class:AbstractPickleTests +producer Lib/test/test_asyncio/test_queues.py /^ async def producer(queue, num_items):$/;" f function:QueueGetTests.test_why_are_getters_waiting +product1 Lib/test/test_itertools.py /^ def product1(*args, **kwds):$/;" f function:TestBasicOps.test_product +product2 Lib/test/test_itertools.py /^ def product2(*args, **kwds):$/;" f function:TestBasicOps.test_product +product_dealloc Modules/itertoolsmodule.c /^product_dealloc(productobject *lz)$/;" f file: +product_methods Modules/itertoolsmodule.c /^static PyMethodDef product_methods[] = {$/;" v file: +product_new Modules/itertoolsmodule.c /^product_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +product_next Modules/itertoolsmodule.c /^product_next(productobject *lz)$/;" f file: +product_reduce Modules/itertoolsmodule.c /^product_reduce(productobject *lz, PyObject *Py_UNUSED(ignored))$/;" f file: +product_setstate Modules/itertoolsmodule.c /^product_setstate(productobject *lz, PyObject *state)$/;" f file: +product_sizeof Modules/itertoolsmodule.c /^product_sizeof(productobject *lz, void *unused)$/;" f file: +product_slots Modules/itertoolsmodule.c /^static PyType_Slot product_slots[] = {$/;" v file: +product_spec Modules/itertoolsmodule.c /^static PyType_Spec product_spec = {$/;" v file: +product_traverse Modules/itertoolsmodule.c /^product_traverse(productobject *lz, visitproc visit, void *arg)$/;" f file: +product_type Modules/itertoolsmodule.c /^ PyTypeObject *product_type;$/;" m struct:__anon400 file: +productobject Modules/itertoolsmodule.c /^} productobject;$/;" t typeref:struct:__anon413 file: +profile_int Modules/_testcapimodule.c /^profile_int(PyObject *self, PyObject* args)$/;" f file: +profile_trampoline Python/sysmodule.c /^profile_trampoline(PyObject *self, PyFrameObject *frame,$/;" f file: +profilerEntries Modules/_lsprof.c /^ rotating_node_t *profilerEntries;$/;" m struct:__anon362 file: +profiler_clear Modules/_lsprof.c /^profiler_clear(ProfilerObject *pObj, PyObject* noarg)$/;" f file: +profiler_dealloc Modules/_lsprof.c /^profiler_dealloc(ProfilerObject *op)$/;" f file: +profiler_disable Modules/_lsprof.c /^profiler_disable(ProfilerObject *self, PyObject* noarg)$/;" f file: +profiler_enable Modules/_lsprof.c /^profiler_enable(ProfilerObject *self, PyObject *args, PyObject *kwds)$/;" f file: +profiler_entry_desc Modules/_lsprof.c /^static PyStructSequence_Desc profiler_entry_desc = {$/;" v file: +profiler_entry_fields Modules/_lsprof.c /^static PyStructSequence_Field profiler_entry_fields[] = {$/;" v file: +profiler_init Modules/_lsprof.c /^profiler_init(ProfilerObject *pObj, PyObject *args, PyObject *kw)$/;" f file: +profiler_methods Modules/_lsprof.c /^static PyMethodDef profiler_methods[] = {$/;" v file: +profiler_subentry_desc Modules/_lsprof.c /^static PyStructSequence_Desc profiler_subentry_desc = {$/;" v file: +profiler_subentry_fields Modules/_lsprof.c /^static PyStructSequence_Field profiler_subentry_fields[] = {$/;" v file: +profiler_traverse Modules/_lsprof.c /^profiler_traverse(ProfilerObject *op, visitproc visit, void *arg)$/;" f file: +profiler_type Modules/_lsprof.c /^ PyTypeObject *profiler_type;$/;" m struct:__anon363 file: +profilerclass Lib/test/test_cprofile.py /^ profilerclass = cProfile.Profile$/;" v class:CProfileTest +profilerclass Lib/test/test_profile.py /^ profilerclass = profile.Profile$/;" v class:ProfileTest +profilermodule Lib/test/test_cprofile.py /^ profilermodule = cProfile$/;" v class:CProfileTest +profilermodule Lib/test/test_profile.py /^ profilermodule = profile$/;" v class:ProfileTest +prog Lib/idlelib/colorizer.py /^prog = make_pat()$/;" v +prog Lib/test/test_argparse.py /^ prog='PROG',$/;" v class:TestHelpReformatting +prog Lib/test/test_asyncio/test_ssl.py /^ def prog(sock):$/;" f function:TestSSL.test_create_server_ssl_1.test_client +prog Lib/test/test_asyncio/test_ssl.py /^ def prog(sock):$/;" f function:TestSSL.test_create_server_ssl_over_ssl.test_client +prog Tools/build/check_extension_modules.py /^ prog="check_extension_modules",$/;" v +prog Tools/peg_generator/pegen/first_sets.py /^ prog="calculate_first_sets",$/;" v +prog Tools/peg_generator/scripts/download_pypi_packages.py /^ prog="download_pypi_packages",$/;" v +prog Tools/peg_generator/scripts/grammar_grapher.py /^ prog="graph_grammar",$/;" v +prog Tools/peg_generator/scripts/test_parse_directory.py /^ prog="test_parse_directory",$/;" v +prog Tools/peg_generator/scripts/test_pypi_packages.py /^ prog="test_pypi_packages",$/;" v +prog Tools/ssl/multissltests.py /^ prog='multissl',$/;" v +progName Lib/test/test_unittest/test_discovery.py /^ progName = ''$/;" v class:TestableTestProgram +progName Lib/test/test_unittest/test_program.py /^ progName = 'test'$/;" v class:InitialisableProgram +prog_group_name_to_tag Lib/idlelib/colorizer.py /^prog_group_name_to_tag = {$/;" v +progname_to_dict Modules/getpath.c /^progname_to_dict(PyObject *dict, const char *key)$/;" f file: +program Lib/test/smtpd.py /^program = sys.argv[0]$/;" v +program_full_path Python/pathconfig.c /^ wchar_t *program_full_path;$/;" m struct:_PyPathConfig file: +program_name Include/cpython/initconfig.h /^ wchar_t *program_name;$/;" m struct:PyConfig +program_name Lib/test/test_getpath.py /^ program_name=None,$/;" v +program_name Modules/getpath.py /^ program_name = config.get('orig_argv', [])[0]$/;" v +program_name Modules/getpath.py /^ program_name = DEFAULT_PROGRAM_NAME$/;" v +program_name Modules/getpath.py /^ program_name = program_name + EXE_SUFFIX$/;" v +program_name Modules/getpath.py /^program_name = config.get('program_name')$/;" v +program_name Python/pathconfig.c /^ wchar_t *program_name;$/;" m struct:_PyPathConfig file: +program_name_was_set Modules/getpath.py /^program_name_was_set = bool(program_name)$/;" v +progress Lib/test/test_sqlite3/test_backup.py /^ def progress(status, remaining, total):$/;" f function:BackupTests.test_failing_progress +progress Lib/test/test_sqlite3/test_backup.py /^ def progress(status, remaining, total):$/;" f function:BackupTests.test_modifying_progress +progress Lib/test/test_sqlite3/test_backup.py /^ def progress(status, remaining, total):$/;" f function:BackupTests.test_progress +progress Lib/test/test_sqlite3/test_backup.py /^ def progress(status, remaining, total):$/;" f function:BackupTests.test_progress_all_pages_at_once_1 +progress Lib/test/test_sqlite3/test_backup.py /^ def progress(status, remaining, total):$/;" f function:BackupTests.test_progress_all_pages_at_once_2 +progress Lib/test/test_sqlite3/test_dbapi.py /^ def progress(): pass$/;" f function:ClosedConTests.test_closed_set_progress_callback +progress Lib/test/test_sqlite3/test_hooks.py /^ def progress():$/;" f function:ProgressTests.test_cancel_operation +progress Lib/test/test_sqlite3/test_hooks.py /^ def progress():$/;" f function:ProgressTests.test_clear_handler +progress Lib/test/test_sqlite3/test_hooks.py /^ def progress():$/;" f function:ProgressTests.test_opcode_count +progress Lib/test/test_sqlite3/test_hooks.py /^ def progress():$/;" f function:ProgressTests.test_progress_handler_used +progress_callback Modules/_sqlite/connection.c /^progress_callback(void *ctx)$/;" f file: +progress_ctx Modules/_sqlite/connection.h /^ callback_context *progress_ctx;$/;" m struct:__anon359 +proj_dir Lib/test/test_lib2to3/support.py /^proj_dir = os.path.normpath(os.path.join(test_dir, ".."))$/;" v +project Doc/conf.py /^project = 'Python'$/;" v +prolog0 Modules/expat/xmlrole.c /^prolog0(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +prolog0 Modules/expat/xmlrole.c /^static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,$/;" v file: +prolog1 Modules/expat/xmlrole.c /^prolog1(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +prolog1 Modules/expat/xmlrole.c /^static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,$/;" v file: +prolog2 Modules/expat/xmlrole.c /^prolog2(PROLOG_STATE *state, int tok, const char *ptr, const char *end,$/;" f file: +prolog2 Modules/expat/xmlrole.c /^static PROLOG_HANDLER prolog0, prolog1, prolog2, doctype0, doctype1, doctype2,$/;" v file: +prologInitProcessor Modules/expat/xmlparse.c /^prologInitProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +prologInitProcessor Modules/expat/xmlparse.c /^static Processor prologInitProcessor;$/;" v file: +prologProcessor Modules/expat/xmlparse.c /^prologProcessor(XML_Parser parser, const char *s, const char *end,$/;" f file: +prologProcessor Modules/expat/xmlparse.c /^static Processor prologProcessor;$/;" v file: +prologTok Modules/expat/xmltok_impl.c /^PREFIX(prologTok)(const ENCODING *enc, const char *ptr, const char *end,$/;" f file: +prolog_state Modules/expat/xmlrole.h /^typedef struct prolog_state {$/;" s +prompt Lib/cmd.py /^ prompt = PROMPT$/;" v class:Cmd +prompt Lib/smtplib.py /^ def prompt(prompt):$/;" f +prompt Parser/tokenizer.h /^ const char *prompt, *nextprompt; \/* For interactive prompting *\/$/;" m struct:tok_state +prompt_user_passwd Lib/urllib/request.py /^ def prompt_user_passwd(self, host, realm):$/;" m class:FancyURLopener +prop Lib/test/test_descr.py /^ prop = property(getter)$/;" v class:.test_properties_doc_attrib.E +prop Lib/test/test_functools.py /^ def prop(self):$/;" m class:TestCachedProperty.test_immutable_dict.MyMeta +prop Lib/test/test_functools.py /^ def prop(self):$/;" m class:TestCachedProperty.test_subclass_with___set__.Test +prop Lib/test/test_typing.py /^ def prop(self): ...$/;" m class:FinalDecoratorTests.test_dunder_final.Methods +prop Lib/test/test_unittest/testmock/testhelpers.py /^ def prop(self): pass$/;" m class:SpecSignatureTest.test_autospec_data_descriptor.Foo +prop2 Lib/test/test_descr.py /^ prop2 = property(fset=setter)$/;" v class:.test_properties_doc_attrib.E +prop_cache Lib/multiprocessing/sharedctypes.py /^prop_cache = {}$/;" v +prop_del Include/internal/pycore_descrobject.h /^ PyObject *prop_del;$/;" m struct:__anon170 +prop_doc Include/internal/pycore_descrobject.h /^ PyObject *prop_doc;$/;" m struct:__anon170 +prop_get Include/internal/pycore_descrobject.h /^ PyObject *prop_get;$/;" m struct:__anon170 +prop_name Include/internal/pycore_descrobject.h /^ PyObject *prop_name;$/;" m struct:__anon170 +prop_set Include/internal/pycore_descrobject.h /^ PyObject *prop_set;$/;" m struct:__anon170 +propagate Lib/tkinter/__init__.py /^ propagate = pack_propagate$/;" v class:Misc +propagate_line_numbers Python/flowgraph.c /^propagate_line_numbers(basicblock *entryblock) {$/;" f file: +proper_error Lib/test/test_subprocess.py /^ def proper_error(*args):$/;" f function:POSIXProcessTestCase.test_exception_errpipe_normal +properties Lib/test/test_plistlib.py /^ properties = {$/;" v class:TestPlutil +property Lib/enum.py /^class property(DynamicClassAttribute):$/;" c +property_called Lib/test/test_rlcompleter.py /^ property_called = False$/;" v class:TestRlcompleter.test_property_method_not_called.Foo +property_clear Objects/descrobject.c /^property_clear(PyObject *self)$/;" f file: +property_copy Objects/descrobject.c /^property_copy(PyObject *old, PyObject *get, PyObject *set, PyObject *del)$/;" f file: +property_dealloc Objects/descrobject.c /^property_dealloc(PyObject *self)$/;" f file: +property_declaration_handler Lib/xml/sax/handler.py /^property_declaration_handler = "http:\/\/xml.org\/sax\/properties\/declaration-handler"$/;" v +property_deleter Objects/descrobject.c /^property_deleter(PyObject *self, PyObject *deleter)$/;" f file: +property_descr_get Objects/descrobject.c /^property_descr_get(PyObject *self, PyObject *obj, PyObject *type)$/;" f file: +property_descr_set Objects/descrobject.c /^property_descr_set(PyObject *self, PyObject *obj, PyObject *value)$/;" f file: +property_dom_node Lib/xml/sax/handler.py /^property_dom_node = "http:\/\/xml.org\/sax\/properties\/dom-node"$/;" v +property_encoding Lib/xml/sax/handler.py /^property_encoding = "http:\/\/www.python.org\/sax\/properties\/encoding"$/;" v +property_get___isabstractmethod__ Objects/descrobject.c /^property_get___isabstractmethod__(propertyobject *prop, void *closure)$/;" f file: +property_getsetlist Objects/descrobject.c /^static PyGetSetDef property_getsetlist[] = {$/;" v file: +property_getter Objects/descrobject.c /^property_getter(PyObject *self, PyObject *getter)$/;" f file: +property_init Objects/clinic/descrobject.c.h /^property_init(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +property_init_impl Objects/descrobject.c /^property_init_impl(propertyobject *self, PyObject *fget, PyObject *fset,$/;" f file: +property_interning_dict Lib/xml/sax/handler.py /^property_interning_dict = "http:\/\/www.python.org\/sax\/properties\/interning-dict"$/;" v +property_lexical_handler Lib/xml/sax/handler.py /^property_lexical_handler = "http:\/\/xml.org\/sax\/properties\/lexical-handler"$/;" v +property_members Objects/descrobject.c /^static PyMemberDef property_members[] = {$/;" v file: +property_methods Objects/descrobject.c /^static PyMethodDef property_methods[] = {$/;" v file: +property_set_name Objects/descrobject.c /^property_set_name(PyObject *self, PyObject *args) {$/;" f file: +property_setter Objects/descrobject.c /^property_setter(PyObject *self, PyObject *setter)$/;" f file: +property_traverse Objects/descrobject.c /^property_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +property_xml_string Lib/xml/sax/handler.py /^property_xml_string = "http:\/\/xml.org\/sax\/properties\/xml-string"$/;" v +propertyobject Include/internal/pycore_descrobject.h /^} propertyobject;$/;" t typeref:struct:__anon170 +prot_c Lib/ftplib.py /^ def prot_c(self):$/;" m class:.FTP_TLS +prot_p Lib/ftplib.py /^ def prot_p(self):$/;" m class:.FTP_TLS +protect Lib/test/test_sys_setprofile.py /^def protect(f, p):$/;" f +protect_ident Lib/test/test_sys_setprofile.py /^protect_ident = ident(protect)$/;" v +proto Lib/asyncio/trsock.py /^ def proto(self):$/;" m class:TransportSocket +proto Lib/test/test_asyncio/test_sslproto.py /^ proto = Proto(0, usemv)$/;" v class:BaseStartTLS.test_buf_feed_data.Proto +proto Lib/test/test_asyncio/test_sslproto.py /^ proto = Proto(1, usemv)$/;" v class:BaseStartTLS.test_buf_feed_data.Proto +proto Lib/test/test_asyncio/test_sslproto.py /^ proto = Proto(100, usemv)$/;" v class:BaseStartTLS.test_buf_feed_data.Proto +proto Lib/test/test_asyncio/test_sslproto.py /^ proto = Proto(2, usemv)$/;" v class:BaseStartTLS.test_buf_feed_data.Proto +proto Lib/test/test_asyncio/test_sslproto.py /^ proto = Proto(4, usemv)$/;" v class:BaseStartTLS.test_buf_feed_data.Proto +proto Lib/test/test_ssl.py /^ proto = getattr(ssl, proto)$/;" v +proto Modules/_ctypes/ctypes.h /^ PyObject *proto; \/* a type or NULL *\/$/;" m struct:__anon494 +proto Modules/_ctypes/ctypes.h /^ PyObject *proto; \/* Only for Pointer\/ArrayObject *\/$/;" m struct:__anon495 +proto Modules/_pickle.c /^ int proto; \/* Pickle protocol number, >= 0 *\/$/;" m struct:PicklerObject file: +proto Modules/_pickle.c /^ int proto; \/* Protocol of the pickle loaded. *\/$/;" m struct:UnpicklerObject file: +protocol Lib/http/server.py /^ protocol=args.protocol,$/;" v class:.DualStackServer +protocol Lib/ssl.py /^ def protocol(self):$/;" m class:SSLContext +protocol Lib/tkinter/__init__.py /^ protocol = wm_protocol$/;" v class:Wm +protocol Modules/_ssl.c /^ int protocol;$/;" m struct:__anon579 file: +protocol_version Lib/http/server.py /^ protocol_version = "HTTP\/1.0"$/;" v class:BaseHTTPRequestHandler +protocol_version Lib/test/test_httpservers.py /^ protocol_version = 'HTTP\/1.1'$/;" v class:BaseHTTPServerTestCase.request_handler +protocol_version Lib/test/test_httpservers.py /^ protocol_version = 'HTTP\/1.1'$/;" v class:RequestHandlerLoggingTestCase.request_handler +protocol_version Lib/test/test_xmlrpc.py /^ protocol_version = "HTTP\/1.1"$/;" v class:XMLRPCTestCase.test_keepalive_disconnect.RequestHandler +protocol_version Lib/test/test_xmlrpc.py /^ protocol_version = 'HTTP\/1.1'$/;" v class:BaseKeepaliveServerTestCase.RequestHandler +protocol_version Lib/test/test_xmlrpc.py /^ protocol_version = 'HTTP\/1.1'$/;" v class:GzipServerTestCase.RequestHandler +protocols Lib/test/pickletester.py /^protocols = range(pickle.HIGHEST_PROTOCOL + 1)$/;" v +prototypes configure /^ function prototypes and stuff, but not \\xHH hex character constants.$/;" f +proxy Lib/test/smtpd.py /^ proxy = class_((options.localhost, options.localport),$/;" v +proxy Lib/test/test_unittest/testmock/testpatch.py /^ proxy = _get_proxy(Something, get_only=False)$/;" v class:PatchTest.test_get_set_delete_proxy.SomethingElse +proxy Lib/test/test_unittest/testmock/testpatch.py /^ proxy = _get_proxy(thing)$/;" v class:PatchTest.test_get_only_proxy.SomethingElse +proxy Lib/tkinter/__init__.py /^ def proxy(self, *args):$/;" m class:PanedWindow +proxy_as_mapping Objects/weakrefobject.c /^static PyMappingMethods proxy_as_mapping = {$/;" v file: +proxy_as_number Objects/weakrefobject.c /^static PyNumberMethods proxy_as_number = {$/;" v file: +proxy_as_sequence Objects/weakrefobject.c /^static PySequenceMethods proxy_as_sequence = {$/;" v file: +proxy_bool Objects/weakrefobject.c /^proxy_bool(PyWeakReference *proxy)$/;" f file: +proxy_bypass Lib/urllib/request.py /^ def proxy_bypass(host):$/;" f +proxy_bypass Lib/urllib/request.py /^ def proxy_bypass(host):$/;" f function:_proxy_bypass_macosx_sysconf +proxy_bypass Lib/urllib/request.py /^ proxy_bypass = proxy_bypass_environment$/;" v +proxy_bypass_environment Lib/urllib/request.py /^def proxy_bypass_environment(host, proxies=None):$/;" f +proxy_bypass_macosx_sysconf Lib/urllib/request.py /^ def proxy_bypass_macosx_sysconf(host):$/;" f function:_proxy_bypass_macosx_sysconf +proxy_bypass_registry Lib/urllib/request.py /^ def proxy_bypass_registry(host):$/;" f +proxy_checkref Objects/weakrefobject.c /^proxy_checkref(PyWeakReference *proxy)$/;" f file: +proxy_contains Objects/weakrefobject.c /^proxy_contains(PyWeakReference *proxy, PyObject *value)$/;" f file: +proxy_coord Lib/tkinter/__init__.py /^ def proxy_coord(self):$/;" m class:PanedWindow +proxy_dealloc Objects/weakrefobject.c /^proxy_dealloc(PyWeakReference *self)$/;" f file: +proxy_forget Lib/tkinter/__init__.py /^ def proxy_forget(self):$/;" m class:PanedWindow +proxy_iter Objects/weakrefobject.c /^proxy_iter(PyWeakReference *proxy)$/;" f file: +proxy_iternext Objects/weakrefobject.c /^proxy_iternext(PyWeakReference *proxy)$/;" f file: +proxy_length Objects/weakrefobject.c /^proxy_length(PyWeakReference *proxy)$/;" f file: +proxy_methods Objects/weakrefobject.c /^static PyMethodDef proxy_methods[] = {$/;" v file: +proxy_open Lib/urllib/request.py /^ def proxy_open(self, req, proxy, type):$/;" m class:ProxyHandler +proxy_place Lib/tkinter/__init__.py /^ def proxy_place(self, x, y):$/;" m class:PanedWindow +proxy_repr Objects/weakrefobject.c /^proxy_repr(PyWeakReference *proxy)$/;" f file: +proxy_richcompare Objects/weakrefobject.c /^proxy_richcompare(PyObject *proxy, PyObject *v, int op)$/;" f file: +proxy_setattr Objects/weakrefobject.c /^proxy_setattr(PyWeakReference *proxy, PyObject *name, PyObject *value)$/;" f file: +proxy_setitem Objects/weakrefobject.c /^proxy_setitem(PyWeakReference *proxy, PyObject *key, PyObject *value)$/;" f file: +proxyauth Lib/imaplib.py /^ def proxyauth(self, user):$/;" m class:IMAP4 +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:HeapTypeObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyBaseExceptionObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyBoolObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyBytesObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyCFunctionObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyDictObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyKeysValuesPair +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyListObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyLongObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyNoneStructPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PySetObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyTupleObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:PyUnicodeObjectPtr +proxyval Tools/gdb/libpython.py /^ def proxyval(self, visited):$/;" m class:wrapperobject +prweek Lib/calendar.py /^ def prweek(self, theweek, width):$/;" m class:TextCalendar +prweek Lib/calendar.py /^prweek = c.prweek$/;" v +pryear Lib/calendar.py /^ def pryear(self, theyear, w=0, l=0, c=6, m=3):$/;" m class:TextCalendar +pseudo_op Lib/opcode.py /^def pseudo_op(name, op, real_ops):$/;" f +psn Lib/test/support/__init__.py /^ psn = ProcessSerialNumber()$/;" v class:_is_gui_available.USEROBJECTFLAGS +psn_p Lib/test/support/__init__.py /^ psn_p = pointer(psn)$/;" v class:_is_gui_available.USEROBJECTFLAGS +pstdev Lib/statistics.py /^def pstdev(data, mu=None):$/;" f +psyco_adapters Modules/_sqlite/module.h /^ PyObject *psyco_adapters; \/\/ The adapters registry$/;" m struct:__anon355 +pth Modules/getpath.py /^ pth = readlines(p)$/;" v +pth Modules/getpath.py /^pth = None$/;" v +pth_dir Modules/getpath.py /^ pth_dir = dirname(p)$/;" v +pth_dir Modules/getpath.py /^pth_dir = None$/;" v +pth_file_tests Lib/test/test_site.py /^ def pth_file_tests(self, pth_file):$/;" m class:HelperFunctionsTests +pthread_attr_destroy Python/thread_pthread_stubs.h /^pthread_attr_destroy(pthread_attr_t *attr)$/;" f +pthread_attr_init Python/thread_pthread_stubs.h /^pthread_attr_init(pthread_attr_t *attr)$/;" f +pthread_attr_setstacksize Python/thread_pthread_stubs.h /^pthread_attr_setstacksize($/;" f +pthread_attr_t Include/cpython/pthread_stubs.h /^typedef struct { unsigned __attr; } pthread_attr_t;$/;" t typeref:struct:__anon244 +pthread_attr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_attr_t = __darwin_pthread_attr_t$/;" v +pthread_cond_destroy Python/thread_pthread_stubs.h /^PyAPI_FUNC(int)pthread_cond_destroy(pthread_cond_t *cond)$/;" f +pthread_cond_init Python/thread_pthread_stubs.h /^pthread_cond_init(pthread_cond_t *restrict cond,$/;" f +pthread_cond_signal Python/thread_pthread_stubs.h /^pthread_cond_signal(pthread_cond_t *cond)$/;" f +pthread_cond_t Include/cpython/pthread_stubs.h /^typedef struct { void *__x; } pthread_cond_t;$/;" t typeref:struct:__anon240 +pthread_cond_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_cond_t = __darwin_pthread_cond_t$/;" v +pthread_cond_timedwait Python/thread_pthread_stubs.h /^pthread_cond_timedwait(pthread_cond_t *restrict cond,$/;" f +pthread_cond_wait Python/thread_pthread_stubs.h /^pthread_cond_wait(pthread_cond_t *restrict cond,$/;" f +pthread_condattr_init Python/thread_pthread_stubs.h /^pthread_condattr_init(pthread_condattr_t *attr)$/;" f +pthread_condattr_setclock Python/thread_pthread_stubs.h /^pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id)$/;" f +pthread_condattr_t Include/cpython/pthread_stubs.h /^typedef struct { unsigned __attr; } pthread_condattr_t;$/;" t typeref:struct:__anon241 +pthread_condattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_condattr_t = __darwin_pthread_condattr_t$/;" v +pthread_create Python/thread_pthread_stubs.h /^pthread_create(pthread_t *restrict thread,$/;" f +pthread_detach Python/thread_pthread_stubs.h /^pthread_detach(pthread_t thread)$/;" f +pthread_exit Python/thread_pthread_stubs.h /^pthread_exit(void *retval)$/;" f +pthread_getspecific Python/thread_pthread_stubs.h /^pthread_getspecific(pthread_key_t key) {$/;" f +pthread_key_create Python/thread_pthread_stubs.h /^pthread_key_create(pthread_key_t *key, void (*destr_function)(void *))$/;" f +pthread_key_delete Python/thread_pthread_stubs.h /^pthread_key_delete(pthread_key_t key)$/;" f +pthread_key_t Include/cpython/pthread_stubs.h /^typedef unsigned pthread_key_t;$/;" t +pthread_key_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_key_t = __darwin_pthread_key_t$/;" v +pthread_lock Python/thread_pthread.h /^} pthread_lock;$/;" t typeref:struct:__anon692 +pthread_mutex_destroy Python/thread_pthread_stubs.h /^pthread_mutex_destroy(pthread_mutex_t *mutex)$/;" f +pthread_mutex_init Python/thread_pthread_stubs.h /^pthread_mutex_init(pthread_mutex_t *restrict mutex,$/;" f +pthread_mutex_lock Python/thread_pthread_stubs.h /^pthread_mutex_lock(pthread_mutex_t *mutex)$/;" f +pthread_mutex_t Include/cpython/pthread_stubs.h /^typedef struct { void *__x; } pthread_mutex_t;$/;" t typeref:struct:__anon242 +pthread_mutex_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_mutex_t = __darwin_pthread_mutex_t$/;" v +pthread_mutex_trylock Python/thread_pthread_stubs.h /^pthread_mutex_trylock(pthread_mutex_t *mutex)$/;" f +pthread_mutex_unlock Python/thread_pthread_stubs.h /^pthread_mutex_unlock(pthread_mutex_t *mutex)$/;" f +pthread_mutexattr_t Include/cpython/pthread_stubs.h /^typedef struct { unsigned __attr; } pthread_mutexattr_t;$/;" t typeref:struct:__anon243 +pthread_mutexattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_mutexattr_t = __darwin_pthread_mutexattr_t$/;" v +pthread_once_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_once_t = __darwin_pthread_once_t$/;" v +pthread_rwlock_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_rwlock_t = __darwin_pthread_rwlock_t$/;" v +pthread_rwlockattr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_rwlockattr_t = __darwin_pthread_rwlockattr_t$/;" v +pthread_self Python/thread_pthread_stubs.h /^PyAPI_FUNC(pthread_t) pthread_self(void)$/;" f +pthread_setspecific Python/thread_pthread_stubs.h /^pthread_setspecific(pthread_key_t key, const void *value)$/;" f +pthread_sigmask Lib/signal.py /^ def pthread_sigmask(how, mask):$/;" f +pthread_t Include/cpython/pthread_stubs.h /^typedef unsigned pthread_t;$/;" t +pthread_t Lib/test/test_lib2to3/data/infinite_recursion.py /^pthread_t = __darwin_pthread_t$/;" v +ptr Include/internal/pycore_pythread.h /^ pthread_condattr_t *ptr;$/;" m struct:_pythread_runtime_state::__anon171 +ptr Modules/_ctypes/_ctypes.c /^ void *ptr;$/;" m struct:__anon498 file: +ptr Modules/_sre/sre.h /^ const void* ptr; \/* current position (also end of current slice) *\/$/;" m struct:__anon458 +ptr Modules/_sre/sre_lib.h /^ const SRE_CHAR* ptr;$/;" m struct:__anon460 +ptr Modules/expat/xmlparse.c /^ XML_Char *ptr;$/;" m struct:__anon613 file: +ptr Modules/expat/xmltok.c /^ int isGeneralTextEntity, const ENCODING *enc, const char *ptr,$/;" v file: +ptr Python/marshal.c /^ char *ptr;$/;" m struct:__anon699 file: +ptr Python/marshal.c /^ const char *ptr;$/;" m struct:__anon700 file: +ptr_formatter Lib/test/test_bytes.py /^ def ptr_formatter(ptr):$/;" f function:BytesTest.test_from_format +ptr_from_index Modules/_testbuffer.c /^ptr_from_index(Py_buffer *base, Py_ssize_t index)$/;" f file: +ptr_from_index Objects/memoryobject.c /^ptr_from_index(const Py_buffer *view, Py_ssize_t index)$/;" f file: +ptr_from_tuple Objects/memoryobject.c /^ptr_from_tuple(const Py_buffer *view, PyObject *tup)$/;" f file: +ptrace_enter_call Modules/_lsprof.c /^ptrace_enter_call(PyObject *self, void *key, PyObject *userObj)$/;" f file: +ptrace_leave_call Modules/_lsprof.c /^ptrace_leave_call(PyObject *self, void *key)$/;" f file: +ptrdiff_t Lib/test/test_lib2to3/data/infinite_recursion.py /^ptrdiff_t = c_int$/;" v +ptrs Include/internal/pycore_obmalloc.h /^ struct arena_map_bot *ptrs[MAP_MID_LENGTH];$/;" m struct:arena_map_mid typeref:struct:arena_map_mid::arena_map_bot +ptrs Include/internal/pycore_obmalloc.h /^ struct arena_map_mid *ptrs[MAP_TOP_LENGTH];$/;" m struct:arena_map_top typeref:struct:arena_map_top::arena_map_mid +ptrs Objects/typeobject.c 9665;" d file: +ptrs Objects/typeobject.c 9694;" d file: +pty Lib/test/test_ioctl.py /^ pty = None$/;" v +pu Lib/turtle.py /^ pu = penup$/;" v class:TPen +public Lib/multiprocessing/managers.py /^ ['track_segment', 'release_segment', 'list_segments']$/;" v class:SyncManager.SharedMemoryServer +public Lib/multiprocessing/managers.py /^ public = ['shutdown', 'create', 'accept_connection', 'get_methods',$/;" v class:Server +public PC/layout/support/catalog.py /^def public(f):$/;" f +public PC/layout/support/logging.py /^def public(f):$/;" f +public PC/layout/support/options.py /^def public(f):$/;" f +public Tools/c-analyzer/cpython/_builtin_types.py /^ def public(self):$/;" m class:BuiltinTypeDecl +public Tools/c-analyzer/cpython/_builtin_types.py /^ def public(self):$/;" m class:BuiltinTypeInfo +publicId Lib/xml/dom/minidom.py /^ publicId = None$/;" v class:DocumentType +publicId Modules/expat/xmlparse.c /^ const XML_Char *publicId;$/;" m struct:__anon611 file: +public_methods Lib/multiprocessing/managers.py /^def public_methods(obj):$/;" f +punctuation_chars Lib/shlex.py /^ def punctuation_chars(self):$/;" m class:shlex +punycode_decode Lib/encodings/punycode.py /^def punycode_decode(text, errors):$/;" f +punycode_encode Lib/encodings/punycode.py /^def punycode_encode(text):$/;" f +punycode_testcases Lib/test/test_codecs.py /^punycode_testcases = [$/;" v +purge Lib/re/__init__.py /^def purge():$/;" f +purple Lib/test/test_enum.py /^ purple = 4$/;" v class:TestOrder.test_enum_has_extra_members.Color +purple Lib/test/test_enum.py /^ purple = 4$/;" v class:TestOrder.test_enum_has_extra_members_with_aliases.Color +push Lib/code.py /^ def push(self, line):$/;" m class:InteractiveConsole +push Lib/contextlib.py /^ def push(self, exit):$/;" m class:_BaseExitStack +push Lib/email/feedparser.py /^ def push(self, data):$/;" m class:BufferedSubFile +push Lib/email/header.py /^ def push(self, fws, string):$/;" m class:_Accumulator +push Lib/idlelib/idle_test/test_run.py /^ def push(self, lines):$/;" m class:MockShell +push Lib/lib2to3/pgen2/parse.py /^ def push(self, type, newdfa, newstate, context):$/;" m class:Parser +push Lib/test/smtpd.py /^ def push(self, msg):$/;" m class:SMTPChannel +push Lib/test/support/asynchat.py /^ def push(self, data):$/;" m class:async_chat +push Lib/test/test_ftplib.py /^ def push(self, data):$/;" m class:DummyFTPHandler +push Lib/test/test_ftplib.py /^ def push(self, what):$/;" m class:DummyDTPHandler +push Lib/test/test_poplib.py /^ def push(self, data):$/;" m class:DummyPOP3Handler +push Lib/turtle.py /^ def push(self, item):$/;" m class:Tbuffer +push Lib/turtledemo/minimal_hanoi.py /^ def push(self, d):$/;" m class:Tower +push Lib/turtledemo/sorting_animate.py /^ def push(self, d):$/;" m class:Shelf +push_async_callback Lib/contextlib.py /^ def push_async_callback(self, callback, \/, *args, **kwds):$/;" m class:AsyncExitStack +push_async_exit Lib/contextlib.py /^ def push_async_exit(self, exit):$/;" m class:AsyncExitStack +push_chunk Python/pystate.c /^push_chunk(PyThreadState *tstate, int size)$/;" f file: +push_cold_blocks_to_end Python/flowgraph.c /^push_cold_blocks_to_end(cfg_builder *g, int code_flags) {$/;" f file: +push_data Lib/test/test_nntplib.py /^ def push_data(self, data):$/;" m class:NNTPv1Handler +push_data Lib/test/test_nntplib.py /^ def push_data(self, data):$/;" m class:_NNTPServerIO +push_eof_matcher Lib/email/feedparser.py /^ def push_eof_matcher(self, pred):$/;" m class:BufferedSubFile +push_except_block Python/flowgraph.c /^push_except_block(ExceptStack *stack, cfg_instr *setup) {$/;" f file: +push_inlined_comprehension_state Python/compile.c /^push_inlined_comprehension_state(struct compiler *c, location loc,$/;" f file: +push_lit Lib/test/test_nntplib.py /^ def push_lit(self, lit):$/;" m class:NNTPv1Handler +push_source Lib/shlex.py /^ def push_source(self, newstream, newfile=None):$/;" m class:shlex +push_token Lib/netrc.py /^ def push_token(self, token):$/;" m class:_netrclex +push_token Lib/shlex.py /^ def push_token(self, tok):$/;" m class:shlex +push_value Objects/frameobject.c /^push_value(int64_t stack, Kind kind)$/;" f file: +push_with_producer Lib/test/support/asynchat.py /^ def push_with_producer(self, producer):$/;" m class:async_chat +pushbutton Lib/msilib/__init__.py /^ def pushbutton(self, name, x, y, w, h, attr, text, next):$/;" m class:Dialog +pushed_locals Python/compile.c /^ PyObject *pushed_locals;$/;" m struct:__anon673 file: +pushlines Lib/email/feedparser.py /^ def pushlines(self, lines):$/;" m class:BufferedSubFile +put Lib/asyncio/queues.py /^ async def put(self, item):$/;" m class:Queue +put Lib/multiprocessing/queues.py /^ def put(self, obj):$/;" m class:SimpleQueue +put Lib/multiprocessing/queues.py /^ def put(self, obj, block=True, timeout=None):$/;" m class:JoinableQueue +put Lib/multiprocessing/queues.py /^ def put(self, obj, block=True, timeout=None):$/;" m class:Queue +put Lib/pickle.py /^ def put(self, idx):$/;" m class:_Pickler +put Lib/queue.py /^ def put(self, item, block=True, timeout=None):$/;" m class:Queue +put Lib/queue.py /^ def put(self, item, block=True, timeout=None):$/;" m class:_PySimpleQueue +put Lib/tkinter/__init__.py /^ def put(self, data, to=None):$/;" m class:PhotoImage +put_nowait Lib/asyncio/queues.py /^ def put_nowait(self, item):$/;" m class:Queue +put_nowait Lib/multiprocessing/queues.py /^ def put_nowait(self, obj):$/;" m class:Queue +put_nowait Lib/queue.py /^ def put_nowait(self, item):$/;" m class:Queue +put_nowait Lib/queue.py /^ def put_nowait(self, item):$/;" m class:_PySimpleQueue +putback Lib/tkinter/dnd.py /^ def putback(self):$/;" m class:Icon +putcmd Lib/ftplib.py /^ def putcmd(self, line):$/;" m class:FTP +putcmd Lib/smtplib.py /^ def putcmd(self, cmd, args=""):$/;" m class:SMTP +putheader Lib/http/client.py /^ def putheader(self, header, *values):$/;" m class:HTTPConnection +putline Lib/ftplib.py /^ def putline(self, line):$/;" m class:FTP +putmessage Lib/idlelib/rpc.py /^ def putmessage(self, message):$/;" m class:SocketIO +putrequest Lib/http/client.py /^ def putrequest(self, method, url, skip_host=False,$/;" m class:HTTPConnection +putter Lib/test/test_asyncio/test_queues.py /^ async def putter():$/;" f function:QueueBasicTests.test_maxsize +putter Lib/test/test_asyncio/test_queues.py /^ async def putter(item):$/;" f function:QueuePutTests.test_why_are_putters_waiting +pvariance Lib/statistics.py /^def pvariance(data, mu=None):$/;" f +pvi PC/validate_ucrtbase.py /^pvi = POINTER(VS_FIXEDFILEINFO)()$/;" v +pwd Lib/ftplib.py /^ def pwd(self):$/;" m class:FTP +pwd Lib/tarfile.py /^ pwd = None$/;" v +pwd Lib/test/test_getpass.py /^ pwd = None$/;" v +pwd Lib/test/test_netrc.py /^ pwd = None$/;" v +pwd Lib/test/test_posix.py /^ pwd = None$/;" v +pwd Lib/test/test_pwd.py /^pwd = import_helper.import_module('pwd')$/;" v +pwd Lib/test/test_subprocess.py /^ pwd = None$/;" v +pwd_getpwall Modules/clinic/pwdmodule.c.h /^pwd_getpwall(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +pwd_getpwall_impl Modules/pwdmodule.c /^pwd_getpwall_impl(PyObject *module)$/;" f file: +pwd_getpwnam Modules/clinic/pwdmodule.c.h /^pwd_getpwnam(PyObject *module, PyObject *arg)$/;" f +pwd_getpwnam_impl Modules/pwdmodule.c /^pwd_getpwnam_impl(PyObject *module, PyObject *name)$/;" f file: +pwd_getpwuid Modules/pwdmodule.c /^pwd_getpwuid(PyObject *module, PyObject *uidobj)$/;" f file: +pwd_methods Modules/pwdmodule.c /^static PyMethodDef pwd_methods[] = {$/;" v file: +pwdmodule Modules/pwdmodule.c /^static struct PyModuleDef pwdmodule = {$/;" v typeref:struct:PyModuleDef file: +pwdmodule Modules/pwdmodule.c /^static struct PyModuleDef pwdmodule;$/;" v typeref:struct:PyModuleDef file: +pwdmodule_clear Modules/pwdmodule.c /^static int pwdmodule_clear(PyObject *m) {$/;" f file: +pwdmodule_exec Modules/pwdmodule.c /^pwdmodule_exec(PyObject *module)$/;" f file: +pwdmodule_free Modules/pwdmodule.c /^static void pwdmodule_free(void *m) {$/;" f file: +pwdmodule_slots Modules/pwdmodule.c /^static PyModuleDef_Slot pwdmodule_slots[] = {$/;" v file: +pwdmodule_traverse Modules/pwdmodule.c /^static int pwdmodule_traverse(PyObject *m, visitproc visit, void *arg) {$/;" f file: +pwdmodulestate Modules/pwdmodule.c /^} pwdmodulestate;$/;" t typeref:struct:__anon644 file: +py Lib/test/test_code.py /^ py = ctypes.pythonapi$/;" v class:CodeLocationTest +py2rlimit Modules/resource.c /^py2rlimit(PyObject *limits, struct rlimit *rl_out)$/;" f file: +pyET Lib/test/test_xml_etree.py /^pyET = None$/;" v +pyEpoll_Object Modules/selectmodule.c /^} pyEpoll_Object;$/;" t typeref:struct:__anon576 file: +pyEpoll_Type Modules/selectmodule.c /^ PyTypeObject *pyEpoll_Type;$/;" m struct:__anon572 file: +pyEpoll_Type_slots Modules/selectmodule.c /^static PyType_Slot pyEpoll_Type_slots[] = {$/;" v file: +pyEpoll_Type_spec Modules/selectmodule.c /^static PyType_Spec pyEpoll_Type_spec = {$/;" v file: +py_alias Modules/_hashopenssl.c /^ const char *py_alias;$/;" m struct:__anon560 file: +py_anext Lib/test/test_asyncgen.py /^def py_anext(iterator, default=_no_default):$/;" f +py_bisect Lib/test/test_bisect.py /^py_bisect = import_helper.import_fresh_module('bisect', blocked=['_bisect'])$/;" v +py_blake2b_dealloc Modules/_blake2/blake2b_impl.c /^py_blake2b_dealloc(PyObject *self)$/;" f file: +py_blake2b_get_block_size Modules/_blake2/blake2b_impl.c /^py_blake2b_get_block_size(BLAKE2bObject *self, void *closure)$/;" f file: +py_blake2b_get_digest_size Modules/_blake2/blake2b_impl.c /^py_blake2b_get_digest_size(BLAKE2bObject *self, void *closure)$/;" f file: +py_blake2b_get_name Modules/_blake2/blake2b_impl.c /^py_blake2b_get_name(BLAKE2bObject *self, void *closure)$/;" f file: +py_blake2b_getsetters Modules/_blake2/blake2b_impl.c /^static PyGetSetDef py_blake2b_getsetters[] = {$/;" v file: +py_blake2b_methods Modules/_blake2/blake2b_impl.c /^static PyMethodDef py_blake2b_methods[] = {$/;" v file: +py_blake2b_new Modules/_blake2/clinic/blake2b_impl.c.h /^py_blake2b_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +py_blake2b_new_impl Modules/_blake2/blake2b_impl.c /^py_blake2b_new_impl(PyTypeObject *type, PyObject *data, int digest_size,$/;" f file: +py_blake2s_dealloc Modules/_blake2/blake2s_impl.c /^py_blake2s_dealloc(PyObject *self)$/;" f file: +py_blake2s_get_block_size Modules/_blake2/blake2s_impl.c /^py_blake2s_get_block_size(BLAKE2sObject *self, void *closure)$/;" f file: +py_blake2s_get_digest_size Modules/_blake2/blake2s_impl.c /^py_blake2s_get_digest_size(BLAKE2sObject *self, void *closure)$/;" f file: +py_blake2s_get_name Modules/_blake2/blake2s_impl.c /^py_blake2s_get_name(BLAKE2sObject *self, void *closure)$/;" f file: +py_blake2s_getsetters Modules/_blake2/blake2s_impl.c /^static PyGetSetDef py_blake2s_getsetters[] = {$/;" v file: +py_blake2s_methods Modules/_blake2/blake2s_impl.c /^static PyMethodDef py_blake2s_methods[] = {$/;" v file: +py_blake2s_new Modules/_blake2/clinic/blake2s_impl.c.h /^py_blake2s_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +py_blake2s_new_impl Modules/_blake2/blake2s_impl.c /^py_blake2s_new_impl(PyTypeObject *type, PyObject *data, int digest_size,$/;" f file: +py_buffer_converter Modules/clinic/_testclinic.c.h /^py_buffer_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +py_buffer_converter_impl Modules/_testclinic.c /^py_buffer_converter_impl(PyObject *module, Py_buffer *a, Py_buffer *b)$/;" f file: +py_buffer_to_contiguous Modules/_testbuffer.c /^py_buffer_to_contiguous(PyObject *self, PyObject *args)$/;" f file: +py_cached_func Lib/test/test_functools.py /^def py_cached_func(x, y):$/;" f +py_coll Lib/test/test_ordered_dict.py /^py_coll = import_helper.import_fresh_module('collections',$/;" v +py_complex_converter Modules/clinic/_testclinic.c.h /^py_complex_converter(PyObject *module, PyObject *arg)$/;" f +py_complex_converter_impl Modules/_testclinic.c /^py_complex_converter_impl(PyObject *module, Py_complex a)$/;" f file: +py_digest_by_digestmod Modules/_hashopenssl.c /^py_digest_by_digestmod(PyObject *module, PyObject *digestmod, enum Py_hash_type py_ht) {$/;" f file: +py_digest_by_name Modules/_hashopenssl.c /^py_digest_by_name(PyObject *module, const char *name, enum Py_hash_type py_ht)$/;" f file: +py_digest_name Modules/_hashopenssl.c /^py_digest_name(const EVP_MD *md)$/;" f file: +py_dl_close Modules/_ctypes/callproc.c /^static PyObject *py_dl_close(PyObject *self, PyObject *args)$/;" f file: +py_dl_open Modules/_ctypes/callproc.c /^static PyObject *py_dl_open(PyObject *self, PyObject *args)$/;" f file: +py_dl_sym Modules/_ctypes/callproc.c /^static PyObject *py_dl_sym(PyObject *self, PyObject *args)$/;" f file: +py_dyld_shared_cache_contains_path Modules/_ctypes/callproc.c /^static PyObject *py_dyld_shared_cache_contains_path(PyObject *self, PyObject *args)$/;" f file: +py_encode_basestring Lib/json/encoder.py /^def py_encode_basestring(s):$/;" f +py_encode_basestring_ascii Lib/json/encoder.py /^def py_encode_basestring_ascii(s):$/;" f +py_evaluator Python/perf_trampoline.c /^typedef PyObject *(*py_evaluator)(PyThreadState *, _PyInterpreterFrame *,$/;" t file: +py_evp_fromname Modules/_hashopenssl.c /^py_evp_fromname(PyObject *module, const char *digestname, PyObject *data_obj,$/;" f file: +py_exe Lib/test/test_launcher.py /^ py_exe = None$/;" v class:RunPyMixin +py_extensions Lib/idlelib/iomenu.py /^py_extensions = ' '.join("*"+ext for ext in py_extensions)$/;" v +py_extensions Lib/idlelib/util.py /^py_extensions = ('.py', '.pyw', '.pyi') # Order needed for open\/save dialogs.$/;" v +py_factorial Lib/test/test_math.py /^def py_factorial(n):$/;" f +py_func Modules/_ctypes/_ctypes_test.c /^PyObject *py_func(PyObject *self, PyObject *args)$/;" f +py_func_si Modules/_ctypes/_ctypes_test.c /^PyObject *py_func_si(PyObject *self, PyObject *args)$/;" f +py_functools Lib/test/test_functools.py /^py_functools = import_helper.import_fresh_module('functools',$/;" v +py_get_monotonic_clock Python/pytime.c /^py_get_monotonic_clock(_PyTime_t *tp, _Py_clock_info_t *info, int raise_exc)$/;" f file: +py_get_system_clock Python/pytime.c /^py_get_system_clock(_PyTime_t *tp, _Py_clock_info_t *info, int raise_exc)$/;" f file: +py_get_win_perf_counter Python/pytime.c /^py_get_win_perf_counter(_PyTime_t *tp, _Py_clock_info_t *info, int raise_exc)$/;" f file: +py_getentropy Python/bootstrap_hash.c /^py_getentropy(char *buffer, Py_ssize_t size, int raise)$/;" f file: +py_getrandom Python/bootstrap_hash.c /^py_getrandom(void *buffer, Py_ssize_t size, int blocking, int raise)$/;" f file: +py_hashentry_t Modules/_hashopenssl.c /^} py_hashentry_t;$/;" t typeref:struct:__anon560 file: +py_hashentry_t_compare_name Modules/_hashopenssl.c /^py_hashentry_t_compare_name(const void *key1, const void *key2) {$/;" f file: +py_hashentry_t_destroy_value Modules/_hashopenssl.c /^py_hashentry_t_destroy_value(void *entry) {$/;" f file: +py_hashentry_t_hash_name Modules/_hashopenssl.c /^py_hashentry_t_hash_name(const void *key) {$/;" f file: +py_hashentry_table_new Modules/_hashopenssl.c /^py_hashentry_table_new(void) {$/;" f file: +py_hashes Modules/_hashopenssl.c /^static const py_hashentry_t py_hashes[] = {$/;" v file: +py_heapq Lib/test/test_heapq.py /^py_heapq = import_helper.import_fresh_module('heapq', blocked=['_heapq'])$/;" v +py_ini Lib/test/test_launcher.py /^ def py_ini(self, content):$/;" m class:RunPyMixin +py_is_pad Modules/_cursesmodule.c 1161;" d file: +py_is_pad Modules/_cursesmodule.c 1163;" d file: +py_mach_timebase_info Python/pytime.c /^py_mach_timebase_info(_PyTime_t *pnumer, _PyTime_t *pdenom, int raise)$/;" f file: +py_make_scanner Lib/json/scanner.py /^def py_make_scanner(context):$/;" f +py_mvwdelch Modules/_cursesmodule.c /^int py_mvwdelch(WINDOW *w, int y, int x)$/;" f +py_mvwdelch Modules/_cursesmodule.c 1149;" d file: +py_name Modules/_hashopenssl.c /^ const char *py_name;$/;" m struct:__anon560 file: +py_object Lib/ctypes/__init__.py /^class py_object(_SimpleCData):$/;" c +py_operator Lib/test/test_operator.py /^py_operator = import_helper.import_fresh_module('operator',$/;" v +py_posix_spawn Modules/posixmodule.c /^py_posix_spawn(int use_posix_spawnp, PyObject *module, path_t *path, PyObject *argv,$/;" f file: +py_proto_version Modules/_ssl.c /^enum py_proto_version {$/;" g file: +py_queue Lib/test/test_queue.py /^py_queue = import_helper.import_fresh_module('queue', blocked=['_queue'])$/;" v +py_recurse Lib/test/test_call.py /^ def py_recurse(n, m):$/;" f function:TestRecursion.test_super_deep +py_recursion_limit Include/cpython/pystate.h /^ int py_recursion_limit;$/;" m struct:_ts +py_recursion_remaining Include/cpython/pystate.h /^ int py_recursion_remaining;$/;" m struct:_ts +py_scanstring Lib/json/decoder.py /^def py_scanstring(s, end, strict=True,$/;" f +py_setpath Lib/test/test_getpath.py /^ py_setpath="",$/;" v class:MockGetPathTests +py_sha3_new Modules/clinic/sha3module.c.h /^py_sha3_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +py_sha3_new_impl Modules/sha3module.c /^py_sha3_new_impl(PyTypeObject *type, PyObject *data, int usedforsecurity)$/;" f file: +py_ssize_t_converter Modules/clinic/_testclinic.c.h /^py_ssize_t_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +py_ssize_t_converter_impl Modules/_testclinic.c /^py_ssize_t_converter_impl(PyObject *module, Py_ssize_t a, Py_ssize_t b,$/;" f file: +py_ssl_cert_requirements Modules/_ssl.c /^enum py_ssl_cert_requirements {$/;" g file: +py_ssl_encoding Modules/_ssl.h /^enum py_ssl_encoding {$/;" g +py_ssl_error Modules/_ssl.c /^enum py_ssl_error {$/;" g file: +py_ssl_error_code Modules/_ssl.c /^struct py_ssl_error_code {$/;" s file: +py_ssl_library_code Modules/_ssl.c /^struct py_ssl_library_code {$/;" s file: +py_ssl_server_or_client Modules/_ssl.c /^enum py_ssl_server_or_client {$/;" g file: +py_ssl_version Modules/_ssl.c /^enum py_ssl_version {$/;" g file: +py_stat Lib/test/test_stat.py /^py_stat = import_fresh_module('stat', blocked=['_stat'])$/;" v +py_statistics Lib/test/test_statistics.py /^py_statistics = import_helper.import_fresh_module('statistics',$/;" v +py_stub_tls_entry Include/internal/pycore_pythread.h /^struct py_stub_tls_entry {$/;" s +py_time_second Modules/_datetimemodule.c /^py_time_second(PyDateTime_Time *self, void *unused)$/;" f file: +py_tls_entries Python/thread_pthread_stubs.h 130;" d +py_tls_entry Python/thread_pthread_stubs.h /^typedef struct py_stub_tls_entry py_tls_entry;$/;" t typeref:struct:py_stub_tls_entry +py_trampoline Python/perf_trampoline.c /^typedef PyObject *(*py_trampoline)(PyThreadState *, _PyInterpreterFrame *, int,$/;" t file: +py_trampoline_evaluator Python/perf_trampoline.c /^py_trampoline_evaluator(PyThreadState *ts, _PyInterpreterFrame *frame,$/;" f file: +py_uuid Lib/test/test_uuid.py /^py_uuid = import_helper.import_fresh_module('uuid', blocked=['_uuid'])$/;" v +py_w_stopcode Modules/_testcapimodule.c /^py_w_stopcode(PyObject *self, PyObject *args)$/;" f file: +py_warnings Lib/test/test_warnings/__init__.py /^py_warnings = import_helper.import_fresh_module('warnings',$/;" v +py_win_perf_counter_frequency Python/pytime.c /^py_win_perf_counter_frequency(LONGLONG *pfrequency, int raise)$/;" f file: +pybool Lib/pickletools.py /^pybool = StackObject($/;" v +pybuffer Lib/pickletools.py /^pybuffer = StackObject($/;" v +pybuilddir_txt Tools/build/check_extension_modules.py /^ pybuilddir_txt = "pybuilddir.txt"$/;" v class:ModuleChecker +pybytearray Lib/pickletools.py /^pybytearray = StackObject($/;" v +pybytes Lib/pickletools.py /^pybytes = StackObject($/;" v +pyc_ext Lib/test/test_zipimport.py /^pyc_ext = '.pyc'$/;" v +pyc_file Lib/test/test_zipimport.py /^pyc_file = importlib.util.cache_from_source(TESTMOD + '.py')$/;" v +pycache_prefix Include/cpython/initconfig.h /^ wchar_t *pycache_prefix;$/;" m struct:PyConfig +pycompilecmd Lib/test/test_py_compile.py /^ def pycompilecmd(self, *args, **kwargs):$/;" m class:PyCompileCLITestCase +pycompilecmd_failure Lib/test/test_py_compile.py /^ def pycompilecmd_failure(self, *args):$/;" m class:PyCompileCLITestCase +pycompilestring Modules/_testcapimodule.c /^pycompilestring(PyObject* self, PyObject *obj) {$/;" f file: +pycore_create_interpreter Python/pylifecycle.c /^pycore_create_interpreter(_PyRuntimeState *runtime,$/;" f file: +pycore_init_builtins Python/pylifecycle.c /^pycore_init_builtins(PyThreadState *tstate)$/;" f file: +pycore_init_global_objects Python/pylifecycle.c /^pycore_init_global_objects(PyInterpreterState *interp)$/;" f file: +pycore_init_runtime Python/pylifecycle.c /^pycore_init_runtime(_PyRuntimeState *runtime,$/;" f file: +pycore_init_types Python/pylifecycle.c /^pycore_init_types(PyInterpreterState *interp)$/;" f file: +pycore_interp_init Python/pylifecycle.c /^pycore_interp_init(PyThreadState *tstate)$/;" f file: +pydebug Objects/obmalloc.c /^static const int pydebug = 0;$/;" v file: +pydebug Objects/obmalloc.c /^static const int pydebug = 1;$/;" v file: +pydict Lib/pickletools.py /^pydict = StackObject($/;" v +pydll Lib/ctypes/__init__.py /^pydll = LibraryLoader(PyDLL)$/;" v +pydoc_topic_labels Doc/tools/extensions/pyspecific.py /^pydoc_topic_labels = [$/;" v +pyepoll_dealloc Modules/selectmodule.c /^pyepoll_dealloc(pyEpoll_Object *self)$/;" f file: +pyepoll_err_closed Modules/selectmodule.c /^pyepoll_err_closed(void)$/;" f file: +pyepoll_get_closed Modules/selectmodule.c /^pyepoll_get_closed(pyEpoll_Object *self, void *Py_UNUSED(ignored))$/;" f file: +pyepoll_getsetlist Modules/selectmodule.c /^static PyGetSetDef pyepoll_getsetlist[] = {$/;" v file: +pyepoll_internal_close Modules/selectmodule.c /^pyepoll_internal_close(pyEpoll_Object *self)$/;" f file: +pyepoll_internal_ctl Modules/selectmodule.c /^pyepoll_internal_ctl(int epfd, int op, int fd, unsigned int events)$/;" f file: +pyepoll_methods Modules/selectmodule.c /^static PyMethodDef pyepoll_methods[] = {$/;" v file: +pyeval_calls Include/pystats.h /^ uint64_t pyeval_calls;$/;" m struct:_call_stats +pyex Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py /^pyex = os.environ['PYTHONEXECUTABLE']$/;" v +pyexpat_ErrorString Modules/clinic/pyexpat.c.h /^pyexpat_ErrorString(PyObject *module, PyObject *arg)$/;" f +pyexpat_ErrorString_impl Modules/pyexpat.c /^pyexpat_ErrorString_impl(PyObject *module, long code)$/;" f file: +pyexpat_ParserCreate Modules/clinic/pyexpat.c.h /^pyexpat_ParserCreate(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pyexpat_ParserCreate_impl Modules/pyexpat.c /^pyexpat_ParserCreate_impl(PyObject *module, const char *encoding,$/;" f file: +pyexpat_capsule_destructor Modules/pyexpat.c /^pyexpat_capsule_destructor(PyObject *capsule)$/;" f file: +pyexpat_clear Modules/pyexpat.c /^pyexpat_clear(PyObject *module)$/;" f file: +pyexpat_exec Modules/pyexpat.c /^pyexpat_exec(PyObject *mod)$/;" f file: +pyexpat_free Modules/pyexpat.c /^pyexpat_free(void *module)$/;" f file: +pyexpat_get_state Modules/pyexpat.c /^pyexpat_get_state(PyObject *module)$/;" f file: +pyexpat_methods Modules/pyexpat.c /^static struct PyMethodDef pyexpat_methods[] = {$/;" v typeref:struct:PyMethodDef file: +pyexpat_slots Modules/pyexpat.c /^static PyModuleDef_Slot pyexpat_slots[] = {$/;" v file: +pyexpat_state Modules/pyexpat.c /^} pyexpat_state;$/;" t typeref:struct:__anon482 file: +pyexpat_traverse Modules/pyexpat.c /^pyexpat_traverse(PyObject *module, visitproc visit, void *arg)$/;" f file: +pyexpat_xmlparser_ExternalEntityParserCreate Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_ExternalEntityParserCreate(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pyexpat_xmlparser_ExternalEntityParserCreate_impl Modules/pyexpat.c /^pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self,$/;" f file: +pyexpat_xmlparser_GetBase Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_GetBase(xmlparseobject *self, PyObject *Py_UNUSED(ignored))$/;" f +pyexpat_xmlparser_GetBase_impl Modules/pyexpat.c /^pyexpat_xmlparser_GetBase_impl(xmlparseobject *self)$/;" f file: +pyexpat_xmlparser_GetInputContext Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_GetInputContext(xmlparseobject *self, PyObject *Py_UNUSED(ignored))$/;" f +pyexpat_xmlparser_GetInputContext_impl Modules/pyexpat.c /^pyexpat_xmlparser_GetInputContext_impl(xmlparseobject *self)$/;" f file: +pyexpat_xmlparser_Parse Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_Parse(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pyexpat_xmlparser_ParseFile Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_ParseFile(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pyexpat_xmlparser_ParseFile_impl Modules/pyexpat.c /^pyexpat_xmlparser_ParseFile_impl(xmlparseobject *self, PyTypeObject *cls,$/;" f file: +pyexpat_xmlparser_Parse_impl Modules/pyexpat.c /^pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyTypeObject *cls,$/;" f file: +pyexpat_xmlparser_SetBase Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_SetBase(xmlparseobject *self, PyObject *arg)$/;" f +pyexpat_xmlparser_SetBase_impl Modules/pyexpat.c /^pyexpat_xmlparser_SetBase_impl(xmlparseobject *self, const char *base)$/;" f file: +pyexpat_xmlparser_SetParamEntityParsing Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_SetParamEntityParsing(xmlparseobject *self, PyObject *arg)$/;" f +pyexpat_xmlparser_SetParamEntityParsing_impl Modules/pyexpat.c /^pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag)$/;" f file: +pyexpat_xmlparser_UseForeignDTD Modules/clinic/pyexpat.c.h /^pyexpat_xmlparser_UseForeignDTD(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pyexpat_xmlparser_UseForeignDTD_impl Modules/pyexpat.c /^pyexpat_xmlparser_UseForeignDTD_impl(xmlparseobject *self, PyTypeObject *cls,$/;" f file: +pyexpatmodule Modules/pyexpat.c /^static struct PyModuleDef pyexpatmodule = {$/;" v typeref:struct:PyModuleDef file: +pyfloat Lib/pickletools.py /^pyfloat = StackObject($/;" v +pyfrozenset Lib/pickletools.py /^pyfrozenset = StackObject($/;" v +pyfunc Lib/test/test_call.py /^def pyfunc(arg1, arg2):$/;" f +pyfunc_noarg Lib/test/test_call.py /^def pyfunc_noarg():$/;" f +pyfunc_watchers Modules/_testcapi/watchers.c /^static PyObject *pyfunc_watchers[NUM_TEST_FUNC_WATCHERS];$/;" v file: +pyhash_runtime_state Include/internal/pycore_pyhash.h /^struct pyhash_runtime_state {$/;" s +pyhash_state Include/internal/pycore_runtime.h /^ struct pyhash_runtime_state pyhash_state;$/;" m struct:pyruntimestate typeref:struct:pyruntimestate::pyhash_runtime_state +pyhash_state_INIT Include/internal/pycore_pyhash.h 31;" d +pyhkey_type_slots PC/winreg.c /^static PyType_Slot pyhkey_type_slots[] = {$/;" v file: +pyhkey_type_spec PC/winreg.c /^static PyType_Spec pyhkey_type_spec = {$/;" v file: +pyinit_config Python/pylifecycle.c /^pyinit_config(_PyRuntimeState *runtime,$/;" f file: +pyinit_core Python/pylifecycle.c /^pyinit_core(_PyRuntimeState *runtime,$/;" f file: +pyinit_core_reconfigure Python/pylifecycle.c /^pyinit_core_reconfigure(_PyRuntimeState *runtime,$/;" f file: +pyinit_main Python/pylifecycle.c /^pyinit_main(PyThreadState *tstate)$/;" f file: +pyinit_main_reconfigure Python/pylifecycle.c /^pyinit_main_reconfigure(PyThreadState *tstate)$/;" f file: +pyinteger_or_bool Lib/pickletools.py /^pyinteger_or_bool = StackObject($/;" v +pyinterpreters Include/internal/pycore_runtime.h /^ struct pyinterpreters {$/;" s struct:pyruntimestate +pyjson Lib/test/test_json/__init__.py /^pyjson = import_helper.import_fresh_module('json', blocked=['_json'])$/;" v +pylist Lib/pickletools.py /^pylist = StackObject($/;" v +pylist Modules/selectmodule.c /^} pylist;$/;" t typeref:struct:__anon573 file: +pylong_as_ld Objects/memoryobject.c /^pylong_as_ld(PyObject *item)$/;" f file: +pylong_as_lld Objects/memoryobject.c /^pylong_as_lld(PyObject *item)$/;" f file: +pylong_as_llu Objects/memoryobject.c /^pylong_as_llu(PyObject *item)$/;" f file: +pylong_as_lu Objects/memoryobject.c /^pylong_as_lu(PyObject *item)$/;" f file: +pylong_as_zd Objects/memoryobject.c /^pylong_as_zd(PyObject *item)$/;" f file: +pylong_as_zu Objects/memoryobject.c /^pylong_as_zu(PyObject *item)$/;" f file: +pylong_int_divmod Objects/longobject.c /^pylong_int_divmod(PyLongObject *v, PyLongObject *w,$/;" f file: +pylong_int_from_string Objects/longobject.c /^pylong_int_from_string(const char *start, const char *end, PyLongObject **res)$/;" f file: +pylong_int_to_decimal_string Objects/longobject.c /^pylong_int_to_decimal_string(PyObject *aa,$/;" f file: +pymain_err_print Modules/main.c /^pymain_err_print(int *exitcode_p)$/;" f file: +pymain_exit_err_print Modules/main.c /^pymain_exit_err_print(void)$/;" f file: +pymain_exit_error Modules/main.c /^pymain_exit_error(PyStatus status)$/;" f file: +pymain_free Modules/main.c /^pymain_free(void)$/;" f file: +pymain_get_importer Modules/main.c /^pymain_get_importer(const wchar_t *filename, PyObject **importer_p, int *exitcode)$/;" f file: +pymain_header Modules/main.c /^pymain_header(const PyConfig *config)$/;" f file: +pymain_import_readline Modules/main.c /^pymain_import_readline(const PyConfig *config)$/;" f file: +pymain_init Modules/main.c /^pymain_init(const _PyArgv *args)$/;" f file: +pymain_main Modules/main.c /^pymain_main(_PyArgv *args)$/;" f file: +pymain_repl Modules/main.c /^pymain_repl(PyConfig *config, int *exitcode)$/;" f file: +pymain_run_command Modules/main.c /^pymain_run_command(wchar_t *command)$/;" f file: +pymain_run_file Modules/main.c /^pymain_run_file(const PyConfig *config)$/;" f file: +pymain_run_file_obj Modules/main.c /^pymain_run_file_obj(PyObject *program_name, PyObject *filename,$/;" f file: +pymain_run_interactive_hook Modules/main.c /^pymain_run_interactive_hook(int *exitcode)$/;" f file: +pymain_run_module Modules/main.c /^pymain_run_module(const wchar_t *modname, int set_argv0)$/;" f file: +pymain_run_python Modules/main.c /^pymain_run_python(int *exitcode)$/;" f file: +pymain_run_startup Modules/main.c /^pymain_run_startup(PyConfig *config, int *exitcode)$/;" f file: +pymain_run_stdin Modules/main.c /^pymain_run_stdin(PyConfig *config)$/;" f file: +pymain_set_inspect Modules/main.c /^pymain_set_inspect(PyConfig *config, int inspect)$/;" f file: +pymain_sys_path_add_path0 Modules/main.c /^pymain_sys_path_add_path0(PyInterpreterState *interp, PyObject *path0)$/;" f file: +pymalloc_alloc Objects/obmalloc.c /^pymalloc_alloc(OMState *state, void *Py_UNUSED(ctx), size_t nbytes)$/;" f file: +pymalloc_free Objects/obmalloc.c /^pymalloc_free(OMState *state, void *Py_UNUSED(ctx), void *p)$/;" f file: +pymalloc_pool_extend Objects/obmalloc.c /^pymalloc_pool_extend(poolp pool, uint size)$/;" f file: +pymalloc_realloc Objects/obmalloc.c /^pymalloc_realloc(OMState *state, void *ctx,$/;" f file: +pymap Tools/unicode/gencodec.py /^def pymap(name,map,pyfile,encodingname,comments=1):$/;" f +pymarshal_read_last_object_from_file Modules/_testcapimodule.c /^pymarshal_read_last_object_from_file(PyObject* self, PyObject *args)$/;" f file: +pymarshal_read_long_from_file Modules/_testcapimodule.c /^pymarshal_read_long_from_file(PyObject* self, PyObject *args)$/;" f file: +pymarshal_read_object_from_file Modules/_testcapimodule.c /^pymarshal_read_object_from_file(PyObject* self, PyObject *args)$/;" f file: +pymarshal_read_short_from_file Modules/_testcapimodule.c /^pymarshal_read_short_from_file(PyObject* self, PyObject *args)$/;" f file: +pymarshal_write_long_to_file Modules/_testcapimodule.c /^pymarshal_write_long_to_file(PyObject* self, PyObject *args)$/;" f file: +pymarshal_write_object_to_file Modules/_testcapimodule.c /^pymarshal_write_object_to_file(PyObject* self, PyObject *args)$/;" f file: +pymem_api_misuse Modules/_testcapi/mem.c /^pymem_api_misuse(PyObject *self, PyObject *args)$/;" f file: +pymem_block Include/internal/pycore_obmalloc.h /^typedef uint8_t pymem_block;$/;" t +pymem_buffer_overflow Modules/_testcapi/mem.c /^pymem_buffer_overflow(PyObject *self, PyObject *args)$/;" f file: +pymem_destructor Modules/_ctypes/callproc.c /^static void pymem_destructor(PyObject *ptr)$/;" f file: +pymem_destructor Modules/_ctypes/cfield.c /^static void pymem_destructor(PyObject *ptr)$/;" f file: +pymem_malloc_without_gil Modules/_testcapi/mem.c /^pymem_malloc_without_gil(PyObject *self, PyObject *args)$/;" f file: +pymem_uint Include/internal/pycore_obmalloc.h /^typedef unsigned int pymem_uint; \/* assuming >= 16 bits *\/$/;" t +pymemallocator_eq Objects/obmalloc.c /^pymemallocator_eq(PyMemAllocatorEx *a, PyMemAllocatorEx *b)$/;" f file: +pynone Lib/pickletools.py /^pynone = StackObject($/;" v +pynumber_tobase Modules/_testcapimodule.c /^pynumber_tobase(PyObject *module, PyObject *args)$/;" f file: +pyobject_bytes_from_null Modules/_testcapimodule.c /^pyobject_bytes_from_null(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +pyobject_getitemdata Modules/_testcapi/heaptype.c /^pyobject_getitemdata(PyObject *self, PyObject *o)$/;" f file: +pyobject_malloc_without_gil Modules/_testcapi/mem.c /^pyobject_malloc_without_gil(PyObject *self, PyObject *args)$/;" f file: +pyobject_repr_from_null Modules/_testcapimodule.c /^pyobject_repr_from_null(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +pyobject_str_from_null Modules/_testcapimodule.c /^pyobject_str_from_null(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +pyop_field Tools/gdb/libpython.py /^ def pyop_field(self, name):$/;" m class:PyObjectPtr +pyrange Lib/test/test_range.py /^def pyrange(start, stop, step):$/;" f +pyrange_reversed Lib/test/test_range.py /^def pyrange_reversed(start, stop, step):$/;" f +pyreturn_callback Modules/_lsprof.c /^PyObject* pyreturn_callback(ProfilerObject* self, PyObject *const *args, Py_ssize_t size)$/;" f +pyrun_file Python/pythonrun.c /^pyrun_file(FILE *fp, PyObject *filename, int start, PyObject *globals,$/;" f file: +pyruntimestate Include/internal/pycore_runtime.h /^typedef struct pyruntimestate {$/;" s +pyset Lib/pickletools.py /^pyset = StackObject($/;" v +pyshell Lib/idlelib/pyshell.py /^ pyshell = None$/;" v class:PyShellFileList +pysiphash Lib/test/test_hash.py /^def pysiphash(uint64):$/;" f +pysiphash Python/pyhash.c /^pysiphash(const void *src, Py_ssize_t src_sz) {$/;" f file: +pysleep Modules/timemodule.c /^pysleep(_PyTime_t timeout)$/;" f file: +pyslot_offsets Objects/typeobject.c /^static const PySlot_Offset pyslot_offsets[] = {$/;" v file: +pysqlite_Blob Modules/_sqlite/blob.h /^} pysqlite_Blob;$/;" t typeref:struct:__anon360 +pysqlite_Connection Modules/_sqlite/connection.h /^} pysqlite_Connection;$/;" t typeref:struct:__anon359 +pysqlite_Cursor Modules/_sqlite/cursor.h /^} pysqlite_Cursor;$/;" t typeref:struct:__anon358 +pysqlite_PrepareProtocol Modules/_sqlite/prepare_protocol.h /^} pysqlite_PrepareProtocol;$/;" t typeref:struct:__anon356 +pysqlite_Row Modules/_sqlite/row.h /^} pysqlite_Row;$/;" t typeref:struct:_Row +pysqlite_Statement Modules/_sqlite/statement.h /^} pysqlite_Statement;$/;" t typeref:struct:__anon357 +pysqlite_adapt Modules/_sqlite/clinic/module.c.h /^pysqlite_adapt(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_adapt_impl Modules/_sqlite/module.c /^pysqlite_adapt_impl(PyObject *module, PyObject *obj, PyObject *proto,$/;" f file: +pysqlite_blob_setup_types Modules/_sqlite/blob.c /^pysqlite_blob_setup_types(PyObject *mod)$/;" f +pysqlite_build_row_cast_map Modules/_sqlite/cursor.c /^pysqlite_build_row_cast_map(pysqlite_Cursor* self)$/;" f file: +pysqlite_check_connection Modules/_sqlite/connection.c /^int pysqlite_check_connection(pysqlite_Connection* con)$/;" f +pysqlite_check_thread Modules/_sqlite/connection.c /^int pysqlite_check_thread(pysqlite_Connection* self)$/;" f +pysqlite_close_all_blobs Modules/_sqlite/blob.c /^pysqlite_close_all_blobs(pysqlite_Connection *self)$/;" f +pysqlite_complete_statement Modules/_sqlite/clinic/module.c.h /^pysqlite_complete_statement(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_complete_statement_impl Modules/_sqlite/module.c /^pysqlite_complete_statement_impl(PyObject *module, const char *statement)$/;" f file: +pysqlite_connection_backup Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_backup(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_backup_impl Modules/_sqlite/connection.c /^pysqlite_connection_backup_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_call Modules/_sqlite/connection.c /^pysqlite_connection_call(pysqlite_Connection *self, PyObject *args,$/;" f file: +pysqlite_connection_close Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_close(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_connection_close_impl Modules/_sqlite/connection.c /^pysqlite_connection_close_impl(pysqlite_Connection *self)$/;" f file: +pysqlite_connection_commit Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_commit(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_connection_commit_impl Modules/_sqlite/connection.c /^pysqlite_connection_commit_impl(pysqlite_Connection *self)$/;" f file: +pysqlite_connection_create_aggregate Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_create_aggregate(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_create_aggregate_impl Modules/_sqlite/connection.c /^pysqlite_connection_create_aggregate_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_create_collation Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_create_collation(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_create_collation_impl Modules/_sqlite/connection.c /^pysqlite_connection_create_collation_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_create_function Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_create_function(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_create_function_impl Modules/_sqlite/connection.c /^pysqlite_connection_create_function_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_cursor Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_cursor(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_cursor_impl Modules/_sqlite/connection.c /^pysqlite_connection_cursor_impl(pysqlite_Connection *self, PyObject *factory)$/;" f file: +pysqlite_connection_enable_load_extension Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_enable_load_extension(pysqlite_Connection *self, PyObject *arg)$/;" f +pysqlite_connection_enable_load_extension_impl Modules/_sqlite/connection.c /^pysqlite_connection_enable_load_extension_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_enter Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_enter(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_connection_enter_impl Modules/_sqlite/connection.c /^pysqlite_connection_enter_impl(pysqlite_Connection *self)$/;" f file: +pysqlite_connection_execute Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_execute(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_connection_execute_impl Modules/_sqlite/connection.c /^pysqlite_connection_execute_impl(pysqlite_Connection *self, PyObject *sql,$/;" f file: +pysqlite_connection_executemany Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_executemany(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_connection_executemany_impl Modules/_sqlite/connection.c /^pysqlite_connection_executemany_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_executescript Modules/_sqlite/connection.c /^pysqlite_connection_executescript(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_exit Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_exit(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_connection_exit_impl Modules/_sqlite/connection.c /^pysqlite_connection_exit_impl(pysqlite_Connection *self, PyObject *exc_type,$/;" f file: +pysqlite_connection_get_in_transaction Modules/_sqlite/connection.c /^static PyObject* pysqlite_connection_get_in_transaction(pysqlite_Connection* self, void* unused)$/;" f file: +pysqlite_connection_get_isolation_level Modules/_sqlite/connection.c /^static PyObject* pysqlite_connection_get_isolation_level(pysqlite_Connection* self, void* unused)$/;" f file: +pysqlite_connection_get_total_changes Modules/_sqlite/connection.c /^static PyObject* pysqlite_connection_get_total_changes(pysqlite_Connection* self, void* unused)$/;" f file: +pysqlite_connection_init Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_init(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +pysqlite_connection_init_impl Modules/_sqlite/connection.c /^pysqlite_connection_init_impl(pysqlite_Connection *self, PyObject *database,$/;" f file: +pysqlite_connection_interrupt Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_interrupt(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_connection_interrupt_impl Modules/_sqlite/connection.c /^pysqlite_connection_interrupt_impl(pysqlite_Connection *self)$/;" f file: +pysqlite_connection_iterdump Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_iterdump(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_connection_iterdump_impl Modules/_sqlite/connection.c /^pysqlite_connection_iterdump_impl(pysqlite_Connection *self)$/;" f file: +pysqlite_connection_load_extension Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_load_extension(pysqlite_Connection *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_load_extension_impl Modules/_sqlite/connection.c /^pysqlite_connection_load_extension_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_rollback Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_rollback(pysqlite_Connection *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_connection_rollback_impl Modules/_sqlite/connection.c /^pysqlite_connection_rollback_impl(pysqlite_Connection *self)$/;" f file: +pysqlite_connection_set_authorizer Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_set_authorizer(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_set_authorizer_impl Modules/_sqlite/connection.c /^pysqlite_connection_set_authorizer_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_set_isolation_level Modules/_sqlite/connection.c /^pysqlite_connection_set_isolation_level(pysqlite_Connection* self, PyObject* isolation_level, void *Py_UNUSED(ignored))$/;" f file: +pysqlite_connection_set_progress_handler Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_set_progress_handler(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_set_progress_handler_impl Modules/_sqlite/connection.c /^pysqlite_connection_set_progress_handler_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_set_trace_callback Modules/_sqlite/clinic/connection.c.h /^pysqlite_connection_set_trace_callback(pysqlite_Connection *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_connection_set_trace_callback_impl Modules/_sqlite/connection.c /^pysqlite_connection_set_trace_callback_impl(pysqlite_Connection *self,$/;" f file: +pysqlite_connection_setup_types Modules/_sqlite/connection.c /^pysqlite_connection_setup_types(PyObject *module)$/;" f +pysqlite_cursor_close Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_close(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_cursor_close_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_close_impl(pysqlite_Cursor *self)$/;" f file: +pysqlite_cursor_execute Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_execute(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_cursor_execute_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_execute_impl(pysqlite_Cursor *self, PyObject *sql,$/;" f file: +pysqlite_cursor_executemany Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_executemany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_cursor_executemany_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_executemany_impl(pysqlite_Cursor *self, PyObject *sql,$/;" f file: +pysqlite_cursor_executescript Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_executescript(pysqlite_Cursor *self, PyObject *arg)$/;" f +pysqlite_cursor_executescript_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_executescript_impl(pysqlite_Cursor *self,$/;" f file: +pysqlite_cursor_fetchall Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_fetchall(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_cursor_fetchall_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_fetchall_impl(pysqlite_Cursor *self)$/;" f file: +pysqlite_cursor_fetchmany Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_fetchmany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)$/;" f +pysqlite_cursor_fetchmany_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_fetchmany_impl(pysqlite_Cursor *self, int maxrows)$/;" f file: +pysqlite_cursor_fetchone Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_fetchone(pysqlite_Cursor *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_cursor_fetchone_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_fetchone_impl(pysqlite_Cursor *self)$/;" f file: +pysqlite_cursor_init Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_init(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f +pysqlite_cursor_init_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_init_impl(pysqlite_Cursor *self,$/;" f file: +pysqlite_cursor_iternext Modules/_sqlite/cursor.c /^pysqlite_cursor_iternext(pysqlite_Cursor *self)$/;" f file: +pysqlite_cursor_setinputsizes Modules/_sqlite/cursor.c /^pysqlite_cursor_setinputsizes(pysqlite_Cursor *self, PyObject *sizes)$/;" f file: +pysqlite_cursor_setoutputsize Modules/_sqlite/clinic/cursor.c.h /^pysqlite_cursor_setoutputsize(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_cursor_setoutputsize_impl Modules/_sqlite/cursor.c /^pysqlite_cursor_setoutputsize_impl(pysqlite_Cursor *self, PyObject *size,$/;" f file: +pysqlite_cursor_setup_types Modules/_sqlite/cursor.c /^pysqlite_cursor_setup_types(PyObject *module)$/;" f +pysqlite_enable_callback_trace Modules/_sqlite/clinic/module.c.h /^pysqlite_enable_callback_trace(PyObject *module, PyObject *arg)$/;" f +pysqlite_enable_callback_trace_impl Modules/_sqlite/module.c /^pysqlite_enable_callback_trace_impl(PyObject *module, int enable)$/;" f file: +pysqlite_error_name Modules/_sqlite/module.c /^pysqlite_error_name(int rc)$/;" f +pysqlite_get_state Modules/_sqlite/module.h /^pysqlite_get_state(PyObject *module)$/;" f +pysqlite_get_state_by_type Modules/_sqlite/module.h /^pysqlite_get_state_by_type(PyTypeObject *tp)$/;" f +pysqlite_iter Modules/_sqlite/row.c /^static PyObject* pysqlite_iter(pysqlite_Row* self)$/;" f file: +pysqlite_microprotocols_adapt Modules/_sqlite/microprotocols.c /^pysqlite_microprotocols_adapt(pysqlite_state *state, PyObject *obj,$/;" f +pysqlite_microprotocols_add Modules/_sqlite/microprotocols.c /^pysqlite_microprotocols_add(pysqlite_state *state, PyTypeObject *type,$/;" f +pysqlite_microprotocols_init Modules/_sqlite/microprotocols.c /^pysqlite_microprotocols_init(PyObject *module)$/;" f +pysqlite_prepare_protocol_dealloc Modules/_sqlite/prepare_protocol.c /^pysqlite_prepare_protocol_dealloc(pysqlite_PrepareProtocol *self)$/;" f file: +pysqlite_prepare_protocol_init Modules/_sqlite/prepare_protocol.c /^pysqlite_prepare_protocol_init(pysqlite_PrepareProtocol *self, PyObject *args,$/;" f file: +pysqlite_prepare_protocol_setup_types Modules/_sqlite/prepare_protocol.c /^pysqlite_prepare_protocol_setup_types(PyObject *module)$/;" f +pysqlite_prepare_protocol_traverse Modules/_sqlite/prepare_protocol.c /^pysqlite_prepare_protocol_traverse(PyObject *self, visitproc visit, void *arg)$/;" f file: +pysqlite_register_adapter Modules/_sqlite/clinic/module.c.h /^pysqlite_register_adapter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_register_adapter_impl Modules/_sqlite/module.c /^pysqlite_register_adapter_impl(PyObject *module, PyTypeObject *type,$/;" f file: +pysqlite_register_converter Modules/_sqlite/clinic/module.c.h /^pysqlite_register_converter(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +pysqlite_register_converter_impl Modules/_sqlite/module.c /^pysqlite_register_converter_impl(PyObject *module, PyObject *orig_name,$/;" f file: +pysqlite_row_dealloc Modules/_sqlite/row.c /^pysqlite_row_dealloc(PyObject *self)$/;" f file: +pysqlite_row_hash Modules/_sqlite/row.c /^static Py_hash_t pysqlite_row_hash(pysqlite_Row *self)$/;" f file: +pysqlite_row_item Modules/_sqlite/row.c /^PyObject* pysqlite_row_item(pysqlite_Row* self, Py_ssize_t idx)$/;" f +pysqlite_row_keys Modules/_sqlite/clinic/row.c.h /^pysqlite_row_keys(pysqlite_Row *self, PyObject *Py_UNUSED(ignored))$/;" f +pysqlite_row_keys_impl Modules/_sqlite/row.c /^pysqlite_row_keys_impl(pysqlite_Row *self)$/;" f file: +pysqlite_row_length Modules/_sqlite/row.c /^pysqlite_row_length(pysqlite_Row* self)$/;" f file: +pysqlite_row_new Modules/_sqlite/clinic/row.c.h /^pysqlite_row_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +pysqlite_row_new_impl Modules/_sqlite/row.c /^pysqlite_row_new_impl(PyTypeObject *type, pysqlite_Cursor *cursor,$/;" f file: +pysqlite_row_richcompare Modules/_sqlite/row.c /^static PyObject* pysqlite_row_richcompare(pysqlite_Row *self, PyObject *_other, int opid)$/;" f file: +pysqlite_row_setup_types Modules/_sqlite/row.c /^pysqlite_row_setup_types(PyObject *module)$/;" f +pysqlite_row_subscript Modules/_sqlite/row.c /^pysqlite_row_subscript(pysqlite_Row *self, PyObject *idx)$/;" f file: +pysqlite_state Modules/_sqlite/module.h /^} pysqlite_state;$/;" t typeref:struct:__anon355 +pysqlite_statement_create Modules/_sqlite/statement.c /^pysqlite_statement_create(pysqlite_Connection *connection, PyObject *sql)$/;" f +pysqlite_statement_setup_types Modules/_sqlite/statement.c /^pysqlite_statement_setup_types(PyObject *module)$/;" f +pyssizet_member Modules/_testcapi/structmember.c /^ Py_ssize_t pyssizet_member;$/;" m struct:__anon543 file: +pyssl_version Tools/ssl/multissltests.py /^ def pyssl_version(self):$/;" m class:AbstractBuilder +pystart_callback Modules/_lsprof.c /^PyObject* pystart_callback(ProfilerObject* self, PyObject *const *args, Py_ssize_t size)$/;" f +pystr Modules/_json.c /^py_encode_basestring_ascii(PyObject* Py_UNUSED(self), PyObject *pystr);$/;" v file: +pysyms Lib/lib2to3/btm_utils.py /^pysyms = python_symbols$/;" v +pytest Lib/test/test_zipfile/_path/test_complexity.py /^pytest = import_or_skip('pytest')$/;" v +python Lib/curses/has_key.py /^ python = has_key(key)$/;" v +python Lib/test/test_popen.py /^ python = '"' + python + '"' # quote embedded space for cmdline$/;" v +python Lib/test/test_popen.py /^python = sys.executable$/;" v +python2_exceptions_without_args Lib/test/pickletester.py /^python2_exceptions_without_args = ($/;" v +python_args Lib/test/test_posix.py /^ def python_args(self, *args):$/;" m class:_PosixSpawnMixin +python_branch Lib/platform.py /^def python_branch():$/;" f +python_build Lib/platform.py /^def python_build():$/;" f +python_cmd Lib/test/bisect_cmd.py /^def python_cmd():$/;" f +python_cmd Tools/wasm/wasm_build.py /^ def python_cmd(self) -> pathlib.Path:$/;" m class:BuildProfile +python_compiler Lib/platform.py /^def python_compiler():$/;" f +python_docs Lib/idlelib/editor.py /^ def python_docs(self, event=None):$/;" m class:EditorWindow +python_grammar Lib/lib2to3/pygram.py /^python_grammar = driver.load_packaged_grammar("lib2to3", _GRAMMAR_FILE)$/;" v +python_grammar_no_print_and_exec_statement Lib/lib2to3/pygram.py /^python_grammar_no_print_and_exec_statement = python_grammar_no_print_statement.copy()$/;" v +python_grammar_no_print_statement Lib/lib2to3/pygram.py /^python_grammar_no_print_statement = python_grammar.copy()$/;" v +python_implementation Lib/platform.py /^def python_implementation():$/;" f +python_is_optimized Lib/test/support/__init__.py /^def python_is_optimized():$/;" f +python_mapdef_code Tools/unicode/gencodec.py /^def python_mapdef_code(varname, map, comments=1, precisions=(2, 4)):$/;" f +python_open Lib/test/_test_eintr.py /^ def python_open(self, path):$/;" m class:SocketEINTRTest +python_parser Tools/peg_generator/pegen/__main__.py /^python_parser = subparsers.add_parser("python", help="Generate Python code")$/;" v +python_revision Lib/platform.py /^def python_revision():$/;" f +python_symbols Lib/lib2to3/pygram.py /^python_symbols = Symbols(python_grammar)$/;" v +python_tabledef_code Tools/unicode/gencodec.py /^def python_tabledef_code(varname, map, comments=1, key_precision=2):$/;" f +python_types Lib/test/test_ctypes/test_pointers.py /^python_types = [int, int, int, int, int, int,$/;" v +python_tzpath_context Lib/test/test_zoneinfo/test_zoneinfo.py /^ def python_tzpath_context(value):$/;" m class:TzPathTest +python_version Lib/platform.py /^def python_version():$/;" f +python_version Lib/test/test_enum.py /^python_version = sys.version_info[:2]$/;" v +python_version_tuple Lib/platform.py /^def python_version_tuple():$/;" f +pythonapi Lib/ctypes/__init__.py /^ pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2])$/;" v +pythonapi Lib/ctypes/__init__.py /^ pythonapi = PyDLL("python dll", None, _sys.dllhandle)$/;" v +pythonapi Lib/ctypes/__init__.py /^ pythonapi = PyDLL(None)$/;" v +pythonexe Tools/wasm/wasm_build.py /^ pythonexe="python.js",$/;" v +pythonexe Tools/wasm/wasm_build.py /^ pythonexe="python.wasm",$/;" v +pythoninfo Tools/wasm/wasm_build.py /^ pythoninfo="run 'make pythoninfo'",$/;" v +pythonpath Lib/test/test_getpath.py /^ pythonpath=None,$/;" v +pythonpath Modules/getpath.py /^ pythonpath = []$/;" v +pythonpath Modules/getpath.py /^ pythonpath = []$/;" v +pythonpath Modules/getpath.py /^pythonpath = config.get('module_search_paths')$/;" v +pythonpath_env Include/cpython/initconfig.h /^ wchar_t *pythonpath_env;$/;" m struct:PyConfig +pythonpath_env Lib/test/test_getpath.py /^ pythonpath_env=None,$/;" v +pythonpath_was_set Modules/getpath.py /^pythonpath_was_set = config.get('module_search_paths_set')$/;" v +pythread_callback Python/thread_pthread.h /^} pythread_callback;$/;" t typeref:struct:__anon693 +pythread_wrapper Python/thread_pthread.h /^pythread_wrapper(void *arg)$/;" f +pythreads Include/internal/pycore_interp.h /^ struct pythreads {$/;" s struct:_is +pytime_add Python/pytime.c /^pytime_add(_PyTime_t *t1, _PyTime_t t2)$/;" f file: +pytime_as_nanoseconds Python/pytime.c /^pytime_as_nanoseconds(_PyTime_t t)$/;" f file: +pytime_as_timespec Python/pytime.c /^pytime_as_timespec(_PyTime_t t, struct timespec *ts, int raise_exc)$/;" f file: +pytime_as_timeval Python/pytime.c /^pytime_as_timeval(_PyTime_t t, _PyTime_t *ptv_sec, int *ptv_usec,$/;" f file: +pytime_as_timeval_struct Python/pytime.c /^pytime_as_timeval_struct(_PyTime_t t, struct timeval *tv,$/;" f file: +pytime_divide Python/pytime.c /^pytime_divide(const _PyTime_t t, const _PyTime_t k,$/;" f file: +pytime_divide_round_up Python/pytime.c /^pytime_divide_round_up(const _PyTime_t t, const _PyTime_t k)$/;" f file: +pytime_divmod Python/pytime.c /^pytime_divmod(const _PyTime_t t, const _PyTime_t k,$/;" f file: +pytime_double_to_denominator Python/pytime.c /^pytime_double_to_denominator(double d, time_t *sec, long *numerator,$/;" f file: +pytime_from_double Python/pytime.c /^pytime_from_double(_PyTime_t *tp, double value, _PyTime_round_t round,$/;" f file: +pytime_from_nanoseconds Python/pytime.c /^pytime_from_nanoseconds(_PyTime_t t)$/;" f file: +pytime_from_object Python/pytime.c /^pytime_from_object(_PyTime_t *tp, PyObject *obj, _PyTime_round_t round,$/;" f file: +pytime_fromtimespec Python/pytime.c /^pytime_fromtimespec(_PyTime_t *tp, struct timespec *ts, int raise_exc)$/;" f file: +pytime_fromtimeval Python/pytime.c /^pytime_fromtimeval(_PyTime_t *tp, struct timeval *tv, int raise_exc)$/;" f file: +pytime_mul Python/pytime.c /^pytime_mul(_PyTime_t *t, _PyTime_t k)$/;" f file: +pytime_mul_check_overflow Python/pytime.c /^pytime_mul_check_overflow(_PyTime_t a, _PyTime_t b)$/;" f file: +pytime_object_to_denominator Python/pytime.c /^pytime_object_to_denominator(PyObject *obj, time_t *sec, long *numerator,$/;" f file: +pytime_overflow Python/pytime.c /^pytime_overflow(void)$/;" f file: +pytime_round Python/pytime.c /^pytime_round(double x, _PyTime_round_t round)$/;" f file: +pytime_round_half_even Python/pytime.c /^pytime_round_half_even(double x)$/;" f file: +pytime_time_t_overflow Python/pytime.c /^pytime_time_t_overflow(void)$/;" f file: +pytuple Lib/pickletools.py /^pytuple = StackObject($/;" v +pytype_fromspec_meta Modules/_testcapi/heaptype.c /^static PyObject *pytype_fromspec_meta(PyObject* self, PyObject *meta)$/;" f file: +pytype_slotdef Include/internal/pycore_typeobject.h /^typedef struct wrapperbase pytype_slotdef;$/;" t typeref:struct:wrapperbase +pyunicode Lib/pickletools.py /^pyunicode = StackObject($/;" v +pyurandom Python/bootstrap_hash.c /^pyurandom(void *buffer, Py_ssize_t size, int blocking, int raise)$/;" f file: +pyvenvcfg Modules/getpath.py /^ pyvenvcfg = readlines(joinpath(venv_prefix, VENV_LANDMARK))$/;" v +pyvenvcfg Modules/getpath.py /^ pyvenvcfg = readlines(joinpath(venv_prefix2, VENV_LANDMARK))$/;" v +pyvenvcfg Modules/getpath.py /^ pyvenvcfg = []$/;" v +pyver Lib/idlelib/help_about.py /^pyver = python_version()$/;" v +q Lib/test/_test_multiprocessing.py /^ q = SafeQueue(ctx=multiprocessing.get_context())$/;" v class:_TestQueue.test_queue_feeder_on_queue_feeder_error.SafeQueue +q Lib/test/_test_multiprocessing.py /^ q = self.Queue()$/;" v class:_TestQueue.test_queue_feeder_donot_stop_onexc.NotSerializable +q Lib/test/_test_multiprocessing.py /^ q = self.Queue(maxsize=1)$/;" v class:_TestQueue.test_queue_feeder_donot_stop_onexc.NotSerializable +q Lib/test/test_math.py /^ q = (0.0, 0.0)$/;" v class:MathTests.testDist.T +q Lib/test/test_math.py /^ q = (0.0,) * n$/;" v class:MathTests.testDist.T +q Lib/tkinter/dialog.py /^ q = Button(None, {'text': 'Quit',$/;" v +q Modules/_ctypes/callproc.c /^ long long q;$/;" m union:result file: +q Modules/_ctypes/ctypes.h /^ long long q;$/;" m union:tagPyCArgObject::__anon496 +q Modules/_decimal/tests/deccheck.py /^ q = Queue()$/;" v +q$ Modules/_decimal/libmpdec/vcdiv64.asm /^q$ = 8$/;" d +q_class Lib/test/test_asyncio/test_queues.py /^ q_class = None$/;" v class:_QueueJoinTestMixin +q_class Lib/test/test_asyncio/test_queues.py /^ q_class = asyncio.LifoQueue$/;" v class:LifoQueueJoinTests +q_class Lib/test/test_asyncio/test_queues.py /^ q_class = asyncio.PriorityQueue$/;" v class:PriorityQueueJoinTests +q_class Lib/test/test_asyncio/test_queues.py /^ q_class = asyncio.Queue$/;" v class:QueueJoinTests +q_get Modules/_ctypes/cfield.c /^q_get(void *ptr, Py_ssize_t size)$/;" f file: +q_get_sw Modules/_ctypes/cfield.c /^q_get_sw(void *ptr, Py_ssize_t size)$/;" f file: +q_getitem Modules/arraymodule.c /^q_getitem(arrayobject *ap, Py_ssize_t i)$/;" f file: +q_set Modules/_ctypes/cfield.c /^q_set(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +q_set_sw Modules/_ctypes/cfield.c /^q_set_sw(void *ptr, PyObject *value, Py_ssize_t size)$/;" f file: +q_setitem Modules/arraymodule.c /^q_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)$/;" f file: +qaddr_t Lib/test/test_lib2to3/data/infinite_recursion.py /^qaddr_t = POINTER(quad_t)$/;" v +qemu_exclusions packaging/skipped_tests.py /^qemu_exclusions = set()$/;" v +qfull Lib/test/test_queue.py /^def qfull(q):$/;" f +qmode PCbuild/rt.bat /^if "%1"=="-q" (set qmode=yes) & shift & goto CheckOpts$/;" v +qmode PCbuild/rt.bat /^set qmode=$/;" v +qsize Lib/asyncio/queues.py /^ def qsize(self):$/;" m class:Queue +qsize Lib/multiprocessing/queues.py /^ def qsize(self):$/;" m class:Queue +qsize Lib/queue.py /^ def qsize(self):$/;" m class:Queue +qsize Lib/queue.py /^ def qsize(self):$/;" m class:_PySimpleQueue +qsort Lib/turtledemo/sorting_animate.py /^def qsort(shelf, left, right):$/;" f +quad_t Lib/test/test_lib2to3/data/infinite_recursion.py /^quad_t = int64_t$/;" v +qualifier Tools/c-analyzer/c_parser/info.py /^ def qualifier(self):$/;" m class:VarType +qualname Include/internal/pycore_code.h /^ PyObject *qualname;$/;" m struct:_PyCodeConstructor +quant Modules/expat/expat.h /^ enum XML_Content_Quant quant;$/;" m struct:XML_cp typeref:enum:XML_cp::XML_Content_Quant +quant Modules/expat/xmlparse.c /^ enum XML_Content_Quant quant;$/;" m struct:__anon612 typeref:enum:__anon612::XML_Content_Quant file: +quantiles Lib/statistics.py /^ def quantiles(self, n=4):$/;" m class:NormalDist +quantiles Lib/statistics.py /^def quantiles(data, *, n=4, method='exclusive'):$/;" f +quantize Lib/_pydecimal.py /^ def quantize(self, a, b):$/;" m class:Context +quantize Lib/_pydecimal.py /^ def quantize(self, exp, rounding=None, context=None):$/;" m class:Decimal +query PC/_wmimodule.cpp /^ LPCWSTR query;$/;" m struct:_query_data file: +query_vcvarsall Tools/c-analyzer/distutils/msvc9compiler.py /^def query_vcvarsall(version, arch="x86"):$/;" f +queue Lib/sched.py /^ def queue(self):$/;" m class:scheduler +queue Lib/test/test_queue.py /^ queue = c_queue$/;" v class:CFailingQueueTest +queue Lib/test/test_queue.py /^ queue = c_queue$/;" v class:CLifoQueueTest +queue Lib/test/test_queue.py /^ queue = c_queue$/;" v class:CPriorityQueueTest +queue Lib/test/test_queue.py /^ queue = c_queue$/;" v class:CQueueTest +queue Lib/test/test_queue.py /^ queue = c_queue$/;" v class:CSimpleQueueTest +queue Lib/test/test_queue.py /^ queue = py_queue$/;" v class:PyFailingQueueTest +queue Lib/test/test_queue.py /^ queue = py_queue$/;" v class:PyLifoQueueTest +queue Lib/test/test_queue.py /^ queue = py_queue$/;" v class:PyPriorityQueueTest +queue Lib/test/test_queue.py /^ queue = py_queue$/;" v class:PyQueueTest +queue Lib/test/test_queue.py /^ queue = py_queue$/;" v class:PySimpleQueueTest +queue Modules/_xxinterpchannelsmodule.c /^ _channelqueue *queue;$/;" m struct:_channel file: +queueMaker Lib/test/test_logging.py /^def queueMaker():$/;" f +queue_clear Modules/_queuemodule.c /^queue_clear(PyObject *m)$/;" f file: +queue_empty Lib/test/_test_multiprocessing.py /^def queue_empty(q):$/;" f +queue_empty Lib/test/test_capi/test_misc.py /^ def queue_empty():$/;" f function:TestPendingCalls.test_many_subthreads_can_handle_pending_calls +queue_free Modules/_queuemodule.c /^queue_free(void *m)$/;" f file: +queue_full Lib/test/_test_multiprocessing.py /^def queue_full(q, maxsize):$/;" f +queue_get Lib/test/test_asyncio/test_queues.py /^ async def queue_get():$/;" f function:QueueGetTests.test_blocking_get_wait +queue_get Lib/test/test_capi/test_misc.py /^ def queue_get():$/;" f function:TestPendingCalls.test_many_subthreads_can_handle_pending_calls +queue_join Lib/test/test_capi/test_misc.py /^ def queue_join():$/;" f function:TestPendingCalls.test_many_subthreads_can_handle_pending_calls +queue_join_test Lib/test/test_queue.py /^ def queue_join_test(self, q):$/;" m class:BaseQueueTestMixin +queue_put Lib/test/test_asyncio/test_queues.py /^ async def queue_put():$/;" f function:QueuePutTests.test_blocking_put_wait +queue_put Lib/test/test_asyncio/test_queues.py /^ async def queue_put():$/;" f function:QueuePutTests.test_put_cancelled +queue_put Lib/test/test_capi/test_misc.py /^ def queue_put(task):$/;" f function:TestPendingCalls.test_many_subthreads_can_handle_pending_calls +queue_recv Lib/test/mock_socket.py /^ def queue_recv(self, line):$/;" m class:MockSocket +queue_task_done Lib/test/test_capi/test_misc.py /^ def queue_task_done():$/;" f function:TestPendingCalls.test_many_subthreads_can_handle_pending_calls +queue_traverse Modules/_queuemodule.c /^queue_traverse(PyObject *m, visitproc visit, void *arg)$/;" f file: +queuemodule Modules/_queuemodule.c /^static struct PyModuleDef queuemodule = {$/;" v typeref:struct:PyModuleDef file: +queuemodule Modules/_queuemodule.c /^static struct PyModuleDef queuemodule;$/;" v typeref:struct:PyModuleDef file: +queuemodule_exec Modules/_queuemodule.c /^queuemodule_exec(PyObject *module)$/;" f file: +queuemodule_slots Modules/_queuemodule.c /^static PyModuleDef_Slot queuemodule_slots[] = {$/;" v file: +quick Lib/test/test_pprint.py /^ quick=1,$/;" v class:QueryTestCase.test_simple_namespace_subclass.AdvancedNamespace +quick_ratio Lib/difflib.py /^ def quick_ratio(self):$/;" m class:SequenceMatcher +quick_replace_multiple_match Tools/stringbench/stringbench.py /^def quick_replace_multiple_match(STR):$/;" f +quick_replace_single_match Tools/stringbench/stringbench.py /^def quick_replace_single_match(STR):$/;" f +quiet Include/cpython/initconfig.h /^ int quiet;$/;" m struct:PyConfig +quiet Lib/test/support/_hypothesis_stubs/__init__.py /^ quiet = 0$/;" v class:Verbosity +quit Lib/ftplib.py /^ def quit(self):$/;" m class:FTP +quit Lib/idlelib/debugger.py /^ def quit(self):$/;" m class:Debugger +quit Lib/nntplib.py /^ def quit(self):$/;" m class:NNTP +quit Lib/poplib.py /^ def quit(self):$/;" m class:POP3 +quit Lib/smtplib.py /^ def quit(self):$/;" m class:SMTP +quit Lib/tkinter/__init__.py /^ def quit(self):$/;" m class:Misc +quit Lib/tkinter/filedialog.py /^ def quit(self, how=None):$/;" m class:FileDialog +quitMainLoop Modules/_tkinter.c /^static int quitMainLoop = 0;$/;" v file: +quit_response Lib/test/test_smtplib.py /^ quit_response = None$/;" v class:SimSMTPChannel +quitting Lib/idlelib/run.py /^quitting = False$/;" v +quopri_decode Lib/encodings/quopri_codec.py /^def quopri_decode(input, errors='strict'):$/;" f +quopri_encode Lib/encodings/quopri_codec.py /^def quopri_encode(input, errors='strict'):$/;" f +quorem Python/dtoa.c /^quorem(Bigint *b, Bigint *S)$/;" f file: +quote Lib/email/_header_value_parser.py /^ def quote(self, value):$/;" m class:Comment +quote Lib/email/_parseaddr.py /^def quote(str):$/;" f +quote Lib/email/quoprimime.py /^def quote(c):$/;" f +quote Lib/quopri.py /^def quote(c):$/;" f +quote Lib/shlex.py /^def quote(s):$/;" f +quote Lib/urllib/parse.py /^def quote(string, safe='\/', encoding=None, errors=None):$/;" f +quote_args Lib/test/test_os.py /^ def quote_args(args):$/;" m class:SpawnTests +quote_from_bytes Lib/urllib/parse.py /^def quote_from_bytes(bs, safe='\/'):$/;" f +quote_plus Lib/urllib/parse.py /^def quote_plus(string, safe='', encoding=None, errors=None):$/;" f +quote_re Lib/http/cookiejar.py /^ quote_re = re.compile(r"([\\"\\\\])")$/;" v class:CookieJar +quote_string Lib/email/_header_value_parser.py /^def quote_string(value):$/;" f +quote_styles Modules/_csv.c /^static const StyleDesc quote_styles[] = {$/;" v file: +quoteaddr Lib/smtplib.py /^def quoteaddr(addrstring):$/;" f +quoteattr Lib/xml/sax/saxutils.py /^def quoteattr(data, entities={}):$/;" f +quotechar Lib/csv.py /^ quotechar = '"'$/;" v class:excel +quotechar Lib/csv.py /^ quotechar = '"'$/;" v class:unix_dialect +quotechar Lib/csv.py /^ quotechar = None$/;" v class:Dialect +quotechar Lib/test/test_csv.py /^ quotechar="'",$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +quotechar Lib/test/test_csv.py /^ quotechar = '"'$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +quotechar Lib/test/test_csv.py /^ quotechar='#'$/;" v class:Test_Csv._test_dialect_attrs.dialect +quotechar Modules/_csv.c /^ Py_UCS4 quotechar; \/* quote character *\/$/;" m struct:__anon624 file: +quoted_for_c_string Tools/clinic/clinic.py /^def quoted_for_c_string(s: str) -> str:$/;" f +quoted_marker Lib/importlib/metadata/__init__.py /^ def quoted_marker(section):$/;" f function:Distribution._convert_egg_info_reqs_to_simple_reqs +quoted_value Lib/email/_header_value_parser.py /^ def quoted_value(self):$/;" m class:QuotedString +quotedata Lib/smtplib.py /^def quotedata(data):$/;" f +quoting Lib/csv.py /^ quoting = QUOTE_MINIMAL$/;" v class:Sniffer.sniff.dialect +quoting Lib/csv.py /^ quoting = None$/;" v class:Dialect +quoting Lib/csv.py /^ quoting = QUOTE_ALL$/;" v class:unix_dialect +quoting Lib/csv.py /^ quoting = QUOTE_MINIMAL$/;" v class:excel +quoting Lib/test/test_csv.py /^ quoting=csv.QUOTE_ALL)$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_MINIMAL$/;" v class:TestDialectRegistry.test_register_kwargs_override.mydialect +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_NONE$/;" v class:TestDialectRegistry.test_space_dialect.space +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_NONE$/;" v class:TestDialectValidity.test_delimiter.mydialect +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_NONE$/;" v class:TestDialectValidity.test_escapechar.mydialect +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_NONE$/;" v class:TestDialectValidity.test_lineterminator.mydialect +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_NONE$/;" v class:TestDialectValidity.test_quoting.mydialect +quoting Lib/test/test_csv.py /^ quoting=csv.QUOTE_ALL$/;" v class:Test_Csv._test_dialect_attrs.dialect +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_NONE$/;" v class:EscapedExcel +quoting Lib/test/test_csv.py /^ quoting = csv.QUOTE_NONNUMERIC$/;" v class:QuotedEscapedExcel +quoting Modules/_csv.c /^ int quoting; \/* style of quoting to write *\/$/;" m struct:__anon624 file: +r Lib/test/crashers/underlying_dict.py /^r = gc.get_referrers(thingy)$/;" v +r Lib/test/test_httplib.py /^ def r():$/;" f function:ExtendedReadTest.test_read1 +r Lib/test/test_ioctl.py /^ r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")$/;" v +r Lib/test/test_urllib2.py /^ r = h.ftp_open(req)$/;" v class:HandlerTests.test_ftp.NullFTPHandler +r Lib/turtledemo/lindenmayer.py /^ def r():$/;" f function:main +r Modules/itertoolsmodule.c /^ Py_ssize_t r; \/* size of result tuple *\/$/;" m struct:__anon414 file: +r Modules/itertoolsmodule.c /^ Py_ssize_t r; \/* size of result tuple *\/$/;" m struct:__anon415 file: +r Modules/itertoolsmodule.c /^ Py_ssize_t r; \/* size of result tuple *\/$/;" m struct:__anon416 file: +r Tools/clinic/clinic.py /^def r(format_unit: str,$/;" f +r$ Modules/_decimal/libmpdec/vcdiv64.asm /^r$ = 16$/;" d +rAssertAlmostEqual Lib/test/test_cmath.py /^ def rAssertAlmostEqual(self, a, b, rel_err = 2e-15, abs_err = 5e-323,$/;" m class:CMathTests +r_PyLong Python/marshal.c /^r_PyLong(RFILE *p)$/;" f file: +r_PyLong Tools/build/umarshal.py /^ def r_PyLong(self) -> int:$/;" m class:Reader +r_byte Python/marshal.c /^r_byte(RFILE *p)$/;" f file: +r_byte Tools/build/umarshal.py /^ def r_byte(self) -> int:$/;" m class:Reader +r_float_bin Python/marshal.c /^r_float_bin(RFILE *p)$/;" f file: +r_float_bin Tools/build/umarshal.py /^ def r_float_bin(self) -> float:$/;" m class:Reader +r_float_str Python/marshal.c /^r_float_str(RFILE *p)$/;" f file: +r_float_str Tools/build/umarshal.py /^ def r_float_str(self) -> float:$/;" m class:Reader +r_long Misc/coverity_model.c /^static long r_long(RFILE *p)$/;" f file: +r_long Python/marshal.c /^r_long(RFILE *p)$/;" f file: +r_long Tools/build/umarshal.py /^ def r_long(self) -> int:$/;" m class:Reader +r_long64 Python/marshal.c /^r_long64(RFILE *p)$/;" f file: +r_long64 Tools/build/umarshal.py /^ def r_long64(self) -> int:$/;" m class:Reader +r_object Python/marshal.c /^r_object(RFILE *p)$/;" f file: +r_object Tools/build/umarshal.py /^ def r_object(self) -> Any:$/;" m class:Reader +r_ref Python/marshal.c /^r_ref(PyObject *o, int flag, RFILE *p)$/;" f file: +r_ref Tools/build/umarshal.py /^ def r_ref(self, obj: Any, flag: int) -> Any:$/;" m class:Reader +r_ref_insert Python/marshal.c /^r_ref_insert(PyObject *o, Py_ssize_t idx, int flag, RFILE *p)$/;" f file: +r_ref_insert Tools/build/umarshal.py /^ def r_ref_insert(self, obj: Any, idx: int, flag: int) -> Any:$/;" m class:Reader +r_ref_reserve Python/marshal.c /^r_ref_reserve(int flag, RFILE *p)$/;" f file: +r_ref_reserve Tools/build/umarshal.py /^ def r_ref_reserve(self, flag: int) -> int:$/;" m class:Reader +r_short Python/marshal.c /^r_short(RFILE *p)$/;" f file: +r_short Tools/build/umarshal.py /^ def r_short(self) -> int:$/;" m class:Reader +r_string Misc/coverity_model.c /^static Py_ssize_t r_string(char *s, Py_ssize_t n, RFILE *p)$/;" f file: +r_string Python/marshal.c /^r_string(Py_ssize_t n, RFILE *p)$/;" f file: +r_string Tools/build/umarshal.py /^ def r_string(self, n: int) -> bytes:$/;" m class:Reader +radToDeg Modules/mathmodule.c /^static const double radToDeg = 180.0 \/ Py_MATH_PI;$/;" v file: +radians Lib/turtle.py /^ def radians(self):$/;" m class:TNavigator +radiogroup Lib/msilib/__init__.py /^ def radiogroup(self, name, x, y, w, h, attr, prop, text, next):$/;" m class:Dialog +radix Lib/_pydecimal.py /^ def radix(self):$/;" m class:Context +radix Lib/_pydecimal.py /^ def radix(self):$/;" m class:Decimal +raiseError Lib/test/test_unittest/test_program.py /^ raiseError = 0$/;" v class:FakeRunner +raiseExceptions Lib/logging/__init__.py /^raiseExceptions = True$/;" v +raiseMemError Lib/test/test_exceptions.py /^ def raiseMemError():$/;" f function:ExceptionTests.test_MemoryError +raiseTE Lib/test/test_exception_group.py /^ def raiseTE(t):$/;" f function:NestedExceptionGroupSplitTest.test_split_by_type +raiseTestError Modules/_testcapi/long.c /^raiseTestError(const char* test_name, const char* msg)$/;" f file: +raiseTestError Modules/_testcapimodule.c /^raiseTestError(const char* test_name, const char* msg)$/;" f file: +raiseTestException Lib/test/test_with.py /^ def raiseTestException(self):$/;" m class:ContextmanagerAssertionMixin +raiseVE Lib/test/test_exception_group.py /^ def raiseVE(v):$/;" f function:NestedExceptionGroupSplitTest.test_split_by_type +raise_OSError Lib/test/test_importlib/test_abc.py /^ def raise_OSError(path):$/;" f function:SourceOnlyLoaderTests.test_get_source +raise_OSError Lib/test/test_tempfile.py /^ def raise_OSError(*args, **kwargs):$/;" f function:TestGetDefaultTempdir.test_no_files_left_behind.our_candidate_list +raise_SIGINT_then_send_None Modules/_testcapimodule.c /^raise_SIGINT_then_send_None(PyObject *self, PyObject *args)$/;" f file: +raise_after Lib/test/test_math.py /^ def raise_after(n):$/;" f function:MathTests.testSumProd +raise_attribute_error_with_bad_name Lib/test/test_traceback.py /^ def raise_attribute_error_with_bad_name():$/;" f function:SuggestionFormattingTestBase.test_attribute_error_with_bad_name +raise_attribute_error_with_bad_name Lib/test/test_traceback.py /^ def raise_attribute_error_with_bad_name():$/;" f function:SuggestionFormattingTestBase.test_import_from_error_with_bad_name +raise_catch Lib/test/test_exceptions.py /^ def raise_catch(self, exc, excname):$/;" m class:ExceptionTests +raise_conversion_error Lib/xdrlib.py /^def raise_conversion_error(function):$/;" f +raise_dict_descr_error Objects/typeobject.c /^raise_dict_descr_error(PyObject *obj)$/;" f file: +raise_encode_exception Objects/unicodeobject.c /^raise_encode_exception(PyObject **exceptionObject,$/;" f file: +raise_errmsg Modules/_json.c /^raise_errmsg(const char *msg, PyObject *s, Py_ssize_t end)$/;" f file: +raise_error Lib/lib2to3/pgen2/pgen.py /^ def raise_error(self, msg, *args):$/;" m class:ParserGenerator +raise_error Lib/test/test_asyncio/test_tasks.py /^ async def raise_error():$/;" f function:BaseTaskTests.test_exception_chaining_after_await +raise_error Lib/test/test_decimal.py /^ def raise_error(context, flag):$/;" f function:ContextFlags.test_flags_irrelevant +raise_error Lib/test/test_logging.py /^ def raise_error(self, error):$/;" m class:ShutdownTest +raise_error Modules/_decimal/tests/deccheck.py /^def raise_error(t):$/;" f +raise_error Modules/_testcapimodule.c /^raise_error(void *unused)$/;" f file: +raise_exc Lib/test/test_abc.py /^ def raise_exc():$/;" f function:test_factory.TestABC.test_issubclass_bad_arguments +raise_exc Lib/test/test_asyncio/test_futures2.py /^ async def raise_exc():$/;" f function:FutureTests.test_future_traceback +raise_exc Lib/test/test_asyncio/test_taskgroups.py /^ async def raise_exc():$/;" f function:TestTaskGroup.test_taskgroup_context_manager_exit_raises +raise_exc Lib/test/test_contextlib.py /^ def raise_exc(exc):$/;" f function:TestBaseExitStack.test_exit_exception_chaining +raise_exc Lib/test/test_contextlib.py /^ def raise_exc(exc):$/;" f function:TestBaseExitStack.test_exit_exception_non_suppressing +raise_exc Lib/test/test_contextlib.py /^ def raise_exc(exc):$/;" f function:TestBaseExitStack.test_exit_exception_traceback +raise_exc Lib/test/test_contextlib_async.py /^ async def raise_exc(exc):$/;" f function:TestAsyncExitStack.test_async_exit_exception_chaining +raise_exc Lib/test/test_traceback.py /^ def raise_exc():$/;" f function:TestTracebackException.test_comparison_params_variations +raise_exception Lib/test/test_importlib/test_abc.py /^ def raise_exception(exc):$/;" f function:SourceLoaderBytecodeTests.test_set_data_raises_exceptions +raise_exception Modules/_sqlite/util.c /^raise_exception(PyObject *type, int errcode, const char *errmsg)$/;" f file: +raise_expected Lib/test/test_email/test_defect_handling.py /^ raise_expected = False$/;" v class:TestDefectsBase +raise_expected Lib/test/test_email/test_defect_handling.py /^ raise_expected = True$/;" v class:TestDefectRaising +raise_fails Lib/test/test_baseexception.py /^ def raise_fails(self, object_):$/;" m class:UsageTests +raise_handle_reraise Lib/test/test_monitoring.py /^ def raise_handle_reraise(self):$/;" m class:TestDisable +raise_in Lib/test/test_unittest/testmock/testasync.py /^ async def raise_in(context_manager):$/;" f function:AsyncContextManagerTest.test_context_manager_raise_exception_by_default +raise_it Lib/test/test_subprocess.py /^ def raise_it():$/;" f function:POSIXProcessTestCase.test_preexec_errpipe_does_not_double_close_pipes +raise_it Lib/test/test_subprocess.py /^ def raise_it():$/;" f function:POSIXProcessTestCase.test_preexec_exception +raise_keyboard_interrupt Lib/test/test_asyncio/test_base_events.py /^ async def raise_keyboard_interrupt():$/;" f function:BaseEventLoopTests.test_run_forever_keyboard_interrupt +raise_keyboard_interrupt Lib/test/test_asyncio/test_base_events.py /^ async def raise_keyboard_interrupt():$/;" f function:BaseEventLoopTests.test_run_until_complete_baseexception +raise_large_valuerror Lib/test/_test_multiprocessing.py /^def raise_large_valuerror(wait):$/;" f +raise_memoryerror Lib/test/test_linecache.py /^ def raise_memoryerror(*args, **kwargs):$/;" f function:LineCacheTests.test_memoryerror +raise_nested Lib/test/test_contextlib.py /^ def raise_nested(inner_exc, outer_exc):$/;" f function:TestBaseExitStack.test_exit_exception_with_existing_context +raise_not_expected Lib/test/test_bdb.py /^ def raise_not_expected(self, msg):$/;" m class:Tracer +raise_obj Lib/test/test_codecs.py /^ def raise_obj(self, *args, **kwds):$/;" m class:ExceptionNotesTest +raise_on_defect Lib/email/_policybase.py /^ raise_on_defect = False$/;" v class:Policy +raise_opts Lib/webbrowser.py /^ raise_opts = None$/;" v class:UnixBrowser +raise_opts Lib/webbrowser.py /^ raise_opts = ["-noraise", ""]$/;" v class:Epiphany +raise_page Lib/tkinter/tix.py /^ def raise_page(self, name): # raise is a python keyword$/;" m class:ListNoteBook +raise_page Lib/tkinter/tix.py /^ def raise_page(self, name): # raise is a python keyword$/;" m class:NoteBook +raise_queued_exception Lib/test/test_socket.py /^ def raise_queued_exception():$/;" f function:ThreadableTest._setUp +raise_runtime Lib/test/test_asyncio/test_threads.py /^ def raise_runtime():$/;" f function:ToThreadTests.test_to_thread_exception +raise_src Lib/test/test_zipimport.py /^raise_src = 'def do_raise(): raise TypeError\\n'$/;" v +raise_stmt_rule Parser/parser.c /^raise_stmt_rule(Parser *p)$/;" f file: +raise_stmt_type Parser/parser.c 96;" d file: +raise_stop_iteration Modules/_json.c /^raise_stop_iteration(Py_ssize_t idx)$/;" f file: +raise_test_long_error Modules/_testcapi/long.c /^raise_test_long_error(const char* msg)$/;" f file: +raise_test_longlong_error Modules/_testcapi/long.c /^raise_test_longlong_error(const char* msg)$/;" f file: +raise_timeout Lib/test/test_socket.py /^ def raise_timeout(*args, **kwargs):$/;" f function:TCPTimeoutTest.testTCPTimeout +raise_timeout Lib/test/test_socket.py /^ def raise_timeout(*args, **kwargs):$/;" f function:UDPLITETimeoutTest.testUDPLITETimeout +raise_timeout Lib/test/test_socket.py /^ def raise_timeout(*args, **kwargs):$/;" f function:UDPTimeoutTest.testUDPTimeout +raise_type_error Lib/test/_test_atexit.py /^ def raise_type_error():$/;" f function:GeneralTest.test_raise +raise_type_error Modules/_elementtree.c /^raise_type_error(PyObject *element)$/;" f +raise_unclosed_parentheses_error Parser/pegen_errors.c /^raise_unclosed_parentheses_error(Parser *p) {$/;" f file: +raise_with_locals Lib/test/test_traceback.py /^ def raise_with_locals():$/;" f function:TestTracebackException.test_comparison_params_variations +raise_wrong_message Lib/test/test_unittest/test_assertions.py /^ def raise_wrong_message():$/;" f function:TestLongMessage.testAssertRaisesRegex +raise_wrong_message Lib/test/test_unittest/test_assertions.py /^ def raise_wrong_message():$/;" f function:TestLongMessage.testAssertWarnsRegex +raised Lib/tkinter/tix.py /^ def raised(self):$/;" m class:NoteBook +raiser Lib/test/test_mailbox.py /^ def raiser(*args, **kw):$/;" f function:TestMailbox.test_add_that_raises_leaves_mailbox_empty +raiser Lib/test/test_raise.py /^ def raiser(self):$/;" m class:TestTracebackType +raiser Lib/test/test_shutil.py /^ def raiser(fn, *args, **kwargs):$/;" f function:TestRmTree.test_rmtree_does_not_choke_on_failing_lstat +raiser Lib/test/test_unittest/testmock/testhelpers.py /^ raiser = Raiser()$/;" v class:SpecSignatureTest.test_skip_attributeerrors.RaiserClass +raises Lib/test/test_descr.py /^ def raises(exc, expected, callable, *args):$/;" f function:.test_mro_disagreement +raises Lib/test/test_sys_settrace.py /^def raises():$/;" f +raises_oserror Lib/test/test_platform.py /^ def raises_oserror(*a):$/;" f function:PlatformTest.test_uname_win32_ARCHITEW6432 +raises_oserror Lib/test/test_platform.py /^ def raises_oserror(*a):$/;" f function:PlatformTest.test_uname_win32_without_wmi +raising Lib/test/_test_multiprocessing.py /^def raising():$/;" f +raising_fn Lib/test/test_concurrent_futures/test_future.py /^ def raising_fn(callback_future):$/;" f function:FutureTests.test_done_callback_raises +raising_fn Lib/test/test_concurrent_futures/test_future.py /^ def raising_fn(callback_future):$/;" f function:FutureTests.test_done_callback_raises_already_succeeded +raising_gen Lib/test/test_exceptions.py /^ def raising_gen():$/;" f function:ExceptionTests._check_generator_cleanup_exc_state +raising_handler Lib/test/test_socket.py /^ def raising_handler(*args):$/;" f function:GeneralModuleTests.check_sendall_interrupted +rand_adjexp Modules/_decimal/tests/randdec.py /^def rand_adjexp(maxprec, maxadjexp):$/;" f +rand_aligned_slices Lib/test/test_buffer.py /^def rand_aligned_slices(maxdim=5, maxshape=16):$/;" f +rand_digits Tools/scripts/divmod_threshold.py /^def rand_digits(n):$/;" f +rand_fillchar Modules/_decimal/tests/formathelper.py /^def rand_fillchar():$/;" f +rand_format Modules/_decimal/tests/formathelper.py /^def rand_format(fill, typespec='EeGgFfn%'):$/;" f +rand_ieee Modules/_decimal/tests/deccheck.py /^ rand_ieee = random.choice(ieee)$/;" v +rand_locale Modules/_decimal/tests/formathelper.py /^def rand_locale():$/;" f +rand_structure Lib/test/test_buffer.py /^def rand_structure(itemsize, valid, maxdim=5, maxshape=16, shape=()):$/;" f +randbelow Lib/secrets.py /^def randbelow(exclusive_upper_bound):$/;" f +randbits Lib/secrets.py /^randbits = _sysrand.getrandbits$/;" v +randbytes Lib/random.py /^ def randbytes(self, n):$/;" m class:Random +randbytes Lib/random.py /^ def randbytes(self, n):$/;" m class:SystemRandom +randbytes Lib/random.py /^randbytes = _inst.randbytes$/;" v +randcomplex Modules/_decimal/tests/randdec.py /^def randcomplex():$/;" f +randcontext Modules/_decimal/tests/deccheck.py /^def randcontext(exprange):$/;" f +randdec Modules/_decimal/tests/randdec.py /^def randdec(maxprec, maxexp):$/;" f +randfill Modules/_decimal/tests/formathelper.py /^def randfill(fill):$/;" f +randfloat Modules/_decimal/tests/randdec.py /^def randfloat():$/;" f +randfloats Lib/test/sortperf.py /^def randfloats(n):$/;" f +randfraction Modules/_decimal/tests/randdec.py /^def randfraction():$/;" f +randint Lib/random.py /^ def randint(self, a, b):$/;" m class:Random +randint Lib/random.py /^randint = _inst.randint$/;" v +randint Modules/_decimal/tests/randdec.py /^def randint():$/;" f +randitems Lib/test/test_buffer.py /^def randitems(n, obj='ndarray', mode=None, char=None):$/;" f +randitems_from_structure Lib/test/test_buffer.py /^def randitems_from_structure(fmt, t):$/;" f +random Lib/random.py /^ def random(self):$/;" m class:SystemRandom +random Lib/random.py /^random = _inst.random$/;" v +random Lib/test/test_random.py /^ def random(self):$/;" m class:TestRandomSubclassing.test_subclasses_overriding_methods.Mixin1 +random Lib/test/test_random.py /^ def random(self):$/;" m class:TestRandomSubclassing.test_subclasses_overriding_methods.SubClass1 +random Lib/test/test_random.py /^ def random(self):$/;" m class:TestRandomSubclassing.test_subclasses_overriding_methods.SubClass2 +random Lib/test/test_random.py /^ def random(self):$/;" m class:TestRandomSubclassing.test_subclasses_overriding_methods.SubClass4 +random_init Modules/_randommodule.c /^random_init(RandomObject *self, PyObject *args, PyObject *kwds)$/;" f file: +random_methods Modules/_randommodule.c /^static PyMethodDef random_methods[] = {$/;" v file: +random_name Lib/test/test_descr.py /^ def random_name():$/;" f function:ClassPropertiesAndMethods.test_module_subclasses +random_names Lib/test/test_enum.py /^ random_names = 'okay', '_semi_private', '_weird__', '_MyEnum__'$/;" v class:TestHelpers +random_names Lib/test/test_enum.py /^ random_names = 'okay', '_semi_private', '_weird__', '_MyEnum__'$/;" v class:TestInternals +random_seed Modules/_randommodule.c /^random_seed(RandomObject *self, PyObject *arg)$/;" f file: +random_seed_time_pid Modules/_randommodule.c /^random_seed_time_pid(RandomObject *self)$/;" f file: +random_seed_urandom Modules/_randommodule.c /^random_seed_urandom(RandomObject *self)$/;" f file: +random_stream Modules/rotatingtree.c /^static unsigned int random_stream = 0;$/;" v file: +random_tagname Lib/test/test_mmap.py /^def random_tagname(length=10):$/;" f +random_value Modules/rotatingtree.c /^static unsigned int random_value = 1;$/;" v file: +randombits Modules/rotatingtree.c /^randombits(int bits)$/;" f file: +randomfd Lib/turtledemo/forest.py /^def randomfd( t, distance, parts, angledist ):$/;" f +randomize Lib/turtledemo/forest.py /^def randomize( branchlist, angledist, sizedist ):$/;" f +randomize Lib/turtledemo/sorting_animate.py /^def randomize():$/;" f +randomlist Lib/test/test_random.py /^ def randomlist(self, n):$/;" m class:TestBasicOps +randommove Lib/turtledemo/nim.py /^def randommove(state):$/;" f +randomrow Lib/turtledemo/nim.py /^def randomrow():$/;" f +randrange Lib/random.py /^ def randrange(self, start, stop=None, step=_ONE):$/;" m class:Random +randrange Lib/random.py /^randrange = _inst.randrange$/;" v +randrange_fmt Lib/test/test_buffer.py /^def randrange_fmt(mode, char, obj):$/;" f +randsign Modules/_decimal/tests/randdec.py /^def randsign():$/;" f +randslice_from_shape Lib/test/test_buffer.py /^def randslice_from_shape(ndim, shape):$/;" f +randslice_from_slicelen Lib/test/test_buffer.py /^def randslice_from_slicelen(slicelen, listlen):$/;" f +randtuple Modules/_decimal/tests/randdec.py /^def randtuple(maxprec, maxexp):$/;" f +range_as_mapping Objects/rangeobject.c /^static PyMappingMethods range_as_mapping = {$/;" v file: +range_as_number Objects/rangeobject.c /^static PyNumberMethods range_as_number = {$/;" v file: +range_as_sequence Objects/rangeobject.c /^static PySequenceMethods range_as_sequence = {$/;" v file: +range_bool Objects/rangeobject.c /^range_bool(rangeobject* self)$/;" f file: +range_contains Objects/rangeobject.c /^range_contains(rangeobject *r, PyObject *ob)$/;" f file: +range_contains_long Objects/rangeobject.c /^range_contains_long(rangeobject *r, PyObject *ob)$/;" f file: +range_count Objects/rangeobject.c /^range_count(rangeobject *r, PyObject *ob)$/;" f file: +range_dealloc Objects/rangeobject.c /^range_dealloc(rangeobject *r)$/;" f file: +range_equals Objects/rangeobject.c /^range_equals(rangeobject *r0, rangeobject *r1)$/;" f file: +range_from_array Objects/rangeobject.c /^range_from_array(PyTypeObject *type, PyObject *const *args, Py_ssize_t num_args)$/;" f file: +range_hash Objects/rangeobject.c /^range_hash(rangeobject *r)$/;" f file: +range_index Objects/rangeobject.c /^range_index(rangeobject *r, PyObject *ob)$/;" f file: +range_item Objects/rangeobject.c /^range_item(rangeobject *r, Py_ssize_t i)$/;" f file: +range_iter Objects/rangeobject.c /^range_iter(PyObject *seq)$/;" f file: +range_iterator Lib/_collections_abc.py /^range_iterator = type(iter(range(0)))$/;" v +range_length Objects/rangeobject.c /^range_length(rangeobject *r)$/;" f file: +range_members Objects/rangeobject.c /^static PyMemberDef range_members[] = {$/;" v file: +range_methods Objects/rangeobject.c /^static PyMethodDef range_methods[] = {$/;" v file: +range_new Objects/rangeobject.c /^range_new(PyTypeObject *type, PyObject *args, PyObject *kw)$/;" f file: +range_reduce Objects/rangeobject.c /^range_reduce(rangeobject *r, PyObject *args)$/;" f file: +range_repr Objects/rangeobject.c /^range_repr(rangeobject *r)$/;" f file: +range_reverse Objects/rangeobject.c /^range_reverse(PyObject *seq, PyObject *Py_UNUSED(ignored))$/;" f file: +range_richcompare Objects/rangeobject.c /^range_richcompare(PyObject *self, PyObject *other, int op)$/;" f file: +range_subscript Objects/rangeobject.c /^range_subscript(rangeobject* self, PyObject* item)$/;" f file: +range_vectorcall Objects/rangeobject.c /^range_vectorcall(PyTypeObject *type, PyObject *const *args,$/;" f file: +rangeiter_len Objects/rangeobject.c /^rangeiter_len(_PyRangeIterObject *r, PyObject *Py_UNUSED(ignored))$/;" f file: +rangeiter_methods Objects/rangeobject.c /^static PyMethodDef rangeiter_methods[] = {$/;" v file: +rangeiter_next Objects/rangeobject.c /^rangeiter_next(_PyRangeIterObject *r)$/;" f file: +rangeiter_reduce Objects/rangeobject.c /^rangeiter_reduce(_PyRangeIterObject *r, PyObject *Py_UNUSED(ignored))$/;" f file: +rangeiter_setstate Objects/rangeobject.c /^rangeiter_setstate(_PyRangeIterObject *r, PyObject *state)$/;" f file: +rangeobject Objects/rangeobject.c /^} rangeobject;$/;" t typeref:struct:__anon723 file: +ranges_to_linenumbers Lib/idlelib/pyshell.py /^ def ranges_to_linenumbers(self, ranges):$/;" m class:PyShellEditorWindow +ratio Lib/difflib.py /^ def ratio(self):$/;" m class:SequenceMatcher +ratio Lib/test/test_statistics.py /^ ratio = statistics._exact_ratio(x)$/;" v class:ExactRatioTest.test_inf.MyDecimal +ratio Lib/test/test_statistics.py /^ ratio = statistics._exact_ratio(nan)$/;" v class:ExactRatioTest.test_decimal_nan.MyDecimal +ratio Lib/test/test_statistics.py /^ ratio = statistics._exact_ratio(nan)$/;" v class:ExactRatioTest.test_float_nan.MyFloat +ratio Python/dtoa.c /^ratio(Bigint *a, Bigint *b)$/;" f file: +raw Include/internal/pycore_pymem.h /^ PyMemAllocatorEx raw;$/;" m struct:_pymem_allocators::__anon16 +raw Include/internal/pycore_pymem.h /^ debug_alloc_api_t raw;$/;" m struct:_pymem_allocators::__anon17 +raw Include/internal/pycore_tracemalloc.h /^ PyMemAllocatorEx raw;$/;" m struct:_tracemalloc_runtime_state::__anon31 +raw Lib/_pyio.py /^ def raw(self):$/;" m class:_BufferedIOMixin +raw Lib/multiprocessing/sharedctypes.py /^ raw = make_property('raw')$/;" v class:SynchronizedString +raw Modules/_io/bufferedio.c /^ PyObject *raw;$/;" m struct:__anon435 file: +raw Modules/_io/textio.c /^ PyObject *raw;$/;" m struct:textio file: +raw Modules/_testcapi/mem.c /^ PyMemAllocatorEx raw;$/;" m struct:__anon556 file: +rawName Modules/expat/xmlparse.c /^ const char *rawName; \/* tagName in the original encoding *\/$/;" m struct:tag file: +rawNameLength Modules/expat/xmlparse.c /^ int rawNameLength;$/;" m struct:tag file: +raw_allocated_blocks Include/internal/pycore_obmalloc.h /^ Py_ssize_t raw_allocated_blocks;$/;" m struct:_obmalloc_mgmt +raw_allocated_blocks Objects/obmalloc.c 883;" d file: +raw_data_manager Lib/email/contentmanager.py /^raw_data_manager = ContentManager()$/;" v +raw_decode Lib/json/decoder.py /^ def raw_decode(self, s, idx=0):$/;" m class:JSONDecoder +raw_free Python/tracemalloc.c /^raw_free(void *ptr)$/;" f file: +raw_input Lib/code.py /^ def raw_input(self, prompt=""):$/;" m class:InteractiveConsole +raw_items Lib/email/message.py /^ def raw_items(self):$/;" m class:Message +raw_malloc Python/tracemalloc.c /^raw_malloc(size_t size)$/;" f file: +raw_pos Modules/_io/bufferedio.c /^ Py_off_t raw_pos;$/;" m struct:__anon435 file: +raw_unicode_escape Modules/_pickle.c /^raw_unicode_escape(PyObject *obj)$/;" f file: +rawdata Lib/test/test_binascii.py /^ rawdata = b"The quick brown fox jumps over the lazy dog.\\r\\n"$/;" v class:BinASCIITest +rawiobase_methods Modules/_io/iobase.c /^static PyMethodDef rawiobase_methods[] = {$/;" v file: +rawiobase_readinto Modules/_io/iobase.c /^rawiobase_readinto(PyObject *self, PyObject *args)$/;" f file: +rawiobase_slots Modules/_io/iobase.c /^static PyType_Slot rawiobase_slots[] = {$/;" v file: +rawiobase_spec Modules/_io/iobase.c /^PyType_Spec rawiobase_spec = {$/;" v +rawiobase_write Modules/_io/iobase.c /^rawiobase_write(PyObject *self, PyObject *args)$/;" f file: +rawq_getchar Lib/telnetlib.py /^ def rawq_getchar(self):$/;" m class:Telnet +rbufsize Lib/http/server.py /^ rbufsize = 0$/;" v class:CGIHTTPRequestHandler +rbufsize Lib/socketserver.py /^ rbufsize = -1$/;" v class:StreamRequestHandler +rc Lib/venv/__init__.py /^ rc = 0$/;" v +rc Lib/venv/__init__.py /^ rc = 1$/;" v +rc Lib/venv/__main__.py /^ rc = 0$/;" v +rc Lib/venv/__main__.py /^rc = 1$/;" v +rc2_key_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class rc2_key_st(Structure):$/;" c +rc4_key_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class rc4_key_st(Structure):$/;" c +rc5_key_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class rc5_key_st(Structure):$/;" c +rcpt Lib/smtplib.py /^ def rcpt(self, recip, options=()):$/;" m class:SMTP +rcpt_count Lib/test/test_smtplib.py /^ rcpt_count = 0$/;" v class:SimSMTPChannel +rcpt_response Lib/test/test_smtplib.py /^ rcpt_response = None$/;" v class:SimSMTPChannel +re Lib/typing.py /^class re(metaclass=_DeprecatedType):$/;" c +re_gb18030ass Tools/unicode/genmap_schinese.py /^re_gb18030ass = re.compile('')$/;" v +re_load Lib/test/test_import/__init__.py /^ def re_load(self, name, mod):$/;" m class:SinglephaseInitTests +re_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def re_test_slow_match_100_characters(STR):$/;" f +reach Lib/http/cookiejar.py /^def reach(h):$/;" f +read Lib/_compression.py /^ def read(self, size=-1):$/;" m class:DecompressReader +read Lib/_pyio.py /^ def read(self, size=-1):$/;" m class:BufferedIOBase +read Lib/_pyio.py /^ def read(self, size=-1):$/;" m class:BufferedRWPair +read Lib/_pyio.py /^ def read(self, size=-1):$/;" m class:BytesIO +read Lib/_pyio.py /^ def read(self, size=-1):$/;" m class:RawIOBase +read Lib/_pyio.py /^ def read(self, size=-1):$/;" m class:TextIOBase +read Lib/_pyio.py /^ def read(self, size=None):$/;" m class:BufferedRandom +read Lib/_pyio.py /^ def read(self, size=None):$/;" m class:BufferedReader +read Lib/_pyio.py /^ def read(self, size=None):$/;" m class:FileIO +read Lib/_pyio.py /^ def read(self, size=None):$/;" m class:TextIOWrapper +read Lib/asyncio/streams.py /^ async def read(self, n=-1):$/;" m class:StreamReader +read Lib/bz2.py /^ def read(self, size=-1):$/;" m class:BZ2File +read Lib/chunk.py /^ def read(self, size=-1):$/;" m class:Chunk +read Lib/codecs.py /^ def read(self, size=-1):$/;" m class:StreamReaderWriter +read Lib/codecs.py /^ def read(self, size=-1):$/;" m class:StreamRecoder +read Lib/codecs.py /^ def read(self, size=-1, chars=-1, firstline=False):$/;" m class:StreamReader +read Lib/configparser.py /^ def read(self, filenames, encoding=None):$/;" m class:RawConfigParser +read Lib/gzip.py /^ def read(self, size):$/;" m class:_PaddedFile +read Lib/gzip.py /^ def read(self, size=-1):$/;" m class:GzipFile +read Lib/gzip.py /^ def read(self, size=-1):$/;" m class:_GzipReader +read Lib/http/client.py /^ def read(self, amt=None):$/;" m class:HTTPResponse +read Lib/idlelib/run.py /^ def read(self, size=-1):$/;" m class:StdInputFile +read Lib/imaplib.py /^ def read(self, size):$/;" m class:IMAP4 +read Lib/imaplib.py /^ def read(self, size):$/;" m class:IMAP4_stream +read Lib/importlib/metadata/__init__.py /^ def read(text, filter_=None):$/;" m class:Sectioned +read Lib/lzma.py /^ def read(self, size=-1):$/;" m class:LZMAFile +read Lib/mailbox.py /^ def read(self, size=None):$/;" m class:_ProxyFile +read Lib/mimetypes.py /^ def read(self, filename, strict=True):$/;" m class:MimeTypes +read Lib/pickle.py /^ def read(self, n):$/;" m class:_Unframer +read Lib/ssl.py /^ def read(self, len=1024, buffer=None):$/;" m class:SSLObject +read Lib/ssl.py /^ def read(self, len=1024, buffer=None):$/;" m class:SSLSocket +read Lib/tarfile.py /^ def read(self, size):$/;" m class:_LowLevelFile +read Lib/tarfile.py /^ def read(self, size):$/;" m class:_Stream +read Lib/tarfile.py /^ def read(self, size):$/;" m class:_StreamProxy +read Lib/tarfile.py /^ def read(self, size=None):$/;" m class:_FileInFile +read Lib/tempfile.py /^ def read(self, *args):$/;" m class:SpooledTemporaryFile +read Lib/test/support/asyncore.py /^ read = recv$/;" v class:.file_wrapper +read Lib/test/support/asyncore.py /^def read(obj):$/;" f +read Lib/test/test_code.py /^def read(it):$/;" f +read Lib/test/test_codecs.py /^ def read(self, size=-1):$/;" m class:Queue +read Lib/test/test_coroutines.py /^ async def read(coro):$/;" f function:CoroutineTest.test_func_16 +read Lib/test/test_httplib.py /^ def read(self, blocksize=-1):$/;" m class:BasicTest.test_send_updating_file.UpdatingFile +read Lib/test/test_httplib.py /^ def read(self, n=-1):$/;" m class:NoEOFBytesIO +read Lib/test/test_httpservers.py /^ def read(self, n=None):$/;" m class:NoLogRequestHandler +read Lib/test/test_io.py /^ read = self.BufferedIOBase.read$/;" v class:IOTest.test_optional_abilities.text_writer.UnseekableWriter +read Lib/test/test_io.py /^ def read(self, n=-1):$/;" m class:CMiscIOTest.test_readinto_buffer_overflow.BadReader +read Lib/test/test_io.py /^ def read(self, size):$/;" m class:IOTest.test_BufferedIOBase_readinto.Reader +read Lib/test/test_io.py /^ def read(self, size):$/;" m class:IOTest.test_buffered_readinto_mixin.Stream +read Lib/test/test_io.py /^ def read(self, len_):$/;" m class:MemviewBytesIO +read Lib/test/test_io.py /^ def read(self, n=None):$/;" m class:MisbehavedRawIO +read Lib/test/test_io.py /^ def read(self, n=None):$/;" m class:MockFileIO +read Lib/test/test_io.py /^ def read(self, n=None):$/;" m class:MockRawIO +read Lib/test/test_shutil.py /^ def read(self, *args):$/;" m class:TestCopyFile.Faux +read Lib/test/test_ssl.py /^ def read(self):$/;" m class:ThreadedEchoServer.ConnectionHandler +read Lib/test/test_tarfile.py /^ def read(self, n):$/;" m class:Bz2PartialReadTest._test_partial_input.MyBytesIO +read Lib/test/test_urllib.py /^ def read(self, amt=None):$/;" m class:fakehttp.FakeSocket +read Lib/test/test_urllib2.py /^ def read(self):$/;" m class:MockHTTPResponse +read Lib/test/test_urllib2.py /^ def read(self, count=None):$/;" m class:MockFile +read Lib/test/test_xml_etree.py /^ def read(self, x):$/;" m class:BugsTest.test_bug_xmltoolkit60.ExceptionFile +read Lib/test/test_xml_etree_c.py /^ def read(*args):$/;" m class:MiscTests.test_uninitialized_parser.MockFile +read Lib/typing.py /^ def read(self, n: int = -1) -> AnyStr:$/;" m class:IO +read Lib/urllib/robotparser.py /^ def read(self):$/;" m class:RobotFileParser +read Lib/wave.py /^ def read(self, size=-1):$/;" m class:_Chunk +read Lib/wsgiref/types.py /^ def read(self, size: int = ..., \/) -> bytes: ...$/;" m class:InputStream +read Lib/wsgiref/types.py /^ def read(self, size: int = ..., \/) -> bytes: ...$/;" m class:_Readable +read Lib/wsgiref/validate.py /^ def read(self, *args):$/;" m class:InputWrapper +read Lib/zipfile/__init__.py /^ def read(self, n=-1):$/;" m class:ZipExtFile +read Lib/zipfile/__init__.py /^ def read(self, n=-1):$/;" m class:_SharedFile +read Lib/zipfile/__init__.py /^ def read(self, name, pwd=None):$/;" m class:ZipFile +read Modules/_pickle.c /^ PyObject *read; \/* read() method of the input stream. *\/$/;" m struct:UnpicklerObject file: +read Tools/gdb/libpython.py /^def read(it):$/;" f +read Tools/scripts/combinerefs.py /^def read(fileiter, pat, whilematch):$/;" f +read1 Lib/_pyio.py /^ def read1(self, size=-1):$/;" m class:BufferedIOBase +read1 Lib/_pyio.py /^ def read1(self, size=-1):$/;" m class:BufferedRWPair +read1 Lib/_pyio.py /^ def read1(self, size=-1):$/;" m class:BufferedRandom +read1 Lib/_pyio.py /^ def read1(self, size=-1):$/;" m class:BufferedReader +read1 Lib/_pyio.py /^ def read1(self, size=-1):$/;" m class:BytesIO +read1 Lib/bz2.py /^ def read1(self, size=-1):$/;" m class:BZ2File +read1 Lib/gzip.py /^ def read1(self, size=-1):$/;" m class:GzipFile +read1 Lib/http/client.py /^ def read1(self, n=-1):$/;" m class:HTTPResponse +read1 Lib/lzma.py /^ def read1(self, size=-1):$/;" m class:LZMAFile +read1 Lib/mailbox.py /^ def read1(self, size=None):$/;" m class:_ProxyFile +read1 Lib/tempfile.py /^ def read1(self, *args):$/;" m class:SpooledTemporaryFile +read1 Lib/test/test_io.py /^ def read1(self, size):$/;" m class:IOTest.test_BufferedIOBase_readinto.Reader +read1 Lib/test/test_io.py /^ read1 = read$/;" v class:IOTest.test_buffered_readinto_mixin.Stream +read1 Lib/test/test_io.py /^ def read1(self, len_):$/;" m class:MemviewBytesIO +read1 Lib/zipfile/__init__.py /^ def read1(self, n):$/;" m class:ZipExtFile +readPipe PC/_wmimodule.cpp /^ HANDLE readPipe;$/;" m struct:_query_data file: +readSystemPreferences Lib/idlelib/macosx.py /^def readSystemPreferences():$/;" f +read_all Lib/telnetlib.py /^ def read_all(self):$/;" m class:Telnet +read_big_chunks Tools/iobench/iobench.py /^def read_big_chunks(f):$/;" f +read_binary Lib/cgi.py /^ def read_binary(self):$/;" m class:FieldStorage +read_binary Lib/importlib/metadata/__init__.py /^ def read_binary(self):$/;" m class:PackagePath +read_binary Lib/importlib/resources/_legacy.py /^def read_binary(package: Package, resource: Resource) -> bytes:$/;" f +read_boundmethod Tools/scripts/var_access_benchmark.py /^def read_boundmethod(trials=trials, a=A()):$/;" f +read_buffer Modules/_winapi.c /^ PyObject *read_buffer;$/;" m struct:__anon535 file: +read_builtin Tools/scripts/var_access_benchmark.py /^def read_builtin(trials=trials):$/;" f +read_byte Objects/codeobject.c /^read_byte(PyCodeAddressRange *bounds)$/;" f file: +read_bytearray8 Lib/pickletools.py /^def read_bytearray8(f):$/;" f +read_bytes Lib/importlib/resources/abc.py /^ def read_bytes(self) -> bytes:$/;" m class:Traversable +read_bytes Lib/importlib/resources/readers.py /^ def read_bytes(self):$/;" m class:MultiplexedPath +read_bytes Lib/pathlib.py /^ def read_bytes(self):$/;" m class:Path +read_bytes Lib/zipfile/_path/__init__.py /^ def read_bytes(self):$/;" m class:Path +read_bytes Modules/_io/bytesio.c /^read_bytes(bytesio *self, Py_ssize_t size)$/;" f file: +read_bytes1 Lib/pickletools.py /^def read_bytes1(f):$/;" f +read_bytes4 Lib/pickletools.py /^def read_bytes4(f):$/;" f +read_bytes8 Lib/pickletools.py /^def read_bytes8(f):$/;" f +read_bytewise Tools/iobench/iobench.py /^def read_bytewise(f):$/;" f +read_classvar_from_class Tools/scripts/var_access_benchmark.py /^def read_classvar_from_class(trials=trials, A=A):$/;" f +read_classvar_from_instance Tools/scripts/var_access_benchmark.py /^def read_classvar_from_instance(trials=trials, A=A):$/;" f +read_code Lib/pkgutil.py /^def read_code(stream):$/;" f +read_commands PC/launcher.c /^static void read_commands(void)$/;" f file: +read_config_file PC/launcher.c /^read_config_file(wchar_t * config_path)$/;" f file: +read_console_w Modules/_io/winconsoleio.c /^read_console_w(HANDLE handle, DWORD maxlen, DWORD *readlen) {$/;" f file: +read_decimalnl_long Lib/pickletools.py /^def read_decimalnl_long(f):$/;" f +read_decimalnl_short Lib/pickletools.py /^def read_decimalnl_short(f):$/;" f +read_decls Tools/c-analyzer/c_parser/datafiles.py /^def read_decls(infile, fmt=None):$/;" f +read_deque Tools/scripts/var_access_benchmark.py /^def read_deque(trials=trials, a=deque([1])):$/;" f +read_dict Lib/configparser.py /^ def read_dict(self, dictionary, source=''):$/;" m class:RawConfigParser +read_dict Tools/scripts/var_access_benchmark.py /^def read_dict(trials=trials, a={0: 1}):$/;" f +read_docstrings Lib/turtle.py /^def read_docstrings(lang):$/;" f +read_eager Lib/telnetlib.py /^ def read_eager(self):$/;" m class:Telnet +read_end Modules/_io/bufferedio.c /^ Py_off_t read_end;$/;" m struct:__anon435 file: +read_environ Lib/wsgiref/handlers.py /^def read_environ():$/;" f +read_events Lib/xml/etree/ElementTree.py /^ def read_events(self):$/;" m class:XMLPullParser +read_file Lib/configparser.py /^ def read_file(self, f, source=None):$/;" m class:RawConfigParser +read_file Lib/optparse.py /^ def read_file(self, filename, mode="careful"):$/;" m class:Values +read_file Lib/test/test_lib2to3/test_refactor.py /^ def read_file(self, test_file):$/;" m class:TestRefactoringTool +read_file Lib/test/test_shutil.py /^def read_file(path, binary=False):$/;" f +read_float8 Lib/pickletools.py /^def read_float8(f):$/;" f +read_floatnl Lib/pickletools.py /^def read_floatnl(f):$/;" f +read_from Modules/overlapped.c /^ } read_from;$/;" m union:__anon567::__anon568 typeref:struct:__anon567::__anon568::__anon569 file: +read_from_into Modules/overlapped.c /^ } read_from_into;$/;" m union:__anon567::__anon568 typeref:struct:__anon567::__anon568::__anon570 file: +read_global Tools/scripts/var_access_benchmark.py /^def read_global(trials=trials):$/;" f +read_helper Lib/test/test_dbm.py /^ def read_helper(self, f):$/;" m class:AnyDBMTestCase +read_helper Lib/test/test_dbm_dumb.py /^ def read_helper(self, f):$/;" m class:DumbDBMTestCase +read_ignored Tools/c-analyzer/c_analyzer/datafiles.py /^def read_ignored(infile, relroot=fsutil.USE_CWD):$/;" f +read_ignored Tools/c-analyzer/cpython/_analyzer.py /^def read_ignored():$/;" f +read_instancevar Tools/scripts/var_access_benchmark.py /^def read_instancevar(trials=trials, a=C(1)):$/;" f +read_instancevar_slots Tools/scripts/var_access_benchmark.py /^def read_instancevar_slots(trials=trials, a=B(1)):$/;" f +read_int4 Lib/pickletools.py /^def read_int4(f):$/;" f +read_keys Tools/c-analyzer/distutils/msvc9compiler.py /^ def read_keys(cls, base, key):$/;" m class:Reg +read_keys Tools/c-analyzer/distutils/msvc9compiler.py /^ read_keys = classmethod(read_keys)$/;" v class:Reg +read_keys Tools/c-analyzer/distutils/msvccompiler.py /^def read_keys(base, key):$/;" f +read_known Tools/c-analyzer/c_analyzer/datafiles.py /^def read_known(infile, extracolumns=None, relroot=fsutil.USE_CWD):$/;" f +read_known Tools/c-analyzer/cpython/_analyzer.py /^def read_known():$/;" f +read_lazy Lib/telnetlib.py /^ def read_lazy(self):$/;" m class:Telnet +read_lines Lib/cgi.py /^ def read_lines(self):$/;" m class:FieldStorage +read_lines Tools/iobench/iobench.py /^def read_lines(f):$/;" f +read_lines_to_eof Lib/cgi.py /^ def read_lines_to_eof(self):$/;" m class:FieldStorage +read_lines_to_outerboundary Lib/cgi.py /^ def read_lines_to_outerboundary(self):$/;" m class:FieldStorage +read_list Tools/scripts/var_access_benchmark.py /^def read_list(trials=trials, a=[1]):$/;" f +read_local Tools/scripts/var_access_benchmark.py /^def read_local(trials=trials):$/;" f +read_long1 Lib/pickletools.py /^def read_long1(f):$/;" f +read_long4 Lib/pickletools.py /^def read_long4(f):$/;" f +read_mime_types Lib/mimetypes.py /^def read_mime_types(file):$/;" f +read_mode Lib/test/test_io.py /^ read_mode = "rb"$/;" v class:BufferedReaderTest +read_mode Lib/test/test_io.py /^ read_mode = "rb+"$/;" v class:BufferedRandomTest +read_mode Lib/test/test_socket.py /^ read_mode = 'r'$/;" v class:UnicodeReadFileObjectClassTestCase +read_mode Lib/test/test_socket.py /^ read_mode = 'r'$/;" v class:UnicodeReadWriteFileObjectClassTestCase +read_mode Lib/test/test_socket.py /^ read_mode = 'rb'$/;" v class:FileObjectClassTestCase +read_mode Lib/test/test_socket.py /^ read_mode = 'rb'$/;" v class:UnicodeWriteFileObjectClassTestCase +read_modify_blockwise Tools/iobench/iobench.py /^def read_modify_blockwise(f, source):$/;" f +read_modify_bytewise Tools/iobench/iobench.py /^def read_modify_bytewise(f, source):$/;" f +read_module Lib/optparse.py /^ def read_module(self, modname, mode="careful"):$/;" m class:Values +read_msg Lib/test/test_socket.py /^ read_msg = MSG$/;" v class:FileObjectClassTestCase +read_msg Lib/test/test_socket.py /^ read_msg = MSG$/;" v class:UnicodeWriteFileObjectClassTestCase +read_msg Lib/test/test_socket.py /^ read_msg = MSG.decode('utf-8')$/;" v class:UnicodeReadFileObjectClassTestCase +read_msg Lib/test/test_socket.py /^ read_msg = MSG.decode('utf-8')$/;" v class:UnicodeReadWriteFileObjectClassTestCase +read_multi Lib/cgi.py /^ def read_multi(self, environ, keep_blank_values, strict_parsing):$/;" m class:FieldStorage +read_multiple Modules/_sqlite/blob.c /^read_multiple(pysqlite_Blob *self, Py_ssize_t length, Py_ssize_t offset)$/;" f file: +read_namedtuple Tools/scripts/var_access_benchmark.py /^def read_namedtuple(trials=trials, D=namedtuple('D', ['x'])):$/;" f +read_nonlocal Tools/scripts/var_access_benchmark.py /^read_nonlocal = make_nonlocal_reader()$/;" v +read_obj Include/internal/pycore_code.h /^read_obj(uint16_t *p)$/;" f +read_object Python/marshal.c /^read_object(RFILE *p)$/;" f file: +read_ops Lib/test/test_io.py /^ def read_ops(self, f, buffered=False):$/;" m class:IOTest +read_or_stop Lib/lib2to3/pgen2/tokenize.py /^ def read_or_stop():$/;" f function:detect_encoding +read_or_stop Lib/tokenize.py /^ def read_or_stop():$/;" f function:detect_encoding +read_parsed Tools/c-analyzer/c_parser/datafiles.py /^def read_parsed(infile):$/;" f +read_pipe_transport Lib/test/test_asyncio/test_unix_events.py /^ def read_pipe_transport(self, waiter=None):$/;" m class:UnixReadPipeTransportTests +read_pyfile Lib/test/test_unparse.py /^def read_pyfile(filename):$/;" f +read_python_version Tools/wasm/wasm_build.py /^def read_python_version(configure: pathlib.Path = CONFIGURE) -> str:$/;" f +read_sb_data Lib/telnetlib.py /^ def read_sb_data(self):$/;" m class:Telnet +read_seek_blockwise Tools/iobench/iobench.py /^def read_seek_blockwise(f):$/;" f +read_seek_bytewise Tools/iobench/iobench.py /^def read_seek_bytewise(f):$/;" f +read_signed Lib/multiprocessing/forkserver.py /^def read_signed(fd):$/;" f +read_signed_varint Lib/test/test_code.py /^def read_signed_varint(it):$/;" f +read_signed_varint Objects/codeobject.c /^read_signed_varint(PyCodeAddressRange *bounds)$/;" f file: +read_signed_varint Tools/gdb/libpython.py /^def read_signed_varint(it):$/;" f +read_single Lib/cgi.py /^ def read_single(self):$/;" m class:FieldStorage +read_single Modules/_sqlite/blob.c /^read_single(pysqlite_Blob *self, Py_ssize_t offset)$/;" f file: +read_size_t Objects/obmalloc.c /^read_size_t(const void *p)$/;" f file: +read_small_chunks Tools/iobench/iobench.py /^def read_small_chunks(f):$/;" f +read_some Lib/telnetlib.py /^ def read_some(self):$/;" m class:Telnet +read_sound_file Lib/test/test_ossaudiodev.py /^def read_sound_file(path):$/;" f +read_strdict Tools/scripts/var_access_benchmark.py /^def read_strdict(trials=trials, a={'key': 1}):$/;" f +read_string Lib/configparser.py /^ def read_string(self, string, source=''):$/;" m class:RawConfigParser +read_string1 Lib/pickletools.py /^def read_string1(f):$/;" f +read_string4 Lib/pickletools.py /^def read_string4(f):$/;" f +read_stringnl Lib/pickletools.py /^def read_stringnl(f, decode=True, stripquotes=True):$/;" f +read_stringnl_noescape Lib/pickletools.py /^def read_stringnl_noescape(f):$/;" f +read_stringnl_noescape_pair Lib/pickletools.py /^def read_stringnl_noescape_pair(f):$/;" f +read_table Tools/c-analyzer/c_common/tables.py /^def read_table(infile, header, *,$/;" f +read_tests Tools/iobench/iobench.py /^read_tests = [$/;" v +read_text Lib/importlib/metadata/__init__.py /^ def read_text(self, encoding='utf-8'):$/;" m class:PackagePath +read_text Lib/importlib/metadata/__init__.py /^ def read_text(self, filename) -> Optional[str]:$/;" m class:Distribution +read_text Lib/importlib/metadata/__init__.py /^ def read_text(self, filename):$/;" m class:PathDistribution +read_text Lib/importlib/metadata/_meta.py /^ def read_text(self) -> str:$/;" m class:SimplePath +read_text Lib/importlib/resources/_legacy.py /^def read_text($/;" f +read_text Lib/importlib/resources/abc.py /^ def read_text(self, encoding: Optional[str] = None) -> str:$/;" m class:Traversable +read_text Lib/importlib/resources/readers.py /^ def read_text(self, *args, **kwargs):$/;" m class:MultiplexedPath +read_text Lib/pathlib.py /^ def read_text(self, encoding=None, errors=None):$/;" m class:Path +read_text Lib/zipfile/_path/__init__.py /^ def read_text(self, *args, **kwargs):$/;" m class:Path +read_text Programs/_freeze_module.c /^read_text(const char *inpath)$/;" f file: +read_text Programs/_freeze_module.py /^def read_text(inpath: str) -> bytes:$/;" f +read_token Lib/shlex.py /^ def read_token(self):$/;" m class:shlex +read_tracer Lib/test/test_tkinter/test_variables.py /^ def read_tracer(*args):$/;" f function:TestVariable.test_trace +read_tracer Lib/test/test_tkinter/test_variables.py /^ def read_tracer(*args):$/;" f function:TestVariable.test_trace_old +read_u16 Include/internal/pycore_code.h /^read_u16(uint16_t *p)$/;" f +read_u32 Include/internal/pycore_code.h /^read_u32(uint16_t *p)$/;" f +read_u64 Include/internal/pycore_code.h /^read_u64(uint16_t *p)$/;" f +read_uint1 Lib/pickletools.py /^def read_uint1(f):$/;" f +read_uint2 Lib/pickletools.py /^def read_uint2(f):$/;" f +read_uint4 Lib/pickletools.py /^def read_uint4(f):$/;" f +read_uint8 Lib/pickletools.py /^def read_uint8(f):$/;" f +read_unicodestring1 Lib/pickletools.py /^def read_unicodestring1(f):$/;" f +read_unicodestring4 Lib/pickletools.py /^def read_unicodestring4(f):$/;" f +read_unicodestring8 Lib/pickletools.py /^def read_unicodestring8(f):$/;" f +read_unicodestringnl Lib/pickletools.py /^def read_unicodestringnl(f):$/;" f +read_unlimited Lib/test/test_decimal.py /^ def read_unlimited(self, v, context):$/;" m class:IBMTestCases +read_until Lib/telnetlib.py /^ def read_until(self, match, timeout=None):$/;" m class:Telnet +read_urlencoded Lib/cgi.py /^ def read_urlencoded(self):$/;" m class:FieldStorage +read_values Tools/c-analyzer/distutils/msvc9compiler.py /^ def read_values(cls, base, key):$/;" m class:Reg +read_values Tools/c-analyzer/distutils/msvc9compiler.py /^ read_values = classmethod(read_values)$/;" v class:Reg +read_values Tools/c-analyzer/distutils/msvccompiler.py /^def read_values(base, key):$/;" f +read_varint Lib/test/test_code.py /^def read_varint(it):$/;" f +read_varint Objects/codeobject.c /^read_varint(PyCodeAddressRange *bounds)$/;" f file: +read_varint Tools/gdb/libpython.py /^def read_varint(it):$/;" f +read_vectors Lib/test/test_hashlib.py /^def read_vectors(hash_name):$/;" f +read_very_eager Lib/telnetlib.py /^ def read_very_eager(self):$/;" m class:Telnet +read_very_lazy Lib/telnetlib.py /^ def read_very_lazy(self):$/;" m class:Telnet +read_very_lazy Lib/test/test_telnetlib.py /^ def read_very_lazy(self):$/;" m class:ReadTests +read_whole_file Tools/iobench/iobench.py /^def read_whole_file(f):$/;" f +read_windows_registry Lib/mimetypes.py /^ def read_windows_registry(self, strict=True):$/;" m class:MimeTypes +read_written Lib/test/test_aifc.py /^ def read_written(self, what):$/;" f function:AIFCLowLevelTest.test_read_written +readable Lib/_compression.py /^ def readable(self):$/;" m class:DecompressReader +readable Lib/_pyio.py /^ def readable(self):$/;" m class:BufferedRWPair +readable Lib/_pyio.py /^ def readable(self):$/;" m class:BufferedReader +readable Lib/_pyio.py /^ def readable(self):$/;" m class:BytesIO +readable Lib/_pyio.py /^ def readable(self):$/;" m class:FileIO +readable Lib/_pyio.py /^ def readable(self):$/;" m class:IOBase +readable Lib/_pyio.py /^ def readable(self):$/;" m class:TextIOWrapper +readable Lib/bz2.py /^ def readable(self):$/;" m class:BZ2File +readable Lib/gzip.py /^ def readable(self):$/;" m class:GzipFile +readable Lib/http/client.py /^ def readable(self):$/;" m class:HTTPResponse +readable Lib/idlelib/run.py /^ def readable(self):$/;" m class:StdInputFile +readable Lib/lzma.py /^ def readable(self):$/;" m class:LZMAFile +readable Lib/mailbox.py /^ def readable(self):$/;" m class:_ProxyFile +readable Lib/multiprocessing/connection.py /^ def readable(self):$/;" m class:_ConnectionBase +readable Lib/socket.py /^ def readable(self):$/;" m class:SocketIO +readable Lib/tarfile.py /^ def readable(self):$/;" m class:_FileInFile +readable Lib/tempfile.py /^ def readable(self):$/;" m class:SpooledTemporaryFile +readable Lib/test/support/asynchat.py /^ def readable(self):$/;" m class:async_chat +readable Lib/test/support/asyncore.py /^ def readable(self):$/;" m class:dispatcher +readable Lib/test/test_io.py /^ readable = "r" in abilities$/;" v class:IOTest.test_optional_abilities.text_writer.UnseekableWriter +readable Lib/test/test_io.py /^ readable = self.BufferedIOBase.readable$/;" v class:IOTest.test_optional_abilities.text_writer.UnseekableWriter +readable Lib/test/test_io.py /^ def readable(self): return True$/;" m class:TextIOWrapperTest.test_issue22849.F +readable Lib/test/test_io.py /^ def readable(self):$/;" m class:BufferedRWPairTest.test_constructor_with_not_readable.NotReadable +readable Lib/test/test_io.py /^ def readable(self):$/;" m class:TextIOWrapperTest.test_unreadable.UnReadable +readable Lib/test/test_io.py /^ def readable(self):$/;" m class:MockNonBlockWriterIO +readable Lib/test/test_io.py /^ def readable(self):$/;" m class:MockRawIOWithoutRead +readable Lib/test/test_nntplib.py /^ def readable(self):$/;" m class:_NNTPServerIO +readable Lib/test/test_ssl.py /^ def readable(self):$/;" m class:AsyncoreEchoServer.EchoServer.ConnectionHandler +readable Lib/typing.py /^ def readable(self) -> bool:$/;" m class:IO +readable Lib/zipfile/__init__.py /^ def readable(self):$/;" m class:ZipExtFile +readable Modules/_io/bufferedio.c /^ int readable;$/;" m struct:__anon435 file: +readable Modules/_io/fileio.c /^ unsigned int readable : 1;$/;" m struct:__anon431 file: +readable Modules/_io/winconsoleio.c /^ unsigned int readable : 1;$/;" m struct:__anon432 file: +readable Python/marshal.c /^ PyObject *readable; \/* Stream-like object being read from *\/$/;" m struct:__anon700 file: +readall Lib/_compression.py /^ def readall(self):$/;" m class:DecompressReader +readall Lib/_pyio.py /^ def readall(self):$/;" m class:FileIO +readall Lib/_pyio.py /^ def readall(self):$/;" m class:RawIOBase +readalllines Lib/test/test_codecs.py /^ def readalllines(input, keepends=True, size=None):$/;" f function:ReadTest.test_readline +readconfig Lib/turtle.py /^def readconfig(cfgdict):$/;" f +readdir Modules/_posixsubprocess.c 54;" d file: +reader Lib/cgitb.py /^ def reader(lnum=[lnum]):$/;" f +reader Lib/pickletools.py /^ reader=read_decimalnl_short,$/;" v +reader Lib/pickletools.py /^ reader=read_unicodestringnl,$/;" v +reader Lib/pickletools.py /^ reader=read_decimalnl_long,$/;" v +reader Lib/pickletools.py /^ reader=read_unicodestring1,$/;" v +reader Lib/pickletools.py /^ reader=read_unicodestring4,$/;" v +reader Lib/pickletools.py /^ reader=read_unicodestring8,$/;" v +reader Lib/pickletools.py /^ reader=read_stringnl,$/;" v +reader Lib/pickletools.py /^ reader=read_bytearray8,$/;" v +reader Lib/pickletools.py /^ reader=read_bytes1,$/;" v +reader Lib/pickletools.py /^ reader=read_bytes4,$/;" v +reader Lib/pickletools.py /^ reader=read_bytes8,$/;" v +reader Lib/pickletools.py /^ reader=read_floatnl,$/;" v +reader Lib/pickletools.py /^ reader=read_string1,$/;" v +reader Lib/pickletools.py /^ reader=read_string4,$/;" v +reader Lib/pickletools.py /^ reader=read_float8,$/;" v +reader Lib/pickletools.py /^ reader=read_uint1,$/;" v +reader Lib/pickletools.py /^ reader=read_uint2,$/;" v +reader Lib/pickletools.py /^ reader=read_uint4,$/;" v +reader Lib/pickletools.py /^ reader=read_uint8,$/;" v +reader Lib/pickletools.py /^ reader=read_int4,$/;" v +reader Lib/pickletools.py /^ reader=read_long1,$/;" v +reader Lib/pickletools.py /^ reader=read_long4,$/;" v +reader Lib/test/test_asyncio/test_events.py /^ def reader():$/;" f function:EventLoopTestsMixin.test_reader_callback +reader Lib/test/test_asyncio/test_events.py /^ def reader(data):$/;" f function:EventLoopTestsMixin.test_bidirectional_pty +reader Lib/test/test_asyncio/test_events.py /^ def reader(data):$/;" f function:EventLoopTestsMixin.test_write_pipe +reader Lib/test/test_asyncio/test_events.py /^ def reader(data):$/;" f function:EventLoopTestsMixin.test_write_pty +reader Lib/test/test_asyncio/test_pep492.py /^ async def reader():$/;" f function:StreamReaderTests.test_readline +reader Lib/test/test_coroutines.py /^ async def reader(coro):$/;" f function:CoroutineTest.test_func_15 +reader Lib/test/test_csv.py /^ reader = csv.reader(fileobj, dialect=space())$/;" v class:TestDialectRegistry.test_space_dialect.space +reader Modules/_io/bufferedio.c /^ buffered *reader;$/;" m struct:__anon436 file: +readerAssertEqual Lib/test/test_csv.py /^ def readerAssertEqual(self, input, expected_result):$/;" m class:TestCsvBase +reader_close Lib/test/test_io.py /^ def reader_close():$/;" f function:BufferedRWPairTest.test_reader_close_error_on_close +reader_close Lib/test/test_io.py /^ def reader_close():$/;" f function:BufferedRWPairTest.test_reader_writer_close_error_on_close +reader_slots Modules/cjkcodecs/multibytecodec.c /^static PyType_Slot reader_slots[] = {$/;" v file: +reader_spec Modules/cjkcodecs/multibytecodec.c /^static PyType_Spec reader_spec = {$/;" v file: +reader_type Modules/_csv.c /^ PyTypeObject *reader_type;$/;" m struct:__anon620 file: +reader_type Modules/cjkcodecs/multibytecodec.c /^ PyTypeObject *reader_type;$/;" m struct:__anon321 file: +readexactly Lib/asyncio/streams.py /^ async def readexactly(self, n):$/;" m class:StreamReader +readfp Lib/mimetypes.py /^ def readfp(self, fp, strict=True):$/;" m class:MimeTypes +readframes Lib/aifc.py /^ def readframes(self, nframes):$/;" m class:Aifc_read +readframes Lib/sunau.py /^ def readframes(self, nframes):$/;" m class:Au_read +readframes Lib/wave.py /^ def readframes(self, nframes):$/;" m class:Wave_read +reading Lib/idlelib/pyshell.py /^ reading = False$/;" v class:PyShell +readinst Modules/pyexpat.c /^readinst(char *buf, int buf_size, PyObject *meth)$/;" f file: +readinto Lib/_compression.py /^ def readinto(self, b):$/;" m class:DecompressReader +readinto Lib/_pyio.py /^ def readinto(self, b):$/;" m class:BufferedIOBase +readinto Lib/_pyio.py /^ def readinto(self, b):$/;" m class:BufferedRWPair +readinto Lib/_pyio.py /^ def readinto(self, b):$/;" m class:BufferedRandom +readinto Lib/_pyio.py /^ def readinto(self, b):$/;" m class:FileIO +readinto Lib/_pyio.py /^ def readinto(self, b):$/;" m class:RawIOBase +readinto Lib/bz2.py /^ def readinto(self, b):$/;" m class:BZ2File +readinto Lib/http/client.py /^ def readinto(self, b):$/;" m class:HTTPResponse +readinto Lib/pickle.py /^ def readinto(self, buf):$/;" m class:_Unframer +readinto Lib/socket.py /^ def readinto(self, b):$/;" m class:SocketIO +readinto Lib/tarfile.py /^ def readinto(self, b):$/;" m class:_FileInFile +readinto Lib/tempfile.py /^ def readinto(self, b):$/;" m class:SpooledTemporaryFile +readinto Lib/test/test_httplib.py /^ def readinto(buffer):$/;" f function:PersistenceTest.test_disconnected.make_reset_reader +readinto Lib/test/test_io.py /^ def readinto(self, b):$/;" m class:MockFileIO +readinto Lib/test/test_io.py /^ def readinto(self, buf):$/;" m class:MisbehavedRawIO +readinto Lib/test/test_io.py /^ def readinto(self, buf):$/;" m class:MockRawIOWithoutRead +readinto Lib/test/test_marshal.py /^ def readinto(self, buf):$/;" m class:BugsTestCase.test_bad_reader.BadReader +readinto Lib/test/test_nntplib.py /^ def readinto(self, buf):$/;" m class:_NNTPServerIO +readinto Modules/_io/winconsoleio.c /^readinto(_PyIO_State *state, winconsoleio *self, char *buf, Py_ssize_t len)$/;" f file: +readinto Modules/_pickle.c /^ PyObject *readinto; \/* readinto() method of the input stream. *\/$/;" m struct:UnpicklerObject file: +readinto1 Lib/_pyio.py /^ def readinto1(self, b):$/;" m class:BufferedIOBase +readinto1 Lib/_pyio.py /^ def readinto1(self, b):$/;" m class:BufferedRWPair +readinto1 Lib/_pyio.py /^ def readinto1(self, b):$/;" m class:BufferedRandom +readinto1 Lib/tempfile.py /^ def readinto1(self, b):$/;" m class:SpooledTemporaryFile +readline Lib/_pyio.py /^ def readline(self):$/;" m class:TextIOBase +readline Lib/_pyio.py /^ def readline(self, size=-1):$/;" m class:IOBase +readline Lib/_pyio.py /^ def readline(self, size=None):$/;" m class:TextIOWrapper +readline Lib/asyncio/streams.py /^ async def readline(self):$/;" m class:StreamReader +readline Lib/bz2.py /^ def readline(self, size=-1):$/;" m class:BZ2File +readline Lib/codecs.py /^ def readline(self, size=None):$/;" m class:StreamReaderWriter +readline Lib/codecs.py /^ def readline(self, size=None):$/;" m class:StreamRecoder +readline Lib/codecs.py /^ def readline(self, size=None, keepends=True):$/;" m class:StreamReader +readline Lib/email/feedparser.py /^ def readline(self):$/;" m class:BufferedSubFile +readline Lib/fileinput.py /^ def readline(self):$/;" m class:FileInput +readline Lib/gzip.py /^ def readline(self, size=-1):$/;" m class:GzipFile +readline Lib/http/client.py /^ def readline(self, limit=-1):$/;" m class:HTTPResponse +readline Lib/idlelib/editor.py /^ def readline(self):$/;" m class:IndentSearcher +readline Lib/idlelib/idle_test/test_run.py /^ def readline(self):$/;" m class:MockShell +readline Lib/idlelib/pyshell.py /^ def readline(self):$/;" m class:PyShell +readline Lib/idlelib/run.py /^ def readline(self, size=-1):$/;" m class:StdInputFile +readline Lib/imaplib.py /^ def readline(self):$/;" m class:IMAP4 +readline Lib/imaplib.py /^ def readline(self):$/;" m class:IMAP4_stream +readline Lib/lzma.py /^ def readline(self, size=-1):$/;" m class:LZMAFile +readline Lib/mailbox.py /^ def readline(self, size=None):$/;" m class:_ProxyFile +readline Lib/pickle.py /^ def readline(self):$/;" m class:_Unframer +readline Lib/tempfile.py /^ def readline(self, *args):$/;" m class:SpooledTemporaryFile +readline Lib/test/mock_socket.py /^ def readline(self, limit=-1):$/;" m class:MockFile +readline Lib/test/test_cgi.py /^ def readline(self, size=None):$/;" m class:.test_fieldstorage_readline.TestReadlineFile +readline Lib/test/test_configparser.py /^ def readline(self):$/;" m class:FakeFile +readline Lib/test/test_doctest.py /^ def readline(self):$/;" m class:_FakeInput +readline Lib/test/test_fileinput.py /^ def readline(self, size=None):$/;" m class:LineReader +readline Lib/test/test_httplib.py /^ def readline(self, length=None):$/;" m class:NoEOFBytesIO +readline Lib/test/test_httplib.py /^ def readline(self, limit):$/;" m class:Readliner +readline Lib/test/test_io.py /^ def readline(self):$/;" m class:IOTest.test_readline_nonsizeable.R +readline Lib/test/test_readline.py /^readline = import_module('readline')$/;" v +readline Lib/test/test_urllib.py /^ def readline(self, length=None):$/;" m class:fakehttp.FakeSocket +readline Lib/test/test_urllib2.py /^ def readline(self, count=None):$/;" m class:MockFile +readline Lib/typing.py /^ def readline(self, limit: int = -1) -> AnyStr:$/;" m class:IO +readline Lib/wsgiref/types.py /^ def readline(self, size: int = ..., \/) -> bytes: ...$/;" m class:InputStream +readline Lib/wsgiref/validate.py /^ def readline(self, *args):$/;" m class:InputWrapper +readline Lib/zipfile/__init__.py /^ def readline(self, limit=-1):$/;" m class:ZipExtFile +readline Modules/_pickle.c /^ PyObject *readline; \/* readline() method of the input stream. *\/$/;" m struct:UnpicklerObject file: +readline Parser/tokenizer.h /^ PyObject *readline; \/* readline() function *\/$/;" m struct:tok_state +readline_add_history Modules/readline.c /^readline_add_history(PyObject *module, PyObject *string)$/;" f file: +readline_append_history_file Modules/clinic/readline.c.h /^readline_append_history_file(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_append_history_file_impl Modules/readline.c /^readline_append_history_file_impl(PyObject *module, int nelements,$/;" f file: +readline_clear Modules/readline.c /^readline_clear(PyObject *m)$/;" f file: +readline_clear_history Modules/clinic/readline.c.h /^readline_clear_history(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_clear_history_impl Modules/readline.c /^readline_clear_history_impl(PyObject *module)$/;" f file: +readline_free Modules/readline.c /^readline_free(void *m)$/;" f file: +readline_generator Lib/test/test_configparser.py /^def readline_generator(f):$/;" f +readline_get_begidx Modules/clinic/readline.c.h /^readline_get_begidx(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_begidx_impl Modules/readline.c /^readline_get_begidx_impl(PyObject *module)$/;" f file: +readline_get_completer Modules/clinic/readline.c.h /^readline_get_completer(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_completer_delims Modules/clinic/readline.c.h /^readline_get_completer_delims(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_completer_delims_impl Modules/readline.c /^readline_get_completer_delims_impl(PyObject *module)$/;" f file: +readline_get_completer_impl Modules/readline.c /^readline_get_completer_impl(PyObject *module)$/;" f file: +readline_get_completion_type Modules/clinic/readline.c.h /^readline_get_completion_type(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_completion_type_impl Modules/readline.c /^readline_get_completion_type_impl(PyObject *module)$/;" f file: +readline_get_current_history_length Modules/clinic/readline.c.h /^readline_get_current_history_length(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_current_history_length_impl Modules/readline.c /^readline_get_current_history_length_impl(PyObject *module)$/;" f file: +readline_get_endidx Modules/clinic/readline.c.h /^readline_get_endidx(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_endidx_impl Modules/readline.c /^readline_get_endidx_impl(PyObject *module)$/;" f file: +readline_get_history_item Modules/clinic/readline.c.h /^readline_get_history_item(PyObject *module, PyObject *arg)$/;" f +readline_get_history_item_impl Modules/readline.c /^readline_get_history_item_impl(PyObject *module, int idx)$/;" f file: +readline_get_history_length Modules/clinic/readline.c.h /^readline_get_history_length(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_history_length_impl Modules/readline.c /^readline_get_history_length_impl(PyObject *module)$/;" f file: +readline_get_line_buffer Modules/clinic/readline.c.h /^readline_get_line_buffer(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_get_line_buffer_impl Modules/readline.c /^readline_get_line_buffer_impl(PyObject *module)$/;" f file: +readline_insert_text Modules/readline.c /^readline_insert_text(PyObject *module, PyObject *string)$/;" f file: +readline_methods Modules/readline.c /^static struct PyMethodDef readline_methods[] =$/;" v typeref:struct:PyMethodDef file: +readline_parse_and_bind Modules/readline.c /^readline_parse_and_bind(PyObject *module, PyObject *string)$/;" f file: +readline_read_history_file Modules/clinic/readline.c.h /^readline_read_history_file(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_read_history_file_impl Modules/readline.c /^readline_read_history_file_impl(PyObject *module, PyObject *filename_obj)$/;" f file: +readline_read_init_file Modules/clinic/readline.c.h /^readline_read_init_file(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_read_init_file_impl Modules/readline.c /^readline_read_init_file_impl(PyObject *module, PyObject *filename_obj)$/;" f file: +readline_redisplay Modules/clinic/readline.c.h /^readline_redisplay(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +readline_redisplay_impl Modules/readline.c /^readline_redisplay_impl(PyObject *module)$/;" f file: +readline_remove_history_item Modules/clinic/readline.c.h /^readline_remove_history_item(PyObject *module, PyObject *arg)$/;" f +readline_remove_history_item_impl Modules/readline.c /^readline_remove_history_item_impl(PyObject *module, int entry_number)$/;" f file: +readline_replace_history_item Modules/clinic/readline.c.h /^readline_replace_history_item(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_replace_history_item_impl Modules/readline.c /^readline_replace_history_item_impl(PyObject *module, int entry_number,$/;" f file: +readline_set_auto_history Modules/clinic/readline.c.h /^readline_set_auto_history(PyObject *module, PyObject *arg)$/;" f +readline_set_auto_history_impl Modules/readline.c /^readline_set_auto_history_impl(PyObject *module,$/;" f file: +readline_set_completer Modules/clinic/readline.c.h /^readline_set_completer(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_set_completer_delims Modules/readline.c /^readline_set_completer_delims(PyObject *module, PyObject *string)$/;" f file: +readline_set_completer_impl Modules/readline.c /^readline_set_completer_impl(PyObject *module, PyObject *function)$/;" f file: +readline_set_completion_display_matches_hook Modules/clinic/readline.c.h /^readline_set_completion_display_matches_hook(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_set_completion_display_matches_hook_impl Modules/readline.c /^readline_set_completion_display_matches_hook_impl(PyObject *module,$/;" f file: +readline_set_history_length Modules/clinic/readline.c.h /^readline_set_history_length(PyObject *module, PyObject *arg)$/;" f +readline_set_history_length_impl Modules/readline.c /^readline_set_history_length_impl(PyObject *module, int length)$/;" f file: +readline_set_pre_input_hook Modules/clinic/readline.c.h /^readline_set_pre_input_hook(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_set_pre_input_hook_impl Modules/readline.c /^readline_set_pre_input_hook_impl(PyObject *module, PyObject *function)$/;" f file: +readline_set_startup_hook Modules/clinic/readline.c.h /^readline_set_startup_hook(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_set_startup_hook_impl Modules/readline.c /^readline_set_startup_hook_impl(PyObject *module, PyObject *function)$/;" f file: +readline_sigwinch_handler Modules/readline.c /^readline_sigwinch_handler(int signum)$/;" f file: +readline_traverse Modules/readline.c /^readline_traverse(PyObject *m, visitproc visit, void *arg)$/;" f file: +readline_until_enter_or_signal Modules/readline.c /^readline_until_enter_or_signal(const char *prompt, int *signal)$/;" f file: +readline_write_history_file Modules/clinic/readline.c.h /^readline_write_history_file(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +readline_write_history_file_impl Modules/readline.c /^readline_write_history_file_impl(PyObject *module, PyObject *filename_obj)$/;" f file: +readlinemodule Modules/readline.c /^static PyModuleDef readlinemodule;$/;" v file: +readlinemodule Modules/readline.c /^static struct PyModuleDef readlinemodule = {$/;" v typeref:struct:PyModuleDef file: +readlines Lib/_pyio.py /^ def readlines(self, hint=None):$/;" m class:IOBase +readlines Lib/bz2.py /^ def readlines(self, size=-1):$/;" m class:BZ2File +readlines Lib/codecs.py /^ def readlines(self, sizehint=None):$/;" m class:StreamReaderWriter +readlines Lib/codecs.py /^ def readlines(self, sizehint=None):$/;" m class:StreamRecoder +readlines Lib/codecs.py /^ def readlines(self, sizehint=None, keepends=True):$/;" m class:StreamReader +readlines Lib/mailbox.py /^ def readlines(self, sizehint=None):$/;" m class:_ProxyFile +readlines Lib/tempfile.py /^ def readlines(self, *args):$/;" m class:SpooledTemporaryFile +readlines Lib/test/test_fileinput.py /^ def readlines(self, hint=-1):$/;" m class:LineReader +readlines Lib/test/test_getpath.py /^ def readlines(self, path):$/;" m class:MockNTNamespace +readlines Lib/test/test_getpath.py /^ def readlines(self, path):$/;" m class:MockPosixNamespace +readlines Lib/typing.py /^ def readlines(self, hint: int = -1) -> List[AnyStr]:$/;" m class:IO +readlines Lib/wsgiref/types.py /^ def readlines(self, hint: int = ..., \/) -> list[bytes]: ...$/;" m class:InputStream +readlines Lib/wsgiref/validate.py /^ def readlines(self, *args):$/;" m class:InputWrapper +readlinestate Modules/readline.c /^} readlinestate;$/;" t typeref:struct:__anon339 file: +readlinestate_global Modules/readline.c 146;" d file: +readlink Lib/pathlib.py /^ def readlink(self):$/;" m class:Path +readmailcapfile Lib/mailcap.py /^def readmailcapfile(fp):$/;" f +readmap Tools/unicode/gencodec.py /^def readmap(filename):$/;" f +readmodule Lib/pyclbr.py /^def readmodule(module, path=None):$/;" f +readmodule_ex Lib/pyclbr.py /^def readmodule_ex(module, path=None):$/;" f +readnl Modules/_io/stringio.c /^ PyObject *readnl;$/;" m struct:__anon433 file: +readnl Modules/_io/textio.c /^ PyObject *readnl;$/;" m struct:textio file: +readonly Include/cpython/unicodeobject.h /^ unsigned char readonly;$/;" m struct:__anon236 +readonly Include/pybuffer.h /^ int readonly;$/;" m struct:__anon1 +readonly Lib/imaplib.py /^ class readonly(abort): pass # Mailbox status changed to READ-ONLY$/;" c class:IMAP4 +readonly Lib/test/pickletester.py /^ def readonly(self):$/;" m class:ZeroCopyBytearray.PicklableNDArray +readonly Lib/test/pickletester.py /^ readonly = False$/;" v class:ZeroCopyBytearray +readonly Lib/test/pickletester.py /^ readonly = True$/;" v class:ZeroCopyBytes +readonly_cached_property Lib/test/test_functools.py /^ class readonly_cached_property(py_functools.cached_property):$/;" c function:TestCachedProperty.test_subclass_with___set__ +readpipe_interrupted Lib/test/test_signal.py /^ def readpipe_interrupted(self, interrupt):$/;" m class:SiginterruptTest +readprofile Lib/tkinter/__init__.py /^ def readprofile(self, baseName, className):$/;" m class:Tk +readtranslate Modules/_io/stringio.c /^ char readtranslate;$/;" m struct:__anon433 file: +readtranslate Modules/_io/textio.c /^ char readtranslate;$/;" m struct:textio file: +readuniversal Modules/_io/stringio.c /^ char readuniversal;$/;" m struct:__anon433 file: +readuniversal Modules/_io/textio.c /^ char readuniversal;$/;" m struct:textio file: +readuntil Lib/asyncio/streams.py /^ async def readuntil(self, separator=b'\\n'):$/;" m class:StreamReader +readwrite Lib/test/support/asyncore.py /^def readwrite(obj, flags):$/;" f +ready Include/internal/pycore_typeobject.h /^ int ready;$/;" m struct:__anon156 +ready Lib/multiprocessing/pool.py /^ def ready(self):$/;" m class:ApplyResult +ready Lib/pydoc.py /^ def ready(self, server):$/;" m class:_start_server.ServerThread +readying Include/internal/pycore_typeobject.h /^ int readying;$/;" m struct:__anon156 +real Include/cpython/complexobject.h /^ double real;$/;" m struct:__anon237 +real Lib/_pydecimal.py /^ def real(self):$/;" m class:Decimal +real Lib/numbers.py /^ def real(self):$/;" m class:Complex +real Lib/numbers.py /^ def real(self):$/;" m class:Real +real Lib/test/inspect_fodder2.py /^def real():$/;" f +real_close Lib/urllib/request.py /^ def real_close(self):$/;" m class:ftpwrapper +real_executable Lib/test/test_getpath.py /^ real_executable="",$/;" v class:MockGetPathTests +real_executable Modules/getpath.py /^ real_executable = base_executable$/;" v +real_executable Modules/getpath.py /^ real_executable = base_executable$/;" v +real_executable Modules/getpath.py /^ real_executable = executable$/;" v +real_executable Modules/getpath.py /^ real_executable = realpath(real_executable)$/;" v +real_executable_dir Modules/getpath.py /^ real_executable_dir = executable_dir$/;" v +real_executable_dir Modules/getpath.py /^ real_executable_dir = dirname(real_executable)$/;" v +real_executable_dir Modules/getpath.py /^ real_executable_dir = executable_dir$/;" v +real_executable_dir Modules/getpath.py /^real_executable_dir = None$/;" v +real_length_key Objects/structseq.c /^static const char real_length_key[] = "n_fields";$/;" v file: +real_max_memuse Lib/test/support/__init__.py /^real_max_memuse = 0$/;" v +real_number_rule Parser/parser.c /^real_number_rule(Parser *p)$/;" f file: +real_number_type Parser/parser.c 157;" d file: +real_quick_ratio Lib/difflib.py /^ def real_quick_ratio(self):$/;" m class:SequenceMatcher +realize Modules/_io/stringio.c /^realize(stringio *self)$/;" f file: +realloc Include/cpython/pymem.h /^ void* (*realloc) (void *ctx, void *ptr, size_t new_size);$/;" m struct:__anon249 +realloc_fcn Modules/expat/expat.h /^ void *(*realloc_fcn)(void *ptr, size_t size);$/;" m struct:__anon597 +realloc_new_size Modules/_testcapi/mem.c /^ size_t realloc_new_size;$/;" m struct:__anon555 file: +realloc_ptr Modules/_testcapi/mem.c /^ void *realloc_ptr;$/;" m struct:__anon555 file: +realloc_wrapper Programs/_testembed.c /^realloc_wrapper(void *ctx, void *ptr, size_t new_size)$/;" f file: +really Lib/test/test_enum.py /^ def really(self):$/;" m class:TestSpecial.test_exclude_methods.whatever +really_huge Lib/test/test_json/test_enum.py /^ really_huge = REALLY_HUGE$/;" v class:BigNum +realpath Lib/ntpath.py /^ def realpath(path, *, strict=False):$/;" f +realpath Lib/ntpath.py /^ realpath = abspath$/;" v +realpath Lib/posixpath.py /^def realpath(filename, *, strict=False):$/;" f +realpath Lib/test/test_getpath.py /^ def realpath(self, path, _trail=None):$/;" m class:MockNTNamespace +realpath Lib/test/test_getpath.py /^ def realpath(self, path, _trail=None):$/;" m class:MockPosixNamespace +realpath Lib/test/test_unittest/test_discovery.py /^ def realpath(path):$/;" f function:TestDiscovery.test_module_symlink_ok +realwork Tools/freeze/winmakemakefile.py /^def realwork(vars, moddefns, target):$/;" f +reap Lib/socketserver.py /^ def reap(self):$/;" m class:_Threads +reap_children Lib/test/support/__init__.py /^def reap_children():$/;" f +reap_obj Modules/selectmodule.c /^reap_obj(pylist fd2obj[FD_SETSIZE + 1])$/;" f file: +reap_server Lib/test/test_imaplib.py /^ def reap_server(self, server, thread):$/;" m class:ThreadedNetworkedTests +reap_threads Lib/test/support/threading_helper.py /^def reap_threads(func):$/;" f +reaped_pair Lib/test/test_imaplib.py /^ def reaped_pair(self, hdlr):$/;" m class:ThreadedNetworkedTests +reaped_server Lib/test/test_imaplib.py /^ def reaped_server(self, hdlr):$/;" m class:ThreadedNetworkedTests +reason Include/cpython/pyerrors.h /^ PyObject *reason;$/;" m struct:__anon184 +reason Lib/test/support/__init__.py /^ reason = "cannot run without OS X gui process"$/;" v class:_is_gui_available.USEROBJECTFLAGS.ProcessSerialNumber +reason Lib/test/support/__init__.py /^ reason = "gui not available (WSF_VISIBLE flag not set)"$/;" v class:_is_gui_available.USEROBJECTFLAGS +reason Lib/test/support/__init__.py /^ reason = "gui tests cannot run without OS X window manager"$/;" v class:_is_gui_available.USEROBJECTFLAGS +reason Lib/test/support/__init__.py /^ reason = 'Tk unavailable due to {}: {}'.format(type(e).__name__,$/;" v class:_is_gui_available.USEROBJECTFLAGS +reason Lib/test/test_nntplib.py /^ reason = "This will never be raised."$/;" v class:SSLError +reason Lib/urllib/error.py /^ def reason(self):$/;" m class:HTTPError +reason Modules/_ssl.c /^ int library, reason;$/;" m struct:py_ssl_error_code file: +reattach Lib/tkinter/ttk.py /^ reattach = move # A sensible method name for reattaching detached items$/;" v class:Treeview +rebuild_arena Lib/multiprocessing/heap.py /^ def rebuild_arena(size, dupfd):$/;" f +rebuild_as_list Lib/multiprocessing/managers.py /^def rebuild_as_list(obj):$/;" f +rebuild_connection Lib/multiprocessing/connection.py /^ def rebuild_connection(df, readable, writable):$/;" f function:XmlClient +rebuild_connection Lib/multiprocessing/connection.py /^ def rebuild_connection(ds, readable, writable):$/;" f function:XmlClient +rebuild_ctype Lib/multiprocessing/sharedctypes.py /^def rebuild_ctype(type_, wrapper, length):$/;" f +rebuild_exc Lib/multiprocessing/pool.py /^def rebuild_exc(exc, tb):$/;" f +rebuild_pipe_connection Lib/multiprocessing/connection.py /^ def rebuild_pipe_connection(dh, readable, writable):$/;" f function:XmlClient +rec Modules/_csv.c /^ Py_UCS4 *rec; \/* buffer for parser.join *\/$/;" m struct:__anon626 file: +rec_len Modules/_csv.c /^ Py_ssize_t rec_len; \/* length of record *\/$/;" m struct:__anon626 file: +rec_size Modules/_csv.c /^ Py_ssize_t rec_size; \/* size of allocated record *\/$/;" m struct:__anon626 file: +rec_test Lib/lib2to3/btm_utils.py /^def rec_test(sequence, test_func):$/;" f +recall Lib/idlelib/pyshell.py /^ def recall(self, s, event):$/;" m class:PyShell +receive Lib/test/test_socketserver.py /^def receive(sock, n, timeout=test.support.SHORT_TIMEOUT):$/;" f +recent Lib/imaplib.py /^ def recent(self):$/;" m class:IMAP4 +recolorize Lib/idlelib/colorizer.py /^ def recolorize(self):$/;" m class:ColorDelegator +recolorize_main Lib/idlelib/colorizer.py /^ def recolorize_main(self):$/;" m class:ColorDelegator +recolorize_main Lib/idlelib/pyshell.py /^ def recolorize_main(self):$/;" m class:ModifiedColorDelegator +recompile_pymods Tools/ssl/multissltests.py /^ def recompile_pymods(self):$/;" m class:AbstractBuilder +reconfigure Lib/_pyio.py /^ def reconfigure(self, *,$/;" m class:TextIOWrapper +reconstruct_method Modules/_pickle.c /^reconstruct_method(PyObject *func, PyObject *self)$/;" f file: +reconstructed Lib/test/pickletester.py /^ reconstructed = self.loads(pickled)$/;" v class:AbstractPickleTests.test_framed_write_sizes_with_delayed_writer.ChunkAccumulator +record Lib/test/_test_multiprocessing.py /^ def record(*args):$/;" f function:_TestPollEintr.test_poll_eintr +record Lib/test/test_descr.py /^ record = []$/;" v class:.test_special_method_lookup.ErrDescr +record Lib/test/test_monitoring.py /^ def record(*args, event_name=event_name):$/;" f function:MonitoringEventsBase.gather_events +record Lib/test/test_set.py /^ def record(obj):$/;" f function:TestSet.test_set_literal_evaluation_order +record Lib/test/test_urllib2.py /^ def record(self, info):$/;" m class:HandlerTests.test_basic_and_digest_auth_handlers.RecordingOpenerDirector +record_Type PC/_msi.c /^static PyTypeObject record_Type = {$/;" v file: +record_action Lib/test/test__xxinterpchannels.py /^ def record_action(self, action, result):$/;" m class:ChannelCloseFixture +record_call Lib/test/test_logging.py /^ def record_call(self, identifier, method_name, called):$/;" m class:FakeHandler +record_call Lib/test/test_monitoring.py /^ def record_call(code, offset, obj, arg):$/;" f function:MonitoringEventsBase.gather_events +record_eval Modules/_testinternalcapi.c /^record_eval(PyThreadState *tstate, struct _PyInterpreterFrame *f, int exc)$/;" f file: +record_finished Lib/test/test_concurrent_futures/test_thread_pool.py /^ def record_finished(n):$/;" f function:ThreadPoolExecutorTest.test_map_submits_without_iteration +record_func Modules/_testcapimodule.c /^record_func(PyObject *obj, PyFrameObject *f, int what, PyObject *arg)$/;" f file: +record_line Lib/test/test_frame.py /^ def record_line():$/;" f function:ClearTest.test_lineno_with_tracing +record_list Modules/_testinternalcapi.c /^ PyObject *record_list;$/;" m struct:__anon564 file: +record_methods PC/_msi.c /^static PyMethodDef record_methods[] = {$/;" v file: +record_names Lib/test/test_importlib/fixtures.py /^def record_names(file_defs):$/;" f +record_new PC/_msi.c /^record_new(MSIHANDLE h)$/;" f file: +record_original_stdout Lib/test/support/__init__.py /^def record_original_stdout(stdout):$/;" f +record_sub_info Lib/difflib.py /^ def record_sub_info(match_object,sub_info=sub_info):$/;" f function:_mdiff._make_line +recording_log_debug Lib/test/test_lib2to3/test_refactor.py /^ def recording_log_debug(msg, *args):$/;" f function:TestRefactoringTool.test_refactor_file_write_unchanged_file +recording_reporthook Lib/test/test_urllibnet.py /^ def recording_reporthook(blocks, block_size, total_size):$/;" f function:urlretrieveNetworkTests.test_reporthook +records Lib/cgitb.py /^ records = inspect.getinnerframes(etb, context)$/;" v +records Tools/unicode/makeunicodedata.py /^ def records(self) -> Iterator[List[str]]:$/;" m class:UcdFile +recpr_schedule_prec Modules/_decimal/libmpdec/mpdecimal.c /^recpr_schedule_prec(mpd_ssize_t klist[MPD_MAX_PREC_LOG2],$/;" f file: +recreate_gil Python/ceval_gil.c /^static void recreate_gil(struct _gil_runtime_state *gil)$/;" f file: +recreation_check Lib/test/test_compileall.py /^ def recreation_check(self, metadata):$/;" m class:CompileallTestsBase +rect_complex Lib/test/test_cmath.py /^ def rect_complex(z):$/;" f function:CMathTests.test_specific_values +rect_special_values Modules/cmathmodule.c /^static Py_complex rect_special_values[7][7];$/;" v file: +rectangle Lib/curses/textpad.py /^def rectangle(win, uly, ulx, lry, lrx):$/;" f +recurse Lib/test/test_call.py /^ def recurse(n):$/;" f function:TestRecursion.test_super_deep +recurse Lib/test/test_json/test_recursion.py /^ recurse = False$/;" v class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder +recurse Lib/test/test_pickle.py /^ def recurse(deep):$/;" f function:.SizeofTests.test_unpickler +recurse Lib/test/test_re.py /^ def recurse(actual, expect):$/;" f function:ReTests.assertTypedEqual +recurse Lib/test/test_traceback.py /^ def recurse(n):$/;" f function:TestTracebackException.test_limit +recurse Tools/patchcheck/reindent.py /^recurse = False$/;" v +recurse_after_except Lib/test/test_exceptions.py /^ def recurse_after_except():$/;" f function:ExceptionTests.test_recursion_in_except_handler +recurse_down_subclasses Objects/typeobject.c /^recurse_down_subclasses(PyTypeObject *type, PyObject *attr_name,$/;" f file: +recurse_in_body_and_except Lib/test/test_exceptions.py /^ def recurse_in_body_and_except():$/;" f function:ExceptionTests.test_recursion_in_except_handler +recurse_in_except Lib/test/test_exceptions.py /^ def recurse_in_except():$/;" f function:ExceptionTests.test_recursion_in_except_handler +recurse_infinitely_error_init Modules/_testcapi/exceptions.c /^recurse_infinitely_error_init(PyObject *self, PyObject *args, PyObject *kwds)$/;" f file: +recursionLevel Modules/_lsprof.c /^ long recursionLevel;$/;" m struct:_ProfilerEntry file: +recursionLevel Modules/_lsprof.c /^ long recursionLevel;$/;" m struct:_ProfilerSubEntry file: +recursion_depth Include/internal/pycore_ast_state.h /^ int recursion_depth;$/;" m struct:ast_state +recursion_depth Include/internal/pycore_compile.h /^ int recursion_depth; \/* current recursion depth *\/$/;" m struct:__anon150 +recursion_depth Include/internal/pycore_symtable.h /^ int recursion_depth; \/* current recursion depth *\/$/;" m struct:symtable +recursion_depth Python/ast.c /^ int recursion_depth; \/* current recursion depth *\/$/;" m struct:validator file: +recursion_headroom Include/cpython/pystate.h /^ int recursion_headroom; \/* Allow 50 more calls to handle any errors. *\/$/;" m struct:_ts +recursion_limit Include/internal/pycore_ast_state.h /^ int recursion_limit;$/;" m struct:ast_state +recursion_limit Include/internal/pycore_ceval_state.h /^ int recursion_limit;$/;" m struct:_ceval_state +recursion_limit Include/internal/pycore_compile.h /^ int recursion_limit; \/* recursion limit *\/$/;" m struct:__anon150 +recursion_limit Include/internal/pycore_symtable.h /^ int recursion_limit; \/* recursion limit *\/$/;" m struct:symtable +recursion_limit Python/ast.c /^ int recursion_limit; \/* recursion limit *\/$/;" m struct:validator file: +recursive Lib/test/test_contextlib.py /^ def recursive():$/;" f function:.test_recursive +recursive Lib/test/test_contextlib_async.py /^ async def recursive():$/;" f function:AsyncContextManagerTestCase.test_recursive +recursive_call Parser/asdl_c.py /^ def recursive_call(self, node, level):$/;" m class:Obj2ModVisitor +recursive_check Lib/test/test_io.py /^ def recursive_check(d):$/;" f function:TestIOCTypes.test_class_hierarchy +recursive_function Lib/test/test_support.py /^ def recursive_function(depth):$/;" f function:TestSupport.test_recursion +recursive_gather Lib/test/test_asyncio/test_eager_task_factory.py /^async def recursive_gather(width, depth):$/;" f +recursive_issubclass Objects/abstract.c /^recursive_issubclass(PyObject *derived, PyObject *cls)$/;" f file: +recursive_repr Lib/reprlib.py /^def recursive_repr(fillvalue='...'):$/;" f +recursive_taskgroups Lib/test/test_asyncio/test_eager_task_factory.py /^async def recursive_taskgroups(width, depth):$/;" f +recursivecallcount Modules/_lsprof.c /^ long recursivecallcount; \/* how many times called recursively *\/$/;" m struct:_ProfilerEntry file: +recursivecallcount Modules/_lsprof.c /^ long recursivecallcount;$/;" m struct:_ProfilerSubEntry file: +recv Lib/asyncio/windows_events.py /^ def recv(self, conn, nbytes, flags=0):$/;" m class:IocpProactor +recv Lib/multiprocessing/connection.py /^ def recv(self):$/;" m class:ConnectionWrapper +recv Lib/multiprocessing/connection.py /^ def recv(self):$/;" m class:_ConnectionBase +recv Lib/ssl.py /^ def recv(self, buflen=1024, flags=0):$/;" m class:SSLSocket +recv Lib/test/mock_socket.py /^ def recv(self, bufsize, flags=None):$/;" m class:MockSocket +recv Lib/test/support/asyncore.py /^ def recv(self, *args):$/;" m class:.file_wrapper +recv Lib/test/support/asyncore.py /^ def recv(self, buffer_size):$/;" m class:dispatcher +recv Lib/test/support/interpreters.py /^ def recv(self, *, _sentinel=object(), _delay=10 \/ 1000): # 10 milliseconds$/;" m class:RecvChannel +recv Lib/test/test_ftplib.py /^ def recv(self, buffer_size):$/;" m class:.SSLConnection +recv Lib/test/test_telnetlib.py /^ def recv(self, size):$/;" m class:SocketStub +recv Modules/_xxinterpchannelsmodule.c /^ _channelend *recv;$/;" m struct:_channelassociations file: +recv_all Lib/test/test_asyncio/functional.py /^ def recv_all(self, n):$/;" m class:TestSocketWrapper +recv_all Lib/test/test_asyncio/test_sock_lowlevel.py /^ async def recv_all():$/;" f function:BaseSockTestsMixin._basetest_sock_send_racing +recv_all Lib/test/test_asyncio/test_ssl.py /^ def recv_all(self, n):$/;" m class:TestSocketWrapper +recv_bytes Lib/multiprocessing/connection.py /^ def recv_bytes(self, maxlength=None):$/;" m class:_ConnectionBase +recv_bytes Lib/test/_test_multiprocessing.py /^ def recv_bytes(self, size):$/;" m class:OtherTest.test_answer_challenge_auth_failure._FakeConnection +recv_bytes Lib/test/_test_multiprocessing.py /^ def recv_bytes(self, size):$/;" m class:OtherTest.test_deliver_challenge_auth_failure._FakeConnection +recv_bytes_into Lib/multiprocessing/connection.py /^ def recv_bytes_into(self, buf, offset=0):$/;" m class:_ConnectionBase +recv_data Lib/test/test_socket.py /^ def recv_data(self, conn):$/;" m class:SendfileUsingSendTest +recv_fds Lib/socket.py /^ def recv_fds(sock, bufsize, maxfds, flags=0):$/;" f +recv_handle Lib/multiprocessing/reduction.py /^ def recv_handle(conn):$/;" f function:dump +recv_handle Lib/multiprocessing/reduction.py /^ recv_handle = recv_handle$/;" v class:AbstractReducer +recv_into Lib/asyncio/windows_events.py /^ def recv_into(self, conn, buf, flags=0):$/;" m class:IocpProactor +recv_into Lib/ssl.py /^ def recv_into(self, buffer, nbytes=None, flags=0):$/;" m class:SSLSocket +recv_into Lib/test/test_asyncio/test_proactor_events.py /^ def recv_into(sock, data):$/;" f function:ProactorSocketTransportTests.test_pause_resume_reading +recv_nowait Lib/test/support/interpreters.py /^ def recv_nowait(self, default=_NOT_SET):$/;" m class:RecvChannel +recvar Lib/idlelib/idle_test/test_grep.py /^ recvar = Var(False)$/;" v class:Dummy_grep +recvfds Lib/multiprocessing/reduction.py /^ recvfds = recvfds$/;" v class:AbstractReducer +recvfds Lib/multiprocessing/reduction.py /^ def recvfds(sock, size):$/;" f function:dump +recvfrom Lib/asyncio/windows_events.py /^ def recvfrom(self, conn, nbytes, flags=0):$/;" m class:IocpProactor +recvfrom Lib/ssl.py /^ def recvfrom(self, buflen=1024, flags=0):$/;" m class:SSLSocket +recvfrom_into Lib/asyncio/windows_events.py /^ def recvfrom_into(self, conn, buf, flags=0):$/;" m class:IocpProactor +recvfrom_into Lib/ssl.py /^ def recvfrom_into(self, buffer, nbytes=None, flags=0):$/;" m class:SSLSocket +recvmsg Lib/ssl.py /^ def recvmsg(self, *args, **kwargs):$/;" m class:SSLSocket +recvmsg_into Lib/ssl.py /^ def recvmsg_into(self, *args, **kwargs):$/;" m class:SSLSocket +red Lib/test/test_enum.py /^ def red(self):$/;" m class:TestSpecial.test_duplicate_name_error.Color +red Lib/test/test_enum.py /^ red = 'not an int'$/;" v class:OldTestFlag.test_auto_number_garbage.Color +red Lib/test/test_enum.py /^ red = 'red'$/;" v class:TestInternals.test_auto_garbage_corrected_fail.Color +red Lib/test/test_enum.py /^ red = 'red'$/;" v class:TestInternals.test_auto_garbage_corrected_ok.Color +red Lib/test/test_enum.py /^ red = 'red'$/;" v class:TestInternals.test_auto_garbage_fail.Color +red Lib/test/test_enum.py /^ red = 'red'$/;" v class:TestInternals.test_auto_garbage_ok.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestOrder.test_enum_has_extra_members.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestOrder.test_enum_has_extra_members_with_aliases.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestOrder.test_order_has_extra_members.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestOrder.test_order_has_extra_members_with_aliases.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestOrder.test_same_members_wrong_order.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestSpecial.test_duplicate_name_error.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestSpecial.test_no_duplicates.Color.Color +red Lib/test/test_enum.py /^ red = 4$/;" v class:TestSpecial.test_duplicate_name_error.Color +red Lib/test/test_enum.py /^ red = auto()$/;" v class:TestInternals.test_auto_order.Color +red Lib/test/test_enum.py /^ red = ()$/;" v class:TestSpecial.test_inherited_new_from_enhanced_enum.Color +red Lib/test/test_enum.py /^ red = ()$/;" v class:TestSpecial.test_inherited_new_from_mixed_enum.Color +red Lib/test/test_enum.py /^ red = ()$/;" v class:TestSpecial.test_nonhash_value.ColorInAList +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestOrder.test_same_members.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestOrder.test_same_members_with_aliases.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestSpecial.test_extending.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestSpecial.test_extending2.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestSpecial.test_missing_override.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestSpecial.test_no_duplicates.Color +red Lib/test/test_enum.py /^ red = 1$/;" v class:TestSpecial.test_no_such_enum_member.Color +red Lib/test/test_enum.py /^ red = auto()$/;" v class:OldTestFlag.test_auto_number.Color +red Lib/test/test_enum.py /^ red = auto()$/;" v class:TestInternals.test_auto_name.Color +red Lib/test/test_enum.py /^ red = auto()$/;" v class:TestInternals.test_auto_name_inherit.Color +red Lib/test/test_enum.py /^ red = auto()$/;" v class:TestInternals.test_auto_number.Color +red Lib/test/test_enum.py /^ red = auto()$/;" v class:TestInternals.test_auto_with_aliases.Color +red Lib/test/test_enum.py /^ red = weird_auto$/;" v class:TestInternals.test_auto_order_wierd.Color +redent Lib/importlib/metadata/_adapters.py /^ def redent(value):$/;" f function:Message._repair_headers +redirect Lib/test/test_urllib2.py /^ def redirect(h, req, url=to_url):$/;" f function:HandlerTests.test_redirect +redirect_focusin_event Lib/idlelib/sidebar.py /^ def redirect_focusin_event(self, event):$/;" m class:BaseSideBar +redirect_internal Lib/urllib/request.py /^ def redirect_internal(self, url, fp, errcode, errmsg, headers, data):$/;" m class:FancyURLopener +redirect_mousebutton_event Lib/idlelib/sidebar.py /^ def redirect_mousebutton_event(self, event, event_name):$/;" m class:BaseSideBar +redirect_mousewheel_event Lib/idlelib/sidebar.py /^ def redirect_mousewheel_event(self, event):$/;" m class:BaseSideBar +redirect_request Lib/urllib/request.py /^ def redirect_request(self, req, fp, code, msg, headers, newurl):$/;" m class:HTTPRedirectHandler +redirect_stderr Lib/contextlib.py /^class redirect_stderr(_RedirectStream):$/;" c +redirect_stdout Lib/contextlib.py /^class redirect_stdout(_RedirectStream):$/;" c +redirect_stdout Lib/webbrowser.py /^ redirect_stdout = False$/;" v class:Elinks +redirect_stdout Lib/webbrowser.py /^ redirect_stdout = True$/;" v class:UnixBrowser +redirect_stream Lib/test/test_contextlib.py /^ redirect_stream = None$/;" v class:TestRedirectStream +redirect_stream Lib/test/test_contextlib.py /^ redirect_stream = redirect_stderr$/;" v class:TestRedirectStderr +redirect_stream Lib/test/test_contextlib.py /^ redirect_stream = redirect_stdout$/;" v class:TestRedirectStdout +redirect_yscroll_event Lib/idlelib/sidebar.py /^ def redirect_yscroll_event(self, *args, **kwargs):$/;" m class:BaseSideBar +redo Lib/idlelib/undo.py /^ def redo(self, text):$/;" m class:Command +redo Lib/idlelib/undo.py /^ def redo(self, text):$/;" m class:CommandSequence +redo Lib/idlelib/undo.py /^ def redo(self, text):$/;" m class:DeleteCommand +redo Lib/idlelib/undo.py /^ def redo(self, text):$/;" m class:InsertCommand +redo_event Lib/idlelib/undo.py /^ def redo_event(self, event):$/;" m class:UndoDelegator +reduce Lib/functools.py /^def reduce(function, sequence, initial=_initial_missing):$/;" f +reduce Lib/test/test_functools.py /^ reduce = c_functools.reduce$/;" v class:TestReduceC +reduce Lib/test/test_functools.py /^ reduce = staticmethod(py_functools.reduce)$/;" v class:TestReducePy +reduce_1 Lib/test/pickletester.py /^ def reduce_1(obj):$/;" f function:AbstractDispatchTableTests._test_dispatch_table +reduce_2 Lib/test/pickletester.py /^ def reduce_2(obj):$/;" f function:AbstractDispatchTableTests._test_dispatch_table +reduce_arena Lib/multiprocessing/heap.py /^ def reduce_arena(a):$/;" f +reduce_array Lib/multiprocessing/managers.py /^def reduce_array(a):$/;" f +reduce_bbb Lib/test/pickletester.py /^ def reduce_bbb(obj):$/;" f function:AbstractDispatchTableTests._test_dispatch_table +reduce_connection Lib/multiprocessing/connection.py /^ def reduce_connection(conn):$/;" f function:XmlClient +reduce_ctype Lib/multiprocessing/sharedctypes.py /^def reduce_ctype(obj):$/;" f +reduce_newobj Objects/typeobject.c /^reduce_newobj(PyObject *obj)$/;" f file: +reduce_pipe_connection Lib/multiprocessing/connection.py /^ def reduce_pipe_connection(conn):$/;" f function:XmlClient +reduce_receive_buffer_size Lib/test/test_asyncio/test_sendfile.py /^ def reduce_receive_buffer_size(self, sock):$/;" m class:SockSendfileMixin +reduce_send_buffer_size Lib/test/test_asyncio/test_sendfile.py /^ def reduce_send_buffer_size(self, sock, transport=None):$/;" m class:SockSendfileMixin +reduce_tree Lib/lib2to3/btm_utils.py /^def reduce_tree(node, parent=None):$/;" f +reduce_uri Lib/urllib/request.py /^ def reduce_uri(self, uri, default_port=True):$/;" m class:HTTPPasswordMgr +reduced_factorial_odd_part Modules/mathmodule.c /^static const uint64_t reduced_factorial_odd_part[] = {$/;" v file: +reducer Lib/multiprocessing/context.py /^ def reducer(self):$/;" m class:BaseContext +reducer Lib/multiprocessing/context.py /^ def reducer(self, reduction):$/;" m class:BaseContext +reducer_override Lib/test/pickletester.py /^ def reducer_override(self, obj):$/;" m class:AbstractCustomPicklerClass +reducer_override Modules/_pickle.c /^ PyObject *reducer_override; \/* hook for invoking user-defined callbacks$/;" m struct:PicklerObject file: +reentrant_key Include/internal/pycore_tracemalloc.h /^ Py_tss_t reentrant_key;$/;" m struct:_tracemalloc_runtime_state +ref Include/internal/pycore_obmalloc.h /^ uint count; } ref; \/* number of allocated blocks *\/$/;" m struct:pool_header typeref:union:pool_header::__anon141 +ref Include/weakrefobject.h /^PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref);$/;" v +ref Lib/test/test_capi/test_misc.py /^ ref = weakref.ref(cls())$/;" v class:CAPITest.test_sublclassing_managed_both.C2 +ref Lib/test/test_capi/test_misc.py /^ ref = weakref.ref(inst)$/;" v class:CAPITest.test_sublclassing_managed_both.C2 +ref Lib/test/test_deque.py /^ ref = weakref.ref(obj)$/;" v class:TestBasic.test_container_iterator.C +ref Lib/test/test_dict.py /^ ref = weakref.ref(obj)$/;" v class:DictTest.test_container_iterator.C +ref Modules/_xxinterpchannelsmodule.c /^ struct _channelref *ref;$/;" m struct:_channel_closing typeref:struct:_channel_closing::_channelref file: +ref_from_del Lib/test/test_weakref.py /^ref_from_del = None$/;" v +refactor Lib/lib2to3/refactor.py /^ def refactor(self, items, write=False, doctests_only=False):$/;" m class:RefactoringTool +refactor Lib/lib2to3/refactor.py /^ def refactor(self, items, write=False, doctests_only=False,$/;" m class:MultiprocessRefactoringTool +refactor_dir Lib/lib2to3/refactor.py /^ def refactor_dir(self, dir_name, write=False, doctests_only=False):$/;" m class:RefactoringTool +refactor_docstring Lib/lib2to3/refactor.py /^ def refactor_docstring(self, input, filename):$/;" m class:RefactoringTool +refactor_doctest Lib/lib2to3/refactor.py /^ def refactor_doctest(self, block, lineno, indent, filename):$/;" m class:RefactoringTool +refactor_file Lib/lib2to3/refactor.py /^ def refactor_file(self, *args, **kwargs):$/;" m class:MultiprocessRefactoringTool +refactor_file Lib/lib2to3/refactor.py /^ def refactor_file(self, filename, write=False, doctests_only=False):$/;" m class:RefactoringTool +refactor_file Lib/test/test_lib2to3/test_all_fixers.py /^ def refactor_file(self, filepath):$/;" m class:Test_all +refactor_file Lib/test/test_lib2to3/test_refactor.py /^ def refactor_file(self, test_file, fixers=_2TO3_FIXERS):$/;" m class:TestRefactoringTool +refactor_stdin Lib/lib2to3/refactor.py /^ def refactor_stdin(self, doctests_only=False):$/;" m class:RefactoringTool +refactor_string Lib/lib2to3/refactor.py /^ def refactor_string(self, data, name):$/;" m class:RefactoringTool +refactor_tree Lib/lib2to3/refactor.py /^ def refactor_tree(self, tree, name):$/;" m class:RefactoringTool +refchain Include/internal/pycore_object_state.h /^ PyObject refchain;$/;" m struct:_py_object_state +refcnt Modules/_hashopenssl.c /^ int refcnt;$/;" m struct:__anon560 file: +refcount_file Doc/conf.py /^refcount_file = 'data\/refcounts.dat'$/;" v +refcount_test Lib/test/support/__init__.py /^def refcount_test(test):$/;" f +reference_find Lib/test/string_tests.py /^ def reference_find(p, s):$/;" f function:BaseTest.test_find_periodic_pattern +references Modules/_testcapi/buffer.c /^ Py_ssize_t references;$/;" m struct:__anon554 file: +references_for_item Tools/peg_generator/scripts/grammar_grapher.py /^def references_for_item(item: Any) -> List[Any]:$/;" f +referentsvisit Modules/gcmodule.c /^referentsvisit(PyObject *obj, PyObject *list)$/;" f file: +referrersvisit Modules/gcmodule.c /^referrersvisit(PyObject* obj, PyObject *objs)$/;" f file: +reflow_c_string Parser/asdl_c.py /^def reflow_c_string(s, depth):$/;" f +reflow_lines Parser/asdl_c.py /^def reflow_lines(s, depth):$/;" f +refold_all_expected Lib/test/test_email/test_generator.py /^ refold_all_expected = refold_long_expected.copy()$/;" v class:TestGeneratorBase +refold_long_expected Lib/test/test_email/test_generator.py /^ refold_long_expected = {$/;" v class:TestGeneratorBase +refold_source Lib/email/policy.py /^ refold_source = 'long'$/;" v class:EmailPolicy +reformat Lib/test/test_lib2to3/support.py /^def reformat(string):$/;" f +reformat_comment Lib/idlelib/format.py /^def reformat_comment(data, limit, comment_header):$/;" f +reformat_paragraph Lib/idlelib/format.py /^def reformat_paragraph(data, limit):$/;" f +refreshCanvas Lib/turtledemo/__main__.py /^ def refreshCanvas(self):$/;" m class:DemoWindow +refresh_calltip_event Lib/idlelib/calltip.py /^ def refresh_calltip_event(self, event):$/;" m class:Calltip +refreshed Lib/test/test_mailbox.py /^ def refreshed():$/;" f function:TestMaildir.test_reread +refs Python/marshal.c /^ PyObject *refs; \/* a list *\/$/;" m struct:__anon700 file: +reftotal Include/internal/pycore_object_state.h /^ Py_ssize_t reftotal;$/;" m struct:_py_object_state +reftotal_add Objects/object.c /^reftotal_add(PyInterpreterState *interp, Py_ssize_t n)$/;" f file: +reftotal_decrement Objects/object.c /^reftotal_decrement(PyInterpreterState *interp)$/;" f file: +reftotal_increment Objects/object.c /^reftotal_increment(PyInterpreterState *interp)$/;" f file: +regName Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp /^static struct { LPCWSTR regName; LPCWSTR variableName; } OPTIONAL_FEATURES[] = {$/;" m struct:__anon277 file: +regen_frozen Tools/build/freeze_modules.py /^def regen_frozen(modules, frozen_modules: bool):$/;" f +regen_makefile Tools/build/freeze_modules.py /^def regen_makefile(modules):$/;" f +regen_pcbuild Tools/build/freeze_modules.py /^def regen_pcbuild(modules):$/;" f +regenerate_expected_output Lib/test/test_profile.py /^def regenerate_expected_output(filename, cls):$/;" f +regenerated_configure Tools/patchcheck/patchcheck.py /^def regenerated_configure(file_paths):$/;" f +regenerated_pyconfig_h_in Tools/patchcheck/patchcheck.py /^def regenerated_pyconfig_h_in(file_paths):$/;" f +regex_patterns Modules/_xxtestfuzz/fuzzer.c /^static const char* regex_patterns[] = {$/;" v file: +regex_search Lib/test/test_regrtest.py /^ def regex_search(self, regex, output):$/;" m class:BaseTestCase +regexp Lib/idlelib/idle_test/test_pyshell.py /^ regexp = pyshell.PyShell._last_newline_re$/;" v class:PyShellRemoveLastNewlineAndSurroundingWhitespaceTest +register Lib/_py_abc.py /^ def register(cls, subclass):$/;" m class:ABCMeta +register Lib/abc.py /^ def register(cls, subclass):$/;" m class:.ABCMeta +register Lib/argparse.py /^ def register(self, registry_name, value, object):$/;" m class:_ActionsContainer +register Lib/functools.py /^ def register(cls, func=None):$/;" f function:singledispatch +register Lib/functools.py /^ def register(self, cls, method=None):$/;" m class:singledispatchmethod +register Lib/idlelib/redirector.py /^ def register(self, operation, function):$/;" m class:WidgetRedirector +register Lib/idlelib/rpc.py /^ def register(self, oid, object):$/;" m class:SocketIO +register Lib/multiprocessing/managers.py /^ def register(cls, typeid, callable=None, proxytype=None, exposed=None,$/;" m class:BaseManager +register Lib/multiprocessing/reduction.py /^ def register(cls, type, reduce):$/;" m class:ForkingPickler +register Lib/multiprocessing/reduction.py /^ register = register$/;" v class:AbstractReducer +register Lib/multiprocessing/reduction.py /^register = ForkingPickler.register$/;" v +register Lib/multiprocessing/resource_sharer.py /^ def register(self, send, close):$/;" m class:_ResourceSharer +register Lib/multiprocessing/resource_tracker.py /^ def register(self, name, rtype):$/;" m class:ResourceTracker +register Lib/multiprocessing/resource_tracker.py /^register = _resource_tracker.register$/;" v +register Lib/selectors.py /^ def register(self, fileobj, events, data=None):$/;" m class:_PollLikeSelector.KqueueSelector +register Lib/selectors.py /^ def register(self, fileobj, events, data=None):$/;" m class:BaseSelector +register Lib/selectors.py /^ def register(self, fileobj, events, data=None):$/;" m class:SelectSelector +register Lib/selectors.py /^ def register(self, fileobj, events, data=None):$/;" m class:_BaseSelectorImpl +register Lib/selectors.py /^ def register(self, fileobj, events, data=None):$/;" m class:_PollLikeSelector +register Lib/test/test_asyncio/utils.py /^ def register(self, fileobj, events, data=None):$/;" m class:TestSelector +register Lib/test/test_telnetlib.py /^ def register(self, fileobj, events, data=None):$/;" m class:MockSelector +register Lib/tkinter/__init__.py /^ register = _register$/;" v class:Misc +register Lib/webbrowser.py /^def register(name, klass, instance=None, *, preferred=False):$/;" f +register Tools/gdb/libpython.py /^def register (obj):$/;" f +registerDOMImplementation Lib/xml/dom/domreg.py /^def registerDOMImplementation(name, factory):$/;" f +registerFileForCleanUp Lib/test/test_urllib.py /^ def registerFileForCleanUp(self, fileName):$/;" m class:urlretrieve_FileTests +registerRecvmsgResult Lib/test/test_socket.py /^ def registerRecvmsgResult(self, result):$/;" m class:SCMRightsTest +registerRecvmsgResult Lib/test/test_socket.py /^ def registerRecvmsgResult(self, result):$/;" m class:SendrecvmsgBase +registerResult Lib/unittest/signals.py /^def registerResult(result):$/;" f +registerSignals Lib/test/test_threadsignals.py /^def registerSignals(for_usr1, for_usr2, for_alrm):$/;" f +register_X_browsers Lib/webbrowser.py /^def register_X_browsers():$/;" f +register_adapters_and_converters Lib/sqlite3/dbapi2.py /^def register_adapters_and_converters():$/;" f +register_after_fork Lib/multiprocessing/util.py /^def register_after_fork(obj, func):$/;" f +register_archive_format Lib/shutil.py /^def register_archive_format(name, function, extra_args=None, description=''):$/;" f +register_at_forker Modules/posixmodule.c /^register_at_forker(PyObject **lst, PyObject *func)$/;" f file: +register_callback Lib/idlelib/window.py /^ def register_callback(self, callback):$/;" m class:WindowList +register_callback Lib/idlelib/window.py /^register_callback = registry.register_callback$/;" v +register_cursor Modules/_sqlite/cursor.c /^register_cursor(pysqlite_Connection *connection, PyObject *cursor)$/;" f file: +register_defect Lib/email/_policybase.py /^ def register_defect(self, obj, defect):$/;" m class:Policy +register_defect Lib/test/test_email/test_defect_handling.py /^ def register_defect(self, obj, defect):$/;" m class:TestDefectCapture.CapturePolicy +register_defect Lib/test/test_email/test_policy.py /^ def register_defect(self, obj, defect):$/;" m class:PolicyAPITests.MyPolicy +register_eager_task Modules/_asynciomodule.c /^register_eager_task(asyncio_state *state, PyObject *task)$/;" f file: +register_function Lib/xmlrpc/server.py /^ def register_function(self, function=None, name=None):$/;" m class:SimpleXMLRPCDispatcher +register_instance Lib/xmlrpc/server.py /^ def register_instance(self, instance, allow_dotted_names=False):$/;" m class:SimpleXMLRPCDispatcher +register_introspection_functions Lib/xmlrpc/server.py /^ def register_introspection_functions(self):$/;" m class:SimpleXMLRPCDispatcher +register_maps Modules/cjkcodecs/cjkcodecs.h /^register_maps(PyObject *module)$/;" f +register_multicall_functions Lib/xmlrpc/server.py /^ def register_multicall_functions(self):$/;" m class:SimpleXMLRPCDispatcher +register_namespace Lib/xml/etree/ElementTree.py /^def register_namespace(prefix, uri):$/;" f +register_optionflag Lib/doctest.py /^def register_optionflag(name):$/;" f +register_random Lib/test/support/_hypothesis_stubs/__init__.py /^def register_random(*args, **kwargs):$/;" f +register_readline Lib/site.py /^ def register_readline():$/;" f function:enablerlcompleter +register_segment Lib/multiprocessing/managers.py /^ def register_segment(self, segment_name):$/;" m class:SyncManager._SharedMemoryTracker +register_shape Lib/turtle.py /^ def register_shape(self, name, shape=None):$/;" m class:TurtleScreen +register_standard_browsers Lib/webbrowser.py /^def register_standard_browsers():$/;" f +register_t Lib/test/test_lib2to3/data/infinite_recursion.py /^register_t = int32_t$/;" v +register_task Modules/_asynciomodule.c /^register_task(asyncio_state *state, PyObject *task)$/;" f file: +register_unpack_format Lib/shutil.py /^def register_unpack_format(name, extensions, function, extra_args=None,$/;" f +registered Lib/xml/dom/domreg.py /^registered = {}$/;" v +registry Lib/idlelib/window.py /^registry = WindowList()$/;" v +registrySearch PC/launcher2.c /^registrySearch(const SearchInfo *search, EnvironmentInfo **result, HKEY root, int sortKey, const wchar_t *fallbackArch)$/;" f +regrtest_args Tools/buildbot/test.bat /^if NOT "%1"=="" (set regrtest_args=%regrtest_args% %1) & shift & goto CheckOpts$/;" v +regrtest_args Tools/buildbot/test.bat /^set regrtest_args=-j1$/;" v +regrtest_runner Lib/test/libregrtest/runtest.py /^def regrtest_runner(result, test_func, ns) -> None:$/;" f +regrtest_threading_excepthook Lib/test/libregrtest/utils.py /^def regrtest_threading_excepthook(args):$/;" f +regrtest_unraisable_hook Lib/test/libregrtest/utils.py /^def regrtest_unraisable_hook(unraisable):$/;" f +regrtestargs PCbuild/rt.bat /^if NOT "%1"=="" (set regrtestargs=%regrtestargs% %1) & shift & goto CheckOpts$/;" v +regrtestargs PCbuild/rt.bat /^set regrtestargs=$/;" v +regs Modules/_sre/sre.h /^ PyObject* regs; \/* cached list of matching spans *\/$/;" m struct:__anon455 +reindent Lib/timeit.py /^def reindent(src, indent):$/;" f +reindent_to Lib/idlelib/editor.py /^ def reindent_to(self, column):$/;" m class:EditorWindow +reindex Modules/unicodedata_db.h /^struct reindex{int start;short count,index;};$/;" s +reject Lib/test/support/_hypothesis_stubs/__init__.py /^def reject():$/;" f +rel Lib/test/test_statistics.py /^ rel = 1e-12$/;" v class:VarianceStdevMixin +rel_join Lib/test/test_pathlib.py /^rel_join = lambda *x: os.path.join(TESTFN, *x)$/;" v +relative_filename Lib/test/libregrtest/cmdline.py /^def relative_filename(string):$/;" f +relative_import_test Lib/test/test_importlib/import_/test_relative_imports.py /^ def relative_import_test(self, create, globals_, callback):$/;" m class:RelativeImports +relative_import_test Lib/test/test_modulefinder.py /^relative_import_test = [$/;" v +relative_import_test_2 Lib/test/test_modulefinder.py /^relative_import_test_2 = [$/;" v +relative_import_test_3 Lib/test/test_modulefinder.py /^relative_import_test_3 = [$/;" v +relative_import_test_4 Lib/test/test_modulefinder.py /^relative_import_test_4 = [$/;" v +relative_to Lib/pathlib.py /^ def relative_to(self, other, \/, *_deprecated, walk_up=False):$/;" m class:PurePath +relative_to Lib/zipfile/_path/__init__.py /^ def relative_to(self, other, *extra):$/;" m class:Path +relaxedutf8 Lib/test/test_codeccallbacks.py /^ def relaxedutf8(exc):$/;" f function:CodecCallbackTest.test_decoding_callbacks +release Lib/asyncio/locks.py /^ def release(self):$/;" m class:BoundedSemaphore +release Lib/asyncio/locks.py /^ def release(self):$/;" m class:Lock +release Lib/asyncio/locks.py /^ def release(self):$/;" m class:Semaphore +release Lib/importlib/_bootstrap.py /^ def release(self):$/;" m class:_DummyModuleLock +release Lib/importlib/_bootstrap.py /^ def release(self):$/;" m class:_ModuleLock +release Lib/logging/__init__.py /^ def release(self):$/;" m class:Handler +release Lib/multiprocessing/managers.py /^ def release(self):$/;" m class:AcquirerProxy +release Lib/platform.py /^def release():$/;" f +release Lib/test/test_memoryview.py /^ def release():$/;" f function:OtherTest.test_use_released_memory +release Lib/threading.py /^ def release(self):$/;" m class:_RLock +release Lib/threading.py /^ def release(self, n=1):$/;" m class:BoundedSemaphore +release Lib/threading.py /^ def release(self, n=1):$/;" m class:Semaphore +release Modules/expat/expat.h /^ void(XMLCALL *release)(void *data);$/;" m struct:__anon598 +release_segment Lib/multiprocessing/managers.py /^ def release_segment(self, c, segment_name):$/;" m class:SyncManager.SharedMemoryServer +release_sentinel Modules/_threadmodule.c /^release_sentinel(void *wr_raw)$/;" f file: +releasebuffer_call_python Objects/typeobject.c /^releasebuffer_call_python(PyObject *self, Py_buffer *buffer)$/;" f file: +releasebuffer_maybe_call_super Objects/typeobject.c /^releasebuffer_maybe_call_super(PyObject *self, Py_buffer *buffer)$/;" f file: +releasebufferproc Include/pybuffer.h /^typedef void (*releasebufferproc)(PyObject *, Py_buffer *);$/;" t +releasefunc Python/pystate.c /^typedef void (*releasefunc)(PyInterpreterState *, void *);$/;" t file: +relfile Tools/c-analyzer/cpython/_builtin_types.py /^ def relfile(self):$/;" m class:BuiltinTypeDecl +relfile Tools/c-analyzer/cpython/_builtin_types.py /^ def relfile(self):$/;" m class:BuiltinTypeInfo +relfile Tools/c-analyzer/cpython/_capi.py /^ def relfile(self):$/;" m class:CAPIItem +reload Lib/idlelib/autocomplete.py /^ def reload(cls):$/;" m class:AutoComplete +reload Lib/idlelib/codecontext.py /^ def reload(cls):$/;" m class:CodeContext +reload Lib/idlelib/format.py /^ def reload(cls):$/;" m class:FormatParagraph +reload Lib/idlelib/parenmatch.py /^ def reload(cls):$/;" m class:ParenMatch +reload Lib/idlelib/squeezer.py /^ def reload(cls):$/;" m class:Squeezer +reload Lib/idlelib/zzdummy.py /^ def reload(cls):$/;" m class:ZzDummy +reload Lib/importlib/__init__.py /^def reload(module):$/;" f +reloadables Lib/idlelib/configdialog.py /^reloadables = (AutoComplete, CodeContext, ParenMatch, FormatParagraph,$/;" v +relpath Lib/ntpath.py /^def relpath(path, start=None):$/;" f +relpath Lib/posixpath.py /^def relpath(path, start=None):$/;" f +relpath_for_posix_display Tools/build/freeze_modules.py /^ def relpath_for_posix_display(path, base):$/;" f +relpath_for_posix_display Tools/build/freeze_modules.py /^ relpath_for_posix_display = os.path.relpath$/;" v +relpath_for_windows_display Tools/build/freeze_modules.py /^ def relpath_for_windows_display(path, base):$/;" f +relpath_for_windows_display Tools/build/freeze_modules.py /^ relpath_for_windows_display = ntpath.relpath$/;" v +rem1 Objects/longobject.c /^rem1(PyLongObject *a, digit n)$/;" f file: +remainder Lib/_pydecimal.py /^ def remainder(self, a, b):$/;" m class:Context +remainder_near Lib/_pydecimal.py /^ def remainder_near(self, a, b):$/;" m class:Context +remainder_near Lib/_pydecimal.py /^ def remainder_near(self, other, context=None):$/;" m class:Decimal +remember_fstring_buffers Parser/tokenizer.c /^remember_fstring_buffers(struct tok_state *tok)$/;" f file: +remotePort Lib/test/test_smtpnet.py /^ remotePort = 465$/;" v class:SmtpSSLTest +remotePort Lib/test/test_smtpnet.py /^ remotePort = 587$/;" v class:SmtpTest +remoteProcessServer Lib/test/test_socket.py /^ def remoteProcessServer(cls, q):$/;" m class:TestSocketSharing +remote_action Lib/webbrowser.py /^ remote_action = ""$/;" v class:Chrome +remote_action Lib/webbrowser.py /^ remote_action = ""$/;" v class:Edge +remote_action Lib/webbrowser.py /^ remote_action = ""$/;" v class:Elinks +remote_action Lib/webbrowser.py /^ remote_action = ""$/;" v class:Mozilla +remote_action Lib/webbrowser.py /^ remote_action = ""$/;" v class:Opera +remote_action Lib/webbrowser.py /^ remote_action = "-n"$/;" v class:Epiphany +remote_action Lib/webbrowser.py /^ remote_action = None$/;" v class:UnixBrowser +remote_action_newtab Lib/webbrowser.py /^ remote_action_newtab = ""$/;" v class:Chrome +remote_action_newtab Lib/webbrowser.py /^ remote_action_newtab = ""$/;" v class:Edge +remote_action_newtab Lib/webbrowser.py /^ remote_action_newtab = ""$/;" v class:Opera +remote_action_newtab Lib/webbrowser.py /^ remote_action_newtab = ",new-tab"$/;" v class:Elinks +remote_action_newtab Lib/webbrowser.py /^ remote_action_newtab = "-new-tab"$/;" v class:Mozilla +remote_action_newtab Lib/webbrowser.py /^ remote_action_newtab = None$/;" v class:UnixBrowser +remote_action_newwin Lib/webbrowser.py /^ remote_action_newwin = ",new-window"$/;" v class:Elinks +remote_action_newwin Lib/webbrowser.py /^ remote_action_newwin = "--new-window"$/;" v class:Chrome +remote_action_newwin Lib/webbrowser.py /^ remote_action_newwin = "--new-window"$/;" v class:Edge +remote_action_newwin Lib/webbrowser.py /^ remote_action_newwin = "--new-window"$/;" v class:Opera +remote_action_newwin Lib/webbrowser.py /^ remote_action_newwin = "-new-window"$/;" v class:Mozilla +remote_action_newwin Lib/webbrowser.py /^ remote_action_newwin = "-w"$/;" v class:Epiphany +remote_action_newwin Lib/webbrowser.py /^ remote_action_newwin = None$/;" v class:UnixBrowser +remote_addr Lib/test/test_asyncio/test_events.py /^ remote_addr=(host, port))$/;" v class:EventLoopTestsMixin._test_create_datagram_endpoint.TestMyDatagramProto +remote_args Lib/webbrowser.py /^ remote_args = ['%action', '%s']$/;" v class:Chrome +remote_args Lib/webbrowser.py /^ remote_args = ['%action', '%s']$/;" v class:Edge +remote_args Lib/webbrowser.py /^ remote_args = ['%action', '%s']$/;" v class:Epiphany +remote_args Lib/webbrowser.py /^ remote_args = ['%action', '%s']$/;" v class:Mozilla +remote_args Lib/webbrowser.py /^ remote_args = ['%action', '%s']$/;" v class:Opera +remote_args Lib/webbrowser.py /^ remote_args = ['%action', '%s']$/;" v class:UnixBrowser +remote_args Lib/webbrowser.py /^ remote_args = ['-remote', 'openURL(%s%action)']$/;" v class:Elinks +remote_object_tree_item Lib/idlelib/debugobj_r.py /^def remote_object_tree_item(item):$/;" f +remote_stack_viewer Lib/idlelib/pyshell.py /^ def remote_stack_viewer(self):$/;" m class:ModifiedInterpreter +remotecall Lib/idlelib/rpc.py /^ def remotecall(self, oid, methodname, args, kwargs):$/;" m class:SocketIO +remotequeue Lib/idlelib/rpc.py /^ def remotequeue(self, oid, methodname, args, kwargs):$/;" m class:SocketIO +remoteref Lib/idlelib/rpc.py /^def remoteref(obj):$/;" f +remove Lib/_collections_abc.py /^ def remove(self, value):$/;" m class:MutableSequence +remove Lib/_collections_abc.py /^ def remove(self, value):$/;" m class:MutableSet +remove Lib/_weakrefset.py /^ def remove(self, item):$/;" m class:WeakSet +remove Lib/collections/__init__.py /^ def remove(self, item):$/;" m class:UserList +remove Lib/importlib/_bootstrap.py /^ def remove(wr):$/;" m class:_WeakValueDictionary.__init__.KeyedRef +remove Lib/lib2to3/pytree.py /^ def remove(self):$/;" m class:Base +remove Lib/mailbox.py /^ def remove(self, key):$/;" m class:Babyl +remove Lib/mailbox.py /^ def remove(self, key):$/;" m class:MH +remove Lib/mailbox.py /^ def remove(self, key):$/;" m class:Mailbox +remove Lib/mailbox.py /^ def remove(self, key):$/;" m class:Maildir +remove Lib/mailbox.py /^ def remove(self, key):$/;" m class:_singlefileMailbox +remove Lib/test/test_doctest.py /^ def remove(self):$/;" m class:TestHook +remove Lib/test/test_weakref.py /^ def remove(k):$/;" f function:ReferencesTestCase.test_callbacks_protected +remove Lib/tkinter/__init__.py /^ def remove(self, child):$/;" m class:PanedWindow +remove Lib/weakref.py /^ def remove(k, selfref=ref(self)):$/;" f function:WeakKeyDictionary.__init__ +remove Lib/weakref.py /^ def remove(wr, selfref=ref(self), _atomic_removal=_remove_dead_weakref):$/;" f function:WeakValueDictionary.__init__ +remove Lib/xml/etree/ElementTree.py /^ def remove(self, subelement):$/;" m class:Element +removeAttribute Lib/xml/dom/minidom.py /^ def removeAttribute(self, name):$/;" m class:Element +removeAttributeNS Lib/xml/dom/minidom.py /^ def removeAttributeNS(self, namespaceURI, localName):$/;" m class:Element +removeAttributeNode Lib/xml/dom/minidom.py /^ def removeAttributeNode(self, node):$/;" m class:Element +removeAttributeNodeNS Lib/xml/dom/minidom.py /^ removeAttributeNodeNS = removeAttributeNode$/;" v class:Element +removeChild Lib/xml/dom/minidom.py /^ def removeChild(self, oldChild):$/;" m class:Childless +removeChild Lib/xml/dom/minidom.py /^ def removeChild(self, oldChild):$/;" m class:Document +removeChild Lib/xml/dom/minidom.py /^ def removeChild(self, oldChild):$/;" m class:Entity +removeChild Lib/xml/dom/minidom.py /^ def removeChild(self, oldChild):$/;" m class:Node +removeDuplicates Tools/c-analyzer/distutils/msvc9compiler.py /^def removeDuplicates(variable):$/;" f +removeFilter Lib/logging/__init__.py /^ def removeFilter(self, filter):$/;" m class:Filterer +removeHandler Lib/logging/__init__.py /^ def removeHandler(self, hdlr):$/;" m class:Logger +removeHandler Lib/unittest/signals.py /^def removeHandler(method=None):$/;" f +removeNamedItem Lib/xml/dom/minidom.py /^ def removeNamedItem(self, name):$/;" m class:NamedNodeMap +removeNamedItem Lib/xml/dom/minidom.py /^ def removeNamedItem(self, name):$/;" m class:ReadOnlySequentialNamedNodeMap +removeNamedItemNS Lib/xml/dom/minidom.py /^ def removeNamedItemNS(self, namespaceURI, localName):$/;" m class:NamedNodeMap +removeNamedItemNS Lib/xml/dom/minidom.py /^ def removeNamedItemNS(self, namespaceURI, localName):$/;" m class:ReadOnlySequentialNamedNodeMap +removeResult Lib/unittest/signals.py /^def removeResult(result):$/;" f +removeTarget Lib/test/test_logging.py /^ def removeTarget(self):$/;" m class:MemoryHandlerTest.test_race_between_set_target_and_flush.MockRaceConditionHandler +removeTest Lib/test/test_unittest/test_program.py /^ def removeTest():$/;" f function:Test_TestProgram.testNoExit +remove_all_subclasses Objects/typeobject.c /^remove_all_subclasses(PyTypeObject *type, PyObject *bases)$/;" f file: +remove_callbacks Modules/_sqlite/connection.c /^remove_callbacks(sqlite3 *db)$/;" f file: +remove_calltip_window Lib/idlelib/calltip.py /^ def remove_calltip_window(self, event=None):$/;" m class:Calltip +remove_calltip_window Lib/idlelib/idle_test/test_calltip.py /^ def remove_calltip_window(self, event=None):$/;" m class:WrappedCalltip +remove_child_handler Lib/asyncio/unix_events.py /^ def remove_child_handler(self, pid):$/;" m class:AbstractChildWatcher +remove_child_handler Lib/asyncio/unix_events.py /^ def remove_child_handler(self, pid):$/;" m class:FastChildWatcher +remove_child_handler Lib/asyncio/unix_events.py /^ def remove_child_handler(self, pid):$/;" m class:MultiLoopChildWatcher +remove_child_handler Lib/asyncio/unix_events.py /^ def remove_child_handler(self, pid):$/;" m class:PidfdChildWatcher +remove_child_handler Lib/asyncio/unix_events.py /^ def remove_child_handler(self, pid):$/;" m class:SafeChildWatcher +remove_child_handler Lib/asyncio/unix_events.py /^ def remove_child_handler(self, pid):$/;" m class:ThreadedChildWatcher +remove_column_info Objects/codeobject.c /^remove_column_info(PyObject *locations)$/;" f file: +remove_done_callback Lib/asyncio/futures.py /^ def remove_done_callback(self, fn):$/;" m class:Future +remove_done_callback Lib/test/test_asyncio/test_runners.py /^ def remove_done_callback(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +remove_duplicates Lib/importlib/resources/readers.py /^def remove_duplicates(items):$/;" f +remove_extension Lib/copyreg.py /^def remove_extension(module, name, code):$/;" f +remove_files Lib/test/test_import/__init__.py /^def remove_files(name):$/;" f +remove_flag Lib/mailbox.py /^ def remove_flag(self, flag):$/;" m class:MaildirMessage +remove_flag Lib/mailbox.py /^ def remove_flag(self, flag):$/;" m class:_mboxMMDFMessage +remove_folder Lib/mailbox.py /^ def remove_folder(self, folder):$/;" m class:MH +remove_folder Lib/mailbox.py /^ def remove_folder(self, folder):$/;" m class:Maildir +remove_frames Lib/test/pickletester.py /^ def remove_frames(pickled, keep_frame=None):$/;" f function:AbstractPickleTests.test_optional_frames +remove_from_strong_cache Modules/_zoneinfo.c /^remove_from_strong_cache(zoneinfo_state *state, StrongCacheNode *node)$/;" f file: +remove_from_successors Lib/test/test_generators.py /^ def remove_from_successors(i0, len=len):$/;" f function:Knights.__init__ +remove_header Lib/urllib/request.py /^ def remove_header(self, header_name):$/;" m class:Request +remove_if_exists Lib/test/test_unicode_file.py /^def remove_if_exists(filename):$/;" f +remove_importlib_frames Python/import.c /^remove_importlib_frames(PyThreadState *tstate)$/;" f file: +remove_json Tools/peg_generator/scripts/download_pypi_packages.py /^def remove_json(filename: str) -> None:$/;" f +remove_label Lib/mailbox.py /^ def remove_label(self, label):$/;" m class:BabylMessage +remove_level Tools/peg_generator/pegen/c_generator.py /^ def remove_level(self) -> None:$/;" m class:CParserGenerator +remove_line_tools Python/instrumentation.c /^remove_line_tools(PyCodeObject * code, int offset, int tools)$/;" f file: +remove_loop Lib/test/test_logging.py /^ def remove_loop(fname, tries):$/;" f function:HandlerTest.test_race +remove_lop Modules/_curses_panel.c /^remove_lop(PyCursesPanelObject *po)$/;" f file: +remove_mem_hooks Modules/_testcapi/mem.c /^remove_mem_hooks(PyObject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +remove_module Python/import.c /^remove_module(PyThreadState *tstate, PyObject *name)$/;" f file: +remove_modules Lib/test/test_importlib/test_pkg_import.py /^ def remove_modules(self):$/;" m class:TestImport +remove_number Lib/nntplib.py /^ def remove_number(line):$/;" f function:NNTP.xhdr +remove_option Lib/configparser.py /^ def remove_option(self, section, option):$/;" m class:RawConfigParser +remove_option Lib/optparse.py /^ def remove_option(self, opt_str):$/;" m class:OptionContainer +remove_per_instruction_tools Python/instrumentation.c /^remove_per_instruction_tools(PyCodeObject * code, int offset, int tools)$/;" f file: +remove_pyc Lib/msilib/__init__.py /^ def remove_pyc(self):$/;" m class:Directory +remove_python_envvars Lib/test/test_embed.py /^def remove_python_envvars():$/;" f +remove_reader Lib/asyncio/events.py /^ def remove_reader(self, fd):$/;" m class:AbstractEventLoop +remove_reader Lib/asyncio/selector_events.py /^ def remove_reader(self, fd):$/;" m class:BaseSelectorEventLoop +remove_reader Lib/test/test_asyncio/utils.py /^ def remove_reader(self, fd):$/;" m class:TestLoop +remove_redundant_jumps Python/flowgraph.c /^remove_redundant_jumps(cfg_builder *g) {$/;" f file: +remove_redundant_nops Python/flowgraph.c /^remove_redundant_nops(basicblock *bb) {$/;" f file: +remove_redundant_nops_and_pairs Python/flowgraph.c /^remove_redundant_nops_and_pairs(basicblock *entryblock)$/;" f file: +remove_section Lib/configparser.py /^ def remove_section(self, section):$/;" m class:RawConfigParser +remove_selection Lib/idlelib/editor.py /^ def remove_selection(self, event=None):$/;" m class:EditorWindow +remove_sequence Lib/mailbox.py /^ def remove_sequence(self, sequence):$/;" m class:MHMessage +remove_signal_handler Lib/asyncio/events.py /^ def remove_signal_handler(self, sig):$/;" m class:AbstractEventLoop +remove_signal_handler Lib/asyncio/unix_events.py /^ def remove_signal_handler(self, sig):$/;" m class:_UnixSelectorEventLoop +remove_subclass Objects/typeobject.c /^remove_subclass(PyTypeObject *base, PyTypeObject *type)$/;" f file: +remove_testfn Lib/test/libregrtest/runtest.py /^def remove_testfn(test_name: str, verbose: int) -> None:$/;" f +remove_tools Python/instrumentation.c /^remove_tools(PyCodeObject * code, int offset, int event, int tools)$/;" f file: +remove_trailing_newline Lib/lib2to3/fixes/fix_metaclass.py /^def remove_trailing_newline(node):$/;" f +remove_trailing_zeros Python/pystrtod.c /^remove_trailing_zeros(char *buffer)$/;" f +remove_unusable_flags Modules/socketmodule.c /^remove_unusable_flags(PyObject *m)$/;" f file: +remove_unused_consts Python/flowgraph.c /^remove_unused_consts(basicblock *entryblock, PyObject *consts)$/;" f file: +remove_writer Lib/asyncio/events.py /^ def remove_writer(self, fd):$/;" m class:AbstractEventLoop +remove_writer Lib/asyncio/selector_events.py /^ def remove_writer(self, fd):$/;" m class:BaseSelectorEventLoop +remove_writer Lib/test/test_asyncio/utils.py /^ def remove_writer(self, fd):$/;" m class:TestLoop +removecolors Lib/idlelib/colorizer.py /^ def removecolors(self):$/;" m class:ColorDelegator +removecolors Lib/idlelib/pyshell.py /^ def removecolors(self):$/;" m class:ModifiedColorDelegator +removedirs Lib/os.py /^def removedirs(name):$/;" f +removeduppaths Lib/site.py /^def removeduppaths():$/;" f +removefilter Lib/idlelib/percolator.py /^ def removefilter(self, filter):$/;" m class:Percolator +removeprefix Lib/collections/__init__.py /^ def removeprefix(self, prefix, \/):$/;" m class:UserString +removesuffix Lib/collections/__init__.py /^ def removesuffix(self, suffix, \/):$/;" m class:UserString +removesuffix Tools/build/deepfreeze.py /^def removesuffix(base: str, suffix: str) -> str:$/;" f +removexattr Lib/test/test_os.py /^ def removexattr(path, *args):$/;" f function:ExtendedAttributeTests.test_fds +rename Lib/ftplib.py /^ def rename(self, fromname, toname):$/;" m class:FTP +rename Lib/imaplib.py /^ def rename(self, oldmailbox, newmailbox):$/;" m class:IMAP4 +rename Lib/pathlib.py /^ def rename(self, target):$/;" m class:Path +renameNode Lib/xml/dom/minidom.py /^ def renameNode(self, n, namespaceURI, name):$/;" m class:Document +rename_module Tools/build/check_extension_modules.py /^ def rename_module(self, modinfo: ModuleInfo) -> None:$/;" m class:ModuleChecker +renames Lib/os.py /^def renames(old, new):$/;" f +render Tools/c-analyzer/c_analyzer/__main__.py /^ def render():$/;" f function:build_section +render Tools/c-analyzer/c_analyzer/info.py /^ def render(self, fmt='line', *, itemonly=False):$/;" m class:Analyzed +render Tools/c-analyzer/c_parser/info.py /^ def render(self, fmt='line'):$/;" m class:HighlevelParsedItem +render Tools/c-analyzer/cpython/_analyzer.py /^ def render(self, fmt='line', *, itemonly=False):$/;" m class:Analyzed +render Tools/c-analyzer/cpython/_capi.py /^ def render(items, **kwargs):$/;" f function:get_renderer +render Tools/clinic/clinic.py /^ def render($/;" m class:CReturnConverter +render Tools/clinic/clinic.py /^ def render($/;" m class:bool_return_converter +render Tools/clinic/clinic.py /^ def render($/;" m class:double_return_converter +render Tools/clinic/clinic.py /^ def render($/;" m class:init_return_converter +render Tools/clinic/clinic.py /^ def render($/;" m class:long_return_converter +render Tools/clinic/clinic.py /^ def render(self, clinic, signatures):$/;" m class:CLanguage +render Tools/clinic/clinic.py /^ def render(self, clinic, signatures):$/;" m class:Language +render Tools/clinic/clinic.py /^ def render(self, parameter, data) -> None:$/;" m class:defining_class_converter +render Tools/clinic/clinic.py /^ def render(self, parameter, data):$/;" m class:self_converter +render Tools/clinic/clinic.py /^ def render(self, parameter: str, data: CRenderData) -> None:$/;" m class:CConverter +render_decl Tools/c-analyzer/c_parser/datafiles.py /^ def render_decl(decl):$/;" f function:_write_decls_tsv +render_doc Lib/pydoc.py /^def render_doc(thing, title='Python Library Documentation: %s', forceload=0,$/;" f +render_exc Lib/test/test_traceback.py /^ def render_exc():$/;" f function:TracebackFormatTests.test_recursive_traceback_cpython_internal +render_field Objects/stringlib/unicode_format.h /^render_field(PyObject *fieldobj, SubString *format_spec, _PyUnicodeWriter *writer)$/;" f +render_full Tools/c-analyzer/cpython/_capi.py /^def render_full(items, *,$/;" f +render_function Tools/clinic/clinic.py /^ def render_function(self, clinic, f):$/;" m class:CLanguage +render_option_group_parsing Tools/clinic/clinic.py /^ def render_option_group_parsing(self, f, template_dict):$/;" m class:CLanguage +render_parameters Tools/clinic/clinic.py /^ def render_parameters(self):$/;" m class:Function +render_repr Tools/c-analyzer/cpython/_builtin_types.py /^def render_repr(types):$/;" f +render_rowdata Tools/c-analyzer/c_analyzer/info.py /^ def render_rowdata(self, columns=None):$/;" m class:Analyzed +render_rowdata Tools/c-analyzer/c_parser/info.py /^ def render_rowdata(self, columns=None):$/;" m class:HighlevelParsedItem +render_rowvalues Tools/c-analyzer/cpython/_builtin_types.py /^ def render_rowvalues(self, kinds):$/;" m class:BuiltinTypeInfo +render_summary Tools/c-analyzer/cpython/_capi.py /^def render_summary(items, *,$/;" f +render_table Tools/c-analyzer/cpython/_builtin_types.py /^def render_table(types):$/;" f +render_table Tools/c-analyzer/cpython/_capi.py /^def render_table(items, *,$/;" f +render_tree Tools/c-analyzer/table-file.py /^ def render_tree(root, depth=0):$/;" f function:cmd_count_by_section +rendered_templates Lib/test/test_typing.py /^ rendered_templates = template_replace($/;" v class:GenericAliasSubstitutionTests.test_one_parameter.C +rendered_templates Lib/test/test_typing.py /^ rendered_templates = template_replace($/;" v class:GenericAliasSubstitutionTests.test_three_parameters.C +rendered_templates Lib/test/test_typing.py /^ rendered_templates = template_replace($/;" v class:GenericAliasSubstitutionTests.test_two_parameters.C +rendered_templates Lib/test/test_typing.py /^ rendered_templates = template_replace($/;" v class:GenericAliasSubstitutionTests.test_variadic_parameters.C +reopenIfNeeded Lib/logging/handlers.py /^ def reopenIfNeeded(self):$/;" m class:WatchedFileHandler +rep Modules/_sre/sre_lib.h /^ SRE_REPEAT* rep;$/;" m union:__anon460::__anon461 +repeat Include/internal/pycore_faulthandler.h /^ int repeat;$/;" m struct:_faulthandler_runtime_state::__anon127 +repeat Lib/test/test_logging.py /^ repeat = 20$/;" v class:QueueHandlerTest.QueueListenerTest +repeat Lib/test/test_timeit.py /^ def repeat(self, stmt, setup, repeat=None, number=None):$/;" m class:TestTimeit +repeat Lib/timeit.py /^ def repeat(self, repeat=default_repeat, number=default_number):$/;" m class:Timer +repeat Lib/timeit.py /^def repeat(stmt="pass", setup="pass", timer=default_timer,$/;" f +repeat Modules/_sre/sre.h /^ SRE_REPEAT *repeat;$/;" m struct:__anon458 +repeat Modules/_struct.c /^ Py_ssize_t repeat;$/;" m struct:_formatcode file: +repeat_5_1000_times Tools/stringbench/stringbench.py /^def repeat_5_1000_times(STR):$/;" f +repeat_5_10_times Tools/stringbench/stringbench.py /^def repeat_5_10_times(STR):$/;" f +repeat_dealloc Modules/itertoolsmodule.c /^repeat_dealloc(repeatobject *ro)$/;" f file: +repeat_len Modules/itertoolsmodule.c /^repeat_len(repeatobject *ro, PyObject *Py_UNUSED(ignored))$/;" f file: +repeat_methods Modules/itertoolsmodule.c /^static PyMethodDef repeat_methods[] = {$/;" v file: +repeat_new Modules/itertoolsmodule.c /^repeat_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +repeat_next Modules/itertoolsmodule.c /^repeat_next(repeatobject *ro)$/;" f file: +repeat_reduce Modules/itertoolsmodule.c /^repeat_reduce(repeatobject *ro, PyObject *Py_UNUSED(ignored))$/;" f file: +repeat_repr Modules/itertoolsmodule.c /^repeat_repr(repeatobject *ro)$/;" f file: +repeat_single_1000_times Tools/stringbench/stringbench.py /^def repeat_single_1000_times(STR):$/;" f +repeat_single_10_times Tools/stringbench/stringbench.py /^def repeat_single_10_times(STR):$/;" f +repeat_slots Modules/itertoolsmodule.c /^static PyType_Slot repeat_slots[] = {$/;" v file: +repeat_spec Modules/itertoolsmodule.c /^static PyType_Spec repeat_spec = {$/;" v file: +repeat_traverse Modules/itertoolsmodule.c /^repeat_traverse(repeatobject *ro, visitproc visit, void *arg)$/;" f file: +repeat_type Modules/itertoolsmodule.c /^ PyTypeObject *repeat_type;$/;" m struct:__anon400 file: +repeated_doc_slots Modules/_testcapi/heaptype.c /^PyType_Slot repeated_doc_slots[] = {$/;" v +repeated_doc_slots_spec Modules/_testcapi/heaptype.c /^PyType_Spec repeated_doc_slots_spec = {$/;" v +repeated_members_slots Modules/_testcapi/heaptype.c /^PyType_Slot repeated_members_slots[] = {$/;" v +repeated_members_slots_spec Modules/_testcapi/heaptype.c /^PyType_Spec repeated_members_slots_spec = {$/;" v +repeatobject Modules/itertoolsmodule.c /^} repeatobject;$/;" t typeref:struct:__anon421 file: +repl Lib/inspect.py /^ def repl(match):$/;" f function:formatannotation +repl Tools/wasm/wasm_build.py /^ repl="start interactive REPL \/ webserver + browser session",$/;" v +repl_future Lib/asyncio/__main__.py /^ repl_future = None$/;" v class:REPLThread +repl_future_interrupted Lib/asyncio/__main__.py /^ repl_future_interrupted = False$/;" v class:REPLThread +repl_locals Lib/asyncio/__main__.py /^ repl_locals = {'asyncio': asyncio}$/;" v class:REPLThread +repl_thread Lib/asyncio/__main__.py /^ repl_thread = REPLThread()$/;" v class:REPLThread +replace Lib/_pydatetime.py /^ def replace(self, hour=None, minute=None, second=None, microsecond=None,$/;" m class:time +replace Lib/_pydatetime.py /^ def replace(self, year=None, month=None, day=None):$/;" m class:date +replace Lib/_pydatetime.py /^ def replace(self, year=None, month=None, day=None, hour=None,$/;" m class:datetime +replace Lib/collections/__init__.py /^ def replace(self, old, new, maxsplit=-1):$/;" m class:UserString +replace Lib/dataclasses.py /^def replace(obj, \/, **changes):$/;" f +replace Lib/idlelib/replace.py /^def replace(text, insert_tags=None):$/;" f +replace Lib/inspect.py /^ def replace(self, *, name=_void, kind=_void,$/;" m class:Parameter +replace Lib/inspect.py /^ def replace(self, *, parameters=_void, return_annotation=_void):$/;" m class:Signature +replace Lib/json/encoder.py /^ def replace(match):$/;" f function:py_encode_basestring +replace Lib/json/encoder.py /^ def replace(match):$/;" f function:py_encode_basestring_ascii +replace Lib/lib2to3/pytree.py /^ def replace(self, new):$/;" m class:Base +replace Lib/pathlib.py /^ def replace(self, target):$/;" m class:Path +replace Lib/pydoc.py /^def replace(text, *pairs):$/;" f +replace Lib/tarfile.py /^ def replace(self, *,$/;" m class:TarInfo +replace Lib/test/datetimetester.py /^ def replace(self, *args):$/;" m class:TestDateTime.test_strftime_with_bad_tzname_replace.MyTzInfo.tzname.MyStr +replace Lib/test/inspect_fodder2.py /^def replace(func):$/;" f +replace Lib/tkinter/__init__.py /^ def replace(self, index1, index2, chars, *args): # new in Tk 8.5$/;" m class:Text +replace Lib/turtledemo/lindenmayer.py /^def replace( seq, replacementRules, n ):$/;" f +replace Lib/zipfile/_path/glob.py /^def replace(match):$/;" f +replace Objects/unicodeobject.c /^replace(PyObject *self, PyObject *str1,$/;" f file: +replaceChild Lib/xml/dom/minidom.py /^ def replaceChild(self, newChild, oldChild):$/;" m class:Childless +replaceChild Lib/xml/dom/minidom.py /^ def replaceChild(self, newChild, oldChild):$/;" m class:Entity +replaceChild Lib/xml/dom/minidom.py /^ def replaceChild(self, newChild, oldChild):$/;" m class:Node +replaceData Lib/xml/dom/minidom.py /^ def replaceData(self, offset, count, arg):$/;" m class:CharacterData +replacePackageMap Lib/modulefinder.py /^replacePackageMap = {}$/;" v +replaceText Tools/cases_generator/lexer.py /^ def replaceText(self, txt):$/;" m class:Token +replaceWholeText Lib/xml/dom/minidom.py /^ def replaceWholeText(self, content):$/;" m class:Text +replace_1char_inplace Objects/stringlib/replace.h /^STRINGLIB(replace_1char_inplace)(STRINGLIB_CHAR* s, STRINGLIB_CHAR* end,$/;" f +replace_1char_inplace Objects/unicodeobject.c /^replace_1char_inplace(PyObject *u, Py_ssize_t pos,$/;" f file: +replace_all Lib/idlelib/replace.py /^ def replace_all(self, event=None):$/;" m class:ReplaceDialog +replace_block Tools/build/freeze_modules.py /^def replace_block(lines, start_marker, end_marker, replacements, file):$/;" f +replace_builtin_open Lib/test/test_fileinput.py /^ def replace_builtin_open(new_open_func):$/;" m class:Test_hook_compressed +replace_errors Lib/codecs.py /^ replace_errors = None$/;" v +replace_errors Lib/codecs.py /^ replace_errors = lookup_error("replace")$/;" v +replace_errors Python/codecs.c /^static PyObject *replace_errors(PyObject *self, PyObject *exc)$/;" f file: +replace_event Lib/idlelib/editor.py /^ def replace_event(self, event):$/;" m class:EditorWindow +replace_event Lib/idlelib/pyshell.py /^ def replace_event(self, event):$/;" m class:PyShell +replace_header Lib/email/message.py /^ def replace_header(self, _name, _value):$/;" m class:Message +replace_it Lib/idlelib/replace.py /^ def replace_it(self, event=None):$/;" m class:ReplaceDialog +replace_message Lib/test/test_logging.py /^ def replace_message(record: logging.LogRecord):$/;" f function:CustomLevelsAndFiltersTest.test_handler_filter_replaces_record +replace_multiple_character_big Tools/stringbench/stringbench.py /^def replace_multiple_character_big(STR):$/;" f +replace_multiple_character_remove Tools/stringbench/stringbench.py /^def replace_multiple_character_remove(STR):$/;" f +replace_multiple_characters_dna Tools/stringbench/stringbench.py /^def replace_multiple_characters_dna(STR):$/;" f +replace_paths_in_code Lib/modulefinder.py /^ def replace_paths_in_code(self, co):$/;" m class:ModuleFinder +replace_single_character Tools/stringbench/stringbench.py /^def replace_single_character(STR):$/;" f +replace_single_character_big Tools/stringbench/stringbench.py /^def replace_single_character_big(STR):$/;" f +replace_single_character_big_re Tools/stringbench/stringbench.py /^def replace_single_character_big_re(STR):$/;" f +replace_single_character_re Tools/stringbench/stringbench.py /^def replace_single_character_re(STR):$/;" f +replace_stdout Lib/test/libregrtest/setup.py /^def replace_stdout():$/;" f +replace_transport Lib/test/test_asyncio/test_sslproto.py /^ def replace_transport(self, tr):$/;" m class:BaseStartTLS.test_start_tls_server_1.ServerProto +replace_variables Lib/venv/__init__.py /^ def replace_variables(self, text, context):$/;" m class:EnvBuilder +replace_with_long Lib/test/test_codeccallbacks.py /^ def replace_with_long(exc):$/;" f function:CodecCallbackTest.test_crashing_decode_handler +replaced_module Lib/test/test_functools.py /^def replaced_module(name, replacement):$/;" f +replaced_module Lib/test/test_ordered_dict.py /^def replaced_module(name, replacement):$/;" f +replacements Lib/test/test_typing.py /^ replacements={'generic': generics, 'tuple_type': tuple_types}$/;" v class:GenericAliasSubstitutionTests.test_one_parameter.C +replacements Lib/test/test_typing.py /^ replacements={'generic': generics, 'tuple_type': tuple_types}$/;" v class:GenericAliasSubstitutionTests.test_two_parameters.C +replacements Lib/test/test_typing.py /^ replacements={'generic': generics, 'tuple_type': tuple_types}$/;" v class:GenericAliasSubstitutionTests.test_variadic_parameters.C +replacements Lib/test/test_typing.py /^ replacements={'generic': generics, 'tuple_type': tuple_types}$/;" v class:GenericAliasSubstitutionTests.test_three_parameters.C +replacing Lib/test/test_codeccallbacks.py /^ def replacing(exc):$/;" f function:CodecCallbackTest.test_mutatingdecodehandler +reply_with Lib/test/mock_socket.py /^def reply_with(line):$/;" f +reporoot Tools/peg_generator/scripts/joinstats.py /^reporoot = os.path.dirname(os.path.dirname(__file__))$/;" v +report Lib/filecmp.py /^ def report(self): # Print a report on the differences between a and b$/;" m class:dircmp +report Lib/idlelib/idle_test/test_grep.py /^ def report(self, pat):$/;" m class:Grep_itTest +report Lib/lib2to3/pgen2/grammar.py /^ def report(self):$/;" m class:Grammar +report Lib/modulefinder.py /^ def report(self):$/;" m class:ModuleFinder +report Lib/test/test_sys.py /^ report = stderr.getvalue()$/;" v class:UnraisableHookTest.test_original_unraisablehook_exception_qualname.A.B +report Tools/peg_generator/pegen/tokenizer.py /^ def report(self, cached: bool, back: bool) -> None:$/;" m class:Tokenizer +reportComment Modules/expat/xmlparse.c /^reportComment(XML_Parser parser, const ENCODING *enc, const char *start,$/;" f file: +reportDefault Modules/expat/xmlparse.c /^reportDefault(XML_Parser parser, const ENCODING *enc, const char *s,$/;" f file: +reportProcessingInstruction Modules/expat/xmlparse.c /^reportProcessingInstruction(XML_Parser parser, const ENCODING *enc,$/;" f file: +report_404 Lib/xmlrpc/server.py /^ def report_404 (self):$/;" m class:SimpleXMLRPCRequestHandler +report_callback_exception Lib/tkinter/__init__.py /^ def report_callback_exception(self, exc, val, tb):$/;" m class:Tk +report_error Lib/idlelib/searchengine.py /^ def report_error(self, pat, msg, col=None):$/;" m class:SearchEngine +report_failure Lib/doctest.py /^ def report_failure(self, out, test, example, got):$/;" m class:DebugRunner +report_failure Lib/doctest.py /^ def report_failure(self, out, test, example, got):$/;" m class:DocTestRunner +report_full_closure Lib/filecmp.py /^ def report_full_closure(self): # Report on self and subdirs recursively$/;" m class:dircmp +report_modified_files Tools/patchcheck/patchcheck.py /^def report_modified_files(file_paths):$/;" f +report_partial_closure Lib/filecmp.py /^ def report_partial_closure(self): # Print reports on self and on subdirs$/;" m class:dircmp +report_start Lib/doctest.py /^ def report_start(self, out, test, example):$/;" m class:DocTestRunner +report_status Tools/peg_generator/scripts/test_parse_directory.py /^def report_status($/;" f +report_success Lib/doctest.py /^ def report_success(self, out, test, example, got):$/;" m class:DocTestRunner +report_time Tools/build/deepfreeze.py /^def report_time(label: str):$/;" f +report_unexpected_exception Lib/doctest.py /^ def report_unexpected_exception(self, out, test, example, exc_info):$/;" m class:DebugRunner +report_unexpected_exception Lib/doctest.py /^ def report_unexpected_exception(self, out, test, example, exc_info):$/;" m class:DocTestRunner +report_wakeup_send_error Modules/signalmodule.c /^report_wakeup_send_error(void* data)$/;" f file: +report_wakeup_write_error Modules/signalmodule.c /^report_wakeup_write_error(void *data)$/;" f file: +report_warnings Parser/tokenizer.h /^ int report_warnings;$/;" m struct:tok_state +reported_news Tools/patchcheck/patchcheck.py /^def reported_news(file_paths):$/;" f +repository_url Doc/conf.py /^repository_url = os.getenv("READTHEDOCS_GIT_CLONE_URL")$/;" v +repr Lib/pydoc.py /^ def repr(self, object):$/;" m class:HTMLRepr +repr Lib/pydoc.py /^ repr = _repr_instance.repr$/;" v class:HTMLDoc +repr Lib/pydoc.py /^ repr = _repr_instance.repr$/;" v class:TextDoc +repr Lib/reprlib.py /^ def repr(self, x):$/;" m class:Repr +repr Lib/reprlib.py /^repr = aRepr.repr$/;" v +repr Lib/test/test_enum.py /^ def repr(self):$/;" m class:TestSpecial.test_too_many_data_types.MyInt +repr1 Lib/pydoc.py /^ def repr1(self, x, level):$/;" m class:HTMLRepr +repr1 Lib/pydoc.py /^ def repr1(self, x, level):$/;" m class:TextRepr +repr1 Lib/reprlib.py /^ def repr1(self, x, level):$/;" m class:Repr +repr_ Lib/test/test_hash.py /^ repr_ = "memoryview(b'abc')"$/;" v class:MemoryviewHashRandomizationTests +repr_ Lib/test/test_hash.py /^ repr_ = None$/;" v class:StringlikeHashRandomizationTests +repr_ Lib/test/test_hash.py /^ repr_ = repr('abc')$/;" v class:StrHashRandomizationTests +repr_ Lib/test/test_hash.py /^ repr_ = repr(b'abc')$/;" v class:BytesHashRandomizationTests +repr_ Lib/test/test_hash.py /^ repr_ = repr(datetime.date(1066, 10, 14))$/;" v class:DatetimeDateTests +repr_ Lib/test/test_hash.py /^ repr_ = repr(datetime.datetime(1, 2, 3, 4, 5, 6, 7))$/;" v class:DatetimeDatetimeTests +repr_ Lib/test/test_hash.py /^ repr_ = repr(datetime.time(0))$/;" v class:DatetimeTimeTests +repr_array Lib/reprlib.py /^ def repr_array(self, x, level):$/;" m class:Repr +repr_deque Lib/reprlib.py /^ def repr_deque(self, x, level):$/;" m class:Repr +repr_dict Lib/reprlib.py /^ def repr_dict(self, x, level):$/;" m class:Repr +repr_frozenset Lib/reprlib.py /^ def repr_frozenset(self, x, level):$/;" m class:Repr +repr_instance Lib/pydoc.py /^ def repr_instance(self, x, level):$/;" m class:HTMLRepr +repr_instance Lib/pydoc.py /^ def repr_instance(self, x, level):$/;" m class:TextRepr +repr_instance Lib/reprlib.py /^ def repr_instance(self, x, level):$/;" m class:Repr +repr_int Lib/reprlib.py /^ def repr_int(self, x, level):$/;" m class:Repr +repr_list Lib/reprlib.py /^ def repr_list(self, x, level):$/;" m class:Repr +repr_long Lib/test/test_hash.py /^ repr_long = "memoryview(b'abcdefghijk')"$/;" v class:MemoryviewHashRandomizationTests +repr_long Lib/test/test_hash.py /^ repr_long = None$/;" v class:StringlikeHashRandomizationTests +repr_long Lib/test/test_hash.py /^ repr_long = repr('abcdefghijk')$/;" v class:StrHashRandomizationTests +repr_long Lib/test/test_hash.py /^ repr_long = repr(b'abcdefghijk')$/;" v class:BytesHashRandomizationTests +repr_set Lib/reprlib.py /^ def repr_set(self, x, level):$/;" m class:Repr +repr_str Lib/pydoc.py /^ repr_str = repr_string$/;" v class:HTMLRepr +repr_str Lib/pydoc.py /^ repr_str = repr_string$/;" v class:TextRepr +repr_str Lib/reprlib.py /^ def repr_str(self, x, level):$/;" m class:Repr +repr_string Lib/pydoc.py /^ def repr_string(self, x, level):$/;" m class:HTMLRepr +repr_string Lib/pydoc.py /^ def repr_string(self, x, level):$/;" m class:TextRepr +repr_tuple Lib/reprlib.py /^ def repr_tuple(self, x, level):$/;" m class:Repr +repr_ucs2 Lib/test/test_hash.py /^ repr_ucs2 = repr('äú∑ℇ')$/;" v class:StrHashRandomizationTests +repr_unicode Lib/pydoc.py /^ repr_unicode = repr_string$/;" v class:HTMLRepr +reprfunc Include/object.h /^typedef PyObject *(*reprfunc)(PyObject *);$/;" t +req Lib/test/test_urllib2.py /^ req = Request(url)$/;" v class:HandlerTests.test_ftp.NullFTPHandler +request Lib/http/client.py /^ def request(self, method, url, body=None, headers={}, *,$/;" m class:HTTPConnection +request Lib/test/test_httpservers.py /^ def request(self, uri, method='GET', body=None, headers={}):$/;" m class:BaseTestCase +request Lib/test/test_urllib2.py /^ def request(conn, method, url, *pos, **kw):$/;" f function:HandlerTests.test_redirect_no_path +request Lib/test/test_urllib2.py /^ def request(self, method, url, body=None, headers=None, *,$/;" m class:MockHTTPClass +request Lib/xmlrpc/client.py /^ def request(self, host, handler, request_body, verbose=False):$/;" m class:Transport +requestHandler Lib/test/test_xmlrpc.py /^ requestHandler = xmlrpc.server.SimpleXMLRPCRequestHandler$/;" v class:http_multi_server.MyXMLRPCServer +requestHandler Lib/test/test_xmlrpc.py /^ requestHandler = xmlrpc.server.SimpleXMLRPCRequestHandler$/;" v class:http_server.MyXMLRPCServer +requestHandler Lib/test/test_xmlrpc.py /^ requestHandler = None$/;" v class:BaseServerTestCase +requestHandler Lib/test/test_xmlrpc.py /^ requestHandler = RequestHandler$/;" v class:BaseKeepaliveServerTestCase +requestHandler Lib/test/test_xmlrpc.py /^ requestHandler = RequestHandler$/;" v class:GzipServerTestCase +requestHandler Lib/test/test_xmlrpc.py /^ requestHandler = RequestHandler$/;" v class:HeadersServerTestCase +request_count Lib/test/test_xmlrpc.py /^ request_count = 1$/;" v class:BaseServerTestCase +request_count Lib/test/test_xmlrpc.py /^ request_count = 2$/;" v class:MultiPathServerTestCase +request_count Lib/test/test_xmlrpc.py /^ request_count=2$/;" v class:KeepaliveServerTestCase2 +request_handler Lib/test/test_httpservers.py /^ class request_handler(BaseHTTPRequestHandler):$/;" c class:RequestHandlerLoggingTestCase +request_handler Lib/test/test_httpservers.py /^ class request_handler(NoLogRequestHandler, BaseHTTPRequestHandler):$/;" c class:BaseHTTPServerTestCase +request_handler Lib/test/test_httpservers.py /^ class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler):$/;" c class:CGIHTTPServerTestCase +request_handler Lib/test/test_httpservers.py /^ class request_handler(NoLogRequestHandler, SimpleHTTPRequestHandler):$/;" c class:SimpleHTTPServerTestCase +request_host Lib/http/cookiejar.py /^def request_host(request):$/;" f +request_host Lib/urllib/request.py /^def request_host(request):$/;" f +request_path Lib/http/cookiejar.py /^def request_path(request):$/;" f +request_port Lib/http/cookiejar.py /^def request_port(request):$/;" f +request_queue Lib/idlelib/rpc.py /^request_queue = queue.Queue(0)$/;" v +request_queue_size Lib/socketserver.py /^ request_queue_size = 5$/;" v class:TCPServer +request_rate Lib/test/test_robotparser.py /^ request_rate = None$/;" v class:BaseRequestRateTest +request_rate Lib/test/test_robotparser.py /^ request_rate = urllib.robotparser.RequestRate(3, 15)$/;" v class:DefaultEntryTest +request_rate Lib/test/test_robotparser.py /^ request_rate = urllib.robotparser.RequestRate(9, 30)$/;" v class:CrawlDelayAndRequestRateTest +request_rate Lib/urllib/robotparser.py /^ def request_rate(self, useragent):$/;" m class:RobotFileParser +request_timeout Lib/test/test_asyncio/utils.py /^ request_timeout = support.LOOPBACK_TIMEOUT$/;" v class:_run_test_server.UnixWSGIServer +request_timeout Lib/test/test_asyncio/utils.py /^ request_timeout = support.LOOPBACK_TIMEOUT$/;" v class:SilentWSGIServer +request_uri Lib/wsgiref/util.py /^def request_uri(environ, include_query=True):$/;" f +requests Lib/test/test_urllib2_localnet.py /^ requests = []$/;" v class:GetRequestHandler.FakeHTTPRequestHandler +require Tools/cases_generator/plexer.py /^ def require(self, kind: str) -> Token:$/;" m class:PLexer +requireAttrs Lib/test/test_socket.py /^def requireAttrs(obj, *attributes):$/;" f +requireSocket Lib/test/test_socket.py /^def requireSocket(*args):$/;" f +requireVenvCreate Lib/test/test_venv.py /^requireVenvCreate = unittest.skipUnless($/;" v +require_builtin Lib/test/test_import/__init__.py /^def require_builtin(module, *, skip=False):$/;" f +require_extension Lib/test/test_import/__init__.py /^def require_extension(module, *, skip=False):$/;" f +require_frozen Lib/test/test_import/__init__.py /^def require_frozen(module, *, skip=True):$/;" f +require_parens Lib/ast.py /^ def require_parens(self, precedence, node):$/;" m class:_Unparser +require_pure_python Lib/test/test_import/__init__.py /^def require_pure_python(module, *, skip=False):$/;" f +required_arguments Doc/tools/extensions/c_annotations.py /^ required_arguments = 0$/;" v class:init_annotations.LimitedAPIList +required_arguments Doc/tools/extensions/pyspecific.py /^ required_arguments = 1$/;" v class:AuditEvent +required_arguments Doc/tools/extensions/pyspecific.py /^ required_arguments = 1$/;" v class:Availability +required_arguments Doc/tools/extensions/pyspecific.py /^ required_arguments = 1$/;" v class:MiscNews +required_arguments Doc/tools/extensions/pyspecific.py /^ required_arguments = 2$/;" v class:DeprecatedRemoved +required_type_for_self_for_parser Tools/clinic/clinic.py /^def required_type_for_self_for_parser(f):$/;" f +requires Lib/importlib/metadata/__init__.py /^ def requires(self):$/;" m class:Distribution +requires Lib/importlib/metadata/__init__.py /^def requires(distribution_name):$/;" f +requires Lib/test/support/__init__.py /^def requires(resource, msg=None):$/;" f +requiresWriteAccess Lib/test/test_zipfile/test_core.py /^ def requiresWriteAccess(self, path):$/;" m class:PyZipFileTests +requires_32b Lib/test/pickletester.py /^requires_32b = unittest.skipUnless(sys.maxsize < 2**32,$/;" v +requires_32b Lib/test/test_os.py /^ requires_32b = unittest.skipUnless(sys.maxsize < 2**32,$/;" v class:TestSendfile +requires_32b Lib/test/test_posix.py /^requires_32b = unittest.skipUnless($/;" v +requires_Compress_copy Lib/test/test_zlib.py /^requires_Compress_copy = unittest.skipUnless($/;" v +requires_Decompress_copy Lib/test/test_zlib.py /^requires_Decompress_copy = unittest.skipUnless($/;" v +requires_IEEE_754 Lib/test/support/__init__.py /^requires_IEEE_754 = unittest.skipUnless($/;" v +requires_alarm Lib/test/test_io.py /^requires_alarm = unittest.skipUnless($/;" v +requires_blake2 Lib/test/test_hashlib.py /^requires_blake2 = unittest.skipUnless(_blake2, 'requires _blake2')$/;" v +requires_bz2 Lib/test/support/__init__.py /^def requires_bz2(reason='requires bz2'):$/;" f +requires_cdecimal Lib/test/test_decimal.py /^requires_cdecimal = unittest.skipUnless(C, "test requires C version")$/;" v +requires_colors Lib/test/test_curses.py /^def requires_colors(test):$/;" f +requires_curses_func Lib/test/test_curses.py /^def requires_curses_func(name):$/;" f +requires_curses_window_meth Lib/test/test_curses.py /^def requires_curses_window_meth(name):$/;" f +requires_debug_ranges Lib/test/support/__init__.py /^def requires_debug_ranges(reason='requires co_positions \/ debug_ranges'):$/;" f +requires_docstrings Lib/test/support/__init__.py /^requires_docstrings = unittest.skipUnless(HAVE_DOCSTRINGS,$/;" v +requires_extra_functionality Lib/test/test_decimal.py /^requires_extra_functionality = unittest.skipUnless($/;" v +requires_fork Lib/test/lock_tests.py /^requires_fork = unittest.skipUnless(support.has_fork_support,$/;" v +requires_fork Lib/test/support/__init__.py /^def requires_fork():$/;" f +requires_forking Lib/test/test_socketserver.py /^requires_forking = unittest.skipUnless(HAVE_FORKING, 'requires forking')$/;" v +requires_freebsd_version Lib/test/support/__init__.py /^def requires_freebsd_version(*min_version):$/;" f +requires_gzip Lib/test/support/__init__.py /^def requires_gzip(reason='requires gzip'):$/;" f +requires_hashdigest Lib/test/support/hashlib_helper.py /^def requires_hashdigest(digestname, openssl=None, usedforsecurity=True):$/;" f +requires_headers_trailers Lib/test/test_os.py /^ requires_headers_trailers = unittest.skipUnless(SUPPORT_HEADERS_TRAILERS,$/;" v class:TestSendfile +requires_idref Include/internal/pycore_interp.h /^ int requires_idref;$/;" m struct:_is +requires_keylog Lib/test/test_ssl.py /^requires_keylog = unittest.skipUnless($/;" v +requires_legacy_unicode_capi Lib/test/support/__init__.py /^def requires_legacy_unicode_capi():$/;" f +requires_limited_api Lib/test/support/__init__.py /^def requires_limited_api(test):$/;" f +requires_linux_version Lib/test/support/__init__.py /^def requires_linux_version(*min_version):$/;" f +requires_lzma Lib/test/support/__init__.py /^def requires_lzma(reason='requires lzma'):$/;" f +requires_mac_ver Lib/test/support/__init__.py /^def requires_mac_ver(*min_version):$/;" f +requires_name_attribute Lib/test/test_tarfile.py /^ def requires_name_attribute(self):$/;" m class:Bz2MiscReadTest +requires_name_attribute Lib/test/test_tarfile.py /^ def requires_name_attribute(self):$/;" m class:LzmaMiscReadTest +requires_name_attribute Lib/test/test_tarfile.py /^ def requires_name_attribute(self):$/;" m class:MiscReadTestBase +requires_nonascii_filenames Lib/test/test_sax.py /^requires_nonascii_filenames = unittest.skipUnless($/;" v +requires_os_func Lib/test/test_os.py /^def requires_os_func(name):$/;" f +requires_resource Lib/test/support/__init__.py /^def requires_resource(resource):$/;" f +requires_sched Lib/test/test_posix.py /^requires_sched = unittest.skipUnless(_supports_sched(), 'requires POSIX scheduler API')$/;" v +requires_sched_affinity Lib/test/test_posix.py /^ requires_sched_affinity = unittest.skipUnless(hasattr(posix, 'sched_setaffinity'),$/;" v class:PosixTester +requires_sched_h Lib/test/test_posix.py /^ requires_sched_h = unittest.skipUnless(hasattr(posix, 'sched_yield'),$/;" v class:PosixTester +requires_sha3 Lib/test/test_hashlib.py /^requires_sha3 = unittest.skipUnless(not SKIP_SHA3, 'requires _sha3')$/;" v +requires_singlephase_init Lib/test/test_import/__init__.py /^def requires_singlephase_init(meth):$/;" f +requires_specialization Lib/test/support/__init__.py /^def requires_specialization(test):$/;" f +requires_splice_pipe Lib/test/test_os.py /^requires_splice_pipe = unittest.skipIf(sys.platform.startswith("aix"),$/;" v +requires_ssl Lib/test/test_poplib.py /^requires_ssl = skipUnless(SUPPORTS_SSL, 'SSL not supported')$/;" v +requires_subinterpreters Lib/test/test_capi/test_misc.py /^def requires_subinterpreters(meth):$/;" f +requires_subinterpreters Lib/test/test_import/__init__.py /^def requires_subinterpreters(meth):$/;" f +requires_subprocess Lib/test/support/__init__.py /^def requires_subprocess():$/;" f +requires_tk Lib/test/test_tkinter/support.py /^def requires_tk(*version):$/;" f +requires_tls_version Lib/test/test_ssl.py /^def requires_tls_version(version):$/;" f +requires_unix_sockets Lib/test/test_socketserver.py /^requires_unix_sockets = unittest.skipUnless(HAVE_UNIX_SOCKETS,$/;" v +requires_venv_with_pip Lib/test/support/__init__.py /^def requires_venv_with_pip():$/;" f +requires_working_socket Lib/test/support/__init__.py /^def requires_working_socket(*, module=False):$/;" f +requires_working_threading Lib/test/support/threading_helper.py /^def requires_working_threading(*, module=False):$/;" f +requires_zlib Lib/test/support/__init__.py /^def requires_zlib(reason='requires zlib'):$/;" f +reraise Lib/test/test_monitoring.py /^ reraise = [$/;" v class:ExceptionMonitoringTest +reraise Lib/test/test_raise.py /^ def reraise():$/;" f function:TestRaise.test_except_reraise +reraise Lib/test/test_raise.py /^ def reraise():$/;" f function:TestRaise.test_finally_reraise +reraise Lib/test/test_raise.py /^ def reraise():$/;" f function:TestRaise.test_nested_reraise +reraise Lib/test/test_raise.py /^ def reraise():$/;" f function:TestRaise.test_with_reraise1 +reraise Lib/test/test_raise.py /^ def reraise():$/;" f function:TestRaise.test_with_reraise2 +reraise Lib/test/test_raise.py /^ def reraise():$/;" f function:TestRaise.test_yield_reraise +rerun_failed_tests Lib/test/libregrtest/main.py /^ def rerun_failed_tests(self, need_rerun):$/;" m class:Regrtest +res Lib/idlelib/idle_test/test_tree.py /^ res = tree.wheel_event(event, _Widget(SCROLL, amount, "units"))$/;" v class:TestScrollEvent.test_wheel_event._Event +res Lib/test/test_enumerate.py /^ res = list(zip(range(20000), seq))$/;" v class:TestBig +res Modules/_tkinter.c /^ PyObject **res;$/;" m struct:Tkapp_CallEvent file: +res Modules/_tkinter.c /^ PyObject **res;$/;" m struct:VarEvent file: +res Python/bytecodes.c /^static PyObject *value, *value1, *value2, *left, *right, *res, *sum, *prod, *sub;$/;" v file: +res2 Python/bytecodes.c /^static PyObject *container, *start, *stop, *v, *lhs, *rhs, *res2;$/;" v file: +res2int Lib/test/test_cmd_line.py /^ def res2int(res):$/;" f function:CmdLineTest.test_int_max_str_digits +res_extension Tools/c-analyzer/distutils/_msvccompiler.py /^ res_extension = '.res'$/;" v class:MSVCCompiler +res_extension Tools/c-analyzer/distutils/msvc9compiler.py /^ res_extension = '.res'$/;" v class:MSVCCompiler +res_extension Tools/c-analyzer/distutils/msvccompiler.py /^ res_extension = '.res'$/;" v class:MSVCCompiler +reschedule Lib/asyncio/timeouts.py /^ def reschedule(self, when: Optional[float]) -> None:$/;" m class:Timeout +reserved Modules/_blake2/impl/blake2.h /^ uint8_t reserved[14]; \/\/ 32$/;" m struct:__blake2b_param +reserved_keywords Parser/parser.c /^static KeywordToken *reserved_keywords[] = {$/;" v file: +reset Lib/_markupbase.py /^ def reset(self):$/;" m class:ParserBase +reset Lib/_pyio.py /^ def reset(self):$/;" m class:IncrementalNewlineDecoder +reset Lib/asyncio/locks.py /^ async def reset(self):$/;" m class:Barrier +reset Lib/bdb.py /^ def reset(self):$/;" m class:Bdb +reset Lib/cgitb.py /^def reset():$/;" f +reset Lib/codecs.py /^ def reset(self):$/;" m class:BufferedIncrementalDecoder +reset Lib/codecs.py /^ def reset(self):$/;" m class:BufferedIncrementalEncoder +reset Lib/codecs.py /^ def reset(self):$/;" m class:IncrementalDecoder +reset Lib/codecs.py /^ def reset(self):$/;" m class:IncrementalEncoder +reset Lib/codecs.py /^ def reset(self):$/;" m class:StreamReader +reset Lib/codecs.py /^ def reset(self):$/;" m class:StreamReaderWriter +reset Lib/codecs.py /^ def reset(self):$/;" m class:StreamRecoder +reset Lib/codecs.py /^ def reset(self):$/;" m class:StreamWriter +reset Lib/email/header.py /^ def reset(self, startval=None):$/;" m class:_Accumulator +reset Lib/encodings/bz2_codec.py /^ def reset(self):$/;" m class:IncrementalDecoder +reset Lib/encodings/bz2_codec.py /^ def reset(self):$/;" m class:IncrementalEncoder +reset Lib/encodings/utf_16.py /^ def reset(self):$/;" m class:IncrementalDecoder +reset Lib/encodings/utf_16.py /^ def reset(self):$/;" m class:IncrementalEncoder +reset Lib/encodings/utf_16.py /^ def reset(self):$/;" m class:StreamReader +reset Lib/encodings/utf_16.py /^ def reset(self):$/;" m class:StreamWriter +reset Lib/encodings/utf_32.py /^ def reset(self):$/;" m class:IncrementalDecoder +reset Lib/encodings/utf_32.py /^ def reset(self):$/;" m class:IncrementalEncoder +reset Lib/encodings/utf_32.py /^ def reset(self):$/;" m class:StreamReader +reset Lib/encodings/utf_32.py /^ def reset(self):$/;" m class:StreamWriter +reset Lib/encodings/utf_8_sig.py /^ def reset(self):$/;" m class:IncrementalDecoder +reset Lib/encodings/utf_8_sig.py /^ def reset(self):$/;" m class:IncrementalEncoder +reset Lib/encodings/utf_8_sig.py /^ def reset(self):$/;" m class:StreamReader +reset Lib/encodings/utf_8_sig.py /^ def reset(self):$/;" m class:StreamWriter +reset Lib/encodings/zlib_codec.py /^ def reset(self):$/;" m class:IncrementalDecoder +reset Lib/encodings/zlib_codec.py /^ def reset(self):$/;" m class:IncrementalEncoder +reset Lib/html/parser.py /^ def reset(self):$/;" m class:HTMLParser +reset Lib/idlelib/idle_test/test_run.py /^ def reset(self):$/;" m class:MockShell +reset Lib/multiprocessing/managers.py /^ def reset(self):$/;" m class:BarrierProxy +reset Lib/pdb.py /^ def reset(self):$/;" m class:Pdb +reset Lib/pipes.py /^ def reset(self):$/;" m class:Template +reset Lib/test/support/warnings_helper.py /^ def reset(self):$/;" m class:WarningsRecorder +reset Lib/test/test_io.py /^ def reset(self):$/;" m class:StatefulIncrementalDecoder +reset Lib/test/test_multibytecodec.py /^ reset = b'\\x1b(B'$/;" v class:TestStateful +reset Lib/test/test_multibytecodec.py /^ reset = b'~}'$/;" v class:TestHZStateful +reset Lib/test/test_pulldom.py /^ def reset(self):$/;" m class:SAX2DOMTestHelper +reset Lib/test/test_shutil.py /^ def reset(self):$/;" m class:_ZeroCopyFileTest +reset Lib/test/test_urllib2.py /^ def reset(self):$/;" m class:MockHTTPHandlerCheckAuth +reset Lib/test/test_urllib2.py /^ def reset(self):$/;" m class:MockHTTPHandlerRedirect +reset Lib/threading.py /^ def reset(self):$/;" m class:Barrier +reset Lib/turtle.py /^ def reset(self):$/;" m class:RawTurtle +reset Lib/turtle.py /^ def reset(self):$/;" m class:TNavigator +reset Lib/turtle.py /^ def reset(self):$/;" m class:TurtleScreen +reset Lib/turtle.py /^ def reset(self, bufsize=None):$/;" m class:Tbuffer +reset Lib/turtle.py /^ def reset(self, canvwidth=None, canvheight=None, bg = None):$/;" m class:ScrolledCanvas +reset Lib/xdrlib.py /^ def reset(self):$/;" m class:Packer +reset Lib/xdrlib.py /^ def reset(self, data):$/;" m class:Unpacker +reset Lib/xml/dom/expatbuilder.py /^ def reset(self):$/;" m class:ExpatBuilder +reset Lib/xml/dom/expatbuilder.py /^ def reset(self):$/;" m class:ExpatBuilderNS +reset Lib/xml/dom/expatbuilder.py /^ def reset(self):$/;" m class:FragmentBuilder +reset Lib/xml/dom/expatbuilder.py /^ def reset(self):$/;" m class:FragmentBuilderNS +reset Lib/xml/dom/pulldom.py /^ def reset(self):$/;" m class:DOMEventStream +reset Lib/xml/sax/expatreader.py /^ def reset(self):$/;" m class:ExpatParser +reset Lib/xml/sax/xmlreader.py /^ def reset(self):$/;" m class:IncrementalParser +reset Tools/clinic/clinic.py /^ def reset(self) -> None:$/;" m class:DSLParser +reset Tools/peg_generator/pegen/tokenizer.py /^ def reset(self, index: Mark) -> None:$/;" m class:Tokenizer +reset_Breakpoint Lib/test/test_bdb.py /^def reset_Breakpoint():$/;" f +reset_Breakpoint Lib/test/test_pdb.py /^def reset_Breakpoint():$/;" f +reset_counters Lib/test/test_asyncio/utils.py /^ def reset_counters(self):$/;" m class:TestLoop +reset_data Lib/unittest/mock.py /^ def reset_data(*args, **kwargs):$/;" f function:mock_open +reset_help_menu_entries Lib/idlelib/editor.py /^ def reset_help_menu_entries(self):$/;" m class:EditorWindow +reset_lineno Tools/cases_generator/generate_cases.py /^ def reset_lineno(self) -> None:$/;" m class:Formatter +reset_mock Lib/unittest/mock.py /^ def reset_mock():$/;" f function:_setup_func +reset_mock Lib/unittest/mock.py /^ def reset_mock(self, visited=None,*, return_value=False, side_effect=False):$/;" m class:NonCallableMock +reset_mock Lib/unittest/mock.py /^ def reset_mock(self, \/, *args, **kwargs):$/;" m class:AsyncMockMixin +reset_parser_state_for_error_pass Parser/pegen.c /^reset_parser_state_for_error_pass(Parser *p)$/;" f file: +reset_retry_count Lib/urllib/request.py /^ def reset_retry_count(self):$/;" m class:AbstractDigestAuthHandler +reset_shell Lib/idlelib/idle_test/test_sidebar.py /^ def reset_shell(cls):$/;" m class:ShellSidebarTest +reset_signal_handlers Modules/_posixsubprocess.c /^reset_signal_handlers(const sigset_t *child_sigmask)$/;" f file: +reset_tzpath Lib/zoneinfo/__init__.py /^reset_tzpath = _tzpath.reset_tzpath$/;" v +reset_tzpath Lib/zoneinfo/_tzpath.py /^def reset_tzpath(to=None):$/;" f +reset_undo Lib/idlelib/editor.py /^ def reset_undo(self):$/;" m class:EditorWindow +reset_undo Lib/idlelib/iomenu.py /^ def reset_undo(self): pass$/;" m class:_io_binding.MyEditWin +reset_undo Lib/idlelib/iomenu.py /^ def reset_undo(self):$/;" m class:IOBinding +reset_undo Lib/idlelib/undo.py /^ def reset_undo(self):$/;" m class:UndoDelegator +resetbuffer Lib/code.py /^ def resetbuffer(self):$/;" m class:InteractiveConsole +resetcache Lib/idlelib/delegator.py /^ def resetcache(self):$/;" m class:Delegator +resetlocale Lib/locale.py /^def resetlocale(category=LC_ALL):$/;" f +resetoutput Lib/idlelib/pyshell.py /^ def resetoutput(self):$/;" m class:PyShell +resetperms Lib/tempfile.py /^ def resetperms(path):$/;" f function:TemporaryDirectory._rmtree.onexc +resetscreen Lib/turtle.py /^ resetscreen = reset$/;" v class:TurtleScreen +resetwarnings Lib/warnings.py /^def resetwarnings():$/;" f +resizable Lib/tkinter/__init__.py /^ resizable = wm_resizable$/;" v class:Wm +resize Lib/test/test_bytes.py /^ def resize(n):$/;" f function:ByteArrayTest.test_resize_forbidden +resize Lib/turtledemo/__main__.py /^ def resize(size=size):$/;" f function:DemoWindow.makeFontMenu +resize Modules/_ctypes/callproc.c /^resize(PyObject *self, PyObject *args)$/;" f file: +resize_buffer Modules/_io/bytesio.c /^resize_buffer(bytesio *self, size_t size)$/;" f file: +resize_buffer Modules/_io/stringio.c /^resize_buffer(stringio *self, size_t size)$/;" f file: +resize_compact Objects/unicodeobject.c /^resize_compact(PyObject *unicode, Py_ssize_t length)$/;" f file: +resize_copy Objects/unicodeobject.c /^resize_copy(PyObject *unicode, Py_ssize_t length)$/;" f file: +resize_inplace Objects/unicodeobject.c /^resize_inplace(PyObject *unicode, Py_ssize_t length)$/;" f file: +resizemode Lib/turtle.py /^ def resizemode(self, rmode=None):$/;" m class:TPen +resolution Include/cpython/pytime.h /^ double resolution;$/;" m struct:__anon176 +resolution Lib/test/test_telnetlib.py /^ def resolution(self):$/;" m class:MockSelector +resolve Lib/importlib/resources/_common.py /^def resolve(cand: Optional[Anchor]) -> types.ModuleType:$/;" f +resolve Lib/logging/config.py /^ def resolve(self, s):$/;" m class:BaseConfigurator +resolve Lib/pathlib.py /^ def resolve(self, strict=False):$/;" m class:Path +resolve Lib/pydoc.py /^def resolve(thing, forceload=0):$/;" f +resolve Modules/_xxinterpchannelsmodule.c /^ int resolve;$/;" m struct:_channelid_xid file: +resolve Modules/_xxinterpchannelsmodule.c /^ int resolve;$/;" m struct:channelid file: +resolve Tools/c-analyzer/c_parser/parser/_info.py /^ def resolve(self, kind, data, name, parent=None):$/;" m class:SourceInfo +resolve Tools/c-analyzer/c_parser/source.py /^def resolve(source, filename):$/;" f +resolveAndRemoveLabels Lib/test/support/bytecode_helper.py /^ def resolveAndRemoveLabels(self, insts):$/;" m class:CompilationStepTestCase +resolveEntity Lib/test/test_sax.py /^ def resolveEntity(self, publicId, systemId):$/;" m class:ExpatReaderTest.TestEntityRecorder +resolveEntity Lib/test/test_sax.py /^ def resolveEntity(self, publicId, systemId):$/;" m class:ExpatReaderTest.TestEntityResolver +resolveEntity Lib/xml/dom/xmlbuilder.py /^ def resolveEntity(self, publicId, systemId):$/;" m class:DOMEntityResolver +resolveEntity Lib/xml/sax/handler.py /^ def resolveEntity(self, publicId, systemId):$/;" m class:EntityResolver +resolveEntity Lib/xml/sax/saxutils.py /^ def resolveEntity(self, publicId, systemId):$/;" m class:XMLFilterBase +resolve_address Lib/test/test_timeout.py /^def resolve_address(host, port):$/;" f +resolve_bases Lib/types.py /^def resolve_bases(bases):$/;" f +resolve_columns Tools/c-analyzer/c_common/tables.py /^def resolve_columns(specs):$/;" f +resolve_decl Tools/c-analyzer/c_analyzer/analyze.py /^def resolve_decl(decl, typespecs, knowntypespecs, types):$/;" f +resolve_dir Lib/zipfile/_path/__init__.py /^ def resolve_dir(self, name):$/;" m class:CompleteDirs +resolve_dotted_attribute Lib/xmlrpc/server.py /^def resolve_dotted_attribute(obj, attr, allow_dotted_names=True):$/;" f +resolve_end Lib/test/test__xxinterpchannels.py /^ def resolve_end(self, end):$/;" m class:ChannelAction +resolve_entity Lib/test/test_pyexpat.py /^ def resolve_entity(context, base, system_id, public_id):$/;" f function:ForeignDTDTests.test_ignore_use_foreign_dtd +resolve_entity Lib/test/test_pyexpat.py /^ def resolve_entity(context, base, system_id, public_id):$/;" f function:ForeignDTDTests.test_use_foreign_dtd +resolve_filename Tools/c-analyzer/cpython/_files.py /^def resolve_filename(filename):$/;" f +resolve_filter Tools/c-analyzer/cpython/_capi.py /^def resolve_filter(ignored):$/;" f +resolve_format Tools/c-analyzer/cpython/_builtin_types.py /^def resolve_format(fmt):$/;" f +resolve_format Tools/c-analyzer/cpython/_capi.py /^def resolve_format(format):$/;" f +resolve_frozen_file Tools/build/freeze_modules.py /^def resolve_frozen_file(frozenid, destdir):$/;" f +resolve_group Tools/c-analyzer/c_parser/info.py /^ def resolve_group(cls, group):$/;" m class:KIND +resolve_interp Lib/test/test__xxinterpchannels.py /^ def resolve_interp(self, interp, other, extra):$/;" m class:ChannelAction +resolve_jump_offsets Python/flowgraph.c /^resolve_jump_offsets(basicblock *entryblock)$/;" f file: +resolve_line_numbers Python/flowgraph.c /^resolve_line_numbers(cfg_builder *g, int firstlineno)$/;" f file: +resolve_matcher Tools/c-analyzer/cpython/_builtin_types.py /^def resolve_matcher(showmodules=False):$/;" f +resolve_module_alias Python/import.c /^resolve_module_alias(const char *name, const struct _module_alias *aliases,$/;" f file: +resolve_modules Tools/build/freeze_modules.py /^def resolve_modules(modname, pyfile=None):$/;" f +resolve_name Lib/importlib/util.py /^def resolve_name(name, package):$/;" f +resolve_name Lib/pkgutil.py /^def resolve_name(name):$/;" f +resolve_name Python/import.c /^resolve_name(PyThreadState *tstate, PyObject *name, PyObject *globals, int level)$/;" f file: +resolve_parsed Tools/c-analyzer/c_parser/info.py /^def resolve_parsed(parsed):$/;" f +resolve_slotdups Objects/typeobject.c /^resolve_slotdups(PyTypeObject *type, PyObject *name)$/;" f file: +resolve_stdlib_file Lib/test/test_importlib/frozen/test_finder.py /^def resolve_stdlib_file(name, ispkg=False):$/;" f +resolve_stdlib_file Lib/test/test_importlib/frozen/test_loader.py /^def resolve_stdlib_file(name, ispkg=False):$/;" f +resolve_underflow Modules/_decimal/tests/deccheck.py /^ def resolve_underflow(self, t):$/;" m class:SkipHandler +resolve_width Tools/c-analyzer/c_common/tables.py /^ def resolve_width(self, default=None):$/;" m class:ColumnSpec +resource Lib/test/test_os.py /^ resource = None$/;" v +resource Lib/test/test_resource.py /^resource = import_helper.import_module('resource')$/;" v +resource Lib/test/test_selectors.py /^ resource = None$/;" v +resource_exec Modules/resource.c /^resource_exec(PyObject *module)$/;" f file: +resource_getpagesize Modules/clinic/resource.c.h /^resource_getpagesize(PyObject *module, PyObject *Py_UNUSED(ignored))$/;" f +resource_getpagesize_impl Modules/resource.c /^resource_getpagesize_impl(PyObject *module)$/;" f file: +resource_getrlimit Modules/clinic/resource.c.h /^resource_getrlimit(PyObject *module, PyObject *arg)$/;" f +resource_getrlimit_impl Modules/resource.c /^resource_getrlimit_impl(PyObject *module, int resource)$/;" f file: +resource_getrusage Modules/clinic/resource.c.h /^resource_getrusage(PyObject *module, PyObject *arg)$/;" f +resource_getrusage_impl Modules/resource.c /^resource_getrusage_impl(PyObject *module, int who)$/;" f file: +resource_info Lib/test/libregrtest/save_env.py /^ def resource_info(self):$/;" m class:saved_test_environment +resource_methods Modules/resource.c /^resource_methods[] = {$/;" v typeref:struct:PyMethodDef file: +resource_path Lib/importlib/resources/abc.py /^ def resource_path(self, resource: Any) -> NoReturn:$/;" m class:TraversableResources +resource_path Lib/importlib/resources/abc.py /^ def resource_path(self, resource: Text) -> Text:$/;" m class:ResourceReader +resource_path Lib/importlib/resources/readers.py /^ def resource_path(self, resource):$/;" m class:FileReader +resource_path Lib/importlib/resources/readers.py /^ def resource_path(self, resource):$/;" m class:NamespaceReader +resource_path Lib/test/test_importlib/resources/util.py /^ def resource_path(self, path_):$/;" m class:Reader +resource_path Lib/test/test_importlib/test_abc.py /^ def resource_path(self, *args, **kwargs):$/;" m class:ResourceReader +resource_prlimit Modules/clinic/resource.c.h /^resource_prlimit(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +resource_prlimit_impl Modules/resource.c /^resource_prlimit_impl(PyObject *module, pid_t pid, int resource,$/;" f file: +resource_setrlimit Modules/clinic/resource.c.h /^resource_setrlimit(PyObject *module, PyObject *const *args, Py_ssize_t nargs)$/;" f +resource_setrlimit_impl Modules/resource.c /^resource_setrlimit_impl(PyObject *module, int resource, PyObject *limits)$/;" f file: +resource_slots Modules/resource.c /^static struct PyModuleDef_Slot resource_slots[] = {$/;" v typeref:struct:PyModuleDef_Slot file: +resourcemodule Modules/resource.c /^static struct PyModuleDef resourcemodule = {$/;" v typeref:struct:PyModuleDef file: +resourcemodule Modules/resource.c /^static struct PyModuleDef resourcemodule;$/;" v typeref:struct:PyModuleDef file: +resourcemodule_clear Modules/resource.c /^resourcemodule_clear(PyObject *m) {$/;" f file: +resourcemodule_free Modules/resource.c /^resourcemodule_free(void *m) {$/;" f file: +resourcemodule_traverse Modules/resource.c /^resourcemodule_traverse(PyObject *m, visitproc visit, void *arg) {$/;" f file: +resourcemodulestate Modules/resource.c /^} resourcemodulestate;$/;" t typeref:struct:__anon571 file: +resources Lib/importlib/resources/simple.py /^ def resources(self) -> List[str]:$/;" m class:SimpleReader +resources Lib/test/libregrtest/save_env.py /^ resources = ('sys.argv', 'cwd', 'sys.stdin', 'sys.stdout', 'sys.stderr',$/;" v class:saved_test_environment +resources_list Lib/test/libregrtest/cmdline.py /^def resources_list(string):$/;" f +respdata Lib/test/test_smtplib.py /^ respdata = b'250 OK' + (b'.' * smtplib._MAXLINE * 2) + b'\\n'$/;" v class:TooLongLineTests +response Lib/imaplib.py /^ def response(self, code):$/;" m class:IMAP4 +response_class Lib/http/client.py /^ response_class = HTTPResponse$/;" v class:HTTPConnection +response_queue Lib/idlelib/rpc.py /^response_queue = queue.Queue(0)$/;" v +responses Lib/http/client.py /^responses = {v: v.phrase for v in http.HTTPStatus.__members__.values()}$/;" v +responses Lib/http/server.py /^ responses = {$/;" v class:BaseHTTPRequestHandler +rest Include/internal/pycore_ast.h /^ identifier rest;$/;" m struct:_pattern::__anon107::__anon111 +rest Include/internal/pycore_ast_state.h /^ PyObject *rest;$/;" m struct:ast_state +rest Objects/exceptions.c /^ PyObject *rest;$/;" m struct:__anon735 file: +restOfCmdLine PC/launcher2.c /^ const wchar_t *restOfCmdLine;$/;" m struct:__anon284 file: +restart_line Lib/idlelib/pyshell.py /^def restart_line(width, filename): # See bpo-38141.$/;" f +restart_shell Lib/idlelib/pyshell.py /^ def restart_shell(self, event=None):$/;" m class:PyShell +restart_subprocess Lib/idlelib/pyshell.py /^ def restart_subprocess(self, with_cwd=False, filename=''):$/;" m class:ModifiedInterpreter +restart_subprocess_debugger Lib/idlelib/debugger_r.py /^def restart_subprocess_debugger(rpcclt):$/;" f +restartvar Lib/idlelib/idle_test/test_query.py /^ restartvar = Var()$/;" v class:CustomRunEntryokTest.Dummy_CustomRun +restore Doc/includes/ndiff.py /^def restore(which):$/;" f +restore Lib/asyncio/base_events.py /^ async def restore(self):$/;" m class:_SendfileFallbackProtocol +restore Lib/difflib.py /^def restore(delta, which):$/;" f +restore Lib/test/pickletester.py /^ def restore(self):$/;" m class:ExtensionSaver +restore Lib/test/support/__init__.py /^ def restore(self):$/;" m class:SaveSignals +restore Lib/test/test_unittest/test_discovery.py /^ def restore():$/;" f function:TestDiscovery.setup_import_issue_tests +restore Lib/test/test_unittest/test_discovery.py /^ def restore():$/;" f function:TestDiscovery.test_discovery_from_dotted_path_builtin_modules +restore Lib/test/test_unittest/test_program.py /^ def restore():$/;" f function:TestCommandLineArgs._patch_isfile +restore Lib/test/test_unittest/test_program.py /^ def restore():$/;" f function:TestCommandLineArgs.testCatchBreakInstallsHandler +restore Tools/c-analyzer/c_common/logging.py /^ def restore():$/;" f function:hide_emit_errors +restoreParseArgs Lib/test/test_unittest/test_program.py /^ def restoreParseArgs():$/;" f function:Test_TestProgram.testNoExit +restore___import__ Lib/test/libregrtest/save_env.py /^ def restore___import__(self, import_):$/;" m class:saved_test_environment +restore__testsinglephase Lib/test/test_import/__init__.py /^ def restore__testsinglephase(*, _orig=_testsinglephase):$/;" f +restore_asyncio_events__event_loop_policy Lib/test/libregrtest/save_env.py /^ def restore_asyncio_events__event_loop_policy(self, policy):$/;" m class:saved_test_environment +restore_asyncore_socket_map Lib/test/libregrtest/save_env.py /^ def restore_asyncore_socket_map(self, saved_map):$/;" m class:saved_test_environment +restore_crossinterp_data Modules/_testcapimodule.c /^restore_crossinterp_data(PyObject *self, PyObject *args)$/;" f file: +restore_cwd Lib/test/libregrtest/save_env.py /^ def restore_cwd(self, saved_cwd):$/;" m class:saved_test_environment +restore_default_excepthook Lib/test/test_threading.py /^def restore_default_excepthook(testcase):$/;" f +restore_environ Lib/test/test_urllib2_localnet.py /^ def restore_environ(old_environ):$/;" f function:ProxyAuthTests.setUp +restore_environ Lib/test/test_urllib2_localnet.py /^ def restore_environ(old_environ):$/;" f function:TestUrlopen.setUp +restore_event Lib/idlelib/parenmatch.py /^ def restore_event(self, event=None):$/;" m class:ParenMatch +restore_file_breaks Lib/idlelib/pyshell.py /^ def restore_file_breaks(self):$/;" m class:PyShellEditorWindow +restore_files Lib/test/libregrtest/save_env.py /^ def restore_files(self, saved_value):$/;" m class:saved_test_environment +restore_fstring_buffers Parser/tokenizer.c /^restore_fstring_buffers(struct tok_state *tok)$/;" f file: +restore_inlined_comprehension_locals Python/compile.c /^restore_inlined_comprehension_locals(struct compiler *c, location loc,$/;" f file: +restore_isdir Lib/test/test_unittest/test_discovery.py /^ def restore_isdir():$/;" f function:TestDiscovery.test_discover +restore_isdir Lib/test/test_unittest/test_discovery.py /^ def restore_isdir():$/;" f function:TestDiscovery.test_find_tests +restore_isdir Lib/test/test_unittest/test_discovery.py /^ def restore_isdir():$/;" f function:TestDiscovery.test_find_tests_customize_via_package_pattern +restore_isdir Lib/test/test_unittest/test_discovery.py /^ def restore_isdir():$/;" f function:TestDiscovery.test_find_tests_default_calls_package_load_tests +restore_isdir Lib/test/test_unittest/test_discovery.py /^ def restore_isdir():$/;" f function:TestDiscovery.test_find_tests_socket +restore_isdir Lib/test/test_unittest/test_discovery.py /^ def restore_isdir():$/;" f function:TestDiscovery.test_find_tests_with_package +restore_isfile Lib/test/test_unittest/test_discovery.py /^ def restore_isfile():$/;" f function:TestDiscovery.test_discover +restore_isfile Lib/test/test_unittest/test_discovery.py /^ def restore_isfile():$/;" f function:TestDiscovery.test_find_tests +restore_isfile Lib/test/test_unittest/test_discovery.py /^ def restore_isfile():$/;" f function:TestDiscovery.test_find_tests_customize_via_package_pattern +restore_isfile Lib/test/test_unittest/test_discovery.py /^ def restore_isfile():$/;" f function:TestDiscovery.test_find_tests_default_calls_package_load_tests +restore_isfile Lib/test/test_unittest/test_discovery.py /^ def restore_isfile():$/;" f function:TestDiscovery.test_find_tests_socket +restore_isfile Lib/test/test_unittest/test_discovery.py /^ def restore_isfile():$/;" f function:TestDiscovery.test_find_tests_with_package +restore_listdir Lib/test/test_unittest/test_discovery.py /^ def restore_listdir():$/;" f function:TestDiscovery.test_find_tests +restore_listdir Lib/test/test_unittest/test_discovery.py /^ def restore_listdir():$/;" f function:TestDiscovery.test_find_tests_customize_via_package_pattern +restore_listdir Lib/test/test_unittest/test_discovery.py /^ def restore_listdir():$/;" f function:TestDiscovery.test_find_tests_default_calls_package_load_tests +restore_listdir Lib/test/test_unittest/test_discovery.py /^ def restore_listdir():$/;" f function:TestDiscovery.test_find_tests_socket +restore_listdir Lib/test/test_unittest/test_discovery.py /^ def restore_listdir():$/;" f function:TestDiscovery.test_find_tests_with_package +restore_locale Lib/test/libregrtest/save_env.py /^ def restore_locale(self, saved):$/;" m class:saved_test_environment +restore_logging__handlerList Lib/test/libregrtest/save_env.py /^ def restore_logging__handlerList(self, saved_handlerList):$/;" m class:saved_test_environment +restore_logging__handlers Lib/test/libregrtest/save_env.py /^ def restore_logging__handlers(self, saved_handlers):$/;" m class:saved_test_environment +restore_multiprocessing_process__dangling Lib/test/libregrtest/save_env.py /^ def restore_multiprocessing_process__dangling(self, saved):$/;" m class:saved_test_environment +restore_os_environ Lib/test/libregrtest/save_env.py /^ def restore_os_environ(self, saved_environ):$/;" m class:saved_test_environment +restore_path Lib/test/test_unittest/test_discovery.py /^ def restore_path():$/;" f function:TestDiscovery.test_discover +restore_shutil_archive_formats Lib/test/libregrtest/save_env.py /^ def restore_shutil_archive_formats(self, saved):$/;" m class:saved_test_environment +restore_shutil_unpack_formats Lib/test/libregrtest/save_env.py /^ def restore_shutil_unpack_formats(self, saved):$/;" m class:saved_test_environment +restore_stdout Lib/test/libregrtest/setup.py /^ def restore_stdout():$/;" f function:replace_stdout +restore_sys_argv Lib/test/libregrtest/save_env.py /^ def restore_sys_argv(self, saved_argv):$/;" m class:saved_test_environment +restore_sys_gettrace Lib/test/libregrtest/save_env.py /^ def restore_sys_gettrace(self, trace_fxn):$/;" m class:saved_test_environment +restore_sys_path Lib/test/libregrtest/save_env.py /^ def restore_sys_path(self, saved_path):$/;" m class:saved_test_environment +restore_sys_path_hooks Lib/test/libregrtest/save_env.py /^ def restore_sys_path_hooks(self, saved_hooks):$/;" m class:saved_test_environment +restore_sys_stderr Lib/test/libregrtest/save_env.py /^ def restore_sys_stderr(self, saved_stderr):$/;" m class:saved_test_environment +restore_sys_stdin Lib/test/libregrtest/save_env.py /^ def restore_sys_stdin(self, saved_stdin):$/;" m class:saved_test_environment +restore_sys_stdout Lib/test/libregrtest/save_env.py /^ def restore_sys_stdout(self, saved_stdout):$/;" m class:saved_test_environment +restore_sys_warnoptions Lib/test/libregrtest/save_env.py /^ def restore_sys_warnoptions(self, saved_options):$/;" m class:saved_test_environment +restore_sysconfig__CONFIG_VARS Lib/test/libregrtest/save_env.py /^ def restore_sysconfig__CONFIG_VARS(self, saved):$/;" m class:saved_test_environment +restore_sysconfig__INSTALL_SCHEMES Lib/test/libregrtest/save_env.py /^ def restore_sysconfig__INSTALL_SCHEMES(self, saved):$/;" m class:saved_test_environment +restore_threading__dangling Lib/test/libregrtest/save_env.py /^ def restore_threading__dangling(self, saved):$/;" m class:saved_test_environment +restore_traceback Lib/test/test_unittest/test_result.py /^def restore_traceback():$/;" f +restore_urllib_requests__opener Lib/test/libregrtest/save_env.py /^ def restore_urllib_requests__opener(self, opener):$/;" m class:saved_test_environment +restore_urllib_requests__url_tempfiles Lib/test/libregrtest/save_env.py /^ def restore_urllib_requests__url_tempfiles(self, tempfiles):$/;" m class:saved_test_environment +restore_warnings_filters Lib/test/libregrtest/save_env.py /^ def restore_warnings_filters(self, saved_filters):$/;" m class:saved_test_environment +restore_warnings_showwarning Lib/test/libregrtest/save_env.py /^ def restore_warnings_showwarning(self, fxn):$/;" m class:saved_test_environment +restrict_walk_packages Lib/test/test_pydoc.py /^ def restrict_walk_packages(self, path=None):$/;" m class:PydocBaseTest +restype Modules/_ctypes/ctypes.h /^ PyObject *restype; \/* CDataObject or NULL *\/$/;" m struct:__anon495 +restype Modules/_ctypes/ctypes.h /^ PyObject *restype;$/;" m struct:__anon492 +restype Modules/_ctypes/ctypes.h /^ PyObject *restype;$/;" m struct:__anon493 +result Lib/asyncio/futures.py /^ def result(self):$/;" m class:Future +result Lib/concurrent/futures/_base.py /^ def result(self, timeout=None):$/;" m class:Future +result Lib/idlelib/config_key.py /^ def result(self):$/;" m class:GetKeysWindow +result Lib/idlelib/config_key.py /^ def result(self, value):$/;" m class:GetKeysWindow +result Lib/test/_test_multiprocessing.py /^ result = values[:]$/;" v class:_TestRemoteManager +result Lib/test/badsyntax_future3.py /^result = f(2)(4)$/;" v +result Lib/test/badsyntax_future4.py /^result = f(2)(4)$/;" v +result Lib/test/badsyntax_future5.py /^result = f(2)(4)$/;" v +result Lib/test/badsyntax_future6.py /^result = f(2)(4)$/;" v +result Lib/test/badsyntax_future7.py /^result = f(2)(4)$/;" v +result Lib/test/future_test1.py /^result = f(2)(4)$/;" v +result Lib/test/future_test2.py /^result = f(2)(4)$/;" v +result Lib/test/test_asyncio/test_futures.py /^ def result(self):$/;" m class:DuckFuture +result Lib/test/test_asyncio/test_runners.py /^ def result(self, *args, **kwargs):$/;" m class:RunTests.test_asyncio_run_without_uncancel.Task +result Lib/test/test_ctypes/test_structures.py /^ result = func(test4)$/;" v class:StructureTestCase.test_union_by_value.Test5 +result Lib/test/test_ctypes/test_structures.py /^ result = func(test5)$/;" v class:StructureTestCase.test_union_by_value.Test5 +result Lib/test/test_ctypes/test_structures.py /^ result = func(test6)$/;" v class:StructureTestCase.test_bitfield_by_value.Test6 +result Lib/test/test_ctypes/test_structures.py /^ result = func(test8)$/;" v class:StructureTestCase.test_bitfield_by_value.Test8 +result Lib/test/test_statistics.py /^ result = type(expected)(self.func(data))$/;" v class:UnivariateCommonMixin.test_type_of_data_element.MyFloat +result Lib/test/test_threading.py /^ result = set_async_exc(tid, exception)$/;" v class:ThreadTests.test_PyThreadState_SetAsyncExc.AsyncExc +result Lib/test/test_unittest/test_case.py /^ result = unittest.TestResult()$/;" v class:.testSkippingEverywhere.Test4 +result Lib/test/test_unittest/test_case.py /^ result = unittest.TestResult()$/;" v class:.testSystemExit.Test4 +result Lib/test/test_unittest/test_program.py /^ result = None$/;" v class:InitialisableProgram +result Lib/test/test_unittest/testmock/testcallable.py /^ result = instance()$/;" v class:TestCallable.test_patch_spec_callable_class.Multi +result Lib/test/test_weakref.py /^ result = None$/;" v class:ReferencesTestCase.test_proxy_deletion.Foo +result Lib/xdrlib.py /^ def result(self, value):$/;" f function:raise_conversion_error +result Modules/_ctypes/callproc.c /^union result {$/;" u file: +result Modules/_functoolsmodule.c /^ PyObject *key, *result;$/;" m struct:lru_list_elem file: +result Modules/itertoolsmodule.c /^ PyObject *result; \/* most recently returned result tuple *\/$/;" m struct:__anon413 file: +result Modules/itertoolsmodule.c /^ PyObject *result; \/* most recently returned result tuple *\/$/;" m struct:__anon414 file: +result Modules/itertoolsmodule.c /^ PyObject *result; \/* most recently returned result tuple *\/$/;" m struct:__anon415 file: +result Modules/itertoolsmodule.c /^ PyObject *result; \/* most recently returned result tuple *\/$/;" m struct:__anon416 file: +result Modules/itertoolsmodule.c /^ PyObject *result;$/;" m struct:__anon422 file: +result Modules/overlapped.c /^ PyObject *result;$/;" m struct:__anon567::__anon568::__anon569 file: +result Modules/overlapped.c /^ PyObject* result;$/;" m struct:__anon567::__anon568::__anon570 file: +result Modules/socketmodule.c /^ Py_ssize_t result;$/;" m struct:sock_recv file: +result Modules/socketmodule.c /^ Py_ssize_t result;$/;" m struct:sock_recvfrom file: +result Modules/socketmodule.c /^ Py_ssize_t result;$/;" m struct:sock_send file: +result Modules/socketmodule.c /^ Py_ssize_t result;$/;" m struct:sock_sendto file: +result Modules/socketmodule.c /^ SOCKET_T result;$/;" m struct:sock_accept file: +result Modules/socketmodule.c /^ ssize_t result;$/;" m struct:sock_recvmsg file: +result Modules/socketmodule.c /^ ssize_t result;$/;" m struct:sock_sendmsg file: +result Parser/pegen.h /^ void *result;$/;" m struct:__anon666 +result Python/bltinmodule.c /^ PyObject *result;$/;" m struct:__anon684 file: +resultFactory Lib/test/test_unittest/test_runner.py /^def resultFactory(*_):$/;" f +resultFactory Lib/test/test_unittest/test_setups.py /^def resultFactory(*_):$/;" f +result_2004_dates Lib/test/test_calendar.py /^ [[['12\/29\/03 12\/30\/03 12\/31\/03 01\/01\/04 01\/02\/04 01\/03\/04 01\/04\/04',$/;" v +result_2004_days Lib/test/test_calendar.py /^result_2004_days = [$/;" v +result_check Lib/test/test_math.py /^def result_check(expected, got, ulp_tol=5, abs_tol=0.0):$/;" f +result_is_file Lib/wsgiref/handlers.py /^ def result_is_file(self):$/;" m class:BaseHandler +result_iterator Lib/concurrent/futures/_base.py /^ def result_iterator():$/;" f function:Executor.map +result_token_with_metadata Parser/action_helpers.c /^result_token_with_metadata(Parser *p, void *result, PyObject *metadata)$/;" f file: +resultclass Lib/unittest/runner.py /^ resultclass = TextTestResult$/;" v class:TextTestRunner +results Lib/trace.py /^ def results(self):$/;" m class:Trace +resume Lib/asyncio/sslproto.py /^ def resume():$/;" f function:SSLProtocol._resume_reading +resume Tools/c-analyzer/c_parser/parser/_info.py /^ def resume(self, remainder=None):$/;" m class:SourceInfo +resume_reading Lib/asyncio/proactor_events.py /^ def resume_reading(self):$/;" m class:_ProactorReadPipeTransport +resume_reading Lib/asyncio/selector_events.py /^ def resume_reading(self):$/;" m class:_SelectorTransport +resume_reading Lib/asyncio/sslproto.py /^ def resume_reading(self):$/;" m class:_SSLProtocolTransport +resume_reading Lib/asyncio/transports.py /^ def resume_reading(self):$/;" m class:ReadTransport +resume_reading Lib/asyncio/unix_events.py /^ def resume_reading(self):$/;" m class:_UnixReadPipeTransport +resume_writing Lib/asyncio/base_events.py /^ def resume_writing(self):$/;" m class:_SendfileFallbackProtocol +resume_writing Lib/asyncio/base_subprocess.py /^ def resume_writing(self):$/;" m class:WriteSubprocessPipeProto +resume_writing Lib/asyncio/protocols.py /^ def resume_writing(self):$/;" m class:BaseProtocol +resume_writing Lib/asyncio/sslproto.py /^ def resume_writing(self):$/;" m class:SSLProtocol +resume_writing Lib/asyncio/streams.py /^ def resume_writing(self):$/;" m class:FlowControlMixin +resurrected Lib/test/test_gc.py /^ resurrected = 0$/;" v class:GCTests.test_resurrection_only_happens_once_per_object.Lazarus +resurrected_instances Lib/test/test_gc.py /^ resurrected_instances = []$/;" v class:GCTests.test_resurrection_is_transitive.Lazarus +resurrected_instances Lib/test/test_gc.py /^ resurrected_instances = []$/;" v class:GCTests.test_resurrection_only_happens_once_per_object.Lazarus +ret Lib/idlelib/debugger.py /^ def ret(self):$/;" m class:Debugger +ret Lib/test/test_ctypes/test_win32.py /^ ret = ReturnRect(i, rect, pointer(rect), pt, rect,$/;" v class:Structures.test_struct_by_value.RECT +retr Lib/poplib.py /^ def retr(self, which):$/;" m class:POP3 +retr Lib/test/test_ftplib.py /^ def retr():$/;" f function:TestIPv6Environment.test_transfer +retrbinary Lib/ftplib.py /^ def retrbinary(self, cmd, callback, blocksize=8192, rest=None):$/;" m class:FTP +retreat Objects/codeobject.c /^retreat(PyCodeAddressRange *bounds)$/;" f file: +retrfile Lib/test/test_urllib.py /^ def retrfile(self, file, type):$/;" m class:FakeFTPMixin.fakeftp.FakeFtpWrapper +retrfile Lib/test/test_urllib2.py /^ def retrfile(self, filename, filetype):$/;" m class:HandlerTests.test_ftp.MockFTPWrapper +retrfile Lib/urllib/request.py /^ def retrfile(self, file, type):$/;" m class:ftpwrapper +retrieve Lib/urllib/request.py /^ def retrieve(self, url, filename=None, reporthook=None, data=None):$/;" m class:URLopener +retrlines Lib/ftplib.py /^ def retrlines(self, cmd, callback = None):$/;" m class:FTP +retry_http_basic_auth Lib/urllib/request.py /^ def retry_http_basic_auth(self, host, req, realm):$/;" m class:AbstractBasicAuthHandler +retry_http_basic_auth Lib/urllib/request.py /^ def retry_http_basic_auth(self, url, realm, data=None):$/;" m class:FancyURLopener +retry_http_digest_auth Lib/urllib/request.py /^ def retry_http_digest_auth(self, req, auth):$/;" m class:AbstractDigestAuthHandler +retry_https_basic_auth Lib/urllib/request.py /^ def retry_https_basic_auth(self, url, realm, data=None):$/;" m class:FancyURLopener +retry_proxy_http_basic_auth Lib/urllib/request.py /^ def retry_proxy_http_basic_auth(self, url, realm, data=None):$/;" m class:FancyURLopener +retry_proxy_https_basic_auth Lib/urllib/request.py /^ def retry_proxy_https_basic_auth(self, url, realm, data=None):$/;" m class:FancyURLopener +return_42 Lib/test/test_asyncio/test_waitfor.py /^ async def return_42():$/;" f function:AsyncioWaitForTest.test_wait_for_cancel_suppressed +return_TestCase Lib/test/test_unittest/test_loader.py /^ def return_TestCase():$/;" f function:Test_TestLoader.test_loadTestsFromName__callable__TestCase_instance +return_TestCase Lib/test/test_unittest/test_loader.py /^ def return_TestCase():$/;" f function:Test_TestLoader.test_loadTestsFromName__callable__TestCase_instance_ProperSuiteClass +return_TestCase Lib/test/test_unittest/test_loader.py /^ def return_TestCase():$/;" f function:Test_TestLoader.test_loadTestsFromNames__callable__TestCase_instance +return_TestSuite Lib/test/test_unittest/test_loader.py /^ def return_TestSuite():$/;" f function:Test_TestLoader.test_loadTestsFromName__callable__TestSuite +return_TestSuite Lib/test/test_unittest/test_loader.py /^ def return_TestSuite():$/;" f function:Test_TestLoader.test_loadTestsFromNames__callable__TestSuite +return_annotation Lib/inspect.py /^ def return_annotation(self):$/;" m class:Signature +return_converter_init Tools/clinic/clinic.py /^ def return_converter_init(self) -> None: ...$/;" m class:CReturnConverter +return_converters Tools/clinic/clinic.py /^ return_converters = []$/;" v +return_event Lib/tkinter/simpledialog.py /^ def return_event(self, event):$/;" m class:SimpleDialog +return_four_if_spawn Lib/test/_test_multiprocessing.py /^ def return_four_if_spawn():$/;" f function:TestInternalDecorators.test_only_run_in_spawn_testsuite +return_genexp Lib/test/test_compile.py /^ def return_genexp():$/;" f function:TestSpecifics.test_line_number_genexp +return_none Modules/_testcapimodule.c /^return_none(void *unused)$/;" f file: +return_null_without_error Modules/_testcapimodule.c /^return_null_without_error(PyObject *self, PyObject *args)$/;" f file: +return_offset Include/internal/pycore_frame.h /^ uint16_t return_offset;$/;" m struct:_PyInterpreterFrame +return_ok Lib/http/cookiejar.py /^ def return_ok(self, cookie, request):$/;" m class:CookiePolicy +return_ok Lib/http/cookiejar.py /^ def return_ok(self, cookie, request):$/;" m class:DefaultCookiePolicy +return_ok_domain Lib/http/cookiejar.py /^ def return_ok_domain(self, cookie, request):$/;" m class:DefaultCookiePolicy +return_ok_expires Lib/http/cookiejar.py /^ def return_ok_expires(self, cookie, request):$/;" m class:DefaultCookiePolicy +return_ok_port Lib/http/cookiejar.py /^ def return_ok_port(self, cookie, request):$/;" m class:DefaultCookiePolicy +return_ok_secure Lib/http/cookiejar.py /^ def return_ok_secure(self, cookie, request):$/;" m class:DefaultCookiePolicy +return_ok_verifiability Lib/http/cookiejar.py /^ def return_ok_verifiability(self, cookie, request):$/;" m class:DefaultCookiePolicy +return_ok_version Lib/http/cookiejar.py /^ def return_ok_version(self, cookie, request):$/;" m class:DefaultCookiePolicy +return_result_with_error Modules/_testcapimodule.c /^return_result_with_error(PyObject *self, PyObject *args)$/;" f file: +return_self Objects/stringlib/transmogrify.h /^return_self(PyObject *self)$/;" f +return_stmt_rule Parser/parser.c /^return_stmt_rule(Parser *p)$/;" f file: +return_stmt_type Parser/parser.c 95;" d file: +return_true Lib/test/test_descr.py /^ def return_true(self, thing=None):$/;" f function:.test_special_method_lookup +return_value Lib/test/support/_hypothesis_stubs/__init__.py /^ return_value = 5$/;" v class:HealthCheck +return_value Lib/unittest/mock.py /^ return_value = property(__get_return_value, __set_return_value,$/;" v class:NonCallableMock +return_wrong Lib/test/test_unittest/test_loader.py /^ def return_wrong():$/;" f function:Test_TestLoader.test_loadTestsFromName__callable__wrong_type +return_wrong Lib/test/test_unittest/test_loader.py /^ def return_wrong():$/;" f function:Test_TestLoader.test_loadTestsFromNames__callable__wrong_type +returncode Lib/asyncio/subprocess.py /^ def returncode(self):$/;" m class:Process +returner Lib/test/test_scope.py /^ def returner():$/;" f function:ScopeTests.testComplexDefinitions.makeReturner +returner Lib/test/test_scope.py /^ def returner():$/;" f function:ScopeTests.testComplexDefinitions.makeReturner2 +returns Include/internal/pycore_ast.h /^ expr_ty returns;$/;" m struct:_mod::__anon46::__anon50 +returns Include/internal/pycore_ast.h /^ expr_ty returns;$/;" m struct:_stmt::__anon51::__anon52 +returns Include/internal/pycore_ast.h /^ expr_ty returns;$/;" m struct:_stmt::__anon51::__anon53 +returns Include/internal/pycore_ast_state.h /^ PyObject *returns;$/;" m struct:ast_state +returns Tools/c-analyzer/c_parser/info.py /^ def returns(self):$/;" m class:Signature +retval Python/bytecodes.c /^static PyObject *exit_func, *lasti, *val, *retval, *obj, *iter;$/;" v file: +reuse Lib/test/support/_hypothesis_stubs/__init__.py /^ reuse = 1$/;" v class:Phase +rev Lib/test/test_descr.py /^ def rev(self):$/;" m class:.test_basic_inheritance.madstring +rev Lib/test/test_descr.py /^ def rev(self):$/;" m class:.test_basic_inheritance.madtuple +rev Lib/test/test_descr.py /^ def rev(self):$/;" m class:.test_basic_inheritance.madunicode +revcmp Lib/test/list_tests.py /^ def revcmp(a, b):$/;" f function:CommonTest.test_sort +reveal_type Lib/typing.py /^def reveal_type[T](obj: T, \/) -> T:$/;" f +reverse Lib/_collections_abc.py /^ def reverse(self):$/;" m class:MutableSequence +reverse Lib/collections/__init__.py /^ def reverse(self):$/;" m class:UserList +reverse Lib/fractions.py /^ def reverse(b, a):$/;" f function:Fraction._operator_fallbacks +reverse_mapping Lib/test/test_pickle.py /^def reverse_mapping(module, name):$/;" f +reverse_order Lib/pstats.py /^ def reverse_order(self):$/;" m class:Stats +reverse_pointer Lib/ipaddress.py /^ def reverse_pointer(self):$/;" m class:_IPAddressBase +reverse_slice Objects/listobject.c /^reverse_slice(PyObject **lo, PyObject **hi)$/;" f file: +reverse_sortslice Objects/listobject.c /^reverse_sortslice(sortslice *s, Py_ssize_t n)$/;" f file: +reverse_three_way_cmp Lib/test/test_unittest/test_loader.py /^ def reverse_three_way_cmp(a, b):$/;" m class:TestObsoleteFunctions +reversed_cmp Lib/test/test_unittest/test_loader.py /^ def reversed_cmp(x, y):$/;" f function:Test_TestLoader.test_sortTestMethodsUsing__getTestCaseNames +reversed_cmp Lib/test/test_unittest/test_loader.py /^ def reversed_cmp(x, y):$/;" f function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromModule +reversed_cmp Lib/test/test_unittest/test_loader.py /^ def reversed_cmp(x, y):$/;" f function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromName +reversed_cmp Lib/test/test_unittest/test_loader.py /^ def reversed_cmp(x, y):$/;" f function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromNames +reversed_cmp Lib/test/test_unittest/test_loader.py /^ def reversed_cmp(x, y):$/;" f function:Test_TestLoader.test_sortTestMethodsUsing__loadTestsFromTestCase +reversed_dealloc Objects/enumobject.c /^reversed_dealloc(reversedobject *ro)$/;" f file: +reversed_len Objects/enumobject.c /^reversed_len(reversedobject *ro, PyObject *Py_UNUSED(ignored))$/;" f file: +reversed_new Objects/clinic/enumobject.c.h /^reversed_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)$/;" f +reversed_new_impl Objects/enumobject.c /^reversed_new_impl(PyTypeObject *type, PyObject *seq)$/;" f file: +reversed_next Objects/enumobject.c /^reversed_next(reversedobject *ro)$/;" f file: +reversed_reduce Objects/enumobject.c /^reversed_reduce(reversedobject *ro, PyObject *Py_UNUSED(ignored))$/;" f file: +reversed_setstate Objects/enumobject.c /^reversed_setstate(reversedobject *ro, PyObject *state)$/;" f file: +reversed_traverse Objects/enumobject.c /^reversed_traverse(reversedobject *ro, visitproc visit, void *arg)$/;" f file: +reversed_vectorcall Objects/enumobject.c /^reversed_vectorcall(PyObject *type, PyObject * const*args,$/;" f file: +reversediter_methods Objects/enumobject.c /^static PyMethodDef reversediter_methods[] = {$/;" v file: +reversedobject Objects/enumobject.c /^} reversedobject;$/;" t typeref:struct:__anon728 file: +revert Lib/http/cookiejar.py /^ def revert(self, filename=None,$/;" m class:FileCookieJar +revise Lib/test/test_inspect.py /^def revise(filename, *args):$/;" f +rewind Lib/aifc.py /^ def rewind(self):$/;" m class:Aifc_read +rewind Lib/gzip.py /^ def rewind(self):$/;" m class:GzipFile +rewind Lib/sunau.py /^ def rewind(self):$/;" m class:Au_read +rewind Lib/wave.py /^ def rewind(self):$/;" m class:Wave_read +rewrite_file Lib/test/test_importlib/test_pkg_import.py /^ def rewrite_file(self, contents):$/;" m class:TestImport +rewritepythondir Tools/unicode/gencodec.py /^def rewritepythondir(dir, dirprefix='', comments=1):$/;" f +rfc2231_continuation Lib/email/utils.py /^rfc2231_continuation = re.compile(r'^(?P\\w+)\\*((?P[0-9]+)\\*?)?$',$/;" v +rfc_atext_chars Lib/test/test_email/test__header_value_parser.py /^ rfc_atext_chars = (string.ascii_letters + string.digits +$/;" v class:TestParser +rfc_dtext_chars Lib/test/test_email/test__header_value_parser.py /^ rfc_dtext_chars = rfc_printable_ascii.translate(str.maketrans('','',r'\\[]'))$/;" v class:TestParser +rfc_printable_ascii Lib/test/test_email/test__header_value_parser.py /^ rfc_printable_ascii = bytes(range(33, 127)).decode('ascii')$/;" v class:TestParser +rfind Lib/collections/__init__.py /^ def rfind(self, sub, start=0, end=_sys.maxsize):$/;" m class:UserString +rfind Objects/stringlib/find.h /^STRINGLIB(rfind)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,$/;" f +rfind_char Objects/stringlib/fastsearch.h /^STRINGLIB(rfind_char)(const STRINGLIB_CHAR* s, Py_ssize_t n, STRINGLIB_CHAR ch)$/;" f +rfind_slice Objects/stringlib/find.h /^STRINGLIB(rfind_slice)(const STRINGLIB_CHAR* str, Py_ssize_t str_len,$/;" f +rfind_test_no_match_single_character Tools/stringbench/stringbench.py /^def rfind_test_no_match_single_character(STR):$/;" f +rfind_test_no_match_two_character Tools/stringbench/stringbench.py /^def rfind_test_no_match_two_character(STR):$/;" f +rfind_test_no_match_two_character_bis Tools/stringbench/stringbench.py /^def rfind_test_no_match_two_character_bis(STR):$/;" f +rfind_test_quick_match_single_character Tools/stringbench/stringbench.py /^def rfind_test_quick_match_single_character(STR):$/;" f +rfind_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def rfind_test_quick_match_two_characters(STR):$/;" f +rfind_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def rfind_test_slow_match_100_characters(STR):$/;" f +rfind_test_slow_match_100_characters_bis Tools/stringbench/stringbench.py /^def rfind_test_slow_match_100_characters_bis(STR):$/;" f +rfind_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def rfind_test_slow_match_two_characters(STR):$/;" f +rfind_test_slow_match_two_characters_bis Tools/stringbench/stringbench.py /^def rfind_test_slow_match_two_characters_bis(STR):$/;" f +rgb_to_hls Lib/colorsys.py /^def rgb_to_hls(r, g, b):$/;" f +rgb_to_hsv Lib/colorsys.py /^def rgb_to_hsv(r, g, b):$/;" f +rgb_to_yiq Lib/colorsys.py /^def rgb_to_yiq(r, g, b):$/;" f +rglob Lib/pathlib.py /^ def rglob(self, pattern, *, case_sensitive=None):$/;" m class:Path +rglob Lib/test/test_glob.py /^ def rglob(self, *parts, **kwargs):$/;" m class:GlobTests +rglob Lib/zipfile/_path/__init__.py /^ def rglob(self, pattern):$/;" m class:Path +rglob PC/layout/support/filesets.py /^def rglob(root, patterns, condition=None):$/;" f +rhs Python/bytecodes.c /^static PyObject *container, *start, *stop, *v, *lhs, *rhs, *res2;$/;" v file: +richcmpfunc Include/object.h /^typedef PyObject *(*richcmpfunc) (PyObject *, PyObject *, int);$/;" t +richest Doc/includes/email-read-alternative.py /^richest = msg.get_body()$/;" v +right Include/internal/pycore_ast.h /^ expr_ty right;$/;" m struct:_expr::__anon77::__anon80 +right Include/internal/pycore_ast_state.h /^ PyObject *right;$/;" m struct:ast_state +right Lib/test/test_set.py /^ right = set()$/;" v class:TestSubsetEqualEmpty +right Lib/test/test_set.py /^ right = set([1, 2])$/;" v class:TestSubsetEmptyNonEmpty +right Lib/test/test_set.py /^ right = set([1, 2])$/;" v class:TestSubsetEqualNonEmpty +right Lib/test/test_set.py /^ right = set([1, 2])$/;" v class:TestSubsetPartial +right Lib/test/test_set.py /^ right = set([2])$/;" v class:TestSubsetNonOverlap +right Lib/turtle.py /^ def right(self, angle):$/;" m class:TNavigator +right Lib/unittest/mock.py /^right = ' '.join('r%s' % n for n in numerics.split())$/;" v +right Modules/_ctypes/_ctypes_test.c /^ long right;$/;" m struct:__anon516 file: +right Modules/rotatingtree.h /^ rotating_node_t *right;$/;" m struct:rotating_node_s +right Python/bytecodes.c /^static PyObject *value, *value1, *value2, *left, *right, *res, *sum, *prod, *sub;$/;" v file: +right_menu_event Lib/idlelib/editor.py /^ def right_menu_event(self, event):$/;" m class:EditorWindow +rightblock Modules/_collectionsmodule.c /^ block *rightblock;$/;" m struct:__anon530 file: +rightindex Modules/_collectionsmodule.c /^ Py_ssize_t rightindex; \/* 0 <= rightindex < BLOCKLEN *\/$/;" m struct:__anon530 file: +rightlink Modules/_collectionsmodule.c /^ struct BLOCK *rightlink;$/;" m struct:BLOCK typeref:struct:BLOCK::BLOCK file: +rindex Lib/collections/__init__.py /^ def rindex(self, sub, start=0, end=_sys.maxsize):$/;" m class:UserString +rindex_test_quick_match_single_character Tools/stringbench/stringbench.py /^def rindex_test_quick_match_single_character(STR):$/;" f +rindex_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def rindex_test_quick_match_two_characters(STR):$/;" f +rindex_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def rindex_test_slow_match_100_characters(STR):$/;" f +rindex_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def rindex_test_slow_match_two_characters(STR):$/;" f +rjust Lib/collections/__init__.py /^ def rjust(self, width, *args):$/;" m class:UserString +rlhandler Modules/readline.c /^rlhandler(char *text)$/;" f file: +rlim_t Lib/test/test_lib2to3/data/infinite_recursion.py /^rlim_t = __int64_t$/;" v +rlimit Lib/test/test_lib2to3/data/infinite_recursion.py /^class rlimit(Structure):$/;" c +rlimit2py Modules/resource.c /^rlimit2py(struct rlimit rl)$/;" f file: +rlistdir Lib/test/test_shutil.py /^def rlistdir(path):$/;" f +rlock__at_fork_reinit Modules/_threadmodule.c /^rlock__at_fork_reinit(rlockobject *self, PyObject *Py_UNUSED(args))$/;" f file: +rlock_acquire Modules/_threadmodule.c /^rlock_acquire(rlockobject *self, PyObject *args, PyObject *kwds)$/;" f file: +rlock_acquire_restore Modules/_threadmodule.c /^rlock_acquire_restore(rlockobject *self, PyObject *args)$/;" f file: +rlock_count Modules/_threadmodule.c /^ unsigned long rlock_count;$/;" m struct:__anon443 file: +rlock_dealloc Modules/_threadmodule.c /^rlock_dealloc(rlockobject *self)$/;" f file: +rlock_is_owned Modules/_threadmodule.c /^rlock_is_owned(rlockobject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +rlock_lock Modules/_threadmodule.c /^ PyThread_type_lock rlock_lock;$/;" m struct:__anon443 file: +rlock_methods Modules/_threadmodule.c /^static PyMethodDef rlock_methods[] = {$/;" v file: +rlock_new Modules/_threadmodule.c /^rlock_new(PyTypeObject *type, PyObject *args, PyObject *kwds)$/;" f file: +rlock_owner Modules/_threadmodule.c /^ unsigned long rlock_owner;$/;" m struct:__anon443 file: +rlock_release Modules/_threadmodule.c /^rlock_release(rlockobject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +rlock_release_save Modules/_threadmodule.c /^rlock_release_save(rlockobject *self, PyObject *Py_UNUSED(ignored))$/;" f file: +rlock_repr Modules/_threadmodule.c /^rlock_repr(rlockobject *self)$/;" f file: +rlock_traverse Modules/_threadmodule.c /^rlock_traverse(rlockobject *self, visitproc visit, void *arg)$/;" f file: +rlock_type_members Modules/_threadmodule.c /^static PyMemberDef rlock_type_members[] = {$/;" v file: +rlock_type_slots Modules/_threadmodule.c /^static PyType_Slot rlock_type_slots[] = {$/;" v file: +rlock_type_spec Modules/_threadmodule.c /^static PyType_Spec rlock_type_spec = {$/;" v file: +rlockobject Modules/_threadmodule.c /^} rlockobject;$/;" t typeref:struct:__anon443 file: +rmd Lib/ftplib.py /^ def rmd(self, dirname):$/;" m class:FTP +rmdir Lib/pathlib.py /^ def rmdir(self):$/;" m class:Path +rmdir Lib/test/support/os_helper.py /^def rmdir(dirname):$/;" f +rmenu Lib/idlelib/editor.py /^ rmenu = None$/;" v class:EditorWindow +rmenu_check_copy Lib/idlelib/editor.py /^ def rmenu_check_copy(self):$/;" m class:EditorWindow +rmenu_check_cut Lib/idlelib/editor.py /^ def rmenu_check_cut(self):$/;" m class:EditorWindow +rmenu_check_cut Lib/idlelib/pyshell.py /^ def rmenu_check_cut(self):$/;" m class:PyShell +rmenu_check_paste Lib/idlelib/editor.py /^ def rmenu_check_paste(self):$/;" m class:EditorWindow +rmenu_check_paste Lib/idlelib/pyshell.py /^ def rmenu_check_paste(self):$/;" m class:PyShell +rmenu_specs Lib/idlelib/editor.py /^ rmenu_specs = [$/;" v class:EditorWindow +rmenu_specs Lib/idlelib/outwin.py /^ rmenu_specs = [$/;" v class:OutputWindow +rmenu_specs Lib/idlelib/pyshell.py /^ rmenu_specs = OutputWindow.rmenu_specs + [$/;" v class:PyShell +rmenu_specs Lib/idlelib/pyshell.py /^ rmenu_specs = [$/;" v class:PyShellEditorWindow +rmenu_specs Lib/idlelib/squeezer.py /^ rmenu_specs = ($/;" v class:ExpandingButton +rmtree Lib/shutil.py /^def rmtree(path, ignore_errors=False, onerror=None, *, onexc=None, dir_fd=None):$/;" f +rmtree Lib/test/support/os_helper.py /^def rmtree(path):$/;" f +rng Lib/tempfile.py /^ def rng(self):$/;" m class:_RandomNameSequence +ro_type Lib/test/test_memoryview.py /^ ro_type = None$/;" v class:BaseArrayMemoryTests +ro_type Lib/test/test_memoryview.py /^ ro_type = bytes$/;" v class:BaseBytesMemoryTests +robots_txt Lib/test/test_robotparser.py /^ robots_txt = ''$/;" v class:BaseRobotTest +robots_txt Lib/test/test_robotparser.py /^ robots_txt = ''$/;" v class:EmptyFileTest +robots_txt Lib/test/test_robotparser.py /^ robots_txt = '{}elsewhere\/robots.txt'.format(base_url)$/;" v class:NetworkTestCase +robuffer Tools/clinic/clinic.py /^class robuffer: pass$/;" c +role_none Modules/expat/xmlrole.h /^ int role_none;$/;" m struct:prolog_state +rollbackImports Tools/unittestgui/unittestgui.py /^ def rollbackImports(self):$/;" m class:RollbackImporter +rollover Lib/tempfile.py /^ def rollover(self):$/;" m class:SpooledTemporaryFile +root Lib/idlelib/idle_test/test_configdialog.py /^root = None$/;" v +root Lib/logging/__init__.py /^root = RootLogger(WARNING)$/;" v +root Lib/pathlib.py /^ def root(self):$/;" m class:PurePath +root Lib/test/ssl_servers.py /^ root = here$/;" v class:RootedHTTPRequestHandler +root Lib/test/support/__init__.py /^ root = Tk()$/;" v class:_is_gui_available.USEROBJECTFLAGS +root Lib/test/test_asyncio/test_taskgroups.py /^ async def root(g):$/;" f function:TestTaskGroup.test_taskgroup_24 +root Lib/test/test_importlib/fixtures.py /^ root = 'test.test_importlib.data'$/;" v class:ZipFixtures +root Lib/test/test_importlib/test_namespace_pkgs.py /^ root = os.path.join(os.path.dirname(__file__), 'namespace_pkgs')$/;" v class:NamespacePackageTest +root Lib/tkinter/dnd.py /^ root = None$/;" v class:DndHandler +root Lib/tkinter/font.py /^ root = tkinter.Tk()$/;" v +root Modules/_elementtree.c /^ PyObject *root; \/* root node (first created node) *\/$/;" m struct:__anon385 file: +root Modules/_functoolsmodule.c /^ lru_list_elem root; \/* includes PyObject_HEAD *\/$/;" m struct:lru_cache_object file: +root Tools/buildbot/clean.bat /^set root=%~dp0..\\..$/;" v +root_cframe Include/cpython/pystate.h /^ _PyCFrame root_cframe;$/;" m struct:_ts +root_element Modules/_elementtree.c /^ ElementObject *root_element;$/;" m struct:__anon384 file: +root_in_posix Lib/test/test_os.py /^ root_in_posix = (os.geteuid() == 0)$/;" v +root_in_posix Lib/test/test_os.py /^root_in_posix = False$/;" v +root_is_uid_gid_0 Lib/test/test_tarfile.py /^def root_is_uid_gid_0():$/;" f +rootnode Lib/idlelib/browser.py /^ def rootnode(self):$/;" m class:ModuleBrowser +rootnode Lib/idlelib/pathbrowser.py /^ def rootnode(self):$/;" m class:PathBrowser +roots Lib/test/test_dis.py /^ def roots(a, b, c):$/;" f function:InstructionTests.test_co_positions_with_lots_of_caches +rope Lib/test/test_enum.py /^ rope = 'rough'$/;" v class:TestSpecial.test_introspection.String +rot13 Lib/encodings/rot_13.py /^def rot13(infile, outfile):$/;" f +rot13_map Lib/encodings/rot_13.py /^rot13_map = codecs.make_identity_dict(range(256))$/;" v +rotate Lib/_pydecimal.py /^ def rotate(self, a, b):$/;" m class:Context +rotate Lib/_pydecimal.py /^ def rotate(self, other, context=None):$/;" m class:Decimal +rotate Lib/logging/handlers.py /^ def rotate(self, source, dest):$/;" m class:BaseRotatingHandler +rotate Lib/turtle.py /^ def rotate(self, angle):$/;" m class:Vec2D +rotating_node_s Modules/rotatingtree.h /^struct rotating_node_s {$/;" s +rotating_node_t Modules/rotatingtree.h /^typedef struct rotating_node_s rotating_node_t;$/;" t typeref:struct:rotating_node_s +rotating_tree_enum_fn Modules/rotatingtree.h /^typedef int (*rotating_tree_enum_fn) (rotating_node_t *node, void *arg);$/;" t +rotation_filename Lib/logging/handlers.py /^ def rotation_filename(self, default_name):$/;" m class:BaseRotatingHandler +rotator Lib/logging/handlers.py /^ rotator = None$/;" v class:BaseRotatingHandler +rotator Lib/test/test_logging.py /^ def rotator(self, source, dest):$/;" m class:RotatingFileHandlerTest.test_namer_rotator_inheritance.HandlerWithNamerAndRotator +rotator Lib/test/test_logging.py /^ def rotator(source, dest):$/;" f function:RotatingFileHandlerTest.test_rotator +rotl32 Modules/_blake2/impl/blake2-impl.h /^static inline uint32_t rotl32( const uint32_t w, const unsigned c )$/;" f +rotl64 Modules/_blake2/impl/blake2-impl.h /^static inline uint64_t rotl64( const uint64_t w, const unsigned c )$/;" f +rotr32 Modules/_blake2/impl/blake2-impl.h /^static inline uint32_t rotr32( const uint32_t w, const unsigned c )$/;" f +rotr64 Modules/_blake2/impl/blake2-impl.h /^static inline uint64_t rotr64( const uint64_t w, const unsigned c )$/;" f +round Modules/_decimal/libmpdec/mpdecimal.h /^ int round; \/* rounding mode *\/$/;" m struct:mpd_context_t +round_map Modules/_decimal/_decimal.c /^static PyObject *round_map[_PY_DEC_ROUND_GUARD];$/;" v file: +round_size Python/hashtable.c /^round_size(size_t s)$/;" f file: +round_trip Lib/test/test_clinic.py /^ def round_trip(self, input):$/;" m class:ClinicBlockParserTest +rounding Modules/_decimal/tests/deccheck.py /^ rounding = property(getround, setround)$/;" v class:Context +rounding Modules/_decimal/tests/deccheck.py /^ rounding=P.ROUND_HALF_UP,$/;" v +rounding_direction Modules/_decimal/tests/deccheck.py /^ def rounding_direction(self, x, mode):$/;" m class:SkipHandler +roundtrip Lib/test/test_float.py /^ def roundtrip(x):$/;" f function:HexFloatTestCase.test_roundtrip +roundtrip Lib/test/test_tempfile.py /^ def roundtrip(input, *args, **kwargs):$/;" f function:.TestTemporaryFile.test_mode_and_encoding +roundtriptest Lib/test/multibytecodec_support.py /^ roundtriptest = 1 # set if roundtrip is possible with unicode$/;" v class:TestBase +route Lib/email/_header_value_parser.py /^ def route(self):$/;" m class:AngleAddr +route Lib/email/_header_value_parser.py /^ def route(self):$/;" m class:Mailbox +route Lib/email/_header_value_parser.py /^ def route(self):$/;" m class:NameAddr +row_cast_map Modules/_sqlite/cursor.h /^ PyObject* row_cast_map;$/;" m struct:__anon358 +row_clear Modules/_sqlite/row.c /^row_clear(pysqlite_Row *self)$/;" f file: +row_factory Modules/_sqlite/connection.h /^ PyObject* row_factory;$/;" m struct:__anon359 +row_factory Modules/_sqlite/cursor.h /^ PyObject* row_factory;$/;" m struct:__anon358 +row_methods Modules/_sqlite/row.c /^static PyMethodDef row_methods[] = {$/;" v file: +row_slots Modules/_sqlite/row.c /^static PyType_Slot row_slots[] = {$/;" v file: +row_spec Modules/_sqlite/row.c /^static PyType_Spec row_spec = {$/;" v file: +row_traverse Modules/_sqlite/row.c /^row_traverse(pysqlite_Row *self, visitproc visit, void *arg)$/;" f file: +rowconfigure Lib/tkinter/__init__.py /^ rowconfigure = grid_rowconfigure$/;" v class:Misc +rowcount Modules/_sqlite/cursor.h /^ long rowcount;$/;" m struct:__anon358 +rowgen Lib/test/test_generators.py /^ def rowgen(rowuses=rowuses):$/;" f function:Queens.__init__ +rows Lib/cgitb.py /^ rows = [' %s %s' % (file, call)]$/;" v +rpartition Lib/collections/__init__.py /^ def rpartition(self, sep):$/;" m class:UserString +rpartition Objects/stringlib/partition.h /^STRINGLIB(rpartition)(PyObject* str_obj,$/;" f +rpartition_test_no_match_single_character Tools/stringbench/stringbench.py /^def rpartition_test_no_match_single_character(STR):$/;" f +rpartition_test_no_match_two_character Tools/stringbench/stringbench.py /^def rpartition_test_no_match_two_character(STR):$/;" f +rpartition_test_quick_match_single_character Tools/stringbench/stringbench.py /^def rpartition_test_quick_match_single_character(STR):$/;" f +rpartition_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def rpartition_test_quick_match_two_characters(STR):$/;" f +rpartition_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def rpartition_test_slow_match_100_characters(STR):$/;" f +rpartition_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def rpartition_test_slow_match_two_characters(STR):$/;" f +rpc_paths Lib/test/test_xmlrpc.py /^ rpc_paths = []$/;" v class:http_multi_server.MyRequestHandler +rpc_paths Lib/xmlrpc/server.py /^ rpc_paths = ('\/', '\/RPC2', '\/pydoc.css')$/;" v class:SimpleXMLRPCRequestHandler +rpcclt Lib/idlelib/pyshell.py /^ rpcclt = None$/;" v class:ModifiedInterpreter +rpcsubproc Lib/idlelib/pyshell.py /^ rpcsubproc = None$/;" v class:ModifiedInterpreter +rpermutation Lib/test/test_buffer.py /^def rpermutation(iterable, r=None):$/;" f +rpgrp Lib/test/test_ioctl.py /^ rpgrp = struct.unpack("i", r)[0]$/;" v +rpop Lib/poplib.py /^ def rpop(self, user):$/;" m class:POP3 +rsa_meth_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class rsa_meth_st(Structure):$/;" c +rsa_st Lib/test/test_lib2to3/data/infinite_recursion.py /^class rsa_st(Structure):$/;" c +rset Lib/poplib.py /^ def rset(self):$/;" m class:POP3 +rset Lib/smtplib.py /^ def rset(self):$/;" m class:SMTP +rset_count Lib/test/test_smtplib.py /^ rset_count = 0$/;" v class:SimSMTPChannel +rshift Lib/operator.py /^def rshift(a, b):$/;" f +rslice Lib/test/test_buffer.py /^def rslice(n, allow_empty=False):$/;" f +rslices Lib/test/test_buffer.py /^def rslices(n, allow_empty=False):$/;" f +rslices_ndim Lib/test/test_buffer.py /^def rslices_ndim(ndim, shape, iterations=5):$/;" f +rsplit Lib/collections/__init__.py /^ def rsplit(self, sep=None, maxsplit=-1):$/;" m class:UserString +rsplit Objects/stringlib/split.h /^STRINGLIB(rsplit)(PyObject* str_obj,$/;" f +rsplit Objects/unicodeobject.c /^rsplit(PyObject *self,$/;" f file: +rsplit_char Objects/stringlib/split.h /^STRINGLIB(rsplit_char)(PyObject* str_obj,$/;" f +rsplit_multichar_sep_dna Tools/stringbench/stringbench.py /^def rsplit_multichar_sep_dna(STR):$/;" f +rsplit_multichar_sep_small Tools/stringbench/stringbench.py /^def rsplit_multichar_sep_small(STR):$/;" f +rsplit_test_no_match_single_character Tools/stringbench/stringbench.py /^def rsplit_test_no_match_single_character(STR):$/;" f +rsplit_test_no_match_two_character Tools/stringbench/stringbench.py /^def rsplit_test_no_match_two_character(STR):$/;" f +rsplit_test_quick_match_single_character Tools/stringbench/stringbench.py /^def rsplit_test_quick_match_single_character(STR):$/;" f +rsplit_test_quick_match_two_characters Tools/stringbench/stringbench.py /^def rsplit_test_quick_match_two_characters(STR):$/;" f +rsplit_test_slow_match_100_characters Tools/stringbench/stringbench.py /^def rsplit_test_slow_match_100_characters(STR):$/;" f +rsplit_test_slow_match_two_characters Tools/stringbench/stringbench.py /^def rsplit_test_slow_match_two_characters(STR):$/;" f +rsplit_whitespace Objects/stringlib/split.h /^STRINGLIB(rsplit_whitespace)(PyObject* str_obj,$/;" f +rstrip Lib/collections/__init__.py /^ def rstrip(self, chars=None):$/;" m class:UserString +rstrip_lines Tools/clinic/clinic.py /^def rstrip_lines(s: str) -> str:$/;" f +rt Lib/test/test_lib2to3/test_refactor.py /^ def rt(self, options=None, fixers=_DEFAULT_FIXERS, explicit=None):$/;" m class:TestRefactoringTool +rt Lib/turtle.py /^ rt = right$/;" v class:TNavigator +rt_args Tools/buildbot/test.bat /^set rt_args=%rt_opts% %dashU% -rwW --slowest --timeout=1200 --fail-env-changed %regrtest_args% %TEMP_ARGS%$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="+d" (set rt_opts=%rt_opts:-d=%) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="+q" (set rt_opts=%rt_opts:-q=%) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="-O" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="-arm32" (set rt_opts=%rt_opts% %1) & (set arm32_ssh=true) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="-arm64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="-d" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="-q" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^if "%1"=="-x64" (set rt_opts=%rt_opts% %1) & shift & goto CheckOpts$/;" v +rt_opts Tools/buildbot/test.bat /^set rt_opts=-q -d$/;" v +rule Lib/email/mime/audio.py /^def rule(rulefunc):$/;" f +rule Lib/email/mime/image.py /^def rule(rulefunc):$/;" f +rule Tools/peg_generator/pegen/grammar_parser.py /^ def rule(self) -> Optional[Rule]:$/;" m class:GeneratedParser +rulename Tools/peg_generator/pegen/grammar_parser.py /^ def rulename(self) -> Optional[RuleName]:$/;" m class:GeneratedParser +rules Tools/peg_generator/pegen/grammar_parser.py /^ def rules(self) -> Optional[RuleList]:$/;" m class:GeneratedParser +run Doc/tools/extensions/c_annotations.py /^ def run(self):$/;" m class:init_annotations.LimitedAPIList +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:AuditEvent +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:AuditEventListDirective +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:Availability +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:DeprecatedRemoved +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:ImplementationDetail +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:MiscNews +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:PyAbstractMethod +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:PyAwaitableFunction +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:PyAwaitableMethod +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:PyCoroutineFunction +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:PyCoroutineMethod +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:PyDecoratorFunction +run Doc/tools/extensions/pyspecific.py /^ def run(self):$/;" m class:PyDecoratorMethod +run Lib/asyncio/__main__.py /^ def run(self):$/;" m class:REPLThread +run Lib/asyncio/runners.py /^ def run(self, coro, *, context=None):$/;" m class:Runner +run Lib/asyncio/runners.py /^def run(main, *, debug=None, loop_factory=None):$/;" f +run Lib/bdb.py /^ def run(self, cmd, globals=None, locals=None):$/;" m class:Bdb +run Lib/cProfile.py /^ def run(self, cmd):$/;" m class:Profile +run Lib/cProfile.py /^def run(statement, filename=None, sort=-1):$/;" f +run Lib/concurrent/futures/process.py /^ def run(self):$/;" m class:_ExecutorManagerThread +run Lib/concurrent/futures/thread.py /^ def run(self):$/;" m class:_WorkItem +run Lib/doctest.py /^ def run(self, test, compileflags=None, out=None, clear_globs=True):$/;" m class:DebugRunner +run Lib/doctest.py /^ def run(self, test, compileflags=None, out=None, clear_globs=True):$/;" m class:DocTestRunner +run Lib/idlelib/debugger.py /^ def run(self, *args):$/;" m class:Debugger +run Lib/idlelib/debugger_r.py /^ def run(self, cmd):$/;" m class:IdbAdapter +run Lib/idlelib/debugger_r.py /^ def run(self, cmd, locals):$/;" m class:IdbProxy +run Lib/idlelib/editor.py /^ def run(self):$/;" m class:IndentSearcher +run Lib/idlelib/idle_test/htest.py /^def run(*tests):$/;" f +run Lib/imaplib.py /^ def run(cmd, args):$/;" f +run Lib/lib2to3/btm_matcher.py /^ def run(self, leaves):$/;" m class:BottomMatcher +run Lib/lib2to3/pgen2/conv.py /^ def run(self, graminit_h, graminit_c):$/;" m class:Converter +run Lib/logging/config.py /^ def run(self):$/;" m class:listen.Server +run Lib/multiprocessing/process.py /^ def run(self):$/;" m class:BaseProcess +run Lib/pdb.py /^def run(statement, globals=None, locals=None):$/;" f +run Lib/profile.py /^ def run(self, cmd):$/;" m class:Profile +run Lib/profile.py /^ def run(self, statement, filename, sort):$/;" m class:_Utils +run Lib/profile.py /^def run(statement, filename=None, sort=-1):$/;" f +run Lib/pydoc.py /^ def run(self):$/;" m class:_start_server.ServerThread +run Lib/pydoc.py /^ def run(self, callback, key=None, completer=None, onerror=None):$/;" m class:ModuleScanner +run Lib/sched.py /^ def run(self, blocking=True):$/;" m class:scheduler +run Lib/subprocess.py /^def run(*popenargs,$/;" f +run Lib/test/_test_multiprocessing.py /^ def run(self):$/;" m class:_UpperCaser +run Lib/test/libregrtest/runtest_mp.py /^ def run(self) -> None:$/;" m class:TestWorkerProcess +run Lib/test/ssl_servers.py /^ def run(self):$/;" m class:HTTPSServerThread +run Lib/test/support/interpreters.py /^ def run(self, src_str, \/, *, channels=None):$/;" m class:Interpreter +run Lib/test/support/testresult.py /^ def run(self, test):$/;" m class:QuietRegressionTestRunner +run Lib/test/test__xxsubinterpreters.py /^ def run():$/;" f function:_running +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aclose_after_exhaustion +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aclose_compatible_with_get_stack +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_aclose_twice_with_different_coros +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_06 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_07 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_08 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_10 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_11 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_aclose_12 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_05 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_06 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_stopiteration +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_tuple +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_asend_01 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_asend_02 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_asend_03 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_01 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_02 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_03 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_stopiteration +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_athrow_tuple +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_gc_aclose_09 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_await_same_aclose_coro_twice +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_await_same_anext_coro_twice +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_expression_01 +run Lib/test/test_asyncgen.py /^ async def run():$/;" f function:AsyncGenAsyncioTest.test_async_gen_expression_02 +run Lib/test/test_asyncio/functional.py /^ def run(self):$/;" m class:TestThreadedClient +run Lib/test/test_asyncio/functional.py /^ def run(self):$/;" m class:TestThreadedServer +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_all_tasks_with_blocking +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_all_tasks_with_eager_completion +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_await_future_during_eager_step +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_block_after_eager_step +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_cancellation_after_eager_completion +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_cancellation_after_eager_step_blocks +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_context_vars +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_current_task +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_eager_completion +run Lib/test/test_asyncio/test_eager_task_factory.py /^ async def run():$/;" f function:EagerTaskFactoryLoopTests.test_eager_task_factory_set +run Lib/test/test_asyncio/test_events.py /^ def run():$/;" f function:EventLoopTestsMixin.test_run_in_executor_cancel +run Lib/test/test_asyncio/test_events.py /^ def run(arg):$/;" f function:EventLoopTestsMixin.test_run_in_executor +run Lib/test/test_asyncio/test_futures.py /^ def run(arg):$/;" f function:BaseFutureTests.test_wrap_future +run Lib/test/test_asyncio/test_futures.py /^ def run(arg):$/;" f function:BaseFutureTests.test_wrap_future_use_global_loop +run Lib/test/test_asyncio/test_futures.py /^ def run(arg):$/;" f function:BaseFutureTests.test_wrap_future_use_running_loop +run Lib/test/test_asyncio/test_futures.py /^ def run(arg):$/;" f function:BaseFutureTests.test_wrap_future_without_loop +run Lib/test/test_asyncio/test_ssl.py /^ def run(coro):$/;" f function:TestSSL.test_create_connection_ssl_1 +run Lib/test/test_asyncio/test_ssl.py /^ def run(coro):$/;" f function:TestSSL.test_shutdown_cleanly +run Lib/test/test_asyncio/test_ssl.py /^ def run(meth):$/;" f function:TestSSL.test_flush_before_shutdown +run Lib/test/test_asyncio/test_ssl.py /^ def run(meth):$/;" f function:TestSSL.test_remote_shutdown_receives_trailing_data +run Lib/test/test_asyncio/test_ssl.py /^ def run(self):$/;" m class:TestThreadedClient +run Lib/test/test_asyncio/test_ssl.py /^ def run(self):$/;" m class:TestThreadedServer +run Lib/test/test_asyncio/test_subprocess.py /^ async def run():$/;" f function:SubprocessMixin.test_communicate_none_input +run Lib/test/test_asyncio/test_subprocess.py /^ async def run(data):$/;" f function:SubprocessMixin.test_communicate +run Lib/test/test_asyncio/test_subprocess.py /^ async def run(data):$/;" f function:SubprocessMixin.test_stdin_stdout +run Lib/test/test_asyncio/test_tasks.py /^ async def run():$/;" f function:BaseTaskTests.test_exception_chaining_after_await +run Lib/test/test_asyncio/test_tasks.py /^ async def run():$/;" f function:BaseTaskTests.test_exception_chaining_after_await_with_context_cycle +run Lib/test/test_asyncio/test_tasks.py /^ async def run():$/;" f function:BaseTaskTests.test_task_del_collect +run Lib/test/test_asyncio/test_tasks.py /^ async def run(fut):$/;" f function:BaseTaskTests.test_other_loop_future +run Lib/test/test_asyncio/test_waitfor.py /^ async def run(self):$/;" m class:SlowTask +run Lib/test/test_capi/test_misc.py /^ def run(self):$/;" m class:TestPendingCalls.PendingTask +run Lib/test/test_code.py /^ def run(self):$/;" m class:CodeLocationTest.CoExtra.test_free_different_thread.ThreadTest +run Lib/test/test_email/test_email.py /^ def run(self):$/;" m class:.test_make_msgid_collisions.MsgidsThread +run Lib/test/test_frame.py /^ def run(self):$/;" m class:TestIncompleteFrameAreInvisible.test_sneaky_frame_object_teardown.SneakyThread +run Lib/test/test_ftplib.py /^ def run(self):$/;" m class:DummyFTPServer +run Lib/test/test_httpservers.py /^ def run(self):$/;" m class:TestServerThread +run Lib/test/test_import/__init__.py /^ def run():$/;" f function:ImportTests.test_concurrency.delay_has_deadlock +run Lib/test/test_importlib/threaded_import_hangers.py /^ def run(self):$/;" m class:Worker +run Lib/test/test_interpreters.py /^ def run():$/;" f function:_running +run Lib/test/test_io.py /^ def run(n):$/;" f function:TextIOWrapperTest.test_threads_write +run Lib/test/test_iter.py /^ def run(builtin_name, item, sentinel=None):$/;" f function:TestCase.test_reduce_mutating_builtins_iter +run Lib/test/test_itertools.py /^ def run(r1, r2):$/;" f function:TestBasicOps.test_bug_7244 +run Lib/test/test_largefile.py /^ def run(sock):$/;" f function:TestSocketSendfile.tcp_server +run Lib/test/test_math.py /^ def run(func, *args):$/;" f function:MathTests.test_sumprod_stress +run Lib/test/test_monitoring.py /^ def run():$/;" f function:TestRegressions.test_105162 +run Lib/test/test_poplib.py /^ def run(self):$/;" m class:DummyPOP3Server +run Lib/test/test_queue.py /^ def run(self):$/;" m class:_TriggerThread +run Lib/test/test_runpy.py /^ def run(self, *args, **kwargs):$/;" m class:TestExit +run Lib/test/test_socket.py /^ def run(sock):$/;" f function:CreateServerFunctionalTest.echo_server +run Lib/test/test_sqlite3/test_dbapi.py /^ def run(con, err):$/;" f function:ThreadTests.test_dont_check_same_thread +run Lib/test/test_sqlite3/test_dbapi.py /^ def run(err):$/;" f function:ThreadTests._run_test +run Lib/test/test_ssl.py /^ def run(self):$/;" m class:TestPreHandshakeClose.SingleConnectionTestServerThread +run Lib/test/test_ssl.py /^ def run(self):$/;" m class:ThreadedEchoServer.ConnectionHandler +run Lib/test/test_ssl.py /^ def run(self):$/;" m class:AsyncoreEchoServer +run Lib/test/test_ssl.py /^ def run(self):$/;" m class:ThreadedEchoServer +run Lib/test/test_struct.py /^ def run(self):$/;" m class:StructTest.test_integers.IntTester +run Lib/test/test_sys_settrace.py /^ def run(tracer):$/;" f function:TraceTestCase.test_20_async_for_loop +run Lib/test/test_threadedtempfile.py /^ def run(self):$/;" m class:TempFileGreedy +run Lib/test/test_threading.py /^ def run(self):$/;" m class:ExceptHookTests.test_system_exit.ThreadExit +run Lib/test/test_threading.py /^ def run(self):$/;" m class:ThreadTests.test_PyThreadState_SetAsyncExc.Worker +run Lib/test/test_threading.py /^ def run(self):$/;" m class:ThreadingExceptionTests.test_bare_raise_in_brand_new_thread.Issue27558 +run Lib/test/test_threading.py /^ def run(self):$/;" m class:TestThread +run Lib/test/test_threading.py /^ def run(self):$/;" m class:ThreadRunFail +run Lib/test/test_unittest/test_break.py /^ def run(self, test):$/;" m class:TestBreak.testMainInstallsHandler.FakeRunner +run Lib/test/test_unittest/test_case.py /^ def run(self, result):$/;" m class:Test_TestCase.test_call__invoking_an_instance_delegates_to_run.Foo +run Lib/test/test_unittest/test_program.py /^ def run(self, test):$/;" m class:Test_TestProgram.testNoExit.FakeRunner +run Lib/test/test_unittest/test_program.py /^ def run(self, test):$/;" m class:Test_TestProgram.test_defaultTest_with_iterable.FakeRunner +run Lib/test/test_unittest/test_program.py /^ def run(self, test):$/;" m class:Test_TestProgram.test_defaultTest_with_string.FakeRunner +run Lib/test/test_unittest/test_program.py /^ def run(self, test):$/;" m class:FakeRunner +run Lib/test/test_unittest/test_runner.py /^ def run(test, *, expect_durations=True):$/;" f function:Test_TextTestRunner.test_durations +run Lib/test/test_unittest/test_suite.py /^ def run(self, result):$/;" m class:Test_TestSuite.test_run.LoggingCase +run Lib/test/test_urllib2_localnet.py /^ def run(self):$/;" m class:LoopbackHttpServerThread +run Lib/test/test_warnings/__init__.py /^ def run(*args):$/;" f function:PyWarningsDisplayTests.test_tracemalloc +run Lib/test/test_winreg.py /^ def run(self):$/;" m class:LocalWinregTests.test_changing_value.VeryActiveThread +run Lib/test/test_yield_from.py /^ def run():$/;" f function:TestPEP380Operation.test_exception_in_initial_next_call +run Lib/test/test_yield_from.py /^ def run():$/;" f function:TestPEP380Operation.test_handling_exception_while_delegating_send +run Lib/threading.py /^ def run(self):$/;" m class:Thread +run Lib/threading.py /^ def run(self):$/;" m class:Timer +run Lib/trace.py /^ def run(self, cmd):$/;" m class:Trace +run Lib/unittest/async_case.py /^ def run(self, result=None):$/;" m class:IsolatedAsyncioTestCase +run Lib/unittest/case.py /^ def run(self, result=None):$/;" m class:TestCase +run Lib/unittest/runner.py /^ def run(self, test):$/;" m class:TextTestRunner +run Lib/unittest/suite.py /^ def run(self, result):$/;" m class:BaseTestSuite +run Lib/unittest/suite.py /^ def run(self, result):$/;" m class:_ErrorHolder +run Lib/unittest/suite.py /^ def run(self, result, debug=False):$/;" m class:TestSuite +run Lib/wsgiref/handlers.py /^ def run(self, application):$/;" m class:BaseHandler +run Tools/ccbench/ccbench.py /^ def run():$/;" f function:run_bandwidth_test +run Tools/ccbench/ccbench.py /^ def run():$/;" f function:run_latency_test +run Tools/ccbench/ccbench.py /^ def run():$/;" f function:run_throughput_test +run Tools/freeze/test/freeze.py /^def run(executable):$/;" f +run Tools/patchcheck/reindent.py /^ def run(self):$/;" m class:Reindenter +run1 Lib/test/test_asyncgen.py /^ async def run1():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_04 +run2 Lib/test/test_asyncgen.py /^ async def run2():$/;" f function:AsyncGenAsyncioTest.test_async_gen_asyncio_anext_04 +runArgs Lib/test/test_unittest/test_break.py /^ runArgs = []$/;" v class:TestBreak.testMainInstallsHandler.FakeRunner +runClicked Tools/unittestgui/unittestgui.py /^ def runClicked(self):$/;" m class:BaseGUITestRunner +runCommand Mac/BuildScript/build-installer.py /^def runCommand(commandline):$/;" f +runDoctest Lib/test/test_zipimport.py /^ def runDoctest(self, callback):$/;" m class:UncompressedZipImportTestCase +runTest Lib/doctest.py /^ def runTest(self):$/;" m class:DocTestCase +runTest Lib/test/test_tarfile.py /^ def runTest(self):$/;" m class:GzipBrokenHeaderCorrectException +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self): raise MyException()$/;" m class:Test_TestCase.test_init__no_test_name.Test +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self): raise MyException()$/;" m class:Test_TestCase.test_init__test_name__invalid.Test +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self): raise MyException()$/;" m class:Test_TestCase.test_init__test_name__valid.Test +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self):$/;" m class:Test_TestCase.test_defaultTestResult.Foo +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self):$/;" m class:Test_TestCase.test_id.Foo +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self):$/;" m class:Test_TestCase.test_setUp.Foo +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self):$/;" m class:Test_TestCase.test_tearDown.Foo +runTest Lib/test/test_unittest/test_case.py /^ def runTest(self): pass$/;" m class:Test.Foo +runTest Lib/test/test_unittest/test_loader.py /^ def runTest(self):$/;" m class:Test_TestLoader.test_loadTestsFromTestCase__default_method_name.Foo +runTest Lib/test/test_unittest/test_suite.py /^ def runTest(self): pass$/;" m class:Test.Foo +runTest Lib/unittest/case.py /^ def runTest(self):$/;" m class:FunctionTestCase +runTest Lib/unittest/case.py /^ def runTest(self):$/;" m class:_SubTest +runTests Lib/test/test_unittest/test_program.py /^ def runTests(self, *args, **kw): pass$/;" m class:TestCommandLineArgs.testWarning.FakeTP +runTests Lib/test/test_unittest/test_runner.py /^def runTests(*cases):$/;" f +runTests Lib/test/test_unittest/test_setups.py /^ def runTests(self, *cases):$/;" m class:TestSetups +runTests Lib/unittest/main.py /^ def runTests(self):$/;" m class:TestProgram +run_2to3_capture Lib/test/test_lib2to3/test_main.py /^ def run_2to3_capture(self, args, in_capture, out_capture, err_capture):$/;" m class:TestMain +run_action Lib/test/test__xxinterpchannels.py /^ def run_action(self, fix, action, *, hideclosed=True):$/;" m class:ExhaustiveChannelTests +run_action Lib/test/test__xxinterpchannels.py /^def run_action(cid, action, end, state, *, hideclosed=True):$/;" f +run_actions Lib/test/test__xxinterpchannels.py /^ def run_actions(self, fix, actions):$/;" m class:ExhaustiveChannelTests +run_all_tests Lib/test/test_lib2to3/support.py /^def run_all_tests(test_mod=None, tests=None):$/;" f +run_all_tests Tools/iobench/iobench.py /^def run_all_tests(options):$/;" f +run_always_files Lib/test/test_unparse.py /^ run_always_files = {"test_grammar.py", "test_syntax.py", "test_compile.py",$/;" v class:DirectoryTestCase +run_amock Lib/test/test_wsgiref.py /^def run_amock(app=hello_app, data=b"GET \/ HTTP\/1.0\\n\\n"):$/;" f +run_and_compare Lib/test/test_sys_settrace.py /^ def run_and_compare(self, func, events):$/;" m class:TraceTestCase +run_async Lib/test/test_collections.py /^ def run_async(coro):$/;" f function:TestOneTrickPonyABCs.test_AsyncGenerator +run_async Lib/test/test_coroutines.py /^def run_async(coro):$/;" f +run_async__await__ Lib/test/test_coroutines.py /^def run_async__await__(coro):$/;" f +run_async_test Lib/test/test_sys_settrace.py /^ def run_async_test(self, func, jumpFrom, jumpTo, expected, error=None,$/;" m class:JumpTestCase +run_at_forkers Modules/posixmodule.c /^run_at_forkers(PyObject *lst, int reverse)$/;" f file: +run_audit_run_test Programs/_testembed.c /^static int run_audit_run_test(int argc, wchar_t **argv, void *test)$/;" f file: +run_bandwidth_client Tools/ccbench/ccbench.py /^def run_bandwidth_client(**kwargs):$/;" f +run_bandwidth_test Tools/ccbench/ccbench.py /^def run_bandwidth_test(func, args, nthreads):$/;" f +run_bandwidth_tests Tools/ccbench/ccbench.py /^def run_bandwidth_tests(max_threads):$/;" f +run_batch Lib/test/test_regrtest.py /^ def run_batch(self, *args):$/;" m class:ProgramsTestCase +run_benchmark_stdlib Tools/peg_generator/scripts/benchmark.py /^def run_benchmark_stdlib(subcommand):$/;" f +run_benchmark_xxl Tools/peg_generator/scripts/benchmark.py /^def run_benchmark_xxl(subcommand, source):$/;" f +run_briefly Lib/test/test_asyncio/test_futures.py /^ def run_briefly(self):$/;" m class:BaseFutureDoneCallbackTests +run_briefly Lib/test/test_asyncio/utils.py /^def run_briefly(loop):$/;" f +run_browser Tools/wasm/wasm_build.py /^ def run_browser(self, bind="127.0.0.1", port=8000):$/;" m class:BuildProfile +run_build Tools/wasm/wasm_build.py /^ def run_build(self, *args):$/;" m class:BuildProfile +run_c_locale Lib/test/test_cmd_line.py /^ def run_c_locale(arg):$/;" f function:CmdLineTest.test_invalid_utf8_arg +run_capi Tools/c-analyzer/must-resolve.sh /^function run_capi() {$/;" f +run_case Lib/test/test_dtrace.py /^ def run_case(self, name):$/;" m class:TraceTests +run_case Lib/test/test_dtrace.py /^ def run_case(self, name, optimize_python=None):$/;" m class:TraceBackend +run_cases_test Tools/cases_generator/test_generator.py /^def run_cases_test(input: str, expected: str):$/;" f +run_cgi Lib/http/server.py /^ def run_cgi(self):$/;" m class:CGIHTTPRequestHandler +run_cgi Lib/test/test_httpservers.py /^ def run_cgi(self):$/;" m class:CGIHTTPServerTestCase.request_handler +run_child Lib/test/test_builtin.py /^ def run_child(self, child, terminal_input):$/;" m class:PtyTests +run_child PC/launcher.c /^run_child(wchar_t * cmdline)$/;" f file: +run_cli Lib/test/test_sqlite3/test_cli.py /^ def run_cli(self, *args, commands=()):$/;" m class:InteractiveSession +run_client Lib/test/test_socketserver.py /^ def run_client():$/;" f function:SocketWriterTest.test_write +run_client Lib/test/test_wsgiref.py /^ def run_client():$/;" f function:IntegrationTests.test_interrupted_write +run_cmd Lib/test/test_cppext/__init__.py /^ def run_cmd(operation, cmd):$/;" f function:TestCPPExt._check_build +run_cmd Tools/c-analyzer/c_parser/preprocessor/common.py /^def run_cmd(argv, *,$/;" f +run_code Lib/test/support/__init__.py /^def run_code(code: str) -> dict[str, object]:$/;" f +run_code Lib/test/test_lltrace.py /^ def run_code(self, code):$/;" m class:TestLLTrace +run_code Lib/test/test_pkg.py /^ def run_code(self, code):$/;" m class:TestPkg +run_command Include/cpython/initconfig.h /^ wchar_t *run_command;$/;" m struct:PyConfig +run_command Lib/test/test_gc.py /^ def run_command(code):$/;" f function:GCTests.test_garbage_at_shutdown +run_command Lib/test/test_regrtest.py /^ def run_command(self, args, input=None, exitcode=0, **kw):$/;" m class:BaseTestCase +run_configure PCbuild/prepare_ssl.py /^def run_configure(configure, do_script):$/;" f +run_configure Tools/wasm/wasm_build.py /^ def run_configure(self, *args):$/;" m class:BuildProfile +run_context Lib/test/test_descr.py /^ def run_context(manager):$/;" f function:.test_special_method_lookup +run_coro Lib/test/test_asyncio/test_eager_task_factory.py /^ def run_coro(self, coro):$/;" m class:EagerTaskFactoryLoopTests +run_coroutine Lib/test/test_contextlib_async.py /^ def run_coroutine(coro):$/;" m class:TestAsyncExitStack.SyncAsyncExitStack +run_coroutine_threadsafe Lib/asyncio/tasks.py /^def run_coroutine_threadsafe(coro, loop):$/;" f +run_custom_event Lib/idlelib/runscript.py /^ def run_custom_event(self, event):$/;" m class:ScriptBinding +run_deadlock_avoidance_test Lib/test/test_importlib/test_locks.py /^ def run_deadlock_avoidance_test(self, create_deadlock):$/;" m class:DeadlockAvoidanceTests +run_default Lib/test/test_cmd_line.py /^ def run_default(arg):$/;" f function:CmdLineTest.test_invalid_utf8_arg +run_dict Lib/test/test_coroutines.py /^ async def run_dict():$/;" f function:CoroutineTest.test_comp_3 +run_dict Lib/test/test_coroutines.py /^ async def run_dict():$/;" f function:CoroutineTest.test_comp_4 +run_dict Lib/test/test_coroutines.py /^ async def run_dict():$/;" f function:CoroutineTest.test_comp_4_2 +run_dict1 Lib/test/test_coroutines.py /^ async def run_dict1():$/;" f function:CoroutineTest.test_comp_1 +run_dict2 Lib/test/test_coroutines.py /^ async def run_dict2():$/;" f function:CoroutineTest.test_comp_1 +run_dict_inside_dict Lib/test/test_coroutines.py /^ async def run_dict_inside_dict():$/;" f function:CoroutineTest.test_nested_comp +run_docstring_examples Lib/doctest.py /^def run_docstring_examples(f, globs, verbose=False, name="NoName",$/;" f +run_doctest Lib/test/support/__init__.py /^def run_doctest(module, verbosity=None, optionflags=0):$/;" f +run_during Tools/iobench/iobench.py /^def run_during(duration, func):$/;" f +run_embedded_interpreter Lib/test/test_embed.py /^ def run_embedded_interpreter(self, *args, env=None,$/;" m class:EmbeddingTestsMixin +run_eval_code_obj Python/pythonrun.c /^run_eval_code_obj(PyThreadState *tstate, PyCodeObject *co, PyObject *globals, PyObject *locals)$/;" f file: +run_filename Include/cpython/initconfig.h /^ wchar_t *run_filename;$/;" m struct:PyConfig +run_finalizers Lib/test/_test_multiprocessing.py /^ def run_finalizers():$/;" f function:_TestFinalize.test_thread_safety +run_for Lib/test/test_coroutines.py /^ async def run_for():$/;" f function:CoroutineTest.test_for_assign_raising_stop_async_iteration +run_for Lib/test/test_coroutines.py /^ async def run_for():$/;" f function:CoroutineTest.test_for_assign_raising_stop_async_iteration_2 +run_forever Lib/asyncio/base_events.py /^ def run_forever(self):$/;" m class:BaseEventLoop +run_forever Lib/asyncio/events.py /^ def run_forever(self):$/;" m class:AbstractEventLoop +run_forever Lib/asyncio/windows_events.py /^ def run_forever(self):$/;" m class:ProactorEventLoop +run_gdb Lib/test/test_gdb.py /^def run_gdb(*args, **env_vars):$/;" f +run_gen Lib/test/test_coroutines.py /^ async def run_gen():$/;" f function:CoroutineTest.test_comp_3 +run_gen Lib/test/test_coroutines.py /^ async def run_gen():$/;" f function:CoroutineTest.test_comp_4 +run_gen Lib/test/test_coroutines.py /^ async def run_gen():$/;" f function:CoroutineTest.test_comp_4_2 +run_gen Lib/test/test_coroutines.py /^ async def run_gen():$/;" f function:CoroutineTest.test_for_assign_raising_stop_async_iteration +run_gen Lib/test/test_coroutines.py /^ async def run_gen():$/;" f function:CoroutineTest.test_for_assign_raising_stop_async_iteration_2 +run_gen Lib/test/test_exceptions.py /^ def run_gen():$/;" f function:ExceptionTests.test_generator_finalizing_and_sys_exception +run_gen_inside_gen Lib/test/test_coroutines.py /^ async def run_gen_inside_gen():$/;" f function:CoroutineTest.test_nested_comp +run_gen_inside_list Lib/test/test_coroutines.py /^ async def run_gen_inside_list():$/;" f function:CoroutineTest.test_nested_comp +run_here Lib/test/test_import/__init__.py /^ def run_here(self, name, filename=None, *,$/;" m class:SubinterpImportTests +run_ignoring_vars Lib/test/test_cmd_line.py /^ def run_ignoring_vars(self, predicate, **env_vars):$/;" m class:IgnoreEnvironmentTest +run_in_child Lib/test/_test_multiprocessing.py /^ def run_in_child(cls, start_method):$/;" m class:TestFlags +run_in_child Lib/test/test_weakref.py /^ def run_in_child(cls):$/;" m class:FinalizeTestCase +run_in_executor Lib/asyncio/base_events.py /^ def run_in_executor(self, executor, func, *args):$/;" m class:BaseEventLoop +run_in_executor Lib/asyncio/events.py /^ def run_in_executor(self, executor, func, *args):$/;" m class:AbstractEventLoop +run_in_grandchild Lib/test/_test_multiprocessing.py /^ def run_in_grandchild(cls, conn):$/;" m class:TestFlags +run_in_pending_call Lib/test/test_capi/test_misc.py /^ def run_in_pending_call(self, worker_tids):$/;" m class:TestPendingCalls.PendingTask +run_in_subinterp Lib/test/support/__init__.py /^def run_in_subinterp(code):$/;" f +run_in_subinterp Modules/_testcapimodule.c /^run_in_subinterp(PyObject *self, PyObject *args)$/;" f file: +run_in_subinterp_with_config Lib/test/support/__init__.py /^def run_in_subinterp_with_config(code, *, own_gil=None, **config):$/;" f +run_in_subinterp_with_config Modules/_testcapimodule.c /^run_in_subinterp_with_config(PyObject *self, PyObject *args, PyObject *kwargs)$/;" f file: +run_in_thread Lib/test/test_asyncio/test_events.py /^ def run_in_thread():$/;" f function:EventLoopTestsMixin.test_call_soon_threadsafe +run_in_tk_mainloop Lib/idlelib/idle_test/tkinter_testing_utils.py /^def run_in_tk_mainloop(delay=1):$/;" f +run_interp Lib/test/test__xxinterpchannels.py /^def run_interp(id, source, **shared):$/;" f +run_latency_client Tools/ccbench/ccbench.py /^def run_latency_client(**kwargs):$/;" f +run_latency_test Tools/ccbench/ccbench.py /^def run_latency_test(func, args, nthreads):$/;" f +run_latency_tests Tools/ccbench/ccbench.py /^def run_latency_tests(max_threads):$/;" f +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_1 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_2 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_3 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_4 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_4_2 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_5 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_6 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_comp_7 +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_for_assign_raising_stop_async_iteration +run_list Lib/test/test_coroutines.py /^ async def run_list():$/;" f function:CoroutineTest.test_for_assign_raising_stop_async_iteration_2 +run_list_inside_gen Lib/test/test_coroutines.py /^ async def run_list_inside_gen():$/;" f function:CoroutineTest.test_nested_comp +run_list_inside_list Lib/test/test_coroutines.py /^ async def run_list_inside_list():$/;" f function:CoroutineTest.test_nested_comp +run_list_inside_list_inside_list Lib/test/test_coroutines.py /^ async def run_list_inside_list_inside_list():$/;" f function:CoroutineTest.test_nested_comp +run_list_inside_set Lib/test/test_coroutines.py /^ async def run_list_inside_set():$/;" f function:CoroutineTest.test_nested_comp +run_loop Lib/test/test_asyncio/test_base_events.py /^ def run_loop():$/;" f function:BaseEventLoopTests.test_default_exc_handler_broken +run_loop Lib/test/test_asyncio/test_base_events.py /^ def run_loop():$/;" f function:BaseEventLoopTests.test_set_exc_handler_broken +run_loop Lib/test/test_asyncio/test_base_events.py /^ def run_loop():$/;" f function:BaseEventLoopTests.test_set_exc_handler_custom +run_loop Lib/test/test_asyncio/test_base_events.py /^ def run_loop(self, coro):$/;" m class:BaseLoopSockSendfileTests +run_loop Lib/test/test_asyncio/test_proactor_events.py /^ def run_loop(self, coro):$/;" m class:ProactorEventLoopUnixSockSendfileTests +run_loop Lib/test/test_asyncio/test_sendfile.py /^ def run_loop(self, coro):$/;" m class:SendfileBase +run_loop Lib/test/test_asyncio/test_unix_events.py /^ def run_loop(self, coro):$/;" m class:SelectorEventLoopUnixSockSendfileTests +run_loop_briefly Lib/test/test_asyncio/functional.py /^ def run_loop_briefly(self, *, delay=0.01):$/;" m class:FunctionalTestCaseMixin +run_main Lib/test/test_asyncio/test_ssl.py /^ async def run_main():$/;" f function:TestSSL.test_start_tls_server_1 +run_main Lib/test/test_asyncio/test_sslproto.py /^ async def run_main():$/;" f function:BaseStartTLS.test_start_tls_server_1 +run_main Lib/test/test_timeit.py /^ def run_main(self, seconds_per_increment=1.0, switches=None, timer=None):$/;" m class:TestTimeit +run_make Tools/wasm/wasm_build.py /^ def run_make(self, *args):$/;" m class:BuildProfile +run_mod Python/pythonrun.c /^run_mod(mod_ty mod, PyObject *filename, PyObject *globals, PyObject *locals,$/;" f file: +run_module Include/cpython/initconfig.h /^ wchar_t *run_module;$/;" m struct:PyConfig +run_module Lib/runpy.py /^def run_module(mod_name, init_globals=None,$/;" f +run_module_event Lib/idlelib/runscript.py /^ def run_module_event(self, event, *, customize=False):$/;" m class:ScriptBinding +run_normalization_tests Lib/test/test_unicodedata.py /^ def run_normalization_tests(self, testdata):$/;" m class:NormalizationTest +run_ok Lib/test/test_calendar.py /^ def run_ok(self, *args):$/;" m class:CommandLineTestCase +run_on_interactive_mode Lib/test/test_repl.py /^def run_on_interactive_mode(source):$/;" f +run_once Lib/test/test_asyncio/utils.py /^def run_once(loop):$/;" f +run_one_coro Lib/asyncio/staggered.py /^ async def run_one_coro($/;" f function:staggered_race +run_one_test Tools/iobench/iobench.py /^ def run_one_test(name, size, open_func, test_func, *args):$/;" f function:run_all_tests +run_order Lib/lib2to3/fixer_base.py /^ run_order = 5 # Fixers will be sorted by run order before execution$/;" v class:BaseFix +run_order Lib/lib2to3/fixes/fix_future.py /^ run_order = 10$/;" v class:FixFuture +run_order Lib/lib2to3/fixes/fix_imports.py /^ run_order = 6$/;" v class:FixImports +run_order Lib/lib2to3/fixes/fix_imports2.py /^ run_order = 7$/;" v class:FixImports2 +run_order Lib/lib2to3/fixes/fix_isinstance.py /^ run_order = 6$/;" v class:FixIsinstance +run_order Lib/lib2to3/fixes/fix_itertools.py /^ run_order = 6$/;" v class:FixItertools +run_order Lib/lib2to3/fixes/fix_tuple_params.py /^ run_order = 4 #use a lower order since lambda is part of other$/;" v class:FixTupleParams +run_order Lib/test/test_lib2to3/data/fixers/myfixes/fix_first.py /^ run_order = 1$/;" v class:FixFirst +run_order Lib/test/test_lib2to3/data/fixers/myfixes/fix_last.py /^ run_order = 10$/;" v class:FixLast +run_parser Tools/peg_generator/pegen/testutil.py /^def run_parser(file: IO[bytes], parser_class: Type[Parser], *, verbose: bool = False) -> Any:$/;" f +run_path Lib/runpy.py /^def run_path(path_name, init_globals=None, run_name=None):$/;" f +run_pdb_module Lib/test/test_pdb.py /^ def run_pdb_module(self, script, commands):$/;" m class:PdbTestCase +run_pdb_script Lib/test/test_pdb.py /^ def run_pdb_script(self, script, commands, expected_returncode=0):$/;" m class:PdbTestCase +run_perf Lib/test/test_patma.py /^ def run_perf(self, count):$/;" m class:TestTracing.PerfPatma +run_perf Lib/test/test_perf_profiler.py /^def run_perf(cwd, *args, **env_vars):$/;" f +run_pty Lib/test/test_readline.py /^def run_pty(script, input=b"dummy input\\r", env=None):$/;" f +run_py Lib/test/test_launcher.py /^ def run_py(self, args, env=None, allow_fail=False, expect_returncode=0, argv=None):$/;" m class:RunPyMixin +run_py Tools/wasm/wasm_build.py /^ def run_py(self, *args):$/;" m class:BuildProfile +run_pyc_file Python/pythonrun.c /^run_pyc_file(FILE *fp, PyObject *globals, PyObject *locals,$/;" f file: +run_pydoc Lib/test/test_pydoc.py /^def run_pydoc(module_name, *args, **env):$/;" f +run_pydoc_fail Lib/test/test_pydoc.py /^def run_pydoc_fail(module_name, *args, **env):$/;" f +run_python Lib/test/test_audit.py /^ def run_python(self, *args):$/;" m class:AuditTest +run_python Lib/test/test_cmd_line.py /^ def run_python(*args):$/;" f function:CmdLineTest.test_showrefcount +run_python Lib/test/test_regrtest.py /^ def run_python(self, args, **kw):$/;" m class:BaseTestCase +run_python Lib/test/test_subprocess.py /^ def run_python(self, code, **kwargs):$/;" m class:RunFuncTestCase +run_python_tests Tools/ssl/multissltests.py /^ def run_python_tests(self, tests, network=True):$/;" m class:AbstractBuilder +run_python_until_end Lib/test/support/script_helper.py /^def run_python_until_end(*args, **env_vars):$/;" f +run_pythoninfo Tools/wasm/wasm_build.py /^ def run_pythoninfo(self, *args):$/;" m class:BuildProfile +run_regrtests Lib/test/ssltests.py /^def run_regrtests(*extra_args):$/;" f +run_repeated_init_and_subinterpreters Lib/test/test_embed.py /^ def run_repeated_init_and_subinterpreters(self):$/;" m class:EmbeddingTestsMixin +run_script Lib/modulefinder.py /^ def run_script(self, pathname):$/;" m class:ModuleFinder +run_server Lib/test/test_httplib.py /^ def run_server():$/;" f function:BasicTest.test_response_fileno +run_server Lib/test/test_nntplib.py /^ def run_server(self, sock):$/;" m class:LocalServerTests +run_server Lib/test/test_socketserver.py /^ def run_server(self, svrcls, hdlrbase, testfunc):$/;" m class:SocketServerTest +run_server Lib/test/test_xmlrpc.py /^ def run_server():$/;" f function:XMLRPCTestCase.test_keepalive_disconnect +run_set Lib/test/test_coroutines.py /^ async def run_set():$/;" f function:CoroutineTest.test_comp_1 +run_set Lib/test/test_coroutines.py /^ async def run_set():$/;" f function:CoroutineTest.test_comp_2 +run_set Lib/test/test_coroutines.py /^ async def run_set():$/;" f function:CoroutineTest.test_comp_3 +run_set Lib/test/test_coroutines.py /^ async def run_set():$/;" f function:CoroutineTest.test_comp_4 +run_set Lib/test/test_coroutines.py /^ async def run_set():$/;" f function:CoroutineTest.test_comp_4_2 +run_set2 Lib/test/test_coroutines.py /^ async def run_set2():$/;" f function:CoroutineTest.test_comp_2 +run_set_inside_list Lib/test/test_coroutines.py /^ async def run_set_inside_list():$/;" f function:CoroutineTest.test_nested_comp +run_singlephase_check Lib/test/test_capi/check_config.py /^def run_singlephase_check(override, outfd):$/;" f +run_tasks Lib/test/test_capi/test_misc.py /^ def run_tasks():$/;" f function:TestPendingCalls.test_many_subthreads_can_handle_pending_calls +run_test Lib/idlelib/idle_test/htest.py /^ def run_test(_=None):$/;" f function:run +run_test Lib/test/libregrtest/main.py /^ def run_test(self, test_index, test_name, previous_test, save_modules):$/;" m class:Regrtest +run_test Lib/test/test_asyncgen.py /^ def run_test(test):$/;" f function:AsyncGenAsyncioTest.test_anext_iter +run_test Lib/test/test_bdb.py /^def run_test(modules, set_list, skip=None):$/;" f +run_test Lib/test/test_ctypes/test_strings.py /^def run_test(rep, msg, func, arg):$/;" f +run_test Lib/test/test_importlib/source/test_finder.py /^ def run_test(self, test, create=None, *, compile_=None, unlink=None):$/;" m class:FinderTests +run_test Lib/test/test_importlib/source/test_source_encoding.py /^ def run_test(self, line_ending):$/;" m class:LineEndingTest +run_test Lib/test/test_importlib/source/test_source_encoding.py /^ def run_test(self, source):$/;" m class:EncodingTest +run_test Lib/test/test_peg_generator/test_c_parser.py /^ def run_test(self, grammar_source, test_source):$/;" m class:TestCParser +run_test Lib/test/test_sys_settrace.py /^ def run_test(self, func):$/;" m class:TraceTestCase +run_test Lib/test/test_sys_settrace.py /^ def run_test(self, func, jumpFrom, jumpTo, expected, error=None,$/;" m class:JumpTestCase +run_test Tools/wasm/wasm_build.py /^ def run_test(self, target: str, testopts: Optional[str] = None):$/;" m class:BuildProfile +run_test2 Lib/test/test_sys_settrace.py /^ def run_test2(self, func):$/;" m class:TraceTestCase +run_test_family Tools/iobench/iobench.py /^ def run_test_family(tests, mode_filter, files, open_func, *make_args):$/;" f function:run_all_tests +run_test_for_event Lib/test/test_sys_settrace.py /^ def run_test_for_event(self, event):$/;" m class:RaisingTraceFuncTestCase +run_test_in_subprocess Lib/test/libregrtest/runtest_mp.py /^def run_test_in_subprocess(worker_job: WorkerJob,$/;" f +run_test_script Lib/test/support/script_helper.py /^def run_test_script(script):$/;" f +run_test_server Lib/test/test_asyncio/utils.py /^def run_test_server(*, host='127.0.0.1', port=0, use_ssl=False):$/;" f +run_test_unix_server Lib/test/test_asyncio/utils.py /^ def run_test_unix_server(*, use_ssl=False):$/;" f function:_run_test_server +run_tests Lib/test/bisect_cmd.py /^def run_tests(args, tests, huntrleaks=None):$/;" f +run_tests Lib/test/libregrtest/main.py /^ def run_tests(self):$/;" m class:Regrtest +run_tests Lib/test/libregrtest/runtest_mp.py /^ def run_tests(self) -> None:$/;" m class:MultiprocessTestRunner +run_tests Lib/test/test_marshal.py /^ def run_tests(N, check):$/;" f function:BugsTestCase.test_loads_recursion +run_tests Lib/test/test_regrtest.py /^ def run_tests(self, *testargs, **kw):$/;" m class:ArgsTestCase +run_tests Lib/test/test_regrtest.py /^ def run_tests(self, args):$/;" m class:ProgramsTestCase +run_tests Tools/peg_generator/scripts/test_pypi_packages.py /^def run_tests(dirname: str, tree: int) -> int:$/;" f +run_tests_multiprocess Lib/test/libregrtest/runtest_mp.py /^def run_tests_multiprocess(regrtest: Regrtest, runtests: RunTests) -> None:$/;" f +run_tests_sequentially Lib/test/libregrtest/main.py /^ def run_tests_sequentially(self, runtests):$/;" m class:Regrtest +run_tests_worker Lib/test/libregrtest/runtest_mp.py /^def run_tests_worker(worker_json: str) -> NoReturn:$/;" f +run_thread Lib/test/test_gc.py /^ def run_thread():$/;" f function:GCTests.test_trashcan_threads +run_thread Lib/test/test_threading.py /^ def run_thread():$/;" f function:ExceptHookTests.test_original_excepthook +run_threads Lib/test/_test_multiprocessing.py /^ def run_threads(self, f, args):$/;" m class:_TestBarrier +run_threads Lib/test/lock_tests.py /^ def run_threads(self, f):$/;" m class:BarrierTests +run_threads Lib/test/test_queue.py /^ def run_threads(self, n_threads, q, inputs, feed_func, consume_func):$/;" m class:BaseSimpleQueueTest +run_throughput_test Tools/ccbench/ccbench.py /^def run_throughput_test(func, args, nthreads):$/;" f +run_throughput_tests Tools/ccbench/ccbench.py /^def run_throughput_tests(max_threads):$/;" f +run_udp_echo_server Lib/test/test_asyncio/utils.py /^def run_udp_echo_server(*, host='127.0.0.1', port=0):$/;" f +run_unittest Lib/test/libregrtest/runtest.py /^def run_unittest(test_mod):$/;" f +run_unittest Lib/test/support/__init__.py /^def run_unittest(*classes):$/;" f +run_unittest Lib/test/test_unittest/test_program.py /^ def run_unittest(args):$/;" f function:TestCommandLineArgs.testSelectedTestNamesFunctionalTest +run_until Lib/test/test_asyncio/utils.py /^def run_until(loop, pred, timeout=support.SHORT_TIMEOUT):$/;" f +run_until_complete Lib/asyncio/base_events.py /^ def run_until_complete(self, future):$/;" m class:BaseEventLoop +run_until_complete Lib/asyncio/events.py /^ def run_until_complete(self, future):$/;" m class:AbstractEventLoop +run_until_complete Lib/test/test_asyncgen.py /^def run_until_complete(coro):$/;" f +run_utf8_mode Lib/test/test_cmd_line.py /^ def run_utf8_mode(arg):$/;" f function:CmdLineTest.test_invalid_utf8_arg +run_with_capture Lib/test/test_venv.py /^ def run_with_capture(self, func, *args, **kwargs):$/;" m class:BaseTest +run_with_locale Lib/test/support/__init__.py /^def run_with_locale(catstr, *locales):$/;" f +run_with_own_gil Lib/test/test_importlib/test_util.py /^ def run_with_own_gil(self, script):$/;" m class:IncompatibleExtensionModuleRestrictionsTests +run_with_shared_gil Lib/test/test_importlib/test_util.py /^ def run_with_shared_gil(self, script):$/;" m class:IncompatibleExtensionModuleRestrictionsTests +run_with_tz Lib/test/support/__init__.py /^def run_with_tz(tz):$/;" f +run_worker Lib/test/_test_multiprocessing.py /^ def run_worker(self, worker, obj):$/;" m class:TestSyncManagerTypes +run_xdev Lib/test/test_cmd_line.py /^ def run_xdev(self, *args, check_exitcode=True, xdev=True):$/;" m class:CmdLineTest +runcall Lib/bdb.py /^ def runcall(self, func, \/, *args, **kwds):$/;" m class:Bdb +runcall Lib/cProfile.py /^ def runcall(self, func, \/, *args, **kw):$/;" m class:Profile +runcall Lib/pdb.py /^def runcall(*args, **kwds):$/;" f +runcall Lib/profile.py /^ def runcall(self, func, \/, *args, **kw):$/;" m class:Profile +runcase Lib/idlelib/idle_test/test_format.py /^ def runcase(self, inserttext, stopline, expected):$/;" m class:FindTest +runcode Lib/asyncio/__main__.py /^ def runcode(self, code):$/;" m class:AsyncIOInteractiveConsole +runcode Lib/code.py /^ def runcode(self, code):$/;" m class:InteractiveInterpreter +runcode Lib/idlelib/pyshell.py /^ def runcode(self, code):$/;" m class:ModifiedInterpreter +runcode Lib/idlelib/run.py /^ def runcode(self, code):$/;" m class:Executive +runcommand Lib/idlelib/pyshell.py /^ def runcommand(self, code):$/;" m class:ModifiedInterpreter +runctx Lib/bdb.py /^ def runctx(self, cmd, globals, locals):$/;" m class:Bdb +runctx Lib/cProfile.py /^ def runctx(self, cmd, globals, locals):$/;" m class:Profile +runctx Lib/cProfile.py /^def runctx(statement, globals, locals, filename=None, sort=-1):$/;" f +runctx Lib/pdb.py /^def runctx(statement, globals, locals):$/;" f +runctx Lib/profile.py /^ def runctx(self, cmd, globals, locals):$/;" m class:Profile +runctx Lib/profile.py /^ def runctx(self, statement, globals, locals, filename, sort):$/;" m class:_Utils +runctx Lib/profile.py /^def runctx(statement, globals, locals, filename=None, sort=-1):$/;" f +runctx Lib/trace.py /^ def runctx(self, cmd, globals=None, locals=None):$/;" m class:Trace +rune_t Lib/test/test_lib2to3/data/infinite_recursion.py /^rune_t = __darwin_rune_t$/;" v +runeval Lib/bdb.py /^ def runeval(self, expr, globals=None, locals=None):$/;" m class:Bdb +runeval Lib/pdb.py /^def runeval(expression, globals=None, locals=None):$/;" f +runfunc Lib/trace.py /^ def runfunc(self, func, \/, *args, **kw):$/;" m class:Trace +runit Lib/idlelib/pyshell.py /^ def runit(self):$/;" m class:PyShell +runner Lib/test/test_asyncio/test_base_events.py /^ async def runner(loop):$/;" f function:RunningLoopTests.test_running_loop_within_a_loop +runner Lib/test/test_asyncio/test_pep492.py /^ async def runner():$/;" f function:CoroutineTests.test_double_await +runner Lib/test/test_asyncio/test_pep492.py /^ async def runner():$/;" f function:CoroutineTests.test_task_print_stack +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup._test_taskgroup_21 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_cancel_children_on_child_error +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_cancellation +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_04 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_07 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_08 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_09 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_10 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_11 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_12 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_13 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_14 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_15 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_16 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_17 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_18 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_19 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_20 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_20a +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_21a +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_22 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_24 +runner Lib/test/test_asyncio/test_taskgroups.py /^ async def runner():$/;" f function:TestTaskGroup.test_taskgroup_25 +runner Lib/test/test_asyncio/test_tasks.py /^ async def runner():$/;" f function:BaseTaskTests.test_as_completed_duplicate_coroutines +runner Lib/test/test_asyncio/test_tasks.py /^ async def runner():$/;" f function:BaseTaskTests.test_get_stack +runner Lib/test/test_asyncio/test_tasks.py /^ async def runner():$/;" f function:BaseTaskTests.test_tb_logger_not_called_after_cancel +runner Lib/test/test_asyncio/test_unix_events.py /^ async def runner():$/;" f function:TestFunctional.test_add_reader_or_writer_transport_fd +runner Lib/test/test_patma.py /^ runner = pyperf.Runner()$/;" v class:TestTracing +running Include/internal/pycore_faulthandler.h /^ PyThread_type_lock running;$/;" m struct:_faulthandler_runtime_state::__anon127 +running Lib/concurrent/futures/_base.py /^ def running(self):$/;" m class:Future +running Modules/itertoolsmodule.c /^ int running;$/;" m struct:__anon405 file: +running_check_asyncgen Lib/test/test_inspect.py /^ async def running_check_asyncgen():$/;" f function:TestGetAsyncGenState.test_running +running_check_generator Lib/test/test_inspect.py /^ def running_check_generator():$/;" f function:TestGetGeneratorState.test_running +running_in_idle Lib/idlelib/idle_test/test_warning.py /^running_in_idle = 'idle' in showwarning.__name__$/;" v +running_on_valgrind Objects/obmalloc.c /^static int running_on_valgrind = -1;$/;" v file: +runsource Lib/code.py /^ def runsource(self, source, filename="", symbol="single"):$/;" m class:InteractiveInterpreter +runsource Lib/idlelib/pyshell.py /^ def runsource(self, source):$/;" m class:ModifiedInterpreter +runsource Lib/sqlite3/__main__.py /^ def runsource(self, source, filename="", symbol="single"):$/;" m class:SqliteInteractiveConsole +runtest Lib/test/libregrtest/runtest.py /^def runtest(ns: Namespace, test_name: str) -> TestResult:$/;" f +runtest Lib/test/xmltests.py /^def runtest(name):$/;" f +runtime Include/internal/pycore_interp.h /^ struct pyruntimestate *runtime;$/;" m struct:_is typeref:struct:_is::pyruntimestate +runtime Include/internal/pycore_pystate.h /^PyAPI_FUNC(PyStatus) _PyInterpreterState_Enable(_PyRuntimeState *runtime);$/;" v +runtime Include/internal/pycore_runtime.h /^PyAPI_FUNC(PyStatus) _PyRuntimeState_Init(_PyRuntimeState *runtime);$/;" v +runtime Include/internal/pycore_runtime.h /^PyAPI_FUNC(void) _PyRuntimeState_Fini(_PyRuntimeState *runtime);$/;" v +runtime Modules/_threadmodule.c /^ _PyRuntimeState *runtime;$/;" m struct:bootstate file: +runtime_checkable Lib/typing.py /^def runtime_checkable(cls):$/;" f +runtime_error_int Modules/_decimal/_decimal.c /^runtime_error_int(const char *mesg)$/;" f file: +runtime_error_ptr Modules/_decimal/_decimal.c /^runtime_error_ptr(const char *mesg)$/;" f file: +runtime_init Programs/_freeze_module.c /^runtime_init(void)$/;" f file: +runtime_initialized Python/pylifecycle.c /^static int runtime_initialized = 0;$/;" v file: +rusage Lib/test/test_lib2to3/data/infinite_recursion.py /^class rusage(Structure):$/;" c +rv_alloc Python/dtoa.c /^rv_alloc(int i)$/;" f file: +rw_type Lib/test/test_memoryview.py /^ rw_type = bytearray$/;" v class:BaseBytesMemoryTests +rw_type Lib/test/test_memoryview.py /^ rw_type = lambda self, b: array.array('i', list(b))$/;" v class:BaseArrayMemoryTests +rwbuffer Tools/clinic/clinic.py /^class rwbuffer: pass$/;" c +rwpair Modules/_io/bufferedio.c /^} rwpair;$/;" t typeref:struct:__anon436 file: +rx Lib/test/test_future.py /^rx = re.compile(r'\\((\\S+).py, line (\\d+)')$/;" v +rx Lib/urllib/request.py /^ rx = re.compile('(?:^|,)' # start of the string or ','$/;" v class:AbstractBasicAuthHandler +s Doc/includes/email-simple.py /^s = smtplib.SMTP('localhost')$/;" v +s Include/unicodeobject.h /^PyAPI_FUNC(int) PyUnicode_IsIdentifier(PyObject *s);$/;" v +s Lib/nntplib.py /^ s = NNTP(host=args.server, port=port)$/;" v class:NNTP.NNTP_SSL +s Lib/nntplib.py /^ s = NNTP_SSL(host=args.server, port=port)$/;" v class:NNTP.NNTP_SSL +s Lib/test/test_descr.py /^ s = madstring("".join(map(chr, range(i))))$/;" v class:.test_basic_inheritance.madstring +s Lib/test/test_enum.py /^ s = str$/;" v class:TestSpecial.test_enum_of_types.MyTypes +s Lib/test/test_enum.py /^ s = str$/;" v class:TestSpecial.test_enum_of_types_with_nonmember.MyTypes +s Lib/test/test_htmlparser.py /^ s = '